diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 8fa3051..01b8b42 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -67,15 +67,19 @@ jobs: python3 -m pip install --upgrade pip python3 -m pip install --upgrade "git+https://github.com/ibm/detect-secrets.git@master#egg=detect-secrets" python3 -m pip install boxsdk + - name: Scan repository & write snapshot run: | mkdir -p security-outputs - # Run the scan; send stderr to a log; stdout to JSON + + # Run detect-secrets while skipping binary files detect-secrets scan \ - --exclude-files '.*\.ipynb$' \ + --exclude-files '.*\.ipynb$|.*\.(png|jpg|jpeg|gif|pdf|onnx|pt|pth|bin|zip)$' \ --exclude-lines '"(outputs|image/\w+|id|hash)":.*' \ - > security-outputs/ds-results.json 2> security-outputs/.secrets.new - + --force-use-all-plugins \ + . \ + > security-outputs/ds-results.json \ + 2> security-outputs/.secrets.new || true - name: Upload scan artifacts (for triage) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4cafc13..325394c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ If you just need help or have a question, refer to [SUPPORT.md](SUPPORT.md). ## How to Contribute a Bug Fix or Change -To contribute code to the project, first read over the [governance policies] page to understand the roles involved. +To contribute code to the project, first read over the [governance policies] page to understand the roles involved. Each contribution must meet the [PEP 8] and include.. diff --git a/README.md b/README.md index 78e8661..ad85f05 100644 --- a/README.md +++ b/README.md @@ -20,22 +20,28 @@ This library is brought to you by the GridFM team to train, finetune and interac # Installation -You can install `gridfm-graphkit` directly from PyPI: +Create and activate a virtual environment (make sure you use the right python version = 3.10, 3.11 or 3.12. I highly recommend 3.12) +```bash +python -m venv venv +source venv/bin/activate +``` +Install gridfm-graphkit in editable mode ```bash -pip install gridfm-graphkit +pip install -e . ``` -To contribute or develop locally, clone the repository and install in editable mode: +Get PyTorch + CUDA version for torch-scatter +```bash +TORCH_CUDA_VERSION=$(python -c "import torch; print(torch.__version__ + ('+cpu' if torch.version.cuda is None else ''))") +``` +Install the correct torch-scatter wheel ```bash -git clone git@github.com:gridfm/gridfm-graphkit.git -cd gridfm-graphkit -python -m venv venv -source venv/bin/activate -pip install -e . +pip install torch-scatter -f https://data.pyg.org/whl/torch-${TORCH_CUDA_VERSION}.html ``` + For documentation generation and unit testing, install with the optional `dev` and `test` extras: ```bash @@ -45,7 +51,7 @@ pip install -e .[dev,test] # CLI commands -An interface to train, fine-tune, and evaluate GridFM models using configurable YAML files and MLflow tracking. +Interface to train, fine-tune, evaluate, and run inference on GridFM models using YAML configs and MLflow tracking. ```bash gridfm_graphkit [OPTIONS] @@ -53,7 +59,7 @@ gridfm_graphkit [OPTIONS] Available commands: -* `train` – Train a new model from scrathc +* `train` - Train a new model from scratch * `finetune` – Fine-tune an existing pre-trained model * `evaluate` – Evaluate model performance on a dataset * `predict` – Run inference and save predictions @@ -70,11 +76,11 @@ gridfm_graphkit train --config path/to/config.yaml | Argument | Type | Description | Default | | ---------------- | ------ | ---------------------------------------------------------------- | ------- | -| `--config` | `str` | **Required**. Path to the training configuration YAML file. | `None` | -| `--exp_name` | `str` | **Optional**. MLflow experiment name. | `timestamp` | -| `--run_name` | `str` | **Optional**. MLflow run name. | `run` | -| `--log_dir ` | `str` | **Optional**. MLflow logging directory. | `mlruns` | -| `--data_path` | `str` | **Optional**. Root dataset directory. | `data` | +| `--config` | `str` | **Required**. Path to the training configuration YAML file. | `None` | +| `--exp_name` | `str` | MLflow experiment name. | `timestamp` | +| `--run_name` | `str` | MLflow run name. | `run` | +| `--log_dir` | `str` | MLflow tracking/logging directory. | `mlruns` | +| `--data_path` | `str` | Root dataset directory. | `data` | ### Examples @@ -89,7 +95,7 @@ gridfm_graphkit train --config examples/config/case30_ieee_base.yaml --data_path ## Fine-Tuning Models ```bash -gridfm_graphkit finetune --config path/to/config.yaml --model_path path/to/model.pth +gridfm_graphkit finetune --config path/to/config.yaml --model_path path/to/model.pt ``` ### Arguments @@ -97,7 +103,7 @@ gridfm_graphkit finetune --config path/to/config.yaml --model_path path/to/model | Argument | Type | Description | Default | | -------------- | ----- | ----------------------------------------------- | --------- | | `--config` | `str` | **Required**. Fine-tuning configuration file. | `None` | -| `--model_path` | `str` | **Required**. Path to a pre-trained model file. | `None` | +| `--model_path` | `str` | **Required**. Path to a pre-trained model state dict. | `None` | | `--exp_name` | `str` | MLflow experiment name. | timestamp | | `--run_name` | `str` | MLflow run name. | `run` | | `--log_dir` | `str` | MLflow logging directory. | `mlruns` | @@ -109,38 +115,63 @@ gridfm_graphkit finetune --config path/to/config.yaml --model_path path/to/model ## Evaluating Models ```bash -gridfm_graphkit evaluate --config path/to/eval.yaml --model_path path/to/model.pth +gridfm_graphkit evaluate --config path/to/eval.yaml --model_path path/to/model.pt ``` ### Arguments -| Argument | Type | Description | Default | -| -------------- | ----- | ---------------------------------------- | --------- | -| `--config` | `str` | **Required**. Path to evaluation config. | `None` | -| `--model_path` | `str` | Path to the trained model file. | `None` | -| `--exp_name` | `str` | MLflow experiment name. | timestamp | -| `--run_name` | `str` | MLflow run name. | `run` | -| `--log_dir` | `str` | MLflow logging directory. | `mlruns` | -| `--data_path` | `str` | Dataset directory. | `data` | +| Argument | Type | Description | Default | +| --------------------- | ----- | ------------------------------------------------------------------------------------------------------------- | --------- | +| `--config` | `str` | **Required**. Path to evaluation config. | `None` | +| `--model_path` | `str` | Path to the trained model state dict. | `None` | +| `--normalizer_stats` | `str` | Path to `normalizer_stats.pt` from a training run. Restores `fit_on_train` normalizers from saved statistics instead of re-fitting on the current data split. | `None` | +| `--exp_name` | `str` | MLflow experiment name. | timestamp | +| `--run_name` | `str` | MLflow run name. | `run` | +| `--log_dir` | `str` | MLflow logging directory. | `mlruns` | +| `--data_path` | `str` | Dataset directory. | `data` | +| `--compute_dc_ac_metrics` | `flag` | Compute ground-truth AC/DC power balance metrics on the test split. | `False` | +| `--save_output` | `flag` | Save predictions as `_predictions.parquet` under MLflow artifacts (`.../artifacts/test`). | `False` | + +### Example with saved normalizer stats + +When evaluating a model on a dataset, you can pass the normalizer statistics from the original training run to ensure the same normalization parameters are used: + +```bash +gridfm_graphkit evaluate \ + --config examples/config/HGNS_PF_datakit_case118.yaml \ + --model_path mlruns///artifacts/model/best_model_state_dict.pt \ + --normalizer_stats mlruns///artifacts/stats/normalizer_stats.pt \ + --data_path data +``` + +> **Note:** The `--normalizer_stats` flag only affects normalizers with `fit_strategy = "fit_on_train"` (e.g. `HeteroDataMVANormalizer`). Per-sample normalizers (`HeteroDataPerSampleMVANormalizer`) always recompute their statistics from the current dataset regardless of this flag. --- ## Running Predictions ```bash -gridfm_graphkit predict --config path/to/config.yaml --model_path path/to/model.pth +gridfm_graphkit predict --config path/to/config.yaml --model_path path/to/model.pt ``` ### Arguments -| Argument | Type | Description | Default | -| --------------- | ----- | --------------------------------------------- | --------- | -| `--config` | `str` | **Required**. Path to prediction config file. | `None` | -| `--model_path` | `str` | Path to the trained model file. | `None` | -| `--exp_name` | `str` | MLflow experiment name. | timestamp | -| `--run_name` | `str` | MLflow run name. | `run` | -| `--log_dir` | `str` | MLflow logging directory. | `mlruns` | -| `--data_path` | `str` | Dataset directory. | `data` | -| `--output_path` | `str` | Directory where predictions are saved. | `data` | +| Argument | Type | Description | Default | +| --------------------- | ----- | ------------------------------------------------------------------------------------------------------------- | --------- | +| `--config` | `str` | **Required**. Path to prediction config file. | `None` | +| `--model_path` | `str` | Path to the trained model state dict. | `None` | +| `--normalizer_stats` | `str` | Path to `normalizer_stats.pt` from a training run. Restores `fit_on_train` normalizers from saved statistics. | `None` | +| `--exp_name` | `str` | MLflow experiment name. | timestamp | +| `--run_name` | `str` | MLflow run name. | `run` | +| `--log_dir` | `str` | MLflow logging directory. | `mlruns` | +| `--data_path` | `str` | Dataset directory. | `data` | +| `--output_path` | `str` | Directory where predictions are saved as `_predictions.parquet`. | `data` | + +Use built-in help for full command details: + +```bash +gridfm_graphkit --help +gridfm_graphkit --help +``` --- diff --git a/RELEASE.md b/RELEASE.md index 8b13789..e69de29 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1 +0,0 @@ - diff --git a/docs/quick_start/quick_start.md b/docs/quick_start/quick_start.md index 2ab030e..575da88 100644 --- a/docs/quick_start/quick_start.md +++ b/docs/quick_start/quick_start.md @@ -1,6 +1,6 @@ # CLI commands -An interface to train, fine-tune, and evaluate GridFM models using configurable YAML files and MLflow tracking. +Interface to train, fine-tune, evaluate, and run inference on GridFM models using YAML configs and MLflow tracking. ```bash gridfm_graphkit [OPTIONS] @@ -25,11 +25,11 @@ gridfm_graphkit train --config path/to/config.yaml | Argument | Type | Description | Default | | ---------------- | ------ | ---------------------------------------------------------------- | ------- | -| `--config` | `str` | **Required**. Path to the training configuration YAML file. | `None` | -| `--exp_name` | `str` | **Optional**. MLflow experiment name. | `timestamp` | -| `--run_name` | `str` | **Optional**. MLflow run name. | `run` | -| `--log_dir ` | `str` | **Optional**. MLflow logging directory. | `mlruns` | -| `--data_path` | `str` | **Optional**. Root dataset directory. | `data` | +| `--config` | `str` | **Required**. Path to the training configuration YAML file. | `None` | +| `--exp_name` | `str` | MLflow experiment name. | `timestamp` | +| `--run_name` | `str` | MLflow run name. | `run` | +| `--log_dir` | `str` | MLflow tracking/logging directory. | `mlruns` | +| `--data_path` | `str` | Root dataset directory. | `data` | ### Examples @@ -44,7 +44,7 @@ gridfm_graphkit train --config examples/config/case30_ieee_base.yaml --data_path ## Fine-Tuning Models ```bash -gridfm_graphkit finetune --config path/to/config.yaml --model_path path/to/model.pth +gridfm_graphkit finetune --config path/to/config.yaml --model_path path/to/model.pt ``` ### Arguments @@ -52,7 +52,7 @@ gridfm_graphkit finetune --config path/to/config.yaml --model_path path/to/model | Argument | Type | Description | Default | | -------------- | ----- | ----------------------------------------------- | --------- | | `--config` | `str` | **Required**. Fine-tuning configuration file. | `None` | -| `--model_path` | `str` | **Required**. Path to a pre-trained model file. | `None` | +| `--model_path` | `str` | **Required**. Path to a pre-trained model state dict. | `None` | | `--exp_name` | `str` | MLflow experiment name. | timestamp | | `--run_name` | `str` | MLflow run name. | `run` | | `--log_dir` | `str` | MLflow logging directory. | `mlruns` | @@ -64,38 +64,63 @@ gridfm_graphkit finetune --config path/to/config.yaml --model_path path/to/model ## Evaluating Models ```bash -gridfm_graphkit evaluate --config path/to/eval.yaml --model_path path/to/model.pth +gridfm_graphkit evaluate --config path/to/eval.yaml --model_path path/to/model.pt ``` ### Arguments -| Argument | Type | Description | Default | -| -------------- | ----- | ---------------------------------------- | --------- | -| `--config` | `str` | **Required**. Path to evaluation config. | `None` | -| `--model_path` | `str` | Path to the trained model file. | `None` | -| `--exp_name` | `str` | MLflow experiment name. | timestamp | -| `--run_name` | `str` | MLflow run name. | `run` | -| `--log_dir` | `str` | MLflow logging directory. | `mlruns` | -| `--data_path` | `str` | Dataset directory. | `data` | +| Argument | Type | Description | Default | +| --------------------- | ----- | ------------------------------------------------------------------------------------------------------------- | --------- | +| `--config` | `str` | **Required**. Path to evaluation config. | `None` | +| `--model_path` | `str` | Path to the trained model state dict. | `None` | +| `--normalizer_stats` | `str` | Path to `normalizer_stats.pt` from a training run. Restores `fit_on_train` normalizers from saved statistics instead of re-fitting on the current data split. | `None` | +| `--exp_name` | `str` | MLflow experiment name. | timestamp | +| `--run_name` | `str` | MLflow run name. | `run` | +| `--log_dir` | `str` | MLflow logging directory. | `mlruns` | +| `--data_path` | `str` | Dataset directory. | `data` | +| `--compute_dc_ac_metrics` | `flag` | Compute ground-truth AC/DC power balance metrics on the test split. | `False` | +| `--save_output` | `flag` | Save predictions as `_predictions.parquet` under MLflow artifacts (`.../artifacts/test`). | `False` | + +### Example with saved normalizer stats + +When evaluating a model on a dataset, you can pass the normalizer statistics from the original training run to ensure the same normalization parameters are used: + +```bash +gridfm_graphkit evaluate \ + --config examples/config/HGNS_PF_datakit_case118.yaml \ + --model_path mlruns///artifacts/model/best_model_state_dict.pt \ + --normalizer_stats mlruns///artifacts/stats/normalizer_stats.pt \ + --data_path data +``` + +> **Note:** The `--normalizer_stats` flag only affects normalizers with `fit_strategy = "fit_on_train"` (e.g. `HeteroDataMVANormalizer`). Per-sample normalizers (`HeteroDataPerSampleMVANormalizer`) always recompute their statistics from the current dataset regardless of this flag. --- ## Running Predictions ```bash -gridfm_graphkit predict --config path/to/config.yaml --model_path path/to/model.pth +gridfm_graphkit predict --config path/to/config.yaml --model_path path/to/model.pt ``` ### Arguments -| Argument | Type | Description | Default | -| --------------- | ----- | --------------------------------------------- | --------- | -| `--config` | `str` | **Required**. Path to prediction config file. | `None` | -| `--model_path` | `str` | Path to the trained model file. | `None` | -| `--exp_name` | `str` | MLflow experiment name. | timestamp | -| `--run_name` | `str` | MLflow run name. | `run` | -| `--log_dir` | `str` | MLflow logging directory. | `mlruns` | -| `--data_path` | `str` | Dataset directory. | `data` | -| `--output_path` | `str` | Directory where predictions are saved. | `data` | +| Argument | Type | Description | Default | +| --------------------- | ----- | ------------------------------------------------------------------------------------------------------------- | --------- | +| `--config` | `str` | **Required**. Path to prediction config file. | `None` | +| `--model_path` | `str` | Path to the trained model state dict. | `None` | +| `--normalizer_stats` | `str` | Path to `normalizer_stats.pt` from a training run. Restores `fit_on_train` normalizers from saved statistics. | `None` | +| `--exp_name` | `str` | MLflow experiment name. | timestamp | +| `--run_name` | `str` | MLflow run name. | `run` | +| `--log_dir` | `str` | MLflow logging directory. | `mlruns` | +| `--data_path` | `str` | Dataset directory. | `data` | +| `--output_path` | `str` | Directory where predictions are saved as `_predictions.parquet`. | `data` | + +Use built-in help for full command details: + +```bash +gridfm_graphkit --help +gridfm_graphkit --help +``` --- diff --git a/docs/tutorials/contingency_analysis.md b/docs/tutorials/contingency_analysis.md index f894230..db31962 100644 --- a/docs/tutorials/contingency_analysis.md +++ b/docs/tutorials/contingency_analysis.md @@ -1,3 +1,4 @@ +👉 [Link](https://github.com/gridfm/gridfm-graphkit/tree/main/examples/notebooks) to the tutorial notebooks on Github 👉 [Link](https://colab.research.google.com/github/gridfm/gridfm-graphkit/blob/main/examples/notebooks/Tutorial_contingency_analisys.ipynb) to the tutorial on Google Colab --- @@ -7,7 +8,7 @@ Contingency analysis is a critical process in power system operations used to as ## Dataset Generation and Model Evaluation -The dataset used in this study originates from the Texas transmission grid, which includes approximately 2,000 nodes. Using the contingency mode of the `gridfm-datakit`, we simulated N-2 contingencies by removing up to two transmission lines at a time. For each scenario, we first solved the optimal power flow (OPF) problem to determine the generation dispatch. Then, we applied the contingency by removing lines and re-solved the power flow to observe the resulting grid state. +The dataset used in this study originates from the Texas transmission grid, which includes approximately 2,000 nodes. Using the contingency mode of the `gridfm-datakit`, we simulated N-2 contingencies by removing up to two transmission lines at a time. For each scenario, we first solved the optimal power flow (OPF) problem to determine the generation dispatch. Then, we applied the contingency by removing lines and re-solved the power flow to observse the resulting grid state. This process generated around 100,000 unique scenarios. Our model, **GridFMv0.1**, was fine-tuned on this dataset to predict power flow outcomes. For demonstration purposes, we selected a subsample of 10 scenarios. The `gridfm-datakit` also computed DC power flow results, enabling a comparison between GridFMv0.1 predictions and traditional DC power flow estimates, specifically in terms of line loading accuracy. @@ -168,15 +169,15 @@ assert (removed_lines == removed_lines_dc).all() assert removed_lines.sum() == removed_lines_pred.sum() assert removed_lines.sum() == removed_lines_dc.sum() -overloadings = loadings[removed_lines == False] > 1.0 -overloadings_pred = loadings_pred[removed_lines == False] > 1.0 -overloadings_dc = loadings_dc[removed_lines == False] > 1.0 +overloadings = loadings[not removed_lines] > 1.0 +overloadings_pred = loadings_pred[not removed_lines] > 1.0 +overloadings_dc = loadings_dc[not removed_lines] > 1.0 ``` ## Histogram of true line loadings ```python -plt.hist(loadings[removed_lines == False], bins=100) +plt.hist(loadings[not removed_lines], bins=100) plt.xlabel("Line Loadings") plt.ylabel("Frequency") # log scale @@ -193,7 +194,7 @@ plt.show() ```python # Valid lines -valid_mask = removed_lines == False +valid_mask = not removed_lines # Extract valid values true_vals = loadings[valid_mask] @@ -237,9 +238,9 @@ plot_cm(TN_dc, FP_dc, FN_dc, TP_dc, "DC", "DC Solver") ```python # Histograms of loadings plot_loading_predictions( - loadings_pred[removed_lines == False], - loadings_dc[removed_lines == False], - loadings[removed_lines == False], + loadings_pred[not removed_lines], + loadings_dc[not removed_lines], + loadings[not removed_lines], prediction_dir, label_plot, ) @@ -266,14 +267,14 @@ bins = np.arange(0, 2.2, 0.2) mse_pred = [] mse_dc = [] for i in range(len(bins) - 1): - idx_in_bins = (loadings[removed_lines == False] > bins[i]) & ( - loadings[removed_lines == False] < bins[i + 1] + idx_in_bins = (loadings[not removed_lines] > bins[i]) & ( + loadings[not removed_lines] < bins[i + 1] ) mse_pred.append( np.mean( ( - loadings_pred[removed_lines == False][idx_in_bins] - - loadings[removed_lines == False][idx_in_bins] + loadings_pred[not removed_lines][idx_in_bins] + - loadings[not removed_lines][idx_in_bins] ) ** 2 ) @@ -281,8 +282,8 @@ for i in range(len(bins) - 1): mse_dc.append( np.mean( ( - loadings_dc[removed_lines == False][idx_in_bins] - - loadings[removed_lines == False][idx_in_bins] + loadings_dc[not removed_lines][idx_in_bins] + - loadings[not removed_lines][idx_in_bins] ) ** 2 ) diff --git a/docs/tutorials/feature_reconstruction.md b/docs/tutorials/feature_reconstruction.md index 01a502a..dff2faf 100644 --- a/docs/tutorials/feature_reconstruction.md +++ b/docs/tutorials/feature_reconstruction.md @@ -1,3 +1,4 @@ +👉 [Link](https://github.com/gridfm/gridfm-graphkit/tree/main/examples/notebooks) to the tutorial notebooks on Github 👉 [Link](https://colab.research.google.com/github/gridfm/gridfm-graphkit/blob/main/examples/notebooks/Tutorial_reconstruction_visualization.ipynb) to the tutorial on Google Colab --- diff --git a/examples/config/HGNS_OPFData_case118.yaml b/examples/config/HGNS_OPFData_case118.yaml new file mode 100644 index 0000000..3f57ac9 --- /dev/null +++ b/examples/config/HGNS_OPFData_case118.yaml @@ -0,0 +1,52 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case118_ieee + scenarios: + - 300000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_OPFData_case14.yaml b/examples/config/HGNS_OPFData_case14.yaml new file mode 100644 index 0000000..714995d --- /dev/null +++ b/examples/config/HGNS_OPFData_case14.yaml @@ -0,0 +1,52 @@ +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case14_ieee + scenarios: + - 300000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true +callbacks: + patience: 100 + tol: 0 diff --git a/examples/config/HGNS_OPFData_case2000.yaml b/examples/config/HGNS_OPFData_case2000.yaml new file mode 100644 index 0000000..3ec576e --- /dev/null +++ b/examples/config/HGNS_OPFData_case2000.yaml @@ -0,0 +1,52 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case2000_goc + scenarios: + - 300000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 16 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_OPFData_case30.yaml b/examples/config/HGNS_OPFData_case30.yaml new file mode 100644 index 0000000..f8bba01 --- /dev/null +++ b/examples/config/HGNS_OPFData_case30.yaml @@ -0,0 +1,52 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case30_ieee + scenarios: + - 300000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_OPFData_case500.yaml b/examples/config/HGNS_OPFData_case500.yaml new file mode 100644 index 0000000..442eac7 --- /dev/null +++ b/examples/config/HGNS_OPFData_case500.yaml @@ -0,0 +1,52 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case500_goc + scenarios: + - 300000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 16 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_OPFData_case57.yaml b/examples/config/HGNS_OPFData_case57.yaml new file mode 100644 index 0000000..024efa8 --- /dev/null +++ b/examples/config/HGNS_OPFData_case57.yaml @@ -0,0 +1,52 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case57_ieee + scenarios: + - 300000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_OPF_datakit_case118.yaml b/examples/config/HGNS_OPF_datakit_case118.yaml new file mode 100644 index 0000000..787c397 --- /dev/null +++ b/examples/config/HGNS_OPF_datakit_case118.yaml @@ -0,0 +1,53 @@ +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case118_ieee + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +seed: 0 +verbose: true +callbacks: + patience: 100 + tol: 0 diff --git a/examples/config/HGNS_OPF_datakit_case14.yaml b/examples/config/HGNS_OPF_datakit_case14.yaml new file mode 100644 index 0000000..4ed0aa7 --- /dev/null +++ b/examples/config/HGNS_OPF_datakit_case14.yaml @@ -0,0 +1,53 @@ +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case14_ieee + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +seed: 0 +verbose: true +callbacks: + patience: 100 + tol: 0 diff --git a/examples/config/HGNS_OPF_datakit_case2000.yaml b/examples/config/HGNS_OPF_datakit_case2000.yaml new file mode 100644 index 0000000..83dc1f1 --- /dev/null +++ b/examples/config/HGNS_OPF_datakit_case2000.yaml @@ -0,0 +1,53 @@ +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case2000_goc + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +training: + batch_size: 16 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +seed: 0 +verbose: true +callbacks: + patience: 100 + tol: 0 diff --git a/examples/config/HGNS_OPF_datakit_case30.yaml b/examples/config/HGNS_OPF_datakit_case30.yaml new file mode 100644 index 0000000..4864d43 --- /dev/null +++ b/examples/config/HGNS_OPF_datakit_case30.yaml @@ -0,0 +1,53 @@ +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case30_ieee + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +seed: 0 +verbose: true +callbacks: + patience: 100 + tol: 0 diff --git a/examples/config/HGNS_OPF_datakit_case500.yaml b/examples/config/HGNS_OPF_datakit_case500.yaml new file mode 100644 index 0000000..e1231aa --- /dev/null +++ b/examples/config/HGNS_OPF_datakit_case500.yaml @@ -0,0 +1,53 @@ +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case500_goc + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +training: + batch_size: 16 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +seed: 0 +verbose: true +callbacks: + patience: 100 + tol: 0 diff --git a/examples/config/HGNS_OPF_datakit_case57.yaml b/examples/config/HGNS_OPF_datakit_case57.yaml new file mode 100644 index 0000000..dd61bdb --- /dev/null +++ b/examples/config/HGNS_OPF_datakit_case57.yaml @@ -0,0 +1,53 @@ +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case57_ieee + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.1 + - 0.8 + losses: + - LayeredWeightedPhysics + - MaskedGenMSE + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + - {} + accelerator: auto + devices: auto + strategy: auto +seed: 0 +verbose: true +callbacks: + patience: 100 + tol: 0 diff --git a/examples/config/HGNS_PF_datakit_case118.yaml b/examples/config/HGNS_PF_datakit_case118.yaml new file mode 100644 index 0000000..320b69c --- /dev/null +++ b/examples/config/HGNS_PF_datakit_case118.yaml @@ -0,0 +1,50 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case118_ieee + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_PF_datakit_case14.yaml b/examples/config/HGNS_PF_datakit_case14.yaml new file mode 100644 index 0000000..bf5b621 --- /dev/null +++ b/examples/config/HGNS_PF_datakit_case14.yaml @@ -0,0 +1,51 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case14_ieee + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + base_weight: 0.5 + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_PF_datakit_case2000.yaml b/examples/config/HGNS_PF_datakit_case2000.yaml new file mode 100644 index 0000000..b5f9b5b --- /dev/null +++ b/examples/config/HGNS_PF_datakit_case2000.yaml @@ -0,0 +1,50 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case2000_goc + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 16 + epochs: 200 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_PF_datakit_case30.yaml b/examples/config/HGNS_PF_datakit_case30.yaml new file mode 100644 index 0000000..4af9974 --- /dev/null +++ b/examples/config/HGNS_PF_datakit_case30.yaml @@ -0,0 +1,50 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case30_ieee + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_PF_datakit_case500.yaml b/examples/config/HGNS_PF_datakit_case500.yaml new file mode 100644 index 0000000..8ca53d9 --- /dev/null +++ b/examples/config/HGNS_PF_datakit_case500.yaml @@ -0,0 +1,50 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case500_goc + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 16 + epochs: 200 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_PF_datakit_case57.yaml b/examples/config/HGNS_PF_datakit_case57.yaml new file mode 100644 index 0000000..e176bbd --- /dev/null +++ b/examples/config/HGNS_PF_datakit_case57.yaml @@ -0,0 +1,50 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case57_ieee + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 200 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_PF_datakit_caseTexas.yaml b/examples/config/HGNS_PF_datakit_caseTexas.yaml new file mode 100644 index 0000000..91fd65f --- /dev/null +++ b/examples/config/HGNS_PF_datakit_caseTexas.yaml @@ -0,0 +1,50 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - Texas2k_case1_2016summerpeak + scenarios: + - 250000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 + split_by_load_scenario_idx: true +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 8 + epochs: 200 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_PF_pfdelta_case118.yaml b/examples/config/HGNS_PF_pfdelta_case118.yaml new file mode 100644 index 0000000..4220217 --- /dev/null +++ b/examples/config/HGNS_PF_pfdelta_case118.yaml @@ -0,0 +1,54 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + normalizationMVA: 240 + networks: + - case118_ieee_N_1 + - case118_ieee_N_2 + - case118_ieee_N + scenarios: + - 20000 + - 20000 + - 20000 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 16 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 64 + epochs: 300 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_SE_datakit_case118.yaml b/examples/config/HGNS_SE_datakit_case118.yaml new file mode 100644 index 0000000..6c97a7e --- /dev/null +++ b/examples/config/HGNS_SE_datakit_case118.yaml @@ -0,0 +1,75 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: StateEstimation + noise_type: Gaussian + measurements: + power_inj: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + power_flow: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + vm: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + relative_measurement: true +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case118_ieee + scenarios: + - 100000 + split_by_load_scenario_idx: true + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 32 + epochs: 200 + losses: + - LossPerDim + - LossPerDim + - LossPerDim + - LossPerDim + loss_weights: + - 0.35 + - 0.35 + - 0.1 + - 0.1 + loss_args: + - dim: VM + loss_str: MAE + - dim: VA + loss_str: MAE + - dim: P_in + loss_str: MAE + - dim: Q_in + loss_str: MAE + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/HGNS_SE_datakit_case14.yaml b/examples/config/HGNS_SE_datakit_case14.yaml new file mode 100644 index 0000000..09ad20a --- /dev/null +++ b/examples/config/HGNS_SE_datakit_case14.yaml @@ -0,0 +1,75 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: StateEstimation + noise_type: Gaussian + measurements: + power_inj: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + power_flow: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + vm: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + relative_measurement: true +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case14_ieee + scenarios: + - 100000 + split_by_load_scenario_idx: true + test_ratio: 0.1 + val_ratio: 0.1 + workers: 32 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 32 + epochs: 200 + losses: + - LossPerDim + - LossPerDim + - LossPerDim + - LossPerDim + loss_weights: + - 0.35 + - 0.35 + - 0.1 + - 0.1 + loss_args: + - dim: VM + loss_str: MAE + - dim: VA + loss_str: MAE + - dim: P_in + loss_str: MAE + - dim: Q_in + loss_str: MAE + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/examples/config/case118_ieee_base.yaml b/examples/config/case118_ieee_base.yaml deleted file mode 100644 index 41de315..0000000 --- a/examples/config/case118_ieee_base.yaml +++ /dev/null @@ -1,41 +0,0 @@ -seed: 42 -data: - networks: ["case118_ieee"] - scenarios: [300000] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: "rnd" - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.1 - test_ratio: 0.1 - workers: 4 -model: - type: "GPSTransformer" - input_dim: 9 - output_dim: 6 - edge_dim: 2 - pe_dim: 20 - num_layers: 8 - hidden_size: 256 - attention_head: 8 - dropout: 0.1 -training: - batch_size: 32 - epochs: 200 - losses: ["MaskedMSE", "PBE"] - loss_weights: [0.01, 0.99] - accelerator: auto - devices: auto - strategy: auto -optimizer: - learning_rate: 0.0001 - beta1: 0.9 - beta2: 0.999 - lr_decay: 0.7 - lr_patience: 10 -callbacks: - patience: 100 - tol: 0 diff --git a/examples/config/case240_pserc_base.yaml b/examples/config/case240_pserc_base.yaml deleted file mode 100644 index 6758061..0000000 --- a/examples/config/case240_pserc_base.yaml +++ /dev/null @@ -1,41 +0,0 @@ -seed: 42 -data: - networks: ["case240_pserc"] - scenarios: [180000] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: "rnd" - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.1 - test_ratio: 0.1 - workers: 4 -model: - type: "GPSTransformer" - input_dim: 9 - output_dim: 6 - edge_dim: 2 - pe_dim: 20 - num_layers: 8 - hidden_size: 256 - attention_head: 8 - dropout: 0.1 -training: - batch_size: 32 - epochs: 200 - losses: ["MaskedMSE", "PBE"] - loss_weights: [0.01, 0.99] - accelerator: auto - devices: auto - strategy: auto -optimizer: - learning_rate: 0.0001 - beta1: 0.9 - beta2: 0.999 - lr_decay: 0.7 - lr_patience: 10 -callbacks: - patience: 100 - tol: 0 diff --git a/examples/config/case24_ieee_rts_base.yaml b/examples/config/case24_ieee_rts_base.yaml deleted file mode 100644 index b912b46..0000000 --- a/examples/config/case24_ieee_rts_base.yaml +++ /dev/null @@ -1,41 +0,0 @@ -seed: 42 -data: - networks: ["case24_ieee_rts"] - scenarios: [300000] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: "rnd" - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.1 - test_ratio: 0.1 - workers: 4 -model: - type: "GPSTransformer" - input_dim: 9 - output_dim: 6 - edge_dim: 2 - pe_dim: 20 - num_layers: 8 - hidden_size: 256 - attention_head: 8 - dropout: 0.1 -training: - batch_size: 32 - epochs: 200 - losses: ["MaskedMSE", "PBE"] - loss_weights: [0.01, 0.99] - accelerator: auto - devices: auto - strategy: auto -optimizer: - learning_rate: 0.0001 - beta1: 0.9 - beta2: 0.999 - lr_decay: 0.7 - lr_patience: 10 -callbacks: - patience: 100 - tol: 0 diff --git a/examples/config/case300_ieee_base.yaml b/examples/config/case300_ieee_base.yaml deleted file mode 100644 index d2fe4c4..0000000 --- a/examples/config/case300_ieee_base.yaml +++ /dev/null @@ -1,41 +0,0 @@ -seed: 42 -data: - networks: ["case300_ieee"] - scenarios: [170000] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: "rnd" - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.1 - test_ratio: 0.1 - workers: 4 -model: - type: "GPSTransformer" - input_dim: 9 - output_dim: 6 - edge_dim: 2 - pe_dim: 20 - num_layers: 8 - hidden_size: 256 - attention_head: 8 - dropout: 0.0 -training: - batch_size: 32 - epochs: 200 - losses: ["MaskedMSE", "PBE"] - loss_weights: [0.01, 0.99] - accelerator: auto - devices: auto - strategy: auto -optimizer: - learning_rate: 0.0001 - beta1: 0.9 - beta2: 0.999 - lr_decay: 0.7 - lr_patience: 10 -callbacks: - patience: 100 - tol: 0 diff --git a/examples/config/case30_ieee_base.yaml b/examples/config/case30_ieee_base.yaml deleted file mode 100644 index a884933..0000000 --- a/examples/config/case30_ieee_base.yaml +++ /dev/null @@ -1,41 +0,0 @@ -seed: 42 -data: - networks: ["case30_ieee"] - scenarios: [1023] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: "rnd" - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.1 - test_ratio: 0.1 - workers: 4 -model: - attention_head: 8 - dropout: 0.1 - edge_dim: 2 - hidden_size: 256 - input_dim: 9 - num_layers: 8 - output_dim: 6 - pe_dim: 20 - type: GPSTransformer -training: - batch_size: 1 - epochs: 50 - losses: ["MaskedMSE", "PBE"] - loss_weights: [0.01, 0.99] - accelerator: auto - devices: auto - strategy: auto -optimizer: - learning_rate: 0.0001 - beta1: 0.9 - beta2: 0.999 - lr_decay: 0.7 - lr_patience: 10 -callbacks: - patience: 100 - tol: 0 diff --git a/examples/config/case39_epri_base.yaml b/examples/config/case39_epri_base.yaml deleted file mode 100644 index 076a25a..0000000 --- a/examples/config/case39_epri_base.yaml +++ /dev/null @@ -1,41 +0,0 @@ -seed: 42 -data: - networks: ["case39_epri"] - scenarios: [165000] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: 'rnd' - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.1 - test_ratio: 0.1 -model: - type: "GPSTransformer" - input_dim: 9 - output_dim: 6 - edge_dim: 2 - pe_dim: 20 - num_layers: 8 - hidden_size: 256 - attention_head: 8 - dropout: 0.1 - workers: 4 -training: - batch_size: 32 - epochs: 200 - losses: ["MaskedMSE", "PBE"] - loss_weights: [0.01, 0.99] - accelerator: auto - devices: auto - strategy: auto -optimizer: - learning_rate: 0.0001 - beta1: 0.9 - beta2: 0.999 - lr_decay: 0.7 - lr_patience: 10 -callbacks: - patience: 100 - tol: 0 diff --git a/examples/config/case57_ieee_base.yaml b/examples/config/case57_ieee_base.yaml deleted file mode 100644 index 96e7c3c..0000000 --- a/examples/config/case57_ieee_base.yaml +++ /dev/null @@ -1,41 +0,0 @@ -seed: 42 -data: - networks: ["case57_ieee"] - scenarios: [300000] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: "rnd" - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.1 - test_ratio: 0.1 - workers: 4 -model: - type: "GPSTransformer" - input_dim: 9 - output_dim: 6 - edge_dim: 2 - pe_dim: 20 - num_layers: 8 - hidden_size: 256 - attention_head: 8 - dropout: 0.1 -training: - batch_size: 32 - epochs: 200 - losses: ["MaskedMSE", "PBE"] - loss_weights: [0.01, 0.99] - accelerator: auto - devices: auto - strategy: auto -optimizer: - learning_rate: 0.0001 - beta1: 0.9 - beta2: 0.999 - lr_decay: 0.7 - lr_patience: 10 -callbacks: - patience: 100 - tol: 0 diff --git a/examples/config/case89_pegase_base.yaml b/examples/config/case89_pegase_base.yaml deleted file mode 100644 index 0eef554..0000000 --- a/examples/config/case89_pegase_base.yaml +++ /dev/null @@ -1,41 +0,0 @@ -seed: 42 -data: - networks: ["case89_pegase"] - scenarios: [160000] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: "pf" - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.1 - test_ratio: 0.1 - workers: 4 -model: - attention_head: 8 - dropout: 0.1 - edge_dim: 2 - hidden_size: 256 - input_dim: 9 - num_layers: 8 - output_dim: 6 - pe_dim: 20 - type: GPSTransformer -training: - batch_size: 32 - epochs: 400 - losses: ["MaskedMSE", "PBE"] - loss_weights: [0.9, 0.1] - accelerator: auto - devices: auto - strategy: auto -optimizer: - learning_rate: 0.0001 - beta1: 0.9 - beta2: 0.999 - lr_decay: 0.7 - lr_patience: 10 -callbacks: - patience: 100 - tol: 0 diff --git a/examples/config/gridFMv0.1_pretraining.yaml b/examples/config/gridFMv0.1_pretraining.yaml deleted file mode 100644 index c489e95..0000000 --- a/examples/config/gridFMv0.1_pretraining.yaml +++ /dev/null @@ -1,57 +0,0 @@ -callbacks: - patience: 100 - tol: 0 -data: - baseMVA: 100 - learn_mask: false - mask_dim: 6 - mask_ratio: 0.5 - mask_type: rnd - mask_value: 0.0 - networks: - - case240_pserc - - case24_ieee_rts - - case30_ieee - - case57_ieee - - case89_pegase - - case118_ieee - normalization: baseMVAnorm - scenarios: - - 100000 - - 100000 - - 100000 - - 100000 - - 100000 - - 100000 - test_ratio: 0.1 - val_ratio: 0.1 - workers: 4 -model: - attention_head: 8 - dropout: 0.1 - edge_dim: 2 - hidden_size: 64 - input_dim: 9 - num_layers: 8 - output_dim: 6 - pe_dim: 20 - type: GNN_TransformerConv -optimizer: - beta1: 0.9 - beta2: 0.999 - learning_rate: 1.0e-05 - lr_decay: 0.7 - lr_patience: 10 -seed: 200 -training: - batch_size: 64 - epochs: 500 - loss_weights: - - 0.01 - - 0.99 - losses: - - MaskedMSE - - PBE - accelerator: auto - devices: auto - strategy: auto diff --git a/examples/config/gridFMv0.2_pretraining.yaml b/examples/config/gridFMv0.2_pretraining.yaml deleted file mode 100644 index 8a804db..0000000 --- a/examples/config/gridFMv0.2_pretraining.yaml +++ /dev/null @@ -1,57 +0,0 @@ -callbacks: - patience: 100 - tol: 0 -data: - baseMVA: 100 - learn_mask: false - mask_dim: 6 - mask_ratio: 0.5 - mask_type: rnd - mask_value: 0.0 - networks: - - case240_pserc - - case24_ieee_rts - - case30_ieee - - case57_ieee - - case89_pegase - - case118_ieee - normalization: baseMVAnorm - scenarios: - - 100000 - - 100000 - - 100000 - - 100000 - - 100000 - - 100000 - test_ratio: 0.1 - val_ratio: 0.1 - workers: 4 -model: - attention_head: 8 - dropout: 0.1 - edge_dim: 2 - hidden_size: 256 - input_dim: 9 - num_layers: 8 - output_dim: 6 - pe_dim: 20 - type: GPSTransformer -optimizer: - beta1: 0.9 - beta2: 0.999 - learning_rate: 0.0001 - lr_decay: 0.7 - lr_patience: 10 -seed: 0 -training: - batch_size: 64 - epochs: 500 - loss_weights: - - 0.01 - - 0.99 - losses: - - MaskedMSE - - PBE - accelerator: auto - devices: auto - strategy: auto diff --git a/examples/data/case30_ieee/raw/pf_edge.csv b/examples/data/case30_ieee/raw/pf_edge.csv deleted file mode 100644 index f50fa19..0000000 --- a/examples/data/case30_ieee/raw/pf_edge.csv +++ /dev/null @@ -1,111003 +0,0 @@ -scenario,index1,index2,G,B -0,0.0,0.0,6.765516048652632,-21.23160167089863 -0,0.0,1.0,-5.224646179885656,15.646726840803398 -0,0.0,2.0,-1.5408698687669766,5.631674830095234 -0,1.0,0.0,-5.224646179885656,15.646726840803398 -0,1.0,1.0,9.75228216552403,-30.648662892676068 -0,1.0,3.0,-1.7055303166990268,5.1973792282565086 -0,1.0,4.0,-1.1359607881738778,4.772479328281356 -0,1.0,5.0,-1.6861448807654689,5.116477495334806 -0,2.0,0.0,-1.5408698687669766,5.631674830095234 -0,2.0,2.0,9.736318911079088,-29.13794745915803 -0,2.0,3.0,-8.19544904231211,23.5308726290628 -0,3.0,1.0,-1.7055303166990268,5.1973792282565086 -0,3.0,2.0,-8.19544904231211,23.5308726290628 -0,3.0,3.0,16.314103089185693,-55.509410535254254 -0,3.0,5.0,-6.413123730174556,22.31120356548123 -0,3.0,11.0,0.0,4.191255364806866 -0,4.0,1.0,-1.1359607881738778,4.772479328281356 -0,4.0,4.0,4.089980824135861,-12.190647245055052 -0,4.0,6.0,-2.954020035961983,7.449267916773697 -0,5.0,1.0,-1.6861448807654689,5.116477495334806 -0,5.0,3.0,-6.413123730174556,22.31120356548123 -0,5.0,5.0,22.341631269034565,-82.8291478657789 -0,5.0,6.0,-3.590210423980992,11.02611441072814 -0,5.0,7.0,-6.289308176100628,22.0125786163522 -0,5.0,8.0,0.0,4.915840805411357 -0,5.0,9.0,0.0,1.8561002591115965 -0,5.0,27.0,-4.362844058012917,15.463571542897856 -0,6.0,4.0,-2.954020035961983,7.449267916773697 -0,6.0,5.0,-3.590210423980992,11.02611441072814 -0,6.0,6.0,6.544230459942975,-18.45668232750184 -0,7.0,5.0,-6.289308176100628,22.0125786163522 -0,7.0,7.0,7.733287237496075,-26.527493274828448 -0,7.0,27.0,-1.4439790613954469,4.540814658476248 -0,8.0,5.0,0.0,4.915840805411357 -0,8.0,8.0,0.0,-18.706293706293707 -0,8.0,9.0,0.0,9.090909090909092 -0,8.0,10.0,0.0,4.807692307692308 -0,9.0,5.0,0.0,1.8561002591115965 -0,9.0,8.0,0.0,9.090909090909092 -0,9.0,9.0,13.462042814524237,-41.3837606675224 -0,9.0,16.0,-3.956039125715353,10.317447719844054 -0,9.0,19.0,-1.7848303152666305,3.98535828943083 -0,9.0,20.0,-5.101853820159654,10.98071411292983 -0,9.0,21.0,-2.619319553382597,5.400770303329455 -0,10.0,8.0,0.0,4.807692307692308 -0,10.0,10.0,0.0,-4.807692307692308 -0,11.0,3.0,0.0,4.191255364806866 -0,11.0,11.0,6.573961583776156,-24.424167659260668 -0,11.0,12.0,0.0,7.142857142857143 -0,11.0,13.0,-1.5265676088395577,3.1734252729654173 -0,11.0,14.0,-3.0953961826564296,6.097275864326261 -0,11.0,15.0,-1.9519977922801688,4.104359379111847 -0,12.0,11.0,0.0,7.142857142857143 -0,12.0,12.0,0.0,-7.142857142857143 -0,13.0,11.0,-1.5265676088395577,3.1734252729654173 -0,13.0,13.0,4.01751987283902,-5.424299332335067 -0,13.0,14.0,-2.4909522639994623,2.250874059369649 -0,14.0,11.0,-3.0953961826564296,6.097275864326261 -0,14.0,13.0,-2.4909522639994623,2.250874059369649 -0,14.0,14.0,9.365498545964757,-16.01163373210796 -0,14.0,17.0,-1.8108011504072024,3.687418931630696 -0,14.0,22.0,-1.9683489489016612,3.976064876781356 -0,15.0,11.0,-1.9519977922801688,4.104359379111847 -0,15.0,15.0,3.271064728633931,-8.94513365126506 -0,15.0,16.0,-1.3190669363537617,4.8407742721532125 -0,16.0,9.0,-3.956039125715353,10.317447719844054 -0,16.0,15.0,-1.3190669363537617,4.8407742721532125 -0,16.0,16.0,5.275106062069114,-15.158221991997266 -0,17.0,14.0,-1.8108011504072024,3.687418931630696 -0,17.0,17.0,4.886487584415919,-9.906177730909668 -0,17.0,18.0,-3.0756864340087167,6.218758799278971 -0,18.0,17.0,-3.0756864340087167,6.218758799278971 -0,18.0,18.0,8.958039375185187,-17.98346468163191 -0,18.0,19.0,-5.88235294117647,11.76470588235294 -0,19.0,9.0,-1.7848303152666305,3.98535828943083 -0,19.0,18.0,-5.88235294117647,11.76470588235294 -0,19.0,19.0,7.6671832564431,-15.75006417178377 -0,20.0,9.0,-5.101853820159654,10.98071411292983 -0,20.0,20.0,21.876495189895888,-45.10843276170355 -0,20.0,21.0,-16.774641369736234,34.127718648773715 -0,21.0,9.0,-2.619319553382597,5.400770303329455 -0,21.0,20.0,-16.774641369736234,34.127718648773715 -0,21.0,21.0,21.93449907537439,-43.48289181517921 -0,21.0,23.0,-2.5405381522555563,3.95440286307604 -0,22.0,14.0,-1.9683489489016612,3.976064876781356 -0,22.0,22.0,3.429754555384988,-6.965303617315433 -0,22.0,23.0,-1.4614056064833263,2.989238740534077 -0,23.0,21.0,-2.5405381522555563,3.95440286307604 -0,23.0,22.0,-1.4614056064833263,2.989238740534077 -0,23.0,23.0,5.311836702613133,-9.188263657315172 -0,23.0,24.0,-1.3098929438742493,2.287622053705056 -0,24.0,23.0,-1.3098929438742493,2.287622053705056 -0,24.0,24.0,4.495715080321987,-7.864978761969621 -0,24.0,25.0,-1.2165301194494855,1.8171440463475024 -0,24.0,26.0,-1.9692920169982515,3.760212661917064 -0,25.0,24.0,-1.2165301194494855,1.8171440463475024 -0,25.0,25.0,1.2165301194494855,-1.8171440463475024 -0,26.0,24.0,-1.9692920169982515,3.760212661917064 -0,26.0,26.0,3.652281470778589,-9.46044252232512 -0,26.0,27.0,0.0,2.608731947574922 -0,26.0,28.0,-0.99553355095268,1.881005840357816 -0,26.0,29.0,-0.6874559028276572,1.293971494797717 -0,27.0,5.0,-4.362844058012917,15.463571542897856 -0,27.0,7.0,-1.4439790613954469,4.540814658476248 -0,27.0,26.0,0.0,2.608731947574922 -0,27.0,27.0,5.806823119408364,-22.67145722159613 -0,28.0,26.0,-0.99553355095268,1.881005840357816 -0,28.0,28.0,1.9075867579849564,-3.604364401207048 -0,28.0,29.0,-0.9120532070322764,1.7233585608492326 -0,29.0,26.0,-0.6874559028276572,1.293971494797717 -0,29.0,28.0,-0.9120532070322764,1.7233585608492326 -0,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1,0.0,0.0,6.765516048652632,-21.23160167089863 -1,0.0,1.0,-5.224646179885656,15.646726840803398 -1,0.0,2.0,-1.5408698687669766,5.631674830095234 -1,1.0,0.0,-5.224646179885656,15.646726840803398 -1,1.0,1.0,9.75228216552403,-30.648662892676068 -1,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1,1.0,4.0,-1.1359607881738778,4.772479328281356 -1,1.0,5.0,-1.6861448807654689,5.116477495334806 -1,2.0,0.0,-1.5408698687669766,5.631674830095234 -1,2.0,2.0,9.736318911079088,-29.13794745915803 -1,2.0,3.0,-8.19544904231211,23.5308726290628 -1,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1,3.0,2.0,-8.19544904231211,23.5308726290628 -1,3.0,3.0,16.314103089185693,-55.509410535254254 -1,3.0,5.0,-6.413123730174556,22.31120356548123 -1,3.0,11.0,0.0,4.191255364806866 -1,4.0,1.0,-1.1359607881738778,4.772479328281356 -1,4.0,4.0,4.089980824135861,-12.190647245055052 -1,4.0,6.0,-2.954020035961983,7.449267916773697 -1,5.0,1.0,-1.6861448807654689,5.116477495334806 -1,5.0,3.0,-6.413123730174556,22.31120356548123 -1,5.0,5.0,22.341631269034565,-82.8291478657789 -1,5.0,6.0,-3.590210423980992,11.02611441072814 -1,5.0,7.0,-6.289308176100628,22.0125786163522 -1,5.0,8.0,0.0,4.915840805411357 -1,5.0,9.0,0.0,1.8561002591115965 -1,5.0,27.0,-4.362844058012917,15.463571542897856 -1,6.0,4.0,-2.954020035961983,7.449267916773697 -1,6.0,5.0,-3.590210423980992,11.02611441072814 -1,6.0,6.0,6.544230459942975,-18.45668232750184 -1,7.0,5.0,-6.289308176100628,22.0125786163522 -1,7.0,7.0,7.733287237496075,-26.527493274828448 -1,7.0,27.0,-1.4439790613954469,4.540814658476248 -1,8.0,5.0,0.0,4.915840805411357 -1,8.0,8.0,0.0,-18.706293706293707 -1,8.0,9.0,0.0,9.090909090909092 -1,8.0,10.0,0.0,4.807692307692308 -1,9.0,5.0,0.0,1.8561002591115965 -1,9.0,8.0,0.0,9.090909090909092 -1,9.0,9.0,13.462042814524237,-41.3837606675224 -1,9.0,16.0,-3.956039125715353,10.317447719844054 -1,9.0,19.0,-1.7848303152666305,3.98535828943083 -1,9.0,20.0,-5.101853820159654,10.98071411292983 -1,9.0,21.0,-2.619319553382597,5.400770303329455 -1,10.0,8.0,0.0,4.807692307692308 -1,10.0,10.0,0.0,-4.807692307692308 -1,11.0,3.0,0.0,4.191255364806866 -1,11.0,11.0,6.573961583776156,-24.424167659260668 -1,11.0,12.0,0.0,7.142857142857143 -1,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1,11.0,14.0,-3.0953961826564296,6.097275864326261 -1,11.0,15.0,-1.9519977922801688,4.104359379111847 -1,12.0,11.0,0.0,7.142857142857143 -1,12.0,12.0,0.0,-7.142857142857143 -1,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1,13.0,13.0,4.01751987283902,-5.424299332335067 -1,13.0,14.0,-2.4909522639994623,2.250874059369649 -1,14.0,11.0,-3.0953961826564296,6.097275864326261 -1,14.0,13.0,-2.4909522639994623,2.250874059369649 -1,14.0,14.0,9.365498545964757,-16.01163373210796 -1,14.0,17.0,-1.8108011504072024,3.687418931630696 -1,14.0,22.0,-1.9683489489016612,3.976064876781356 -1,15.0,11.0,-1.9519977922801688,4.104359379111847 -1,15.0,15.0,3.271064728633931,-8.94513365126506 -1,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1,16.0,9.0,-3.956039125715353,10.317447719844054 -1,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1,16.0,16.0,5.275106062069114,-15.158221991997266 -1,17.0,14.0,-1.8108011504072024,3.687418931630696 -1,17.0,17.0,4.886487584415919,-9.906177730909668 -1,17.0,18.0,-3.0756864340087167,6.218758799278971 -1,18.0,17.0,-3.0756864340087167,6.218758799278971 -1,18.0,18.0,8.958039375185187,-17.98346468163191 -1,18.0,19.0,-5.88235294117647,11.76470588235294 -1,19.0,9.0,-1.7848303152666305,3.98535828943083 -1,19.0,18.0,-5.88235294117647,11.76470588235294 -1,19.0,19.0,7.6671832564431,-15.75006417178377 -1,20.0,9.0,-5.101853820159654,10.98071411292983 -1,20.0,20.0,21.876495189895888,-45.10843276170355 -1,20.0,21.0,-16.774641369736234,34.127718648773715 -1,21.0,9.0,-2.619319553382597,5.400770303329455 -1,21.0,20.0,-16.774641369736234,34.127718648773715 -1,21.0,21.0,21.93449907537439,-43.48289181517921 -1,21.0,23.0,-2.5405381522555563,3.95440286307604 -1,22.0,14.0,-1.9683489489016612,3.976064876781356 -1,22.0,22.0,3.429754555384988,-6.965303617315433 -1,22.0,23.0,-1.4614056064833263,2.989238740534077 -1,23.0,21.0,-2.5405381522555563,3.95440286307604 -1,23.0,22.0,-1.4614056064833263,2.989238740534077 -1,23.0,23.0,5.311836702613133,-9.188263657315172 -1,23.0,24.0,-1.3098929438742493,2.287622053705056 -1,24.0,23.0,-1.3098929438742493,2.287622053705056 -1,24.0,24.0,4.495715080321987,-7.864978761969621 -1,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1,24.0,26.0,-1.9692920169982515,3.760212661917064 -1,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1,26.0,24.0,-1.9692920169982515,3.760212661917064 -1,26.0,26.0,3.652281470778589,-9.46044252232512 -1,26.0,27.0,0.0,2.608731947574922 -1,26.0,28.0,-0.99553355095268,1.881005840357816 -1,26.0,29.0,-0.6874559028276572,1.293971494797717 -1,27.0,5.0,-4.362844058012917,15.463571542897856 -1,27.0,7.0,-1.4439790613954469,4.540814658476248 -1,27.0,26.0,0.0,2.608731947574922 -1,27.0,27.0,5.806823119408364,-22.67145722159613 -1,28.0,26.0,-0.99553355095268,1.881005840357816 -1,28.0,28.0,1.9075867579849564,-3.604364401207048 -1,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1,29.0,26.0,-0.6874559028276572,1.293971494797717 -1,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1,29.0,29.0,1.5995091098599337,-3.0173300556469496 -2,0.0,0.0,6.765516048652632,-21.23160167089863 -2,0.0,1.0,-5.224646179885656,15.646726840803398 -2,0.0,2.0,-1.5408698687669766,5.631674830095234 -2,1.0,0.0,-5.224646179885656,15.646726840803398 -2,1.0,1.0,9.75228216552403,-30.648662892676068 -2,1.0,3.0,-1.7055303166990268,5.1973792282565086 -2,1.0,4.0,-1.1359607881738778,4.772479328281356 -2,1.0,5.0,-1.6861448807654689,5.116477495334806 -2,2.0,0.0,-1.5408698687669766,5.631674830095234 -2,2.0,2.0,9.736318911079088,-29.13794745915803 -2,2.0,3.0,-8.19544904231211,23.5308726290628 -2,3.0,1.0,-1.7055303166990268,5.1973792282565086 -2,3.0,2.0,-8.19544904231211,23.5308726290628 -2,3.0,3.0,16.314103089185693,-55.509410535254254 -2,3.0,5.0,-6.413123730174556,22.31120356548123 -2,3.0,11.0,0.0,4.191255364806866 -2,4.0,1.0,-1.1359607881738778,4.772479328281356 -2,4.0,4.0,4.089980824135861,-12.190647245055052 -2,4.0,6.0,-2.954020035961983,7.449267916773697 -2,5.0,1.0,-1.6861448807654689,5.116477495334806 -2,5.0,3.0,-6.413123730174556,22.31120356548123 -2,5.0,5.0,22.341631269034565,-82.8291478657789 -2,5.0,6.0,-3.590210423980992,11.02611441072814 -2,5.0,7.0,-6.289308176100628,22.0125786163522 -2,5.0,8.0,0.0,4.915840805411357 -2,5.0,9.0,0.0,1.8561002591115965 -2,5.0,27.0,-4.362844058012917,15.463571542897856 -2,6.0,4.0,-2.954020035961983,7.449267916773697 -2,6.0,5.0,-3.590210423980992,11.02611441072814 -2,6.0,6.0,6.544230459942975,-18.45668232750184 -2,7.0,5.0,-6.289308176100628,22.0125786163522 -2,7.0,7.0,7.733287237496075,-26.527493274828448 -2,7.0,27.0,-1.4439790613954469,4.540814658476248 -2,8.0,5.0,0.0,4.915840805411357 -2,8.0,8.0,0.0,-18.706293706293707 -2,8.0,9.0,0.0,9.090909090909092 -2,8.0,10.0,0.0,4.807692307692308 -2,9.0,5.0,0.0,1.8561002591115965 -2,9.0,8.0,0.0,9.090909090909092 -2,9.0,9.0,13.462042814524237,-41.3837606675224 -2,9.0,16.0,-3.956039125715353,10.317447719844054 -2,9.0,19.0,-1.7848303152666305,3.98535828943083 -2,9.0,20.0,-5.101853820159654,10.98071411292983 -2,9.0,21.0,-2.619319553382597,5.400770303329455 -2,10.0,8.0,0.0,4.807692307692308 -2,10.0,10.0,0.0,-4.807692307692308 -2,11.0,3.0,0.0,4.191255364806866 -2,11.0,11.0,6.573961583776156,-24.424167659260668 -2,11.0,12.0,0.0,7.142857142857143 -2,11.0,13.0,-1.5265676088395577,3.1734252729654173 -2,11.0,14.0,-3.0953961826564296,6.097275864326261 -2,11.0,15.0,-1.9519977922801688,4.104359379111847 -2,12.0,11.0,0.0,7.142857142857143 -2,12.0,12.0,0.0,-7.142857142857143 -2,13.0,11.0,-1.5265676088395577,3.1734252729654173 -2,13.0,13.0,4.01751987283902,-5.424299332335067 -2,13.0,14.0,-2.4909522639994623,2.250874059369649 -2,14.0,11.0,-3.0953961826564296,6.097275864326261 -2,14.0,13.0,-2.4909522639994623,2.250874059369649 -2,14.0,14.0,9.365498545964757,-16.01163373210796 -2,14.0,17.0,-1.8108011504072024,3.687418931630696 -2,14.0,22.0,-1.9683489489016612,3.976064876781356 -2,15.0,11.0,-1.9519977922801688,4.104359379111847 -2,15.0,15.0,3.271064728633931,-8.94513365126506 -2,15.0,16.0,-1.3190669363537617,4.8407742721532125 -2,16.0,9.0,-3.956039125715353,10.317447719844054 -2,16.0,15.0,-1.3190669363537617,4.8407742721532125 -2,16.0,16.0,5.275106062069114,-15.158221991997266 -2,17.0,14.0,-1.8108011504072024,3.687418931630696 -2,17.0,17.0,4.886487584415919,-9.906177730909668 -2,17.0,18.0,-3.0756864340087167,6.218758799278971 -2,18.0,17.0,-3.0756864340087167,6.218758799278971 -2,18.0,18.0,8.958039375185187,-17.98346468163191 -2,18.0,19.0,-5.88235294117647,11.76470588235294 -2,19.0,9.0,-1.7848303152666305,3.98535828943083 -2,19.0,18.0,-5.88235294117647,11.76470588235294 -2,19.0,19.0,7.6671832564431,-15.75006417178377 -2,20.0,9.0,-5.101853820159654,10.98071411292983 -2,20.0,20.0,21.876495189895888,-45.10843276170355 -2,20.0,21.0,-16.774641369736234,34.127718648773715 -2,21.0,9.0,-2.619319553382597,5.400770303329455 -2,21.0,20.0,-16.774641369736234,34.127718648773715 -2,21.0,21.0,21.93449907537439,-43.48289181517921 -2,21.0,23.0,-2.5405381522555563,3.95440286307604 -2,22.0,14.0,-1.9683489489016612,3.976064876781356 -2,22.0,22.0,3.429754555384988,-6.965303617315433 -2,22.0,23.0,-1.4614056064833263,2.989238740534077 -2,23.0,21.0,-2.5405381522555563,3.95440286307604 -2,23.0,22.0,-1.4614056064833263,2.989238740534077 -2,23.0,23.0,5.311836702613133,-9.188263657315172 -2,23.0,24.0,-1.3098929438742493,2.287622053705056 -2,24.0,23.0,-1.3098929438742493,2.287622053705056 -2,24.0,24.0,4.495715080321987,-7.864978761969621 -2,24.0,25.0,-1.2165301194494855,1.8171440463475024 -2,24.0,26.0,-1.9692920169982515,3.760212661917064 -2,25.0,24.0,-1.2165301194494855,1.8171440463475024 -2,25.0,25.0,1.2165301194494855,-1.8171440463475024 -2,26.0,24.0,-1.9692920169982515,3.760212661917064 -2,26.0,26.0,3.652281470778589,-9.46044252232512 -2,26.0,27.0,0.0,2.608731947574922 -2,26.0,28.0,-0.99553355095268,1.881005840357816 -2,26.0,29.0,-0.6874559028276572,1.293971494797717 -2,27.0,5.0,-4.362844058012917,15.463571542897856 -2,27.0,7.0,-1.4439790613954469,4.540814658476248 -2,27.0,26.0,0.0,2.608731947574922 -2,27.0,27.0,5.806823119408364,-22.67145722159613 -2,28.0,26.0,-0.99553355095268,1.881005840357816 -2,28.0,28.0,1.9075867579849564,-3.604364401207048 -2,28.0,29.0,-0.9120532070322764,1.7233585608492326 -2,29.0,26.0,-0.6874559028276572,1.293971494797717 -2,29.0,28.0,-0.9120532070322764,1.7233585608492326 -2,29.0,29.0,1.5995091098599337,-3.0173300556469496 -3,0.0,0.0,6.765516048652632,-21.23160167089863 -3,0.0,1.0,-5.224646179885656,15.646726840803398 -3,0.0,2.0,-1.5408698687669766,5.631674830095234 -3,1.0,0.0,-5.224646179885656,15.646726840803398 -3,1.0,1.0,9.75228216552403,-30.648662892676068 -3,1.0,3.0,-1.7055303166990268,5.1973792282565086 -3,1.0,4.0,-1.1359607881738778,4.772479328281356 -3,1.0,5.0,-1.6861448807654689,5.116477495334806 -3,2.0,0.0,-1.5408698687669766,5.631674830095234 -3,2.0,2.0,9.736318911079088,-29.13794745915803 -3,2.0,3.0,-8.19544904231211,23.5308726290628 -3,3.0,1.0,-1.7055303166990268,5.1973792282565086 -3,3.0,2.0,-8.19544904231211,23.5308726290628 -3,3.0,3.0,16.314103089185693,-55.509410535254254 -3,3.0,5.0,-6.413123730174556,22.31120356548123 -3,3.0,11.0,0.0,4.191255364806866 -3,4.0,1.0,-1.1359607881738778,4.772479328281356 -3,4.0,4.0,1.1359607881738778,-4.751579328281355 -3,5.0,1.0,-1.6861448807654689,5.116477495334806 -3,5.0,3.0,-6.413123730174556,22.31120356548123 -3,5.0,5.0,22.341631269034565,-82.8291478657789 -3,5.0,6.0,-3.590210423980992,11.02611441072814 -3,5.0,7.0,-6.289308176100628,22.0125786163522 -3,5.0,8.0,0.0,4.915840805411357 -3,5.0,9.0,0.0,1.8561002591115965 -3,5.0,27.0,-4.362844058012917,15.463571542897856 -3,6.0,5.0,-3.590210423980992,11.02611441072814 -3,6.0,6.0,3.590210423980992,-11.01761441072814 -3,7.0,5.0,-6.289308176100628,22.0125786163522 -3,7.0,7.0,7.733287237496075,-26.527493274828448 -3,7.0,27.0,-1.4439790613954469,4.540814658476248 -3,8.0,5.0,0.0,4.915840805411357 -3,8.0,8.0,0.0,-18.706293706293707 -3,8.0,9.0,0.0,9.090909090909092 -3,8.0,10.0,0.0,4.807692307692308 -3,9.0,5.0,0.0,1.8561002591115965 -3,9.0,8.0,0.0,9.090909090909092 -3,9.0,9.0,8.36018899436458,-30.40304655459257 -3,9.0,16.0,-3.956039125715353,10.317447719844054 -3,9.0,19.0,-1.7848303152666305,3.98535828943083 -3,9.0,21.0,-2.619319553382597,5.400770303329455 -3,10.0,8.0,0.0,4.807692307692308 -3,10.0,10.0,0.0,-4.807692307692308 -3,11.0,3.0,0.0,4.191255364806866 -3,11.0,11.0,6.573961583776156,-24.424167659260668 -3,11.0,12.0,0.0,7.142857142857143 -3,11.0,13.0,-1.5265676088395577,3.1734252729654173 -3,11.0,14.0,-3.0953961826564296,6.097275864326261 -3,11.0,15.0,-1.9519977922801688,4.104359379111847 -3,12.0,11.0,0.0,7.142857142857143 -3,12.0,12.0,0.0,-7.142857142857143 -3,13.0,11.0,-1.5265676088395577,3.1734252729654173 -3,13.0,13.0,4.01751987283902,-5.424299332335067 -3,13.0,14.0,-2.4909522639994623,2.250874059369649 -3,14.0,11.0,-3.0953961826564296,6.097275864326261 -3,14.0,13.0,-2.4909522639994623,2.250874059369649 -3,14.0,14.0,9.365498545964757,-16.01163373210796 -3,14.0,17.0,-1.8108011504072024,3.687418931630696 -3,14.0,22.0,-1.9683489489016612,3.976064876781356 -3,15.0,11.0,-1.9519977922801688,4.104359379111847 -3,15.0,15.0,3.271064728633931,-8.94513365126506 -3,15.0,16.0,-1.3190669363537617,4.8407742721532125 -3,16.0,9.0,-3.956039125715353,10.317447719844054 -3,16.0,15.0,-1.3190669363537617,4.8407742721532125 -3,16.0,16.0,5.275106062069114,-15.158221991997266 -3,17.0,14.0,-1.8108011504072024,3.687418931630696 -3,17.0,17.0,4.886487584415919,-9.906177730909668 -3,17.0,18.0,-3.0756864340087167,6.218758799278971 -3,18.0,17.0,-3.0756864340087167,6.218758799278971 -3,18.0,18.0,8.958039375185187,-17.98346468163191 -3,18.0,19.0,-5.88235294117647,11.76470588235294 -3,19.0,9.0,-1.7848303152666305,3.98535828943083 -3,19.0,18.0,-5.88235294117647,11.76470588235294 -3,19.0,19.0,7.6671832564431,-15.75006417178377 -3,20.0,20.0,16.774641369736234,-34.127718648773715 -3,20.0,21.0,-16.774641369736234,34.127718648773715 -3,21.0,9.0,-2.619319553382597,5.400770303329455 -3,21.0,20.0,-16.774641369736234,34.127718648773715 -3,21.0,21.0,21.93449907537439,-43.48289181517921 -3,21.0,23.0,-2.5405381522555563,3.95440286307604 -3,22.0,14.0,-1.9683489489016612,3.976064876781356 -3,22.0,22.0,3.429754555384988,-6.965303617315433 -3,22.0,23.0,-1.4614056064833263,2.989238740534077 -3,23.0,21.0,-2.5405381522555563,3.95440286307604 -3,23.0,22.0,-1.4614056064833263,2.989238740534077 -3,23.0,23.0,5.311836702613133,-9.188263657315172 -3,23.0,24.0,-1.3098929438742493,2.287622053705056 -3,24.0,23.0,-1.3098929438742493,2.287622053705056 -3,24.0,24.0,4.495715080321987,-7.864978761969621 -3,24.0,25.0,-1.2165301194494855,1.8171440463475024 -3,24.0,26.0,-1.9692920169982515,3.760212661917064 -3,25.0,24.0,-1.2165301194494855,1.8171440463475024 -3,25.0,25.0,1.2165301194494855,-1.8171440463475024 -3,26.0,24.0,-1.9692920169982515,3.760212661917064 -3,26.0,26.0,3.652281470778589,-9.46044252232512 -3,26.0,27.0,0.0,2.608731947574922 -3,26.0,28.0,-0.99553355095268,1.881005840357816 -3,26.0,29.0,-0.6874559028276572,1.293971494797717 -3,27.0,5.0,-4.362844058012917,15.463571542897856 -3,27.0,7.0,-1.4439790613954469,4.540814658476248 -3,27.0,26.0,0.0,2.608731947574922 -3,27.0,27.0,5.806823119408364,-22.67145722159613 -3,28.0,26.0,-0.99553355095268,1.881005840357816 -3,28.0,28.0,0.99553355095268,-1.881005840357816 -3,29.0,26.0,-0.6874559028276572,1.293971494797717 -3,29.0,29.0,0.6874559028276572,-1.293971494797717 -4,0.0,0.0,1.5408698687669766,-5.611274830095233 -4,0.0,2.0,-1.5408698687669766,5.631674830095234 -4,1.0,1.0,4.527635985638374,-15.028336051872673 -4,1.0,3.0,-1.7055303166990268,5.1973792282565086 -4,1.0,4.0,-1.1359607881738778,4.772479328281356 -4,1.0,5.0,-1.6861448807654689,5.116477495334806 -4,2.0,0.0,-1.5408698687669766,5.631674830095234 -4,2.0,2.0,9.736318911079088,-29.13794745915803 -4,2.0,3.0,-8.19544904231211,23.5308726290628 -4,3.0,1.0,-1.7055303166990268,5.1973792282565086 -4,3.0,2.0,-8.19544904231211,23.5308726290628 -4,3.0,3.0,16.314103089185693,-55.509410535254254 -4,3.0,5.0,-6.413123730174556,22.31120356548123 -4,3.0,11.0,0.0,4.191255364806866 -4,4.0,1.0,-1.1359607881738778,4.772479328281356 -4,4.0,4.0,4.089980824135861,-12.190647245055052 -4,4.0,6.0,-2.954020035961983,7.449267916773697 -4,5.0,1.0,-1.6861448807654689,5.116477495334806 -4,5.0,3.0,-6.413123730174556,22.31120356548123 -4,5.0,5.0,16.052323092933932,-60.8210692494267 -4,5.0,6.0,-3.590210423980992,11.02611441072814 -4,5.0,8.0,0.0,4.915840805411357 -4,5.0,9.0,0.0,1.8561002591115965 -4,5.0,27.0,-4.362844058012917,15.463571542897856 -4,6.0,4.0,-2.954020035961983,7.449267916773697 -4,6.0,5.0,-3.590210423980992,11.02611441072814 -4,6.0,6.0,6.544230459942975,-18.45668232750184 -4,7.0,7.0,1.4439790613954469,-4.519414658476248 -4,7.0,27.0,-1.4439790613954469,4.540814658476248 -4,8.0,5.0,0.0,4.915840805411357 -4,8.0,8.0,0.0,-18.706293706293707 -4,8.0,9.0,0.0,9.090909090909092 -4,8.0,10.0,0.0,4.807692307692308 -4,9.0,5.0,0.0,1.8561002591115965 -4,9.0,8.0,0.0,9.090909090909092 -4,9.0,9.0,13.462042814524237,-41.3837606675224 -4,9.0,16.0,-3.956039125715353,10.317447719844054 -4,9.0,19.0,-1.7848303152666305,3.98535828943083 -4,9.0,20.0,-5.101853820159654,10.98071411292983 -4,9.0,21.0,-2.619319553382597,5.400770303329455 -4,10.0,8.0,0.0,4.807692307692308 -4,10.0,10.0,0.0,-4.807692307692308 -4,11.0,3.0,0.0,4.191255364806866 -4,11.0,11.0,6.573961583776156,-24.424167659260668 -4,11.0,12.0,0.0,7.142857142857143 -4,11.0,13.0,-1.5265676088395577,3.1734252729654173 -4,11.0,14.0,-3.0953961826564296,6.097275864326261 -4,11.0,15.0,-1.9519977922801688,4.104359379111847 -4,12.0,11.0,0.0,7.142857142857143 -4,12.0,12.0,0.0,-7.142857142857143 -4,13.0,11.0,-1.5265676088395577,3.1734252729654173 -4,13.0,13.0,4.01751987283902,-5.424299332335067 -4,13.0,14.0,-2.4909522639994623,2.250874059369649 -4,14.0,11.0,-3.0953961826564296,6.097275864326261 -4,14.0,13.0,-2.4909522639994623,2.250874059369649 -4,14.0,14.0,7.397149597063095,-12.035568855326606 -4,14.0,17.0,-1.8108011504072024,3.687418931630696 -4,15.0,11.0,-1.9519977922801688,4.104359379111847 -4,15.0,15.0,3.271064728633931,-8.94513365126506 -4,15.0,16.0,-1.3190669363537617,4.8407742721532125 -4,16.0,9.0,-3.956039125715353,10.317447719844054 -4,16.0,15.0,-1.3190669363537617,4.8407742721532125 -4,16.0,16.0,5.275106062069114,-15.158221991997266 -4,17.0,14.0,-1.8108011504072024,3.687418931630696 -4,17.0,17.0,4.886487584415919,-9.906177730909668 -4,17.0,18.0,-3.0756864340087167,6.218758799278971 -4,18.0,17.0,-3.0756864340087167,6.218758799278971 -4,18.0,18.0,8.958039375185187,-17.98346468163191 -4,18.0,19.0,-5.88235294117647,11.76470588235294 -4,19.0,9.0,-1.7848303152666305,3.98535828943083 -4,19.0,18.0,-5.88235294117647,11.76470588235294 -4,19.0,19.0,7.6671832564431,-15.75006417178377 -4,20.0,9.0,-5.101853820159654,10.98071411292983 -4,20.0,20.0,21.876495189895888,-45.10843276170355 -4,20.0,21.0,-16.774641369736234,34.127718648773715 -4,21.0,9.0,-2.619319553382597,5.400770303329455 -4,21.0,20.0,-16.774641369736234,34.127718648773715 -4,21.0,21.0,21.93449907537439,-43.48289181517921 -4,21.0,23.0,-2.5405381522555563,3.95440286307604 -4,22.0,22.0,1.4614056064833263,-2.989238740534077 -4,22.0,23.0,-1.4614056064833263,2.989238740534077 -4,23.0,21.0,-2.5405381522555563,3.95440286307604 -4,23.0,22.0,-1.4614056064833263,2.989238740534077 -4,23.0,23.0,5.311836702613133,-9.188263657315172 -4,23.0,24.0,-1.3098929438742493,2.287622053705056 -4,24.0,23.0,-1.3098929438742493,2.287622053705056 -4,24.0,24.0,4.495715080321987,-7.864978761969621 -4,24.0,25.0,-1.2165301194494855,1.8171440463475024 -4,24.0,26.0,-1.9692920169982515,3.760212661917064 -4,25.0,24.0,-1.2165301194494855,1.8171440463475024 -4,25.0,25.0,1.2165301194494855,-1.8171440463475024 -4,26.0,24.0,-1.9692920169982515,3.760212661917064 -4,26.0,26.0,3.652281470778589,-9.46044252232512 -4,26.0,27.0,0.0,2.608731947574922 -4,26.0,28.0,-0.99553355095268,1.881005840357816 -4,26.0,29.0,-0.6874559028276572,1.293971494797717 -4,27.0,5.0,-4.362844058012917,15.463571542897856 -4,27.0,7.0,-1.4439790613954469,4.540814658476248 -4,27.0,26.0,0.0,2.608731947574922 -4,27.0,27.0,5.806823119408364,-22.67145722159613 -4,28.0,26.0,-0.99553355095268,1.881005840357816 -4,28.0,28.0,1.9075867579849564,-3.604364401207048 -4,28.0,29.0,-0.9120532070322764,1.7233585608492326 -4,29.0,26.0,-0.6874559028276572,1.293971494797717 -4,29.0,28.0,-0.9120532070322764,1.7233585608492326 -4,29.0,29.0,1.5995091098599337,-3.0173300556469496 -5,0.0,0.0,6.765516048652632,-21.23160167089863 -5,0.0,1.0,-5.224646179885656,15.646726840803398 -5,0.0,2.0,-1.5408698687669766,5.631674830095234 -5,1.0,0.0,-5.224646179885656,15.646726840803398 -5,1.0,1.0,9.75228216552403,-30.648662892676068 -5,1.0,3.0,-1.7055303166990268,5.1973792282565086 -5,1.0,4.0,-1.1359607881738778,4.772479328281356 -5,1.0,5.0,-1.6861448807654689,5.116477495334806 -5,2.0,0.0,-1.5408698687669766,5.631674830095234 -5,2.0,2.0,9.736318911079088,-29.13794745915803 -5,2.0,3.0,-8.19544904231211,23.5308726290628 -5,3.0,1.0,-1.7055303166990268,5.1973792282565086 -5,3.0,2.0,-8.19544904231211,23.5308726290628 -5,3.0,3.0,16.314103089185693,-55.509410535254254 -5,3.0,5.0,-6.413123730174556,22.31120356548123 -5,3.0,11.0,0.0,4.191255364806866 -5,4.0,1.0,-1.1359607881738778,4.772479328281356 -5,4.0,4.0,4.089980824135861,-12.190647245055052 -5,4.0,6.0,-2.954020035961983,7.449267916773697 -5,5.0,1.0,-1.6861448807654689,5.116477495334806 -5,5.0,3.0,-6.413123730174556,22.31120356548123 -5,5.0,5.0,22.341631269034565,-82.8291478657789 -5,5.0,6.0,-3.590210423980992,11.02611441072814 -5,5.0,7.0,-6.289308176100628,22.0125786163522 -5,5.0,8.0,0.0,4.915840805411357 -5,5.0,9.0,0.0,1.8561002591115965 -5,5.0,27.0,-4.362844058012917,15.463571542897856 -5,6.0,4.0,-2.954020035961983,7.449267916773697 -5,6.0,5.0,-3.590210423980992,11.02611441072814 -5,6.0,6.0,6.544230459942975,-18.45668232750184 -5,7.0,5.0,-6.289308176100628,22.0125786163522 -5,7.0,7.0,7.733287237496075,-26.527493274828448 -5,7.0,27.0,-1.4439790613954469,4.540814658476248 -5,8.0,5.0,0.0,4.915840805411357 -5,8.0,8.0,0.0,-18.706293706293707 -5,8.0,9.0,0.0,9.090909090909092 -5,8.0,10.0,0.0,4.807692307692308 -5,9.0,5.0,0.0,1.8561002591115965 -5,9.0,8.0,0.0,9.090909090909092 -5,9.0,9.0,13.462042814524237,-41.3837606675224 -5,9.0,16.0,-3.956039125715353,10.317447719844054 -5,9.0,19.0,-1.7848303152666305,3.98535828943083 -5,9.0,20.0,-5.101853820159654,10.98071411292983 -5,9.0,21.0,-2.619319553382597,5.400770303329455 -5,10.0,8.0,0.0,4.807692307692308 -5,10.0,10.0,0.0,-4.807692307692308 -5,11.0,3.0,0.0,4.191255364806866 -5,11.0,11.0,6.573961583776156,-24.424167659260668 -5,11.0,12.0,0.0,7.142857142857143 -5,11.0,13.0,-1.5265676088395577,3.1734252729654173 -5,11.0,14.0,-3.0953961826564296,6.097275864326261 -5,11.0,15.0,-1.9519977922801688,4.104359379111847 -5,12.0,11.0,0.0,7.142857142857143 -5,12.0,12.0,0.0,-7.142857142857143 -5,13.0,11.0,-1.5265676088395577,3.1734252729654173 -5,13.0,13.0,4.01751987283902,-5.424299332335067 -5,13.0,14.0,-2.4909522639994623,2.250874059369649 -5,14.0,11.0,-3.0953961826564296,6.097275864326261 -5,14.0,13.0,-2.4909522639994623,2.250874059369649 -5,14.0,14.0,7.397149597063095,-12.035568855326606 -5,14.0,17.0,-1.8108011504072024,3.687418931630696 -5,15.0,11.0,-1.9519977922801688,4.104359379111847 -5,15.0,15.0,3.271064728633931,-8.94513365126506 -5,15.0,16.0,-1.3190669363537617,4.8407742721532125 -5,16.0,9.0,-3.956039125715353,10.317447719844054 -5,16.0,15.0,-1.3190669363537617,4.8407742721532125 -5,16.0,16.0,5.275106062069114,-15.158221991997266 -5,17.0,14.0,-1.8108011504072024,3.687418931630696 -5,17.0,17.0,4.886487584415919,-9.906177730909668 -5,17.0,18.0,-3.0756864340087167,6.218758799278971 -5,18.0,17.0,-3.0756864340087167,6.218758799278971 -5,18.0,18.0,8.958039375185187,-17.98346468163191 -5,18.0,19.0,-5.88235294117647,11.76470588235294 -5,19.0,9.0,-1.7848303152666305,3.98535828943083 -5,19.0,18.0,-5.88235294117647,11.76470588235294 -5,19.0,19.0,7.6671832564431,-15.75006417178377 -5,20.0,9.0,-5.101853820159654,10.98071411292983 -5,20.0,20.0,21.876495189895888,-45.10843276170355 -5,20.0,21.0,-16.774641369736234,34.127718648773715 -5,21.0,9.0,-2.619319553382597,5.400770303329455 -5,21.0,20.0,-16.774641369736234,34.127718648773715 -5,21.0,21.0,21.93449907537439,-43.48289181517921 -5,21.0,23.0,-2.5405381522555563,3.95440286307604 -5,22.0,22.0,1.4614056064833263,-2.989238740534077 -5,22.0,23.0,-1.4614056064833263,2.989238740534077 -5,23.0,21.0,-2.5405381522555563,3.95440286307604 -5,23.0,22.0,-1.4614056064833263,2.989238740534077 -5,23.0,23.0,4.001943758738883,-6.900641603610116 -5,24.0,24.0,3.185822136447737,-5.577356708264566 -5,24.0,25.0,-1.2165301194494855,1.8171440463475024 -5,24.0,26.0,-1.9692920169982515,3.760212661917064 -5,25.0,24.0,-1.2165301194494855,1.8171440463475024 -5,25.0,25.0,1.2165301194494855,-1.8171440463475024 -5,26.0,24.0,-1.9692920169982515,3.760212661917064 -5,26.0,26.0,3.652281470778589,-9.46044252232512 -5,26.0,27.0,0.0,2.608731947574922 -5,26.0,28.0,-0.99553355095268,1.881005840357816 -5,26.0,29.0,-0.6874559028276572,1.293971494797717 -5,27.0,5.0,-4.362844058012917,15.463571542897856 -5,27.0,7.0,-1.4439790613954469,4.540814658476248 -5,27.0,26.0,0.0,2.608731947574922 -5,27.0,27.0,5.806823119408364,-22.67145722159613 -5,28.0,26.0,-0.99553355095268,1.881005840357816 -5,28.0,28.0,1.9075867579849564,-3.604364401207048 -5,28.0,29.0,-0.9120532070322764,1.7233585608492326 -5,29.0,26.0,-0.6874559028276572,1.293971494797717 -5,29.0,28.0,-0.9120532070322764,1.7233585608492326 -5,29.0,29.0,1.5995091098599337,-3.0173300556469496 -6,0.0,0.0,6.765516048652632,-21.23160167089863 -6,0.0,1.0,-5.224646179885656,15.646726840803398 -6,0.0,2.0,-1.5408698687669766,5.631674830095234 -6,1.0,0.0,-5.224646179885656,15.646726840803398 -6,1.0,1.0,9.75228216552403,-30.648662892676068 -6,1.0,3.0,-1.7055303166990268,5.1973792282565086 -6,1.0,4.0,-1.1359607881738778,4.772479328281356 -6,1.0,5.0,-1.6861448807654689,5.116477495334806 -6,2.0,0.0,-1.5408698687669766,5.631674830095234 -6,2.0,2.0,9.736318911079088,-29.13794745915803 -6,2.0,3.0,-8.19544904231211,23.5308726290628 -6,3.0,1.0,-1.7055303166990268,5.1973792282565086 -6,3.0,2.0,-8.19544904231211,23.5308726290628 -6,3.0,3.0,16.314103089185693,-55.509410535254254 -6,3.0,5.0,-6.413123730174556,22.31120356548123 -6,3.0,11.0,0.0,4.191255364806866 -6,4.0,1.0,-1.1359607881738778,4.772479328281356 -6,4.0,4.0,4.089980824135861,-12.190647245055052 -6,4.0,6.0,-2.954020035961983,7.449267916773697 -6,5.0,1.0,-1.6861448807654689,5.116477495334806 -6,5.0,3.0,-6.413123730174556,22.31120356548123 -6,5.0,5.0,22.341631269034565,-80.91366772221689 -6,5.0,6.0,-3.590210423980992,11.02611441072814 -6,5.0,7.0,-6.289308176100628,22.0125786163522 -6,5.0,8.0,0.0,4.915840805411357 -6,5.0,27.0,-4.362844058012917,15.463571542897856 -6,6.0,4.0,-2.954020035961983,7.449267916773697 -6,6.0,5.0,-3.590210423980992,11.02611441072814 -6,6.0,6.0,6.544230459942975,-18.45668232750184 -6,7.0,5.0,-6.289308176100628,22.0125786163522 -6,7.0,7.0,7.733287237496075,-26.527493274828448 -6,7.0,27.0,-1.4439790613954469,4.540814658476248 -6,8.0,5.0,0.0,4.915840805411357 -6,8.0,8.0,0.0,-18.706293706293707 -6,8.0,9.0,0.0,9.090909090909092 -6,8.0,10.0,0.0,4.807692307692308 -6,9.0,8.0,0.0,9.090909090909092 -6,9.0,9.0,9.506003688808882,-29.267751796599203 -6,9.0,19.0,-1.7848303152666305,3.98535828943083 -6,9.0,20.0,-5.101853820159654,10.98071411292983 -6,9.0,21.0,-2.619319553382597,5.400770303329455 -6,10.0,8.0,0.0,4.807692307692308 -6,10.0,10.0,0.0,-4.807692307692308 -6,11.0,3.0,0.0,4.191255364806866 -6,11.0,11.0,6.573961583776156,-24.424167659260668 -6,11.0,12.0,0.0,7.142857142857143 -6,11.0,13.0,-1.5265676088395577,3.1734252729654173 -6,11.0,14.0,-3.0953961826564296,6.097275864326261 -6,11.0,15.0,-1.9519977922801688,4.104359379111847 -6,12.0,11.0,0.0,7.142857142857143 -6,12.0,12.0,0.0,-7.142857142857143 -6,13.0,11.0,-1.5265676088395577,3.1734252729654173 -6,13.0,13.0,4.01751987283902,-5.424299332335067 -6,13.0,14.0,-2.4909522639994623,2.250874059369649 -6,14.0,11.0,-3.0953961826564296,6.097275864326261 -6,14.0,13.0,-2.4909522639994623,2.250874059369649 -6,14.0,14.0,9.365498545964757,-16.01163373210796 -6,14.0,17.0,-1.8108011504072024,3.687418931630696 -6,14.0,22.0,-1.9683489489016612,3.976064876781356 -6,15.0,11.0,-1.9519977922801688,4.104359379111847 -6,15.0,15.0,3.271064728633931,-8.94513365126506 -6,15.0,16.0,-1.3190669363537617,4.8407742721532125 -6,16.0,15.0,-1.3190669363537617,4.8407742721532125 -6,16.0,16.0,1.3190669363537617,-4.8407742721532125 -6,17.0,14.0,-1.8108011504072024,3.687418931630696 -6,17.0,17.0,4.886487584415919,-9.906177730909668 -6,17.0,18.0,-3.0756864340087167,6.218758799278971 -6,18.0,17.0,-3.0756864340087167,6.218758799278971 -6,18.0,18.0,8.958039375185187,-17.98346468163191 -6,18.0,19.0,-5.88235294117647,11.76470588235294 -6,19.0,9.0,-1.7848303152666305,3.98535828943083 -6,19.0,18.0,-5.88235294117647,11.76470588235294 -6,19.0,19.0,7.6671832564431,-15.75006417178377 -6,20.0,9.0,-5.101853820159654,10.98071411292983 -6,20.0,20.0,21.876495189895888,-45.10843276170355 -6,20.0,21.0,-16.774641369736234,34.127718648773715 -6,21.0,9.0,-2.619319553382597,5.400770303329455 -6,21.0,20.0,-16.774641369736234,34.127718648773715 -6,21.0,21.0,21.93449907537439,-43.48289181517921 -6,21.0,23.0,-2.5405381522555563,3.95440286307604 -6,22.0,14.0,-1.9683489489016612,3.976064876781356 -6,22.0,22.0,3.429754555384988,-6.965303617315433 -6,22.0,23.0,-1.4614056064833263,2.989238740534077 -6,23.0,21.0,-2.5405381522555563,3.95440286307604 -6,23.0,22.0,-1.4614056064833263,2.989238740534077 -6,23.0,23.0,5.311836702613133,-9.188263657315172 -6,23.0,24.0,-1.3098929438742493,2.287622053705056 -6,24.0,23.0,-1.3098929438742493,2.287622053705056 -6,24.0,24.0,4.495715080321987,-7.864978761969621 -6,24.0,25.0,-1.2165301194494855,1.8171440463475024 -6,24.0,26.0,-1.9692920169982515,3.760212661917064 -6,25.0,24.0,-1.2165301194494855,1.8171440463475024 -6,25.0,25.0,1.2165301194494855,-1.8171440463475024 -6,26.0,24.0,-1.9692920169982515,3.760212661917064 -6,26.0,26.0,3.652281470778589,-9.46044252232512 -6,26.0,27.0,0.0,2.608731947574922 -6,26.0,28.0,-0.99553355095268,1.881005840357816 -6,26.0,29.0,-0.6874559028276572,1.293971494797717 -6,27.0,5.0,-4.362844058012917,15.463571542897856 -6,27.0,7.0,-1.4439790613954469,4.540814658476248 -6,27.0,26.0,0.0,2.608731947574922 -6,27.0,27.0,5.806823119408364,-22.67145722159613 -6,28.0,26.0,-0.99553355095268,1.881005840357816 -6,28.0,28.0,1.9075867579849564,-3.604364401207048 -6,28.0,29.0,-0.9120532070322764,1.7233585608492326 -6,29.0,26.0,-0.6874559028276572,1.293971494797717 -6,29.0,28.0,-0.9120532070322764,1.7233585608492326 -6,29.0,29.0,1.5995091098599337,-3.0173300556469496 -7,0.0,0.0,6.765516048652632,-21.23160167089863 -7,0.0,1.0,-5.224646179885656,15.646726840803398 -7,0.0,2.0,-1.5408698687669766,5.631674830095234 -7,1.0,0.0,-5.224646179885656,15.646726840803398 -7,1.0,1.0,9.75228216552403,-30.648662892676068 -7,1.0,3.0,-1.7055303166990268,5.1973792282565086 -7,1.0,4.0,-1.1359607881738778,4.772479328281356 -7,1.0,5.0,-1.6861448807654689,5.116477495334806 -7,2.0,0.0,-1.5408698687669766,5.631674830095234 -7,2.0,2.0,9.736318911079088,-29.13794745915803 -7,2.0,3.0,-8.19544904231211,23.5308726290628 -7,3.0,1.0,-1.7055303166990268,5.1973792282565086 -7,3.0,2.0,-8.19544904231211,23.5308726290628 -7,3.0,3.0,16.314103089185693,-55.509410535254254 -7,3.0,5.0,-6.413123730174556,22.31120356548123 -7,3.0,11.0,0.0,4.191255364806866 -7,4.0,1.0,-1.1359607881738778,4.772479328281356 -7,4.0,4.0,4.089980824135861,-12.190647245055052 -7,4.0,6.0,-2.954020035961983,7.449267916773697 -7,5.0,1.0,-1.6861448807654689,5.116477495334806 -7,5.0,3.0,-6.413123730174556,22.31120356548123 -7,5.0,5.0,17.978787211021647,-62.3456542314584 -7,5.0,6.0,-3.590210423980992,11.02611441072814 -7,5.0,7.0,-6.289308176100628,22.0125786163522 -7,5.0,9.0,0.0,1.8561002591115965 -7,6.0,4.0,-2.954020035961983,7.449267916773697 -7,6.0,5.0,-3.590210423980992,11.02611441072814 -7,6.0,6.0,6.544230459942975,-18.45668232750184 -7,7.0,5.0,-6.289308176100628,22.0125786163522 -7,7.0,7.0,7.733287237496075,-26.527493274828448 -7,7.0,27.0,-1.4439790613954469,4.540814658476248 -7,8.0,8.0,0.0,-13.8986013986014 -7,8.0,9.0,0.0,9.090909090909092 -7,8.0,10.0,0.0,4.807692307692308 -7,9.0,5.0,0.0,1.8561002591115965 -7,9.0,8.0,0.0,9.090909090909092 -7,9.0,9.0,13.462042814524237,-41.3837606675224 -7,9.0,16.0,-3.956039125715353,10.317447719844054 -7,9.0,19.0,-1.7848303152666305,3.98535828943083 -7,9.0,20.0,-5.101853820159654,10.98071411292983 -7,9.0,21.0,-2.619319553382597,5.400770303329455 -7,10.0,8.0,0.0,4.807692307692308 -7,10.0,10.0,0.0,-4.807692307692308 -7,11.0,3.0,0.0,4.191255364806866 -7,11.0,11.0,6.573961583776156,-24.424167659260668 -7,11.0,12.0,0.0,7.142857142857143 -7,11.0,13.0,-1.5265676088395577,3.1734252729654173 -7,11.0,14.0,-3.0953961826564296,6.097275864326261 -7,11.0,15.0,-1.9519977922801688,4.104359379111847 -7,12.0,11.0,0.0,7.142857142857143 -7,12.0,12.0,0.0,-7.142857142857143 -7,13.0,11.0,-1.5265676088395577,3.1734252729654173 -7,13.0,13.0,4.01751987283902,-5.424299332335067 -7,13.0,14.0,-2.4909522639994623,2.250874059369649 -7,14.0,11.0,-3.0953961826564296,6.097275864326261 -7,14.0,13.0,-2.4909522639994623,2.250874059369649 -7,14.0,14.0,9.365498545964757,-16.01163373210796 -7,14.0,17.0,-1.8108011504072024,3.687418931630696 -7,14.0,22.0,-1.9683489489016612,3.976064876781356 -7,15.0,11.0,-1.9519977922801688,4.104359379111847 -7,15.0,15.0,3.271064728633931,-8.94513365126506 -7,15.0,16.0,-1.3190669363537617,4.8407742721532125 -7,16.0,9.0,-3.956039125715353,10.317447719844054 -7,16.0,15.0,-1.3190669363537617,4.8407742721532125 -7,16.0,16.0,5.275106062069114,-15.158221991997266 -7,17.0,14.0,-1.8108011504072024,3.687418931630696 -7,17.0,17.0,4.886487584415919,-9.906177730909668 -7,17.0,18.0,-3.0756864340087167,6.218758799278971 -7,18.0,17.0,-3.0756864340087167,6.218758799278971 -7,18.0,18.0,8.958039375185187,-17.98346468163191 -7,18.0,19.0,-5.88235294117647,11.76470588235294 -7,19.0,9.0,-1.7848303152666305,3.98535828943083 -7,19.0,18.0,-5.88235294117647,11.76470588235294 -7,19.0,19.0,7.6671832564431,-15.75006417178377 -7,20.0,9.0,-5.101853820159654,10.98071411292983 -7,20.0,20.0,5.101853820159654,-10.98071411292983 -7,21.0,9.0,-2.619319553382597,5.400770303329455 -7,21.0,21.0,5.159857705638154,-9.355173166405494 -7,21.0,23.0,-2.5405381522555563,3.95440286307604 -7,22.0,14.0,-1.9683489489016612,3.976064876781356 -7,22.0,22.0,3.429754555384988,-6.965303617315433 -7,22.0,23.0,-1.4614056064833263,2.989238740534077 -7,23.0,21.0,-2.5405381522555563,3.95440286307604 -7,23.0,22.0,-1.4614056064833263,2.989238740534077 -7,23.0,23.0,5.311836702613133,-9.188263657315172 -7,23.0,24.0,-1.3098929438742493,2.287622053705056 -7,24.0,23.0,-1.3098929438742493,2.287622053705056 -7,24.0,24.0,2.526423063323735,-4.104766100052558 -7,24.0,25.0,-1.2165301194494855,1.8171440463475024 -7,25.0,24.0,-1.2165301194494855,1.8171440463475024 -7,25.0,25.0,1.2165301194494855,-1.8171440463475024 -7,26.0,26.0,1.6829894537803372,-5.700229860408058 -7,26.0,27.0,0.0,2.608731947574922 -7,26.0,28.0,-0.99553355095268,1.881005840357816 -7,26.0,29.0,-0.6874559028276572,1.293971494797717 -7,27.0,7.0,-1.4439790613954469,4.540814658476248 -7,27.0,26.0,0.0,2.608731947574922 -7,27.0,27.0,1.4439790613954469,-7.214385678698274 -7,28.0,26.0,-0.99553355095268,1.881005840357816 -7,28.0,28.0,1.9075867579849564,-3.604364401207048 -7,28.0,29.0,-0.9120532070322764,1.7233585608492326 -7,29.0,26.0,-0.6874559028276572,1.293971494797717 -7,29.0,28.0,-0.9120532070322764,1.7233585608492326 -7,29.0,29.0,1.5995091098599337,-3.0173300556469496 -8,0.0,0.0,6.765516048652632,-21.23160167089863 -8,0.0,1.0,-5.224646179885656,15.646726840803398 -8,0.0,2.0,-1.5408698687669766,5.631674830095234 -8,1.0,0.0,-5.224646179885656,15.646726840803398 -8,1.0,1.0,9.75228216552403,-30.648662892676068 -8,1.0,3.0,-1.7055303166990268,5.1973792282565086 -8,1.0,4.0,-1.1359607881738778,4.772479328281356 -8,1.0,5.0,-1.6861448807654689,5.116477495334806 -8,2.0,0.0,-1.5408698687669766,5.631674830095234 -8,2.0,2.0,9.736318911079088,-29.13794745915803 -8,2.0,3.0,-8.19544904231211,23.5308726290628 -8,3.0,1.0,-1.7055303166990268,5.1973792282565086 -8,3.0,2.0,-8.19544904231211,23.5308726290628 -8,3.0,3.0,16.314103089185693,-55.509410535254254 -8,3.0,5.0,-6.413123730174556,22.31120356548123 -8,3.0,11.0,0.0,4.191255364806866 -8,4.0,1.0,-1.1359607881738778,4.772479328281356 -8,4.0,4.0,4.089980824135861,-12.190647245055052 -8,4.0,6.0,-2.954020035961983,7.449267916773697 -8,5.0,1.0,-1.6861448807654689,5.116477495334806 -8,5.0,3.0,-6.413123730174556,22.31120356548123 -8,5.0,5.0,22.341631269034565,-82.8291478657789 -8,5.0,6.0,-3.590210423980992,11.02611441072814 -8,5.0,7.0,-6.289308176100628,22.0125786163522 -8,5.0,8.0,0.0,4.915840805411357 -8,5.0,9.0,0.0,1.8561002591115965 -8,5.0,27.0,-4.362844058012917,15.463571542897856 -8,6.0,4.0,-2.954020035961983,7.449267916773697 -8,6.0,5.0,-3.590210423980992,11.02611441072814 -8,6.0,6.0,6.544230459942975,-18.45668232750184 -8,7.0,5.0,-6.289308176100628,22.0125786163522 -8,7.0,7.0,7.733287237496075,-26.527493274828448 -8,7.0,27.0,-1.4439790613954469,4.540814658476248 -8,8.0,5.0,0.0,4.915840805411357 -8,8.0,8.0,0.0,-18.706293706293707 -8,8.0,9.0,0.0,9.090909090909092 -8,8.0,10.0,0.0,4.807692307692308 -8,9.0,5.0,0.0,1.8561002591115965 -8,9.0,8.0,0.0,9.090909090909092 -8,9.0,9.0,8.36018899436458,-30.40304655459257 -8,9.0,16.0,-3.956039125715353,10.317447719844054 -8,9.0,19.0,-1.7848303152666305,3.98535828943083 -8,9.0,21.0,-2.619319553382597,5.400770303329455 -8,10.0,8.0,0.0,4.807692307692308 -8,10.0,10.0,0.0,-4.807692307692308 -8,11.0,3.0,0.0,4.191255364806866 -8,11.0,11.0,6.573961583776156,-24.424167659260668 -8,11.0,12.0,0.0,7.142857142857143 -8,11.0,13.0,-1.5265676088395577,3.1734252729654173 -8,11.0,14.0,-3.0953961826564296,6.097275864326261 -8,11.0,15.0,-1.9519977922801688,4.104359379111847 -8,12.0,11.0,0.0,7.142857142857143 -8,12.0,12.0,0.0,-7.142857142857143 -8,13.0,11.0,-1.5265676088395577,3.1734252729654173 -8,13.0,13.0,4.01751987283902,-5.424299332335067 -8,13.0,14.0,-2.4909522639994623,2.250874059369649 -8,14.0,11.0,-3.0953961826564296,6.097275864326261 -8,14.0,13.0,-2.4909522639994623,2.250874059369649 -8,14.0,14.0,9.365498545964757,-16.01163373210796 -8,14.0,17.0,-1.8108011504072024,3.687418931630696 -8,14.0,22.0,-1.9683489489016612,3.976064876781356 -8,15.0,11.0,-1.9519977922801688,4.104359379111847 -8,15.0,15.0,3.271064728633931,-8.94513365126506 -8,15.0,16.0,-1.3190669363537617,4.8407742721532125 -8,16.0,9.0,-3.956039125715353,10.317447719844054 -8,16.0,15.0,-1.3190669363537617,4.8407742721532125 -8,16.0,16.0,5.275106062069114,-15.158221991997266 -8,17.0,14.0,-1.8108011504072024,3.687418931630696 -8,17.0,17.0,4.886487584415919,-9.906177730909668 -8,17.0,18.0,-3.0756864340087167,6.218758799278971 -8,18.0,17.0,-3.0756864340087167,6.218758799278971 -8,18.0,18.0,8.958039375185187,-17.98346468163191 -8,18.0,19.0,-5.88235294117647,11.76470588235294 -8,19.0,9.0,-1.7848303152666305,3.98535828943083 -8,19.0,18.0,-5.88235294117647,11.76470588235294 -8,19.0,19.0,7.6671832564431,-15.75006417178377 -8,20.0,20.0,16.774641369736234,-34.127718648773715 -8,20.0,21.0,-16.774641369736234,34.127718648773715 -8,21.0,9.0,-2.619319553382597,5.400770303329455 -8,21.0,20.0,-16.774641369736234,34.127718648773715 -8,21.0,21.0,21.93449907537439,-43.48289181517921 -8,21.0,23.0,-2.5405381522555563,3.95440286307604 -8,22.0,14.0,-1.9683489489016612,3.976064876781356 -8,22.0,22.0,3.429754555384988,-6.965303617315433 -8,22.0,23.0,-1.4614056064833263,2.989238740534077 -8,23.0,21.0,-2.5405381522555563,3.95440286307604 -8,23.0,22.0,-1.4614056064833263,2.989238740534077 -8,23.0,23.0,5.311836702613133,-9.188263657315172 -8,23.0,24.0,-1.3098929438742493,2.287622053705056 -8,24.0,23.0,-1.3098929438742493,2.287622053705056 -8,24.0,24.0,4.495715080321987,-7.864978761969621 -8,24.0,25.0,-1.2165301194494855,1.8171440463475024 -8,24.0,26.0,-1.9692920169982515,3.760212661917064 -8,25.0,24.0,-1.2165301194494855,1.8171440463475024 -8,25.0,25.0,1.2165301194494855,-1.8171440463475024 -8,26.0,24.0,-1.9692920169982515,3.760212661917064 -8,26.0,26.0,3.652281470778589,-9.46044252232512 -8,26.0,27.0,0.0,2.608731947574922 -8,26.0,28.0,-0.99553355095268,1.881005840357816 -8,26.0,29.0,-0.6874559028276572,1.293971494797717 -8,27.0,5.0,-4.362844058012917,15.463571542897856 -8,27.0,7.0,-1.4439790613954469,4.540814658476248 -8,27.0,26.0,0.0,2.608731947574922 -8,27.0,27.0,5.806823119408364,-22.67145722159613 -8,28.0,26.0,-0.99553355095268,1.881005840357816 -8,28.0,28.0,1.9075867579849564,-3.604364401207048 -8,28.0,29.0,-0.9120532070322764,1.7233585608492326 -8,29.0,26.0,-0.6874559028276572,1.293971494797717 -8,29.0,28.0,-0.9120532070322764,1.7233585608492326 -8,29.0,29.0,1.5995091098599337,-3.0173300556469496 -9,0.0,0.0,5.224646179885656,-15.620326840803395 -9,0.0,1.0,-5.224646179885656,15.646726840803398 -9,1.0,0.0,-5.224646179885656,15.646726840803398 -9,1.0,1.0,9.75228216552403,-30.648662892676068 -9,1.0,3.0,-1.7055303166990268,5.1973792282565086 -9,1.0,4.0,-1.1359607881738778,4.772479328281356 -9,1.0,5.0,-1.6861448807654689,5.116477495334806 -9,2.0,2.0,8.19544904231211,-23.5266726290628 -9,2.0,3.0,-8.19544904231211,23.5308726290628 -9,3.0,1.0,-1.7055303166990268,5.1973792282565086 -9,3.0,2.0,-8.19544904231211,23.5308726290628 -9,3.0,3.0,16.314103089185693,-55.509410535254254 -9,3.0,5.0,-6.413123730174556,22.31120356548123 -9,3.0,11.0,0.0,4.191255364806866 -9,4.0,1.0,-1.1359607881738778,4.772479328281356 -9,4.0,4.0,4.089980824135861,-12.190647245055052 -9,4.0,6.0,-2.954020035961983,7.449267916773697 -9,5.0,1.0,-1.6861448807654689,5.116477495334806 -9,5.0,3.0,-6.413123730174556,22.31120356548123 -9,5.0,5.0,22.341631269034565,-82.8291478657789 -9,5.0,6.0,-3.590210423980992,11.02611441072814 -9,5.0,7.0,-6.289308176100628,22.0125786163522 -9,5.0,8.0,0.0,4.915840805411357 -9,5.0,9.0,0.0,1.8561002591115965 -9,5.0,27.0,-4.362844058012917,15.463571542897856 -9,6.0,4.0,-2.954020035961983,7.449267916773697 -9,6.0,5.0,-3.590210423980992,11.02611441072814 -9,6.0,6.0,6.544230459942975,-18.45668232750184 -9,7.0,5.0,-6.289308176100628,22.0125786163522 -9,7.0,7.0,7.733287237496075,-26.527493274828448 -9,7.0,27.0,-1.4439790613954469,4.540814658476248 -9,8.0,5.0,0.0,4.915840805411357 -9,8.0,8.0,0.0,-18.706293706293707 -9,8.0,9.0,0.0,9.090909090909092 -9,8.0,10.0,0.0,4.807692307692308 -9,9.0,5.0,0.0,1.8561002591115965 -9,9.0,8.0,0.0,9.090909090909092 -9,9.0,9.0,13.462042814524237,-41.3837606675224 -9,9.0,16.0,-3.956039125715353,10.317447719844054 -9,9.0,19.0,-1.7848303152666305,3.98535828943083 -9,9.0,20.0,-5.101853820159654,10.98071411292983 -9,9.0,21.0,-2.619319553382597,5.400770303329455 -9,10.0,8.0,0.0,4.807692307692308 -9,10.0,10.0,0.0,-4.807692307692308 -9,11.0,3.0,0.0,4.191255364806866 -9,11.0,11.0,6.573961583776156,-24.424167659260668 -9,11.0,12.0,0.0,7.142857142857143 -9,11.0,13.0,-1.5265676088395577,3.1734252729654173 -9,11.0,14.0,-3.0953961826564296,6.097275864326261 -9,11.0,15.0,-1.9519977922801688,4.104359379111847 -9,12.0,11.0,0.0,7.142857142857143 -9,12.0,12.0,0.0,-7.142857142857143 -9,13.0,11.0,-1.5265676088395577,3.1734252729654173 -9,13.0,13.0,4.01751987283902,-5.424299332335067 -9,13.0,14.0,-2.4909522639994623,2.250874059369649 -9,14.0,11.0,-3.0953961826564296,6.097275864326261 -9,14.0,13.0,-2.4909522639994623,2.250874059369649 -9,14.0,14.0,9.365498545964757,-16.01163373210796 -9,14.0,17.0,-1.8108011504072024,3.687418931630696 -9,14.0,22.0,-1.9683489489016612,3.976064876781356 -9,15.0,11.0,-1.9519977922801688,4.104359379111847 -9,15.0,15.0,3.271064728633931,-8.94513365126506 -9,15.0,16.0,-1.3190669363537617,4.8407742721532125 -9,16.0,9.0,-3.956039125715353,10.317447719844054 -9,16.0,15.0,-1.3190669363537617,4.8407742721532125 -9,16.0,16.0,5.275106062069114,-15.158221991997266 -9,17.0,14.0,-1.8108011504072024,3.687418931630696 -9,17.0,17.0,4.886487584415919,-9.906177730909668 -9,17.0,18.0,-3.0756864340087167,6.218758799278971 -9,18.0,17.0,-3.0756864340087167,6.218758799278971 -9,18.0,18.0,3.0756864340087167,-6.218758799278971 -9,19.0,9.0,-1.7848303152666305,3.98535828943083 -9,19.0,19.0,1.7848303152666305,-3.98535828943083 -9,20.0,9.0,-5.101853820159654,10.98071411292983 -9,20.0,20.0,21.876495189895888,-45.10843276170355 -9,20.0,21.0,-16.774641369736234,34.127718648773715 -9,21.0,9.0,-2.619319553382597,5.400770303329455 -9,21.0,20.0,-16.774641369736234,34.127718648773715 -9,21.0,21.0,21.93449907537439,-43.48289181517921 -9,21.0,23.0,-2.5405381522555563,3.95440286307604 -9,22.0,14.0,-1.9683489489016612,3.976064876781356 -9,22.0,22.0,3.429754555384988,-6.965303617315433 -9,22.0,23.0,-1.4614056064833263,2.989238740534077 -9,23.0,21.0,-2.5405381522555563,3.95440286307604 -9,23.0,22.0,-1.4614056064833263,2.989238740534077 -9,23.0,23.0,5.311836702613133,-9.188263657315172 -9,23.0,24.0,-1.3098929438742493,2.287622053705056 -9,24.0,23.0,-1.3098929438742493,2.287622053705056 -9,24.0,24.0,4.495715080321987,-7.864978761969621 -9,24.0,25.0,-1.2165301194494855,1.8171440463475024 -9,24.0,26.0,-1.9692920169982515,3.760212661917064 -9,25.0,24.0,-1.2165301194494855,1.8171440463475024 -9,25.0,25.0,1.2165301194494855,-1.8171440463475024 -9,26.0,24.0,-1.9692920169982515,3.760212661917064 -9,26.0,26.0,3.652281470778589,-9.46044252232512 -9,26.0,27.0,0.0,2.608731947574922 -9,26.0,28.0,-0.99553355095268,1.881005840357816 -9,26.0,29.0,-0.6874559028276572,1.293971494797717 -9,27.0,5.0,-4.362844058012917,15.463571542897856 -9,27.0,7.0,-1.4439790613954469,4.540814658476248 -9,27.0,26.0,0.0,2.608731947574922 -9,27.0,27.0,5.806823119408364,-22.67145722159613 -9,28.0,26.0,-0.99553355095268,1.881005840357816 -9,28.0,28.0,1.9075867579849564,-3.604364401207048 -9,28.0,29.0,-0.9120532070322764,1.7233585608492326 -9,29.0,26.0,-0.6874559028276572,1.293971494797717 -9,29.0,28.0,-0.9120532070322764,1.7233585608492326 -9,29.0,29.0,1.5995091098599337,-3.0173300556469496 -10,0.0,0.0,6.765516048652632,-21.23160167089863 -10,0.0,1.0,-5.224646179885656,15.646726840803398 -10,0.0,2.0,-1.5408698687669766,5.631674830095234 -10,1.0,0.0,-5.224646179885656,15.646726840803398 -10,1.0,1.0,9.75228216552403,-30.648662892676068 -10,1.0,3.0,-1.7055303166990268,5.1973792282565086 -10,1.0,4.0,-1.1359607881738778,4.772479328281356 -10,1.0,5.0,-1.6861448807654689,5.116477495334806 -10,2.0,0.0,-1.5408698687669766,5.631674830095234 -10,2.0,2.0,9.736318911079088,-29.13794745915803 -10,2.0,3.0,-8.19544904231211,23.5308726290628 -10,3.0,1.0,-1.7055303166990268,5.1973792282565086 -10,3.0,2.0,-8.19544904231211,23.5308726290628 -10,3.0,3.0,16.314103089185693,-55.509410535254254 -10,3.0,5.0,-6.413123730174556,22.31120356548123 -10,3.0,11.0,0.0,4.191255364806866 -10,4.0,1.0,-1.1359607881738778,4.772479328281356 -10,4.0,4.0,4.089980824135861,-12.190647245055052 -10,4.0,6.0,-2.954020035961983,7.449267916773697 -10,5.0,1.0,-1.6861448807654689,5.116477495334806 -10,5.0,3.0,-6.413123730174556,22.31120356548123 -10,5.0,5.0,22.341631269034565,-82.8291478657789 -10,5.0,6.0,-3.590210423980992,11.02611441072814 -10,5.0,7.0,-6.289308176100628,22.0125786163522 -10,5.0,8.0,0.0,4.915840805411357 -10,5.0,9.0,0.0,1.8561002591115965 -10,5.0,27.0,-4.362844058012917,15.463571542897856 -10,6.0,4.0,-2.954020035961983,7.449267916773697 -10,6.0,5.0,-3.590210423980992,11.02611441072814 -10,6.0,6.0,6.544230459942975,-18.45668232750184 -10,7.0,5.0,-6.289308176100628,22.0125786163522 -10,7.0,7.0,7.733287237496075,-26.527493274828448 -10,7.0,27.0,-1.4439790613954469,4.540814658476248 -10,8.0,5.0,0.0,4.915840805411357 -10,8.0,8.0,0.0,-18.706293706293707 -10,8.0,9.0,0.0,9.090909090909092 -10,8.0,10.0,0.0,4.807692307692308 -10,9.0,5.0,0.0,1.8561002591115965 -10,9.0,8.0,0.0,9.090909090909092 -10,9.0,9.0,10.842723261141638,-35.98299036419294 -10,9.0,16.0,-3.956039125715353,10.317447719844054 -10,9.0,19.0,-1.7848303152666305,3.98535828943083 -10,9.0,20.0,-5.101853820159654,10.98071411292983 -10,10.0,8.0,0.0,4.807692307692308 -10,10.0,10.0,0.0,-4.807692307692308 -10,11.0,3.0,0.0,4.191255364806866 -10,11.0,11.0,6.573961583776156,-24.424167659260668 -10,11.0,12.0,0.0,7.142857142857143 -10,11.0,13.0,-1.5265676088395577,3.1734252729654173 -10,11.0,14.0,-3.0953961826564296,6.097275864326261 -10,11.0,15.0,-1.9519977922801688,4.104359379111847 -10,12.0,11.0,0.0,7.142857142857143 -10,12.0,12.0,0.0,-7.142857142857143 -10,13.0,11.0,-1.5265676088395577,3.1734252729654173 -10,13.0,13.0,4.01751987283902,-5.424299332335067 -10,13.0,14.0,-2.4909522639994623,2.250874059369649 -10,14.0,11.0,-3.0953961826564296,6.097275864326261 -10,14.0,13.0,-2.4909522639994623,2.250874059369649 -10,14.0,14.0,7.397149597063095,-12.035568855326606 -10,14.0,17.0,-1.8108011504072024,3.687418931630696 -10,15.0,11.0,-1.9519977922801688,4.104359379111847 -10,15.0,15.0,3.271064728633931,-8.94513365126506 -10,15.0,16.0,-1.3190669363537617,4.8407742721532125 -10,16.0,9.0,-3.956039125715353,10.317447719844054 -10,16.0,15.0,-1.3190669363537617,4.8407742721532125 -10,16.0,16.0,5.275106062069114,-15.158221991997266 -10,17.0,14.0,-1.8108011504072024,3.687418931630696 -10,17.0,17.0,4.886487584415919,-9.906177730909668 -10,17.0,18.0,-3.0756864340087167,6.218758799278971 -10,18.0,17.0,-3.0756864340087167,6.218758799278971 -10,18.0,18.0,8.958039375185187,-17.98346468163191 -10,18.0,19.0,-5.88235294117647,11.76470588235294 -10,19.0,9.0,-1.7848303152666305,3.98535828943083 -10,19.0,18.0,-5.88235294117647,11.76470588235294 -10,19.0,19.0,7.6671832564431,-15.75006417178377 -10,20.0,9.0,-5.101853820159654,10.98071411292983 -10,20.0,20.0,21.876495189895888,-45.10843276170355 -10,20.0,21.0,-16.774641369736234,34.127718648773715 -10,21.0,20.0,-16.774641369736234,34.127718648773715 -10,21.0,21.0,19.31517952199179,-38.08212151184976 -10,21.0,23.0,-2.5405381522555563,3.95440286307604 -10,22.0,22.0,1.4614056064833263,-2.989238740534077 -10,22.0,23.0,-1.4614056064833263,2.989238740534077 -10,23.0,21.0,-2.5405381522555563,3.95440286307604 -10,23.0,22.0,-1.4614056064833263,2.989238740534077 -10,23.0,23.0,5.311836702613133,-9.188263657315172 -10,23.0,24.0,-1.3098929438742493,2.287622053705056 -10,24.0,23.0,-1.3098929438742493,2.287622053705056 -10,24.0,24.0,4.495715080321987,-7.864978761969621 -10,24.0,25.0,-1.2165301194494855,1.8171440463475024 -10,24.0,26.0,-1.9692920169982515,3.760212661917064 -10,25.0,24.0,-1.2165301194494855,1.8171440463475024 -10,25.0,25.0,1.2165301194494855,-1.8171440463475024 -10,26.0,24.0,-1.9692920169982515,3.760212661917064 -10,26.0,26.0,3.652281470778589,-9.46044252232512 -10,26.0,27.0,0.0,2.608731947574922 -10,26.0,28.0,-0.99553355095268,1.881005840357816 -10,26.0,29.0,-0.6874559028276572,1.293971494797717 -10,27.0,5.0,-4.362844058012917,15.463571542897856 -10,27.0,7.0,-1.4439790613954469,4.540814658476248 -10,27.0,26.0,0.0,2.608731947574922 -10,27.0,27.0,5.806823119408364,-22.67145722159613 -10,28.0,26.0,-0.99553355095268,1.881005840357816 -10,28.0,28.0,1.9075867579849564,-3.604364401207048 -10,28.0,29.0,-0.9120532070322764,1.7233585608492326 -10,29.0,26.0,-0.6874559028276572,1.293971494797717 -10,29.0,28.0,-0.9120532070322764,1.7233585608492326 -10,29.0,29.0,1.5995091098599337,-3.0173300556469496 -11,0.0,0.0,6.765516048652632,-21.23160167089863 -11,0.0,1.0,-5.224646179885656,15.646726840803398 -11,0.0,2.0,-1.5408698687669766,5.631674830095234 -11,1.0,0.0,-5.224646179885656,15.646726840803398 -11,1.0,1.0,9.75228216552403,-30.648662892676068 -11,1.0,3.0,-1.7055303166990268,5.1973792282565086 -11,1.0,4.0,-1.1359607881738778,4.772479328281356 -11,1.0,5.0,-1.6861448807654689,5.116477495334806 -11,2.0,0.0,-1.5408698687669766,5.631674830095234 -11,2.0,2.0,9.736318911079088,-29.13794745915803 -11,2.0,3.0,-8.19544904231211,23.5308726290628 -11,3.0,1.0,-1.7055303166990268,5.1973792282565086 -11,3.0,2.0,-8.19544904231211,23.5308726290628 -11,3.0,3.0,16.314103089185693,-55.509410535254254 -11,3.0,5.0,-6.413123730174556,22.31120356548123 -11,3.0,11.0,0.0,4.191255364806866 -11,4.0,1.0,-1.1359607881738778,4.772479328281356 -11,4.0,4.0,4.089980824135861,-12.190647245055052 -11,4.0,6.0,-2.954020035961983,7.449267916773697 -11,5.0,1.0,-1.6861448807654689,5.116477495334806 -11,5.0,3.0,-6.413123730174556,22.31120356548123 -11,5.0,5.0,22.341631269034565,-82.8291478657789 -11,5.0,6.0,-3.590210423980992,11.02611441072814 -11,5.0,7.0,-6.289308176100628,22.0125786163522 -11,5.0,8.0,0.0,4.915840805411357 -11,5.0,9.0,0.0,1.8561002591115965 -11,5.0,27.0,-4.362844058012917,15.463571542897856 -11,6.0,4.0,-2.954020035961983,7.449267916773697 -11,6.0,5.0,-3.590210423980992,11.02611441072814 -11,6.0,6.0,6.544230459942975,-18.45668232750184 -11,7.0,5.0,-6.289308176100628,22.0125786163522 -11,7.0,7.0,7.733287237496075,-26.527493274828448 -11,7.0,27.0,-1.4439790613954469,4.540814658476248 -11,8.0,5.0,0.0,4.915840805411357 -11,8.0,8.0,0.0,-18.706293706293707 -11,8.0,9.0,0.0,9.090909090909092 -11,8.0,10.0,0.0,4.807692307692308 -11,9.0,5.0,0.0,1.8561002591115965 -11,9.0,8.0,0.0,9.090909090909092 -11,9.0,9.0,13.462042814524237,-41.3837606675224 -11,9.0,16.0,-3.956039125715353,10.317447719844054 -11,9.0,19.0,-1.7848303152666305,3.98535828943083 -11,9.0,20.0,-5.101853820159654,10.98071411292983 -11,9.0,21.0,-2.619319553382597,5.400770303329455 -11,10.0,8.0,0.0,4.807692307692308 -11,10.0,10.0,0.0,-4.807692307692308 -11,11.0,3.0,0.0,4.191255364806866 -11,11.0,11.0,6.573961583776156,-24.424167659260668 -11,11.0,12.0,0.0,7.142857142857143 -11,11.0,13.0,-1.5265676088395577,3.1734252729654173 -11,11.0,14.0,-3.0953961826564296,6.097275864326261 -11,11.0,15.0,-1.9519977922801688,4.104359379111847 -11,12.0,11.0,0.0,7.142857142857143 -11,12.0,12.0,0.0,-7.142857142857143 -11,13.0,11.0,-1.5265676088395577,3.1734252729654173 -11,13.0,13.0,4.01751987283902,-5.424299332335067 -11,13.0,14.0,-2.4909522639994623,2.250874059369649 -11,14.0,11.0,-3.0953961826564296,6.097275864326261 -11,14.0,13.0,-2.4909522639994623,2.250874059369649 -11,14.0,14.0,9.365498545964757,-16.01163373210796 -11,14.0,17.0,-1.8108011504072024,3.687418931630696 -11,14.0,22.0,-1.9683489489016612,3.976064876781356 -11,15.0,11.0,-1.9519977922801688,4.104359379111847 -11,15.0,15.0,3.271064728633931,-8.94513365126506 -11,15.0,16.0,-1.3190669363537617,4.8407742721532125 -11,16.0,9.0,-3.956039125715353,10.317447719844054 -11,16.0,15.0,-1.3190669363537617,4.8407742721532125 -11,16.0,16.0,5.275106062069114,-15.158221991997266 -11,17.0,14.0,-1.8108011504072024,3.687418931630696 -11,17.0,17.0,4.886487584415919,-9.906177730909668 -11,17.0,18.0,-3.0756864340087167,6.218758799278971 -11,18.0,17.0,-3.0756864340087167,6.218758799278971 -11,18.0,18.0,8.958039375185187,-17.98346468163191 -11,18.0,19.0,-5.88235294117647,11.76470588235294 -11,19.0,9.0,-1.7848303152666305,3.98535828943083 -11,19.0,18.0,-5.88235294117647,11.76470588235294 -11,19.0,19.0,7.6671832564431,-15.75006417178377 -11,20.0,9.0,-5.101853820159654,10.98071411292983 -11,20.0,20.0,21.876495189895888,-45.10843276170355 -11,20.0,21.0,-16.774641369736234,34.127718648773715 -11,21.0,9.0,-2.619319553382597,5.400770303329455 -11,21.0,20.0,-16.774641369736234,34.127718648773715 -11,21.0,21.0,21.93449907537439,-43.48289181517921 -11,21.0,23.0,-2.5405381522555563,3.95440286307604 -11,22.0,14.0,-1.9683489489016612,3.976064876781356 -11,22.0,22.0,3.429754555384988,-6.965303617315433 -11,22.0,23.0,-1.4614056064833263,2.989238740534077 -11,23.0,21.0,-2.5405381522555563,3.95440286307604 -11,23.0,22.0,-1.4614056064833263,2.989238740534077 -11,23.0,23.0,5.311836702613133,-9.188263657315172 -11,23.0,24.0,-1.3098929438742493,2.287622053705056 -11,24.0,23.0,-1.3098929438742493,2.287622053705056 -11,24.0,24.0,4.495715080321987,-7.864978761969621 -11,24.0,25.0,-1.2165301194494855,1.8171440463475024 -11,24.0,26.0,-1.9692920169982515,3.760212661917064 -11,25.0,24.0,-1.2165301194494855,1.8171440463475024 -11,25.0,25.0,1.2165301194494855,-1.8171440463475024 -11,26.0,24.0,-1.9692920169982515,3.760212661917064 -11,26.0,26.0,3.652281470778589,-9.46044252232512 -11,26.0,27.0,0.0,2.608731947574922 -11,26.0,28.0,-0.99553355095268,1.881005840357816 -11,26.0,29.0,-0.6874559028276572,1.293971494797717 -11,27.0,5.0,-4.362844058012917,15.463571542897856 -11,27.0,7.0,-1.4439790613954469,4.540814658476248 -11,27.0,26.0,0.0,2.608731947574922 -11,27.0,27.0,5.806823119408364,-22.67145722159613 -11,28.0,26.0,-0.99553355095268,1.881005840357816 -11,28.0,28.0,1.9075867579849564,-3.604364401207048 -11,28.0,29.0,-0.9120532070322764,1.7233585608492326 -11,29.0,26.0,-0.6874559028276572,1.293971494797717 -11,29.0,28.0,-0.9120532070322764,1.7233585608492326 -11,29.0,29.0,1.5995091098599337,-3.0173300556469496 -12,0.0,0.0,6.765516048652632,-21.23160167089863 -12,0.0,1.0,-5.224646179885656,15.646726840803398 -12,0.0,2.0,-1.5408698687669766,5.631674830095234 -12,1.0,0.0,-5.224646179885656,15.646726840803398 -12,1.0,1.0,9.75228216552403,-30.648662892676068 -12,1.0,3.0,-1.7055303166990268,5.1973792282565086 -12,1.0,4.0,-1.1359607881738778,4.772479328281356 -12,1.0,5.0,-1.6861448807654689,5.116477495334806 -12,2.0,0.0,-1.5408698687669766,5.631674830095234 -12,2.0,2.0,9.736318911079088,-29.13794745915803 -12,2.0,3.0,-8.19544904231211,23.5308726290628 -12,3.0,1.0,-1.7055303166990268,5.1973792282565086 -12,3.0,2.0,-8.19544904231211,23.5308726290628 -12,3.0,3.0,16.314103089185693,-55.509410535254254 -12,3.0,5.0,-6.413123730174556,22.31120356548123 -12,3.0,11.0,0.0,4.191255364806866 -12,4.0,1.0,-1.1359607881738778,4.772479328281356 -12,4.0,4.0,4.089980824135861,-12.190647245055052 -12,4.0,6.0,-2.954020035961983,7.449267916773697 -12,5.0,1.0,-1.6861448807654689,5.116477495334806 -12,5.0,3.0,-6.413123730174556,22.31120356548123 -12,5.0,5.0,22.341631269034565,-82.8291478657789 -12,5.0,6.0,-3.590210423980992,11.02611441072814 -12,5.0,7.0,-6.289308176100628,22.0125786163522 -12,5.0,8.0,0.0,4.915840805411357 -12,5.0,9.0,0.0,1.8561002591115965 -12,5.0,27.0,-4.362844058012917,15.463571542897856 -12,6.0,4.0,-2.954020035961983,7.449267916773697 -12,6.0,5.0,-3.590210423980992,11.02611441072814 -12,6.0,6.0,6.544230459942975,-18.45668232750184 -12,7.0,5.0,-6.289308176100628,22.0125786163522 -12,7.0,7.0,7.733287237496075,-26.527493274828448 -12,7.0,27.0,-1.4439790613954469,4.540814658476248 -12,8.0,5.0,0.0,4.915840805411357 -12,8.0,8.0,0.0,-18.706293706293707 -12,8.0,9.0,0.0,9.090909090909092 -12,8.0,10.0,0.0,4.807692307692308 -12,9.0,5.0,0.0,1.8561002591115965 -12,9.0,8.0,0.0,9.090909090909092 -12,9.0,9.0,13.462042814524237,-41.3837606675224 -12,9.0,16.0,-3.956039125715353,10.317447719844054 -12,9.0,19.0,-1.7848303152666305,3.98535828943083 -12,9.0,20.0,-5.101853820159654,10.98071411292983 -12,9.0,21.0,-2.619319553382597,5.400770303329455 -12,10.0,8.0,0.0,4.807692307692308 -12,10.0,10.0,0.0,-4.807692307692308 -12,11.0,3.0,0.0,4.191255364806866 -12,11.0,11.0,6.573961583776156,-24.424167659260668 -12,11.0,12.0,0.0,7.142857142857143 -12,11.0,13.0,-1.5265676088395577,3.1734252729654173 -12,11.0,14.0,-3.0953961826564296,6.097275864326261 -12,11.0,15.0,-1.9519977922801688,4.104359379111847 -12,12.0,11.0,0.0,7.142857142857143 -12,12.0,12.0,0.0,-7.142857142857143 -12,13.0,11.0,-1.5265676088395577,3.1734252729654173 -12,13.0,13.0,4.01751987283902,-5.424299332335067 -12,13.0,14.0,-2.4909522639994623,2.250874059369649 -12,14.0,11.0,-3.0953961826564296,6.097275864326261 -12,14.0,13.0,-2.4909522639994623,2.250874059369649 -12,14.0,14.0,9.365498545964757,-16.01163373210796 -12,14.0,17.0,-1.8108011504072024,3.687418931630696 -12,14.0,22.0,-1.9683489489016612,3.976064876781356 -12,15.0,11.0,-1.9519977922801688,4.104359379111847 -12,15.0,15.0,3.271064728633931,-8.94513365126506 -12,15.0,16.0,-1.3190669363537617,4.8407742721532125 -12,16.0,9.0,-3.956039125715353,10.317447719844054 -12,16.0,15.0,-1.3190669363537617,4.8407742721532125 -12,16.0,16.0,5.275106062069114,-15.158221991997266 -12,17.0,14.0,-1.8108011504072024,3.687418931630696 -12,17.0,17.0,4.886487584415919,-9.906177730909668 -12,17.0,18.0,-3.0756864340087167,6.218758799278971 -12,18.0,17.0,-3.0756864340087167,6.218758799278971 -12,18.0,18.0,8.958039375185187,-17.98346468163191 -12,18.0,19.0,-5.88235294117647,11.76470588235294 -12,19.0,9.0,-1.7848303152666305,3.98535828943083 -12,19.0,18.0,-5.88235294117647,11.76470588235294 -12,19.0,19.0,7.6671832564431,-15.75006417178377 -12,20.0,9.0,-5.101853820159654,10.98071411292983 -12,20.0,20.0,21.876495189895888,-45.10843276170355 -12,20.0,21.0,-16.774641369736234,34.127718648773715 -12,21.0,9.0,-2.619319553382597,5.400770303329455 -12,21.0,20.0,-16.774641369736234,34.127718648773715 -12,21.0,21.0,21.93449907537439,-43.48289181517921 -12,21.0,23.0,-2.5405381522555563,3.95440286307604 -12,22.0,14.0,-1.9683489489016612,3.976064876781356 -12,22.0,22.0,3.429754555384988,-6.965303617315433 -12,22.0,23.0,-1.4614056064833263,2.989238740534077 -12,23.0,21.0,-2.5405381522555563,3.95440286307604 -12,23.0,22.0,-1.4614056064833263,2.989238740534077 -12,23.0,23.0,5.311836702613133,-9.188263657315172 -12,23.0,24.0,-1.3098929438742493,2.287622053705056 -12,24.0,23.0,-1.3098929438742493,2.287622053705056 -12,24.0,24.0,4.495715080321987,-7.864978761969621 -12,24.0,25.0,-1.2165301194494855,1.8171440463475024 -12,24.0,26.0,-1.9692920169982515,3.760212661917064 -12,25.0,24.0,-1.2165301194494855,1.8171440463475024 -12,25.0,25.0,1.2165301194494855,-1.8171440463475024 -12,26.0,24.0,-1.9692920169982515,3.760212661917064 -12,26.0,26.0,3.652281470778589,-9.46044252232512 -12,26.0,27.0,0.0,2.608731947574922 -12,26.0,28.0,-0.99553355095268,1.881005840357816 -12,26.0,29.0,-0.6874559028276572,1.293971494797717 -12,27.0,5.0,-4.362844058012917,15.463571542897856 -12,27.0,7.0,-1.4439790613954469,4.540814658476248 -12,27.0,26.0,0.0,2.608731947574922 -12,27.0,27.0,5.806823119408364,-22.67145722159613 -12,28.0,26.0,-0.99553355095268,1.881005840357816 -12,28.0,28.0,1.9075867579849564,-3.604364401207048 -12,28.0,29.0,-0.9120532070322764,1.7233585608492326 -12,29.0,26.0,-0.6874559028276572,1.293971494797717 -12,29.0,28.0,-0.9120532070322764,1.7233585608492326 -12,29.0,29.0,1.5995091098599337,-3.0173300556469496 -13,0.0,0.0,6.765516048652632,-21.23160167089863 -13,0.0,1.0,-5.224646179885656,15.646726840803398 -13,0.0,2.0,-1.5408698687669766,5.631674830095234 -13,1.0,0.0,-5.224646179885656,15.646726840803398 -13,1.0,1.0,8.61632137735015,-25.897083564394716 -13,1.0,3.0,-1.7055303166990268,5.1973792282565086 -13,1.0,5.0,-1.6861448807654689,5.116477495334806 -13,2.0,0.0,-1.5408698687669766,5.631674830095234 -13,2.0,2.0,9.736318911079088,-29.13794745915803 -13,2.0,3.0,-8.19544904231211,23.5308726290628 -13,3.0,1.0,-1.7055303166990268,5.1973792282565086 -13,3.0,2.0,-8.19544904231211,23.5308726290628 -13,3.0,3.0,16.314103089185693,-55.509410535254254 -13,3.0,5.0,-6.413123730174556,22.31120356548123 -13,3.0,11.0,0.0,4.191255364806866 -13,4.0,4.0,2.954020035961983,-7.439067916773697 -13,4.0,6.0,-2.954020035961983,7.449267916773697 -13,5.0,1.0,-1.6861448807654689,5.116477495334806 -13,5.0,3.0,-6.413123730174556,22.31120356548123 -13,5.0,5.0,22.341631269034565,-82.8291478657789 -13,5.0,6.0,-3.590210423980992,11.02611441072814 -13,5.0,7.0,-6.289308176100628,22.0125786163522 -13,5.0,8.0,0.0,4.915840805411357 -13,5.0,9.0,0.0,1.8561002591115965 -13,5.0,27.0,-4.362844058012917,15.463571542897856 -13,6.0,4.0,-2.954020035961983,7.449267916773697 -13,6.0,5.0,-3.590210423980992,11.02611441072814 -13,6.0,6.0,6.544230459942975,-18.45668232750184 -13,7.0,5.0,-6.289308176100628,22.0125786163522 -13,7.0,7.0,7.733287237496075,-26.527493274828448 -13,7.0,27.0,-1.4439790613954469,4.540814658476248 -13,8.0,5.0,0.0,4.915840805411357 -13,8.0,8.0,0.0,-18.706293706293707 -13,8.0,9.0,0.0,9.090909090909092 -13,8.0,10.0,0.0,4.807692307692308 -13,9.0,5.0,0.0,1.8561002591115965 -13,9.0,8.0,0.0,9.090909090909092 -13,9.0,9.0,10.842723261141638,-35.98299036419294 -13,9.0,16.0,-3.956039125715353,10.317447719844054 -13,9.0,19.0,-1.7848303152666305,3.98535828943083 -13,9.0,20.0,-5.101853820159654,10.98071411292983 -13,10.0,8.0,0.0,4.807692307692308 -13,10.0,10.0,0.0,-4.807692307692308 -13,11.0,3.0,0.0,4.191255364806866 -13,11.0,11.0,6.573961583776156,-24.424167659260668 -13,11.0,12.0,0.0,7.142857142857143 -13,11.0,13.0,-1.5265676088395577,3.1734252729654173 -13,11.0,14.0,-3.0953961826564296,6.097275864326261 -13,11.0,15.0,-1.9519977922801688,4.104359379111847 -13,12.0,11.0,0.0,7.142857142857143 -13,12.0,12.0,0.0,-7.142857142857143 -13,13.0,11.0,-1.5265676088395577,3.1734252729654173 -13,13.0,13.0,4.01751987283902,-5.424299332335067 -13,13.0,14.0,-2.4909522639994623,2.250874059369649 -13,14.0,11.0,-3.0953961826564296,6.097275864326261 -13,14.0,13.0,-2.4909522639994623,2.250874059369649 -13,14.0,14.0,9.365498545964757,-16.01163373210796 -13,14.0,17.0,-1.8108011504072024,3.687418931630696 -13,14.0,22.0,-1.9683489489016612,3.976064876781356 -13,15.0,11.0,-1.9519977922801688,4.104359379111847 -13,15.0,15.0,3.271064728633931,-8.94513365126506 -13,15.0,16.0,-1.3190669363537617,4.8407742721532125 -13,16.0,9.0,-3.956039125715353,10.317447719844054 -13,16.0,15.0,-1.3190669363537617,4.8407742721532125 -13,16.0,16.0,5.275106062069114,-15.158221991997266 -13,17.0,14.0,-1.8108011504072024,3.687418931630696 -13,17.0,17.0,4.886487584415919,-9.906177730909668 -13,17.0,18.0,-3.0756864340087167,6.218758799278971 -13,18.0,17.0,-3.0756864340087167,6.218758799278971 -13,18.0,18.0,8.958039375185187,-17.98346468163191 -13,18.0,19.0,-5.88235294117647,11.76470588235294 -13,19.0,9.0,-1.7848303152666305,3.98535828943083 -13,19.0,18.0,-5.88235294117647,11.76470588235294 -13,19.0,19.0,7.6671832564431,-15.75006417178377 -13,20.0,9.0,-5.101853820159654,10.98071411292983 -13,20.0,20.0,21.876495189895888,-45.10843276170355 -13,20.0,21.0,-16.774641369736234,34.127718648773715 -13,21.0,20.0,-16.774641369736234,34.127718648773715 -13,21.0,21.0,19.31517952199179,-38.08212151184976 -13,21.0,23.0,-2.5405381522555563,3.95440286307604 -13,22.0,14.0,-1.9683489489016612,3.976064876781356 -13,22.0,22.0,3.429754555384988,-6.965303617315433 -13,22.0,23.0,-1.4614056064833263,2.989238740534077 -13,23.0,21.0,-2.5405381522555563,3.95440286307604 -13,23.0,22.0,-1.4614056064833263,2.989238740534077 -13,23.0,23.0,5.311836702613133,-9.188263657315172 -13,23.0,24.0,-1.3098929438742493,2.287622053705056 -13,24.0,23.0,-1.3098929438742493,2.287622053705056 -13,24.0,24.0,4.495715080321987,-7.864978761969621 -13,24.0,25.0,-1.2165301194494855,1.8171440463475024 -13,24.0,26.0,-1.9692920169982515,3.760212661917064 -13,25.0,24.0,-1.2165301194494855,1.8171440463475024 -13,25.0,25.0,1.2165301194494855,-1.8171440463475024 -13,26.0,24.0,-1.9692920169982515,3.760212661917064 -13,26.0,26.0,3.652281470778589,-9.46044252232512 -13,26.0,27.0,0.0,2.608731947574922 -13,26.0,28.0,-0.99553355095268,1.881005840357816 -13,26.0,29.0,-0.6874559028276572,1.293971494797717 -13,27.0,5.0,-4.362844058012917,15.463571542897856 -13,27.0,7.0,-1.4439790613954469,4.540814658476248 -13,27.0,26.0,0.0,2.608731947574922 -13,27.0,27.0,5.806823119408364,-22.67145722159613 -13,28.0,26.0,-0.99553355095268,1.881005840357816 -13,28.0,28.0,1.9075867579849564,-3.604364401207048 -13,28.0,29.0,-0.9120532070322764,1.7233585608492326 -13,29.0,26.0,-0.6874559028276572,1.293971494797717 -13,29.0,28.0,-0.9120532070322764,1.7233585608492326 -13,29.0,29.0,1.5995091098599337,-3.0173300556469496 -14,0.0,0.0,6.765516048652632,-21.23160167089863 -14,0.0,1.0,-5.224646179885656,15.646726840803398 -14,0.0,2.0,-1.5408698687669766,5.631674830095234 -14,1.0,0.0,-5.224646179885656,15.646726840803398 -14,1.0,1.0,9.75228216552403,-30.648662892676068 -14,1.0,3.0,-1.7055303166990268,5.1973792282565086 -14,1.0,4.0,-1.1359607881738778,4.772479328281356 -14,1.0,5.0,-1.6861448807654689,5.116477495334806 -14,2.0,0.0,-1.5408698687669766,5.631674830095234 -14,2.0,2.0,9.736318911079088,-29.13794745915803 -14,2.0,3.0,-8.19544904231211,23.5308726290628 -14,3.0,1.0,-1.7055303166990268,5.1973792282565086 -14,3.0,2.0,-8.19544904231211,23.5308726290628 -14,3.0,3.0,9.900979359011137,-33.202706969773025 -14,3.0,11.0,0.0,4.191255364806866 -14,4.0,1.0,-1.1359607881738778,4.772479328281356 -14,4.0,4.0,4.089980824135861,-12.190647245055052 -14,4.0,6.0,-2.954020035961983,7.449267916773697 -14,5.0,1.0,-1.6861448807654689,5.116477495334806 -14,5.0,5.0,9.639199362759378,-38.51436568394547 -14,5.0,6.0,-3.590210423980992,11.02611441072814 -14,5.0,8.0,0.0,4.915840805411357 -14,5.0,9.0,0.0,1.8561002591115965 -14,5.0,27.0,-4.362844058012917,15.463571542897856 -14,6.0,4.0,-2.954020035961983,7.449267916773697 -14,6.0,5.0,-3.590210423980992,11.02611441072814 -14,6.0,6.0,6.544230459942975,-18.45668232750184 -14,7.0,7.0,1.4439790613954469,-4.519414658476248 -14,7.0,27.0,-1.4439790613954469,4.540814658476248 -14,8.0,5.0,0.0,4.915840805411357 -14,8.0,8.0,0.0,-18.706293706293707 -14,8.0,9.0,0.0,9.090909090909092 -14,8.0,10.0,0.0,4.807692307692308 -14,9.0,5.0,0.0,1.8561002591115965 -14,9.0,8.0,0.0,9.090909090909092 -14,9.0,9.0,13.462042814524237,-41.3837606675224 -14,9.0,16.0,-3.956039125715353,10.317447719844054 -14,9.0,19.0,-1.7848303152666305,3.98535828943083 -14,9.0,20.0,-5.101853820159654,10.98071411292983 -14,9.0,21.0,-2.619319553382597,5.400770303329455 -14,10.0,8.0,0.0,4.807692307692308 -14,10.0,10.0,0.0,-4.807692307692308 -14,11.0,3.0,0.0,4.191255364806866 -14,11.0,11.0,6.573961583776156,-24.424167659260668 -14,11.0,12.0,0.0,7.142857142857143 -14,11.0,13.0,-1.5265676088395577,3.1734252729654173 -14,11.0,14.0,-3.0953961826564296,6.097275864326261 -14,11.0,15.0,-1.9519977922801688,4.104359379111847 -14,12.0,11.0,0.0,7.142857142857143 -14,12.0,12.0,0.0,-7.142857142857143 -14,13.0,11.0,-1.5265676088395577,3.1734252729654173 -14,13.0,13.0,4.01751987283902,-5.424299332335067 -14,13.0,14.0,-2.4909522639994623,2.250874059369649 -14,14.0,11.0,-3.0953961826564296,6.097275864326261 -14,14.0,13.0,-2.4909522639994623,2.250874059369649 -14,14.0,14.0,9.365498545964757,-16.01163373210796 -14,14.0,17.0,-1.8108011504072024,3.687418931630696 -14,14.0,22.0,-1.9683489489016612,3.976064876781356 -14,15.0,11.0,-1.9519977922801688,4.104359379111847 -14,15.0,15.0,3.271064728633931,-8.94513365126506 -14,15.0,16.0,-1.3190669363537617,4.8407742721532125 -14,16.0,9.0,-3.956039125715353,10.317447719844054 -14,16.0,15.0,-1.3190669363537617,4.8407742721532125 -14,16.0,16.0,5.275106062069114,-15.158221991997266 -14,17.0,14.0,-1.8108011504072024,3.687418931630696 -14,17.0,17.0,4.886487584415919,-9.906177730909668 -14,17.0,18.0,-3.0756864340087167,6.218758799278971 -14,18.0,17.0,-3.0756864340087167,6.218758799278971 -14,18.0,18.0,8.958039375185187,-17.98346468163191 -14,18.0,19.0,-5.88235294117647,11.76470588235294 -14,19.0,9.0,-1.7848303152666305,3.98535828943083 -14,19.0,18.0,-5.88235294117647,11.76470588235294 -14,19.0,19.0,7.6671832564431,-15.75006417178377 -14,20.0,9.0,-5.101853820159654,10.98071411292983 -14,20.0,20.0,21.876495189895888,-45.10843276170355 -14,20.0,21.0,-16.774641369736234,34.127718648773715 -14,21.0,9.0,-2.619319553382597,5.400770303329455 -14,21.0,20.0,-16.774641369736234,34.127718648773715 -14,21.0,21.0,21.93449907537439,-43.48289181517921 -14,21.0,23.0,-2.5405381522555563,3.95440286307604 -14,22.0,14.0,-1.9683489489016612,3.976064876781356 -14,22.0,22.0,3.429754555384988,-6.965303617315433 -14,22.0,23.0,-1.4614056064833263,2.989238740534077 -14,23.0,21.0,-2.5405381522555563,3.95440286307604 -14,23.0,22.0,-1.4614056064833263,2.989238740534077 -14,23.0,23.0,5.311836702613133,-9.188263657315172 -14,23.0,24.0,-1.3098929438742493,2.287622053705056 -14,24.0,23.0,-1.3098929438742493,2.287622053705056 -14,24.0,24.0,4.495715080321987,-7.864978761969621 -14,24.0,25.0,-1.2165301194494855,1.8171440463475024 -14,24.0,26.0,-1.9692920169982515,3.760212661917064 -14,25.0,24.0,-1.2165301194494855,1.8171440463475024 -14,25.0,25.0,1.2165301194494855,-1.8171440463475024 -14,26.0,24.0,-1.9692920169982515,3.760212661917064 -14,26.0,26.0,3.652281470778589,-9.46044252232512 -14,26.0,27.0,0.0,2.608731947574922 -14,26.0,28.0,-0.99553355095268,1.881005840357816 -14,26.0,29.0,-0.6874559028276572,1.293971494797717 -14,27.0,5.0,-4.362844058012917,15.463571542897856 -14,27.0,7.0,-1.4439790613954469,4.540814658476248 -14,27.0,26.0,0.0,2.608731947574922 -14,27.0,27.0,5.806823119408364,-22.67145722159613 -14,28.0,26.0,-0.99553355095268,1.881005840357816 -14,28.0,28.0,1.9075867579849564,-3.604364401207048 -14,28.0,29.0,-0.9120532070322764,1.7233585608492326 -14,29.0,26.0,-0.6874559028276572,1.293971494797717 -14,29.0,28.0,-0.9120532070322764,1.7233585608492326 -14,29.0,29.0,1.5995091098599337,-3.0173300556469496 -15,0.0,0.0,6.765516048652632,-21.23160167089863 -15,0.0,1.0,-5.224646179885656,15.646726840803398 -15,0.0,2.0,-1.5408698687669766,5.631674830095234 -15,1.0,0.0,-5.224646179885656,15.646726840803398 -15,1.0,1.0,9.75228216552403,-30.648662892676068 -15,1.0,3.0,-1.7055303166990268,5.1973792282565086 -15,1.0,4.0,-1.1359607881738778,4.772479328281356 -15,1.0,5.0,-1.6861448807654689,5.116477495334806 -15,2.0,0.0,-1.5408698687669766,5.631674830095234 -15,2.0,2.0,9.736318911079088,-29.13794745915803 -15,2.0,3.0,-8.19544904231211,23.5308726290628 -15,3.0,1.0,-1.7055303166990268,5.1973792282565086 -15,3.0,2.0,-8.19544904231211,23.5308726290628 -15,3.0,3.0,16.314103089185693,-55.509410535254254 -15,3.0,5.0,-6.413123730174556,22.31120356548123 -15,3.0,11.0,0.0,4.191255364806866 -15,4.0,1.0,-1.1359607881738778,4.772479328281356 -15,4.0,4.0,4.089980824135861,-12.190647245055052 -15,4.0,6.0,-2.954020035961983,7.449267916773697 -15,5.0,1.0,-1.6861448807654689,5.116477495334806 -15,5.0,3.0,-6.413123730174556,22.31120356548123 -15,5.0,5.0,22.341631269034565,-82.8291478657789 -15,5.0,6.0,-3.590210423980992,11.02611441072814 -15,5.0,7.0,-6.289308176100628,22.0125786163522 -15,5.0,8.0,0.0,4.915840805411357 -15,5.0,9.0,0.0,1.8561002591115965 -15,5.0,27.0,-4.362844058012917,15.463571542897856 -15,6.0,4.0,-2.954020035961983,7.449267916773697 -15,6.0,5.0,-3.590210423980992,11.02611441072814 -15,6.0,6.0,6.544230459942975,-18.45668232750184 -15,7.0,5.0,-6.289308176100628,22.0125786163522 -15,7.0,7.0,7.733287237496075,-26.527493274828448 -15,7.0,27.0,-1.4439790613954469,4.540814658476248 -15,8.0,5.0,0.0,4.915840805411357 -15,8.0,8.0,0.0,-18.706293706293707 -15,8.0,9.0,0.0,9.090909090909092 -15,8.0,10.0,0.0,4.807692307692308 -15,9.0,5.0,0.0,1.8561002591115965 -15,9.0,8.0,0.0,9.090909090909092 -15,9.0,9.0,13.462042814524237,-41.3837606675224 -15,9.0,16.0,-3.956039125715353,10.317447719844054 -15,9.0,19.0,-1.7848303152666305,3.98535828943083 -15,9.0,20.0,-5.101853820159654,10.98071411292983 -15,9.0,21.0,-2.619319553382597,5.400770303329455 -15,10.0,8.0,0.0,4.807692307692308 -15,10.0,10.0,0.0,-4.807692307692308 -15,11.0,3.0,0.0,4.191255364806866 -15,11.0,11.0,6.573961583776156,-24.424167659260668 -15,11.0,12.0,0.0,7.142857142857143 -15,11.0,13.0,-1.5265676088395577,3.1734252729654173 -15,11.0,14.0,-3.0953961826564296,6.097275864326261 -15,11.0,15.0,-1.9519977922801688,4.104359379111847 -15,12.0,11.0,0.0,7.142857142857143 -15,12.0,12.0,0.0,-7.142857142857143 -15,13.0,11.0,-1.5265676088395577,3.1734252729654173 -15,13.0,13.0,4.01751987283902,-5.424299332335067 -15,13.0,14.0,-2.4909522639994623,2.250874059369649 -15,14.0,11.0,-3.0953961826564296,6.097275864326261 -15,14.0,13.0,-2.4909522639994623,2.250874059369649 -15,14.0,14.0,9.365498545964757,-16.01163373210796 -15,14.0,17.0,-1.8108011504072024,3.687418931630696 -15,14.0,22.0,-1.9683489489016612,3.976064876781356 -15,15.0,11.0,-1.9519977922801688,4.104359379111847 -15,15.0,15.0,3.271064728633931,-8.94513365126506 -15,15.0,16.0,-1.3190669363537617,4.8407742721532125 -15,16.0,9.0,-3.956039125715353,10.317447719844054 -15,16.0,15.0,-1.3190669363537617,4.8407742721532125 -15,16.0,16.0,5.275106062069114,-15.158221991997266 -15,17.0,14.0,-1.8108011504072024,3.687418931630696 -15,17.0,17.0,4.886487584415919,-9.906177730909668 -15,17.0,18.0,-3.0756864340087167,6.218758799278971 -15,18.0,17.0,-3.0756864340087167,6.218758799278971 -15,18.0,18.0,8.958039375185187,-17.98346468163191 -15,18.0,19.0,-5.88235294117647,11.76470588235294 -15,19.0,9.0,-1.7848303152666305,3.98535828943083 -15,19.0,18.0,-5.88235294117647,11.76470588235294 -15,19.0,19.0,7.6671832564431,-15.75006417178377 -15,20.0,9.0,-5.101853820159654,10.98071411292983 -15,20.0,20.0,21.876495189895888,-45.10843276170355 -15,20.0,21.0,-16.774641369736234,34.127718648773715 -15,21.0,9.0,-2.619319553382597,5.400770303329455 -15,21.0,20.0,-16.774641369736234,34.127718648773715 -15,21.0,21.0,21.93449907537439,-43.48289181517921 -15,21.0,23.0,-2.5405381522555563,3.95440286307604 -15,22.0,14.0,-1.9683489489016612,3.976064876781356 -15,22.0,22.0,3.429754555384988,-6.965303617315433 -15,22.0,23.0,-1.4614056064833263,2.989238740534077 -15,23.0,21.0,-2.5405381522555563,3.95440286307604 -15,23.0,22.0,-1.4614056064833263,2.989238740534077 -15,23.0,23.0,5.311836702613133,-9.188263657315172 -15,23.0,24.0,-1.3098929438742493,2.287622053705056 -15,24.0,23.0,-1.3098929438742493,2.287622053705056 -15,24.0,24.0,4.495715080321987,-7.864978761969621 -15,24.0,25.0,-1.2165301194494855,1.8171440463475024 -15,24.0,26.0,-1.9692920169982515,3.760212661917064 -15,25.0,24.0,-1.2165301194494855,1.8171440463475024 -15,25.0,25.0,1.2165301194494855,-1.8171440463475024 -15,26.0,24.0,-1.9692920169982515,3.760212661917064 -15,26.0,26.0,3.652281470778589,-9.46044252232512 -15,26.0,27.0,0.0,2.608731947574922 -15,26.0,28.0,-0.99553355095268,1.881005840357816 -15,26.0,29.0,-0.6874559028276572,1.293971494797717 -15,27.0,5.0,-4.362844058012917,15.463571542897856 -15,27.0,7.0,-1.4439790613954469,4.540814658476248 -15,27.0,26.0,0.0,2.608731947574922 -15,27.0,27.0,5.806823119408364,-22.67145722159613 -15,28.0,26.0,-0.99553355095268,1.881005840357816 -15,28.0,28.0,1.9075867579849564,-3.604364401207048 -15,28.0,29.0,-0.9120532070322764,1.7233585608492326 -15,29.0,26.0,-0.6874559028276572,1.293971494797717 -15,29.0,28.0,-0.9120532070322764,1.7233585608492326 -15,29.0,29.0,1.5995091098599337,-3.0173300556469496 -16,0.0,0.0,6.765516048652632,-21.23160167089863 -16,0.0,1.0,-5.224646179885656,15.646726840803398 -16,0.0,2.0,-1.5408698687669766,5.631674830095234 -16,1.0,0.0,-5.224646179885656,15.646726840803398 -16,1.0,1.0,9.75228216552403,-30.648662892676068 -16,1.0,3.0,-1.7055303166990268,5.1973792282565086 -16,1.0,4.0,-1.1359607881738778,4.772479328281356 -16,1.0,5.0,-1.6861448807654689,5.116477495334806 -16,2.0,0.0,-1.5408698687669766,5.631674830095234 -16,2.0,2.0,9.736318911079088,-29.13794745915803 -16,2.0,3.0,-8.19544904231211,23.5308726290628 -16,3.0,1.0,-1.7055303166990268,5.1973792282565086 -16,3.0,2.0,-8.19544904231211,23.5308726290628 -16,3.0,3.0,16.314103089185693,-55.509410535254254 -16,3.0,5.0,-6.413123730174556,22.31120356548123 -16,3.0,11.0,0.0,4.191255364806866 -16,4.0,1.0,-1.1359607881738778,4.772479328281356 -16,4.0,4.0,4.089980824135861,-12.190647245055052 -16,4.0,6.0,-2.954020035961983,7.449267916773697 -16,5.0,1.0,-1.6861448807654689,5.116477495334806 -16,5.0,3.0,-6.413123730174556,22.31120356548123 -16,5.0,5.0,22.341631269034565,-82.8291478657789 -16,5.0,6.0,-3.590210423980992,11.02611441072814 -16,5.0,7.0,-6.289308176100628,22.0125786163522 -16,5.0,8.0,0.0,4.915840805411357 -16,5.0,9.0,0.0,1.8561002591115965 -16,5.0,27.0,-4.362844058012917,15.463571542897856 -16,6.0,4.0,-2.954020035961983,7.449267916773697 -16,6.0,5.0,-3.590210423980992,11.02611441072814 -16,6.0,6.0,6.544230459942975,-18.45668232750184 -16,7.0,5.0,-6.289308176100628,22.0125786163522 -16,7.0,7.0,7.733287237496075,-26.527493274828448 -16,7.0,27.0,-1.4439790613954469,4.540814658476248 -16,8.0,5.0,0.0,4.915840805411357 -16,8.0,8.0,0.0,-18.706293706293707 -16,8.0,9.0,0.0,9.090909090909092 -16,8.0,10.0,0.0,4.807692307692308 -16,9.0,5.0,0.0,1.8561002591115965 -16,9.0,8.0,0.0,9.090909090909092 -16,9.0,9.0,8.36018899436458,-30.40304655459257 -16,9.0,16.0,-3.956039125715353,10.317447719844054 -16,9.0,19.0,-1.7848303152666305,3.98535828943083 -16,9.0,21.0,-2.619319553382597,5.400770303329455 -16,10.0,8.0,0.0,4.807692307692308 -16,10.0,10.0,0.0,-4.807692307692308 -16,11.0,3.0,0.0,4.191255364806866 -16,11.0,11.0,6.573961583776156,-24.424167659260668 -16,11.0,12.0,0.0,7.142857142857143 -16,11.0,13.0,-1.5265676088395577,3.1734252729654173 -16,11.0,14.0,-3.0953961826564296,6.097275864326261 -16,11.0,15.0,-1.9519977922801688,4.104359379111847 -16,12.0,11.0,0.0,7.142857142857143 -16,12.0,12.0,0.0,-7.142857142857143 -16,13.0,11.0,-1.5265676088395577,3.1734252729654173 -16,13.0,13.0,4.01751987283902,-5.424299332335067 -16,13.0,14.0,-2.4909522639994623,2.250874059369649 -16,14.0,11.0,-3.0953961826564296,6.097275864326261 -16,14.0,13.0,-2.4909522639994623,2.250874059369649 -16,14.0,14.0,9.365498545964757,-16.01163373210796 -16,14.0,17.0,-1.8108011504072024,3.687418931630696 -16,14.0,22.0,-1.9683489489016612,3.976064876781356 -16,15.0,11.0,-1.9519977922801688,4.104359379111847 -16,15.0,15.0,3.271064728633931,-8.94513365126506 -16,15.0,16.0,-1.3190669363537617,4.8407742721532125 -16,16.0,9.0,-3.956039125715353,10.317447719844054 -16,16.0,15.0,-1.3190669363537617,4.8407742721532125 -16,16.0,16.0,5.275106062069114,-15.158221991997266 -16,17.0,14.0,-1.8108011504072024,3.687418931630696 -16,17.0,17.0,4.886487584415919,-9.906177730909668 -16,17.0,18.0,-3.0756864340087167,6.218758799278971 -16,18.0,17.0,-3.0756864340087167,6.218758799278971 -16,18.0,18.0,8.958039375185187,-17.98346468163191 -16,18.0,19.0,-5.88235294117647,11.76470588235294 -16,19.0,9.0,-1.7848303152666305,3.98535828943083 -16,19.0,18.0,-5.88235294117647,11.76470588235294 -16,19.0,19.0,7.6671832564431,-15.75006417178377 -16,20.0,20.0,16.774641369736234,-34.127718648773715 -16,20.0,21.0,-16.774641369736234,34.127718648773715 -16,21.0,9.0,-2.619319553382597,5.400770303329455 -16,21.0,20.0,-16.774641369736234,34.127718648773715 -16,21.0,21.0,21.93449907537439,-43.48289181517921 -16,21.0,23.0,-2.5405381522555563,3.95440286307604 -16,22.0,14.0,-1.9683489489016612,3.976064876781356 -16,22.0,22.0,3.429754555384988,-6.965303617315433 -16,22.0,23.0,-1.4614056064833263,2.989238740534077 -16,23.0,21.0,-2.5405381522555563,3.95440286307604 -16,23.0,22.0,-1.4614056064833263,2.989238740534077 -16,23.0,23.0,5.311836702613133,-9.188263657315172 -16,23.0,24.0,-1.3098929438742493,2.287622053705056 -16,24.0,23.0,-1.3098929438742493,2.287622053705056 -16,24.0,24.0,4.495715080321987,-7.864978761969621 -16,24.0,25.0,-1.2165301194494855,1.8171440463475024 -16,24.0,26.0,-1.9692920169982515,3.760212661917064 -16,25.0,24.0,-1.2165301194494855,1.8171440463475024 -16,25.0,25.0,1.2165301194494855,-1.8171440463475024 -16,26.0,24.0,-1.9692920169982515,3.760212661917064 -16,26.0,26.0,3.652281470778589,-9.46044252232512 -16,26.0,27.0,0.0,2.608731947574922 -16,26.0,28.0,-0.99553355095268,1.881005840357816 -16,26.0,29.0,-0.6874559028276572,1.293971494797717 -16,27.0,5.0,-4.362844058012917,15.463571542897856 -16,27.0,7.0,-1.4439790613954469,4.540814658476248 -16,27.0,26.0,0.0,2.608731947574922 -16,27.0,27.0,5.806823119408364,-22.67145722159613 -16,28.0,26.0,-0.99553355095268,1.881005840357816 -16,28.0,28.0,1.9075867579849564,-3.604364401207048 -16,28.0,29.0,-0.9120532070322764,1.7233585608492326 -16,29.0,26.0,-0.6874559028276572,1.293971494797717 -16,29.0,28.0,-0.9120532070322764,1.7233585608492326 -16,29.0,29.0,1.5995091098599337,-3.0173300556469496 -17,0.0,0.0,6.765516048652632,-21.23160167089863 -17,0.0,1.0,-5.224646179885656,15.646726840803398 -17,0.0,2.0,-1.5408698687669766,5.631674830095234 -17,1.0,0.0,-5.224646179885656,15.646726840803398 -17,1.0,1.0,9.75228216552403,-30.648662892676068 -17,1.0,3.0,-1.7055303166990268,5.1973792282565086 -17,1.0,4.0,-1.1359607881738778,4.772479328281356 -17,1.0,5.0,-1.6861448807654689,5.116477495334806 -17,2.0,0.0,-1.5408698687669766,5.631674830095234 -17,2.0,2.0,9.736318911079088,-29.13794745915803 -17,2.0,3.0,-8.19544904231211,23.5308726290628 -17,3.0,1.0,-1.7055303166990268,5.1973792282565086 -17,3.0,2.0,-8.19544904231211,23.5308726290628 -17,3.0,3.0,16.314103089185693,-55.509410535254254 -17,3.0,5.0,-6.413123730174556,22.31120356548123 -17,3.0,11.0,0.0,4.191255364806866 -17,4.0,1.0,-1.1359607881738778,4.772479328281356 -17,4.0,4.0,4.089980824135861,-12.190647245055052 -17,4.0,6.0,-2.954020035961983,7.449267916773697 -17,5.0,1.0,-1.6861448807654689,5.116477495334806 -17,5.0,3.0,-6.413123730174556,22.31120356548123 -17,5.0,5.0,22.341631269034565,-82.8291478657789 -17,5.0,6.0,-3.590210423980992,11.02611441072814 -17,5.0,7.0,-6.289308176100628,22.0125786163522 -17,5.0,8.0,0.0,4.915840805411357 -17,5.0,9.0,0.0,1.8561002591115965 -17,5.0,27.0,-4.362844058012917,15.463571542897856 -17,6.0,4.0,-2.954020035961983,7.449267916773697 -17,6.0,5.0,-3.590210423980992,11.02611441072814 -17,6.0,6.0,6.544230459942975,-18.45668232750184 -17,7.0,5.0,-6.289308176100628,22.0125786163522 -17,7.0,7.0,7.733287237496075,-26.527493274828448 -17,7.0,27.0,-1.4439790613954469,4.540814658476248 -17,8.0,5.0,0.0,4.915840805411357 -17,8.0,8.0,0.0,-18.706293706293707 -17,8.0,9.0,0.0,9.090909090909092 -17,8.0,10.0,0.0,4.807692307692308 -17,9.0,5.0,0.0,1.8561002591115965 -17,9.0,8.0,0.0,9.090909090909092 -17,9.0,9.0,13.462042814524237,-41.3837606675224 -17,9.0,16.0,-3.956039125715353,10.317447719844054 -17,9.0,19.0,-1.7848303152666305,3.98535828943083 -17,9.0,20.0,-5.101853820159654,10.98071411292983 -17,9.0,21.0,-2.619319553382597,5.400770303329455 -17,10.0,8.0,0.0,4.807692307692308 -17,10.0,10.0,0.0,-4.807692307692308 -17,11.0,3.0,0.0,4.191255364806866 -17,11.0,11.0,6.573961583776156,-24.424167659260668 -17,11.0,12.0,0.0,7.142857142857143 -17,11.0,13.0,-1.5265676088395577,3.1734252729654173 -17,11.0,14.0,-3.0953961826564296,6.097275864326261 -17,11.0,15.0,-1.9519977922801688,4.104359379111847 -17,12.0,11.0,0.0,7.142857142857143 -17,12.0,12.0,0.0,-7.142857142857143 -17,13.0,11.0,-1.5265676088395577,3.1734252729654173 -17,13.0,13.0,4.01751987283902,-5.424299332335067 -17,13.0,14.0,-2.4909522639994623,2.250874059369649 -17,14.0,11.0,-3.0953961826564296,6.097275864326261 -17,14.0,13.0,-2.4909522639994623,2.250874059369649 -17,14.0,14.0,9.365498545964757,-16.01163373210796 -17,14.0,17.0,-1.8108011504072024,3.687418931630696 -17,14.0,22.0,-1.9683489489016612,3.976064876781356 -17,15.0,11.0,-1.9519977922801688,4.104359379111847 -17,15.0,15.0,3.271064728633931,-8.94513365126506 -17,15.0,16.0,-1.3190669363537617,4.8407742721532125 -17,16.0,9.0,-3.956039125715353,10.317447719844054 -17,16.0,15.0,-1.3190669363537617,4.8407742721532125 -17,16.0,16.0,5.275106062069114,-15.158221991997266 -17,17.0,14.0,-1.8108011504072024,3.687418931630696 -17,17.0,17.0,4.886487584415919,-9.906177730909668 -17,17.0,18.0,-3.0756864340087167,6.218758799278971 -17,18.0,17.0,-3.0756864340087167,6.218758799278971 -17,18.0,18.0,8.958039375185187,-17.98346468163191 -17,18.0,19.0,-5.88235294117647,11.76470588235294 -17,19.0,9.0,-1.7848303152666305,3.98535828943083 -17,19.0,18.0,-5.88235294117647,11.76470588235294 -17,19.0,19.0,7.6671832564431,-15.75006417178377 -17,20.0,9.0,-5.101853820159654,10.98071411292983 -17,20.0,20.0,21.876495189895888,-45.10843276170355 -17,20.0,21.0,-16.774641369736234,34.127718648773715 -17,21.0,9.0,-2.619319553382597,5.400770303329455 -17,21.0,20.0,-16.774641369736234,34.127718648773715 -17,21.0,21.0,21.93449907537439,-43.48289181517921 -17,21.0,23.0,-2.5405381522555563,3.95440286307604 -17,22.0,14.0,-1.9683489489016612,3.976064876781356 -17,22.0,22.0,3.429754555384988,-6.965303617315433 -17,22.0,23.0,-1.4614056064833263,2.989238740534077 -17,23.0,21.0,-2.5405381522555563,3.95440286307604 -17,23.0,22.0,-1.4614056064833263,2.989238740534077 -17,23.0,23.0,5.311836702613133,-9.188263657315172 -17,23.0,24.0,-1.3098929438742493,2.287622053705056 -17,24.0,23.0,-1.3098929438742493,2.287622053705056 -17,24.0,24.0,4.495715080321987,-7.864978761969621 -17,24.0,25.0,-1.2165301194494855,1.8171440463475024 -17,24.0,26.0,-1.9692920169982515,3.760212661917064 -17,25.0,24.0,-1.2165301194494855,1.8171440463475024 -17,25.0,25.0,1.2165301194494855,-1.8171440463475024 -17,26.0,24.0,-1.9692920169982515,3.760212661917064 -17,26.0,26.0,3.652281470778589,-9.46044252232512 -17,26.0,27.0,0.0,2.608731947574922 -17,26.0,28.0,-0.99553355095268,1.881005840357816 -17,26.0,29.0,-0.6874559028276572,1.293971494797717 -17,27.0,5.0,-4.362844058012917,15.463571542897856 -17,27.0,7.0,-1.4439790613954469,4.540814658476248 -17,27.0,26.0,0.0,2.608731947574922 -17,27.0,27.0,5.806823119408364,-22.67145722159613 -17,28.0,26.0,-0.99553355095268,1.881005840357816 -17,28.0,28.0,1.9075867579849564,-3.604364401207048 -17,28.0,29.0,-0.9120532070322764,1.7233585608492326 -17,29.0,26.0,-0.6874559028276572,1.293971494797717 -17,29.0,28.0,-0.9120532070322764,1.7233585608492326 -17,29.0,29.0,1.5995091098599337,-3.0173300556469496 -18,0.0,0.0,6.765516048652632,-21.23160167089863 -18,0.0,1.0,-5.224646179885656,15.646726840803398 -18,0.0,2.0,-1.5408698687669766,5.631674830095234 -18,1.0,0.0,-5.224646179885656,15.646726840803398 -18,1.0,1.0,9.75228216552403,-30.648662892676068 -18,1.0,3.0,-1.7055303166990268,5.1973792282565086 -18,1.0,4.0,-1.1359607881738778,4.772479328281356 -18,1.0,5.0,-1.6861448807654689,5.116477495334806 -18,2.0,0.0,-1.5408698687669766,5.631674830095234 -18,2.0,2.0,9.736318911079088,-29.13794745915803 -18,2.0,3.0,-8.19544904231211,23.5308726290628 -18,3.0,1.0,-1.7055303166990268,5.1973792282565086 -18,3.0,2.0,-8.19544904231211,23.5308726290628 -18,3.0,3.0,16.314103089185693,-55.509410535254254 -18,3.0,5.0,-6.413123730174556,22.31120356548123 -18,3.0,11.0,0.0,4.191255364806866 -18,4.0,1.0,-1.1359607881738778,4.772479328281356 -18,4.0,4.0,4.089980824135861,-12.190647245055052 -18,4.0,6.0,-2.954020035961983,7.449267916773697 -18,5.0,1.0,-1.6861448807654689,5.116477495334806 -18,5.0,3.0,-6.413123730174556,22.31120356548123 -18,5.0,5.0,22.341631269034565,-82.8291478657789 -18,5.0,6.0,-3.590210423980992,11.02611441072814 -18,5.0,7.0,-6.289308176100628,22.0125786163522 -18,5.0,8.0,0.0,4.915840805411357 -18,5.0,9.0,0.0,1.8561002591115965 -18,5.0,27.0,-4.362844058012917,15.463571542897856 -18,6.0,4.0,-2.954020035961983,7.449267916773697 -18,6.0,5.0,-3.590210423980992,11.02611441072814 -18,6.0,6.0,6.544230459942975,-18.45668232750184 -18,7.0,5.0,-6.289308176100628,22.0125786163522 -18,7.0,7.0,7.733287237496075,-26.527493274828448 -18,7.0,27.0,-1.4439790613954469,4.540814658476248 -18,8.0,5.0,0.0,4.915840805411357 -18,8.0,8.0,0.0,-18.706293706293707 -18,8.0,9.0,0.0,9.090909090909092 -18,8.0,10.0,0.0,4.807692307692308 -18,9.0,5.0,0.0,1.8561002591115965 -18,9.0,8.0,0.0,9.090909090909092 -18,9.0,9.0,13.462042814524237,-41.3837606675224 -18,9.0,16.0,-3.956039125715353,10.317447719844054 -18,9.0,19.0,-1.7848303152666305,3.98535828943083 -18,9.0,20.0,-5.101853820159654,10.98071411292983 -18,9.0,21.0,-2.619319553382597,5.400770303329455 -18,10.0,8.0,0.0,4.807692307692308 -18,10.0,10.0,0.0,-4.807692307692308 -18,11.0,3.0,0.0,4.191255364806866 -18,11.0,11.0,6.573961583776156,-24.424167659260668 -18,11.0,12.0,0.0,7.142857142857143 -18,11.0,13.0,-1.5265676088395577,3.1734252729654173 -18,11.0,14.0,-3.0953961826564296,6.097275864326261 -18,11.0,15.0,-1.9519977922801688,4.104359379111847 -18,12.0,11.0,0.0,7.142857142857143 -18,12.0,12.0,0.0,-7.142857142857143 -18,13.0,11.0,-1.5265676088395577,3.1734252729654173 -18,13.0,13.0,4.01751987283902,-5.424299332335067 -18,13.0,14.0,-2.4909522639994623,2.250874059369649 -18,14.0,11.0,-3.0953961826564296,6.097275864326261 -18,14.0,13.0,-2.4909522639994623,2.250874059369649 -18,14.0,14.0,9.365498545964757,-16.01163373210796 -18,14.0,17.0,-1.8108011504072024,3.687418931630696 -18,14.0,22.0,-1.9683489489016612,3.976064876781356 -18,15.0,11.0,-1.9519977922801688,4.104359379111847 -18,15.0,15.0,1.9519977922801688,-4.104359379111847 -18,16.0,9.0,-3.956039125715353,10.317447719844054 -18,16.0,16.0,3.956039125715353,-10.317447719844054 -18,17.0,14.0,-1.8108011504072024,3.687418931630696 -18,17.0,17.0,4.886487584415919,-9.906177730909668 -18,17.0,18.0,-3.0756864340087167,6.218758799278971 -18,18.0,17.0,-3.0756864340087167,6.218758799278971 -18,18.0,18.0,8.958039375185187,-17.98346468163191 -18,18.0,19.0,-5.88235294117647,11.76470588235294 -18,19.0,9.0,-1.7848303152666305,3.98535828943083 -18,19.0,18.0,-5.88235294117647,11.76470588235294 -18,19.0,19.0,7.6671832564431,-15.75006417178377 -18,20.0,9.0,-5.101853820159654,10.98071411292983 -18,20.0,20.0,21.876495189895888,-45.10843276170355 -18,20.0,21.0,-16.774641369736234,34.127718648773715 -18,21.0,9.0,-2.619319553382597,5.400770303329455 -18,21.0,20.0,-16.774641369736234,34.127718648773715 -18,21.0,21.0,21.93449907537439,-43.48289181517921 -18,21.0,23.0,-2.5405381522555563,3.95440286307604 -18,22.0,14.0,-1.9683489489016612,3.976064876781356 -18,22.0,22.0,3.429754555384988,-6.965303617315433 -18,22.0,23.0,-1.4614056064833263,2.989238740534077 -18,23.0,21.0,-2.5405381522555563,3.95440286307604 -18,23.0,22.0,-1.4614056064833263,2.989238740534077 -18,23.0,23.0,5.311836702613133,-9.188263657315172 -18,23.0,24.0,-1.3098929438742493,2.287622053705056 -18,24.0,23.0,-1.3098929438742493,2.287622053705056 -18,24.0,24.0,4.495715080321987,-7.864978761969621 -18,24.0,25.0,-1.2165301194494855,1.8171440463475024 -18,24.0,26.0,-1.9692920169982515,3.760212661917064 -18,25.0,24.0,-1.2165301194494855,1.8171440463475024 -18,25.0,25.0,1.2165301194494855,-1.8171440463475024 -18,26.0,24.0,-1.9692920169982515,3.760212661917064 -18,26.0,26.0,3.652281470778589,-9.46044252232512 -18,26.0,27.0,0.0,2.608731947574922 -18,26.0,28.0,-0.99553355095268,1.881005840357816 -18,26.0,29.0,-0.6874559028276572,1.293971494797717 -18,27.0,5.0,-4.362844058012917,15.463571542897856 -18,27.0,7.0,-1.4439790613954469,4.540814658476248 -18,27.0,26.0,0.0,2.608731947574922 -18,27.0,27.0,5.806823119408364,-22.67145722159613 -18,28.0,26.0,-0.99553355095268,1.881005840357816 -18,28.0,28.0,1.9075867579849564,-3.604364401207048 -18,28.0,29.0,-0.9120532070322764,1.7233585608492326 -18,29.0,26.0,-0.6874559028276572,1.293971494797717 -18,29.0,28.0,-0.9120532070322764,1.7233585608492326 -18,29.0,29.0,1.5995091098599337,-3.0173300556469496 -19,0.0,0.0,6.765516048652632,-21.23160167089863 -19,0.0,1.0,-5.224646179885656,15.646726840803398 -19,0.0,2.0,-1.5408698687669766,5.631674830095234 -19,1.0,0.0,-5.224646179885656,15.646726840803398 -19,1.0,1.0,9.75228216552403,-30.648662892676068 -19,1.0,3.0,-1.7055303166990268,5.1973792282565086 -19,1.0,4.0,-1.1359607881738778,4.772479328281356 -19,1.0,5.0,-1.6861448807654689,5.116477495334806 -19,2.0,0.0,-1.5408698687669766,5.631674830095234 -19,2.0,2.0,9.736318911079088,-29.13794745915803 -19,2.0,3.0,-8.19544904231211,23.5308726290628 -19,3.0,1.0,-1.7055303166990268,5.1973792282565086 -19,3.0,2.0,-8.19544904231211,23.5308726290628 -19,3.0,3.0,16.314103089185693,-55.509410535254254 -19,3.0,5.0,-6.413123730174556,22.31120356548123 -19,3.0,11.0,0.0,4.191255364806866 -19,4.0,1.0,-1.1359607881738778,4.772479328281356 -19,4.0,4.0,4.089980824135861,-12.190647245055052 -19,4.0,6.0,-2.954020035961983,7.449267916773697 -19,5.0,1.0,-1.6861448807654689,5.116477495334806 -19,5.0,3.0,-6.413123730174556,22.31120356548123 -19,5.0,5.0,22.341631269034565,-82.8291478657789 -19,5.0,6.0,-3.590210423980992,11.02611441072814 -19,5.0,7.0,-6.289308176100628,22.0125786163522 -19,5.0,8.0,0.0,4.915840805411357 -19,5.0,9.0,0.0,1.8561002591115965 -19,5.0,27.0,-4.362844058012917,15.463571542897856 -19,6.0,4.0,-2.954020035961983,7.449267916773697 -19,6.0,5.0,-3.590210423980992,11.02611441072814 -19,6.0,6.0,6.544230459942975,-18.45668232750184 -19,7.0,5.0,-6.289308176100628,22.0125786163522 -19,7.0,7.0,7.733287237496075,-26.527493274828448 -19,7.0,27.0,-1.4439790613954469,4.540814658476248 -19,8.0,5.0,0.0,4.915840805411357 -19,8.0,8.0,0.0,-18.706293706293707 -19,8.0,9.0,0.0,9.090909090909092 -19,8.0,10.0,0.0,4.807692307692308 -19,9.0,5.0,0.0,1.8561002591115965 -19,9.0,8.0,0.0,9.090909090909092 -19,9.0,9.0,9.506003688808882,-31.06631294767834 -19,9.0,19.0,-1.7848303152666305,3.98535828943083 -19,9.0,20.0,-5.101853820159654,10.98071411292983 -19,9.0,21.0,-2.619319553382597,5.400770303329455 -19,10.0,8.0,0.0,4.807692307692308 -19,10.0,10.0,0.0,-4.807692307692308 -19,11.0,3.0,0.0,4.191255364806866 -19,11.0,11.0,6.573961583776156,-24.424167659260668 -19,11.0,12.0,0.0,7.142857142857143 -19,11.0,13.0,-1.5265676088395577,3.1734252729654173 -19,11.0,14.0,-3.0953961826564296,6.097275864326261 -19,11.0,15.0,-1.9519977922801688,4.104359379111847 -19,12.0,11.0,0.0,7.142857142857143 -19,12.0,12.0,0.0,-7.142857142857143 -19,13.0,11.0,-1.5265676088395577,3.1734252729654173 -19,13.0,13.0,4.01751987283902,-5.424299332335067 -19,13.0,14.0,-2.4909522639994623,2.250874059369649 -19,14.0,11.0,-3.0953961826564296,6.097275864326261 -19,14.0,13.0,-2.4909522639994623,2.250874059369649 -19,14.0,14.0,9.365498545964757,-16.01163373210796 -19,14.0,17.0,-1.8108011504072024,3.687418931630696 -19,14.0,22.0,-1.9683489489016612,3.976064876781356 -19,15.0,11.0,-1.9519977922801688,4.104359379111847 -19,15.0,15.0,3.271064728633931,-8.94513365126506 -19,15.0,16.0,-1.3190669363537617,4.8407742721532125 -19,16.0,15.0,-1.3190669363537617,4.8407742721532125 -19,16.0,16.0,1.3190669363537617,-4.8407742721532125 -19,17.0,14.0,-1.8108011504072024,3.687418931630696 -19,17.0,17.0,4.886487584415919,-9.906177730909668 -19,17.0,18.0,-3.0756864340087167,6.218758799278971 -19,18.0,17.0,-3.0756864340087167,6.218758799278971 -19,18.0,18.0,8.958039375185187,-17.98346468163191 -19,18.0,19.0,-5.88235294117647,11.76470588235294 -19,19.0,9.0,-1.7848303152666305,3.98535828943083 -19,19.0,18.0,-5.88235294117647,11.76470588235294 -19,19.0,19.0,7.6671832564431,-15.75006417178377 -19,20.0,9.0,-5.101853820159654,10.98071411292983 -19,20.0,20.0,21.876495189895888,-45.10843276170355 -19,20.0,21.0,-16.774641369736234,34.127718648773715 -19,21.0,9.0,-2.619319553382597,5.400770303329455 -19,21.0,20.0,-16.774641369736234,34.127718648773715 -19,21.0,21.0,21.93449907537439,-43.48289181517921 -19,21.0,23.0,-2.5405381522555563,3.95440286307604 -19,22.0,14.0,-1.9683489489016612,3.976064876781356 -19,22.0,22.0,3.429754555384988,-6.965303617315433 -19,22.0,23.0,-1.4614056064833263,2.989238740534077 -19,23.0,21.0,-2.5405381522555563,3.95440286307604 -19,23.0,22.0,-1.4614056064833263,2.989238740534077 -19,23.0,23.0,5.311836702613133,-9.188263657315172 -19,23.0,24.0,-1.3098929438742493,2.287622053705056 -19,24.0,23.0,-1.3098929438742493,2.287622053705056 -19,24.0,24.0,4.495715080321987,-7.864978761969621 -19,24.0,25.0,-1.2165301194494855,1.8171440463475024 -19,24.0,26.0,-1.9692920169982515,3.760212661917064 -19,25.0,24.0,-1.2165301194494855,1.8171440463475024 -19,25.0,25.0,1.2165301194494855,-1.8171440463475024 -19,26.0,24.0,-1.9692920169982515,3.760212661917064 -19,26.0,26.0,3.652281470778589,-9.46044252232512 -19,26.0,27.0,0.0,2.608731947574922 -19,26.0,28.0,-0.99553355095268,1.881005840357816 -19,26.0,29.0,-0.6874559028276572,1.293971494797717 -19,27.0,5.0,-4.362844058012917,15.463571542897856 -19,27.0,7.0,-1.4439790613954469,4.540814658476248 -19,27.0,26.0,0.0,2.608731947574922 -19,27.0,27.0,5.806823119408364,-22.67145722159613 -19,28.0,26.0,-0.99553355095268,1.881005840357816 -19,28.0,28.0,1.9075867579849564,-3.604364401207048 -19,28.0,29.0,-0.9120532070322764,1.7233585608492326 -19,29.0,26.0,-0.6874559028276572,1.293971494797717 -19,29.0,28.0,-0.9120532070322764,1.7233585608492326 -19,29.0,29.0,1.5995091098599337,-3.0173300556469496 -20,0.0,0.0,6.765516048652632,-21.23160167089863 -20,0.0,1.0,-5.224646179885656,15.646726840803398 -20,0.0,2.0,-1.5408698687669766,5.631674830095234 -20,1.0,0.0,-5.224646179885656,15.646726840803398 -20,1.0,1.0,9.75228216552403,-30.648662892676068 -20,1.0,3.0,-1.7055303166990268,5.1973792282565086 -20,1.0,4.0,-1.1359607881738778,4.772479328281356 -20,1.0,5.0,-1.6861448807654689,5.116477495334806 -20,2.0,0.0,-1.5408698687669766,5.631674830095234 -20,2.0,2.0,9.736318911079088,-29.13794745915803 -20,2.0,3.0,-8.19544904231211,23.5308726290628 -20,3.0,1.0,-1.7055303166990268,5.1973792282565086 -20,3.0,2.0,-8.19544904231211,23.5308726290628 -20,3.0,3.0,16.314103089185693,-55.509410535254254 -20,3.0,5.0,-6.413123730174556,22.31120356548123 -20,3.0,11.0,0.0,4.191255364806866 -20,4.0,1.0,-1.1359607881738778,4.772479328281356 -20,4.0,4.0,4.089980824135861,-12.190647245055052 -20,4.0,6.0,-2.954020035961983,7.449267916773697 -20,5.0,1.0,-1.6861448807654689,5.116477495334806 -20,5.0,3.0,-6.413123730174556,22.31120356548123 -20,5.0,5.0,18.75142084505357,-71.81153345505078 -20,5.0,7.0,-6.289308176100628,22.0125786163522 -20,5.0,8.0,0.0,4.915840805411357 -20,5.0,9.0,0.0,1.8561002591115965 -20,5.0,27.0,-4.362844058012917,15.463571542897856 -20,6.0,4.0,-2.954020035961983,7.449267916773697 -20,6.0,6.0,2.954020035961983,-7.439067916773697 -20,7.0,5.0,-6.289308176100628,22.0125786163522 -20,7.0,7.0,7.733287237496075,-26.527493274828448 -20,7.0,27.0,-1.4439790613954469,4.540814658476248 -20,8.0,5.0,0.0,4.915840805411357 -20,8.0,8.0,0.0,-18.706293706293707 -20,8.0,9.0,0.0,9.090909090909092 -20,8.0,10.0,0.0,4.807692307692308 -20,9.0,5.0,0.0,1.8561002591115965 -20,9.0,8.0,0.0,9.090909090909092 -20,9.0,9.0,13.462042814524237,-41.3837606675224 -20,9.0,16.0,-3.956039125715353,10.317447719844054 -20,9.0,19.0,-1.7848303152666305,3.98535828943083 -20,9.0,20.0,-5.101853820159654,10.98071411292983 -20,9.0,21.0,-2.619319553382597,5.400770303329455 -20,10.0,8.0,0.0,4.807692307692308 -20,10.0,10.0,0.0,-4.807692307692308 -20,11.0,3.0,0.0,4.191255364806866 -20,11.0,11.0,6.573961583776156,-24.424167659260668 -20,11.0,12.0,0.0,7.142857142857143 -20,11.0,13.0,-1.5265676088395577,3.1734252729654173 -20,11.0,14.0,-3.0953961826564296,6.097275864326261 -20,11.0,15.0,-1.9519977922801688,4.104359379111847 -20,12.0,11.0,0.0,7.142857142857143 -20,12.0,12.0,0.0,-7.142857142857143 -20,13.0,11.0,-1.5265676088395577,3.1734252729654173 -20,13.0,13.0,4.01751987283902,-5.424299332335067 -20,13.0,14.0,-2.4909522639994623,2.250874059369649 -20,14.0,11.0,-3.0953961826564296,6.097275864326261 -20,14.0,13.0,-2.4909522639994623,2.250874059369649 -20,14.0,14.0,9.365498545964757,-16.01163373210796 -20,14.0,17.0,-1.8108011504072024,3.687418931630696 -20,14.0,22.0,-1.9683489489016612,3.976064876781356 -20,15.0,11.0,-1.9519977922801688,4.104359379111847 -20,15.0,15.0,1.9519977922801688,-4.104359379111847 -20,16.0,9.0,-3.956039125715353,10.317447719844054 -20,16.0,16.0,3.956039125715353,-10.317447719844054 -20,17.0,14.0,-1.8108011504072024,3.687418931630696 -20,17.0,17.0,4.886487584415919,-9.906177730909668 -20,17.0,18.0,-3.0756864340087167,6.218758799278971 -20,18.0,17.0,-3.0756864340087167,6.218758799278971 -20,18.0,18.0,8.958039375185187,-17.98346468163191 -20,18.0,19.0,-5.88235294117647,11.76470588235294 -20,19.0,9.0,-1.7848303152666305,3.98535828943083 -20,19.0,18.0,-5.88235294117647,11.76470588235294 -20,19.0,19.0,7.6671832564431,-15.75006417178377 -20,20.0,9.0,-5.101853820159654,10.98071411292983 -20,20.0,20.0,21.876495189895888,-45.10843276170355 -20,20.0,21.0,-16.774641369736234,34.127718648773715 -20,21.0,9.0,-2.619319553382597,5.400770303329455 -20,21.0,20.0,-16.774641369736234,34.127718648773715 -20,21.0,21.0,21.93449907537439,-43.48289181517921 -20,21.0,23.0,-2.5405381522555563,3.95440286307604 -20,22.0,14.0,-1.9683489489016612,3.976064876781356 -20,22.0,22.0,1.9683489489016612,-3.976064876781356 -20,23.0,21.0,-2.5405381522555563,3.95440286307604 -20,23.0,23.0,3.850431096129806,-6.199024916781094 -20,23.0,24.0,-1.3098929438742493,2.287622053705056 -20,24.0,23.0,-1.3098929438742493,2.287622053705056 -20,24.0,24.0,2.526423063323735,-4.104766100052558 -20,24.0,25.0,-1.2165301194494855,1.8171440463475024 -20,25.0,24.0,-1.2165301194494855,1.8171440463475024 -20,25.0,25.0,1.2165301194494855,-1.8171440463475024 -20,26.0,26.0,1.6829894537803372,-5.700229860408058 -20,26.0,27.0,0.0,2.608731947574922 -20,26.0,28.0,-0.99553355095268,1.881005840357816 -20,26.0,29.0,-0.6874559028276572,1.293971494797717 -20,27.0,5.0,-4.362844058012917,15.463571542897856 -20,27.0,7.0,-1.4439790613954469,4.540814658476248 -20,27.0,26.0,0.0,2.608731947574922 -20,27.0,27.0,5.806823119408364,-22.67145722159613 -20,28.0,26.0,-0.99553355095268,1.881005840357816 -20,28.0,28.0,1.9075867579849564,-3.604364401207048 -20,28.0,29.0,-0.9120532070322764,1.7233585608492326 -20,29.0,26.0,-0.6874559028276572,1.293971494797717 -20,29.0,28.0,-0.9120532070322764,1.7233585608492326 -20,29.0,29.0,1.5995091098599337,-3.0173300556469496 -21,0.0,0.0,6.765516048652632,-21.23160167089863 -21,0.0,1.0,-5.224646179885656,15.646726840803398 -21,0.0,2.0,-1.5408698687669766,5.631674830095234 -21,1.0,0.0,-5.224646179885656,15.646726840803398 -21,1.0,1.0,9.75228216552403,-30.648662892676068 -21,1.0,3.0,-1.7055303166990268,5.1973792282565086 -21,1.0,4.0,-1.1359607881738778,4.772479328281356 -21,1.0,5.0,-1.6861448807654689,5.116477495334806 -21,2.0,0.0,-1.5408698687669766,5.631674830095234 -21,2.0,2.0,9.736318911079088,-29.13794745915803 -21,2.0,3.0,-8.19544904231211,23.5308726290628 -21,3.0,1.0,-1.7055303166990268,5.1973792282565086 -21,3.0,2.0,-8.19544904231211,23.5308726290628 -21,3.0,3.0,16.314103089185693,-55.509410535254254 -21,3.0,5.0,-6.413123730174556,22.31120356548123 -21,3.0,11.0,0.0,4.191255364806866 -21,4.0,1.0,-1.1359607881738778,4.772479328281356 -21,4.0,4.0,4.089980824135861,-12.190647245055052 -21,4.0,6.0,-2.954020035961983,7.449267916773697 -21,5.0,1.0,-1.6861448807654689,5.116477495334806 -21,5.0,3.0,-6.413123730174556,22.31120356548123 -21,5.0,5.0,16.052323092933932,-58.905589105864685 -21,5.0,6.0,-3.590210423980992,11.02611441072814 -21,5.0,8.0,0.0,4.915840805411357 -21,5.0,27.0,-4.362844058012917,15.463571542897856 -21,6.0,4.0,-2.954020035961983,7.449267916773697 -21,6.0,5.0,-3.590210423980992,11.02611441072814 -21,6.0,6.0,6.544230459942975,-18.45668232750184 -21,7.0,7.0,1.4439790613954469,-4.519414658476248 -21,7.0,27.0,-1.4439790613954469,4.540814658476248 -21,8.0,5.0,0.0,4.915840805411357 -21,8.0,8.0,0.0,-18.706293706293707 -21,8.0,9.0,0.0,9.090909090909092 -21,8.0,10.0,0.0,4.807692307692308 -21,9.0,8.0,0.0,9.090909090909092 -21,9.0,9.0,8.36018899436458,-28.604485403513436 -21,9.0,16.0,-3.956039125715353,10.317447719844054 -21,9.0,19.0,-1.7848303152666305,3.98535828943083 -21,9.0,21.0,-2.619319553382597,5.400770303329455 -21,10.0,8.0,0.0,4.807692307692308 -21,10.0,10.0,0.0,-4.807692307692308 -21,11.0,3.0,0.0,4.191255364806866 -21,11.0,11.0,6.573961583776156,-24.424167659260668 -21,11.0,12.0,0.0,7.142857142857143 -21,11.0,13.0,-1.5265676088395577,3.1734252729654173 -21,11.0,14.0,-3.0953961826564296,6.097275864326261 -21,11.0,15.0,-1.9519977922801688,4.104359379111847 -21,12.0,11.0,0.0,7.142857142857143 -21,12.0,12.0,0.0,-7.142857142857143 -21,13.0,11.0,-1.5265676088395577,3.1734252729654173 -21,13.0,13.0,4.01751987283902,-5.424299332335067 -21,13.0,14.0,-2.4909522639994623,2.250874059369649 -21,14.0,11.0,-3.0953961826564296,6.097275864326261 -21,14.0,13.0,-2.4909522639994623,2.250874059369649 -21,14.0,14.0,9.365498545964757,-16.01163373210796 -21,14.0,17.0,-1.8108011504072024,3.687418931630696 -21,14.0,22.0,-1.9683489489016612,3.976064876781356 -21,15.0,11.0,-1.9519977922801688,4.104359379111847 -21,15.0,15.0,3.271064728633931,-8.94513365126506 -21,15.0,16.0,-1.3190669363537617,4.8407742721532125 -21,16.0,9.0,-3.956039125715353,10.317447719844054 -21,16.0,15.0,-1.3190669363537617,4.8407742721532125 -21,16.0,16.0,5.275106062069114,-15.158221991997266 -21,17.0,14.0,-1.8108011504072024,3.687418931630696 -21,17.0,17.0,4.886487584415919,-9.906177730909668 -21,17.0,18.0,-3.0756864340087167,6.218758799278971 -21,18.0,17.0,-3.0756864340087167,6.218758799278971 -21,18.0,18.0,8.958039375185187,-17.98346468163191 -21,18.0,19.0,-5.88235294117647,11.76470588235294 -21,19.0,9.0,-1.7848303152666305,3.98535828943083 -21,19.0,18.0,-5.88235294117647,11.76470588235294 -21,19.0,19.0,7.6671832564431,-15.75006417178377 -21,20.0,20.0,16.774641369736234,-34.127718648773715 -21,20.0,21.0,-16.774641369736234,34.127718648773715 -21,21.0,9.0,-2.619319553382597,5.400770303329455 -21,21.0,20.0,-16.774641369736234,34.127718648773715 -21,21.0,21.0,21.93449907537439,-43.48289181517921 -21,21.0,23.0,-2.5405381522555563,3.95440286307604 -21,22.0,14.0,-1.9683489489016612,3.976064876781356 -21,22.0,22.0,3.429754555384988,-6.965303617315433 -21,22.0,23.0,-1.4614056064833263,2.989238740534077 -21,23.0,21.0,-2.5405381522555563,3.95440286307604 -21,23.0,22.0,-1.4614056064833263,2.989238740534077 -21,23.0,23.0,5.311836702613133,-9.188263657315172 -21,23.0,24.0,-1.3098929438742493,2.287622053705056 -21,24.0,23.0,-1.3098929438742493,2.287622053705056 -21,24.0,24.0,4.495715080321987,-7.864978761969621 -21,24.0,25.0,-1.2165301194494855,1.8171440463475024 -21,24.0,26.0,-1.9692920169982515,3.760212661917064 -21,25.0,24.0,-1.2165301194494855,1.8171440463475024 -21,25.0,25.0,1.2165301194494855,-1.8171440463475024 -21,26.0,24.0,-1.9692920169982515,3.760212661917064 -21,26.0,26.0,3.652281470778589,-9.46044252232512 -21,26.0,27.0,0.0,2.608731947574922 -21,26.0,28.0,-0.99553355095268,1.881005840357816 -21,26.0,29.0,-0.6874559028276572,1.293971494797717 -21,27.0,5.0,-4.362844058012917,15.463571542897856 -21,27.0,7.0,-1.4439790613954469,4.540814658476248 -21,27.0,26.0,0.0,2.608731947574922 -21,27.0,27.0,5.806823119408364,-22.67145722159613 -21,28.0,26.0,-0.99553355095268,1.881005840357816 -21,28.0,28.0,1.9075867579849564,-3.604364401207048 -21,28.0,29.0,-0.9120532070322764,1.7233585608492326 -21,29.0,26.0,-0.6874559028276572,1.293971494797717 -21,29.0,28.0,-0.9120532070322764,1.7233585608492326 -21,29.0,29.0,1.5995091098599337,-3.0173300556469496 -22,0.0,0.0,6.765516048652632,-21.23160167089863 -22,0.0,1.0,-5.224646179885656,15.646726840803398 -22,0.0,2.0,-1.5408698687669766,5.631674830095234 -22,1.0,0.0,-5.224646179885656,15.646726840803398 -22,1.0,1.0,9.75228216552403,-30.648662892676068 -22,1.0,3.0,-1.7055303166990268,5.1973792282565086 -22,1.0,4.0,-1.1359607881738778,4.772479328281356 -22,1.0,5.0,-1.6861448807654689,5.116477495334806 -22,2.0,0.0,-1.5408698687669766,5.631674830095234 -22,2.0,2.0,9.736318911079088,-29.13794745915803 -22,2.0,3.0,-8.19544904231211,23.5308726290628 -22,3.0,1.0,-1.7055303166990268,5.1973792282565086 -22,3.0,2.0,-8.19544904231211,23.5308726290628 -22,3.0,3.0,16.314103089185693,-55.509410535254254 -22,3.0,5.0,-6.413123730174556,22.31120356548123 -22,3.0,11.0,0.0,4.191255364806866 -22,4.0,1.0,-1.1359607881738778,4.772479328281356 -22,4.0,4.0,4.089980824135861,-12.190647245055052 -22,4.0,6.0,-2.954020035961983,7.449267916773697 -22,5.0,1.0,-1.6861448807654689,5.116477495334806 -22,5.0,3.0,-6.413123730174556,22.31120356548123 -22,5.0,5.0,22.341631269034565,-82.8291478657789 -22,5.0,6.0,-3.590210423980992,11.02611441072814 -22,5.0,7.0,-6.289308176100628,22.0125786163522 -22,5.0,8.0,0.0,4.915840805411357 -22,5.0,9.0,0.0,1.8561002591115965 -22,5.0,27.0,-4.362844058012917,15.463571542897856 -22,6.0,4.0,-2.954020035961983,7.449267916773697 -22,6.0,5.0,-3.590210423980992,11.02611441072814 -22,6.0,6.0,6.544230459942975,-18.45668232750184 -22,7.0,5.0,-6.289308176100628,22.0125786163522 -22,7.0,7.0,7.733287237496075,-26.527493274828448 -22,7.0,27.0,-1.4439790613954469,4.540814658476248 -22,8.0,5.0,0.0,4.915840805411357 -22,8.0,8.0,0.0,-18.706293706293707 -22,8.0,9.0,0.0,9.090909090909092 -22,8.0,10.0,0.0,4.807692307692308 -22,9.0,5.0,0.0,1.8561002591115965 -22,9.0,8.0,0.0,9.090909090909092 -22,9.0,9.0,13.462042814524237,-41.3837606675224 -22,9.0,16.0,-3.956039125715353,10.317447719844054 -22,9.0,19.0,-1.7848303152666305,3.98535828943083 -22,9.0,20.0,-5.101853820159654,10.98071411292983 -22,9.0,21.0,-2.619319553382597,5.400770303329455 -22,10.0,8.0,0.0,4.807692307692308 -22,10.0,10.0,0.0,-4.807692307692308 -22,11.0,3.0,0.0,4.191255364806866 -22,11.0,11.0,6.573961583776156,-24.424167659260668 -22,11.0,12.0,0.0,7.142857142857143 -22,11.0,13.0,-1.5265676088395577,3.1734252729654173 -22,11.0,14.0,-3.0953961826564296,6.097275864326261 -22,11.0,15.0,-1.9519977922801688,4.104359379111847 -22,12.0,11.0,0.0,7.142857142857143 -22,12.0,12.0,0.0,-7.142857142857143 -22,13.0,11.0,-1.5265676088395577,3.1734252729654173 -22,13.0,13.0,4.01751987283902,-5.424299332335067 -22,13.0,14.0,-2.4909522639994623,2.250874059369649 -22,14.0,11.0,-3.0953961826564296,6.097275864326261 -22,14.0,13.0,-2.4909522639994623,2.250874059369649 -22,14.0,14.0,9.365498545964757,-16.01163373210796 -22,14.0,17.0,-1.8108011504072024,3.687418931630696 -22,14.0,22.0,-1.9683489489016612,3.976064876781356 -22,15.0,11.0,-1.9519977922801688,4.104359379111847 -22,15.0,15.0,3.271064728633931,-8.94513365126506 -22,15.0,16.0,-1.3190669363537617,4.8407742721532125 -22,16.0,9.0,-3.956039125715353,10.317447719844054 -22,16.0,15.0,-1.3190669363537617,4.8407742721532125 -22,16.0,16.0,5.275106062069114,-15.158221991997266 -22,17.0,14.0,-1.8108011504072024,3.687418931630696 -22,17.0,17.0,4.886487584415919,-9.906177730909668 -22,17.0,18.0,-3.0756864340087167,6.218758799278971 -22,18.0,17.0,-3.0756864340087167,6.218758799278971 -22,18.0,18.0,8.958039375185187,-17.98346468163191 -22,18.0,19.0,-5.88235294117647,11.76470588235294 -22,19.0,9.0,-1.7848303152666305,3.98535828943083 -22,19.0,18.0,-5.88235294117647,11.76470588235294 -22,19.0,19.0,7.6671832564431,-15.75006417178377 -22,20.0,9.0,-5.101853820159654,10.98071411292983 -22,20.0,20.0,21.876495189895888,-45.10843276170355 -22,20.0,21.0,-16.774641369736234,34.127718648773715 -22,21.0,9.0,-2.619319553382597,5.400770303329455 -22,21.0,20.0,-16.774641369736234,34.127718648773715 -22,21.0,21.0,21.93449907537439,-43.48289181517921 -22,21.0,23.0,-2.5405381522555563,3.95440286307604 -22,22.0,14.0,-1.9683489489016612,3.976064876781356 -22,22.0,22.0,3.429754555384988,-6.965303617315433 -22,22.0,23.0,-1.4614056064833263,2.989238740534077 -22,23.0,21.0,-2.5405381522555563,3.95440286307604 -22,23.0,22.0,-1.4614056064833263,2.989238740534077 -22,23.0,23.0,5.311836702613133,-9.188263657315172 -22,23.0,24.0,-1.3098929438742493,2.287622053705056 -22,24.0,23.0,-1.3098929438742493,2.287622053705056 -22,24.0,24.0,4.495715080321987,-7.864978761969621 -22,24.0,25.0,-1.2165301194494855,1.8171440463475024 -22,24.0,26.0,-1.9692920169982515,3.760212661917064 -22,25.0,24.0,-1.2165301194494855,1.8171440463475024 -22,25.0,25.0,1.2165301194494855,-1.8171440463475024 -22,26.0,24.0,-1.9692920169982515,3.760212661917064 -22,26.0,26.0,3.652281470778589,-9.46044252232512 -22,26.0,27.0,0.0,2.608731947574922 -22,26.0,28.0,-0.99553355095268,1.881005840357816 -22,26.0,29.0,-0.6874559028276572,1.293971494797717 -22,27.0,5.0,-4.362844058012917,15.463571542897856 -22,27.0,7.0,-1.4439790613954469,4.540814658476248 -22,27.0,26.0,0.0,2.608731947574922 -22,27.0,27.0,5.806823119408364,-22.67145722159613 -22,28.0,26.0,-0.99553355095268,1.881005840357816 -22,28.0,28.0,1.9075867579849564,-3.604364401207048 -22,28.0,29.0,-0.9120532070322764,1.7233585608492326 -22,29.0,26.0,-0.6874559028276572,1.293971494797717 -22,29.0,28.0,-0.9120532070322764,1.7233585608492326 -22,29.0,29.0,1.5995091098599337,-3.0173300556469496 -23,0.0,0.0,6.765516048652632,-21.23160167089863 -23,0.0,1.0,-5.224646179885656,15.646726840803398 -23,0.0,2.0,-1.5408698687669766,5.631674830095234 -23,1.0,0.0,-5.224646179885656,15.646726840803398 -23,1.0,1.0,9.75228216552403,-30.648662892676068 -23,1.0,3.0,-1.7055303166990268,5.1973792282565086 -23,1.0,4.0,-1.1359607881738778,4.772479328281356 -23,1.0,5.0,-1.6861448807654689,5.116477495334806 -23,2.0,0.0,-1.5408698687669766,5.631674830095234 -23,2.0,2.0,9.736318911079088,-29.13794745915803 -23,2.0,3.0,-8.19544904231211,23.5308726290628 -23,3.0,1.0,-1.7055303166990268,5.1973792282565086 -23,3.0,2.0,-8.19544904231211,23.5308726290628 -23,3.0,3.0,16.314103089185693,-55.509410535254254 -23,3.0,5.0,-6.413123730174556,22.31120356548123 -23,3.0,11.0,0.0,4.191255364806866 -23,4.0,1.0,-1.1359607881738778,4.772479328281356 -23,4.0,4.0,4.089980824135861,-12.190647245055052 -23,4.0,6.0,-2.954020035961983,7.449267916773697 -23,5.0,1.0,-1.6861448807654689,5.116477495334806 -23,5.0,3.0,-6.413123730174556,22.31120356548123 -23,5.0,5.0,22.341631269034565,-82.8291478657789 -23,5.0,6.0,-3.590210423980992,11.02611441072814 -23,5.0,7.0,-6.289308176100628,22.0125786163522 -23,5.0,8.0,0.0,4.915840805411357 -23,5.0,9.0,0.0,1.8561002591115965 -23,5.0,27.0,-4.362844058012917,15.463571542897856 -23,6.0,4.0,-2.954020035961983,7.449267916773697 -23,6.0,5.0,-3.590210423980992,11.02611441072814 -23,6.0,6.0,6.544230459942975,-18.45668232750184 -23,7.0,5.0,-6.289308176100628,22.0125786163522 -23,7.0,7.0,7.733287237496075,-26.527493274828448 -23,7.0,27.0,-1.4439790613954469,4.540814658476248 -23,8.0,5.0,0.0,4.915840805411357 -23,8.0,8.0,0.0,-18.706293706293707 -23,8.0,9.0,0.0,9.090909090909092 -23,8.0,10.0,0.0,4.807692307692308 -23,9.0,5.0,0.0,1.8561002591115965 -23,9.0,8.0,0.0,9.090909090909092 -23,9.0,9.0,13.462042814524237,-41.3837606675224 -23,9.0,16.0,-3.956039125715353,10.317447719844054 -23,9.0,19.0,-1.7848303152666305,3.98535828943083 -23,9.0,20.0,-5.101853820159654,10.98071411292983 -23,9.0,21.0,-2.619319553382597,5.400770303329455 -23,10.0,8.0,0.0,4.807692307692308 -23,10.0,10.0,0.0,-4.807692307692308 -23,11.0,3.0,0.0,4.191255364806866 -23,11.0,11.0,6.573961583776156,-24.424167659260668 -23,11.0,12.0,0.0,7.142857142857143 -23,11.0,13.0,-1.5265676088395577,3.1734252729654173 -23,11.0,14.0,-3.0953961826564296,6.097275864326261 -23,11.0,15.0,-1.9519977922801688,4.104359379111847 -23,12.0,11.0,0.0,7.142857142857143 -23,12.0,12.0,0.0,-7.142857142857143 -23,13.0,11.0,-1.5265676088395577,3.1734252729654173 -23,13.0,13.0,4.01751987283902,-5.424299332335067 -23,13.0,14.0,-2.4909522639994623,2.250874059369649 -23,14.0,11.0,-3.0953961826564296,6.097275864326261 -23,14.0,13.0,-2.4909522639994623,2.250874059369649 -23,14.0,14.0,9.365498545964757,-16.01163373210796 -23,14.0,17.0,-1.8108011504072024,3.687418931630696 -23,14.0,22.0,-1.9683489489016612,3.976064876781356 -23,15.0,11.0,-1.9519977922801688,4.104359379111847 -23,15.0,15.0,3.271064728633931,-8.94513365126506 -23,15.0,16.0,-1.3190669363537617,4.8407742721532125 -23,16.0,9.0,-3.956039125715353,10.317447719844054 -23,16.0,15.0,-1.3190669363537617,4.8407742721532125 -23,16.0,16.0,5.275106062069114,-15.158221991997266 -23,17.0,14.0,-1.8108011504072024,3.687418931630696 -23,17.0,17.0,4.886487584415919,-9.906177730909668 -23,17.0,18.0,-3.0756864340087167,6.218758799278971 -23,18.0,17.0,-3.0756864340087167,6.218758799278971 -23,18.0,18.0,8.958039375185187,-17.98346468163191 -23,18.0,19.0,-5.88235294117647,11.76470588235294 -23,19.0,9.0,-1.7848303152666305,3.98535828943083 -23,19.0,18.0,-5.88235294117647,11.76470588235294 -23,19.0,19.0,7.6671832564431,-15.75006417178377 -23,20.0,9.0,-5.101853820159654,10.98071411292983 -23,20.0,20.0,21.876495189895888,-45.10843276170355 -23,20.0,21.0,-16.774641369736234,34.127718648773715 -23,21.0,9.0,-2.619319553382597,5.400770303329455 -23,21.0,20.0,-16.774641369736234,34.127718648773715 -23,21.0,21.0,21.93449907537439,-43.48289181517921 -23,21.0,23.0,-2.5405381522555563,3.95440286307604 -23,22.0,14.0,-1.9683489489016612,3.976064876781356 -23,22.0,22.0,3.429754555384988,-6.965303617315433 -23,22.0,23.0,-1.4614056064833263,2.989238740534077 -23,23.0,21.0,-2.5405381522555563,3.95440286307604 -23,23.0,22.0,-1.4614056064833263,2.989238740534077 -23,23.0,23.0,5.311836702613133,-9.188263657315172 -23,23.0,24.0,-1.3098929438742493,2.287622053705056 -23,24.0,23.0,-1.3098929438742493,2.287622053705056 -23,24.0,24.0,4.495715080321987,-7.864978761969621 -23,24.0,25.0,-1.2165301194494855,1.8171440463475024 -23,24.0,26.0,-1.9692920169982515,3.760212661917064 -23,25.0,24.0,-1.2165301194494855,1.8171440463475024 -23,25.0,25.0,1.2165301194494855,-1.8171440463475024 -23,26.0,24.0,-1.9692920169982515,3.760212661917064 -23,26.0,26.0,3.652281470778589,-9.46044252232512 -23,26.0,27.0,0.0,2.608731947574922 -23,26.0,28.0,-0.99553355095268,1.881005840357816 -23,26.0,29.0,-0.6874559028276572,1.293971494797717 -23,27.0,5.0,-4.362844058012917,15.463571542897856 -23,27.0,7.0,-1.4439790613954469,4.540814658476248 -23,27.0,26.0,0.0,2.608731947574922 -23,27.0,27.0,5.806823119408364,-22.67145722159613 -23,28.0,26.0,-0.99553355095268,1.881005840357816 -23,28.0,28.0,1.9075867579849564,-3.604364401207048 -23,28.0,29.0,-0.9120532070322764,1.7233585608492326 -23,29.0,26.0,-0.6874559028276572,1.293971494797717 -23,29.0,28.0,-0.9120532070322764,1.7233585608492326 -23,29.0,29.0,1.5995091098599337,-3.0173300556469496 -24,0.0,0.0,6.765516048652632,-21.23160167089863 -24,0.0,1.0,-5.224646179885656,15.646726840803398 -24,0.0,2.0,-1.5408698687669766,5.631674830095234 -24,1.0,0.0,-5.224646179885656,15.646726840803398 -24,1.0,1.0,9.75228216552403,-30.648662892676068 -24,1.0,3.0,-1.7055303166990268,5.1973792282565086 -24,1.0,4.0,-1.1359607881738778,4.772479328281356 -24,1.0,5.0,-1.6861448807654689,5.116477495334806 -24,2.0,0.0,-1.5408698687669766,5.631674830095234 -24,2.0,2.0,9.736318911079088,-29.13794745915803 -24,2.0,3.0,-8.19544904231211,23.5308726290628 -24,3.0,1.0,-1.7055303166990268,5.1973792282565086 -24,3.0,2.0,-8.19544904231211,23.5308726290628 -24,3.0,3.0,16.314103089185693,-55.509410535254254 -24,3.0,5.0,-6.413123730174556,22.31120356548123 -24,3.0,11.0,0.0,4.191255364806866 -24,4.0,1.0,-1.1359607881738778,4.772479328281356 -24,4.0,4.0,4.089980824135861,-12.190647245055052 -24,4.0,6.0,-2.954020035961983,7.449267916773697 -24,5.0,1.0,-1.6861448807654689,5.116477495334806 -24,5.0,3.0,-6.413123730174556,22.31120356548123 -24,5.0,5.0,22.341631269034565,-82.8291478657789 -24,5.0,6.0,-3.590210423980992,11.02611441072814 -24,5.0,7.0,-6.289308176100628,22.0125786163522 -24,5.0,8.0,0.0,4.915840805411357 -24,5.0,9.0,0.0,1.8561002591115965 -24,5.0,27.0,-4.362844058012917,15.463571542897856 -24,6.0,4.0,-2.954020035961983,7.449267916773697 -24,6.0,5.0,-3.590210423980992,11.02611441072814 -24,6.0,6.0,6.544230459942975,-18.45668232750184 -24,7.0,5.0,-6.289308176100628,22.0125786163522 -24,7.0,7.0,7.733287237496075,-26.527493274828448 -24,7.0,27.0,-1.4439790613954469,4.540814658476248 -24,8.0,5.0,0.0,4.915840805411357 -24,8.0,8.0,0.0,-18.706293706293707 -24,8.0,9.0,0.0,9.090909090909092 -24,8.0,10.0,0.0,4.807692307692308 -24,9.0,5.0,0.0,1.8561002591115965 -24,9.0,8.0,0.0,9.090909090909092 -24,9.0,9.0,13.462042814524237,-41.3837606675224 -24,9.0,16.0,-3.956039125715353,10.317447719844054 -24,9.0,19.0,-1.7848303152666305,3.98535828943083 -24,9.0,20.0,-5.101853820159654,10.98071411292983 -24,9.0,21.0,-2.619319553382597,5.400770303329455 -24,10.0,8.0,0.0,4.807692307692308 -24,10.0,10.0,0.0,-4.807692307692308 -24,11.0,3.0,0.0,4.191255364806866 -24,11.0,11.0,6.573961583776156,-24.424167659260668 -24,11.0,12.0,0.0,7.142857142857143 -24,11.0,13.0,-1.5265676088395577,3.1734252729654173 -24,11.0,14.0,-3.0953961826564296,6.097275864326261 -24,11.0,15.0,-1.9519977922801688,4.104359379111847 -24,12.0,11.0,0.0,7.142857142857143 -24,12.0,12.0,0.0,-7.142857142857143 -24,13.0,11.0,-1.5265676088395577,3.1734252729654173 -24,13.0,13.0,4.01751987283902,-5.424299332335067 -24,13.0,14.0,-2.4909522639994623,2.250874059369649 -24,14.0,11.0,-3.0953961826564296,6.097275864326261 -24,14.0,13.0,-2.4909522639994623,2.250874059369649 -24,14.0,14.0,9.365498545964757,-16.01163373210796 -24,14.0,17.0,-1.8108011504072024,3.687418931630696 -24,14.0,22.0,-1.9683489489016612,3.976064876781356 -24,15.0,11.0,-1.9519977922801688,4.104359379111847 -24,15.0,15.0,3.271064728633931,-8.94513365126506 -24,15.0,16.0,-1.3190669363537617,4.8407742721532125 -24,16.0,9.0,-3.956039125715353,10.317447719844054 -24,16.0,15.0,-1.3190669363537617,4.8407742721532125 -24,16.0,16.0,5.275106062069114,-15.158221991997266 -24,17.0,14.0,-1.8108011504072024,3.687418931630696 -24,17.0,17.0,4.886487584415919,-9.906177730909668 -24,17.0,18.0,-3.0756864340087167,6.218758799278971 -24,18.0,17.0,-3.0756864340087167,6.218758799278971 -24,18.0,18.0,8.958039375185187,-17.98346468163191 -24,18.0,19.0,-5.88235294117647,11.76470588235294 -24,19.0,9.0,-1.7848303152666305,3.98535828943083 -24,19.0,18.0,-5.88235294117647,11.76470588235294 -24,19.0,19.0,7.6671832564431,-15.75006417178377 -24,20.0,9.0,-5.101853820159654,10.98071411292983 -24,20.0,20.0,21.876495189895888,-45.10843276170355 -24,20.0,21.0,-16.774641369736234,34.127718648773715 -24,21.0,9.0,-2.619319553382597,5.400770303329455 -24,21.0,20.0,-16.774641369736234,34.127718648773715 -24,21.0,21.0,21.93449907537439,-43.48289181517921 -24,21.0,23.0,-2.5405381522555563,3.95440286307604 -24,22.0,14.0,-1.9683489489016612,3.976064876781356 -24,22.0,22.0,3.429754555384988,-6.965303617315433 -24,22.0,23.0,-1.4614056064833263,2.989238740534077 -24,23.0,21.0,-2.5405381522555563,3.95440286307604 -24,23.0,22.0,-1.4614056064833263,2.989238740534077 -24,23.0,23.0,5.311836702613133,-9.188263657315172 -24,23.0,24.0,-1.3098929438742493,2.287622053705056 -24,24.0,23.0,-1.3098929438742493,2.287622053705056 -24,24.0,24.0,4.495715080321987,-7.864978761969621 -24,24.0,25.0,-1.2165301194494855,1.8171440463475024 -24,24.0,26.0,-1.9692920169982515,3.760212661917064 -24,25.0,24.0,-1.2165301194494855,1.8171440463475024 -24,25.0,25.0,1.2165301194494855,-1.8171440463475024 -24,26.0,24.0,-1.9692920169982515,3.760212661917064 -24,26.0,26.0,3.652281470778589,-9.46044252232512 -24,26.0,27.0,0.0,2.608731947574922 -24,26.0,28.0,-0.99553355095268,1.881005840357816 -24,26.0,29.0,-0.6874559028276572,1.293971494797717 -24,27.0,5.0,-4.362844058012917,15.463571542897856 -24,27.0,7.0,-1.4439790613954469,4.540814658476248 -24,27.0,26.0,0.0,2.608731947574922 -24,27.0,27.0,5.806823119408364,-22.67145722159613 -24,28.0,26.0,-0.99553355095268,1.881005840357816 -24,28.0,28.0,1.9075867579849564,-3.604364401207048 -24,28.0,29.0,-0.9120532070322764,1.7233585608492326 -24,29.0,26.0,-0.6874559028276572,1.293971494797717 -24,29.0,28.0,-0.9120532070322764,1.7233585608492326 -24,29.0,29.0,1.5995091098599337,-3.0173300556469496 -25,0.0,0.0,6.765516048652632,-21.23160167089863 -25,0.0,1.0,-5.224646179885656,15.646726840803398 -25,0.0,2.0,-1.5408698687669766,5.631674830095234 -25,1.0,0.0,-5.224646179885656,15.646726840803398 -25,1.0,1.0,9.75228216552403,-30.648662892676068 -25,1.0,3.0,-1.7055303166990268,5.1973792282565086 -25,1.0,4.0,-1.1359607881738778,4.772479328281356 -25,1.0,5.0,-1.6861448807654689,5.116477495334806 -25,2.0,0.0,-1.5408698687669766,5.631674830095234 -25,2.0,2.0,9.736318911079088,-29.13794745915803 -25,2.0,3.0,-8.19544904231211,23.5308726290628 -25,3.0,1.0,-1.7055303166990268,5.1973792282565086 -25,3.0,2.0,-8.19544904231211,23.5308726290628 -25,3.0,3.0,16.314103089185693,-55.509410535254254 -25,3.0,5.0,-6.413123730174556,22.31120356548123 -25,3.0,11.0,0.0,4.191255364806866 -25,4.0,1.0,-1.1359607881738778,4.772479328281356 -25,4.0,4.0,4.089980824135861,-12.190647245055052 -25,4.0,6.0,-2.954020035961983,7.449267916773697 -25,5.0,1.0,-1.6861448807654689,5.116477495334806 -25,5.0,3.0,-6.413123730174556,22.31120356548123 -25,5.0,5.0,22.341631269034565,-82.8291478657789 -25,5.0,6.0,-3.590210423980992,11.02611441072814 -25,5.0,7.0,-6.289308176100628,22.0125786163522 -25,5.0,8.0,0.0,4.915840805411357 -25,5.0,9.0,0.0,1.8561002591115965 -25,5.0,27.0,-4.362844058012917,15.463571542897856 -25,6.0,4.0,-2.954020035961983,7.449267916773697 -25,6.0,5.0,-3.590210423980992,11.02611441072814 -25,6.0,6.0,6.544230459942975,-18.45668232750184 -25,7.0,5.0,-6.289308176100628,22.0125786163522 -25,7.0,7.0,7.733287237496075,-26.527493274828448 -25,7.0,27.0,-1.4439790613954469,4.540814658476248 -25,8.0,5.0,0.0,4.915840805411357 -25,8.0,8.0,0.0,-18.706293706293707 -25,8.0,9.0,0.0,9.090909090909092 -25,8.0,10.0,0.0,4.807692307692308 -25,9.0,5.0,0.0,1.8561002591115965 -25,9.0,8.0,0.0,9.090909090909092 -25,9.0,9.0,13.462042814524237,-41.3837606675224 -25,9.0,16.0,-3.956039125715353,10.317447719844054 -25,9.0,19.0,-1.7848303152666305,3.98535828943083 -25,9.0,20.0,-5.101853820159654,10.98071411292983 -25,9.0,21.0,-2.619319553382597,5.400770303329455 -25,10.0,8.0,0.0,4.807692307692308 -25,10.0,10.0,0.0,-4.807692307692308 -25,11.0,3.0,0.0,4.191255364806866 -25,11.0,11.0,6.573961583776156,-24.424167659260668 -25,11.0,12.0,0.0,7.142857142857143 -25,11.0,13.0,-1.5265676088395577,3.1734252729654173 -25,11.0,14.0,-3.0953961826564296,6.097275864326261 -25,11.0,15.0,-1.9519977922801688,4.104359379111847 -25,12.0,11.0,0.0,7.142857142857143 -25,12.0,12.0,0.0,-7.142857142857143 -25,13.0,11.0,-1.5265676088395577,3.1734252729654173 -25,13.0,13.0,4.01751987283902,-5.424299332335067 -25,13.0,14.0,-2.4909522639994623,2.250874059369649 -25,14.0,11.0,-3.0953961826564296,6.097275864326261 -25,14.0,13.0,-2.4909522639994623,2.250874059369649 -25,14.0,14.0,9.365498545964757,-16.01163373210796 -25,14.0,17.0,-1.8108011504072024,3.687418931630696 -25,14.0,22.0,-1.9683489489016612,3.976064876781356 -25,15.0,11.0,-1.9519977922801688,4.104359379111847 -25,15.0,15.0,3.271064728633931,-8.94513365126506 -25,15.0,16.0,-1.3190669363537617,4.8407742721532125 -25,16.0,9.0,-3.956039125715353,10.317447719844054 -25,16.0,15.0,-1.3190669363537617,4.8407742721532125 -25,16.0,16.0,5.275106062069114,-15.158221991997266 -25,17.0,14.0,-1.8108011504072024,3.687418931630696 -25,17.0,17.0,4.886487584415919,-9.906177730909668 -25,17.0,18.0,-3.0756864340087167,6.218758799278971 -25,18.0,17.0,-3.0756864340087167,6.218758799278971 -25,18.0,18.0,8.958039375185187,-17.98346468163191 -25,18.0,19.0,-5.88235294117647,11.76470588235294 -25,19.0,9.0,-1.7848303152666305,3.98535828943083 -25,19.0,18.0,-5.88235294117647,11.76470588235294 -25,19.0,19.0,7.6671832564431,-15.75006417178377 -25,20.0,9.0,-5.101853820159654,10.98071411292983 -25,20.0,20.0,21.876495189895888,-45.10843276170355 -25,20.0,21.0,-16.774641369736234,34.127718648773715 -25,21.0,9.0,-2.619319553382597,5.400770303329455 -25,21.0,20.0,-16.774641369736234,34.127718648773715 -25,21.0,21.0,21.93449907537439,-43.48289181517921 -25,21.0,23.0,-2.5405381522555563,3.95440286307604 -25,22.0,14.0,-1.9683489489016612,3.976064876781356 -25,22.0,22.0,3.429754555384988,-6.965303617315433 -25,22.0,23.0,-1.4614056064833263,2.989238740534077 -25,23.0,21.0,-2.5405381522555563,3.95440286307604 -25,23.0,22.0,-1.4614056064833263,2.989238740534077 -25,23.0,23.0,5.311836702613133,-9.188263657315172 -25,23.0,24.0,-1.3098929438742493,2.287622053705056 -25,24.0,23.0,-1.3098929438742493,2.287622053705056 -25,24.0,24.0,4.495715080321987,-7.864978761969621 -25,24.0,25.0,-1.2165301194494855,1.8171440463475024 -25,24.0,26.0,-1.9692920169982515,3.760212661917064 -25,25.0,24.0,-1.2165301194494855,1.8171440463475024 -25,25.0,25.0,1.2165301194494855,-1.8171440463475024 -25,26.0,24.0,-1.9692920169982515,3.760212661917064 -25,26.0,26.0,3.652281470778589,-9.46044252232512 -25,26.0,27.0,0.0,2.608731947574922 -25,26.0,28.0,-0.99553355095268,1.881005840357816 -25,26.0,29.0,-0.6874559028276572,1.293971494797717 -25,27.0,5.0,-4.362844058012917,15.463571542897856 -25,27.0,7.0,-1.4439790613954469,4.540814658476248 -25,27.0,26.0,0.0,2.608731947574922 -25,27.0,27.0,5.806823119408364,-22.67145722159613 -25,28.0,26.0,-0.99553355095268,1.881005840357816 -25,28.0,28.0,1.9075867579849564,-3.604364401207048 -25,28.0,29.0,-0.9120532070322764,1.7233585608492326 -25,29.0,26.0,-0.6874559028276572,1.293971494797717 -25,29.0,28.0,-0.9120532070322764,1.7233585608492326 -25,29.0,29.0,1.5995091098599337,-3.0173300556469496 -26,0.0,0.0,6.765516048652632,-21.23160167089863 -26,0.0,1.0,-5.224646179885656,15.646726840803398 -26,0.0,2.0,-1.5408698687669766,5.631674830095234 -26,1.0,0.0,-5.224646179885656,15.646726840803398 -26,1.0,1.0,9.75228216552403,-30.648662892676068 -26,1.0,3.0,-1.7055303166990268,5.1973792282565086 -26,1.0,4.0,-1.1359607881738778,4.772479328281356 -26,1.0,5.0,-1.6861448807654689,5.116477495334806 -26,2.0,0.0,-1.5408698687669766,5.631674830095234 -26,2.0,2.0,9.736318911079088,-29.13794745915803 -26,2.0,3.0,-8.19544904231211,23.5308726290628 -26,3.0,1.0,-1.7055303166990268,5.1973792282565086 -26,3.0,2.0,-8.19544904231211,23.5308726290628 -26,3.0,3.0,16.314103089185693,-55.509410535254254 -26,3.0,5.0,-6.413123730174556,22.31120356548123 -26,3.0,11.0,0.0,4.191255364806866 -26,4.0,1.0,-1.1359607881738778,4.772479328281356 -26,4.0,4.0,4.089980824135861,-12.190647245055052 -26,4.0,6.0,-2.954020035961983,7.449267916773697 -26,5.0,1.0,-1.6861448807654689,5.116477495334806 -26,5.0,3.0,-6.413123730174556,22.31120356548123 -26,5.0,5.0,22.341631269034565,-82.8291478657789 -26,5.0,6.0,-3.590210423980992,11.02611441072814 -26,5.0,7.0,-6.289308176100628,22.0125786163522 -26,5.0,8.0,0.0,4.915840805411357 -26,5.0,9.0,0.0,1.8561002591115965 -26,5.0,27.0,-4.362844058012917,15.463571542897856 -26,6.0,4.0,-2.954020035961983,7.449267916773697 -26,6.0,5.0,-3.590210423980992,11.02611441072814 -26,6.0,6.0,6.544230459942975,-18.45668232750184 -26,7.0,5.0,-6.289308176100628,22.0125786163522 -26,7.0,7.0,7.733287237496075,-26.527493274828448 -26,7.0,27.0,-1.4439790613954469,4.540814658476248 -26,8.0,5.0,0.0,4.915840805411357 -26,8.0,8.0,0.0,-9.615384615384617 -26,8.0,10.0,0.0,4.807692307692308 -26,9.0,5.0,0.0,1.8561002591115965 -26,9.0,9.0,13.462042814524237,-32.29285157661331 -26,9.0,16.0,-3.956039125715353,10.317447719844054 -26,9.0,19.0,-1.7848303152666305,3.98535828943083 -26,9.0,20.0,-5.101853820159654,10.98071411292983 -26,9.0,21.0,-2.619319553382597,5.400770303329455 -26,10.0,8.0,0.0,4.807692307692308 -26,10.0,10.0,0.0,-4.807692307692308 -26,11.0,3.0,0.0,4.191255364806866 -26,11.0,11.0,5.047393974936599,-21.25074238629525 -26,11.0,12.0,0.0,7.142857142857143 -26,11.0,14.0,-3.0953961826564296,6.097275864326261 -26,11.0,15.0,-1.9519977922801688,4.104359379111847 -26,12.0,11.0,0.0,7.142857142857143 -26,12.0,12.0,0.0,-7.142857142857143 -26,13.0,13.0,2.4909522639994623,-2.250874059369649 -26,13.0,14.0,-2.4909522639994623,2.250874059369649 -26,14.0,11.0,-3.0953961826564296,6.097275864326261 -26,14.0,13.0,-2.4909522639994623,2.250874059369649 -26,14.0,14.0,7.397149597063095,-12.035568855326606 -26,14.0,17.0,-1.8108011504072024,3.687418931630696 -26,15.0,11.0,-1.9519977922801688,4.104359379111847 -26,15.0,15.0,3.271064728633931,-8.94513365126506 -26,15.0,16.0,-1.3190669363537617,4.8407742721532125 -26,16.0,9.0,-3.956039125715353,10.317447719844054 -26,16.0,15.0,-1.3190669363537617,4.8407742721532125 -26,16.0,16.0,5.275106062069114,-15.158221991997266 -26,17.0,14.0,-1.8108011504072024,3.687418931630696 -26,17.0,17.0,4.886487584415919,-9.906177730909668 -26,17.0,18.0,-3.0756864340087167,6.218758799278971 -26,18.0,17.0,-3.0756864340087167,6.218758799278971 -26,18.0,18.0,8.958039375185187,-17.98346468163191 -26,18.0,19.0,-5.88235294117647,11.76470588235294 -26,19.0,9.0,-1.7848303152666305,3.98535828943083 -26,19.0,18.0,-5.88235294117647,11.76470588235294 -26,19.0,19.0,7.6671832564431,-15.75006417178377 -26,20.0,9.0,-5.101853820159654,10.98071411292983 -26,20.0,20.0,21.876495189895888,-45.10843276170355 -26,20.0,21.0,-16.774641369736234,34.127718648773715 -26,21.0,9.0,-2.619319553382597,5.400770303329455 -26,21.0,20.0,-16.774641369736234,34.127718648773715 -26,21.0,21.0,21.93449907537439,-43.48289181517921 -26,21.0,23.0,-2.5405381522555563,3.95440286307604 -26,22.0,22.0,1.4614056064833263,-2.989238740534077 -26,22.0,23.0,-1.4614056064833263,2.989238740534077 -26,23.0,21.0,-2.5405381522555563,3.95440286307604 -26,23.0,22.0,-1.4614056064833263,2.989238740534077 -26,23.0,23.0,5.311836702613133,-9.188263657315172 -26,23.0,24.0,-1.3098929438742493,2.287622053705056 -26,24.0,23.0,-1.3098929438742493,2.287622053705056 -26,24.0,24.0,4.495715080321987,-7.864978761969621 -26,24.0,25.0,-1.2165301194494855,1.8171440463475024 -26,24.0,26.0,-1.9692920169982515,3.760212661917064 -26,25.0,24.0,-1.2165301194494855,1.8171440463475024 -26,25.0,25.0,1.2165301194494855,-1.8171440463475024 -26,26.0,24.0,-1.9692920169982515,3.760212661917064 -26,26.0,26.0,3.652281470778589,-9.46044252232512 -26,26.0,27.0,0.0,2.608731947574922 -26,26.0,28.0,-0.99553355095268,1.881005840357816 -26,26.0,29.0,-0.6874559028276572,1.293971494797717 -26,27.0,5.0,-4.362844058012917,15.463571542897856 -26,27.0,7.0,-1.4439790613954469,4.540814658476248 -26,27.0,26.0,0.0,2.608731947574922 -26,27.0,27.0,5.806823119408364,-22.67145722159613 -26,28.0,26.0,-0.99553355095268,1.881005840357816 -26,28.0,28.0,1.9075867579849564,-3.604364401207048 -26,28.0,29.0,-0.9120532070322764,1.7233585608492326 -26,29.0,26.0,-0.6874559028276572,1.293971494797717 -26,29.0,28.0,-0.9120532070322764,1.7233585608492326 -26,29.0,29.0,1.5995091098599337,-3.0173300556469496 -27,0.0,0.0,6.765516048652632,-21.23160167089863 -27,0.0,1.0,-5.224646179885656,15.646726840803398 -27,0.0,2.0,-1.5408698687669766,5.631674830095234 -27,1.0,0.0,-5.224646179885656,15.646726840803398 -27,1.0,1.0,9.75228216552403,-30.648662892676068 -27,1.0,3.0,-1.7055303166990268,5.1973792282565086 -27,1.0,4.0,-1.1359607881738778,4.772479328281356 -27,1.0,5.0,-1.6861448807654689,5.116477495334806 -27,2.0,0.0,-1.5408698687669766,5.631674830095234 -27,2.0,2.0,9.736318911079088,-29.13794745915803 -27,2.0,3.0,-8.19544904231211,23.5308726290628 -27,3.0,1.0,-1.7055303166990268,5.1973792282565086 -27,3.0,2.0,-8.19544904231211,23.5308726290628 -27,3.0,3.0,16.314103089185693,-55.509410535254254 -27,3.0,5.0,-6.413123730174556,22.31120356548123 -27,3.0,11.0,0.0,4.191255364806866 -27,4.0,1.0,-1.1359607881738778,4.772479328281356 -27,4.0,4.0,4.089980824135861,-12.190647245055052 -27,4.0,6.0,-2.954020035961983,7.449267916773697 -27,5.0,1.0,-1.6861448807654689,5.116477495334806 -27,5.0,3.0,-6.413123730174556,22.31120356548123 -27,5.0,5.0,22.341631269034565,-77.80272577435625 -27,5.0,6.0,-3.590210423980992,11.02611441072814 -27,5.0,7.0,-6.289308176100628,22.0125786163522 -27,5.0,9.0,0.0,1.8561002591115965 -27,5.0,27.0,-4.362844058012917,15.463571542897856 -27,6.0,4.0,-2.954020035961983,7.449267916773697 -27,6.0,5.0,-3.590210423980992,11.02611441072814 -27,6.0,6.0,6.544230459942975,-18.45668232750184 -27,7.0,5.0,-6.289308176100628,22.0125786163522 -27,7.0,7.0,7.733287237496075,-26.527493274828448 -27,7.0,27.0,-1.4439790613954469,4.540814658476248 -27,8.0,8.0,0.0,-13.8986013986014 -27,8.0,9.0,0.0,9.090909090909092 -27,8.0,10.0,0.0,4.807692307692308 -27,9.0,5.0,0.0,1.8561002591115965 -27,9.0,8.0,0.0,9.090909090909092 -27,9.0,9.0,13.462042814524237,-41.3837606675224 -27,9.0,16.0,-3.956039125715353,10.317447719844054 -27,9.0,19.0,-1.7848303152666305,3.98535828943083 -27,9.0,20.0,-5.101853820159654,10.98071411292983 -27,9.0,21.0,-2.619319553382597,5.400770303329455 -27,10.0,8.0,0.0,4.807692307692308 -27,10.0,10.0,0.0,-4.807692307692308 -27,11.0,3.0,0.0,4.191255364806866 -27,11.0,11.0,6.573961583776156,-24.424167659260668 -27,11.0,12.0,0.0,7.142857142857143 -27,11.0,13.0,-1.5265676088395577,3.1734252729654173 -27,11.0,14.0,-3.0953961826564296,6.097275864326261 -27,11.0,15.0,-1.9519977922801688,4.104359379111847 -27,12.0,11.0,0.0,7.142857142857143 -27,12.0,12.0,0.0,-7.142857142857143 -27,13.0,11.0,-1.5265676088395577,3.1734252729654173 -27,13.0,13.0,4.01751987283902,-5.424299332335067 -27,13.0,14.0,-2.4909522639994623,2.250874059369649 -27,14.0,11.0,-3.0953961826564296,6.097275864326261 -27,14.0,13.0,-2.4909522639994623,2.250874059369649 -27,14.0,14.0,9.365498545964757,-16.01163373210796 -27,14.0,17.0,-1.8108011504072024,3.687418931630696 -27,14.0,22.0,-1.9683489489016612,3.976064876781356 -27,15.0,11.0,-1.9519977922801688,4.104359379111847 -27,15.0,15.0,3.271064728633931,-8.94513365126506 -27,15.0,16.0,-1.3190669363537617,4.8407742721532125 -27,16.0,9.0,-3.956039125715353,10.317447719844054 -27,16.0,15.0,-1.3190669363537617,4.8407742721532125 -27,16.0,16.0,5.275106062069114,-15.158221991997266 -27,17.0,14.0,-1.8108011504072024,3.687418931630696 -27,17.0,17.0,4.886487584415919,-9.906177730909668 -27,17.0,18.0,-3.0756864340087167,6.218758799278971 -27,18.0,17.0,-3.0756864340087167,6.218758799278971 -27,18.0,18.0,8.958039375185187,-17.98346468163191 -27,18.0,19.0,-5.88235294117647,11.76470588235294 -27,19.0,9.0,-1.7848303152666305,3.98535828943083 -27,19.0,18.0,-5.88235294117647,11.76470588235294 -27,19.0,19.0,7.6671832564431,-15.75006417178377 -27,20.0,9.0,-5.101853820159654,10.98071411292983 -27,20.0,20.0,21.876495189895888,-45.10843276170355 -27,20.0,21.0,-16.774641369736234,34.127718648773715 -27,21.0,9.0,-2.619319553382597,5.400770303329455 -27,21.0,20.0,-16.774641369736234,34.127718648773715 -27,21.0,21.0,21.93449907537439,-43.48289181517921 -27,21.0,23.0,-2.5405381522555563,3.95440286307604 -27,22.0,14.0,-1.9683489489016612,3.976064876781356 -27,22.0,22.0,3.429754555384988,-6.965303617315433 -27,22.0,23.0,-1.4614056064833263,2.989238740534077 -27,23.0,21.0,-2.5405381522555563,3.95440286307604 -27,23.0,22.0,-1.4614056064833263,2.989238740534077 -27,23.0,23.0,4.001943758738883,-6.900641603610116 -27,24.0,24.0,3.185822136447737,-5.577356708264566 -27,24.0,25.0,-1.2165301194494855,1.8171440463475024 -27,24.0,26.0,-1.9692920169982515,3.760212661917064 -27,25.0,24.0,-1.2165301194494855,1.8171440463475024 -27,25.0,25.0,1.2165301194494855,-1.8171440463475024 -27,26.0,24.0,-1.9692920169982515,3.760212661917064 -27,26.0,26.0,3.652281470778589,-9.46044252232512 -27,26.0,27.0,0.0,2.608731947574922 -27,26.0,28.0,-0.99553355095268,1.881005840357816 -27,26.0,29.0,-0.6874559028276572,1.293971494797717 -27,27.0,5.0,-4.362844058012917,15.463571542897856 -27,27.0,7.0,-1.4439790613954469,4.540814658476248 -27,27.0,26.0,0.0,2.608731947574922 -27,27.0,27.0,5.806823119408364,-22.67145722159613 -27,28.0,26.0,-0.99553355095268,1.881005840357816 -27,28.0,28.0,1.9075867579849564,-3.604364401207048 -27,28.0,29.0,-0.9120532070322764,1.7233585608492326 -27,29.0,26.0,-0.6874559028276572,1.293971494797717 -27,29.0,28.0,-0.9120532070322764,1.7233585608492326 -27,29.0,29.0,1.5995091098599337,-3.0173300556469496 -28,0.0,0.0,6.765516048652632,-21.23160167089863 -28,0.0,1.0,-5.224646179885656,15.646726840803398 -28,0.0,2.0,-1.5408698687669766,5.631674830095234 -28,1.0,0.0,-5.224646179885656,15.646726840803398 -28,1.0,1.0,9.75228216552403,-30.648662892676068 -28,1.0,3.0,-1.7055303166990268,5.1973792282565086 -28,1.0,4.0,-1.1359607881738778,4.772479328281356 -28,1.0,5.0,-1.6861448807654689,5.116477495334806 -28,2.0,0.0,-1.5408698687669766,5.631674830095234 -28,2.0,2.0,9.736318911079088,-29.13794745915803 -28,2.0,3.0,-8.19544904231211,23.5308726290628 -28,3.0,1.0,-1.7055303166990268,5.1973792282565086 -28,3.0,2.0,-8.19544904231211,23.5308726290628 -28,3.0,3.0,16.314103089185693,-55.509410535254254 -28,3.0,5.0,-6.413123730174556,22.31120356548123 -28,3.0,11.0,0.0,4.191255364806866 -28,4.0,1.0,-1.1359607881738778,4.772479328281356 -28,4.0,4.0,4.089980824135861,-12.190647245055052 -28,4.0,6.0,-2.954020035961983,7.449267916773697 -28,5.0,1.0,-1.6861448807654689,5.116477495334806 -28,5.0,3.0,-6.413123730174556,22.31120356548123 -28,5.0,5.0,17.978787211021647,-67.37207632288106 -28,5.0,6.0,-3.590210423980992,11.02611441072814 -28,5.0,7.0,-6.289308176100628,22.0125786163522 -28,5.0,8.0,0.0,4.915840805411357 -28,5.0,9.0,0.0,1.8561002591115965 -28,6.0,4.0,-2.954020035961983,7.449267916773697 -28,6.0,5.0,-3.590210423980992,11.02611441072814 -28,6.0,6.0,6.544230459942975,-18.45668232750184 -28,7.0,5.0,-6.289308176100628,22.0125786163522 -28,7.0,7.0,7.733287237496075,-26.527493274828448 -28,7.0,27.0,-1.4439790613954469,4.540814658476248 -28,8.0,5.0,0.0,4.915840805411357 -28,8.0,8.0,0.0,-18.706293706293707 -28,8.0,9.0,0.0,9.090909090909092 -28,8.0,10.0,0.0,4.807692307692308 -28,9.0,5.0,0.0,1.8561002591115965 -28,9.0,8.0,0.0,9.090909090909092 -28,9.0,9.0,13.462042814524237,-41.3837606675224 -28,9.0,16.0,-3.956039125715353,10.317447719844054 -28,9.0,19.0,-1.7848303152666305,3.98535828943083 -28,9.0,20.0,-5.101853820159654,10.98071411292983 -28,9.0,21.0,-2.619319553382597,5.400770303329455 -28,10.0,8.0,0.0,4.807692307692308 -28,10.0,10.0,0.0,-4.807692307692308 -28,11.0,3.0,0.0,4.191255364806866 -28,11.0,11.0,6.573961583776156,-24.424167659260668 -28,11.0,12.0,0.0,7.142857142857143 -28,11.0,13.0,-1.5265676088395577,3.1734252729654173 -28,11.0,14.0,-3.0953961826564296,6.097275864326261 -28,11.0,15.0,-1.9519977922801688,4.104359379111847 -28,12.0,11.0,0.0,7.142857142857143 -28,12.0,12.0,0.0,-7.142857142857143 -28,13.0,11.0,-1.5265676088395577,3.1734252729654173 -28,13.0,13.0,4.01751987283902,-5.424299332335067 -28,13.0,14.0,-2.4909522639994623,2.250874059369649 -28,14.0,11.0,-3.0953961826564296,6.097275864326261 -28,14.0,13.0,-2.4909522639994623,2.250874059369649 -28,14.0,14.0,9.365498545964757,-16.01163373210796 -28,14.0,17.0,-1.8108011504072024,3.687418931630696 -28,14.0,22.0,-1.9683489489016612,3.976064876781356 -28,15.0,11.0,-1.9519977922801688,4.104359379111847 -28,15.0,15.0,3.271064728633931,-8.94513365126506 -28,15.0,16.0,-1.3190669363537617,4.8407742721532125 -28,16.0,9.0,-3.956039125715353,10.317447719844054 -28,16.0,15.0,-1.3190669363537617,4.8407742721532125 -28,16.0,16.0,5.275106062069114,-15.158221991997266 -28,17.0,14.0,-1.8108011504072024,3.687418931630696 -28,17.0,17.0,4.886487584415919,-9.906177730909668 -28,17.0,18.0,-3.0756864340087167,6.218758799278971 -28,18.0,17.0,-3.0756864340087167,6.218758799278971 -28,18.0,18.0,8.958039375185187,-17.98346468163191 -28,18.0,19.0,-5.88235294117647,11.76470588235294 -28,19.0,9.0,-1.7848303152666305,3.98535828943083 -28,19.0,18.0,-5.88235294117647,11.76470588235294 -28,19.0,19.0,7.6671832564431,-15.75006417178377 -28,20.0,9.0,-5.101853820159654,10.98071411292983 -28,20.0,20.0,21.876495189895888,-45.10843276170355 -28,20.0,21.0,-16.774641369736234,34.127718648773715 -28,21.0,9.0,-2.619319553382597,5.400770303329455 -28,21.0,20.0,-16.774641369736234,34.127718648773715 -28,21.0,21.0,21.93449907537439,-43.48289181517921 -28,21.0,23.0,-2.5405381522555563,3.95440286307604 -28,22.0,14.0,-1.9683489489016612,3.976064876781356 -28,22.0,22.0,3.429754555384988,-6.965303617315433 -28,22.0,23.0,-1.4614056064833263,2.989238740534077 -28,23.0,21.0,-2.5405381522555563,3.95440286307604 -28,23.0,22.0,-1.4614056064833263,2.989238740534077 -28,23.0,23.0,5.311836702613133,-9.188263657315172 -28,23.0,24.0,-1.3098929438742493,2.287622053705056 -28,24.0,23.0,-1.3098929438742493,2.287622053705056 -28,24.0,24.0,4.495715080321987,-7.864978761969621 -28,24.0,25.0,-1.2165301194494855,1.8171440463475024 -28,24.0,26.0,-1.9692920169982515,3.760212661917064 -28,25.0,24.0,-1.2165301194494855,1.8171440463475024 -28,25.0,25.0,1.2165301194494855,-1.8171440463475024 -28,26.0,24.0,-1.9692920169982515,3.760212661917064 -28,26.0,26.0,3.652281470778589,-9.46044252232512 -28,26.0,27.0,0.0,2.608731947574922 -28,26.0,28.0,-0.99553355095268,1.881005840357816 -28,26.0,29.0,-0.6874559028276572,1.293971494797717 -28,27.0,7.0,-1.4439790613954469,4.540814658476248 -28,27.0,26.0,0.0,2.608731947574922 -28,27.0,27.0,1.4439790613954469,-7.214385678698274 -28,28.0,26.0,-0.99553355095268,1.881005840357816 -28,28.0,28.0,1.9075867579849564,-3.604364401207048 -28,28.0,29.0,-0.9120532070322764,1.7233585608492326 -28,29.0,26.0,-0.6874559028276572,1.293971494797717 -28,29.0,28.0,-0.9120532070322764,1.7233585608492326 -28,29.0,29.0,1.5995091098599337,-3.0173300556469496 -29,0.0,0.0,6.765516048652632,-21.23160167089863 -29,0.0,1.0,-5.224646179885656,15.646726840803398 -29,0.0,2.0,-1.5408698687669766,5.631674830095234 -29,1.0,0.0,-5.224646179885656,15.646726840803398 -29,1.0,1.0,9.75228216552403,-30.648662892676068 -29,1.0,3.0,-1.7055303166990268,5.1973792282565086 -29,1.0,4.0,-1.1359607881738778,4.772479328281356 -29,1.0,5.0,-1.6861448807654689,5.116477495334806 -29,2.0,0.0,-1.5408698687669766,5.631674830095234 -29,2.0,2.0,9.736318911079088,-29.13794745915803 -29,2.0,3.0,-8.19544904231211,23.5308726290628 -29,3.0,1.0,-1.7055303166990268,5.1973792282565086 -29,3.0,2.0,-8.19544904231211,23.5308726290628 -29,3.0,3.0,16.314103089185693,-55.509410535254254 -29,3.0,5.0,-6.413123730174556,22.31120356548123 -29,3.0,11.0,0.0,4.191255364806866 -29,4.0,1.0,-1.1359607881738778,4.772479328281356 -29,4.0,4.0,4.089980824135861,-12.190647245055052 -29,4.0,6.0,-2.954020035961983,7.449267916773697 -29,5.0,1.0,-1.6861448807654689,5.116477495334806 -29,5.0,3.0,-6.413123730174556,22.31120356548123 -29,5.0,5.0,18.75142084505357,-71.81153345505078 -29,5.0,7.0,-6.289308176100628,22.0125786163522 -29,5.0,8.0,0.0,4.915840805411357 -29,5.0,9.0,0.0,1.8561002591115965 -29,5.0,27.0,-4.362844058012917,15.463571542897856 -29,6.0,4.0,-2.954020035961983,7.449267916773697 -29,6.0,6.0,2.954020035961983,-7.439067916773697 -29,7.0,5.0,-6.289308176100628,22.0125786163522 -29,7.0,7.0,7.733287237496075,-26.527493274828448 -29,7.0,27.0,-1.4439790613954469,4.540814658476248 -29,8.0,5.0,0.0,4.915840805411357 -29,8.0,8.0,0.0,-9.615384615384617 -29,8.0,10.0,0.0,4.807692307692308 -29,9.0,5.0,0.0,1.8561002591115965 -29,9.0,9.0,13.462042814524237,-32.29285157661331 -29,9.0,16.0,-3.956039125715353,10.317447719844054 -29,9.0,19.0,-1.7848303152666305,3.98535828943083 -29,9.0,20.0,-5.101853820159654,10.98071411292983 -29,9.0,21.0,-2.619319553382597,5.400770303329455 -29,10.0,8.0,0.0,4.807692307692308 -29,10.0,10.0,0.0,-4.807692307692308 -29,11.0,3.0,0.0,4.191255364806866 -29,11.0,11.0,6.573961583776156,-24.424167659260668 -29,11.0,12.0,0.0,7.142857142857143 -29,11.0,13.0,-1.5265676088395577,3.1734252729654173 -29,11.0,14.0,-3.0953961826564296,6.097275864326261 -29,11.0,15.0,-1.9519977922801688,4.104359379111847 -29,12.0,11.0,0.0,7.142857142857143 -29,12.0,12.0,0.0,-7.142857142857143 -29,13.0,11.0,-1.5265676088395577,3.1734252729654173 -29,13.0,13.0,4.01751987283902,-5.424299332335067 -29,13.0,14.0,-2.4909522639994623,2.250874059369649 -29,14.0,11.0,-3.0953961826564296,6.097275864326261 -29,14.0,13.0,-2.4909522639994623,2.250874059369649 -29,14.0,14.0,9.365498545964757,-16.01163373210796 -29,14.0,17.0,-1.8108011504072024,3.687418931630696 -29,14.0,22.0,-1.9683489489016612,3.976064876781356 -29,15.0,11.0,-1.9519977922801688,4.104359379111847 -29,15.0,15.0,3.271064728633931,-8.94513365126506 -29,15.0,16.0,-1.3190669363537617,4.8407742721532125 -29,16.0,9.0,-3.956039125715353,10.317447719844054 -29,16.0,15.0,-1.3190669363537617,4.8407742721532125 -29,16.0,16.0,5.275106062069114,-15.158221991997266 -29,17.0,14.0,-1.8108011504072024,3.687418931630696 -29,17.0,17.0,4.886487584415919,-9.906177730909668 -29,17.0,18.0,-3.0756864340087167,6.218758799278971 -29,18.0,17.0,-3.0756864340087167,6.218758799278971 -29,18.0,18.0,8.958039375185187,-17.98346468163191 -29,18.0,19.0,-5.88235294117647,11.76470588235294 -29,19.0,9.0,-1.7848303152666305,3.98535828943083 -29,19.0,18.0,-5.88235294117647,11.76470588235294 -29,19.0,19.0,7.6671832564431,-15.75006417178377 -29,20.0,9.0,-5.101853820159654,10.98071411292983 -29,20.0,20.0,21.876495189895888,-45.10843276170355 -29,20.0,21.0,-16.774641369736234,34.127718648773715 -29,21.0,9.0,-2.619319553382597,5.400770303329455 -29,21.0,20.0,-16.774641369736234,34.127718648773715 -29,21.0,21.0,19.393960923118836,-39.52848895210317 -29,22.0,14.0,-1.9683489489016612,3.976064876781356 -29,22.0,22.0,3.429754555384988,-6.965303617315433 -29,22.0,23.0,-1.4614056064833263,2.989238740534077 -29,23.0,22.0,-1.4614056064833263,2.989238740534077 -29,23.0,23.0,2.771298550357576,-5.233860794239132 -29,23.0,24.0,-1.3098929438742493,2.287622053705056 -29,24.0,23.0,-1.3098929438742493,2.287622053705056 -29,24.0,24.0,4.495715080321987,-7.864978761969621 -29,24.0,25.0,-1.2165301194494855,1.8171440463475024 -29,24.0,26.0,-1.9692920169982515,3.760212661917064 -29,25.0,24.0,-1.2165301194494855,1.8171440463475024 -29,25.0,25.0,1.2165301194494855,-1.8171440463475024 -29,26.0,24.0,-1.9692920169982515,3.760212661917064 -29,26.0,26.0,3.652281470778589,-9.46044252232512 -29,26.0,27.0,0.0,2.608731947574922 -29,26.0,28.0,-0.99553355095268,1.881005840357816 -29,26.0,29.0,-0.6874559028276572,1.293971494797717 -29,27.0,5.0,-4.362844058012917,15.463571542897856 -29,27.0,7.0,-1.4439790613954469,4.540814658476248 -29,27.0,26.0,0.0,2.608731947574922 -29,27.0,27.0,5.806823119408364,-22.67145722159613 -29,28.0,26.0,-0.99553355095268,1.881005840357816 -29,28.0,28.0,1.9075867579849564,-3.604364401207048 -29,28.0,29.0,-0.9120532070322764,1.7233585608492326 -29,29.0,26.0,-0.6874559028276572,1.293971494797717 -29,29.0,28.0,-0.9120532070322764,1.7233585608492326 -29,29.0,29.0,1.5995091098599337,-3.0173300556469496 -30,0.0,0.0,6.765516048652632,-21.23160167089863 -30,0.0,1.0,-5.224646179885656,15.646726840803398 -30,0.0,2.0,-1.5408698687669766,5.631674830095234 -30,1.0,0.0,-5.224646179885656,15.646726840803398 -30,1.0,1.0,9.75228216552403,-30.648662892676068 -30,1.0,3.0,-1.7055303166990268,5.1973792282565086 -30,1.0,4.0,-1.1359607881738778,4.772479328281356 -30,1.0,5.0,-1.6861448807654689,5.116477495334806 -30,2.0,0.0,-1.5408698687669766,5.631674830095234 -30,2.0,2.0,9.736318911079088,-29.13794745915803 -30,2.0,3.0,-8.19544904231211,23.5308726290628 -30,3.0,1.0,-1.7055303166990268,5.1973792282565086 -30,3.0,2.0,-8.19544904231211,23.5308726290628 -30,3.0,3.0,16.314103089185693,-55.509410535254254 -30,3.0,5.0,-6.413123730174556,22.31120356548123 -30,3.0,11.0,0.0,4.191255364806866 -30,4.0,1.0,-1.1359607881738778,4.772479328281356 -30,4.0,4.0,4.089980824135861,-12.190647245055052 -30,4.0,6.0,-2.954020035961983,7.449267916773697 -30,5.0,1.0,-1.6861448807654689,5.116477495334806 -30,5.0,3.0,-6.413123730174556,22.31120356548123 -30,5.0,5.0,18.75142084505357,-71.81153345505078 -30,5.0,7.0,-6.289308176100628,22.0125786163522 -30,5.0,8.0,0.0,4.915840805411357 -30,5.0,9.0,0.0,1.8561002591115965 -30,5.0,27.0,-4.362844058012917,15.463571542897856 -30,6.0,4.0,-2.954020035961983,7.449267916773697 -30,6.0,6.0,2.954020035961983,-7.439067916773697 -30,7.0,5.0,-6.289308176100628,22.0125786163522 -30,7.0,7.0,7.733287237496075,-26.527493274828448 -30,7.0,27.0,-1.4439790613954469,4.540814658476248 -30,8.0,5.0,0.0,4.915840805411357 -30,8.0,8.0,0.0,-18.706293706293707 -30,8.0,9.0,0.0,9.090909090909092 -30,8.0,10.0,0.0,4.807692307692308 -30,9.0,5.0,0.0,1.8561002591115965 -30,9.0,8.0,0.0,9.090909090909092 -30,9.0,9.0,13.462042814524237,-41.3837606675224 -30,9.0,16.0,-3.956039125715353,10.317447719844054 -30,9.0,19.0,-1.7848303152666305,3.98535828943083 -30,9.0,20.0,-5.101853820159654,10.98071411292983 -30,9.0,21.0,-2.619319553382597,5.400770303329455 -30,10.0,8.0,0.0,4.807692307692308 -30,10.0,10.0,0.0,-4.807692307692308 -30,11.0,3.0,0.0,4.191255364806866 -30,11.0,11.0,6.573961583776156,-24.424167659260668 -30,11.0,12.0,0.0,7.142857142857143 -30,11.0,13.0,-1.5265676088395577,3.1734252729654173 -30,11.0,14.0,-3.0953961826564296,6.097275864326261 -30,11.0,15.0,-1.9519977922801688,4.104359379111847 -30,12.0,11.0,0.0,7.142857142857143 -30,12.0,12.0,0.0,-7.142857142857143 -30,13.0,11.0,-1.5265676088395577,3.1734252729654173 -30,13.0,13.0,4.01751987283902,-5.424299332335067 -30,13.0,14.0,-2.4909522639994623,2.250874059369649 -30,14.0,11.0,-3.0953961826564296,6.097275864326261 -30,14.0,13.0,-2.4909522639994623,2.250874059369649 -30,14.0,14.0,9.365498545964757,-16.01163373210796 -30,14.0,17.0,-1.8108011504072024,3.687418931630696 -30,14.0,22.0,-1.9683489489016612,3.976064876781356 -30,15.0,11.0,-1.9519977922801688,4.104359379111847 -30,15.0,15.0,3.271064728633931,-8.94513365126506 -30,15.0,16.0,-1.3190669363537617,4.8407742721532125 -30,16.0,9.0,-3.956039125715353,10.317447719844054 -30,16.0,15.0,-1.3190669363537617,4.8407742721532125 -30,16.0,16.0,5.275106062069114,-15.158221991997266 -30,17.0,14.0,-1.8108011504072024,3.687418931630696 -30,17.0,17.0,4.886487584415919,-9.906177730909668 -30,17.0,18.0,-3.0756864340087167,6.218758799278971 -30,18.0,17.0,-3.0756864340087167,6.218758799278971 -30,18.0,18.0,8.958039375185187,-17.98346468163191 -30,18.0,19.0,-5.88235294117647,11.76470588235294 -30,19.0,9.0,-1.7848303152666305,3.98535828943083 -30,19.0,18.0,-5.88235294117647,11.76470588235294 -30,19.0,19.0,7.6671832564431,-15.75006417178377 -30,20.0,9.0,-5.101853820159654,10.98071411292983 -30,20.0,20.0,21.876495189895888,-45.10843276170355 -30,20.0,21.0,-16.774641369736234,34.127718648773715 -30,21.0,9.0,-2.619319553382597,5.400770303329455 -30,21.0,20.0,-16.774641369736234,34.127718648773715 -30,21.0,21.0,21.93449907537439,-43.48289181517921 -30,21.0,23.0,-2.5405381522555563,3.95440286307604 -30,22.0,14.0,-1.9683489489016612,3.976064876781356 -30,22.0,22.0,3.429754555384988,-6.965303617315433 -30,22.0,23.0,-1.4614056064833263,2.989238740534077 -30,23.0,21.0,-2.5405381522555563,3.95440286307604 -30,23.0,22.0,-1.4614056064833263,2.989238740534077 -30,23.0,23.0,5.311836702613133,-9.188263657315172 -30,23.0,24.0,-1.3098929438742493,2.287622053705056 -30,24.0,23.0,-1.3098929438742493,2.287622053705056 -30,24.0,24.0,2.526423063323735,-4.104766100052558 -30,24.0,25.0,-1.2165301194494855,1.8171440463475024 -30,25.0,24.0,-1.2165301194494855,1.8171440463475024 -30,25.0,25.0,1.2165301194494855,-1.8171440463475024 -30,26.0,26.0,1.6829894537803372,-5.700229860408058 -30,26.0,27.0,0.0,2.608731947574922 -30,26.0,28.0,-0.99553355095268,1.881005840357816 -30,26.0,29.0,-0.6874559028276572,1.293971494797717 -30,27.0,5.0,-4.362844058012917,15.463571542897856 -30,27.0,7.0,-1.4439790613954469,4.540814658476248 -30,27.0,26.0,0.0,2.608731947574922 -30,27.0,27.0,5.806823119408364,-22.67145722159613 -30,28.0,26.0,-0.99553355095268,1.881005840357816 -30,28.0,28.0,1.9075867579849564,-3.604364401207048 -30,28.0,29.0,-0.9120532070322764,1.7233585608492326 -30,29.0,26.0,-0.6874559028276572,1.293971494797717 -30,29.0,28.0,-0.9120532070322764,1.7233585608492326 -30,29.0,29.0,1.5995091098599337,-3.0173300556469496 -31,0.0,0.0,6.765516048652632,-21.23160167089863 -31,0.0,1.0,-5.224646179885656,15.646726840803398 -31,0.0,2.0,-1.5408698687669766,5.631674830095234 -31,1.0,0.0,-5.224646179885656,15.646726840803398 -31,1.0,1.0,9.75228216552403,-30.648662892676068 -31,1.0,3.0,-1.7055303166990268,5.1973792282565086 -31,1.0,4.0,-1.1359607881738778,4.772479328281356 -31,1.0,5.0,-1.6861448807654689,5.116477495334806 -31,2.0,0.0,-1.5408698687669766,5.631674830095234 -31,2.0,2.0,9.736318911079088,-29.13794745915803 -31,2.0,3.0,-8.19544904231211,23.5308726290628 -31,3.0,1.0,-1.7055303166990268,5.1973792282565086 -31,3.0,2.0,-8.19544904231211,23.5308726290628 -31,3.0,3.0,16.314103089185693,-55.509410535254254 -31,3.0,5.0,-6.413123730174556,22.31120356548123 -31,3.0,11.0,0.0,4.191255364806866 -31,4.0,1.0,-1.1359607881738778,4.772479328281356 -31,4.0,4.0,4.089980824135861,-12.190647245055052 -31,4.0,6.0,-2.954020035961983,7.449267916773697 -31,5.0,1.0,-1.6861448807654689,5.116477495334806 -31,5.0,3.0,-6.413123730174556,22.31120356548123 -31,5.0,5.0,22.341631269034565,-82.8291478657789 -31,5.0,6.0,-3.590210423980992,11.02611441072814 -31,5.0,7.0,-6.289308176100628,22.0125786163522 -31,5.0,8.0,0.0,4.915840805411357 -31,5.0,9.0,0.0,1.8561002591115965 -31,5.0,27.0,-4.362844058012917,15.463571542897856 -31,6.0,4.0,-2.954020035961983,7.449267916773697 -31,6.0,5.0,-3.590210423980992,11.02611441072814 -31,6.0,6.0,6.544230459942975,-18.45668232750184 -31,7.0,5.0,-6.289308176100628,22.0125786163522 -31,7.0,7.0,7.733287237496075,-26.527493274828448 -31,7.0,27.0,-1.4439790613954469,4.540814658476248 -31,8.0,5.0,0.0,4.915840805411357 -31,8.0,8.0,0.0,-18.706293706293707 -31,8.0,9.0,0.0,9.090909090909092 -31,8.0,10.0,0.0,4.807692307692308 -31,9.0,5.0,0.0,1.8561002591115965 -31,9.0,8.0,0.0,9.090909090909092 -31,9.0,9.0,13.462042814524237,-41.3837606675224 -31,9.0,16.0,-3.956039125715353,10.317447719844054 -31,9.0,19.0,-1.7848303152666305,3.98535828943083 -31,9.0,20.0,-5.101853820159654,10.98071411292983 -31,9.0,21.0,-2.619319553382597,5.400770303329455 -31,10.0,8.0,0.0,4.807692307692308 -31,10.0,10.0,0.0,-4.807692307692308 -31,11.0,3.0,0.0,4.191255364806866 -31,11.0,11.0,5.047393974936599,-21.25074238629525 -31,11.0,12.0,0.0,7.142857142857143 -31,11.0,14.0,-3.0953961826564296,6.097275864326261 -31,11.0,15.0,-1.9519977922801688,4.104359379111847 -31,12.0,11.0,0.0,7.142857142857143 -31,12.0,12.0,0.0,-7.142857142857143 -31,13.0,13.0,2.4909522639994623,-2.250874059369649 -31,13.0,14.0,-2.4909522639994623,2.250874059369649 -31,14.0,11.0,-3.0953961826564296,6.097275864326261 -31,14.0,13.0,-2.4909522639994623,2.250874059369649 -31,14.0,14.0,9.365498545964757,-16.01163373210796 -31,14.0,17.0,-1.8108011504072024,3.687418931630696 -31,14.0,22.0,-1.9683489489016612,3.976064876781356 -31,15.0,11.0,-1.9519977922801688,4.104359379111847 -31,15.0,15.0,3.271064728633931,-8.94513365126506 -31,15.0,16.0,-1.3190669363537617,4.8407742721532125 -31,16.0,9.0,-3.956039125715353,10.317447719844054 -31,16.0,15.0,-1.3190669363537617,4.8407742721532125 -31,16.0,16.0,5.275106062069114,-15.158221991997266 -31,17.0,14.0,-1.8108011504072024,3.687418931630696 -31,17.0,17.0,4.886487584415919,-9.906177730909668 -31,17.0,18.0,-3.0756864340087167,6.218758799278971 -31,18.0,17.0,-3.0756864340087167,6.218758799278971 -31,18.0,18.0,3.0756864340087167,-6.218758799278971 -31,19.0,9.0,-1.7848303152666305,3.98535828943083 -31,19.0,19.0,1.7848303152666305,-3.98535828943083 -31,20.0,9.0,-5.101853820159654,10.98071411292983 -31,20.0,20.0,21.876495189895888,-45.10843276170355 -31,20.0,21.0,-16.774641369736234,34.127718648773715 -31,21.0,9.0,-2.619319553382597,5.400770303329455 -31,21.0,20.0,-16.774641369736234,34.127718648773715 -31,21.0,21.0,21.93449907537439,-43.48289181517921 -31,21.0,23.0,-2.5405381522555563,3.95440286307604 -31,22.0,14.0,-1.9683489489016612,3.976064876781356 -31,22.0,22.0,3.429754555384988,-6.965303617315433 -31,22.0,23.0,-1.4614056064833263,2.989238740534077 -31,23.0,21.0,-2.5405381522555563,3.95440286307604 -31,23.0,22.0,-1.4614056064833263,2.989238740534077 -31,23.0,23.0,5.311836702613133,-9.188263657315172 -31,23.0,24.0,-1.3098929438742493,2.287622053705056 -31,24.0,23.0,-1.3098929438742493,2.287622053705056 -31,24.0,24.0,4.495715080321987,-7.864978761969621 -31,24.0,25.0,-1.2165301194494855,1.8171440463475024 -31,24.0,26.0,-1.9692920169982515,3.760212661917064 -31,25.0,24.0,-1.2165301194494855,1.8171440463475024 -31,25.0,25.0,1.2165301194494855,-1.8171440463475024 -31,26.0,24.0,-1.9692920169982515,3.760212661917064 -31,26.0,26.0,3.652281470778589,-9.46044252232512 -31,26.0,27.0,0.0,2.608731947574922 -31,26.0,28.0,-0.99553355095268,1.881005840357816 -31,26.0,29.0,-0.6874559028276572,1.293971494797717 -31,27.0,5.0,-4.362844058012917,15.463571542897856 -31,27.0,7.0,-1.4439790613954469,4.540814658476248 -31,27.0,26.0,0.0,2.608731947574922 -31,27.0,27.0,5.806823119408364,-22.67145722159613 -31,28.0,26.0,-0.99553355095268,1.881005840357816 -31,28.0,28.0,1.9075867579849564,-3.604364401207048 -31,28.0,29.0,-0.9120532070322764,1.7233585608492326 -31,29.0,26.0,-0.6874559028276572,1.293971494797717 -31,29.0,28.0,-0.9120532070322764,1.7233585608492326 -31,29.0,29.0,1.5995091098599337,-3.0173300556469496 -32,0.0,0.0,6.765516048652632,-21.23160167089863 -32,0.0,1.0,-5.224646179885656,15.646726840803398 -32,0.0,2.0,-1.5408698687669766,5.631674830095234 -32,1.0,0.0,-5.224646179885656,15.646726840803398 -32,1.0,1.0,9.75228216552403,-30.648662892676068 -32,1.0,3.0,-1.7055303166990268,5.1973792282565086 -32,1.0,4.0,-1.1359607881738778,4.772479328281356 -32,1.0,5.0,-1.6861448807654689,5.116477495334806 -32,2.0,0.0,-1.5408698687669766,5.631674830095234 -32,2.0,2.0,9.736318911079088,-29.13794745915803 -32,2.0,3.0,-8.19544904231211,23.5308726290628 -32,3.0,1.0,-1.7055303166990268,5.1973792282565086 -32,3.0,2.0,-8.19544904231211,23.5308726290628 -32,3.0,3.0,16.314103089185693,-55.509410535254254 -32,3.0,5.0,-6.413123730174556,22.31120356548123 -32,3.0,11.0,0.0,4.191255364806866 -32,4.0,1.0,-1.1359607881738778,4.772479328281356 -32,4.0,4.0,4.089980824135861,-12.190647245055052 -32,4.0,6.0,-2.954020035961983,7.449267916773697 -32,5.0,1.0,-1.6861448807654689,5.116477495334806 -32,5.0,3.0,-6.413123730174556,22.31120356548123 -32,5.0,5.0,22.341631269034565,-82.8291478657789 -32,5.0,6.0,-3.590210423980992,11.02611441072814 -32,5.0,7.0,-6.289308176100628,22.0125786163522 -32,5.0,8.0,0.0,4.915840805411357 -32,5.0,9.0,0.0,1.8561002591115965 -32,5.0,27.0,-4.362844058012917,15.463571542897856 -32,6.0,4.0,-2.954020035961983,7.449267916773697 -32,6.0,5.0,-3.590210423980992,11.02611441072814 -32,6.0,6.0,6.544230459942975,-18.45668232750184 -32,7.0,5.0,-6.289308176100628,22.0125786163522 -32,7.0,7.0,7.733287237496075,-26.527493274828448 -32,7.0,27.0,-1.4439790613954469,4.540814658476248 -32,8.0,5.0,0.0,4.915840805411357 -32,8.0,8.0,0.0,-18.706293706293707 -32,8.0,9.0,0.0,9.090909090909092 -32,8.0,10.0,0.0,4.807692307692308 -32,9.0,5.0,0.0,1.8561002591115965 -32,9.0,8.0,0.0,9.090909090909092 -32,9.0,9.0,13.462042814524237,-41.3837606675224 -32,9.0,16.0,-3.956039125715353,10.317447719844054 -32,9.0,19.0,-1.7848303152666305,3.98535828943083 -32,9.0,20.0,-5.101853820159654,10.98071411292983 -32,9.0,21.0,-2.619319553382597,5.400770303329455 -32,10.0,8.0,0.0,4.807692307692308 -32,10.0,10.0,0.0,-4.807692307692308 -32,11.0,3.0,0.0,4.191255364806866 -32,11.0,11.0,6.573961583776156,-24.424167659260668 -32,11.0,12.0,0.0,7.142857142857143 -32,11.0,13.0,-1.5265676088395577,3.1734252729654173 -32,11.0,14.0,-3.0953961826564296,6.097275864326261 -32,11.0,15.0,-1.9519977922801688,4.104359379111847 -32,12.0,11.0,0.0,7.142857142857143 -32,12.0,12.0,0.0,-7.142857142857143 -32,13.0,11.0,-1.5265676088395577,3.1734252729654173 -32,13.0,13.0,4.01751987283902,-5.424299332335067 -32,13.0,14.0,-2.4909522639994623,2.250874059369649 -32,14.0,11.0,-3.0953961826564296,6.097275864326261 -32,14.0,13.0,-2.4909522639994623,2.250874059369649 -32,14.0,14.0,9.365498545964757,-16.01163373210796 -32,14.0,17.0,-1.8108011504072024,3.687418931630696 -32,14.0,22.0,-1.9683489489016612,3.976064876781356 -32,15.0,11.0,-1.9519977922801688,4.104359379111847 -32,15.0,15.0,3.271064728633931,-8.94513365126506 -32,15.0,16.0,-1.3190669363537617,4.8407742721532125 -32,16.0,9.0,-3.956039125715353,10.317447719844054 -32,16.0,15.0,-1.3190669363537617,4.8407742721532125 -32,16.0,16.0,5.275106062069114,-15.158221991997266 -32,17.0,14.0,-1.8108011504072024,3.687418931630696 -32,17.0,17.0,4.886487584415919,-9.906177730909668 -32,17.0,18.0,-3.0756864340087167,6.218758799278971 -32,18.0,17.0,-3.0756864340087167,6.218758799278971 -32,18.0,18.0,8.958039375185187,-17.98346468163191 -32,18.0,19.0,-5.88235294117647,11.76470588235294 -32,19.0,9.0,-1.7848303152666305,3.98535828943083 -32,19.0,18.0,-5.88235294117647,11.76470588235294 -32,19.0,19.0,7.6671832564431,-15.75006417178377 -32,20.0,9.0,-5.101853820159654,10.98071411292983 -32,20.0,20.0,21.876495189895888,-45.10843276170355 -32,20.0,21.0,-16.774641369736234,34.127718648773715 -32,21.0,9.0,-2.619319553382597,5.400770303329455 -32,21.0,20.0,-16.774641369736234,34.127718648773715 -32,21.0,21.0,21.93449907537439,-43.48289181517921 -32,21.0,23.0,-2.5405381522555563,3.95440286307604 -32,22.0,14.0,-1.9683489489016612,3.976064876781356 -32,22.0,22.0,3.429754555384988,-6.965303617315433 -32,22.0,23.0,-1.4614056064833263,2.989238740534077 -32,23.0,21.0,-2.5405381522555563,3.95440286307604 -32,23.0,22.0,-1.4614056064833263,2.989238740534077 -32,23.0,23.0,5.311836702613133,-9.188263657315172 -32,23.0,24.0,-1.3098929438742493,2.287622053705056 -32,24.0,23.0,-1.3098929438742493,2.287622053705056 -32,24.0,24.0,4.495715080321987,-7.864978761969621 -32,24.0,25.0,-1.2165301194494855,1.8171440463475024 -32,24.0,26.0,-1.9692920169982515,3.760212661917064 -32,25.0,24.0,-1.2165301194494855,1.8171440463475024 -32,25.0,25.0,1.2165301194494855,-1.8171440463475024 -32,26.0,24.0,-1.9692920169982515,3.760212661917064 -32,26.0,26.0,2.656747919825909,-7.579436681967305 -32,26.0,27.0,0.0,2.608731947574922 -32,26.0,29.0,-0.6874559028276572,1.293971494797717 -32,27.0,5.0,-4.362844058012917,15.463571542897856 -32,27.0,7.0,-1.4439790613954469,4.540814658476248 -32,27.0,26.0,0.0,2.608731947574922 -32,27.0,27.0,5.806823119408364,-22.67145722159613 -32,28.0,28.0,0.9120532070322764,-1.7233585608492326 -32,28.0,29.0,-0.9120532070322764,1.7233585608492326 -32,29.0,26.0,-0.6874559028276572,1.293971494797717 -32,29.0,28.0,-0.9120532070322764,1.7233585608492326 -32,29.0,29.0,1.5995091098599337,-3.0173300556469496 -33,0.0,0.0,6.765516048652632,-21.23160167089863 -33,0.0,1.0,-5.224646179885656,15.646726840803398 -33,0.0,2.0,-1.5408698687669766,5.631674830095234 -33,1.0,0.0,-5.224646179885656,15.646726840803398 -33,1.0,1.0,9.75228216552403,-30.648662892676068 -33,1.0,3.0,-1.7055303166990268,5.1973792282565086 -33,1.0,4.0,-1.1359607881738778,4.772479328281356 -33,1.0,5.0,-1.6861448807654689,5.116477495334806 -33,2.0,0.0,-1.5408698687669766,5.631674830095234 -33,2.0,2.0,9.736318911079088,-29.13794745915803 -33,2.0,3.0,-8.19544904231211,23.5308726290628 -33,3.0,1.0,-1.7055303166990268,5.1973792282565086 -33,3.0,2.0,-8.19544904231211,23.5308726290628 -33,3.0,3.0,16.314103089185693,-55.509410535254254 -33,3.0,5.0,-6.413123730174556,22.31120356548123 -33,3.0,11.0,0.0,4.191255364806866 -33,4.0,1.0,-1.1359607881738778,4.772479328281356 -33,4.0,4.0,4.089980824135861,-12.190647245055052 -33,4.0,6.0,-2.954020035961983,7.449267916773697 -33,5.0,1.0,-1.6861448807654689,5.116477495334806 -33,5.0,3.0,-6.413123730174556,22.31120356548123 -33,5.0,5.0,22.341631269034565,-82.8291478657789 -33,5.0,6.0,-3.590210423980992,11.02611441072814 -33,5.0,7.0,-6.289308176100628,22.0125786163522 -33,5.0,8.0,0.0,4.915840805411357 -33,5.0,9.0,0.0,1.8561002591115965 -33,5.0,27.0,-4.362844058012917,15.463571542897856 -33,6.0,4.0,-2.954020035961983,7.449267916773697 -33,6.0,5.0,-3.590210423980992,11.02611441072814 -33,6.0,6.0,6.544230459942975,-18.45668232750184 -33,7.0,5.0,-6.289308176100628,22.0125786163522 -33,7.0,7.0,7.733287237496075,-26.527493274828448 -33,7.0,27.0,-1.4439790613954469,4.540814658476248 -33,8.0,5.0,0.0,4.915840805411357 -33,8.0,8.0,0.0,-18.706293706293707 -33,8.0,9.0,0.0,9.090909090909092 -33,8.0,10.0,0.0,4.807692307692308 -33,9.0,5.0,0.0,1.8561002591115965 -33,9.0,8.0,0.0,9.090909090909092 -33,9.0,9.0,13.462042814524237,-41.3837606675224 -33,9.0,16.0,-3.956039125715353,10.317447719844054 -33,9.0,19.0,-1.7848303152666305,3.98535828943083 -33,9.0,20.0,-5.101853820159654,10.98071411292983 -33,9.0,21.0,-2.619319553382597,5.400770303329455 -33,10.0,8.0,0.0,4.807692307692308 -33,10.0,10.0,0.0,-4.807692307692308 -33,11.0,3.0,0.0,4.191255364806866 -33,11.0,11.0,6.573961583776156,-24.424167659260668 -33,11.0,12.0,0.0,7.142857142857143 -33,11.0,13.0,-1.5265676088395577,3.1734252729654173 -33,11.0,14.0,-3.0953961826564296,6.097275864326261 -33,11.0,15.0,-1.9519977922801688,4.104359379111847 -33,12.0,11.0,0.0,7.142857142857143 -33,12.0,12.0,0.0,-7.142857142857143 -33,13.0,11.0,-1.5265676088395577,3.1734252729654173 -33,13.0,13.0,4.01751987283902,-5.424299332335067 -33,13.0,14.0,-2.4909522639994623,2.250874059369649 -33,14.0,11.0,-3.0953961826564296,6.097275864326261 -33,14.0,13.0,-2.4909522639994623,2.250874059369649 -33,14.0,14.0,9.365498545964757,-16.01163373210796 -33,14.0,17.0,-1.8108011504072024,3.687418931630696 -33,14.0,22.0,-1.9683489489016612,3.976064876781356 -33,15.0,11.0,-1.9519977922801688,4.104359379111847 -33,15.0,15.0,3.271064728633931,-8.94513365126506 -33,15.0,16.0,-1.3190669363537617,4.8407742721532125 -33,16.0,9.0,-3.956039125715353,10.317447719844054 -33,16.0,15.0,-1.3190669363537617,4.8407742721532125 -33,16.0,16.0,5.275106062069114,-15.158221991997266 -33,17.0,14.0,-1.8108011504072024,3.687418931630696 -33,17.0,17.0,4.886487584415919,-9.906177730909668 -33,17.0,18.0,-3.0756864340087167,6.218758799278971 -33,18.0,17.0,-3.0756864340087167,6.218758799278971 -33,18.0,18.0,8.958039375185187,-17.98346468163191 -33,18.0,19.0,-5.88235294117647,11.76470588235294 -33,19.0,9.0,-1.7848303152666305,3.98535828943083 -33,19.0,18.0,-5.88235294117647,11.76470588235294 -33,19.0,19.0,7.6671832564431,-15.75006417178377 -33,20.0,9.0,-5.101853820159654,10.98071411292983 -33,20.0,20.0,21.876495189895888,-45.10843276170355 -33,20.0,21.0,-16.774641369736234,34.127718648773715 -33,21.0,9.0,-2.619319553382597,5.400770303329455 -33,21.0,20.0,-16.774641369736234,34.127718648773715 -33,21.0,21.0,21.93449907537439,-43.48289181517921 -33,21.0,23.0,-2.5405381522555563,3.95440286307604 -33,22.0,14.0,-1.9683489489016612,3.976064876781356 -33,22.0,22.0,3.429754555384988,-6.965303617315433 -33,22.0,23.0,-1.4614056064833263,2.989238740534077 -33,23.0,21.0,-2.5405381522555563,3.95440286307604 -33,23.0,22.0,-1.4614056064833263,2.989238740534077 -33,23.0,23.0,5.311836702613133,-9.188263657315172 -33,23.0,24.0,-1.3098929438742493,2.287622053705056 -33,24.0,23.0,-1.3098929438742493,2.287622053705056 -33,24.0,24.0,4.495715080321987,-7.864978761969621 -33,24.0,25.0,-1.2165301194494855,1.8171440463475024 -33,24.0,26.0,-1.9692920169982515,3.760212661917064 -33,25.0,24.0,-1.2165301194494855,1.8171440463475024 -33,25.0,25.0,1.2165301194494855,-1.8171440463475024 -33,26.0,24.0,-1.9692920169982515,3.760212661917064 -33,26.0,26.0,3.652281470778589,-9.46044252232512 -33,26.0,27.0,0.0,2.608731947574922 -33,26.0,28.0,-0.99553355095268,1.881005840357816 -33,26.0,29.0,-0.6874559028276572,1.293971494797717 -33,27.0,5.0,-4.362844058012917,15.463571542897856 -33,27.0,7.0,-1.4439790613954469,4.540814658476248 -33,27.0,26.0,0.0,2.608731947574922 -33,27.0,27.0,5.806823119408364,-22.67145722159613 -33,28.0,26.0,-0.99553355095268,1.881005840357816 -33,28.0,28.0,1.9075867579849564,-3.604364401207048 -33,28.0,29.0,-0.9120532070322764,1.7233585608492326 -33,29.0,26.0,-0.6874559028276572,1.293971494797717 -33,29.0,28.0,-0.9120532070322764,1.7233585608492326 -33,29.0,29.0,1.5995091098599337,-3.0173300556469496 -34,0.0,0.0,6.765516048652632,-21.23160167089863 -34,0.0,1.0,-5.224646179885656,15.646726840803398 -34,0.0,2.0,-1.5408698687669766,5.631674830095234 -34,1.0,0.0,-5.224646179885656,15.646726840803398 -34,1.0,1.0,9.75228216552403,-30.648662892676068 -34,1.0,3.0,-1.7055303166990268,5.1973792282565086 -34,1.0,4.0,-1.1359607881738778,4.772479328281356 -34,1.0,5.0,-1.6861448807654689,5.116477495334806 -34,2.0,0.0,-1.5408698687669766,5.631674830095234 -34,2.0,2.0,9.736318911079088,-29.13794745915803 -34,2.0,3.0,-8.19544904231211,23.5308726290628 -34,3.0,1.0,-1.7055303166990268,5.1973792282565086 -34,3.0,2.0,-8.19544904231211,23.5308726290628 -34,3.0,3.0,16.314103089185693,-55.509410535254254 -34,3.0,5.0,-6.413123730174556,22.31120356548123 -34,3.0,11.0,0.0,4.191255364806866 -34,4.0,1.0,-1.1359607881738778,4.772479328281356 -34,4.0,4.0,4.089980824135861,-12.190647245055052 -34,4.0,6.0,-2.954020035961983,7.449267916773697 -34,5.0,1.0,-1.6861448807654689,5.116477495334806 -34,5.0,3.0,-6.413123730174556,22.31120356548123 -34,5.0,5.0,22.341631269034565,-82.8291478657789 -34,5.0,6.0,-3.590210423980992,11.02611441072814 -34,5.0,7.0,-6.289308176100628,22.0125786163522 -34,5.0,8.0,0.0,4.915840805411357 -34,5.0,9.0,0.0,1.8561002591115965 -34,5.0,27.0,-4.362844058012917,15.463571542897856 -34,6.0,4.0,-2.954020035961983,7.449267916773697 -34,6.0,5.0,-3.590210423980992,11.02611441072814 -34,6.0,6.0,6.544230459942975,-18.45668232750184 -34,7.0,5.0,-6.289308176100628,22.0125786163522 -34,7.0,7.0,7.733287237496075,-26.527493274828448 -34,7.0,27.0,-1.4439790613954469,4.540814658476248 -34,8.0,5.0,0.0,4.915840805411357 -34,8.0,8.0,0.0,-18.706293706293707 -34,8.0,9.0,0.0,9.090909090909092 -34,8.0,10.0,0.0,4.807692307692308 -34,9.0,5.0,0.0,1.8561002591115965 -34,9.0,8.0,0.0,9.090909090909092 -34,9.0,9.0,13.462042814524237,-41.3837606675224 -34,9.0,16.0,-3.956039125715353,10.317447719844054 -34,9.0,19.0,-1.7848303152666305,3.98535828943083 -34,9.0,20.0,-5.101853820159654,10.98071411292983 -34,9.0,21.0,-2.619319553382597,5.400770303329455 -34,10.0,8.0,0.0,4.807692307692308 -34,10.0,10.0,0.0,-4.807692307692308 -34,11.0,3.0,0.0,4.191255364806866 -34,11.0,11.0,6.573961583776156,-24.424167659260668 -34,11.0,12.0,0.0,7.142857142857143 -34,11.0,13.0,-1.5265676088395577,3.1734252729654173 -34,11.0,14.0,-3.0953961826564296,6.097275864326261 -34,11.0,15.0,-1.9519977922801688,4.104359379111847 -34,12.0,11.0,0.0,7.142857142857143 -34,12.0,12.0,0.0,-7.142857142857143 -34,13.0,11.0,-1.5265676088395577,3.1734252729654173 -34,13.0,13.0,4.01751987283902,-5.424299332335067 -34,13.0,14.0,-2.4909522639994623,2.250874059369649 -34,14.0,11.0,-3.0953961826564296,6.097275864326261 -34,14.0,13.0,-2.4909522639994623,2.250874059369649 -34,14.0,14.0,9.365498545964757,-16.01163373210796 -34,14.0,17.0,-1.8108011504072024,3.687418931630696 -34,14.0,22.0,-1.9683489489016612,3.976064876781356 -34,15.0,11.0,-1.9519977922801688,4.104359379111847 -34,15.0,15.0,3.271064728633931,-8.94513365126506 -34,15.0,16.0,-1.3190669363537617,4.8407742721532125 -34,16.0,9.0,-3.956039125715353,10.317447719844054 -34,16.0,15.0,-1.3190669363537617,4.8407742721532125 -34,16.0,16.0,5.275106062069114,-15.158221991997266 -34,17.0,14.0,-1.8108011504072024,3.687418931630696 -34,17.0,17.0,4.886487584415919,-9.906177730909668 -34,17.0,18.0,-3.0756864340087167,6.218758799278971 -34,18.0,17.0,-3.0756864340087167,6.218758799278971 -34,18.0,18.0,8.958039375185187,-17.98346468163191 -34,18.0,19.0,-5.88235294117647,11.76470588235294 -34,19.0,9.0,-1.7848303152666305,3.98535828943083 -34,19.0,18.0,-5.88235294117647,11.76470588235294 -34,19.0,19.0,7.6671832564431,-15.75006417178377 -34,20.0,9.0,-5.101853820159654,10.98071411292983 -34,20.0,20.0,21.876495189895888,-45.10843276170355 -34,20.0,21.0,-16.774641369736234,34.127718648773715 -34,21.0,9.0,-2.619319553382597,5.400770303329455 -34,21.0,20.0,-16.774641369736234,34.127718648773715 -34,21.0,21.0,21.93449907537439,-43.48289181517921 -34,21.0,23.0,-2.5405381522555563,3.95440286307604 -34,22.0,14.0,-1.9683489489016612,3.976064876781356 -34,22.0,22.0,3.429754555384988,-6.965303617315433 -34,22.0,23.0,-1.4614056064833263,2.989238740534077 -34,23.0,21.0,-2.5405381522555563,3.95440286307604 -34,23.0,22.0,-1.4614056064833263,2.989238740534077 -34,23.0,23.0,5.311836702613133,-9.188263657315172 -34,23.0,24.0,-1.3098929438742493,2.287622053705056 -34,24.0,23.0,-1.3098929438742493,2.287622053705056 -34,24.0,24.0,4.495715080321987,-7.864978761969621 -34,24.0,25.0,-1.2165301194494855,1.8171440463475024 -34,24.0,26.0,-1.9692920169982515,3.760212661917064 -34,25.0,24.0,-1.2165301194494855,1.8171440463475024 -34,25.0,25.0,1.2165301194494855,-1.8171440463475024 -34,26.0,24.0,-1.9692920169982515,3.760212661917064 -34,26.0,26.0,3.652281470778589,-9.46044252232512 -34,26.0,27.0,0.0,2.608731947574922 -34,26.0,28.0,-0.99553355095268,1.881005840357816 -34,26.0,29.0,-0.6874559028276572,1.293971494797717 -34,27.0,5.0,-4.362844058012917,15.463571542897856 -34,27.0,7.0,-1.4439790613954469,4.540814658476248 -34,27.0,26.0,0.0,2.608731947574922 -34,27.0,27.0,5.806823119408364,-22.67145722159613 -34,28.0,26.0,-0.99553355095268,1.881005840357816 -34,28.0,28.0,1.9075867579849564,-3.604364401207048 -34,28.0,29.0,-0.9120532070322764,1.7233585608492326 -34,29.0,26.0,-0.6874559028276572,1.293971494797717 -34,29.0,28.0,-0.9120532070322764,1.7233585608492326 -34,29.0,29.0,1.5995091098599337,-3.0173300556469496 -35,0.0,0.0,6.765516048652632,-21.23160167089863 -35,0.0,1.0,-5.224646179885656,15.646726840803398 -35,0.0,2.0,-1.5408698687669766,5.631674830095234 -35,1.0,0.0,-5.224646179885656,15.646726840803398 -35,1.0,1.0,9.75228216552403,-30.648662892676068 -35,1.0,3.0,-1.7055303166990268,5.1973792282565086 -35,1.0,4.0,-1.1359607881738778,4.772479328281356 -35,1.0,5.0,-1.6861448807654689,5.116477495334806 -35,2.0,0.0,-1.5408698687669766,5.631674830095234 -35,2.0,2.0,9.736318911079088,-29.13794745915803 -35,2.0,3.0,-8.19544904231211,23.5308726290628 -35,3.0,1.0,-1.7055303166990268,5.1973792282565086 -35,3.0,2.0,-8.19544904231211,23.5308726290628 -35,3.0,3.0,16.314103089185693,-55.509410535254254 -35,3.0,5.0,-6.413123730174556,22.31120356548123 -35,3.0,11.0,0.0,4.191255364806866 -35,4.0,1.0,-1.1359607881738778,4.772479328281356 -35,4.0,4.0,4.089980824135861,-12.190647245055052 -35,4.0,6.0,-2.954020035961983,7.449267916773697 -35,5.0,1.0,-1.6861448807654689,5.116477495334806 -35,5.0,3.0,-6.413123730174556,22.31120356548123 -35,5.0,5.0,22.341631269034565,-82.8291478657789 -35,5.0,6.0,-3.590210423980992,11.02611441072814 -35,5.0,7.0,-6.289308176100628,22.0125786163522 -35,5.0,8.0,0.0,4.915840805411357 -35,5.0,9.0,0.0,1.8561002591115965 -35,5.0,27.0,-4.362844058012917,15.463571542897856 -35,6.0,4.0,-2.954020035961983,7.449267916773697 -35,6.0,5.0,-3.590210423980992,11.02611441072814 -35,6.0,6.0,6.544230459942975,-18.45668232750184 -35,7.0,5.0,-6.289308176100628,22.0125786163522 -35,7.0,7.0,7.733287237496075,-26.527493274828448 -35,7.0,27.0,-1.4439790613954469,4.540814658476248 -35,8.0,5.0,0.0,4.915840805411357 -35,8.0,8.0,0.0,-18.706293706293707 -35,8.0,9.0,0.0,9.090909090909092 -35,8.0,10.0,0.0,4.807692307692308 -35,9.0,5.0,0.0,1.8561002591115965 -35,9.0,8.0,0.0,9.090909090909092 -35,9.0,9.0,13.462042814524237,-41.3837606675224 -35,9.0,16.0,-3.956039125715353,10.317447719844054 -35,9.0,19.0,-1.7848303152666305,3.98535828943083 -35,9.0,20.0,-5.101853820159654,10.98071411292983 -35,9.0,21.0,-2.619319553382597,5.400770303329455 -35,10.0,8.0,0.0,4.807692307692308 -35,10.0,10.0,0.0,-4.807692307692308 -35,11.0,3.0,0.0,4.191255364806866 -35,11.0,11.0,5.047393974936599,-21.25074238629525 -35,11.0,12.0,0.0,7.142857142857143 -35,11.0,14.0,-3.0953961826564296,6.097275864326261 -35,11.0,15.0,-1.9519977922801688,4.104359379111847 -35,12.0,11.0,0.0,7.142857142857143 -35,12.0,12.0,0.0,-7.142857142857143 -35,13.0,13.0,2.4909522639994623,-2.250874059369649 -35,13.0,14.0,-2.4909522639994623,2.250874059369649 -35,14.0,11.0,-3.0953961826564296,6.097275864326261 -35,14.0,13.0,-2.4909522639994623,2.250874059369649 -35,14.0,14.0,7.397149597063095,-12.035568855326606 -35,14.0,17.0,-1.8108011504072024,3.687418931630696 -35,15.0,11.0,-1.9519977922801688,4.104359379111847 -35,15.0,15.0,3.271064728633931,-8.94513365126506 -35,15.0,16.0,-1.3190669363537617,4.8407742721532125 -35,16.0,9.0,-3.956039125715353,10.317447719844054 -35,16.0,15.0,-1.3190669363537617,4.8407742721532125 -35,16.0,16.0,5.275106062069114,-15.158221991997266 -35,17.0,14.0,-1.8108011504072024,3.687418931630696 -35,17.0,17.0,4.886487584415919,-9.906177730909668 -35,17.0,18.0,-3.0756864340087167,6.218758799278971 -35,18.0,17.0,-3.0756864340087167,6.218758799278971 -35,18.0,18.0,8.958039375185187,-17.98346468163191 -35,18.0,19.0,-5.88235294117647,11.76470588235294 -35,19.0,9.0,-1.7848303152666305,3.98535828943083 -35,19.0,18.0,-5.88235294117647,11.76470588235294 -35,19.0,19.0,7.6671832564431,-15.75006417178377 -35,20.0,9.0,-5.101853820159654,10.98071411292983 -35,20.0,20.0,21.876495189895888,-45.10843276170355 -35,20.0,21.0,-16.774641369736234,34.127718648773715 -35,21.0,9.0,-2.619319553382597,5.400770303329455 -35,21.0,20.0,-16.774641369736234,34.127718648773715 -35,21.0,21.0,21.93449907537439,-43.48289181517921 -35,21.0,23.0,-2.5405381522555563,3.95440286307604 -35,22.0,22.0,1.4614056064833263,-2.989238740534077 -35,22.0,23.0,-1.4614056064833263,2.989238740534077 -35,23.0,21.0,-2.5405381522555563,3.95440286307604 -35,23.0,22.0,-1.4614056064833263,2.989238740534077 -35,23.0,23.0,5.311836702613133,-9.188263657315172 -35,23.0,24.0,-1.3098929438742493,2.287622053705056 -35,24.0,23.0,-1.3098929438742493,2.287622053705056 -35,24.0,24.0,4.495715080321987,-7.864978761969621 -35,24.0,25.0,-1.2165301194494855,1.8171440463475024 -35,24.0,26.0,-1.9692920169982515,3.760212661917064 -35,25.0,24.0,-1.2165301194494855,1.8171440463475024 -35,25.0,25.0,1.2165301194494855,-1.8171440463475024 -35,26.0,24.0,-1.9692920169982515,3.760212661917064 -35,26.0,26.0,3.652281470778589,-9.46044252232512 -35,26.0,27.0,0.0,2.608731947574922 -35,26.0,28.0,-0.99553355095268,1.881005840357816 -35,26.0,29.0,-0.6874559028276572,1.293971494797717 -35,27.0,5.0,-4.362844058012917,15.463571542897856 -35,27.0,7.0,-1.4439790613954469,4.540814658476248 -35,27.0,26.0,0.0,2.608731947574922 -35,27.0,27.0,5.806823119408364,-22.67145722159613 -35,28.0,26.0,-0.99553355095268,1.881005840357816 -35,28.0,28.0,1.9075867579849564,-3.604364401207048 -35,28.0,29.0,-0.9120532070322764,1.7233585608492326 -35,29.0,26.0,-0.6874559028276572,1.293971494797717 -35,29.0,28.0,-0.9120532070322764,1.7233585608492326 -35,29.0,29.0,1.5995091098599337,-3.0173300556469496 -36,0.0,0.0,6.765516048652632,-21.23160167089863 -36,0.0,1.0,-5.224646179885656,15.646726840803398 -36,0.0,2.0,-1.5408698687669766,5.631674830095234 -36,1.0,0.0,-5.224646179885656,15.646726840803398 -36,1.0,1.0,9.75228216552403,-30.648662892676068 -36,1.0,3.0,-1.7055303166990268,5.1973792282565086 -36,1.0,4.0,-1.1359607881738778,4.772479328281356 -36,1.0,5.0,-1.6861448807654689,5.116477495334806 -36,2.0,0.0,-1.5408698687669766,5.631674830095234 -36,2.0,2.0,9.736318911079088,-29.13794745915803 -36,2.0,3.0,-8.19544904231211,23.5308726290628 -36,3.0,1.0,-1.7055303166990268,5.1973792282565086 -36,3.0,2.0,-8.19544904231211,23.5308726290628 -36,3.0,3.0,16.314103089185693,-51.01235542280054 -36,3.0,5.0,-6.413123730174556,22.31120356548123 -36,4.0,1.0,-1.1359607881738778,4.772479328281356 -36,4.0,4.0,4.089980824135861,-12.190647245055052 -36,4.0,6.0,-2.954020035961983,7.449267916773697 -36,5.0,1.0,-1.6861448807654689,5.116477495334806 -36,5.0,3.0,-6.413123730174556,22.31120356548123 -36,5.0,5.0,22.341631269034565,-82.8291478657789 -36,5.0,6.0,-3.590210423980992,11.02611441072814 -36,5.0,7.0,-6.289308176100628,22.0125786163522 -36,5.0,8.0,0.0,4.915840805411357 -36,5.0,9.0,0.0,1.8561002591115965 -36,5.0,27.0,-4.362844058012917,15.463571542897856 -36,6.0,4.0,-2.954020035961983,7.449267916773697 -36,6.0,5.0,-3.590210423980992,11.02611441072814 -36,6.0,6.0,6.544230459942975,-18.45668232750184 -36,7.0,5.0,-6.289308176100628,22.0125786163522 -36,7.0,7.0,7.733287237496075,-26.527493274828448 -36,7.0,27.0,-1.4439790613954469,4.540814658476248 -36,8.0,5.0,0.0,4.915840805411357 -36,8.0,8.0,0.0,-18.706293706293707 -36,8.0,9.0,0.0,9.090909090909092 -36,8.0,10.0,0.0,4.807692307692308 -36,9.0,5.0,0.0,1.8561002591115965 -36,9.0,8.0,0.0,9.090909090909092 -36,9.0,9.0,13.462042814524237,-41.3837606675224 -36,9.0,16.0,-3.956039125715353,10.317447719844054 -36,9.0,19.0,-1.7848303152666305,3.98535828943083 -36,9.0,20.0,-5.101853820159654,10.98071411292983 -36,9.0,21.0,-2.619319553382597,5.400770303329455 -36,10.0,8.0,0.0,4.807692307692308 -36,10.0,10.0,0.0,-4.807692307692308 -36,11.0,11.0,6.573961583776156,-20.517917659260668 -36,11.0,12.0,0.0,7.142857142857143 -36,11.0,13.0,-1.5265676088395577,3.1734252729654173 -36,11.0,14.0,-3.0953961826564296,6.097275864326261 -36,11.0,15.0,-1.9519977922801688,4.104359379111847 -36,12.0,11.0,0.0,7.142857142857143 -36,12.0,12.0,0.0,-7.142857142857143 -36,13.0,11.0,-1.5265676088395577,3.1734252729654173 -36,13.0,13.0,4.01751987283902,-5.424299332335067 -36,13.0,14.0,-2.4909522639994623,2.250874059369649 -36,14.0,11.0,-3.0953961826564296,6.097275864326261 -36,14.0,13.0,-2.4909522639994623,2.250874059369649 -36,14.0,14.0,9.365498545964757,-16.01163373210796 -36,14.0,17.0,-1.8108011504072024,3.687418931630696 -36,14.0,22.0,-1.9683489489016612,3.976064876781356 -36,15.0,11.0,-1.9519977922801688,4.104359379111847 -36,15.0,15.0,3.271064728633931,-8.94513365126506 -36,15.0,16.0,-1.3190669363537617,4.8407742721532125 -36,16.0,9.0,-3.956039125715353,10.317447719844054 -36,16.0,15.0,-1.3190669363537617,4.8407742721532125 -36,16.0,16.0,5.275106062069114,-15.158221991997266 -36,17.0,14.0,-1.8108011504072024,3.687418931630696 -36,17.0,17.0,4.886487584415919,-9.906177730909668 -36,17.0,18.0,-3.0756864340087167,6.218758799278971 -36,18.0,17.0,-3.0756864340087167,6.218758799278971 -36,18.0,18.0,8.958039375185187,-17.98346468163191 -36,18.0,19.0,-5.88235294117647,11.76470588235294 -36,19.0,9.0,-1.7848303152666305,3.98535828943083 -36,19.0,18.0,-5.88235294117647,11.76470588235294 -36,19.0,19.0,7.6671832564431,-15.75006417178377 -36,20.0,9.0,-5.101853820159654,10.98071411292983 -36,20.0,20.0,21.876495189895888,-45.10843276170355 -36,20.0,21.0,-16.774641369736234,34.127718648773715 -36,21.0,9.0,-2.619319553382597,5.400770303329455 -36,21.0,20.0,-16.774641369736234,34.127718648773715 -36,21.0,21.0,21.93449907537439,-43.48289181517921 -36,21.0,23.0,-2.5405381522555563,3.95440286307604 -36,22.0,14.0,-1.9683489489016612,3.976064876781356 -36,22.0,22.0,3.429754555384988,-6.965303617315433 -36,22.0,23.0,-1.4614056064833263,2.989238740534077 -36,23.0,21.0,-2.5405381522555563,3.95440286307604 -36,23.0,22.0,-1.4614056064833263,2.989238740534077 -36,23.0,23.0,5.311836702613133,-9.188263657315172 -36,23.0,24.0,-1.3098929438742493,2.287622053705056 -36,24.0,23.0,-1.3098929438742493,2.287622053705056 -36,24.0,24.0,4.495715080321987,-7.864978761969621 -36,24.0,25.0,-1.2165301194494855,1.8171440463475024 -36,24.0,26.0,-1.9692920169982515,3.760212661917064 -36,25.0,24.0,-1.2165301194494855,1.8171440463475024 -36,25.0,25.0,1.2165301194494855,-1.8171440463475024 -36,26.0,24.0,-1.9692920169982515,3.760212661917064 -36,26.0,26.0,3.652281470778589,-9.46044252232512 -36,26.0,27.0,0.0,2.608731947574922 -36,26.0,28.0,-0.99553355095268,1.881005840357816 -36,26.0,29.0,-0.6874559028276572,1.293971494797717 -36,27.0,5.0,-4.362844058012917,15.463571542897856 -36,27.0,7.0,-1.4439790613954469,4.540814658476248 -36,27.0,26.0,0.0,2.608731947574922 -36,27.0,27.0,5.806823119408364,-22.67145722159613 -36,28.0,26.0,-0.99553355095268,1.881005840357816 -36,28.0,28.0,1.9075867579849564,-3.604364401207048 -36,28.0,29.0,-0.9120532070322764,1.7233585608492326 -36,29.0,26.0,-0.6874559028276572,1.293971494797717 -36,29.0,28.0,-0.9120532070322764,1.7233585608492326 -36,29.0,29.0,1.5995091098599337,-3.0173300556469496 -37,0.0,0.0,6.765516048652632,-21.23160167089863 -37,0.0,1.0,-5.224646179885656,15.646726840803398 -37,0.0,2.0,-1.5408698687669766,5.631674830095234 -37,1.0,0.0,-5.224646179885656,15.646726840803398 -37,1.0,1.0,9.75228216552403,-30.648662892676068 -37,1.0,3.0,-1.7055303166990268,5.1973792282565086 -37,1.0,4.0,-1.1359607881738778,4.772479328281356 -37,1.0,5.0,-1.6861448807654689,5.116477495334806 -37,2.0,0.0,-1.5408698687669766,5.631674830095234 -37,2.0,2.0,9.736318911079088,-29.13794745915803 -37,2.0,3.0,-8.19544904231211,23.5308726290628 -37,3.0,1.0,-1.7055303166990268,5.1973792282565086 -37,3.0,2.0,-8.19544904231211,23.5308726290628 -37,3.0,3.0,16.314103089185693,-55.509410535254254 -37,3.0,5.0,-6.413123730174556,22.31120356548123 -37,3.0,11.0,0.0,4.191255364806866 -37,4.0,1.0,-1.1359607881738778,4.772479328281356 -37,4.0,4.0,4.089980824135861,-12.190647245055052 -37,4.0,6.0,-2.954020035961983,7.449267916773697 -37,5.0,1.0,-1.6861448807654689,5.116477495334806 -37,5.0,3.0,-6.413123730174556,22.31120356548123 -37,5.0,5.0,22.341631269034565,-82.8291478657789 -37,5.0,6.0,-3.590210423980992,11.02611441072814 -37,5.0,7.0,-6.289308176100628,22.0125786163522 -37,5.0,8.0,0.0,4.915840805411357 -37,5.0,9.0,0.0,1.8561002591115965 -37,5.0,27.0,-4.362844058012917,15.463571542897856 -37,6.0,4.0,-2.954020035961983,7.449267916773697 -37,6.0,5.0,-3.590210423980992,11.02611441072814 -37,6.0,6.0,6.544230459942975,-18.45668232750184 -37,7.0,5.0,-6.289308176100628,22.0125786163522 -37,7.0,7.0,7.733287237496075,-26.527493274828448 -37,7.0,27.0,-1.4439790613954469,4.540814658476248 -37,8.0,5.0,0.0,4.915840805411357 -37,8.0,8.0,0.0,-18.706293706293707 -37,8.0,9.0,0.0,9.090909090909092 -37,8.0,10.0,0.0,4.807692307692308 -37,9.0,5.0,0.0,1.8561002591115965 -37,9.0,8.0,0.0,9.090909090909092 -37,9.0,9.0,13.462042814524237,-41.3837606675224 -37,9.0,16.0,-3.956039125715353,10.317447719844054 -37,9.0,19.0,-1.7848303152666305,3.98535828943083 -37,9.0,20.0,-5.101853820159654,10.98071411292983 -37,9.0,21.0,-2.619319553382597,5.400770303329455 -37,10.0,8.0,0.0,4.807692307692308 -37,10.0,10.0,0.0,-4.807692307692308 -37,11.0,3.0,0.0,4.191255364806866 -37,11.0,11.0,6.573961583776156,-24.424167659260668 -37,11.0,12.0,0.0,7.142857142857143 -37,11.0,13.0,-1.5265676088395577,3.1734252729654173 -37,11.0,14.0,-3.0953961826564296,6.097275864326261 -37,11.0,15.0,-1.9519977922801688,4.104359379111847 -37,12.0,11.0,0.0,7.142857142857143 -37,12.0,12.0,0.0,-7.142857142857143 -37,13.0,11.0,-1.5265676088395577,3.1734252729654173 -37,13.0,13.0,4.01751987283902,-5.424299332335067 -37,13.0,14.0,-2.4909522639994623,2.250874059369649 -37,14.0,11.0,-3.0953961826564296,6.097275864326261 -37,14.0,13.0,-2.4909522639994623,2.250874059369649 -37,14.0,14.0,9.365498545964757,-16.01163373210796 -37,14.0,17.0,-1.8108011504072024,3.687418931630696 -37,14.0,22.0,-1.9683489489016612,3.976064876781356 -37,15.0,11.0,-1.9519977922801688,4.104359379111847 -37,15.0,15.0,3.271064728633931,-8.94513365126506 -37,15.0,16.0,-1.3190669363537617,4.8407742721532125 -37,16.0,9.0,-3.956039125715353,10.317447719844054 -37,16.0,15.0,-1.3190669363537617,4.8407742721532125 -37,16.0,16.0,5.275106062069114,-15.158221991997266 -37,17.0,14.0,-1.8108011504072024,3.687418931630696 -37,17.0,17.0,4.886487584415919,-9.906177730909668 -37,17.0,18.0,-3.0756864340087167,6.218758799278971 -37,18.0,17.0,-3.0756864340087167,6.218758799278971 -37,18.0,18.0,8.958039375185187,-17.98346468163191 -37,18.0,19.0,-5.88235294117647,11.76470588235294 -37,19.0,9.0,-1.7848303152666305,3.98535828943083 -37,19.0,18.0,-5.88235294117647,11.76470588235294 -37,19.0,19.0,7.6671832564431,-15.75006417178377 -37,20.0,9.0,-5.101853820159654,10.98071411292983 -37,20.0,20.0,21.876495189895888,-45.10843276170355 -37,20.0,21.0,-16.774641369736234,34.127718648773715 -37,21.0,9.0,-2.619319553382597,5.400770303329455 -37,21.0,20.0,-16.774641369736234,34.127718648773715 -37,21.0,21.0,21.93449907537439,-43.48289181517921 -37,21.0,23.0,-2.5405381522555563,3.95440286307604 -37,22.0,14.0,-1.9683489489016612,3.976064876781356 -37,22.0,22.0,3.429754555384988,-6.965303617315433 -37,22.0,23.0,-1.4614056064833263,2.989238740534077 -37,23.0,21.0,-2.5405381522555563,3.95440286307604 -37,23.0,22.0,-1.4614056064833263,2.989238740534077 -37,23.0,23.0,5.311836702613133,-9.188263657315172 -37,23.0,24.0,-1.3098929438742493,2.287622053705056 -37,24.0,23.0,-1.3098929438742493,2.287622053705056 -37,24.0,24.0,4.495715080321987,-7.864978761969621 -37,24.0,25.0,-1.2165301194494855,1.8171440463475024 -37,24.0,26.0,-1.9692920169982515,3.760212661917064 -37,25.0,24.0,-1.2165301194494855,1.8171440463475024 -37,25.0,25.0,1.2165301194494855,-1.8171440463475024 -37,26.0,24.0,-1.9692920169982515,3.760212661917064 -37,26.0,26.0,3.652281470778589,-9.46044252232512 -37,26.0,27.0,0.0,2.608731947574922 -37,26.0,28.0,-0.99553355095268,1.881005840357816 -37,26.0,29.0,-0.6874559028276572,1.293971494797717 -37,27.0,5.0,-4.362844058012917,15.463571542897856 -37,27.0,7.0,-1.4439790613954469,4.540814658476248 -37,27.0,26.0,0.0,2.608731947574922 -37,27.0,27.0,5.806823119408364,-22.67145722159613 -37,28.0,26.0,-0.99553355095268,1.881005840357816 -37,28.0,28.0,1.9075867579849564,-3.604364401207048 -37,28.0,29.0,-0.9120532070322764,1.7233585608492326 -37,29.0,26.0,-0.6874559028276572,1.293971494797717 -37,29.0,28.0,-0.9120532070322764,1.7233585608492326 -37,29.0,29.0,1.5995091098599337,-3.0173300556469496 -38,0.0,0.0,6.765516048652632,-21.23160167089863 -38,0.0,1.0,-5.224646179885656,15.646726840803398 -38,0.0,2.0,-1.5408698687669766,5.631674830095234 -38,1.0,0.0,-5.224646179885656,15.646726840803398 -38,1.0,1.0,9.75228216552403,-30.648662892676068 -38,1.0,3.0,-1.7055303166990268,5.1973792282565086 -38,1.0,4.0,-1.1359607881738778,4.772479328281356 -38,1.0,5.0,-1.6861448807654689,5.116477495334806 -38,2.0,0.0,-1.5408698687669766,5.631674830095234 -38,2.0,2.0,9.736318911079088,-29.13794745915803 -38,2.0,3.0,-8.19544904231211,23.5308726290628 -38,3.0,1.0,-1.7055303166990268,5.1973792282565086 -38,3.0,2.0,-8.19544904231211,23.5308726290628 -38,3.0,3.0,16.314103089185693,-51.01235542280054 -38,3.0,5.0,-6.413123730174556,22.31120356548123 -38,4.0,1.0,-1.1359607881738778,4.772479328281356 -38,4.0,4.0,4.089980824135861,-12.190647245055052 -38,4.0,6.0,-2.954020035961983,7.449267916773697 -38,5.0,1.0,-1.6861448807654689,5.116477495334806 -38,5.0,3.0,-6.413123730174556,22.31120356548123 -38,5.0,5.0,22.341631269034565,-82.8291478657789 -38,5.0,6.0,-3.590210423980992,11.02611441072814 -38,5.0,7.0,-6.289308176100628,22.0125786163522 -38,5.0,8.0,0.0,4.915840805411357 -38,5.0,9.0,0.0,1.8561002591115965 -38,5.0,27.0,-4.362844058012917,15.463571542897856 -38,6.0,4.0,-2.954020035961983,7.449267916773697 -38,6.0,5.0,-3.590210423980992,11.02611441072814 -38,6.0,6.0,6.544230459942975,-18.45668232750184 -38,7.0,5.0,-6.289308176100628,22.0125786163522 -38,7.0,7.0,7.733287237496075,-26.527493274828448 -38,7.0,27.0,-1.4439790613954469,4.540814658476248 -38,8.0,5.0,0.0,4.915840805411357 -38,8.0,8.0,0.0,-18.706293706293707 -38,8.0,9.0,0.0,9.090909090909092 -38,8.0,10.0,0.0,4.807692307692308 -38,9.0,5.0,0.0,1.8561002591115965 -38,9.0,8.0,0.0,9.090909090909092 -38,9.0,9.0,13.462042814524237,-41.3837606675224 -38,9.0,16.0,-3.956039125715353,10.317447719844054 -38,9.0,19.0,-1.7848303152666305,3.98535828943083 -38,9.0,20.0,-5.101853820159654,10.98071411292983 -38,9.0,21.0,-2.619319553382597,5.400770303329455 -38,10.0,8.0,0.0,4.807692307692308 -38,10.0,10.0,0.0,-4.807692307692308 -38,11.0,11.0,6.573961583776156,-20.517917659260668 -38,11.0,12.0,0.0,7.142857142857143 -38,11.0,13.0,-1.5265676088395577,3.1734252729654173 -38,11.0,14.0,-3.0953961826564296,6.097275864326261 -38,11.0,15.0,-1.9519977922801688,4.104359379111847 -38,12.0,11.0,0.0,7.142857142857143 -38,12.0,12.0,0.0,-7.142857142857143 -38,13.0,11.0,-1.5265676088395577,3.1734252729654173 -38,13.0,13.0,4.01751987283902,-5.424299332335067 -38,13.0,14.0,-2.4909522639994623,2.250874059369649 -38,14.0,11.0,-3.0953961826564296,6.097275864326261 -38,14.0,13.0,-2.4909522639994623,2.250874059369649 -38,14.0,14.0,9.365498545964757,-16.01163373210796 -38,14.0,17.0,-1.8108011504072024,3.687418931630696 -38,14.0,22.0,-1.9683489489016612,3.976064876781356 -38,15.0,11.0,-1.9519977922801688,4.104359379111847 -38,15.0,15.0,3.271064728633931,-8.94513365126506 -38,15.0,16.0,-1.3190669363537617,4.8407742721532125 -38,16.0,9.0,-3.956039125715353,10.317447719844054 -38,16.0,15.0,-1.3190669363537617,4.8407742721532125 -38,16.0,16.0,5.275106062069114,-15.158221991997266 -38,17.0,14.0,-1.8108011504072024,3.687418931630696 -38,17.0,17.0,1.8108011504072024,-3.687418931630696 -38,18.0,18.0,5.88235294117647,-11.76470588235294 -38,18.0,19.0,-5.88235294117647,11.76470588235294 -38,19.0,9.0,-1.7848303152666305,3.98535828943083 -38,19.0,18.0,-5.88235294117647,11.76470588235294 -38,19.0,19.0,7.6671832564431,-15.75006417178377 -38,20.0,9.0,-5.101853820159654,10.98071411292983 -38,20.0,20.0,21.876495189895888,-45.10843276170355 -38,20.0,21.0,-16.774641369736234,34.127718648773715 -38,21.0,9.0,-2.619319553382597,5.400770303329455 -38,21.0,20.0,-16.774641369736234,34.127718648773715 -38,21.0,21.0,21.93449907537439,-43.48289181517921 -38,21.0,23.0,-2.5405381522555563,3.95440286307604 -38,22.0,14.0,-1.9683489489016612,3.976064876781356 -38,22.0,22.0,3.429754555384988,-6.965303617315433 -38,22.0,23.0,-1.4614056064833263,2.989238740534077 -38,23.0,21.0,-2.5405381522555563,3.95440286307604 -38,23.0,22.0,-1.4614056064833263,2.989238740534077 -38,23.0,23.0,5.311836702613133,-9.188263657315172 -38,23.0,24.0,-1.3098929438742493,2.287622053705056 -38,24.0,23.0,-1.3098929438742493,2.287622053705056 -38,24.0,24.0,4.495715080321987,-7.864978761969621 -38,24.0,25.0,-1.2165301194494855,1.8171440463475024 -38,24.0,26.0,-1.9692920169982515,3.760212661917064 -38,25.0,24.0,-1.2165301194494855,1.8171440463475024 -38,25.0,25.0,1.2165301194494855,-1.8171440463475024 -38,26.0,24.0,-1.9692920169982515,3.760212661917064 -38,26.0,26.0,3.652281470778589,-9.46044252232512 -38,26.0,27.0,0.0,2.608731947574922 -38,26.0,28.0,-0.99553355095268,1.881005840357816 -38,26.0,29.0,-0.6874559028276572,1.293971494797717 -38,27.0,5.0,-4.362844058012917,15.463571542897856 -38,27.0,7.0,-1.4439790613954469,4.540814658476248 -38,27.0,26.0,0.0,2.608731947574922 -38,27.0,27.0,5.806823119408364,-22.67145722159613 -38,28.0,26.0,-0.99553355095268,1.881005840357816 -38,28.0,28.0,1.9075867579849564,-3.604364401207048 -38,28.0,29.0,-0.9120532070322764,1.7233585608492326 -38,29.0,26.0,-0.6874559028276572,1.293971494797717 -38,29.0,28.0,-0.9120532070322764,1.7233585608492326 -38,29.0,29.0,1.5995091098599337,-3.0173300556469496 -39,0.0,0.0,6.765516048652632,-21.23160167089863 -39,0.0,1.0,-5.224646179885656,15.646726840803398 -39,0.0,2.0,-1.5408698687669766,5.631674830095234 -39,1.0,0.0,-5.224646179885656,15.646726840803398 -39,1.0,1.0,9.75228216552403,-30.648662892676068 -39,1.0,3.0,-1.7055303166990268,5.1973792282565086 -39,1.0,4.0,-1.1359607881738778,4.772479328281356 -39,1.0,5.0,-1.6861448807654689,5.116477495334806 -39,2.0,0.0,-1.5408698687669766,5.631674830095234 -39,2.0,2.0,9.736318911079088,-29.13794745915803 -39,2.0,3.0,-8.19544904231211,23.5308726290628 -39,3.0,1.0,-1.7055303166990268,5.1973792282565086 -39,3.0,2.0,-8.19544904231211,23.5308726290628 -39,3.0,3.0,16.314103089185693,-55.509410535254254 -39,3.0,5.0,-6.413123730174556,22.31120356548123 -39,3.0,11.0,0.0,4.191255364806866 -39,4.0,1.0,-1.1359607881738778,4.772479328281356 -39,4.0,4.0,4.089980824135861,-12.190647245055052 -39,4.0,6.0,-2.954020035961983,7.449267916773697 -39,5.0,1.0,-1.6861448807654689,5.116477495334806 -39,5.0,3.0,-6.413123730174556,22.31120356548123 -39,5.0,5.0,22.341631269034565,-82.8291478657789 -39,5.0,6.0,-3.590210423980992,11.02611441072814 -39,5.0,7.0,-6.289308176100628,22.0125786163522 -39,5.0,8.0,0.0,4.915840805411357 -39,5.0,9.0,0.0,1.8561002591115965 -39,5.0,27.0,-4.362844058012917,15.463571542897856 -39,6.0,4.0,-2.954020035961983,7.449267916773697 -39,6.0,5.0,-3.590210423980992,11.02611441072814 -39,6.0,6.0,6.544230459942975,-18.45668232750184 -39,7.0,5.0,-6.289308176100628,22.0125786163522 -39,7.0,7.0,7.733287237496075,-26.527493274828448 -39,7.0,27.0,-1.4439790613954469,4.540814658476248 -39,8.0,5.0,0.0,4.915840805411357 -39,8.0,8.0,0.0,-18.706293706293707 -39,8.0,9.0,0.0,9.090909090909092 -39,8.0,10.0,0.0,4.807692307692308 -39,9.0,5.0,0.0,1.8561002591115965 -39,9.0,8.0,0.0,9.090909090909092 -39,9.0,9.0,13.462042814524237,-41.3837606675224 -39,9.0,16.0,-3.956039125715353,10.317447719844054 -39,9.0,19.0,-1.7848303152666305,3.98535828943083 -39,9.0,20.0,-5.101853820159654,10.98071411292983 -39,9.0,21.0,-2.619319553382597,5.400770303329455 -39,10.0,8.0,0.0,4.807692307692308 -39,10.0,10.0,0.0,-4.807692307692308 -39,11.0,3.0,0.0,4.191255364806866 -39,11.0,11.0,6.573961583776156,-24.424167659260668 -39,11.0,12.0,0.0,7.142857142857143 -39,11.0,13.0,-1.5265676088395577,3.1734252729654173 -39,11.0,14.0,-3.0953961826564296,6.097275864326261 -39,11.0,15.0,-1.9519977922801688,4.104359379111847 -39,12.0,11.0,0.0,7.142857142857143 -39,12.0,12.0,0.0,-7.142857142857143 -39,13.0,11.0,-1.5265676088395577,3.1734252729654173 -39,13.0,13.0,4.01751987283902,-5.424299332335067 -39,13.0,14.0,-2.4909522639994623,2.250874059369649 -39,14.0,11.0,-3.0953961826564296,6.097275864326261 -39,14.0,13.0,-2.4909522639994623,2.250874059369649 -39,14.0,14.0,7.397149597063095,-12.035568855326606 -39,14.0,17.0,-1.8108011504072024,3.687418931630696 -39,15.0,11.0,-1.9519977922801688,4.104359379111847 -39,15.0,15.0,3.271064728633931,-8.94513365126506 -39,15.0,16.0,-1.3190669363537617,4.8407742721532125 -39,16.0,9.0,-3.956039125715353,10.317447719844054 -39,16.0,15.0,-1.3190669363537617,4.8407742721532125 -39,16.0,16.0,5.275106062069114,-15.158221991997266 -39,17.0,14.0,-1.8108011504072024,3.687418931630696 -39,17.0,17.0,4.886487584415919,-9.906177730909668 -39,17.0,18.0,-3.0756864340087167,6.218758799278971 -39,18.0,17.0,-3.0756864340087167,6.218758799278971 -39,18.0,18.0,8.958039375185187,-17.98346468163191 -39,18.0,19.0,-5.88235294117647,11.76470588235294 -39,19.0,9.0,-1.7848303152666305,3.98535828943083 -39,19.0,18.0,-5.88235294117647,11.76470588235294 -39,19.0,19.0,7.6671832564431,-15.75006417178377 -39,20.0,9.0,-5.101853820159654,10.98071411292983 -39,20.0,20.0,21.876495189895888,-45.10843276170355 -39,20.0,21.0,-16.774641369736234,34.127718648773715 -39,21.0,9.0,-2.619319553382597,5.400770303329455 -39,21.0,20.0,-16.774641369736234,34.127718648773715 -39,21.0,21.0,21.93449907537439,-43.48289181517921 -39,21.0,23.0,-2.5405381522555563,3.95440286307604 -39,22.0,22.0,1.4614056064833263,-2.989238740534077 -39,22.0,23.0,-1.4614056064833263,2.989238740534077 -39,23.0,21.0,-2.5405381522555563,3.95440286307604 -39,23.0,22.0,-1.4614056064833263,2.989238740534077 -39,23.0,23.0,5.311836702613133,-9.188263657315172 -39,23.0,24.0,-1.3098929438742493,2.287622053705056 -39,24.0,23.0,-1.3098929438742493,2.287622053705056 -39,24.0,24.0,4.495715080321987,-7.864978761969621 -39,24.0,25.0,-1.2165301194494855,1.8171440463475024 -39,24.0,26.0,-1.9692920169982515,3.760212661917064 -39,25.0,24.0,-1.2165301194494855,1.8171440463475024 -39,25.0,25.0,1.2165301194494855,-1.8171440463475024 -39,26.0,24.0,-1.9692920169982515,3.760212661917064 -39,26.0,26.0,3.652281470778589,-9.46044252232512 -39,26.0,27.0,0.0,2.608731947574922 -39,26.0,28.0,-0.99553355095268,1.881005840357816 -39,26.0,29.0,-0.6874559028276572,1.293971494797717 -39,27.0,5.0,-4.362844058012917,15.463571542897856 -39,27.0,7.0,-1.4439790613954469,4.540814658476248 -39,27.0,26.0,0.0,2.608731947574922 -39,27.0,27.0,5.806823119408364,-22.67145722159613 -39,28.0,26.0,-0.99553355095268,1.881005840357816 -39,28.0,28.0,1.9075867579849564,-3.604364401207048 -39,28.0,29.0,-0.9120532070322764,1.7233585608492326 -39,29.0,26.0,-0.6874559028276572,1.293971494797717 -39,29.0,28.0,-0.9120532070322764,1.7233585608492326 -39,29.0,29.0,1.5995091098599337,-3.0173300556469496 -40,0.0,0.0,6.765516048652632,-21.23160167089863 -40,0.0,1.0,-5.224646179885656,15.646726840803398 -40,0.0,2.0,-1.5408698687669766,5.631674830095234 -40,1.0,0.0,-5.224646179885656,15.646726840803398 -40,1.0,1.0,9.75228216552403,-30.648662892676068 -40,1.0,3.0,-1.7055303166990268,5.1973792282565086 -40,1.0,4.0,-1.1359607881738778,4.772479328281356 -40,1.0,5.0,-1.6861448807654689,5.116477495334806 -40,2.0,0.0,-1.5408698687669766,5.631674830095234 -40,2.0,2.0,9.736318911079088,-29.13794745915803 -40,2.0,3.0,-8.19544904231211,23.5308726290628 -40,3.0,1.0,-1.7055303166990268,5.1973792282565086 -40,3.0,2.0,-8.19544904231211,23.5308726290628 -40,3.0,3.0,16.314103089185693,-55.509410535254254 -40,3.0,5.0,-6.413123730174556,22.31120356548123 -40,3.0,11.0,0.0,4.191255364806866 -40,4.0,1.0,-1.1359607881738778,4.772479328281356 -40,4.0,4.0,4.089980824135861,-12.190647245055052 -40,4.0,6.0,-2.954020035961983,7.449267916773697 -40,5.0,1.0,-1.6861448807654689,5.116477495334806 -40,5.0,3.0,-6.413123730174556,22.31120356548123 -40,5.0,5.0,18.75142084505357,-71.81153345505078 -40,5.0,7.0,-6.289308176100628,22.0125786163522 -40,5.0,8.0,0.0,4.915840805411357 -40,5.0,9.0,0.0,1.8561002591115965 -40,5.0,27.0,-4.362844058012917,15.463571542897856 -40,6.0,4.0,-2.954020035961983,7.449267916773697 -40,6.0,6.0,2.954020035961983,-7.439067916773697 -40,7.0,5.0,-6.289308176100628,22.0125786163522 -40,7.0,7.0,7.733287237496075,-26.527493274828448 -40,7.0,27.0,-1.4439790613954469,4.540814658476248 -40,8.0,5.0,0.0,4.915840805411357 -40,8.0,8.0,0.0,-18.706293706293707 -40,8.0,9.0,0.0,9.090909090909092 -40,8.0,10.0,0.0,4.807692307692308 -40,9.0,5.0,0.0,1.8561002591115965 -40,9.0,8.0,0.0,9.090909090909092 -40,9.0,9.0,13.462042814524237,-41.3837606675224 -40,9.0,16.0,-3.956039125715353,10.317447719844054 -40,9.0,19.0,-1.7848303152666305,3.98535828943083 -40,9.0,20.0,-5.101853820159654,10.98071411292983 -40,9.0,21.0,-2.619319553382597,5.400770303329455 -40,10.0,8.0,0.0,4.807692307692308 -40,10.0,10.0,0.0,-4.807692307692308 -40,11.0,3.0,0.0,4.191255364806866 -40,11.0,11.0,6.573961583776156,-24.424167659260668 -40,11.0,12.0,0.0,7.142857142857143 -40,11.0,13.0,-1.5265676088395577,3.1734252729654173 -40,11.0,14.0,-3.0953961826564296,6.097275864326261 -40,11.0,15.0,-1.9519977922801688,4.104359379111847 -40,12.0,11.0,0.0,7.142857142857143 -40,12.0,12.0,0.0,-7.142857142857143 -40,13.0,11.0,-1.5265676088395577,3.1734252729654173 -40,13.0,13.0,4.01751987283902,-5.424299332335067 -40,13.0,14.0,-2.4909522639994623,2.250874059369649 -40,14.0,11.0,-3.0953961826564296,6.097275864326261 -40,14.0,13.0,-2.4909522639994623,2.250874059369649 -40,14.0,14.0,9.365498545964757,-16.01163373210796 -40,14.0,17.0,-1.8108011504072024,3.687418931630696 -40,14.0,22.0,-1.9683489489016612,3.976064876781356 -40,15.0,11.0,-1.9519977922801688,4.104359379111847 -40,15.0,15.0,3.271064728633931,-8.94513365126506 -40,15.0,16.0,-1.3190669363537617,4.8407742721532125 -40,16.0,9.0,-3.956039125715353,10.317447719844054 -40,16.0,15.0,-1.3190669363537617,4.8407742721532125 -40,16.0,16.0,5.275106062069114,-15.158221991997266 -40,17.0,14.0,-1.8108011504072024,3.687418931630696 -40,17.0,17.0,4.886487584415919,-9.906177730909668 -40,17.0,18.0,-3.0756864340087167,6.218758799278971 -40,18.0,17.0,-3.0756864340087167,6.218758799278971 -40,18.0,18.0,8.958039375185187,-17.98346468163191 -40,18.0,19.0,-5.88235294117647,11.76470588235294 -40,19.0,9.0,-1.7848303152666305,3.98535828943083 -40,19.0,18.0,-5.88235294117647,11.76470588235294 -40,19.0,19.0,7.6671832564431,-15.75006417178377 -40,20.0,9.0,-5.101853820159654,10.98071411292983 -40,20.0,20.0,21.876495189895888,-45.10843276170355 -40,20.0,21.0,-16.774641369736234,34.127718648773715 -40,21.0,9.0,-2.619319553382597,5.400770303329455 -40,21.0,20.0,-16.774641369736234,34.127718648773715 -40,21.0,21.0,21.93449907537439,-43.48289181517921 -40,21.0,23.0,-2.5405381522555563,3.95440286307604 -40,22.0,14.0,-1.9683489489016612,3.976064876781356 -40,22.0,22.0,3.429754555384988,-6.965303617315433 -40,22.0,23.0,-1.4614056064833263,2.989238740534077 -40,23.0,21.0,-2.5405381522555563,3.95440286307604 -40,23.0,22.0,-1.4614056064833263,2.989238740534077 -40,23.0,23.0,5.311836702613133,-9.188263657315172 -40,23.0,24.0,-1.3098929438742493,2.287622053705056 -40,24.0,23.0,-1.3098929438742493,2.287622053705056 -40,24.0,24.0,4.495715080321987,-7.864978761969621 -40,24.0,25.0,-1.2165301194494855,1.8171440463475024 -40,24.0,26.0,-1.9692920169982515,3.760212661917064 -40,25.0,24.0,-1.2165301194494855,1.8171440463475024 -40,25.0,25.0,1.2165301194494855,-1.8171440463475024 -40,26.0,24.0,-1.9692920169982515,3.760212661917064 -40,26.0,26.0,3.652281470778589,-9.46044252232512 -40,26.0,27.0,0.0,2.608731947574922 -40,26.0,28.0,-0.99553355095268,1.881005840357816 -40,26.0,29.0,-0.6874559028276572,1.293971494797717 -40,27.0,5.0,-4.362844058012917,15.463571542897856 -40,27.0,7.0,-1.4439790613954469,4.540814658476248 -40,27.0,26.0,0.0,2.608731947574922 -40,27.0,27.0,5.806823119408364,-22.67145722159613 -40,28.0,26.0,-0.99553355095268,1.881005840357816 -40,28.0,28.0,1.9075867579849564,-3.604364401207048 -40,28.0,29.0,-0.9120532070322764,1.7233585608492326 -40,29.0,26.0,-0.6874559028276572,1.293971494797717 -40,29.0,28.0,-0.9120532070322764,1.7233585608492326 -40,29.0,29.0,1.5995091098599337,-3.0173300556469496 -41,0.0,0.0,6.765516048652632,-21.23160167089863 -41,0.0,1.0,-5.224646179885656,15.646726840803398 -41,0.0,2.0,-1.5408698687669766,5.631674830095234 -41,1.0,0.0,-5.224646179885656,15.646726840803398 -41,1.0,1.0,9.75228216552403,-30.648662892676068 -41,1.0,3.0,-1.7055303166990268,5.1973792282565086 -41,1.0,4.0,-1.1359607881738778,4.772479328281356 -41,1.0,5.0,-1.6861448807654689,5.116477495334806 -41,2.0,0.0,-1.5408698687669766,5.631674830095234 -41,2.0,2.0,9.736318911079088,-29.13794745915803 -41,2.0,3.0,-8.19544904231211,23.5308726290628 -41,3.0,1.0,-1.7055303166990268,5.1973792282565086 -41,3.0,2.0,-8.19544904231211,23.5308726290628 -41,3.0,3.0,16.314103089185693,-55.509410535254254 -41,3.0,5.0,-6.413123730174556,22.31120356548123 -41,3.0,11.0,0.0,4.191255364806866 -41,4.0,1.0,-1.1359607881738778,4.772479328281356 -41,4.0,4.0,4.089980824135861,-12.190647245055052 -41,4.0,6.0,-2.954020035961983,7.449267916773697 -41,5.0,1.0,-1.6861448807654689,5.116477495334806 -41,5.0,3.0,-6.413123730174556,22.31120356548123 -41,5.0,5.0,22.341631269034565,-82.8291478657789 -41,5.0,6.0,-3.590210423980992,11.02611441072814 -41,5.0,7.0,-6.289308176100628,22.0125786163522 -41,5.0,8.0,0.0,4.915840805411357 -41,5.0,9.0,0.0,1.8561002591115965 -41,5.0,27.0,-4.362844058012917,15.463571542897856 -41,6.0,4.0,-2.954020035961983,7.449267916773697 -41,6.0,5.0,-3.590210423980992,11.02611441072814 -41,6.0,6.0,6.544230459942975,-18.45668232750184 -41,7.0,5.0,-6.289308176100628,22.0125786163522 -41,7.0,7.0,7.733287237496075,-26.527493274828448 -41,7.0,27.0,-1.4439790613954469,4.540814658476248 -41,8.0,5.0,0.0,4.915840805411357 -41,8.0,8.0,0.0,-18.706293706293707 -41,8.0,9.0,0.0,9.090909090909092 -41,8.0,10.0,0.0,4.807692307692308 -41,9.0,5.0,0.0,1.8561002591115965 -41,9.0,8.0,0.0,9.090909090909092 -41,9.0,9.0,13.462042814524237,-41.3837606675224 -41,9.0,16.0,-3.956039125715353,10.317447719844054 -41,9.0,19.0,-1.7848303152666305,3.98535828943083 -41,9.0,20.0,-5.101853820159654,10.98071411292983 -41,9.0,21.0,-2.619319553382597,5.400770303329455 -41,10.0,8.0,0.0,4.807692307692308 -41,10.0,10.0,0.0,-4.807692307692308 -41,11.0,3.0,0.0,4.191255364806866 -41,11.0,11.0,6.573961583776156,-24.424167659260668 -41,11.0,12.0,0.0,7.142857142857143 -41,11.0,13.0,-1.5265676088395577,3.1734252729654173 -41,11.0,14.0,-3.0953961826564296,6.097275864326261 -41,11.0,15.0,-1.9519977922801688,4.104359379111847 -41,12.0,11.0,0.0,7.142857142857143 -41,12.0,12.0,0.0,-7.142857142857143 -41,13.0,11.0,-1.5265676088395577,3.1734252729654173 -41,13.0,13.0,4.01751987283902,-5.424299332335067 -41,13.0,14.0,-2.4909522639994623,2.250874059369649 -41,14.0,11.0,-3.0953961826564296,6.097275864326261 -41,14.0,13.0,-2.4909522639994623,2.250874059369649 -41,14.0,14.0,9.365498545964757,-16.01163373210796 -41,14.0,17.0,-1.8108011504072024,3.687418931630696 -41,14.0,22.0,-1.9683489489016612,3.976064876781356 -41,15.0,11.0,-1.9519977922801688,4.104359379111847 -41,15.0,15.0,3.271064728633931,-8.94513365126506 -41,15.0,16.0,-1.3190669363537617,4.8407742721532125 -41,16.0,9.0,-3.956039125715353,10.317447719844054 -41,16.0,15.0,-1.3190669363537617,4.8407742721532125 -41,16.0,16.0,5.275106062069114,-15.158221991997266 -41,17.0,14.0,-1.8108011504072024,3.687418931630696 -41,17.0,17.0,4.886487584415919,-9.906177730909668 -41,17.0,18.0,-3.0756864340087167,6.218758799278971 -41,18.0,17.0,-3.0756864340087167,6.218758799278971 -41,18.0,18.0,8.958039375185187,-17.98346468163191 -41,18.0,19.0,-5.88235294117647,11.76470588235294 -41,19.0,9.0,-1.7848303152666305,3.98535828943083 -41,19.0,18.0,-5.88235294117647,11.76470588235294 -41,19.0,19.0,7.6671832564431,-15.75006417178377 -41,20.0,9.0,-5.101853820159654,10.98071411292983 -41,20.0,20.0,21.876495189895888,-45.10843276170355 -41,20.0,21.0,-16.774641369736234,34.127718648773715 -41,21.0,9.0,-2.619319553382597,5.400770303329455 -41,21.0,20.0,-16.774641369736234,34.127718648773715 -41,21.0,21.0,21.93449907537439,-43.48289181517921 -41,21.0,23.0,-2.5405381522555563,3.95440286307604 -41,22.0,14.0,-1.9683489489016612,3.976064876781356 -41,22.0,22.0,3.429754555384988,-6.965303617315433 -41,22.0,23.0,-1.4614056064833263,2.989238740534077 -41,23.0,21.0,-2.5405381522555563,3.95440286307604 -41,23.0,22.0,-1.4614056064833263,2.989238740534077 -41,23.0,23.0,5.311836702613133,-9.188263657315172 -41,23.0,24.0,-1.3098929438742493,2.287622053705056 -41,24.0,23.0,-1.3098929438742493,2.287622053705056 -41,24.0,24.0,4.495715080321987,-7.864978761969621 -41,24.0,25.0,-1.2165301194494855,1.8171440463475024 -41,24.0,26.0,-1.9692920169982515,3.760212661917064 -41,25.0,24.0,-1.2165301194494855,1.8171440463475024 -41,25.0,25.0,1.2165301194494855,-1.8171440463475024 -41,26.0,24.0,-1.9692920169982515,3.760212661917064 -41,26.0,26.0,3.652281470778589,-9.46044252232512 -41,26.0,27.0,0.0,2.608731947574922 -41,26.0,28.0,-0.99553355095268,1.881005840357816 -41,26.0,29.0,-0.6874559028276572,1.293971494797717 -41,27.0,5.0,-4.362844058012917,15.463571542897856 -41,27.0,7.0,-1.4439790613954469,4.540814658476248 -41,27.0,26.0,0.0,2.608731947574922 -41,27.0,27.0,5.806823119408364,-22.67145722159613 -41,28.0,26.0,-0.99553355095268,1.881005840357816 -41,28.0,28.0,1.9075867579849564,-3.604364401207048 -41,28.0,29.0,-0.9120532070322764,1.7233585608492326 -41,29.0,26.0,-0.6874559028276572,1.293971494797717 -41,29.0,28.0,-0.9120532070322764,1.7233585608492326 -41,29.0,29.0,1.5995091098599337,-3.0173300556469496 -42,0.0,0.0,6.765516048652632,-21.23160167089863 -42,0.0,1.0,-5.224646179885656,15.646726840803398 -42,0.0,2.0,-1.5408698687669766,5.631674830095234 -42,1.0,0.0,-5.224646179885656,15.646726840803398 -42,1.0,1.0,9.75228216552403,-30.648662892676068 -42,1.0,3.0,-1.7055303166990268,5.1973792282565086 -42,1.0,4.0,-1.1359607881738778,4.772479328281356 -42,1.0,5.0,-1.6861448807654689,5.116477495334806 -42,2.0,0.0,-1.5408698687669766,5.631674830095234 -42,2.0,2.0,9.736318911079088,-29.13794745915803 -42,2.0,3.0,-8.19544904231211,23.5308726290628 -42,3.0,1.0,-1.7055303166990268,5.1973792282565086 -42,3.0,2.0,-8.19544904231211,23.5308726290628 -42,3.0,3.0,16.314103089185693,-55.509410535254254 -42,3.0,5.0,-6.413123730174556,22.31120356548123 -42,3.0,11.0,0.0,4.191255364806866 -42,4.0,1.0,-1.1359607881738778,4.772479328281356 -42,4.0,4.0,4.089980824135861,-12.190647245055052 -42,4.0,6.0,-2.954020035961983,7.449267916773697 -42,5.0,1.0,-1.6861448807654689,5.116477495334806 -42,5.0,3.0,-6.413123730174556,22.31120356548123 -42,5.0,5.0,22.341631269034565,-82.8291478657789 -42,5.0,6.0,-3.590210423980992,11.02611441072814 -42,5.0,7.0,-6.289308176100628,22.0125786163522 -42,5.0,8.0,0.0,4.915840805411357 -42,5.0,9.0,0.0,1.8561002591115965 -42,5.0,27.0,-4.362844058012917,15.463571542897856 -42,6.0,4.0,-2.954020035961983,7.449267916773697 -42,6.0,5.0,-3.590210423980992,11.02611441072814 -42,6.0,6.0,6.544230459942975,-18.45668232750184 -42,7.0,5.0,-6.289308176100628,22.0125786163522 -42,7.0,7.0,7.733287237496075,-26.527493274828448 -42,7.0,27.0,-1.4439790613954469,4.540814658476248 -42,8.0,5.0,0.0,4.915840805411357 -42,8.0,8.0,0.0,-18.706293706293707 -42,8.0,9.0,0.0,9.090909090909092 -42,8.0,10.0,0.0,4.807692307692308 -42,9.0,5.0,0.0,1.8561002591115965 -42,9.0,8.0,0.0,9.090909090909092 -42,9.0,9.0,13.462042814524237,-41.3837606675224 -42,9.0,16.0,-3.956039125715353,10.317447719844054 -42,9.0,19.0,-1.7848303152666305,3.98535828943083 -42,9.0,20.0,-5.101853820159654,10.98071411292983 -42,9.0,21.0,-2.619319553382597,5.400770303329455 -42,10.0,8.0,0.0,4.807692307692308 -42,10.0,10.0,0.0,-4.807692307692308 -42,11.0,3.0,0.0,4.191255364806866 -42,11.0,11.0,6.573961583776156,-24.424167659260668 -42,11.0,12.0,0.0,7.142857142857143 -42,11.0,13.0,-1.5265676088395577,3.1734252729654173 -42,11.0,14.0,-3.0953961826564296,6.097275864326261 -42,11.0,15.0,-1.9519977922801688,4.104359379111847 -42,12.0,11.0,0.0,7.142857142857143 -42,12.0,12.0,0.0,-7.142857142857143 -42,13.0,11.0,-1.5265676088395577,3.1734252729654173 -42,13.0,13.0,4.01751987283902,-5.424299332335067 -42,13.0,14.0,-2.4909522639994623,2.250874059369649 -42,14.0,11.0,-3.0953961826564296,6.097275864326261 -42,14.0,13.0,-2.4909522639994623,2.250874059369649 -42,14.0,14.0,9.365498545964757,-16.01163373210796 -42,14.0,17.0,-1.8108011504072024,3.687418931630696 -42,14.0,22.0,-1.9683489489016612,3.976064876781356 -42,15.0,11.0,-1.9519977922801688,4.104359379111847 -42,15.0,15.0,3.271064728633931,-8.94513365126506 -42,15.0,16.0,-1.3190669363537617,4.8407742721532125 -42,16.0,9.0,-3.956039125715353,10.317447719844054 -42,16.0,15.0,-1.3190669363537617,4.8407742721532125 -42,16.0,16.0,5.275106062069114,-15.158221991997266 -42,17.0,14.0,-1.8108011504072024,3.687418931630696 -42,17.0,17.0,4.886487584415919,-9.906177730909668 -42,17.0,18.0,-3.0756864340087167,6.218758799278971 -42,18.0,17.0,-3.0756864340087167,6.218758799278971 -42,18.0,18.0,8.958039375185187,-17.98346468163191 -42,18.0,19.0,-5.88235294117647,11.76470588235294 -42,19.0,9.0,-1.7848303152666305,3.98535828943083 -42,19.0,18.0,-5.88235294117647,11.76470588235294 -42,19.0,19.0,7.6671832564431,-15.75006417178377 -42,20.0,9.0,-5.101853820159654,10.98071411292983 -42,20.0,20.0,21.876495189895888,-45.10843276170355 -42,20.0,21.0,-16.774641369736234,34.127718648773715 -42,21.0,9.0,-2.619319553382597,5.400770303329455 -42,21.0,20.0,-16.774641369736234,34.127718648773715 -42,21.0,21.0,21.93449907537439,-43.48289181517921 -42,21.0,23.0,-2.5405381522555563,3.95440286307604 -42,22.0,14.0,-1.9683489489016612,3.976064876781356 -42,22.0,22.0,3.429754555384988,-6.965303617315433 -42,22.0,23.0,-1.4614056064833263,2.989238740534077 -42,23.0,21.0,-2.5405381522555563,3.95440286307604 -42,23.0,22.0,-1.4614056064833263,2.989238740534077 -42,23.0,23.0,5.311836702613133,-9.188263657315172 -42,23.0,24.0,-1.3098929438742493,2.287622053705056 -42,24.0,23.0,-1.3098929438742493,2.287622053705056 -42,24.0,24.0,4.495715080321987,-7.864978761969621 -42,24.0,25.0,-1.2165301194494855,1.8171440463475024 -42,24.0,26.0,-1.9692920169982515,3.760212661917064 -42,25.0,24.0,-1.2165301194494855,1.8171440463475024 -42,25.0,25.0,1.2165301194494855,-1.8171440463475024 -42,26.0,24.0,-1.9692920169982515,3.760212661917064 -42,26.0,26.0,3.652281470778589,-9.46044252232512 -42,26.0,27.0,0.0,2.608731947574922 -42,26.0,28.0,-0.99553355095268,1.881005840357816 -42,26.0,29.0,-0.6874559028276572,1.293971494797717 -42,27.0,5.0,-4.362844058012917,15.463571542897856 -42,27.0,7.0,-1.4439790613954469,4.540814658476248 -42,27.0,26.0,0.0,2.608731947574922 -42,27.0,27.0,5.806823119408364,-22.67145722159613 -42,28.0,26.0,-0.99553355095268,1.881005840357816 -42,28.0,28.0,1.9075867579849564,-3.604364401207048 -42,28.0,29.0,-0.9120532070322764,1.7233585608492326 -42,29.0,26.0,-0.6874559028276572,1.293971494797717 -42,29.0,28.0,-0.9120532070322764,1.7233585608492326 -42,29.0,29.0,1.5995091098599337,-3.0173300556469496 -43,0.0,0.0,6.765516048652632,-21.23160167089863 -43,0.0,1.0,-5.224646179885656,15.646726840803398 -43,0.0,2.0,-1.5408698687669766,5.631674830095234 -43,1.0,0.0,-5.224646179885656,15.646726840803398 -43,1.0,1.0,9.75228216552403,-30.648662892676068 -43,1.0,3.0,-1.7055303166990268,5.1973792282565086 -43,1.0,4.0,-1.1359607881738778,4.772479328281356 -43,1.0,5.0,-1.6861448807654689,5.116477495334806 -43,2.0,0.0,-1.5408698687669766,5.631674830095234 -43,2.0,2.0,9.736318911079088,-29.13794745915803 -43,2.0,3.0,-8.19544904231211,23.5308726290628 -43,3.0,1.0,-1.7055303166990268,5.1973792282565086 -43,3.0,2.0,-8.19544904231211,23.5308726290628 -43,3.0,3.0,16.314103089185693,-55.509410535254254 -43,3.0,5.0,-6.413123730174556,22.31120356548123 -43,3.0,11.0,0.0,4.191255364806866 -43,4.0,1.0,-1.1359607881738778,4.772479328281356 -43,4.0,4.0,4.089980824135861,-12.190647245055052 -43,4.0,6.0,-2.954020035961983,7.449267916773697 -43,5.0,1.0,-1.6861448807654689,5.116477495334806 -43,5.0,3.0,-6.413123730174556,22.31120356548123 -43,5.0,5.0,22.341631269034565,-82.8291478657789 -43,5.0,6.0,-3.590210423980992,11.02611441072814 -43,5.0,7.0,-6.289308176100628,22.0125786163522 -43,5.0,8.0,0.0,4.915840805411357 -43,5.0,9.0,0.0,1.8561002591115965 -43,5.0,27.0,-4.362844058012917,15.463571542897856 -43,6.0,4.0,-2.954020035961983,7.449267916773697 -43,6.0,5.0,-3.590210423980992,11.02611441072814 -43,6.0,6.0,6.544230459942975,-18.45668232750184 -43,7.0,5.0,-6.289308176100628,22.0125786163522 -43,7.0,7.0,7.733287237496075,-26.527493274828448 -43,7.0,27.0,-1.4439790613954469,4.540814658476248 -43,8.0,5.0,0.0,4.915840805411357 -43,8.0,8.0,0.0,-18.706293706293707 -43,8.0,9.0,0.0,9.090909090909092 -43,8.0,10.0,0.0,4.807692307692308 -43,9.0,5.0,0.0,1.8561002591115965 -43,9.0,8.0,0.0,9.090909090909092 -43,9.0,9.0,13.462042814524237,-41.3837606675224 -43,9.0,16.0,-3.956039125715353,10.317447719844054 -43,9.0,19.0,-1.7848303152666305,3.98535828943083 -43,9.0,20.0,-5.101853820159654,10.98071411292983 -43,9.0,21.0,-2.619319553382597,5.400770303329455 -43,10.0,8.0,0.0,4.807692307692308 -43,10.0,10.0,0.0,-4.807692307692308 -43,11.0,3.0,0.0,4.191255364806866 -43,11.0,11.0,6.573961583776156,-24.424167659260668 -43,11.0,12.0,0.0,7.142857142857143 -43,11.0,13.0,-1.5265676088395577,3.1734252729654173 -43,11.0,14.0,-3.0953961826564296,6.097275864326261 -43,11.0,15.0,-1.9519977922801688,4.104359379111847 -43,12.0,11.0,0.0,7.142857142857143 -43,12.0,12.0,0.0,-7.142857142857143 -43,13.0,11.0,-1.5265676088395577,3.1734252729654173 -43,13.0,13.0,4.01751987283902,-5.424299332335067 -43,13.0,14.0,-2.4909522639994623,2.250874059369649 -43,14.0,11.0,-3.0953961826564296,6.097275864326261 -43,14.0,13.0,-2.4909522639994623,2.250874059369649 -43,14.0,14.0,9.365498545964757,-16.01163373210796 -43,14.0,17.0,-1.8108011504072024,3.687418931630696 -43,14.0,22.0,-1.9683489489016612,3.976064876781356 -43,15.0,11.0,-1.9519977922801688,4.104359379111847 -43,15.0,15.0,3.271064728633931,-8.94513365126506 -43,15.0,16.0,-1.3190669363537617,4.8407742721532125 -43,16.0,9.0,-3.956039125715353,10.317447719844054 -43,16.0,15.0,-1.3190669363537617,4.8407742721532125 -43,16.0,16.0,5.275106062069114,-15.158221991997266 -43,17.0,14.0,-1.8108011504072024,3.687418931630696 -43,17.0,17.0,4.886487584415919,-9.906177730909668 -43,17.0,18.0,-3.0756864340087167,6.218758799278971 -43,18.0,17.0,-3.0756864340087167,6.218758799278971 -43,18.0,18.0,8.958039375185187,-17.98346468163191 -43,18.0,19.0,-5.88235294117647,11.76470588235294 -43,19.0,9.0,-1.7848303152666305,3.98535828943083 -43,19.0,18.0,-5.88235294117647,11.76470588235294 -43,19.0,19.0,7.6671832564431,-15.75006417178377 -43,20.0,9.0,-5.101853820159654,10.98071411292983 -43,20.0,20.0,21.876495189895888,-45.10843276170355 -43,20.0,21.0,-16.774641369736234,34.127718648773715 -43,21.0,9.0,-2.619319553382597,5.400770303329455 -43,21.0,20.0,-16.774641369736234,34.127718648773715 -43,21.0,21.0,21.93449907537439,-43.48289181517921 -43,21.0,23.0,-2.5405381522555563,3.95440286307604 -43,22.0,14.0,-1.9683489489016612,3.976064876781356 -43,22.0,22.0,3.429754555384988,-6.965303617315433 -43,22.0,23.0,-1.4614056064833263,2.989238740534077 -43,23.0,21.0,-2.5405381522555563,3.95440286307604 -43,23.0,22.0,-1.4614056064833263,2.989238740534077 -43,23.0,23.0,5.311836702613133,-9.188263657315172 -43,23.0,24.0,-1.3098929438742493,2.287622053705056 -43,24.0,23.0,-1.3098929438742493,2.287622053705056 -43,24.0,24.0,4.495715080321987,-7.864978761969621 -43,24.0,25.0,-1.2165301194494855,1.8171440463475024 -43,24.0,26.0,-1.9692920169982515,3.760212661917064 -43,25.0,24.0,-1.2165301194494855,1.8171440463475024 -43,25.0,25.0,1.2165301194494855,-1.8171440463475024 -43,26.0,24.0,-1.9692920169982515,3.760212661917064 -43,26.0,26.0,3.652281470778589,-9.46044252232512 -43,26.0,27.0,0.0,2.608731947574922 -43,26.0,28.0,-0.99553355095268,1.881005840357816 -43,26.0,29.0,-0.6874559028276572,1.293971494797717 -43,27.0,5.0,-4.362844058012917,15.463571542897856 -43,27.0,7.0,-1.4439790613954469,4.540814658476248 -43,27.0,26.0,0.0,2.608731947574922 -43,27.0,27.0,5.806823119408364,-22.67145722159613 -43,28.0,26.0,-0.99553355095268,1.881005840357816 -43,28.0,28.0,1.9075867579849564,-3.604364401207048 -43,28.0,29.0,-0.9120532070322764,1.7233585608492326 -43,29.0,26.0,-0.6874559028276572,1.293971494797717 -43,29.0,28.0,-0.9120532070322764,1.7233585608492326 -43,29.0,29.0,1.5995091098599337,-3.0173300556469496 -44,0.0,0.0,6.765516048652632,-21.23160167089863 -44,0.0,1.0,-5.224646179885656,15.646726840803398 -44,0.0,2.0,-1.5408698687669766,5.631674830095234 -44,1.0,0.0,-5.224646179885656,15.646726840803398 -44,1.0,1.0,9.75228216552403,-30.648662892676068 -44,1.0,3.0,-1.7055303166990268,5.1973792282565086 -44,1.0,4.0,-1.1359607881738778,4.772479328281356 -44,1.0,5.0,-1.6861448807654689,5.116477495334806 -44,2.0,0.0,-1.5408698687669766,5.631674830095234 -44,2.0,2.0,9.736318911079088,-29.13794745915803 -44,2.0,3.0,-8.19544904231211,23.5308726290628 -44,3.0,1.0,-1.7055303166990268,5.1973792282565086 -44,3.0,2.0,-8.19544904231211,23.5308726290628 -44,3.0,3.0,16.314103089185693,-55.509410535254254 -44,3.0,5.0,-6.413123730174556,22.31120356548123 -44,3.0,11.0,0.0,4.191255364806866 -44,4.0,1.0,-1.1359607881738778,4.772479328281356 -44,4.0,4.0,4.089980824135861,-12.190647245055052 -44,4.0,6.0,-2.954020035961983,7.449267916773697 -44,5.0,1.0,-1.6861448807654689,5.116477495334806 -44,5.0,3.0,-6.413123730174556,22.31120356548123 -44,5.0,5.0,22.341631269034565,-77.80272577435625 -44,5.0,6.0,-3.590210423980992,11.02611441072814 -44,5.0,7.0,-6.289308176100628,22.0125786163522 -44,5.0,9.0,0.0,1.8561002591115965 -44,5.0,27.0,-4.362844058012917,15.463571542897856 -44,6.0,4.0,-2.954020035961983,7.449267916773697 -44,6.0,5.0,-3.590210423980992,11.02611441072814 -44,6.0,6.0,6.544230459942975,-18.45668232750184 -44,7.0,5.0,-6.289308176100628,22.0125786163522 -44,7.0,7.0,7.733287237496075,-26.527493274828448 -44,7.0,27.0,-1.4439790613954469,4.540814658476248 -44,8.0,8.0,0.0,-13.8986013986014 -44,8.0,9.0,0.0,9.090909090909092 -44,8.0,10.0,0.0,4.807692307692308 -44,9.0,5.0,0.0,1.8561002591115965 -44,9.0,8.0,0.0,9.090909090909092 -44,9.0,9.0,11.677212499257603,-37.39840237809157 -44,9.0,16.0,-3.956039125715353,10.317447719844054 -44,9.0,20.0,-5.101853820159654,10.98071411292983 -44,9.0,21.0,-2.619319553382597,5.400770303329455 -44,10.0,8.0,0.0,4.807692307692308 -44,10.0,10.0,0.0,-4.807692307692308 -44,11.0,3.0,0.0,4.191255364806866 -44,11.0,11.0,6.573961583776156,-24.424167659260668 -44,11.0,12.0,0.0,7.142857142857143 -44,11.0,13.0,-1.5265676088395577,3.1734252729654173 -44,11.0,14.0,-3.0953961826564296,6.097275864326261 -44,11.0,15.0,-1.9519977922801688,4.104359379111847 -44,12.0,11.0,0.0,7.142857142857143 -44,12.0,12.0,0.0,-7.142857142857143 -44,13.0,11.0,-1.5265676088395577,3.1734252729654173 -44,13.0,13.0,4.01751987283902,-5.424299332335067 -44,13.0,14.0,-2.4909522639994623,2.250874059369649 -44,14.0,11.0,-3.0953961826564296,6.097275864326261 -44,14.0,13.0,-2.4909522639994623,2.250874059369649 -44,14.0,14.0,9.365498545964757,-16.01163373210796 -44,14.0,17.0,-1.8108011504072024,3.687418931630696 -44,14.0,22.0,-1.9683489489016612,3.976064876781356 -44,15.0,11.0,-1.9519977922801688,4.104359379111847 -44,15.0,15.0,1.9519977922801688,-4.104359379111847 -44,16.0,9.0,-3.956039125715353,10.317447719844054 -44,16.0,16.0,3.956039125715353,-10.317447719844054 -44,17.0,14.0,-1.8108011504072024,3.687418931630696 -44,17.0,17.0,4.886487584415919,-9.906177730909668 -44,17.0,18.0,-3.0756864340087167,6.218758799278971 -44,18.0,17.0,-3.0756864340087167,6.218758799278971 -44,18.0,18.0,8.958039375185187,-17.98346468163191 -44,18.0,19.0,-5.88235294117647,11.76470588235294 -44,19.0,18.0,-5.88235294117647,11.76470588235294 -44,19.0,19.0,5.88235294117647,-11.76470588235294 -44,20.0,9.0,-5.101853820159654,10.98071411292983 -44,20.0,20.0,21.876495189895888,-45.10843276170355 -44,20.0,21.0,-16.774641369736234,34.127718648773715 -44,21.0,9.0,-2.619319553382597,5.400770303329455 -44,21.0,20.0,-16.774641369736234,34.127718648773715 -44,21.0,21.0,19.393960923118836,-39.52848895210317 -44,22.0,14.0,-1.9683489489016612,3.976064876781356 -44,22.0,22.0,3.429754555384988,-6.965303617315433 -44,22.0,23.0,-1.4614056064833263,2.989238740534077 -44,23.0,22.0,-1.4614056064833263,2.989238740534077 -44,23.0,23.0,2.771298550357576,-5.233860794239132 -44,23.0,24.0,-1.3098929438742493,2.287622053705056 -44,24.0,23.0,-1.3098929438742493,2.287622053705056 -44,24.0,24.0,4.495715080321987,-7.864978761969621 -44,24.0,25.0,-1.2165301194494855,1.8171440463475024 -44,24.0,26.0,-1.9692920169982515,3.760212661917064 -44,25.0,24.0,-1.2165301194494855,1.8171440463475024 -44,25.0,25.0,1.2165301194494855,-1.8171440463475024 -44,26.0,24.0,-1.9692920169982515,3.760212661917064 -44,26.0,26.0,3.652281470778589,-9.46044252232512 -44,26.0,27.0,0.0,2.608731947574922 -44,26.0,28.0,-0.99553355095268,1.881005840357816 -44,26.0,29.0,-0.6874559028276572,1.293971494797717 -44,27.0,5.0,-4.362844058012917,15.463571542897856 -44,27.0,7.0,-1.4439790613954469,4.540814658476248 -44,27.0,26.0,0.0,2.608731947574922 -44,27.0,27.0,5.806823119408364,-22.67145722159613 -44,28.0,26.0,-0.99553355095268,1.881005840357816 -44,28.0,28.0,1.9075867579849564,-3.604364401207048 -44,28.0,29.0,-0.9120532070322764,1.7233585608492326 -44,29.0,26.0,-0.6874559028276572,1.293971494797717 -44,29.0,28.0,-0.9120532070322764,1.7233585608492326 -44,29.0,29.0,1.5995091098599337,-3.0173300556469496 -45,0.0,0.0,6.765516048652632,-21.23160167089863 -45,0.0,1.0,-5.224646179885656,15.646726840803398 -45,0.0,2.0,-1.5408698687669766,5.631674830095234 -45,1.0,0.0,-5.224646179885656,15.646726840803398 -45,1.0,1.0,9.75228216552403,-30.648662892676068 -45,1.0,3.0,-1.7055303166990268,5.1973792282565086 -45,1.0,4.0,-1.1359607881738778,4.772479328281356 -45,1.0,5.0,-1.6861448807654689,5.116477495334806 -45,2.0,0.0,-1.5408698687669766,5.631674830095234 -45,2.0,2.0,9.736318911079088,-29.13794745915803 -45,2.0,3.0,-8.19544904231211,23.5308726290628 -45,3.0,1.0,-1.7055303166990268,5.1973792282565086 -45,3.0,2.0,-8.19544904231211,23.5308726290628 -45,3.0,3.0,16.314103089185693,-55.509410535254254 -45,3.0,5.0,-6.413123730174556,22.31120356548123 -45,3.0,11.0,0.0,4.191255364806866 -45,4.0,1.0,-1.1359607881738778,4.772479328281356 -45,4.0,4.0,1.1359607881738778,-4.751579328281355 -45,5.0,1.0,-1.6861448807654689,5.116477495334806 -45,5.0,3.0,-6.413123730174556,22.31120356548123 -45,5.0,5.0,22.341631269034565,-82.8291478657789 -45,5.0,6.0,-3.590210423980992,11.02611441072814 -45,5.0,7.0,-6.289308176100628,22.0125786163522 -45,5.0,8.0,0.0,4.915840805411357 -45,5.0,9.0,0.0,1.8561002591115965 -45,5.0,27.0,-4.362844058012917,15.463571542897856 -45,6.0,5.0,-3.590210423980992,11.02611441072814 -45,6.0,6.0,3.590210423980992,-11.01761441072814 -45,7.0,5.0,-6.289308176100628,22.0125786163522 -45,7.0,7.0,7.733287237496075,-26.527493274828448 -45,7.0,27.0,-1.4439790613954469,4.540814658476248 -45,8.0,5.0,0.0,4.915840805411357 -45,8.0,8.0,0.0,-18.706293706293707 -45,8.0,9.0,0.0,9.090909090909092 -45,8.0,10.0,0.0,4.807692307692308 -45,9.0,5.0,0.0,1.8561002591115965 -45,9.0,8.0,0.0,9.090909090909092 -45,9.0,9.0,13.462042814524237,-41.3837606675224 -45,9.0,16.0,-3.956039125715353,10.317447719844054 -45,9.0,19.0,-1.7848303152666305,3.98535828943083 -45,9.0,20.0,-5.101853820159654,10.98071411292983 -45,9.0,21.0,-2.619319553382597,5.400770303329455 -45,10.0,8.0,0.0,4.807692307692308 -45,10.0,10.0,0.0,-4.807692307692308 -45,11.0,3.0,0.0,4.191255364806866 -45,11.0,11.0,6.573961583776156,-24.424167659260668 -45,11.0,12.0,0.0,7.142857142857143 -45,11.0,13.0,-1.5265676088395577,3.1734252729654173 -45,11.0,14.0,-3.0953961826564296,6.097275864326261 -45,11.0,15.0,-1.9519977922801688,4.104359379111847 -45,12.0,11.0,0.0,7.142857142857143 -45,12.0,12.0,0.0,-7.142857142857143 -45,13.0,11.0,-1.5265676088395577,3.1734252729654173 -45,13.0,13.0,4.01751987283902,-5.424299332335067 -45,13.0,14.0,-2.4909522639994623,2.250874059369649 -45,14.0,11.0,-3.0953961826564296,6.097275864326261 -45,14.0,13.0,-2.4909522639994623,2.250874059369649 -45,14.0,14.0,9.365498545964757,-16.01163373210796 -45,14.0,17.0,-1.8108011504072024,3.687418931630696 -45,14.0,22.0,-1.9683489489016612,3.976064876781356 -45,15.0,11.0,-1.9519977922801688,4.104359379111847 -45,15.0,15.0,3.271064728633931,-8.94513365126506 -45,15.0,16.0,-1.3190669363537617,4.8407742721532125 -45,16.0,9.0,-3.956039125715353,10.317447719844054 -45,16.0,15.0,-1.3190669363537617,4.8407742721532125 -45,16.0,16.0,5.275106062069114,-15.158221991997266 -45,17.0,14.0,-1.8108011504072024,3.687418931630696 -45,17.0,17.0,4.886487584415919,-9.906177730909668 -45,17.0,18.0,-3.0756864340087167,6.218758799278971 -45,18.0,17.0,-3.0756864340087167,6.218758799278971 -45,18.0,18.0,8.958039375185187,-17.98346468163191 -45,18.0,19.0,-5.88235294117647,11.76470588235294 -45,19.0,9.0,-1.7848303152666305,3.98535828943083 -45,19.0,18.0,-5.88235294117647,11.76470588235294 -45,19.0,19.0,7.6671832564431,-15.75006417178377 -45,20.0,9.0,-5.101853820159654,10.98071411292983 -45,20.0,20.0,21.876495189895888,-45.10843276170355 -45,20.0,21.0,-16.774641369736234,34.127718648773715 -45,21.0,9.0,-2.619319553382597,5.400770303329455 -45,21.0,20.0,-16.774641369736234,34.127718648773715 -45,21.0,21.0,21.93449907537439,-43.48289181517921 -45,21.0,23.0,-2.5405381522555563,3.95440286307604 -45,22.0,14.0,-1.9683489489016612,3.976064876781356 -45,22.0,22.0,3.429754555384988,-6.965303617315433 -45,22.0,23.0,-1.4614056064833263,2.989238740534077 -45,23.0,21.0,-2.5405381522555563,3.95440286307604 -45,23.0,22.0,-1.4614056064833263,2.989238740534077 -45,23.0,23.0,5.311836702613133,-9.188263657315172 -45,23.0,24.0,-1.3098929438742493,2.287622053705056 -45,24.0,23.0,-1.3098929438742493,2.287622053705056 -45,24.0,24.0,4.495715080321987,-7.864978761969621 -45,24.0,25.0,-1.2165301194494855,1.8171440463475024 -45,24.0,26.0,-1.9692920169982515,3.760212661917064 -45,25.0,24.0,-1.2165301194494855,1.8171440463475024 -45,25.0,25.0,1.2165301194494855,-1.8171440463475024 -45,26.0,24.0,-1.9692920169982515,3.760212661917064 -45,26.0,26.0,3.652281470778589,-9.46044252232512 -45,26.0,27.0,0.0,2.608731947574922 -45,26.0,28.0,-0.99553355095268,1.881005840357816 -45,26.0,29.0,-0.6874559028276572,1.293971494797717 -45,27.0,5.0,-4.362844058012917,15.463571542897856 -45,27.0,7.0,-1.4439790613954469,4.540814658476248 -45,27.0,26.0,0.0,2.608731947574922 -45,27.0,27.0,5.806823119408364,-22.67145722159613 -45,28.0,26.0,-0.99553355095268,1.881005840357816 -45,28.0,28.0,1.9075867579849564,-3.604364401207048 -45,28.0,29.0,-0.9120532070322764,1.7233585608492326 -45,29.0,26.0,-0.6874559028276572,1.293971494797717 -45,29.0,28.0,-0.9120532070322764,1.7233585608492326 -45,29.0,29.0,1.5995091098599337,-3.0173300556469496 -46,0.0,0.0,6.765516048652632,-21.23160167089863 -46,0.0,1.0,-5.224646179885656,15.646726840803398 -46,0.0,2.0,-1.5408698687669766,5.631674830095234 -46,1.0,0.0,-5.224646179885656,15.646726840803398 -46,1.0,1.0,9.75228216552403,-30.648662892676068 -46,1.0,3.0,-1.7055303166990268,5.1973792282565086 -46,1.0,4.0,-1.1359607881738778,4.772479328281356 -46,1.0,5.0,-1.6861448807654689,5.116477495334806 -46,2.0,0.0,-1.5408698687669766,5.631674830095234 -46,2.0,2.0,9.736318911079088,-29.13794745915803 -46,2.0,3.0,-8.19544904231211,23.5308726290628 -46,3.0,1.0,-1.7055303166990268,5.1973792282565086 -46,3.0,2.0,-8.19544904231211,23.5308726290628 -46,3.0,3.0,16.314103089185693,-55.509410535254254 -46,3.0,5.0,-6.413123730174556,22.31120356548123 -46,3.0,11.0,0.0,4.191255364806866 -46,4.0,1.0,-1.1359607881738778,4.772479328281356 -46,4.0,4.0,4.089980824135861,-12.190647245055052 -46,4.0,6.0,-2.954020035961983,7.449267916773697 -46,5.0,1.0,-1.6861448807654689,5.116477495334806 -46,5.0,3.0,-6.413123730174556,22.31120356548123 -46,5.0,5.0,22.341631269034565,-82.8291478657789 -46,5.0,6.0,-3.590210423980992,11.02611441072814 -46,5.0,7.0,-6.289308176100628,22.0125786163522 -46,5.0,8.0,0.0,4.915840805411357 -46,5.0,9.0,0.0,1.8561002591115965 -46,5.0,27.0,-4.362844058012917,15.463571542897856 -46,6.0,4.0,-2.954020035961983,7.449267916773697 -46,6.0,5.0,-3.590210423980992,11.02611441072814 -46,6.0,6.0,6.544230459942975,-18.45668232750184 -46,7.0,5.0,-6.289308176100628,22.0125786163522 -46,7.0,7.0,7.733287237496075,-26.527493274828448 -46,7.0,27.0,-1.4439790613954469,4.540814658476248 -46,8.0,5.0,0.0,4.915840805411357 -46,8.0,8.0,0.0,-18.706293706293707 -46,8.0,9.0,0.0,9.090909090909092 -46,8.0,10.0,0.0,4.807692307692308 -46,9.0,5.0,0.0,1.8561002591115965 -46,9.0,8.0,0.0,9.090909090909092 -46,9.0,9.0,13.462042814524237,-41.3837606675224 -46,9.0,16.0,-3.956039125715353,10.317447719844054 -46,9.0,19.0,-1.7848303152666305,3.98535828943083 -46,9.0,20.0,-5.101853820159654,10.98071411292983 -46,9.0,21.0,-2.619319553382597,5.400770303329455 -46,10.0,8.0,0.0,4.807692307692308 -46,10.0,10.0,0.0,-4.807692307692308 -46,11.0,3.0,0.0,4.191255364806866 -46,11.0,11.0,5.047393974936599,-21.25074238629525 -46,11.0,12.0,0.0,7.142857142857143 -46,11.0,14.0,-3.0953961826564296,6.097275864326261 -46,11.0,15.0,-1.9519977922801688,4.104359379111847 -46,12.0,11.0,0.0,7.142857142857143 -46,12.0,12.0,0.0,-7.142857142857143 -46,13.0,13.0,2.4909522639994623,-2.250874059369649 -46,13.0,14.0,-2.4909522639994623,2.250874059369649 -46,14.0,11.0,-3.0953961826564296,6.097275864326261 -46,14.0,13.0,-2.4909522639994623,2.250874059369649 -46,14.0,14.0,9.365498545964757,-16.01163373210796 -46,14.0,17.0,-1.8108011504072024,3.687418931630696 -46,14.0,22.0,-1.9683489489016612,3.976064876781356 -46,15.0,11.0,-1.9519977922801688,4.104359379111847 -46,15.0,15.0,3.271064728633931,-8.94513365126506 -46,15.0,16.0,-1.3190669363537617,4.8407742721532125 -46,16.0,9.0,-3.956039125715353,10.317447719844054 -46,16.0,15.0,-1.3190669363537617,4.8407742721532125 -46,16.0,16.0,5.275106062069114,-15.158221991997266 -46,17.0,14.0,-1.8108011504072024,3.687418931630696 -46,17.0,17.0,4.886487584415919,-9.906177730909668 -46,17.0,18.0,-3.0756864340087167,6.218758799278971 -46,18.0,17.0,-3.0756864340087167,6.218758799278971 -46,18.0,18.0,8.958039375185187,-17.98346468163191 -46,18.0,19.0,-5.88235294117647,11.76470588235294 -46,19.0,9.0,-1.7848303152666305,3.98535828943083 -46,19.0,18.0,-5.88235294117647,11.76470588235294 -46,19.0,19.0,7.6671832564431,-15.75006417178377 -46,20.0,9.0,-5.101853820159654,10.98071411292983 -46,20.0,20.0,21.876495189895888,-45.10843276170355 -46,20.0,21.0,-16.774641369736234,34.127718648773715 -46,21.0,9.0,-2.619319553382597,5.400770303329455 -46,21.0,20.0,-16.774641369736234,34.127718648773715 -46,21.0,21.0,21.93449907537439,-43.48289181517921 -46,21.0,23.0,-2.5405381522555563,3.95440286307604 -46,22.0,14.0,-1.9683489489016612,3.976064876781356 -46,22.0,22.0,3.429754555384988,-6.965303617315433 -46,22.0,23.0,-1.4614056064833263,2.989238740534077 -46,23.0,21.0,-2.5405381522555563,3.95440286307604 -46,23.0,22.0,-1.4614056064833263,2.989238740534077 -46,23.0,23.0,5.311836702613133,-9.188263657315172 -46,23.0,24.0,-1.3098929438742493,2.287622053705056 -46,24.0,23.0,-1.3098929438742493,2.287622053705056 -46,24.0,24.0,4.495715080321987,-7.864978761969621 -46,24.0,25.0,-1.2165301194494855,1.8171440463475024 -46,24.0,26.0,-1.9692920169982515,3.760212661917064 -46,25.0,24.0,-1.2165301194494855,1.8171440463475024 -46,25.0,25.0,1.2165301194494855,-1.8171440463475024 -46,26.0,24.0,-1.9692920169982515,3.760212661917064 -46,26.0,26.0,3.652281470778589,-9.46044252232512 -46,26.0,27.0,0.0,2.608731947574922 -46,26.0,28.0,-0.99553355095268,1.881005840357816 -46,26.0,29.0,-0.6874559028276572,1.293971494797717 -46,27.0,5.0,-4.362844058012917,15.463571542897856 -46,27.0,7.0,-1.4439790613954469,4.540814658476248 -46,27.0,26.0,0.0,2.608731947574922 -46,27.0,27.0,5.806823119408364,-22.67145722159613 -46,28.0,26.0,-0.99553355095268,1.881005840357816 -46,28.0,28.0,1.9075867579849564,-3.604364401207048 -46,28.0,29.0,-0.9120532070322764,1.7233585608492326 -46,29.0,26.0,-0.6874559028276572,1.293971494797717 -46,29.0,28.0,-0.9120532070322764,1.7233585608492326 -46,29.0,29.0,1.5995091098599337,-3.0173300556469496 -47,0.0,0.0,6.765516048652632,-21.23160167089863 -47,0.0,1.0,-5.224646179885656,15.646726840803398 -47,0.0,2.0,-1.5408698687669766,5.631674830095234 -47,1.0,0.0,-5.224646179885656,15.646726840803398 -47,1.0,1.0,9.75228216552403,-30.648662892676068 -47,1.0,3.0,-1.7055303166990268,5.1973792282565086 -47,1.0,4.0,-1.1359607881738778,4.772479328281356 -47,1.0,5.0,-1.6861448807654689,5.116477495334806 -47,2.0,0.0,-1.5408698687669766,5.631674830095234 -47,2.0,2.0,9.736318911079088,-29.13794745915803 -47,2.0,3.0,-8.19544904231211,23.5308726290628 -47,3.0,1.0,-1.7055303166990268,5.1973792282565086 -47,3.0,2.0,-8.19544904231211,23.5308726290628 -47,3.0,3.0,16.314103089185693,-55.509410535254254 -47,3.0,5.0,-6.413123730174556,22.31120356548123 -47,3.0,11.0,0.0,4.191255364806866 -47,4.0,1.0,-1.1359607881738778,4.772479328281356 -47,4.0,4.0,4.089980824135861,-12.190647245055052 -47,4.0,6.0,-2.954020035961983,7.449267916773697 -47,5.0,1.0,-1.6861448807654689,5.116477495334806 -47,5.0,3.0,-6.413123730174556,22.31120356548123 -47,5.0,5.0,22.341631269034565,-82.8291478657789 -47,5.0,6.0,-3.590210423980992,11.02611441072814 -47,5.0,7.0,-6.289308176100628,22.0125786163522 -47,5.0,8.0,0.0,4.915840805411357 -47,5.0,9.0,0.0,1.8561002591115965 -47,5.0,27.0,-4.362844058012917,15.463571542897856 -47,6.0,4.0,-2.954020035961983,7.449267916773697 -47,6.0,5.0,-3.590210423980992,11.02611441072814 -47,6.0,6.0,6.544230459942975,-18.45668232750184 -47,7.0,5.0,-6.289308176100628,22.0125786163522 -47,7.0,7.0,7.733287237496075,-26.527493274828448 -47,7.0,27.0,-1.4439790613954469,4.540814658476248 -47,8.0,5.0,0.0,4.915840805411357 -47,8.0,8.0,0.0,-18.706293706293707 -47,8.0,9.0,0.0,9.090909090909092 -47,8.0,10.0,0.0,4.807692307692308 -47,9.0,5.0,0.0,1.8561002591115965 -47,9.0,8.0,0.0,9.090909090909092 -47,9.0,9.0,13.462042814524237,-41.3837606675224 -47,9.0,16.0,-3.956039125715353,10.317447719844054 -47,9.0,19.0,-1.7848303152666305,3.98535828943083 -47,9.0,20.0,-5.101853820159654,10.98071411292983 -47,9.0,21.0,-2.619319553382597,5.400770303329455 -47,10.0,8.0,0.0,4.807692307692308 -47,10.0,10.0,0.0,-4.807692307692308 -47,11.0,3.0,0.0,4.191255364806866 -47,11.0,11.0,6.573961583776156,-24.424167659260668 -47,11.0,12.0,0.0,7.142857142857143 -47,11.0,13.0,-1.5265676088395577,3.1734252729654173 -47,11.0,14.0,-3.0953961826564296,6.097275864326261 -47,11.0,15.0,-1.9519977922801688,4.104359379111847 -47,12.0,11.0,0.0,7.142857142857143 -47,12.0,12.0,0.0,-7.142857142857143 -47,13.0,11.0,-1.5265676088395577,3.1734252729654173 -47,13.0,13.0,4.01751987283902,-5.424299332335067 -47,13.0,14.0,-2.4909522639994623,2.250874059369649 -47,14.0,11.0,-3.0953961826564296,6.097275864326261 -47,14.0,13.0,-2.4909522639994623,2.250874059369649 -47,14.0,14.0,9.365498545964757,-16.01163373210796 -47,14.0,17.0,-1.8108011504072024,3.687418931630696 -47,14.0,22.0,-1.9683489489016612,3.976064876781356 -47,15.0,11.0,-1.9519977922801688,4.104359379111847 -47,15.0,15.0,3.271064728633931,-8.94513365126506 -47,15.0,16.0,-1.3190669363537617,4.8407742721532125 -47,16.0,9.0,-3.956039125715353,10.317447719844054 -47,16.0,15.0,-1.3190669363537617,4.8407742721532125 -47,16.0,16.0,5.275106062069114,-15.158221991997266 -47,17.0,14.0,-1.8108011504072024,3.687418931630696 -47,17.0,17.0,4.886487584415919,-9.906177730909668 -47,17.0,18.0,-3.0756864340087167,6.218758799278971 -47,18.0,17.0,-3.0756864340087167,6.218758799278971 -47,18.0,18.0,3.0756864340087167,-6.218758799278971 -47,19.0,9.0,-1.7848303152666305,3.98535828943083 -47,19.0,19.0,1.7848303152666305,-3.98535828943083 -47,20.0,9.0,-5.101853820159654,10.98071411292983 -47,20.0,20.0,21.876495189895888,-45.10843276170355 -47,20.0,21.0,-16.774641369736234,34.127718648773715 -47,21.0,9.0,-2.619319553382597,5.400770303329455 -47,21.0,20.0,-16.774641369736234,34.127718648773715 -47,21.0,21.0,21.93449907537439,-43.48289181517921 -47,21.0,23.0,-2.5405381522555563,3.95440286307604 -47,22.0,14.0,-1.9683489489016612,3.976064876781356 -47,22.0,22.0,3.429754555384988,-6.965303617315433 -47,22.0,23.0,-1.4614056064833263,2.989238740534077 -47,23.0,21.0,-2.5405381522555563,3.95440286307604 -47,23.0,22.0,-1.4614056064833263,2.989238740534077 -47,23.0,23.0,5.311836702613133,-9.188263657315172 -47,23.0,24.0,-1.3098929438742493,2.287622053705056 -47,24.0,23.0,-1.3098929438742493,2.287622053705056 -47,24.0,24.0,4.495715080321987,-7.864978761969621 -47,24.0,25.0,-1.2165301194494855,1.8171440463475024 -47,24.0,26.0,-1.9692920169982515,3.760212661917064 -47,25.0,24.0,-1.2165301194494855,1.8171440463475024 -47,25.0,25.0,1.2165301194494855,-1.8171440463475024 -47,26.0,24.0,-1.9692920169982515,3.760212661917064 -47,26.0,26.0,3.652281470778589,-9.46044252232512 -47,26.0,27.0,0.0,2.608731947574922 -47,26.0,28.0,-0.99553355095268,1.881005840357816 -47,26.0,29.0,-0.6874559028276572,1.293971494797717 -47,27.0,5.0,-4.362844058012917,15.463571542897856 -47,27.0,7.0,-1.4439790613954469,4.540814658476248 -47,27.0,26.0,0.0,2.608731947574922 -47,27.0,27.0,5.806823119408364,-22.67145722159613 -47,28.0,26.0,-0.99553355095268,1.881005840357816 -47,28.0,28.0,1.9075867579849564,-3.604364401207048 -47,28.0,29.0,-0.9120532070322764,1.7233585608492326 -47,29.0,26.0,-0.6874559028276572,1.293971494797717 -47,29.0,28.0,-0.9120532070322764,1.7233585608492326 -47,29.0,29.0,1.5995091098599337,-3.0173300556469496 -48,0.0,0.0,6.765516048652632,-21.23160167089863 -48,0.0,1.0,-5.224646179885656,15.646726840803398 -48,0.0,2.0,-1.5408698687669766,5.631674830095234 -48,1.0,0.0,-5.224646179885656,15.646726840803398 -48,1.0,1.0,9.75228216552403,-30.648662892676068 -48,1.0,3.0,-1.7055303166990268,5.1973792282565086 -48,1.0,4.0,-1.1359607881738778,4.772479328281356 -48,1.0,5.0,-1.6861448807654689,5.116477495334806 -48,2.0,0.0,-1.5408698687669766,5.631674830095234 -48,2.0,2.0,9.736318911079088,-29.13794745915803 -48,2.0,3.0,-8.19544904231211,23.5308726290628 -48,3.0,1.0,-1.7055303166990268,5.1973792282565086 -48,3.0,2.0,-8.19544904231211,23.5308726290628 -48,3.0,3.0,16.314103089185693,-55.509410535254254 -48,3.0,5.0,-6.413123730174556,22.31120356548123 -48,3.0,11.0,0.0,4.191255364806866 -48,4.0,1.0,-1.1359607881738778,4.772479328281356 -48,4.0,4.0,4.089980824135861,-12.190647245055052 -48,4.0,6.0,-2.954020035961983,7.449267916773697 -48,5.0,1.0,-1.6861448807654689,5.116477495334806 -48,5.0,3.0,-6.413123730174556,22.31120356548123 -48,5.0,5.0,22.341631269034565,-82.8291478657789 -48,5.0,6.0,-3.590210423980992,11.02611441072814 -48,5.0,7.0,-6.289308176100628,22.0125786163522 -48,5.0,8.0,0.0,4.915840805411357 -48,5.0,9.0,0.0,1.8561002591115965 -48,5.0,27.0,-4.362844058012917,15.463571542897856 -48,6.0,4.0,-2.954020035961983,7.449267916773697 -48,6.0,5.0,-3.590210423980992,11.02611441072814 -48,6.0,6.0,6.544230459942975,-18.45668232750184 -48,7.0,5.0,-6.289308176100628,22.0125786163522 -48,7.0,7.0,7.733287237496075,-26.527493274828448 -48,7.0,27.0,-1.4439790613954469,4.540814658476248 -48,8.0,5.0,0.0,4.915840805411357 -48,8.0,8.0,0.0,-18.706293706293707 -48,8.0,9.0,0.0,9.090909090909092 -48,8.0,10.0,0.0,4.807692307692308 -48,9.0,5.0,0.0,1.8561002591115965 -48,9.0,8.0,0.0,9.090909090909092 -48,9.0,9.0,13.462042814524237,-41.3837606675224 -48,9.0,16.0,-3.956039125715353,10.317447719844054 -48,9.0,19.0,-1.7848303152666305,3.98535828943083 -48,9.0,20.0,-5.101853820159654,10.98071411292983 -48,9.0,21.0,-2.619319553382597,5.400770303329455 -48,10.0,8.0,0.0,4.807692307692308 -48,10.0,10.0,0.0,-4.807692307692308 -48,11.0,3.0,0.0,4.191255364806866 -48,11.0,11.0,6.573961583776156,-24.424167659260668 -48,11.0,12.0,0.0,7.142857142857143 -48,11.0,13.0,-1.5265676088395577,3.1734252729654173 -48,11.0,14.0,-3.0953961826564296,6.097275864326261 -48,11.0,15.0,-1.9519977922801688,4.104359379111847 -48,12.0,11.0,0.0,7.142857142857143 -48,12.0,12.0,0.0,-7.142857142857143 -48,13.0,11.0,-1.5265676088395577,3.1734252729654173 -48,13.0,13.0,4.01751987283902,-5.424299332335067 -48,13.0,14.0,-2.4909522639994623,2.250874059369649 -48,14.0,11.0,-3.0953961826564296,6.097275864326261 -48,14.0,13.0,-2.4909522639994623,2.250874059369649 -48,14.0,14.0,9.365498545964757,-16.01163373210796 -48,14.0,17.0,-1.8108011504072024,3.687418931630696 -48,14.0,22.0,-1.9683489489016612,3.976064876781356 -48,15.0,11.0,-1.9519977922801688,4.104359379111847 -48,15.0,15.0,3.271064728633931,-8.94513365126506 -48,15.0,16.0,-1.3190669363537617,4.8407742721532125 -48,16.0,9.0,-3.956039125715353,10.317447719844054 -48,16.0,15.0,-1.3190669363537617,4.8407742721532125 -48,16.0,16.0,5.275106062069114,-15.158221991997266 -48,17.0,14.0,-1.8108011504072024,3.687418931630696 -48,17.0,17.0,4.886487584415919,-9.906177730909668 -48,17.0,18.0,-3.0756864340087167,6.218758799278971 -48,18.0,17.0,-3.0756864340087167,6.218758799278971 -48,18.0,18.0,8.958039375185187,-17.98346468163191 -48,18.0,19.0,-5.88235294117647,11.76470588235294 -48,19.0,9.0,-1.7848303152666305,3.98535828943083 -48,19.0,18.0,-5.88235294117647,11.76470588235294 -48,19.0,19.0,7.6671832564431,-15.75006417178377 -48,20.0,9.0,-5.101853820159654,10.98071411292983 -48,20.0,20.0,21.876495189895888,-45.10843276170355 -48,20.0,21.0,-16.774641369736234,34.127718648773715 -48,21.0,9.0,-2.619319553382597,5.400770303329455 -48,21.0,20.0,-16.774641369736234,34.127718648773715 -48,21.0,21.0,21.93449907537439,-43.48289181517921 -48,21.0,23.0,-2.5405381522555563,3.95440286307604 -48,22.0,14.0,-1.9683489489016612,3.976064876781356 -48,22.0,22.0,3.429754555384988,-6.965303617315433 -48,22.0,23.0,-1.4614056064833263,2.989238740534077 -48,23.0,21.0,-2.5405381522555563,3.95440286307604 -48,23.0,22.0,-1.4614056064833263,2.989238740534077 -48,23.0,23.0,5.311836702613133,-9.188263657315172 -48,23.0,24.0,-1.3098929438742493,2.287622053705056 -48,24.0,23.0,-1.3098929438742493,2.287622053705056 -48,24.0,24.0,4.495715080321987,-7.864978761969621 -48,24.0,25.0,-1.2165301194494855,1.8171440463475024 -48,24.0,26.0,-1.9692920169982515,3.760212661917064 -48,25.0,24.0,-1.2165301194494855,1.8171440463475024 -48,25.0,25.0,1.2165301194494855,-1.8171440463475024 -48,26.0,24.0,-1.9692920169982515,3.760212661917064 -48,26.0,26.0,3.652281470778589,-9.46044252232512 -48,26.0,27.0,0.0,2.608731947574922 -48,26.0,28.0,-0.99553355095268,1.881005840357816 -48,26.0,29.0,-0.6874559028276572,1.293971494797717 -48,27.0,5.0,-4.362844058012917,15.463571542897856 -48,27.0,7.0,-1.4439790613954469,4.540814658476248 -48,27.0,26.0,0.0,2.608731947574922 -48,27.0,27.0,5.806823119408364,-22.67145722159613 -48,28.0,26.0,-0.99553355095268,1.881005840357816 -48,28.0,28.0,1.9075867579849564,-3.604364401207048 -48,28.0,29.0,-0.9120532070322764,1.7233585608492326 -48,29.0,26.0,-0.6874559028276572,1.293971494797717 -48,29.0,28.0,-0.9120532070322764,1.7233585608492326 -48,29.0,29.0,1.5995091098599337,-3.0173300556469496 -49,0.0,0.0,6.765516048652632,-21.23160167089863 -49,0.0,1.0,-5.224646179885656,15.646726840803398 -49,0.0,2.0,-1.5408698687669766,5.631674830095234 -49,1.0,0.0,-5.224646179885656,15.646726840803398 -49,1.0,1.0,8.046751848825002,-25.46968366441956 -49,1.0,4.0,-1.1359607881738778,4.772479328281356 -49,1.0,5.0,-1.6861448807654689,5.116477495334806 -49,2.0,0.0,-1.5408698687669766,5.631674830095234 -49,2.0,2.0,9.736318911079088,-29.13794745915803 -49,2.0,3.0,-8.19544904231211,23.5308726290628 -49,3.0,2.0,-8.19544904231211,23.5308726290628 -49,3.0,3.0,14.608572772486664,-50.33043130699775 -49,3.0,5.0,-6.413123730174556,22.31120356548123 -49,3.0,11.0,0.0,4.191255364806866 -49,4.0,1.0,-1.1359607881738778,4.772479328281356 -49,4.0,4.0,4.089980824135861,-12.190647245055052 -49,4.0,6.0,-2.954020035961983,7.449267916773697 -49,5.0,1.0,-1.6861448807654689,5.116477495334806 -49,5.0,3.0,-6.413123730174556,22.31120356548123 -49,5.0,5.0,22.341631269034565,-82.8291478657789 -49,5.0,6.0,-3.590210423980992,11.02611441072814 -49,5.0,7.0,-6.289308176100628,22.0125786163522 -49,5.0,8.0,0.0,4.915840805411357 -49,5.0,9.0,0.0,1.8561002591115965 -49,5.0,27.0,-4.362844058012917,15.463571542897856 -49,6.0,4.0,-2.954020035961983,7.449267916773697 -49,6.0,5.0,-3.590210423980992,11.02611441072814 -49,6.0,6.0,6.544230459942975,-18.45668232750184 -49,7.0,5.0,-6.289308176100628,22.0125786163522 -49,7.0,7.0,7.733287237496075,-26.527493274828448 -49,7.0,27.0,-1.4439790613954469,4.540814658476248 -49,8.0,5.0,0.0,4.915840805411357 -49,8.0,8.0,0.0,-18.706293706293707 -49,8.0,9.0,0.0,9.090909090909092 -49,8.0,10.0,0.0,4.807692307692308 -49,9.0,5.0,0.0,1.8561002591115965 -49,9.0,8.0,0.0,9.090909090909092 -49,9.0,9.0,13.462042814524237,-41.3837606675224 -49,9.0,16.0,-3.956039125715353,10.317447719844054 -49,9.0,19.0,-1.7848303152666305,3.98535828943083 -49,9.0,20.0,-5.101853820159654,10.98071411292983 -49,9.0,21.0,-2.619319553382597,5.400770303329455 -49,10.0,8.0,0.0,4.807692307692308 -49,10.0,10.0,0.0,-4.807692307692308 -49,11.0,3.0,0.0,4.191255364806866 -49,11.0,11.0,6.573961583776156,-24.424167659260668 -49,11.0,12.0,0.0,7.142857142857143 -49,11.0,13.0,-1.5265676088395577,3.1734252729654173 -49,11.0,14.0,-3.0953961826564296,6.097275864326261 -49,11.0,15.0,-1.9519977922801688,4.104359379111847 -49,12.0,11.0,0.0,7.142857142857143 -49,12.0,12.0,0.0,-7.142857142857143 -49,13.0,11.0,-1.5265676088395577,3.1734252729654173 -49,13.0,13.0,4.01751987283902,-5.424299332335067 -49,13.0,14.0,-2.4909522639994623,2.250874059369649 -49,14.0,11.0,-3.0953961826564296,6.097275864326261 -49,14.0,13.0,-2.4909522639994623,2.250874059369649 -49,14.0,14.0,9.365498545964757,-16.01163373210796 -49,14.0,17.0,-1.8108011504072024,3.687418931630696 -49,14.0,22.0,-1.9683489489016612,3.976064876781356 -49,15.0,11.0,-1.9519977922801688,4.104359379111847 -49,15.0,15.0,3.271064728633931,-8.94513365126506 -49,15.0,16.0,-1.3190669363537617,4.8407742721532125 -49,16.0,9.0,-3.956039125715353,10.317447719844054 -49,16.0,15.0,-1.3190669363537617,4.8407742721532125 -49,16.0,16.0,5.275106062069114,-15.158221991997266 -49,17.0,14.0,-1.8108011504072024,3.687418931630696 -49,17.0,17.0,4.886487584415919,-9.906177730909668 -49,17.0,18.0,-3.0756864340087167,6.218758799278971 -49,18.0,17.0,-3.0756864340087167,6.218758799278971 -49,18.0,18.0,8.958039375185187,-17.98346468163191 -49,18.0,19.0,-5.88235294117647,11.76470588235294 -49,19.0,9.0,-1.7848303152666305,3.98535828943083 -49,19.0,18.0,-5.88235294117647,11.76470588235294 -49,19.0,19.0,7.6671832564431,-15.75006417178377 -49,20.0,9.0,-5.101853820159654,10.98071411292983 -49,20.0,20.0,21.876495189895888,-45.10843276170355 -49,20.0,21.0,-16.774641369736234,34.127718648773715 -49,21.0,9.0,-2.619319553382597,5.400770303329455 -49,21.0,20.0,-16.774641369736234,34.127718648773715 -49,21.0,21.0,21.93449907537439,-43.48289181517921 -49,21.0,23.0,-2.5405381522555563,3.95440286307604 -49,22.0,14.0,-1.9683489489016612,3.976064876781356 -49,22.0,22.0,3.429754555384988,-6.965303617315433 -49,22.0,23.0,-1.4614056064833263,2.989238740534077 -49,23.0,21.0,-2.5405381522555563,3.95440286307604 -49,23.0,22.0,-1.4614056064833263,2.989238740534077 -49,23.0,23.0,5.311836702613133,-9.188263657315172 -49,23.0,24.0,-1.3098929438742493,2.287622053705056 -49,24.0,23.0,-1.3098929438742493,2.287622053705056 -49,24.0,24.0,4.495715080321987,-7.864978761969621 -49,24.0,25.0,-1.2165301194494855,1.8171440463475024 -49,24.0,26.0,-1.9692920169982515,3.760212661917064 -49,25.0,24.0,-1.2165301194494855,1.8171440463475024 -49,25.0,25.0,1.2165301194494855,-1.8171440463475024 -49,26.0,24.0,-1.9692920169982515,3.760212661917064 -49,26.0,26.0,2.9648255679509314,-8.166471027527404 -49,26.0,27.0,0.0,2.608731947574922 -49,26.0,28.0,-0.99553355095268,1.881005840357816 -49,27.0,5.0,-4.362844058012917,15.463571542897856 -49,27.0,7.0,-1.4439790613954469,4.540814658476248 -49,27.0,26.0,0.0,2.608731947574922 -49,27.0,27.0,5.806823119408364,-22.67145722159613 -49,28.0,26.0,-0.99553355095268,1.881005840357816 -49,28.0,28.0,1.9075867579849564,-3.604364401207048 -49,28.0,29.0,-0.9120532070322764,1.7233585608492326 -49,29.0,28.0,-0.9120532070322764,1.7233585608492326 -49,29.0,29.0,0.9120532070322764,-1.7233585608492326 -50,0.0,0.0,6.765516048652632,-21.23160167089863 -50,0.0,1.0,-5.224646179885656,15.646726840803398 -50,0.0,2.0,-1.5408698687669766,5.631674830095234 -50,1.0,0.0,-5.224646179885656,15.646726840803398 -50,1.0,1.0,9.75228216552403,-30.648662892676068 -50,1.0,3.0,-1.7055303166990268,5.1973792282565086 -50,1.0,4.0,-1.1359607881738778,4.772479328281356 -50,1.0,5.0,-1.6861448807654689,5.116477495334806 -50,2.0,0.0,-1.5408698687669766,5.631674830095234 -50,2.0,2.0,9.736318911079088,-29.13794745915803 -50,2.0,3.0,-8.19544904231211,23.5308726290628 -50,3.0,1.0,-1.7055303166990268,5.1973792282565086 -50,3.0,2.0,-8.19544904231211,23.5308726290628 -50,3.0,3.0,16.314103089185693,-55.509410535254254 -50,3.0,5.0,-6.413123730174556,22.31120356548123 -50,3.0,11.0,0.0,4.191255364806866 -50,4.0,1.0,-1.1359607881738778,4.772479328281356 -50,4.0,4.0,4.089980824135861,-12.190647245055052 -50,4.0,6.0,-2.954020035961983,7.449267916773697 -50,5.0,1.0,-1.6861448807654689,5.116477495334806 -50,5.0,3.0,-6.413123730174556,22.31120356548123 -50,5.0,5.0,22.341631269034565,-82.8291478657789 -50,5.0,6.0,-3.590210423980992,11.02611441072814 -50,5.0,7.0,-6.289308176100628,22.0125786163522 -50,5.0,8.0,0.0,4.915840805411357 -50,5.0,9.0,0.0,1.8561002591115965 -50,5.0,27.0,-4.362844058012917,15.463571542897856 -50,6.0,4.0,-2.954020035961983,7.449267916773697 -50,6.0,5.0,-3.590210423980992,11.02611441072814 -50,6.0,6.0,6.544230459942975,-18.45668232750184 -50,7.0,5.0,-6.289308176100628,22.0125786163522 -50,7.0,7.0,6.289308176100628,-22.0080786163522 -50,8.0,5.0,0.0,4.915840805411357 -50,8.0,8.0,0.0,-9.615384615384617 -50,8.0,10.0,0.0,4.807692307692308 -50,9.0,5.0,0.0,1.8561002591115965 -50,9.0,9.0,8.36018899436458,-21.31213746368348 -50,9.0,16.0,-3.956039125715353,10.317447719844054 -50,9.0,19.0,-1.7848303152666305,3.98535828943083 -50,9.0,21.0,-2.619319553382597,5.400770303329455 -50,10.0,8.0,0.0,4.807692307692308 -50,10.0,10.0,0.0,-4.807692307692308 -50,11.0,3.0,0.0,4.191255364806866 -50,11.0,11.0,6.573961583776156,-24.424167659260668 -50,11.0,12.0,0.0,7.142857142857143 -50,11.0,13.0,-1.5265676088395577,3.1734252729654173 -50,11.0,14.0,-3.0953961826564296,6.097275864326261 -50,11.0,15.0,-1.9519977922801688,4.104359379111847 -50,12.0,11.0,0.0,7.142857142857143 -50,12.0,12.0,0.0,-7.142857142857143 -50,13.0,11.0,-1.5265676088395577,3.1734252729654173 -50,13.0,13.0,4.01751987283902,-5.424299332335067 -50,13.0,14.0,-2.4909522639994623,2.250874059369649 -50,14.0,11.0,-3.0953961826564296,6.097275864326261 -50,14.0,13.0,-2.4909522639994623,2.250874059369649 -50,14.0,14.0,7.397149597063095,-12.035568855326606 -50,14.0,17.0,-1.8108011504072024,3.687418931630696 -50,15.0,11.0,-1.9519977922801688,4.104359379111847 -50,15.0,15.0,3.271064728633931,-8.94513365126506 -50,15.0,16.0,-1.3190669363537617,4.8407742721532125 -50,16.0,9.0,-3.956039125715353,10.317447719844054 -50,16.0,15.0,-1.3190669363537617,4.8407742721532125 -50,16.0,16.0,5.275106062069114,-15.158221991997266 -50,17.0,14.0,-1.8108011504072024,3.687418931630696 -50,17.0,17.0,4.886487584415919,-9.906177730909668 -50,17.0,18.0,-3.0756864340087167,6.218758799278971 -50,18.0,17.0,-3.0756864340087167,6.218758799278971 -50,18.0,18.0,8.958039375185187,-17.98346468163191 -50,18.0,19.0,-5.88235294117647,11.76470588235294 -50,19.0,9.0,-1.7848303152666305,3.98535828943083 -50,19.0,18.0,-5.88235294117647,11.76470588235294 -50,19.0,19.0,7.6671832564431,-15.75006417178377 -50,20.0,20.0,16.774641369736234,-34.127718648773715 -50,20.0,21.0,-16.774641369736234,34.127718648773715 -50,21.0,9.0,-2.619319553382597,5.400770303329455 -50,21.0,20.0,-16.774641369736234,34.127718648773715 -50,21.0,21.0,21.93449907537439,-43.48289181517921 -50,21.0,23.0,-2.5405381522555563,3.95440286307604 -50,22.0,22.0,1.4614056064833263,-2.989238740534077 -50,22.0,23.0,-1.4614056064833263,2.989238740534077 -50,23.0,21.0,-2.5405381522555563,3.95440286307604 -50,23.0,22.0,-1.4614056064833263,2.989238740534077 -50,23.0,23.0,5.311836702613133,-9.188263657315172 -50,23.0,24.0,-1.3098929438742493,2.287622053705056 -50,24.0,23.0,-1.3098929438742493,2.287622053705056 -50,24.0,24.0,4.495715080321987,-7.864978761969621 -50,24.0,25.0,-1.2165301194494855,1.8171440463475024 -50,24.0,26.0,-1.9692920169982515,3.760212661917064 -50,25.0,24.0,-1.2165301194494855,1.8171440463475024 -50,25.0,25.0,1.2165301194494855,-1.8171440463475024 -50,26.0,24.0,-1.9692920169982515,3.760212661917064 -50,26.0,26.0,3.652281470778589,-9.46044252232512 -50,26.0,27.0,0.0,2.608731947574922 -50,26.0,28.0,-0.99553355095268,1.881005840357816 -50,26.0,29.0,-0.6874559028276572,1.293971494797717 -50,27.0,5.0,-4.362844058012917,15.463571542897856 -50,27.0,26.0,0.0,2.608731947574922 -50,27.0,27.0,4.362844058012917,-18.15204256311988 -50,28.0,26.0,-0.99553355095268,1.881005840357816 -50,28.0,28.0,1.9075867579849564,-3.604364401207048 -50,28.0,29.0,-0.9120532070322764,1.7233585608492326 -50,29.0,26.0,-0.6874559028276572,1.293971494797717 -50,29.0,28.0,-0.9120532070322764,1.7233585608492326 -50,29.0,29.0,1.5995091098599337,-3.0173300556469496 -51,0.0,0.0,6.765516048652632,-21.23160167089863 -51,0.0,1.0,-5.224646179885656,15.646726840803398 -51,0.0,2.0,-1.5408698687669766,5.631674830095234 -51,1.0,0.0,-5.224646179885656,15.646726840803398 -51,1.0,1.0,8.066137284758561,-25.55088539734126 -51,1.0,3.0,-1.7055303166990268,5.1973792282565086 -51,1.0,4.0,-1.1359607881738778,4.772479328281356 -51,2.0,0.0,-1.5408698687669766,5.631674830095234 -51,2.0,2.0,9.736318911079088,-29.13794745915803 -51,2.0,3.0,-8.19544904231211,23.5308726290628 -51,3.0,1.0,-1.7055303166990268,5.1973792282565086 -51,3.0,2.0,-8.19544904231211,23.5308726290628 -51,3.0,3.0,16.314103089185693,-55.509410535254254 -51,3.0,5.0,-6.413123730174556,22.31120356548123 -51,3.0,11.0,0.0,4.191255364806866 -51,4.0,1.0,-1.1359607881738778,4.772479328281356 -51,4.0,4.0,4.089980824135861,-12.190647245055052 -51,4.0,6.0,-2.954020035961983,7.449267916773697 -51,5.0,3.0,-6.413123730174556,22.31120356548123 -51,5.0,5.0,20.655486388269097,-77.7313703704441 -51,5.0,6.0,-3.590210423980992,11.02611441072814 -51,5.0,7.0,-6.289308176100628,22.0125786163522 -51,5.0,8.0,0.0,4.915840805411357 -51,5.0,9.0,0.0,1.8561002591115965 -51,5.0,27.0,-4.362844058012917,15.463571542897856 -51,6.0,4.0,-2.954020035961983,7.449267916773697 -51,6.0,5.0,-3.590210423980992,11.02611441072814 -51,6.0,6.0,6.544230459942975,-18.45668232750184 -51,7.0,5.0,-6.289308176100628,22.0125786163522 -51,7.0,7.0,6.289308176100628,-22.0080786163522 -51,8.0,5.0,0.0,4.915840805411357 -51,8.0,8.0,0.0,-18.706293706293707 -51,8.0,9.0,0.0,9.090909090909092 -51,8.0,10.0,0.0,4.807692307692308 -51,9.0,5.0,0.0,1.8561002591115965 -51,9.0,8.0,0.0,9.090909090909092 -51,9.0,9.0,10.842723261141638,-35.98299036419294 -51,9.0,16.0,-3.956039125715353,10.317447719844054 -51,9.0,19.0,-1.7848303152666305,3.98535828943083 -51,9.0,20.0,-5.101853820159654,10.98071411292983 -51,10.0,8.0,0.0,4.807692307692308 -51,10.0,10.0,0.0,-4.807692307692308 -51,11.0,3.0,0.0,4.191255364806866 -51,11.0,11.0,6.573961583776156,-24.424167659260668 -51,11.0,12.0,0.0,7.142857142857143 -51,11.0,13.0,-1.5265676088395577,3.1734252729654173 -51,11.0,14.0,-3.0953961826564296,6.097275864326261 -51,11.0,15.0,-1.9519977922801688,4.104359379111847 -51,12.0,11.0,0.0,7.142857142857143 -51,12.0,12.0,0.0,-7.142857142857143 -51,13.0,11.0,-1.5265676088395577,3.1734252729654173 -51,13.0,13.0,1.5265676088395577,-3.1734252729654173 -51,14.0,11.0,-3.0953961826564296,6.097275864326261 -51,14.0,14.0,6.874546281965293,-13.760759672738311 -51,14.0,17.0,-1.8108011504072024,3.687418931630696 -51,14.0,22.0,-1.9683489489016612,3.976064876781356 -51,15.0,11.0,-1.9519977922801688,4.104359379111847 -51,15.0,15.0,3.271064728633931,-8.94513365126506 -51,15.0,16.0,-1.3190669363537617,4.8407742721532125 -51,16.0,9.0,-3.956039125715353,10.317447719844054 -51,16.0,15.0,-1.3190669363537617,4.8407742721532125 -51,16.0,16.0,5.275106062069114,-15.158221991997266 -51,17.0,14.0,-1.8108011504072024,3.687418931630696 -51,17.0,17.0,4.886487584415919,-9.906177730909668 -51,17.0,18.0,-3.0756864340087167,6.218758799278971 -51,18.0,17.0,-3.0756864340087167,6.218758799278971 -51,18.0,18.0,8.958039375185187,-17.98346468163191 -51,18.0,19.0,-5.88235294117647,11.76470588235294 -51,19.0,9.0,-1.7848303152666305,3.98535828943083 -51,19.0,18.0,-5.88235294117647,11.76470588235294 -51,19.0,19.0,7.6671832564431,-15.75006417178377 -51,20.0,9.0,-5.101853820159654,10.98071411292983 -51,20.0,20.0,21.876495189895888,-45.10843276170355 -51,20.0,21.0,-16.774641369736234,34.127718648773715 -51,21.0,20.0,-16.774641369736234,34.127718648773715 -51,21.0,21.0,19.31517952199179,-38.08212151184976 -51,21.0,23.0,-2.5405381522555563,3.95440286307604 -51,22.0,14.0,-1.9683489489016612,3.976064876781356 -51,22.0,22.0,3.429754555384988,-6.965303617315433 -51,22.0,23.0,-1.4614056064833263,2.989238740534077 -51,23.0,21.0,-2.5405381522555563,3.95440286307604 -51,23.0,22.0,-1.4614056064833263,2.989238740534077 -51,23.0,23.0,4.001943758738883,-6.900641603610116 -51,24.0,24.0,3.185822136447737,-5.577356708264566 -51,24.0,25.0,-1.2165301194494855,1.8171440463475024 -51,24.0,26.0,-1.9692920169982515,3.760212661917064 -51,25.0,24.0,-1.2165301194494855,1.8171440463475024 -51,25.0,25.0,1.2165301194494855,-1.8171440463475024 -51,26.0,24.0,-1.9692920169982515,3.760212661917064 -51,26.0,26.0,3.652281470778589,-9.46044252232512 -51,26.0,27.0,0.0,2.608731947574922 -51,26.0,28.0,-0.99553355095268,1.881005840357816 -51,26.0,29.0,-0.6874559028276572,1.293971494797717 -51,27.0,5.0,-4.362844058012917,15.463571542897856 -51,27.0,26.0,0.0,2.608731947574922 -51,27.0,27.0,4.362844058012917,-18.15204256311988 -51,28.0,26.0,-0.99553355095268,1.881005840357816 -51,28.0,28.0,1.9075867579849564,-3.604364401207048 -51,28.0,29.0,-0.9120532070322764,1.7233585608492326 -51,29.0,26.0,-0.6874559028276572,1.293971494797717 -51,29.0,28.0,-0.9120532070322764,1.7233585608492326 -51,29.0,29.0,1.5995091098599337,-3.0173300556469496 -52,0.0,0.0,6.765516048652632,-21.23160167089863 -52,0.0,1.0,-5.224646179885656,15.646726840803398 -52,0.0,2.0,-1.5408698687669766,5.631674830095234 -52,1.0,0.0,-5.224646179885656,15.646726840803398 -52,1.0,1.0,9.75228216552403,-30.648662892676068 -52,1.0,3.0,-1.7055303166990268,5.1973792282565086 -52,1.0,4.0,-1.1359607881738778,4.772479328281356 -52,1.0,5.0,-1.6861448807654689,5.116477495334806 -52,2.0,0.0,-1.5408698687669766,5.631674830095234 -52,2.0,2.0,9.736318911079088,-29.13794745915803 -52,2.0,3.0,-8.19544904231211,23.5308726290628 -52,3.0,1.0,-1.7055303166990268,5.1973792282565086 -52,3.0,2.0,-8.19544904231211,23.5308726290628 -52,3.0,3.0,16.314103089185693,-55.509410535254254 -52,3.0,5.0,-6.413123730174556,22.31120356548123 -52,3.0,11.0,0.0,4.191255364806866 -52,4.0,1.0,-1.1359607881738778,4.772479328281356 -52,4.0,4.0,1.1359607881738778,-4.751579328281355 -52,5.0,1.0,-1.6861448807654689,5.116477495334806 -52,5.0,3.0,-6.413123730174556,22.31120356548123 -52,5.0,5.0,22.341631269034565,-82.8291478657789 -52,5.0,6.0,-3.590210423980992,11.02611441072814 -52,5.0,7.0,-6.289308176100628,22.0125786163522 -52,5.0,8.0,0.0,4.915840805411357 -52,5.0,9.0,0.0,1.8561002591115965 -52,5.0,27.0,-4.362844058012917,15.463571542897856 -52,6.0,5.0,-3.590210423980992,11.02611441072814 -52,6.0,6.0,3.590210423980992,-11.01761441072814 -52,7.0,5.0,-6.289308176100628,22.0125786163522 -52,7.0,7.0,7.733287237496075,-26.527493274828448 -52,7.0,27.0,-1.4439790613954469,4.540814658476248 -52,8.0,5.0,0.0,4.915840805411357 -52,8.0,8.0,0.0,-18.706293706293707 -52,8.0,9.0,0.0,9.090909090909092 -52,8.0,10.0,0.0,4.807692307692308 -52,9.0,5.0,0.0,1.8561002591115965 -52,9.0,8.0,0.0,9.090909090909092 -52,9.0,9.0,11.677212499257603,-37.39840237809157 -52,9.0,16.0,-3.956039125715353,10.317447719844054 -52,9.0,20.0,-5.101853820159654,10.98071411292983 -52,9.0,21.0,-2.619319553382597,5.400770303329455 -52,10.0,8.0,0.0,4.807692307692308 -52,10.0,10.0,0.0,-4.807692307692308 -52,11.0,3.0,0.0,4.191255364806866 -52,11.0,11.0,6.573961583776156,-24.424167659260668 -52,11.0,12.0,0.0,7.142857142857143 -52,11.0,13.0,-1.5265676088395577,3.1734252729654173 -52,11.0,14.0,-3.0953961826564296,6.097275864326261 -52,11.0,15.0,-1.9519977922801688,4.104359379111847 -52,12.0,11.0,0.0,7.142857142857143 -52,12.0,12.0,0.0,-7.142857142857143 -52,13.0,11.0,-1.5265676088395577,3.1734252729654173 -52,13.0,13.0,4.01751987283902,-5.424299332335067 -52,13.0,14.0,-2.4909522639994623,2.250874059369649 -52,14.0,11.0,-3.0953961826564296,6.097275864326261 -52,14.0,13.0,-2.4909522639994623,2.250874059369649 -52,14.0,14.0,9.365498545964757,-16.01163373210796 -52,14.0,17.0,-1.8108011504072024,3.687418931630696 -52,14.0,22.0,-1.9683489489016612,3.976064876781356 -52,15.0,11.0,-1.9519977922801688,4.104359379111847 -52,15.0,15.0,3.271064728633931,-8.94513365126506 -52,15.0,16.0,-1.3190669363537617,4.8407742721532125 -52,16.0,9.0,-3.956039125715353,10.317447719844054 -52,16.0,15.0,-1.3190669363537617,4.8407742721532125 -52,16.0,16.0,5.275106062069114,-15.158221991997266 -52,17.0,14.0,-1.8108011504072024,3.687418931630696 -52,17.0,17.0,4.886487584415919,-9.906177730909668 -52,17.0,18.0,-3.0756864340087167,6.218758799278971 -52,18.0,17.0,-3.0756864340087167,6.218758799278971 -52,18.0,18.0,8.958039375185187,-17.98346468163191 -52,18.0,19.0,-5.88235294117647,11.76470588235294 -52,19.0,18.0,-5.88235294117647,11.76470588235294 -52,19.0,19.0,5.88235294117647,-11.76470588235294 -52,20.0,9.0,-5.101853820159654,10.98071411292983 -52,20.0,20.0,21.876495189895888,-45.10843276170355 -52,20.0,21.0,-16.774641369736234,34.127718648773715 -52,21.0,9.0,-2.619319553382597,5.400770303329455 -52,21.0,20.0,-16.774641369736234,34.127718648773715 -52,21.0,21.0,21.93449907537439,-43.48289181517921 -52,21.0,23.0,-2.5405381522555563,3.95440286307604 -52,22.0,14.0,-1.9683489489016612,3.976064876781356 -52,22.0,22.0,3.429754555384988,-6.965303617315433 -52,22.0,23.0,-1.4614056064833263,2.989238740534077 -52,23.0,21.0,-2.5405381522555563,3.95440286307604 -52,23.0,22.0,-1.4614056064833263,2.989238740534077 -52,23.0,23.0,5.311836702613133,-9.188263657315172 -52,23.0,24.0,-1.3098929438742493,2.287622053705056 -52,24.0,23.0,-1.3098929438742493,2.287622053705056 -52,24.0,24.0,4.495715080321987,-7.864978761969621 -52,24.0,25.0,-1.2165301194494855,1.8171440463475024 -52,24.0,26.0,-1.9692920169982515,3.760212661917064 -52,25.0,24.0,-1.2165301194494855,1.8171440463475024 -52,25.0,25.0,1.2165301194494855,-1.8171440463475024 -52,26.0,24.0,-1.9692920169982515,3.760212661917064 -52,26.0,26.0,3.652281470778589,-9.46044252232512 -52,26.0,27.0,0.0,2.608731947574922 -52,26.0,28.0,-0.99553355095268,1.881005840357816 -52,26.0,29.0,-0.6874559028276572,1.293971494797717 -52,27.0,5.0,-4.362844058012917,15.463571542897856 -52,27.0,7.0,-1.4439790613954469,4.540814658476248 -52,27.0,26.0,0.0,2.608731947574922 -52,27.0,27.0,5.806823119408364,-22.67145722159613 -52,28.0,26.0,-0.99553355095268,1.881005840357816 -52,28.0,28.0,1.9075867579849564,-3.604364401207048 -52,28.0,29.0,-0.9120532070322764,1.7233585608492326 -52,29.0,26.0,-0.6874559028276572,1.293971494797717 -52,29.0,28.0,-0.9120532070322764,1.7233585608492326 -52,29.0,29.0,1.5995091098599337,-3.0173300556469496 -53,0.0,0.0,6.765516048652632,-21.23160167089863 -53,0.0,1.0,-5.224646179885656,15.646726840803398 -53,0.0,2.0,-1.5408698687669766,5.631674830095234 -53,1.0,0.0,-5.224646179885656,15.646726840803398 -53,1.0,1.0,9.75228216552403,-30.648662892676068 -53,1.0,3.0,-1.7055303166990268,5.1973792282565086 -53,1.0,4.0,-1.1359607881738778,4.772479328281356 -53,1.0,5.0,-1.6861448807654689,5.116477495334806 -53,2.0,0.0,-1.5408698687669766,5.631674830095234 -53,2.0,2.0,9.736318911079088,-29.13794745915803 -53,2.0,3.0,-8.19544904231211,23.5308726290628 -53,3.0,1.0,-1.7055303166990268,5.1973792282565086 -53,3.0,2.0,-8.19544904231211,23.5308726290628 -53,3.0,3.0,16.314103089185693,-55.509410535254254 -53,3.0,5.0,-6.413123730174556,22.31120356548123 -53,3.0,11.0,0.0,4.191255364806866 -53,4.0,1.0,-1.1359607881738778,4.772479328281356 -53,4.0,4.0,4.089980824135861,-12.190647245055052 -53,4.0,6.0,-2.954020035961983,7.449267916773697 -53,5.0,1.0,-1.6861448807654689,5.116477495334806 -53,5.0,3.0,-6.413123730174556,22.31120356548123 -53,5.0,5.0,22.341631269034565,-82.8291478657789 -53,5.0,6.0,-3.590210423980992,11.02611441072814 -53,5.0,7.0,-6.289308176100628,22.0125786163522 -53,5.0,8.0,0.0,4.915840805411357 -53,5.0,9.0,0.0,1.8561002591115965 -53,5.0,27.0,-4.362844058012917,15.463571542897856 -53,6.0,4.0,-2.954020035961983,7.449267916773697 -53,6.0,5.0,-3.590210423980992,11.02611441072814 -53,6.0,6.0,6.544230459942975,-18.45668232750184 -53,7.0,5.0,-6.289308176100628,22.0125786163522 -53,7.0,7.0,7.733287237496075,-26.527493274828448 -53,7.0,27.0,-1.4439790613954469,4.540814658476248 -53,8.0,5.0,0.0,4.915840805411357 -53,8.0,8.0,0.0,-18.706293706293707 -53,8.0,9.0,0.0,9.090909090909092 -53,8.0,10.0,0.0,4.807692307692308 -53,9.0,5.0,0.0,1.8561002591115965 -53,9.0,8.0,0.0,9.090909090909092 -53,9.0,9.0,13.462042814524237,-41.3837606675224 -53,9.0,16.0,-3.956039125715353,10.317447719844054 -53,9.0,19.0,-1.7848303152666305,3.98535828943083 -53,9.0,20.0,-5.101853820159654,10.98071411292983 -53,9.0,21.0,-2.619319553382597,5.400770303329455 -53,10.0,8.0,0.0,4.807692307692308 -53,10.0,10.0,0.0,-4.807692307692308 -53,11.0,3.0,0.0,4.191255364806866 -53,11.0,11.0,6.573961583776156,-24.424167659260668 -53,11.0,12.0,0.0,7.142857142857143 -53,11.0,13.0,-1.5265676088395577,3.1734252729654173 -53,11.0,14.0,-3.0953961826564296,6.097275864326261 -53,11.0,15.0,-1.9519977922801688,4.104359379111847 -53,12.0,11.0,0.0,7.142857142857143 -53,12.0,12.0,0.0,-7.142857142857143 -53,13.0,11.0,-1.5265676088395577,3.1734252729654173 -53,13.0,13.0,4.01751987283902,-5.424299332335067 -53,13.0,14.0,-2.4909522639994623,2.250874059369649 -53,14.0,11.0,-3.0953961826564296,6.097275864326261 -53,14.0,13.0,-2.4909522639994623,2.250874059369649 -53,14.0,14.0,9.365498545964757,-16.01163373210796 -53,14.0,17.0,-1.8108011504072024,3.687418931630696 -53,14.0,22.0,-1.9683489489016612,3.976064876781356 -53,15.0,11.0,-1.9519977922801688,4.104359379111847 -53,15.0,15.0,3.271064728633931,-8.94513365126506 -53,15.0,16.0,-1.3190669363537617,4.8407742721532125 -53,16.0,9.0,-3.956039125715353,10.317447719844054 -53,16.0,15.0,-1.3190669363537617,4.8407742721532125 -53,16.0,16.0,5.275106062069114,-15.158221991997266 -53,17.0,14.0,-1.8108011504072024,3.687418931630696 -53,17.0,17.0,4.886487584415919,-9.906177730909668 -53,17.0,18.0,-3.0756864340087167,6.218758799278971 -53,18.0,17.0,-3.0756864340087167,6.218758799278971 -53,18.0,18.0,8.958039375185187,-17.98346468163191 -53,18.0,19.0,-5.88235294117647,11.76470588235294 -53,19.0,9.0,-1.7848303152666305,3.98535828943083 -53,19.0,18.0,-5.88235294117647,11.76470588235294 -53,19.0,19.0,7.6671832564431,-15.75006417178377 -53,20.0,9.0,-5.101853820159654,10.98071411292983 -53,20.0,20.0,21.876495189895888,-45.10843276170355 -53,20.0,21.0,-16.774641369736234,34.127718648773715 -53,21.0,9.0,-2.619319553382597,5.400770303329455 -53,21.0,20.0,-16.774641369736234,34.127718648773715 -53,21.0,21.0,21.93449907537439,-43.48289181517921 -53,21.0,23.0,-2.5405381522555563,3.95440286307604 -53,22.0,14.0,-1.9683489489016612,3.976064876781356 -53,22.0,22.0,3.429754555384988,-6.965303617315433 -53,22.0,23.0,-1.4614056064833263,2.989238740534077 -53,23.0,21.0,-2.5405381522555563,3.95440286307604 -53,23.0,22.0,-1.4614056064833263,2.989238740534077 -53,23.0,23.0,5.311836702613133,-9.188263657315172 -53,23.0,24.0,-1.3098929438742493,2.287622053705056 -53,24.0,23.0,-1.3098929438742493,2.287622053705056 -53,24.0,24.0,2.526423063323735,-4.104766100052558 -53,24.0,25.0,-1.2165301194494855,1.8171440463475024 -53,25.0,24.0,-1.2165301194494855,1.8171440463475024 -53,25.0,25.0,1.2165301194494855,-1.8171440463475024 -53,26.0,26.0,1.6829894537803372,-5.700229860408058 -53,26.0,27.0,0.0,2.608731947574922 -53,26.0,28.0,-0.99553355095268,1.881005840357816 -53,26.0,29.0,-0.6874559028276572,1.293971494797717 -53,27.0,5.0,-4.362844058012917,15.463571542897856 -53,27.0,7.0,-1.4439790613954469,4.540814658476248 -53,27.0,26.0,0.0,2.608731947574922 -53,27.0,27.0,5.806823119408364,-22.67145722159613 -53,28.0,26.0,-0.99553355095268,1.881005840357816 -53,28.0,28.0,1.9075867579849564,-3.604364401207048 -53,28.0,29.0,-0.9120532070322764,1.7233585608492326 -53,29.0,26.0,-0.6874559028276572,1.293971494797717 -53,29.0,28.0,-0.9120532070322764,1.7233585608492326 -53,29.0,29.0,1.5995091098599337,-3.0173300556469496 -54,0.0,0.0,6.765516048652632,-21.23160167089863 -54,0.0,1.0,-5.224646179885656,15.646726840803398 -54,0.0,2.0,-1.5408698687669766,5.631674830095234 -54,1.0,0.0,-5.224646179885656,15.646726840803398 -54,1.0,1.0,9.75228216552403,-30.648662892676068 -54,1.0,3.0,-1.7055303166990268,5.1973792282565086 -54,1.0,4.0,-1.1359607881738778,4.772479328281356 -54,1.0,5.0,-1.6861448807654689,5.116477495334806 -54,2.0,0.0,-1.5408698687669766,5.631674830095234 -54,2.0,2.0,9.736318911079088,-29.13794745915803 -54,2.0,3.0,-8.19544904231211,23.5308726290628 -54,3.0,1.0,-1.7055303166990268,5.1973792282565086 -54,3.0,2.0,-8.19544904231211,23.5308726290628 -54,3.0,3.0,16.314103089185693,-55.509410535254254 -54,3.0,5.0,-6.413123730174556,22.31120356548123 -54,3.0,11.0,0.0,4.191255364806866 -54,4.0,1.0,-1.1359607881738778,4.772479328281356 -54,4.0,4.0,4.089980824135861,-12.190647245055052 -54,4.0,6.0,-2.954020035961983,7.449267916773697 -54,5.0,1.0,-1.6861448807654689,5.116477495334806 -54,5.0,3.0,-6.413123730174556,22.31120356548123 -54,5.0,5.0,22.341631269034565,-82.8291478657789 -54,5.0,6.0,-3.590210423980992,11.02611441072814 -54,5.0,7.0,-6.289308176100628,22.0125786163522 -54,5.0,8.0,0.0,4.915840805411357 -54,5.0,9.0,0.0,1.8561002591115965 -54,5.0,27.0,-4.362844058012917,15.463571542897856 -54,6.0,4.0,-2.954020035961983,7.449267916773697 -54,6.0,5.0,-3.590210423980992,11.02611441072814 -54,6.0,6.0,6.544230459942975,-18.45668232750184 -54,7.0,5.0,-6.289308176100628,22.0125786163522 -54,7.0,7.0,7.733287237496075,-26.527493274828448 -54,7.0,27.0,-1.4439790613954469,4.540814658476248 -54,8.0,5.0,0.0,4.915840805411357 -54,8.0,8.0,0.0,-18.706293706293707 -54,8.0,9.0,0.0,9.090909090909092 -54,8.0,10.0,0.0,4.807692307692308 -54,9.0,5.0,0.0,1.8561002591115965 -54,9.0,8.0,0.0,9.090909090909092 -54,9.0,9.0,13.462042814524237,-41.3837606675224 -54,9.0,16.0,-3.956039125715353,10.317447719844054 -54,9.0,19.0,-1.7848303152666305,3.98535828943083 -54,9.0,20.0,-5.101853820159654,10.98071411292983 -54,9.0,21.0,-2.619319553382597,5.400770303329455 -54,10.0,8.0,0.0,4.807692307692308 -54,10.0,10.0,0.0,-4.807692307692308 -54,11.0,3.0,0.0,4.191255364806866 -54,11.0,11.0,6.573961583776156,-24.424167659260668 -54,11.0,12.0,0.0,7.142857142857143 -54,11.0,13.0,-1.5265676088395577,3.1734252729654173 -54,11.0,14.0,-3.0953961826564296,6.097275864326261 -54,11.0,15.0,-1.9519977922801688,4.104359379111847 -54,12.0,11.0,0.0,7.142857142857143 -54,12.0,12.0,0.0,-7.142857142857143 -54,13.0,11.0,-1.5265676088395577,3.1734252729654173 -54,13.0,13.0,4.01751987283902,-5.424299332335067 -54,13.0,14.0,-2.4909522639994623,2.250874059369649 -54,14.0,11.0,-3.0953961826564296,6.097275864326261 -54,14.0,13.0,-2.4909522639994623,2.250874059369649 -54,14.0,14.0,9.365498545964757,-16.01163373210796 -54,14.0,17.0,-1.8108011504072024,3.687418931630696 -54,14.0,22.0,-1.9683489489016612,3.976064876781356 -54,15.0,11.0,-1.9519977922801688,4.104359379111847 -54,15.0,15.0,3.271064728633931,-8.94513365126506 -54,15.0,16.0,-1.3190669363537617,4.8407742721532125 -54,16.0,9.0,-3.956039125715353,10.317447719844054 -54,16.0,15.0,-1.3190669363537617,4.8407742721532125 -54,16.0,16.0,5.275106062069114,-15.158221991997266 -54,17.0,14.0,-1.8108011504072024,3.687418931630696 -54,17.0,17.0,4.886487584415919,-9.906177730909668 -54,17.0,18.0,-3.0756864340087167,6.218758799278971 -54,18.0,17.0,-3.0756864340087167,6.218758799278971 -54,18.0,18.0,8.958039375185187,-17.98346468163191 -54,18.0,19.0,-5.88235294117647,11.76470588235294 -54,19.0,9.0,-1.7848303152666305,3.98535828943083 -54,19.0,18.0,-5.88235294117647,11.76470588235294 -54,19.0,19.0,7.6671832564431,-15.75006417178377 -54,20.0,9.0,-5.101853820159654,10.98071411292983 -54,20.0,20.0,21.876495189895888,-45.10843276170355 -54,20.0,21.0,-16.774641369736234,34.127718648773715 -54,21.0,9.0,-2.619319553382597,5.400770303329455 -54,21.0,20.0,-16.774641369736234,34.127718648773715 -54,21.0,21.0,21.93449907537439,-43.48289181517921 -54,21.0,23.0,-2.5405381522555563,3.95440286307604 -54,22.0,14.0,-1.9683489489016612,3.976064876781356 -54,22.0,22.0,3.429754555384988,-6.965303617315433 -54,22.0,23.0,-1.4614056064833263,2.989238740534077 -54,23.0,21.0,-2.5405381522555563,3.95440286307604 -54,23.0,22.0,-1.4614056064833263,2.989238740534077 -54,23.0,23.0,5.311836702613133,-9.188263657315172 -54,23.0,24.0,-1.3098929438742493,2.287622053705056 -54,24.0,23.0,-1.3098929438742493,2.287622053705056 -54,24.0,24.0,4.495715080321987,-7.864978761969621 -54,24.0,25.0,-1.2165301194494855,1.8171440463475024 -54,24.0,26.0,-1.9692920169982515,3.760212661917064 -54,25.0,24.0,-1.2165301194494855,1.8171440463475024 -54,25.0,25.0,1.2165301194494855,-1.8171440463475024 -54,26.0,24.0,-1.9692920169982515,3.760212661917064 -54,26.0,26.0,3.652281470778589,-9.46044252232512 -54,26.0,27.0,0.0,2.608731947574922 -54,26.0,28.0,-0.99553355095268,1.881005840357816 -54,26.0,29.0,-0.6874559028276572,1.293971494797717 -54,27.0,5.0,-4.362844058012917,15.463571542897856 -54,27.0,7.0,-1.4439790613954469,4.540814658476248 -54,27.0,26.0,0.0,2.608731947574922 -54,27.0,27.0,5.806823119408364,-22.67145722159613 -54,28.0,26.0,-0.99553355095268,1.881005840357816 -54,28.0,28.0,1.9075867579849564,-3.604364401207048 -54,28.0,29.0,-0.9120532070322764,1.7233585608492326 -54,29.0,26.0,-0.6874559028276572,1.293971494797717 -54,29.0,28.0,-0.9120532070322764,1.7233585608492326 -54,29.0,29.0,1.5995091098599337,-3.0173300556469496 -55,0.0,0.0,6.765516048652632,-21.23160167089863 -55,0.0,1.0,-5.224646179885656,15.646726840803398 -55,0.0,2.0,-1.5408698687669766,5.631674830095234 -55,1.0,0.0,-5.224646179885656,15.646726840803398 -55,1.0,1.0,9.75228216552403,-30.648662892676068 -55,1.0,3.0,-1.7055303166990268,5.1973792282565086 -55,1.0,4.0,-1.1359607881738778,4.772479328281356 -55,1.0,5.0,-1.6861448807654689,5.116477495334806 -55,2.0,0.0,-1.5408698687669766,5.631674830095234 -55,2.0,2.0,9.736318911079088,-29.13794745915803 -55,2.0,3.0,-8.19544904231211,23.5308726290628 -55,3.0,1.0,-1.7055303166990268,5.1973792282565086 -55,3.0,2.0,-8.19544904231211,23.5308726290628 -55,3.0,3.0,16.314103089185693,-55.509410535254254 -55,3.0,5.0,-6.413123730174556,22.31120356548123 -55,3.0,11.0,0.0,4.191255364806866 -55,4.0,1.0,-1.1359607881738778,4.772479328281356 -55,4.0,4.0,4.089980824135861,-12.190647245055052 -55,4.0,6.0,-2.954020035961983,7.449267916773697 -55,5.0,1.0,-1.6861448807654689,5.116477495334806 -55,5.0,3.0,-6.413123730174556,22.31120356548123 -55,5.0,5.0,22.341631269034565,-82.8291478657789 -55,5.0,6.0,-3.590210423980992,11.02611441072814 -55,5.0,7.0,-6.289308176100628,22.0125786163522 -55,5.0,8.0,0.0,4.915840805411357 -55,5.0,9.0,0.0,1.8561002591115965 -55,5.0,27.0,-4.362844058012917,15.463571542897856 -55,6.0,4.0,-2.954020035961983,7.449267916773697 -55,6.0,5.0,-3.590210423980992,11.02611441072814 -55,6.0,6.0,6.544230459942975,-18.45668232750184 -55,7.0,5.0,-6.289308176100628,22.0125786163522 -55,7.0,7.0,7.733287237496075,-26.527493274828448 -55,7.0,27.0,-1.4439790613954469,4.540814658476248 -55,8.0,5.0,0.0,4.915840805411357 -55,8.0,8.0,0.0,-18.706293706293707 -55,8.0,9.0,0.0,9.090909090909092 -55,8.0,10.0,0.0,4.807692307692308 -55,9.0,5.0,0.0,1.8561002591115965 -55,9.0,8.0,0.0,9.090909090909092 -55,9.0,9.0,13.462042814524237,-41.3837606675224 -55,9.0,16.0,-3.956039125715353,10.317447719844054 -55,9.0,19.0,-1.7848303152666305,3.98535828943083 -55,9.0,20.0,-5.101853820159654,10.98071411292983 -55,9.0,21.0,-2.619319553382597,5.400770303329455 -55,10.0,8.0,0.0,4.807692307692308 -55,10.0,10.0,0.0,-4.807692307692308 -55,11.0,3.0,0.0,4.191255364806866 -55,11.0,11.0,6.573961583776156,-24.424167659260668 -55,11.0,12.0,0.0,7.142857142857143 -55,11.0,13.0,-1.5265676088395577,3.1734252729654173 -55,11.0,14.0,-3.0953961826564296,6.097275864326261 -55,11.0,15.0,-1.9519977922801688,4.104359379111847 -55,12.0,11.0,0.0,7.142857142857143 -55,12.0,12.0,0.0,-7.142857142857143 -55,13.0,11.0,-1.5265676088395577,3.1734252729654173 -55,13.0,13.0,4.01751987283902,-5.424299332335067 -55,13.0,14.0,-2.4909522639994623,2.250874059369649 -55,14.0,11.0,-3.0953961826564296,6.097275864326261 -55,14.0,13.0,-2.4909522639994623,2.250874059369649 -55,14.0,14.0,9.365498545964757,-16.01163373210796 -55,14.0,17.0,-1.8108011504072024,3.687418931630696 -55,14.0,22.0,-1.9683489489016612,3.976064876781356 -55,15.0,11.0,-1.9519977922801688,4.104359379111847 -55,15.0,15.0,3.271064728633931,-8.94513365126506 -55,15.0,16.0,-1.3190669363537617,4.8407742721532125 -55,16.0,9.0,-3.956039125715353,10.317447719844054 -55,16.0,15.0,-1.3190669363537617,4.8407742721532125 -55,16.0,16.0,5.275106062069114,-15.158221991997266 -55,17.0,14.0,-1.8108011504072024,3.687418931630696 -55,17.0,17.0,4.886487584415919,-9.906177730909668 -55,17.0,18.0,-3.0756864340087167,6.218758799278971 -55,18.0,17.0,-3.0756864340087167,6.218758799278971 -55,18.0,18.0,3.0756864340087167,-6.218758799278971 -55,19.0,9.0,-1.7848303152666305,3.98535828943083 -55,19.0,19.0,1.7848303152666305,-3.98535828943083 -55,20.0,9.0,-5.101853820159654,10.98071411292983 -55,20.0,20.0,21.876495189895888,-45.10843276170355 -55,20.0,21.0,-16.774641369736234,34.127718648773715 -55,21.0,9.0,-2.619319553382597,5.400770303329455 -55,21.0,20.0,-16.774641369736234,34.127718648773715 -55,21.0,21.0,21.93449907537439,-43.48289181517921 -55,21.0,23.0,-2.5405381522555563,3.95440286307604 -55,22.0,14.0,-1.9683489489016612,3.976064876781356 -55,22.0,22.0,3.429754555384988,-6.965303617315433 -55,22.0,23.0,-1.4614056064833263,2.989238740534077 -55,23.0,21.0,-2.5405381522555563,3.95440286307604 -55,23.0,22.0,-1.4614056064833263,2.989238740534077 -55,23.0,23.0,5.311836702613133,-9.188263657315172 -55,23.0,24.0,-1.3098929438742493,2.287622053705056 -55,24.0,23.0,-1.3098929438742493,2.287622053705056 -55,24.0,24.0,4.495715080321987,-7.864978761969621 -55,24.0,25.0,-1.2165301194494855,1.8171440463475024 -55,24.0,26.0,-1.9692920169982515,3.760212661917064 -55,25.0,24.0,-1.2165301194494855,1.8171440463475024 -55,25.0,25.0,1.2165301194494855,-1.8171440463475024 -55,26.0,24.0,-1.9692920169982515,3.760212661917064 -55,26.0,26.0,3.652281470778589,-9.46044252232512 -55,26.0,27.0,0.0,2.608731947574922 -55,26.0,28.0,-0.99553355095268,1.881005840357816 -55,26.0,29.0,-0.6874559028276572,1.293971494797717 -55,27.0,5.0,-4.362844058012917,15.463571542897856 -55,27.0,7.0,-1.4439790613954469,4.540814658476248 -55,27.0,26.0,0.0,2.608731947574922 -55,27.0,27.0,5.806823119408364,-22.67145722159613 -55,28.0,26.0,-0.99553355095268,1.881005840357816 -55,28.0,28.0,1.9075867579849564,-3.604364401207048 -55,28.0,29.0,-0.9120532070322764,1.7233585608492326 -55,29.0,26.0,-0.6874559028276572,1.293971494797717 -55,29.0,28.0,-0.9120532070322764,1.7233585608492326 -55,29.0,29.0,1.5995091098599337,-3.0173300556469496 -56,0.0,0.0,6.765516048652632,-21.23160167089863 -56,0.0,1.0,-5.224646179885656,15.646726840803398 -56,0.0,2.0,-1.5408698687669766,5.631674830095234 -56,1.0,0.0,-5.224646179885656,15.646726840803398 -56,1.0,1.0,9.75228216552403,-30.648662892676068 -56,1.0,3.0,-1.7055303166990268,5.1973792282565086 -56,1.0,4.0,-1.1359607881738778,4.772479328281356 -56,1.0,5.0,-1.6861448807654689,5.116477495334806 -56,2.0,0.0,-1.5408698687669766,5.631674830095234 -56,2.0,2.0,9.736318911079088,-29.13794745915803 -56,2.0,3.0,-8.19544904231211,23.5308726290628 -56,3.0,1.0,-1.7055303166990268,5.1973792282565086 -56,3.0,2.0,-8.19544904231211,23.5308726290628 -56,3.0,3.0,16.314103089185693,-55.509410535254254 -56,3.0,5.0,-6.413123730174556,22.31120356548123 -56,3.0,11.0,0.0,4.191255364806866 -56,4.0,1.0,-1.1359607881738778,4.772479328281356 -56,4.0,4.0,4.089980824135861,-12.190647245055052 -56,4.0,6.0,-2.954020035961983,7.449267916773697 -56,5.0,1.0,-1.6861448807654689,5.116477495334806 -56,5.0,3.0,-6.413123730174556,22.31120356548123 -56,5.0,5.0,22.341631269034565,-82.8291478657789 -56,5.0,6.0,-3.590210423980992,11.02611441072814 -56,5.0,7.0,-6.289308176100628,22.0125786163522 -56,5.0,8.0,0.0,4.915840805411357 -56,5.0,9.0,0.0,1.8561002591115965 -56,5.0,27.0,-4.362844058012917,15.463571542897856 -56,6.0,4.0,-2.954020035961983,7.449267916773697 -56,6.0,5.0,-3.590210423980992,11.02611441072814 -56,6.0,6.0,6.544230459942975,-18.45668232750184 -56,7.0,5.0,-6.289308176100628,22.0125786163522 -56,7.0,7.0,7.733287237496075,-26.527493274828448 -56,7.0,27.0,-1.4439790613954469,4.540814658476248 -56,8.0,5.0,0.0,4.915840805411357 -56,8.0,8.0,0.0,-18.706293706293707 -56,8.0,9.0,0.0,9.090909090909092 -56,8.0,10.0,0.0,4.807692307692308 -56,9.0,5.0,0.0,1.8561002591115965 -56,9.0,8.0,0.0,9.090909090909092 -56,9.0,9.0,13.462042814524237,-41.3837606675224 -56,9.0,16.0,-3.956039125715353,10.317447719844054 -56,9.0,19.0,-1.7848303152666305,3.98535828943083 -56,9.0,20.0,-5.101853820159654,10.98071411292983 -56,9.0,21.0,-2.619319553382597,5.400770303329455 -56,10.0,8.0,0.0,4.807692307692308 -56,10.0,10.0,0.0,-4.807692307692308 -56,11.0,3.0,0.0,4.191255364806866 -56,11.0,11.0,6.573961583776156,-24.424167659260668 -56,11.0,12.0,0.0,7.142857142857143 -56,11.0,13.0,-1.5265676088395577,3.1734252729654173 -56,11.0,14.0,-3.0953961826564296,6.097275864326261 -56,11.0,15.0,-1.9519977922801688,4.104359379111847 -56,12.0,11.0,0.0,7.142857142857143 -56,12.0,12.0,0.0,-7.142857142857143 -56,13.0,11.0,-1.5265676088395577,3.1734252729654173 -56,13.0,13.0,4.01751987283902,-5.424299332335067 -56,13.0,14.0,-2.4909522639994623,2.250874059369649 -56,14.0,11.0,-3.0953961826564296,6.097275864326261 -56,14.0,13.0,-2.4909522639994623,2.250874059369649 -56,14.0,14.0,9.365498545964757,-16.01163373210796 -56,14.0,17.0,-1.8108011504072024,3.687418931630696 -56,14.0,22.0,-1.9683489489016612,3.976064876781356 -56,15.0,11.0,-1.9519977922801688,4.104359379111847 -56,15.0,15.0,3.271064728633931,-8.94513365126506 -56,15.0,16.0,-1.3190669363537617,4.8407742721532125 -56,16.0,9.0,-3.956039125715353,10.317447719844054 -56,16.0,15.0,-1.3190669363537617,4.8407742721532125 -56,16.0,16.0,5.275106062069114,-15.158221991997266 -56,17.0,14.0,-1.8108011504072024,3.687418931630696 -56,17.0,17.0,4.886487584415919,-9.906177730909668 -56,17.0,18.0,-3.0756864340087167,6.218758799278971 -56,18.0,17.0,-3.0756864340087167,6.218758799278971 -56,18.0,18.0,8.958039375185187,-17.98346468163191 -56,18.0,19.0,-5.88235294117647,11.76470588235294 -56,19.0,9.0,-1.7848303152666305,3.98535828943083 -56,19.0,18.0,-5.88235294117647,11.76470588235294 -56,19.0,19.0,7.6671832564431,-15.75006417178377 -56,20.0,9.0,-5.101853820159654,10.98071411292983 -56,20.0,20.0,21.876495189895888,-45.10843276170355 -56,20.0,21.0,-16.774641369736234,34.127718648773715 -56,21.0,9.0,-2.619319553382597,5.400770303329455 -56,21.0,20.0,-16.774641369736234,34.127718648773715 -56,21.0,21.0,21.93449907537439,-43.48289181517921 -56,21.0,23.0,-2.5405381522555563,3.95440286307604 -56,22.0,14.0,-1.9683489489016612,3.976064876781356 -56,22.0,22.0,3.429754555384988,-6.965303617315433 -56,22.0,23.0,-1.4614056064833263,2.989238740534077 -56,23.0,21.0,-2.5405381522555563,3.95440286307604 -56,23.0,22.0,-1.4614056064833263,2.989238740534077 -56,23.0,23.0,5.311836702613133,-9.188263657315172 -56,23.0,24.0,-1.3098929438742493,2.287622053705056 -56,24.0,23.0,-1.3098929438742493,2.287622053705056 -56,24.0,24.0,4.495715080321987,-7.864978761969621 -56,24.0,25.0,-1.2165301194494855,1.8171440463475024 -56,24.0,26.0,-1.9692920169982515,3.760212661917064 -56,25.0,24.0,-1.2165301194494855,1.8171440463475024 -56,25.0,25.0,1.2165301194494855,-1.8171440463475024 -56,26.0,24.0,-1.9692920169982515,3.760212661917064 -56,26.0,26.0,3.652281470778589,-9.46044252232512 -56,26.0,27.0,0.0,2.608731947574922 -56,26.0,28.0,-0.99553355095268,1.881005840357816 -56,26.0,29.0,-0.6874559028276572,1.293971494797717 -56,27.0,5.0,-4.362844058012917,15.463571542897856 -56,27.0,7.0,-1.4439790613954469,4.540814658476248 -56,27.0,26.0,0.0,2.608731947574922 -56,27.0,27.0,5.806823119408364,-22.67145722159613 -56,28.0,26.0,-0.99553355095268,1.881005840357816 -56,28.0,28.0,1.9075867579849564,-3.604364401207048 -56,28.0,29.0,-0.9120532070322764,1.7233585608492326 -56,29.0,26.0,-0.6874559028276572,1.293971494797717 -56,29.0,28.0,-0.9120532070322764,1.7233585608492326 -56,29.0,29.0,1.5995091098599337,-3.0173300556469496 -57,0.0,0.0,1.5408698687669766,-5.611274830095233 -57,0.0,2.0,-1.5408698687669766,5.631674830095234 -57,1.0,1.0,4.527635985638374,-15.028336051872673 -57,1.0,3.0,-1.7055303166990268,5.1973792282565086 -57,1.0,4.0,-1.1359607881738778,4.772479328281356 -57,1.0,5.0,-1.6861448807654689,5.116477495334806 -57,2.0,0.0,-1.5408698687669766,5.631674830095234 -57,2.0,2.0,9.736318911079088,-29.13794745915803 -57,2.0,3.0,-8.19544904231211,23.5308726290628 -57,3.0,1.0,-1.7055303166990268,5.1973792282565086 -57,3.0,2.0,-8.19544904231211,23.5308726290628 -57,3.0,3.0,16.314103089185693,-55.509410535254254 -57,3.0,5.0,-6.413123730174556,22.31120356548123 -57,3.0,11.0,0.0,4.191255364806866 -57,4.0,1.0,-1.1359607881738778,4.772479328281356 -57,4.0,4.0,4.089980824135861,-12.190647245055052 -57,4.0,6.0,-2.954020035961983,7.449267916773697 -57,5.0,1.0,-1.6861448807654689,5.116477495334806 -57,5.0,3.0,-6.413123730174556,22.31120356548123 -57,5.0,5.0,22.341631269034565,-82.8291478657789 -57,5.0,6.0,-3.590210423980992,11.02611441072814 -57,5.0,7.0,-6.289308176100628,22.0125786163522 -57,5.0,8.0,0.0,4.915840805411357 -57,5.0,9.0,0.0,1.8561002591115965 -57,5.0,27.0,-4.362844058012917,15.463571542897856 -57,6.0,4.0,-2.954020035961983,7.449267916773697 -57,6.0,5.0,-3.590210423980992,11.02611441072814 -57,6.0,6.0,6.544230459942975,-18.45668232750184 -57,7.0,5.0,-6.289308176100628,22.0125786163522 -57,7.0,7.0,7.733287237496075,-26.527493274828448 -57,7.0,27.0,-1.4439790613954469,4.540814658476248 -57,8.0,5.0,0.0,4.915840805411357 -57,8.0,8.0,0.0,-18.706293706293707 -57,8.0,9.0,0.0,9.090909090909092 -57,8.0,10.0,0.0,4.807692307692308 -57,9.0,5.0,0.0,1.8561002591115965 -57,9.0,8.0,0.0,9.090909090909092 -57,9.0,9.0,13.462042814524237,-41.3837606675224 -57,9.0,16.0,-3.956039125715353,10.317447719844054 -57,9.0,19.0,-1.7848303152666305,3.98535828943083 -57,9.0,20.0,-5.101853820159654,10.98071411292983 -57,9.0,21.0,-2.619319553382597,5.400770303329455 -57,10.0,8.0,0.0,4.807692307692308 -57,10.0,10.0,0.0,-4.807692307692308 -57,11.0,3.0,0.0,4.191255364806866 -57,11.0,11.0,6.573961583776156,-24.424167659260668 -57,11.0,12.0,0.0,7.142857142857143 -57,11.0,13.0,-1.5265676088395577,3.1734252729654173 -57,11.0,14.0,-3.0953961826564296,6.097275864326261 -57,11.0,15.0,-1.9519977922801688,4.104359379111847 -57,12.0,11.0,0.0,7.142857142857143 -57,12.0,12.0,0.0,-7.142857142857143 -57,13.0,11.0,-1.5265676088395577,3.1734252729654173 -57,13.0,13.0,4.01751987283902,-5.424299332335067 -57,13.0,14.0,-2.4909522639994623,2.250874059369649 -57,14.0,11.0,-3.0953961826564296,6.097275864326261 -57,14.0,13.0,-2.4909522639994623,2.250874059369649 -57,14.0,14.0,9.365498545964757,-16.01163373210796 -57,14.0,17.0,-1.8108011504072024,3.687418931630696 -57,14.0,22.0,-1.9683489489016612,3.976064876781356 -57,15.0,11.0,-1.9519977922801688,4.104359379111847 -57,15.0,15.0,3.271064728633931,-8.94513365126506 -57,15.0,16.0,-1.3190669363537617,4.8407742721532125 -57,16.0,9.0,-3.956039125715353,10.317447719844054 -57,16.0,15.0,-1.3190669363537617,4.8407742721532125 -57,16.0,16.0,5.275106062069114,-15.158221991997266 -57,17.0,14.0,-1.8108011504072024,3.687418931630696 -57,17.0,17.0,4.886487584415919,-9.906177730909668 -57,17.0,18.0,-3.0756864340087167,6.218758799278971 -57,18.0,17.0,-3.0756864340087167,6.218758799278971 -57,18.0,18.0,8.958039375185187,-17.98346468163191 -57,18.0,19.0,-5.88235294117647,11.76470588235294 -57,19.0,9.0,-1.7848303152666305,3.98535828943083 -57,19.0,18.0,-5.88235294117647,11.76470588235294 -57,19.0,19.0,7.6671832564431,-15.75006417178377 -57,20.0,9.0,-5.101853820159654,10.98071411292983 -57,20.0,20.0,21.876495189895888,-45.10843276170355 -57,20.0,21.0,-16.774641369736234,34.127718648773715 -57,21.0,9.0,-2.619319553382597,5.400770303329455 -57,21.0,20.0,-16.774641369736234,34.127718648773715 -57,21.0,21.0,21.93449907537439,-43.48289181517921 -57,21.0,23.0,-2.5405381522555563,3.95440286307604 -57,22.0,14.0,-1.9683489489016612,3.976064876781356 -57,22.0,22.0,3.429754555384988,-6.965303617315433 -57,22.0,23.0,-1.4614056064833263,2.989238740534077 -57,23.0,21.0,-2.5405381522555563,3.95440286307604 -57,23.0,22.0,-1.4614056064833263,2.989238740534077 -57,23.0,23.0,5.311836702613133,-9.188263657315172 -57,23.0,24.0,-1.3098929438742493,2.287622053705056 -57,24.0,23.0,-1.3098929438742493,2.287622053705056 -57,24.0,24.0,4.495715080321987,-7.864978761969621 -57,24.0,25.0,-1.2165301194494855,1.8171440463475024 -57,24.0,26.0,-1.9692920169982515,3.760212661917064 -57,25.0,24.0,-1.2165301194494855,1.8171440463475024 -57,25.0,25.0,1.2165301194494855,-1.8171440463475024 -57,26.0,24.0,-1.9692920169982515,3.760212661917064 -57,26.0,26.0,3.652281470778589,-9.46044252232512 -57,26.0,27.0,0.0,2.608731947574922 -57,26.0,28.0,-0.99553355095268,1.881005840357816 -57,26.0,29.0,-0.6874559028276572,1.293971494797717 -57,27.0,5.0,-4.362844058012917,15.463571542897856 -57,27.0,7.0,-1.4439790613954469,4.540814658476248 -57,27.0,26.0,0.0,2.608731947574922 -57,27.0,27.0,5.806823119408364,-22.67145722159613 -57,28.0,26.0,-0.99553355095268,1.881005840357816 -57,28.0,28.0,1.9075867579849564,-3.604364401207048 -57,28.0,29.0,-0.9120532070322764,1.7233585608492326 -57,29.0,26.0,-0.6874559028276572,1.293971494797717 -57,29.0,28.0,-0.9120532070322764,1.7233585608492326 -57,29.0,29.0,1.5995091098599337,-3.0173300556469496 -58,0.0,0.0,6.765516048652632,-21.23160167089863 -58,0.0,1.0,-5.224646179885656,15.646726840803398 -58,0.0,2.0,-1.5408698687669766,5.631674830095234 -58,1.0,0.0,-5.224646179885656,15.646726840803398 -58,1.0,1.0,9.75228216552403,-30.648662892676068 -58,1.0,3.0,-1.7055303166990268,5.1973792282565086 -58,1.0,4.0,-1.1359607881738778,4.772479328281356 -58,1.0,5.0,-1.6861448807654689,5.116477495334806 -58,2.0,0.0,-1.5408698687669766,5.631674830095234 -58,2.0,2.0,9.736318911079088,-29.13794745915803 -58,2.0,3.0,-8.19544904231211,23.5308726290628 -58,3.0,1.0,-1.7055303166990268,5.1973792282565086 -58,3.0,2.0,-8.19544904231211,23.5308726290628 -58,3.0,3.0,16.314103089185693,-55.509410535254254 -58,3.0,5.0,-6.413123730174556,22.31120356548123 -58,3.0,11.0,0.0,4.191255364806866 -58,4.0,1.0,-1.1359607881738778,4.772479328281356 -58,4.0,4.0,1.1359607881738778,-4.751579328281355 -58,5.0,1.0,-1.6861448807654689,5.116477495334806 -58,5.0,3.0,-6.413123730174556,22.31120356548123 -58,5.0,5.0,22.341631269034565,-82.8291478657789 -58,5.0,6.0,-3.590210423980992,11.02611441072814 -58,5.0,7.0,-6.289308176100628,22.0125786163522 -58,5.0,8.0,0.0,4.915840805411357 -58,5.0,9.0,0.0,1.8561002591115965 -58,5.0,27.0,-4.362844058012917,15.463571542897856 -58,6.0,5.0,-3.590210423980992,11.02611441072814 -58,6.0,6.0,3.590210423980992,-11.01761441072814 -58,7.0,5.0,-6.289308176100628,22.0125786163522 -58,7.0,7.0,7.733287237496075,-26.527493274828448 -58,7.0,27.0,-1.4439790613954469,4.540814658476248 -58,8.0,5.0,0.0,4.915840805411357 -58,8.0,8.0,0.0,-18.706293706293707 -58,8.0,9.0,0.0,9.090909090909092 -58,8.0,10.0,0.0,4.807692307692308 -58,9.0,5.0,0.0,1.8561002591115965 -58,9.0,8.0,0.0,9.090909090909092 -58,9.0,9.0,6.886684135426284,-25.66554264434889 -58,9.0,19.0,-1.7848303152666305,3.98535828943083 -58,9.0,20.0,-5.101853820159654,10.98071411292983 -58,10.0,8.0,0.0,4.807692307692308 -58,10.0,10.0,0.0,-4.807692307692308 -58,11.0,3.0,0.0,4.191255364806866 -58,11.0,11.0,6.573961583776156,-24.424167659260668 -58,11.0,12.0,0.0,7.142857142857143 -58,11.0,13.0,-1.5265676088395577,3.1734252729654173 -58,11.0,14.0,-3.0953961826564296,6.097275864326261 -58,11.0,15.0,-1.9519977922801688,4.104359379111847 -58,12.0,11.0,0.0,7.142857142857143 -58,12.0,12.0,0.0,-7.142857142857143 -58,13.0,11.0,-1.5265676088395577,3.1734252729654173 -58,13.0,13.0,4.01751987283902,-5.424299332335067 -58,13.0,14.0,-2.4909522639994623,2.250874059369649 -58,14.0,11.0,-3.0953961826564296,6.097275864326261 -58,14.0,13.0,-2.4909522639994623,2.250874059369649 -58,14.0,14.0,9.365498545964757,-16.01163373210796 -58,14.0,17.0,-1.8108011504072024,3.687418931630696 -58,14.0,22.0,-1.9683489489016612,3.976064876781356 -58,15.0,11.0,-1.9519977922801688,4.104359379111847 -58,15.0,15.0,3.271064728633931,-8.94513365126506 -58,15.0,16.0,-1.3190669363537617,4.8407742721532125 -58,16.0,15.0,-1.3190669363537617,4.8407742721532125 -58,16.0,16.0,1.3190669363537617,-4.8407742721532125 -58,17.0,14.0,-1.8108011504072024,3.687418931630696 -58,17.0,17.0,4.886487584415919,-9.906177730909668 -58,17.0,18.0,-3.0756864340087167,6.218758799278971 -58,18.0,17.0,-3.0756864340087167,6.218758799278971 -58,18.0,18.0,8.958039375185187,-17.98346468163191 -58,18.0,19.0,-5.88235294117647,11.76470588235294 -58,19.0,9.0,-1.7848303152666305,3.98535828943083 -58,19.0,18.0,-5.88235294117647,11.76470588235294 -58,19.0,19.0,7.6671832564431,-15.75006417178377 -58,20.0,9.0,-5.101853820159654,10.98071411292983 -58,20.0,20.0,21.876495189895888,-45.10843276170355 -58,20.0,21.0,-16.774641369736234,34.127718648773715 -58,21.0,20.0,-16.774641369736234,34.127718648773715 -58,21.0,21.0,19.31517952199179,-38.08212151184976 -58,21.0,23.0,-2.5405381522555563,3.95440286307604 -58,22.0,14.0,-1.9683489489016612,3.976064876781356 -58,22.0,22.0,3.429754555384988,-6.965303617315433 -58,22.0,23.0,-1.4614056064833263,2.989238740534077 -58,23.0,21.0,-2.5405381522555563,3.95440286307604 -58,23.0,22.0,-1.4614056064833263,2.989238740534077 -58,23.0,23.0,5.311836702613133,-9.188263657315172 -58,23.0,24.0,-1.3098929438742493,2.287622053705056 -58,24.0,23.0,-1.3098929438742493,2.287622053705056 -58,24.0,24.0,4.495715080321987,-7.864978761969621 -58,24.0,25.0,-1.2165301194494855,1.8171440463475024 -58,24.0,26.0,-1.9692920169982515,3.760212661917064 -58,25.0,24.0,-1.2165301194494855,1.8171440463475024 -58,25.0,25.0,1.2165301194494855,-1.8171440463475024 -58,26.0,24.0,-1.9692920169982515,3.760212661917064 -58,26.0,26.0,3.652281470778589,-9.46044252232512 -58,26.0,27.0,0.0,2.608731947574922 -58,26.0,28.0,-0.99553355095268,1.881005840357816 -58,26.0,29.0,-0.6874559028276572,1.293971494797717 -58,27.0,5.0,-4.362844058012917,15.463571542897856 -58,27.0,7.0,-1.4439790613954469,4.540814658476248 -58,27.0,26.0,0.0,2.608731947574922 -58,27.0,27.0,5.806823119408364,-22.67145722159613 -58,28.0,26.0,-0.99553355095268,1.881005840357816 -58,28.0,28.0,1.9075867579849564,-3.604364401207048 -58,28.0,29.0,-0.9120532070322764,1.7233585608492326 -58,29.0,26.0,-0.6874559028276572,1.293971494797717 -58,29.0,28.0,-0.9120532070322764,1.7233585608492326 -58,29.0,29.0,1.5995091098599337,-3.0173300556469496 -59,0.0,0.0,6.765516048652632,-21.23160167089863 -59,0.0,1.0,-5.224646179885656,15.646726840803398 -59,0.0,2.0,-1.5408698687669766,5.631674830095234 -59,1.0,0.0,-5.224646179885656,15.646726840803398 -59,1.0,1.0,9.75228216552403,-30.648662892676068 -59,1.0,3.0,-1.7055303166990268,5.1973792282565086 -59,1.0,4.0,-1.1359607881738778,4.772479328281356 -59,1.0,5.0,-1.6861448807654689,5.116477495334806 -59,2.0,0.0,-1.5408698687669766,5.631674830095234 -59,2.0,2.0,9.736318911079088,-29.13794745915803 -59,2.0,3.0,-8.19544904231211,23.5308726290628 -59,3.0,1.0,-1.7055303166990268,5.1973792282565086 -59,3.0,2.0,-8.19544904231211,23.5308726290628 -59,3.0,3.0,16.314103089185693,-55.509410535254254 -59,3.0,5.0,-6.413123730174556,22.31120356548123 -59,3.0,11.0,0.0,4.191255364806866 -59,4.0,1.0,-1.1359607881738778,4.772479328281356 -59,4.0,4.0,4.089980824135861,-12.190647245055052 -59,4.0,6.0,-2.954020035961983,7.449267916773697 -59,5.0,1.0,-1.6861448807654689,5.116477495334806 -59,5.0,3.0,-6.413123730174556,22.31120356548123 -59,5.0,5.0,22.341631269034565,-82.8291478657789 -59,5.0,6.0,-3.590210423980992,11.02611441072814 -59,5.0,7.0,-6.289308176100628,22.0125786163522 -59,5.0,8.0,0.0,4.915840805411357 -59,5.0,9.0,0.0,1.8561002591115965 -59,5.0,27.0,-4.362844058012917,15.463571542897856 -59,6.0,4.0,-2.954020035961983,7.449267916773697 -59,6.0,5.0,-3.590210423980992,11.02611441072814 -59,6.0,6.0,6.544230459942975,-18.45668232750184 -59,7.0,5.0,-6.289308176100628,22.0125786163522 -59,7.0,7.0,7.733287237496075,-26.527493274828448 -59,7.0,27.0,-1.4439790613954469,4.540814658476248 -59,8.0,5.0,0.0,4.915840805411357 -59,8.0,8.0,0.0,-18.706293706293707 -59,8.0,9.0,0.0,9.090909090909092 -59,8.0,10.0,0.0,4.807692307692308 -59,9.0,5.0,0.0,1.8561002591115965 -59,9.0,8.0,0.0,9.090909090909092 -59,9.0,9.0,13.462042814524237,-41.3837606675224 -59,9.0,16.0,-3.956039125715353,10.317447719844054 -59,9.0,19.0,-1.7848303152666305,3.98535828943083 -59,9.0,20.0,-5.101853820159654,10.98071411292983 -59,9.0,21.0,-2.619319553382597,5.400770303329455 -59,10.0,8.0,0.0,4.807692307692308 -59,10.0,10.0,0.0,-4.807692307692308 -59,11.0,3.0,0.0,4.191255364806866 -59,11.0,11.0,6.573961583776156,-24.424167659260668 -59,11.0,12.0,0.0,7.142857142857143 -59,11.0,13.0,-1.5265676088395577,3.1734252729654173 -59,11.0,14.0,-3.0953961826564296,6.097275864326261 -59,11.0,15.0,-1.9519977922801688,4.104359379111847 -59,12.0,11.0,0.0,7.142857142857143 -59,12.0,12.0,0.0,-7.142857142857143 -59,13.0,11.0,-1.5265676088395577,3.1734252729654173 -59,13.0,13.0,4.01751987283902,-5.424299332335067 -59,13.0,14.0,-2.4909522639994623,2.250874059369649 -59,14.0,11.0,-3.0953961826564296,6.097275864326261 -59,14.0,13.0,-2.4909522639994623,2.250874059369649 -59,14.0,14.0,9.365498545964757,-16.01163373210796 -59,14.0,17.0,-1.8108011504072024,3.687418931630696 -59,14.0,22.0,-1.9683489489016612,3.976064876781356 -59,15.0,11.0,-1.9519977922801688,4.104359379111847 -59,15.0,15.0,3.271064728633931,-8.94513365126506 -59,15.0,16.0,-1.3190669363537617,4.8407742721532125 -59,16.0,9.0,-3.956039125715353,10.317447719844054 -59,16.0,15.0,-1.3190669363537617,4.8407742721532125 -59,16.0,16.0,5.275106062069114,-15.158221991997266 -59,17.0,14.0,-1.8108011504072024,3.687418931630696 -59,17.0,17.0,4.886487584415919,-9.906177730909668 -59,17.0,18.0,-3.0756864340087167,6.218758799278971 -59,18.0,17.0,-3.0756864340087167,6.218758799278971 -59,18.0,18.0,8.958039375185187,-17.98346468163191 -59,18.0,19.0,-5.88235294117647,11.76470588235294 -59,19.0,9.0,-1.7848303152666305,3.98535828943083 -59,19.0,18.0,-5.88235294117647,11.76470588235294 -59,19.0,19.0,7.6671832564431,-15.75006417178377 -59,20.0,9.0,-5.101853820159654,10.98071411292983 -59,20.0,20.0,21.876495189895888,-45.10843276170355 -59,20.0,21.0,-16.774641369736234,34.127718648773715 -59,21.0,9.0,-2.619319553382597,5.400770303329455 -59,21.0,20.0,-16.774641369736234,34.127718648773715 -59,21.0,21.0,19.393960923118836,-39.52848895210317 -59,22.0,14.0,-1.9683489489016612,3.976064876781356 -59,22.0,22.0,3.429754555384988,-6.965303617315433 -59,22.0,23.0,-1.4614056064833263,2.989238740534077 -59,23.0,22.0,-1.4614056064833263,2.989238740534077 -59,23.0,23.0,2.771298550357576,-5.233860794239132 -59,23.0,24.0,-1.3098929438742493,2.287622053705056 -59,24.0,23.0,-1.3098929438742493,2.287622053705056 -59,24.0,24.0,4.495715080321987,-7.864978761969621 -59,24.0,25.0,-1.2165301194494855,1.8171440463475024 -59,24.0,26.0,-1.9692920169982515,3.760212661917064 -59,25.0,24.0,-1.2165301194494855,1.8171440463475024 -59,25.0,25.0,1.2165301194494855,-1.8171440463475024 -59,26.0,24.0,-1.9692920169982515,3.760212661917064 -59,26.0,26.0,3.652281470778589,-9.46044252232512 -59,26.0,27.0,0.0,2.608731947574922 -59,26.0,28.0,-0.99553355095268,1.881005840357816 -59,26.0,29.0,-0.6874559028276572,1.293971494797717 -59,27.0,5.0,-4.362844058012917,15.463571542897856 -59,27.0,7.0,-1.4439790613954469,4.540814658476248 -59,27.0,26.0,0.0,2.608731947574922 -59,27.0,27.0,5.806823119408364,-22.67145722159613 -59,28.0,26.0,-0.99553355095268,1.881005840357816 -59,28.0,28.0,1.9075867579849564,-3.604364401207048 -59,28.0,29.0,-0.9120532070322764,1.7233585608492326 -59,29.0,26.0,-0.6874559028276572,1.293971494797717 -59,29.0,28.0,-0.9120532070322764,1.7233585608492326 -59,29.0,29.0,1.5995091098599337,-3.0173300556469496 -60,0.0,0.0,6.765516048652632,-21.23160167089863 -60,0.0,1.0,-5.224646179885656,15.646726840803398 -60,0.0,2.0,-1.5408698687669766,5.631674830095234 -60,1.0,0.0,-5.224646179885656,15.646726840803398 -60,1.0,1.0,9.75228216552403,-30.648662892676068 -60,1.0,3.0,-1.7055303166990268,5.1973792282565086 -60,1.0,4.0,-1.1359607881738778,4.772479328281356 -60,1.0,5.0,-1.6861448807654689,5.116477495334806 -60,2.0,0.0,-1.5408698687669766,5.631674830095234 -60,2.0,2.0,9.736318911079088,-29.13794745915803 -60,2.0,3.0,-8.19544904231211,23.5308726290628 -60,3.0,1.0,-1.7055303166990268,5.1973792282565086 -60,3.0,2.0,-8.19544904231211,23.5308726290628 -60,3.0,3.0,16.314103089185693,-55.509410535254254 -60,3.0,5.0,-6.413123730174556,22.31120356548123 -60,3.0,11.0,0.0,4.191255364806866 -60,4.0,1.0,-1.1359607881738778,4.772479328281356 -60,4.0,4.0,4.089980824135861,-12.190647245055052 -60,4.0,6.0,-2.954020035961983,7.449267916773697 -60,5.0,1.0,-1.6861448807654689,5.116477495334806 -60,5.0,3.0,-6.413123730174556,22.31120356548123 -60,5.0,5.0,22.341631269034565,-82.8291478657789 -60,5.0,6.0,-3.590210423980992,11.02611441072814 -60,5.0,7.0,-6.289308176100628,22.0125786163522 -60,5.0,8.0,0.0,4.915840805411357 -60,5.0,9.0,0.0,1.8561002591115965 -60,5.0,27.0,-4.362844058012917,15.463571542897856 -60,6.0,4.0,-2.954020035961983,7.449267916773697 -60,6.0,5.0,-3.590210423980992,11.02611441072814 -60,6.0,6.0,6.544230459942975,-18.45668232750184 -60,7.0,5.0,-6.289308176100628,22.0125786163522 -60,7.0,7.0,7.733287237496075,-26.527493274828448 -60,7.0,27.0,-1.4439790613954469,4.540814658476248 -60,8.0,5.0,0.0,4.915840805411357 -60,8.0,8.0,0.0,-18.706293706293707 -60,8.0,9.0,0.0,9.090909090909092 -60,8.0,10.0,0.0,4.807692307692308 -60,9.0,5.0,0.0,1.8561002591115965 -60,9.0,8.0,0.0,9.090909090909092 -60,9.0,9.0,13.462042814524237,-41.3837606675224 -60,9.0,16.0,-3.956039125715353,10.317447719844054 -60,9.0,19.0,-1.7848303152666305,3.98535828943083 -60,9.0,20.0,-5.101853820159654,10.98071411292983 -60,9.0,21.0,-2.619319553382597,5.400770303329455 -60,10.0,8.0,0.0,4.807692307692308 -60,10.0,10.0,0.0,-4.807692307692308 -60,11.0,3.0,0.0,4.191255364806866 -60,11.0,11.0,6.573961583776156,-24.424167659260668 -60,11.0,12.0,0.0,7.142857142857143 -60,11.0,13.0,-1.5265676088395577,3.1734252729654173 -60,11.0,14.0,-3.0953961826564296,6.097275864326261 -60,11.0,15.0,-1.9519977922801688,4.104359379111847 -60,12.0,11.0,0.0,7.142857142857143 -60,12.0,12.0,0.0,-7.142857142857143 -60,13.0,11.0,-1.5265676088395577,3.1734252729654173 -60,13.0,13.0,4.01751987283902,-5.424299332335067 -60,13.0,14.0,-2.4909522639994623,2.250874059369649 -60,14.0,11.0,-3.0953961826564296,6.097275864326261 -60,14.0,13.0,-2.4909522639994623,2.250874059369649 -60,14.0,14.0,9.365498545964757,-16.01163373210796 -60,14.0,17.0,-1.8108011504072024,3.687418931630696 -60,14.0,22.0,-1.9683489489016612,3.976064876781356 -60,15.0,11.0,-1.9519977922801688,4.104359379111847 -60,15.0,15.0,3.271064728633931,-8.94513365126506 -60,15.0,16.0,-1.3190669363537617,4.8407742721532125 -60,16.0,9.0,-3.956039125715353,10.317447719844054 -60,16.0,15.0,-1.3190669363537617,4.8407742721532125 -60,16.0,16.0,5.275106062069114,-15.158221991997266 -60,17.0,14.0,-1.8108011504072024,3.687418931630696 -60,17.0,17.0,4.886487584415919,-9.906177730909668 -60,17.0,18.0,-3.0756864340087167,6.218758799278971 -60,18.0,17.0,-3.0756864340087167,6.218758799278971 -60,18.0,18.0,3.0756864340087167,-6.218758799278971 -60,19.0,9.0,-1.7848303152666305,3.98535828943083 -60,19.0,19.0,1.7848303152666305,-3.98535828943083 -60,20.0,9.0,-5.101853820159654,10.98071411292983 -60,20.0,20.0,5.101853820159654,-10.98071411292983 -60,21.0,9.0,-2.619319553382597,5.400770303329455 -60,21.0,21.0,2.619319553382597,-5.400770303329455 -60,22.0,14.0,-1.9683489489016612,3.976064876781356 -60,22.0,22.0,3.429754555384988,-6.965303617315433 -60,22.0,23.0,-1.4614056064833263,2.989238740534077 -60,23.0,22.0,-1.4614056064833263,2.989238740534077 -60,23.0,23.0,2.771298550357576,-5.233860794239132 -60,23.0,24.0,-1.3098929438742493,2.287622053705056 -60,24.0,23.0,-1.3098929438742493,2.287622053705056 -60,24.0,24.0,4.495715080321987,-7.864978761969621 -60,24.0,25.0,-1.2165301194494855,1.8171440463475024 -60,24.0,26.0,-1.9692920169982515,3.760212661917064 -60,25.0,24.0,-1.2165301194494855,1.8171440463475024 -60,25.0,25.0,1.2165301194494855,-1.8171440463475024 -60,26.0,24.0,-1.9692920169982515,3.760212661917064 -60,26.0,26.0,3.652281470778589,-9.46044252232512 -60,26.0,27.0,0.0,2.608731947574922 -60,26.0,28.0,-0.99553355095268,1.881005840357816 -60,26.0,29.0,-0.6874559028276572,1.293971494797717 -60,27.0,5.0,-4.362844058012917,15.463571542897856 -60,27.0,7.0,-1.4439790613954469,4.540814658476248 -60,27.0,26.0,0.0,2.608731947574922 -60,27.0,27.0,5.806823119408364,-22.67145722159613 -60,28.0,26.0,-0.99553355095268,1.881005840357816 -60,28.0,28.0,1.9075867579849564,-3.604364401207048 -60,28.0,29.0,-0.9120532070322764,1.7233585608492326 -60,29.0,26.0,-0.6874559028276572,1.293971494797717 -60,29.0,28.0,-0.9120532070322764,1.7233585608492326 -60,29.0,29.0,1.5995091098599337,-3.0173300556469496 -61,0.0,0.0,6.765516048652632,-21.23160167089863 -61,0.0,1.0,-5.224646179885656,15.646726840803398 -61,0.0,2.0,-1.5408698687669766,5.631674830095234 -61,1.0,0.0,-5.224646179885656,15.646726840803398 -61,1.0,1.0,9.75228216552403,-30.648662892676068 -61,1.0,3.0,-1.7055303166990268,5.1973792282565086 -61,1.0,4.0,-1.1359607881738778,4.772479328281356 -61,1.0,5.0,-1.6861448807654689,5.116477495334806 -61,2.0,0.0,-1.5408698687669766,5.631674830095234 -61,2.0,2.0,9.736318911079088,-29.13794745915803 -61,2.0,3.0,-8.19544904231211,23.5308726290628 -61,3.0,1.0,-1.7055303166990268,5.1973792282565086 -61,3.0,2.0,-8.19544904231211,23.5308726290628 -61,3.0,3.0,16.314103089185693,-51.01235542280054 -61,3.0,5.0,-6.413123730174556,22.31120356548123 -61,4.0,1.0,-1.1359607881738778,4.772479328281356 -61,4.0,4.0,4.089980824135861,-12.190647245055052 -61,4.0,6.0,-2.954020035961983,7.449267916773697 -61,5.0,1.0,-1.6861448807654689,5.116477495334806 -61,5.0,3.0,-6.413123730174556,22.31120356548123 -61,5.0,5.0,22.341631269034565,-82.8291478657789 -61,5.0,6.0,-3.590210423980992,11.02611441072814 -61,5.0,7.0,-6.289308176100628,22.0125786163522 -61,5.0,8.0,0.0,4.915840805411357 -61,5.0,9.0,0.0,1.8561002591115965 -61,5.0,27.0,-4.362844058012917,15.463571542897856 -61,6.0,4.0,-2.954020035961983,7.449267916773697 -61,6.0,5.0,-3.590210423980992,11.02611441072814 -61,6.0,6.0,6.544230459942975,-18.45668232750184 -61,7.0,5.0,-6.289308176100628,22.0125786163522 -61,7.0,7.0,7.733287237496075,-26.527493274828448 -61,7.0,27.0,-1.4439790613954469,4.540814658476248 -61,8.0,5.0,0.0,4.915840805411357 -61,8.0,8.0,0.0,-18.706293706293707 -61,8.0,9.0,0.0,9.090909090909092 -61,8.0,10.0,0.0,4.807692307692308 -61,9.0,5.0,0.0,1.8561002591115965 -61,9.0,8.0,0.0,9.090909090909092 -61,9.0,9.0,13.462042814524237,-41.3837606675224 -61,9.0,16.0,-3.956039125715353,10.317447719844054 -61,9.0,19.0,-1.7848303152666305,3.98535828943083 -61,9.0,20.0,-5.101853820159654,10.98071411292983 -61,9.0,21.0,-2.619319553382597,5.400770303329455 -61,10.0,8.0,0.0,4.807692307692308 -61,10.0,10.0,0.0,-4.807692307692308 -61,11.0,11.0,6.573961583776156,-20.517917659260668 -61,11.0,12.0,0.0,7.142857142857143 -61,11.0,13.0,-1.5265676088395577,3.1734252729654173 -61,11.0,14.0,-3.0953961826564296,6.097275864326261 -61,11.0,15.0,-1.9519977922801688,4.104359379111847 -61,12.0,11.0,0.0,7.142857142857143 -61,12.0,12.0,0.0,-7.142857142857143 -61,13.0,11.0,-1.5265676088395577,3.1734252729654173 -61,13.0,13.0,4.01751987283902,-5.424299332335067 -61,13.0,14.0,-2.4909522639994623,2.250874059369649 -61,14.0,11.0,-3.0953961826564296,6.097275864326261 -61,14.0,13.0,-2.4909522639994623,2.250874059369649 -61,14.0,14.0,9.365498545964757,-16.01163373210796 -61,14.0,17.0,-1.8108011504072024,3.687418931630696 -61,14.0,22.0,-1.9683489489016612,3.976064876781356 -61,15.0,11.0,-1.9519977922801688,4.104359379111847 -61,15.0,15.0,3.271064728633931,-8.94513365126506 -61,15.0,16.0,-1.3190669363537617,4.8407742721532125 -61,16.0,9.0,-3.956039125715353,10.317447719844054 -61,16.0,15.0,-1.3190669363537617,4.8407742721532125 -61,16.0,16.0,5.275106062069114,-15.158221991997266 -61,17.0,14.0,-1.8108011504072024,3.687418931630696 -61,17.0,17.0,4.886487584415919,-9.906177730909668 -61,17.0,18.0,-3.0756864340087167,6.218758799278971 -61,18.0,17.0,-3.0756864340087167,6.218758799278971 -61,18.0,18.0,8.958039375185187,-17.98346468163191 -61,18.0,19.0,-5.88235294117647,11.76470588235294 -61,19.0,9.0,-1.7848303152666305,3.98535828943083 -61,19.0,18.0,-5.88235294117647,11.76470588235294 -61,19.0,19.0,7.6671832564431,-15.75006417178377 -61,20.0,9.0,-5.101853820159654,10.98071411292983 -61,20.0,20.0,21.876495189895888,-45.10843276170355 -61,20.0,21.0,-16.774641369736234,34.127718648773715 -61,21.0,9.0,-2.619319553382597,5.400770303329455 -61,21.0,20.0,-16.774641369736234,34.127718648773715 -61,21.0,21.0,21.93449907537439,-43.48289181517921 -61,21.0,23.0,-2.5405381522555563,3.95440286307604 -61,22.0,14.0,-1.9683489489016612,3.976064876781356 -61,22.0,22.0,3.429754555384988,-6.965303617315433 -61,22.0,23.0,-1.4614056064833263,2.989238740534077 -61,23.0,21.0,-2.5405381522555563,3.95440286307604 -61,23.0,22.0,-1.4614056064833263,2.989238740534077 -61,23.0,23.0,5.311836702613133,-9.188263657315172 -61,23.0,24.0,-1.3098929438742493,2.287622053705056 -61,24.0,23.0,-1.3098929438742493,2.287622053705056 -61,24.0,24.0,4.495715080321987,-7.864978761969621 -61,24.0,25.0,-1.2165301194494855,1.8171440463475024 -61,24.0,26.0,-1.9692920169982515,3.760212661917064 -61,25.0,24.0,-1.2165301194494855,1.8171440463475024 -61,25.0,25.0,1.2165301194494855,-1.8171440463475024 -61,26.0,24.0,-1.9692920169982515,3.760212661917064 -61,26.0,26.0,3.652281470778589,-9.46044252232512 -61,26.0,27.0,0.0,2.608731947574922 -61,26.0,28.0,-0.99553355095268,1.881005840357816 -61,26.0,29.0,-0.6874559028276572,1.293971494797717 -61,27.0,5.0,-4.362844058012917,15.463571542897856 -61,27.0,7.0,-1.4439790613954469,4.540814658476248 -61,27.0,26.0,0.0,2.608731947574922 -61,27.0,27.0,5.806823119408364,-22.67145722159613 -61,28.0,26.0,-0.99553355095268,1.881005840357816 -61,28.0,28.0,1.9075867579849564,-3.604364401207048 -61,28.0,29.0,-0.9120532070322764,1.7233585608492326 -61,29.0,26.0,-0.6874559028276572,1.293971494797717 -61,29.0,28.0,-0.9120532070322764,1.7233585608492326 -61,29.0,29.0,1.5995091098599337,-3.0173300556469496 -62,0.0,0.0,6.765516048652632,-21.23160167089863 -62,0.0,1.0,-5.224646179885656,15.646726840803398 -62,0.0,2.0,-1.5408698687669766,5.631674830095234 -62,1.0,0.0,-5.224646179885656,15.646726840803398 -62,1.0,1.0,9.75228216552403,-30.648662892676068 -62,1.0,3.0,-1.7055303166990268,5.1973792282565086 -62,1.0,4.0,-1.1359607881738778,4.772479328281356 -62,1.0,5.0,-1.6861448807654689,5.116477495334806 -62,2.0,0.0,-1.5408698687669766,5.631674830095234 -62,2.0,2.0,9.736318911079088,-29.13794745915803 -62,2.0,3.0,-8.19544904231211,23.5308726290628 -62,3.0,1.0,-1.7055303166990268,5.1973792282565086 -62,3.0,2.0,-8.19544904231211,23.5308726290628 -62,3.0,3.0,9.900979359011137,-33.202706969773025 -62,3.0,11.0,0.0,4.191255364806866 -62,4.0,1.0,-1.1359607881738778,4.772479328281356 -62,4.0,4.0,4.089980824135861,-12.190647245055052 -62,4.0,6.0,-2.954020035961983,7.449267916773697 -62,5.0,1.0,-1.6861448807654689,5.116477495334806 -62,5.0,5.0,11.565663480847087,-45.06537275739982 -62,5.0,6.0,-3.590210423980992,11.02611441072814 -62,5.0,7.0,-6.289308176100628,22.0125786163522 -62,5.0,8.0,0.0,4.915840805411357 -62,5.0,9.0,0.0,1.8561002591115965 -62,6.0,4.0,-2.954020035961983,7.449267916773697 -62,6.0,5.0,-3.590210423980992,11.02611441072814 -62,6.0,6.0,6.544230459942975,-18.45668232750184 -62,7.0,5.0,-6.289308176100628,22.0125786163522 -62,7.0,7.0,7.733287237496075,-26.527493274828448 -62,7.0,27.0,-1.4439790613954469,4.540814658476248 -62,8.0,5.0,0.0,4.915840805411357 -62,8.0,8.0,0.0,-18.706293706293707 -62,8.0,9.0,0.0,9.090909090909092 -62,8.0,10.0,0.0,4.807692307692308 -62,9.0,5.0,0.0,1.8561002591115965 -62,9.0,8.0,0.0,9.090909090909092 -62,9.0,9.0,7.721173373542252,-27.080954658247517 -62,9.0,20.0,-5.101853820159654,10.98071411292983 -62,9.0,21.0,-2.619319553382597,5.400770303329455 -62,10.0,8.0,0.0,4.807692307692308 -62,10.0,10.0,0.0,-4.807692307692308 -62,11.0,3.0,0.0,4.191255364806866 -62,11.0,11.0,6.573961583776156,-24.424167659260668 -62,11.0,12.0,0.0,7.142857142857143 -62,11.0,13.0,-1.5265676088395577,3.1734252729654173 -62,11.0,14.0,-3.0953961826564296,6.097275864326261 -62,11.0,15.0,-1.9519977922801688,4.104359379111847 -62,12.0,11.0,0.0,7.142857142857143 -62,12.0,12.0,0.0,-7.142857142857143 -62,13.0,11.0,-1.5265676088395577,3.1734252729654173 -62,13.0,13.0,4.01751987283902,-5.424299332335067 -62,13.0,14.0,-2.4909522639994623,2.250874059369649 -62,14.0,11.0,-3.0953961826564296,6.097275864326261 -62,14.0,13.0,-2.4909522639994623,2.250874059369649 -62,14.0,14.0,9.365498545964757,-16.01163373210796 -62,14.0,17.0,-1.8108011504072024,3.687418931630696 -62,14.0,22.0,-1.9683489489016612,3.976064876781356 -62,15.0,11.0,-1.9519977922801688,4.104359379111847 -62,15.0,15.0,3.271064728633931,-8.94513365126506 -62,15.0,16.0,-1.3190669363537617,4.8407742721532125 -62,16.0,15.0,-1.3190669363537617,4.8407742721532125 -62,16.0,16.0,1.3190669363537617,-4.8407742721532125 -62,17.0,14.0,-1.8108011504072024,3.687418931630696 -62,17.0,17.0,4.886487584415919,-9.906177730909668 -62,17.0,18.0,-3.0756864340087167,6.218758799278971 -62,18.0,17.0,-3.0756864340087167,6.218758799278971 -62,18.0,18.0,8.958039375185187,-17.98346468163191 -62,18.0,19.0,-5.88235294117647,11.76470588235294 -62,19.0,18.0,-5.88235294117647,11.76470588235294 -62,19.0,19.0,5.88235294117647,-11.76470588235294 -62,20.0,9.0,-5.101853820159654,10.98071411292983 -62,20.0,20.0,21.876495189895888,-45.10843276170355 -62,20.0,21.0,-16.774641369736234,34.127718648773715 -62,21.0,9.0,-2.619319553382597,5.400770303329455 -62,21.0,20.0,-16.774641369736234,34.127718648773715 -62,21.0,21.0,21.93449907537439,-43.48289181517921 -62,21.0,23.0,-2.5405381522555563,3.95440286307604 -62,22.0,14.0,-1.9683489489016612,3.976064876781356 -62,22.0,22.0,3.429754555384988,-6.965303617315433 -62,22.0,23.0,-1.4614056064833263,2.989238740534077 -62,23.0,21.0,-2.5405381522555563,3.95440286307604 -62,23.0,22.0,-1.4614056064833263,2.989238740534077 -62,23.0,23.0,5.311836702613133,-9.188263657315172 -62,23.0,24.0,-1.3098929438742493,2.287622053705056 -62,24.0,23.0,-1.3098929438742493,2.287622053705056 -62,24.0,24.0,2.526423063323735,-4.104766100052558 -62,24.0,25.0,-1.2165301194494855,1.8171440463475024 -62,25.0,24.0,-1.2165301194494855,1.8171440463475024 -62,25.0,25.0,1.2165301194494855,-1.8171440463475024 -62,26.0,26.0,1.6829894537803372,-5.700229860408058 -62,26.0,27.0,0.0,2.608731947574922 -62,26.0,28.0,-0.99553355095268,1.881005840357816 -62,26.0,29.0,-0.6874559028276572,1.293971494797717 -62,27.0,7.0,-1.4439790613954469,4.540814658476248 -62,27.0,26.0,0.0,2.608731947574922 -62,27.0,27.0,1.4439790613954469,-7.214385678698274 -62,28.0,26.0,-0.99553355095268,1.881005840357816 -62,28.0,28.0,1.9075867579849564,-3.604364401207048 -62,28.0,29.0,-0.9120532070322764,1.7233585608492326 -62,29.0,26.0,-0.6874559028276572,1.293971494797717 -62,29.0,28.0,-0.9120532070322764,1.7233585608492326 -62,29.0,29.0,1.5995091098599337,-3.0173300556469496 -63,0.0,0.0,6.765516048652632,-21.23160167089863 -63,0.0,1.0,-5.224646179885656,15.646726840803398 -63,0.0,2.0,-1.5408698687669766,5.631674830095234 -63,1.0,0.0,-5.224646179885656,15.646726840803398 -63,1.0,1.0,9.75228216552403,-30.648662892676068 -63,1.0,3.0,-1.7055303166990268,5.1973792282565086 -63,1.0,4.0,-1.1359607881738778,4.772479328281356 -63,1.0,5.0,-1.6861448807654689,5.116477495334806 -63,2.0,0.0,-1.5408698687669766,5.631674830095234 -63,2.0,2.0,9.736318911079088,-29.13794745915803 -63,2.0,3.0,-8.19544904231211,23.5308726290628 -63,3.0,1.0,-1.7055303166990268,5.1973792282565086 -63,3.0,2.0,-8.19544904231211,23.5308726290628 -63,3.0,3.0,16.314103089185693,-55.509410535254254 -63,3.0,5.0,-6.413123730174556,22.31120356548123 -63,3.0,11.0,0.0,4.191255364806866 -63,4.0,1.0,-1.1359607881738778,4.772479328281356 -63,4.0,4.0,4.089980824135861,-12.190647245055052 -63,4.0,6.0,-2.954020035961983,7.449267916773697 -63,5.0,1.0,-1.6861448807654689,5.116477495334806 -63,5.0,3.0,-6.413123730174556,22.31120356548123 -63,5.0,5.0,22.341631269034565,-82.8291478657789 -63,5.0,6.0,-3.590210423980992,11.02611441072814 -63,5.0,7.0,-6.289308176100628,22.0125786163522 -63,5.0,8.0,0.0,4.915840805411357 -63,5.0,9.0,0.0,1.8561002591115965 -63,5.0,27.0,-4.362844058012917,15.463571542897856 -63,6.0,4.0,-2.954020035961983,7.449267916773697 -63,6.0,5.0,-3.590210423980992,11.02611441072814 -63,6.0,6.0,6.544230459942975,-18.45668232750184 -63,7.0,5.0,-6.289308176100628,22.0125786163522 -63,7.0,7.0,7.733287237496075,-26.527493274828448 -63,7.0,27.0,-1.4439790613954469,4.540814658476248 -63,8.0,5.0,0.0,4.915840805411357 -63,8.0,8.0,0.0,-9.615384615384617 -63,8.0,10.0,0.0,4.807692307692308 -63,9.0,5.0,0.0,1.8561002591115965 -63,9.0,9.0,13.462042814524237,-32.29285157661331 -63,9.0,16.0,-3.956039125715353,10.317447719844054 -63,9.0,19.0,-1.7848303152666305,3.98535828943083 -63,9.0,20.0,-5.101853820159654,10.98071411292983 -63,9.0,21.0,-2.619319553382597,5.400770303329455 -63,10.0,8.0,0.0,4.807692307692308 -63,10.0,10.0,0.0,-4.807692307692308 -63,11.0,3.0,0.0,4.191255364806866 -63,11.0,11.0,6.573961583776156,-24.424167659260668 -63,11.0,12.0,0.0,7.142857142857143 -63,11.0,13.0,-1.5265676088395577,3.1734252729654173 -63,11.0,14.0,-3.0953961826564296,6.097275864326261 -63,11.0,15.0,-1.9519977922801688,4.104359379111847 -63,12.0,11.0,0.0,7.142857142857143 -63,12.0,12.0,0.0,-7.142857142857143 -63,13.0,11.0,-1.5265676088395577,3.1734252729654173 -63,13.0,13.0,4.01751987283902,-5.424299332335067 -63,13.0,14.0,-2.4909522639994623,2.250874059369649 -63,14.0,11.0,-3.0953961826564296,6.097275864326261 -63,14.0,13.0,-2.4909522639994623,2.250874059369649 -63,14.0,14.0,9.365498545964757,-16.01163373210796 -63,14.0,17.0,-1.8108011504072024,3.687418931630696 -63,14.0,22.0,-1.9683489489016612,3.976064876781356 -63,15.0,11.0,-1.9519977922801688,4.104359379111847 -63,15.0,15.0,3.271064728633931,-8.94513365126506 -63,15.0,16.0,-1.3190669363537617,4.8407742721532125 -63,16.0,9.0,-3.956039125715353,10.317447719844054 -63,16.0,15.0,-1.3190669363537617,4.8407742721532125 -63,16.0,16.0,5.275106062069114,-15.158221991997266 -63,17.0,14.0,-1.8108011504072024,3.687418931630696 -63,17.0,17.0,4.886487584415919,-9.906177730909668 -63,17.0,18.0,-3.0756864340087167,6.218758799278971 -63,18.0,17.0,-3.0756864340087167,6.218758799278971 -63,18.0,18.0,8.958039375185187,-17.98346468163191 -63,18.0,19.0,-5.88235294117647,11.76470588235294 -63,19.0,9.0,-1.7848303152666305,3.98535828943083 -63,19.0,18.0,-5.88235294117647,11.76470588235294 -63,19.0,19.0,7.6671832564431,-15.75006417178377 -63,20.0,9.0,-5.101853820159654,10.98071411292983 -63,20.0,20.0,21.876495189895888,-45.10843276170355 -63,20.0,21.0,-16.774641369736234,34.127718648773715 -63,21.0,9.0,-2.619319553382597,5.400770303329455 -63,21.0,20.0,-16.774641369736234,34.127718648773715 -63,21.0,21.0,21.93449907537439,-43.48289181517921 -63,21.0,23.0,-2.5405381522555563,3.95440286307604 -63,22.0,14.0,-1.9683489489016612,3.976064876781356 -63,22.0,22.0,3.429754555384988,-6.965303617315433 -63,22.0,23.0,-1.4614056064833263,2.989238740534077 -63,23.0,21.0,-2.5405381522555563,3.95440286307604 -63,23.0,22.0,-1.4614056064833263,2.989238740534077 -63,23.0,23.0,5.311836702613133,-9.188263657315172 -63,23.0,24.0,-1.3098929438742493,2.287622053705056 -63,24.0,23.0,-1.3098929438742493,2.287622053705056 -63,24.0,24.0,4.495715080321987,-7.864978761969621 -63,24.0,25.0,-1.2165301194494855,1.8171440463475024 -63,24.0,26.0,-1.9692920169982515,3.760212661917064 -63,25.0,24.0,-1.2165301194494855,1.8171440463475024 -63,25.0,25.0,1.2165301194494855,-1.8171440463475024 -63,26.0,24.0,-1.9692920169982515,3.760212661917064 -63,26.0,26.0,3.652281470778589,-9.46044252232512 -63,26.0,27.0,0.0,2.608731947574922 -63,26.0,28.0,-0.99553355095268,1.881005840357816 -63,26.0,29.0,-0.6874559028276572,1.293971494797717 -63,27.0,5.0,-4.362844058012917,15.463571542897856 -63,27.0,7.0,-1.4439790613954469,4.540814658476248 -63,27.0,26.0,0.0,2.608731947574922 -63,27.0,27.0,5.806823119408364,-22.67145722159613 -63,28.0,26.0,-0.99553355095268,1.881005840357816 -63,28.0,28.0,1.9075867579849564,-3.604364401207048 -63,28.0,29.0,-0.9120532070322764,1.7233585608492326 -63,29.0,26.0,-0.6874559028276572,1.293971494797717 -63,29.0,28.0,-0.9120532070322764,1.7233585608492326 -63,29.0,29.0,1.5995091098599337,-3.0173300556469496 -64,0.0,0.0,6.765516048652632,-21.23160167089863 -64,0.0,1.0,-5.224646179885656,15.646726840803398 -64,0.0,2.0,-1.5408698687669766,5.631674830095234 -64,1.0,0.0,-5.224646179885656,15.646726840803398 -64,1.0,1.0,9.75228216552403,-30.648662892676068 -64,1.0,3.0,-1.7055303166990268,5.1973792282565086 -64,1.0,4.0,-1.1359607881738778,4.772479328281356 -64,1.0,5.0,-1.6861448807654689,5.116477495334806 -64,2.0,0.0,-1.5408698687669766,5.631674830095234 -64,2.0,2.0,9.736318911079088,-29.13794745915803 -64,2.0,3.0,-8.19544904231211,23.5308726290628 -64,3.0,1.0,-1.7055303166990268,5.1973792282565086 -64,3.0,2.0,-8.19544904231211,23.5308726290628 -64,3.0,3.0,16.314103089185693,-55.509410535254254 -64,3.0,5.0,-6.413123730174556,22.31120356548123 -64,3.0,11.0,0.0,4.191255364806866 -64,4.0,1.0,-1.1359607881738778,4.772479328281356 -64,4.0,4.0,4.089980824135861,-12.190647245055052 -64,4.0,6.0,-2.954020035961983,7.449267916773697 -64,5.0,1.0,-1.6861448807654689,5.116477495334806 -64,5.0,3.0,-6.413123730174556,22.31120356548123 -64,5.0,5.0,22.341631269034565,-82.8291478657789 -64,5.0,6.0,-3.590210423980992,11.02611441072814 -64,5.0,7.0,-6.289308176100628,22.0125786163522 -64,5.0,8.0,0.0,4.915840805411357 -64,5.0,9.0,0.0,1.8561002591115965 -64,5.0,27.0,-4.362844058012917,15.463571542897856 -64,6.0,4.0,-2.954020035961983,7.449267916773697 -64,6.0,5.0,-3.590210423980992,11.02611441072814 -64,6.0,6.0,6.544230459942975,-18.45668232750184 -64,7.0,5.0,-6.289308176100628,22.0125786163522 -64,7.0,7.0,7.733287237496075,-26.527493274828448 -64,7.0,27.0,-1.4439790613954469,4.540814658476248 -64,8.0,5.0,0.0,4.915840805411357 -64,8.0,8.0,0.0,-18.706293706293707 -64,8.0,9.0,0.0,9.090909090909092 -64,8.0,10.0,0.0,4.807692307692308 -64,9.0,5.0,0.0,1.8561002591115965 -64,9.0,8.0,0.0,9.090909090909092 -64,9.0,9.0,13.462042814524237,-41.3837606675224 -64,9.0,16.0,-3.956039125715353,10.317447719844054 -64,9.0,19.0,-1.7848303152666305,3.98535828943083 -64,9.0,20.0,-5.101853820159654,10.98071411292983 -64,9.0,21.0,-2.619319553382597,5.400770303329455 -64,10.0,8.0,0.0,4.807692307692308 -64,10.0,10.0,0.0,-4.807692307692308 -64,11.0,3.0,0.0,4.191255364806866 -64,11.0,11.0,6.573961583776156,-24.424167659260668 -64,11.0,12.0,0.0,7.142857142857143 -64,11.0,13.0,-1.5265676088395577,3.1734252729654173 -64,11.0,14.0,-3.0953961826564296,6.097275864326261 -64,11.0,15.0,-1.9519977922801688,4.104359379111847 -64,12.0,11.0,0.0,7.142857142857143 -64,12.0,12.0,0.0,-7.142857142857143 -64,13.0,11.0,-1.5265676088395577,3.1734252729654173 -64,13.0,13.0,4.01751987283902,-5.424299332335067 -64,13.0,14.0,-2.4909522639994623,2.250874059369649 -64,14.0,11.0,-3.0953961826564296,6.097275864326261 -64,14.0,13.0,-2.4909522639994623,2.250874059369649 -64,14.0,14.0,9.365498545964757,-16.01163373210796 -64,14.0,17.0,-1.8108011504072024,3.687418931630696 -64,14.0,22.0,-1.9683489489016612,3.976064876781356 -64,15.0,11.0,-1.9519977922801688,4.104359379111847 -64,15.0,15.0,3.271064728633931,-8.94513365126506 -64,15.0,16.0,-1.3190669363537617,4.8407742721532125 -64,16.0,9.0,-3.956039125715353,10.317447719844054 -64,16.0,15.0,-1.3190669363537617,4.8407742721532125 -64,16.0,16.0,5.275106062069114,-15.158221991997266 -64,17.0,14.0,-1.8108011504072024,3.687418931630696 -64,17.0,17.0,4.886487584415919,-9.906177730909668 -64,17.0,18.0,-3.0756864340087167,6.218758799278971 -64,18.0,17.0,-3.0756864340087167,6.218758799278971 -64,18.0,18.0,8.958039375185187,-17.98346468163191 -64,18.0,19.0,-5.88235294117647,11.76470588235294 -64,19.0,9.0,-1.7848303152666305,3.98535828943083 -64,19.0,18.0,-5.88235294117647,11.76470588235294 -64,19.0,19.0,7.6671832564431,-15.75006417178377 -64,20.0,9.0,-5.101853820159654,10.98071411292983 -64,20.0,20.0,21.876495189895888,-45.10843276170355 -64,20.0,21.0,-16.774641369736234,34.127718648773715 -64,21.0,9.0,-2.619319553382597,5.400770303329455 -64,21.0,20.0,-16.774641369736234,34.127718648773715 -64,21.0,21.0,21.93449907537439,-43.48289181517921 -64,21.0,23.0,-2.5405381522555563,3.95440286307604 -64,22.0,14.0,-1.9683489489016612,3.976064876781356 -64,22.0,22.0,3.429754555384988,-6.965303617315433 -64,22.0,23.0,-1.4614056064833263,2.989238740534077 -64,23.0,21.0,-2.5405381522555563,3.95440286307604 -64,23.0,22.0,-1.4614056064833263,2.989238740534077 -64,23.0,23.0,5.311836702613133,-9.188263657315172 -64,23.0,24.0,-1.3098929438742493,2.287622053705056 -64,24.0,23.0,-1.3098929438742493,2.287622053705056 -64,24.0,24.0,4.495715080321987,-7.864978761969621 -64,24.0,25.0,-1.2165301194494855,1.8171440463475024 -64,24.0,26.0,-1.9692920169982515,3.760212661917064 -64,25.0,24.0,-1.2165301194494855,1.8171440463475024 -64,25.0,25.0,1.2165301194494855,-1.8171440463475024 -64,26.0,24.0,-1.9692920169982515,3.760212661917064 -64,26.0,26.0,3.652281470778589,-9.46044252232512 -64,26.0,27.0,0.0,2.608731947574922 -64,26.0,28.0,-0.99553355095268,1.881005840357816 -64,26.0,29.0,-0.6874559028276572,1.293971494797717 -64,27.0,5.0,-4.362844058012917,15.463571542897856 -64,27.0,7.0,-1.4439790613954469,4.540814658476248 -64,27.0,26.0,0.0,2.608731947574922 -64,27.0,27.0,5.806823119408364,-22.67145722159613 -64,28.0,26.0,-0.99553355095268,1.881005840357816 -64,28.0,28.0,1.9075867579849564,-3.604364401207048 -64,28.0,29.0,-0.9120532070322764,1.7233585608492326 -64,29.0,26.0,-0.6874559028276572,1.293971494797717 -64,29.0,28.0,-0.9120532070322764,1.7233585608492326 -64,29.0,29.0,1.5995091098599337,-3.0173300556469496 -65,0.0,0.0,6.765516048652632,-21.23160167089863 -65,0.0,1.0,-5.224646179885656,15.646726840803398 -65,0.0,2.0,-1.5408698687669766,5.631674830095234 -65,1.0,0.0,-5.224646179885656,15.646726840803398 -65,1.0,1.0,6.360606968059534,-20.371906169084752 -65,1.0,4.0,-1.1359607881738778,4.772479328281356 -65,2.0,0.0,-1.5408698687669766,5.631674830095234 -65,2.0,2.0,9.736318911079088,-29.13794745915803 -65,2.0,3.0,-8.19544904231211,23.5308726290628 -65,3.0,2.0,-8.19544904231211,23.5308726290628 -65,3.0,3.0,8.19544904231211,-28.02372774151652 -65,3.0,11.0,0.0,4.191255364806866 -65,4.0,1.0,-1.1359607881738778,4.772479328281356 -65,4.0,4.0,4.089980824135861,-12.190647245055052 -65,4.0,6.0,-2.954020035961983,7.449267916773697 -65,5.0,5.0,14.24236265809454,-55.42466680496287 -65,5.0,6.0,-3.590210423980992,11.02611441072814 -65,5.0,7.0,-6.289308176100628,22.0125786163522 -65,5.0,8.0,0.0,4.915840805411357 -65,5.0,9.0,0.0,1.8561002591115965 -65,5.0,27.0,-4.362844058012917,15.463571542897856 -65,6.0,4.0,-2.954020035961983,7.449267916773697 -65,6.0,5.0,-3.590210423980992,11.02611441072814 -65,6.0,6.0,6.544230459942975,-18.45668232750184 -65,7.0,5.0,-6.289308176100628,22.0125786163522 -65,7.0,7.0,7.733287237496075,-26.527493274828448 -65,7.0,27.0,-1.4439790613954469,4.540814658476248 -65,8.0,5.0,0.0,4.915840805411357 -65,8.0,8.0,0.0,-18.706293706293707 -65,8.0,9.0,0.0,9.090909090909092 -65,8.0,10.0,0.0,4.807692307692308 -65,9.0,5.0,0.0,1.8561002591115965 -65,9.0,8.0,0.0,9.090909090909092 -65,9.0,9.0,9.057892945875007,-31.997632074762112 -65,9.0,16.0,-3.956039125715353,10.317447719844054 -65,9.0,20.0,-5.101853820159654,10.98071411292983 -65,10.0,8.0,0.0,4.807692307692308 -65,10.0,10.0,0.0,-4.807692307692308 -65,11.0,3.0,0.0,4.191255364806866 -65,11.0,11.0,6.573961583776156,-24.424167659260668 -65,11.0,12.0,0.0,7.142857142857143 -65,11.0,13.0,-1.5265676088395577,3.1734252729654173 -65,11.0,14.0,-3.0953961826564296,6.097275864326261 -65,11.0,15.0,-1.9519977922801688,4.104359379111847 -65,12.0,11.0,0.0,7.142857142857143 -65,12.0,12.0,0.0,-7.142857142857143 -65,13.0,11.0,-1.5265676088395577,3.1734252729654173 -65,13.0,13.0,4.01751987283902,-5.424299332335067 -65,13.0,14.0,-2.4909522639994623,2.250874059369649 -65,14.0,11.0,-3.0953961826564296,6.097275864326261 -65,14.0,13.0,-2.4909522639994623,2.250874059369649 -65,14.0,14.0,9.365498545964757,-16.01163373210796 -65,14.0,17.0,-1.8108011504072024,3.687418931630696 -65,14.0,22.0,-1.9683489489016612,3.976064876781356 -65,15.0,11.0,-1.9519977922801688,4.104359379111847 -65,15.0,15.0,3.271064728633931,-8.94513365126506 -65,15.0,16.0,-1.3190669363537617,4.8407742721532125 -65,16.0,9.0,-3.956039125715353,10.317447719844054 -65,16.0,15.0,-1.3190669363537617,4.8407742721532125 -65,16.0,16.0,5.275106062069114,-15.158221991997266 -65,17.0,14.0,-1.8108011504072024,3.687418931630696 -65,17.0,17.0,4.886487584415919,-9.906177730909668 -65,17.0,18.0,-3.0756864340087167,6.218758799278971 -65,18.0,17.0,-3.0756864340087167,6.218758799278971 -65,18.0,18.0,8.958039375185187,-17.98346468163191 -65,18.0,19.0,-5.88235294117647,11.76470588235294 -65,19.0,18.0,-5.88235294117647,11.76470588235294 -65,19.0,19.0,5.88235294117647,-11.76470588235294 -65,20.0,9.0,-5.101853820159654,10.98071411292983 -65,20.0,20.0,21.876495189895888,-45.10843276170355 -65,20.0,21.0,-16.774641369736234,34.127718648773715 -65,21.0,20.0,-16.774641369736234,34.127718648773715 -65,21.0,21.0,19.31517952199179,-38.08212151184976 -65,21.0,23.0,-2.5405381522555563,3.95440286307604 -65,22.0,14.0,-1.9683489489016612,3.976064876781356 -65,22.0,22.0,3.429754555384988,-6.965303617315433 -65,22.0,23.0,-1.4614056064833263,2.989238740534077 -65,23.0,21.0,-2.5405381522555563,3.95440286307604 -65,23.0,22.0,-1.4614056064833263,2.989238740534077 -65,23.0,23.0,5.311836702613133,-9.188263657315172 -65,23.0,24.0,-1.3098929438742493,2.287622053705056 -65,24.0,23.0,-1.3098929438742493,2.287622053705056 -65,24.0,24.0,2.526423063323735,-4.104766100052558 -65,24.0,25.0,-1.2165301194494855,1.8171440463475024 -65,25.0,24.0,-1.2165301194494855,1.8171440463475024 -65,25.0,25.0,1.2165301194494855,-1.8171440463475024 -65,26.0,26.0,0.6874559028276572,-3.8192240200502416 -65,26.0,27.0,0.0,2.608731947574922 -65,26.0,29.0,-0.6874559028276572,1.293971494797717 -65,27.0,5.0,-4.362844058012917,15.463571542897856 -65,27.0,7.0,-1.4439790613954469,4.540814658476248 -65,27.0,26.0,0.0,2.608731947574922 -65,27.0,27.0,5.806823119408364,-22.67145722159613 -65,28.0,28.0,0.9120532070322764,-1.7233585608492326 -65,28.0,29.0,-0.9120532070322764,1.7233585608492326 -65,29.0,26.0,-0.6874559028276572,1.293971494797717 -65,29.0,28.0,-0.9120532070322764,1.7233585608492326 -65,29.0,29.0,1.5995091098599337,-3.0173300556469496 -66,0.0,0.0,6.765516048652632,-21.23160167089863 -66,0.0,1.0,-5.224646179885656,15.646726840803398 -66,0.0,2.0,-1.5408698687669766,5.631674830095234 -66,1.0,0.0,-5.224646179885656,15.646726840803398 -66,1.0,1.0,9.75228216552403,-30.648662892676068 -66,1.0,3.0,-1.7055303166990268,5.1973792282565086 -66,1.0,4.0,-1.1359607881738778,4.772479328281356 -66,1.0,5.0,-1.6861448807654689,5.116477495334806 -66,2.0,0.0,-1.5408698687669766,5.631674830095234 -66,2.0,2.0,9.736318911079088,-29.13794745915803 -66,2.0,3.0,-8.19544904231211,23.5308726290628 -66,3.0,1.0,-1.7055303166990268,5.1973792282565086 -66,3.0,2.0,-8.19544904231211,23.5308726290628 -66,3.0,3.0,16.314103089185693,-55.509410535254254 -66,3.0,5.0,-6.413123730174556,22.31120356548123 -66,3.0,11.0,0.0,4.191255364806866 -66,4.0,1.0,-1.1359607881738778,4.772479328281356 -66,4.0,4.0,4.089980824135861,-12.190647245055052 -66,4.0,6.0,-2.954020035961983,7.449267916773697 -66,5.0,1.0,-1.6861448807654689,5.116477495334806 -66,5.0,3.0,-6.413123730174556,22.31120356548123 -66,5.0,5.0,22.341631269034565,-80.91366772221689 -66,5.0,6.0,-3.590210423980992,11.02611441072814 -66,5.0,7.0,-6.289308176100628,22.0125786163522 -66,5.0,8.0,0.0,4.915840805411357 -66,5.0,27.0,-4.362844058012917,15.463571542897856 -66,6.0,4.0,-2.954020035961983,7.449267916773697 -66,6.0,5.0,-3.590210423980992,11.02611441072814 -66,6.0,6.0,6.544230459942975,-18.45668232750184 -66,7.0,5.0,-6.289308176100628,22.0125786163522 -66,7.0,7.0,7.733287237496075,-26.527493274828448 -66,7.0,27.0,-1.4439790613954469,4.540814658476248 -66,8.0,5.0,0.0,4.915840805411357 -66,8.0,8.0,0.0,-18.706293706293707 -66,8.0,9.0,0.0,9.090909090909092 -66,8.0,10.0,0.0,4.807692307692308 -66,9.0,8.0,0.0,9.090909090909092 -66,9.0,9.0,11.677212499257603,-35.59984122701243 -66,9.0,16.0,-3.956039125715353,10.317447719844054 -66,9.0,20.0,-5.101853820159654,10.98071411292983 -66,9.0,21.0,-2.619319553382597,5.400770303329455 -66,10.0,8.0,0.0,4.807692307692308 -66,10.0,10.0,0.0,-4.807692307692308 -66,11.0,3.0,0.0,4.191255364806866 -66,11.0,11.0,5.047393974936599,-21.25074238629525 -66,11.0,12.0,0.0,7.142857142857143 -66,11.0,14.0,-3.0953961826564296,6.097275864326261 -66,11.0,15.0,-1.9519977922801688,4.104359379111847 -66,12.0,11.0,0.0,7.142857142857143 -66,12.0,12.0,0.0,-7.142857142857143 -66,13.0,13.0,2.4909522639994623,-2.250874059369649 -66,13.0,14.0,-2.4909522639994623,2.250874059369649 -66,14.0,11.0,-3.0953961826564296,6.097275864326261 -66,14.0,13.0,-2.4909522639994623,2.250874059369649 -66,14.0,14.0,9.365498545964757,-16.01163373210796 -66,14.0,17.0,-1.8108011504072024,3.687418931630696 -66,14.0,22.0,-1.9683489489016612,3.976064876781356 -66,15.0,11.0,-1.9519977922801688,4.104359379111847 -66,15.0,15.0,3.271064728633931,-8.94513365126506 -66,15.0,16.0,-1.3190669363537617,4.8407742721532125 -66,16.0,9.0,-3.956039125715353,10.317447719844054 -66,16.0,15.0,-1.3190669363537617,4.8407742721532125 -66,16.0,16.0,5.275106062069114,-15.158221991997266 -66,17.0,14.0,-1.8108011504072024,3.687418931630696 -66,17.0,17.0,4.886487584415919,-9.906177730909668 -66,17.0,18.0,-3.0756864340087167,6.218758799278971 -66,18.0,17.0,-3.0756864340087167,6.218758799278971 -66,18.0,18.0,8.958039375185187,-17.98346468163191 -66,18.0,19.0,-5.88235294117647,11.76470588235294 -66,19.0,18.0,-5.88235294117647,11.76470588235294 -66,19.0,19.0,5.88235294117647,-11.76470588235294 -66,20.0,9.0,-5.101853820159654,10.98071411292983 -66,20.0,20.0,21.876495189895888,-45.10843276170355 -66,20.0,21.0,-16.774641369736234,34.127718648773715 -66,21.0,9.0,-2.619319553382597,5.400770303329455 -66,21.0,20.0,-16.774641369736234,34.127718648773715 -66,21.0,21.0,21.93449907537439,-43.48289181517921 -66,21.0,23.0,-2.5405381522555563,3.95440286307604 -66,22.0,14.0,-1.9683489489016612,3.976064876781356 -66,22.0,22.0,3.429754555384988,-6.965303617315433 -66,22.0,23.0,-1.4614056064833263,2.989238740534077 -66,23.0,21.0,-2.5405381522555563,3.95440286307604 -66,23.0,22.0,-1.4614056064833263,2.989238740534077 -66,23.0,23.0,5.311836702613133,-9.188263657315172 -66,23.0,24.0,-1.3098929438742493,2.287622053705056 -66,24.0,23.0,-1.3098929438742493,2.287622053705056 -66,24.0,24.0,4.495715080321987,-7.864978761969621 -66,24.0,25.0,-1.2165301194494855,1.8171440463475024 -66,24.0,26.0,-1.9692920169982515,3.760212661917064 -66,25.0,24.0,-1.2165301194494855,1.8171440463475024 -66,25.0,25.0,1.2165301194494855,-1.8171440463475024 -66,26.0,24.0,-1.9692920169982515,3.760212661917064 -66,26.0,26.0,3.652281470778589,-9.46044252232512 -66,26.0,27.0,0.0,2.608731947574922 -66,26.0,28.0,-0.99553355095268,1.881005840357816 -66,26.0,29.0,-0.6874559028276572,1.293971494797717 -66,27.0,5.0,-4.362844058012917,15.463571542897856 -66,27.0,7.0,-1.4439790613954469,4.540814658476248 -66,27.0,26.0,0.0,2.608731947574922 -66,27.0,27.0,5.806823119408364,-22.67145722159613 -66,28.0,26.0,-0.99553355095268,1.881005840357816 -66,28.0,28.0,1.9075867579849564,-3.604364401207048 -66,28.0,29.0,-0.9120532070322764,1.7233585608492326 -66,29.0,26.0,-0.6874559028276572,1.293971494797717 -66,29.0,28.0,-0.9120532070322764,1.7233585608492326 -66,29.0,29.0,1.5995091098599337,-3.0173300556469496 -67,0.0,0.0,6.765516048652632,-21.23160167089863 -67,0.0,1.0,-5.224646179885656,15.646726840803398 -67,0.0,2.0,-1.5408698687669766,5.631674830095234 -67,1.0,0.0,-5.224646179885656,15.646726840803398 -67,1.0,1.0,9.75228216552403,-30.648662892676068 -67,1.0,3.0,-1.7055303166990268,5.1973792282565086 -67,1.0,4.0,-1.1359607881738778,4.772479328281356 -67,1.0,5.0,-1.6861448807654689,5.116477495334806 -67,2.0,0.0,-1.5408698687669766,5.631674830095234 -67,2.0,2.0,9.736318911079088,-29.13794745915803 -67,2.0,3.0,-8.19544904231211,23.5308726290628 -67,3.0,1.0,-1.7055303166990268,5.1973792282565086 -67,3.0,2.0,-8.19544904231211,23.5308726290628 -67,3.0,3.0,16.314103089185693,-55.509410535254254 -67,3.0,5.0,-6.413123730174556,22.31120356548123 -67,3.0,11.0,0.0,4.191255364806866 -67,4.0,1.0,-1.1359607881738778,4.772479328281356 -67,4.0,4.0,4.089980824135861,-12.190647245055052 -67,4.0,6.0,-2.954020035961983,7.449267916773697 -67,5.0,1.0,-1.6861448807654689,5.116477495334806 -67,5.0,3.0,-6.413123730174556,22.31120356548123 -67,5.0,5.0,22.341631269034565,-82.8291478657789 -67,5.0,6.0,-3.590210423980992,11.02611441072814 -67,5.0,7.0,-6.289308176100628,22.0125786163522 -67,5.0,8.0,0.0,4.915840805411357 -67,5.0,9.0,0.0,1.8561002591115965 -67,5.0,27.0,-4.362844058012917,15.463571542897856 -67,6.0,4.0,-2.954020035961983,7.449267916773697 -67,6.0,5.0,-3.590210423980992,11.02611441072814 -67,6.0,6.0,6.544230459942975,-18.45668232750184 -67,7.0,5.0,-6.289308176100628,22.0125786163522 -67,7.0,7.0,7.733287237496075,-26.527493274828448 -67,7.0,27.0,-1.4439790613954469,4.540814658476248 -67,8.0,5.0,0.0,4.915840805411357 -67,8.0,8.0,0.0,-18.706293706293707 -67,8.0,9.0,0.0,9.090909090909092 -67,8.0,10.0,0.0,4.807692307692308 -67,9.0,5.0,0.0,1.8561002591115965 -67,9.0,8.0,0.0,9.090909090909092 -67,9.0,9.0,13.462042814524237,-41.3837606675224 -67,9.0,16.0,-3.956039125715353,10.317447719844054 -67,9.0,19.0,-1.7848303152666305,3.98535828943083 -67,9.0,20.0,-5.101853820159654,10.98071411292983 -67,9.0,21.0,-2.619319553382597,5.400770303329455 -67,10.0,8.0,0.0,4.807692307692308 -67,10.0,10.0,0.0,-4.807692307692308 -67,11.0,3.0,0.0,4.191255364806866 -67,11.0,11.0,4.621963791495987,-20.31980828014882 -67,11.0,12.0,0.0,7.142857142857143 -67,11.0,13.0,-1.5265676088395577,3.1734252729654173 -67,11.0,14.0,-3.0953961826564296,6.097275864326261 -67,12.0,11.0,0.0,7.142857142857143 -67,12.0,12.0,0.0,-7.142857142857143 -67,13.0,11.0,-1.5265676088395577,3.1734252729654173 -67,13.0,13.0,4.01751987283902,-5.424299332335067 -67,13.0,14.0,-2.4909522639994623,2.250874059369649 -67,14.0,11.0,-3.0953961826564296,6.097275864326261 -67,14.0,13.0,-2.4909522639994623,2.250874059369649 -67,14.0,14.0,9.365498545964757,-16.01163373210796 -67,14.0,17.0,-1.8108011504072024,3.687418931630696 -67,14.0,22.0,-1.9683489489016612,3.976064876781356 -67,15.0,15.0,1.3190669363537617,-4.8407742721532125 -67,15.0,16.0,-1.3190669363537617,4.8407742721532125 -67,16.0,9.0,-3.956039125715353,10.317447719844054 -67,16.0,15.0,-1.3190669363537617,4.8407742721532125 -67,16.0,16.0,5.275106062069114,-15.158221991997266 -67,17.0,14.0,-1.8108011504072024,3.687418931630696 -67,17.0,17.0,4.886487584415919,-9.906177730909668 -67,17.0,18.0,-3.0756864340087167,6.218758799278971 -67,18.0,17.0,-3.0756864340087167,6.218758799278971 -67,18.0,18.0,8.958039375185187,-17.98346468163191 -67,18.0,19.0,-5.88235294117647,11.76470588235294 -67,19.0,9.0,-1.7848303152666305,3.98535828943083 -67,19.0,18.0,-5.88235294117647,11.76470588235294 -67,19.0,19.0,7.6671832564431,-15.75006417178377 -67,20.0,9.0,-5.101853820159654,10.98071411292983 -67,20.0,20.0,21.876495189895888,-45.10843276170355 -67,20.0,21.0,-16.774641369736234,34.127718648773715 -67,21.0,9.0,-2.619319553382597,5.400770303329455 -67,21.0,20.0,-16.774641369736234,34.127718648773715 -67,21.0,21.0,21.93449907537439,-43.48289181517921 -67,21.0,23.0,-2.5405381522555563,3.95440286307604 -67,22.0,14.0,-1.9683489489016612,3.976064876781356 -67,22.0,22.0,3.429754555384988,-6.965303617315433 -67,22.0,23.0,-1.4614056064833263,2.989238740534077 -67,23.0,21.0,-2.5405381522555563,3.95440286307604 -67,23.0,22.0,-1.4614056064833263,2.989238740534077 -67,23.0,23.0,5.311836702613133,-9.188263657315172 -67,23.0,24.0,-1.3098929438742493,2.287622053705056 -67,24.0,23.0,-1.3098929438742493,2.287622053705056 -67,24.0,24.0,4.495715080321987,-7.864978761969621 -67,24.0,25.0,-1.2165301194494855,1.8171440463475024 -67,24.0,26.0,-1.9692920169982515,3.760212661917064 -67,25.0,24.0,-1.2165301194494855,1.8171440463475024 -67,25.0,25.0,1.2165301194494855,-1.8171440463475024 -67,26.0,24.0,-1.9692920169982515,3.760212661917064 -67,26.0,26.0,3.652281470778589,-9.46044252232512 -67,26.0,27.0,0.0,2.608731947574922 -67,26.0,28.0,-0.99553355095268,1.881005840357816 -67,26.0,29.0,-0.6874559028276572,1.293971494797717 -67,27.0,5.0,-4.362844058012917,15.463571542897856 -67,27.0,7.0,-1.4439790613954469,4.540814658476248 -67,27.0,26.0,0.0,2.608731947574922 -67,27.0,27.0,5.806823119408364,-22.67145722159613 -67,28.0,26.0,-0.99553355095268,1.881005840357816 -67,28.0,28.0,0.99553355095268,-1.881005840357816 -67,29.0,26.0,-0.6874559028276572,1.293971494797717 -67,29.0,29.0,0.6874559028276572,-1.293971494797717 -68,0.0,0.0,6.765516048652632,-21.23160167089863 -68,0.0,1.0,-5.224646179885656,15.646726840803398 -68,0.0,2.0,-1.5408698687669766,5.631674830095234 -68,1.0,0.0,-5.224646179885656,15.646726840803398 -68,1.0,1.0,9.75228216552403,-30.648662892676068 -68,1.0,3.0,-1.7055303166990268,5.1973792282565086 -68,1.0,4.0,-1.1359607881738778,4.772479328281356 -68,1.0,5.0,-1.6861448807654689,5.116477495334806 -68,2.0,0.0,-1.5408698687669766,5.631674830095234 -68,2.0,2.0,9.736318911079088,-29.13794745915803 -68,2.0,3.0,-8.19544904231211,23.5308726290628 -68,3.0,1.0,-1.7055303166990268,5.1973792282565086 -68,3.0,2.0,-8.19544904231211,23.5308726290628 -68,3.0,3.0,16.314103089185693,-55.509410535254254 -68,3.0,5.0,-6.413123730174556,22.31120356548123 -68,3.0,11.0,0.0,4.191255364806866 -68,4.0,1.0,-1.1359607881738778,4.772479328281356 -68,4.0,4.0,4.089980824135861,-12.190647245055052 -68,4.0,6.0,-2.954020035961983,7.449267916773697 -68,5.0,1.0,-1.6861448807654689,5.116477495334806 -68,5.0,3.0,-6.413123730174556,22.31120356548123 -68,5.0,5.0,22.341631269034565,-77.80272577435625 -68,5.0,6.0,-3.590210423980992,11.02611441072814 -68,5.0,7.0,-6.289308176100628,22.0125786163522 -68,5.0,9.0,0.0,1.8561002591115965 -68,5.0,27.0,-4.362844058012917,15.463571542897856 -68,6.0,4.0,-2.954020035961983,7.449267916773697 -68,6.0,5.0,-3.590210423980992,11.02611441072814 -68,6.0,6.0,6.544230459942975,-18.45668232750184 -68,7.0,5.0,-6.289308176100628,22.0125786163522 -68,7.0,7.0,7.733287237496075,-26.527493274828448 -68,7.0,27.0,-1.4439790613954469,4.540814658476248 -68,8.0,8.0,0.0,-13.8986013986014 -68,8.0,9.0,0.0,9.090909090909092 -68,8.0,10.0,0.0,4.807692307692308 -68,9.0,5.0,0.0,1.8561002591115965 -68,9.0,8.0,0.0,9.090909090909092 -68,9.0,9.0,13.462042814524237,-41.3837606675224 -68,9.0,16.0,-3.956039125715353,10.317447719844054 -68,9.0,19.0,-1.7848303152666305,3.98535828943083 -68,9.0,20.0,-5.101853820159654,10.98071411292983 -68,9.0,21.0,-2.619319553382597,5.400770303329455 -68,10.0,8.0,0.0,4.807692307692308 -68,10.0,10.0,0.0,-4.807692307692308 -68,11.0,3.0,0.0,4.191255364806866 -68,11.0,11.0,6.573961583776156,-24.424167659260668 -68,11.0,12.0,0.0,7.142857142857143 -68,11.0,13.0,-1.5265676088395577,3.1734252729654173 -68,11.0,14.0,-3.0953961826564296,6.097275864326261 -68,11.0,15.0,-1.9519977922801688,4.104359379111847 -68,12.0,11.0,0.0,7.142857142857143 -68,12.0,12.0,0.0,-7.142857142857143 -68,13.0,11.0,-1.5265676088395577,3.1734252729654173 -68,13.0,13.0,4.01751987283902,-5.424299332335067 -68,13.0,14.0,-2.4909522639994623,2.250874059369649 -68,14.0,11.0,-3.0953961826564296,6.097275864326261 -68,14.0,13.0,-2.4909522639994623,2.250874059369649 -68,14.0,14.0,9.365498545964757,-16.01163373210796 -68,14.0,17.0,-1.8108011504072024,3.687418931630696 -68,14.0,22.0,-1.9683489489016612,3.976064876781356 -68,15.0,11.0,-1.9519977922801688,4.104359379111847 -68,15.0,15.0,3.271064728633931,-8.94513365126506 -68,15.0,16.0,-1.3190669363537617,4.8407742721532125 -68,16.0,9.0,-3.956039125715353,10.317447719844054 -68,16.0,15.0,-1.3190669363537617,4.8407742721532125 -68,16.0,16.0,5.275106062069114,-15.158221991997266 -68,17.0,14.0,-1.8108011504072024,3.687418931630696 -68,17.0,17.0,4.886487584415919,-9.906177730909668 -68,17.0,18.0,-3.0756864340087167,6.218758799278971 -68,18.0,17.0,-3.0756864340087167,6.218758799278971 -68,18.0,18.0,8.958039375185187,-17.98346468163191 -68,18.0,19.0,-5.88235294117647,11.76470588235294 -68,19.0,9.0,-1.7848303152666305,3.98535828943083 -68,19.0,18.0,-5.88235294117647,11.76470588235294 -68,19.0,19.0,7.6671832564431,-15.75006417178377 -68,20.0,9.0,-5.101853820159654,10.98071411292983 -68,20.0,20.0,21.876495189895888,-45.10843276170355 -68,20.0,21.0,-16.774641369736234,34.127718648773715 -68,21.0,9.0,-2.619319553382597,5.400770303329455 -68,21.0,20.0,-16.774641369736234,34.127718648773715 -68,21.0,21.0,21.93449907537439,-43.48289181517921 -68,21.0,23.0,-2.5405381522555563,3.95440286307604 -68,22.0,14.0,-1.9683489489016612,3.976064876781356 -68,22.0,22.0,3.429754555384988,-6.965303617315433 -68,22.0,23.0,-1.4614056064833263,2.989238740534077 -68,23.0,21.0,-2.5405381522555563,3.95440286307604 -68,23.0,22.0,-1.4614056064833263,2.989238740534077 -68,23.0,23.0,5.311836702613133,-9.188263657315172 -68,23.0,24.0,-1.3098929438742493,2.287622053705056 -68,24.0,23.0,-1.3098929438742493,2.287622053705056 -68,24.0,24.0,4.495715080321987,-7.864978761969621 -68,24.0,25.0,-1.2165301194494855,1.8171440463475024 -68,24.0,26.0,-1.9692920169982515,3.760212661917064 -68,25.0,24.0,-1.2165301194494855,1.8171440463475024 -68,25.0,25.0,1.2165301194494855,-1.8171440463475024 -68,26.0,24.0,-1.9692920169982515,3.760212661917064 -68,26.0,26.0,3.652281470778589,-9.46044252232512 -68,26.0,27.0,0.0,2.608731947574922 -68,26.0,28.0,-0.99553355095268,1.881005840357816 -68,26.0,29.0,-0.6874559028276572,1.293971494797717 -68,27.0,5.0,-4.362844058012917,15.463571542897856 -68,27.0,7.0,-1.4439790613954469,4.540814658476248 -68,27.0,26.0,0.0,2.608731947574922 -68,27.0,27.0,5.806823119408364,-22.67145722159613 -68,28.0,26.0,-0.99553355095268,1.881005840357816 -68,28.0,28.0,1.9075867579849564,-3.604364401207048 -68,28.0,29.0,-0.9120532070322764,1.7233585608492326 -68,29.0,26.0,-0.6874559028276572,1.293971494797717 -68,29.0,28.0,-0.9120532070322764,1.7233585608492326 -68,29.0,29.0,1.5995091098599337,-3.0173300556469496 -69,0.0,0.0,6.765516048652632,-21.23160167089863 -69,0.0,1.0,-5.224646179885656,15.646726840803398 -69,0.0,2.0,-1.5408698687669766,5.631674830095234 -69,1.0,0.0,-5.224646179885656,15.646726840803398 -69,1.0,1.0,8.046751848825002,-25.46968366441956 -69,1.0,4.0,-1.1359607881738778,4.772479328281356 -69,1.0,5.0,-1.6861448807654689,5.116477495334806 -69,2.0,0.0,-1.5408698687669766,5.631674830095234 -69,2.0,2.0,9.736318911079088,-29.13794745915803 -69,2.0,3.0,-8.19544904231211,23.5308726290628 -69,3.0,2.0,-8.19544904231211,23.5308726290628 -69,3.0,3.0,14.608572772486664,-50.33043130699775 -69,3.0,5.0,-6.413123730174556,22.31120356548123 -69,3.0,11.0,0.0,4.191255364806866 -69,4.0,1.0,-1.1359607881738778,4.772479328281356 -69,4.0,4.0,4.089980824135861,-12.190647245055052 -69,4.0,6.0,-2.954020035961983,7.449267916773697 -69,5.0,1.0,-1.6861448807654689,5.116477495334806 -69,5.0,3.0,-6.413123730174556,22.31120356548123 -69,5.0,5.0,22.341631269034565,-77.80272577435625 -69,5.0,6.0,-3.590210423980992,11.02611441072814 -69,5.0,7.0,-6.289308176100628,22.0125786163522 -69,5.0,9.0,0.0,1.8561002591115965 -69,5.0,27.0,-4.362844058012917,15.463571542897856 -69,6.0,4.0,-2.954020035961983,7.449267916773697 -69,6.0,5.0,-3.590210423980992,11.02611441072814 -69,6.0,6.0,6.544230459942975,-18.45668232750184 -69,7.0,5.0,-6.289308176100628,22.0125786163522 -69,7.0,7.0,7.733287237496075,-26.527493274828448 -69,7.0,27.0,-1.4439790613954469,4.540814658476248 -69,8.0,8.0,0.0,-13.8986013986014 -69,8.0,9.0,0.0,9.090909090909092 -69,8.0,10.0,0.0,4.807692307692308 -69,9.0,5.0,0.0,1.8561002591115965 -69,9.0,8.0,0.0,9.090909090909092 -69,9.0,9.0,13.462042814524237,-41.3837606675224 -69,9.0,16.0,-3.956039125715353,10.317447719844054 -69,9.0,19.0,-1.7848303152666305,3.98535828943083 -69,9.0,20.0,-5.101853820159654,10.98071411292983 -69,9.0,21.0,-2.619319553382597,5.400770303329455 -69,10.0,8.0,0.0,4.807692307692308 -69,10.0,10.0,0.0,-4.807692307692308 -69,11.0,3.0,0.0,4.191255364806866 -69,11.0,11.0,3.478565401119727,-18.326891794934408 -69,11.0,12.0,0.0,7.142857142857143 -69,11.0,13.0,-1.5265676088395577,3.1734252729654173 -69,11.0,15.0,-1.9519977922801688,4.104359379111847 -69,12.0,11.0,0.0,7.142857142857143 -69,12.0,12.0,0.0,-7.142857142857143 -69,13.0,11.0,-1.5265676088395577,3.1734252729654173 -69,13.0,13.0,1.5265676088395577,-3.1734252729654173 -69,14.0,14.0,3.779150099308864,-7.663483808412051 -69,14.0,17.0,-1.8108011504072024,3.687418931630696 -69,14.0,22.0,-1.9683489489016612,3.976064876781356 -69,15.0,11.0,-1.9519977922801688,4.104359379111847 -69,15.0,15.0,3.271064728633931,-8.94513365126506 -69,15.0,16.0,-1.3190669363537617,4.8407742721532125 -69,16.0,9.0,-3.956039125715353,10.317447719844054 -69,16.0,15.0,-1.3190669363537617,4.8407742721532125 -69,16.0,16.0,5.275106062069114,-15.158221991997266 -69,17.0,14.0,-1.8108011504072024,3.687418931630696 -69,17.0,17.0,4.886487584415919,-9.906177730909668 -69,17.0,18.0,-3.0756864340087167,6.218758799278971 -69,18.0,17.0,-3.0756864340087167,6.218758799278971 -69,18.0,18.0,8.958039375185187,-17.98346468163191 -69,18.0,19.0,-5.88235294117647,11.76470588235294 -69,19.0,9.0,-1.7848303152666305,3.98535828943083 -69,19.0,18.0,-5.88235294117647,11.76470588235294 -69,19.0,19.0,7.6671832564431,-15.75006417178377 -69,20.0,9.0,-5.101853820159654,10.98071411292983 -69,20.0,20.0,21.876495189895888,-45.10843276170355 -69,20.0,21.0,-16.774641369736234,34.127718648773715 -69,21.0,9.0,-2.619319553382597,5.400770303329455 -69,21.0,20.0,-16.774641369736234,34.127718648773715 -69,21.0,21.0,21.93449907537439,-43.48289181517921 -69,21.0,23.0,-2.5405381522555563,3.95440286307604 -69,22.0,14.0,-1.9683489489016612,3.976064876781356 -69,22.0,22.0,3.429754555384988,-6.965303617315433 -69,22.0,23.0,-1.4614056064833263,2.989238740534077 -69,23.0,21.0,-2.5405381522555563,3.95440286307604 -69,23.0,22.0,-1.4614056064833263,2.989238740534077 -69,23.0,23.0,5.311836702613133,-9.188263657315172 -69,23.0,24.0,-1.3098929438742493,2.287622053705056 -69,24.0,23.0,-1.3098929438742493,2.287622053705056 -69,24.0,24.0,4.495715080321987,-7.864978761969621 -69,24.0,25.0,-1.2165301194494855,1.8171440463475024 -69,24.0,26.0,-1.9692920169982515,3.760212661917064 -69,25.0,24.0,-1.2165301194494855,1.8171440463475024 -69,25.0,25.0,1.2165301194494855,-1.8171440463475024 -69,26.0,24.0,-1.9692920169982515,3.760212661917064 -69,26.0,26.0,3.652281470778589,-9.46044252232512 -69,26.0,27.0,0.0,2.608731947574922 -69,26.0,28.0,-0.99553355095268,1.881005840357816 -69,26.0,29.0,-0.6874559028276572,1.293971494797717 -69,27.0,5.0,-4.362844058012917,15.463571542897856 -69,27.0,7.0,-1.4439790613954469,4.540814658476248 -69,27.0,26.0,0.0,2.608731947574922 -69,27.0,27.0,5.806823119408364,-22.67145722159613 -69,28.0,26.0,-0.99553355095268,1.881005840357816 -69,28.0,28.0,0.99553355095268,-1.881005840357816 -69,29.0,26.0,-0.6874559028276572,1.293971494797717 -69,29.0,29.0,0.6874559028276572,-1.293971494797717 -70,0.0,0.0,6.765516048652632,-21.23160167089863 -70,0.0,1.0,-5.224646179885656,15.646726840803398 -70,0.0,2.0,-1.5408698687669766,5.631674830095234 -70,1.0,0.0,-5.224646179885656,15.646726840803398 -70,1.0,1.0,9.75228216552403,-30.648662892676068 -70,1.0,3.0,-1.7055303166990268,5.1973792282565086 -70,1.0,4.0,-1.1359607881738778,4.772479328281356 -70,1.0,5.0,-1.6861448807654689,5.116477495334806 -70,2.0,0.0,-1.5408698687669766,5.631674830095234 -70,2.0,2.0,9.736318911079088,-29.13794745915803 -70,2.0,3.0,-8.19544904231211,23.5308726290628 -70,3.0,1.0,-1.7055303166990268,5.1973792282565086 -70,3.0,2.0,-8.19544904231211,23.5308726290628 -70,3.0,3.0,16.314103089185693,-55.509410535254254 -70,3.0,5.0,-6.413123730174556,22.31120356548123 -70,3.0,11.0,0.0,4.191255364806866 -70,4.0,1.0,-1.1359607881738778,4.772479328281356 -70,4.0,4.0,4.089980824135861,-12.190647245055052 -70,4.0,6.0,-2.954020035961983,7.449267916773697 -70,5.0,1.0,-1.6861448807654689,5.116477495334806 -70,5.0,3.0,-6.413123730174556,22.31120356548123 -70,5.0,5.0,22.341631269034565,-82.8291478657789 -70,5.0,6.0,-3.590210423980992,11.02611441072814 -70,5.0,7.0,-6.289308176100628,22.0125786163522 -70,5.0,8.0,0.0,4.915840805411357 -70,5.0,9.0,0.0,1.8561002591115965 -70,5.0,27.0,-4.362844058012917,15.463571542897856 -70,6.0,4.0,-2.954020035961983,7.449267916773697 -70,6.0,5.0,-3.590210423980992,11.02611441072814 -70,6.0,6.0,6.544230459942975,-18.45668232750184 -70,7.0,5.0,-6.289308176100628,22.0125786163522 -70,7.0,7.0,7.733287237496075,-26.527493274828448 -70,7.0,27.0,-1.4439790613954469,4.540814658476248 -70,8.0,5.0,0.0,4.915840805411357 -70,8.0,8.0,0.0,-18.706293706293707 -70,8.0,9.0,0.0,9.090909090909092 -70,8.0,10.0,0.0,4.807692307692308 -70,9.0,5.0,0.0,1.8561002591115965 -70,9.0,8.0,0.0,9.090909090909092 -70,9.0,9.0,13.462042814524237,-41.3837606675224 -70,9.0,16.0,-3.956039125715353,10.317447719844054 -70,9.0,19.0,-1.7848303152666305,3.98535828943083 -70,9.0,20.0,-5.101853820159654,10.98071411292983 -70,9.0,21.0,-2.619319553382597,5.400770303329455 -70,10.0,8.0,0.0,4.807692307692308 -70,10.0,10.0,0.0,-4.807692307692308 -70,11.0,3.0,0.0,4.191255364806866 -70,11.0,11.0,6.573961583776156,-24.424167659260668 -70,11.0,12.0,0.0,7.142857142857143 -70,11.0,13.0,-1.5265676088395577,3.1734252729654173 -70,11.0,14.0,-3.0953961826564296,6.097275864326261 -70,11.0,15.0,-1.9519977922801688,4.104359379111847 -70,12.0,11.0,0.0,7.142857142857143 -70,12.0,12.0,0.0,-7.142857142857143 -70,13.0,11.0,-1.5265676088395577,3.1734252729654173 -70,13.0,13.0,4.01751987283902,-5.424299332335067 -70,13.0,14.0,-2.4909522639994623,2.250874059369649 -70,14.0,11.0,-3.0953961826564296,6.097275864326261 -70,14.0,13.0,-2.4909522639994623,2.250874059369649 -70,14.0,14.0,9.365498545964757,-16.01163373210796 -70,14.0,17.0,-1.8108011504072024,3.687418931630696 -70,14.0,22.0,-1.9683489489016612,3.976064876781356 -70,15.0,11.0,-1.9519977922801688,4.104359379111847 -70,15.0,15.0,3.271064728633931,-8.94513365126506 -70,15.0,16.0,-1.3190669363537617,4.8407742721532125 -70,16.0,9.0,-3.956039125715353,10.317447719844054 -70,16.0,15.0,-1.3190669363537617,4.8407742721532125 -70,16.0,16.0,5.275106062069114,-15.158221991997266 -70,17.0,14.0,-1.8108011504072024,3.687418931630696 -70,17.0,17.0,4.886487584415919,-9.906177730909668 -70,17.0,18.0,-3.0756864340087167,6.218758799278971 -70,18.0,17.0,-3.0756864340087167,6.218758799278971 -70,18.0,18.0,8.958039375185187,-17.98346468163191 -70,18.0,19.0,-5.88235294117647,11.76470588235294 -70,19.0,9.0,-1.7848303152666305,3.98535828943083 -70,19.0,18.0,-5.88235294117647,11.76470588235294 -70,19.0,19.0,7.6671832564431,-15.75006417178377 -70,20.0,9.0,-5.101853820159654,10.98071411292983 -70,20.0,20.0,21.876495189895888,-45.10843276170355 -70,20.0,21.0,-16.774641369736234,34.127718648773715 -70,21.0,9.0,-2.619319553382597,5.400770303329455 -70,21.0,20.0,-16.774641369736234,34.127718648773715 -70,21.0,21.0,21.93449907537439,-43.48289181517921 -70,21.0,23.0,-2.5405381522555563,3.95440286307604 -70,22.0,14.0,-1.9683489489016612,3.976064876781356 -70,22.0,22.0,3.429754555384988,-6.965303617315433 -70,22.0,23.0,-1.4614056064833263,2.989238740534077 -70,23.0,21.0,-2.5405381522555563,3.95440286307604 -70,23.0,22.0,-1.4614056064833263,2.989238740534077 -70,23.0,23.0,5.311836702613133,-9.188263657315172 -70,23.0,24.0,-1.3098929438742493,2.287622053705056 -70,24.0,23.0,-1.3098929438742493,2.287622053705056 -70,24.0,24.0,4.495715080321987,-7.864978761969621 -70,24.0,25.0,-1.2165301194494855,1.8171440463475024 -70,24.0,26.0,-1.9692920169982515,3.760212661917064 -70,25.0,24.0,-1.2165301194494855,1.8171440463475024 -70,25.0,25.0,1.2165301194494855,-1.8171440463475024 -70,26.0,24.0,-1.9692920169982515,3.760212661917064 -70,26.0,26.0,3.652281470778589,-9.46044252232512 -70,26.0,27.0,0.0,2.608731947574922 -70,26.0,28.0,-0.99553355095268,1.881005840357816 -70,26.0,29.0,-0.6874559028276572,1.293971494797717 -70,27.0,5.0,-4.362844058012917,15.463571542897856 -70,27.0,7.0,-1.4439790613954469,4.540814658476248 -70,27.0,26.0,0.0,2.608731947574922 -70,27.0,27.0,5.806823119408364,-22.67145722159613 -70,28.0,26.0,-0.99553355095268,1.881005840357816 -70,28.0,28.0,1.9075867579849564,-3.604364401207048 -70,28.0,29.0,-0.9120532070322764,1.7233585608492326 -70,29.0,26.0,-0.6874559028276572,1.293971494797717 -70,29.0,28.0,-0.9120532070322764,1.7233585608492326 -70,29.0,29.0,1.5995091098599337,-3.0173300556469496 -71,0.0,0.0,6.765516048652632,-21.23160167089863 -71,0.0,1.0,-5.224646179885656,15.646726840803398 -71,0.0,2.0,-1.5408698687669766,5.631674830095234 -71,1.0,0.0,-5.224646179885656,15.646726840803398 -71,1.0,1.0,9.75228216552403,-30.648662892676068 -71,1.0,3.0,-1.7055303166990268,5.1973792282565086 -71,1.0,4.0,-1.1359607881738778,4.772479328281356 -71,1.0,5.0,-1.6861448807654689,5.116477495334806 -71,2.0,0.0,-1.5408698687669766,5.631674830095234 -71,2.0,2.0,9.736318911079088,-29.13794745915803 -71,2.0,3.0,-8.19544904231211,23.5308726290628 -71,3.0,1.0,-1.7055303166990268,5.1973792282565086 -71,3.0,2.0,-8.19544904231211,23.5308726290628 -71,3.0,3.0,16.314103089185693,-55.509410535254254 -71,3.0,5.0,-6.413123730174556,22.31120356548123 -71,3.0,11.0,0.0,4.191255364806866 -71,4.0,1.0,-1.1359607881738778,4.772479328281356 -71,4.0,4.0,4.089980824135861,-12.190647245055052 -71,4.0,6.0,-2.954020035961983,7.449267916773697 -71,5.0,1.0,-1.6861448807654689,5.116477495334806 -71,5.0,3.0,-6.413123730174556,22.31120356548123 -71,5.0,5.0,22.341631269034565,-82.8291478657789 -71,5.0,6.0,-3.590210423980992,11.02611441072814 -71,5.0,7.0,-6.289308176100628,22.0125786163522 -71,5.0,8.0,0.0,4.915840805411357 -71,5.0,9.0,0.0,1.8561002591115965 -71,5.0,27.0,-4.362844058012917,15.463571542897856 -71,6.0,4.0,-2.954020035961983,7.449267916773697 -71,6.0,5.0,-3.590210423980992,11.02611441072814 -71,6.0,6.0,6.544230459942975,-18.45668232750184 -71,7.0,5.0,-6.289308176100628,22.0125786163522 -71,7.0,7.0,7.733287237496075,-26.527493274828448 -71,7.0,27.0,-1.4439790613954469,4.540814658476248 -71,8.0,5.0,0.0,4.915840805411357 -71,8.0,8.0,0.0,-18.706293706293707 -71,8.0,9.0,0.0,9.090909090909092 -71,8.0,10.0,0.0,4.807692307692308 -71,9.0,5.0,0.0,1.8561002591115965 -71,9.0,8.0,0.0,9.090909090909092 -71,9.0,9.0,13.462042814524237,-41.3837606675224 -71,9.0,16.0,-3.956039125715353,10.317447719844054 -71,9.0,19.0,-1.7848303152666305,3.98535828943083 -71,9.0,20.0,-5.101853820159654,10.98071411292983 -71,9.0,21.0,-2.619319553382597,5.400770303329455 -71,10.0,8.0,0.0,4.807692307692308 -71,10.0,10.0,0.0,-4.807692307692308 -71,11.0,3.0,0.0,4.191255364806866 -71,11.0,11.0,6.573961583776156,-24.424167659260668 -71,11.0,12.0,0.0,7.142857142857143 -71,11.0,13.0,-1.5265676088395577,3.1734252729654173 -71,11.0,14.0,-3.0953961826564296,6.097275864326261 -71,11.0,15.0,-1.9519977922801688,4.104359379111847 -71,12.0,11.0,0.0,7.142857142857143 -71,12.0,12.0,0.0,-7.142857142857143 -71,13.0,11.0,-1.5265676088395577,3.1734252729654173 -71,13.0,13.0,4.01751987283902,-5.424299332335067 -71,13.0,14.0,-2.4909522639994623,2.250874059369649 -71,14.0,11.0,-3.0953961826564296,6.097275864326261 -71,14.0,13.0,-2.4909522639994623,2.250874059369649 -71,14.0,14.0,9.365498545964757,-16.01163373210796 -71,14.0,17.0,-1.8108011504072024,3.687418931630696 -71,14.0,22.0,-1.9683489489016612,3.976064876781356 -71,15.0,11.0,-1.9519977922801688,4.104359379111847 -71,15.0,15.0,3.271064728633931,-8.94513365126506 -71,15.0,16.0,-1.3190669363537617,4.8407742721532125 -71,16.0,9.0,-3.956039125715353,10.317447719844054 -71,16.0,15.0,-1.3190669363537617,4.8407742721532125 -71,16.0,16.0,5.275106062069114,-15.158221991997266 -71,17.0,14.0,-1.8108011504072024,3.687418931630696 -71,17.0,17.0,4.886487584415919,-9.906177730909668 -71,17.0,18.0,-3.0756864340087167,6.218758799278971 -71,18.0,17.0,-3.0756864340087167,6.218758799278971 -71,18.0,18.0,8.958039375185187,-17.98346468163191 -71,18.0,19.0,-5.88235294117647,11.76470588235294 -71,19.0,9.0,-1.7848303152666305,3.98535828943083 -71,19.0,18.0,-5.88235294117647,11.76470588235294 -71,19.0,19.0,7.6671832564431,-15.75006417178377 -71,20.0,9.0,-5.101853820159654,10.98071411292983 -71,20.0,20.0,21.876495189895888,-45.10843276170355 -71,20.0,21.0,-16.774641369736234,34.127718648773715 -71,21.0,9.0,-2.619319553382597,5.400770303329455 -71,21.0,20.0,-16.774641369736234,34.127718648773715 -71,21.0,21.0,21.93449907537439,-43.48289181517921 -71,21.0,23.0,-2.5405381522555563,3.95440286307604 -71,22.0,14.0,-1.9683489489016612,3.976064876781356 -71,22.0,22.0,3.429754555384988,-6.965303617315433 -71,22.0,23.0,-1.4614056064833263,2.989238740534077 -71,23.0,21.0,-2.5405381522555563,3.95440286307604 -71,23.0,22.0,-1.4614056064833263,2.989238740534077 -71,23.0,23.0,5.311836702613133,-9.188263657315172 -71,23.0,24.0,-1.3098929438742493,2.287622053705056 -71,24.0,23.0,-1.3098929438742493,2.287622053705056 -71,24.0,24.0,4.495715080321987,-7.864978761969621 -71,24.0,25.0,-1.2165301194494855,1.8171440463475024 -71,24.0,26.0,-1.9692920169982515,3.760212661917064 -71,25.0,24.0,-1.2165301194494855,1.8171440463475024 -71,25.0,25.0,1.2165301194494855,-1.8171440463475024 -71,26.0,24.0,-1.9692920169982515,3.760212661917064 -71,26.0,26.0,3.652281470778589,-9.46044252232512 -71,26.0,27.0,0.0,2.608731947574922 -71,26.0,28.0,-0.99553355095268,1.881005840357816 -71,26.0,29.0,-0.6874559028276572,1.293971494797717 -71,27.0,5.0,-4.362844058012917,15.463571542897856 -71,27.0,7.0,-1.4439790613954469,4.540814658476248 -71,27.0,26.0,0.0,2.608731947574922 -71,27.0,27.0,5.806823119408364,-22.67145722159613 -71,28.0,26.0,-0.99553355095268,1.881005840357816 -71,28.0,28.0,1.9075867579849564,-3.604364401207048 -71,28.0,29.0,-0.9120532070322764,1.7233585608492326 -71,29.0,26.0,-0.6874559028276572,1.293971494797717 -71,29.0,28.0,-0.9120532070322764,1.7233585608492326 -71,29.0,29.0,1.5995091098599337,-3.0173300556469496 -72,0.0,0.0,1.5408698687669766,-5.611274830095233 -72,0.0,2.0,-1.5408698687669766,5.631674830095234 -72,1.0,1.0,2.841491104872905,-9.930558556537864 -72,1.0,3.0,-1.7055303166990268,5.1973792282565086 -72,1.0,4.0,-1.1359607881738778,4.772479328281356 -72,2.0,0.0,-1.5408698687669766,5.631674830095234 -72,2.0,2.0,9.736318911079088,-29.13794745915803 -72,2.0,3.0,-8.19544904231211,23.5308726290628 -72,3.0,1.0,-1.7055303166990268,5.1973792282565086 -72,3.0,2.0,-8.19544904231211,23.5308726290628 -72,3.0,3.0,16.314103089185693,-55.509410535254254 -72,3.0,5.0,-6.413123730174556,22.31120356548123 -72,3.0,11.0,0.0,4.191255364806866 -72,4.0,1.0,-1.1359607881738778,4.772479328281356 -72,4.0,4.0,4.089980824135861,-12.190647245055052 -72,4.0,6.0,-2.954020035961983,7.449267916773697 -72,5.0,3.0,-6.413123730174556,22.31120356548123 -72,5.0,5.0,17.0652759642881,-64.79827581615395 -72,5.0,7.0,-6.289308176100628,22.0125786163522 -72,5.0,8.0,0.0,4.915840805411357 -72,5.0,27.0,-4.362844058012917,15.463571542897856 -72,6.0,4.0,-2.954020035961983,7.449267916773697 -72,6.0,6.0,2.954020035961983,-7.439067916773697 -72,7.0,5.0,-6.289308176100628,22.0125786163522 -72,7.0,7.0,6.289308176100628,-22.0080786163522 -72,8.0,5.0,0.0,4.915840805411357 -72,8.0,8.0,0.0,-18.706293706293707 -72,8.0,9.0,0.0,9.090909090909092 -72,8.0,10.0,0.0,4.807692307692308 -72,9.0,8.0,0.0,9.090909090909092 -72,9.0,9.0,10.842723261141638,-34.18442921311381 -72,9.0,16.0,-3.956039125715353,10.317447719844054 -72,9.0,19.0,-1.7848303152666305,3.98535828943083 -72,9.0,20.0,-5.101853820159654,10.98071411292983 -72,10.0,8.0,0.0,4.807692307692308 -72,10.0,10.0,0.0,-4.807692307692308 -72,11.0,3.0,0.0,4.191255364806866 -72,11.0,11.0,6.573961583776156,-24.424167659260668 -72,11.0,12.0,0.0,7.142857142857143 -72,11.0,13.0,-1.5265676088395577,3.1734252729654173 -72,11.0,14.0,-3.0953961826564296,6.097275864326261 -72,11.0,15.0,-1.9519977922801688,4.104359379111847 -72,12.0,11.0,0.0,7.142857142857143 -72,12.0,12.0,0.0,-7.142857142857143 -72,13.0,11.0,-1.5265676088395577,3.1734252729654173 -72,13.0,13.0,4.01751987283902,-5.424299332335067 -72,13.0,14.0,-2.4909522639994623,2.250874059369649 -72,14.0,11.0,-3.0953961826564296,6.097275864326261 -72,14.0,13.0,-2.4909522639994623,2.250874059369649 -72,14.0,14.0,9.365498545964757,-16.01163373210796 -72,14.0,17.0,-1.8108011504072024,3.687418931630696 -72,14.0,22.0,-1.9683489489016612,3.976064876781356 -72,15.0,11.0,-1.9519977922801688,4.104359379111847 -72,15.0,15.0,3.271064728633931,-8.94513365126506 -72,15.0,16.0,-1.3190669363537617,4.8407742721532125 -72,16.0,9.0,-3.956039125715353,10.317447719844054 -72,16.0,15.0,-1.3190669363537617,4.8407742721532125 -72,16.0,16.0,5.275106062069114,-15.158221991997266 -72,17.0,14.0,-1.8108011504072024,3.687418931630696 -72,17.0,17.0,4.886487584415919,-9.906177730909668 -72,17.0,18.0,-3.0756864340087167,6.218758799278971 -72,18.0,17.0,-3.0756864340087167,6.218758799278971 -72,18.0,18.0,8.958039375185187,-17.98346468163191 -72,18.0,19.0,-5.88235294117647,11.76470588235294 -72,19.0,9.0,-1.7848303152666305,3.98535828943083 -72,19.0,18.0,-5.88235294117647,11.76470588235294 -72,19.0,19.0,7.6671832564431,-15.75006417178377 -72,20.0,9.0,-5.101853820159654,10.98071411292983 -72,20.0,20.0,21.876495189895888,-45.10843276170355 -72,20.0,21.0,-16.774641369736234,34.127718648773715 -72,21.0,20.0,-16.774641369736234,34.127718648773715 -72,21.0,21.0,19.31517952199179,-38.08212151184976 -72,21.0,23.0,-2.5405381522555563,3.95440286307604 -72,22.0,14.0,-1.9683489489016612,3.976064876781356 -72,22.0,22.0,3.429754555384988,-6.965303617315433 -72,22.0,23.0,-1.4614056064833263,2.989238740534077 -72,23.0,21.0,-2.5405381522555563,3.95440286307604 -72,23.0,22.0,-1.4614056064833263,2.989238740534077 -72,23.0,23.0,5.311836702613133,-9.188263657315172 -72,23.0,24.0,-1.3098929438742493,2.287622053705056 -72,24.0,23.0,-1.3098929438742493,2.287622053705056 -72,24.0,24.0,2.526423063323735,-4.104766100052558 -72,24.0,25.0,-1.2165301194494855,1.8171440463475024 -72,25.0,24.0,-1.2165301194494855,1.8171440463475024 -72,25.0,25.0,1.2165301194494855,-1.8171440463475024 -72,26.0,26.0,1.6829894537803372,-5.700229860408058 -72,26.0,27.0,0.0,2.608731947574922 -72,26.0,28.0,-0.99553355095268,1.881005840357816 -72,26.0,29.0,-0.6874559028276572,1.293971494797717 -72,27.0,5.0,-4.362844058012917,15.463571542897856 -72,27.0,26.0,0.0,2.608731947574922 -72,27.0,27.0,4.362844058012917,-18.15204256311988 -72,28.0,26.0,-0.99553355095268,1.881005840357816 -72,28.0,28.0,1.9075867579849564,-3.604364401207048 -72,28.0,29.0,-0.9120532070322764,1.7233585608492326 -72,29.0,26.0,-0.6874559028276572,1.293971494797717 -72,29.0,28.0,-0.9120532070322764,1.7233585608492326 -72,29.0,29.0,1.5995091098599337,-3.0173300556469496 -73,0.0,0.0,6.765516048652632,-21.23160167089863 -73,0.0,1.0,-5.224646179885656,15.646726840803398 -73,0.0,2.0,-1.5408698687669766,5.631674830095234 -73,1.0,0.0,-5.224646179885656,15.646726840803398 -73,1.0,1.0,9.75228216552403,-30.648662892676068 -73,1.0,3.0,-1.7055303166990268,5.1973792282565086 -73,1.0,4.0,-1.1359607881738778,4.772479328281356 -73,1.0,5.0,-1.6861448807654689,5.116477495334806 -73,2.0,0.0,-1.5408698687669766,5.631674830095234 -73,2.0,2.0,9.736318911079088,-29.13794745915803 -73,2.0,3.0,-8.19544904231211,23.5308726290628 -73,3.0,1.0,-1.7055303166990268,5.1973792282565086 -73,3.0,2.0,-8.19544904231211,23.5308726290628 -73,3.0,3.0,16.314103089185693,-55.509410535254254 -73,3.0,5.0,-6.413123730174556,22.31120356548123 -73,3.0,11.0,0.0,4.191255364806866 -73,4.0,1.0,-1.1359607881738778,4.772479328281356 -73,4.0,4.0,4.089980824135861,-12.190647245055052 -73,4.0,6.0,-2.954020035961983,7.449267916773697 -73,5.0,1.0,-1.6861448807654689,5.116477495334806 -73,5.0,3.0,-6.413123730174556,22.31120356548123 -73,5.0,5.0,22.341631269034565,-82.8291478657789 -73,5.0,6.0,-3.590210423980992,11.02611441072814 -73,5.0,7.0,-6.289308176100628,22.0125786163522 -73,5.0,8.0,0.0,4.915840805411357 -73,5.0,9.0,0.0,1.8561002591115965 -73,5.0,27.0,-4.362844058012917,15.463571542897856 -73,6.0,4.0,-2.954020035961983,7.449267916773697 -73,6.0,5.0,-3.590210423980992,11.02611441072814 -73,6.0,6.0,6.544230459942975,-18.45668232750184 -73,7.0,5.0,-6.289308176100628,22.0125786163522 -73,7.0,7.0,7.733287237496075,-26.527493274828448 -73,7.0,27.0,-1.4439790613954469,4.540814658476248 -73,8.0,5.0,0.0,4.915840805411357 -73,8.0,8.0,0.0,-18.706293706293707 -73,8.0,9.0,0.0,9.090909090909092 -73,8.0,10.0,0.0,4.807692307692308 -73,9.0,5.0,0.0,1.8561002591115965 -73,9.0,8.0,0.0,9.090909090909092 -73,9.0,9.0,13.462042814524237,-41.3837606675224 -73,9.0,16.0,-3.956039125715353,10.317447719844054 -73,9.0,19.0,-1.7848303152666305,3.98535828943083 -73,9.0,20.0,-5.101853820159654,10.98071411292983 -73,9.0,21.0,-2.619319553382597,5.400770303329455 -73,10.0,8.0,0.0,4.807692307692308 -73,10.0,10.0,0.0,-4.807692307692308 -73,11.0,3.0,0.0,4.191255364806866 -73,11.0,11.0,6.573961583776156,-24.424167659260668 -73,11.0,12.0,0.0,7.142857142857143 -73,11.0,13.0,-1.5265676088395577,3.1734252729654173 -73,11.0,14.0,-3.0953961826564296,6.097275864326261 -73,11.0,15.0,-1.9519977922801688,4.104359379111847 -73,12.0,11.0,0.0,7.142857142857143 -73,12.0,12.0,0.0,-7.142857142857143 -73,13.0,11.0,-1.5265676088395577,3.1734252729654173 -73,13.0,13.0,4.01751987283902,-5.424299332335067 -73,13.0,14.0,-2.4909522639994623,2.250874059369649 -73,14.0,11.0,-3.0953961826564296,6.097275864326261 -73,14.0,13.0,-2.4909522639994623,2.250874059369649 -73,14.0,14.0,9.365498545964757,-16.01163373210796 -73,14.0,17.0,-1.8108011504072024,3.687418931630696 -73,14.0,22.0,-1.9683489489016612,3.976064876781356 -73,15.0,11.0,-1.9519977922801688,4.104359379111847 -73,15.0,15.0,3.271064728633931,-8.94513365126506 -73,15.0,16.0,-1.3190669363537617,4.8407742721532125 -73,16.0,9.0,-3.956039125715353,10.317447719844054 -73,16.0,15.0,-1.3190669363537617,4.8407742721532125 -73,16.0,16.0,5.275106062069114,-15.158221991997266 -73,17.0,14.0,-1.8108011504072024,3.687418931630696 -73,17.0,17.0,4.886487584415919,-9.906177730909668 -73,17.0,18.0,-3.0756864340087167,6.218758799278971 -73,18.0,17.0,-3.0756864340087167,6.218758799278971 -73,18.0,18.0,8.958039375185187,-17.98346468163191 -73,18.0,19.0,-5.88235294117647,11.76470588235294 -73,19.0,9.0,-1.7848303152666305,3.98535828943083 -73,19.0,18.0,-5.88235294117647,11.76470588235294 -73,19.0,19.0,7.6671832564431,-15.75006417178377 -73,20.0,9.0,-5.101853820159654,10.98071411292983 -73,20.0,20.0,21.876495189895888,-45.10843276170355 -73,20.0,21.0,-16.774641369736234,34.127718648773715 -73,21.0,9.0,-2.619319553382597,5.400770303329455 -73,21.0,20.0,-16.774641369736234,34.127718648773715 -73,21.0,21.0,21.93449907537439,-43.48289181517921 -73,21.0,23.0,-2.5405381522555563,3.95440286307604 -73,22.0,14.0,-1.9683489489016612,3.976064876781356 -73,22.0,22.0,3.429754555384988,-6.965303617315433 -73,22.0,23.0,-1.4614056064833263,2.989238740534077 -73,23.0,21.0,-2.5405381522555563,3.95440286307604 -73,23.0,22.0,-1.4614056064833263,2.989238740534077 -73,23.0,23.0,5.311836702613133,-9.188263657315172 -73,23.0,24.0,-1.3098929438742493,2.287622053705056 -73,24.0,23.0,-1.3098929438742493,2.287622053705056 -73,24.0,24.0,4.495715080321987,-7.864978761969621 -73,24.0,25.0,-1.2165301194494855,1.8171440463475024 -73,24.0,26.0,-1.9692920169982515,3.760212661917064 -73,25.0,24.0,-1.2165301194494855,1.8171440463475024 -73,25.0,25.0,1.2165301194494855,-1.8171440463475024 -73,26.0,24.0,-1.9692920169982515,3.760212661917064 -73,26.0,26.0,3.652281470778589,-9.46044252232512 -73,26.0,27.0,0.0,2.608731947574922 -73,26.0,28.0,-0.99553355095268,1.881005840357816 -73,26.0,29.0,-0.6874559028276572,1.293971494797717 -73,27.0,5.0,-4.362844058012917,15.463571542897856 -73,27.0,7.0,-1.4439790613954469,4.540814658476248 -73,27.0,26.0,0.0,2.608731947574922 -73,27.0,27.0,5.806823119408364,-22.67145722159613 -73,28.0,26.0,-0.99553355095268,1.881005840357816 -73,28.0,28.0,1.9075867579849564,-3.604364401207048 -73,28.0,29.0,-0.9120532070322764,1.7233585608492326 -73,29.0,26.0,-0.6874559028276572,1.293971494797717 -73,29.0,28.0,-0.9120532070322764,1.7233585608492326 -73,29.0,29.0,1.5995091098599337,-3.0173300556469496 -74,0.0,0.0,6.765516048652632,-21.23160167089863 -74,0.0,1.0,-5.224646179885656,15.646726840803398 -74,0.0,2.0,-1.5408698687669766,5.631674830095234 -74,1.0,0.0,-5.224646179885656,15.646726840803398 -74,1.0,1.0,9.75228216552403,-30.648662892676068 -74,1.0,3.0,-1.7055303166990268,5.1973792282565086 -74,1.0,4.0,-1.1359607881738778,4.772479328281356 -74,1.0,5.0,-1.6861448807654689,5.116477495334806 -74,2.0,0.0,-1.5408698687669766,5.631674830095234 -74,2.0,2.0,9.736318911079088,-29.13794745915803 -74,2.0,3.0,-8.19544904231211,23.5308726290628 -74,3.0,1.0,-1.7055303166990268,5.1973792282565086 -74,3.0,2.0,-8.19544904231211,23.5308726290628 -74,3.0,3.0,16.314103089185693,-55.509410535254254 -74,3.0,5.0,-6.413123730174556,22.31120356548123 -74,3.0,11.0,0.0,4.191255364806866 -74,4.0,1.0,-1.1359607881738778,4.772479328281356 -74,4.0,4.0,4.089980824135861,-12.190647245055052 -74,4.0,6.0,-2.954020035961983,7.449267916773697 -74,5.0,1.0,-1.6861448807654689,5.116477495334806 -74,5.0,3.0,-6.413123730174556,22.31120356548123 -74,5.0,5.0,22.341631269034565,-82.8291478657789 -74,5.0,6.0,-3.590210423980992,11.02611441072814 -74,5.0,7.0,-6.289308176100628,22.0125786163522 -74,5.0,8.0,0.0,4.915840805411357 -74,5.0,9.0,0.0,1.8561002591115965 -74,5.0,27.0,-4.362844058012917,15.463571542897856 -74,6.0,4.0,-2.954020035961983,7.449267916773697 -74,6.0,5.0,-3.590210423980992,11.02611441072814 -74,6.0,6.0,6.544230459942975,-18.45668232750184 -74,7.0,5.0,-6.289308176100628,22.0125786163522 -74,7.0,7.0,7.733287237496075,-26.527493274828448 -74,7.0,27.0,-1.4439790613954469,4.540814658476248 -74,8.0,5.0,0.0,4.915840805411357 -74,8.0,8.0,0.0,-18.706293706293707 -74,8.0,9.0,0.0,9.090909090909092 -74,8.0,10.0,0.0,4.807692307692308 -74,9.0,5.0,0.0,1.8561002591115965 -74,9.0,8.0,0.0,9.090909090909092 -74,9.0,9.0,13.462042814524237,-41.3837606675224 -74,9.0,16.0,-3.956039125715353,10.317447719844054 -74,9.0,19.0,-1.7848303152666305,3.98535828943083 -74,9.0,20.0,-5.101853820159654,10.98071411292983 -74,9.0,21.0,-2.619319553382597,5.400770303329455 -74,10.0,8.0,0.0,4.807692307692308 -74,10.0,10.0,0.0,-4.807692307692308 -74,11.0,3.0,0.0,4.191255364806866 -74,11.0,11.0,6.573961583776156,-24.424167659260668 -74,11.0,12.0,0.0,7.142857142857143 -74,11.0,13.0,-1.5265676088395577,3.1734252729654173 -74,11.0,14.0,-3.0953961826564296,6.097275864326261 -74,11.0,15.0,-1.9519977922801688,4.104359379111847 -74,12.0,11.0,0.0,7.142857142857143 -74,12.0,12.0,0.0,-7.142857142857143 -74,13.0,11.0,-1.5265676088395577,3.1734252729654173 -74,13.0,13.0,4.01751987283902,-5.424299332335067 -74,13.0,14.0,-2.4909522639994623,2.250874059369649 -74,14.0,11.0,-3.0953961826564296,6.097275864326261 -74,14.0,13.0,-2.4909522639994623,2.250874059369649 -74,14.0,14.0,9.365498545964757,-16.01163373210796 -74,14.0,17.0,-1.8108011504072024,3.687418931630696 -74,14.0,22.0,-1.9683489489016612,3.976064876781356 -74,15.0,11.0,-1.9519977922801688,4.104359379111847 -74,15.0,15.0,3.271064728633931,-8.94513365126506 -74,15.0,16.0,-1.3190669363537617,4.8407742721532125 -74,16.0,9.0,-3.956039125715353,10.317447719844054 -74,16.0,15.0,-1.3190669363537617,4.8407742721532125 -74,16.0,16.0,5.275106062069114,-15.158221991997266 -74,17.0,14.0,-1.8108011504072024,3.687418931630696 -74,17.0,17.0,4.886487584415919,-9.906177730909668 -74,17.0,18.0,-3.0756864340087167,6.218758799278971 -74,18.0,17.0,-3.0756864340087167,6.218758799278971 -74,18.0,18.0,8.958039375185187,-17.98346468163191 -74,18.0,19.0,-5.88235294117647,11.76470588235294 -74,19.0,9.0,-1.7848303152666305,3.98535828943083 -74,19.0,18.0,-5.88235294117647,11.76470588235294 -74,19.0,19.0,7.6671832564431,-15.75006417178377 -74,20.0,9.0,-5.101853820159654,10.98071411292983 -74,20.0,20.0,21.876495189895888,-45.10843276170355 -74,20.0,21.0,-16.774641369736234,34.127718648773715 -74,21.0,9.0,-2.619319553382597,5.400770303329455 -74,21.0,20.0,-16.774641369736234,34.127718648773715 -74,21.0,21.0,21.93449907537439,-43.48289181517921 -74,21.0,23.0,-2.5405381522555563,3.95440286307604 -74,22.0,14.0,-1.9683489489016612,3.976064876781356 -74,22.0,22.0,3.429754555384988,-6.965303617315433 -74,22.0,23.0,-1.4614056064833263,2.989238740534077 -74,23.0,21.0,-2.5405381522555563,3.95440286307604 -74,23.0,22.0,-1.4614056064833263,2.989238740534077 -74,23.0,23.0,5.311836702613133,-9.188263657315172 -74,23.0,24.0,-1.3098929438742493,2.287622053705056 -74,24.0,23.0,-1.3098929438742493,2.287622053705056 -74,24.0,24.0,4.495715080321987,-7.864978761969621 -74,24.0,25.0,-1.2165301194494855,1.8171440463475024 -74,24.0,26.0,-1.9692920169982515,3.760212661917064 -74,25.0,24.0,-1.2165301194494855,1.8171440463475024 -74,25.0,25.0,1.2165301194494855,-1.8171440463475024 -74,26.0,24.0,-1.9692920169982515,3.760212661917064 -74,26.0,26.0,2.656747919825909,-7.579436681967305 -74,26.0,27.0,0.0,2.608731947574922 -74,26.0,29.0,-0.6874559028276572,1.293971494797717 -74,27.0,5.0,-4.362844058012917,15.463571542897856 -74,27.0,7.0,-1.4439790613954469,4.540814658476248 -74,27.0,26.0,0.0,2.608731947574922 -74,27.0,27.0,5.806823119408364,-22.67145722159613 -74,28.0,28.0,0.9120532070322764,-1.7233585608492326 -74,28.0,29.0,-0.9120532070322764,1.7233585608492326 -74,29.0,26.0,-0.6874559028276572,1.293971494797717 -74,29.0,28.0,-0.9120532070322764,1.7233585608492326 -74,29.0,29.0,1.5995091098599337,-3.0173300556469496 -75,0.0,0.0,6.765516048652632,-21.23160167089863 -75,0.0,1.0,-5.224646179885656,15.646726840803398 -75,0.0,2.0,-1.5408698687669766,5.631674830095234 -75,1.0,0.0,-5.224646179885656,15.646726840803398 -75,1.0,1.0,9.75228216552403,-30.648662892676068 -75,1.0,3.0,-1.7055303166990268,5.1973792282565086 -75,1.0,4.0,-1.1359607881738778,4.772479328281356 -75,1.0,5.0,-1.6861448807654689,5.116477495334806 -75,2.0,0.0,-1.5408698687669766,5.631674830095234 -75,2.0,2.0,9.736318911079088,-29.13794745915803 -75,2.0,3.0,-8.19544904231211,23.5308726290628 -75,3.0,1.0,-1.7055303166990268,5.1973792282565086 -75,3.0,2.0,-8.19544904231211,23.5308726290628 -75,3.0,3.0,16.314103089185693,-55.509410535254254 -75,3.0,5.0,-6.413123730174556,22.31120356548123 -75,3.0,11.0,0.0,4.191255364806866 -75,4.0,1.0,-1.1359607881738778,4.772479328281356 -75,4.0,4.0,4.089980824135861,-12.190647245055052 -75,4.0,6.0,-2.954020035961983,7.449267916773697 -75,5.0,1.0,-1.6861448807654689,5.116477495334806 -75,5.0,3.0,-6.413123730174556,22.31120356548123 -75,5.0,5.0,22.341631269034565,-82.8291478657789 -75,5.0,6.0,-3.590210423980992,11.02611441072814 -75,5.0,7.0,-6.289308176100628,22.0125786163522 -75,5.0,8.0,0.0,4.915840805411357 -75,5.0,9.0,0.0,1.8561002591115965 -75,5.0,27.0,-4.362844058012917,15.463571542897856 -75,6.0,4.0,-2.954020035961983,7.449267916773697 -75,6.0,5.0,-3.590210423980992,11.02611441072814 -75,6.0,6.0,6.544230459942975,-18.45668232750184 -75,7.0,5.0,-6.289308176100628,22.0125786163522 -75,7.0,7.0,7.733287237496075,-26.527493274828448 -75,7.0,27.0,-1.4439790613954469,4.540814658476248 -75,8.0,5.0,0.0,4.915840805411357 -75,8.0,8.0,0.0,-18.706293706293707 -75,8.0,9.0,0.0,9.090909090909092 -75,8.0,10.0,0.0,4.807692307692308 -75,9.0,5.0,0.0,1.8561002591115965 -75,9.0,8.0,0.0,9.090909090909092 -75,9.0,9.0,13.462042814524237,-41.3837606675224 -75,9.0,16.0,-3.956039125715353,10.317447719844054 -75,9.0,19.0,-1.7848303152666305,3.98535828943083 -75,9.0,20.0,-5.101853820159654,10.98071411292983 -75,9.0,21.0,-2.619319553382597,5.400770303329455 -75,10.0,8.0,0.0,4.807692307692308 -75,10.0,10.0,0.0,-4.807692307692308 -75,11.0,3.0,0.0,4.191255364806866 -75,11.0,11.0,6.573961583776156,-24.424167659260668 -75,11.0,12.0,0.0,7.142857142857143 -75,11.0,13.0,-1.5265676088395577,3.1734252729654173 -75,11.0,14.0,-3.0953961826564296,6.097275864326261 -75,11.0,15.0,-1.9519977922801688,4.104359379111847 -75,12.0,11.0,0.0,7.142857142857143 -75,12.0,12.0,0.0,-7.142857142857143 -75,13.0,11.0,-1.5265676088395577,3.1734252729654173 -75,13.0,13.0,4.01751987283902,-5.424299332335067 -75,13.0,14.0,-2.4909522639994623,2.250874059369649 -75,14.0,11.0,-3.0953961826564296,6.097275864326261 -75,14.0,13.0,-2.4909522639994623,2.250874059369649 -75,14.0,14.0,9.365498545964757,-16.01163373210796 -75,14.0,17.0,-1.8108011504072024,3.687418931630696 -75,14.0,22.0,-1.9683489489016612,3.976064876781356 -75,15.0,11.0,-1.9519977922801688,4.104359379111847 -75,15.0,15.0,3.271064728633931,-8.94513365126506 -75,15.0,16.0,-1.3190669363537617,4.8407742721532125 -75,16.0,9.0,-3.956039125715353,10.317447719844054 -75,16.0,15.0,-1.3190669363537617,4.8407742721532125 -75,16.0,16.0,5.275106062069114,-15.158221991997266 -75,17.0,14.0,-1.8108011504072024,3.687418931630696 -75,17.0,17.0,4.886487584415919,-9.906177730909668 -75,17.0,18.0,-3.0756864340087167,6.218758799278971 -75,18.0,17.0,-3.0756864340087167,6.218758799278971 -75,18.0,18.0,8.958039375185187,-17.98346468163191 -75,18.0,19.0,-5.88235294117647,11.76470588235294 -75,19.0,9.0,-1.7848303152666305,3.98535828943083 -75,19.0,18.0,-5.88235294117647,11.76470588235294 -75,19.0,19.0,7.6671832564431,-15.75006417178377 -75,20.0,9.0,-5.101853820159654,10.98071411292983 -75,20.0,20.0,21.876495189895888,-45.10843276170355 -75,20.0,21.0,-16.774641369736234,34.127718648773715 -75,21.0,9.0,-2.619319553382597,5.400770303329455 -75,21.0,20.0,-16.774641369736234,34.127718648773715 -75,21.0,21.0,21.93449907537439,-43.48289181517921 -75,21.0,23.0,-2.5405381522555563,3.95440286307604 -75,22.0,14.0,-1.9683489489016612,3.976064876781356 -75,22.0,22.0,3.429754555384988,-6.965303617315433 -75,22.0,23.0,-1.4614056064833263,2.989238740534077 -75,23.0,21.0,-2.5405381522555563,3.95440286307604 -75,23.0,22.0,-1.4614056064833263,2.989238740534077 -75,23.0,23.0,5.311836702613133,-9.188263657315172 -75,23.0,24.0,-1.3098929438742493,2.287622053705056 -75,24.0,23.0,-1.3098929438742493,2.287622053705056 -75,24.0,24.0,4.495715080321987,-7.864978761969621 -75,24.0,25.0,-1.2165301194494855,1.8171440463475024 -75,24.0,26.0,-1.9692920169982515,3.760212661917064 -75,25.0,24.0,-1.2165301194494855,1.8171440463475024 -75,25.0,25.0,1.2165301194494855,-1.8171440463475024 -75,26.0,24.0,-1.9692920169982515,3.760212661917064 -75,26.0,26.0,3.652281470778589,-9.46044252232512 -75,26.0,27.0,0.0,2.608731947574922 -75,26.0,28.0,-0.99553355095268,1.881005840357816 -75,26.0,29.0,-0.6874559028276572,1.293971494797717 -75,27.0,5.0,-4.362844058012917,15.463571542897856 -75,27.0,7.0,-1.4439790613954469,4.540814658476248 -75,27.0,26.0,0.0,2.608731947574922 -75,27.0,27.0,5.806823119408364,-22.67145722159613 -75,28.0,26.0,-0.99553355095268,1.881005840357816 -75,28.0,28.0,1.9075867579849564,-3.604364401207048 -75,28.0,29.0,-0.9120532070322764,1.7233585608492326 -75,29.0,26.0,-0.6874559028276572,1.293971494797717 -75,29.0,28.0,-0.9120532070322764,1.7233585608492326 -75,29.0,29.0,1.5995091098599337,-3.0173300556469496 -76,0.0,0.0,6.765516048652632,-21.23160167089863 -76,0.0,1.0,-5.224646179885656,15.646726840803398 -76,0.0,2.0,-1.5408698687669766,5.631674830095234 -76,1.0,0.0,-5.224646179885656,15.646726840803398 -76,1.0,1.0,8.066137284758561,-25.55088539734126 -76,1.0,3.0,-1.7055303166990268,5.1973792282565086 -76,1.0,4.0,-1.1359607881738778,4.772479328281356 -76,2.0,0.0,-1.5408698687669766,5.631674830095234 -76,2.0,2.0,9.736318911079088,-29.13794745915803 -76,2.0,3.0,-8.19544904231211,23.5308726290628 -76,3.0,1.0,-1.7055303166990268,5.1973792282565086 -76,3.0,2.0,-8.19544904231211,23.5308726290628 -76,3.0,3.0,16.314103089185693,-55.509410535254254 -76,3.0,5.0,-6.413123730174556,22.31120356548123 -76,3.0,11.0,0.0,4.191255364806866 -76,4.0,1.0,-1.1359607881738778,4.772479328281356 -76,4.0,4.0,4.089980824135861,-12.190647245055052 -76,4.0,6.0,-2.954020035961983,7.449267916773697 -76,5.0,3.0,-6.413123730174556,22.31120356548123 -76,5.0,5.0,14.366178212168466,-55.723291754091896 -76,5.0,6.0,-3.590210423980992,11.02611441072814 -76,5.0,8.0,0.0,4.915840805411357 -76,5.0,9.0,0.0,1.8561002591115965 -76,5.0,27.0,-4.362844058012917,15.463571542897856 -76,6.0,4.0,-2.954020035961983,7.449267916773697 -76,6.0,5.0,-3.590210423980992,11.02611441072814 -76,6.0,6.0,6.544230459942975,-18.45668232750184 -76,7.0,7.0,1.4439790613954469,-4.519414658476248 -76,7.0,27.0,-1.4439790613954469,4.540814658476248 -76,8.0,5.0,0.0,4.915840805411357 -76,8.0,8.0,0.0,-9.615384615384617 -76,8.0,10.0,0.0,4.807692307692308 -76,9.0,5.0,0.0,1.8561002591115965 -76,9.0,9.0,13.462042814524237,-32.29285157661331 -76,9.0,16.0,-3.956039125715353,10.317447719844054 -76,9.0,19.0,-1.7848303152666305,3.98535828943083 -76,9.0,20.0,-5.101853820159654,10.98071411292983 -76,9.0,21.0,-2.619319553382597,5.400770303329455 -76,10.0,8.0,0.0,4.807692307692308 -76,10.0,10.0,0.0,-4.807692307692308 -76,11.0,3.0,0.0,4.191255364806866 -76,11.0,11.0,6.573961583776156,-24.424167659260668 -76,11.0,12.0,0.0,7.142857142857143 -76,11.0,13.0,-1.5265676088395577,3.1734252729654173 -76,11.0,14.0,-3.0953961826564296,6.097275864326261 -76,11.0,15.0,-1.9519977922801688,4.104359379111847 -76,12.0,11.0,0.0,7.142857142857143 -76,12.0,12.0,0.0,-7.142857142857143 -76,13.0,11.0,-1.5265676088395577,3.1734252729654173 -76,13.0,13.0,1.5265676088395577,-3.1734252729654173 -76,14.0,11.0,-3.0953961826564296,6.097275864326261 -76,14.0,14.0,6.874546281965293,-13.760759672738311 -76,14.0,17.0,-1.8108011504072024,3.687418931630696 -76,14.0,22.0,-1.9683489489016612,3.976064876781356 -76,15.0,11.0,-1.9519977922801688,4.104359379111847 -76,15.0,15.0,3.271064728633931,-8.94513365126506 -76,15.0,16.0,-1.3190669363537617,4.8407742721532125 -76,16.0,9.0,-3.956039125715353,10.317447719844054 -76,16.0,15.0,-1.3190669363537617,4.8407742721532125 -76,16.0,16.0,5.275106062069114,-15.158221991997266 -76,17.0,14.0,-1.8108011504072024,3.687418931630696 -76,17.0,17.0,4.886487584415919,-9.906177730909668 -76,17.0,18.0,-3.0756864340087167,6.218758799278971 -76,18.0,17.0,-3.0756864340087167,6.218758799278971 -76,18.0,18.0,8.958039375185187,-17.98346468163191 -76,18.0,19.0,-5.88235294117647,11.76470588235294 -76,19.0,9.0,-1.7848303152666305,3.98535828943083 -76,19.0,18.0,-5.88235294117647,11.76470588235294 -76,19.0,19.0,7.6671832564431,-15.75006417178377 -76,20.0,9.0,-5.101853820159654,10.98071411292983 -76,20.0,20.0,5.101853820159654,-10.98071411292983 -76,21.0,9.0,-2.619319553382597,5.400770303329455 -76,21.0,21.0,2.619319553382597,-5.400770303329455 -76,22.0,14.0,-1.9683489489016612,3.976064876781356 -76,22.0,22.0,3.429754555384988,-6.965303617315433 -76,22.0,23.0,-1.4614056064833263,2.989238740534077 -76,23.0,22.0,-1.4614056064833263,2.989238740534077 -76,23.0,23.0,2.771298550357576,-5.233860794239132 -76,23.0,24.0,-1.3098929438742493,2.287622053705056 -76,24.0,23.0,-1.3098929438742493,2.287622053705056 -76,24.0,24.0,4.495715080321987,-7.864978761969621 -76,24.0,25.0,-1.2165301194494855,1.8171440463475024 -76,24.0,26.0,-1.9692920169982515,3.760212661917064 -76,25.0,24.0,-1.2165301194494855,1.8171440463475024 -76,25.0,25.0,1.2165301194494855,-1.8171440463475024 -76,26.0,24.0,-1.9692920169982515,3.760212661917064 -76,26.0,26.0,3.652281470778589,-9.46044252232512 -76,26.0,27.0,0.0,2.608731947574922 -76,26.0,28.0,-0.99553355095268,1.881005840357816 -76,26.0,29.0,-0.6874559028276572,1.293971494797717 -76,27.0,5.0,-4.362844058012917,15.463571542897856 -76,27.0,7.0,-1.4439790613954469,4.540814658476248 -76,27.0,26.0,0.0,2.608731947574922 -76,27.0,27.0,5.806823119408364,-22.67145722159613 -76,28.0,26.0,-0.99553355095268,1.881005840357816 -76,28.0,28.0,1.9075867579849564,-3.604364401207048 -76,28.0,29.0,-0.9120532070322764,1.7233585608492326 -76,29.0,26.0,-0.6874559028276572,1.293971494797717 -76,29.0,28.0,-0.9120532070322764,1.7233585608492326 -76,29.0,29.0,1.5995091098599337,-3.0173300556469496 -77,0.0,0.0,6.765516048652632,-21.23160167089863 -77,0.0,1.0,-5.224646179885656,15.646726840803398 -77,0.0,2.0,-1.5408698687669766,5.631674830095234 -77,1.0,0.0,-5.224646179885656,15.646726840803398 -77,1.0,1.0,9.75228216552403,-30.648662892676068 -77,1.0,3.0,-1.7055303166990268,5.1973792282565086 -77,1.0,4.0,-1.1359607881738778,4.772479328281356 -77,1.0,5.0,-1.6861448807654689,5.116477495334806 -77,2.0,0.0,-1.5408698687669766,5.631674830095234 -77,2.0,2.0,9.736318911079088,-29.13794745915803 -77,2.0,3.0,-8.19544904231211,23.5308726290628 -77,3.0,1.0,-1.7055303166990268,5.1973792282565086 -77,3.0,2.0,-8.19544904231211,23.5308726290628 -77,3.0,3.0,16.314103089185693,-55.509410535254254 -77,3.0,5.0,-6.413123730174556,22.31120356548123 -77,3.0,11.0,0.0,4.191255364806866 -77,4.0,1.0,-1.1359607881738778,4.772479328281356 -77,4.0,4.0,4.089980824135861,-12.190647245055052 -77,4.0,6.0,-2.954020035961983,7.449267916773697 -77,5.0,1.0,-1.6861448807654689,5.116477495334806 -77,5.0,3.0,-6.413123730174556,22.31120356548123 -77,5.0,5.0,22.341631269034565,-82.8291478657789 -77,5.0,6.0,-3.590210423980992,11.02611441072814 -77,5.0,7.0,-6.289308176100628,22.0125786163522 -77,5.0,8.0,0.0,4.915840805411357 -77,5.0,9.0,0.0,1.8561002591115965 -77,5.0,27.0,-4.362844058012917,15.463571542897856 -77,6.0,4.0,-2.954020035961983,7.449267916773697 -77,6.0,5.0,-3.590210423980992,11.02611441072814 -77,6.0,6.0,6.544230459942975,-18.45668232750184 -77,7.0,5.0,-6.289308176100628,22.0125786163522 -77,7.0,7.0,7.733287237496075,-26.527493274828448 -77,7.0,27.0,-1.4439790613954469,4.540814658476248 -77,8.0,5.0,0.0,4.915840805411357 -77,8.0,8.0,0.0,-18.706293706293707 -77,8.0,9.0,0.0,9.090909090909092 -77,8.0,10.0,0.0,4.807692307692308 -77,9.0,5.0,0.0,1.8561002591115965 -77,9.0,8.0,0.0,9.090909090909092 -77,9.0,9.0,13.462042814524237,-41.3837606675224 -77,9.0,16.0,-3.956039125715353,10.317447719844054 -77,9.0,19.0,-1.7848303152666305,3.98535828943083 -77,9.0,20.0,-5.101853820159654,10.98071411292983 -77,9.0,21.0,-2.619319553382597,5.400770303329455 -77,10.0,8.0,0.0,4.807692307692308 -77,10.0,10.0,0.0,-4.807692307692308 -77,11.0,3.0,0.0,4.191255364806866 -77,11.0,11.0,6.573961583776156,-24.424167659260668 -77,11.0,12.0,0.0,7.142857142857143 -77,11.0,13.0,-1.5265676088395577,3.1734252729654173 -77,11.0,14.0,-3.0953961826564296,6.097275864326261 -77,11.0,15.0,-1.9519977922801688,4.104359379111847 -77,12.0,11.0,0.0,7.142857142857143 -77,12.0,12.0,0.0,-7.142857142857143 -77,13.0,11.0,-1.5265676088395577,3.1734252729654173 -77,13.0,13.0,4.01751987283902,-5.424299332335067 -77,13.0,14.0,-2.4909522639994623,2.250874059369649 -77,14.0,11.0,-3.0953961826564296,6.097275864326261 -77,14.0,13.0,-2.4909522639994623,2.250874059369649 -77,14.0,14.0,9.365498545964757,-16.01163373210796 -77,14.0,17.0,-1.8108011504072024,3.687418931630696 -77,14.0,22.0,-1.9683489489016612,3.976064876781356 -77,15.0,11.0,-1.9519977922801688,4.104359379111847 -77,15.0,15.0,3.271064728633931,-8.94513365126506 -77,15.0,16.0,-1.3190669363537617,4.8407742721532125 -77,16.0,9.0,-3.956039125715353,10.317447719844054 -77,16.0,15.0,-1.3190669363537617,4.8407742721532125 -77,16.0,16.0,5.275106062069114,-15.158221991997266 -77,17.0,14.0,-1.8108011504072024,3.687418931630696 -77,17.0,17.0,4.886487584415919,-9.906177730909668 -77,17.0,18.0,-3.0756864340087167,6.218758799278971 -77,18.0,17.0,-3.0756864340087167,6.218758799278971 -77,18.0,18.0,8.958039375185187,-17.98346468163191 -77,18.0,19.0,-5.88235294117647,11.76470588235294 -77,19.0,9.0,-1.7848303152666305,3.98535828943083 -77,19.0,18.0,-5.88235294117647,11.76470588235294 -77,19.0,19.0,7.6671832564431,-15.75006417178377 -77,20.0,9.0,-5.101853820159654,10.98071411292983 -77,20.0,20.0,21.876495189895888,-45.10843276170355 -77,20.0,21.0,-16.774641369736234,34.127718648773715 -77,21.0,9.0,-2.619319553382597,5.400770303329455 -77,21.0,20.0,-16.774641369736234,34.127718648773715 -77,21.0,21.0,21.93449907537439,-43.48289181517921 -77,21.0,23.0,-2.5405381522555563,3.95440286307604 -77,22.0,14.0,-1.9683489489016612,3.976064876781356 -77,22.0,22.0,3.429754555384988,-6.965303617315433 -77,22.0,23.0,-1.4614056064833263,2.989238740534077 -77,23.0,21.0,-2.5405381522555563,3.95440286307604 -77,23.0,22.0,-1.4614056064833263,2.989238740534077 -77,23.0,23.0,5.311836702613133,-9.188263657315172 -77,23.0,24.0,-1.3098929438742493,2.287622053705056 -77,24.0,23.0,-1.3098929438742493,2.287622053705056 -77,24.0,24.0,4.495715080321987,-7.864978761969621 -77,24.0,25.0,-1.2165301194494855,1.8171440463475024 -77,24.0,26.0,-1.9692920169982515,3.760212661917064 -77,25.0,24.0,-1.2165301194494855,1.8171440463475024 -77,25.0,25.0,1.2165301194494855,-1.8171440463475024 -77,26.0,24.0,-1.9692920169982515,3.760212661917064 -77,26.0,26.0,3.652281470778589,-9.46044252232512 -77,26.0,27.0,0.0,2.608731947574922 -77,26.0,28.0,-0.99553355095268,1.881005840357816 -77,26.0,29.0,-0.6874559028276572,1.293971494797717 -77,27.0,5.0,-4.362844058012917,15.463571542897856 -77,27.0,7.0,-1.4439790613954469,4.540814658476248 -77,27.0,26.0,0.0,2.608731947574922 -77,27.0,27.0,5.806823119408364,-22.67145722159613 -77,28.0,26.0,-0.99553355095268,1.881005840357816 -77,28.0,28.0,1.9075867579849564,-3.604364401207048 -77,28.0,29.0,-0.9120532070322764,1.7233585608492326 -77,29.0,26.0,-0.6874559028276572,1.293971494797717 -77,29.0,28.0,-0.9120532070322764,1.7233585608492326 -77,29.0,29.0,1.5995091098599337,-3.0173300556469496 -78,0.0,0.0,6.765516048652632,-21.23160167089863 -78,0.0,1.0,-5.224646179885656,15.646726840803398 -78,0.0,2.0,-1.5408698687669766,5.631674830095234 -78,1.0,0.0,-5.224646179885656,15.646726840803398 -78,1.0,1.0,9.75228216552403,-30.648662892676068 -78,1.0,3.0,-1.7055303166990268,5.1973792282565086 -78,1.0,4.0,-1.1359607881738778,4.772479328281356 -78,1.0,5.0,-1.6861448807654689,5.116477495334806 -78,2.0,0.0,-1.5408698687669766,5.631674830095234 -78,2.0,2.0,9.736318911079088,-29.13794745915803 -78,2.0,3.0,-8.19544904231211,23.5308726290628 -78,3.0,1.0,-1.7055303166990268,5.1973792282565086 -78,3.0,2.0,-8.19544904231211,23.5308726290628 -78,3.0,3.0,16.314103089185693,-55.509410535254254 -78,3.0,5.0,-6.413123730174556,22.31120356548123 -78,3.0,11.0,0.0,4.191255364806866 -78,4.0,1.0,-1.1359607881738778,4.772479328281356 -78,4.0,4.0,4.089980824135861,-12.190647245055052 -78,4.0,6.0,-2.954020035961983,7.449267916773697 -78,5.0,1.0,-1.6861448807654689,5.116477495334806 -78,5.0,3.0,-6.413123730174556,22.31120356548123 -78,5.0,5.0,22.341631269034565,-82.8291478657789 -78,5.0,6.0,-3.590210423980992,11.02611441072814 -78,5.0,7.0,-6.289308176100628,22.0125786163522 -78,5.0,8.0,0.0,4.915840805411357 -78,5.0,9.0,0.0,1.8561002591115965 -78,5.0,27.0,-4.362844058012917,15.463571542897856 -78,6.0,4.0,-2.954020035961983,7.449267916773697 -78,6.0,5.0,-3.590210423980992,11.02611441072814 -78,6.0,6.0,6.544230459942975,-18.45668232750184 -78,7.0,5.0,-6.289308176100628,22.0125786163522 -78,7.0,7.0,7.733287237496075,-26.527493274828448 -78,7.0,27.0,-1.4439790613954469,4.540814658476248 -78,8.0,5.0,0.0,4.915840805411357 -78,8.0,8.0,0.0,-18.706293706293707 -78,8.0,9.0,0.0,9.090909090909092 -78,8.0,10.0,0.0,4.807692307692308 -78,9.0,5.0,0.0,1.8561002591115965 -78,9.0,8.0,0.0,9.090909090909092 -78,9.0,9.0,13.462042814524237,-41.3837606675224 -78,9.0,16.0,-3.956039125715353,10.317447719844054 -78,9.0,19.0,-1.7848303152666305,3.98535828943083 -78,9.0,20.0,-5.101853820159654,10.98071411292983 -78,9.0,21.0,-2.619319553382597,5.400770303329455 -78,10.0,8.0,0.0,4.807692307692308 -78,10.0,10.0,0.0,-4.807692307692308 -78,11.0,3.0,0.0,4.191255364806866 -78,11.0,11.0,6.573961583776156,-24.424167659260668 -78,11.0,12.0,0.0,7.142857142857143 -78,11.0,13.0,-1.5265676088395577,3.1734252729654173 -78,11.0,14.0,-3.0953961826564296,6.097275864326261 -78,11.0,15.0,-1.9519977922801688,4.104359379111847 -78,12.0,11.0,0.0,7.142857142857143 -78,12.0,12.0,0.0,-7.142857142857143 -78,13.0,11.0,-1.5265676088395577,3.1734252729654173 -78,13.0,13.0,4.01751987283902,-5.424299332335067 -78,13.0,14.0,-2.4909522639994623,2.250874059369649 -78,14.0,11.0,-3.0953961826564296,6.097275864326261 -78,14.0,13.0,-2.4909522639994623,2.250874059369649 -78,14.0,14.0,9.365498545964757,-16.01163373210796 -78,14.0,17.0,-1.8108011504072024,3.687418931630696 -78,14.0,22.0,-1.9683489489016612,3.976064876781356 -78,15.0,11.0,-1.9519977922801688,4.104359379111847 -78,15.0,15.0,3.271064728633931,-8.94513365126506 -78,15.0,16.0,-1.3190669363537617,4.8407742721532125 -78,16.0,9.0,-3.956039125715353,10.317447719844054 -78,16.0,15.0,-1.3190669363537617,4.8407742721532125 -78,16.0,16.0,5.275106062069114,-15.158221991997266 -78,17.0,14.0,-1.8108011504072024,3.687418931630696 -78,17.0,17.0,4.886487584415919,-9.906177730909668 -78,17.0,18.0,-3.0756864340087167,6.218758799278971 -78,18.0,17.0,-3.0756864340087167,6.218758799278971 -78,18.0,18.0,8.958039375185187,-17.98346468163191 -78,18.0,19.0,-5.88235294117647,11.76470588235294 -78,19.0,9.0,-1.7848303152666305,3.98535828943083 -78,19.0,18.0,-5.88235294117647,11.76470588235294 -78,19.0,19.0,7.6671832564431,-15.75006417178377 -78,20.0,9.0,-5.101853820159654,10.98071411292983 -78,20.0,20.0,21.876495189895888,-45.10843276170355 -78,20.0,21.0,-16.774641369736234,34.127718648773715 -78,21.0,9.0,-2.619319553382597,5.400770303329455 -78,21.0,20.0,-16.774641369736234,34.127718648773715 -78,21.0,21.0,21.93449907537439,-43.48289181517921 -78,21.0,23.0,-2.5405381522555563,3.95440286307604 -78,22.0,14.0,-1.9683489489016612,3.976064876781356 -78,22.0,22.0,3.429754555384988,-6.965303617315433 -78,22.0,23.0,-1.4614056064833263,2.989238740534077 -78,23.0,21.0,-2.5405381522555563,3.95440286307604 -78,23.0,22.0,-1.4614056064833263,2.989238740534077 -78,23.0,23.0,5.311836702613133,-9.188263657315172 -78,23.0,24.0,-1.3098929438742493,2.287622053705056 -78,24.0,23.0,-1.3098929438742493,2.287622053705056 -78,24.0,24.0,4.495715080321987,-7.864978761969621 -78,24.0,25.0,-1.2165301194494855,1.8171440463475024 -78,24.0,26.0,-1.9692920169982515,3.760212661917064 -78,25.0,24.0,-1.2165301194494855,1.8171440463475024 -78,25.0,25.0,1.2165301194494855,-1.8171440463475024 -78,26.0,24.0,-1.9692920169982515,3.760212661917064 -78,26.0,26.0,3.652281470778589,-9.46044252232512 -78,26.0,27.0,0.0,2.608731947574922 -78,26.0,28.0,-0.99553355095268,1.881005840357816 -78,26.0,29.0,-0.6874559028276572,1.293971494797717 -78,27.0,5.0,-4.362844058012917,15.463571542897856 -78,27.0,7.0,-1.4439790613954469,4.540814658476248 -78,27.0,26.0,0.0,2.608731947574922 -78,27.0,27.0,5.806823119408364,-22.67145722159613 -78,28.0,26.0,-0.99553355095268,1.881005840357816 -78,28.0,28.0,1.9075867579849564,-3.604364401207048 -78,28.0,29.0,-0.9120532070322764,1.7233585608492326 -78,29.0,26.0,-0.6874559028276572,1.293971494797717 -78,29.0,28.0,-0.9120532070322764,1.7233585608492326 -78,29.0,29.0,1.5995091098599337,-3.0173300556469496 -79,0.0,0.0,6.765516048652632,-21.23160167089863 -79,0.0,1.0,-5.224646179885656,15.646726840803398 -79,0.0,2.0,-1.5408698687669766,5.631674830095234 -79,1.0,0.0,-5.224646179885656,15.646726840803398 -79,1.0,1.0,9.75228216552403,-30.648662892676068 -79,1.0,3.0,-1.7055303166990268,5.1973792282565086 -79,1.0,4.0,-1.1359607881738778,4.772479328281356 -79,1.0,5.0,-1.6861448807654689,5.116477495334806 -79,2.0,0.0,-1.5408698687669766,5.631674830095234 -79,2.0,2.0,9.736318911079088,-29.13794745915803 -79,2.0,3.0,-8.19544904231211,23.5308726290628 -79,3.0,1.0,-1.7055303166990268,5.1973792282565086 -79,3.0,2.0,-8.19544904231211,23.5308726290628 -79,3.0,3.0,16.314103089185693,-55.509410535254254 -79,3.0,5.0,-6.413123730174556,22.31120356548123 -79,3.0,11.0,0.0,4.191255364806866 -79,4.0,1.0,-1.1359607881738778,4.772479328281356 -79,4.0,4.0,4.089980824135861,-12.190647245055052 -79,4.0,6.0,-2.954020035961983,7.449267916773697 -79,5.0,1.0,-1.6861448807654689,5.116477495334806 -79,5.0,3.0,-6.413123730174556,22.31120356548123 -79,5.0,5.0,22.341631269034565,-80.91366772221689 -79,5.0,6.0,-3.590210423980992,11.02611441072814 -79,5.0,7.0,-6.289308176100628,22.0125786163522 -79,5.0,8.0,0.0,4.915840805411357 -79,5.0,27.0,-4.362844058012917,15.463571542897856 -79,6.0,4.0,-2.954020035961983,7.449267916773697 -79,6.0,5.0,-3.590210423980992,11.02611441072814 -79,6.0,6.0,6.544230459942975,-18.45668232750184 -79,7.0,5.0,-6.289308176100628,22.0125786163522 -79,7.0,7.0,7.733287237496075,-26.527493274828448 -79,7.0,27.0,-1.4439790613954469,4.540814658476248 -79,8.0,5.0,0.0,4.915840805411357 -79,8.0,8.0,0.0,-18.706293706293707 -79,8.0,9.0,0.0,9.090909090909092 -79,8.0,10.0,0.0,4.807692307692308 -79,9.0,8.0,0.0,9.090909090909092 -79,9.0,9.0,13.462042814524237,-39.58519951644326 -79,9.0,16.0,-3.956039125715353,10.317447719844054 -79,9.0,19.0,-1.7848303152666305,3.98535828943083 -79,9.0,20.0,-5.101853820159654,10.98071411292983 -79,9.0,21.0,-2.619319553382597,5.400770303329455 -79,10.0,8.0,0.0,4.807692307692308 -79,10.0,10.0,0.0,-4.807692307692308 -79,11.0,3.0,0.0,4.191255364806866 -79,11.0,11.0,6.573961583776156,-24.424167659260668 -79,11.0,12.0,0.0,7.142857142857143 -79,11.0,13.0,-1.5265676088395577,3.1734252729654173 -79,11.0,14.0,-3.0953961826564296,6.097275864326261 -79,11.0,15.0,-1.9519977922801688,4.104359379111847 -79,12.0,11.0,0.0,7.142857142857143 -79,12.0,12.0,0.0,-7.142857142857143 -79,13.0,11.0,-1.5265676088395577,3.1734252729654173 -79,13.0,13.0,4.01751987283902,-5.424299332335067 -79,13.0,14.0,-2.4909522639994623,2.250874059369649 -79,14.0,11.0,-3.0953961826564296,6.097275864326261 -79,14.0,13.0,-2.4909522639994623,2.250874059369649 -79,14.0,14.0,9.365498545964757,-16.01163373210796 -79,14.0,17.0,-1.8108011504072024,3.687418931630696 -79,14.0,22.0,-1.9683489489016612,3.976064876781356 -79,15.0,11.0,-1.9519977922801688,4.104359379111847 -79,15.0,15.0,3.271064728633931,-8.94513365126506 -79,15.0,16.0,-1.3190669363537617,4.8407742721532125 -79,16.0,9.0,-3.956039125715353,10.317447719844054 -79,16.0,15.0,-1.3190669363537617,4.8407742721532125 -79,16.0,16.0,5.275106062069114,-15.158221991997266 -79,17.0,14.0,-1.8108011504072024,3.687418931630696 -79,17.0,17.0,4.886487584415919,-9.906177730909668 -79,17.0,18.0,-3.0756864340087167,6.218758799278971 -79,18.0,17.0,-3.0756864340087167,6.218758799278971 -79,18.0,18.0,8.958039375185187,-17.98346468163191 -79,18.0,19.0,-5.88235294117647,11.76470588235294 -79,19.0,9.0,-1.7848303152666305,3.98535828943083 -79,19.0,18.0,-5.88235294117647,11.76470588235294 -79,19.0,19.0,7.6671832564431,-15.75006417178377 -79,20.0,9.0,-5.101853820159654,10.98071411292983 -79,20.0,20.0,21.876495189895888,-45.10843276170355 -79,20.0,21.0,-16.774641369736234,34.127718648773715 -79,21.0,9.0,-2.619319553382597,5.400770303329455 -79,21.0,20.0,-16.774641369736234,34.127718648773715 -79,21.0,21.0,21.93449907537439,-43.48289181517921 -79,21.0,23.0,-2.5405381522555563,3.95440286307604 -79,22.0,14.0,-1.9683489489016612,3.976064876781356 -79,22.0,22.0,3.429754555384988,-6.965303617315433 -79,22.0,23.0,-1.4614056064833263,2.989238740534077 -79,23.0,21.0,-2.5405381522555563,3.95440286307604 -79,23.0,22.0,-1.4614056064833263,2.989238740534077 -79,23.0,23.0,5.311836702613133,-9.188263657315172 -79,23.0,24.0,-1.3098929438742493,2.287622053705056 -79,24.0,23.0,-1.3098929438742493,2.287622053705056 -79,24.0,24.0,4.495715080321987,-7.864978761969621 -79,24.0,25.0,-1.2165301194494855,1.8171440463475024 -79,24.0,26.0,-1.9692920169982515,3.760212661917064 -79,25.0,24.0,-1.2165301194494855,1.8171440463475024 -79,25.0,25.0,1.2165301194494855,-1.8171440463475024 -79,26.0,24.0,-1.9692920169982515,3.760212661917064 -79,26.0,26.0,3.652281470778589,-9.46044252232512 -79,26.0,27.0,0.0,2.608731947574922 -79,26.0,28.0,-0.99553355095268,1.881005840357816 -79,26.0,29.0,-0.6874559028276572,1.293971494797717 -79,27.0,5.0,-4.362844058012917,15.463571542897856 -79,27.0,7.0,-1.4439790613954469,4.540814658476248 -79,27.0,26.0,0.0,2.608731947574922 -79,27.0,27.0,5.806823119408364,-22.67145722159613 -79,28.0,26.0,-0.99553355095268,1.881005840357816 -79,28.0,28.0,1.9075867579849564,-3.604364401207048 -79,28.0,29.0,-0.9120532070322764,1.7233585608492326 -79,29.0,26.0,-0.6874559028276572,1.293971494797717 -79,29.0,28.0,-0.9120532070322764,1.7233585608492326 -79,29.0,29.0,1.5995091098599337,-3.0173300556469496 -80,0.0,0.0,6.765516048652632,-21.23160167089863 -80,0.0,1.0,-5.224646179885656,15.646726840803398 -80,0.0,2.0,-1.5408698687669766,5.631674830095234 -80,1.0,0.0,-5.224646179885656,15.646726840803398 -80,1.0,1.0,9.75228216552403,-30.648662892676068 -80,1.0,3.0,-1.7055303166990268,5.1973792282565086 -80,1.0,4.0,-1.1359607881738778,4.772479328281356 -80,1.0,5.0,-1.6861448807654689,5.116477495334806 -80,2.0,0.0,-1.5408698687669766,5.631674830095234 -80,2.0,2.0,9.736318911079088,-29.13794745915803 -80,2.0,3.0,-8.19544904231211,23.5308726290628 -80,3.0,1.0,-1.7055303166990268,5.1973792282565086 -80,3.0,2.0,-8.19544904231211,23.5308726290628 -80,3.0,3.0,16.314103089185693,-55.509410535254254 -80,3.0,5.0,-6.413123730174556,22.31120356548123 -80,3.0,11.0,0.0,4.191255364806866 -80,4.0,1.0,-1.1359607881738778,4.772479328281356 -80,4.0,4.0,4.089980824135861,-12.190647245055052 -80,4.0,6.0,-2.954020035961983,7.449267916773697 -80,5.0,1.0,-1.6861448807654689,5.116477495334806 -80,5.0,3.0,-6.413123730174556,22.31120356548123 -80,5.0,5.0,12.46211266895294,-47.88797469513655 -80,5.0,8.0,0.0,4.915840805411357 -80,5.0,27.0,-4.362844058012917,15.463571542897856 -80,6.0,4.0,-2.954020035961983,7.449267916773697 -80,6.0,6.0,2.954020035961983,-7.439067916773697 -80,7.0,7.0,1.4439790613954469,-4.519414658476248 -80,7.0,27.0,-1.4439790613954469,4.540814658476248 -80,8.0,5.0,0.0,4.915840805411357 -80,8.0,8.0,0.0,-18.706293706293707 -80,8.0,9.0,0.0,9.090909090909092 -80,8.0,10.0,0.0,4.807692307692308 -80,9.0,8.0,0.0,9.090909090909092 -80,9.0,9.0,13.462042814524237,-39.58519951644326 -80,9.0,16.0,-3.956039125715353,10.317447719844054 -80,9.0,19.0,-1.7848303152666305,3.98535828943083 -80,9.0,20.0,-5.101853820159654,10.98071411292983 -80,9.0,21.0,-2.619319553382597,5.400770303329455 -80,10.0,8.0,0.0,4.807692307692308 -80,10.0,10.0,0.0,-4.807692307692308 -80,11.0,3.0,0.0,4.191255364806866 -80,11.0,11.0,6.573961583776156,-24.424167659260668 -80,11.0,12.0,0.0,7.142857142857143 -80,11.0,13.0,-1.5265676088395577,3.1734252729654173 -80,11.0,14.0,-3.0953961826564296,6.097275864326261 -80,11.0,15.0,-1.9519977922801688,4.104359379111847 -80,12.0,11.0,0.0,7.142857142857143 -80,12.0,12.0,0.0,-7.142857142857143 -80,13.0,11.0,-1.5265676088395577,3.1734252729654173 -80,13.0,13.0,4.01751987283902,-5.424299332335067 -80,13.0,14.0,-2.4909522639994623,2.250874059369649 -80,14.0,11.0,-3.0953961826564296,6.097275864326261 -80,14.0,13.0,-2.4909522639994623,2.250874059369649 -80,14.0,14.0,9.365498545964757,-16.01163373210796 -80,14.0,17.0,-1.8108011504072024,3.687418931630696 -80,14.0,22.0,-1.9683489489016612,3.976064876781356 -80,15.0,11.0,-1.9519977922801688,4.104359379111847 -80,15.0,15.0,3.271064728633931,-8.94513365126506 -80,15.0,16.0,-1.3190669363537617,4.8407742721532125 -80,16.0,9.0,-3.956039125715353,10.317447719844054 -80,16.0,15.0,-1.3190669363537617,4.8407742721532125 -80,16.0,16.0,5.275106062069114,-15.158221991997266 -80,17.0,14.0,-1.8108011504072024,3.687418931630696 -80,17.0,17.0,4.886487584415919,-9.906177730909668 -80,17.0,18.0,-3.0756864340087167,6.218758799278971 -80,18.0,17.0,-3.0756864340087167,6.218758799278971 -80,18.0,18.0,8.958039375185187,-17.98346468163191 -80,18.0,19.0,-5.88235294117647,11.76470588235294 -80,19.0,9.0,-1.7848303152666305,3.98535828943083 -80,19.0,18.0,-5.88235294117647,11.76470588235294 -80,19.0,19.0,7.6671832564431,-15.75006417178377 -80,20.0,9.0,-5.101853820159654,10.98071411292983 -80,20.0,20.0,21.876495189895888,-45.10843276170355 -80,20.0,21.0,-16.774641369736234,34.127718648773715 -80,21.0,9.0,-2.619319553382597,5.400770303329455 -80,21.0,20.0,-16.774641369736234,34.127718648773715 -80,21.0,21.0,21.93449907537439,-43.48289181517921 -80,21.0,23.0,-2.5405381522555563,3.95440286307604 -80,22.0,14.0,-1.9683489489016612,3.976064876781356 -80,22.0,22.0,3.429754555384988,-6.965303617315433 -80,22.0,23.0,-1.4614056064833263,2.989238740534077 -80,23.0,21.0,-2.5405381522555563,3.95440286307604 -80,23.0,22.0,-1.4614056064833263,2.989238740534077 -80,23.0,23.0,5.311836702613133,-9.188263657315172 -80,23.0,24.0,-1.3098929438742493,2.287622053705056 -80,24.0,23.0,-1.3098929438742493,2.287622053705056 -80,24.0,24.0,4.495715080321987,-7.864978761969621 -80,24.0,25.0,-1.2165301194494855,1.8171440463475024 -80,24.0,26.0,-1.9692920169982515,3.760212661917064 -80,25.0,24.0,-1.2165301194494855,1.8171440463475024 -80,25.0,25.0,1.2165301194494855,-1.8171440463475024 -80,26.0,24.0,-1.9692920169982515,3.760212661917064 -80,26.0,26.0,2.656747919825909,-7.579436681967305 -80,26.0,27.0,0.0,2.608731947574922 -80,26.0,29.0,-0.6874559028276572,1.293971494797717 -80,27.0,5.0,-4.362844058012917,15.463571542897856 -80,27.0,7.0,-1.4439790613954469,4.540814658476248 -80,27.0,26.0,0.0,2.608731947574922 -80,27.0,27.0,5.806823119408364,-22.67145722159613 -80,28.0,28.0,0.9120532070322764,-1.7233585608492326 -80,28.0,29.0,-0.9120532070322764,1.7233585608492326 -80,29.0,26.0,-0.6874559028276572,1.293971494797717 -80,29.0,28.0,-0.9120532070322764,1.7233585608492326 -80,29.0,29.0,1.5995091098599337,-3.0173300556469496 -81,0.0,0.0,6.765516048652632,-21.23160167089863 -81,0.0,1.0,-5.224646179885656,15.646726840803398 -81,0.0,2.0,-1.5408698687669766,5.631674830095234 -81,1.0,0.0,-5.224646179885656,15.646726840803398 -81,1.0,1.0,8.61632137735015,-25.897083564394716 -81,1.0,3.0,-1.7055303166990268,5.1973792282565086 -81,1.0,5.0,-1.6861448807654689,5.116477495334806 -81,2.0,0.0,-1.5408698687669766,5.631674830095234 -81,2.0,2.0,9.736318911079088,-29.13794745915803 -81,2.0,3.0,-8.19544904231211,23.5308726290628 -81,3.0,1.0,-1.7055303166990268,5.1973792282565086 -81,3.0,2.0,-8.19544904231211,23.5308726290628 -81,3.0,3.0,16.314103089185693,-55.509410535254254 -81,3.0,5.0,-6.413123730174556,22.31120356548123 -81,3.0,11.0,0.0,4.191255364806866 -81,4.0,4.0,2.954020035961983,-7.439067916773697 -81,4.0,6.0,-2.954020035961983,7.449267916773697 -81,5.0,1.0,-1.6861448807654689,5.116477495334806 -81,5.0,3.0,-6.413123730174556,22.31120356548123 -81,5.0,5.0,22.341631269034565,-82.8291478657789 -81,5.0,6.0,-3.590210423980992,11.02611441072814 -81,5.0,7.0,-6.289308176100628,22.0125786163522 -81,5.0,8.0,0.0,4.915840805411357 -81,5.0,9.0,0.0,1.8561002591115965 -81,5.0,27.0,-4.362844058012917,15.463571542897856 -81,6.0,4.0,-2.954020035961983,7.449267916773697 -81,6.0,5.0,-3.590210423980992,11.02611441072814 -81,6.0,6.0,6.544230459942975,-18.45668232750184 -81,7.0,5.0,-6.289308176100628,22.0125786163522 -81,7.0,7.0,7.733287237496075,-26.527493274828448 -81,7.0,27.0,-1.4439790613954469,4.540814658476248 -81,8.0,5.0,0.0,4.915840805411357 -81,8.0,8.0,0.0,-18.706293706293707 -81,8.0,9.0,0.0,9.090909090909092 -81,8.0,10.0,0.0,4.807692307692308 -81,9.0,5.0,0.0,1.8561002591115965 -81,9.0,8.0,0.0,9.090909090909092 -81,9.0,9.0,13.462042814524237,-41.3837606675224 -81,9.0,16.0,-3.956039125715353,10.317447719844054 -81,9.0,19.0,-1.7848303152666305,3.98535828943083 -81,9.0,20.0,-5.101853820159654,10.98071411292983 -81,9.0,21.0,-2.619319553382597,5.400770303329455 -81,10.0,8.0,0.0,4.807692307692308 -81,10.0,10.0,0.0,-4.807692307692308 -81,11.0,3.0,0.0,4.191255364806866 -81,11.0,11.0,5.047393974936599,-21.25074238629525 -81,11.0,12.0,0.0,7.142857142857143 -81,11.0,14.0,-3.0953961826564296,6.097275864326261 -81,11.0,15.0,-1.9519977922801688,4.104359379111847 -81,12.0,11.0,0.0,7.142857142857143 -81,12.0,12.0,0.0,-7.142857142857143 -81,13.0,13.0,2.4909522639994623,-2.250874059369649 -81,13.0,14.0,-2.4909522639994623,2.250874059369649 -81,14.0,11.0,-3.0953961826564296,6.097275864326261 -81,14.0,13.0,-2.4909522639994623,2.250874059369649 -81,14.0,14.0,9.365498545964757,-16.01163373210796 -81,14.0,17.0,-1.8108011504072024,3.687418931630696 -81,14.0,22.0,-1.9683489489016612,3.976064876781356 -81,15.0,11.0,-1.9519977922801688,4.104359379111847 -81,15.0,15.0,3.271064728633931,-8.94513365126506 -81,15.0,16.0,-1.3190669363537617,4.8407742721532125 -81,16.0,9.0,-3.956039125715353,10.317447719844054 -81,16.0,15.0,-1.3190669363537617,4.8407742721532125 -81,16.0,16.0,5.275106062069114,-15.158221991997266 -81,17.0,14.0,-1.8108011504072024,3.687418931630696 -81,17.0,17.0,4.886487584415919,-9.906177730909668 -81,17.0,18.0,-3.0756864340087167,6.218758799278971 -81,18.0,17.0,-3.0756864340087167,6.218758799278971 -81,18.0,18.0,8.958039375185187,-17.98346468163191 -81,18.0,19.0,-5.88235294117647,11.76470588235294 -81,19.0,9.0,-1.7848303152666305,3.98535828943083 -81,19.0,18.0,-5.88235294117647,11.76470588235294 -81,19.0,19.0,7.6671832564431,-15.75006417178377 -81,20.0,9.0,-5.101853820159654,10.98071411292983 -81,20.0,20.0,21.876495189895888,-45.10843276170355 -81,20.0,21.0,-16.774641369736234,34.127718648773715 -81,21.0,9.0,-2.619319553382597,5.400770303329455 -81,21.0,20.0,-16.774641369736234,34.127718648773715 -81,21.0,21.0,21.93449907537439,-43.48289181517921 -81,21.0,23.0,-2.5405381522555563,3.95440286307604 -81,22.0,14.0,-1.9683489489016612,3.976064876781356 -81,22.0,22.0,3.429754555384988,-6.965303617315433 -81,22.0,23.0,-1.4614056064833263,2.989238740534077 -81,23.0,21.0,-2.5405381522555563,3.95440286307604 -81,23.0,22.0,-1.4614056064833263,2.989238740534077 -81,23.0,23.0,5.311836702613133,-9.188263657315172 -81,23.0,24.0,-1.3098929438742493,2.287622053705056 -81,24.0,23.0,-1.3098929438742493,2.287622053705056 -81,24.0,24.0,2.526423063323735,-4.104766100052558 -81,24.0,25.0,-1.2165301194494855,1.8171440463475024 -81,25.0,24.0,-1.2165301194494855,1.8171440463475024 -81,25.0,25.0,1.2165301194494855,-1.8171440463475024 -81,26.0,26.0,1.6829894537803372,-5.700229860408058 -81,26.0,27.0,0.0,2.608731947574922 -81,26.0,28.0,-0.99553355095268,1.881005840357816 -81,26.0,29.0,-0.6874559028276572,1.293971494797717 -81,27.0,5.0,-4.362844058012917,15.463571542897856 -81,27.0,7.0,-1.4439790613954469,4.540814658476248 -81,27.0,26.0,0.0,2.608731947574922 -81,27.0,27.0,5.806823119408364,-22.67145722159613 -81,28.0,26.0,-0.99553355095268,1.881005840357816 -81,28.0,28.0,1.9075867579849564,-3.604364401207048 -81,28.0,29.0,-0.9120532070322764,1.7233585608492326 -81,29.0,26.0,-0.6874559028276572,1.293971494797717 -81,29.0,28.0,-0.9120532070322764,1.7233585608492326 -81,29.0,29.0,1.5995091098599337,-3.0173300556469496 -82,0.0,0.0,1.5408698687669766,-5.611274830095233 -82,0.0,2.0,-1.5408698687669766,5.631674830095234 -82,1.0,1.0,2.8221056689393467,-9.849356823616162 -82,1.0,4.0,-1.1359607881738778,4.772479328281356 -82,1.0,5.0,-1.6861448807654689,5.116477495334806 -82,2.0,0.0,-1.5408698687669766,5.631674830095234 -82,2.0,2.0,9.736318911079088,-29.13794745915803 -82,2.0,3.0,-8.19544904231211,23.5308726290628 -82,3.0,2.0,-8.19544904231211,23.5308726290628 -82,3.0,3.0,14.608572772486664,-50.33043130699775 -82,3.0,5.0,-6.413123730174556,22.31120356548123 -82,3.0,11.0,0.0,4.191255364806866 -82,4.0,1.0,-1.1359607881738778,4.772479328281356 -82,4.0,4.0,4.089980824135861,-12.190647245055052 -82,4.0,6.0,-2.954020035961983,7.449267916773697 -82,5.0,1.0,-1.6861448807654689,5.116477495334806 -82,5.0,3.0,-6.413123730174556,22.31120356548123 -82,5.0,5.0,22.341631269034565,-82.8291478657789 -82,5.0,6.0,-3.590210423980992,11.02611441072814 -82,5.0,7.0,-6.289308176100628,22.0125786163522 -82,5.0,8.0,0.0,4.915840805411357 -82,5.0,9.0,0.0,1.8561002591115965 -82,5.0,27.0,-4.362844058012917,15.463571542897856 -82,6.0,4.0,-2.954020035961983,7.449267916773697 -82,6.0,5.0,-3.590210423980992,11.02611441072814 -82,6.0,6.0,6.544230459942975,-18.45668232750184 -82,7.0,5.0,-6.289308176100628,22.0125786163522 -82,7.0,7.0,7.733287237496075,-26.527493274828448 -82,7.0,27.0,-1.4439790613954469,4.540814658476248 -82,8.0,5.0,0.0,4.915840805411357 -82,8.0,8.0,0.0,-18.706293706293707 -82,8.0,9.0,0.0,9.090909090909092 -82,8.0,10.0,0.0,4.807692307692308 -82,9.0,5.0,0.0,1.8561002591115965 -82,9.0,8.0,0.0,9.090909090909092 -82,9.0,9.0,13.462042814524237,-41.3837606675224 -82,9.0,16.0,-3.956039125715353,10.317447719844054 -82,9.0,19.0,-1.7848303152666305,3.98535828943083 -82,9.0,20.0,-5.101853820159654,10.98071411292983 -82,9.0,21.0,-2.619319553382597,5.400770303329455 -82,10.0,8.0,0.0,4.807692307692308 -82,10.0,10.0,0.0,-4.807692307692308 -82,11.0,3.0,0.0,4.191255364806866 -82,11.0,11.0,3.0953961826564296,-17.146383007183402 -82,11.0,12.0,0.0,7.142857142857143 -82,11.0,14.0,-3.0953961826564296,6.097275864326261 -82,12.0,11.0,0.0,7.142857142857143 -82,12.0,12.0,0.0,-7.142857142857143 -82,13.0,13.0,2.4909522639994623,-2.250874059369649 -82,13.0,14.0,-2.4909522639994623,2.250874059369649 -82,14.0,11.0,-3.0953961826564296,6.097275864326261 -82,14.0,13.0,-2.4909522639994623,2.250874059369649 -82,14.0,14.0,7.554697395557554,-12.324214800477266 -82,14.0,22.0,-1.9683489489016612,3.976064876781356 -82,15.0,15.0,1.3190669363537617,-4.8407742721532125 -82,15.0,16.0,-1.3190669363537617,4.8407742721532125 -82,16.0,9.0,-3.956039125715353,10.317447719844054 -82,16.0,15.0,-1.3190669363537617,4.8407742721532125 -82,16.0,16.0,5.275106062069114,-15.158221991997266 -82,17.0,17.0,3.0756864340087167,-6.218758799278971 -82,17.0,18.0,-3.0756864340087167,6.218758799278971 -82,18.0,17.0,-3.0756864340087167,6.218758799278971 -82,18.0,18.0,8.958039375185187,-17.98346468163191 -82,18.0,19.0,-5.88235294117647,11.76470588235294 -82,19.0,9.0,-1.7848303152666305,3.98535828943083 -82,19.0,18.0,-5.88235294117647,11.76470588235294 -82,19.0,19.0,7.6671832564431,-15.75006417178377 -82,20.0,9.0,-5.101853820159654,10.98071411292983 -82,20.0,20.0,21.876495189895888,-45.10843276170355 -82,20.0,21.0,-16.774641369736234,34.127718648773715 -82,21.0,9.0,-2.619319553382597,5.400770303329455 -82,21.0,20.0,-16.774641369736234,34.127718648773715 -82,21.0,21.0,21.93449907537439,-43.48289181517921 -82,21.0,23.0,-2.5405381522555563,3.95440286307604 -82,22.0,14.0,-1.9683489489016612,3.976064876781356 -82,22.0,22.0,3.429754555384988,-6.965303617315433 -82,22.0,23.0,-1.4614056064833263,2.989238740534077 -82,23.0,21.0,-2.5405381522555563,3.95440286307604 -82,23.0,22.0,-1.4614056064833263,2.989238740534077 -82,23.0,23.0,5.311836702613133,-9.188263657315172 -82,23.0,24.0,-1.3098929438742493,2.287622053705056 -82,24.0,23.0,-1.3098929438742493,2.287622053705056 -82,24.0,24.0,4.495715080321987,-7.864978761969621 -82,24.0,25.0,-1.2165301194494855,1.8171440463475024 -82,24.0,26.0,-1.9692920169982515,3.760212661917064 -82,25.0,24.0,-1.2165301194494855,1.8171440463475024 -82,25.0,25.0,1.2165301194494855,-1.8171440463475024 -82,26.0,24.0,-1.9692920169982515,3.760212661917064 -82,26.0,26.0,3.652281470778589,-9.46044252232512 -82,26.0,27.0,0.0,2.608731947574922 -82,26.0,28.0,-0.99553355095268,1.881005840357816 -82,26.0,29.0,-0.6874559028276572,1.293971494797717 -82,27.0,5.0,-4.362844058012917,15.463571542897856 -82,27.0,7.0,-1.4439790613954469,4.540814658476248 -82,27.0,26.0,0.0,2.608731947574922 -82,27.0,27.0,5.806823119408364,-22.67145722159613 -82,28.0,26.0,-0.99553355095268,1.881005840357816 -82,28.0,28.0,1.9075867579849564,-3.604364401207048 -82,28.0,29.0,-0.9120532070322764,1.7233585608492326 -82,29.0,26.0,-0.6874559028276572,1.293971494797717 -82,29.0,28.0,-0.9120532070322764,1.7233585608492326 -82,29.0,29.0,1.5995091098599337,-3.0173300556469496 -83,0.0,0.0,6.765516048652632,-21.23160167089863 -83,0.0,1.0,-5.224646179885656,15.646726840803398 -83,0.0,2.0,-1.5408698687669766,5.631674830095234 -83,1.0,0.0,-5.224646179885656,15.646726840803398 -83,1.0,1.0,9.75228216552403,-30.648662892676068 -83,1.0,3.0,-1.7055303166990268,5.1973792282565086 -83,1.0,4.0,-1.1359607881738778,4.772479328281356 -83,1.0,5.0,-1.6861448807654689,5.116477495334806 -83,2.0,0.0,-1.5408698687669766,5.631674830095234 -83,2.0,2.0,1.5408698687669766,-5.611274830095233 -83,3.0,1.0,-1.7055303166990268,5.1973792282565086 -83,3.0,3.0,8.118654046873583,-31.982737906191456 -83,3.0,5.0,-6.413123730174556,22.31120356548123 -83,3.0,11.0,0.0,4.191255364806866 -83,4.0,1.0,-1.1359607881738778,4.772479328281356 -83,4.0,4.0,4.089980824135861,-12.190647245055052 -83,4.0,6.0,-2.954020035961983,7.449267916773697 -83,5.0,1.0,-1.6861448807654689,5.116477495334806 -83,5.0,3.0,-6.413123730174556,22.31120356548123 -83,5.0,5.0,22.341631269034565,-82.8291478657789 -83,5.0,6.0,-3.590210423980992,11.02611441072814 -83,5.0,7.0,-6.289308176100628,22.0125786163522 -83,5.0,8.0,0.0,4.915840805411357 -83,5.0,9.0,0.0,1.8561002591115965 -83,5.0,27.0,-4.362844058012917,15.463571542897856 -83,6.0,4.0,-2.954020035961983,7.449267916773697 -83,6.0,5.0,-3.590210423980992,11.02611441072814 -83,6.0,6.0,6.544230459942975,-18.45668232750184 -83,7.0,5.0,-6.289308176100628,22.0125786163522 -83,7.0,7.0,7.733287237496075,-26.527493274828448 -83,7.0,27.0,-1.4439790613954469,4.540814658476248 -83,8.0,5.0,0.0,4.915840805411357 -83,8.0,8.0,0.0,-18.706293706293707 -83,8.0,9.0,0.0,9.090909090909092 -83,8.0,10.0,0.0,4.807692307692308 -83,9.0,5.0,0.0,1.8561002591115965 -83,9.0,8.0,0.0,9.090909090909092 -83,9.0,9.0,9.506003688808882,-31.06631294767834 -83,9.0,19.0,-1.7848303152666305,3.98535828943083 -83,9.0,20.0,-5.101853820159654,10.98071411292983 -83,9.0,21.0,-2.619319553382597,5.400770303329455 -83,10.0,8.0,0.0,4.807692307692308 -83,10.0,10.0,0.0,-4.807692307692308 -83,11.0,3.0,0.0,4.191255364806866 -83,11.0,11.0,3.478565401119727,-18.326891794934408 -83,11.0,12.0,0.0,7.142857142857143 -83,11.0,13.0,-1.5265676088395577,3.1734252729654173 -83,11.0,15.0,-1.9519977922801688,4.104359379111847 -83,12.0,11.0,0.0,7.142857142857143 -83,12.0,12.0,0.0,-7.142857142857143 -83,13.0,11.0,-1.5265676088395577,3.1734252729654173 -83,13.0,13.0,4.01751987283902,-5.424299332335067 -83,13.0,14.0,-2.4909522639994623,2.250874059369649 -83,14.0,13.0,-2.4909522639994623,2.250874059369649 -83,14.0,14.0,6.270102363308326,-9.9143578677817 -83,14.0,17.0,-1.8108011504072024,3.687418931630696 -83,14.0,22.0,-1.9683489489016612,3.976064876781356 -83,15.0,11.0,-1.9519977922801688,4.104359379111847 -83,15.0,15.0,3.271064728633931,-8.94513365126506 -83,15.0,16.0,-1.3190669363537617,4.8407742721532125 -83,16.0,15.0,-1.3190669363537617,4.8407742721532125 -83,16.0,16.0,1.3190669363537617,-4.8407742721532125 -83,17.0,14.0,-1.8108011504072024,3.687418931630696 -83,17.0,17.0,4.886487584415919,-9.906177730909668 -83,17.0,18.0,-3.0756864340087167,6.218758799278971 -83,18.0,17.0,-3.0756864340087167,6.218758799278971 -83,18.0,18.0,3.0756864340087167,-6.218758799278971 -83,19.0,9.0,-1.7848303152666305,3.98535828943083 -83,19.0,19.0,1.7848303152666305,-3.98535828943083 -83,20.0,9.0,-5.101853820159654,10.98071411292983 -83,20.0,20.0,21.876495189895888,-45.10843276170355 -83,20.0,21.0,-16.774641369736234,34.127718648773715 -83,21.0,9.0,-2.619319553382597,5.400770303329455 -83,21.0,20.0,-16.774641369736234,34.127718648773715 -83,21.0,21.0,21.93449907537439,-43.48289181517921 -83,21.0,23.0,-2.5405381522555563,3.95440286307604 -83,22.0,14.0,-1.9683489489016612,3.976064876781356 -83,22.0,22.0,3.429754555384988,-6.965303617315433 -83,22.0,23.0,-1.4614056064833263,2.989238740534077 -83,23.0,21.0,-2.5405381522555563,3.95440286307604 -83,23.0,22.0,-1.4614056064833263,2.989238740534077 -83,23.0,23.0,5.311836702613133,-9.188263657315172 -83,23.0,24.0,-1.3098929438742493,2.287622053705056 -83,24.0,23.0,-1.3098929438742493,2.287622053705056 -83,24.0,24.0,4.495715080321987,-7.864978761969621 -83,24.0,25.0,-1.2165301194494855,1.8171440463475024 -83,24.0,26.0,-1.9692920169982515,3.760212661917064 -83,25.0,24.0,-1.2165301194494855,1.8171440463475024 -83,25.0,25.0,1.2165301194494855,-1.8171440463475024 -83,26.0,24.0,-1.9692920169982515,3.760212661917064 -83,26.0,26.0,3.652281470778589,-9.46044252232512 -83,26.0,27.0,0.0,2.608731947574922 -83,26.0,28.0,-0.99553355095268,1.881005840357816 -83,26.0,29.0,-0.6874559028276572,1.293971494797717 -83,27.0,5.0,-4.362844058012917,15.463571542897856 -83,27.0,7.0,-1.4439790613954469,4.540814658476248 -83,27.0,26.0,0.0,2.608731947574922 -83,27.0,27.0,5.806823119408364,-22.67145722159613 -83,28.0,26.0,-0.99553355095268,1.881005840357816 -83,28.0,28.0,1.9075867579849564,-3.604364401207048 -83,28.0,29.0,-0.9120532070322764,1.7233585608492326 -83,29.0,26.0,-0.6874559028276572,1.293971494797717 -83,29.0,28.0,-0.9120532070322764,1.7233585608492326 -83,29.0,29.0,1.5995091098599337,-3.0173300556469496 -84,0.0,0.0,6.765516048652632,-21.23160167089863 -84,0.0,1.0,-5.224646179885656,15.646726840803398 -84,0.0,2.0,-1.5408698687669766,5.631674830095234 -84,1.0,0.0,-5.224646179885656,15.646726840803398 -84,1.0,1.0,9.75228216552403,-30.648662892676068 -84,1.0,3.0,-1.7055303166990268,5.1973792282565086 -84,1.0,4.0,-1.1359607881738778,4.772479328281356 -84,1.0,5.0,-1.6861448807654689,5.116477495334806 -84,2.0,0.0,-1.5408698687669766,5.631674830095234 -84,2.0,2.0,9.736318911079088,-29.13794745915803 -84,2.0,3.0,-8.19544904231211,23.5308726290628 -84,3.0,1.0,-1.7055303166990268,5.1973792282565086 -84,3.0,2.0,-8.19544904231211,23.5308726290628 -84,3.0,3.0,16.314103089185693,-55.509410535254254 -84,3.0,5.0,-6.413123730174556,22.31120356548123 -84,3.0,11.0,0.0,4.191255364806866 -84,4.0,1.0,-1.1359607881738778,4.772479328281356 -84,4.0,4.0,4.089980824135861,-12.190647245055052 -84,4.0,6.0,-2.954020035961983,7.449267916773697 -84,5.0,1.0,-1.6861448807654689,5.116477495334806 -84,5.0,3.0,-6.413123730174556,22.31120356548123 -84,5.0,5.0,22.341631269034565,-82.8291478657789 -84,5.0,6.0,-3.590210423980992,11.02611441072814 -84,5.0,7.0,-6.289308176100628,22.0125786163522 -84,5.0,8.0,0.0,4.915840805411357 -84,5.0,9.0,0.0,1.8561002591115965 -84,5.0,27.0,-4.362844058012917,15.463571542897856 -84,6.0,4.0,-2.954020035961983,7.449267916773697 -84,6.0,5.0,-3.590210423980992,11.02611441072814 -84,6.0,6.0,6.544230459942975,-18.45668232750184 -84,7.0,5.0,-6.289308176100628,22.0125786163522 -84,7.0,7.0,7.733287237496075,-26.527493274828448 -84,7.0,27.0,-1.4439790613954469,4.540814658476248 -84,8.0,5.0,0.0,4.915840805411357 -84,8.0,8.0,0.0,-18.706293706293707 -84,8.0,9.0,0.0,9.090909090909092 -84,8.0,10.0,0.0,4.807692307692308 -84,9.0,5.0,0.0,1.8561002591115965 -84,9.0,8.0,0.0,9.090909090909092 -84,9.0,9.0,13.462042814524237,-41.3837606675224 -84,9.0,16.0,-3.956039125715353,10.317447719844054 -84,9.0,19.0,-1.7848303152666305,3.98535828943083 -84,9.0,20.0,-5.101853820159654,10.98071411292983 -84,9.0,21.0,-2.619319553382597,5.400770303329455 -84,10.0,8.0,0.0,4.807692307692308 -84,10.0,10.0,0.0,-4.807692307692308 -84,11.0,3.0,0.0,4.191255364806866 -84,11.0,11.0,6.573961583776156,-24.424167659260668 -84,11.0,12.0,0.0,7.142857142857143 -84,11.0,13.0,-1.5265676088395577,3.1734252729654173 -84,11.0,14.0,-3.0953961826564296,6.097275864326261 -84,11.0,15.0,-1.9519977922801688,4.104359379111847 -84,12.0,11.0,0.0,7.142857142857143 -84,12.0,12.0,0.0,-7.142857142857143 -84,13.0,11.0,-1.5265676088395577,3.1734252729654173 -84,13.0,13.0,4.01751987283902,-5.424299332335067 -84,13.0,14.0,-2.4909522639994623,2.250874059369649 -84,14.0,11.0,-3.0953961826564296,6.097275864326261 -84,14.0,13.0,-2.4909522639994623,2.250874059369649 -84,14.0,14.0,9.365498545964757,-16.01163373210796 -84,14.0,17.0,-1.8108011504072024,3.687418931630696 -84,14.0,22.0,-1.9683489489016612,3.976064876781356 -84,15.0,11.0,-1.9519977922801688,4.104359379111847 -84,15.0,15.0,3.271064728633931,-8.94513365126506 -84,15.0,16.0,-1.3190669363537617,4.8407742721532125 -84,16.0,9.0,-3.956039125715353,10.317447719844054 -84,16.0,15.0,-1.3190669363537617,4.8407742721532125 -84,16.0,16.0,5.275106062069114,-15.158221991997266 -84,17.0,14.0,-1.8108011504072024,3.687418931630696 -84,17.0,17.0,4.886487584415919,-9.906177730909668 -84,17.0,18.0,-3.0756864340087167,6.218758799278971 -84,18.0,17.0,-3.0756864340087167,6.218758799278971 -84,18.0,18.0,8.958039375185187,-17.98346468163191 -84,18.0,19.0,-5.88235294117647,11.76470588235294 -84,19.0,9.0,-1.7848303152666305,3.98535828943083 -84,19.0,18.0,-5.88235294117647,11.76470588235294 -84,19.0,19.0,7.6671832564431,-15.75006417178377 -84,20.0,9.0,-5.101853820159654,10.98071411292983 -84,20.0,20.0,21.876495189895888,-45.10843276170355 -84,20.0,21.0,-16.774641369736234,34.127718648773715 -84,21.0,9.0,-2.619319553382597,5.400770303329455 -84,21.0,20.0,-16.774641369736234,34.127718648773715 -84,21.0,21.0,21.93449907537439,-43.48289181517921 -84,21.0,23.0,-2.5405381522555563,3.95440286307604 -84,22.0,14.0,-1.9683489489016612,3.976064876781356 -84,22.0,22.0,3.429754555384988,-6.965303617315433 -84,22.0,23.0,-1.4614056064833263,2.989238740534077 -84,23.0,21.0,-2.5405381522555563,3.95440286307604 -84,23.0,22.0,-1.4614056064833263,2.989238740534077 -84,23.0,23.0,5.311836702613133,-9.188263657315172 -84,23.0,24.0,-1.3098929438742493,2.287622053705056 -84,24.0,23.0,-1.3098929438742493,2.287622053705056 -84,24.0,24.0,4.495715080321987,-7.864978761969621 -84,24.0,25.0,-1.2165301194494855,1.8171440463475024 -84,24.0,26.0,-1.9692920169982515,3.760212661917064 -84,25.0,24.0,-1.2165301194494855,1.8171440463475024 -84,25.0,25.0,1.2165301194494855,-1.8171440463475024 -84,26.0,24.0,-1.9692920169982515,3.760212661917064 -84,26.0,26.0,3.652281470778589,-9.46044252232512 -84,26.0,27.0,0.0,2.608731947574922 -84,26.0,28.0,-0.99553355095268,1.881005840357816 -84,26.0,29.0,-0.6874559028276572,1.293971494797717 -84,27.0,5.0,-4.362844058012917,15.463571542897856 -84,27.0,7.0,-1.4439790613954469,4.540814658476248 -84,27.0,26.0,0.0,2.608731947574922 -84,27.0,27.0,5.806823119408364,-22.67145722159613 -84,28.0,26.0,-0.99553355095268,1.881005840357816 -84,28.0,28.0,1.9075867579849564,-3.604364401207048 -84,28.0,29.0,-0.9120532070322764,1.7233585608492326 -84,29.0,26.0,-0.6874559028276572,1.293971494797717 -84,29.0,28.0,-0.9120532070322764,1.7233585608492326 -84,29.0,29.0,1.5995091098599337,-3.0173300556469496 -85,0.0,0.0,6.765516048652632,-21.23160167089863 -85,0.0,1.0,-5.224646179885656,15.646726840803398 -85,0.0,2.0,-1.5408698687669766,5.631674830095234 -85,1.0,0.0,-5.224646179885656,15.646726840803398 -85,1.0,1.0,9.75228216552403,-30.648662892676068 -85,1.0,3.0,-1.7055303166990268,5.1973792282565086 -85,1.0,4.0,-1.1359607881738778,4.772479328281356 -85,1.0,5.0,-1.6861448807654689,5.116477495334806 -85,2.0,0.0,-1.5408698687669766,5.631674830095234 -85,2.0,2.0,9.736318911079088,-29.13794745915803 -85,2.0,3.0,-8.19544904231211,23.5308726290628 -85,3.0,1.0,-1.7055303166990268,5.1973792282565086 -85,3.0,2.0,-8.19544904231211,23.5308726290628 -85,3.0,3.0,16.314103089185693,-55.509410535254254 -85,3.0,5.0,-6.413123730174556,22.31120356548123 -85,3.0,11.0,0.0,4.191255364806866 -85,4.0,1.0,-1.1359607881738778,4.772479328281356 -85,4.0,4.0,4.089980824135861,-12.190647245055052 -85,4.0,6.0,-2.954020035961983,7.449267916773697 -85,5.0,1.0,-1.6861448807654689,5.116477495334806 -85,5.0,3.0,-6.413123730174556,22.31120356548123 -85,5.0,5.0,22.341631269034565,-82.8291478657789 -85,5.0,6.0,-3.590210423980992,11.02611441072814 -85,5.0,7.0,-6.289308176100628,22.0125786163522 -85,5.0,8.0,0.0,4.915840805411357 -85,5.0,9.0,0.0,1.8561002591115965 -85,5.0,27.0,-4.362844058012917,15.463571542897856 -85,6.0,4.0,-2.954020035961983,7.449267916773697 -85,6.0,5.0,-3.590210423980992,11.02611441072814 -85,6.0,6.0,6.544230459942975,-18.45668232750184 -85,7.0,5.0,-6.289308176100628,22.0125786163522 -85,7.0,7.0,7.733287237496075,-26.527493274828448 -85,7.0,27.0,-1.4439790613954469,4.540814658476248 -85,8.0,5.0,0.0,4.915840805411357 -85,8.0,8.0,0.0,-18.706293706293707 -85,8.0,9.0,0.0,9.090909090909092 -85,8.0,10.0,0.0,4.807692307692308 -85,9.0,5.0,0.0,1.8561002591115965 -85,9.0,8.0,0.0,9.090909090909092 -85,9.0,9.0,13.462042814524237,-41.3837606675224 -85,9.0,16.0,-3.956039125715353,10.317447719844054 -85,9.0,19.0,-1.7848303152666305,3.98535828943083 -85,9.0,20.0,-5.101853820159654,10.98071411292983 -85,9.0,21.0,-2.619319553382597,5.400770303329455 -85,10.0,8.0,0.0,4.807692307692308 -85,10.0,10.0,0.0,-4.807692307692308 -85,11.0,3.0,0.0,4.191255364806866 -85,11.0,11.0,6.573961583776156,-24.424167659260668 -85,11.0,12.0,0.0,7.142857142857143 -85,11.0,13.0,-1.5265676088395577,3.1734252729654173 -85,11.0,14.0,-3.0953961826564296,6.097275864326261 -85,11.0,15.0,-1.9519977922801688,4.104359379111847 -85,12.0,11.0,0.0,7.142857142857143 -85,12.0,12.0,0.0,-7.142857142857143 -85,13.0,11.0,-1.5265676088395577,3.1734252729654173 -85,13.0,13.0,4.01751987283902,-5.424299332335067 -85,13.0,14.0,-2.4909522639994623,2.250874059369649 -85,14.0,11.0,-3.0953961826564296,6.097275864326261 -85,14.0,13.0,-2.4909522639994623,2.250874059369649 -85,14.0,14.0,9.365498545964757,-16.01163373210796 -85,14.0,17.0,-1.8108011504072024,3.687418931630696 -85,14.0,22.0,-1.9683489489016612,3.976064876781356 -85,15.0,11.0,-1.9519977922801688,4.104359379111847 -85,15.0,15.0,3.271064728633931,-8.94513365126506 -85,15.0,16.0,-1.3190669363537617,4.8407742721532125 -85,16.0,9.0,-3.956039125715353,10.317447719844054 -85,16.0,15.0,-1.3190669363537617,4.8407742721532125 -85,16.0,16.0,5.275106062069114,-15.158221991997266 -85,17.0,14.0,-1.8108011504072024,3.687418931630696 -85,17.0,17.0,4.886487584415919,-9.906177730909668 -85,17.0,18.0,-3.0756864340087167,6.218758799278971 -85,18.0,17.0,-3.0756864340087167,6.218758799278971 -85,18.0,18.0,8.958039375185187,-17.98346468163191 -85,18.0,19.0,-5.88235294117647,11.76470588235294 -85,19.0,9.0,-1.7848303152666305,3.98535828943083 -85,19.0,18.0,-5.88235294117647,11.76470588235294 -85,19.0,19.0,7.6671832564431,-15.75006417178377 -85,20.0,9.0,-5.101853820159654,10.98071411292983 -85,20.0,20.0,21.876495189895888,-45.10843276170355 -85,20.0,21.0,-16.774641369736234,34.127718648773715 -85,21.0,9.0,-2.619319553382597,5.400770303329455 -85,21.0,20.0,-16.774641369736234,34.127718648773715 -85,21.0,21.0,21.93449907537439,-43.48289181517921 -85,21.0,23.0,-2.5405381522555563,3.95440286307604 -85,22.0,14.0,-1.9683489489016612,3.976064876781356 -85,22.0,22.0,3.429754555384988,-6.965303617315433 -85,22.0,23.0,-1.4614056064833263,2.989238740534077 -85,23.0,21.0,-2.5405381522555563,3.95440286307604 -85,23.0,22.0,-1.4614056064833263,2.989238740534077 -85,23.0,23.0,5.311836702613133,-9.188263657315172 -85,23.0,24.0,-1.3098929438742493,2.287622053705056 -85,24.0,23.0,-1.3098929438742493,2.287622053705056 -85,24.0,24.0,4.495715080321987,-7.864978761969621 -85,24.0,25.0,-1.2165301194494855,1.8171440463475024 -85,24.0,26.0,-1.9692920169982515,3.760212661917064 -85,25.0,24.0,-1.2165301194494855,1.8171440463475024 -85,25.0,25.0,1.2165301194494855,-1.8171440463475024 -85,26.0,24.0,-1.9692920169982515,3.760212661917064 -85,26.0,26.0,3.652281470778589,-9.46044252232512 -85,26.0,27.0,0.0,2.608731947574922 -85,26.0,28.0,-0.99553355095268,1.881005840357816 -85,26.0,29.0,-0.6874559028276572,1.293971494797717 -85,27.0,5.0,-4.362844058012917,15.463571542897856 -85,27.0,7.0,-1.4439790613954469,4.540814658476248 -85,27.0,26.0,0.0,2.608731947574922 -85,27.0,27.0,5.806823119408364,-22.67145722159613 -85,28.0,26.0,-0.99553355095268,1.881005840357816 -85,28.0,28.0,1.9075867579849564,-3.604364401207048 -85,28.0,29.0,-0.9120532070322764,1.7233585608492326 -85,29.0,26.0,-0.6874559028276572,1.293971494797717 -85,29.0,28.0,-0.9120532070322764,1.7233585608492326 -85,29.0,29.0,1.5995091098599337,-3.0173300556469496 -86,0.0,0.0,6.765516048652632,-21.23160167089863 -86,0.0,1.0,-5.224646179885656,15.646726840803398 -86,0.0,2.0,-1.5408698687669766,5.631674830095234 -86,1.0,0.0,-5.224646179885656,15.646726840803398 -86,1.0,1.0,8.61632137735015,-25.897083564394716 -86,1.0,3.0,-1.7055303166990268,5.1973792282565086 -86,1.0,5.0,-1.6861448807654689,5.116477495334806 -86,2.0,0.0,-1.5408698687669766,5.631674830095234 -86,2.0,2.0,9.736318911079088,-29.13794745915803 -86,2.0,3.0,-8.19544904231211,23.5308726290628 -86,3.0,1.0,-1.7055303166990268,5.1973792282565086 -86,3.0,2.0,-8.19544904231211,23.5308726290628 -86,3.0,3.0,9.900979359011137,-33.202706969773025 -86,3.0,11.0,0.0,4.191255364806866 -86,4.0,4.0,2.954020035961983,-7.439067916773697 -86,4.0,6.0,-2.954020035961983,7.449267916773697 -86,5.0,1.0,-1.6861448807654689,5.116477495334806 -86,5.0,5.0,15.928507538860009,-58.60696415673565 -86,5.0,6.0,-3.590210423980992,11.02611441072814 -86,5.0,7.0,-6.289308176100628,22.0125786163522 -86,5.0,8.0,0.0,4.915840805411357 -86,5.0,27.0,-4.362844058012917,15.463571542897856 -86,6.0,4.0,-2.954020035961983,7.449267916773697 -86,6.0,5.0,-3.590210423980992,11.02611441072814 -86,6.0,6.0,6.544230459942975,-18.45668232750184 -86,7.0,5.0,-6.289308176100628,22.0125786163522 -86,7.0,7.0,7.733287237496075,-26.527493274828448 -86,7.0,27.0,-1.4439790613954469,4.540814658476248 -86,8.0,5.0,0.0,4.915840805411357 -86,8.0,8.0,0.0,-18.706293706293707 -86,8.0,9.0,0.0,9.090909090909092 -86,8.0,10.0,0.0,4.807692307692308 -86,9.0,8.0,0.0,9.090909090909092 -86,9.0,9.0,13.462042814524237,-39.58519951644326 -86,9.0,16.0,-3.956039125715353,10.317447719844054 -86,9.0,19.0,-1.7848303152666305,3.98535828943083 -86,9.0,20.0,-5.101853820159654,10.98071411292983 -86,9.0,21.0,-2.619319553382597,5.400770303329455 -86,10.0,8.0,0.0,4.807692307692308 -86,10.0,10.0,0.0,-4.807692307692308 -86,11.0,3.0,0.0,4.191255364806866 -86,11.0,11.0,6.573961583776156,-24.424167659260668 -86,11.0,12.0,0.0,7.142857142857143 -86,11.0,13.0,-1.5265676088395577,3.1734252729654173 -86,11.0,14.0,-3.0953961826564296,6.097275864326261 -86,11.0,15.0,-1.9519977922801688,4.104359379111847 -86,12.0,11.0,0.0,7.142857142857143 -86,12.0,12.0,0.0,-7.142857142857143 -86,13.0,11.0,-1.5265676088395577,3.1734252729654173 -86,13.0,13.0,4.01751987283902,-5.424299332335067 -86,13.0,14.0,-2.4909522639994623,2.250874059369649 -86,14.0,11.0,-3.0953961826564296,6.097275864326261 -86,14.0,13.0,-2.4909522639994623,2.250874059369649 -86,14.0,14.0,9.365498545964757,-16.01163373210796 -86,14.0,17.0,-1.8108011504072024,3.687418931630696 -86,14.0,22.0,-1.9683489489016612,3.976064876781356 -86,15.0,11.0,-1.9519977922801688,4.104359379111847 -86,15.0,15.0,3.271064728633931,-8.94513365126506 -86,15.0,16.0,-1.3190669363537617,4.8407742721532125 -86,16.0,9.0,-3.956039125715353,10.317447719844054 -86,16.0,15.0,-1.3190669363537617,4.8407742721532125 -86,16.0,16.0,5.275106062069114,-15.158221991997266 -86,17.0,14.0,-1.8108011504072024,3.687418931630696 -86,17.0,17.0,4.886487584415919,-9.906177730909668 -86,17.0,18.0,-3.0756864340087167,6.218758799278971 -86,18.0,17.0,-3.0756864340087167,6.218758799278971 -86,18.0,18.0,8.958039375185187,-17.98346468163191 -86,18.0,19.0,-5.88235294117647,11.76470588235294 -86,19.0,9.0,-1.7848303152666305,3.98535828943083 -86,19.0,18.0,-5.88235294117647,11.76470588235294 -86,19.0,19.0,7.6671832564431,-15.75006417178377 -86,20.0,9.0,-5.101853820159654,10.98071411292983 -86,20.0,20.0,21.876495189895888,-45.10843276170355 -86,20.0,21.0,-16.774641369736234,34.127718648773715 -86,21.0,9.0,-2.619319553382597,5.400770303329455 -86,21.0,20.0,-16.774641369736234,34.127718648773715 -86,21.0,21.0,21.93449907537439,-43.48289181517921 -86,21.0,23.0,-2.5405381522555563,3.95440286307604 -86,22.0,14.0,-1.9683489489016612,3.976064876781356 -86,22.0,22.0,3.429754555384988,-6.965303617315433 -86,22.0,23.0,-1.4614056064833263,2.989238740534077 -86,23.0,21.0,-2.5405381522555563,3.95440286307604 -86,23.0,22.0,-1.4614056064833263,2.989238740534077 -86,23.0,23.0,5.311836702613133,-9.188263657315172 -86,23.0,24.0,-1.3098929438742493,2.287622053705056 -86,24.0,23.0,-1.3098929438742493,2.287622053705056 -86,24.0,24.0,4.495715080321987,-7.864978761969621 -86,24.0,25.0,-1.2165301194494855,1.8171440463475024 -86,24.0,26.0,-1.9692920169982515,3.760212661917064 -86,25.0,24.0,-1.2165301194494855,1.8171440463475024 -86,25.0,25.0,1.2165301194494855,-1.8171440463475024 -86,26.0,24.0,-1.9692920169982515,3.760212661917064 -86,26.0,26.0,3.652281470778589,-9.46044252232512 -86,26.0,27.0,0.0,2.608731947574922 -86,26.0,28.0,-0.99553355095268,1.881005840357816 -86,26.0,29.0,-0.6874559028276572,1.293971494797717 -86,27.0,5.0,-4.362844058012917,15.463571542897856 -86,27.0,7.0,-1.4439790613954469,4.540814658476248 -86,27.0,26.0,0.0,2.608731947574922 -86,27.0,27.0,5.806823119408364,-22.67145722159613 -86,28.0,26.0,-0.99553355095268,1.881005840357816 -86,28.0,28.0,1.9075867579849564,-3.604364401207048 -86,28.0,29.0,-0.9120532070322764,1.7233585608492326 -86,29.0,26.0,-0.6874559028276572,1.293971494797717 -86,29.0,28.0,-0.9120532070322764,1.7233585608492326 -86,29.0,29.0,1.5995091098599337,-3.0173300556469496 -87,0.0,0.0,6.765516048652632,-21.23160167089863 -87,0.0,1.0,-5.224646179885656,15.646726840803398 -87,0.0,2.0,-1.5408698687669766,5.631674830095234 -87,1.0,0.0,-5.224646179885656,15.646726840803398 -87,1.0,1.0,9.75228216552403,-30.648662892676068 -87,1.0,3.0,-1.7055303166990268,5.1973792282565086 -87,1.0,4.0,-1.1359607881738778,4.772479328281356 -87,1.0,5.0,-1.6861448807654689,5.116477495334806 -87,2.0,0.0,-1.5408698687669766,5.631674830095234 -87,2.0,2.0,9.736318911079088,-29.13794745915803 -87,2.0,3.0,-8.19544904231211,23.5308726290628 -87,3.0,1.0,-1.7055303166990268,5.1973792282565086 -87,3.0,2.0,-8.19544904231211,23.5308726290628 -87,3.0,3.0,16.314103089185693,-55.509410535254254 -87,3.0,5.0,-6.413123730174556,22.31120356548123 -87,3.0,11.0,0.0,4.191255364806866 -87,4.0,1.0,-1.1359607881738778,4.772479328281356 -87,4.0,4.0,4.089980824135861,-12.190647245055052 -87,4.0,6.0,-2.954020035961983,7.449267916773697 -87,5.0,1.0,-1.6861448807654689,5.116477495334806 -87,5.0,3.0,-6.413123730174556,22.31120356548123 -87,5.0,5.0,22.341631269034565,-82.8291478657789 -87,5.0,6.0,-3.590210423980992,11.02611441072814 -87,5.0,7.0,-6.289308176100628,22.0125786163522 -87,5.0,8.0,0.0,4.915840805411357 -87,5.0,9.0,0.0,1.8561002591115965 -87,5.0,27.0,-4.362844058012917,15.463571542897856 -87,6.0,4.0,-2.954020035961983,7.449267916773697 -87,6.0,5.0,-3.590210423980992,11.02611441072814 -87,6.0,6.0,6.544230459942975,-18.45668232750184 -87,7.0,5.0,-6.289308176100628,22.0125786163522 -87,7.0,7.0,7.733287237496075,-26.527493274828448 -87,7.0,27.0,-1.4439790613954469,4.540814658476248 -87,8.0,5.0,0.0,4.915840805411357 -87,8.0,8.0,0.0,-18.706293706293707 -87,8.0,9.0,0.0,9.090909090909092 -87,8.0,10.0,0.0,4.807692307692308 -87,9.0,5.0,0.0,1.8561002591115965 -87,9.0,8.0,0.0,9.090909090909092 -87,9.0,9.0,13.462042814524237,-41.3837606675224 -87,9.0,16.0,-3.956039125715353,10.317447719844054 -87,9.0,19.0,-1.7848303152666305,3.98535828943083 -87,9.0,20.0,-5.101853820159654,10.98071411292983 -87,9.0,21.0,-2.619319553382597,5.400770303329455 -87,10.0,8.0,0.0,4.807692307692308 -87,10.0,10.0,0.0,-4.807692307692308 -87,11.0,3.0,0.0,4.191255364806866 -87,11.0,11.0,6.573961583776156,-24.424167659260668 -87,11.0,12.0,0.0,7.142857142857143 -87,11.0,13.0,-1.5265676088395577,3.1734252729654173 -87,11.0,14.0,-3.0953961826564296,6.097275864326261 -87,11.0,15.0,-1.9519977922801688,4.104359379111847 -87,12.0,11.0,0.0,7.142857142857143 -87,12.0,12.0,0.0,-7.142857142857143 -87,13.0,11.0,-1.5265676088395577,3.1734252729654173 -87,13.0,13.0,4.01751987283902,-5.424299332335067 -87,13.0,14.0,-2.4909522639994623,2.250874059369649 -87,14.0,11.0,-3.0953961826564296,6.097275864326261 -87,14.0,13.0,-2.4909522639994623,2.250874059369649 -87,14.0,14.0,9.365498545964757,-16.01163373210796 -87,14.0,17.0,-1.8108011504072024,3.687418931630696 -87,14.0,22.0,-1.9683489489016612,3.976064876781356 -87,15.0,11.0,-1.9519977922801688,4.104359379111847 -87,15.0,15.0,3.271064728633931,-8.94513365126506 -87,15.0,16.0,-1.3190669363537617,4.8407742721532125 -87,16.0,9.0,-3.956039125715353,10.317447719844054 -87,16.0,15.0,-1.3190669363537617,4.8407742721532125 -87,16.0,16.0,5.275106062069114,-15.158221991997266 -87,17.0,14.0,-1.8108011504072024,3.687418931630696 -87,17.0,17.0,4.886487584415919,-9.906177730909668 -87,17.0,18.0,-3.0756864340087167,6.218758799278971 -87,18.0,17.0,-3.0756864340087167,6.218758799278971 -87,18.0,18.0,8.958039375185187,-17.98346468163191 -87,18.0,19.0,-5.88235294117647,11.76470588235294 -87,19.0,9.0,-1.7848303152666305,3.98535828943083 -87,19.0,18.0,-5.88235294117647,11.76470588235294 -87,19.0,19.0,7.6671832564431,-15.75006417178377 -87,20.0,9.0,-5.101853820159654,10.98071411292983 -87,20.0,20.0,21.876495189895888,-45.10843276170355 -87,20.0,21.0,-16.774641369736234,34.127718648773715 -87,21.0,9.0,-2.619319553382597,5.400770303329455 -87,21.0,20.0,-16.774641369736234,34.127718648773715 -87,21.0,21.0,21.93449907537439,-43.48289181517921 -87,21.0,23.0,-2.5405381522555563,3.95440286307604 -87,22.0,14.0,-1.9683489489016612,3.976064876781356 -87,22.0,22.0,3.429754555384988,-6.965303617315433 -87,22.0,23.0,-1.4614056064833263,2.989238740534077 -87,23.0,21.0,-2.5405381522555563,3.95440286307604 -87,23.0,22.0,-1.4614056064833263,2.989238740534077 -87,23.0,23.0,5.311836702613133,-9.188263657315172 -87,23.0,24.0,-1.3098929438742493,2.287622053705056 -87,24.0,23.0,-1.3098929438742493,2.287622053705056 -87,24.0,24.0,4.495715080321987,-7.864978761969621 -87,24.0,25.0,-1.2165301194494855,1.8171440463475024 -87,24.0,26.0,-1.9692920169982515,3.760212661917064 -87,25.0,24.0,-1.2165301194494855,1.8171440463475024 -87,25.0,25.0,1.2165301194494855,-1.8171440463475024 -87,26.0,24.0,-1.9692920169982515,3.760212661917064 -87,26.0,26.0,3.652281470778589,-9.46044252232512 -87,26.0,27.0,0.0,2.608731947574922 -87,26.0,28.0,-0.99553355095268,1.881005840357816 -87,26.0,29.0,-0.6874559028276572,1.293971494797717 -87,27.0,5.0,-4.362844058012917,15.463571542897856 -87,27.0,7.0,-1.4439790613954469,4.540814658476248 -87,27.0,26.0,0.0,2.608731947574922 -87,27.0,27.0,5.806823119408364,-22.67145722159613 -87,28.0,26.0,-0.99553355095268,1.881005840357816 -87,28.0,28.0,1.9075867579849564,-3.604364401207048 -87,28.0,29.0,-0.9120532070322764,1.7233585608492326 -87,29.0,26.0,-0.6874559028276572,1.293971494797717 -87,29.0,28.0,-0.9120532070322764,1.7233585608492326 -87,29.0,29.0,1.5995091098599337,-3.0173300556469496 -88,0.0,0.0,6.765516048652632,-21.23160167089863 -88,0.0,1.0,-5.224646179885656,15.646726840803398 -88,0.0,2.0,-1.5408698687669766,5.631674830095234 -88,1.0,0.0,-5.224646179885656,15.646726840803398 -88,1.0,1.0,9.75228216552403,-30.648662892676068 -88,1.0,3.0,-1.7055303166990268,5.1973792282565086 -88,1.0,4.0,-1.1359607881738778,4.772479328281356 -88,1.0,5.0,-1.6861448807654689,5.116477495334806 -88,2.0,0.0,-1.5408698687669766,5.631674830095234 -88,2.0,2.0,9.736318911079088,-29.13794745915803 -88,2.0,3.0,-8.19544904231211,23.5308726290628 -88,3.0,1.0,-1.7055303166990268,5.1973792282565086 -88,3.0,2.0,-8.19544904231211,23.5308726290628 -88,3.0,3.0,16.314103089185693,-55.509410535254254 -88,3.0,5.0,-6.413123730174556,22.31120356548123 -88,3.0,11.0,0.0,4.191255364806866 -88,4.0,1.0,-1.1359607881738778,4.772479328281356 -88,4.0,4.0,4.089980824135861,-12.190647245055052 -88,4.0,6.0,-2.954020035961983,7.449267916773697 -88,5.0,1.0,-1.6861448807654689,5.116477495334806 -88,5.0,3.0,-6.413123730174556,22.31120356548123 -88,5.0,5.0,22.341631269034565,-82.8291478657789 -88,5.0,6.0,-3.590210423980992,11.02611441072814 -88,5.0,7.0,-6.289308176100628,22.0125786163522 -88,5.0,8.0,0.0,4.915840805411357 -88,5.0,9.0,0.0,1.8561002591115965 -88,5.0,27.0,-4.362844058012917,15.463571542897856 -88,6.0,4.0,-2.954020035961983,7.449267916773697 -88,6.0,5.0,-3.590210423980992,11.02611441072814 -88,6.0,6.0,6.544230459942975,-18.45668232750184 -88,7.0,5.0,-6.289308176100628,22.0125786163522 -88,7.0,7.0,7.733287237496075,-26.527493274828448 -88,7.0,27.0,-1.4439790613954469,4.540814658476248 -88,8.0,5.0,0.0,4.915840805411357 -88,8.0,8.0,0.0,-18.706293706293707 -88,8.0,9.0,0.0,9.090909090909092 -88,8.0,10.0,0.0,4.807692307692308 -88,9.0,5.0,0.0,1.8561002591115965 -88,9.0,8.0,0.0,9.090909090909092 -88,9.0,9.0,13.462042814524237,-41.3837606675224 -88,9.0,16.0,-3.956039125715353,10.317447719844054 -88,9.0,19.0,-1.7848303152666305,3.98535828943083 -88,9.0,20.0,-5.101853820159654,10.98071411292983 -88,9.0,21.0,-2.619319553382597,5.400770303329455 -88,10.0,8.0,0.0,4.807692307692308 -88,10.0,10.0,0.0,-4.807692307692308 -88,11.0,3.0,0.0,4.191255364806866 -88,11.0,11.0,6.573961583776156,-24.424167659260668 -88,11.0,12.0,0.0,7.142857142857143 -88,11.0,13.0,-1.5265676088395577,3.1734252729654173 -88,11.0,14.0,-3.0953961826564296,6.097275864326261 -88,11.0,15.0,-1.9519977922801688,4.104359379111847 -88,12.0,11.0,0.0,7.142857142857143 -88,12.0,12.0,0.0,-7.142857142857143 -88,13.0,11.0,-1.5265676088395577,3.1734252729654173 -88,13.0,13.0,4.01751987283902,-5.424299332335067 -88,13.0,14.0,-2.4909522639994623,2.250874059369649 -88,14.0,11.0,-3.0953961826564296,6.097275864326261 -88,14.0,13.0,-2.4909522639994623,2.250874059369649 -88,14.0,14.0,9.365498545964757,-16.01163373210796 -88,14.0,17.0,-1.8108011504072024,3.687418931630696 -88,14.0,22.0,-1.9683489489016612,3.976064876781356 -88,15.0,11.0,-1.9519977922801688,4.104359379111847 -88,15.0,15.0,3.271064728633931,-8.94513365126506 -88,15.0,16.0,-1.3190669363537617,4.8407742721532125 -88,16.0,9.0,-3.956039125715353,10.317447719844054 -88,16.0,15.0,-1.3190669363537617,4.8407742721532125 -88,16.0,16.0,5.275106062069114,-15.158221991997266 -88,17.0,14.0,-1.8108011504072024,3.687418931630696 -88,17.0,17.0,4.886487584415919,-9.906177730909668 -88,17.0,18.0,-3.0756864340087167,6.218758799278971 -88,18.0,17.0,-3.0756864340087167,6.218758799278971 -88,18.0,18.0,8.958039375185187,-17.98346468163191 -88,18.0,19.0,-5.88235294117647,11.76470588235294 -88,19.0,9.0,-1.7848303152666305,3.98535828943083 -88,19.0,18.0,-5.88235294117647,11.76470588235294 -88,19.0,19.0,7.6671832564431,-15.75006417178377 -88,20.0,9.0,-5.101853820159654,10.98071411292983 -88,20.0,20.0,21.876495189895888,-45.10843276170355 -88,20.0,21.0,-16.774641369736234,34.127718648773715 -88,21.0,9.0,-2.619319553382597,5.400770303329455 -88,21.0,20.0,-16.774641369736234,34.127718648773715 -88,21.0,21.0,21.93449907537439,-43.48289181517921 -88,21.0,23.0,-2.5405381522555563,3.95440286307604 -88,22.0,14.0,-1.9683489489016612,3.976064876781356 -88,22.0,22.0,3.429754555384988,-6.965303617315433 -88,22.0,23.0,-1.4614056064833263,2.989238740534077 -88,23.0,21.0,-2.5405381522555563,3.95440286307604 -88,23.0,22.0,-1.4614056064833263,2.989238740534077 -88,23.0,23.0,5.311836702613133,-9.188263657315172 -88,23.0,24.0,-1.3098929438742493,2.287622053705056 -88,24.0,23.0,-1.3098929438742493,2.287622053705056 -88,24.0,24.0,4.495715080321987,-7.864978761969621 -88,24.0,25.0,-1.2165301194494855,1.8171440463475024 -88,24.0,26.0,-1.9692920169982515,3.760212661917064 -88,25.0,24.0,-1.2165301194494855,1.8171440463475024 -88,25.0,25.0,1.2165301194494855,-1.8171440463475024 -88,26.0,24.0,-1.9692920169982515,3.760212661917064 -88,26.0,26.0,3.652281470778589,-9.46044252232512 -88,26.0,27.0,0.0,2.608731947574922 -88,26.0,28.0,-0.99553355095268,1.881005840357816 -88,26.0,29.0,-0.6874559028276572,1.293971494797717 -88,27.0,5.0,-4.362844058012917,15.463571542897856 -88,27.0,7.0,-1.4439790613954469,4.540814658476248 -88,27.0,26.0,0.0,2.608731947574922 -88,27.0,27.0,5.806823119408364,-22.67145722159613 -88,28.0,26.0,-0.99553355095268,1.881005840357816 -88,28.0,28.0,1.9075867579849564,-3.604364401207048 -88,28.0,29.0,-0.9120532070322764,1.7233585608492326 -88,29.0,26.0,-0.6874559028276572,1.293971494797717 -88,29.0,28.0,-0.9120532070322764,1.7233585608492326 -88,29.0,29.0,1.5995091098599337,-3.0173300556469496 -89,0.0,0.0,6.765516048652632,-21.23160167089863 -89,0.0,1.0,-5.224646179885656,15.646726840803398 -89,0.0,2.0,-1.5408698687669766,5.631674830095234 -89,1.0,0.0,-5.224646179885656,15.646726840803398 -89,1.0,1.0,9.75228216552403,-30.648662892676068 -89,1.0,3.0,-1.7055303166990268,5.1973792282565086 -89,1.0,4.0,-1.1359607881738778,4.772479328281356 -89,1.0,5.0,-1.6861448807654689,5.116477495334806 -89,2.0,0.0,-1.5408698687669766,5.631674830095234 -89,2.0,2.0,9.736318911079088,-29.13794745915803 -89,2.0,3.0,-8.19544904231211,23.5308726290628 -89,3.0,1.0,-1.7055303166990268,5.1973792282565086 -89,3.0,2.0,-8.19544904231211,23.5308726290628 -89,3.0,3.0,16.314103089185693,-55.509410535254254 -89,3.0,5.0,-6.413123730174556,22.31120356548123 -89,3.0,11.0,0.0,4.191255364806866 -89,4.0,1.0,-1.1359607881738778,4.772479328281356 -89,4.0,4.0,4.089980824135861,-12.190647245055052 -89,4.0,6.0,-2.954020035961983,7.449267916773697 -89,5.0,1.0,-1.6861448807654689,5.116477495334806 -89,5.0,3.0,-6.413123730174556,22.31120356548123 -89,5.0,5.0,22.341631269034565,-82.8291478657789 -89,5.0,6.0,-3.590210423980992,11.02611441072814 -89,5.0,7.0,-6.289308176100628,22.0125786163522 -89,5.0,8.0,0.0,4.915840805411357 -89,5.0,9.0,0.0,1.8561002591115965 -89,5.0,27.0,-4.362844058012917,15.463571542897856 -89,6.0,4.0,-2.954020035961983,7.449267916773697 -89,6.0,5.0,-3.590210423980992,11.02611441072814 -89,6.0,6.0,6.544230459942975,-18.45668232750184 -89,7.0,5.0,-6.289308176100628,22.0125786163522 -89,7.0,7.0,7.733287237496075,-26.527493274828448 -89,7.0,27.0,-1.4439790613954469,4.540814658476248 -89,8.0,5.0,0.0,4.915840805411357 -89,8.0,8.0,0.0,-18.706293706293707 -89,8.0,9.0,0.0,9.090909090909092 -89,8.0,10.0,0.0,4.807692307692308 -89,9.0,5.0,0.0,1.8561002591115965 -89,9.0,8.0,0.0,9.090909090909092 -89,9.0,9.0,13.462042814524237,-41.3837606675224 -89,9.0,16.0,-3.956039125715353,10.317447719844054 -89,9.0,19.0,-1.7848303152666305,3.98535828943083 -89,9.0,20.0,-5.101853820159654,10.98071411292983 -89,9.0,21.0,-2.619319553382597,5.400770303329455 -89,10.0,8.0,0.0,4.807692307692308 -89,10.0,10.0,0.0,-4.807692307692308 -89,11.0,3.0,0.0,4.191255364806866 -89,11.0,11.0,6.573961583776156,-24.424167659260668 -89,11.0,12.0,0.0,7.142857142857143 -89,11.0,13.0,-1.5265676088395577,3.1734252729654173 -89,11.0,14.0,-3.0953961826564296,6.097275864326261 -89,11.0,15.0,-1.9519977922801688,4.104359379111847 -89,12.0,11.0,0.0,7.142857142857143 -89,12.0,12.0,0.0,-7.142857142857143 -89,13.0,11.0,-1.5265676088395577,3.1734252729654173 -89,13.0,13.0,4.01751987283902,-5.424299332335067 -89,13.0,14.0,-2.4909522639994623,2.250874059369649 -89,14.0,11.0,-3.0953961826564296,6.097275864326261 -89,14.0,13.0,-2.4909522639994623,2.250874059369649 -89,14.0,14.0,9.365498545964757,-16.01163373210796 -89,14.0,17.0,-1.8108011504072024,3.687418931630696 -89,14.0,22.0,-1.9683489489016612,3.976064876781356 -89,15.0,11.0,-1.9519977922801688,4.104359379111847 -89,15.0,15.0,3.271064728633931,-8.94513365126506 -89,15.0,16.0,-1.3190669363537617,4.8407742721532125 -89,16.0,9.0,-3.956039125715353,10.317447719844054 -89,16.0,15.0,-1.3190669363537617,4.8407742721532125 -89,16.0,16.0,5.275106062069114,-15.158221991997266 -89,17.0,14.0,-1.8108011504072024,3.687418931630696 -89,17.0,17.0,4.886487584415919,-9.906177730909668 -89,17.0,18.0,-3.0756864340087167,6.218758799278971 -89,18.0,17.0,-3.0756864340087167,6.218758799278971 -89,18.0,18.0,8.958039375185187,-17.98346468163191 -89,18.0,19.0,-5.88235294117647,11.76470588235294 -89,19.0,9.0,-1.7848303152666305,3.98535828943083 -89,19.0,18.0,-5.88235294117647,11.76470588235294 -89,19.0,19.0,7.6671832564431,-15.75006417178377 -89,20.0,9.0,-5.101853820159654,10.98071411292983 -89,20.0,20.0,21.876495189895888,-45.10843276170355 -89,20.0,21.0,-16.774641369736234,34.127718648773715 -89,21.0,9.0,-2.619319553382597,5.400770303329455 -89,21.0,20.0,-16.774641369736234,34.127718648773715 -89,21.0,21.0,21.93449907537439,-43.48289181517921 -89,21.0,23.0,-2.5405381522555563,3.95440286307604 -89,22.0,14.0,-1.9683489489016612,3.976064876781356 -89,22.0,22.0,3.429754555384988,-6.965303617315433 -89,22.0,23.0,-1.4614056064833263,2.989238740534077 -89,23.0,21.0,-2.5405381522555563,3.95440286307604 -89,23.0,22.0,-1.4614056064833263,2.989238740534077 -89,23.0,23.0,5.311836702613133,-9.188263657315172 -89,23.0,24.0,-1.3098929438742493,2.287622053705056 -89,24.0,23.0,-1.3098929438742493,2.287622053705056 -89,24.0,24.0,4.495715080321987,-7.864978761969621 -89,24.0,25.0,-1.2165301194494855,1.8171440463475024 -89,24.0,26.0,-1.9692920169982515,3.760212661917064 -89,25.0,24.0,-1.2165301194494855,1.8171440463475024 -89,25.0,25.0,1.2165301194494855,-1.8171440463475024 -89,26.0,24.0,-1.9692920169982515,3.760212661917064 -89,26.0,26.0,3.652281470778589,-9.46044252232512 -89,26.0,27.0,0.0,2.608731947574922 -89,26.0,28.0,-0.99553355095268,1.881005840357816 -89,26.0,29.0,-0.6874559028276572,1.293971494797717 -89,27.0,5.0,-4.362844058012917,15.463571542897856 -89,27.0,7.0,-1.4439790613954469,4.540814658476248 -89,27.0,26.0,0.0,2.608731947574922 -89,27.0,27.0,5.806823119408364,-22.67145722159613 -89,28.0,26.0,-0.99553355095268,1.881005840357816 -89,28.0,28.0,1.9075867579849564,-3.604364401207048 -89,28.0,29.0,-0.9120532070322764,1.7233585608492326 -89,29.0,26.0,-0.6874559028276572,1.293971494797717 -89,29.0,28.0,-0.9120532070322764,1.7233585608492326 -89,29.0,29.0,1.5995091098599337,-3.0173300556469496 -90,0.0,0.0,6.765516048652632,-21.23160167089863 -90,0.0,1.0,-5.224646179885656,15.646726840803398 -90,0.0,2.0,-1.5408698687669766,5.631674830095234 -90,1.0,0.0,-5.224646179885656,15.646726840803398 -90,1.0,1.0,9.75228216552403,-30.648662892676068 -90,1.0,3.0,-1.7055303166990268,5.1973792282565086 -90,1.0,4.0,-1.1359607881738778,4.772479328281356 -90,1.0,5.0,-1.6861448807654689,5.116477495334806 -90,2.0,0.0,-1.5408698687669766,5.631674830095234 -90,2.0,2.0,9.736318911079088,-29.13794745915803 -90,2.0,3.0,-8.19544904231211,23.5308726290628 -90,3.0,1.0,-1.7055303166990268,5.1973792282565086 -90,3.0,2.0,-8.19544904231211,23.5308726290628 -90,3.0,3.0,16.314103089185693,-55.509410535254254 -90,3.0,5.0,-6.413123730174556,22.31120356548123 -90,3.0,11.0,0.0,4.191255364806866 -90,4.0,1.0,-1.1359607881738778,4.772479328281356 -90,4.0,4.0,4.089980824135861,-12.190647245055052 -90,4.0,6.0,-2.954020035961983,7.449267916773697 -90,5.0,1.0,-1.6861448807654689,5.116477495334806 -90,5.0,3.0,-6.413123730174556,22.31120356548123 -90,5.0,5.0,22.341631269034565,-82.8291478657789 -90,5.0,6.0,-3.590210423980992,11.02611441072814 -90,5.0,7.0,-6.289308176100628,22.0125786163522 -90,5.0,8.0,0.0,4.915840805411357 -90,5.0,9.0,0.0,1.8561002591115965 -90,5.0,27.0,-4.362844058012917,15.463571542897856 -90,6.0,4.0,-2.954020035961983,7.449267916773697 -90,6.0,5.0,-3.590210423980992,11.02611441072814 -90,6.0,6.0,6.544230459942975,-18.45668232750184 -90,7.0,5.0,-6.289308176100628,22.0125786163522 -90,7.0,7.0,7.733287237496075,-26.527493274828448 -90,7.0,27.0,-1.4439790613954469,4.540814658476248 -90,8.0,5.0,0.0,4.915840805411357 -90,8.0,8.0,0.0,-18.706293706293707 -90,8.0,9.0,0.0,9.090909090909092 -90,8.0,10.0,0.0,4.807692307692308 -90,9.0,5.0,0.0,1.8561002591115965 -90,9.0,8.0,0.0,9.090909090909092 -90,9.0,9.0,8.36018899436458,-30.40304655459257 -90,9.0,16.0,-3.956039125715353,10.317447719844054 -90,9.0,19.0,-1.7848303152666305,3.98535828943083 -90,9.0,21.0,-2.619319553382597,5.400770303329455 -90,10.0,8.0,0.0,4.807692307692308 -90,10.0,10.0,0.0,-4.807692307692308 -90,11.0,3.0,0.0,4.191255364806866 -90,11.0,11.0,6.573961583776156,-24.424167659260668 -90,11.0,12.0,0.0,7.142857142857143 -90,11.0,13.0,-1.5265676088395577,3.1734252729654173 -90,11.0,14.0,-3.0953961826564296,6.097275864326261 -90,11.0,15.0,-1.9519977922801688,4.104359379111847 -90,12.0,11.0,0.0,7.142857142857143 -90,12.0,12.0,0.0,-7.142857142857143 -90,13.0,11.0,-1.5265676088395577,3.1734252729654173 -90,13.0,13.0,4.01751987283902,-5.424299332335067 -90,13.0,14.0,-2.4909522639994623,2.250874059369649 -90,14.0,11.0,-3.0953961826564296,6.097275864326261 -90,14.0,13.0,-2.4909522639994623,2.250874059369649 -90,14.0,14.0,9.365498545964757,-16.01163373210796 -90,14.0,17.0,-1.8108011504072024,3.687418931630696 -90,14.0,22.0,-1.9683489489016612,3.976064876781356 -90,15.0,11.0,-1.9519977922801688,4.104359379111847 -90,15.0,15.0,3.271064728633931,-8.94513365126506 -90,15.0,16.0,-1.3190669363537617,4.8407742721532125 -90,16.0,9.0,-3.956039125715353,10.317447719844054 -90,16.0,15.0,-1.3190669363537617,4.8407742721532125 -90,16.0,16.0,5.275106062069114,-15.158221991997266 -90,17.0,14.0,-1.8108011504072024,3.687418931630696 -90,17.0,17.0,4.886487584415919,-9.906177730909668 -90,17.0,18.0,-3.0756864340087167,6.218758799278971 -90,18.0,17.0,-3.0756864340087167,6.218758799278971 -90,18.0,18.0,8.958039375185187,-17.98346468163191 -90,18.0,19.0,-5.88235294117647,11.76470588235294 -90,19.0,9.0,-1.7848303152666305,3.98535828943083 -90,19.0,18.0,-5.88235294117647,11.76470588235294 -90,19.0,19.0,7.6671832564431,-15.75006417178377 -90,20.0,20.0,16.774641369736234,-34.127718648773715 -90,20.0,21.0,-16.774641369736234,34.127718648773715 -90,21.0,9.0,-2.619319553382597,5.400770303329455 -90,21.0,20.0,-16.774641369736234,34.127718648773715 -90,21.0,21.0,21.93449907537439,-43.48289181517921 -90,21.0,23.0,-2.5405381522555563,3.95440286307604 -90,22.0,14.0,-1.9683489489016612,3.976064876781356 -90,22.0,22.0,3.429754555384988,-6.965303617315433 -90,22.0,23.0,-1.4614056064833263,2.989238740534077 -90,23.0,21.0,-2.5405381522555563,3.95440286307604 -90,23.0,22.0,-1.4614056064833263,2.989238740534077 -90,23.0,23.0,5.311836702613133,-9.188263657315172 -90,23.0,24.0,-1.3098929438742493,2.287622053705056 -90,24.0,23.0,-1.3098929438742493,2.287622053705056 -90,24.0,24.0,4.495715080321987,-7.864978761969621 -90,24.0,25.0,-1.2165301194494855,1.8171440463475024 -90,24.0,26.0,-1.9692920169982515,3.760212661917064 -90,25.0,24.0,-1.2165301194494855,1.8171440463475024 -90,25.0,25.0,1.2165301194494855,-1.8171440463475024 -90,26.0,24.0,-1.9692920169982515,3.760212661917064 -90,26.0,26.0,3.652281470778589,-9.46044252232512 -90,26.0,27.0,0.0,2.608731947574922 -90,26.0,28.0,-0.99553355095268,1.881005840357816 -90,26.0,29.0,-0.6874559028276572,1.293971494797717 -90,27.0,5.0,-4.362844058012917,15.463571542897856 -90,27.0,7.0,-1.4439790613954469,4.540814658476248 -90,27.0,26.0,0.0,2.608731947574922 -90,27.0,27.0,5.806823119408364,-22.67145722159613 -90,28.0,26.0,-0.99553355095268,1.881005840357816 -90,28.0,28.0,1.9075867579849564,-3.604364401207048 -90,28.0,29.0,-0.9120532070322764,1.7233585608492326 -90,29.0,26.0,-0.6874559028276572,1.293971494797717 -90,29.0,28.0,-0.9120532070322764,1.7233585608492326 -90,29.0,29.0,1.5995091098599337,-3.0173300556469496 -91,0.0,0.0,6.765516048652632,-21.23160167089863 -91,0.0,1.0,-5.224646179885656,15.646726840803398 -91,0.0,2.0,-1.5408698687669766,5.631674830095234 -91,1.0,0.0,-5.224646179885656,15.646726840803398 -91,1.0,1.0,9.75228216552403,-30.648662892676068 -91,1.0,3.0,-1.7055303166990268,5.1973792282565086 -91,1.0,4.0,-1.1359607881738778,4.772479328281356 -91,1.0,5.0,-1.6861448807654689,5.116477495334806 -91,2.0,0.0,-1.5408698687669766,5.631674830095234 -91,2.0,2.0,9.736318911079088,-29.13794745915803 -91,2.0,3.0,-8.19544904231211,23.5308726290628 -91,3.0,1.0,-1.7055303166990268,5.1973792282565086 -91,3.0,2.0,-8.19544904231211,23.5308726290628 -91,3.0,3.0,16.314103089185693,-55.509410535254254 -91,3.0,5.0,-6.413123730174556,22.31120356548123 -91,3.0,11.0,0.0,4.191255364806866 -91,4.0,1.0,-1.1359607881738778,4.772479328281356 -91,4.0,4.0,4.089980824135861,-12.190647245055052 -91,4.0,6.0,-2.954020035961983,7.449267916773697 -91,5.0,1.0,-1.6861448807654689,5.116477495334806 -91,5.0,3.0,-6.413123730174556,22.31120356548123 -91,5.0,5.0,22.341631269034565,-82.8291478657789 -91,5.0,6.0,-3.590210423980992,11.02611441072814 -91,5.0,7.0,-6.289308176100628,22.0125786163522 -91,5.0,8.0,0.0,4.915840805411357 -91,5.0,9.0,0.0,1.8561002591115965 -91,5.0,27.0,-4.362844058012917,15.463571542897856 -91,6.0,4.0,-2.954020035961983,7.449267916773697 -91,6.0,5.0,-3.590210423980992,11.02611441072814 -91,6.0,6.0,6.544230459942975,-18.45668232750184 -91,7.0,5.0,-6.289308176100628,22.0125786163522 -91,7.0,7.0,7.733287237496075,-26.527493274828448 -91,7.0,27.0,-1.4439790613954469,4.540814658476248 -91,8.0,5.0,0.0,4.915840805411357 -91,8.0,8.0,0.0,-9.615384615384617 -91,8.0,10.0,0.0,4.807692307692308 -91,9.0,5.0,0.0,1.8561002591115965 -91,9.0,9.0,13.462042814524237,-32.29285157661331 -91,9.0,16.0,-3.956039125715353,10.317447719844054 -91,9.0,19.0,-1.7848303152666305,3.98535828943083 -91,9.0,20.0,-5.101853820159654,10.98071411292983 -91,9.0,21.0,-2.619319553382597,5.400770303329455 -91,10.0,8.0,0.0,4.807692307692308 -91,10.0,10.0,0.0,-4.807692307692308 -91,11.0,3.0,0.0,4.191255364806866 -91,11.0,11.0,6.573961583776156,-24.424167659260668 -91,11.0,12.0,0.0,7.142857142857143 -91,11.0,13.0,-1.5265676088395577,3.1734252729654173 -91,11.0,14.0,-3.0953961826564296,6.097275864326261 -91,11.0,15.0,-1.9519977922801688,4.104359379111847 -91,12.0,11.0,0.0,7.142857142857143 -91,12.0,12.0,0.0,-7.142857142857143 -91,13.0,11.0,-1.5265676088395577,3.1734252729654173 -91,13.0,13.0,4.01751987283902,-5.424299332335067 -91,13.0,14.0,-2.4909522639994623,2.250874059369649 -91,14.0,11.0,-3.0953961826564296,6.097275864326261 -91,14.0,13.0,-2.4909522639994623,2.250874059369649 -91,14.0,14.0,9.365498545964757,-16.01163373210796 -91,14.0,17.0,-1.8108011504072024,3.687418931630696 -91,14.0,22.0,-1.9683489489016612,3.976064876781356 -91,15.0,11.0,-1.9519977922801688,4.104359379111847 -91,15.0,15.0,3.271064728633931,-8.94513365126506 -91,15.0,16.0,-1.3190669363537617,4.8407742721532125 -91,16.0,9.0,-3.956039125715353,10.317447719844054 -91,16.0,15.0,-1.3190669363537617,4.8407742721532125 -91,16.0,16.0,5.275106062069114,-15.158221991997266 -91,17.0,14.0,-1.8108011504072024,3.687418931630696 -91,17.0,17.0,4.886487584415919,-9.906177730909668 -91,17.0,18.0,-3.0756864340087167,6.218758799278971 -91,18.0,17.0,-3.0756864340087167,6.218758799278971 -91,18.0,18.0,8.958039375185187,-17.98346468163191 -91,18.0,19.0,-5.88235294117647,11.76470588235294 -91,19.0,9.0,-1.7848303152666305,3.98535828943083 -91,19.0,18.0,-5.88235294117647,11.76470588235294 -91,19.0,19.0,7.6671832564431,-15.75006417178377 -91,20.0,9.0,-5.101853820159654,10.98071411292983 -91,20.0,20.0,21.876495189895888,-45.10843276170355 -91,20.0,21.0,-16.774641369736234,34.127718648773715 -91,21.0,9.0,-2.619319553382597,5.400770303329455 -91,21.0,20.0,-16.774641369736234,34.127718648773715 -91,21.0,21.0,21.93449907537439,-43.48289181517921 -91,21.0,23.0,-2.5405381522555563,3.95440286307604 -91,22.0,14.0,-1.9683489489016612,3.976064876781356 -91,22.0,22.0,3.429754555384988,-6.965303617315433 -91,22.0,23.0,-1.4614056064833263,2.989238740534077 -91,23.0,21.0,-2.5405381522555563,3.95440286307604 -91,23.0,22.0,-1.4614056064833263,2.989238740534077 -91,23.0,23.0,5.311836702613133,-9.188263657315172 -91,23.0,24.0,-1.3098929438742493,2.287622053705056 -91,24.0,23.0,-1.3098929438742493,2.287622053705056 -91,24.0,24.0,4.495715080321987,-7.864978761969621 -91,24.0,25.0,-1.2165301194494855,1.8171440463475024 -91,24.0,26.0,-1.9692920169982515,3.760212661917064 -91,25.0,24.0,-1.2165301194494855,1.8171440463475024 -91,25.0,25.0,1.2165301194494855,-1.8171440463475024 -91,26.0,24.0,-1.9692920169982515,3.760212661917064 -91,26.0,26.0,3.652281470778589,-9.46044252232512 -91,26.0,27.0,0.0,2.608731947574922 -91,26.0,28.0,-0.99553355095268,1.881005840357816 -91,26.0,29.0,-0.6874559028276572,1.293971494797717 -91,27.0,5.0,-4.362844058012917,15.463571542897856 -91,27.0,7.0,-1.4439790613954469,4.540814658476248 -91,27.0,26.0,0.0,2.608731947574922 -91,27.0,27.0,5.806823119408364,-22.67145722159613 -91,28.0,26.0,-0.99553355095268,1.881005840357816 -91,28.0,28.0,1.9075867579849564,-3.604364401207048 -91,28.0,29.0,-0.9120532070322764,1.7233585608492326 -91,29.0,26.0,-0.6874559028276572,1.293971494797717 -91,29.0,28.0,-0.9120532070322764,1.7233585608492326 -91,29.0,29.0,1.5995091098599337,-3.0173300556469496 -92,0.0,0.0,1.5408698687669766,-5.611274830095233 -92,0.0,2.0,-1.5408698687669766,5.631674830095234 -92,1.0,1.0,4.527635985638374,-15.028336051872673 -92,1.0,3.0,-1.7055303166990268,5.1973792282565086 -92,1.0,4.0,-1.1359607881738778,4.772479328281356 -92,1.0,5.0,-1.6861448807654689,5.116477495334806 -92,2.0,0.0,-1.5408698687669766,5.631674830095234 -92,2.0,2.0,9.736318911079088,-29.13794745915803 -92,2.0,3.0,-8.19544904231211,23.5308726290628 -92,3.0,1.0,-1.7055303166990268,5.1973792282565086 -92,3.0,2.0,-8.19544904231211,23.5308726290628 -92,3.0,3.0,16.314103089185693,-55.509410535254254 -92,3.0,5.0,-6.413123730174556,22.31120356548123 -92,3.0,11.0,0.0,4.191255364806866 -92,4.0,1.0,-1.1359607881738778,4.772479328281356 -92,4.0,4.0,1.1359607881738778,-4.751579328281355 -92,5.0,1.0,-1.6861448807654689,5.116477495334806 -92,5.0,3.0,-6.413123730174556,22.31120356548123 -92,5.0,5.0,22.341631269034565,-82.8291478657789 -92,5.0,6.0,-3.590210423980992,11.02611441072814 -92,5.0,7.0,-6.289308176100628,22.0125786163522 -92,5.0,8.0,0.0,4.915840805411357 -92,5.0,9.0,0.0,1.8561002591115965 -92,5.0,27.0,-4.362844058012917,15.463571542897856 -92,6.0,5.0,-3.590210423980992,11.02611441072814 -92,6.0,6.0,3.590210423980992,-11.01761441072814 -92,7.0,5.0,-6.289308176100628,22.0125786163522 -92,7.0,7.0,7.733287237496075,-26.527493274828448 -92,7.0,27.0,-1.4439790613954469,4.540814658476248 -92,8.0,5.0,0.0,4.915840805411357 -92,8.0,8.0,0.0,-18.706293706293707 -92,8.0,9.0,0.0,9.090909090909092 -92,8.0,10.0,0.0,4.807692307692308 -92,9.0,5.0,0.0,1.8561002591115965 -92,9.0,8.0,0.0,9.090909090909092 -92,9.0,9.0,13.462042814524237,-41.3837606675224 -92,9.0,16.0,-3.956039125715353,10.317447719844054 -92,9.0,19.0,-1.7848303152666305,3.98535828943083 -92,9.0,20.0,-5.101853820159654,10.98071411292983 -92,9.0,21.0,-2.619319553382597,5.400770303329455 -92,10.0,8.0,0.0,4.807692307692308 -92,10.0,10.0,0.0,-4.807692307692308 -92,11.0,3.0,0.0,4.191255364806866 -92,11.0,11.0,6.573961583776156,-24.424167659260668 -92,11.0,12.0,0.0,7.142857142857143 -92,11.0,13.0,-1.5265676088395577,3.1734252729654173 -92,11.0,14.0,-3.0953961826564296,6.097275864326261 -92,11.0,15.0,-1.9519977922801688,4.104359379111847 -92,12.0,11.0,0.0,7.142857142857143 -92,12.0,12.0,0.0,-7.142857142857143 -92,13.0,11.0,-1.5265676088395577,3.1734252729654173 -92,13.0,13.0,4.01751987283902,-5.424299332335067 -92,13.0,14.0,-2.4909522639994623,2.250874059369649 -92,14.0,11.0,-3.0953961826564296,6.097275864326261 -92,14.0,13.0,-2.4909522639994623,2.250874059369649 -92,14.0,14.0,9.365498545964757,-16.01163373210796 -92,14.0,17.0,-1.8108011504072024,3.687418931630696 -92,14.0,22.0,-1.9683489489016612,3.976064876781356 -92,15.0,11.0,-1.9519977922801688,4.104359379111847 -92,15.0,15.0,3.271064728633931,-8.94513365126506 -92,15.0,16.0,-1.3190669363537617,4.8407742721532125 -92,16.0,9.0,-3.956039125715353,10.317447719844054 -92,16.0,15.0,-1.3190669363537617,4.8407742721532125 -92,16.0,16.0,5.275106062069114,-15.158221991997266 -92,17.0,14.0,-1.8108011504072024,3.687418931630696 -92,17.0,17.0,4.886487584415919,-9.906177730909668 -92,17.0,18.0,-3.0756864340087167,6.218758799278971 -92,18.0,17.0,-3.0756864340087167,6.218758799278971 -92,18.0,18.0,8.958039375185187,-17.98346468163191 -92,18.0,19.0,-5.88235294117647,11.76470588235294 -92,19.0,9.0,-1.7848303152666305,3.98535828943083 -92,19.0,18.0,-5.88235294117647,11.76470588235294 -92,19.0,19.0,7.6671832564431,-15.75006417178377 -92,20.0,9.0,-5.101853820159654,10.98071411292983 -92,20.0,20.0,21.876495189895888,-45.10843276170355 -92,20.0,21.0,-16.774641369736234,34.127718648773715 -92,21.0,9.0,-2.619319553382597,5.400770303329455 -92,21.0,20.0,-16.774641369736234,34.127718648773715 -92,21.0,21.0,21.93449907537439,-43.48289181517921 -92,21.0,23.0,-2.5405381522555563,3.95440286307604 -92,22.0,14.0,-1.9683489489016612,3.976064876781356 -92,22.0,22.0,3.429754555384988,-6.965303617315433 -92,22.0,23.0,-1.4614056064833263,2.989238740534077 -92,23.0,21.0,-2.5405381522555563,3.95440286307604 -92,23.0,22.0,-1.4614056064833263,2.989238740534077 -92,23.0,23.0,5.311836702613133,-9.188263657315172 -92,23.0,24.0,-1.3098929438742493,2.287622053705056 -92,24.0,23.0,-1.3098929438742493,2.287622053705056 -92,24.0,24.0,4.495715080321987,-7.864978761969621 -92,24.0,25.0,-1.2165301194494855,1.8171440463475024 -92,24.0,26.0,-1.9692920169982515,3.760212661917064 -92,25.0,24.0,-1.2165301194494855,1.8171440463475024 -92,25.0,25.0,1.2165301194494855,-1.8171440463475024 -92,26.0,24.0,-1.9692920169982515,3.760212661917064 -92,26.0,26.0,3.652281470778589,-9.46044252232512 -92,26.0,27.0,0.0,2.608731947574922 -92,26.0,28.0,-0.99553355095268,1.881005840357816 -92,26.0,29.0,-0.6874559028276572,1.293971494797717 -92,27.0,5.0,-4.362844058012917,15.463571542897856 -92,27.0,7.0,-1.4439790613954469,4.540814658476248 -92,27.0,26.0,0.0,2.608731947574922 -92,27.0,27.0,5.806823119408364,-22.67145722159613 -92,28.0,26.0,-0.99553355095268,1.881005840357816 -92,28.0,28.0,1.9075867579849564,-3.604364401207048 -92,28.0,29.0,-0.9120532070322764,1.7233585608492326 -92,29.0,26.0,-0.6874559028276572,1.293971494797717 -92,29.0,28.0,-0.9120532070322764,1.7233585608492326 -92,29.0,29.0,1.5995091098599337,-3.0173300556469496 -93,0.0,0.0,6.765516048652632,-21.23160167089863 -93,0.0,1.0,-5.224646179885656,15.646726840803398 -93,0.0,2.0,-1.5408698687669766,5.631674830095234 -93,1.0,0.0,-5.224646179885656,15.646726840803398 -93,1.0,1.0,9.75228216552403,-30.648662892676068 -93,1.0,3.0,-1.7055303166990268,5.1973792282565086 -93,1.0,4.0,-1.1359607881738778,4.772479328281356 -93,1.0,5.0,-1.6861448807654689,5.116477495334806 -93,2.0,0.0,-1.5408698687669766,5.631674830095234 -93,2.0,2.0,9.736318911079088,-29.13794745915803 -93,2.0,3.0,-8.19544904231211,23.5308726290628 -93,3.0,1.0,-1.7055303166990268,5.1973792282565086 -93,3.0,2.0,-8.19544904231211,23.5308726290628 -93,3.0,3.0,16.314103089185693,-55.509410535254254 -93,3.0,5.0,-6.413123730174556,22.31120356548123 -93,3.0,11.0,0.0,4.191255364806866 -93,4.0,1.0,-1.1359607881738778,4.772479328281356 -93,4.0,4.0,4.089980824135861,-12.190647245055052 -93,4.0,6.0,-2.954020035961983,7.449267916773697 -93,5.0,1.0,-1.6861448807654689,5.116477495334806 -93,5.0,3.0,-6.413123730174556,22.31120356548123 -93,5.0,5.0,22.341631269034565,-82.8291478657789 -93,5.0,6.0,-3.590210423980992,11.02611441072814 -93,5.0,7.0,-6.289308176100628,22.0125786163522 -93,5.0,8.0,0.0,4.915840805411357 -93,5.0,9.0,0.0,1.8561002591115965 -93,5.0,27.0,-4.362844058012917,15.463571542897856 -93,6.0,4.0,-2.954020035961983,7.449267916773697 -93,6.0,5.0,-3.590210423980992,11.02611441072814 -93,6.0,6.0,6.544230459942975,-18.45668232750184 -93,7.0,5.0,-6.289308176100628,22.0125786163522 -93,7.0,7.0,7.733287237496075,-26.527493274828448 -93,7.0,27.0,-1.4439790613954469,4.540814658476248 -93,8.0,5.0,0.0,4.915840805411357 -93,8.0,8.0,0.0,-18.706293706293707 -93,8.0,9.0,0.0,9.090909090909092 -93,8.0,10.0,0.0,4.807692307692308 -93,9.0,5.0,0.0,1.8561002591115965 -93,9.0,8.0,0.0,9.090909090909092 -93,9.0,9.0,13.462042814524237,-41.3837606675224 -93,9.0,16.0,-3.956039125715353,10.317447719844054 -93,9.0,19.0,-1.7848303152666305,3.98535828943083 -93,9.0,20.0,-5.101853820159654,10.98071411292983 -93,9.0,21.0,-2.619319553382597,5.400770303329455 -93,10.0,8.0,0.0,4.807692307692308 -93,10.0,10.0,0.0,-4.807692307692308 -93,11.0,3.0,0.0,4.191255364806866 -93,11.0,11.0,6.573961583776156,-24.424167659260668 -93,11.0,12.0,0.0,7.142857142857143 -93,11.0,13.0,-1.5265676088395577,3.1734252729654173 -93,11.0,14.0,-3.0953961826564296,6.097275864326261 -93,11.0,15.0,-1.9519977922801688,4.104359379111847 -93,12.0,11.0,0.0,7.142857142857143 -93,12.0,12.0,0.0,-7.142857142857143 -93,13.0,11.0,-1.5265676088395577,3.1734252729654173 -93,13.0,13.0,4.01751987283902,-5.424299332335067 -93,13.0,14.0,-2.4909522639994623,2.250874059369649 -93,14.0,11.0,-3.0953961826564296,6.097275864326261 -93,14.0,13.0,-2.4909522639994623,2.250874059369649 -93,14.0,14.0,9.365498545964757,-16.01163373210796 -93,14.0,17.0,-1.8108011504072024,3.687418931630696 -93,14.0,22.0,-1.9683489489016612,3.976064876781356 -93,15.0,11.0,-1.9519977922801688,4.104359379111847 -93,15.0,15.0,3.271064728633931,-8.94513365126506 -93,15.0,16.0,-1.3190669363537617,4.8407742721532125 -93,16.0,9.0,-3.956039125715353,10.317447719844054 -93,16.0,15.0,-1.3190669363537617,4.8407742721532125 -93,16.0,16.0,5.275106062069114,-15.158221991997266 -93,17.0,14.0,-1.8108011504072024,3.687418931630696 -93,17.0,17.0,4.886487584415919,-9.906177730909668 -93,17.0,18.0,-3.0756864340087167,6.218758799278971 -93,18.0,17.0,-3.0756864340087167,6.218758799278971 -93,18.0,18.0,8.958039375185187,-17.98346468163191 -93,18.0,19.0,-5.88235294117647,11.76470588235294 -93,19.0,9.0,-1.7848303152666305,3.98535828943083 -93,19.0,18.0,-5.88235294117647,11.76470588235294 -93,19.0,19.0,7.6671832564431,-15.75006417178377 -93,20.0,9.0,-5.101853820159654,10.98071411292983 -93,20.0,20.0,21.876495189895888,-45.10843276170355 -93,20.0,21.0,-16.774641369736234,34.127718648773715 -93,21.0,9.0,-2.619319553382597,5.400770303329455 -93,21.0,20.0,-16.774641369736234,34.127718648773715 -93,21.0,21.0,21.93449907537439,-43.48289181517921 -93,21.0,23.0,-2.5405381522555563,3.95440286307604 -93,22.0,14.0,-1.9683489489016612,3.976064876781356 -93,22.0,22.0,3.429754555384988,-6.965303617315433 -93,22.0,23.0,-1.4614056064833263,2.989238740534077 -93,23.0,21.0,-2.5405381522555563,3.95440286307604 -93,23.0,22.0,-1.4614056064833263,2.989238740534077 -93,23.0,23.0,5.311836702613133,-9.188263657315172 -93,23.0,24.0,-1.3098929438742493,2.287622053705056 -93,24.0,23.0,-1.3098929438742493,2.287622053705056 -93,24.0,24.0,4.495715080321987,-7.864978761969621 -93,24.0,25.0,-1.2165301194494855,1.8171440463475024 -93,24.0,26.0,-1.9692920169982515,3.760212661917064 -93,25.0,24.0,-1.2165301194494855,1.8171440463475024 -93,25.0,25.0,1.2165301194494855,-1.8171440463475024 -93,26.0,24.0,-1.9692920169982515,3.760212661917064 -93,26.0,26.0,2.656747919825909,-7.579436681967305 -93,26.0,27.0,0.0,2.608731947574922 -93,26.0,29.0,-0.6874559028276572,1.293971494797717 -93,27.0,5.0,-4.362844058012917,15.463571542897856 -93,27.0,7.0,-1.4439790613954469,4.540814658476248 -93,27.0,26.0,0.0,2.608731947574922 -93,27.0,27.0,5.806823119408364,-22.67145722159613 -93,28.0,28.0,0.9120532070322764,-1.7233585608492326 -93,28.0,29.0,-0.9120532070322764,1.7233585608492326 -93,29.0,26.0,-0.6874559028276572,1.293971494797717 -93,29.0,28.0,-0.9120532070322764,1.7233585608492326 -93,29.0,29.0,1.5995091098599337,-3.0173300556469496 -94,0.0,0.0,6.765516048652632,-21.23160167089863 -94,0.0,1.0,-5.224646179885656,15.646726840803398 -94,0.0,2.0,-1.5408698687669766,5.631674830095234 -94,1.0,0.0,-5.224646179885656,15.646726840803398 -94,1.0,1.0,9.75228216552403,-30.648662892676068 -94,1.0,3.0,-1.7055303166990268,5.1973792282565086 -94,1.0,4.0,-1.1359607881738778,4.772479328281356 -94,1.0,5.0,-1.6861448807654689,5.116477495334806 -94,2.0,0.0,-1.5408698687669766,5.631674830095234 -94,2.0,2.0,9.736318911079088,-29.13794745915803 -94,2.0,3.0,-8.19544904231211,23.5308726290628 -94,3.0,1.0,-1.7055303166990268,5.1973792282565086 -94,3.0,2.0,-8.19544904231211,23.5308726290628 -94,3.0,3.0,16.314103089185693,-55.509410535254254 -94,3.0,5.0,-6.413123730174556,22.31120356548123 -94,3.0,11.0,0.0,4.191255364806866 -94,4.0,1.0,-1.1359607881738778,4.772479328281356 -94,4.0,4.0,4.089980824135861,-12.190647245055052 -94,4.0,6.0,-2.954020035961983,7.449267916773697 -94,5.0,1.0,-1.6861448807654689,5.116477495334806 -94,5.0,3.0,-6.413123730174556,22.31120356548123 -94,5.0,5.0,22.341631269034565,-82.8291478657789 -94,5.0,6.0,-3.590210423980992,11.02611441072814 -94,5.0,7.0,-6.289308176100628,22.0125786163522 -94,5.0,8.0,0.0,4.915840805411357 -94,5.0,9.0,0.0,1.8561002591115965 -94,5.0,27.0,-4.362844058012917,15.463571542897856 -94,6.0,4.0,-2.954020035961983,7.449267916773697 -94,6.0,5.0,-3.590210423980992,11.02611441072814 -94,6.0,6.0,6.544230459942975,-18.45668232750184 -94,7.0,5.0,-6.289308176100628,22.0125786163522 -94,7.0,7.0,7.733287237496075,-26.527493274828448 -94,7.0,27.0,-1.4439790613954469,4.540814658476248 -94,8.0,5.0,0.0,4.915840805411357 -94,8.0,8.0,0.0,-18.706293706293707 -94,8.0,9.0,0.0,9.090909090909092 -94,8.0,10.0,0.0,4.807692307692308 -94,9.0,5.0,0.0,1.8561002591115965 -94,9.0,8.0,0.0,9.090909090909092 -94,9.0,9.0,13.462042814524237,-41.3837606675224 -94,9.0,16.0,-3.956039125715353,10.317447719844054 -94,9.0,19.0,-1.7848303152666305,3.98535828943083 -94,9.0,20.0,-5.101853820159654,10.98071411292983 -94,9.0,21.0,-2.619319553382597,5.400770303329455 -94,10.0,8.0,0.0,4.807692307692308 -94,10.0,10.0,0.0,-4.807692307692308 -94,11.0,3.0,0.0,4.191255364806866 -94,11.0,11.0,6.573961583776156,-24.424167659260668 -94,11.0,12.0,0.0,7.142857142857143 -94,11.0,13.0,-1.5265676088395577,3.1734252729654173 -94,11.0,14.0,-3.0953961826564296,6.097275864326261 -94,11.0,15.0,-1.9519977922801688,4.104359379111847 -94,12.0,11.0,0.0,7.142857142857143 -94,12.0,12.0,0.0,-7.142857142857143 -94,13.0,11.0,-1.5265676088395577,3.1734252729654173 -94,13.0,13.0,4.01751987283902,-5.424299332335067 -94,13.0,14.0,-2.4909522639994623,2.250874059369649 -94,14.0,11.0,-3.0953961826564296,6.097275864326261 -94,14.0,13.0,-2.4909522639994623,2.250874059369649 -94,14.0,14.0,9.365498545964757,-16.01163373210796 -94,14.0,17.0,-1.8108011504072024,3.687418931630696 -94,14.0,22.0,-1.9683489489016612,3.976064876781356 -94,15.0,11.0,-1.9519977922801688,4.104359379111847 -94,15.0,15.0,3.271064728633931,-8.94513365126506 -94,15.0,16.0,-1.3190669363537617,4.8407742721532125 -94,16.0,9.0,-3.956039125715353,10.317447719844054 -94,16.0,15.0,-1.3190669363537617,4.8407742721532125 -94,16.0,16.0,5.275106062069114,-15.158221991997266 -94,17.0,14.0,-1.8108011504072024,3.687418931630696 -94,17.0,17.0,4.886487584415919,-9.906177730909668 -94,17.0,18.0,-3.0756864340087167,6.218758799278971 -94,18.0,17.0,-3.0756864340087167,6.218758799278971 -94,18.0,18.0,8.958039375185187,-17.98346468163191 -94,18.0,19.0,-5.88235294117647,11.76470588235294 -94,19.0,9.0,-1.7848303152666305,3.98535828943083 -94,19.0,18.0,-5.88235294117647,11.76470588235294 -94,19.0,19.0,7.6671832564431,-15.75006417178377 -94,20.0,9.0,-5.101853820159654,10.98071411292983 -94,20.0,20.0,21.876495189895888,-45.10843276170355 -94,20.0,21.0,-16.774641369736234,34.127718648773715 -94,21.0,9.0,-2.619319553382597,5.400770303329455 -94,21.0,20.0,-16.774641369736234,34.127718648773715 -94,21.0,21.0,21.93449907537439,-43.48289181517921 -94,21.0,23.0,-2.5405381522555563,3.95440286307604 -94,22.0,14.0,-1.9683489489016612,3.976064876781356 -94,22.0,22.0,3.429754555384988,-6.965303617315433 -94,22.0,23.0,-1.4614056064833263,2.989238740534077 -94,23.0,21.0,-2.5405381522555563,3.95440286307604 -94,23.0,22.0,-1.4614056064833263,2.989238740534077 -94,23.0,23.0,5.311836702613133,-9.188263657315172 -94,23.0,24.0,-1.3098929438742493,2.287622053705056 -94,24.0,23.0,-1.3098929438742493,2.287622053705056 -94,24.0,24.0,4.495715080321987,-7.864978761969621 -94,24.0,25.0,-1.2165301194494855,1.8171440463475024 -94,24.0,26.0,-1.9692920169982515,3.760212661917064 -94,25.0,24.0,-1.2165301194494855,1.8171440463475024 -94,25.0,25.0,1.2165301194494855,-1.8171440463475024 -94,26.0,24.0,-1.9692920169982515,3.760212661917064 -94,26.0,26.0,3.652281470778589,-9.46044252232512 -94,26.0,27.0,0.0,2.608731947574922 -94,26.0,28.0,-0.99553355095268,1.881005840357816 -94,26.0,29.0,-0.6874559028276572,1.293971494797717 -94,27.0,5.0,-4.362844058012917,15.463571542897856 -94,27.0,7.0,-1.4439790613954469,4.540814658476248 -94,27.0,26.0,0.0,2.608731947574922 -94,27.0,27.0,5.806823119408364,-22.67145722159613 -94,28.0,26.0,-0.99553355095268,1.881005840357816 -94,28.0,28.0,1.9075867579849564,-3.604364401207048 -94,28.0,29.0,-0.9120532070322764,1.7233585608492326 -94,29.0,26.0,-0.6874559028276572,1.293971494797717 -94,29.0,28.0,-0.9120532070322764,1.7233585608492326 -94,29.0,29.0,1.5995091098599337,-3.0173300556469496 -95,0.0,0.0,6.765516048652632,-21.23160167089863 -95,0.0,1.0,-5.224646179885656,15.646726840803398 -95,0.0,2.0,-1.5408698687669766,5.631674830095234 -95,1.0,0.0,-5.224646179885656,15.646726840803398 -95,1.0,1.0,9.75228216552403,-30.648662892676068 -95,1.0,3.0,-1.7055303166990268,5.1973792282565086 -95,1.0,4.0,-1.1359607881738778,4.772479328281356 -95,1.0,5.0,-1.6861448807654689,5.116477495334806 -95,2.0,0.0,-1.5408698687669766,5.631674830095234 -95,2.0,2.0,9.736318911079088,-29.13794745915803 -95,2.0,3.0,-8.19544904231211,23.5308726290628 -95,3.0,1.0,-1.7055303166990268,5.1973792282565086 -95,3.0,2.0,-8.19544904231211,23.5308726290628 -95,3.0,3.0,16.314103089185693,-55.509410535254254 -95,3.0,5.0,-6.413123730174556,22.31120356548123 -95,3.0,11.0,0.0,4.191255364806866 -95,4.0,1.0,-1.1359607881738778,4.772479328281356 -95,4.0,4.0,4.089980824135861,-12.190647245055052 -95,4.0,6.0,-2.954020035961983,7.449267916773697 -95,5.0,1.0,-1.6861448807654689,5.116477495334806 -95,5.0,3.0,-6.413123730174556,22.31120356548123 -95,5.0,5.0,22.341631269034565,-82.8291478657789 -95,5.0,6.0,-3.590210423980992,11.02611441072814 -95,5.0,7.0,-6.289308176100628,22.0125786163522 -95,5.0,8.0,0.0,4.915840805411357 -95,5.0,9.0,0.0,1.8561002591115965 -95,5.0,27.0,-4.362844058012917,15.463571542897856 -95,6.0,4.0,-2.954020035961983,7.449267916773697 -95,6.0,5.0,-3.590210423980992,11.02611441072814 -95,6.0,6.0,6.544230459942975,-18.45668232750184 -95,7.0,5.0,-6.289308176100628,22.0125786163522 -95,7.0,7.0,7.733287237496075,-26.527493274828448 -95,7.0,27.0,-1.4439790613954469,4.540814658476248 -95,8.0,5.0,0.0,4.915840805411357 -95,8.0,8.0,0.0,-18.706293706293707 -95,8.0,9.0,0.0,9.090909090909092 -95,8.0,10.0,0.0,4.807692307692308 -95,9.0,5.0,0.0,1.8561002591115965 -95,9.0,8.0,0.0,9.090909090909092 -95,9.0,9.0,13.462042814524237,-41.3837606675224 -95,9.0,16.0,-3.956039125715353,10.317447719844054 -95,9.0,19.0,-1.7848303152666305,3.98535828943083 -95,9.0,20.0,-5.101853820159654,10.98071411292983 -95,9.0,21.0,-2.619319553382597,5.400770303329455 -95,10.0,8.0,0.0,4.807692307692308 -95,10.0,10.0,0.0,-4.807692307692308 -95,11.0,3.0,0.0,4.191255364806866 -95,11.0,11.0,6.573961583776156,-24.424167659260668 -95,11.0,12.0,0.0,7.142857142857143 -95,11.0,13.0,-1.5265676088395577,3.1734252729654173 -95,11.0,14.0,-3.0953961826564296,6.097275864326261 -95,11.0,15.0,-1.9519977922801688,4.104359379111847 -95,12.0,11.0,0.0,7.142857142857143 -95,12.0,12.0,0.0,-7.142857142857143 -95,13.0,11.0,-1.5265676088395577,3.1734252729654173 -95,13.0,13.0,4.01751987283902,-5.424299332335067 -95,13.0,14.0,-2.4909522639994623,2.250874059369649 -95,14.0,11.0,-3.0953961826564296,6.097275864326261 -95,14.0,13.0,-2.4909522639994623,2.250874059369649 -95,14.0,14.0,9.365498545964757,-16.01163373210796 -95,14.0,17.0,-1.8108011504072024,3.687418931630696 -95,14.0,22.0,-1.9683489489016612,3.976064876781356 -95,15.0,11.0,-1.9519977922801688,4.104359379111847 -95,15.0,15.0,3.271064728633931,-8.94513365126506 -95,15.0,16.0,-1.3190669363537617,4.8407742721532125 -95,16.0,9.0,-3.956039125715353,10.317447719844054 -95,16.0,15.0,-1.3190669363537617,4.8407742721532125 -95,16.0,16.0,5.275106062069114,-15.158221991997266 -95,17.0,14.0,-1.8108011504072024,3.687418931630696 -95,17.0,17.0,4.886487584415919,-9.906177730909668 -95,17.0,18.0,-3.0756864340087167,6.218758799278971 -95,18.0,17.0,-3.0756864340087167,6.218758799278971 -95,18.0,18.0,8.958039375185187,-17.98346468163191 -95,18.0,19.0,-5.88235294117647,11.76470588235294 -95,19.0,9.0,-1.7848303152666305,3.98535828943083 -95,19.0,18.0,-5.88235294117647,11.76470588235294 -95,19.0,19.0,7.6671832564431,-15.75006417178377 -95,20.0,9.0,-5.101853820159654,10.98071411292983 -95,20.0,20.0,21.876495189895888,-45.10843276170355 -95,20.0,21.0,-16.774641369736234,34.127718648773715 -95,21.0,9.0,-2.619319553382597,5.400770303329455 -95,21.0,20.0,-16.774641369736234,34.127718648773715 -95,21.0,21.0,21.93449907537439,-43.48289181517921 -95,21.0,23.0,-2.5405381522555563,3.95440286307604 -95,22.0,14.0,-1.9683489489016612,3.976064876781356 -95,22.0,22.0,3.429754555384988,-6.965303617315433 -95,22.0,23.0,-1.4614056064833263,2.989238740534077 -95,23.0,21.0,-2.5405381522555563,3.95440286307604 -95,23.0,22.0,-1.4614056064833263,2.989238740534077 -95,23.0,23.0,5.311836702613133,-9.188263657315172 -95,23.0,24.0,-1.3098929438742493,2.287622053705056 -95,24.0,23.0,-1.3098929438742493,2.287622053705056 -95,24.0,24.0,4.495715080321987,-7.864978761969621 -95,24.0,25.0,-1.2165301194494855,1.8171440463475024 -95,24.0,26.0,-1.9692920169982515,3.760212661917064 -95,25.0,24.0,-1.2165301194494855,1.8171440463475024 -95,25.0,25.0,1.2165301194494855,-1.8171440463475024 -95,26.0,24.0,-1.9692920169982515,3.760212661917064 -95,26.0,26.0,3.652281470778589,-9.46044252232512 -95,26.0,27.0,0.0,2.608731947574922 -95,26.0,28.0,-0.99553355095268,1.881005840357816 -95,26.0,29.0,-0.6874559028276572,1.293971494797717 -95,27.0,5.0,-4.362844058012917,15.463571542897856 -95,27.0,7.0,-1.4439790613954469,4.540814658476248 -95,27.0,26.0,0.0,2.608731947574922 -95,27.0,27.0,5.806823119408364,-22.67145722159613 -95,28.0,26.0,-0.99553355095268,1.881005840357816 -95,28.0,28.0,1.9075867579849564,-3.604364401207048 -95,28.0,29.0,-0.9120532070322764,1.7233585608492326 -95,29.0,26.0,-0.6874559028276572,1.293971494797717 -95,29.0,28.0,-0.9120532070322764,1.7233585608492326 -95,29.0,29.0,1.5995091098599337,-3.0173300556469496 -96,0.0,0.0,6.765516048652632,-21.23160167089863 -96,0.0,1.0,-5.224646179885656,15.646726840803398 -96,0.0,2.0,-1.5408698687669766,5.631674830095234 -96,1.0,0.0,-5.224646179885656,15.646726840803398 -96,1.0,1.0,9.75228216552403,-30.648662892676068 -96,1.0,3.0,-1.7055303166990268,5.1973792282565086 -96,1.0,4.0,-1.1359607881738778,4.772479328281356 -96,1.0,5.0,-1.6861448807654689,5.116477495334806 -96,2.0,0.0,-1.5408698687669766,5.631674830095234 -96,2.0,2.0,9.736318911079088,-29.13794745915803 -96,2.0,3.0,-8.19544904231211,23.5308726290628 -96,3.0,1.0,-1.7055303166990268,5.1973792282565086 -96,3.0,2.0,-8.19544904231211,23.5308726290628 -96,3.0,3.0,16.314103089185693,-51.01235542280054 -96,3.0,5.0,-6.413123730174556,22.31120356548123 -96,4.0,1.0,-1.1359607881738778,4.772479328281356 -96,4.0,4.0,4.089980824135861,-12.190647245055052 -96,4.0,6.0,-2.954020035961983,7.449267916773697 -96,5.0,1.0,-1.6861448807654689,5.116477495334806 -96,5.0,3.0,-6.413123730174556,22.31120356548123 -96,5.0,5.0,22.341631269034565,-82.8291478657789 -96,5.0,6.0,-3.590210423980992,11.02611441072814 -96,5.0,7.0,-6.289308176100628,22.0125786163522 -96,5.0,8.0,0.0,4.915840805411357 -96,5.0,9.0,0.0,1.8561002591115965 -96,5.0,27.0,-4.362844058012917,15.463571542897856 -96,6.0,4.0,-2.954020035961983,7.449267916773697 -96,6.0,5.0,-3.590210423980992,11.02611441072814 -96,6.0,6.0,6.544230459942975,-18.45668232750184 -96,7.0,5.0,-6.289308176100628,22.0125786163522 -96,7.0,7.0,7.733287237496075,-26.527493274828448 -96,7.0,27.0,-1.4439790613954469,4.540814658476248 -96,8.0,5.0,0.0,4.915840805411357 -96,8.0,8.0,0.0,-18.706293706293707 -96,8.0,9.0,0.0,9.090909090909092 -96,8.0,10.0,0.0,4.807692307692308 -96,9.0,5.0,0.0,1.8561002591115965 -96,9.0,8.0,0.0,9.090909090909092 -96,9.0,9.0,13.462042814524237,-41.3837606675224 -96,9.0,16.0,-3.956039125715353,10.317447719844054 -96,9.0,19.0,-1.7848303152666305,3.98535828943083 -96,9.0,20.0,-5.101853820159654,10.98071411292983 -96,9.0,21.0,-2.619319553382597,5.400770303329455 -96,10.0,8.0,0.0,4.807692307692308 -96,10.0,10.0,0.0,-4.807692307692308 -96,11.0,11.0,6.573961583776156,-20.517917659260668 -96,11.0,12.0,0.0,7.142857142857143 -96,11.0,13.0,-1.5265676088395577,3.1734252729654173 -96,11.0,14.0,-3.0953961826564296,6.097275864326261 -96,11.0,15.0,-1.9519977922801688,4.104359379111847 -96,12.0,11.0,0.0,7.142857142857143 -96,12.0,12.0,0.0,-7.142857142857143 -96,13.0,11.0,-1.5265676088395577,3.1734252729654173 -96,13.0,13.0,4.01751987283902,-5.424299332335067 -96,13.0,14.0,-2.4909522639994623,2.250874059369649 -96,14.0,11.0,-3.0953961826564296,6.097275864326261 -96,14.0,13.0,-2.4909522639994623,2.250874059369649 -96,14.0,14.0,9.365498545964757,-16.01163373210796 -96,14.0,17.0,-1.8108011504072024,3.687418931630696 -96,14.0,22.0,-1.9683489489016612,3.976064876781356 -96,15.0,11.0,-1.9519977922801688,4.104359379111847 -96,15.0,15.0,3.271064728633931,-8.94513365126506 -96,15.0,16.0,-1.3190669363537617,4.8407742721532125 -96,16.0,9.0,-3.956039125715353,10.317447719844054 -96,16.0,15.0,-1.3190669363537617,4.8407742721532125 -96,16.0,16.0,5.275106062069114,-15.158221991997266 -96,17.0,14.0,-1.8108011504072024,3.687418931630696 -96,17.0,17.0,4.886487584415919,-9.906177730909668 -96,17.0,18.0,-3.0756864340087167,6.218758799278971 -96,18.0,17.0,-3.0756864340087167,6.218758799278971 -96,18.0,18.0,8.958039375185187,-17.98346468163191 -96,18.0,19.0,-5.88235294117647,11.76470588235294 -96,19.0,9.0,-1.7848303152666305,3.98535828943083 -96,19.0,18.0,-5.88235294117647,11.76470588235294 -96,19.0,19.0,7.6671832564431,-15.75006417178377 -96,20.0,9.0,-5.101853820159654,10.98071411292983 -96,20.0,20.0,21.876495189895888,-45.10843276170355 -96,20.0,21.0,-16.774641369736234,34.127718648773715 -96,21.0,9.0,-2.619319553382597,5.400770303329455 -96,21.0,20.0,-16.774641369736234,34.127718648773715 -96,21.0,21.0,21.93449907537439,-43.48289181517921 -96,21.0,23.0,-2.5405381522555563,3.95440286307604 -96,22.0,14.0,-1.9683489489016612,3.976064876781356 -96,22.0,22.0,3.429754555384988,-6.965303617315433 -96,22.0,23.0,-1.4614056064833263,2.989238740534077 -96,23.0,21.0,-2.5405381522555563,3.95440286307604 -96,23.0,22.0,-1.4614056064833263,2.989238740534077 -96,23.0,23.0,5.311836702613133,-9.188263657315172 -96,23.0,24.0,-1.3098929438742493,2.287622053705056 -96,24.0,23.0,-1.3098929438742493,2.287622053705056 -96,24.0,24.0,4.495715080321987,-7.864978761969621 -96,24.0,25.0,-1.2165301194494855,1.8171440463475024 -96,24.0,26.0,-1.9692920169982515,3.760212661917064 -96,25.0,24.0,-1.2165301194494855,1.8171440463475024 -96,25.0,25.0,1.2165301194494855,-1.8171440463475024 -96,26.0,24.0,-1.9692920169982515,3.760212661917064 -96,26.0,26.0,3.652281470778589,-9.46044252232512 -96,26.0,27.0,0.0,2.608731947574922 -96,26.0,28.0,-0.99553355095268,1.881005840357816 -96,26.0,29.0,-0.6874559028276572,1.293971494797717 -96,27.0,5.0,-4.362844058012917,15.463571542897856 -96,27.0,7.0,-1.4439790613954469,4.540814658476248 -96,27.0,26.0,0.0,2.608731947574922 -96,27.0,27.0,5.806823119408364,-22.67145722159613 -96,28.0,26.0,-0.99553355095268,1.881005840357816 -96,28.0,28.0,1.9075867579849564,-3.604364401207048 -96,28.0,29.0,-0.9120532070322764,1.7233585608492326 -96,29.0,26.0,-0.6874559028276572,1.293971494797717 -96,29.0,28.0,-0.9120532070322764,1.7233585608492326 -96,29.0,29.0,1.5995091098599337,-3.0173300556469496 -97,0.0,0.0,6.765516048652632,-21.23160167089863 -97,0.0,1.0,-5.224646179885656,15.646726840803398 -97,0.0,2.0,-1.5408698687669766,5.631674830095234 -97,1.0,0.0,-5.224646179885656,15.646726840803398 -97,1.0,1.0,8.046751848825002,-25.46968366441956 -97,1.0,4.0,-1.1359607881738778,4.772479328281356 -97,1.0,5.0,-1.6861448807654689,5.116477495334806 -97,2.0,0.0,-1.5408698687669766,5.631674830095234 -97,2.0,2.0,9.736318911079088,-29.13794745915803 -97,2.0,3.0,-8.19544904231211,23.5308726290628 -97,3.0,2.0,-8.19544904231211,23.5308726290628 -97,3.0,3.0,14.608572772486664,-50.33043130699775 -97,3.0,5.0,-6.413123730174556,22.31120356548123 -97,3.0,11.0,0.0,4.191255364806866 -97,4.0,1.0,-1.1359607881738778,4.772479328281356 -97,4.0,4.0,4.089980824135861,-12.190647245055052 -97,4.0,6.0,-2.954020035961983,7.449267916773697 -97,5.0,1.0,-1.6861448807654689,5.116477495334806 -97,5.0,3.0,-6.413123730174556,22.31120356548123 -97,5.0,5.0,22.341631269034565,-77.80272577435625 -97,5.0,6.0,-3.590210423980992,11.02611441072814 -97,5.0,7.0,-6.289308176100628,22.0125786163522 -97,5.0,9.0,0.0,1.8561002591115965 -97,5.0,27.0,-4.362844058012917,15.463571542897856 -97,6.0,4.0,-2.954020035961983,7.449267916773697 -97,6.0,5.0,-3.590210423980992,11.02611441072814 -97,6.0,6.0,6.544230459942975,-18.45668232750184 -97,7.0,5.0,-6.289308176100628,22.0125786163522 -97,7.0,7.0,7.733287237496075,-26.527493274828448 -97,7.0,27.0,-1.4439790613954469,4.540814658476248 -97,8.0,8.0,0.0,-13.8986013986014 -97,8.0,9.0,0.0,9.090909090909092 -97,8.0,10.0,0.0,4.807692307692308 -97,9.0,5.0,0.0,1.8561002591115965 -97,9.0,8.0,0.0,9.090909090909092 -97,9.0,9.0,13.462042814524237,-41.3837606675224 -97,9.0,16.0,-3.956039125715353,10.317447719844054 -97,9.0,19.0,-1.7848303152666305,3.98535828943083 -97,9.0,20.0,-5.101853820159654,10.98071411292983 -97,9.0,21.0,-2.619319553382597,5.400770303329455 -97,10.0,8.0,0.0,4.807692307692308 -97,10.0,10.0,0.0,-4.807692307692308 -97,11.0,3.0,0.0,4.191255364806866 -97,11.0,11.0,5.047393974936599,-21.25074238629525 -97,11.0,12.0,0.0,7.142857142857143 -97,11.0,14.0,-3.0953961826564296,6.097275864326261 -97,11.0,15.0,-1.9519977922801688,4.104359379111847 -97,12.0,11.0,0.0,7.142857142857143 -97,12.0,12.0,0.0,-7.142857142857143 -97,13.0,13.0,2.4909522639994623,-2.250874059369649 -97,13.0,14.0,-2.4909522639994623,2.250874059369649 -97,14.0,11.0,-3.0953961826564296,6.097275864326261 -97,14.0,13.0,-2.4909522639994623,2.250874059369649 -97,14.0,14.0,9.365498545964757,-16.01163373210796 -97,14.0,17.0,-1.8108011504072024,3.687418931630696 -97,14.0,22.0,-1.9683489489016612,3.976064876781356 -97,15.0,11.0,-1.9519977922801688,4.104359379111847 -97,15.0,15.0,3.271064728633931,-8.94513365126506 -97,15.0,16.0,-1.3190669363537617,4.8407742721532125 -97,16.0,9.0,-3.956039125715353,10.317447719844054 -97,16.0,15.0,-1.3190669363537617,4.8407742721532125 -97,16.0,16.0,5.275106062069114,-15.158221991997266 -97,17.0,14.0,-1.8108011504072024,3.687418931630696 -97,17.0,17.0,4.886487584415919,-9.906177730909668 -97,17.0,18.0,-3.0756864340087167,6.218758799278971 -97,18.0,17.0,-3.0756864340087167,6.218758799278971 -97,18.0,18.0,8.958039375185187,-17.98346468163191 -97,18.0,19.0,-5.88235294117647,11.76470588235294 -97,19.0,9.0,-1.7848303152666305,3.98535828943083 -97,19.0,18.0,-5.88235294117647,11.76470588235294 -97,19.0,19.0,7.6671832564431,-15.75006417178377 -97,20.0,9.0,-5.101853820159654,10.98071411292983 -97,20.0,20.0,21.876495189895888,-45.10843276170355 -97,20.0,21.0,-16.774641369736234,34.127718648773715 -97,21.0,9.0,-2.619319553382597,5.400770303329455 -97,21.0,20.0,-16.774641369736234,34.127718648773715 -97,21.0,21.0,21.93449907537439,-43.48289181517921 -97,21.0,23.0,-2.5405381522555563,3.95440286307604 -97,22.0,14.0,-1.9683489489016612,3.976064876781356 -97,22.0,22.0,3.429754555384988,-6.965303617315433 -97,22.0,23.0,-1.4614056064833263,2.989238740534077 -97,23.0,21.0,-2.5405381522555563,3.95440286307604 -97,23.0,22.0,-1.4614056064833263,2.989238740534077 -97,23.0,23.0,5.311836702613133,-9.188263657315172 -97,23.0,24.0,-1.3098929438742493,2.287622053705056 -97,24.0,23.0,-1.3098929438742493,2.287622053705056 -97,24.0,24.0,4.495715080321987,-7.864978761969621 -97,24.0,25.0,-1.2165301194494855,1.8171440463475024 -97,24.0,26.0,-1.9692920169982515,3.760212661917064 -97,25.0,24.0,-1.2165301194494855,1.8171440463475024 -97,25.0,25.0,1.2165301194494855,-1.8171440463475024 -97,26.0,24.0,-1.9692920169982515,3.760212661917064 -97,26.0,26.0,3.652281470778589,-9.46044252232512 -97,26.0,27.0,0.0,2.608731947574922 -97,26.0,28.0,-0.99553355095268,1.881005840357816 -97,26.0,29.0,-0.6874559028276572,1.293971494797717 -97,27.0,5.0,-4.362844058012917,15.463571542897856 -97,27.0,7.0,-1.4439790613954469,4.540814658476248 -97,27.0,26.0,0.0,2.608731947574922 -97,27.0,27.0,5.806823119408364,-22.67145722159613 -97,28.0,26.0,-0.99553355095268,1.881005840357816 -97,28.0,28.0,1.9075867579849564,-3.604364401207048 -97,28.0,29.0,-0.9120532070322764,1.7233585608492326 -97,29.0,26.0,-0.6874559028276572,1.293971494797717 -97,29.0,28.0,-0.9120532070322764,1.7233585608492326 -97,29.0,29.0,1.5995091098599337,-3.0173300556469496 -98,0.0,0.0,6.765516048652632,-21.23160167089863 -98,0.0,1.0,-5.224646179885656,15.646726840803398 -98,0.0,2.0,-1.5408698687669766,5.631674830095234 -98,1.0,0.0,-5.224646179885656,15.646726840803398 -98,1.0,1.0,9.75228216552403,-30.648662892676068 -98,1.0,3.0,-1.7055303166990268,5.1973792282565086 -98,1.0,4.0,-1.1359607881738778,4.772479328281356 -98,1.0,5.0,-1.6861448807654689,5.116477495334806 -98,2.0,0.0,-1.5408698687669766,5.631674830095234 -98,2.0,2.0,9.736318911079088,-29.13794745915803 -98,2.0,3.0,-8.19544904231211,23.5308726290628 -98,3.0,1.0,-1.7055303166990268,5.1973792282565086 -98,3.0,2.0,-8.19544904231211,23.5308726290628 -98,3.0,3.0,16.314103089185693,-55.509410535254254 -98,3.0,5.0,-6.413123730174556,22.31120356548123 -98,3.0,11.0,0.0,4.191255364806866 -98,4.0,1.0,-1.1359607881738778,4.772479328281356 -98,4.0,4.0,4.089980824135861,-12.190647245055052 -98,4.0,6.0,-2.954020035961983,7.449267916773697 -98,5.0,1.0,-1.6861448807654689,5.116477495334806 -98,5.0,3.0,-6.413123730174556,22.31120356548123 -98,5.0,5.0,22.341631269034565,-82.8291478657789 -98,5.0,6.0,-3.590210423980992,11.02611441072814 -98,5.0,7.0,-6.289308176100628,22.0125786163522 -98,5.0,8.0,0.0,4.915840805411357 -98,5.0,9.0,0.0,1.8561002591115965 -98,5.0,27.0,-4.362844058012917,15.463571542897856 -98,6.0,4.0,-2.954020035961983,7.449267916773697 -98,6.0,5.0,-3.590210423980992,11.02611441072814 -98,6.0,6.0,6.544230459942975,-18.45668232750184 -98,7.0,5.0,-6.289308176100628,22.0125786163522 -98,7.0,7.0,7.733287237496075,-26.527493274828448 -98,7.0,27.0,-1.4439790613954469,4.540814658476248 -98,8.0,5.0,0.0,4.915840805411357 -98,8.0,8.0,0.0,-18.706293706293707 -98,8.0,9.0,0.0,9.090909090909092 -98,8.0,10.0,0.0,4.807692307692308 -98,9.0,5.0,0.0,1.8561002591115965 -98,9.0,8.0,0.0,9.090909090909092 -98,9.0,9.0,13.462042814524237,-41.3837606675224 -98,9.0,16.0,-3.956039125715353,10.317447719844054 -98,9.0,19.0,-1.7848303152666305,3.98535828943083 -98,9.0,20.0,-5.101853820159654,10.98071411292983 -98,9.0,21.0,-2.619319553382597,5.400770303329455 -98,10.0,8.0,0.0,4.807692307692308 -98,10.0,10.0,0.0,-4.807692307692308 -98,11.0,3.0,0.0,4.191255364806866 -98,11.0,11.0,6.573961583776156,-24.424167659260668 -98,11.0,12.0,0.0,7.142857142857143 -98,11.0,13.0,-1.5265676088395577,3.1734252729654173 -98,11.0,14.0,-3.0953961826564296,6.097275864326261 -98,11.0,15.0,-1.9519977922801688,4.104359379111847 -98,12.0,11.0,0.0,7.142857142857143 -98,12.0,12.0,0.0,-7.142857142857143 -98,13.0,11.0,-1.5265676088395577,3.1734252729654173 -98,13.0,13.0,4.01751987283902,-5.424299332335067 -98,13.0,14.0,-2.4909522639994623,2.250874059369649 -98,14.0,11.0,-3.0953961826564296,6.097275864326261 -98,14.0,13.0,-2.4909522639994623,2.250874059369649 -98,14.0,14.0,9.365498545964757,-16.01163373210796 -98,14.0,17.0,-1.8108011504072024,3.687418931630696 -98,14.0,22.0,-1.9683489489016612,3.976064876781356 -98,15.0,11.0,-1.9519977922801688,4.104359379111847 -98,15.0,15.0,3.271064728633931,-8.94513365126506 -98,15.0,16.0,-1.3190669363537617,4.8407742721532125 -98,16.0,9.0,-3.956039125715353,10.317447719844054 -98,16.0,15.0,-1.3190669363537617,4.8407742721532125 -98,16.0,16.0,5.275106062069114,-15.158221991997266 -98,17.0,14.0,-1.8108011504072024,3.687418931630696 -98,17.0,17.0,4.886487584415919,-9.906177730909668 -98,17.0,18.0,-3.0756864340087167,6.218758799278971 -98,18.0,17.0,-3.0756864340087167,6.218758799278971 -98,18.0,18.0,8.958039375185187,-17.98346468163191 -98,18.0,19.0,-5.88235294117647,11.76470588235294 -98,19.0,9.0,-1.7848303152666305,3.98535828943083 -98,19.0,18.0,-5.88235294117647,11.76470588235294 -98,19.0,19.0,7.6671832564431,-15.75006417178377 -98,20.0,9.0,-5.101853820159654,10.98071411292983 -98,20.0,20.0,21.876495189895888,-45.10843276170355 -98,20.0,21.0,-16.774641369736234,34.127718648773715 -98,21.0,9.0,-2.619319553382597,5.400770303329455 -98,21.0,20.0,-16.774641369736234,34.127718648773715 -98,21.0,21.0,21.93449907537439,-43.48289181517921 -98,21.0,23.0,-2.5405381522555563,3.95440286307604 -98,22.0,14.0,-1.9683489489016612,3.976064876781356 -98,22.0,22.0,3.429754555384988,-6.965303617315433 -98,22.0,23.0,-1.4614056064833263,2.989238740534077 -98,23.0,21.0,-2.5405381522555563,3.95440286307604 -98,23.0,22.0,-1.4614056064833263,2.989238740534077 -98,23.0,23.0,5.311836702613133,-9.188263657315172 -98,23.0,24.0,-1.3098929438742493,2.287622053705056 -98,24.0,23.0,-1.3098929438742493,2.287622053705056 -98,24.0,24.0,4.495715080321987,-7.864978761969621 -98,24.0,25.0,-1.2165301194494855,1.8171440463475024 -98,24.0,26.0,-1.9692920169982515,3.760212661917064 -98,25.0,24.0,-1.2165301194494855,1.8171440463475024 -98,25.0,25.0,1.2165301194494855,-1.8171440463475024 -98,26.0,24.0,-1.9692920169982515,3.760212661917064 -98,26.0,26.0,3.652281470778589,-9.46044252232512 -98,26.0,27.0,0.0,2.608731947574922 -98,26.0,28.0,-0.99553355095268,1.881005840357816 -98,26.0,29.0,-0.6874559028276572,1.293971494797717 -98,27.0,5.0,-4.362844058012917,15.463571542897856 -98,27.0,7.0,-1.4439790613954469,4.540814658476248 -98,27.0,26.0,0.0,2.608731947574922 -98,27.0,27.0,5.806823119408364,-22.67145722159613 -98,28.0,26.0,-0.99553355095268,1.881005840357816 -98,28.0,28.0,1.9075867579849564,-3.604364401207048 -98,28.0,29.0,-0.9120532070322764,1.7233585608492326 -98,29.0,26.0,-0.6874559028276572,1.293971494797717 -98,29.0,28.0,-0.9120532070322764,1.7233585608492326 -98,29.0,29.0,1.5995091098599337,-3.0173300556469496 -99,0.0,0.0,6.765516048652632,-21.23160167089863 -99,0.0,1.0,-5.224646179885656,15.646726840803398 -99,0.0,2.0,-1.5408698687669766,5.631674830095234 -99,1.0,0.0,-5.224646179885656,15.646726840803398 -99,1.0,1.0,9.75228216552403,-30.648662892676068 -99,1.0,3.0,-1.7055303166990268,5.1973792282565086 -99,1.0,4.0,-1.1359607881738778,4.772479328281356 -99,1.0,5.0,-1.6861448807654689,5.116477495334806 -99,2.0,0.0,-1.5408698687669766,5.631674830095234 -99,2.0,2.0,9.736318911079088,-29.13794745915803 -99,2.0,3.0,-8.19544904231211,23.5308726290628 -99,3.0,1.0,-1.7055303166990268,5.1973792282565086 -99,3.0,2.0,-8.19544904231211,23.5308726290628 -99,3.0,3.0,16.314103089185693,-55.509410535254254 -99,3.0,5.0,-6.413123730174556,22.31120356548123 -99,3.0,11.0,0.0,4.191255364806866 -99,4.0,1.0,-1.1359607881738778,4.772479328281356 -99,4.0,4.0,4.089980824135861,-12.190647245055052 -99,4.0,6.0,-2.954020035961983,7.449267916773697 -99,5.0,1.0,-1.6861448807654689,5.116477495334806 -99,5.0,3.0,-6.413123730174556,22.31120356548123 -99,5.0,5.0,22.341631269034565,-82.8291478657789 -99,5.0,6.0,-3.590210423980992,11.02611441072814 -99,5.0,7.0,-6.289308176100628,22.0125786163522 -99,5.0,8.0,0.0,4.915840805411357 -99,5.0,9.0,0.0,1.8561002591115965 -99,5.0,27.0,-4.362844058012917,15.463571542897856 -99,6.0,4.0,-2.954020035961983,7.449267916773697 -99,6.0,5.0,-3.590210423980992,11.02611441072814 -99,6.0,6.0,6.544230459942975,-18.45668232750184 -99,7.0,5.0,-6.289308176100628,22.0125786163522 -99,7.0,7.0,7.733287237496075,-26.527493274828448 -99,7.0,27.0,-1.4439790613954469,4.540814658476248 -99,8.0,5.0,0.0,4.915840805411357 -99,8.0,8.0,0.0,-18.706293706293707 -99,8.0,9.0,0.0,9.090909090909092 -99,8.0,10.0,0.0,4.807692307692308 -99,9.0,5.0,0.0,1.8561002591115965 -99,9.0,8.0,0.0,9.090909090909092 -99,9.0,9.0,13.462042814524237,-41.3837606675224 -99,9.0,16.0,-3.956039125715353,10.317447719844054 -99,9.0,19.0,-1.7848303152666305,3.98535828943083 -99,9.0,20.0,-5.101853820159654,10.98071411292983 -99,9.0,21.0,-2.619319553382597,5.400770303329455 -99,10.0,8.0,0.0,4.807692307692308 -99,10.0,10.0,0.0,-4.807692307692308 -99,11.0,3.0,0.0,4.191255364806866 -99,11.0,11.0,6.573961583776156,-24.424167659260668 -99,11.0,12.0,0.0,7.142857142857143 -99,11.0,13.0,-1.5265676088395577,3.1734252729654173 -99,11.0,14.0,-3.0953961826564296,6.097275864326261 -99,11.0,15.0,-1.9519977922801688,4.104359379111847 -99,12.0,11.0,0.0,7.142857142857143 -99,12.0,12.0,0.0,-7.142857142857143 -99,13.0,11.0,-1.5265676088395577,3.1734252729654173 -99,13.0,13.0,4.01751987283902,-5.424299332335067 -99,13.0,14.0,-2.4909522639994623,2.250874059369649 -99,14.0,11.0,-3.0953961826564296,6.097275864326261 -99,14.0,13.0,-2.4909522639994623,2.250874059369649 -99,14.0,14.0,9.365498545964757,-16.01163373210796 -99,14.0,17.0,-1.8108011504072024,3.687418931630696 -99,14.0,22.0,-1.9683489489016612,3.976064876781356 -99,15.0,11.0,-1.9519977922801688,4.104359379111847 -99,15.0,15.0,3.271064728633931,-8.94513365126506 -99,15.0,16.0,-1.3190669363537617,4.8407742721532125 -99,16.0,9.0,-3.956039125715353,10.317447719844054 -99,16.0,15.0,-1.3190669363537617,4.8407742721532125 -99,16.0,16.0,5.275106062069114,-15.158221991997266 -99,17.0,14.0,-1.8108011504072024,3.687418931630696 -99,17.0,17.0,4.886487584415919,-9.906177730909668 -99,17.0,18.0,-3.0756864340087167,6.218758799278971 -99,18.0,17.0,-3.0756864340087167,6.218758799278971 -99,18.0,18.0,8.958039375185187,-17.98346468163191 -99,18.0,19.0,-5.88235294117647,11.76470588235294 -99,19.0,9.0,-1.7848303152666305,3.98535828943083 -99,19.0,18.0,-5.88235294117647,11.76470588235294 -99,19.0,19.0,7.6671832564431,-15.75006417178377 -99,20.0,9.0,-5.101853820159654,10.98071411292983 -99,20.0,20.0,21.876495189895888,-45.10843276170355 -99,20.0,21.0,-16.774641369736234,34.127718648773715 -99,21.0,9.0,-2.619319553382597,5.400770303329455 -99,21.0,20.0,-16.774641369736234,34.127718648773715 -99,21.0,21.0,21.93449907537439,-43.48289181517921 -99,21.0,23.0,-2.5405381522555563,3.95440286307604 -99,22.0,14.0,-1.9683489489016612,3.976064876781356 -99,22.0,22.0,3.429754555384988,-6.965303617315433 -99,22.0,23.0,-1.4614056064833263,2.989238740534077 -99,23.0,21.0,-2.5405381522555563,3.95440286307604 -99,23.0,22.0,-1.4614056064833263,2.989238740534077 -99,23.0,23.0,5.311836702613133,-9.188263657315172 -99,23.0,24.0,-1.3098929438742493,2.287622053705056 -99,24.0,23.0,-1.3098929438742493,2.287622053705056 -99,24.0,24.0,4.495715080321987,-7.864978761969621 -99,24.0,25.0,-1.2165301194494855,1.8171440463475024 -99,24.0,26.0,-1.9692920169982515,3.760212661917064 -99,25.0,24.0,-1.2165301194494855,1.8171440463475024 -99,25.0,25.0,1.2165301194494855,-1.8171440463475024 -99,26.0,24.0,-1.9692920169982515,3.760212661917064 -99,26.0,26.0,3.652281470778589,-9.46044252232512 -99,26.0,27.0,0.0,2.608731947574922 -99,26.0,28.0,-0.99553355095268,1.881005840357816 -99,26.0,29.0,-0.6874559028276572,1.293971494797717 -99,27.0,5.0,-4.362844058012917,15.463571542897856 -99,27.0,7.0,-1.4439790613954469,4.540814658476248 -99,27.0,26.0,0.0,2.608731947574922 -99,27.0,27.0,5.806823119408364,-22.67145722159613 -99,28.0,26.0,-0.99553355095268,1.881005840357816 -99,28.0,28.0,1.9075867579849564,-3.604364401207048 -99,28.0,29.0,-0.9120532070322764,1.7233585608492326 -99,29.0,26.0,-0.6874559028276572,1.293971494797717 -99,29.0,28.0,-0.9120532070322764,1.7233585608492326 -99,29.0,29.0,1.5995091098599337,-3.0173300556469496 -100,0.0,0.0,6.765516048652632,-21.23160167089863 -100,0.0,1.0,-5.224646179885656,15.646726840803398 -100,0.0,2.0,-1.5408698687669766,5.631674830095234 -100,1.0,0.0,-5.224646179885656,15.646726840803398 -100,1.0,1.0,9.75228216552403,-30.648662892676068 -100,1.0,3.0,-1.7055303166990268,5.1973792282565086 -100,1.0,4.0,-1.1359607881738778,4.772479328281356 -100,1.0,5.0,-1.6861448807654689,5.116477495334806 -100,2.0,0.0,-1.5408698687669766,5.631674830095234 -100,2.0,2.0,9.736318911079088,-29.13794745915803 -100,2.0,3.0,-8.19544904231211,23.5308726290628 -100,3.0,1.0,-1.7055303166990268,5.1973792282565086 -100,3.0,2.0,-8.19544904231211,23.5308726290628 -100,3.0,3.0,16.314103089185693,-55.509410535254254 -100,3.0,5.0,-6.413123730174556,22.31120356548123 -100,3.0,11.0,0.0,4.191255364806866 -100,4.0,1.0,-1.1359607881738778,4.772479328281356 -100,4.0,4.0,4.089980824135861,-12.190647245055052 -100,4.0,6.0,-2.954020035961983,7.449267916773697 -100,5.0,1.0,-1.6861448807654689,5.116477495334806 -100,5.0,3.0,-6.413123730174556,22.31120356548123 -100,5.0,5.0,16.052323092933932,-60.8210692494267 -100,5.0,6.0,-3.590210423980992,11.02611441072814 -100,5.0,8.0,0.0,4.915840805411357 -100,5.0,9.0,0.0,1.8561002591115965 -100,5.0,27.0,-4.362844058012917,15.463571542897856 -100,6.0,4.0,-2.954020035961983,7.449267916773697 -100,6.0,5.0,-3.590210423980992,11.02611441072814 -100,6.0,6.0,6.544230459942975,-18.45668232750184 -100,7.0,7.0,1.4439790613954469,-4.519414658476248 -100,7.0,27.0,-1.4439790613954469,4.540814658476248 -100,8.0,5.0,0.0,4.915840805411357 -100,8.0,8.0,0.0,-18.706293706293707 -100,8.0,9.0,0.0,9.090909090909092 -100,8.0,10.0,0.0,4.807692307692308 -100,9.0,5.0,0.0,1.8561002591115965 -100,9.0,8.0,0.0,9.090909090909092 -100,9.0,9.0,13.462042814524237,-41.3837606675224 -100,9.0,16.0,-3.956039125715353,10.317447719844054 -100,9.0,19.0,-1.7848303152666305,3.98535828943083 -100,9.0,20.0,-5.101853820159654,10.98071411292983 -100,9.0,21.0,-2.619319553382597,5.400770303329455 -100,10.0,8.0,0.0,4.807692307692308 -100,10.0,10.0,0.0,-4.807692307692308 -100,11.0,3.0,0.0,4.191255364806866 -100,11.0,11.0,6.573961583776156,-24.424167659260668 -100,11.0,12.0,0.0,7.142857142857143 -100,11.0,13.0,-1.5265676088395577,3.1734252729654173 -100,11.0,14.0,-3.0953961826564296,6.097275864326261 -100,11.0,15.0,-1.9519977922801688,4.104359379111847 -100,12.0,11.0,0.0,7.142857142857143 -100,12.0,12.0,0.0,-7.142857142857143 -100,13.0,11.0,-1.5265676088395577,3.1734252729654173 -100,13.0,13.0,4.01751987283902,-5.424299332335067 -100,13.0,14.0,-2.4909522639994623,2.250874059369649 -100,14.0,11.0,-3.0953961826564296,6.097275864326261 -100,14.0,13.0,-2.4909522639994623,2.250874059369649 -100,14.0,14.0,9.365498545964757,-16.01163373210796 -100,14.0,17.0,-1.8108011504072024,3.687418931630696 -100,14.0,22.0,-1.9683489489016612,3.976064876781356 -100,15.0,11.0,-1.9519977922801688,4.104359379111847 -100,15.0,15.0,3.271064728633931,-8.94513365126506 -100,15.0,16.0,-1.3190669363537617,4.8407742721532125 -100,16.0,9.0,-3.956039125715353,10.317447719844054 -100,16.0,15.0,-1.3190669363537617,4.8407742721532125 -100,16.0,16.0,5.275106062069114,-15.158221991997266 -100,17.0,14.0,-1.8108011504072024,3.687418931630696 -100,17.0,17.0,4.886487584415919,-9.906177730909668 -100,17.0,18.0,-3.0756864340087167,6.218758799278971 -100,18.0,17.0,-3.0756864340087167,6.218758799278971 -100,18.0,18.0,3.0756864340087167,-6.218758799278971 -100,19.0,9.0,-1.7848303152666305,3.98535828943083 -100,19.0,19.0,1.7848303152666305,-3.98535828943083 -100,20.0,9.0,-5.101853820159654,10.98071411292983 -100,20.0,20.0,21.876495189895888,-45.10843276170355 -100,20.0,21.0,-16.774641369736234,34.127718648773715 -100,21.0,9.0,-2.619319553382597,5.400770303329455 -100,21.0,20.0,-16.774641369736234,34.127718648773715 -100,21.0,21.0,21.93449907537439,-43.48289181517921 -100,21.0,23.0,-2.5405381522555563,3.95440286307604 -100,22.0,14.0,-1.9683489489016612,3.976064876781356 -100,22.0,22.0,3.429754555384988,-6.965303617315433 -100,22.0,23.0,-1.4614056064833263,2.989238740534077 -100,23.0,21.0,-2.5405381522555563,3.95440286307604 -100,23.0,22.0,-1.4614056064833263,2.989238740534077 -100,23.0,23.0,5.311836702613133,-9.188263657315172 -100,23.0,24.0,-1.3098929438742493,2.287622053705056 -100,24.0,23.0,-1.3098929438742493,2.287622053705056 -100,24.0,24.0,4.495715080321987,-7.864978761969621 -100,24.0,25.0,-1.2165301194494855,1.8171440463475024 -100,24.0,26.0,-1.9692920169982515,3.760212661917064 -100,25.0,24.0,-1.2165301194494855,1.8171440463475024 -100,25.0,25.0,1.2165301194494855,-1.8171440463475024 -100,26.0,24.0,-1.9692920169982515,3.760212661917064 -100,26.0,26.0,3.652281470778589,-9.46044252232512 -100,26.0,27.0,0.0,2.608731947574922 -100,26.0,28.0,-0.99553355095268,1.881005840357816 -100,26.0,29.0,-0.6874559028276572,1.293971494797717 -100,27.0,5.0,-4.362844058012917,15.463571542897856 -100,27.0,7.0,-1.4439790613954469,4.540814658476248 -100,27.0,26.0,0.0,2.608731947574922 -100,27.0,27.0,5.806823119408364,-22.67145722159613 -100,28.0,26.0,-0.99553355095268,1.881005840357816 -100,28.0,28.0,1.9075867579849564,-3.604364401207048 -100,28.0,29.0,-0.9120532070322764,1.7233585608492326 -100,29.0,26.0,-0.6874559028276572,1.293971494797717 -100,29.0,28.0,-0.9120532070322764,1.7233585608492326 -100,29.0,29.0,1.5995091098599337,-3.0173300556469496 -101,0.0,0.0,6.765516048652632,-21.23160167089863 -101,0.0,1.0,-5.224646179885656,15.646726840803398 -101,0.0,2.0,-1.5408698687669766,5.631674830095234 -101,1.0,0.0,-5.224646179885656,15.646726840803398 -101,1.0,1.0,9.75228216552403,-30.648662892676068 -101,1.0,3.0,-1.7055303166990268,5.1973792282565086 -101,1.0,4.0,-1.1359607881738778,4.772479328281356 -101,1.0,5.0,-1.6861448807654689,5.116477495334806 -101,2.0,0.0,-1.5408698687669766,5.631674830095234 -101,2.0,2.0,9.736318911079088,-29.13794745915803 -101,2.0,3.0,-8.19544904231211,23.5308726290628 -101,3.0,1.0,-1.7055303166990268,5.1973792282565086 -101,3.0,2.0,-8.19544904231211,23.5308726290628 -101,3.0,3.0,16.314103089185693,-55.509410535254254 -101,3.0,5.0,-6.413123730174556,22.31120356548123 -101,3.0,11.0,0.0,4.191255364806866 -101,4.0,1.0,-1.1359607881738778,4.772479328281356 -101,4.0,4.0,4.089980824135861,-12.190647245055052 -101,4.0,6.0,-2.954020035961983,7.449267916773697 -101,5.0,1.0,-1.6861448807654689,5.116477495334806 -101,5.0,3.0,-6.413123730174556,22.31120356548123 -101,5.0,5.0,22.341631269034565,-82.8291478657789 -101,5.0,6.0,-3.590210423980992,11.02611441072814 -101,5.0,7.0,-6.289308176100628,22.0125786163522 -101,5.0,8.0,0.0,4.915840805411357 -101,5.0,9.0,0.0,1.8561002591115965 -101,5.0,27.0,-4.362844058012917,15.463571542897856 -101,6.0,4.0,-2.954020035961983,7.449267916773697 -101,6.0,5.0,-3.590210423980992,11.02611441072814 -101,6.0,6.0,6.544230459942975,-18.45668232750184 -101,7.0,5.0,-6.289308176100628,22.0125786163522 -101,7.0,7.0,7.733287237496075,-26.527493274828448 -101,7.0,27.0,-1.4439790613954469,4.540814658476248 -101,8.0,5.0,0.0,4.915840805411357 -101,8.0,8.0,0.0,-18.706293706293707 -101,8.0,9.0,0.0,9.090909090909092 -101,8.0,10.0,0.0,4.807692307692308 -101,9.0,5.0,0.0,1.8561002591115965 -101,9.0,8.0,0.0,9.090909090909092 -101,9.0,9.0,13.462042814524237,-41.3837606675224 -101,9.0,16.0,-3.956039125715353,10.317447719844054 -101,9.0,19.0,-1.7848303152666305,3.98535828943083 -101,9.0,20.0,-5.101853820159654,10.98071411292983 -101,9.0,21.0,-2.619319553382597,5.400770303329455 -101,10.0,8.0,0.0,4.807692307692308 -101,10.0,10.0,0.0,-4.807692307692308 -101,11.0,3.0,0.0,4.191255364806866 -101,11.0,11.0,6.573961583776156,-24.424167659260668 -101,11.0,12.0,0.0,7.142857142857143 -101,11.0,13.0,-1.5265676088395577,3.1734252729654173 -101,11.0,14.0,-3.0953961826564296,6.097275864326261 -101,11.0,15.0,-1.9519977922801688,4.104359379111847 -101,12.0,11.0,0.0,7.142857142857143 -101,12.0,12.0,0.0,-7.142857142857143 -101,13.0,11.0,-1.5265676088395577,3.1734252729654173 -101,13.0,13.0,4.01751987283902,-5.424299332335067 -101,13.0,14.0,-2.4909522639994623,2.250874059369649 -101,14.0,11.0,-3.0953961826564296,6.097275864326261 -101,14.0,13.0,-2.4909522639994623,2.250874059369649 -101,14.0,14.0,9.365498545964757,-16.01163373210796 -101,14.0,17.0,-1.8108011504072024,3.687418931630696 -101,14.0,22.0,-1.9683489489016612,3.976064876781356 -101,15.0,11.0,-1.9519977922801688,4.104359379111847 -101,15.0,15.0,3.271064728633931,-8.94513365126506 -101,15.0,16.0,-1.3190669363537617,4.8407742721532125 -101,16.0,9.0,-3.956039125715353,10.317447719844054 -101,16.0,15.0,-1.3190669363537617,4.8407742721532125 -101,16.0,16.0,5.275106062069114,-15.158221991997266 -101,17.0,14.0,-1.8108011504072024,3.687418931630696 -101,17.0,17.0,4.886487584415919,-9.906177730909668 -101,17.0,18.0,-3.0756864340087167,6.218758799278971 -101,18.0,17.0,-3.0756864340087167,6.218758799278971 -101,18.0,18.0,8.958039375185187,-17.98346468163191 -101,18.0,19.0,-5.88235294117647,11.76470588235294 -101,19.0,9.0,-1.7848303152666305,3.98535828943083 -101,19.0,18.0,-5.88235294117647,11.76470588235294 -101,19.0,19.0,7.6671832564431,-15.75006417178377 -101,20.0,9.0,-5.101853820159654,10.98071411292983 -101,20.0,20.0,21.876495189895888,-45.10843276170355 -101,20.0,21.0,-16.774641369736234,34.127718648773715 -101,21.0,9.0,-2.619319553382597,5.400770303329455 -101,21.0,20.0,-16.774641369736234,34.127718648773715 -101,21.0,21.0,21.93449907537439,-43.48289181517921 -101,21.0,23.0,-2.5405381522555563,3.95440286307604 -101,22.0,14.0,-1.9683489489016612,3.976064876781356 -101,22.0,22.0,3.429754555384988,-6.965303617315433 -101,22.0,23.0,-1.4614056064833263,2.989238740534077 -101,23.0,21.0,-2.5405381522555563,3.95440286307604 -101,23.0,22.0,-1.4614056064833263,2.989238740534077 -101,23.0,23.0,5.311836702613133,-9.188263657315172 -101,23.0,24.0,-1.3098929438742493,2.287622053705056 -101,24.0,23.0,-1.3098929438742493,2.287622053705056 -101,24.0,24.0,2.526423063323735,-4.104766100052558 -101,24.0,25.0,-1.2165301194494855,1.8171440463475024 -101,25.0,24.0,-1.2165301194494855,1.8171440463475024 -101,25.0,25.0,1.2165301194494855,-1.8171440463475024 -101,26.0,26.0,1.6829894537803372,-5.700229860408058 -101,26.0,27.0,0.0,2.608731947574922 -101,26.0,28.0,-0.99553355095268,1.881005840357816 -101,26.0,29.0,-0.6874559028276572,1.293971494797717 -101,27.0,5.0,-4.362844058012917,15.463571542897856 -101,27.0,7.0,-1.4439790613954469,4.540814658476248 -101,27.0,26.0,0.0,2.608731947574922 -101,27.0,27.0,5.806823119408364,-22.67145722159613 -101,28.0,26.0,-0.99553355095268,1.881005840357816 -101,28.0,28.0,1.9075867579849564,-3.604364401207048 -101,28.0,29.0,-0.9120532070322764,1.7233585608492326 -101,29.0,26.0,-0.6874559028276572,1.293971494797717 -101,29.0,28.0,-0.9120532070322764,1.7233585608492326 -101,29.0,29.0,1.5995091098599337,-3.0173300556469496 -102,0.0,0.0,6.765516048652632,-21.23160167089863 -102,0.0,1.0,-5.224646179885656,15.646726840803398 -102,0.0,2.0,-1.5408698687669766,5.631674830095234 -102,1.0,0.0,-5.224646179885656,15.646726840803398 -102,1.0,1.0,9.75228216552403,-30.648662892676068 -102,1.0,3.0,-1.7055303166990268,5.1973792282565086 -102,1.0,4.0,-1.1359607881738778,4.772479328281356 -102,1.0,5.0,-1.6861448807654689,5.116477495334806 -102,2.0,0.0,-1.5408698687669766,5.631674830095234 -102,2.0,2.0,9.736318911079088,-29.13794745915803 -102,2.0,3.0,-8.19544904231211,23.5308726290628 -102,3.0,1.0,-1.7055303166990268,5.1973792282565086 -102,3.0,2.0,-8.19544904231211,23.5308726290628 -102,3.0,3.0,16.314103089185693,-55.509410535254254 -102,3.0,5.0,-6.413123730174556,22.31120356548123 -102,3.0,11.0,0.0,4.191255364806866 -102,4.0,1.0,-1.1359607881738778,4.772479328281356 -102,4.0,4.0,4.089980824135861,-12.190647245055052 -102,4.0,6.0,-2.954020035961983,7.449267916773697 -102,5.0,1.0,-1.6861448807654689,5.116477495334806 -102,5.0,3.0,-6.413123730174556,22.31120356548123 -102,5.0,5.0,22.341631269034565,-82.8291478657789 -102,5.0,6.0,-3.590210423980992,11.02611441072814 -102,5.0,7.0,-6.289308176100628,22.0125786163522 -102,5.0,8.0,0.0,4.915840805411357 -102,5.0,9.0,0.0,1.8561002591115965 -102,5.0,27.0,-4.362844058012917,15.463571542897856 -102,6.0,4.0,-2.954020035961983,7.449267916773697 -102,6.0,5.0,-3.590210423980992,11.02611441072814 -102,6.0,6.0,6.544230459942975,-18.45668232750184 -102,7.0,5.0,-6.289308176100628,22.0125786163522 -102,7.0,7.0,7.733287237496075,-26.527493274828448 -102,7.0,27.0,-1.4439790613954469,4.540814658476248 -102,8.0,5.0,0.0,4.915840805411357 -102,8.0,8.0,0.0,-18.706293706293707 -102,8.0,9.0,0.0,9.090909090909092 -102,8.0,10.0,0.0,4.807692307692308 -102,9.0,5.0,0.0,1.8561002591115965 -102,9.0,8.0,0.0,9.090909090909092 -102,9.0,9.0,13.462042814524237,-41.3837606675224 -102,9.0,16.0,-3.956039125715353,10.317447719844054 -102,9.0,19.0,-1.7848303152666305,3.98535828943083 -102,9.0,20.0,-5.101853820159654,10.98071411292983 -102,9.0,21.0,-2.619319553382597,5.400770303329455 -102,10.0,8.0,0.0,4.807692307692308 -102,10.0,10.0,0.0,-4.807692307692308 -102,11.0,3.0,0.0,4.191255364806866 -102,11.0,11.0,6.573961583776156,-24.424167659260668 -102,11.0,12.0,0.0,7.142857142857143 -102,11.0,13.0,-1.5265676088395577,3.1734252729654173 -102,11.0,14.0,-3.0953961826564296,6.097275864326261 -102,11.0,15.0,-1.9519977922801688,4.104359379111847 -102,12.0,11.0,0.0,7.142857142857143 -102,12.0,12.0,0.0,-7.142857142857143 -102,13.0,11.0,-1.5265676088395577,3.1734252729654173 -102,13.0,13.0,4.01751987283902,-5.424299332335067 -102,13.0,14.0,-2.4909522639994623,2.250874059369649 -102,14.0,11.0,-3.0953961826564296,6.097275864326261 -102,14.0,13.0,-2.4909522639994623,2.250874059369649 -102,14.0,14.0,9.365498545964757,-16.01163373210796 -102,14.0,17.0,-1.8108011504072024,3.687418931630696 -102,14.0,22.0,-1.9683489489016612,3.976064876781356 -102,15.0,11.0,-1.9519977922801688,4.104359379111847 -102,15.0,15.0,3.271064728633931,-8.94513365126506 -102,15.0,16.0,-1.3190669363537617,4.8407742721532125 -102,16.0,9.0,-3.956039125715353,10.317447719844054 -102,16.0,15.0,-1.3190669363537617,4.8407742721532125 -102,16.0,16.0,5.275106062069114,-15.158221991997266 -102,17.0,14.0,-1.8108011504072024,3.687418931630696 -102,17.0,17.0,4.886487584415919,-9.906177730909668 -102,17.0,18.0,-3.0756864340087167,6.218758799278971 -102,18.0,17.0,-3.0756864340087167,6.218758799278971 -102,18.0,18.0,8.958039375185187,-17.98346468163191 -102,18.0,19.0,-5.88235294117647,11.76470588235294 -102,19.0,9.0,-1.7848303152666305,3.98535828943083 -102,19.0,18.0,-5.88235294117647,11.76470588235294 -102,19.0,19.0,7.6671832564431,-15.75006417178377 -102,20.0,9.0,-5.101853820159654,10.98071411292983 -102,20.0,20.0,21.876495189895888,-45.10843276170355 -102,20.0,21.0,-16.774641369736234,34.127718648773715 -102,21.0,9.0,-2.619319553382597,5.400770303329455 -102,21.0,20.0,-16.774641369736234,34.127718648773715 -102,21.0,21.0,19.393960923118836,-39.52848895210317 -102,22.0,14.0,-1.9683489489016612,3.976064876781356 -102,22.0,22.0,3.429754555384988,-6.965303617315433 -102,22.0,23.0,-1.4614056064833263,2.989238740534077 -102,23.0,22.0,-1.4614056064833263,2.989238740534077 -102,23.0,23.0,2.771298550357576,-5.233860794239132 -102,23.0,24.0,-1.3098929438742493,2.287622053705056 -102,24.0,23.0,-1.3098929438742493,2.287622053705056 -102,24.0,24.0,4.495715080321987,-7.864978761969621 -102,24.0,25.0,-1.2165301194494855,1.8171440463475024 -102,24.0,26.0,-1.9692920169982515,3.760212661917064 -102,25.0,24.0,-1.2165301194494855,1.8171440463475024 -102,25.0,25.0,1.2165301194494855,-1.8171440463475024 -102,26.0,24.0,-1.9692920169982515,3.760212661917064 -102,26.0,26.0,3.652281470778589,-9.46044252232512 -102,26.0,27.0,0.0,2.608731947574922 -102,26.0,28.0,-0.99553355095268,1.881005840357816 -102,26.0,29.0,-0.6874559028276572,1.293971494797717 -102,27.0,5.0,-4.362844058012917,15.463571542897856 -102,27.0,7.0,-1.4439790613954469,4.540814658476248 -102,27.0,26.0,0.0,2.608731947574922 -102,27.0,27.0,5.806823119408364,-22.67145722159613 -102,28.0,26.0,-0.99553355095268,1.881005840357816 -102,28.0,28.0,1.9075867579849564,-3.604364401207048 -102,28.0,29.0,-0.9120532070322764,1.7233585608492326 -102,29.0,26.0,-0.6874559028276572,1.293971494797717 -102,29.0,28.0,-0.9120532070322764,1.7233585608492326 -102,29.0,29.0,1.5995091098599337,-3.0173300556469496 -103,0.0,0.0,6.765516048652632,-21.23160167089863 -103,0.0,1.0,-5.224646179885656,15.646726840803398 -103,0.0,2.0,-1.5408698687669766,5.631674830095234 -103,1.0,0.0,-5.224646179885656,15.646726840803398 -103,1.0,1.0,9.75228216552403,-30.648662892676068 -103,1.0,3.0,-1.7055303166990268,5.1973792282565086 -103,1.0,4.0,-1.1359607881738778,4.772479328281356 -103,1.0,5.0,-1.6861448807654689,5.116477495334806 -103,2.0,0.0,-1.5408698687669766,5.631674830095234 -103,2.0,2.0,9.736318911079088,-29.13794745915803 -103,2.0,3.0,-8.19544904231211,23.5308726290628 -103,3.0,1.0,-1.7055303166990268,5.1973792282565086 -103,3.0,2.0,-8.19544904231211,23.5308726290628 -103,3.0,3.0,16.314103089185693,-55.509410535254254 -103,3.0,5.0,-6.413123730174556,22.31120356548123 -103,3.0,11.0,0.0,4.191255364806866 -103,4.0,1.0,-1.1359607881738778,4.772479328281356 -103,4.0,4.0,4.089980824135861,-12.190647245055052 -103,4.0,6.0,-2.954020035961983,7.449267916773697 -103,5.0,1.0,-1.6861448807654689,5.116477495334806 -103,5.0,3.0,-6.413123730174556,22.31120356548123 -103,5.0,5.0,22.341631269034565,-82.8291478657789 -103,5.0,6.0,-3.590210423980992,11.02611441072814 -103,5.0,7.0,-6.289308176100628,22.0125786163522 -103,5.0,8.0,0.0,4.915840805411357 -103,5.0,9.0,0.0,1.8561002591115965 -103,5.0,27.0,-4.362844058012917,15.463571542897856 -103,6.0,4.0,-2.954020035961983,7.449267916773697 -103,6.0,5.0,-3.590210423980992,11.02611441072814 -103,6.0,6.0,6.544230459942975,-18.45668232750184 -103,7.0,5.0,-6.289308176100628,22.0125786163522 -103,7.0,7.0,7.733287237496075,-26.527493274828448 -103,7.0,27.0,-1.4439790613954469,4.540814658476248 -103,8.0,5.0,0.0,4.915840805411357 -103,8.0,8.0,0.0,-18.706293706293707 -103,8.0,9.0,0.0,9.090909090909092 -103,8.0,10.0,0.0,4.807692307692308 -103,9.0,5.0,0.0,1.8561002591115965 -103,9.0,8.0,0.0,9.090909090909092 -103,9.0,9.0,13.462042814524237,-41.3837606675224 -103,9.0,16.0,-3.956039125715353,10.317447719844054 -103,9.0,19.0,-1.7848303152666305,3.98535828943083 -103,9.0,20.0,-5.101853820159654,10.98071411292983 -103,9.0,21.0,-2.619319553382597,5.400770303329455 -103,10.0,8.0,0.0,4.807692307692308 -103,10.0,10.0,0.0,-4.807692307692308 -103,11.0,3.0,0.0,4.191255364806866 -103,11.0,11.0,5.047393974936599,-21.25074238629525 -103,11.0,12.0,0.0,7.142857142857143 -103,11.0,14.0,-3.0953961826564296,6.097275864326261 -103,11.0,15.0,-1.9519977922801688,4.104359379111847 -103,12.0,11.0,0.0,7.142857142857143 -103,12.0,12.0,0.0,-7.142857142857143 -103,13.0,13.0,2.4909522639994623,-2.250874059369649 -103,13.0,14.0,-2.4909522639994623,2.250874059369649 -103,14.0,11.0,-3.0953961826564296,6.097275864326261 -103,14.0,13.0,-2.4909522639994623,2.250874059369649 -103,14.0,14.0,9.365498545964757,-16.01163373210796 -103,14.0,17.0,-1.8108011504072024,3.687418931630696 -103,14.0,22.0,-1.9683489489016612,3.976064876781356 -103,15.0,11.0,-1.9519977922801688,4.104359379111847 -103,15.0,15.0,3.271064728633931,-8.94513365126506 -103,15.0,16.0,-1.3190669363537617,4.8407742721532125 -103,16.0,9.0,-3.956039125715353,10.317447719844054 -103,16.0,15.0,-1.3190669363537617,4.8407742721532125 -103,16.0,16.0,5.275106062069114,-15.158221991997266 -103,17.0,14.0,-1.8108011504072024,3.687418931630696 -103,17.0,17.0,4.886487584415919,-9.906177730909668 -103,17.0,18.0,-3.0756864340087167,6.218758799278971 -103,18.0,17.0,-3.0756864340087167,6.218758799278971 -103,18.0,18.0,8.958039375185187,-17.98346468163191 -103,18.0,19.0,-5.88235294117647,11.76470588235294 -103,19.0,9.0,-1.7848303152666305,3.98535828943083 -103,19.0,18.0,-5.88235294117647,11.76470588235294 -103,19.0,19.0,7.6671832564431,-15.75006417178377 -103,20.0,9.0,-5.101853820159654,10.98071411292983 -103,20.0,20.0,21.876495189895888,-45.10843276170355 -103,20.0,21.0,-16.774641369736234,34.127718648773715 -103,21.0,9.0,-2.619319553382597,5.400770303329455 -103,21.0,20.0,-16.774641369736234,34.127718648773715 -103,21.0,21.0,21.93449907537439,-43.48289181517921 -103,21.0,23.0,-2.5405381522555563,3.95440286307604 -103,22.0,14.0,-1.9683489489016612,3.976064876781356 -103,22.0,22.0,3.429754555384988,-6.965303617315433 -103,22.0,23.0,-1.4614056064833263,2.989238740534077 -103,23.0,21.0,-2.5405381522555563,3.95440286307604 -103,23.0,22.0,-1.4614056064833263,2.989238740534077 -103,23.0,23.0,5.311836702613133,-9.188263657315172 -103,23.0,24.0,-1.3098929438742493,2.287622053705056 -103,24.0,23.0,-1.3098929438742493,2.287622053705056 -103,24.0,24.0,4.495715080321987,-7.864978761969621 -103,24.0,25.0,-1.2165301194494855,1.8171440463475024 -103,24.0,26.0,-1.9692920169982515,3.760212661917064 -103,25.0,24.0,-1.2165301194494855,1.8171440463475024 -103,25.0,25.0,1.2165301194494855,-1.8171440463475024 -103,26.0,24.0,-1.9692920169982515,3.760212661917064 -103,26.0,26.0,3.652281470778589,-9.46044252232512 -103,26.0,27.0,0.0,2.608731947574922 -103,26.0,28.0,-0.99553355095268,1.881005840357816 -103,26.0,29.0,-0.6874559028276572,1.293971494797717 -103,27.0,5.0,-4.362844058012917,15.463571542897856 -103,27.0,7.0,-1.4439790613954469,4.540814658476248 -103,27.0,26.0,0.0,2.608731947574922 -103,27.0,27.0,5.806823119408364,-22.67145722159613 -103,28.0,26.0,-0.99553355095268,1.881005840357816 -103,28.0,28.0,1.9075867579849564,-3.604364401207048 -103,28.0,29.0,-0.9120532070322764,1.7233585608492326 -103,29.0,26.0,-0.6874559028276572,1.293971494797717 -103,29.0,28.0,-0.9120532070322764,1.7233585608492326 -103,29.0,29.0,1.5995091098599337,-3.0173300556469496 -104,0.0,0.0,6.765516048652632,-21.23160167089863 -104,0.0,1.0,-5.224646179885656,15.646726840803398 -104,0.0,2.0,-1.5408698687669766,5.631674830095234 -104,1.0,0.0,-5.224646179885656,15.646726840803398 -104,1.0,1.0,9.75228216552403,-30.648662892676068 -104,1.0,3.0,-1.7055303166990268,5.1973792282565086 -104,1.0,4.0,-1.1359607881738778,4.772479328281356 -104,1.0,5.0,-1.6861448807654689,5.116477495334806 -104,2.0,0.0,-1.5408698687669766,5.631674830095234 -104,2.0,2.0,9.736318911079088,-29.13794745915803 -104,2.0,3.0,-8.19544904231211,23.5308726290628 -104,3.0,1.0,-1.7055303166990268,5.1973792282565086 -104,3.0,2.0,-8.19544904231211,23.5308726290628 -104,3.0,3.0,16.314103089185693,-55.509410535254254 -104,3.0,5.0,-6.413123730174556,22.31120356548123 -104,3.0,11.0,0.0,4.191255364806866 -104,4.0,1.0,-1.1359607881738778,4.772479328281356 -104,4.0,4.0,4.089980824135861,-12.190647245055052 -104,4.0,6.0,-2.954020035961983,7.449267916773697 -104,5.0,1.0,-1.6861448807654689,5.116477495334806 -104,5.0,3.0,-6.413123730174556,22.31120356548123 -104,5.0,5.0,22.341631269034565,-82.8291478657789 -104,5.0,6.0,-3.590210423980992,11.02611441072814 -104,5.0,7.0,-6.289308176100628,22.0125786163522 -104,5.0,8.0,0.0,4.915840805411357 -104,5.0,9.0,0.0,1.8561002591115965 -104,5.0,27.0,-4.362844058012917,15.463571542897856 -104,6.0,4.0,-2.954020035961983,7.449267916773697 -104,6.0,5.0,-3.590210423980992,11.02611441072814 -104,6.0,6.0,6.544230459942975,-18.45668232750184 -104,7.0,5.0,-6.289308176100628,22.0125786163522 -104,7.0,7.0,7.733287237496075,-26.527493274828448 -104,7.0,27.0,-1.4439790613954469,4.540814658476248 -104,8.0,5.0,0.0,4.915840805411357 -104,8.0,8.0,0.0,-9.615384615384617 -104,8.0,10.0,0.0,4.807692307692308 -104,9.0,5.0,0.0,1.8561002591115965 -104,9.0,9.0,9.506003688808882,-21.97540385676925 -104,9.0,19.0,-1.7848303152666305,3.98535828943083 -104,9.0,20.0,-5.101853820159654,10.98071411292983 -104,9.0,21.0,-2.619319553382597,5.400770303329455 -104,10.0,8.0,0.0,4.807692307692308 -104,10.0,10.0,0.0,-4.807692307692308 -104,11.0,3.0,0.0,4.191255364806866 -104,11.0,11.0,6.573961583776156,-24.424167659260668 -104,11.0,12.0,0.0,7.142857142857143 -104,11.0,13.0,-1.5265676088395577,3.1734252729654173 -104,11.0,14.0,-3.0953961826564296,6.097275864326261 -104,11.0,15.0,-1.9519977922801688,4.104359379111847 -104,12.0,11.0,0.0,7.142857142857143 -104,12.0,12.0,0.0,-7.142857142857143 -104,13.0,11.0,-1.5265676088395577,3.1734252729654173 -104,13.0,13.0,4.01751987283902,-5.424299332335067 -104,13.0,14.0,-2.4909522639994623,2.250874059369649 -104,14.0,11.0,-3.0953961826564296,6.097275864326261 -104,14.0,13.0,-2.4909522639994623,2.250874059369649 -104,14.0,14.0,9.365498545964757,-16.01163373210796 -104,14.0,17.0,-1.8108011504072024,3.687418931630696 -104,14.0,22.0,-1.9683489489016612,3.976064876781356 -104,15.0,11.0,-1.9519977922801688,4.104359379111847 -104,15.0,15.0,3.271064728633931,-8.94513365126506 -104,15.0,16.0,-1.3190669363537617,4.8407742721532125 -104,16.0,15.0,-1.3190669363537617,4.8407742721532125 -104,16.0,16.0,1.3190669363537617,-4.8407742721532125 -104,17.0,14.0,-1.8108011504072024,3.687418931630696 -104,17.0,17.0,4.886487584415919,-9.906177730909668 -104,17.0,18.0,-3.0756864340087167,6.218758799278971 -104,18.0,17.0,-3.0756864340087167,6.218758799278971 -104,18.0,18.0,8.958039375185187,-17.98346468163191 -104,18.0,19.0,-5.88235294117647,11.76470588235294 -104,19.0,9.0,-1.7848303152666305,3.98535828943083 -104,19.0,18.0,-5.88235294117647,11.76470588235294 -104,19.0,19.0,7.6671832564431,-15.75006417178377 -104,20.0,9.0,-5.101853820159654,10.98071411292983 -104,20.0,20.0,21.876495189895888,-45.10843276170355 -104,20.0,21.0,-16.774641369736234,34.127718648773715 -104,21.0,9.0,-2.619319553382597,5.400770303329455 -104,21.0,20.0,-16.774641369736234,34.127718648773715 -104,21.0,21.0,21.93449907537439,-43.48289181517921 -104,21.0,23.0,-2.5405381522555563,3.95440286307604 -104,22.0,14.0,-1.9683489489016612,3.976064876781356 -104,22.0,22.0,3.429754555384988,-6.965303617315433 -104,22.0,23.0,-1.4614056064833263,2.989238740534077 -104,23.0,21.0,-2.5405381522555563,3.95440286307604 -104,23.0,22.0,-1.4614056064833263,2.989238740534077 -104,23.0,23.0,5.311836702613133,-9.188263657315172 -104,23.0,24.0,-1.3098929438742493,2.287622053705056 -104,24.0,23.0,-1.3098929438742493,2.287622053705056 -104,24.0,24.0,4.495715080321987,-7.864978761969621 -104,24.0,25.0,-1.2165301194494855,1.8171440463475024 -104,24.0,26.0,-1.9692920169982515,3.760212661917064 -104,25.0,24.0,-1.2165301194494855,1.8171440463475024 -104,25.0,25.0,1.2165301194494855,-1.8171440463475024 -104,26.0,24.0,-1.9692920169982515,3.760212661917064 -104,26.0,26.0,3.652281470778589,-9.46044252232512 -104,26.0,27.0,0.0,2.608731947574922 -104,26.0,28.0,-0.99553355095268,1.881005840357816 -104,26.0,29.0,-0.6874559028276572,1.293971494797717 -104,27.0,5.0,-4.362844058012917,15.463571542897856 -104,27.0,7.0,-1.4439790613954469,4.540814658476248 -104,27.0,26.0,0.0,2.608731947574922 -104,27.0,27.0,5.806823119408364,-22.67145722159613 -104,28.0,26.0,-0.99553355095268,1.881005840357816 -104,28.0,28.0,1.9075867579849564,-3.604364401207048 -104,28.0,29.0,-0.9120532070322764,1.7233585608492326 -104,29.0,26.0,-0.6874559028276572,1.293971494797717 -104,29.0,28.0,-0.9120532070322764,1.7233585608492326 -104,29.0,29.0,1.5995091098599337,-3.0173300556469496 -105,0.0,0.0,6.765516048652632,-21.23160167089863 -105,0.0,1.0,-5.224646179885656,15.646726840803398 -105,0.0,2.0,-1.5408698687669766,5.631674830095234 -105,1.0,0.0,-5.224646179885656,15.646726840803398 -105,1.0,1.0,9.75228216552403,-30.648662892676068 -105,1.0,3.0,-1.7055303166990268,5.1973792282565086 -105,1.0,4.0,-1.1359607881738778,4.772479328281356 -105,1.0,5.0,-1.6861448807654689,5.116477495334806 -105,2.0,0.0,-1.5408698687669766,5.631674830095234 -105,2.0,2.0,9.736318911079088,-29.13794745915803 -105,2.0,3.0,-8.19544904231211,23.5308726290628 -105,3.0,1.0,-1.7055303166990268,5.1973792282565086 -105,3.0,2.0,-8.19544904231211,23.5308726290628 -105,3.0,3.0,16.314103089185693,-55.509410535254254 -105,3.0,5.0,-6.413123730174556,22.31120356548123 -105,3.0,11.0,0.0,4.191255364806866 -105,4.0,1.0,-1.1359607881738778,4.772479328281356 -105,4.0,4.0,4.089980824135861,-12.190647245055052 -105,4.0,6.0,-2.954020035961983,7.449267916773697 -105,5.0,1.0,-1.6861448807654689,5.116477495334806 -105,5.0,3.0,-6.413123730174556,22.31120356548123 -105,5.0,5.0,22.341631269034565,-82.8291478657789 -105,5.0,6.0,-3.590210423980992,11.02611441072814 -105,5.0,7.0,-6.289308176100628,22.0125786163522 -105,5.0,8.0,0.0,4.915840805411357 -105,5.0,9.0,0.0,1.8561002591115965 -105,5.0,27.0,-4.362844058012917,15.463571542897856 -105,6.0,4.0,-2.954020035961983,7.449267916773697 -105,6.0,5.0,-3.590210423980992,11.02611441072814 -105,6.0,6.0,6.544230459942975,-18.45668232750184 -105,7.0,5.0,-6.289308176100628,22.0125786163522 -105,7.0,7.0,7.733287237496075,-26.527493274828448 -105,7.0,27.0,-1.4439790613954469,4.540814658476248 -105,8.0,5.0,0.0,4.915840805411357 -105,8.0,8.0,0.0,-18.706293706293707 -105,8.0,9.0,0.0,9.090909090909092 -105,8.0,10.0,0.0,4.807692307692308 -105,9.0,5.0,0.0,1.8561002591115965 -105,9.0,8.0,0.0,9.090909090909092 -105,9.0,9.0,10.842723261141638,-35.98299036419294 -105,9.0,16.0,-3.956039125715353,10.317447719844054 -105,9.0,19.0,-1.7848303152666305,3.98535828943083 -105,9.0,20.0,-5.101853820159654,10.98071411292983 -105,10.0,8.0,0.0,4.807692307692308 -105,10.0,10.0,0.0,-4.807692307692308 -105,11.0,3.0,0.0,4.191255364806866 -105,11.0,11.0,6.573961583776156,-24.424167659260668 -105,11.0,12.0,0.0,7.142857142857143 -105,11.0,13.0,-1.5265676088395577,3.1734252729654173 -105,11.0,14.0,-3.0953961826564296,6.097275864326261 -105,11.0,15.0,-1.9519977922801688,4.104359379111847 -105,12.0,11.0,0.0,7.142857142857143 -105,12.0,12.0,0.0,-7.142857142857143 -105,13.0,11.0,-1.5265676088395577,3.1734252729654173 -105,13.0,13.0,4.01751987283902,-5.424299332335067 -105,13.0,14.0,-2.4909522639994623,2.250874059369649 -105,14.0,11.0,-3.0953961826564296,6.097275864326261 -105,14.0,13.0,-2.4909522639994623,2.250874059369649 -105,14.0,14.0,9.365498545964757,-16.01163373210796 -105,14.0,17.0,-1.8108011504072024,3.687418931630696 -105,14.0,22.0,-1.9683489489016612,3.976064876781356 -105,15.0,11.0,-1.9519977922801688,4.104359379111847 -105,15.0,15.0,3.271064728633931,-8.94513365126506 -105,15.0,16.0,-1.3190669363537617,4.8407742721532125 -105,16.0,9.0,-3.956039125715353,10.317447719844054 -105,16.0,15.0,-1.3190669363537617,4.8407742721532125 -105,16.0,16.0,5.275106062069114,-15.158221991997266 -105,17.0,14.0,-1.8108011504072024,3.687418931630696 -105,17.0,17.0,1.8108011504072024,-3.687418931630696 -105,18.0,18.0,5.88235294117647,-11.76470588235294 -105,18.0,19.0,-5.88235294117647,11.76470588235294 -105,19.0,9.0,-1.7848303152666305,3.98535828943083 -105,19.0,18.0,-5.88235294117647,11.76470588235294 -105,19.0,19.0,7.6671832564431,-15.75006417178377 -105,20.0,9.0,-5.101853820159654,10.98071411292983 -105,20.0,20.0,21.876495189895888,-45.10843276170355 -105,20.0,21.0,-16.774641369736234,34.127718648773715 -105,21.0,20.0,-16.774641369736234,34.127718648773715 -105,21.0,21.0,19.31517952199179,-38.08212151184976 -105,21.0,23.0,-2.5405381522555563,3.95440286307604 -105,22.0,14.0,-1.9683489489016612,3.976064876781356 -105,22.0,22.0,3.429754555384988,-6.965303617315433 -105,22.0,23.0,-1.4614056064833263,2.989238740534077 -105,23.0,21.0,-2.5405381522555563,3.95440286307604 -105,23.0,22.0,-1.4614056064833263,2.989238740534077 -105,23.0,23.0,5.311836702613133,-9.188263657315172 -105,23.0,24.0,-1.3098929438742493,2.287622053705056 -105,24.0,23.0,-1.3098929438742493,2.287622053705056 -105,24.0,24.0,4.495715080321987,-7.864978761969621 -105,24.0,25.0,-1.2165301194494855,1.8171440463475024 -105,24.0,26.0,-1.9692920169982515,3.760212661917064 -105,25.0,24.0,-1.2165301194494855,1.8171440463475024 -105,25.0,25.0,1.2165301194494855,-1.8171440463475024 -105,26.0,24.0,-1.9692920169982515,3.760212661917064 -105,26.0,26.0,2.656747919825909,-7.579436681967305 -105,26.0,27.0,0.0,2.608731947574922 -105,26.0,29.0,-0.6874559028276572,1.293971494797717 -105,27.0,5.0,-4.362844058012917,15.463571542897856 -105,27.0,7.0,-1.4439790613954469,4.540814658476248 -105,27.0,26.0,0.0,2.608731947574922 -105,27.0,27.0,5.806823119408364,-22.67145722159613 -105,28.0,28.0,0.9120532070322764,-1.7233585608492326 -105,28.0,29.0,-0.9120532070322764,1.7233585608492326 -105,29.0,26.0,-0.6874559028276572,1.293971494797717 -105,29.0,28.0,-0.9120532070322764,1.7233585608492326 -105,29.0,29.0,1.5995091098599337,-3.0173300556469496 -106,0.0,0.0,6.765516048652632,-21.23160167089863 -106,0.0,1.0,-5.224646179885656,15.646726840803398 -106,0.0,2.0,-1.5408698687669766,5.631674830095234 -106,1.0,0.0,-5.224646179885656,15.646726840803398 -106,1.0,1.0,8.61632137735015,-25.897083564394716 -106,1.0,3.0,-1.7055303166990268,5.1973792282565086 -106,1.0,5.0,-1.6861448807654689,5.116477495334806 -106,2.0,0.0,-1.5408698687669766,5.631674830095234 -106,2.0,2.0,9.736318911079088,-29.13794745915803 -106,2.0,3.0,-8.19544904231211,23.5308726290628 -106,3.0,1.0,-1.7055303166990268,5.1973792282565086 -106,3.0,2.0,-8.19544904231211,23.5308726290628 -106,3.0,3.0,16.314103089185693,-55.509410535254254 -106,3.0,5.0,-6.413123730174556,22.31120356548123 -106,3.0,11.0,0.0,4.191255364806866 -106,4.0,4.0,2.954020035961983,-7.439067916773697 -106,4.0,6.0,-2.954020035961983,7.449267916773697 -106,5.0,1.0,-1.6861448807654689,5.116477495334806 -106,5.0,3.0,-6.413123730174556,22.31120356548123 -106,5.0,5.0,22.341631269034565,-82.8291478657789 -106,5.0,6.0,-3.590210423980992,11.02611441072814 -106,5.0,7.0,-6.289308176100628,22.0125786163522 -106,5.0,8.0,0.0,4.915840805411357 -106,5.0,9.0,0.0,1.8561002591115965 -106,5.0,27.0,-4.362844058012917,15.463571542897856 -106,6.0,4.0,-2.954020035961983,7.449267916773697 -106,6.0,5.0,-3.590210423980992,11.02611441072814 -106,6.0,6.0,6.544230459942975,-18.45668232750184 -106,7.0,5.0,-6.289308176100628,22.0125786163522 -106,7.0,7.0,7.733287237496075,-26.527493274828448 -106,7.0,27.0,-1.4439790613954469,4.540814658476248 -106,8.0,5.0,0.0,4.915840805411357 -106,8.0,8.0,0.0,-18.706293706293707 -106,8.0,9.0,0.0,9.090909090909092 -106,8.0,10.0,0.0,4.807692307692308 -106,9.0,5.0,0.0,1.8561002591115965 -106,9.0,8.0,0.0,9.090909090909092 -106,9.0,9.0,13.462042814524237,-41.3837606675224 -106,9.0,16.0,-3.956039125715353,10.317447719844054 -106,9.0,19.0,-1.7848303152666305,3.98535828943083 -106,9.0,20.0,-5.101853820159654,10.98071411292983 -106,9.0,21.0,-2.619319553382597,5.400770303329455 -106,10.0,8.0,0.0,4.807692307692308 -106,10.0,10.0,0.0,-4.807692307692308 -106,11.0,3.0,0.0,4.191255364806866 -106,11.0,11.0,6.573961583776156,-24.424167659260668 -106,11.0,12.0,0.0,7.142857142857143 -106,11.0,13.0,-1.5265676088395577,3.1734252729654173 -106,11.0,14.0,-3.0953961826564296,6.097275864326261 -106,11.0,15.0,-1.9519977922801688,4.104359379111847 -106,12.0,11.0,0.0,7.142857142857143 -106,12.0,12.0,0.0,-7.142857142857143 -106,13.0,11.0,-1.5265676088395577,3.1734252729654173 -106,13.0,13.0,4.01751987283902,-5.424299332335067 -106,13.0,14.0,-2.4909522639994623,2.250874059369649 -106,14.0,11.0,-3.0953961826564296,6.097275864326261 -106,14.0,13.0,-2.4909522639994623,2.250874059369649 -106,14.0,14.0,9.365498545964757,-16.01163373210796 -106,14.0,17.0,-1.8108011504072024,3.687418931630696 -106,14.0,22.0,-1.9683489489016612,3.976064876781356 -106,15.0,11.0,-1.9519977922801688,4.104359379111847 -106,15.0,15.0,3.271064728633931,-8.94513365126506 -106,15.0,16.0,-1.3190669363537617,4.8407742721532125 -106,16.0,9.0,-3.956039125715353,10.317447719844054 -106,16.0,15.0,-1.3190669363537617,4.8407742721532125 -106,16.0,16.0,5.275106062069114,-15.158221991997266 -106,17.0,14.0,-1.8108011504072024,3.687418931630696 -106,17.0,17.0,4.886487584415919,-9.906177730909668 -106,17.0,18.0,-3.0756864340087167,6.218758799278971 -106,18.0,17.0,-3.0756864340087167,6.218758799278971 -106,18.0,18.0,8.958039375185187,-17.98346468163191 -106,18.0,19.0,-5.88235294117647,11.76470588235294 -106,19.0,9.0,-1.7848303152666305,3.98535828943083 -106,19.0,18.0,-5.88235294117647,11.76470588235294 -106,19.0,19.0,7.6671832564431,-15.75006417178377 -106,20.0,9.0,-5.101853820159654,10.98071411292983 -106,20.0,20.0,5.101853820159654,-10.98071411292983 -106,21.0,9.0,-2.619319553382597,5.400770303329455 -106,21.0,21.0,5.159857705638154,-9.355173166405494 -106,21.0,23.0,-2.5405381522555563,3.95440286307604 -106,22.0,14.0,-1.9683489489016612,3.976064876781356 -106,22.0,22.0,3.429754555384988,-6.965303617315433 -106,22.0,23.0,-1.4614056064833263,2.989238740534077 -106,23.0,21.0,-2.5405381522555563,3.95440286307604 -106,23.0,22.0,-1.4614056064833263,2.989238740534077 -106,23.0,23.0,5.311836702613133,-9.188263657315172 -106,23.0,24.0,-1.3098929438742493,2.287622053705056 -106,24.0,23.0,-1.3098929438742493,2.287622053705056 -106,24.0,24.0,2.526423063323735,-4.104766100052558 -106,24.0,25.0,-1.2165301194494855,1.8171440463475024 -106,25.0,24.0,-1.2165301194494855,1.8171440463475024 -106,25.0,25.0,1.2165301194494855,-1.8171440463475024 -106,26.0,26.0,1.6829894537803372,-5.700229860408058 -106,26.0,27.0,0.0,2.608731947574922 -106,26.0,28.0,-0.99553355095268,1.881005840357816 -106,26.0,29.0,-0.6874559028276572,1.293971494797717 -106,27.0,5.0,-4.362844058012917,15.463571542897856 -106,27.0,7.0,-1.4439790613954469,4.540814658476248 -106,27.0,26.0,0.0,2.608731947574922 -106,27.0,27.0,5.806823119408364,-22.67145722159613 -106,28.0,26.0,-0.99553355095268,1.881005840357816 -106,28.0,28.0,1.9075867579849564,-3.604364401207048 -106,28.0,29.0,-0.9120532070322764,1.7233585608492326 -106,29.0,26.0,-0.6874559028276572,1.293971494797717 -106,29.0,28.0,-0.9120532070322764,1.7233585608492326 -106,29.0,29.0,1.5995091098599337,-3.0173300556469496 -107,0.0,0.0,6.765516048652632,-21.23160167089863 -107,0.0,1.0,-5.224646179885656,15.646726840803398 -107,0.0,2.0,-1.5408698687669766,5.631674830095234 -107,1.0,0.0,-5.224646179885656,15.646726840803398 -107,1.0,1.0,9.75228216552403,-30.648662892676068 -107,1.0,3.0,-1.7055303166990268,5.1973792282565086 -107,1.0,4.0,-1.1359607881738778,4.772479328281356 -107,1.0,5.0,-1.6861448807654689,5.116477495334806 -107,2.0,0.0,-1.5408698687669766,5.631674830095234 -107,2.0,2.0,1.5408698687669766,-5.611274830095233 -107,3.0,1.0,-1.7055303166990268,5.1973792282565086 -107,3.0,3.0,8.118654046873583,-31.982737906191456 -107,3.0,5.0,-6.413123730174556,22.31120356548123 -107,3.0,11.0,0.0,4.191255364806866 -107,4.0,1.0,-1.1359607881738778,4.772479328281356 -107,4.0,4.0,4.089980824135861,-12.190647245055052 -107,4.0,6.0,-2.954020035961983,7.449267916773697 -107,5.0,1.0,-1.6861448807654689,5.116477495334806 -107,5.0,3.0,-6.413123730174556,22.31120356548123 -107,5.0,5.0,22.341631269034565,-82.8291478657789 -107,5.0,6.0,-3.590210423980992,11.02611441072814 -107,5.0,7.0,-6.289308176100628,22.0125786163522 -107,5.0,8.0,0.0,4.915840805411357 -107,5.0,9.0,0.0,1.8561002591115965 -107,5.0,27.0,-4.362844058012917,15.463571542897856 -107,6.0,4.0,-2.954020035961983,7.449267916773697 -107,6.0,5.0,-3.590210423980992,11.02611441072814 -107,6.0,6.0,6.544230459942975,-18.45668232750184 -107,7.0,5.0,-6.289308176100628,22.0125786163522 -107,7.0,7.0,7.733287237496075,-26.527493274828448 -107,7.0,27.0,-1.4439790613954469,4.540814658476248 -107,8.0,5.0,0.0,4.915840805411357 -107,8.0,8.0,0.0,-18.706293706293707 -107,8.0,9.0,0.0,9.090909090909092 -107,8.0,10.0,0.0,4.807692307692308 -107,9.0,5.0,0.0,1.8561002591115965 -107,9.0,8.0,0.0,9.090909090909092 -107,9.0,9.0,13.462042814524237,-41.3837606675224 -107,9.0,16.0,-3.956039125715353,10.317447719844054 -107,9.0,19.0,-1.7848303152666305,3.98535828943083 -107,9.0,20.0,-5.101853820159654,10.98071411292983 -107,9.0,21.0,-2.619319553382597,5.400770303329455 -107,10.0,8.0,0.0,4.807692307692308 -107,10.0,10.0,0.0,-4.807692307692308 -107,11.0,3.0,0.0,4.191255364806866 -107,11.0,11.0,6.573961583776156,-24.424167659260668 -107,11.0,12.0,0.0,7.142857142857143 -107,11.0,13.0,-1.5265676088395577,3.1734252729654173 -107,11.0,14.0,-3.0953961826564296,6.097275864326261 -107,11.0,15.0,-1.9519977922801688,4.104359379111847 -107,12.0,11.0,0.0,7.142857142857143 -107,12.0,12.0,0.0,-7.142857142857143 -107,13.0,11.0,-1.5265676088395577,3.1734252729654173 -107,13.0,13.0,4.01751987283902,-5.424299332335067 -107,13.0,14.0,-2.4909522639994623,2.250874059369649 -107,14.0,11.0,-3.0953961826564296,6.097275864326261 -107,14.0,13.0,-2.4909522639994623,2.250874059369649 -107,14.0,14.0,9.365498545964757,-16.01163373210796 -107,14.0,17.0,-1.8108011504072024,3.687418931630696 -107,14.0,22.0,-1.9683489489016612,3.976064876781356 -107,15.0,11.0,-1.9519977922801688,4.104359379111847 -107,15.0,15.0,3.271064728633931,-8.94513365126506 -107,15.0,16.0,-1.3190669363537617,4.8407742721532125 -107,16.0,9.0,-3.956039125715353,10.317447719844054 -107,16.0,15.0,-1.3190669363537617,4.8407742721532125 -107,16.0,16.0,5.275106062069114,-15.158221991997266 -107,17.0,14.0,-1.8108011504072024,3.687418931630696 -107,17.0,17.0,4.886487584415919,-9.906177730909668 -107,17.0,18.0,-3.0756864340087167,6.218758799278971 -107,18.0,17.0,-3.0756864340087167,6.218758799278971 -107,18.0,18.0,3.0756864340087167,-6.218758799278971 -107,19.0,9.0,-1.7848303152666305,3.98535828943083 -107,19.0,19.0,1.7848303152666305,-3.98535828943083 -107,20.0,9.0,-5.101853820159654,10.98071411292983 -107,20.0,20.0,5.101853820159654,-10.98071411292983 -107,21.0,9.0,-2.619319553382597,5.400770303329455 -107,21.0,21.0,5.159857705638154,-9.355173166405494 -107,21.0,23.0,-2.5405381522555563,3.95440286307604 -107,22.0,14.0,-1.9683489489016612,3.976064876781356 -107,22.0,22.0,1.9683489489016612,-3.976064876781356 -107,23.0,21.0,-2.5405381522555563,3.95440286307604 -107,23.0,23.0,3.850431096129806,-6.199024916781094 -107,23.0,24.0,-1.3098929438742493,2.287622053705056 -107,24.0,23.0,-1.3098929438742493,2.287622053705056 -107,24.0,24.0,4.495715080321987,-7.864978761969621 -107,24.0,25.0,-1.2165301194494855,1.8171440463475024 -107,24.0,26.0,-1.9692920169982515,3.760212661917064 -107,25.0,24.0,-1.2165301194494855,1.8171440463475024 -107,25.0,25.0,1.2165301194494855,-1.8171440463475024 -107,26.0,24.0,-1.9692920169982515,3.760212661917064 -107,26.0,26.0,3.652281470778589,-9.46044252232512 -107,26.0,27.0,0.0,2.608731947574922 -107,26.0,28.0,-0.99553355095268,1.881005840357816 -107,26.0,29.0,-0.6874559028276572,1.293971494797717 -107,27.0,5.0,-4.362844058012917,15.463571542897856 -107,27.0,7.0,-1.4439790613954469,4.540814658476248 -107,27.0,26.0,0.0,2.608731947574922 -107,27.0,27.0,5.806823119408364,-22.67145722159613 -107,28.0,26.0,-0.99553355095268,1.881005840357816 -107,28.0,28.0,1.9075867579849564,-3.604364401207048 -107,28.0,29.0,-0.9120532070322764,1.7233585608492326 -107,29.0,26.0,-0.6874559028276572,1.293971494797717 -107,29.0,28.0,-0.9120532070322764,1.7233585608492326 -107,29.0,29.0,1.5995091098599337,-3.0173300556469496 -108,0.0,0.0,6.765516048652632,-21.23160167089863 -108,0.0,1.0,-5.224646179885656,15.646726840803398 -108,0.0,2.0,-1.5408698687669766,5.631674830095234 -108,1.0,0.0,-5.224646179885656,15.646726840803398 -108,1.0,1.0,9.75228216552403,-30.648662892676068 -108,1.0,3.0,-1.7055303166990268,5.1973792282565086 -108,1.0,4.0,-1.1359607881738778,4.772479328281356 -108,1.0,5.0,-1.6861448807654689,5.116477495334806 -108,2.0,0.0,-1.5408698687669766,5.631674830095234 -108,2.0,2.0,9.736318911079088,-29.13794745915803 -108,2.0,3.0,-8.19544904231211,23.5308726290628 -108,3.0,1.0,-1.7055303166990268,5.1973792282565086 -108,3.0,2.0,-8.19544904231211,23.5308726290628 -108,3.0,3.0,16.314103089185693,-51.01235542280054 -108,3.0,5.0,-6.413123730174556,22.31120356548123 -108,4.0,1.0,-1.1359607881738778,4.772479328281356 -108,4.0,4.0,4.089980824135861,-12.190647245055052 -108,4.0,6.0,-2.954020035961983,7.449267916773697 -108,5.0,1.0,-1.6861448807654689,5.116477495334806 -108,5.0,3.0,-6.413123730174556,22.31120356548123 -108,5.0,5.0,22.341631269034565,-82.8291478657789 -108,5.0,6.0,-3.590210423980992,11.02611441072814 -108,5.0,7.0,-6.289308176100628,22.0125786163522 -108,5.0,8.0,0.0,4.915840805411357 -108,5.0,9.0,0.0,1.8561002591115965 -108,5.0,27.0,-4.362844058012917,15.463571542897856 -108,6.0,4.0,-2.954020035961983,7.449267916773697 -108,6.0,5.0,-3.590210423980992,11.02611441072814 -108,6.0,6.0,6.544230459942975,-18.45668232750184 -108,7.0,5.0,-6.289308176100628,22.0125786163522 -108,7.0,7.0,7.733287237496075,-26.527493274828448 -108,7.0,27.0,-1.4439790613954469,4.540814658476248 -108,8.0,5.0,0.0,4.915840805411357 -108,8.0,8.0,0.0,-18.706293706293707 -108,8.0,9.0,0.0,9.090909090909092 -108,8.0,10.0,0.0,4.807692307692308 -108,9.0,5.0,0.0,1.8561002591115965 -108,9.0,8.0,0.0,9.090909090909092 -108,9.0,9.0,8.36018899436458,-30.40304655459257 -108,9.0,16.0,-3.956039125715353,10.317447719844054 -108,9.0,19.0,-1.7848303152666305,3.98535828943083 -108,9.0,21.0,-2.619319553382597,5.400770303329455 -108,10.0,8.0,0.0,4.807692307692308 -108,10.0,10.0,0.0,-4.807692307692308 -108,11.0,11.0,6.573961583776156,-20.517917659260668 -108,11.0,12.0,0.0,7.142857142857143 -108,11.0,13.0,-1.5265676088395577,3.1734252729654173 -108,11.0,14.0,-3.0953961826564296,6.097275864326261 -108,11.0,15.0,-1.9519977922801688,4.104359379111847 -108,12.0,11.0,0.0,7.142857142857143 -108,12.0,12.0,0.0,-7.142857142857143 -108,13.0,11.0,-1.5265676088395577,3.1734252729654173 -108,13.0,13.0,4.01751987283902,-5.424299332335067 -108,13.0,14.0,-2.4909522639994623,2.250874059369649 -108,14.0,11.0,-3.0953961826564296,6.097275864326261 -108,14.0,13.0,-2.4909522639994623,2.250874059369649 -108,14.0,14.0,9.365498545964757,-16.01163373210796 -108,14.0,17.0,-1.8108011504072024,3.687418931630696 -108,14.0,22.0,-1.9683489489016612,3.976064876781356 -108,15.0,11.0,-1.9519977922801688,4.104359379111847 -108,15.0,15.0,3.271064728633931,-8.94513365126506 -108,15.0,16.0,-1.3190669363537617,4.8407742721532125 -108,16.0,9.0,-3.956039125715353,10.317447719844054 -108,16.0,15.0,-1.3190669363537617,4.8407742721532125 -108,16.0,16.0,5.275106062069114,-15.158221991997266 -108,17.0,14.0,-1.8108011504072024,3.687418931630696 -108,17.0,17.0,4.886487584415919,-9.906177730909668 -108,17.0,18.0,-3.0756864340087167,6.218758799278971 -108,18.0,17.0,-3.0756864340087167,6.218758799278971 -108,18.0,18.0,8.958039375185187,-17.98346468163191 -108,18.0,19.0,-5.88235294117647,11.76470588235294 -108,19.0,9.0,-1.7848303152666305,3.98535828943083 -108,19.0,18.0,-5.88235294117647,11.76470588235294 -108,19.0,19.0,7.6671832564431,-15.75006417178377 -108,20.0,20.0,16.774641369736234,-34.127718648773715 -108,20.0,21.0,-16.774641369736234,34.127718648773715 -108,21.0,9.0,-2.619319553382597,5.400770303329455 -108,21.0,20.0,-16.774641369736234,34.127718648773715 -108,21.0,21.0,21.93449907537439,-43.48289181517921 -108,21.0,23.0,-2.5405381522555563,3.95440286307604 -108,22.0,14.0,-1.9683489489016612,3.976064876781356 -108,22.0,22.0,1.9683489489016612,-3.976064876781356 -108,23.0,21.0,-2.5405381522555563,3.95440286307604 -108,23.0,23.0,3.850431096129806,-6.199024916781094 -108,23.0,24.0,-1.3098929438742493,2.287622053705056 -108,24.0,23.0,-1.3098929438742493,2.287622053705056 -108,24.0,24.0,4.495715080321987,-7.864978761969621 -108,24.0,25.0,-1.2165301194494855,1.8171440463475024 -108,24.0,26.0,-1.9692920169982515,3.760212661917064 -108,25.0,24.0,-1.2165301194494855,1.8171440463475024 -108,25.0,25.0,1.2165301194494855,-1.8171440463475024 -108,26.0,24.0,-1.9692920169982515,3.760212661917064 -108,26.0,26.0,2.656747919825909,-7.579436681967305 -108,26.0,27.0,0.0,2.608731947574922 -108,26.0,29.0,-0.6874559028276572,1.293971494797717 -108,27.0,5.0,-4.362844058012917,15.463571542897856 -108,27.0,7.0,-1.4439790613954469,4.540814658476248 -108,27.0,26.0,0.0,2.608731947574922 -108,27.0,27.0,5.806823119408364,-22.67145722159613 -108,28.0,28.0,0.9120532070322764,-1.7233585608492326 -108,28.0,29.0,-0.9120532070322764,1.7233585608492326 -108,29.0,26.0,-0.6874559028276572,1.293971494797717 -108,29.0,28.0,-0.9120532070322764,1.7233585608492326 -108,29.0,29.0,1.5995091098599337,-3.0173300556469496 -109,0.0,0.0,6.765516048652632,-21.23160167089863 -109,0.0,1.0,-5.224646179885656,15.646726840803398 -109,0.0,2.0,-1.5408698687669766,5.631674830095234 -109,1.0,0.0,-5.224646179885656,15.646726840803398 -109,1.0,1.0,9.75228216552403,-30.648662892676068 -109,1.0,3.0,-1.7055303166990268,5.1973792282565086 -109,1.0,4.0,-1.1359607881738778,4.772479328281356 -109,1.0,5.0,-1.6861448807654689,5.116477495334806 -109,2.0,0.0,-1.5408698687669766,5.631674830095234 -109,2.0,2.0,9.736318911079088,-29.13794745915803 -109,2.0,3.0,-8.19544904231211,23.5308726290628 -109,3.0,1.0,-1.7055303166990268,5.1973792282565086 -109,3.0,2.0,-8.19544904231211,23.5308726290628 -109,3.0,3.0,16.314103089185693,-55.509410535254254 -109,3.0,5.0,-6.413123730174556,22.31120356548123 -109,3.0,11.0,0.0,4.191255364806866 -109,4.0,1.0,-1.1359607881738778,4.772479328281356 -109,4.0,4.0,4.089980824135861,-12.190647245055052 -109,4.0,6.0,-2.954020035961983,7.449267916773697 -109,5.0,1.0,-1.6861448807654689,5.116477495334806 -109,5.0,3.0,-6.413123730174556,22.31120356548123 -109,5.0,5.0,22.341631269034565,-82.8291478657789 -109,5.0,6.0,-3.590210423980992,11.02611441072814 -109,5.0,7.0,-6.289308176100628,22.0125786163522 -109,5.0,8.0,0.0,4.915840805411357 -109,5.0,9.0,0.0,1.8561002591115965 -109,5.0,27.0,-4.362844058012917,15.463571542897856 -109,6.0,4.0,-2.954020035961983,7.449267916773697 -109,6.0,5.0,-3.590210423980992,11.02611441072814 -109,6.0,6.0,6.544230459942975,-18.45668232750184 -109,7.0,5.0,-6.289308176100628,22.0125786163522 -109,7.0,7.0,7.733287237496075,-26.527493274828448 -109,7.0,27.0,-1.4439790613954469,4.540814658476248 -109,8.0,5.0,0.0,4.915840805411357 -109,8.0,8.0,0.0,-18.706293706293707 -109,8.0,9.0,0.0,9.090909090909092 -109,8.0,10.0,0.0,4.807692307692308 -109,9.0,5.0,0.0,1.8561002591115965 -109,9.0,8.0,0.0,9.090909090909092 -109,9.0,9.0,13.462042814524237,-41.3837606675224 -109,9.0,16.0,-3.956039125715353,10.317447719844054 -109,9.0,19.0,-1.7848303152666305,3.98535828943083 -109,9.0,20.0,-5.101853820159654,10.98071411292983 -109,9.0,21.0,-2.619319553382597,5.400770303329455 -109,10.0,8.0,0.0,4.807692307692308 -109,10.0,10.0,0.0,-4.807692307692308 -109,11.0,3.0,0.0,4.191255364806866 -109,11.0,11.0,6.573961583776156,-24.424167659260668 -109,11.0,12.0,0.0,7.142857142857143 -109,11.0,13.0,-1.5265676088395577,3.1734252729654173 -109,11.0,14.0,-3.0953961826564296,6.097275864326261 -109,11.0,15.0,-1.9519977922801688,4.104359379111847 -109,12.0,11.0,0.0,7.142857142857143 -109,12.0,12.0,0.0,-7.142857142857143 -109,13.0,11.0,-1.5265676088395577,3.1734252729654173 -109,13.0,13.0,4.01751987283902,-5.424299332335067 -109,13.0,14.0,-2.4909522639994623,2.250874059369649 -109,14.0,11.0,-3.0953961826564296,6.097275864326261 -109,14.0,13.0,-2.4909522639994623,2.250874059369649 -109,14.0,14.0,9.365498545964757,-16.01163373210796 -109,14.0,17.0,-1.8108011504072024,3.687418931630696 -109,14.0,22.0,-1.9683489489016612,3.976064876781356 -109,15.0,11.0,-1.9519977922801688,4.104359379111847 -109,15.0,15.0,3.271064728633931,-8.94513365126506 -109,15.0,16.0,-1.3190669363537617,4.8407742721532125 -109,16.0,9.0,-3.956039125715353,10.317447719844054 -109,16.0,15.0,-1.3190669363537617,4.8407742721532125 -109,16.0,16.0,5.275106062069114,-15.158221991997266 -109,17.0,14.0,-1.8108011504072024,3.687418931630696 -109,17.0,17.0,4.886487584415919,-9.906177730909668 -109,17.0,18.0,-3.0756864340087167,6.218758799278971 -109,18.0,17.0,-3.0756864340087167,6.218758799278971 -109,18.0,18.0,8.958039375185187,-17.98346468163191 -109,18.0,19.0,-5.88235294117647,11.76470588235294 -109,19.0,9.0,-1.7848303152666305,3.98535828943083 -109,19.0,18.0,-5.88235294117647,11.76470588235294 -109,19.0,19.0,7.6671832564431,-15.75006417178377 -109,20.0,9.0,-5.101853820159654,10.98071411292983 -109,20.0,20.0,21.876495189895888,-45.10843276170355 -109,20.0,21.0,-16.774641369736234,34.127718648773715 -109,21.0,9.0,-2.619319553382597,5.400770303329455 -109,21.0,20.0,-16.774641369736234,34.127718648773715 -109,21.0,21.0,21.93449907537439,-43.48289181517921 -109,21.0,23.0,-2.5405381522555563,3.95440286307604 -109,22.0,14.0,-1.9683489489016612,3.976064876781356 -109,22.0,22.0,3.429754555384988,-6.965303617315433 -109,22.0,23.0,-1.4614056064833263,2.989238740534077 -109,23.0,21.0,-2.5405381522555563,3.95440286307604 -109,23.0,22.0,-1.4614056064833263,2.989238740534077 -109,23.0,23.0,5.311836702613133,-9.188263657315172 -109,23.0,24.0,-1.3098929438742493,2.287622053705056 -109,24.0,23.0,-1.3098929438742493,2.287622053705056 -109,24.0,24.0,4.495715080321987,-7.864978761969621 -109,24.0,25.0,-1.2165301194494855,1.8171440463475024 -109,24.0,26.0,-1.9692920169982515,3.760212661917064 -109,25.0,24.0,-1.2165301194494855,1.8171440463475024 -109,25.0,25.0,1.2165301194494855,-1.8171440463475024 -109,26.0,24.0,-1.9692920169982515,3.760212661917064 -109,26.0,26.0,3.652281470778589,-9.46044252232512 -109,26.0,27.0,0.0,2.608731947574922 -109,26.0,28.0,-0.99553355095268,1.881005840357816 -109,26.0,29.0,-0.6874559028276572,1.293971494797717 -109,27.0,5.0,-4.362844058012917,15.463571542897856 -109,27.0,7.0,-1.4439790613954469,4.540814658476248 -109,27.0,26.0,0.0,2.608731947574922 -109,27.0,27.0,5.806823119408364,-22.67145722159613 -109,28.0,26.0,-0.99553355095268,1.881005840357816 -109,28.0,28.0,1.9075867579849564,-3.604364401207048 -109,28.0,29.0,-0.9120532070322764,1.7233585608492326 -109,29.0,26.0,-0.6874559028276572,1.293971494797717 -109,29.0,28.0,-0.9120532070322764,1.7233585608492326 -109,29.0,29.0,1.5995091098599337,-3.0173300556469496 -110,0.0,0.0,6.765516048652632,-21.23160167089863 -110,0.0,1.0,-5.224646179885656,15.646726840803398 -110,0.0,2.0,-1.5408698687669766,5.631674830095234 -110,1.0,0.0,-5.224646179885656,15.646726840803398 -110,1.0,1.0,9.75228216552403,-30.648662892676068 -110,1.0,3.0,-1.7055303166990268,5.1973792282565086 -110,1.0,4.0,-1.1359607881738778,4.772479328281356 -110,1.0,5.0,-1.6861448807654689,5.116477495334806 -110,2.0,0.0,-1.5408698687669766,5.631674830095234 -110,2.0,2.0,9.736318911079088,-29.13794745915803 -110,2.0,3.0,-8.19544904231211,23.5308726290628 -110,3.0,1.0,-1.7055303166990268,5.1973792282565086 -110,3.0,2.0,-8.19544904231211,23.5308726290628 -110,3.0,3.0,16.314103089185693,-55.509410535254254 -110,3.0,5.0,-6.413123730174556,22.31120356548123 -110,3.0,11.0,0.0,4.191255364806866 -110,4.0,1.0,-1.1359607881738778,4.772479328281356 -110,4.0,4.0,4.089980824135861,-12.190647245055052 -110,4.0,6.0,-2.954020035961983,7.449267916773697 -110,5.0,1.0,-1.6861448807654689,5.116477495334806 -110,5.0,3.0,-6.413123730174556,22.31120356548123 -110,5.0,5.0,22.341631269034565,-82.8291478657789 -110,5.0,6.0,-3.590210423980992,11.02611441072814 -110,5.0,7.0,-6.289308176100628,22.0125786163522 -110,5.0,8.0,0.0,4.915840805411357 -110,5.0,9.0,0.0,1.8561002591115965 -110,5.0,27.0,-4.362844058012917,15.463571542897856 -110,6.0,4.0,-2.954020035961983,7.449267916773697 -110,6.0,5.0,-3.590210423980992,11.02611441072814 -110,6.0,6.0,6.544230459942975,-18.45668232750184 -110,7.0,5.0,-6.289308176100628,22.0125786163522 -110,7.0,7.0,7.733287237496075,-26.527493274828448 -110,7.0,27.0,-1.4439790613954469,4.540814658476248 -110,8.0,5.0,0.0,4.915840805411357 -110,8.0,8.0,0.0,-18.706293706293707 -110,8.0,9.0,0.0,9.090909090909092 -110,8.0,10.0,0.0,4.807692307692308 -110,9.0,5.0,0.0,1.8561002591115965 -110,9.0,8.0,0.0,9.090909090909092 -110,9.0,9.0,7.721173373542252,-27.080954658247517 -110,9.0,20.0,-5.101853820159654,10.98071411292983 -110,9.0,21.0,-2.619319553382597,5.400770303329455 -110,10.0,8.0,0.0,4.807692307692308 -110,10.0,10.0,0.0,-4.807692307692308 -110,11.0,3.0,0.0,4.191255364806866 -110,11.0,11.0,6.573961583776156,-24.424167659260668 -110,11.0,12.0,0.0,7.142857142857143 -110,11.0,13.0,-1.5265676088395577,3.1734252729654173 -110,11.0,14.0,-3.0953961826564296,6.097275864326261 -110,11.0,15.0,-1.9519977922801688,4.104359379111847 -110,12.0,11.0,0.0,7.142857142857143 -110,12.0,12.0,0.0,-7.142857142857143 -110,13.0,11.0,-1.5265676088395577,3.1734252729654173 -110,13.0,13.0,4.01751987283902,-5.424299332335067 -110,13.0,14.0,-2.4909522639994623,2.250874059369649 -110,14.0,11.0,-3.0953961826564296,6.097275864326261 -110,14.0,13.0,-2.4909522639994623,2.250874059369649 -110,14.0,14.0,9.365498545964757,-16.01163373210796 -110,14.0,17.0,-1.8108011504072024,3.687418931630696 -110,14.0,22.0,-1.9683489489016612,3.976064876781356 -110,15.0,11.0,-1.9519977922801688,4.104359379111847 -110,15.0,15.0,3.271064728633931,-8.94513365126506 -110,15.0,16.0,-1.3190669363537617,4.8407742721532125 -110,16.0,15.0,-1.3190669363537617,4.8407742721532125 -110,16.0,16.0,1.3190669363537617,-4.8407742721532125 -110,17.0,14.0,-1.8108011504072024,3.687418931630696 -110,17.0,17.0,4.886487584415919,-9.906177730909668 -110,17.0,18.0,-3.0756864340087167,6.218758799278971 -110,18.0,17.0,-3.0756864340087167,6.218758799278971 -110,18.0,18.0,8.958039375185187,-17.98346468163191 -110,18.0,19.0,-5.88235294117647,11.76470588235294 -110,19.0,18.0,-5.88235294117647,11.76470588235294 -110,19.0,19.0,5.88235294117647,-11.76470588235294 -110,20.0,9.0,-5.101853820159654,10.98071411292983 -110,20.0,20.0,5.101853820159654,-10.98071411292983 -110,21.0,9.0,-2.619319553382597,5.400770303329455 -110,21.0,21.0,5.159857705638154,-9.355173166405494 -110,21.0,23.0,-2.5405381522555563,3.95440286307604 -110,22.0,14.0,-1.9683489489016612,3.976064876781356 -110,22.0,22.0,3.429754555384988,-6.965303617315433 -110,22.0,23.0,-1.4614056064833263,2.989238740534077 -110,23.0,21.0,-2.5405381522555563,3.95440286307604 -110,23.0,22.0,-1.4614056064833263,2.989238740534077 -110,23.0,23.0,4.001943758738883,-6.900641603610116 -110,24.0,24.0,3.185822136447737,-5.577356708264566 -110,24.0,25.0,-1.2165301194494855,1.8171440463475024 -110,24.0,26.0,-1.9692920169982515,3.760212661917064 -110,25.0,24.0,-1.2165301194494855,1.8171440463475024 -110,25.0,25.0,1.2165301194494855,-1.8171440463475024 -110,26.0,24.0,-1.9692920169982515,3.760212661917064 -110,26.0,26.0,3.652281470778589,-9.46044252232512 -110,26.0,27.0,0.0,2.608731947574922 -110,26.0,28.0,-0.99553355095268,1.881005840357816 -110,26.0,29.0,-0.6874559028276572,1.293971494797717 -110,27.0,5.0,-4.362844058012917,15.463571542897856 -110,27.0,7.0,-1.4439790613954469,4.540814658476248 -110,27.0,26.0,0.0,2.608731947574922 -110,27.0,27.0,5.806823119408364,-22.67145722159613 -110,28.0,26.0,-0.99553355095268,1.881005840357816 -110,28.0,28.0,1.9075867579849564,-3.604364401207048 -110,28.0,29.0,-0.9120532070322764,1.7233585608492326 -110,29.0,26.0,-0.6874559028276572,1.293971494797717 -110,29.0,28.0,-0.9120532070322764,1.7233585608492326 -110,29.0,29.0,1.5995091098599337,-3.0173300556469496 -111,0.0,0.0,6.765516048652632,-21.23160167089863 -111,0.0,1.0,-5.224646179885656,15.646726840803398 -111,0.0,2.0,-1.5408698687669766,5.631674830095234 -111,1.0,0.0,-5.224646179885656,15.646726840803398 -111,1.0,1.0,9.75228216552403,-30.648662892676068 -111,1.0,3.0,-1.7055303166990268,5.1973792282565086 -111,1.0,4.0,-1.1359607881738778,4.772479328281356 -111,1.0,5.0,-1.6861448807654689,5.116477495334806 -111,2.0,0.0,-1.5408698687669766,5.631674830095234 -111,2.0,2.0,9.736318911079088,-29.13794745915803 -111,2.0,3.0,-8.19544904231211,23.5308726290628 -111,3.0,1.0,-1.7055303166990268,5.1973792282565086 -111,3.0,2.0,-8.19544904231211,23.5308726290628 -111,3.0,3.0,16.314103089185693,-55.509410535254254 -111,3.0,5.0,-6.413123730174556,22.31120356548123 -111,3.0,11.0,0.0,4.191255364806866 -111,4.0,1.0,-1.1359607881738778,4.772479328281356 -111,4.0,4.0,4.089980824135861,-12.190647245055052 -111,4.0,6.0,-2.954020035961983,7.449267916773697 -111,5.0,1.0,-1.6861448807654689,5.116477495334806 -111,5.0,3.0,-6.413123730174556,22.31120356548123 -111,5.0,5.0,22.341631269034565,-82.8291478657789 -111,5.0,6.0,-3.590210423980992,11.02611441072814 -111,5.0,7.0,-6.289308176100628,22.0125786163522 -111,5.0,8.0,0.0,4.915840805411357 -111,5.0,9.0,0.0,1.8561002591115965 -111,5.0,27.0,-4.362844058012917,15.463571542897856 -111,6.0,4.0,-2.954020035961983,7.449267916773697 -111,6.0,5.0,-3.590210423980992,11.02611441072814 -111,6.0,6.0,6.544230459942975,-18.45668232750184 -111,7.0,5.0,-6.289308176100628,22.0125786163522 -111,7.0,7.0,7.733287237496075,-26.527493274828448 -111,7.0,27.0,-1.4439790613954469,4.540814658476248 -111,8.0,5.0,0.0,4.915840805411357 -111,8.0,8.0,0.0,-18.706293706293707 -111,8.0,9.0,0.0,9.090909090909092 -111,8.0,10.0,0.0,4.807692307692308 -111,9.0,5.0,0.0,1.8561002591115965 -111,9.0,8.0,0.0,9.090909090909092 -111,9.0,9.0,13.462042814524237,-41.3837606675224 -111,9.0,16.0,-3.956039125715353,10.317447719844054 -111,9.0,19.0,-1.7848303152666305,3.98535828943083 -111,9.0,20.0,-5.101853820159654,10.98071411292983 -111,9.0,21.0,-2.619319553382597,5.400770303329455 -111,10.0,8.0,0.0,4.807692307692308 -111,10.0,10.0,0.0,-4.807692307692308 -111,11.0,3.0,0.0,4.191255364806866 -111,11.0,11.0,6.573961583776156,-24.424167659260668 -111,11.0,12.0,0.0,7.142857142857143 -111,11.0,13.0,-1.5265676088395577,3.1734252729654173 -111,11.0,14.0,-3.0953961826564296,6.097275864326261 -111,11.0,15.0,-1.9519977922801688,4.104359379111847 -111,12.0,11.0,0.0,7.142857142857143 -111,12.0,12.0,0.0,-7.142857142857143 -111,13.0,11.0,-1.5265676088395577,3.1734252729654173 -111,13.0,13.0,4.01751987283902,-5.424299332335067 -111,13.0,14.0,-2.4909522639994623,2.250874059369649 -111,14.0,11.0,-3.0953961826564296,6.097275864326261 -111,14.0,13.0,-2.4909522639994623,2.250874059369649 -111,14.0,14.0,9.365498545964757,-16.01163373210796 -111,14.0,17.0,-1.8108011504072024,3.687418931630696 -111,14.0,22.0,-1.9683489489016612,3.976064876781356 -111,15.0,11.0,-1.9519977922801688,4.104359379111847 -111,15.0,15.0,3.271064728633931,-8.94513365126506 -111,15.0,16.0,-1.3190669363537617,4.8407742721532125 -111,16.0,9.0,-3.956039125715353,10.317447719844054 -111,16.0,15.0,-1.3190669363537617,4.8407742721532125 -111,16.0,16.0,5.275106062069114,-15.158221991997266 -111,17.0,14.0,-1.8108011504072024,3.687418931630696 -111,17.0,17.0,4.886487584415919,-9.906177730909668 -111,17.0,18.0,-3.0756864340087167,6.218758799278971 -111,18.0,17.0,-3.0756864340087167,6.218758799278971 -111,18.0,18.0,8.958039375185187,-17.98346468163191 -111,18.0,19.0,-5.88235294117647,11.76470588235294 -111,19.0,9.0,-1.7848303152666305,3.98535828943083 -111,19.0,18.0,-5.88235294117647,11.76470588235294 -111,19.0,19.0,7.6671832564431,-15.75006417178377 -111,20.0,9.0,-5.101853820159654,10.98071411292983 -111,20.0,20.0,21.876495189895888,-45.10843276170355 -111,20.0,21.0,-16.774641369736234,34.127718648773715 -111,21.0,9.0,-2.619319553382597,5.400770303329455 -111,21.0,20.0,-16.774641369736234,34.127718648773715 -111,21.0,21.0,21.93449907537439,-43.48289181517921 -111,21.0,23.0,-2.5405381522555563,3.95440286307604 -111,22.0,14.0,-1.9683489489016612,3.976064876781356 -111,22.0,22.0,3.429754555384988,-6.965303617315433 -111,22.0,23.0,-1.4614056064833263,2.989238740534077 -111,23.0,21.0,-2.5405381522555563,3.95440286307604 -111,23.0,22.0,-1.4614056064833263,2.989238740534077 -111,23.0,23.0,5.311836702613133,-9.188263657315172 -111,23.0,24.0,-1.3098929438742493,2.287622053705056 -111,24.0,23.0,-1.3098929438742493,2.287622053705056 -111,24.0,24.0,4.495715080321987,-7.864978761969621 -111,24.0,25.0,-1.2165301194494855,1.8171440463475024 -111,24.0,26.0,-1.9692920169982515,3.760212661917064 -111,25.0,24.0,-1.2165301194494855,1.8171440463475024 -111,25.0,25.0,1.2165301194494855,-1.8171440463475024 -111,26.0,24.0,-1.9692920169982515,3.760212661917064 -111,26.0,26.0,3.652281470778589,-9.46044252232512 -111,26.0,27.0,0.0,2.608731947574922 -111,26.0,28.0,-0.99553355095268,1.881005840357816 -111,26.0,29.0,-0.6874559028276572,1.293971494797717 -111,27.0,5.0,-4.362844058012917,15.463571542897856 -111,27.0,7.0,-1.4439790613954469,4.540814658476248 -111,27.0,26.0,0.0,2.608731947574922 -111,27.0,27.0,5.806823119408364,-22.67145722159613 -111,28.0,26.0,-0.99553355095268,1.881005840357816 -111,28.0,28.0,1.9075867579849564,-3.604364401207048 -111,28.0,29.0,-0.9120532070322764,1.7233585608492326 -111,29.0,26.0,-0.6874559028276572,1.293971494797717 -111,29.0,28.0,-0.9120532070322764,1.7233585608492326 -111,29.0,29.0,1.5995091098599337,-3.0173300556469496 -112,0.0,0.0,6.765516048652632,-21.23160167089863 -112,0.0,1.0,-5.224646179885656,15.646726840803398 -112,0.0,2.0,-1.5408698687669766,5.631674830095234 -112,1.0,0.0,-5.224646179885656,15.646726840803398 -112,1.0,1.0,9.75228216552403,-30.648662892676068 -112,1.0,3.0,-1.7055303166990268,5.1973792282565086 -112,1.0,4.0,-1.1359607881738778,4.772479328281356 -112,1.0,5.0,-1.6861448807654689,5.116477495334806 -112,2.0,0.0,-1.5408698687669766,5.631674830095234 -112,2.0,2.0,9.736318911079088,-29.13794745915803 -112,2.0,3.0,-8.19544904231211,23.5308726290628 -112,3.0,1.0,-1.7055303166990268,5.1973792282565086 -112,3.0,2.0,-8.19544904231211,23.5308726290628 -112,3.0,3.0,16.314103089185693,-55.509410535254254 -112,3.0,5.0,-6.413123730174556,22.31120356548123 -112,3.0,11.0,0.0,4.191255364806866 -112,4.0,1.0,-1.1359607881738778,4.772479328281356 -112,4.0,4.0,4.089980824135861,-12.190647245055052 -112,4.0,6.0,-2.954020035961983,7.449267916773697 -112,5.0,1.0,-1.6861448807654689,5.116477495334806 -112,5.0,3.0,-6.413123730174556,22.31120356548123 -112,5.0,5.0,22.341631269034565,-80.91366772221689 -112,5.0,6.0,-3.590210423980992,11.02611441072814 -112,5.0,7.0,-6.289308176100628,22.0125786163522 -112,5.0,8.0,0.0,4.915840805411357 -112,5.0,27.0,-4.362844058012917,15.463571542897856 -112,6.0,4.0,-2.954020035961983,7.449267916773697 -112,6.0,5.0,-3.590210423980992,11.02611441072814 -112,6.0,6.0,6.544230459942975,-18.45668232750184 -112,7.0,5.0,-6.289308176100628,22.0125786163522 -112,7.0,7.0,7.733287237496075,-26.527493274828448 -112,7.0,27.0,-1.4439790613954469,4.540814658476248 -112,8.0,5.0,0.0,4.915840805411357 -112,8.0,8.0,0.0,-18.706293706293707 -112,8.0,9.0,0.0,9.090909090909092 -112,8.0,10.0,0.0,4.807692307692308 -112,9.0,8.0,0.0,9.090909090909092 -112,9.0,9.0,13.462042814524237,-39.58519951644326 -112,9.0,16.0,-3.956039125715353,10.317447719844054 -112,9.0,19.0,-1.7848303152666305,3.98535828943083 -112,9.0,20.0,-5.101853820159654,10.98071411292983 -112,9.0,21.0,-2.619319553382597,5.400770303329455 -112,10.0,8.0,0.0,4.807692307692308 -112,10.0,10.0,0.0,-4.807692307692308 -112,11.0,3.0,0.0,4.191255364806866 -112,11.0,11.0,6.573961583776156,-24.424167659260668 -112,11.0,12.0,0.0,7.142857142857143 -112,11.0,13.0,-1.5265676088395577,3.1734252729654173 -112,11.0,14.0,-3.0953961826564296,6.097275864326261 -112,11.0,15.0,-1.9519977922801688,4.104359379111847 -112,12.0,11.0,0.0,7.142857142857143 -112,12.0,12.0,0.0,-7.142857142857143 -112,13.0,11.0,-1.5265676088395577,3.1734252729654173 -112,13.0,13.0,4.01751987283902,-5.424299332335067 -112,13.0,14.0,-2.4909522639994623,2.250874059369649 -112,14.0,11.0,-3.0953961826564296,6.097275864326261 -112,14.0,13.0,-2.4909522639994623,2.250874059369649 -112,14.0,14.0,9.365498545964757,-16.01163373210796 -112,14.0,17.0,-1.8108011504072024,3.687418931630696 -112,14.0,22.0,-1.9683489489016612,3.976064876781356 -112,15.0,11.0,-1.9519977922801688,4.104359379111847 -112,15.0,15.0,3.271064728633931,-8.94513365126506 -112,15.0,16.0,-1.3190669363537617,4.8407742721532125 -112,16.0,9.0,-3.956039125715353,10.317447719844054 -112,16.0,15.0,-1.3190669363537617,4.8407742721532125 -112,16.0,16.0,5.275106062069114,-15.158221991997266 -112,17.0,14.0,-1.8108011504072024,3.687418931630696 -112,17.0,17.0,4.886487584415919,-9.906177730909668 -112,17.0,18.0,-3.0756864340087167,6.218758799278971 -112,18.0,17.0,-3.0756864340087167,6.218758799278971 -112,18.0,18.0,8.958039375185187,-17.98346468163191 -112,18.0,19.0,-5.88235294117647,11.76470588235294 -112,19.0,9.0,-1.7848303152666305,3.98535828943083 -112,19.0,18.0,-5.88235294117647,11.76470588235294 -112,19.0,19.0,7.6671832564431,-15.75006417178377 -112,20.0,9.0,-5.101853820159654,10.98071411292983 -112,20.0,20.0,21.876495189895888,-45.10843276170355 -112,20.0,21.0,-16.774641369736234,34.127718648773715 -112,21.0,9.0,-2.619319553382597,5.400770303329455 -112,21.0,20.0,-16.774641369736234,34.127718648773715 -112,21.0,21.0,21.93449907537439,-43.48289181517921 -112,21.0,23.0,-2.5405381522555563,3.95440286307604 -112,22.0,14.0,-1.9683489489016612,3.976064876781356 -112,22.0,22.0,3.429754555384988,-6.965303617315433 -112,22.0,23.0,-1.4614056064833263,2.989238740534077 -112,23.0,21.0,-2.5405381522555563,3.95440286307604 -112,23.0,22.0,-1.4614056064833263,2.989238740534077 -112,23.0,23.0,5.311836702613133,-9.188263657315172 -112,23.0,24.0,-1.3098929438742493,2.287622053705056 -112,24.0,23.0,-1.3098929438742493,2.287622053705056 -112,24.0,24.0,4.495715080321987,-7.864978761969621 -112,24.0,25.0,-1.2165301194494855,1.8171440463475024 -112,24.0,26.0,-1.9692920169982515,3.760212661917064 -112,25.0,24.0,-1.2165301194494855,1.8171440463475024 -112,25.0,25.0,1.2165301194494855,-1.8171440463475024 -112,26.0,24.0,-1.9692920169982515,3.760212661917064 -112,26.0,26.0,3.652281470778589,-9.46044252232512 -112,26.0,27.0,0.0,2.608731947574922 -112,26.0,28.0,-0.99553355095268,1.881005840357816 -112,26.0,29.0,-0.6874559028276572,1.293971494797717 -112,27.0,5.0,-4.362844058012917,15.463571542897856 -112,27.0,7.0,-1.4439790613954469,4.540814658476248 -112,27.0,26.0,0.0,2.608731947574922 -112,27.0,27.0,5.806823119408364,-22.67145722159613 -112,28.0,26.0,-0.99553355095268,1.881005840357816 -112,28.0,28.0,1.9075867579849564,-3.604364401207048 -112,28.0,29.0,-0.9120532070322764,1.7233585608492326 -112,29.0,26.0,-0.6874559028276572,1.293971494797717 -112,29.0,28.0,-0.9120532070322764,1.7233585608492326 -112,29.0,29.0,1.5995091098599337,-3.0173300556469496 -113,0.0,0.0,6.765516048652632,-21.23160167089863 -113,0.0,1.0,-5.224646179885656,15.646726840803398 -113,0.0,2.0,-1.5408698687669766,5.631674830095234 -113,1.0,0.0,-5.224646179885656,15.646726840803398 -113,1.0,1.0,9.75228216552403,-30.648662892676068 -113,1.0,3.0,-1.7055303166990268,5.1973792282565086 -113,1.0,4.0,-1.1359607881738778,4.772479328281356 -113,1.0,5.0,-1.6861448807654689,5.116477495334806 -113,2.0,0.0,-1.5408698687669766,5.631674830095234 -113,2.0,2.0,9.736318911079088,-29.13794745915803 -113,2.0,3.0,-8.19544904231211,23.5308726290628 -113,3.0,1.0,-1.7055303166990268,5.1973792282565086 -113,3.0,2.0,-8.19544904231211,23.5308726290628 -113,3.0,3.0,16.314103089185693,-55.509410535254254 -113,3.0,5.0,-6.413123730174556,22.31120356548123 -113,3.0,11.0,0.0,4.191255364806866 -113,4.0,1.0,-1.1359607881738778,4.772479328281356 -113,4.0,4.0,4.089980824135861,-12.190647245055052 -113,4.0,6.0,-2.954020035961983,7.449267916773697 -113,5.0,1.0,-1.6861448807654689,5.116477495334806 -113,5.0,3.0,-6.413123730174556,22.31120356548123 -113,5.0,5.0,22.341631269034565,-82.8291478657789 -113,5.0,6.0,-3.590210423980992,11.02611441072814 -113,5.0,7.0,-6.289308176100628,22.0125786163522 -113,5.0,8.0,0.0,4.915840805411357 -113,5.0,9.0,0.0,1.8561002591115965 -113,5.0,27.0,-4.362844058012917,15.463571542897856 -113,6.0,4.0,-2.954020035961983,7.449267916773697 -113,6.0,5.0,-3.590210423980992,11.02611441072814 -113,6.0,6.0,6.544230459942975,-18.45668232750184 -113,7.0,5.0,-6.289308176100628,22.0125786163522 -113,7.0,7.0,7.733287237496075,-26.527493274828448 -113,7.0,27.0,-1.4439790613954469,4.540814658476248 -113,8.0,5.0,0.0,4.915840805411357 -113,8.0,8.0,0.0,-18.706293706293707 -113,8.0,9.0,0.0,9.090909090909092 -113,8.0,10.0,0.0,4.807692307692308 -113,9.0,5.0,0.0,1.8561002591115965 -113,9.0,8.0,0.0,9.090909090909092 -113,9.0,9.0,13.462042814524237,-41.3837606675224 -113,9.0,16.0,-3.956039125715353,10.317447719844054 -113,9.0,19.0,-1.7848303152666305,3.98535828943083 -113,9.0,20.0,-5.101853820159654,10.98071411292983 -113,9.0,21.0,-2.619319553382597,5.400770303329455 -113,10.0,8.0,0.0,4.807692307692308 -113,10.0,10.0,0.0,-4.807692307692308 -113,11.0,3.0,0.0,4.191255364806866 -113,11.0,11.0,6.573961583776156,-24.424167659260668 -113,11.0,12.0,0.0,7.142857142857143 -113,11.0,13.0,-1.5265676088395577,3.1734252729654173 -113,11.0,14.0,-3.0953961826564296,6.097275864326261 -113,11.0,15.0,-1.9519977922801688,4.104359379111847 -113,12.0,11.0,0.0,7.142857142857143 -113,12.0,12.0,0.0,-7.142857142857143 -113,13.0,11.0,-1.5265676088395577,3.1734252729654173 -113,13.0,13.0,4.01751987283902,-5.424299332335067 -113,13.0,14.0,-2.4909522639994623,2.250874059369649 -113,14.0,11.0,-3.0953961826564296,6.097275864326261 -113,14.0,13.0,-2.4909522639994623,2.250874059369649 -113,14.0,14.0,9.365498545964757,-16.01163373210796 -113,14.0,17.0,-1.8108011504072024,3.687418931630696 -113,14.0,22.0,-1.9683489489016612,3.976064876781356 -113,15.0,11.0,-1.9519977922801688,4.104359379111847 -113,15.0,15.0,3.271064728633931,-8.94513365126506 -113,15.0,16.0,-1.3190669363537617,4.8407742721532125 -113,16.0,9.0,-3.956039125715353,10.317447719844054 -113,16.0,15.0,-1.3190669363537617,4.8407742721532125 -113,16.0,16.0,5.275106062069114,-15.158221991997266 -113,17.0,14.0,-1.8108011504072024,3.687418931630696 -113,17.0,17.0,4.886487584415919,-9.906177730909668 -113,17.0,18.0,-3.0756864340087167,6.218758799278971 -113,18.0,17.0,-3.0756864340087167,6.218758799278971 -113,18.0,18.0,8.958039375185187,-17.98346468163191 -113,18.0,19.0,-5.88235294117647,11.76470588235294 -113,19.0,9.0,-1.7848303152666305,3.98535828943083 -113,19.0,18.0,-5.88235294117647,11.76470588235294 -113,19.0,19.0,7.6671832564431,-15.75006417178377 -113,20.0,9.0,-5.101853820159654,10.98071411292983 -113,20.0,20.0,21.876495189895888,-45.10843276170355 -113,20.0,21.0,-16.774641369736234,34.127718648773715 -113,21.0,9.0,-2.619319553382597,5.400770303329455 -113,21.0,20.0,-16.774641369736234,34.127718648773715 -113,21.0,21.0,21.93449907537439,-43.48289181517921 -113,21.0,23.0,-2.5405381522555563,3.95440286307604 -113,22.0,14.0,-1.9683489489016612,3.976064876781356 -113,22.0,22.0,3.429754555384988,-6.965303617315433 -113,22.0,23.0,-1.4614056064833263,2.989238740534077 -113,23.0,21.0,-2.5405381522555563,3.95440286307604 -113,23.0,22.0,-1.4614056064833263,2.989238740534077 -113,23.0,23.0,5.311836702613133,-9.188263657315172 -113,23.0,24.0,-1.3098929438742493,2.287622053705056 -113,24.0,23.0,-1.3098929438742493,2.287622053705056 -113,24.0,24.0,4.495715080321987,-7.864978761969621 -113,24.0,25.0,-1.2165301194494855,1.8171440463475024 -113,24.0,26.0,-1.9692920169982515,3.760212661917064 -113,25.0,24.0,-1.2165301194494855,1.8171440463475024 -113,25.0,25.0,1.2165301194494855,-1.8171440463475024 -113,26.0,24.0,-1.9692920169982515,3.760212661917064 -113,26.0,26.0,3.652281470778589,-9.46044252232512 -113,26.0,27.0,0.0,2.608731947574922 -113,26.0,28.0,-0.99553355095268,1.881005840357816 -113,26.0,29.0,-0.6874559028276572,1.293971494797717 -113,27.0,5.0,-4.362844058012917,15.463571542897856 -113,27.0,7.0,-1.4439790613954469,4.540814658476248 -113,27.0,26.0,0.0,2.608731947574922 -113,27.0,27.0,5.806823119408364,-22.67145722159613 -113,28.0,26.0,-0.99553355095268,1.881005840357816 -113,28.0,28.0,0.99553355095268,-1.881005840357816 -113,29.0,26.0,-0.6874559028276572,1.293971494797717 -113,29.0,29.0,0.6874559028276572,-1.293971494797717 -114,0.0,0.0,6.765516048652632,-21.23160167089863 -114,0.0,1.0,-5.224646179885656,15.646726840803398 -114,0.0,2.0,-1.5408698687669766,5.631674830095234 -114,1.0,0.0,-5.224646179885656,15.646726840803398 -114,1.0,1.0,8.61632137735015,-25.897083564394716 -114,1.0,3.0,-1.7055303166990268,5.1973792282565086 -114,1.0,5.0,-1.6861448807654689,5.116477495334806 -114,2.0,0.0,-1.5408698687669766,5.631674830095234 -114,2.0,2.0,9.736318911079088,-29.13794745915803 -114,2.0,3.0,-8.19544904231211,23.5308726290628 -114,3.0,1.0,-1.7055303166990268,5.1973792282565086 -114,3.0,2.0,-8.19544904231211,23.5308726290628 -114,3.0,3.0,16.314103089185693,-55.509410535254254 -114,3.0,5.0,-6.413123730174556,22.31120356548123 -114,3.0,11.0,0.0,4.191255364806866 -114,4.0,4.0,2.954020035961983,-7.439067916773697 -114,4.0,6.0,-2.954020035961983,7.449267916773697 -114,5.0,1.0,-1.6861448807654689,5.116477495334806 -114,5.0,3.0,-6.413123730174556,22.31120356548123 -114,5.0,5.0,22.341631269034565,-82.8291478657789 -114,5.0,6.0,-3.590210423980992,11.02611441072814 -114,5.0,7.0,-6.289308176100628,22.0125786163522 -114,5.0,8.0,0.0,4.915840805411357 -114,5.0,9.0,0.0,1.8561002591115965 -114,5.0,27.0,-4.362844058012917,15.463571542897856 -114,6.0,4.0,-2.954020035961983,7.449267916773697 -114,6.0,5.0,-3.590210423980992,11.02611441072814 -114,6.0,6.0,6.544230459942975,-18.45668232750184 -114,7.0,5.0,-6.289308176100628,22.0125786163522 -114,7.0,7.0,7.733287237496075,-26.527493274828448 -114,7.0,27.0,-1.4439790613954469,4.540814658476248 -114,8.0,5.0,0.0,4.915840805411357 -114,8.0,8.0,0.0,-18.706293706293707 -114,8.0,9.0,0.0,9.090909090909092 -114,8.0,10.0,0.0,4.807692307692308 -114,9.0,5.0,0.0,1.8561002591115965 -114,9.0,8.0,0.0,9.090909090909092 -114,9.0,9.0,13.462042814524237,-41.3837606675224 -114,9.0,16.0,-3.956039125715353,10.317447719844054 -114,9.0,19.0,-1.7848303152666305,3.98535828943083 -114,9.0,20.0,-5.101853820159654,10.98071411292983 -114,9.0,21.0,-2.619319553382597,5.400770303329455 -114,10.0,8.0,0.0,4.807692307692308 -114,10.0,10.0,0.0,-4.807692307692308 -114,11.0,3.0,0.0,4.191255364806866 -114,11.0,11.0,6.573961583776156,-24.424167659260668 -114,11.0,12.0,0.0,7.142857142857143 -114,11.0,13.0,-1.5265676088395577,3.1734252729654173 -114,11.0,14.0,-3.0953961826564296,6.097275864326261 -114,11.0,15.0,-1.9519977922801688,4.104359379111847 -114,12.0,11.0,0.0,7.142857142857143 -114,12.0,12.0,0.0,-7.142857142857143 -114,13.0,11.0,-1.5265676088395577,3.1734252729654173 -114,13.0,13.0,4.01751987283902,-5.424299332335067 -114,13.0,14.0,-2.4909522639994623,2.250874059369649 -114,14.0,11.0,-3.0953961826564296,6.097275864326261 -114,14.0,13.0,-2.4909522639994623,2.250874059369649 -114,14.0,14.0,9.365498545964757,-16.01163373210796 -114,14.0,17.0,-1.8108011504072024,3.687418931630696 -114,14.0,22.0,-1.9683489489016612,3.976064876781356 -114,15.0,11.0,-1.9519977922801688,4.104359379111847 -114,15.0,15.0,3.271064728633931,-8.94513365126506 -114,15.0,16.0,-1.3190669363537617,4.8407742721532125 -114,16.0,9.0,-3.956039125715353,10.317447719844054 -114,16.0,15.0,-1.3190669363537617,4.8407742721532125 -114,16.0,16.0,5.275106062069114,-15.158221991997266 -114,17.0,14.0,-1.8108011504072024,3.687418931630696 -114,17.0,17.0,4.886487584415919,-9.906177730909668 -114,17.0,18.0,-3.0756864340087167,6.218758799278971 -114,18.0,17.0,-3.0756864340087167,6.218758799278971 -114,18.0,18.0,8.958039375185187,-17.98346468163191 -114,18.0,19.0,-5.88235294117647,11.76470588235294 -114,19.0,9.0,-1.7848303152666305,3.98535828943083 -114,19.0,18.0,-5.88235294117647,11.76470588235294 -114,19.0,19.0,7.6671832564431,-15.75006417178377 -114,20.0,9.0,-5.101853820159654,10.98071411292983 -114,20.0,20.0,21.876495189895888,-45.10843276170355 -114,20.0,21.0,-16.774641369736234,34.127718648773715 -114,21.0,9.0,-2.619319553382597,5.400770303329455 -114,21.0,20.0,-16.774641369736234,34.127718648773715 -114,21.0,21.0,21.93449907537439,-43.48289181517921 -114,21.0,23.0,-2.5405381522555563,3.95440286307604 -114,22.0,14.0,-1.9683489489016612,3.976064876781356 -114,22.0,22.0,3.429754555384988,-6.965303617315433 -114,22.0,23.0,-1.4614056064833263,2.989238740534077 -114,23.0,21.0,-2.5405381522555563,3.95440286307604 -114,23.0,22.0,-1.4614056064833263,2.989238740534077 -114,23.0,23.0,5.311836702613133,-9.188263657315172 -114,23.0,24.0,-1.3098929438742493,2.287622053705056 -114,24.0,23.0,-1.3098929438742493,2.287622053705056 -114,24.0,24.0,4.495715080321987,-7.864978761969621 -114,24.0,25.0,-1.2165301194494855,1.8171440463475024 -114,24.0,26.0,-1.9692920169982515,3.760212661917064 -114,25.0,24.0,-1.2165301194494855,1.8171440463475024 -114,25.0,25.0,1.2165301194494855,-1.8171440463475024 -114,26.0,24.0,-1.9692920169982515,3.760212661917064 -114,26.0,26.0,3.652281470778589,-9.46044252232512 -114,26.0,27.0,0.0,2.608731947574922 -114,26.0,28.0,-0.99553355095268,1.881005840357816 -114,26.0,29.0,-0.6874559028276572,1.293971494797717 -114,27.0,5.0,-4.362844058012917,15.463571542897856 -114,27.0,7.0,-1.4439790613954469,4.540814658476248 -114,27.0,26.0,0.0,2.608731947574922 -114,27.0,27.0,5.806823119408364,-22.67145722159613 -114,28.0,26.0,-0.99553355095268,1.881005840357816 -114,28.0,28.0,1.9075867579849564,-3.604364401207048 -114,28.0,29.0,-0.9120532070322764,1.7233585608492326 -114,29.0,26.0,-0.6874559028276572,1.293971494797717 -114,29.0,28.0,-0.9120532070322764,1.7233585608492326 -114,29.0,29.0,1.5995091098599337,-3.0173300556469496 -115,0.0,0.0,6.765516048652632,-21.23160167089863 -115,0.0,1.0,-5.224646179885656,15.646726840803398 -115,0.0,2.0,-1.5408698687669766,5.631674830095234 -115,1.0,0.0,-5.224646179885656,15.646726840803398 -115,1.0,1.0,9.75228216552403,-30.648662892676068 -115,1.0,3.0,-1.7055303166990268,5.1973792282565086 -115,1.0,4.0,-1.1359607881738778,4.772479328281356 -115,1.0,5.0,-1.6861448807654689,5.116477495334806 -115,2.0,0.0,-1.5408698687669766,5.631674830095234 -115,2.0,2.0,9.736318911079088,-29.13794745915803 -115,2.0,3.0,-8.19544904231211,23.5308726290628 -115,3.0,1.0,-1.7055303166990268,5.1973792282565086 -115,3.0,2.0,-8.19544904231211,23.5308726290628 -115,3.0,3.0,16.314103089185693,-55.509410535254254 -115,3.0,5.0,-6.413123730174556,22.31120356548123 -115,3.0,11.0,0.0,4.191255364806866 -115,4.0,1.0,-1.1359607881738778,4.772479328281356 -115,4.0,4.0,4.089980824135861,-12.190647245055052 -115,4.0,6.0,-2.954020035961983,7.449267916773697 -115,5.0,1.0,-1.6861448807654689,5.116477495334806 -115,5.0,3.0,-6.413123730174556,22.31120356548123 -115,5.0,5.0,22.341631269034565,-82.8291478657789 -115,5.0,6.0,-3.590210423980992,11.02611441072814 -115,5.0,7.0,-6.289308176100628,22.0125786163522 -115,5.0,8.0,0.0,4.915840805411357 -115,5.0,9.0,0.0,1.8561002591115965 -115,5.0,27.0,-4.362844058012917,15.463571542897856 -115,6.0,4.0,-2.954020035961983,7.449267916773697 -115,6.0,5.0,-3.590210423980992,11.02611441072814 -115,6.0,6.0,6.544230459942975,-18.45668232750184 -115,7.0,5.0,-6.289308176100628,22.0125786163522 -115,7.0,7.0,7.733287237496075,-26.527493274828448 -115,7.0,27.0,-1.4439790613954469,4.540814658476248 -115,8.0,5.0,0.0,4.915840805411357 -115,8.0,8.0,0.0,-18.706293706293707 -115,8.0,9.0,0.0,9.090909090909092 -115,8.0,10.0,0.0,4.807692307692308 -115,9.0,5.0,0.0,1.8561002591115965 -115,9.0,8.0,0.0,9.090909090909092 -115,9.0,9.0,13.462042814524237,-41.3837606675224 -115,9.0,16.0,-3.956039125715353,10.317447719844054 -115,9.0,19.0,-1.7848303152666305,3.98535828943083 -115,9.0,20.0,-5.101853820159654,10.98071411292983 -115,9.0,21.0,-2.619319553382597,5.400770303329455 -115,10.0,8.0,0.0,4.807692307692308 -115,10.0,10.0,0.0,-4.807692307692308 -115,11.0,3.0,0.0,4.191255364806866 -115,11.0,11.0,6.573961583776156,-24.424167659260668 -115,11.0,12.0,0.0,7.142857142857143 -115,11.0,13.0,-1.5265676088395577,3.1734252729654173 -115,11.0,14.0,-3.0953961826564296,6.097275864326261 -115,11.0,15.0,-1.9519977922801688,4.104359379111847 -115,12.0,11.0,0.0,7.142857142857143 -115,12.0,12.0,0.0,-7.142857142857143 -115,13.0,11.0,-1.5265676088395577,3.1734252729654173 -115,13.0,13.0,4.01751987283902,-5.424299332335067 -115,13.0,14.0,-2.4909522639994623,2.250874059369649 -115,14.0,11.0,-3.0953961826564296,6.097275864326261 -115,14.0,13.0,-2.4909522639994623,2.250874059369649 -115,14.0,14.0,9.365498545964757,-16.01163373210796 -115,14.0,17.0,-1.8108011504072024,3.687418931630696 -115,14.0,22.0,-1.9683489489016612,3.976064876781356 -115,15.0,11.0,-1.9519977922801688,4.104359379111847 -115,15.0,15.0,3.271064728633931,-8.94513365126506 -115,15.0,16.0,-1.3190669363537617,4.8407742721532125 -115,16.0,9.0,-3.956039125715353,10.317447719844054 -115,16.0,15.0,-1.3190669363537617,4.8407742721532125 -115,16.0,16.0,5.275106062069114,-15.158221991997266 -115,17.0,14.0,-1.8108011504072024,3.687418931630696 -115,17.0,17.0,4.886487584415919,-9.906177730909668 -115,17.0,18.0,-3.0756864340087167,6.218758799278971 -115,18.0,17.0,-3.0756864340087167,6.218758799278971 -115,18.0,18.0,8.958039375185187,-17.98346468163191 -115,18.0,19.0,-5.88235294117647,11.76470588235294 -115,19.0,9.0,-1.7848303152666305,3.98535828943083 -115,19.0,18.0,-5.88235294117647,11.76470588235294 -115,19.0,19.0,7.6671832564431,-15.75006417178377 -115,20.0,9.0,-5.101853820159654,10.98071411292983 -115,20.0,20.0,21.876495189895888,-45.10843276170355 -115,20.0,21.0,-16.774641369736234,34.127718648773715 -115,21.0,9.0,-2.619319553382597,5.400770303329455 -115,21.0,20.0,-16.774641369736234,34.127718648773715 -115,21.0,21.0,21.93449907537439,-43.48289181517921 -115,21.0,23.0,-2.5405381522555563,3.95440286307604 -115,22.0,14.0,-1.9683489489016612,3.976064876781356 -115,22.0,22.0,3.429754555384988,-6.965303617315433 -115,22.0,23.0,-1.4614056064833263,2.989238740534077 -115,23.0,21.0,-2.5405381522555563,3.95440286307604 -115,23.0,22.0,-1.4614056064833263,2.989238740534077 -115,23.0,23.0,5.311836702613133,-9.188263657315172 -115,23.0,24.0,-1.3098929438742493,2.287622053705056 -115,24.0,23.0,-1.3098929438742493,2.287622053705056 -115,24.0,24.0,4.495715080321987,-7.864978761969621 -115,24.0,25.0,-1.2165301194494855,1.8171440463475024 -115,24.0,26.0,-1.9692920169982515,3.760212661917064 -115,25.0,24.0,-1.2165301194494855,1.8171440463475024 -115,25.0,25.0,1.2165301194494855,-1.8171440463475024 -115,26.0,24.0,-1.9692920169982515,3.760212661917064 -115,26.0,26.0,3.652281470778589,-9.46044252232512 -115,26.0,27.0,0.0,2.608731947574922 -115,26.0,28.0,-0.99553355095268,1.881005840357816 -115,26.0,29.0,-0.6874559028276572,1.293971494797717 -115,27.0,5.0,-4.362844058012917,15.463571542897856 -115,27.0,7.0,-1.4439790613954469,4.540814658476248 -115,27.0,26.0,0.0,2.608731947574922 -115,27.0,27.0,5.806823119408364,-22.67145722159613 -115,28.0,26.0,-0.99553355095268,1.881005840357816 -115,28.0,28.0,1.9075867579849564,-3.604364401207048 -115,28.0,29.0,-0.9120532070322764,1.7233585608492326 -115,29.0,26.0,-0.6874559028276572,1.293971494797717 -115,29.0,28.0,-0.9120532070322764,1.7233585608492326 -115,29.0,29.0,1.5995091098599337,-3.0173300556469496 -116,0.0,0.0,6.765516048652632,-21.23160167089863 -116,0.0,1.0,-5.224646179885656,15.646726840803398 -116,0.0,2.0,-1.5408698687669766,5.631674830095234 -116,1.0,0.0,-5.224646179885656,15.646726840803398 -116,1.0,1.0,9.75228216552403,-30.648662892676068 -116,1.0,3.0,-1.7055303166990268,5.1973792282565086 -116,1.0,4.0,-1.1359607881738778,4.772479328281356 -116,1.0,5.0,-1.6861448807654689,5.116477495334806 -116,2.0,0.0,-1.5408698687669766,5.631674830095234 -116,2.0,2.0,9.736318911079088,-29.13794745915803 -116,2.0,3.0,-8.19544904231211,23.5308726290628 -116,3.0,1.0,-1.7055303166990268,5.1973792282565086 -116,3.0,2.0,-8.19544904231211,23.5308726290628 -116,3.0,3.0,16.314103089185693,-55.509410535254254 -116,3.0,5.0,-6.413123730174556,22.31120356548123 -116,3.0,11.0,0.0,4.191255364806866 -116,4.0,1.0,-1.1359607881738778,4.772479328281356 -116,4.0,4.0,4.089980824135861,-12.190647245055052 -116,4.0,6.0,-2.954020035961983,7.449267916773697 -116,5.0,1.0,-1.6861448807654689,5.116477495334806 -116,5.0,3.0,-6.413123730174556,22.31120356548123 -116,5.0,5.0,22.341631269034565,-82.8291478657789 -116,5.0,6.0,-3.590210423980992,11.02611441072814 -116,5.0,7.0,-6.289308176100628,22.0125786163522 -116,5.0,8.0,0.0,4.915840805411357 -116,5.0,9.0,0.0,1.8561002591115965 -116,5.0,27.0,-4.362844058012917,15.463571542897856 -116,6.0,4.0,-2.954020035961983,7.449267916773697 -116,6.0,5.0,-3.590210423980992,11.02611441072814 -116,6.0,6.0,6.544230459942975,-18.45668232750184 -116,7.0,5.0,-6.289308176100628,22.0125786163522 -116,7.0,7.0,7.733287237496075,-26.527493274828448 -116,7.0,27.0,-1.4439790613954469,4.540814658476248 -116,8.0,5.0,0.0,4.915840805411357 -116,8.0,8.0,0.0,-18.706293706293707 -116,8.0,9.0,0.0,9.090909090909092 -116,8.0,10.0,0.0,4.807692307692308 -116,9.0,5.0,0.0,1.8561002591115965 -116,9.0,8.0,0.0,9.090909090909092 -116,9.0,9.0,13.462042814524237,-41.3837606675224 -116,9.0,16.0,-3.956039125715353,10.317447719844054 -116,9.0,19.0,-1.7848303152666305,3.98535828943083 -116,9.0,20.0,-5.101853820159654,10.98071411292983 -116,9.0,21.0,-2.619319553382597,5.400770303329455 -116,10.0,8.0,0.0,4.807692307692308 -116,10.0,10.0,0.0,-4.807692307692308 -116,11.0,3.0,0.0,4.191255364806866 -116,11.0,11.0,6.573961583776156,-24.424167659260668 -116,11.0,12.0,0.0,7.142857142857143 -116,11.0,13.0,-1.5265676088395577,3.1734252729654173 -116,11.0,14.0,-3.0953961826564296,6.097275864326261 -116,11.0,15.0,-1.9519977922801688,4.104359379111847 -116,12.0,11.0,0.0,7.142857142857143 -116,12.0,12.0,0.0,-7.142857142857143 -116,13.0,11.0,-1.5265676088395577,3.1734252729654173 -116,13.0,13.0,4.01751987283902,-5.424299332335067 -116,13.0,14.0,-2.4909522639994623,2.250874059369649 -116,14.0,11.0,-3.0953961826564296,6.097275864326261 -116,14.0,13.0,-2.4909522639994623,2.250874059369649 -116,14.0,14.0,9.365498545964757,-16.01163373210796 -116,14.0,17.0,-1.8108011504072024,3.687418931630696 -116,14.0,22.0,-1.9683489489016612,3.976064876781356 -116,15.0,11.0,-1.9519977922801688,4.104359379111847 -116,15.0,15.0,3.271064728633931,-8.94513365126506 -116,15.0,16.0,-1.3190669363537617,4.8407742721532125 -116,16.0,9.0,-3.956039125715353,10.317447719844054 -116,16.0,15.0,-1.3190669363537617,4.8407742721532125 -116,16.0,16.0,5.275106062069114,-15.158221991997266 -116,17.0,14.0,-1.8108011504072024,3.687418931630696 -116,17.0,17.0,4.886487584415919,-9.906177730909668 -116,17.0,18.0,-3.0756864340087167,6.218758799278971 -116,18.0,17.0,-3.0756864340087167,6.218758799278971 -116,18.0,18.0,8.958039375185187,-17.98346468163191 -116,18.0,19.0,-5.88235294117647,11.76470588235294 -116,19.0,9.0,-1.7848303152666305,3.98535828943083 -116,19.0,18.0,-5.88235294117647,11.76470588235294 -116,19.0,19.0,7.6671832564431,-15.75006417178377 -116,20.0,9.0,-5.101853820159654,10.98071411292983 -116,20.0,20.0,21.876495189895888,-45.10843276170355 -116,20.0,21.0,-16.774641369736234,34.127718648773715 -116,21.0,9.0,-2.619319553382597,5.400770303329455 -116,21.0,20.0,-16.774641369736234,34.127718648773715 -116,21.0,21.0,21.93449907537439,-43.48289181517921 -116,21.0,23.0,-2.5405381522555563,3.95440286307604 -116,22.0,14.0,-1.9683489489016612,3.976064876781356 -116,22.0,22.0,3.429754555384988,-6.965303617315433 -116,22.0,23.0,-1.4614056064833263,2.989238740534077 -116,23.0,21.0,-2.5405381522555563,3.95440286307604 -116,23.0,22.0,-1.4614056064833263,2.989238740534077 -116,23.0,23.0,5.311836702613133,-9.188263657315172 -116,23.0,24.0,-1.3098929438742493,2.287622053705056 -116,24.0,23.0,-1.3098929438742493,2.287622053705056 -116,24.0,24.0,4.495715080321987,-7.864978761969621 -116,24.0,25.0,-1.2165301194494855,1.8171440463475024 -116,24.0,26.0,-1.9692920169982515,3.760212661917064 -116,25.0,24.0,-1.2165301194494855,1.8171440463475024 -116,25.0,25.0,1.2165301194494855,-1.8171440463475024 -116,26.0,24.0,-1.9692920169982515,3.760212661917064 -116,26.0,26.0,3.652281470778589,-9.46044252232512 -116,26.0,27.0,0.0,2.608731947574922 -116,26.0,28.0,-0.99553355095268,1.881005840357816 -116,26.0,29.0,-0.6874559028276572,1.293971494797717 -116,27.0,5.0,-4.362844058012917,15.463571542897856 -116,27.0,7.0,-1.4439790613954469,4.540814658476248 -116,27.0,26.0,0.0,2.608731947574922 -116,27.0,27.0,5.806823119408364,-22.67145722159613 -116,28.0,26.0,-0.99553355095268,1.881005840357816 -116,28.0,28.0,1.9075867579849564,-3.604364401207048 -116,28.0,29.0,-0.9120532070322764,1.7233585608492326 -116,29.0,26.0,-0.6874559028276572,1.293971494797717 -116,29.0,28.0,-0.9120532070322764,1.7233585608492326 -116,29.0,29.0,1.5995091098599337,-3.0173300556469496 -117,0.0,0.0,6.765516048652632,-21.23160167089863 -117,0.0,1.0,-5.224646179885656,15.646726840803398 -117,0.0,2.0,-1.5408698687669766,5.631674830095234 -117,1.0,0.0,-5.224646179885656,15.646726840803398 -117,1.0,1.0,8.61632137735015,-25.897083564394716 -117,1.0,3.0,-1.7055303166990268,5.1973792282565086 -117,1.0,5.0,-1.6861448807654689,5.116477495334806 -117,2.0,0.0,-1.5408698687669766,5.631674830095234 -117,2.0,2.0,9.736318911079088,-29.13794745915803 -117,2.0,3.0,-8.19544904231211,23.5308726290628 -117,3.0,1.0,-1.7055303166990268,5.1973792282565086 -117,3.0,2.0,-8.19544904231211,23.5308726290628 -117,3.0,3.0,16.314103089185693,-55.509410535254254 -117,3.0,5.0,-6.413123730174556,22.31120356548123 -117,3.0,11.0,0.0,4.191255364806866 -117,4.0,4.0,2.954020035961983,-7.439067916773697 -117,4.0,6.0,-2.954020035961983,7.449267916773697 -117,5.0,1.0,-1.6861448807654689,5.116477495334806 -117,5.0,3.0,-6.413123730174556,22.31120356548123 -117,5.0,5.0,22.341631269034565,-82.8291478657789 -117,5.0,6.0,-3.590210423980992,11.02611441072814 -117,5.0,7.0,-6.289308176100628,22.0125786163522 -117,5.0,8.0,0.0,4.915840805411357 -117,5.0,9.0,0.0,1.8561002591115965 -117,5.0,27.0,-4.362844058012917,15.463571542897856 -117,6.0,4.0,-2.954020035961983,7.449267916773697 -117,6.0,5.0,-3.590210423980992,11.02611441072814 -117,6.0,6.0,6.544230459942975,-18.45668232750184 -117,7.0,5.0,-6.289308176100628,22.0125786163522 -117,7.0,7.0,7.733287237496075,-26.527493274828448 -117,7.0,27.0,-1.4439790613954469,4.540814658476248 -117,8.0,5.0,0.0,4.915840805411357 -117,8.0,8.0,0.0,-9.615384615384617 -117,8.0,10.0,0.0,4.807692307692308 -117,9.0,5.0,0.0,1.8561002591115965 -117,9.0,9.0,13.462042814524237,-32.29285157661331 -117,9.0,16.0,-3.956039125715353,10.317447719844054 -117,9.0,19.0,-1.7848303152666305,3.98535828943083 -117,9.0,20.0,-5.101853820159654,10.98071411292983 -117,9.0,21.0,-2.619319553382597,5.400770303329455 -117,10.0,8.0,0.0,4.807692307692308 -117,10.0,10.0,0.0,-4.807692307692308 -117,11.0,3.0,0.0,4.191255364806866 -117,11.0,11.0,5.047393974936599,-21.25074238629525 -117,11.0,12.0,0.0,7.142857142857143 -117,11.0,14.0,-3.0953961826564296,6.097275864326261 -117,11.0,15.0,-1.9519977922801688,4.104359379111847 -117,12.0,11.0,0.0,7.142857142857143 -117,12.0,12.0,0.0,-7.142857142857143 -117,13.0,13.0,2.4909522639994623,-2.250874059369649 -117,13.0,14.0,-2.4909522639994623,2.250874059369649 -117,14.0,11.0,-3.0953961826564296,6.097275864326261 -117,14.0,13.0,-2.4909522639994623,2.250874059369649 -117,14.0,14.0,9.365498545964757,-16.01163373210796 -117,14.0,17.0,-1.8108011504072024,3.687418931630696 -117,14.0,22.0,-1.9683489489016612,3.976064876781356 -117,15.0,11.0,-1.9519977922801688,4.104359379111847 -117,15.0,15.0,3.271064728633931,-8.94513365126506 -117,15.0,16.0,-1.3190669363537617,4.8407742721532125 -117,16.0,9.0,-3.956039125715353,10.317447719844054 -117,16.0,15.0,-1.3190669363537617,4.8407742721532125 -117,16.0,16.0,5.275106062069114,-15.158221991997266 -117,17.0,14.0,-1.8108011504072024,3.687418931630696 -117,17.0,17.0,4.886487584415919,-9.906177730909668 -117,17.0,18.0,-3.0756864340087167,6.218758799278971 -117,18.0,17.0,-3.0756864340087167,6.218758799278971 -117,18.0,18.0,3.0756864340087167,-6.218758799278971 -117,19.0,9.0,-1.7848303152666305,3.98535828943083 -117,19.0,19.0,1.7848303152666305,-3.98535828943083 -117,20.0,9.0,-5.101853820159654,10.98071411292983 -117,20.0,20.0,5.101853820159654,-10.98071411292983 -117,21.0,9.0,-2.619319553382597,5.400770303329455 -117,21.0,21.0,5.159857705638154,-9.355173166405494 -117,21.0,23.0,-2.5405381522555563,3.95440286307604 -117,22.0,14.0,-1.9683489489016612,3.976064876781356 -117,22.0,22.0,1.9683489489016612,-3.976064876781356 -117,23.0,21.0,-2.5405381522555563,3.95440286307604 -117,23.0,23.0,3.850431096129806,-6.199024916781094 -117,23.0,24.0,-1.3098929438742493,2.287622053705056 -117,24.0,23.0,-1.3098929438742493,2.287622053705056 -117,24.0,24.0,4.495715080321987,-7.864978761969621 -117,24.0,25.0,-1.2165301194494855,1.8171440463475024 -117,24.0,26.0,-1.9692920169982515,3.760212661917064 -117,25.0,24.0,-1.2165301194494855,1.8171440463475024 -117,25.0,25.0,1.2165301194494855,-1.8171440463475024 -117,26.0,24.0,-1.9692920169982515,3.760212661917064 -117,26.0,26.0,3.652281470778589,-9.46044252232512 -117,26.0,27.0,0.0,2.608731947574922 -117,26.0,28.0,-0.99553355095268,1.881005840357816 -117,26.0,29.0,-0.6874559028276572,1.293971494797717 -117,27.0,5.0,-4.362844058012917,15.463571542897856 -117,27.0,7.0,-1.4439790613954469,4.540814658476248 -117,27.0,26.0,0.0,2.608731947574922 -117,27.0,27.0,5.806823119408364,-22.67145722159613 -117,28.0,26.0,-0.99553355095268,1.881005840357816 -117,28.0,28.0,1.9075867579849564,-3.604364401207048 -117,28.0,29.0,-0.9120532070322764,1.7233585608492326 -117,29.0,26.0,-0.6874559028276572,1.293971494797717 -117,29.0,28.0,-0.9120532070322764,1.7233585608492326 -117,29.0,29.0,1.5995091098599337,-3.0173300556469496 -118,0.0,0.0,6.765516048652632,-21.23160167089863 -118,0.0,1.0,-5.224646179885656,15.646726840803398 -118,0.0,2.0,-1.5408698687669766,5.631674830095234 -118,1.0,0.0,-5.224646179885656,15.646726840803398 -118,1.0,1.0,9.75228216552403,-30.648662892676068 -118,1.0,3.0,-1.7055303166990268,5.1973792282565086 -118,1.0,4.0,-1.1359607881738778,4.772479328281356 -118,1.0,5.0,-1.6861448807654689,5.116477495334806 -118,2.0,0.0,-1.5408698687669766,5.631674830095234 -118,2.0,2.0,9.736318911079088,-29.13794745915803 -118,2.0,3.0,-8.19544904231211,23.5308726290628 -118,3.0,1.0,-1.7055303166990268,5.1973792282565086 -118,3.0,2.0,-8.19544904231211,23.5308726290628 -118,3.0,3.0,16.314103089185693,-55.509410535254254 -118,3.0,5.0,-6.413123730174556,22.31120356548123 -118,3.0,11.0,0.0,4.191255364806866 -118,4.0,1.0,-1.1359607881738778,4.772479328281356 -118,4.0,4.0,4.089980824135861,-12.190647245055052 -118,4.0,6.0,-2.954020035961983,7.449267916773697 -118,5.0,1.0,-1.6861448807654689,5.116477495334806 -118,5.0,3.0,-6.413123730174556,22.31120356548123 -118,5.0,5.0,22.341631269034565,-82.8291478657789 -118,5.0,6.0,-3.590210423980992,11.02611441072814 -118,5.0,7.0,-6.289308176100628,22.0125786163522 -118,5.0,8.0,0.0,4.915840805411357 -118,5.0,9.0,0.0,1.8561002591115965 -118,5.0,27.0,-4.362844058012917,15.463571542897856 -118,6.0,4.0,-2.954020035961983,7.449267916773697 -118,6.0,5.0,-3.590210423980992,11.02611441072814 -118,6.0,6.0,6.544230459942975,-18.45668232750184 -118,7.0,5.0,-6.289308176100628,22.0125786163522 -118,7.0,7.0,7.733287237496075,-26.527493274828448 -118,7.0,27.0,-1.4439790613954469,4.540814658476248 -118,8.0,5.0,0.0,4.915840805411357 -118,8.0,8.0,0.0,-18.706293706293707 -118,8.0,9.0,0.0,9.090909090909092 -118,8.0,10.0,0.0,4.807692307692308 -118,9.0,5.0,0.0,1.8561002591115965 -118,9.0,8.0,0.0,9.090909090909092 -118,9.0,9.0,13.462042814524237,-41.3837606675224 -118,9.0,16.0,-3.956039125715353,10.317447719844054 -118,9.0,19.0,-1.7848303152666305,3.98535828943083 -118,9.0,20.0,-5.101853820159654,10.98071411292983 -118,9.0,21.0,-2.619319553382597,5.400770303329455 -118,10.0,8.0,0.0,4.807692307692308 -118,10.0,10.0,0.0,-4.807692307692308 -118,11.0,3.0,0.0,4.191255364806866 -118,11.0,11.0,6.573961583776156,-24.424167659260668 -118,11.0,12.0,0.0,7.142857142857143 -118,11.0,13.0,-1.5265676088395577,3.1734252729654173 -118,11.0,14.0,-3.0953961826564296,6.097275864326261 -118,11.0,15.0,-1.9519977922801688,4.104359379111847 -118,12.0,11.0,0.0,7.142857142857143 -118,12.0,12.0,0.0,-7.142857142857143 -118,13.0,11.0,-1.5265676088395577,3.1734252729654173 -118,13.0,13.0,4.01751987283902,-5.424299332335067 -118,13.0,14.0,-2.4909522639994623,2.250874059369649 -118,14.0,11.0,-3.0953961826564296,6.097275864326261 -118,14.0,13.0,-2.4909522639994623,2.250874059369649 -118,14.0,14.0,9.365498545964757,-16.01163373210796 -118,14.0,17.0,-1.8108011504072024,3.687418931630696 -118,14.0,22.0,-1.9683489489016612,3.976064876781356 -118,15.0,11.0,-1.9519977922801688,4.104359379111847 -118,15.0,15.0,3.271064728633931,-8.94513365126506 -118,15.0,16.0,-1.3190669363537617,4.8407742721532125 -118,16.0,9.0,-3.956039125715353,10.317447719844054 -118,16.0,15.0,-1.3190669363537617,4.8407742721532125 -118,16.0,16.0,5.275106062069114,-15.158221991997266 -118,17.0,14.0,-1.8108011504072024,3.687418931630696 -118,17.0,17.0,4.886487584415919,-9.906177730909668 -118,17.0,18.0,-3.0756864340087167,6.218758799278971 -118,18.0,17.0,-3.0756864340087167,6.218758799278971 -118,18.0,18.0,8.958039375185187,-17.98346468163191 -118,18.0,19.0,-5.88235294117647,11.76470588235294 -118,19.0,9.0,-1.7848303152666305,3.98535828943083 -118,19.0,18.0,-5.88235294117647,11.76470588235294 -118,19.0,19.0,7.6671832564431,-15.75006417178377 -118,20.0,9.0,-5.101853820159654,10.98071411292983 -118,20.0,20.0,21.876495189895888,-45.10843276170355 -118,20.0,21.0,-16.774641369736234,34.127718648773715 -118,21.0,9.0,-2.619319553382597,5.400770303329455 -118,21.0,20.0,-16.774641369736234,34.127718648773715 -118,21.0,21.0,21.93449907537439,-43.48289181517921 -118,21.0,23.0,-2.5405381522555563,3.95440286307604 -118,22.0,14.0,-1.9683489489016612,3.976064876781356 -118,22.0,22.0,3.429754555384988,-6.965303617315433 -118,22.0,23.0,-1.4614056064833263,2.989238740534077 -118,23.0,21.0,-2.5405381522555563,3.95440286307604 -118,23.0,22.0,-1.4614056064833263,2.989238740534077 -118,23.0,23.0,5.311836702613133,-9.188263657315172 -118,23.0,24.0,-1.3098929438742493,2.287622053705056 -118,24.0,23.0,-1.3098929438742493,2.287622053705056 -118,24.0,24.0,4.495715080321987,-7.864978761969621 -118,24.0,25.0,-1.2165301194494855,1.8171440463475024 -118,24.0,26.0,-1.9692920169982515,3.760212661917064 -118,25.0,24.0,-1.2165301194494855,1.8171440463475024 -118,25.0,25.0,1.2165301194494855,-1.8171440463475024 -118,26.0,24.0,-1.9692920169982515,3.760212661917064 -118,26.0,26.0,3.652281470778589,-9.46044252232512 -118,26.0,27.0,0.0,2.608731947574922 -118,26.0,28.0,-0.99553355095268,1.881005840357816 -118,26.0,29.0,-0.6874559028276572,1.293971494797717 -118,27.0,5.0,-4.362844058012917,15.463571542897856 -118,27.0,7.0,-1.4439790613954469,4.540814658476248 -118,27.0,26.0,0.0,2.608731947574922 -118,27.0,27.0,5.806823119408364,-22.67145722159613 -118,28.0,26.0,-0.99553355095268,1.881005840357816 -118,28.0,28.0,1.9075867579849564,-3.604364401207048 -118,28.0,29.0,-0.9120532070322764,1.7233585608492326 -118,29.0,26.0,-0.6874559028276572,1.293971494797717 -118,29.0,28.0,-0.9120532070322764,1.7233585608492326 -118,29.0,29.0,1.5995091098599337,-3.0173300556469496 -119,0.0,0.0,6.765516048652632,-21.23160167089863 -119,0.0,1.0,-5.224646179885656,15.646726840803398 -119,0.0,2.0,-1.5408698687669766,5.631674830095234 -119,1.0,0.0,-5.224646179885656,15.646726840803398 -119,1.0,1.0,9.75228216552403,-30.648662892676068 -119,1.0,3.0,-1.7055303166990268,5.1973792282565086 -119,1.0,4.0,-1.1359607881738778,4.772479328281356 -119,1.0,5.0,-1.6861448807654689,5.116477495334806 -119,2.0,0.0,-1.5408698687669766,5.631674830095234 -119,2.0,2.0,1.5408698687669766,-5.611274830095233 -119,3.0,1.0,-1.7055303166990268,5.1973792282565086 -119,3.0,3.0,8.118654046873583,-31.982737906191456 -119,3.0,5.0,-6.413123730174556,22.31120356548123 -119,3.0,11.0,0.0,4.191255364806866 -119,4.0,1.0,-1.1359607881738778,4.772479328281356 -119,4.0,4.0,4.089980824135861,-12.190647245055052 -119,4.0,6.0,-2.954020035961983,7.449267916773697 -119,5.0,1.0,-1.6861448807654689,5.116477495334806 -119,5.0,3.0,-6.413123730174556,22.31120356548123 -119,5.0,5.0,22.341631269034565,-82.8291478657789 -119,5.0,6.0,-3.590210423980992,11.02611441072814 -119,5.0,7.0,-6.289308176100628,22.0125786163522 -119,5.0,8.0,0.0,4.915840805411357 -119,5.0,9.0,0.0,1.8561002591115965 -119,5.0,27.0,-4.362844058012917,15.463571542897856 -119,6.0,4.0,-2.954020035961983,7.449267916773697 -119,6.0,5.0,-3.590210423980992,11.02611441072814 -119,6.0,6.0,6.544230459942975,-18.45668232750184 -119,7.0,5.0,-6.289308176100628,22.0125786163522 -119,7.0,7.0,7.733287237496075,-26.527493274828448 -119,7.0,27.0,-1.4439790613954469,4.540814658476248 -119,8.0,5.0,0.0,4.915840805411357 -119,8.0,8.0,0.0,-18.706293706293707 -119,8.0,9.0,0.0,9.090909090909092 -119,8.0,10.0,0.0,4.807692307692308 -119,9.0,5.0,0.0,1.8561002591115965 -119,9.0,8.0,0.0,9.090909090909092 -119,9.0,9.0,13.462042814524237,-41.3837606675224 -119,9.0,16.0,-3.956039125715353,10.317447719844054 -119,9.0,19.0,-1.7848303152666305,3.98535828943083 -119,9.0,20.0,-5.101853820159654,10.98071411292983 -119,9.0,21.0,-2.619319553382597,5.400770303329455 -119,10.0,8.0,0.0,4.807692307692308 -119,10.0,10.0,0.0,-4.807692307692308 -119,11.0,3.0,0.0,4.191255364806866 -119,11.0,11.0,6.573961583776156,-24.424167659260668 -119,11.0,12.0,0.0,7.142857142857143 -119,11.0,13.0,-1.5265676088395577,3.1734252729654173 -119,11.0,14.0,-3.0953961826564296,6.097275864326261 -119,11.0,15.0,-1.9519977922801688,4.104359379111847 -119,12.0,11.0,0.0,7.142857142857143 -119,12.0,12.0,0.0,-7.142857142857143 -119,13.0,11.0,-1.5265676088395577,3.1734252729654173 -119,13.0,13.0,4.01751987283902,-5.424299332335067 -119,13.0,14.0,-2.4909522639994623,2.250874059369649 -119,14.0,11.0,-3.0953961826564296,6.097275864326261 -119,14.0,13.0,-2.4909522639994623,2.250874059369649 -119,14.0,14.0,9.365498545964757,-16.01163373210796 -119,14.0,17.0,-1.8108011504072024,3.687418931630696 -119,14.0,22.0,-1.9683489489016612,3.976064876781356 -119,15.0,11.0,-1.9519977922801688,4.104359379111847 -119,15.0,15.0,3.271064728633931,-8.94513365126506 -119,15.0,16.0,-1.3190669363537617,4.8407742721532125 -119,16.0,9.0,-3.956039125715353,10.317447719844054 -119,16.0,15.0,-1.3190669363537617,4.8407742721532125 -119,16.0,16.0,5.275106062069114,-15.158221991997266 -119,17.0,14.0,-1.8108011504072024,3.687418931630696 -119,17.0,17.0,4.886487584415919,-9.906177730909668 -119,17.0,18.0,-3.0756864340087167,6.218758799278971 -119,18.0,17.0,-3.0756864340087167,6.218758799278971 -119,18.0,18.0,3.0756864340087167,-6.218758799278971 -119,19.0,9.0,-1.7848303152666305,3.98535828943083 -119,19.0,19.0,1.7848303152666305,-3.98535828943083 -119,20.0,9.0,-5.101853820159654,10.98071411292983 -119,20.0,20.0,21.876495189895888,-45.10843276170355 -119,20.0,21.0,-16.774641369736234,34.127718648773715 -119,21.0,9.0,-2.619319553382597,5.400770303329455 -119,21.0,20.0,-16.774641369736234,34.127718648773715 -119,21.0,21.0,21.93449907537439,-43.48289181517921 -119,21.0,23.0,-2.5405381522555563,3.95440286307604 -119,22.0,14.0,-1.9683489489016612,3.976064876781356 -119,22.0,22.0,3.429754555384988,-6.965303617315433 -119,22.0,23.0,-1.4614056064833263,2.989238740534077 -119,23.0,21.0,-2.5405381522555563,3.95440286307604 -119,23.0,22.0,-1.4614056064833263,2.989238740534077 -119,23.0,23.0,5.311836702613133,-9.188263657315172 -119,23.0,24.0,-1.3098929438742493,2.287622053705056 -119,24.0,23.0,-1.3098929438742493,2.287622053705056 -119,24.0,24.0,4.495715080321987,-7.864978761969621 -119,24.0,25.0,-1.2165301194494855,1.8171440463475024 -119,24.0,26.0,-1.9692920169982515,3.760212661917064 -119,25.0,24.0,-1.2165301194494855,1.8171440463475024 -119,25.0,25.0,1.2165301194494855,-1.8171440463475024 -119,26.0,24.0,-1.9692920169982515,3.760212661917064 -119,26.0,26.0,3.652281470778589,-9.46044252232512 -119,26.0,27.0,0.0,2.608731947574922 -119,26.0,28.0,-0.99553355095268,1.881005840357816 -119,26.0,29.0,-0.6874559028276572,1.293971494797717 -119,27.0,5.0,-4.362844058012917,15.463571542897856 -119,27.0,7.0,-1.4439790613954469,4.540814658476248 -119,27.0,26.0,0.0,2.608731947574922 -119,27.0,27.0,5.806823119408364,-22.67145722159613 -119,28.0,26.0,-0.99553355095268,1.881005840357816 -119,28.0,28.0,0.99553355095268,-1.881005840357816 -119,29.0,26.0,-0.6874559028276572,1.293971494797717 -119,29.0,29.0,0.6874559028276572,-1.293971494797717 -120,0.0,0.0,5.224646179885656,-15.620326840803395 -120,0.0,1.0,-5.224646179885656,15.646726840803398 -120,1.0,0.0,-5.224646179885656,15.646726840803398 -120,1.0,1.0,9.75228216552403,-30.648662892676068 -120,1.0,3.0,-1.7055303166990268,5.1973792282565086 -120,1.0,4.0,-1.1359607881738778,4.772479328281356 -120,1.0,5.0,-1.6861448807654689,5.116477495334806 -120,2.0,2.0,8.19544904231211,-23.5266726290628 -120,2.0,3.0,-8.19544904231211,23.5308726290628 -120,3.0,1.0,-1.7055303166990268,5.1973792282565086 -120,3.0,2.0,-8.19544904231211,23.5308726290628 -120,3.0,3.0,16.314103089185693,-55.509410535254254 -120,3.0,5.0,-6.413123730174556,22.31120356548123 -120,3.0,11.0,0.0,4.191255364806866 -120,4.0,1.0,-1.1359607881738778,4.772479328281356 -120,4.0,4.0,4.089980824135861,-12.190647245055052 -120,4.0,6.0,-2.954020035961983,7.449267916773697 -120,5.0,1.0,-1.6861448807654689,5.116477495334806 -120,5.0,3.0,-6.413123730174556,22.31120356548123 -120,5.0,5.0,22.341631269034565,-82.8291478657789 -120,5.0,6.0,-3.590210423980992,11.02611441072814 -120,5.0,7.0,-6.289308176100628,22.0125786163522 -120,5.0,8.0,0.0,4.915840805411357 -120,5.0,9.0,0.0,1.8561002591115965 -120,5.0,27.0,-4.362844058012917,15.463571542897856 -120,6.0,4.0,-2.954020035961983,7.449267916773697 -120,6.0,5.0,-3.590210423980992,11.02611441072814 -120,6.0,6.0,6.544230459942975,-18.45668232750184 -120,7.0,5.0,-6.289308176100628,22.0125786163522 -120,7.0,7.0,7.733287237496075,-26.527493274828448 -120,7.0,27.0,-1.4439790613954469,4.540814658476248 -120,8.0,5.0,0.0,4.915840805411357 -120,8.0,8.0,0.0,-18.706293706293707 -120,8.0,9.0,0.0,9.090909090909092 -120,8.0,10.0,0.0,4.807692307692308 -120,9.0,5.0,0.0,1.8561002591115965 -120,9.0,8.0,0.0,9.090909090909092 -120,9.0,9.0,9.506003688808882,-31.06631294767834 -120,9.0,19.0,-1.7848303152666305,3.98535828943083 -120,9.0,20.0,-5.101853820159654,10.98071411292983 -120,9.0,21.0,-2.619319553382597,5.400770303329455 -120,10.0,8.0,0.0,4.807692307692308 -120,10.0,10.0,0.0,-4.807692307692308 -120,11.0,3.0,0.0,4.191255364806866 -120,11.0,11.0,6.573961583776156,-24.424167659260668 -120,11.0,12.0,0.0,7.142857142857143 -120,11.0,13.0,-1.5265676088395577,3.1734252729654173 -120,11.0,14.0,-3.0953961826564296,6.097275864326261 -120,11.0,15.0,-1.9519977922801688,4.104359379111847 -120,12.0,11.0,0.0,7.142857142857143 -120,12.0,12.0,0.0,-7.142857142857143 -120,13.0,11.0,-1.5265676088395577,3.1734252729654173 -120,13.0,13.0,4.01751987283902,-5.424299332335067 -120,13.0,14.0,-2.4909522639994623,2.250874059369649 -120,14.0,11.0,-3.0953961826564296,6.097275864326261 -120,14.0,13.0,-2.4909522639994623,2.250874059369649 -120,14.0,14.0,9.365498545964757,-16.01163373210796 -120,14.0,17.0,-1.8108011504072024,3.687418931630696 -120,14.0,22.0,-1.9683489489016612,3.976064876781356 -120,15.0,11.0,-1.9519977922801688,4.104359379111847 -120,15.0,15.0,3.271064728633931,-8.94513365126506 -120,15.0,16.0,-1.3190669363537617,4.8407742721532125 -120,16.0,15.0,-1.3190669363537617,4.8407742721532125 -120,16.0,16.0,1.3190669363537617,-4.8407742721532125 -120,17.0,14.0,-1.8108011504072024,3.687418931630696 -120,17.0,17.0,4.886487584415919,-9.906177730909668 -120,17.0,18.0,-3.0756864340087167,6.218758799278971 -120,18.0,17.0,-3.0756864340087167,6.218758799278971 -120,18.0,18.0,8.958039375185187,-17.98346468163191 -120,18.0,19.0,-5.88235294117647,11.76470588235294 -120,19.0,9.0,-1.7848303152666305,3.98535828943083 -120,19.0,18.0,-5.88235294117647,11.76470588235294 -120,19.0,19.0,7.6671832564431,-15.75006417178377 -120,20.0,9.0,-5.101853820159654,10.98071411292983 -120,20.0,20.0,21.876495189895888,-45.10843276170355 -120,20.0,21.0,-16.774641369736234,34.127718648773715 -120,21.0,9.0,-2.619319553382597,5.400770303329455 -120,21.0,20.0,-16.774641369736234,34.127718648773715 -120,21.0,21.0,21.93449907537439,-43.48289181517921 -120,21.0,23.0,-2.5405381522555563,3.95440286307604 -120,22.0,14.0,-1.9683489489016612,3.976064876781356 -120,22.0,22.0,3.429754555384988,-6.965303617315433 -120,22.0,23.0,-1.4614056064833263,2.989238740534077 -120,23.0,21.0,-2.5405381522555563,3.95440286307604 -120,23.0,22.0,-1.4614056064833263,2.989238740534077 -120,23.0,23.0,4.001943758738883,-6.900641603610116 -120,24.0,24.0,3.185822136447737,-5.577356708264566 -120,24.0,25.0,-1.2165301194494855,1.8171440463475024 -120,24.0,26.0,-1.9692920169982515,3.760212661917064 -120,25.0,24.0,-1.2165301194494855,1.8171440463475024 -120,25.0,25.0,1.2165301194494855,-1.8171440463475024 -120,26.0,24.0,-1.9692920169982515,3.760212661917064 -120,26.0,26.0,3.652281470778589,-9.46044252232512 -120,26.0,27.0,0.0,2.608731947574922 -120,26.0,28.0,-0.99553355095268,1.881005840357816 -120,26.0,29.0,-0.6874559028276572,1.293971494797717 -120,27.0,5.0,-4.362844058012917,15.463571542897856 -120,27.0,7.0,-1.4439790613954469,4.540814658476248 -120,27.0,26.0,0.0,2.608731947574922 -120,27.0,27.0,5.806823119408364,-22.67145722159613 -120,28.0,26.0,-0.99553355095268,1.881005840357816 -120,28.0,28.0,1.9075867579849564,-3.604364401207048 -120,28.0,29.0,-0.9120532070322764,1.7233585608492326 -120,29.0,26.0,-0.6874559028276572,1.293971494797717 -120,29.0,28.0,-0.9120532070322764,1.7233585608492326 -120,29.0,29.0,1.5995091098599337,-3.0173300556469496 -121,0.0,0.0,6.765516048652632,-21.23160167089863 -121,0.0,1.0,-5.224646179885656,15.646726840803398 -121,0.0,2.0,-1.5408698687669766,5.631674830095234 -121,1.0,0.0,-5.224646179885656,15.646726840803398 -121,1.0,1.0,9.75228216552403,-30.648662892676068 -121,1.0,3.0,-1.7055303166990268,5.1973792282565086 -121,1.0,4.0,-1.1359607881738778,4.772479328281356 -121,1.0,5.0,-1.6861448807654689,5.116477495334806 -121,2.0,0.0,-1.5408698687669766,5.631674830095234 -121,2.0,2.0,1.5408698687669766,-5.611274830095233 -121,3.0,1.0,-1.7055303166990268,5.1973792282565086 -121,3.0,3.0,8.118654046873583,-27.485682793737737 -121,3.0,5.0,-6.413123730174556,22.31120356548123 -121,4.0,1.0,-1.1359607881738778,4.772479328281356 -121,4.0,4.0,4.089980824135861,-12.190647245055052 -121,4.0,6.0,-2.954020035961983,7.449267916773697 -121,5.0,1.0,-1.6861448807654689,5.116477495334806 -121,5.0,3.0,-6.413123730174556,22.31120356548123 -121,5.0,5.0,22.341631269034565,-82.8291478657789 -121,5.0,6.0,-3.590210423980992,11.02611441072814 -121,5.0,7.0,-6.289308176100628,22.0125786163522 -121,5.0,8.0,0.0,4.915840805411357 -121,5.0,9.0,0.0,1.8561002591115965 -121,5.0,27.0,-4.362844058012917,15.463571542897856 -121,6.0,4.0,-2.954020035961983,7.449267916773697 -121,6.0,5.0,-3.590210423980992,11.02611441072814 -121,6.0,6.0,6.544230459942975,-18.45668232750184 -121,7.0,5.0,-6.289308176100628,22.0125786163522 -121,7.0,7.0,6.289308176100628,-22.0080786163522 -121,8.0,5.0,0.0,4.915840805411357 -121,8.0,8.0,0.0,-18.706293706293707 -121,8.0,9.0,0.0,9.090909090909092 -121,8.0,10.0,0.0,4.807692307692308 -121,9.0,5.0,0.0,1.8561002591115965 -121,9.0,8.0,0.0,9.090909090909092 -121,9.0,9.0,13.462042814524237,-41.3837606675224 -121,9.0,16.0,-3.956039125715353,10.317447719844054 -121,9.0,19.0,-1.7848303152666305,3.98535828943083 -121,9.0,20.0,-5.101853820159654,10.98071411292983 -121,9.0,21.0,-2.619319553382597,5.400770303329455 -121,10.0,8.0,0.0,4.807692307692308 -121,10.0,10.0,0.0,-4.807692307692308 -121,11.0,11.0,6.573961583776156,-20.517917659260668 -121,11.0,12.0,0.0,7.142857142857143 -121,11.0,13.0,-1.5265676088395577,3.1734252729654173 -121,11.0,14.0,-3.0953961826564296,6.097275864326261 -121,11.0,15.0,-1.9519977922801688,4.104359379111847 -121,12.0,11.0,0.0,7.142857142857143 -121,12.0,12.0,0.0,-7.142857142857143 -121,13.0,11.0,-1.5265676088395577,3.1734252729654173 -121,13.0,13.0,4.01751987283902,-5.424299332335067 -121,13.0,14.0,-2.4909522639994623,2.250874059369649 -121,14.0,11.0,-3.0953961826564296,6.097275864326261 -121,14.0,13.0,-2.4909522639994623,2.250874059369649 -121,14.0,14.0,9.365498545964757,-16.01163373210796 -121,14.0,17.0,-1.8108011504072024,3.687418931630696 -121,14.0,22.0,-1.9683489489016612,3.976064876781356 -121,15.0,11.0,-1.9519977922801688,4.104359379111847 -121,15.0,15.0,3.271064728633931,-8.94513365126506 -121,15.0,16.0,-1.3190669363537617,4.8407742721532125 -121,16.0,9.0,-3.956039125715353,10.317447719844054 -121,16.0,15.0,-1.3190669363537617,4.8407742721532125 -121,16.0,16.0,5.275106062069114,-15.158221991997266 -121,17.0,14.0,-1.8108011504072024,3.687418931630696 -121,17.0,17.0,4.886487584415919,-9.906177730909668 -121,17.0,18.0,-3.0756864340087167,6.218758799278971 -121,18.0,17.0,-3.0756864340087167,6.218758799278971 -121,18.0,18.0,8.958039375185187,-17.98346468163191 -121,18.0,19.0,-5.88235294117647,11.76470588235294 -121,19.0,9.0,-1.7848303152666305,3.98535828943083 -121,19.0,18.0,-5.88235294117647,11.76470588235294 -121,19.0,19.0,7.6671832564431,-15.75006417178377 -121,20.0,9.0,-5.101853820159654,10.98071411292983 -121,20.0,20.0,21.876495189895888,-45.10843276170355 -121,20.0,21.0,-16.774641369736234,34.127718648773715 -121,21.0,9.0,-2.619319553382597,5.400770303329455 -121,21.0,20.0,-16.774641369736234,34.127718648773715 -121,21.0,21.0,21.93449907537439,-43.48289181517921 -121,21.0,23.0,-2.5405381522555563,3.95440286307604 -121,22.0,14.0,-1.9683489489016612,3.976064876781356 -121,22.0,22.0,3.429754555384988,-6.965303617315433 -121,22.0,23.0,-1.4614056064833263,2.989238740534077 -121,23.0,21.0,-2.5405381522555563,3.95440286307604 -121,23.0,22.0,-1.4614056064833263,2.989238740534077 -121,23.0,23.0,5.311836702613133,-9.188263657315172 -121,23.0,24.0,-1.3098929438742493,2.287622053705056 -121,24.0,23.0,-1.3098929438742493,2.287622053705056 -121,24.0,24.0,4.495715080321987,-7.864978761969621 -121,24.0,25.0,-1.2165301194494855,1.8171440463475024 -121,24.0,26.0,-1.9692920169982515,3.760212661917064 -121,25.0,24.0,-1.2165301194494855,1.8171440463475024 -121,25.0,25.0,1.2165301194494855,-1.8171440463475024 -121,26.0,24.0,-1.9692920169982515,3.760212661917064 -121,26.0,26.0,3.652281470778589,-9.46044252232512 -121,26.0,27.0,0.0,2.608731947574922 -121,26.0,28.0,-0.99553355095268,1.881005840357816 -121,26.0,29.0,-0.6874559028276572,1.293971494797717 -121,27.0,5.0,-4.362844058012917,15.463571542897856 -121,27.0,26.0,0.0,2.608731947574922 -121,27.0,27.0,4.362844058012917,-18.15204256311988 -121,28.0,26.0,-0.99553355095268,1.881005840357816 -121,28.0,28.0,1.9075867579849564,-3.604364401207048 -121,28.0,29.0,-0.9120532070322764,1.7233585608492326 -121,29.0,26.0,-0.6874559028276572,1.293971494797717 -121,29.0,28.0,-0.9120532070322764,1.7233585608492326 -121,29.0,29.0,1.5995091098599337,-3.0173300556469496 -122,0.0,0.0,6.765516048652632,-21.23160167089863 -122,0.0,1.0,-5.224646179885656,15.646726840803398 -122,0.0,2.0,-1.5408698687669766,5.631674830095234 -122,1.0,0.0,-5.224646179885656,15.646726840803398 -122,1.0,1.0,9.75228216552403,-30.648662892676068 -122,1.0,3.0,-1.7055303166990268,5.1973792282565086 -122,1.0,4.0,-1.1359607881738778,4.772479328281356 -122,1.0,5.0,-1.6861448807654689,5.116477495334806 -122,2.0,0.0,-1.5408698687669766,5.631674830095234 -122,2.0,2.0,9.736318911079088,-29.13794745915803 -122,2.0,3.0,-8.19544904231211,23.5308726290628 -122,3.0,1.0,-1.7055303166990268,5.1973792282565086 -122,3.0,2.0,-8.19544904231211,23.5308726290628 -122,3.0,3.0,16.314103089185693,-55.509410535254254 -122,3.0,5.0,-6.413123730174556,22.31120356548123 -122,3.0,11.0,0.0,4.191255364806866 -122,4.0,1.0,-1.1359607881738778,4.772479328281356 -122,4.0,4.0,4.089980824135861,-12.190647245055052 -122,4.0,6.0,-2.954020035961983,7.449267916773697 -122,5.0,1.0,-1.6861448807654689,5.116477495334806 -122,5.0,3.0,-6.413123730174556,22.31120356548123 -122,5.0,5.0,16.052323092933932,-58.905589105864685 -122,5.0,6.0,-3.590210423980992,11.02611441072814 -122,5.0,8.0,0.0,4.915840805411357 -122,5.0,27.0,-4.362844058012917,15.463571542897856 -122,6.0,4.0,-2.954020035961983,7.449267916773697 -122,6.0,5.0,-3.590210423980992,11.02611441072814 -122,6.0,6.0,6.544230459942975,-18.45668232750184 -122,7.0,7.0,1.4439790613954469,-4.519414658476248 -122,7.0,27.0,-1.4439790613954469,4.540814658476248 -122,8.0,5.0,0.0,4.915840805411357 -122,8.0,8.0,0.0,-18.706293706293707 -122,8.0,9.0,0.0,9.090909090909092 -122,8.0,10.0,0.0,4.807692307692308 -122,9.0,8.0,0.0,9.090909090909092 -122,9.0,9.0,13.462042814524237,-39.58519951644326 -122,9.0,16.0,-3.956039125715353,10.317447719844054 -122,9.0,19.0,-1.7848303152666305,3.98535828943083 -122,9.0,20.0,-5.101853820159654,10.98071411292983 -122,9.0,21.0,-2.619319553382597,5.400770303329455 -122,10.0,8.0,0.0,4.807692307692308 -122,10.0,10.0,0.0,-4.807692307692308 -122,11.0,3.0,0.0,4.191255364806866 -122,11.0,11.0,6.573961583776156,-24.424167659260668 -122,11.0,12.0,0.0,7.142857142857143 -122,11.0,13.0,-1.5265676088395577,3.1734252729654173 -122,11.0,14.0,-3.0953961826564296,6.097275864326261 -122,11.0,15.0,-1.9519977922801688,4.104359379111847 -122,12.0,11.0,0.0,7.142857142857143 -122,12.0,12.0,0.0,-7.142857142857143 -122,13.0,11.0,-1.5265676088395577,3.1734252729654173 -122,13.0,13.0,4.01751987283902,-5.424299332335067 -122,13.0,14.0,-2.4909522639994623,2.250874059369649 -122,14.0,11.0,-3.0953961826564296,6.097275864326261 -122,14.0,13.0,-2.4909522639994623,2.250874059369649 -122,14.0,14.0,9.365498545964757,-16.01163373210796 -122,14.0,17.0,-1.8108011504072024,3.687418931630696 -122,14.0,22.0,-1.9683489489016612,3.976064876781356 -122,15.0,11.0,-1.9519977922801688,4.104359379111847 -122,15.0,15.0,3.271064728633931,-8.94513365126506 -122,15.0,16.0,-1.3190669363537617,4.8407742721532125 -122,16.0,9.0,-3.956039125715353,10.317447719844054 -122,16.0,15.0,-1.3190669363537617,4.8407742721532125 -122,16.0,16.0,5.275106062069114,-15.158221991997266 -122,17.0,14.0,-1.8108011504072024,3.687418931630696 -122,17.0,17.0,4.886487584415919,-9.906177730909668 -122,17.0,18.0,-3.0756864340087167,6.218758799278971 -122,18.0,17.0,-3.0756864340087167,6.218758799278971 -122,18.0,18.0,8.958039375185187,-17.98346468163191 -122,18.0,19.0,-5.88235294117647,11.76470588235294 -122,19.0,9.0,-1.7848303152666305,3.98535828943083 -122,19.0,18.0,-5.88235294117647,11.76470588235294 -122,19.0,19.0,7.6671832564431,-15.75006417178377 -122,20.0,9.0,-5.101853820159654,10.98071411292983 -122,20.0,20.0,5.101853820159654,-10.98071411292983 -122,21.0,9.0,-2.619319553382597,5.400770303329455 -122,21.0,21.0,5.159857705638154,-9.355173166405494 -122,21.0,23.0,-2.5405381522555563,3.95440286307604 -122,22.0,14.0,-1.9683489489016612,3.976064876781356 -122,22.0,22.0,3.429754555384988,-6.965303617315433 -122,22.0,23.0,-1.4614056064833263,2.989238740534077 -122,23.0,21.0,-2.5405381522555563,3.95440286307604 -122,23.0,22.0,-1.4614056064833263,2.989238740534077 -122,23.0,23.0,5.311836702613133,-9.188263657315172 -122,23.0,24.0,-1.3098929438742493,2.287622053705056 -122,24.0,23.0,-1.3098929438742493,2.287622053705056 -122,24.0,24.0,4.495715080321987,-7.864978761969621 -122,24.0,25.0,-1.2165301194494855,1.8171440463475024 -122,24.0,26.0,-1.9692920169982515,3.760212661917064 -122,25.0,24.0,-1.2165301194494855,1.8171440463475024 -122,25.0,25.0,1.2165301194494855,-1.8171440463475024 -122,26.0,24.0,-1.9692920169982515,3.760212661917064 -122,26.0,26.0,3.652281470778589,-9.46044252232512 -122,26.0,27.0,0.0,2.608731947574922 -122,26.0,28.0,-0.99553355095268,1.881005840357816 -122,26.0,29.0,-0.6874559028276572,1.293971494797717 -122,27.0,5.0,-4.362844058012917,15.463571542897856 -122,27.0,7.0,-1.4439790613954469,4.540814658476248 -122,27.0,26.0,0.0,2.608731947574922 -122,27.0,27.0,5.806823119408364,-22.67145722159613 -122,28.0,26.0,-0.99553355095268,1.881005840357816 -122,28.0,28.0,1.9075867579849564,-3.604364401207048 -122,28.0,29.0,-0.9120532070322764,1.7233585608492326 -122,29.0,26.0,-0.6874559028276572,1.293971494797717 -122,29.0,28.0,-0.9120532070322764,1.7233585608492326 -122,29.0,29.0,1.5995091098599337,-3.0173300556469496 -123,0.0,0.0,6.765516048652632,-21.23160167089863 -123,0.0,1.0,-5.224646179885656,15.646726840803398 -123,0.0,2.0,-1.5408698687669766,5.631674830095234 -123,1.0,0.0,-5.224646179885656,15.646726840803398 -123,1.0,1.0,9.75228216552403,-30.648662892676068 -123,1.0,3.0,-1.7055303166990268,5.1973792282565086 -123,1.0,4.0,-1.1359607881738778,4.772479328281356 -123,1.0,5.0,-1.6861448807654689,5.116477495334806 -123,2.0,0.0,-1.5408698687669766,5.631674830095234 -123,2.0,2.0,9.736318911079088,-29.13794745915803 -123,2.0,3.0,-8.19544904231211,23.5308726290628 -123,3.0,1.0,-1.7055303166990268,5.1973792282565086 -123,3.0,2.0,-8.19544904231211,23.5308726290628 -123,3.0,3.0,16.314103089185693,-55.509410535254254 -123,3.0,5.0,-6.413123730174556,22.31120356548123 -123,3.0,11.0,0.0,4.191255364806866 -123,4.0,1.0,-1.1359607881738778,4.772479328281356 -123,4.0,4.0,4.089980824135861,-12.190647245055052 -123,4.0,6.0,-2.954020035961983,7.449267916773697 -123,5.0,1.0,-1.6861448807654689,5.116477495334806 -123,5.0,3.0,-6.413123730174556,22.31120356548123 -123,5.0,5.0,22.341631269034565,-82.8291478657789 -123,5.0,6.0,-3.590210423980992,11.02611441072814 -123,5.0,7.0,-6.289308176100628,22.0125786163522 -123,5.0,8.0,0.0,4.915840805411357 -123,5.0,9.0,0.0,1.8561002591115965 -123,5.0,27.0,-4.362844058012917,15.463571542897856 -123,6.0,4.0,-2.954020035961983,7.449267916773697 -123,6.0,5.0,-3.590210423980992,11.02611441072814 -123,6.0,6.0,6.544230459942975,-18.45668232750184 -123,7.0,5.0,-6.289308176100628,22.0125786163522 -123,7.0,7.0,7.733287237496075,-26.527493274828448 -123,7.0,27.0,-1.4439790613954469,4.540814658476248 -123,8.0,5.0,0.0,4.915840805411357 -123,8.0,8.0,0.0,-18.706293706293707 -123,8.0,9.0,0.0,9.090909090909092 -123,8.0,10.0,0.0,4.807692307692308 -123,9.0,5.0,0.0,1.8561002591115965 -123,9.0,8.0,0.0,9.090909090909092 -123,9.0,9.0,13.462042814524237,-41.3837606675224 -123,9.0,16.0,-3.956039125715353,10.317447719844054 -123,9.0,19.0,-1.7848303152666305,3.98535828943083 -123,9.0,20.0,-5.101853820159654,10.98071411292983 -123,9.0,21.0,-2.619319553382597,5.400770303329455 -123,10.0,8.0,0.0,4.807692307692308 -123,10.0,10.0,0.0,-4.807692307692308 -123,11.0,3.0,0.0,4.191255364806866 -123,11.0,11.0,6.573961583776156,-24.424167659260668 -123,11.0,12.0,0.0,7.142857142857143 -123,11.0,13.0,-1.5265676088395577,3.1734252729654173 -123,11.0,14.0,-3.0953961826564296,6.097275864326261 -123,11.0,15.0,-1.9519977922801688,4.104359379111847 -123,12.0,11.0,0.0,7.142857142857143 -123,12.0,12.0,0.0,-7.142857142857143 -123,13.0,11.0,-1.5265676088395577,3.1734252729654173 -123,13.0,13.0,4.01751987283902,-5.424299332335067 -123,13.0,14.0,-2.4909522639994623,2.250874059369649 -123,14.0,11.0,-3.0953961826564296,6.097275864326261 -123,14.0,13.0,-2.4909522639994623,2.250874059369649 -123,14.0,14.0,9.365498545964757,-16.01163373210796 -123,14.0,17.0,-1.8108011504072024,3.687418931630696 -123,14.0,22.0,-1.9683489489016612,3.976064876781356 -123,15.0,11.0,-1.9519977922801688,4.104359379111847 -123,15.0,15.0,3.271064728633931,-8.94513365126506 -123,15.0,16.0,-1.3190669363537617,4.8407742721532125 -123,16.0,9.0,-3.956039125715353,10.317447719844054 -123,16.0,15.0,-1.3190669363537617,4.8407742721532125 -123,16.0,16.0,5.275106062069114,-15.158221991997266 -123,17.0,14.0,-1.8108011504072024,3.687418931630696 -123,17.0,17.0,4.886487584415919,-9.906177730909668 -123,17.0,18.0,-3.0756864340087167,6.218758799278971 -123,18.0,17.0,-3.0756864340087167,6.218758799278971 -123,18.0,18.0,8.958039375185187,-17.98346468163191 -123,18.0,19.0,-5.88235294117647,11.76470588235294 -123,19.0,9.0,-1.7848303152666305,3.98535828943083 -123,19.0,18.0,-5.88235294117647,11.76470588235294 -123,19.0,19.0,7.6671832564431,-15.75006417178377 -123,20.0,9.0,-5.101853820159654,10.98071411292983 -123,20.0,20.0,21.876495189895888,-45.10843276170355 -123,20.0,21.0,-16.774641369736234,34.127718648773715 -123,21.0,9.0,-2.619319553382597,5.400770303329455 -123,21.0,20.0,-16.774641369736234,34.127718648773715 -123,21.0,21.0,21.93449907537439,-43.48289181517921 -123,21.0,23.0,-2.5405381522555563,3.95440286307604 -123,22.0,14.0,-1.9683489489016612,3.976064876781356 -123,22.0,22.0,3.429754555384988,-6.965303617315433 -123,22.0,23.0,-1.4614056064833263,2.989238740534077 -123,23.0,21.0,-2.5405381522555563,3.95440286307604 -123,23.0,22.0,-1.4614056064833263,2.989238740534077 -123,23.0,23.0,5.311836702613133,-9.188263657315172 -123,23.0,24.0,-1.3098929438742493,2.287622053705056 -123,24.0,23.0,-1.3098929438742493,2.287622053705056 -123,24.0,24.0,4.495715080321987,-7.864978761969621 -123,24.0,25.0,-1.2165301194494855,1.8171440463475024 -123,24.0,26.0,-1.9692920169982515,3.760212661917064 -123,25.0,24.0,-1.2165301194494855,1.8171440463475024 -123,25.0,25.0,1.2165301194494855,-1.8171440463475024 -123,26.0,24.0,-1.9692920169982515,3.760212661917064 -123,26.0,26.0,3.652281470778589,-9.46044252232512 -123,26.0,27.0,0.0,2.608731947574922 -123,26.0,28.0,-0.99553355095268,1.881005840357816 -123,26.0,29.0,-0.6874559028276572,1.293971494797717 -123,27.0,5.0,-4.362844058012917,15.463571542897856 -123,27.0,7.0,-1.4439790613954469,4.540814658476248 -123,27.0,26.0,0.0,2.608731947574922 -123,27.0,27.0,5.806823119408364,-22.67145722159613 -123,28.0,26.0,-0.99553355095268,1.881005840357816 -123,28.0,28.0,1.9075867579849564,-3.604364401207048 -123,28.0,29.0,-0.9120532070322764,1.7233585608492326 -123,29.0,26.0,-0.6874559028276572,1.293971494797717 -123,29.0,28.0,-0.9120532070322764,1.7233585608492326 -123,29.0,29.0,1.5995091098599337,-3.0173300556469496 -124,0.0,0.0,6.765516048652632,-21.23160167089863 -124,0.0,1.0,-5.224646179885656,15.646726840803398 -124,0.0,2.0,-1.5408698687669766,5.631674830095234 -124,1.0,0.0,-5.224646179885656,15.646726840803398 -124,1.0,1.0,9.75228216552403,-30.648662892676068 -124,1.0,3.0,-1.7055303166990268,5.1973792282565086 -124,1.0,4.0,-1.1359607881738778,4.772479328281356 -124,1.0,5.0,-1.6861448807654689,5.116477495334806 -124,2.0,0.0,-1.5408698687669766,5.631674830095234 -124,2.0,2.0,9.736318911079088,-29.13794745915803 -124,2.0,3.0,-8.19544904231211,23.5308726290628 -124,3.0,1.0,-1.7055303166990268,5.1973792282565086 -124,3.0,2.0,-8.19544904231211,23.5308726290628 -124,3.0,3.0,16.314103089185693,-55.509410535254254 -124,3.0,5.0,-6.413123730174556,22.31120356548123 -124,3.0,11.0,0.0,4.191255364806866 -124,4.0,1.0,-1.1359607881738778,4.772479328281356 -124,4.0,4.0,4.089980824135861,-12.190647245055052 -124,4.0,6.0,-2.954020035961983,7.449267916773697 -124,5.0,1.0,-1.6861448807654689,5.116477495334806 -124,5.0,3.0,-6.413123730174556,22.31120356548123 -124,5.0,5.0,22.341631269034565,-82.8291478657789 -124,5.0,6.0,-3.590210423980992,11.02611441072814 -124,5.0,7.0,-6.289308176100628,22.0125786163522 -124,5.0,8.0,0.0,4.915840805411357 -124,5.0,9.0,0.0,1.8561002591115965 -124,5.0,27.0,-4.362844058012917,15.463571542897856 -124,6.0,4.0,-2.954020035961983,7.449267916773697 -124,6.0,5.0,-3.590210423980992,11.02611441072814 -124,6.0,6.0,6.544230459942975,-18.45668232750184 -124,7.0,5.0,-6.289308176100628,22.0125786163522 -124,7.0,7.0,7.733287237496075,-26.527493274828448 -124,7.0,27.0,-1.4439790613954469,4.540814658476248 -124,8.0,5.0,0.0,4.915840805411357 -124,8.0,8.0,0.0,-18.706293706293707 -124,8.0,9.0,0.0,9.090909090909092 -124,8.0,10.0,0.0,4.807692307692308 -124,9.0,5.0,0.0,1.8561002591115965 -124,9.0,8.0,0.0,9.090909090909092 -124,9.0,9.0,13.462042814524237,-41.3837606675224 -124,9.0,16.0,-3.956039125715353,10.317447719844054 -124,9.0,19.0,-1.7848303152666305,3.98535828943083 -124,9.0,20.0,-5.101853820159654,10.98071411292983 -124,9.0,21.0,-2.619319553382597,5.400770303329455 -124,10.0,8.0,0.0,4.807692307692308 -124,10.0,10.0,0.0,-4.807692307692308 -124,11.0,3.0,0.0,4.191255364806866 -124,11.0,11.0,6.573961583776156,-24.424167659260668 -124,11.0,12.0,0.0,7.142857142857143 -124,11.0,13.0,-1.5265676088395577,3.1734252729654173 -124,11.0,14.0,-3.0953961826564296,6.097275864326261 -124,11.0,15.0,-1.9519977922801688,4.104359379111847 -124,12.0,11.0,0.0,7.142857142857143 -124,12.0,12.0,0.0,-7.142857142857143 -124,13.0,11.0,-1.5265676088395577,3.1734252729654173 -124,13.0,13.0,4.01751987283902,-5.424299332335067 -124,13.0,14.0,-2.4909522639994623,2.250874059369649 -124,14.0,11.0,-3.0953961826564296,6.097275864326261 -124,14.0,13.0,-2.4909522639994623,2.250874059369649 -124,14.0,14.0,9.365498545964757,-16.01163373210796 -124,14.0,17.0,-1.8108011504072024,3.687418931630696 -124,14.0,22.0,-1.9683489489016612,3.976064876781356 -124,15.0,11.0,-1.9519977922801688,4.104359379111847 -124,15.0,15.0,3.271064728633931,-8.94513365126506 -124,15.0,16.0,-1.3190669363537617,4.8407742721532125 -124,16.0,9.0,-3.956039125715353,10.317447719844054 -124,16.0,15.0,-1.3190669363537617,4.8407742721532125 -124,16.0,16.0,5.275106062069114,-15.158221991997266 -124,17.0,14.0,-1.8108011504072024,3.687418931630696 -124,17.0,17.0,4.886487584415919,-9.906177730909668 -124,17.0,18.0,-3.0756864340087167,6.218758799278971 -124,18.0,17.0,-3.0756864340087167,6.218758799278971 -124,18.0,18.0,8.958039375185187,-17.98346468163191 -124,18.0,19.0,-5.88235294117647,11.76470588235294 -124,19.0,9.0,-1.7848303152666305,3.98535828943083 -124,19.0,18.0,-5.88235294117647,11.76470588235294 -124,19.0,19.0,7.6671832564431,-15.75006417178377 -124,20.0,9.0,-5.101853820159654,10.98071411292983 -124,20.0,20.0,21.876495189895888,-45.10843276170355 -124,20.0,21.0,-16.774641369736234,34.127718648773715 -124,21.0,9.0,-2.619319553382597,5.400770303329455 -124,21.0,20.0,-16.774641369736234,34.127718648773715 -124,21.0,21.0,21.93449907537439,-43.48289181517921 -124,21.0,23.0,-2.5405381522555563,3.95440286307604 -124,22.0,14.0,-1.9683489489016612,3.976064876781356 -124,22.0,22.0,3.429754555384988,-6.965303617315433 -124,22.0,23.0,-1.4614056064833263,2.989238740534077 -124,23.0,21.0,-2.5405381522555563,3.95440286307604 -124,23.0,22.0,-1.4614056064833263,2.989238740534077 -124,23.0,23.0,5.311836702613133,-9.188263657315172 -124,23.0,24.0,-1.3098929438742493,2.287622053705056 -124,24.0,23.0,-1.3098929438742493,2.287622053705056 -124,24.0,24.0,4.495715080321987,-7.864978761969621 -124,24.0,25.0,-1.2165301194494855,1.8171440463475024 -124,24.0,26.0,-1.9692920169982515,3.760212661917064 -124,25.0,24.0,-1.2165301194494855,1.8171440463475024 -124,25.0,25.0,1.2165301194494855,-1.8171440463475024 -124,26.0,24.0,-1.9692920169982515,3.760212661917064 -124,26.0,26.0,3.652281470778589,-9.46044252232512 -124,26.0,27.0,0.0,2.608731947574922 -124,26.0,28.0,-0.99553355095268,1.881005840357816 -124,26.0,29.0,-0.6874559028276572,1.293971494797717 -124,27.0,5.0,-4.362844058012917,15.463571542897856 -124,27.0,7.0,-1.4439790613954469,4.540814658476248 -124,27.0,26.0,0.0,2.608731947574922 -124,27.0,27.0,5.806823119408364,-22.67145722159613 -124,28.0,26.0,-0.99553355095268,1.881005840357816 -124,28.0,28.0,1.9075867579849564,-3.604364401207048 -124,28.0,29.0,-0.9120532070322764,1.7233585608492326 -124,29.0,26.0,-0.6874559028276572,1.293971494797717 -124,29.0,28.0,-0.9120532070322764,1.7233585608492326 -124,29.0,29.0,1.5995091098599337,-3.0173300556469496 -125,0.0,0.0,6.765516048652632,-21.23160167089863 -125,0.0,1.0,-5.224646179885656,15.646726840803398 -125,0.0,2.0,-1.5408698687669766,5.631674830095234 -125,1.0,0.0,-5.224646179885656,15.646726840803398 -125,1.0,1.0,9.75228216552403,-30.648662892676068 -125,1.0,3.0,-1.7055303166990268,5.1973792282565086 -125,1.0,4.0,-1.1359607881738778,4.772479328281356 -125,1.0,5.0,-1.6861448807654689,5.116477495334806 -125,2.0,0.0,-1.5408698687669766,5.631674830095234 -125,2.0,2.0,9.736318911079088,-29.13794745915803 -125,2.0,3.0,-8.19544904231211,23.5308726290628 -125,3.0,1.0,-1.7055303166990268,5.1973792282565086 -125,3.0,2.0,-8.19544904231211,23.5308726290628 -125,3.0,3.0,16.314103089185693,-55.509410535254254 -125,3.0,5.0,-6.413123730174556,22.31120356548123 -125,3.0,11.0,0.0,4.191255364806866 -125,4.0,1.0,-1.1359607881738778,4.772479328281356 -125,4.0,4.0,4.089980824135861,-12.190647245055052 -125,4.0,6.0,-2.954020035961983,7.449267916773697 -125,5.0,1.0,-1.6861448807654689,5.116477495334806 -125,5.0,3.0,-6.413123730174556,22.31120356548123 -125,5.0,5.0,22.341631269034565,-82.8291478657789 -125,5.0,6.0,-3.590210423980992,11.02611441072814 -125,5.0,7.0,-6.289308176100628,22.0125786163522 -125,5.0,8.0,0.0,4.915840805411357 -125,5.0,9.0,0.0,1.8561002591115965 -125,5.0,27.0,-4.362844058012917,15.463571542897856 -125,6.0,4.0,-2.954020035961983,7.449267916773697 -125,6.0,5.0,-3.590210423980992,11.02611441072814 -125,6.0,6.0,6.544230459942975,-18.45668232750184 -125,7.0,5.0,-6.289308176100628,22.0125786163522 -125,7.0,7.0,7.733287237496075,-26.527493274828448 -125,7.0,27.0,-1.4439790613954469,4.540814658476248 -125,8.0,5.0,0.0,4.915840805411357 -125,8.0,8.0,0.0,-18.706293706293707 -125,8.0,9.0,0.0,9.090909090909092 -125,8.0,10.0,0.0,4.807692307692308 -125,9.0,5.0,0.0,1.8561002591115965 -125,9.0,8.0,0.0,9.090909090909092 -125,9.0,9.0,13.462042814524237,-41.3837606675224 -125,9.0,16.0,-3.956039125715353,10.317447719844054 -125,9.0,19.0,-1.7848303152666305,3.98535828943083 -125,9.0,20.0,-5.101853820159654,10.98071411292983 -125,9.0,21.0,-2.619319553382597,5.400770303329455 -125,10.0,8.0,0.0,4.807692307692308 -125,10.0,10.0,0.0,-4.807692307692308 -125,11.0,3.0,0.0,4.191255364806866 -125,11.0,11.0,6.573961583776156,-24.424167659260668 -125,11.0,12.0,0.0,7.142857142857143 -125,11.0,13.0,-1.5265676088395577,3.1734252729654173 -125,11.0,14.0,-3.0953961826564296,6.097275864326261 -125,11.0,15.0,-1.9519977922801688,4.104359379111847 -125,12.0,11.0,0.0,7.142857142857143 -125,12.0,12.0,0.0,-7.142857142857143 -125,13.0,11.0,-1.5265676088395577,3.1734252729654173 -125,13.0,13.0,4.01751987283902,-5.424299332335067 -125,13.0,14.0,-2.4909522639994623,2.250874059369649 -125,14.0,11.0,-3.0953961826564296,6.097275864326261 -125,14.0,13.0,-2.4909522639994623,2.250874059369649 -125,14.0,14.0,9.365498545964757,-16.01163373210796 -125,14.0,17.0,-1.8108011504072024,3.687418931630696 -125,14.0,22.0,-1.9683489489016612,3.976064876781356 -125,15.0,11.0,-1.9519977922801688,4.104359379111847 -125,15.0,15.0,3.271064728633931,-8.94513365126506 -125,15.0,16.0,-1.3190669363537617,4.8407742721532125 -125,16.0,9.0,-3.956039125715353,10.317447719844054 -125,16.0,15.0,-1.3190669363537617,4.8407742721532125 -125,16.0,16.0,5.275106062069114,-15.158221991997266 -125,17.0,14.0,-1.8108011504072024,3.687418931630696 -125,17.0,17.0,4.886487584415919,-9.906177730909668 -125,17.0,18.0,-3.0756864340087167,6.218758799278971 -125,18.0,17.0,-3.0756864340087167,6.218758799278971 -125,18.0,18.0,8.958039375185187,-17.98346468163191 -125,18.0,19.0,-5.88235294117647,11.76470588235294 -125,19.0,9.0,-1.7848303152666305,3.98535828943083 -125,19.0,18.0,-5.88235294117647,11.76470588235294 -125,19.0,19.0,7.6671832564431,-15.75006417178377 -125,20.0,9.0,-5.101853820159654,10.98071411292983 -125,20.0,20.0,21.876495189895888,-45.10843276170355 -125,20.0,21.0,-16.774641369736234,34.127718648773715 -125,21.0,9.0,-2.619319553382597,5.400770303329455 -125,21.0,20.0,-16.774641369736234,34.127718648773715 -125,21.0,21.0,21.93449907537439,-43.48289181517921 -125,21.0,23.0,-2.5405381522555563,3.95440286307604 -125,22.0,14.0,-1.9683489489016612,3.976064876781356 -125,22.0,22.0,3.429754555384988,-6.965303617315433 -125,22.0,23.0,-1.4614056064833263,2.989238740534077 -125,23.0,21.0,-2.5405381522555563,3.95440286307604 -125,23.0,22.0,-1.4614056064833263,2.989238740534077 -125,23.0,23.0,5.311836702613133,-9.188263657315172 -125,23.0,24.0,-1.3098929438742493,2.287622053705056 -125,24.0,23.0,-1.3098929438742493,2.287622053705056 -125,24.0,24.0,4.495715080321987,-7.864978761969621 -125,24.0,25.0,-1.2165301194494855,1.8171440463475024 -125,24.0,26.0,-1.9692920169982515,3.760212661917064 -125,25.0,24.0,-1.2165301194494855,1.8171440463475024 -125,25.0,25.0,1.2165301194494855,-1.8171440463475024 -125,26.0,24.0,-1.9692920169982515,3.760212661917064 -125,26.0,26.0,3.652281470778589,-9.46044252232512 -125,26.0,27.0,0.0,2.608731947574922 -125,26.0,28.0,-0.99553355095268,1.881005840357816 -125,26.0,29.0,-0.6874559028276572,1.293971494797717 -125,27.0,5.0,-4.362844058012917,15.463571542897856 -125,27.0,7.0,-1.4439790613954469,4.540814658476248 -125,27.0,26.0,0.0,2.608731947574922 -125,27.0,27.0,5.806823119408364,-22.67145722159613 -125,28.0,26.0,-0.99553355095268,1.881005840357816 -125,28.0,28.0,1.9075867579849564,-3.604364401207048 -125,28.0,29.0,-0.9120532070322764,1.7233585608492326 -125,29.0,26.0,-0.6874559028276572,1.293971494797717 -125,29.0,28.0,-0.9120532070322764,1.7233585608492326 -125,29.0,29.0,1.5995091098599337,-3.0173300556469496 -126,0.0,0.0,6.765516048652632,-21.23160167089863 -126,0.0,1.0,-5.224646179885656,15.646726840803398 -126,0.0,2.0,-1.5408698687669766,5.631674830095234 -126,1.0,0.0,-5.224646179885656,15.646726840803398 -126,1.0,1.0,9.75228216552403,-30.648662892676068 -126,1.0,3.0,-1.7055303166990268,5.1973792282565086 -126,1.0,4.0,-1.1359607881738778,4.772479328281356 -126,1.0,5.0,-1.6861448807654689,5.116477495334806 -126,2.0,0.0,-1.5408698687669766,5.631674830095234 -126,2.0,2.0,1.5408698687669766,-5.611274830095233 -126,3.0,1.0,-1.7055303166990268,5.1973792282565086 -126,3.0,3.0,8.118654046873583,-31.982737906191456 -126,3.0,5.0,-6.413123730174556,22.31120356548123 -126,3.0,11.0,0.0,4.191255364806866 -126,4.0,1.0,-1.1359607881738778,4.772479328281356 -126,4.0,4.0,4.089980824135861,-12.190647245055052 -126,4.0,6.0,-2.954020035961983,7.449267916773697 -126,5.0,1.0,-1.6861448807654689,5.116477495334806 -126,5.0,3.0,-6.413123730174556,22.31120356548123 -126,5.0,5.0,22.341631269034565,-82.8291478657789 -126,5.0,6.0,-3.590210423980992,11.02611441072814 -126,5.0,7.0,-6.289308176100628,22.0125786163522 -126,5.0,8.0,0.0,4.915840805411357 -126,5.0,9.0,0.0,1.8561002591115965 -126,5.0,27.0,-4.362844058012917,15.463571542897856 -126,6.0,4.0,-2.954020035961983,7.449267916773697 -126,6.0,5.0,-3.590210423980992,11.02611441072814 -126,6.0,6.0,6.544230459942975,-18.45668232750184 -126,7.0,5.0,-6.289308176100628,22.0125786163522 -126,7.0,7.0,7.733287237496075,-26.527493274828448 -126,7.0,27.0,-1.4439790613954469,4.540814658476248 -126,8.0,5.0,0.0,4.915840805411357 -126,8.0,8.0,0.0,-9.615384615384617 -126,8.0,10.0,0.0,4.807692307692308 -126,9.0,5.0,0.0,1.8561002591115965 -126,9.0,9.0,13.462042814524237,-32.29285157661331 -126,9.0,16.0,-3.956039125715353,10.317447719844054 -126,9.0,19.0,-1.7848303152666305,3.98535828943083 -126,9.0,20.0,-5.101853820159654,10.98071411292983 -126,9.0,21.0,-2.619319553382597,5.400770303329455 -126,10.0,8.0,0.0,4.807692307692308 -126,10.0,10.0,0.0,-4.807692307692308 -126,11.0,3.0,0.0,4.191255364806866 -126,11.0,11.0,6.573961583776156,-24.424167659260668 -126,11.0,12.0,0.0,7.142857142857143 -126,11.0,13.0,-1.5265676088395577,3.1734252729654173 -126,11.0,14.0,-3.0953961826564296,6.097275864326261 -126,11.0,15.0,-1.9519977922801688,4.104359379111847 -126,12.0,11.0,0.0,7.142857142857143 -126,12.0,12.0,0.0,-7.142857142857143 -126,13.0,11.0,-1.5265676088395577,3.1734252729654173 -126,13.0,13.0,1.5265676088395577,-3.1734252729654173 -126,14.0,11.0,-3.0953961826564296,6.097275864326261 -126,14.0,14.0,6.874546281965293,-13.760759672738311 -126,14.0,17.0,-1.8108011504072024,3.687418931630696 -126,14.0,22.0,-1.9683489489016612,3.976064876781356 -126,15.0,11.0,-1.9519977922801688,4.104359379111847 -126,15.0,15.0,3.271064728633931,-8.94513365126506 -126,15.0,16.0,-1.3190669363537617,4.8407742721532125 -126,16.0,9.0,-3.956039125715353,10.317447719844054 -126,16.0,15.0,-1.3190669363537617,4.8407742721532125 -126,16.0,16.0,5.275106062069114,-15.158221991997266 -126,17.0,14.0,-1.8108011504072024,3.687418931630696 -126,17.0,17.0,4.886487584415919,-9.906177730909668 -126,17.0,18.0,-3.0756864340087167,6.218758799278971 -126,18.0,17.0,-3.0756864340087167,6.218758799278971 -126,18.0,18.0,8.958039375185187,-17.98346468163191 -126,18.0,19.0,-5.88235294117647,11.76470588235294 -126,19.0,9.0,-1.7848303152666305,3.98535828943083 -126,19.0,18.0,-5.88235294117647,11.76470588235294 -126,19.0,19.0,7.6671832564431,-15.75006417178377 -126,20.0,9.0,-5.101853820159654,10.98071411292983 -126,20.0,20.0,21.876495189895888,-45.10843276170355 -126,20.0,21.0,-16.774641369736234,34.127718648773715 -126,21.0,9.0,-2.619319553382597,5.400770303329455 -126,21.0,20.0,-16.774641369736234,34.127718648773715 -126,21.0,21.0,21.93449907537439,-43.48289181517921 -126,21.0,23.0,-2.5405381522555563,3.95440286307604 -126,22.0,14.0,-1.9683489489016612,3.976064876781356 -126,22.0,22.0,3.429754555384988,-6.965303617315433 -126,22.0,23.0,-1.4614056064833263,2.989238740534077 -126,23.0,21.0,-2.5405381522555563,3.95440286307604 -126,23.0,22.0,-1.4614056064833263,2.989238740534077 -126,23.0,23.0,5.311836702613133,-9.188263657315172 -126,23.0,24.0,-1.3098929438742493,2.287622053705056 -126,24.0,23.0,-1.3098929438742493,2.287622053705056 -126,24.0,24.0,4.495715080321987,-7.864978761969621 -126,24.0,25.0,-1.2165301194494855,1.8171440463475024 -126,24.0,26.0,-1.9692920169982515,3.760212661917064 -126,25.0,24.0,-1.2165301194494855,1.8171440463475024 -126,25.0,25.0,1.2165301194494855,-1.8171440463475024 -126,26.0,24.0,-1.9692920169982515,3.760212661917064 -126,26.0,26.0,3.652281470778589,-9.46044252232512 -126,26.0,27.0,0.0,2.608731947574922 -126,26.0,28.0,-0.99553355095268,1.881005840357816 -126,26.0,29.0,-0.6874559028276572,1.293971494797717 -126,27.0,5.0,-4.362844058012917,15.463571542897856 -126,27.0,7.0,-1.4439790613954469,4.540814658476248 -126,27.0,26.0,0.0,2.608731947574922 -126,27.0,27.0,5.806823119408364,-22.67145722159613 -126,28.0,26.0,-0.99553355095268,1.881005840357816 -126,28.0,28.0,1.9075867579849564,-3.604364401207048 -126,28.0,29.0,-0.9120532070322764,1.7233585608492326 -126,29.0,26.0,-0.6874559028276572,1.293971494797717 -126,29.0,28.0,-0.9120532070322764,1.7233585608492326 -126,29.0,29.0,1.5995091098599337,-3.0173300556469496 -127,0.0,0.0,6.765516048652632,-21.23160167089863 -127,0.0,1.0,-5.224646179885656,15.646726840803398 -127,0.0,2.0,-1.5408698687669766,5.631674830095234 -127,1.0,0.0,-5.224646179885656,15.646726840803398 -127,1.0,1.0,9.75228216552403,-30.648662892676068 -127,1.0,3.0,-1.7055303166990268,5.1973792282565086 -127,1.0,4.0,-1.1359607881738778,4.772479328281356 -127,1.0,5.0,-1.6861448807654689,5.116477495334806 -127,2.0,0.0,-1.5408698687669766,5.631674830095234 -127,2.0,2.0,9.736318911079088,-29.13794745915803 -127,2.0,3.0,-8.19544904231211,23.5308726290628 -127,3.0,1.0,-1.7055303166990268,5.1973792282565086 -127,3.0,2.0,-8.19544904231211,23.5308726290628 -127,3.0,3.0,16.314103089185693,-55.509410535254254 -127,3.0,5.0,-6.413123730174556,22.31120356548123 -127,3.0,11.0,0.0,4.191255364806866 -127,4.0,1.0,-1.1359607881738778,4.772479328281356 -127,4.0,4.0,4.089980824135861,-12.190647245055052 -127,4.0,6.0,-2.954020035961983,7.449267916773697 -127,5.0,1.0,-1.6861448807654689,5.116477495334806 -127,5.0,3.0,-6.413123730174556,22.31120356548123 -127,5.0,5.0,22.341631269034565,-82.8291478657789 -127,5.0,6.0,-3.590210423980992,11.02611441072814 -127,5.0,7.0,-6.289308176100628,22.0125786163522 -127,5.0,8.0,0.0,4.915840805411357 -127,5.0,9.0,0.0,1.8561002591115965 -127,5.0,27.0,-4.362844058012917,15.463571542897856 -127,6.0,4.0,-2.954020035961983,7.449267916773697 -127,6.0,5.0,-3.590210423980992,11.02611441072814 -127,6.0,6.0,6.544230459942975,-18.45668232750184 -127,7.0,5.0,-6.289308176100628,22.0125786163522 -127,7.0,7.0,7.733287237496075,-26.527493274828448 -127,7.0,27.0,-1.4439790613954469,4.540814658476248 -127,8.0,5.0,0.0,4.915840805411357 -127,8.0,8.0,0.0,-18.706293706293707 -127,8.0,9.0,0.0,9.090909090909092 -127,8.0,10.0,0.0,4.807692307692308 -127,9.0,5.0,0.0,1.8561002591115965 -127,9.0,8.0,0.0,9.090909090909092 -127,9.0,9.0,13.462042814524237,-41.3837606675224 -127,9.0,16.0,-3.956039125715353,10.317447719844054 -127,9.0,19.0,-1.7848303152666305,3.98535828943083 -127,9.0,20.0,-5.101853820159654,10.98071411292983 -127,9.0,21.0,-2.619319553382597,5.400770303329455 -127,10.0,8.0,0.0,4.807692307692308 -127,10.0,10.0,0.0,-4.807692307692308 -127,11.0,3.0,0.0,4.191255364806866 -127,11.0,11.0,6.573961583776156,-24.424167659260668 -127,11.0,12.0,0.0,7.142857142857143 -127,11.0,13.0,-1.5265676088395577,3.1734252729654173 -127,11.0,14.0,-3.0953961826564296,6.097275864326261 -127,11.0,15.0,-1.9519977922801688,4.104359379111847 -127,12.0,11.0,0.0,7.142857142857143 -127,12.0,12.0,0.0,-7.142857142857143 -127,13.0,11.0,-1.5265676088395577,3.1734252729654173 -127,13.0,13.0,4.01751987283902,-5.424299332335067 -127,13.0,14.0,-2.4909522639994623,2.250874059369649 -127,14.0,11.0,-3.0953961826564296,6.097275864326261 -127,14.0,13.0,-2.4909522639994623,2.250874059369649 -127,14.0,14.0,9.365498545964757,-16.01163373210796 -127,14.0,17.0,-1.8108011504072024,3.687418931630696 -127,14.0,22.0,-1.9683489489016612,3.976064876781356 -127,15.0,11.0,-1.9519977922801688,4.104359379111847 -127,15.0,15.0,3.271064728633931,-8.94513365126506 -127,15.0,16.0,-1.3190669363537617,4.8407742721532125 -127,16.0,9.0,-3.956039125715353,10.317447719844054 -127,16.0,15.0,-1.3190669363537617,4.8407742721532125 -127,16.0,16.0,5.275106062069114,-15.158221991997266 -127,17.0,14.0,-1.8108011504072024,3.687418931630696 -127,17.0,17.0,4.886487584415919,-9.906177730909668 -127,17.0,18.0,-3.0756864340087167,6.218758799278971 -127,18.0,17.0,-3.0756864340087167,6.218758799278971 -127,18.0,18.0,8.958039375185187,-17.98346468163191 -127,18.0,19.0,-5.88235294117647,11.76470588235294 -127,19.0,9.0,-1.7848303152666305,3.98535828943083 -127,19.0,18.0,-5.88235294117647,11.76470588235294 -127,19.0,19.0,7.6671832564431,-15.75006417178377 -127,20.0,9.0,-5.101853820159654,10.98071411292983 -127,20.0,20.0,21.876495189895888,-45.10843276170355 -127,20.0,21.0,-16.774641369736234,34.127718648773715 -127,21.0,9.0,-2.619319553382597,5.400770303329455 -127,21.0,20.0,-16.774641369736234,34.127718648773715 -127,21.0,21.0,21.93449907537439,-43.48289181517921 -127,21.0,23.0,-2.5405381522555563,3.95440286307604 -127,22.0,14.0,-1.9683489489016612,3.976064876781356 -127,22.0,22.0,3.429754555384988,-6.965303617315433 -127,22.0,23.0,-1.4614056064833263,2.989238740534077 -127,23.0,21.0,-2.5405381522555563,3.95440286307604 -127,23.0,22.0,-1.4614056064833263,2.989238740534077 -127,23.0,23.0,5.311836702613133,-9.188263657315172 -127,23.0,24.0,-1.3098929438742493,2.287622053705056 -127,24.0,23.0,-1.3098929438742493,2.287622053705056 -127,24.0,24.0,4.495715080321987,-7.864978761969621 -127,24.0,25.0,-1.2165301194494855,1.8171440463475024 -127,24.0,26.0,-1.9692920169982515,3.760212661917064 -127,25.0,24.0,-1.2165301194494855,1.8171440463475024 -127,25.0,25.0,1.2165301194494855,-1.8171440463475024 -127,26.0,24.0,-1.9692920169982515,3.760212661917064 -127,26.0,26.0,3.652281470778589,-9.46044252232512 -127,26.0,27.0,0.0,2.608731947574922 -127,26.0,28.0,-0.99553355095268,1.881005840357816 -127,26.0,29.0,-0.6874559028276572,1.293971494797717 -127,27.0,5.0,-4.362844058012917,15.463571542897856 -127,27.0,7.0,-1.4439790613954469,4.540814658476248 -127,27.0,26.0,0.0,2.608731947574922 -127,27.0,27.0,5.806823119408364,-22.67145722159613 -127,28.0,26.0,-0.99553355095268,1.881005840357816 -127,28.0,28.0,1.9075867579849564,-3.604364401207048 -127,28.0,29.0,-0.9120532070322764,1.7233585608492326 -127,29.0,26.0,-0.6874559028276572,1.293971494797717 -127,29.0,28.0,-0.9120532070322764,1.7233585608492326 -127,29.0,29.0,1.5995091098599337,-3.0173300556469496 -128,0.0,0.0,6.765516048652632,-21.23160167089863 -128,0.0,1.0,-5.224646179885656,15.646726840803398 -128,0.0,2.0,-1.5408698687669766,5.631674830095234 -128,1.0,0.0,-5.224646179885656,15.646726840803398 -128,1.0,1.0,9.75228216552403,-30.648662892676068 -128,1.0,3.0,-1.7055303166990268,5.1973792282565086 -128,1.0,4.0,-1.1359607881738778,4.772479328281356 -128,1.0,5.0,-1.6861448807654689,5.116477495334806 -128,2.0,0.0,-1.5408698687669766,5.631674830095234 -128,2.0,2.0,9.736318911079088,-29.13794745915803 -128,2.0,3.0,-8.19544904231211,23.5308726290628 -128,3.0,1.0,-1.7055303166990268,5.1973792282565086 -128,3.0,2.0,-8.19544904231211,23.5308726290628 -128,3.0,3.0,16.314103089185693,-51.01235542280054 -128,3.0,5.0,-6.413123730174556,22.31120356548123 -128,4.0,1.0,-1.1359607881738778,4.772479328281356 -128,4.0,4.0,4.089980824135861,-12.190647245055052 -128,4.0,6.0,-2.954020035961983,7.449267916773697 -128,5.0,1.0,-1.6861448807654689,5.116477495334806 -128,5.0,3.0,-6.413123730174556,22.31120356548123 -128,5.0,5.0,22.341631269034565,-82.8291478657789 -128,5.0,6.0,-3.590210423980992,11.02611441072814 -128,5.0,7.0,-6.289308176100628,22.0125786163522 -128,5.0,8.0,0.0,4.915840805411357 -128,5.0,9.0,0.0,1.8561002591115965 -128,5.0,27.0,-4.362844058012917,15.463571542897856 -128,6.0,4.0,-2.954020035961983,7.449267916773697 -128,6.0,5.0,-3.590210423980992,11.02611441072814 -128,6.0,6.0,6.544230459942975,-18.45668232750184 -128,7.0,5.0,-6.289308176100628,22.0125786163522 -128,7.0,7.0,7.733287237496075,-26.527493274828448 -128,7.0,27.0,-1.4439790613954469,4.540814658476248 -128,8.0,5.0,0.0,4.915840805411357 -128,8.0,8.0,0.0,-18.706293706293707 -128,8.0,9.0,0.0,9.090909090909092 -128,8.0,10.0,0.0,4.807692307692308 -128,9.0,5.0,0.0,1.8561002591115965 -128,9.0,8.0,0.0,9.090909090909092 -128,9.0,9.0,13.462042814524237,-41.3837606675224 -128,9.0,16.0,-3.956039125715353,10.317447719844054 -128,9.0,19.0,-1.7848303152666305,3.98535828943083 -128,9.0,20.0,-5.101853820159654,10.98071411292983 -128,9.0,21.0,-2.619319553382597,5.400770303329455 -128,10.0,8.0,0.0,4.807692307692308 -128,10.0,10.0,0.0,-4.807692307692308 -128,11.0,11.0,6.573961583776156,-20.517917659260668 -128,11.0,12.0,0.0,7.142857142857143 -128,11.0,13.0,-1.5265676088395577,3.1734252729654173 -128,11.0,14.0,-3.0953961826564296,6.097275864326261 -128,11.0,15.0,-1.9519977922801688,4.104359379111847 -128,12.0,11.0,0.0,7.142857142857143 -128,12.0,12.0,0.0,-7.142857142857143 -128,13.0,11.0,-1.5265676088395577,3.1734252729654173 -128,13.0,13.0,4.01751987283902,-5.424299332335067 -128,13.0,14.0,-2.4909522639994623,2.250874059369649 -128,14.0,11.0,-3.0953961826564296,6.097275864326261 -128,14.0,13.0,-2.4909522639994623,2.250874059369649 -128,14.0,14.0,9.365498545964757,-16.01163373210796 -128,14.0,17.0,-1.8108011504072024,3.687418931630696 -128,14.0,22.0,-1.9683489489016612,3.976064876781356 -128,15.0,11.0,-1.9519977922801688,4.104359379111847 -128,15.0,15.0,3.271064728633931,-8.94513365126506 -128,15.0,16.0,-1.3190669363537617,4.8407742721532125 -128,16.0,9.0,-3.956039125715353,10.317447719844054 -128,16.0,15.0,-1.3190669363537617,4.8407742721532125 -128,16.0,16.0,5.275106062069114,-15.158221991997266 -128,17.0,14.0,-1.8108011504072024,3.687418931630696 -128,17.0,17.0,4.886487584415919,-9.906177730909668 -128,17.0,18.0,-3.0756864340087167,6.218758799278971 -128,18.0,17.0,-3.0756864340087167,6.218758799278971 -128,18.0,18.0,8.958039375185187,-17.98346468163191 -128,18.0,19.0,-5.88235294117647,11.76470588235294 -128,19.0,9.0,-1.7848303152666305,3.98535828943083 -128,19.0,18.0,-5.88235294117647,11.76470588235294 -128,19.0,19.0,7.6671832564431,-15.75006417178377 -128,20.0,9.0,-5.101853820159654,10.98071411292983 -128,20.0,20.0,21.876495189895888,-45.10843276170355 -128,20.0,21.0,-16.774641369736234,34.127718648773715 -128,21.0,9.0,-2.619319553382597,5.400770303329455 -128,21.0,20.0,-16.774641369736234,34.127718648773715 -128,21.0,21.0,21.93449907537439,-43.48289181517921 -128,21.0,23.0,-2.5405381522555563,3.95440286307604 -128,22.0,14.0,-1.9683489489016612,3.976064876781356 -128,22.0,22.0,1.9683489489016612,-3.976064876781356 -128,23.0,21.0,-2.5405381522555563,3.95440286307604 -128,23.0,23.0,3.850431096129806,-6.199024916781094 -128,23.0,24.0,-1.3098929438742493,2.287622053705056 -128,24.0,23.0,-1.3098929438742493,2.287622053705056 -128,24.0,24.0,4.495715080321987,-7.864978761969621 -128,24.0,25.0,-1.2165301194494855,1.8171440463475024 -128,24.0,26.0,-1.9692920169982515,3.760212661917064 -128,25.0,24.0,-1.2165301194494855,1.8171440463475024 -128,25.0,25.0,1.2165301194494855,-1.8171440463475024 -128,26.0,24.0,-1.9692920169982515,3.760212661917064 -128,26.0,26.0,3.652281470778589,-9.46044252232512 -128,26.0,27.0,0.0,2.608731947574922 -128,26.0,28.0,-0.99553355095268,1.881005840357816 -128,26.0,29.0,-0.6874559028276572,1.293971494797717 -128,27.0,5.0,-4.362844058012917,15.463571542897856 -128,27.0,7.0,-1.4439790613954469,4.540814658476248 -128,27.0,26.0,0.0,2.608731947574922 -128,27.0,27.0,5.806823119408364,-22.67145722159613 -128,28.0,26.0,-0.99553355095268,1.881005840357816 -128,28.0,28.0,0.99553355095268,-1.881005840357816 -128,29.0,26.0,-0.6874559028276572,1.293971494797717 -128,29.0,29.0,0.6874559028276572,-1.293971494797717 -129,0.0,0.0,6.765516048652632,-21.23160167089863 -129,0.0,1.0,-5.224646179885656,15.646726840803398 -129,0.0,2.0,-1.5408698687669766,5.631674830095234 -129,1.0,0.0,-5.224646179885656,15.646726840803398 -129,1.0,1.0,9.75228216552403,-30.648662892676068 -129,1.0,3.0,-1.7055303166990268,5.1973792282565086 -129,1.0,4.0,-1.1359607881738778,4.772479328281356 -129,1.0,5.0,-1.6861448807654689,5.116477495334806 -129,2.0,0.0,-1.5408698687669766,5.631674830095234 -129,2.0,2.0,9.736318911079088,-29.13794745915803 -129,2.0,3.0,-8.19544904231211,23.5308726290628 -129,3.0,1.0,-1.7055303166990268,5.1973792282565086 -129,3.0,2.0,-8.19544904231211,23.5308726290628 -129,3.0,3.0,16.314103089185693,-55.509410535254254 -129,3.0,5.0,-6.413123730174556,22.31120356548123 -129,3.0,11.0,0.0,4.191255364806866 -129,4.0,1.0,-1.1359607881738778,4.772479328281356 -129,4.0,4.0,4.089980824135861,-12.190647245055052 -129,4.0,6.0,-2.954020035961983,7.449267916773697 -129,5.0,1.0,-1.6861448807654689,5.116477495334806 -129,5.0,3.0,-6.413123730174556,22.31120356548123 -129,5.0,5.0,22.341631269034565,-82.8291478657789 -129,5.0,6.0,-3.590210423980992,11.02611441072814 -129,5.0,7.0,-6.289308176100628,22.0125786163522 -129,5.0,8.0,0.0,4.915840805411357 -129,5.0,9.0,0.0,1.8561002591115965 -129,5.0,27.0,-4.362844058012917,15.463571542897856 -129,6.0,4.0,-2.954020035961983,7.449267916773697 -129,6.0,5.0,-3.590210423980992,11.02611441072814 -129,6.0,6.0,6.544230459942975,-18.45668232750184 -129,7.0,5.0,-6.289308176100628,22.0125786163522 -129,7.0,7.0,7.733287237496075,-26.527493274828448 -129,7.0,27.0,-1.4439790613954469,4.540814658476248 -129,8.0,5.0,0.0,4.915840805411357 -129,8.0,8.0,0.0,-18.706293706293707 -129,8.0,9.0,0.0,9.090909090909092 -129,8.0,10.0,0.0,4.807692307692308 -129,9.0,5.0,0.0,1.8561002591115965 -129,9.0,8.0,0.0,9.090909090909092 -129,9.0,9.0,13.462042814524237,-41.3837606675224 -129,9.0,16.0,-3.956039125715353,10.317447719844054 -129,9.0,19.0,-1.7848303152666305,3.98535828943083 -129,9.0,20.0,-5.101853820159654,10.98071411292983 -129,9.0,21.0,-2.619319553382597,5.400770303329455 -129,10.0,8.0,0.0,4.807692307692308 -129,10.0,10.0,0.0,-4.807692307692308 -129,11.0,3.0,0.0,4.191255364806866 -129,11.0,11.0,6.573961583776156,-24.424167659260668 -129,11.0,12.0,0.0,7.142857142857143 -129,11.0,13.0,-1.5265676088395577,3.1734252729654173 -129,11.0,14.0,-3.0953961826564296,6.097275864326261 -129,11.0,15.0,-1.9519977922801688,4.104359379111847 -129,12.0,11.0,0.0,7.142857142857143 -129,12.0,12.0,0.0,-7.142857142857143 -129,13.0,11.0,-1.5265676088395577,3.1734252729654173 -129,13.0,13.0,4.01751987283902,-5.424299332335067 -129,13.0,14.0,-2.4909522639994623,2.250874059369649 -129,14.0,11.0,-3.0953961826564296,6.097275864326261 -129,14.0,13.0,-2.4909522639994623,2.250874059369649 -129,14.0,14.0,9.365498545964757,-16.01163373210796 -129,14.0,17.0,-1.8108011504072024,3.687418931630696 -129,14.0,22.0,-1.9683489489016612,3.976064876781356 -129,15.0,11.0,-1.9519977922801688,4.104359379111847 -129,15.0,15.0,3.271064728633931,-8.94513365126506 -129,15.0,16.0,-1.3190669363537617,4.8407742721532125 -129,16.0,9.0,-3.956039125715353,10.317447719844054 -129,16.0,15.0,-1.3190669363537617,4.8407742721532125 -129,16.0,16.0,5.275106062069114,-15.158221991997266 -129,17.0,14.0,-1.8108011504072024,3.687418931630696 -129,17.0,17.0,4.886487584415919,-9.906177730909668 -129,17.0,18.0,-3.0756864340087167,6.218758799278971 -129,18.0,17.0,-3.0756864340087167,6.218758799278971 -129,18.0,18.0,8.958039375185187,-17.98346468163191 -129,18.0,19.0,-5.88235294117647,11.76470588235294 -129,19.0,9.0,-1.7848303152666305,3.98535828943083 -129,19.0,18.0,-5.88235294117647,11.76470588235294 -129,19.0,19.0,7.6671832564431,-15.75006417178377 -129,20.0,9.0,-5.101853820159654,10.98071411292983 -129,20.0,20.0,21.876495189895888,-45.10843276170355 -129,20.0,21.0,-16.774641369736234,34.127718648773715 -129,21.0,9.0,-2.619319553382597,5.400770303329455 -129,21.0,20.0,-16.774641369736234,34.127718648773715 -129,21.0,21.0,21.93449907537439,-43.48289181517921 -129,21.0,23.0,-2.5405381522555563,3.95440286307604 -129,22.0,14.0,-1.9683489489016612,3.976064876781356 -129,22.0,22.0,3.429754555384988,-6.965303617315433 -129,22.0,23.0,-1.4614056064833263,2.989238740534077 -129,23.0,21.0,-2.5405381522555563,3.95440286307604 -129,23.0,22.0,-1.4614056064833263,2.989238740534077 -129,23.0,23.0,5.311836702613133,-9.188263657315172 -129,23.0,24.0,-1.3098929438742493,2.287622053705056 -129,24.0,23.0,-1.3098929438742493,2.287622053705056 -129,24.0,24.0,4.495715080321987,-7.864978761969621 -129,24.0,25.0,-1.2165301194494855,1.8171440463475024 -129,24.0,26.0,-1.9692920169982515,3.760212661917064 -129,25.0,24.0,-1.2165301194494855,1.8171440463475024 -129,25.0,25.0,1.2165301194494855,-1.8171440463475024 -129,26.0,24.0,-1.9692920169982515,3.760212661917064 -129,26.0,26.0,3.652281470778589,-9.46044252232512 -129,26.0,27.0,0.0,2.608731947574922 -129,26.0,28.0,-0.99553355095268,1.881005840357816 -129,26.0,29.0,-0.6874559028276572,1.293971494797717 -129,27.0,5.0,-4.362844058012917,15.463571542897856 -129,27.0,7.0,-1.4439790613954469,4.540814658476248 -129,27.0,26.0,0.0,2.608731947574922 -129,27.0,27.0,5.806823119408364,-22.67145722159613 -129,28.0,26.0,-0.99553355095268,1.881005840357816 -129,28.0,28.0,1.9075867579849564,-3.604364401207048 -129,28.0,29.0,-0.9120532070322764,1.7233585608492326 -129,29.0,26.0,-0.6874559028276572,1.293971494797717 -129,29.0,28.0,-0.9120532070322764,1.7233585608492326 -129,29.0,29.0,1.5995091098599337,-3.0173300556469496 -130,0.0,0.0,6.765516048652632,-21.23160167089863 -130,0.0,1.0,-5.224646179885656,15.646726840803398 -130,0.0,2.0,-1.5408698687669766,5.631674830095234 -130,1.0,0.0,-5.224646179885656,15.646726840803398 -130,1.0,1.0,9.75228216552403,-30.648662892676068 -130,1.0,3.0,-1.7055303166990268,5.1973792282565086 -130,1.0,4.0,-1.1359607881738778,4.772479328281356 -130,1.0,5.0,-1.6861448807654689,5.116477495334806 -130,2.0,0.0,-1.5408698687669766,5.631674830095234 -130,2.0,2.0,9.736318911079088,-29.13794745915803 -130,2.0,3.0,-8.19544904231211,23.5308726290628 -130,3.0,1.0,-1.7055303166990268,5.1973792282565086 -130,3.0,2.0,-8.19544904231211,23.5308726290628 -130,3.0,3.0,16.314103089185693,-55.509410535254254 -130,3.0,5.0,-6.413123730174556,22.31120356548123 -130,3.0,11.0,0.0,4.191255364806866 -130,4.0,1.0,-1.1359607881738778,4.772479328281356 -130,4.0,4.0,4.089980824135861,-12.190647245055052 -130,4.0,6.0,-2.954020035961983,7.449267916773697 -130,5.0,1.0,-1.6861448807654689,5.116477495334806 -130,5.0,3.0,-6.413123730174556,22.31120356548123 -130,5.0,5.0,22.341631269034565,-82.8291478657789 -130,5.0,6.0,-3.590210423980992,11.02611441072814 -130,5.0,7.0,-6.289308176100628,22.0125786163522 -130,5.0,8.0,0.0,4.915840805411357 -130,5.0,9.0,0.0,1.8561002591115965 -130,5.0,27.0,-4.362844058012917,15.463571542897856 -130,6.0,4.0,-2.954020035961983,7.449267916773697 -130,6.0,5.0,-3.590210423980992,11.02611441072814 -130,6.0,6.0,6.544230459942975,-18.45668232750184 -130,7.0,5.0,-6.289308176100628,22.0125786163522 -130,7.0,7.0,6.289308176100628,-22.0080786163522 -130,8.0,5.0,0.0,4.915840805411357 -130,8.0,8.0,0.0,-18.706293706293707 -130,8.0,9.0,0.0,9.090909090909092 -130,8.0,10.0,0.0,4.807692307692308 -130,9.0,5.0,0.0,1.8561002591115965 -130,9.0,8.0,0.0,9.090909090909092 -130,9.0,9.0,13.462042814524237,-41.3837606675224 -130,9.0,16.0,-3.956039125715353,10.317447719844054 -130,9.0,19.0,-1.7848303152666305,3.98535828943083 -130,9.0,20.0,-5.101853820159654,10.98071411292983 -130,9.0,21.0,-2.619319553382597,5.400770303329455 -130,10.0,8.0,0.0,4.807692307692308 -130,10.0,10.0,0.0,-4.807692307692308 -130,11.0,3.0,0.0,4.191255364806866 -130,11.0,11.0,6.573961583776156,-24.424167659260668 -130,11.0,12.0,0.0,7.142857142857143 -130,11.0,13.0,-1.5265676088395577,3.1734252729654173 -130,11.0,14.0,-3.0953961826564296,6.097275864326261 -130,11.0,15.0,-1.9519977922801688,4.104359379111847 -130,12.0,11.0,0.0,7.142857142857143 -130,12.0,12.0,0.0,-7.142857142857143 -130,13.0,11.0,-1.5265676088395577,3.1734252729654173 -130,13.0,13.0,4.01751987283902,-5.424299332335067 -130,13.0,14.0,-2.4909522639994623,2.250874059369649 -130,14.0,11.0,-3.0953961826564296,6.097275864326261 -130,14.0,13.0,-2.4909522639994623,2.250874059369649 -130,14.0,14.0,9.365498545964757,-16.01163373210796 -130,14.0,17.0,-1.8108011504072024,3.687418931630696 -130,14.0,22.0,-1.9683489489016612,3.976064876781356 -130,15.0,11.0,-1.9519977922801688,4.104359379111847 -130,15.0,15.0,3.271064728633931,-8.94513365126506 -130,15.0,16.0,-1.3190669363537617,4.8407742721532125 -130,16.0,9.0,-3.956039125715353,10.317447719844054 -130,16.0,15.0,-1.3190669363537617,4.8407742721532125 -130,16.0,16.0,5.275106062069114,-15.158221991997266 -130,17.0,14.0,-1.8108011504072024,3.687418931630696 -130,17.0,17.0,4.886487584415919,-9.906177730909668 -130,17.0,18.0,-3.0756864340087167,6.218758799278971 -130,18.0,17.0,-3.0756864340087167,6.218758799278971 -130,18.0,18.0,8.958039375185187,-17.98346468163191 -130,18.0,19.0,-5.88235294117647,11.76470588235294 -130,19.0,9.0,-1.7848303152666305,3.98535828943083 -130,19.0,18.0,-5.88235294117647,11.76470588235294 -130,19.0,19.0,7.6671832564431,-15.75006417178377 -130,20.0,9.0,-5.101853820159654,10.98071411292983 -130,20.0,20.0,21.876495189895888,-45.10843276170355 -130,20.0,21.0,-16.774641369736234,34.127718648773715 -130,21.0,9.0,-2.619319553382597,5.400770303329455 -130,21.0,20.0,-16.774641369736234,34.127718648773715 -130,21.0,21.0,21.93449907537439,-43.48289181517921 -130,21.0,23.0,-2.5405381522555563,3.95440286307604 -130,22.0,14.0,-1.9683489489016612,3.976064876781356 -130,22.0,22.0,3.429754555384988,-6.965303617315433 -130,22.0,23.0,-1.4614056064833263,2.989238740534077 -130,23.0,21.0,-2.5405381522555563,3.95440286307604 -130,23.0,22.0,-1.4614056064833263,2.989238740534077 -130,23.0,23.0,5.311836702613133,-9.188263657315172 -130,23.0,24.0,-1.3098929438742493,2.287622053705056 -130,24.0,23.0,-1.3098929438742493,2.287622053705056 -130,24.0,24.0,4.495715080321987,-7.864978761969621 -130,24.0,25.0,-1.2165301194494855,1.8171440463475024 -130,24.0,26.0,-1.9692920169982515,3.760212661917064 -130,25.0,24.0,-1.2165301194494855,1.8171440463475024 -130,25.0,25.0,1.2165301194494855,-1.8171440463475024 -130,26.0,24.0,-1.9692920169982515,3.760212661917064 -130,26.0,26.0,3.652281470778589,-9.46044252232512 -130,26.0,27.0,0.0,2.608731947574922 -130,26.0,28.0,-0.99553355095268,1.881005840357816 -130,26.0,29.0,-0.6874559028276572,1.293971494797717 -130,27.0,5.0,-4.362844058012917,15.463571542897856 -130,27.0,26.0,0.0,2.608731947574922 -130,27.0,27.0,4.362844058012917,-18.15204256311988 -130,28.0,26.0,-0.99553355095268,1.881005840357816 -130,28.0,28.0,1.9075867579849564,-3.604364401207048 -130,28.0,29.0,-0.9120532070322764,1.7233585608492326 -130,29.0,26.0,-0.6874559028276572,1.293971494797717 -130,29.0,28.0,-0.9120532070322764,1.7233585608492326 -130,29.0,29.0,1.5995091098599337,-3.0173300556469496 -131,0.0,0.0,6.765516048652632,-21.23160167089863 -131,0.0,1.0,-5.224646179885656,15.646726840803398 -131,0.0,2.0,-1.5408698687669766,5.631674830095234 -131,1.0,0.0,-5.224646179885656,15.646726840803398 -131,1.0,1.0,9.75228216552403,-30.648662892676068 -131,1.0,3.0,-1.7055303166990268,5.1973792282565086 -131,1.0,4.0,-1.1359607881738778,4.772479328281356 -131,1.0,5.0,-1.6861448807654689,5.116477495334806 -131,2.0,0.0,-1.5408698687669766,5.631674830095234 -131,2.0,2.0,9.736318911079088,-29.13794745915803 -131,2.0,3.0,-8.19544904231211,23.5308726290628 -131,3.0,1.0,-1.7055303166990268,5.1973792282565086 -131,3.0,2.0,-8.19544904231211,23.5308726290628 -131,3.0,3.0,16.314103089185693,-55.509410535254254 -131,3.0,5.0,-6.413123730174556,22.31120356548123 -131,3.0,11.0,0.0,4.191255364806866 -131,4.0,1.0,-1.1359607881738778,4.772479328281356 -131,4.0,4.0,4.089980824135861,-12.190647245055052 -131,4.0,6.0,-2.954020035961983,7.449267916773697 -131,5.0,1.0,-1.6861448807654689,5.116477495334806 -131,5.0,3.0,-6.413123730174556,22.31120356548123 -131,5.0,5.0,22.341631269034565,-82.8291478657789 -131,5.0,6.0,-3.590210423980992,11.02611441072814 -131,5.0,7.0,-6.289308176100628,22.0125786163522 -131,5.0,8.0,0.0,4.915840805411357 -131,5.0,9.0,0.0,1.8561002591115965 -131,5.0,27.0,-4.362844058012917,15.463571542897856 -131,6.0,4.0,-2.954020035961983,7.449267916773697 -131,6.0,5.0,-3.590210423980992,11.02611441072814 -131,6.0,6.0,6.544230459942975,-18.45668232750184 -131,7.0,5.0,-6.289308176100628,22.0125786163522 -131,7.0,7.0,7.733287237496075,-26.527493274828448 -131,7.0,27.0,-1.4439790613954469,4.540814658476248 -131,8.0,5.0,0.0,4.915840805411357 -131,8.0,8.0,0.0,-18.706293706293707 -131,8.0,9.0,0.0,9.090909090909092 -131,8.0,10.0,0.0,4.807692307692308 -131,9.0,5.0,0.0,1.8561002591115965 -131,9.0,8.0,0.0,9.090909090909092 -131,9.0,9.0,13.462042814524237,-41.3837606675224 -131,9.0,16.0,-3.956039125715353,10.317447719844054 -131,9.0,19.0,-1.7848303152666305,3.98535828943083 -131,9.0,20.0,-5.101853820159654,10.98071411292983 -131,9.0,21.0,-2.619319553382597,5.400770303329455 -131,10.0,8.0,0.0,4.807692307692308 -131,10.0,10.0,0.0,-4.807692307692308 -131,11.0,3.0,0.0,4.191255364806866 -131,11.0,11.0,6.573961583776156,-24.424167659260668 -131,11.0,12.0,0.0,7.142857142857143 -131,11.0,13.0,-1.5265676088395577,3.1734252729654173 -131,11.0,14.0,-3.0953961826564296,6.097275864326261 -131,11.0,15.0,-1.9519977922801688,4.104359379111847 -131,12.0,11.0,0.0,7.142857142857143 -131,12.0,12.0,0.0,-7.142857142857143 -131,13.0,11.0,-1.5265676088395577,3.1734252729654173 -131,13.0,13.0,4.01751987283902,-5.424299332335067 -131,13.0,14.0,-2.4909522639994623,2.250874059369649 -131,14.0,11.0,-3.0953961826564296,6.097275864326261 -131,14.0,13.0,-2.4909522639994623,2.250874059369649 -131,14.0,14.0,9.365498545964757,-16.01163373210796 -131,14.0,17.0,-1.8108011504072024,3.687418931630696 -131,14.0,22.0,-1.9683489489016612,3.976064876781356 -131,15.0,11.0,-1.9519977922801688,4.104359379111847 -131,15.0,15.0,3.271064728633931,-8.94513365126506 -131,15.0,16.0,-1.3190669363537617,4.8407742721532125 -131,16.0,9.0,-3.956039125715353,10.317447719844054 -131,16.0,15.0,-1.3190669363537617,4.8407742721532125 -131,16.0,16.0,5.275106062069114,-15.158221991997266 -131,17.0,14.0,-1.8108011504072024,3.687418931630696 -131,17.0,17.0,4.886487584415919,-9.906177730909668 -131,17.0,18.0,-3.0756864340087167,6.218758799278971 -131,18.0,17.0,-3.0756864340087167,6.218758799278971 -131,18.0,18.0,8.958039375185187,-17.98346468163191 -131,18.0,19.0,-5.88235294117647,11.76470588235294 -131,19.0,9.0,-1.7848303152666305,3.98535828943083 -131,19.0,18.0,-5.88235294117647,11.76470588235294 -131,19.0,19.0,7.6671832564431,-15.75006417178377 -131,20.0,9.0,-5.101853820159654,10.98071411292983 -131,20.0,20.0,21.876495189895888,-45.10843276170355 -131,20.0,21.0,-16.774641369736234,34.127718648773715 -131,21.0,9.0,-2.619319553382597,5.400770303329455 -131,21.0,20.0,-16.774641369736234,34.127718648773715 -131,21.0,21.0,21.93449907537439,-43.48289181517921 -131,21.0,23.0,-2.5405381522555563,3.95440286307604 -131,22.0,14.0,-1.9683489489016612,3.976064876781356 -131,22.0,22.0,3.429754555384988,-6.965303617315433 -131,22.0,23.0,-1.4614056064833263,2.989238740534077 -131,23.0,21.0,-2.5405381522555563,3.95440286307604 -131,23.0,22.0,-1.4614056064833263,2.989238740534077 -131,23.0,23.0,5.311836702613133,-9.188263657315172 -131,23.0,24.0,-1.3098929438742493,2.287622053705056 -131,24.0,23.0,-1.3098929438742493,2.287622053705056 -131,24.0,24.0,4.495715080321987,-7.864978761969621 -131,24.0,25.0,-1.2165301194494855,1.8171440463475024 -131,24.0,26.0,-1.9692920169982515,3.760212661917064 -131,25.0,24.0,-1.2165301194494855,1.8171440463475024 -131,25.0,25.0,1.2165301194494855,-1.8171440463475024 -131,26.0,24.0,-1.9692920169982515,3.760212661917064 -131,26.0,26.0,3.652281470778589,-9.46044252232512 -131,26.0,27.0,0.0,2.608731947574922 -131,26.0,28.0,-0.99553355095268,1.881005840357816 -131,26.0,29.0,-0.6874559028276572,1.293971494797717 -131,27.0,5.0,-4.362844058012917,15.463571542897856 -131,27.0,7.0,-1.4439790613954469,4.540814658476248 -131,27.0,26.0,0.0,2.608731947574922 -131,27.0,27.0,5.806823119408364,-22.67145722159613 -131,28.0,26.0,-0.99553355095268,1.881005840357816 -131,28.0,28.0,1.9075867579849564,-3.604364401207048 -131,28.0,29.0,-0.9120532070322764,1.7233585608492326 -131,29.0,26.0,-0.6874559028276572,1.293971494797717 -131,29.0,28.0,-0.9120532070322764,1.7233585608492326 -131,29.0,29.0,1.5995091098599337,-3.0173300556469496 -132,0.0,0.0,6.765516048652632,-21.23160167089863 -132,0.0,1.0,-5.224646179885656,15.646726840803398 -132,0.0,2.0,-1.5408698687669766,5.631674830095234 -132,1.0,0.0,-5.224646179885656,15.646726840803398 -132,1.0,1.0,9.75228216552403,-30.648662892676068 -132,1.0,3.0,-1.7055303166990268,5.1973792282565086 -132,1.0,4.0,-1.1359607881738778,4.772479328281356 -132,1.0,5.0,-1.6861448807654689,5.116477495334806 -132,2.0,0.0,-1.5408698687669766,5.631674830095234 -132,2.0,2.0,9.736318911079088,-29.13794745915803 -132,2.0,3.0,-8.19544904231211,23.5308726290628 -132,3.0,1.0,-1.7055303166990268,5.1973792282565086 -132,3.0,2.0,-8.19544904231211,23.5308726290628 -132,3.0,3.0,16.314103089185693,-55.509410535254254 -132,3.0,5.0,-6.413123730174556,22.31120356548123 -132,3.0,11.0,0.0,4.191255364806866 -132,4.0,1.0,-1.1359607881738778,4.772479328281356 -132,4.0,4.0,4.089980824135861,-12.190647245055052 -132,4.0,6.0,-2.954020035961983,7.449267916773697 -132,5.0,1.0,-1.6861448807654689,5.116477495334806 -132,5.0,3.0,-6.413123730174556,22.31120356548123 -132,5.0,5.0,22.341631269034565,-82.8291478657789 -132,5.0,6.0,-3.590210423980992,11.02611441072814 -132,5.0,7.0,-6.289308176100628,22.0125786163522 -132,5.0,8.0,0.0,4.915840805411357 -132,5.0,9.0,0.0,1.8561002591115965 -132,5.0,27.0,-4.362844058012917,15.463571542897856 -132,6.0,4.0,-2.954020035961983,7.449267916773697 -132,6.0,5.0,-3.590210423980992,11.02611441072814 -132,6.0,6.0,6.544230459942975,-18.45668232750184 -132,7.0,5.0,-6.289308176100628,22.0125786163522 -132,7.0,7.0,7.733287237496075,-26.527493274828448 -132,7.0,27.0,-1.4439790613954469,4.540814658476248 -132,8.0,5.0,0.0,4.915840805411357 -132,8.0,8.0,0.0,-18.706293706293707 -132,8.0,9.0,0.0,9.090909090909092 -132,8.0,10.0,0.0,4.807692307692308 -132,9.0,5.0,0.0,1.8561002591115965 -132,9.0,8.0,0.0,9.090909090909092 -132,9.0,9.0,13.462042814524237,-41.3837606675224 -132,9.0,16.0,-3.956039125715353,10.317447719844054 -132,9.0,19.0,-1.7848303152666305,3.98535828943083 -132,9.0,20.0,-5.101853820159654,10.98071411292983 -132,9.0,21.0,-2.619319553382597,5.400770303329455 -132,10.0,8.0,0.0,4.807692307692308 -132,10.0,10.0,0.0,-4.807692307692308 -132,11.0,3.0,0.0,4.191255364806866 -132,11.0,11.0,5.047393974936599,-21.25074238629525 -132,11.0,12.0,0.0,7.142857142857143 -132,11.0,14.0,-3.0953961826564296,6.097275864326261 -132,11.0,15.0,-1.9519977922801688,4.104359379111847 -132,12.0,11.0,0.0,7.142857142857143 -132,12.0,12.0,0.0,-7.142857142857143 -132,13.0,13.0,2.4909522639994623,-2.250874059369649 -132,13.0,14.0,-2.4909522639994623,2.250874059369649 -132,14.0,11.0,-3.0953961826564296,6.097275864326261 -132,14.0,13.0,-2.4909522639994623,2.250874059369649 -132,14.0,14.0,9.365498545964757,-16.01163373210796 -132,14.0,17.0,-1.8108011504072024,3.687418931630696 -132,14.0,22.0,-1.9683489489016612,3.976064876781356 -132,15.0,11.0,-1.9519977922801688,4.104359379111847 -132,15.0,15.0,3.271064728633931,-8.94513365126506 -132,15.0,16.0,-1.3190669363537617,4.8407742721532125 -132,16.0,9.0,-3.956039125715353,10.317447719844054 -132,16.0,15.0,-1.3190669363537617,4.8407742721532125 -132,16.0,16.0,5.275106062069114,-15.158221991997266 -132,17.0,14.0,-1.8108011504072024,3.687418931630696 -132,17.0,17.0,4.886487584415919,-9.906177730909668 -132,17.0,18.0,-3.0756864340087167,6.218758799278971 -132,18.0,17.0,-3.0756864340087167,6.218758799278971 -132,18.0,18.0,8.958039375185187,-17.98346468163191 -132,18.0,19.0,-5.88235294117647,11.76470588235294 -132,19.0,9.0,-1.7848303152666305,3.98535828943083 -132,19.0,18.0,-5.88235294117647,11.76470588235294 -132,19.0,19.0,7.6671832564431,-15.75006417178377 -132,20.0,9.0,-5.101853820159654,10.98071411292983 -132,20.0,20.0,21.876495189895888,-45.10843276170355 -132,20.0,21.0,-16.774641369736234,34.127718648773715 -132,21.0,9.0,-2.619319553382597,5.400770303329455 -132,21.0,20.0,-16.774641369736234,34.127718648773715 -132,21.0,21.0,21.93449907537439,-43.48289181517921 -132,21.0,23.0,-2.5405381522555563,3.95440286307604 -132,22.0,14.0,-1.9683489489016612,3.976064876781356 -132,22.0,22.0,3.429754555384988,-6.965303617315433 -132,22.0,23.0,-1.4614056064833263,2.989238740534077 -132,23.0,21.0,-2.5405381522555563,3.95440286307604 -132,23.0,22.0,-1.4614056064833263,2.989238740534077 -132,23.0,23.0,5.311836702613133,-9.188263657315172 -132,23.0,24.0,-1.3098929438742493,2.287622053705056 -132,24.0,23.0,-1.3098929438742493,2.287622053705056 -132,24.0,24.0,4.495715080321987,-7.864978761969621 -132,24.0,25.0,-1.2165301194494855,1.8171440463475024 -132,24.0,26.0,-1.9692920169982515,3.760212661917064 -132,25.0,24.0,-1.2165301194494855,1.8171440463475024 -132,25.0,25.0,1.2165301194494855,-1.8171440463475024 -132,26.0,24.0,-1.9692920169982515,3.760212661917064 -132,26.0,26.0,3.652281470778589,-9.46044252232512 -132,26.0,27.0,0.0,2.608731947574922 -132,26.0,28.0,-0.99553355095268,1.881005840357816 -132,26.0,29.0,-0.6874559028276572,1.293971494797717 -132,27.0,5.0,-4.362844058012917,15.463571542897856 -132,27.0,7.0,-1.4439790613954469,4.540814658476248 -132,27.0,26.0,0.0,2.608731947574922 -132,27.0,27.0,5.806823119408364,-22.67145722159613 -132,28.0,26.0,-0.99553355095268,1.881005840357816 -132,28.0,28.0,1.9075867579849564,-3.604364401207048 -132,28.0,29.0,-0.9120532070322764,1.7233585608492326 -132,29.0,26.0,-0.6874559028276572,1.293971494797717 -132,29.0,28.0,-0.9120532070322764,1.7233585608492326 -132,29.0,29.0,1.5995091098599337,-3.0173300556469496 -133,0.0,0.0,6.765516048652632,-21.23160167089863 -133,0.0,1.0,-5.224646179885656,15.646726840803398 -133,0.0,2.0,-1.5408698687669766,5.631674830095234 -133,1.0,0.0,-5.224646179885656,15.646726840803398 -133,1.0,1.0,9.75228216552403,-30.648662892676068 -133,1.0,3.0,-1.7055303166990268,5.1973792282565086 -133,1.0,4.0,-1.1359607881738778,4.772479328281356 -133,1.0,5.0,-1.6861448807654689,5.116477495334806 -133,2.0,0.0,-1.5408698687669766,5.631674830095234 -133,2.0,2.0,9.736318911079088,-29.13794745915803 -133,2.0,3.0,-8.19544904231211,23.5308726290628 -133,3.0,1.0,-1.7055303166990268,5.1973792282565086 -133,3.0,2.0,-8.19544904231211,23.5308726290628 -133,3.0,3.0,16.314103089185693,-55.509410535254254 -133,3.0,5.0,-6.413123730174556,22.31120356548123 -133,3.0,11.0,0.0,4.191255364806866 -133,4.0,1.0,-1.1359607881738778,4.772479328281356 -133,4.0,4.0,4.089980824135861,-12.190647245055052 -133,4.0,6.0,-2.954020035961983,7.449267916773697 -133,5.0,1.0,-1.6861448807654689,5.116477495334806 -133,5.0,3.0,-6.413123730174556,22.31120356548123 -133,5.0,5.0,22.341631269034565,-82.8291478657789 -133,5.0,6.0,-3.590210423980992,11.02611441072814 -133,5.0,7.0,-6.289308176100628,22.0125786163522 -133,5.0,8.0,0.0,4.915840805411357 -133,5.0,9.0,0.0,1.8561002591115965 -133,5.0,27.0,-4.362844058012917,15.463571542897856 -133,6.0,4.0,-2.954020035961983,7.449267916773697 -133,6.0,5.0,-3.590210423980992,11.02611441072814 -133,6.0,6.0,6.544230459942975,-18.45668232750184 -133,7.0,5.0,-6.289308176100628,22.0125786163522 -133,7.0,7.0,7.733287237496075,-26.527493274828448 -133,7.0,27.0,-1.4439790613954469,4.540814658476248 -133,8.0,5.0,0.0,4.915840805411357 -133,8.0,8.0,0.0,-18.706293706293707 -133,8.0,9.0,0.0,9.090909090909092 -133,8.0,10.0,0.0,4.807692307692308 -133,9.0,5.0,0.0,1.8561002591115965 -133,9.0,8.0,0.0,9.090909090909092 -133,9.0,9.0,13.462042814524237,-41.3837606675224 -133,9.0,16.0,-3.956039125715353,10.317447719844054 -133,9.0,19.0,-1.7848303152666305,3.98535828943083 -133,9.0,20.0,-5.101853820159654,10.98071411292983 -133,9.0,21.0,-2.619319553382597,5.400770303329455 -133,10.0,8.0,0.0,4.807692307692308 -133,10.0,10.0,0.0,-4.807692307692308 -133,11.0,3.0,0.0,4.191255364806866 -133,11.0,11.0,6.573961583776156,-24.424167659260668 -133,11.0,12.0,0.0,7.142857142857143 -133,11.0,13.0,-1.5265676088395577,3.1734252729654173 -133,11.0,14.0,-3.0953961826564296,6.097275864326261 -133,11.0,15.0,-1.9519977922801688,4.104359379111847 -133,12.0,11.0,0.0,7.142857142857143 -133,12.0,12.0,0.0,-7.142857142857143 -133,13.0,11.0,-1.5265676088395577,3.1734252729654173 -133,13.0,13.0,4.01751987283902,-5.424299332335067 -133,13.0,14.0,-2.4909522639994623,2.250874059369649 -133,14.0,11.0,-3.0953961826564296,6.097275864326261 -133,14.0,13.0,-2.4909522639994623,2.250874059369649 -133,14.0,14.0,9.365498545964757,-16.01163373210796 -133,14.0,17.0,-1.8108011504072024,3.687418931630696 -133,14.0,22.0,-1.9683489489016612,3.976064876781356 -133,15.0,11.0,-1.9519977922801688,4.104359379111847 -133,15.0,15.0,3.271064728633931,-8.94513365126506 -133,15.0,16.0,-1.3190669363537617,4.8407742721532125 -133,16.0,9.0,-3.956039125715353,10.317447719844054 -133,16.0,15.0,-1.3190669363537617,4.8407742721532125 -133,16.0,16.0,5.275106062069114,-15.158221991997266 -133,17.0,14.0,-1.8108011504072024,3.687418931630696 -133,17.0,17.0,4.886487584415919,-9.906177730909668 -133,17.0,18.0,-3.0756864340087167,6.218758799278971 -133,18.0,17.0,-3.0756864340087167,6.218758799278971 -133,18.0,18.0,8.958039375185187,-17.98346468163191 -133,18.0,19.0,-5.88235294117647,11.76470588235294 -133,19.0,9.0,-1.7848303152666305,3.98535828943083 -133,19.0,18.0,-5.88235294117647,11.76470588235294 -133,19.0,19.0,7.6671832564431,-15.75006417178377 -133,20.0,9.0,-5.101853820159654,10.98071411292983 -133,20.0,20.0,21.876495189895888,-45.10843276170355 -133,20.0,21.0,-16.774641369736234,34.127718648773715 -133,21.0,9.0,-2.619319553382597,5.400770303329455 -133,21.0,20.0,-16.774641369736234,34.127718648773715 -133,21.0,21.0,21.93449907537439,-43.48289181517921 -133,21.0,23.0,-2.5405381522555563,3.95440286307604 -133,22.0,14.0,-1.9683489489016612,3.976064876781356 -133,22.0,22.0,3.429754555384988,-6.965303617315433 -133,22.0,23.0,-1.4614056064833263,2.989238740534077 -133,23.0,21.0,-2.5405381522555563,3.95440286307604 -133,23.0,22.0,-1.4614056064833263,2.989238740534077 -133,23.0,23.0,5.311836702613133,-9.188263657315172 -133,23.0,24.0,-1.3098929438742493,2.287622053705056 -133,24.0,23.0,-1.3098929438742493,2.287622053705056 -133,24.0,24.0,4.495715080321987,-7.864978761969621 -133,24.0,25.0,-1.2165301194494855,1.8171440463475024 -133,24.0,26.0,-1.9692920169982515,3.760212661917064 -133,25.0,24.0,-1.2165301194494855,1.8171440463475024 -133,25.0,25.0,1.2165301194494855,-1.8171440463475024 -133,26.0,24.0,-1.9692920169982515,3.760212661917064 -133,26.0,26.0,3.652281470778589,-9.46044252232512 -133,26.0,27.0,0.0,2.608731947574922 -133,26.0,28.0,-0.99553355095268,1.881005840357816 -133,26.0,29.0,-0.6874559028276572,1.293971494797717 -133,27.0,5.0,-4.362844058012917,15.463571542897856 -133,27.0,7.0,-1.4439790613954469,4.540814658476248 -133,27.0,26.0,0.0,2.608731947574922 -133,27.0,27.0,5.806823119408364,-22.67145722159613 -133,28.0,26.0,-0.99553355095268,1.881005840357816 -133,28.0,28.0,1.9075867579849564,-3.604364401207048 -133,28.0,29.0,-0.9120532070322764,1.7233585608492326 -133,29.0,26.0,-0.6874559028276572,1.293971494797717 -133,29.0,28.0,-0.9120532070322764,1.7233585608492326 -133,29.0,29.0,1.5995091098599337,-3.0173300556469496 -134,0.0,0.0,6.765516048652632,-21.23160167089863 -134,0.0,1.0,-5.224646179885656,15.646726840803398 -134,0.0,2.0,-1.5408698687669766,5.631674830095234 -134,1.0,0.0,-5.224646179885656,15.646726840803398 -134,1.0,1.0,9.75228216552403,-30.648662892676068 -134,1.0,3.0,-1.7055303166990268,5.1973792282565086 -134,1.0,4.0,-1.1359607881738778,4.772479328281356 -134,1.0,5.0,-1.6861448807654689,5.116477495334806 -134,2.0,0.0,-1.5408698687669766,5.631674830095234 -134,2.0,2.0,9.736318911079088,-29.13794745915803 -134,2.0,3.0,-8.19544904231211,23.5308726290628 -134,3.0,1.0,-1.7055303166990268,5.1973792282565086 -134,3.0,2.0,-8.19544904231211,23.5308726290628 -134,3.0,3.0,16.314103089185693,-55.509410535254254 -134,3.0,5.0,-6.413123730174556,22.31120356548123 -134,3.0,11.0,0.0,4.191255364806866 -134,4.0,1.0,-1.1359607881738778,4.772479328281356 -134,4.0,4.0,4.089980824135861,-12.190647245055052 -134,4.0,6.0,-2.954020035961983,7.449267916773697 -134,5.0,1.0,-1.6861448807654689,5.116477495334806 -134,5.0,3.0,-6.413123730174556,22.31120356548123 -134,5.0,5.0,22.341631269034565,-82.8291478657789 -134,5.0,6.0,-3.590210423980992,11.02611441072814 -134,5.0,7.0,-6.289308176100628,22.0125786163522 -134,5.0,8.0,0.0,4.915840805411357 -134,5.0,9.0,0.0,1.8561002591115965 -134,5.0,27.0,-4.362844058012917,15.463571542897856 -134,6.0,4.0,-2.954020035961983,7.449267916773697 -134,6.0,5.0,-3.590210423980992,11.02611441072814 -134,6.0,6.0,6.544230459942975,-18.45668232750184 -134,7.0,5.0,-6.289308176100628,22.0125786163522 -134,7.0,7.0,7.733287237496075,-26.527493274828448 -134,7.0,27.0,-1.4439790613954469,4.540814658476248 -134,8.0,5.0,0.0,4.915840805411357 -134,8.0,8.0,0.0,-18.706293706293707 -134,8.0,9.0,0.0,9.090909090909092 -134,8.0,10.0,0.0,4.807692307692308 -134,9.0,5.0,0.0,1.8561002591115965 -134,9.0,8.0,0.0,9.090909090909092 -134,9.0,9.0,11.677212499257603,-37.39840237809157 -134,9.0,16.0,-3.956039125715353,10.317447719844054 -134,9.0,20.0,-5.101853820159654,10.98071411292983 -134,9.0,21.0,-2.619319553382597,5.400770303329455 -134,10.0,8.0,0.0,4.807692307692308 -134,10.0,10.0,0.0,-4.807692307692308 -134,11.0,3.0,0.0,4.191255364806866 -134,11.0,11.0,6.573961583776156,-24.424167659260668 -134,11.0,12.0,0.0,7.142857142857143 -134,11.0,13.0,-1.5265676088395577,3.1734252729654173 -134,11.0,14.0,-3.0953961826564296,6.097275864326261 -134,11.0,15.0,-1.9519977922801688,4.104359379111847 -134,12.0,11.0,0.0,7.142857142857143 -134,12.0,12.0,0.0,-7.142857142857143 -134,13.0,11.0,-1.5265676088395577,3.1734252729654173 -134,13.0,13.0,4.01751987283902,-5.424299332335067 -134,13.0,14.0,-2.4909522639994623,2.250874059369649 -134,14.0,11.0,-3.0953961826564296,6.097275864326261 -134,14.0,13.0,-2.4909522639994623,2.250874059369649 -134,14.0,14.0,9.365498545964757,-16.01163373210796 -134,14.0,17.0,-1.8108011504072024,3.687418931630696 -134,14.0,22.0,-1.9683489489016612,3.976064876781356 -134,15.0,11.0,-1.9519977922801688,4.104359379111847 -134,15.0,15.0,3.271064728633931,-8.94513365126506 -134,15.0,16.0,-1.3190669363537617,4.8407742721532125 -134,16.0,9.0,-3.956039125715353,10.317447719844054 -134,16.0,15.0,-1.3190669363537617,4.8407742721532125 -134,16.0,16.0,5.275106062069114,-15.158221991997266 -134,17.0,14.0,-1.8108011504072024,3.687418931630696 -134,17.0,17.0,4.886487584415919,-9.906177730909668 -134,17.0,18.0,-3.0756864340087167,6.218758799278971 -134,18.0,17.0,-3.0756864340087167,6.218758799278971 -134,18.0,18.0,8.958039375185187,-17.98346468163191 -134,18.0,19.0,-5.88235294117647,11.76470588235294 -134,19.0,18.0,-5.88235294117647,11.76470588235294 -134,19.0,19.0,5.88235294117647,-11.76470588235294 -134,20.0,9.0,-5.101853820159654,10.98071411292983 -134,20.0,20.0,21.876495189895888,-45.10843276170355 -134,20.0,21.0,-16.774641369736234,34.127718648773715 -134,21.0,9.0,-2.619319553382597,5.400770303329455 -134,21.0,20.0,-16.774641369736234,34.127718648773715 -134,21.0,21.0,21.93449907537439,-43.48289181517921 -134,21.0,23.0,-2.5405381522555563,3.95440286307604 -134,22.0,14.0,-1.9683489489016612,3.976064876781356 -134,22.0,22.0,3.429754555384988,-6.965303617315433 -134,22.0,23.0,-1.4614056064833263,2.989238740534077 -134,23.0,21.0,-2.5405381522555563,3.95440286307604 -134,23.0,22.0,-1.4614056064833263,2.989238740534077 -134,23.0,23.0,5.311836702613133,-9.188263657315172 -134,23.0,24.0,-1.3098929438742493,2.287622053705056 -134,24.0,23.0,-1.3098929438742493,2.287622053705056 -134,24.0,24.0,4.495715080321987,-7.864978761969621 -134,24.0,25.0,-1.2165301194494855,1.8171440463475024 -134,24.0,26.0,-1.9692920169982515,3.760212661917064 -134,25.0,24.0,-1.2165301194494855,1.8171440463475024 -134,25.0,25.0,1.2165301194494855,-1.8171440463475024 -134,26.0,24.0,-1.9692920169982515,3.760212661917064 -134,26.0,26.0,2.656747919825909,-7.579436681967305 -134,26.0,27.0,0.0,2.608731947574922 -134,26.0,29.0,-0.6874559028276572,1.293971494797717 -134,27.0,5.0,-4.362844058012917,15.463571542897856 -134,27.0,7.0,-1.4439790613954469,4.540814658476248 -134,27.0,26.0,0.0,2.608731947574922 -134,27.0,27.0,5.806823119408364,-22.67145722159613 -134,28.0,28.0,0.9120532070322764,-1.7233585608492326 -134,28.0,29.0,-0.9120532070322764,1.7233585608492326 -134,29.0,26.0,-0.6874559028276572,1.293971494797717 -134,29.0,28.0,-0.9120532070322764,1.7233585608492326 -134,29.0,29.0,1.5995091098599337,-3.0173300556469496 -135,0.0,0.0,6.765516048652632,-21.23160167089863 -135,0.0,1.0,-5.224646179885656,15.646726840803398 -135,0.0,2.0,-1.5408698687669766,5.631674830095234 -135,1.0,0.0,-5.224646179885656,15.646726840803398 -135,1.0,1.0,9.75228216552403,-30.648662892676068 -135,1.0,3.0,-1.7055303166990268,5.1973792282565086 -135,1.0,4.0,-1.1359607881738778,4.772479328281356 -135,1.0,5.0,-1.6861448807654689,5.116477495334806 -135,2.0,0.0,-1.5408698687669766,5.631674830095234 -135,2.0,2.0,9.736318911079088,-29.13794745915803 -135,2.0,3.0,-8.19544904231211,23.5308726290628 -135,3.0,1.0,-1.7055303166990268,5.1973792282565086 -135,3.0,2.0,-8.19544904231211,23.5308726290628 -135,3.0,3.0,16.314103089185693,-55.509410535254254 -135,3.0,5.0,-6.413123730174556,22.31120356548123 -135,3.0,11.0,0.0,4.191255364806866 -135,4.0,1.0,-1.1359607881738778,4.772479328281356 -135,4.0,4.0,1.1359607881738778,-4.751579328281355 -135,5.0,1.0,-1.6861448807654689,5.116477495334806 -135,5.0,3.0,-6.413123730174556,22.31120356548123 -135,5.0,5.0,22.341631269034565,-82.8291478657789 -135,5.0,6.0,-3.590210423980992,11.02611441072814 -135,5.0,7.0,-6.289308176100628,22.0125786163522 -135,5.0,8.0,0.0,4.915840805411357 -135,5.0,9.0,0.0,1.8561002591115965 -135,5.0,27.0,-4.362844058012917,15.463571542897856 -135,6.0,5.0,-3.590210423980992,11.02611441072814 -135,6.0,6.0,3.590210423980992,-11.01761441072814 -135,7.0,5.0,-6.289308176100628,22.0125786163522 -135,7.0,7.0,7.733287237496075,-26.527493274828448 -135,7.0,27.0,-1.4439790613954469,4.540814658476248 -135,8.0,5.0,0.0,4.915840805411357 -135,8.0,8.0,0.0,-18.706293706293707 -135,8.0,9.0,0.0,9.090909090909092 -135,8.0,10.0,0.0,4.807692307692308 -135,9.0,5.0,0.0,1.8561002591115965 -135,9.0,8.0,0.0,9.090909090909092 -135,9.0,9.0,13.462042814524237,-41.3837606675224 -135,9.0,16.0,-3.956039125715353,10.317447719844054 -135,9.0,19.0,-1.7848303152666305,3.98535828943083 -135,9.0,20.0,-5.101853820159654,10.98071411292983 -135,9.0,21.0,-2.619319553382597,5.400770303329455 -135,10.0,8.0,0.0,4.807692307692308 -135,10.0,10.0,0.0,-4.807692307692308 -135,11.0,3.0,0.0,4.191255364806866 -135,11.0,11.0,6.573961583776156,-24.424167659260668 -135,11.0,12.0,0.0,7.142857142857143 -135,11.0,13.0,-1.5265676088395577,3.1734252729654173 -135,11.0,14.0,-3.0953961826564296,6.097275864326261 -135,11.0,15.0,-1.9519977922801688,4.104359379111847 -135,12.0,11.0,0.0,7.142857142857143 -135,12.0,12.0,0.0,-7.142857142857143 -135,13.0,11.0,-1.5265676088395577,3.1734252729654173 -135,13.0,13.0,4.01751987283902,-5.424299332335067 -135,13.0,14.0,-2.4909522639994623,2.250874059369649 -135,14.0,11.0,-3.0953961826564296,6.097275864326261 -135,14.0,13.0,-2.4909522639994623,2.250874059369649 -135,14.0,14.0,9.365498545964757,-16.01163373210796 -135,14.0,17.0,-1.8108011504072024,3.687418931630696 -135,14.0,22.0,-1.9683489489016612,3.976064876781356 -135,15.0,11.0,-1.9519977922801688,4.104359379111847 -135,15.0,15.0,1.9519977922801688,-4.104359379111847 -135,16.0,9.0,-3.956039125715353,10.317447719844054 -135,16.0,16.0,3.956039125715353,-10.317447719844054 -135,17.0,14.0,-1.8108011504072024,3.687418931630696 -135,17.0,17.0,4.886487584415919,-9.906177730909668 -135,17.0,18.0,-3.0756864340087167,6.218758799278971 -135,18.0,17.0,-3.0756864340087167,6.218758799278971 -135,18.0,18.0,8.958039375185187,-17.98346468163191 -135,18.0,19.0,-5.88235294117647,11.76470588235294 -135,19.0,9.0,-1.7848303152666305,3.98535828943083 -135,19.0,18.0,-5.88235294117647,11.76470588235294 -135,19.0,19.0,7.6671832564431,-15.75006417178377 -135,20.0,9.0,-5.101853820159654,10.98071411292983 -135,20.0,20.0,21.876495189895888,-45.10843276170355 -135,20.0,21.0,-16.774641369736234,34.127718648773715 -135,21.0,9.0,-2.619319553382597,5.400770303329455 -135,21.0,20.0,-16.774641369736234,34.127718648773715 -135,21.0,21.0,21.93449907537439,-43.48289181517921 -135,21.0,23.0,-2.5405381522555563,3.95440286307604 -135,22.0,14.0,-1.9683489489016612,3.976064876781356 -135,22.0,22.0,3.429754555384988,-6.965303617315433 -135,22.0,23.0,-1.4614056064833263,2.989238740534077 -135,23.0,21.0,-2.5405381522555563,3.95440286307604 -135,23.0,22.0,-1.4614056064833263,2.989238740534077 -135,23.0,23.0,5.311836702613133,-9.188263657315172 -135,23.0,24.0,-1.3098929438742493,2.287622053705056 -135,24.0,23.0,-1.3098929438742493,2.287622053705056 -135,24.0,24.0,4.495715080321987,-7.864978761969621 -135,24.0,25.0,-1.2165301194494855,1.8171440463475024 -135,24.0,26.0,-1.9692920169982515,3.760212661917064 -135,25.0,24.0,-1.2165301194494855,1.8171440463475024 -135,25.0,25.0,1.2165301194494855,-1.8171440463475024 -135,26.0,24.0,-1.9692920169982515,3.760212661917064 -135,26.0,26.0,3.652281470778589,-9.46044252232512 -135,26.0,27.0,0.0,2.608731947574922 -135,26.0,28.0,-0.99553355095268,1.881005840357816 -135,26.0,29.0,-0.6874559028276572,1.293971494797717 -135,27.0,5.0,-4.362844058012917,15.463571542897856 -135,27.0,7.0,-1.4439790613954469,4.540814658476248 -135,27.0,26.0,0.0,2.608731947574922 -135,27.0,27.0,5.806823119408364,-22.67145722159613 -135,28.0,26.0,-0.99553355095268,1.881005840357816 -135,28.0,28.0,1.9075867579849564,-3.604364401207048 -135,28.0,29.0,-0.9120532070322764,1.7233585608492326 -135,29.0,26.0,-0.6874559028276572,1.293971494797717 -135,29.0,28.0,-0.9120532070322764,1.7233585608492326 -135,29.0,29.0,1.5995091098599337,-3.0173300556469496 -136,0.0,0.0,6.765516048652632,-21.23160167089863 -136,0.0,1.0,-5.224646179885656,15.646726840803398 -136,0.0,2.0,-1.5408698687669766,5.631674830095234 -136,1.0,0.0,-5.224646179885656,15.646726840803398 -136,1.0,1.0,9.75228216552403,-30.648662892676068 -136,1.0,3.0,-1.7055303166990268,5.1973792282565086 -136,1.0,4.0,-1.1359607881738778,4.772479328281356 -136,1.0,5.0,-1.6861448807654689,5.116477495334806 -136,2.0,0.0,-1.5408698687669766,5.631674830095234 -136,2.0,2.0,9.736318911079088,-29.13794745915803 -136,2.0,3.0,-8.19544904231211,23.5308726290628 -136,3.0,1.0,-1.7055303166990268,5.1973792282565086 -136,3.0,2.0,-8.19544904231211,23.5308726290628 -136,3.0,3.0,16.314103089185693,-55.509410535254254 -136,3.0,5.0,-6.413123730174556,22.31120356548123 -136,3.0,11.0,0.0,4.191255364806866 -136,4.0,1.0,-1.1359607881738778,4.772479328281356 -136,4.0,4.0,4.089980824135861,-12.190647245055052 -136,4.0,6.0,-2.954020035961983,7.449267916773697 -136,5.0,1.0,-1.6861448807654689,5.116477495334806 -136,5.0,3.0,-6.413123730174556,22.31120356548123 -136,5.0,5.0,18.75142084505357,-71.81153345505078 -136,5.0,7.0,-6.289308176100628,22.0125786163522 -136,5.0,8.0,0.0,4.915840805411357 -136,5.0,9.0,0.0,1.8561002591115965 -136,5.0,27.0,-4.362844058012917,15.463571542897856 -136,6.0,4.0,-2.954020035961983,7.449267916773697 -136,6.0,6.0,2.954020035961983,-7.439067916773697 -136,7.0,5.0,-6.289308176100628,22.0125786163522 -136,7.0,7.0,7.733287237496075,-26.527493274828448 -136,7.0,27.0,-1.4439790613954469,4.540814658476248 -136,8.0,5.0,0.0,4.915840805411357 -136,8.0,8.0,0.0,-18.706293706293707 -136,8.0,9.0,0.0,9.090909090909092 -136,8.0,10.0,0.0,4.807692307692308 -136,9.0,5.0,0.0,1.8561002591115965 -136,9.0,8.0,0.0,9.090909090909092 -136,9.0,9.0,10.842723261141638,-35.98299036419294 -136,9.0,16.0,-3.956039125715353,10.317447719844054 -136,9.0,19.0,-1.7848303152666305,3.98535828943083 -136,9.0,20.0,-5.101853820159654,10.98071411292983 -136,10.0,8.0,0.0,4.807692307692308 -136,10.0,10.0,0.0,-4.807692307692308 -136,11.0,3.0,0.0,4.191255364806866 -136,11.0,11.0,6.573961583776156,-24.424167659260668 -136,11.0,12.0,0.0,7.142857142857143 -136,11.0,13.0,-1.5265676088395577,3.1734252729654173 -136,11.0,14.0,-3.0953961826564296,6.097275864326261 -136,11.0,15.0,-1.9519977922801688,4.104359379111847 -136,12.0,11.0,0.0,7.142857142857143 -136,12.0,12.0,0.0,-7.142857142857143 -136,13.0,11.0,-1.5265676088395577,3.1734252729654173 -136,13.0,13.0,4.01751987283902,-5.424299332335067 -136,13.0,14.0,-2.4909522639994623,2.250874059369649 -136,14.0,11.0,-3.0953961826564296,6.097275864326261 -136,14.0,13.0,-2.4909522639994623,2.250874059369649 -136,14.0,14.0,9.365498545964757,-16.01163373210796 -136,14.0,17.0,-1.8108011504072024,3.687418931630696 -136,14.0,22.0,-1.9683489489016612,3.976064876781356 -136,15.0,11.0,-1.9519977922801688,4.104359379111847 -136,15.0,15.0,1.9519977922801688,-4.104359379111847 -136,16.0,9.0,-3.956039125715353,10.317447719844054 -136,16.0,16.0,3.956039125715353,-10.317447719844054 -136,17.0,14.0,-1.8108011504072024,3.687418931630696 -136,17.0,17.0,4.886487584415919,-9.906177730909668 -136,17.0,18.0,-3.0756864340087167,6.218758799278971 -136,18.0,17.0,-3.0756864340087167,6.218758799278971 -136,18.0,18.0,8.958039375185187,-17.98346468163191 -136,18.0,19.0,-5.88235294117647,11.76470588235294 -136,19.0,9.0,-1.7848303152666305,3.98535828943083 -136,19.0,18.0,-5.88235294117647,11.76470588235294 -136,19.0,19.0,7.6671832564431,-15.75006417178377 -136,20.0,9.0,-5.101853820159654,10.98071411292983 -136,20.0,20.0,21.876495189895888,-45.10843276170355 -136,20.0,21.0,-16.774641369736234,34.127718648773715 -136,21.0,20.0,-16.774641369736234,34.127718648773715 -136,21.0,21.0,19.31517952199179,-38.08212151184976 -136,21.0,23.0,-2.5405381522555563,3.95440286307604 -136,22.0,14.0,-1.9683489489016612,3.976064876781356 -136,22.0,22.0,3.429754555384988,-6.965303617315433 -136,22.0,23.0,-1.4614056064833263,2.989238740534077 -136,23.0,21.0,-2.5405381522555563,3.95440286307604 -136,23.0,22.0,-1.4614056064833263,2.989238740534077 -136,23.0,23.0,5.311836702613133,-9.188263657315172 -136,23.0,24.0,-1.3098929438742493,2.287622053705056 -136,24.0,23.0,-1.3098929438742493,2.287622053705056 -136,24.0,24.0,4.495715080321987,-7.864978761969621 -136,24.0,25.0,-1.2165301194494855,1.8171440463475024 -136,24.0,26.0,-1.9692920169982515,3.760212661917064 -136,25.0,24.0,-1.2165301194494855,1.8171440463475024 -136,25.0,25.0,1.2165301194494855,-1.8171440463475024 -136,26.0,24.0,-1.9692920169982515,3.760212661917064 -136,26.0,26.0,3.652281470778589,-9.46044252232512 -136,26.0,27.0,0.0,2.608731947574922 -136,26.0,28.0,-0.99553355095268,1.881005840357816 -136,26.0,29.0,-0.6874559028276572,1.293971494797717 -136,27.0,5.0,-4.362844058012917,15.463571542897856 -136,27.0,7.0,-1.4439790613954469,4.540814658476248 -136,27.0,26.0,0.0,2.608731947574922 -136,27.0,27.0,5.806823119408364,-22.67145722159613 -136,28.0,26.0,-0.99553355095268,1.881005840357816 -136,28.0,28.0,1.9075867579849564,-3.604364401207048 -136,28.0,29.0,-0.9120532070322764,1.7233585608492326 -136,29.0,26.0,-0.6874559028276572,1.293971494797717 -136,29.0,28.0,-0.9120532070322764,1.7233585608492326 -136,29.0,29.0,1.5995091098599337,-3.0173300556469496 -137,0.0,0.0,6.765516048652632,-21.23160167089863 -137,0.0,1.0,-5.224646179885656,15.646726840803398 -137,0.0,2.0,-1.5408698687669766,5.631674830095234 -137,1.0,0.0,-5.224646179885656,15.646726840803398 -137,1.0,1.0,9.75228216552403,-30.648662892676068 -137,1.0,3.0,-1.7055303166990268,5.1973792282565086 -137,1.0,4.0,-1.1359607881738778,4.772479328281356 -137,1.0,5.0,-1.6861448807654689,5.116477495334806 -137,2.0,0.0,-1.5408698687669766,5.631674830095234 -137,2.0,2.0,9.736318911079088,-29.13794745915803 -137,2.0,3.0,-8.19544904231211,23.5308726290628 -137,3.0,1.0,-1.7055303166990268,5.1973792282565086 -137,3.0,2.0,-8.19544904231211,23.5308726290628 -137,3.0,3.0,16.314103089185693,-55.509410535254254 -137,3.0,5.0,-6.413123730174556,22.31120356548123 -137,3.0,11.0,0.0,4.191255364806866 -137,4.0,1.0,-1.1359607881738778,4.772479328281356 -137,4.0,4.0,4.089980824135861,-12.190647245055052 -137,4.0,6.0,-2.954020035961983,7.449267916773697 -137,5.0,1.0,-1.6861448807654689,5.116477495334806 -137,5.0,3.0,-6.413123730174556,22.31120356548123 -137,5.0,5.0,22.341631269034565,-82.8291478657789 -137,5.0,6.0,-3.590210423980992,11.02611441072814 -137,5.0,7.0,-6.289308176100628,22.0125786163522 -137,5.0,8.0,0.0,4.915840805411357 -137,5.0,9.0,0.0,1.8561002591115965 -137,5.0,27.0,-4.362844058012917,15.463571542897856 -137,6.0,4.0,-2.954020035961983,7.449267916773697 -137,6.0,5.0,-3.590210423980992,11.02611441072814 -137,6.0,6.0,6.544230459942975,-18.45668232750184 -137,7.0,5.0,-6.289308176100628,22.0125786163522 -137,7.0,7.0,7.733287237496075,-26.527493274828448 -137,7.0,27.0,-1.4439790613954469,4.540814658476248 -137,8.0,5.0,0.0,4.915840805411357 -137,8.0,8.0,0.0,-9.615384615384617 -137,8.0,10.0,0.0,4.807692307692308 -137,9.0,5.0,0.0,1.8561002591115965 -137,9.0,9.0,13.462042814524237,-32.29285157661331 -137,9.0,16.0,-3.956039125715353,10.317447719844054 -137,9.0,19.0,-1.7848303152666305,3.98535828943083 -137,9.0,20.0,-5.101853820159654,10.98071411292983 -137,9.0,21.0,-2.619319553382597,5.400770303329455 -137,10.0,8.0,0.0,4.807692307692308 -137,10.0,10.0,0.0,-4.807692307692308 -137,11.0,3.0,0.0,4.191255364806866 -137,11.0,11.0,6.573961583776156,-24.424167659260668 -137,11.0,12.0,0.0,7.142857142857143 -137,11.0,13.0,-1.5265676088395577,3.1734252729654173 -137,11.0,14.0,-3.0953961826564296,6.097275864326261 -137,11.0,15.0,-1.9519977922801688,4.104359379111847 -137,12.0,11.0,0.0,7.142857142857143 -137,12.0,12.0,0.0,-7.142857142857143 -137,13.0,11.0,-1.5265676088395577,3.1734252729654173 -137,13.0,13.0,4.01751987283902,-5.424299332335067 -137,13.0,14.0,-2.4909522639994623,2.250874059369649 -137,14.0,11.0,-3.0953961826564296,6.097275864326261 -137,14.0,13.0,-2.4909522639994623,2.250874059369649 -137,14.0,14.0,9.365498545964757,-16.01163373210796 -137,14.0,17.0,-1.8108011504072024,3.687418931630696 -137,14.0,22.0,-1.9683489489016612,3.976064876781356 -137,15.0,11.0,-1.9519977922801688,4.104359379111847 -137,15.0,15.0,1.9519977922801688,-4.104359379111847 -137,16.0,9.0,-3.956039125715353,10.317447719844054 -137,16.0,16.0,3.956039125715353,-10.317447719844054 -137,17.0,14.0,-1.8108011504072024,3.687418931630696 -137,17.0,17.0,4.886487584415919,-9.906177730909668 -137,17.0,18.0,-3.0756864340087167,6.218758799278971 -137,18.0,17.0,-3.0756864340087167,6.218758799278971 -137,18.0,18.0,8.958039375185187,-17.98346468163191 -137,18.0,19.0,-5.88235294117647,11.76470588235294 -137,19.0,9.0,-1.7848303152666305,3.98535828943083 -137,19.0,18.0,-5.88235294117647,11.76470588235294 -137,19.0,19.0,7.6671832564431,-15.75006417178377 -137,20.0,9.0,-5.101853820159654,10.98071411292983 -137,20.0,20.0,21.876495189895888,-45.10843276170355 -137,20.0,21.0,-16.774641369736234,34.127718648773715 -137,21.0,9.0,-2.619319553382597,5.400770303329455 -137,21.0,20.0,-16.774641369736234,34.127718648773715 -137,21.0,21.0,21.93449907537439,-43.48289181517921 -137,21.0,23.0,-2.5405381522555563,3.95440286307604 -137,22.0,14.0,-1.9683489489016612,3.976064876781356 -137,22.0,22.0,3.429754555384988,-6.965303617315433 -137,22.0,23.0,-1.4614056064833263,2.989238740534077 -137,23.0,21.0,-2.5405381522555563,3.95440286307604 -137,23.0,22.0,-1.4614056064833263,2.989238740534077 -137,23.0,23.0,4.001943758738883,-6.900641603610116 -137,24.0,24.0,3.185822136447737,-5.577356708264566 -137,24.0,25.0,-1.2165301194494855,1.8171440463475024 -137,24.0,26.0,-1.9692920169982515,3.760212661917064 -137,25.0,24.0,-1.2165301194494855,1.8171440463475024 -137,25.0,25.0,1.2165301194494855,-1.8171440463475024 -137,26.0,24.0,-1.9692920169982515,3.760212661917064 -137,26.0,26.0,3.652281470778589,-9.46044252232512 -137,26.0,27.0,0.0,2.608731947574922 -137,26.0,28.0,-0.99553355095268,1.881005840357816 -137,26.0,29.0,-0.6874559028276572,1.293971494797717 -137,27.0,5.0,-4.362844058012917,15.463571542897856 -137,27.0,7.0,-1.4439790613954469,4.540814658476248 -137,27.0,26.0,0.0,2.608731947574922 -137,27.0,27.0,5.806823119408364,-22.67145722159613 -137,28.0,26.0,-0.99553355095268,1.881005840357816 -137,28.0,28.0,1.9075867579849564,-3.604364401207048 -137,28.0,29.0,-0.9120532070322764,1.7233585608492326 -137,29.0,26.0,-0.6874559028276572,1.293971494797717 -137,29.0,28.0,-0.9120532070322764,1.7233585608492326 -137,29.0,29.0,1.5995091098599337,-3.0173300556469496 -138,0.0,0.0,6.765516048652632,-21.23160167089863 -138,0.0,1.0,-5.224646179885656,15.646726840803398 -138,0.0,2.0,-1.5408698687669766,5.631674830095234 -138,1.0,0.0,-5.224646179885656,15.646726840803398 -138,1.0,1.0,8.61632137735015,-25.897083564394716 -138,1.0,3.0,-1.7055303166990268,5.1973792282565086 -138,1.0,5.0,-1.6861448807654689,5.116477495334806 -138,2.0,0.0,-1.5408698687669766,5.631674830095234 -138,2.0,2.0,9.736318911079088,-29.13794745915803 -138,2.0,3.0,-8.19544904231211,23.5308726290628 -138,3.0,1.0,-1.7055303166990268,5.1973792282565086 -138,3.0,2.0,-8.19544904231211,23.5308726290628 -138,3.0,3.0,16.314103089185693,-55.509410535254254 -138,3.0,5.0,-6.413123730174556,22.31120356548123 -138,3.0,11.0,0.0,4.191255364806866 -138,4.0,4.0,2.954020035961983,-7.439067916773697 -138,4.0,6.0,-2.954020035961983,7.449267916773697 -138,5.0,1.0,-1.6861448807654689,5.116477495334806 -138,5.0,3.0,-6.413123730174556,22.31120356548123 -138,5.0,5.0,17.978787211021647,-67.37207632288106 -138,5.0,6.0,-3.590210423980992,11.02611441072814 -138,5.0,7.0,-6.289308176100628,22.0125786163522 -138,5.0,8.0,0.0,4.915840805411357 -138,5.0,9.0,0.0,1.8561002591115965 -138,6.0,4.0,-2.954020035961983,7.449267916773697 -138,6.0,5.0,-3.590210423980992,11.02611441072814 -138,6.0,6.0,6.544230459942975,-18.45668232750184 -138,7.0,5.0,-6.289308176100628,22.0125786163522 -138,7.0,7.0,7.733287237496075,-26.527493274828448 -138,7.0,27.0,-1.4439790613954469,4.540814658476248 -138,8.0,5.0,0.0,4.915840805411357 -138,8.0,8.0,0.0,-18.706293706293707 -138,8.0,9.0,0.0,9.090909090909092 -138,8.0,10.0,0.0,4.807692307692308 -138,9.0,5.0,0.0,1.8561002591115965 -138,9.0,8.0,0.0,9.090909090909092 -138,9.0,9.0,9.506003688808882,-31.06631294767834 -138,9.0,19.0,-1.7848303152666305,3.98535828943083 -138,9.0,20.0,-5.101853820159654,10.98071411292983 -138,9.0,21.0,-2.619319553382597,5.400770303329455 -138,10.0,8.0,0.0,4.807692307692308 -138,10.0,10.0,0.0,-4.807692307692308 -138,11.0,3.0,0.0,4.191255364806866 -138,11.0,11.0,6.573961583776156,-24.424167659260668 -138,11.0,12.0,0.0,7.142857142857143 -138,11.0,13.0,-1.5265676088395577,3.1734252729654173 -138,11.0,14.0,-3.0953961826564296,6.097275864326261 -138,11.0,15.0,-1.9519977922801688,4.104359379111847 -138,12.0,11.0,0.0,7.142857142857143 -138,12.0,12.0,0.0,-7.142857142857143 -138,13.0,11.0,-1.5265676088395577,3.1734252729654173 -138,13.0,13.0,4.01751987283902,-5.424299332335067 -138,13.0,14.0,-2.4909522639994623,2.250874059369649 -138,14.0,11.0,-3.0953961826564296,6.097275864326261 -138,14.0,13.0,-2.4909522639994623,2.250874059369649 -138,14.0,14.0,9.365498545964757,-16.01163373210796 -138,14.0,17.0,-1.8108011504072024,3.687418931630696 -138,14.0,22.0,-1.9683489489016612,3.976064876781356 -138,15.0,11.0,-1.9519977922801688,4.104359379111847 -138,15.0,15.0,3.271064728633931,-8.94513365126506 -138,15.0,16.0,-1.3190669363537617,4.8407742721532125 -138,16.0,15.0,-1.3190669363537617,4.8407742721532125 -138,16.0,16.0,1.3190669363537617,-4.8407742721532125 -138,17.0,14.0,-1.8108011504072024,3.687418931630696 -138,17.0,17.0,1.8108011504072024,-3.687418931630696 -138,18.0,18.0,5.88235294117647,-11.76470588235294 -138,18.0,19.0,-5.88235294117647,11.76470588235294 -138,19.0,9.0,-1.7848303152666305,3.98535828943083 -138,19.0,18.0,-5.88235294117647,11.76470588235294 -138,19.0,19.0,7.6671832564431,-15.75006417178377 -138,20.0,9.0,-5.101853820159654,10.98071411292983 -138,20.0,20.0,21.876495189895888,-45.10843276170355 -138,20.0,21.0,-16.774641369736234,34.127718648773715 -138,21.0,9.0,-2.619319553382597,5.400770303329455 -138,21.0,20.0,-16.774641369736234,34.127718648773715 -138,21.0,21.0,21.93449907537439,-43.48289181517921 -138,21.0,23.0,-2.5405381522555563,3.95440286307604 -138,22.0,14.0,-1.9683489489016612,3.976064876781356 -138,22.0,22.0,1.9683489489016612,-3.976064876781356 -138,23.0,21.0,-2.5405381522555563,3.95440286307604 -138,23.0,23.0,3.850431096129806,-6.199024916781094 -138,23.0,24.0,-1.3098929438742493,2.287622053705056 -138,24.0,23.0,-1.3098929438742493,2.287622053705056 -138,24.0,24.0,2.526423063323735,-4.104766100052558 -138,24.0,25.0,-1.2165301194494855,1.8171440463475024 -138,25.0,24.0,-1.2165301194494855,1.8171440463475024 -138,25.0,25.0,1.2165301194494855,-1.8171440463475024 -138,26.0,26.0,1.6829894537803372,-5.700229860408058 -138,26.0,27.0,0.0,2.608731947574922 -138,26.0,28.0,-0.99553355095268,1.881005840357816 -138,26.0,29.0,-0.6874559028276572,1.293971494797717 -138,27.0,7.0,-1.4439790613954469,4.540814658476248 -138,27.0,26.0,0.0,2.608731947574922 -138,27.0,27.0,1.4439790613954469,-7.214385678698274 -138,28.0,26.0,-0.99553355095268,1.881005840357816 -138,28.0,28.0,1.9075867579849564,-3.604364401207048 -138,28.0,29.0,-0.9120532070322764,1.7233585608492326 -138,29.0,26.0,-0.6874559028276572,1.293971494797717 -138,29.0,28.0,-0.9120532070322764,1.7233585608492326 -138,29.0,29.0,1.5995091098599337,-3.0173300556469496 -139,0.0,0.0,6.765516048652632,-21.23160167089863 -139,0.0,1.0,-5.224646179885656,15.646726840803398 -139,0.0,2.0,-1.5408698687669766,5.631674830095234 -139,1.0,0.0,-5.224646179885656,15.646726840803398 -139,1.0,1.0,6.910791060651125,-20.718104336138204 -139,1.0,5.0,-1.6861448807654689,5.116477495334806 -139,2.0,0.0,-1.5408698687669766,5.631674830095234 -139,2.0,2.0,9.736318911079088,-29.13794745915803 -139,2.0,3.0,-8.19544904231211,23.5308726290628 -139,3.0,2.0,-8.19544904231211,23.5308726290628 -139,3.0,3.0,14.608572772486664,-50.33043130699775 -139,3.0,5.0,-6.413123730174556,22.31120356548123 -139,3.0,11.0,0.0,4.191255364806866 -139,4.0,4.0,2.954020035961983,-7.439067916773697 -139,4.0,6.0,-2.954020035961983,7.449267916773697 -139,5.0,1.0,-1.6861448807654689,5.116477495334806 -139,5.0,3.0,-6.413123730174556,22.31120356548123 -139,5.0,5.0,22.341631269034565,-82.8291478657789 -139,5.0,6.0,-3.590210423980992,11.02611441072814 -139,5.0,7.0,-6.289308176100628,22.0125786163522 -139,5.0,8.0,0.0,4.915840805411357 -139,5.0,9.0,0.0,1.8561002591115965 -139,5.0,27.0,-4.362844058012917,15.463571542897856 -139,6.0,4.0,-2.954020035961983,7.449267916773697 -139,6.0,5.0,-3.590210423980992,11.02611441072814 -139,6.0,6.0,6.544230459942975,-18.45668232750184 -139,7.0,5.0,-6.289308176100628,22.0125786163522 -139,7.0,7.0,7.733287237496075,-26.527493274828448 -139,7.0,27.0,-1.4439790613954469,4.540814658476248 -139,8.0,5.0,0.0,4.915840805411357 -139,8.0,8.0,0.0,-9.615384615384617 -139,8.0,10.0,0.0,4.807692307692308 -139,9.0,5.0,0.0,1.8561002591115965 -139,9.0,9.0,13.462042814524237,-32.29285157661331 -139,9.0,16.0,-3.956039125715353,10.317447719844054 -139,9.0,19.0,-1.7848303152666305,3.98535828943083 -139,9.0,20.0,-5.101853820159654,10.98071411292983 -139,9.0,21.0,-2.619319553382597,5.400770303329455 -139,10.0,8.0,0.0,4.807692307692308 -139,10.0,10.0,0.0,-4.807692307692308 -139,11.0,3.0,0.0,4.191255364806866 -139,11.0,11.0,6.573961583776156,-24.424167659260668 -139,11.0,12.0,0.0,7.142857142857143 -139,11.0,13.0,-1.5265676088395577,3.1734252729654173 -139,11.0,14.0,-3.0953961826564296,6.097275864326261 -139,11.0,15.0,-1.9519977922801688,4.104359379111847 -139,12.0,11.0,0.0,7.142857142857143 -139,12.0,12.0,0.0,-7.142857142857143 -139,13.0,11.0,-1.5265676088395577,3.1734252729654173 -139,13.0,13.0,4.01751987283902,-5.424299332335067 -139,13.0,14.0,-2.4909522639994623,2.250874059369649 -139,14.0,11.0,-3.0953961826564296,6.097275864326261 -139,14.0,13.0,-2.4909522639994623,2.250874059369649 -139,14.0,14.0,9.365498545964757,-16.01163373210796 -139,14.0,17.0,-1.8108011504072024,3.687418931630696 -139,14.0,22.0,-1.9683489489016612,3.976064876781356 -139,15.0,11.0,-1.9519977922801688,4.104359379111847 -139,15.0,15.0,3.271064728633931,-8.94513365126506 -139,15.0,16.0,-1.3190669363537617,4.8407742721532125 -139,16.0,9.0,-3.956039125715353,10.317447719844054 -139,16.0,15.0,-1.3190669363537617,4.8407742721532125 -139,16.0,16.0,5.275106062069114,-15.158221991997266 -139,17.0,14.0,-1.8108011504072024,3.687418931630696 -139,17.0,17.0,4.886487584415919,-9.906177730909668 -139,17.0,18.0,-3.0756864340087167,6.218758799278971 -139,18.0,17.0,-3.0756864340087167,6.218758799278971 -139,18.0,18.0,3.0756864340087167,-6.218758799278971 -139,19.0,9.0,-1.7848303152666305,3.98535828943083 -139,19.0,19.0,1.7848303152666305,-3.98535828943083 -139,20.0,9.0,-5.101853820159654,10.98071411292983 -139,20.0,20.0,21.876495189895888,-45.10843276170355 -139,20.0,21.0,-16.774641369736234,34.127718648773715 -139,21.0,9.0,-2.619319553382597,5.400770303329455 -139,21.0,20.0,-16.774641369736234,34.127718648773715 -139,21.0,21.0,21.93449907537439,-43.48289181517921 -139,21.0,23.0,-2.5405381522555563,3.95440286307604 -139,22.0,14.0,-1.9683489489016612,3.976064876781356 -139,22.0,22.0,3.429754555384988,-6.965303617315433 -139,22.0,23.0,-1.4614056064833263,2.989238740534077 -139,23.0,21.0,-2.5405381522555563,3.95440286307604 -139,23.0,22.0,-1.4614056064833263,2.989238740534077 -139,23.0,23.0,5.311836702613133,-9.188263657315172 -139,23.0,24.0,-1.3098929438742493,2.287622053705056 -139,24.0,23.0,-1.3098929438742493,2.287622053705056 -139,24.0,24.0,4.495715080321987,-7.864978761969621 -139,24.0,25.0,-1.2165301194494855,1.8171440463475024 -139,24.0,26.0,-1.9692920169982515,3.760212661917064 -139,25.0,24.0,-1.2165301194494855,1.8171440463475024 -139,25.0,25.0,1.2165301194494855,-1.8171440463475024 -139,26.0,24.0,-1.9692920169982515,3.760212661917064 -139,26.0,26.0,3.652281470778589,-9.46044252232512 -139,26.0,27.0,0.0,2.608731947574922 -139,26.0,28.0,-0.99553355095268,1.881005840357816 -139,26.0,29.0,-0.6874559028276572,1.293971494797717 -139,27.0,5.0,-4.362844058012917,15.463571542897856 -139,27.0,7.0,-1.4439790613954469,4.540814658476248 -139,27.0,26.0,0.0,2.608731947574922 -139,27.0,27.0,5.806823119408364,-22.67145722159613 -139,28.0,26.0,-0.99553355095268,1.881005840357816 -139,28.0,28.0,0.99553355095268,-1.881005840357816 -139,29.0,26.0,-0.6874559028276572,1.293971494797717 -139,29.0,29.0,0.6874559028276572,-1.293971494797717 -140,0.0,0.0,6.765516048652632,-21.23160167089863 -140,0.0,1.0,-5.224646179885656,15.646726840803398 -140,0.0,2.0,-1.5408698687669766,5.631674830095234 -140,1.0,0.0,-5.224646179885656,15.646726840803398 -140,1.0,1.0,9.75228216552403,-30.648662892676068 -140,1.0,3.0,-1.7055303166990268,5.1973792282565086 -140,1.0,4.0,-1.1359607881738778,4.772479328281356 -140,1.0,5.0,-1.6861448807654689,5.116477495334806 -140,2.0,0.0,-1.5408698687669766,5.631674830095234 -140,2.0,2.0,9.736318911079088,-29.13794745915803 -140,2.0,3.0,-8.19544904231211,23.5308726290628 -140,3.0,1.0,-1.7055303166990268,5.1973792282565086 -140,3.0,2.0,-8.19544904231211,23.5308726290628 -140,3.0,3.0,16.314103089185693,-55.509410535254254 -140,3.0,5.0,-6.413123730174556,22.31120356548123 -140,3.0,11.0,0.0,4.191255364806866 -140,4.0,1.0,-1.1359607881738778,4.772479328281356 -140,4.0,4.0,1.1359607881738778,-4.751579328281355 -140,5.0,1.0,-1.6861448807654689,5.116477495334806 -140,5.0,3.0,-6.413123730174556,22.31120356548123 -140,5.0,5.0,16.052323092933932,-60.8210692494267 -140,5.0,6.0,-3.590210423980992,11.02611441072814 -140,5.0,8.0,0.0,4.915840805411357 -140,5.0,9.0,0.0,1.8561002591115965 -140,5.0,27.0,-4.362844058012917,15.463571542897856 -140,6.0,5.0,-3.590210423980992,11.02611441072814 -140,6.0,6.0,3.590210423980992,-11.01761441072814 -140,7.0,7.0,1.4439790613954469,-4.519414658476248 -140,7.0,27.0,-1.4439790613954469,4.540814658476248 -140,8.0,5.0,0.0,4.915840805411357 -140,8.0,8.0,0.0,-18.706293706293707 -140,8.0,9.0,0.0,9.090909090909092 -140,8.0,10.0,0.0,4.807692307692308 -140,9.0,5.0,0.0,1.8561002591115965 -140,9.0,8.0,0.0,9.090909090909092 -140,9.0,9.0,13.462042814524237,-41.3837606675224 -140,9.0,16.0,-3.956039125715353,10.317447719844054 -140,9.0,19.0,-1.7848303152666305,3.98535828943083 -140,9.0,20.0,-5.101853820159654,10.98071411292983 -140,9.0,21.0,-2.619319553382597,5.400770303329455 -140,10.0,8.0,0.0,4.807692307692308 -140,10.0,10.0,0.0,-4.807692307692308 -140,11.0,3.0,0.0,4.191255364806866 -140,11.0,11.0,6.573961583776156,-24.424167659260668 -140,11.0,12.0,0.0,7.142857142857143 -140,11.0,13.0,-1.5265676088395577,3.1734252729654173 -140,11.0,14.0,-3.0953961826564296,6.097275864326261 -140,11.0,15.0,-1.9519977922801688,4.104359379111847 -140,12.0,11.0,0.0,7.142857142857143 -140,12.0,12.0,0.0,-7.142857142857143 -140,13.0,11.0,-1.5265676088395577,3.1734252729654173 -140,13.0,13.0,4.01751987283902,-5.424299332335067 -140,13.0,14.0,-2.4909522639994623,2.250874059369649 -140,14.0,11.0,-3.0953961826564296,6.097275864326261 -140,14.0,13.0,-2.4909522639994623,2.250874059369649 -140,14.0,14.0,9.365498545964757,-16.01163373210796 -140,14.0,17.0,-1.8108011504072024,3.687418931630696 -140,14.0,22.0,-1.9683489489016612,3.976064876781356 -140,15.0,11.0,-1.9519977922801688,4.104359379111847 -140,15.0,15.0,3.271064728633931,-8.94513365126506 -140,15.0,16.0,-1.3190669363537617,4.8407742721532125 -140,16.0,9.0,-3.956039125715353,10.317447719844054 -140,16.0,15.0,-1.3190669363537617,4.8407742721532125 -140,16.0,16.0,5.275106062069114,-15.158221991997266 -140,17.0,14.0,-1.8108011504072024,3.687418931630696 -140,17.0,17.0,4.886487584415919,-9.906177730909668 -140,17.0,18.0,-3.0756864340087167,6.218758799278971 -140,18.0,17.0,-3.0756864340087167,6.218758799278971 -140,18.0,18.0,8.958039375185187,-17.98346468163191 -140,18.0,19.0,-5.88235294117647,11.76470588235294 -140,19.0,9.0,-1.7848303152666305,3.98535828943083 -140,19.0,18.0,-5.88235294117647,11.76470588235294 -140,19.0,19.0,7.6671832564431,-15.75006417178377 -140,20.0,9.0,-5.101853820159654,10.98071411292983 -140,20.0,20.0,21.876495189895888,-45.10843276170355 -140,20.0,21.0,-16.774641369736234,34.127718648773715 -140,21.0,9.0,-2.619319553382597,5.400770303329455 -140,21.0,20.0,-16.774641369736234,34.127718648773715 -140,21.0,21.0,21.93449907537439,-43.48289181517921 -140,21.0,23.0,-2.5405381522555563,3.95440286307604 -140,22.0,14.0,-1.9683489489016612,3.976064876781356 -140,22.0,22.0,3.429754555384988,-6.965303617315433 -140,22.0,23.0,-1.4614056064833263,2.989238740534077 -140,23.0,21.0,-2.5405381522555563,3.95440286307604 -140,23.0,22.0,-1.4614056064833263,2.989238740534077 -140,23.0,23.0,5.311836702613133,-9.188263657315172 -140,23.0,24.0,-1.3098929438742493,2.287622053705056 -140,24.0,23.0,-1.3098929438742493,2.287622053705056 -140,24.0,24.0,4.495715080321987,-7.864978761969621 -140,24.0,25.0,-1.2165301194494855,1.8171440463475024 -140,24.0,26.0,-1.9692920169982515,3.760212661917064 -140,25.0,24.0,-1.2165301194494855,1.8171440463475024 -140,25.0,25.0,1.2165301194494855,-1.8171440463475024 -140,26.0,24.0,-1.9692920169982515,3.760212661917064 -140,26.0,26.0,3.652281470778589,-9.46044252232512 -140,26.0,27.0,0.0,2.608731947574922 -140,26.0,28.0,-0.99553355095268,1.881005840357816 -140,26.0,29.0,-0.6874559028276572,1.293971494797717 -140,27.0,5.0,-4.362844058012917,15.463571542897856 -140,27.0,7.0,-1.4439790613954469,4.540814658476248 -140,27.0,26.0,0.0,2.608731947574922 -140,27.0,27.0,5.806823119408364,-22.67145722159613 -140,28.0,26.0,-0.99553355095268,1.881005840357816 -140,28.0,28.0,1.9075867579849564,-3.604364401207048 -140,28.0,29.0,-0.9120532070322764,1.7233585608492326 -140,29.0,26.0,-0.6874559028276572,1.293971494797717 -140,29.0,28.0,-0.9120532070322764,1.7233585608492326 -140,29.0,29.0,1.5995091098599337,-3.0173300556469496 -141,0.0,0.0,6.765516048652632,-21.23160167089863 -141,0.0,1.0,-5.224646179885656,15.646726840803398 -141,0.0,2.0,-1.5408698687669766,5.631674830095234 -141,1.0,0.0,-5.224646179885656,15.646726840803398 -141,1.0,1.0,9.75228216552403,-30.648662892676068 -141,1.0,3.0,-1.7055303166990268,5.1973792282565086 -141,1.0,4.0,-1.1359607881738778,4.772479328281356 -141,1.0,5.0,-1.6861448807654689,5.116477495334806 -141,2.0,0.0,-1.5408698687669766,5.631674830095234 -141,2.0,2.0,9.736318911079088,-29.13794745915803 -141,2.0,3.0,-8.19544904231211,23.5308726290628 -141,3.0,1.0,-1.7055303166990268,5.1973792282565086 -141,3.0,2.0,-8.19544904231211,23.5308726290628 -141,3.0,3.0,16.314103089185693,-55.509410535254254 -141,3.0,5.0,-6.413123730174556,22.31120356548123 -141,3.0,11.0,0.0,4.191255364806866 -141,4.0,1.0,-1.1359607881738778,4.772479328281356 -141,4.0,4.0,4.089980824135861,-12.190647245055052 -141,4.0,6.0,-2.954020035961983,7.449267916773697 -141,5.0,1.0,-1.6861448807654689,5.116477495334806 -141,5.0,3.0,-6.413123730174556,22.31120356548123 -141,5.0,5.0,18.75142084505357,-71.81153345505078 -141,5.0,7.0,-6.289308176100628,22.0125786163522 -141,5.0,8.0,0.0,4.915840805411357 -141,5.0,9.0,0.0,1.8561002591115965 -141,5.0,27.0,-4.362844058012917,15.463571542897856 -141,6.0,4.0,-2.954020035961983,7.449267916773697 -141,6.0,6.0,2.954020035961983,-7.439067916773697 -141,7.0,5.0,-6.289308176100628,22.0125786163522 -141,7.0,7.0,7.733287237496075,-26.527493274828448 -141,7.0,27.0,-1.4439790613954469,4.540814658476248 -141,8.0,5.0,0.0,4.915840805411357 -141,8.0,8.0,0.0,-18.706293706293707 -141,8.0,9.0,0.0,9.090909090909092 -141,8.0,10.0,0.0,4.807692307692308 -141,9.0,5.0,0.0,1.8561002591115965 -141,9.0,8.0,0.0,9.090909090909092 -141,9.0,9.0,13.462042814524237,-41.3837606675224 -141,9.0,16.0,-3.956039125715353,10.317447719844054 -141,9.0,19.0,-1.7848303152666305,3.98535828943083 -141,9.0,20.0,-5.101853820159654,10.98071411292983 -141,9.0,21.0,-2.619319553382597,5.400770303329455 -141,10.0,8.0,0.0,4.807692307692308 -141,10.0,10.0,0.0,-4.807692307692308 -141,11.0,3.0,0.0,4.191255364806866 -141,11.0,11.0,6.573961583776156,-24.424167659260668 -141,11.0,12.0,0.0,7.142857142857143 -141,11.0,13.0,-1.5265676088395577,3.1734252729654173 -141,11.0,14.0,-3.0953961826564296,6.097275864326261 -141,11.0,15.0,-1.9519977922801688,4.104359379111847 -141,12.0,11.0,0.0,7.142857142857143 -141,12.0,12.0,0.0,-7.142857142857143 -141,13.0,11.0,-1.5265676088395577,3.1734252729654173 -141,13.0,13.0,4.01751987283902,-5.424299332335067 -141,13.0,14.0,-2.4909522639994623,2.250874059369649 -141,14.0,11.0,-3.0953961826564296,6.097275864326261 -141,14.0,13.0,-2.4909522639994623,2.250874059369649 -141,14.0,14.0,9.365498545964757,-16.01163373210796 -141,14.0,17.0,-1.8108011504072024,3.687418931630696 -141,14.0,22.0,-1.9683489489016612,3.976064876781356 -141,15.0,11.0,-1.9519977922801688,4.104359379111847 -141,15.0,15.0,3.271064728633931,-8.94513365126506 -141,15.0,16.0,-1.3190669363537617,4.8407742721532125 -141,16.0,9.0,-3.956039125715353,10.317447719844054 -141,16.0,15.0,-1.3190669363537617,4.8407742721532125 -141,16.0,16.0,5.275106062069114,-15.158221991997266 -141,17.0,14.0,-1.8108011504072024,3.687418931630696 -141,17.0,17.0,4.886487584415919,-9.906177730909668 -141,17.0,18.0,-3.0756864340087167,6.218758799278971 -141,18.0,17.0,-3.0756864340087167,6.218758799278971 -141,18.0,18.0,8.958039375185187,-17.98346468163191 -141,18.0,19.0,-5.88235294117647,11.76470588235294 -141,19.0,9.0,-1.7848303152666305,3.98535828943083 -141,19.0,18.0,-5.88235294117647,11.76470588235294 -141,19.0,19.0,7.6671832564431,-15.75006417178377 -141,20.0,9.0,-5.101853820159654,10.98071411292983 -141,20.0,20.0,21.876495189895888,-45.10843276170355 -141,20.0,21.0,-16.774641369736234,34.127718648773715 -141,21.0,9.0,-2.619319553382597,5.400770303329455 -141,21.0,20.0,-16.774641369736234,34.127718648773715 -141,21.0,21.0,19.393960923118836,-39.52848895210317 -141,22.0,14.0,-1.9683489489016612,3.976064876781356 -141,22.0,22.0,3.429754555384988,-6.965303617315433 -141,22.0,23.0,-1.4614056064833263,2.989238740534077 -141,23.0,22.0,-1.4614056064833263,2.989238740534077 -141,23.0,23.0,2.771298550357576,-5.233860794239132 -141,23.0,24.0,-1.3098929438742493,2.287622053705056 -141,24.0,23.0,-1.3098929438742493,2.287622053705056 -141,24.0,24.0,4.495715080321987,-7.864978761969621 -141,24.0,25.0,-1.2165301194494855,1.8171440463475024 -141,24.0,26.0,-1.9692920169982515,3.760212661917064 -141,25.0,24.0,-1.2165301194494855,1.8171440463475024 -141,25.0,25.0,1.2165301194494855,-1.8171440463475024 -141,26.0,24.0,-1.9692920169982515,3.760212661917064 -141,26.0,26.0,3.652281470778589,-9.46044252232512 -141,26.0,27.0,0.0,2.608731947574922 -141,26.0,28.0,-0.99553355095268,1.881005840357816 -141,26.0,29.0,-0.6874559028276572,1.293971494797717 -141,27.0,5.0,-4.362844058012917,15.463571542897856 -141,27.0,7.0,-1.4439790613954469,4.540814658476248 -141,27.0,26.0,0.0,2.608731947574922 -141,27.0,27.0,5.806823119408364,-22.67145722159613 -141,28.0,26.0,-0.99553355095268,1.881005840357816 -141,28.0,28.0,1.9075867579849564,-3.604364401207048 -141,28.0,29.0,-0.9120532070322764,1.7233585608492326 -141,29.0,26.0,-0.6874559028276572,1.293971494797717 -141,29.0,28.0,-0.9120532070322764,1.7233585608492326 -141,29.0,29.0,1.5995091098599337,-3.0173300556469496 -142,0.0,0.0,6.765516048652632,-21.23160167089863 -142,0.0,1.0,-5.224646179885656,15.646726840803398 -142,0.0,2.0,-1.5408698687669766,5.631674830095234 -142,1.0,0.0,-5.224646179885656,15.646726840803398 -142,1.0,1.0,8.066137284758561,-25.55088539734126 -142,1.0,3.0,-1.7055303166990268,5.1973792282565086 -142,1.0,4.0,-1.1359607881738778,4.772479328281356 -142,2.0,0.0,-1.5408698687669766,5.631674830095234 -142,2.0,2.0,9.736318911079088,-29.13794745915803 -142,2.0,3.0,-8.19544904231211,23.5308726290628 -142,3.0,1.0,-1.7055303166990268,5.1973792282565086 -142,3.0,2.0,-8.19544904231211,23.5308726290628 -142,3.0,3.0,16.314103089185693,-55.509410535254254 -142,3.0,5.0,-6.413123730174556,22.31120356548123 -142,3.0,11.0,0.0,4.191255364806866 -142,4.0,1.0,-1.1359607881738778,4.772479328281356 -142,4.0,4.0,4.089980824135861,-12.190647245055052 -142,4.0,6.0,-2.954020035961983,7.449267916773697 -142,5.0,3.0,-6.413123730174556,22.31120356548123 -142,5.0,5.0,20.655486388269097,-75.81589022688208 -142,5.0,6.0,-3.590210423980992,11.02611441072814 -142,5.0,7.0,-6.289308176100628,22.0125786163522 -142,5.0,8.0,0.0,4.915840805411357 -142,5.0,27.0,-4.362844058012917,15.463571542897856 -142,6.0,4.0,-2.954020035961983,7.449267916773697 -142,6.0,5.0,-3.590210423980992,11.02611441072814 -142,6.0,6.0,6.544230459942975,-18.45668232750184 -142,7.0,5.0,-6.289308176100628,22.0125786163522 -142,7.0,7.0,6.289308176100628,-22.0080786163522 -142,8.0,5.0,0.0,4.915840805411357 -142,8.0,8.0,0.0,-18.706293706293707 -142,8.0,9.0,0.0,9.090909090909092 -142,8.0,10.0,0.0,4.807692307692308 -142,9.0,8.0,0.0,9.090909090909092 -142,9.0,9.0,9.506003688808882,-29.267751796599203 -142,9.0,19.0,-1.7848303152666305,3.98535828943083 -142,9.0,20.0,-5.101853820159654,10.98071411292983 -142,9.0,21.0,-2.619319553382597,5.400770303329455 -142,10.0,8.0,0.0,4.807692307692308 -142,10.0,10.0,0.0,-4.807692307692308 -142,11.0,3.0,0.0,4.191255364806866 -142,11.0,11.0,6.573961583776156,-24.424167659260668 -142,11.0,12.0,0.0,7.142857142857143 -142,11.0,13.0,-1.5265676088395577,3.1734252729654173 -142,11.0,14.0,-3.0953961826564296,6.097275864326261 -142,11.0,15.0,-1.9519977922801688,4.104359379111847 -142,12.0,11.0,0.0,7.142857142857143 -142,12.0,12.0,0.0,-7.142857142857143 -142,13.0,11.0,-1.5265676088395577,3.1734252729654173 -142,13.0,13.0,4.01751987283902,-5.424299332335067 -142,13.0,14.0,-2.4909522639994623,2.250874059369649 -142,14.0,11.0,-3.0953961826564296,6.097275864326261 -142,14.0,13.0,-2.4909522639994623,2.250874059369649 -142,14.0,14.0,9.365498545964757,-16.01163373210796 -142,14.0,17.0,-1.8108011504072024,3.687418931630696 -142,14.0,22.0,-1.9683489489016612,3.976064876781356 -142,15.0,11.0,-1.9519977922801688,4.104359379111847 -142,15.0,15.0,3.271064728633931,-8.94513365126506 -142,15.0,16.0,-1.3190669363537617,4.8407742721532125 -142,16.0,15.0,-1.3190669363537617,4.8407742721532125 -142,16.0,16.0,1.3190669363537617,-4.8407742721532125 -142,17.0,14.0,-1.8108011504072024,3.687418931630696 -142,17.0,17.0,4.886487584415919,-9.906177730909668 -142,17.0,18.0,-3.0756864340087167,6.218758799278971 -142,18.0,17.0,-3.0756864340087167,6.218758799278971 -142,18.0,18.0,8.958039375185187,-17.98346468163191 -142,18.0,19.0,-5.88235294117647,11.76470588235294 -142,19.0,9.0,-1.7848303152666305,3.98535828943083 -142,19.0,18.0,-5.88235294117647,11.76470588235294 -142,19.0,19.0,7.6671832564431,-15.75006417178377 -142,20.0,9.0,-5.101853820159654,10.98071411292983 -142,20.0,20.0,21.876495189895888,-45.10843276170355 -142,20.0,21.0,-16.774641369736234,34.127718648773715 -142,21.0,9.0,-2.619319553382597,5.400770303329455 -142,21.0,20.0,-16.774641369736234,34.127718648773715 -142,21.0,21.0,21.93449907537439,-43.48289181517921 -142,21.0,23.0,-2.5405381522555563,3.95440286307604 -142,22.0,14.0,-1.9683489489016612,3.976064876781356 -142,22.0,22.0,1.9683489489016612,-3.976064876781356 -142,23.0,21.0,-2.5405381522555563,3.95440286307604 -142,23.0,23.0,3.850431096129806,-6.199024916781094 -142,23.0,24.0,-1.3098929438742493,2.287622053705056 -142,24.0,23.0,-1.3098929438742493,2.287622053705056 -142,24.0,24.0,4.495715080321987,-7.864978761969621 -142,24.0,25.0,-1.2165301194494855,1.8171440463475024 -142,24.0,26.0,-1.9692920169982515,3.760212661917064 -142,25.0,24.0,-1.2165301194494855,1.8171440463475024 -142,25.0,25.0,1.2165301194494855,-1.8171440463475024 -142,26.0,24.0,-1.9692920169982515,3.760212661917064 -142,26.0,26.0,3.652281470778589,-9.46044252232512 -142,26.0,27.0,0.0,2.608731947574922 -142,26.0,28.0,-0.99553355095268,1.881005840357816 -142,26.0,29.0,-0.6874559028276572,1.293971494797717 -142,27.0,5.0,-4.362844058012917,15.463571542897856 -142,27.0,26.0,0.0,2.608731947574922 -142,27.0,27.0,4.362844058012917,-18.15204256311988 -142,28.0,26.0,-0.99553355095268,1.881005840357816 -142,28.0,28.0,1.9075867579849564,-3.604364401207048 -142,28.0,29.0,-0.9120532070322764,1.7233585608492326 -142,29.0,26.0,-0.6874559028276572,1.293971494797717 -142,29.0,28.0,-0.9120532070322764,1.7233585608492326 -142,29.0,29.0,1.5995091098599337,-3.0173300556469496 -143,0.0,0.0,6.765516048652632,-21.23160167089863 -143,0.0,1.0,-5.224646179885656,15.646726840803398 -143,0.0,2.0,-1.5408698687669766,5.631674830095234 -143,1.0,0.0,-5.224646179885656,15.646726840803398 -143,1.0,1.0,8.066137284758561,-25.55088539734126 -143,1.0,3.0,-1.7055303166990268,5.1973792282565086 -143,1.0,4.0,-1.1359607881738778,4.772479328281356 -143,2.0,0.0,-1.5408698687669766,5.631674830095234 -143,2.0,2.0,9.736318911079088,-29.13794745915803 -143,2.0,3.0,-8.19544904231211,23.5308726290628 -143,3.0,1.0,-1.7055303166990268,5.1973792282565086 -143,3.0,2.0,-8.19544904231211,23.5308726290628 -143,3.0,3.0,16.314103089185693,-55.509410535254254 -143,3.0,5.0,-6.413123730174556,22.31120356548123 -143,3.0,11.0,0.0,4.191255364806866 -143,4.0,1.0,-1.1359607881738778,4.772479328281356 -143,4.0,4.0,4.089980824135861,-12.190647245055052 -143,4.0,6.0,-2.954020035961983,7.449267916773697 -143,5.0,3.0,-6.413123730174556,22.31120356548123 -143,5.0,5.0,17.0652759642881,-66.71375595971597 -143,5.0,7.0,-6.289308176100628,22.0125786163522 -143,5.0,8.0,0.0,4.915840805411357 -143,5.0,9.0,0.0,1.8561002591115965 -143,5.0,27.0,-4.362844058012917,15.463571542897856 -143,6.0,4.0,-2.954020035961983,7.449267916773697 -143,6.0,6.0,2.954020035961983,-7.439067916773697 -143,7.0,5.0,-6.289308176100628,22.0125786163522 -143,7.0,7.0,7.733287237496075,-26.527493274828448 -143,7.0,27.0,-1.4439790613954469,4.540814658476248 -143,8.0,5.0,0.0,4.915840805411357 -143,8.0,8.0,0.0,-18.706293706293707 -143,8.0,9.0,0.0,9.090909090909092 -143,8.0,10.0,0.0,4.807692307692308 -143,9.0,5.0,0.0,1.8561002591115965 -143,9.0,8.0,0.0,9.090909090909092 -143,9.0,9.0,9.506003688808882,-31.06631294767834 -143,9.0,19.0,-1.7848303152666305,3.98535828943083 -143,9.0,20.0,-5.101853820159654,10.98071411292983 -143,9.0,21.0,-2.619319553382597,5.400770303329455 -143,10.0,8.0,0.0,4.807692307692308 -143,10.0,10.0,0.0,-4.807692307692308 -143,11.0,3.0,0.0,4.191255364806866 -143,11.0,11.0,6.573961583776156,-24.424167659260668 -143,11.0,12.0,0.0,7.142857142857143 -143,11.0,13.0,-1.5265676088395577,3.1734252729654173 -143,11.0,14.0,-3.0953961826564296,6.097275864326261 -143,11.0,15.0,-1.9519977922801688,4.104359379111847 -143,12.0,11.0,0.0,7.142857142857143 -143,12.0,12.0,0.0,-7.142857142857143 -143,13.0,11.0,-1.5265676088395577,3.1734252729654173 -143,13.0,13.0,4.01751987283902,-5.424299332335067 -143,13.0,14.0,-2.4909522639994623,2.250874059369649 -143,14.0,11.0,-3.0953961826564296,6.097275864326261 -143,14.0,13.0,-2.4909522639994623,2.250874059369649 -143,14.0,14.0,9.365498545964757,-16.01163373210796 -143,14.0,17.0,-1.8108011504072024,3.687418931630696 -143,14.0,22.0,-1.9683489489016612,3.976064876781356 -143,15.0,11.0,-1.9519977922801688,4.104359379111847 -143,15.0,15.0,3.271064728633931,-8.94513365126506 -143,15.0,16.0,-1.3190669363537617,4.8407742721532125 -143,16.0,15.0,-1.3190669363537617,4.8407742721532125 -143,16.0,16.0,1.3190669363537617,-4.8407742721532125 -143,17.0,14.0,-1.8108011504072024,3.687418931630696 -143,17.0,17.0,4.886487584415919,-9.906177730909668 -143,17.0,18.0,-3.0756864340087167,6.218758799278971 -143,18.0,17.0,-3.0756864340087167,6.218758799278971 -143,18.0,18.0,8.958039375185187,-17.98346468163191 -143,18.0,19.0,-5.88235294117647,11.76470588235294 -143,19.0,9.0,-1.7848303152666305,3.98535828943083 -143,19.0,18.0,-5.88235294117647,11.76470588235294 -143,19.0,19.0,7.6671832564431,-15.75006417178377 -143,20.0,9.0,-5.101853820159654,10.98071411292983 -143,20.0,20.0,21.876495189895888,-45.10843276170355 -143,20.0,21.0,-16.774641369736234,34.127718648773715 -143,21.0,9.0,-2.619319553382597,5.400770303329455 -143,21.0,20.0,-16.774641369736234,34.127718648773715 -143,21.0,21.0,21.93449907537439,-43.48289181517921 -143,21.0,23.0,-2.5405381522555563,3.95440286307604 -143,22.0,14.0,-1.9683489489016612,3.976064876781356 -143,22.0,22.0,3.429754555384988,-6.965303617315433 -143,22.0,23.0,-1.4614056064833263,2.989238740534077 -143,23.0,21.0,-2.5405381522555563,3.95440286307604 -143,23.0,22.0,-1.4614056064833263,2.989238740534077 -143,23.0,23.0,5.311836702613133,-9.188263657315172 -143,23.0,24.0,-1.3098929438742493,2.287622053705056 -143,24.0,23.0,-1.3098929438742493,2.287622053705056 -143,24.0,24.0,2.526423063323735,-4.104766100052558 -143,24.0,25.0,-1.2165301194494855,1.8171440463475024 -143,25.0,24.0,-1.2165301194494855,1.8171440463475024 -143,25.0,25.0,1.2165301194494855,-1.8171440463475024 -143,26.0,26.0,1.6829894537803372,-5.700229860408058 -143,26.0,27.0,0.0,2.608731947574922 -143,26.0,28.0,-0.99553355095268,1.881005840357816 -143,26.0,29.0,-0.6874559028276572,1.293971494797717 -143,27.0,5.0,-4.362844058012917,15.463571542897856 -143,27.0,7.0,-1.4439790613954469,4.540814658476248 -143,27.0,26.0,0.0,2.608731947574922 -143,27.0,27.0,5.806823119408364,-22.67145722159613 -143,28.0,26.0,-0.99553355095268,1.881005840357816 -143,28.0,28.0,1.9075867579849564,-3.604364401207048 -143,28.0,29.0,-0.9120532070322764,1.7233585608492326 -143,29.0,26.0,-0.6874559028276572,1.293971494797717 -143,29.0,28.0,-0.9120532070322764,1.7233585608492326 -143,29.0,29.0,1.5995091098599337,-3.0173300556469496 -144,0.0,0.0,6.765516048652632,-21.23160167089863 -144,0.0,1.0,-5.224646179885656,15.646726840803398 -144,0.0,2.0,-1.5408698687669766,5.631674830095234 -144,1.0,0.0,-5.224646179885656,15.646726840803398 -144,1.0,1.0,9.75228216552403,-30.648662892676068 -144,1.0,3.0,-1.7055303166990268,5.1973792282565086 -144,1.0,4.0,-1.1359607881738778,4.772479328281356 -144,1.0,5.0,-1.6861448807654689,5.116477495334806 -144,2.0,0.0,-1.5408698687669766,5.631674830095234 -144,2.0,2.0,9.736318911079088,-29.13794745915803 -144,2.0,3.0,-8.19544904231211,23.5308726290628 -144,3.0,1.0,-1.7055303166990268,5.1973792282565086 -144,3.0,2.0,-8.19544904231211,23.5308726290628 -144,3.0,3.0,16.314103089185693,-55.509410535254254 -144,3.0,5.0,-6.413123730174556,22.31120356548123 -144,3.0,11.0,0.0,4.191255364806866 -144,4.0,1.0,-1.1359607881738778,4.772479328281356 -144,4.0,4.0,4.089980824135861,-12.190647245055052 -144,4.0,6.0,-2.954020035961983,7.449267916773697 -144,5.0,1.0,-1.6861448807654689,5.116477495334806 -144,5.0,3.0,-6.413123730174556,22.31120356548123 -144,5.0,5.0,22.341631269034565,-82.8291478657789 -144,5.0,6.0,-3.590210423980992,11.02611441072814 -144,5.0,7.0,-6.289308176100628,22.0125786163522 -144,5.0,8.0,0.0,4.915840805411357 -144,5.0,9.0,0.0,1.8561002591115965 -144,5.0,27.0,-4.362844058012917,15.463571542897856 -144,6.0,4.0,-2.954020035961983,7.449267916773697 -144,6.0,5.0,-3.590210423980992,11.02611441072814 -144,6.0,6.0,6.544230459942975,-18.45668232750184 -144,7.0,5.0,-6.289308176100628,22.0125786163522 -144,7.0,7.0,7.733287237496075,-26.527493274828448 -144,7.0,27.0,-1.4439790613954469,4.540814658476248 -144,8.0,5.0,0.0,4.915840805411357 -144,8.0,8.0,0.0,-18.706293706293707 -144,8.0,9.0,0.0,9.090909090909092 -144,8.0,10.0,0.0,4.807692307692308 -144,9.0,5.0,0.0,1.8561002591115965 -144,9.0,8.0,0.0,9.090909090909092 -144,9.0,9.0,13.462042814524237,-41.3837606675224 -144,9.0,16.0,-3.956039125715353,10.317447719844054 -144,9.0,19.0,-1.7848303152666305,3.98535828943083 -144,9.0,20.0,-5.101853820159654,10.98071411292983 -144,9.0,21.0,-2.619319553382597,5.400770303329455 -144,10.0,8.0,0.0,4.807692307692308 -144,10.0,10.0,0.0,-4.807692307692308 -144,11.0,3.0,0.0,4.191255364806866 -144,11.0,11.0,6.573961583776156,-24.424167659260668 -144,11.0,12.0,0.0,7.142857142857143 -144,11.0,13.0,-1.5265676088395577,3.1734252729654173 -144,11.0,14.0,-3.0953961826564296,6.097275864326261 -144,11.0,15.0,-1.9519977922801688,4.104359379111847 -144,12.0,11.0,0.0,7.142857142857143 -144,12.0,12.0,0.0,-7.142857142857143 -144,13.0,11.0,-1.5265676088395577,3.1734252729654173 -144,13.0,13.0,4.01751987283902,-5.424299332335067 -144,13.0,14.0,-2.4909522639994623,2.250874059369649 -144,14.0,11.0,-3.0953961826564296,6.097275864326261 -144,14.0,13.0,-2.4909522639994623,2.250874059369649 -144,14.0,14.0,9.365498545964757,-16.01163373210796 -144,14.0,17.0,-1.8108011504072024,3.687418931630696 -144,14.0,22.0,-1.9683489489016612,3.976064876781356 -144,15.0,11.0,-1.9519977922801688,4.104359379111847 -144,15.0,15.0,3.271064728633931,-8.94513365126506 -144,15.0,16.0,-1.3190669363537617,4.8407742721532125 -144,16.0,9.0,-3.956039125715353,10.317447719844054 -144,16.0,15.0,-1.3190669363537617,4.8407742721532125 -144,16.0,16.0,5.275106062069114,-15.158221991997266 -144,17.0,14.0,-1.8108011504072024,3.687418931630696 -144,17.0,17.0,4.886487584415919,-9.906177730909668 -144,17.0,18.0,-3.0756864340087167,6.218758799278971 -144,18.0,17.0,-3.0756864340087167,6.218758799278971 -144,18.0,18.0,8.958039375185187,-17.98346468163191 -144,18.0,19.0,-5.88235294117647,11.76470588235294 -144,19.0,9.0,-1.7848303152666305,3.98535828943083 -144,19.0,18.0,-5.88235294117647,11.76470588235294 -144,19.0,19.0,7.6671832564431,-15.75006417178377 -144,20.0,9.0,-5.101853820159654,10.98071411292983 -144,20.0,20.0,21.876495189895888,-45.10843276170355 -144,20.0,21.0,-16.774641369736234,34.127718648773715 -144,21.0,9.0,-2.619319553382597,5.400770303329455 -144,21.0,20.0,-16.774641369736234,34.127718648773715 -144,21.0,21.0,21.93449907537439,-43.48289181517921 -144,21.0,23.0,-2.5405381522555563,3.95440286307604 -144,22.0,14.0,-1.9683489489016612,3.976064876781356 -144,22.0,22.0,3.429754555384988,-6.965303617315433 -144,22.0,23.0,-1.4614056064833263,2.989238740534077 -144,23.0,21.0,-2.5405381522555563,3.95440286307604 -144,23.0,22.0,-1.4614056064833263,2.989238740534077 -144,23.0,23.0,5.311836702613133,-9.188263657315172 -144,23.0,24.0,-1.3098929438742493,2.287622053705056 -144,24.0,23.0,-1.3098929438742493,2.287622053705056 -144,24.0,24.0,4.495715080321987,-7.864978761969621 -144,24.0,25.0,-1.2165301194494855,1.8171440463475024 -144,24.0,26.0,-1.9692920169982515,3.760212661917064 -144,25.0,24.0,-1.2165301194494855,1.8171440463475024 -144,25.0,25.0,1.2165301194494855,-1.8171440463475024 -144,26.0,24.0,-1.9692920169982515,3.760212661917064 -144,26.0,26.0,3.652281470778589,-9.46044252232512 -144,26.0,27.0,0.0,2.608731947574922 -144,26.0,28.0,-0.99553355095268,1.881005840357816 -144,26.0,29.0,-0.6874559028276572,1.293971494797717 -144,27.0,5.0,-4.362844058012917,15.463571542897856 -144,27.0,7.0,-1.4439790613954469,4.540814658476248 -144,27.0,26.0,0.0,2.608731947574922 -144,27.0,27.0,5.806823119408364,-22.67145722159613 -144,28.0,26.0,-0.99553355095268,1.881005840357816 -144,28.0,28.0,1.9075867579849564,-3.604364401207048 -144,28.0,29.0,-0.9120532070322764,1.7233585608492326 -144,29.0,26.0,-0.6874559028276572,1.293971494797717 -144,29.0,28.0,-0.9120532070322764,1.7233585608492326 -144,29.0,29.0,1.5995091098599337,-3.0173300556469496 -145,0.0,0.0,6.765516048652632,-21.23160167089863 -145,0.0,1.0,-5.224646179885656,15.646726840803398 -145,0.0,2.0,-1.5408698687669766,5.631674830095234 -145,1.0,0.0,-5.224646179885656,15.646726840803398 -145,1.0,1.0,9.75228216552403,-30.648662892676068 -145,1.0,3.0,-1.7055303166990268,5.1973792282565086 -145,1.0,4.0,-1.1359607881738778,4.772479328281356 -145,1.0,5.0,-1.6861448807654689,5.116477495334806 -145,2.0,0.0,-1.5408698687669766,5.631674830095234 -145,2.0,2.0,9.736318911079088,-29.13794745915803 -145,2.0,3.0,-8.19544904231211,23.5308726290628 -145,3.0,1.0,-1.7055303166990268,5.1973792282565086 -145,3.0,2.0,-8.19544904231211,23.5308726290628 -145,3.0,3.0,16.314103089185693,-55.509410535254254 -145,3.0,5.0,-6.413123730174556,22.31120356548123 -145,3.0,11.0,0.0,4.191255364806866 -145,4.0,1.0,-1.1359607881738778,4.772479328281356 -145,4.0,4.0,4.089980824135861,-12.190647245055052 -145,4.0,6.0,-2.954020035961983,7.449267916773697 -145,5.0,1.0,-1.6861448807654689,5.116477495334806 -145,5.0,3.0,-6.413123730174556,22.31120356548123 -145,5.0,5.0,22.341631269034565,-82.8291478657789 -145,5.0,6.0,-3.590210423980992,11.02611441072814 -145,5.0,7.0,-6.289308176100628,22.0125786163522 -145,5.0,8.0,0.0,4.915840805411357 -145,5.0,9.0,0.0,1.8561002591115965 -145,5.0,27.0,-4.362844058012917,15.463571542897856 -145,6.0,4.0,-2.954020035961983,7.449267916773697 -145,6.0,5.0,-3.590210423980992,11.02611441072814 -145,6.0,6.0,6.544230459942975,-18.45668232750184 -145,7.0,5.0,-6.289308176100628,22.0125786163522 -145,7.0,7.0,7.733287237496075,-26.527493274828448 -145,7.0,27.0,-1.4439790613954469,4.540814658476248 -145,8.0,5.0,0.0,4.915840805411357 -145,8.0,8.0,0.0,-18.706293706293707 -145,8.0,9.0,0.0,9.090909090909092 -145,8.0,10.0,0.0,4.807692307692308 -145,9.0,5.0,0.0,1.8561002591115965 -145,9.0,8.0,0.0,9.090909090909092 -145,9.0,9.0,13.462042814524237,-41.3837606675224 -145,9.0,16.0,-3.956039125715353,10.317447719844054 -145,9.0,19.0,-1.7848303152666305,3.98535828943083 -145,9.0,20.0,-5.101853820159654,10.98071411292983 -145,9.0,21.0,-2.619319553382597,5.400770303329455 -145,10.0,8.0,0.0,4.807692307692308 -145,10.0,10.0,0.0,-4.807692307692308 -145,11.0,3.0,0.0,4.191255364806866 -145,11.0,11.0,6.573961583776156,-24.424167659260668 -145,11.0,12.0,0.0,7.142857142857143 -145,11.0,13.0,-1.5265676088395577,3.1734252729654173 -145,11.0,14.0,-3.0953961826564296,6.097275864326261 -145,11.0,15.0,-1.9519977922801688,4.104359379111847 -145,12.0,11.0,0.0,7.142857142857143 -145,12.0,12.0,0.0,-7.142857142857143 -145,13.0,11.0,-1.5265676088395577,3.1734252729654173 -145,13.0,13.0,4.01751987283902,-5.424299332335067 -145,13.0,14.0,-2.4909522639994623,2.250874059369649 -145,14.0,11.0,-3.0953961826564296,6.097275864326261 -145,14.0,13.0,-2.4909522639994623,2.250874059369649 -145,14.0,14.0,9.365498545964757,-16.01163373210796 -145,14.0,17.0,-1.8108011504072024,3.687418931630696 -145,14.0,22.0,-1.9683489489016612,3.976064876781356 -145,15.0,11.0,-1.9519977922801688,4.104359379111847 -145,15.0,15.0,3.271064728633931,-8.94513365126506 -145,15.0,16.0,-1.3190669363537617,4.8407742721532125 -145,16.0,9.0,-3.956039125715353,10.317447719844054 -145,16.0,15.0,-1.3190669363537617,4.8407742721532125 -145,16.0,16.0,5.275106062069114,-15.158221991997266 -145,17.0,14.0,-1.8108011504072024,3.687418931630696 -145,17.0,17.0,4.886487584415919,-9.906177730909668 -145,17.0,18.0,-3.0756864340087167,6.218758799278971 -145,18.0,17.0,-3.0756864340087167,6.218758799278971 -145,18.0,18.0,8.958039375185187,-17.98346468163191 -145,18.0,19.0,-5.88235294117647,11.76470588235294 -145,19.0,9.0,-1.7848303152666305,3.98535828943083 -145,19.0,18.0,-5.88235294117647,11.76470588235294 -145,19.0,19.0,7.6671832564431,-15.75006417178377 -145,20.0,9.0,-5.101853820159654,10.98071411292983 -145,20.0,20.0,21.876495189895888,-45.10843276170355 -145,20.0,21.0,-16.774641369736234,34.127718648773715 -145,21.0,9.0,-2.619319553382597,5.400770303329455 -145,21.0,20.0,-16.774641369736234,34.127718648773715 -145,21.0,21.0,21.93449907537439,-43.48289181517921 -145,21.0,23.0,-2.5405381522555563,3.95440286307604 -145,22.0,14.0,-1.9683489489016612,3.976064876781356 -145,22.0,22.0,3.429754555384988,-6.965303617315433 -145,22.0,23.0,-1.4614056064833263,2.989238740534077 -145,23.0,21.0,-2.5405381522555563,3.95440286307604 -145,23.0,22.0,-1.4614056064833263,2.989238740534077 -145,23.0,23.0,5.311836702613133,-9.188263657315172 -145,23.0,24.0,-1.3098929438742493,2.287622053705056 -145,24.0,23.0,-1.3098929438742493,2.287622053705056 -145,24.0,24.0,4.495715080321987,-7.864978761969621 -145,24.0,25.0,-1.2165301194494855,1.8171440463475024 -145,24.0,26.0,-1.9692920169982515,3.760212661917064 -145,25.0,24.0,-1.2165301194494855,1.8171440463475024 -145,25.0,25.0,1.2165301194494855,-1.8171440463475024 -145,26.0,24.0,-1.9692920169982515,3.760212661917064 -145,26.0,26.0,3.652281470778589,-9.46044252232512 -145,26.0,27.0,0.0,2.608731947574922 -145,26.0,28.0,-0.99553355095268,1.881005840357816 -145,26.0,29.0,-0.6874559028276572,1.293971494797717 -145,27.0,5.0,-4.362844058012917,15.463571542897856 -145,27.0,7.0,-1.4439790613954469,4.540814658476248 -145,27.0,26.0,0.0,2.608731947574922 -145,27.0,27.0,5.806823119408364,-22.67145722159613 -145,28.0,26.0,-0.99553355095268,1.881005840357816 -145,28.0,28.0,1.9075867579849564,-3.604364401207048 -145,28.0,29.0,-0.9120532070322764,1.7233585608492326 -145,29.0,26.0,-0.6874559028276572,1.293971494797717 -145,29.0,28.0,-0.9120532070322764,1.7233585608492326 -145,29.0,29.0,1.5995091098599337,-3.0173300556469496 -146,0.0,0.0,6.765516048652632,-21.23160167089863 -146,0.0,1.0,-5.224646179885656,15.646726840803398 -146,0.0,2.0,-1.5408698687669766,5.631674830095234 -146,1.0,0.0,-5.224646179885656,15.646726840803398 -146,1.0,1.0,9.75228216552403,-30.648662892676068 -146,1.0,3.0,-1.7055303166990268,5.1973792282565086 -146,1.0,4.0,-1.1359607881738778,4.772479328281356 -146,1.0,5.0,-1.6861448807654689,5.116477495334806 -146,2.0,0.0,-1.5408698687669766,5.631674830095234 -146,2.0,2.0,9.736318911079088,-29.13794745915803 -146,2.0,3.0,-8.19544904231211,23.5308726290628 -146,3.0,1.0,-1.7055303166990268,5.1973792282565086 -146,3.0,2.0,-8.19544904231211,23.5308726290628 -146,3.0,3.0,9.900979359011137,-33.202706969773025 -146,3.0,11.0,0.0,4.191255364806866 -146,4.0,1.0,-1.1359607881738778,4.772479328281356 -146,4.0,4.0,4.089980824135861,-12.190647245055052 -146,4.0,6.0,-2.954020035961983,7.449267916773697 -146,5.0,1.0,-1.6861448807654689,5.116477495334806 -146,5.0,5.0,15.928507538860009,-60.52244430029767 -146,5.0,6.0,-3.590210423980992,11.02611441072814 -146,5.0,7.0,-6.289308176100628,22.0125786163522 -146,5.0,8.0,0.0,4.915840805411357 -146,5.0,9.0,0.0,1.8561002591115965 -146,5.0,27.0,-4.362844058012917,15.463571542897856 -146,6.0,4.0,-2.954020035961983,7.449267916773697 -146,6.0,5.0,-3.590210423980992,11.02611441072814 -146,6.0,6.0,6.544230459942975,-18.45668232750184 -146,7.0,5.0,-6.289308176100628,22.0125786163522 -146,7.0,7.0,7.733287237496075,-26.527493274828448 -146,7.0,27.0,-1.4439790613954469,4.540814658476248 -146,8.0,5.0,0.0,4.915840805411357 -146,8.0,8.0,0.0,-18.706293706293707 -146,8.0,9.0,0.0,9.090909090909092 -146,8.0,10.0,0.0,4.807692307692308 -146,9.0,5.0,0.0,1.8561002591115965 -146,9.0,8.0,0.0,9.090909090909092 -146,9.0,9.0,9.506003688808882,-31.06631294767834 -146,9.0,19.0,-1.7848303152666305,3.98535828943083 -146,9.0,20.0,-5.101853820159654,10.98071411292983 -146,9.0,21.0,-2.619319553382597,5.400770303329455 -146,10.0,8.0,0.0,4.807692307692308 -146,10.0,10.0,0.0,-4.807692307692308 -146,11.0,3.0,0.0,4.191255364806866 -146,11.0,11.0,6.573961583776156,-24.424167659260668 -146,11.0,12.0,0.0,7.142857142857143 -146,11.0,13.0,-1.5265676088395577,3.1734252729654173 -146,11.0,14.0,-3.0953961826564296,6.097275864326261 -146,11.0,15.0,-1.9519977922801688,4.104359379111847 -146,12.0,11.0,0.0,7.142857142857143 -146,12.0,12.0,0.0,-7.142857142857143 -146,13.0,11.0,-1.5265676088395577,3.1734252729654173 -146,13.0,13.0,1.5265676088395577,-3.1734252729654173 -146,14.0,11.0,-3.0953961826564296,6.097275864326261 -146,14.0,14.0,6.874546281965293,-13.760759672738311 -146,14.0,17.0,-1.8108011504072024,3.687418931630696 -146,14.0,22.0,-1.9683489489016612,3.976064876781356 -146,15.0,11.0,-1.9519977922801688,4.104359379111847 -146,15.0,15.0,3.271064728633931,-8.94513365126506 -146,15.0,16.0,-1.3190669363537617,4.8407742721532125 -146,16.0,15.0,-1.3190669363537617,4.8407742721532125 -146,16.0,16.0,1.3190669363537617,-4.8407742721532125 -146,17.0,14.0,-1.8108011504072024,3.687418931630696 -146,17.0,17.0,1.8108011504072024,-3.687418931630696 -146,18.0,18.0,5.88235294117647,-11.76470588235294 -146,18.0,19.0,-5.88235294117647,11.76470588235294 -146,19.0,9.0,-1.7848303152666305,3.98535828943083 -146,19.0,18.0,-5.88235294117647,11.76470588235294 -146,19.0,19.0,7.6671832564431,-15.75006417178377 -146,20.0,9.0,-5.101853820159654,10.98071411292983 -146,20.0,20.0,21.876495189895888,-45.10843276170355 -146,20.0,21.0,-16.774641369736234,34.127718648773715 -146,21.0,9.0,-2.619319553382597,5.400770303329455 -146,21.0,20.0,-16.774641369736234,34.127718648773715 -146,21.0,21.0,21.93449907537439,-43.48289181517921 -146,21.0,23.0,-2.5405381522555563,3.95440286307604 -146,22.0,14.0,-1.9683489489016612,3.976064876781356 -146,22.0,22.0,3.429754555384988,-6.965303617315433 -146,22.0,23.0,-1.4614056064833263,2.989238740534077 -146,23.0,21.0,-2.5405381522555563,3.95440286307604 -146,23.0,22.0,-1.4614056064833263,2.989238740534077 -146,23.0,23.0,5.311836702613133,-9.188263657315172 -146,23.0,24.0,-1.3098929438742493,2.287622053705056 -146,24.0,23.0,-1.3098929438742493,2.287622053705056 -146,24.0,24.0,4.495715080321987,-7.864978761969621 -146,24.0,25.0,-1.2165301194494855,1.8171440463475024 -146,24.0,26.0,-1.9692920169982515,3.760212661917064 -146,25.0,24.0,-1.2165301194494855,1.8171440463475024 -146,25.0,25.0,1.2165301194494855,-1.8171440463475024 -146,26.0,24.0,-1.9692920169982515,3.760212661917064 -146,26.0,26.0,3.652281470778589,-9.46044252232512 -146,26.0,27.0,0.0,2.608731947574922 -146,26.0,28.0,-0.99553355095268,1.881005840357816 -146,26.0,29.0,-0.6874559028276572,1.293971494797717 -146,27.0,5.0,-4.362844058012917,15.463571542897856 -146,27.0,7.0,-1.4439790613954469,4.540814658476248 -146,27.0,26.0,0.0,2.608731947574922 -146,27.0,27.0,5.806823119408364,-22.67145722159613 -146,28.0,26.0,-0.99553355095268,1.881005840357816 -146,28.0,28.0,1.9075867579849564,-3.604364401207048 -146,28.0,29.0,-0.9120532070322764,1.7233585608492326 -146,29.0,26.0,-0.6874559028276572,1.293971494797717 -146,29.0,28.0,-0.9120532070322764,1.7233585608492326 -146,29.0,29.0,1.5995091098599337,-3.0173300556469496 -147,0.0,0.0,6.765516048652632,-21.23160167089863 -147,0.0,1.0,-5.224646179885656,15.646726840803398 -147,0.0,2.0,-1.5408698687669766,5.631674830095234 -147,1.0,0.0,-5.224646179885656,15.646726840803398 -147,1.0,1.0,9.75228216552403,-30.648662892676068 -147,1.0,3.0,-1.7055303166990268,5.1973792282565086 -147,1.0,4.0,-1.1359607881738778,4.772479328281356 -147,1.0,5.0,-1.6861448807654689,5.116477495334806 -147,2.0,0.0,-1.5408698687669766,5.631674830095234 -147,2.0,2.0,9.736318911079088,-29.13794745915803 -147,2.0,3.0,-8.19544904231211,23.5308726290628 -147,3.0,1.0,-1.7055303166990268,5.1973792282565086 -147,3.0,2.0,-8.19544904231211,23.5308726290628 -147,3.0,3.0,16.314103089185693,-55.509410535254254 -147,3.0,5.0,-6.413123730174556,22.31120356548123 -147,3.0,11.0,0.0,4.191255364806866 -147,4.0,1.0,-1.1359607881738778,4.772479328281356 -147,4.0,4.0,4.089980824135861,-12.190647245055052 -147,4.0,6.0,-2.954020035961983,7.449267916773697 -147,5.0,1.0,-1.6861448807654689,5.116477495334806 -147,5.0,3.0,-6.413123730174556,22.31120356548123 -147,5.0,5.0,22.341631269034565,-82.8291478657789 -147,5.0,6.0,-3.590210423980992,11.02611441072814 -147,5.0,7.0,-6.289308176100628,22.0125786163522 -147,5.0,8.0,0.0,4.915840805411357 -147,5.0,9.0,0.0,1.8561002591115965 -147,5.0,27.0,-4.362844058012917,15.463571542897856 -147,6.0,4.0,-2.954020035961983,7.449267916773697 -147,6.0,5.0,-3.590210423980992,11.02611441072814 -147,6.0,6.0,6.544230459942975,-18.45668232750184 -147,7.0,5.0,-6.289308176100628,22.0125786163522 -147,7.0,7.0,7.733287237496075,-26.527493274828448 -147,7.0,27.0,-1.4439790613954469,4.540814658476248 -147,8.0,5.0,0.0,4.915840805411357 -147,8.0,8.0,0.0,-18.706293706293707 -147,8.0,9.0,0.0,9.090909090909092 -147,8.0,10.0,0.0,4.807692307692308 -147,9.0,5.0,0.0,1.8561002591115965 -147,9.0,8.0,0.0,9.090909090909092 -147,9.0,9.0,13.462042814524237,-41.3837606675224 -147,9.0,16.0,-3.956039125715353,10.317447719844054 -147,9.0,19.0,-1.7848303152666305,3.98535828943083 -147,9.0,20.0,-5.101853820159654,10.98071411292983 -147,9.0,21.0,-2.619319553382597,5.400770303329455 -147,10.0,8.0,0.0,4.807692307692308 -147,10.0,10.0,0.0,-4.807692307692308 -147,11.0,3.0,0.0,4.191255364806866 -147,11.0,11.0,6.573961583776156,-24.424167659260668 -147,11.0,12.0,0.0,7.142857142857143 -147,11.0,13.0,-1.5265676088395577,3.1734252729654173 -147,11.0,14.0,-3.0953961826564296,6.097275864326261 -147,11.0,15.0,-1.9519977922801688,4.104359379111847 -147,12.0,11.0,0.0,7.142857142857143 -147,12.0,12.0,0.0,-7.142857142857143 -147,13.0,11.0,-1.5265676088395577,3.1734252729654173 -147,13.0,13.0,4.01751987283902,-5.424299332335067 -147,13.0,14.0,-2.4909522639994623,2.250874059369649 -147,14.0,11.0,-3.0953961826564296,6.097275864326261 -147,14.0,13.0,-2.4909522639994623,2.250874059369649 -147,14.0,14.0,9.365498545964757,-16.01163373210796 -147,14.0,17.0,-1.8108011504072024,3.687418931630696 -147,14.0,22.0,-1.9683489489016612,3.976064876781356 -147,15.0,11.0,-1.9519977922801688,4.104359379111847 -147,15.0,15.0,3.271064728633931,-8.94513365126506 -147,15.0,16.0,-1.3190669363537617,4.8407742721532125 -147,16.0,9.0,-3.956039125715353,10.317447719844054 -147,16.0,15.0,-1.3190669363537617,4.8407742721532125 -147,16.0,16.0,5.275106062069114,-15.158221991997266 -147,17.0,14.0,-1.8108011504072024,3.687418931630696 -147,17.0,17.0,4.886487584415919,-9.906177730909668 -147,17.0,18.0,-3.0756864340087167,6.218758799278971 -147,18.0,17.0,-3.0756864340087167,6.218758799278971 -147,18.0,18.0,8.958039375185187,-17.98346468163191 -147,18.0,19.0,-5.88235294117647,11.76470588235294 -147,19.0,9.0,-1.7848303152666305,3.98535828943083 -147,19.0,18.0,-5.88235294117647,11.76470588235294 -147,19.0,19.0,7.6671832564431,-15.75006417178377 -147,20.0,9.0,-5.101853820159654,10.98071411292983 -147,20.0,20.0,21.876495189895888,-45.10843276170355 -147,20.0,21.0,-16.774641369736234,34.127718648773715 -147,21.0,9.0,-2.619319553382597,5.400770303329455 -147,21.0,20.0,-16.774641369736234,34.127718648773715 -147,21.0,21.0,21.93449907537439,-43.48289181517921 -147,21.0,23.0,-2.5405381522555563,3.95440286307604 -147,22.0,14.0,-1.9683489489016612,3.976064876781356 -147,22.0,22.0,3.429754555384988,-6.965303617315433 -147,22.0,23.0,-1.4614056064833263,2.989238740534077 -147,23.0,21.0,-2.5405381522555563,3.95440286307604 -147,23.0,22.0,-1.4614056064833263,2.989238740534077 -147,23.0,23.0,5.311836702613133,-9.188263657315172 -147,23.0,24.0,-1.3098929438742493,2.287622053705056 -147,24.0,23.0,-1.3098929438742493,2.287622053705056 -147,24.0,24.0,4.495715080321987,-7.864978761969621 -147,24.0,25.0,-1.2165301194494855,1.8171440463475024 -147,24.0,26.0,-1.9692920169982515,3.760212661917064 -147,25.0,24.0,-1.2165301194494855,1.8171440463475024 -147,25.0,25.0,1.2165301194494855,-1.8171440463475024 -147,26.0,24.0,-1.9692920169982515,3.760212661917064 -147,26.0,26.0,3.652281470778589,-9.46044252232512 -147,26.0,27.0,0.0,2.608731947574922 -147,26.0,28.0,-0.99553355095268,1.881005840357816 -147,26.0,29.0,-0.6874559028276572,1.293971494797717 -147,27.0,5.0,-4.362844058012917,15.463571542897856 -147,27.0,7.0,-1.4439790613954469,4.540814658476248 -147,27.0,26.0,0.0,2.608731947574922 -147,27.0,27.0,5.806823119408364,-22.67145722159613 -147,28.0,26.0,-0.99553355095268,1.881005840357816 -147,28.0,28.0,1.9075867579849564,-3.604364401207048 -147,28.0,29.0,-0.9120532070322764,1.7233585608492326 -147,29.0,26.0,-0.6874559028276572,1.293971494797717 -147,29.0,28.0,-0.9120532070322764,1.7233585608492326 -147,29.0,29.0,1.5995091098599337,-3.0173300556469496 -148,0.0,0.0,6.765516048652632,-21.23160167089863 -148,0.0,1.0,-5.224646179885656,15.646726840803398 -148,0.0,2.0,-1.5408698687669766,5.631674830095234 -148,1.0,0.0,-5.224646179885656,15.646726840803398 -148,1.0,1.0,9.75228216552403,-30.648662892676068 -148,1.0,3.0,-1.7055303166990268,5.1973792282565086 -148,1.0,4.0,-1.1359607881738778,4.772479328281356 -148,1.0,5.0,-1.6861448807654689,5.116477495334806 -148,2.0,0.0,-1.5408698687669766,5.631674830095234 -148,2.0,2.0,9.736318911079088,-29.13794745915803 -148,2.0,3.0,-8.19544904231211,23.5308726290628 -148,3.0,1.0,-1.7055303166990268,5.1973792282565086 -148,3.0,2.0,-8.19544904231211,23.5308726290628 -148,3.0,3.0,16.314103089185693,-55.509410535254254 -148,3.0,5.0,-6.413123730174556,22.31120356548123 -148,3.0,11.0,0.0,4.191255364806866 -148,4.0,1.0,-1.1359607881738778,4.772479328281356 -148,4.0,4.0,4.089980824135861,-12.190647245055052 -148,4.0,6.0,-2.954020035961983,7.449267916773697 -148,5.0,1.0,-1.6861448807654689,5.116477495334806 -148,5.0,3.0,-6.413123730174556,22.31120356548123 -148,5.0,5.0,17.978787211021647,-67.37207632288106 -148,5.0,6.0,-3.590210423980992,11.02611441072814 -148,5.0,7.0,-6.289308176100628,22.0125786163522 -148,5.0,8.0,0.0,4.915840805411357 -148,5.0,9.0,0.0,1.8561002591115965 -148,6.0,4.0,-2.954020035961983,7.449267916773697 -148,6.0,5.0,-3.590210423980992,11.02611441072814 -148,6.0,6.0,6.544230459942975,-18.45668232750184 -148,7.0,5.0,-6.289308176100628,22.0125786163522 -148,7.0,7.0,7.733287237496075,-26.527493274828448 -148,7.0,27.0,-1.4439790613954469,4.540814658476248 -148,8.0,5.0,0.0,4.915840805411357 -148,8.0,8.0,0.0,-9.615384615384617 -148,8.0,10.0,0.0,4.807692307692308 -148,9.0,5.0,0.0,1.8561002591115965 -148,9.0,9.0,13.462042814524237,-32.29285157661331 -148,9.0,16.0,-3.956039125715353,10.317447719844054 -148,9.0,19.0,-1.7848303152666305,3.98535828943083 -148,9.0,20.0,-5.101853820159654,10.98071411292983 -148,9.0,21.0,-2.619319553382597,5.400770303329455 -148,10.0,8.0,0.0,4.807692307692308 -148,10.0,10.0,0.0,-4.807692307692308 -148,11.0,3.0,0.0,4.191255364806866 -148,11.0,11.0,4.621963791495987,-20.31980828014882 -148,11.0,12.0,0.0,7.142857142857143 -148,11.0,13.0,-1.5265676088395577,3.1734252729654173 -148,11.0,14.0,-3.0953961826564296,6.097275864326261 -148,12.0,11.0,0.0,7.142857142857143 -148,12.0,12.0,0.0,-7.142857142857143 -148,13.0,11.0,-1.5265676088395577,3.1734252729654173 -148,13.0,13.0,4.01751987283902,-5.424299332335067 -148,13.0,14.0,-2.4909522639994623,2.250874059369649 -148,14.0,11.0,-3.0953961826564296,6.097275864326261 -148,14.0,13.0,-2.4909522639994623,2.250874059369649 -148,14.0,14.0,9.365498545964757,-16.01163373210796 -148,14.0,17.0,-1.8108011504072024,3.687418931630696 -148,14.0,22.0,-1.9683489489016612,3.976064876781356 -148,15.0,15.0,1.3190669363537617,-4.8407742721532125 -148,15.0,16.0,-1.3190669363537617,4.8407742721532125 -148,16.0,9.0,-3.956039125715353,10.317447719844054 -148,16.0,15.0,-1.3190669363537617,4.8407742721532125 -148,16.0,16.0,5.275106062069114,-15.158221991997266 -148,17.0,14.0,-1.8108011504072024,3.687418931630696 -148,17.0,17.0,4.886487584415919,-9.906177730909668 -148,17.0,18.0,-3.0756864340087167,6.218758799278971 -148,18.0,17.0,-3.0756864340087167,6.218758799278971 -148,18.0,18.0,8.958039375185187,-17.98346468163191 -148,18.0,19.0,-5.88235294117647,11.76470588235294 -148,19.0,9.0,-1.7848303152666305,3.98535828943083 -148,19.0,18.0,-5.88235294117647,11.76470588235294 -148,19.0,19.0,7.6671832564431,-15.75006417178377 -148,20.0,9.0,-5.101853820159654,10.98071411292983 -148,20.0,20.0,21.876495189895888,-45.10843276170355 -148,20.0,21.0,-16.774641369736234,34.127718648773715 -148,21.0,9.0,-2.619319553382597,5.400770303329455 -148,21.0,20.0,-16.774641369736234,34.127718648773715 -148,21.0,21.0,21.93449907537439,-43.48289181517921 -148,21.0,23.0,-2.5405381522555563,3.95440286307604 -148,22.0,14.0,-1.9683489489016612,3.976064876781356 -148,22.0,22.0,3.429754555384988,-6.965303617315433 -148,22.0,23.0,-1.4614056064833263,2.989238740534077 -148,23.0,21.0,-2.5405381522555563,3.95440286307604 -148,23.0,22.0,-1.4614056064833263,2.989238740534077 -148,23.0,23.0,5.311836702613133,-9.188263657315172 -148,23.0,24.0,-1.3098929438742493,2.287622053705056 -148,24.0,23.0,-1.3098929438742493,2.287622053705056 -148,24.0,24.0,4.495715080321987,-7.864978761969621 -148,24.0,25.0,-1.2165301194494855,1.8171440463475024 -148,24.0,26.0,-1.9692920169982515,3.760212661917064 -148,25.0,24.0,-1.2165301194494855,1.8171440463475024 -148,25.0,25.0,1.2165301194494855,-1.8171440463475024 -148,26.0,24.0,-1.9692920169982515,3.760212661917064 -148,26.0,26.0,3.652281470778589,-9.46044252232512 -148,26.0,27.0,0.0,2.608731947574922 -148,26.0,28.0,-0.99553355095268,1.881005840357816 -148,26.0,29.0,-0.6874559028276572,1.293971494797717 -148,27.0,7.0,-1.4439790613954469,4.540814658476248 -148,27.0,26.0,0.0,2.608731947574922 -148,27.0,27.0,1.4439790613954469,-7.214385678698274 -148,28.0,26.0,-0.99553355095268,1.881005840357816 -148,28.0,28.0,1.9075867579849564,-3.604364401207048 -148,28.0,29.0,-0.9120532070322764,1.7233585608492326 -148,29.0,26.0,-0.6874559028276572,1.293971494797717 -148,29.0,28.0,-0.9120532070322764,1.7233585608492326 -148,29.0,29.0,1.5995091098599337,-3.0173300556469496 -149,0.0,0.0,6.765516048652632,-21.23160167089863 -149,0.0,1.0,-5.224646179885656,15.646726840803398 -149,0.0,2.0,-1.5408698687669766,5.631674830095234 -149,1.0,0.0,-5.224646179885656,15.646726840803398 -149,1.0,1.0,9.75228216552403,-30.648662892676068 -149,1.0,3.0,-1.7055303166990268,5.1973792282565086 -149,1.0,4.0,-1.1359607881738778,4.772479328281356 -149,1.0,5.0,-1.6861448807654689,5.116477495334806 -149,2.0,0.0,-1.5408698687669766,5.631674830095234 -149,2.0,2.0,1.5408698687669766,-5.611274830095233 -149,3.0,1.0,-1.7055303166990268,5.1973792282565086 -149,3.0,3.0,8.118654046873583,-31.982737906191456 -149,3.0,5.0,-6.413123730174556,22.31120356548123 -149,3.0,11.0,0.0,4.191255364806866 -149,4.0,1.0,-1.1359607881738778,4.772479328281356 -149,4.0,4.0,4.089980824135861,-12.190647245055052 -149,4.0,6.0,-2.954020035961983,7.449267916773697 -149,5.0,1.0,-1.6861448807654689,5.116477495334806 -149,5.0,3.0,-6.413123730174556,22.31120356548123 -149,5.0,5.0,22.341631269034565,-82.8291478657789 -149,5.0,6.0,-3.590210423980992,11.02611441072814 -149,5.0,7.0,-6.289308176100628,22.0125786163522 -149,5.0,8.0,0.0,4.915840805411357 -149,5.0,9.0,0.0,1.8561002591115965 -149,5.0,27.0,-4.362844058012917,15.463571542897856 -149,6.0,4.0,-2.954020035961983,7.449267916773697 -149,6.0,5.0,-3.590210423980992,11.02611441072814 -149,6.0,6.0,6.544230459942975,-18.45668232750184 -149,7.0,5.0,-6.289308176100628,22.0125786163522 -149,7.0,7.0,7.733287237496075,-26.527493274828448 -149,7.0,27.0,-1.4439790613954469,4.540814658476248 -149,8.0,5.0,0.0,4.915840805411357 -149,8.0,8.0,0.0,-18.706293706293707 -149,8.0,9.0,0.0,9.090909090909092 -149,8.0,10.0,0.0,4.807692307692308 -149,9.0,5.0,0.0,1.8561002591115965 -149,9.0,8.0,0.0,9.090909090909092 -149,9.0,9.0,13.462042814524237,-41.3837606675224 -149,9.0,16.0,-3.956039125715353,10.317447719844054 -149,9.0,19.0,-1.7848303152666305,3.98535828943083 -149,9.0,20.0,-5.101853820159654,10.98071411292983 -149,9.0,21.0,-2.619319553382597,5.400770303329455 -149,10.0,8.0,0.0,4.807692307692308 -149,10.0,10.0,0.0,-4.807692307692308 -149,11.0,3.0,0.0,4.191255364806866 -149,11.0,11.0,5.047393974936599,-21.25074238629525 -149,11.0,12.0,0.0,7.142857142857143 -149,11.0,14.0,-3.0953961826564296,6.097275864326261 -149,11.0,15.0,-1.9519977922801688,4.104359379111847 -149,12.0,11.0,0.0,7.142857142857143 -149,12.0,12.0,0.0,-7.142857142857143 -149,13.0,13.0,2.4909522639994623,-2.250874059369649 -149,13.0,14.0,-2.4909522639994623,2.250874059369649 -149,14.0,11.0,-3.0953961826564296,6.097275864326261 -149,14.0,13.0,-2.4909522639994623,2.250874059369649 -149,14.0,14.0,9.365498545964757,-16.01163373210796 -149,14.0,17.0,-1.8108011504072024,3.687418931630696 -149,14.0,22.0,-1.9683489489016612,3.976064876781356 -149,15.0,11.0,-1.9519977922801688,4.104359379111847 -149,15.0,15.0,3.271064728633931,-8.94513365126506 -149,15.0,16.0,-1.3190669363537617,4.8407742721532125 -149,16.0,9.0,-3.956039125715353,10.317447719844054 -149,16.0,15.0,-1.3190669363537617,4.8407742721532125 -149,16.0,16.0,5.275106062069114,-15.158221991997266 -149,17.0,14.0,-1.8108011504072024,3.687418931630696 -149,17.0,17.0,4.886487584415919,-9.906177730909668 -149,17.0,18.0,-3.0756864340087167,6.218758799278971 -149,18.0,17.0,-3.0756864340087167,6.218758799278971 -149,18.0,18.0,8.958039375185187,-17.98346468163191 -149,18.0,19.0,-5.88235294117647,11.76470588235294 -149,19.0,9.0,-1.7848303152666305,3.98535828943083 -149,19.0,18.0,-5.88235294117647,11.76470588235294 -149,19.0,19.0,7.6671832564431,-15.75006417178377 -149,20.0,9.0,-5.101853820159654,10.98071411292983 -149,20.0,20.0,21.876495189895888,-45.10843276170355 -149,20.0,21.0,-16.774641369736234,34.127718648773715 -149,21.0,9.0,-2.619319553382597,5.400770303329455 -149,21.0,20.0,-16.774641369736234,34.127718648773715 -149,21.0,21.0,21.93449907537439,-43.48289181517921 -149,21.0,23.0,-2.5405381522555563,3.95440286307604 -149,22.0,14.0,-1.9683489489016612,3.976064876781356 -149,22.0,22.0,1.9683489489016612,-3.976064876781356 -149,23.0,21.0,-2.5405381522555563,3.95440286307604 -149,23.0,23.0,3.850431096129806,-6.199024916781094 -149,23.0,24.0,-1.3098929438742493,2.287622053705056 -149,24.0,23.0,-1.3098929438742493,2.287622053705056 -149,24.0,24.0,2.526423063323735,-4.104766100052558 -149,24.0,25.0,-1.2165301194494855,1.8171440463475024 -149,25.0,24.0,-1.2165301194494855,1.8171440463475024 -149,25.0,25.0,1.2165301194494855,-1.8171440463475024 -149,26.0,26.0,1.6829894537803372,-5.700229860408058 -149,26.0,27.0,0.0,2.608731947574922 -149,26.0,28.0,-0.99553355095268,1.881005840357816 -149,26.0,29.0,-0.6874559028276572,1.293971494797717 -149,27.0,5.0,-4.362844058012917,15.463571542897856 -149,27.0,7.0,-1.4439790613954469,4.540814658476248 -149,27.0,26.0,0.0,2.608731947574922 -149,27.0,27.0,5.806823119408364,-22.67145722159613 -149,28.0,26.0,-0.99553355095268,1.881005840357816 -149,28.0,28.0,1.9075867579849564,-3.604364401207048 -149,28.0,29.0,-0.9120532070322764,1.7233585608492326 -149,29.0,26.0,-0.6874559028276572,1.293971494797717 -149,29.0,28.0,-0.9120532070322764,1.7233585608492326 -149,29.0,29.0,1.5995091098599337,-3.0173300556469496 -150,0.0,0.0,6.765516048652632,-21.23160167089863 -150,0.0,1.0,-5.224646179885656,15.646726840803398 -150,0.0,2.0,-1.5408698687669766,5.631674830095234 -150,1.0,0.0,-5.224646179885656,15.646726840803398 -150,1.0,1.0,9.75228216552403,-30.648662892676068 -150,1.0,3.0,-1.7055303166990268,5.1973792282565086 -150,1.0,4.0,-1.1359607881738778,4.772479328281356 -150,1.0,5.0,-1.6861448807654689,5.116477495334806 -150,2.0,0.0,-1.5408698687669766,5.631674830095234 -150,2.0,2.0,9.736318911079088,-29.13794745915803 -150,2.0,3.0,-8.19544904231211,23.5308726290628 -150,3.0,1.0,-1.7055303166990268,5.1973792282565086 -150,3.0,2.0,-8.19544904231211,23.5308726290628 -150,3.0,3.0,16.314103089185693,-55.509410535254254 -150,3.0,5.0,-6.413123730174556,22.31120356548123 -150,3.0,11.0,0.0,4.191255364806866 -150,4.0,1.0,-1.1359607881738778,4.772479328281356 -150,4.0,4.0,4.089980824135861,-12.190647245055052 -150,4.0,6.0,-2.954020035961983,7.449267916773697 -150,5.0,1.0,-1.6861448807654689,5.116477495334806 -150,5.0,3.0,-6.413123730174556,22.31120356548123 -150,5.0,5.0,22.341631269034565,-82.8291478657789 -150,5.0,6.0,-3.590210423980992,11.02611441072814 -150,5.0,7.0,-6.289308176100628,22.0125786163522 -150,5.0,8.0,0.0,4.915840805411357 -150,5.0,9.0,0.0,1.8561002591115965 -150,5.0,27.0,-4.362844058012917,15.463571542897856 -150,6.0,4.0,-2.954020035961983,7.449267916773697 -150,6.0,5.0,-3.590210423980992,11.02611441072814 -150,6.0,6.0,6.544230459942975,-18.45668232750184 -150,7.0,5.0,-6.289308176100628,22.0125786163522 -150,7.0,7.0,7.733287237496075,-26.527493274828448 -150,7.0,27.0,-1.4439790613954469,4.540814658476248 -150,8.0,5.0,0.0,4.915840805411357 -150,8.0,8.0,0.0,-18.706293706293707 -150,8.0,9.0,0.0,9.090909090909092 -150,8.0,10.0,0.0,4.807692307692308 -150,9.0,5.0,0.0,1.8561002591115965 -150,9.0,8.0,0.0,9.090909090909092 -150,9.0,9.0,13.462042814524237,-41.3837606675224 -150,9.0,16.0,-3.956039125715353,10.317447719844054 -150,9.0,19.0,-1.7848303152666305,3.98535828943083 -150,9.0,20.0,-5.101853820159654,10.98071411292983 -150,9.0,21.0,-2.619319553382597,5.400770303329455 -150,10.0,8.0,0.0,4.807692307692308 -150,10.0,10.0,0.0,-4.807692307692308 -150,11.0,3.0,0.0,4.191255364806866 -150,11.0,11.0,6.573961583776156,-24.424167659260668 -150,11.0,12.0,0.0,7.142857142857143 -150,11.0,13.0,-1.5265676088395577,3.1734252729654173 -150,11.0,14.0,-3.0953961826564296,6.097275864326261 -150,11.0,15.0,-1.9519977922801688,4.104359379111847 -150,12.0,11.0,0.0,7.142857142857143 -150,12.0,12.0,0.0,-7.142857142857143 -150,13.0,11.0,-1.5265676088395577,3.1734252729654173 -150,13.0,13.0,4.01751987283902,-5.424299332335067 -150,13.0,14.0,-2.4909522639994623,2.250874059369649 -150,14.0,11.0,-3.0953961826564296,6.097275864326261 -150,14.0,13.0,-2.4909522639994623,2.250874059369649 -150,14.0,14.0,9.365498545964757,-16.01163373210796 -150,14.0,17.0,-1.8108011504072024,3.687418931630696 -150,14.0,22.0,-1.9683489489016612,3.976064876781356 -150,15.0,11.0,-1.9519977922801688,4.104359379111847 -150,15.0,15.0,3.271064728633931,-8.94513365126506 -150,15.0,16.0,-1.3190669363537617,4.8407742721532125 -150,16.0,9.0,-3.956039125715353,10.317447719844054 -150,16.0,15.0,-1.3190669363537617,4.8407742721532125 -150,16.0,16.0,5.275106062069114,-15.158221991997266 -150,17.0,14.0,-1.8108011504072024,3.687418931630696 -150,17.0,17.0,4.886487584415919,-9.906177730909668 -150,17.0,18.0,-3.0756864340087167,6.218758799278971 -150,18.0,17.0,-3.0756864340087167,6.218758799278971 -150,18.0,18.0,8.958039375185187,-17.98346468163191 -150,18.0,19.0,-5.88235294117647,11.76470588235294 -150,19.0,9.0,-1.7848303152666305,3.98535828943083 -150,19.0,18.0,-5.88235294117647,11.76470588235294 -150,19.0,19.0,7.6671832564431,-15.75006417178377 -150,20.0,9.0,-5.101853820159654,10.98071411292983 -150,20.0,20.0,21.876495189895888,-45.10843276170355 -150,20.0,21.0,-16.774641369736234,34.127718648773715 -150,21.0,9.0,-2.619319553382597,5.400770303329455 -150,21.0,20.0,-16.774641369736234,34.127718648773715 -150,21.0,21.0,21.93449907537439,-43.48289181517921 -150,21.0,23.0,-2.5405381522555563,3.95440286307604 -150,22.0,14.0,-1.9683489489016612,3.976064876781356 -150,22.0,22.0,3.429754555384988,-6.965303617315433 -150,22.0,23.0,-1.4614056064833263,2.989238740534077 -150,23.0,21.0,-2.5405381522555563,3.95440286307604 -150,23.0,22.0,-1.4614056064833263,2.989238740534077 -150,23.0,23.0,5.311836702613133,-9.188263657315172 -150,23.0,24.0,-1.3098929438742493,2.287622053705056 -150,24.0,23.0,-1.3098929438742493,2.287622053705056 -150,24.0,24.0,4.495715080321987,-7.864978761969621 -150,24.0,25.0,-1.2165301194494855,1.8171440463475024 -150,24.0,26.0,-1.9692920169982515,3.760212661917064 -150,25.0,24.0,-1.2165301194494855,1.8171440463475024 -150,25.0,25.0,1.2165301194494855,-1.8171440463475024 -150,26.0,24.0,-1.9692920169982515,3.760212661917064 -150,26.0,26.0,3.652281470778589,-9.46044252232512 -150,26.0,27.0,0.0,2.608731947574922 -150,26.0,28.0,-0.99553355095268,1.881005840357816 -150,26.0,29.0,-0.6874559028276572,1.293971494797717 -150,27.0,5.0,-4.362844058012917,15.463571542897856 -150,27.0,7.0,-1.4439790613954469,4.540814658476248 -150,27.0,26.0,0.0,2.608731947574922 -150,27.0,27.0,5.806823119408364,-22.67145722159613 -150,28.0,26.0,-0.99553355095268,1.881005840357816 -150,28.0,28.0,1.9075867579849564,-3.604364401207048 -150,28.0,29.0,-0.9120532070322764,1.7233585608492326 -150,29.0,26.0,-0.6874559028276572,1.293971494797717 -150,29.0,28.0,-0.9120532070322764,1.7233585608492326 -150,29.0,29.0,1.5995091098599337,-3.0173300556469496 -151,0.0,0.0,6.765516048652632,-21.23160167089863 -151,0.0,1.0,-5.224646179885656,15.646726840803398 -151,0.0,2.0,-1.5408698687669766,5.631674830095234 -151,1.0,0.0,-5.224646179885656,15.646726840803398 -151,1.0,1.0,9.75228216552403,-30.648662892676068 -151,1.0,3.0,-1.7055303166990268,5.1973792282565086 -151,1.0,4.0,-1.1359607881738778,4.772479328281356 -151,1.0,5.0,-1.6861448807654689,5.116477495334806 -151,2.0,0.0,-1.5408698687669766,5.631674830095234 -151,2.0,2.0,9.736318911079088,-29.13794745915803 -151,2.0,3.0,-8.19544904231211,23.5308726290628 -151,3.0,1.0,-1.7055303166990268,5.1973792282565086 -151,3.0,2.0,-8.19544904231211,23.5308726290628 -151,3.0,3.0,16.314103089185693,-55.509410535254254 -151,3.0,5.0,-6.413123730174556,22.31120356548123 -151,3.0,11.0,0.0,4.191255364806866 -151,4.0,1.0,-1.1359607881738778,4.772479328281356 -151,4.0,4.0,4.089980824135861,-12.190647245055052 -151,4.0,6.0,-2.954020035961983,7.449267916773697 -151,5.0,1.0,-1.6861448807654689,5.116477495334806 -151,5.0,3.0,-6.413123730174556,22.31120356548123 -151,5.0,5.0,22.341631269034565,-82.8291478657789 -151,5.0,6.0,-3.590210423980992,11.02611441072814 -151,5.0,7.0,-6.289308176100628,22.0125786163522 -151,5.0,8.0,0.0,4.915840805411357 -151,5.0,9.0,0.0,1.8561002591115965 -151,5.0,27.0,-4.362844058012917,15.463571542897856 -151,6.0,4.0,-2.954020035961983,7.449267916773697 -151,6.0,5.0,-3.590210423980992,11.02611441072814 -151,6.0,6.0,6.544230459942975,-18.45668232750184 -151,7.0,5.0,-6.289308176100628,22.0125786163522 -151,7.0,7.0,7.733287237496075,-26.527493274828448 -151,7.0,27.0,-1.4439790613954469,4.540814658476248 -151,8.0,5.0,0.0,4.915840805411357 -151,8.0,8.0,0.0,-18.706293706293707 -151,8.0,9.0,0.0,9.090909090909092 -151,8.0,10.0,0.0,4.807692307692308 -151,9.0,5.0,0.0,1.8561002591115965 -151,9.0,8.0,0.0,9.090909090909092 -151,9.0,9.0,13.462042814524237,-41.3837606675224 -151,9.0,16.0,-3.956039125715353,10.317447719844054 -151,9.0,19.0,-1.7848303152666305,3.98535828943083 -151,9.0,20.0,-5.101853820159654,10.98071411292983 -151,9.0,21.0,-2.619319553382597,5.400770303329455 -151,10.0,8.0,0.0,4.807692307692308 -151,10.0,10.0,0.0,-4.807692307692308 -151,11.0,3.0,0.0,4.191255364806866 -151,11.0,11.0,6.573961583776156,-24.424167659260668 -151,11.0,12.0,0.0,7.142857142857143 -151,11.0,13.0,-1.5265676088395577,3.1734252729654173 -151,11.0,14.0,-3.0953961826564296,6.097275864326261 -151,11.0,15.0,-1.9519977922801688,4.104359379111847 -151,12.0,11.0,0.0,7.142857142857143 -151,12.0,12.0,0.0,-7.142857142857143 -151,13.0,11.0,-1.5265676088395577,3.1734252729654173 -151,13.0,13.0,4.01751987283902,-5.424299332335067 -151,13.0,14.0,-2.4909522639994623,2.250874059369649 -151,14.0,11.0,-3.0953961826564296,6.097275864326261 -151,14.0,13.0,-2.4909522639994623,2.250874059369649 -151,14.0,14.0,9.365498545964757,-16.01163373210796 -151,14.0,17.0,-1.8108011504072024,3.687418931630696 -151,14.0,22.0,-1.9683489489016612,3.976064876781356 -151,15.0,11.0,-1.9519977922801688,4.104359379111847 -151,15.0,15.0,3.271064728633931,-8.94513365126506 -151,15.0,16.0,-1.3190669363537617,4.8407742721532125 -151,16.0,9.0,-3.956039125715353,10.317447719844054 -151,16.0,15.0,-1.3190669363537617,4.8407742721532125 -151,16.0,16.0,5.275106062069114,-15.158221991997266 -151,17.0,14.0,-1.8108011504072024,3.687418931630696 -151,17.0,17.0,4.886487584415919,-9.906177730909668 -151,17.0,18.0,-3.0756864340087167,6.218758799278971 -151,18.0,17.0,-3.0756864340087167,6.218758799278971 -151,18.0,18.0,8.958039375185187,-17.98346468163191 -151,18.0,19.0,-5.88235294117647,11.76470588235294 -151,19.0,9.0,-1.7848303152666305,3.98535828943083 -151,19.0,18.0,-5.88235294117647,11.76470588235294 -151,19.0,19.0,7.6671832564431,-15.75006417178377 -151,20.0,9.0,-5.101853820159654,10.98071411292983 -151,20.0,20.0,21.876495189895888,-45.10843276170355 -151,20.0,21.0,-16.774641369736234,34.127718648773715 -151,21.0,9.0,-2.619319553382597,5.400770303329455 -151,21.0,20.0,-16.774641369736234,34.127718648773715 -151,21.0,21.0,21.93449907537439,-43.48289181517921 -151,21.0,23.0,-2.5405381522555563,3.95440286307604 -151,22.0,14.0,-1.9683489489016612,3.976064876781356 -151,22.0,22.0,3.429754555384988,-6.965303617315433 -151,22.0,23.0,-1.4614056064833263,2.989238740534077 -151,23.0,21.0,-2.5405381522555563,3.95440286307604 -151,23.0,22.0,-1.4614056064833263,2.989238740534077 -151,23.0,23.0,5.311836702613133,-9.188263657315172 -151,23.0,24.0,-1.3098929438742493,2.287622053705056 -151,24.0,23.0,-1.3098929438742493,2.287622053705056 -151,24.0,24.0,4.495715080321987,-7.864978761969621 -151,24.0,25.0,-1.2165301194494855,1.8171440463475024 -151,24.0,26.0,-1.9692920169982515,3.760212661917064 -151,25.0,24.0,-1.2165301194494855,1.8171440463475024 -151,25.0,25.0,1.2165301194494855,-1.8171440463475024 -151,26.0,24.0,-1.9692920169982515,3.760212661917064 -151,26.0,26.0,3.652281470778589,-9.46044252232512 -151,26.0,27.0,0.0,2.608731947574922 -151,26.0,28.0,-0.99553355095268,1.881005840357816 -151,26.0,29.0,-0.6874559028276572,1.293971494797717 -151,27.0,5.0,-4.362844058012917,15.463571542897856 -151,27.0,7.0,-1.4439790613954469,4.540814658476248 -151,27.0,26.0,0.0,2.608731947574922 -151,27.0,27.0,5.806823119408364,-22.67145722159613 -151,28.0,26.0,-0.99553355095268,1.881005840357816 -151,28.0,28.0,1.9075867579849564,-3.604364401207048 -151,28.0,29.0,-0.9120532070322764,1.7233585608492326 -151,29.0,26.0,-0.6874559028276572,1.293971494797717 -151,29.0,28.0,-0.9120532070322764,1.7233585608492326 -151,29.0,29.0,1.5995091098599337,-3.0173300556469496 -152,0.0,0.0,6.765516048652632,-21.23160167089863 -152,0.0,1.0,-5.224646179885656,15.646726840803398 -152,0.0,2.0,-1.5408698687669766,5.631674830095234 -152,1.0,0.0,-5.224646179885656,15.646726840803398 -152,1.0,1.0,9.75228216552403,-30.648662892676068 -152,1.0,3.0,-1.7055303166990268,5.1973792282565086 -152,1.0,4.0,-1.1359607881738778,4.772479328281356 -152,1.0,5.0,-1.6861448807654689,5.116477495334806 -152,2.0,0.0,-1.5408698687669766,5.631674830095234 -152,2.0,2.0,9.736318911079088,-29.13794745915803 -152,2.0,3.0,-8.19544904231211,23.5308726290628 -152,3.0,1.0,-1.7055303166990268,5.1973792282565086 -152,3.0,2.0,-8.19544904231211,23.5308726290628 -152,3.0,3.0,16.314103089185693,-55.509410535254254 -152,3.0,5.0,-6.413123730174556,22.31120356548123 -152,3.0,11.0,0.0,4.191255364806866 -152,4.0,1.0,-1.1359607881738778,4.772479328281356 -152,4.0,4.0,4.089980824135861,-12.190647245055052 -152,4.0,6.0,-2.954020035961983,7.449267916773697 -152,5.0,1.0,-1.6861448807654689,5.116477495334806 -152,5.0,3.0,-6.413123730174556,22.31120356548123 -152,5.0,5.0,16.052323092933932,-60.8210692494267 -152,5.0,6.0,-3.590210423980992,11.02611441072814 -152,5.0,8.0,0.0,4.915840805411357 -152,5.0,9.0,0.0,1.8561002591115965 -152,5.0,27.0,-4.362844058012917,15.463571542897856 -152,6.0,4.0,-2.954020035961983,7.449267916773697 -152,6.0,5.0,-3.590210423980992,11.02611441072814 -152,6.0,6.0,6.544230459942975,-18.45668232750184 -152,7.0,7.0,1.4439790613954469,-4.519414658476248 -152,7.0,27.0,-1.4439790613954469,4.540814658476248 -152,8.0,5.0,0.0,4.915840805411357 -152,8.0,8.0,0.0,-18.706293706293707 -152,8.0,9.0,0.0,9.090909090909092 -152,8.0,10.0,0.0,4.807692307692308 -152,9.0,5.0,0.0,1.8561002591115965 -152,9.0,8.0,0.0,9.090909090909092 -152,9.0,9.0,13.462042814524237,-41.3837606675224 -152,9.0,16.0,-3.956039125715353,10.317447719844054 -152,9.0,19.0,-1.7848303152666305,3.98535828943083 -152,9.0,20.0,-5.101853820159654,10.98071411292983 -152,9.0,21.0,-2.619319553382597,5.400770303329455 -152,10.0,8.0,0.0,4.807692307692308 -152,10.0,10.0,0.0,-4.807692307692308 -152,11.0,3.0,0.0,4.191255364806866 -152,11.0,11.0,6.573961583776156,-24.424167659260668 -152,11.0,12.0,0.0,7.142857142857143 -152,11.0,13.0,-1.5265676088395577,3.1734252729654173 -152,11.0,14.0,-3.0953961826564296,6.097275864326261 -152,11.0,15.0,-1.9519977922801688,4.104359379111847 -152,12.0,11.0,0.0,7.142857142857143 -152,12.0,12.0,0.0,-7.142857142857143 -152,13.0,11.0,-1.5265676088395577,3.1734252729654173 -152,13.0,13.0,4.01751987283902,-5.424299332335067 -152,13.0,14.0,-2.4909522639994623,2.250874059369649 -152,14.0,11.0,-3.0953961826564296,6.097275864326261 -152,14.0,13.0,-2.4909522639994623,2.250874059369649 -152,14.0,14.0,9.365498545964757,-16.01163373210796 -152,14.0,17.0,-1.8108011504072024,3.687418931630696 -152,14.0,22.0,-1.9683489489016612,3.976064876781356 -152,15.0,11.0,-1.9519977922801688,4.104359379111847 -152,15.0,15.0,3.271064728633931,-8.94513365126506 -152,15.0,16.0,-1.3190669363537617,4.8407742721532125 -152,16.0,9.0,-3.956039125715353,10.317447719844054 -152,16.0,15.0,-1.3190669363537617,4.8407742721532125 -152,16.0,16.0,5.275106062069114,-15.158221991997266 -152,17.0,14.0,-1.8108011504072024,3.687418931630696 -152,17.0,17.0,4.886487584415919,-9.906177730909668 -152,17.0,18.0,-3.0756864340087167,6.218758799278971 -152,18.0,17.0,-3.0756864340087167,6.218758799278971 -152,18.0,18.0,8.958039375185187,-17.98346468163191 -152,18.0,19.0,-5.88235294117647,11.76470588235294 -152,19.0,9.0,-1.7848303152666305,3.98535828943083 -152,19.0,18.0,-5.88235294117647,11.76470588235294 -152,19.0,19.0,7.6671832564431,-15.75006417178377 -152,20.0,9.0,-5.101853820159654,10.98071411292983 -152,20.0,20.0,21.876495189895888,-45.10843276170355 -152,20.0,21.0,-16.774641369736234,34.127718648773715 -152,21.0,9.0,-2.619319553382597,5.400770303329455 -152,21.0,20.0,-16.774641369736234,34.127718648773715 -152,21.0,21.0,21.93449907537439,-43.48289181517921 -152,21.0,23.0,-2.5405381522555563,3.95440286307604 -152,22.0,14.0,-1.9683489489016612,3.976064876781356 -152,22.0,22.0,3.429754555384988,-6.965303617315433 -152,22.0,23.0,-1.4614056064833263,2.989238740534077 -152,23.0,21.0,-2.5405381522555563,3.95440286307604 -152,23.0,22.0,-1.4614056064833263,2.989238740534077 -152,23.0,23.0,5.311836702613133,-9.188263657315172 -152,23.0,24.0,-1.3098929438742493,2.287622053705056 -152,24.0,23.0,-1.3098929438742493,2.287622053705056 -152,24.0,24.0,4.495715080321987,-7.864978761969621 -152,24.0,25.0,-1.2165301194494855,1.8171440463475024 -152,24.0,26.0,-1.9692920169982515,3.760212661917064 -152,25.0,24.0,-1.2165301194494855,1.8171440463475024 -152,25.0,25.0,1.2165301194494855,-1.8171440463475024 -152,26.0,24.0,-1.9692920169982515,3.760212661917064 -152,26.0,26.0,3.652281470778589,-9.46044252232512 -152,26.0,27.0,0.0,2.608731947574922 -152,26.0,28.0,-0.99553355095268,1.881005840357816 -152,26.0,29.0,-0.6874559028276572,1.293971494797717 -152,27.0,5.0,-4.362844058012917,15.463571542897856 -152,27.0,7.0,-1.4439790613954469,4.540814658476248 -152,27.0,26.0,0.0,2.608731947574922 -152,27.0,27.0,5.806823119408364,-22.67145722159613 -152,28.0,26.0,-0.99553355095268,1.881005840357816 -152,28.0,28.0,1.9075867579849564,-3.604364401207048 -152,28.0,29.0,-0.9120532070322764,1.7233585608492326 -152,29.0,26.0,-0.6874559028276572,1.293971494797717 -152,29.0,28.0,-0.9120532070322764,1.7233585608492326 -152,29.0,29.0,1.5995091098599337,-3.0173300556469496 -153,0.0,0.0,6.765516048652632,-21.23160167089863 -153,0.0,1.0,-5.224646179885656,15.646726840803398 -153,0.0,2.0,-1.5408698687669766,5.631674830095234 -153,1.0,0.0,-5.224646179885656,15.646726840803398 -153,1.0,1.0,8.046751848825002,-25.46968366441956 -153,1.0,4.0,-1.1359607881738778,4.772479328281356 -153,1.0,5.0,-1.6861448807654689,5.116477495334806 -153,2.0,0.0,-1.5408698687669766,5.631674830095234 -153,2.0,2.0,9.736318911079088,-29.13794745915803 -153,2.0,3.0,-8.19544904231211,23.5308726290628 -153,3.0,2.0,-8.19544904231211,23.5308726290628 -153,3.0,3.0,14.608572772486664,-50.33043130699775 -153,3.0,5.0,-6.413123730174556,22.31120356548123 -153,3.0,11.0,0.0,4.191255364806866 -153,4.0,1.0,-1.1359607881738778,4.772479328281356 -153,4.0,4.0,4.089980824135861,-12.190647245055052 -153,4.0,6.0,-2.954020035961983,7.449267916773697 -153,5.0,1.0,-1.6861448807654689,5.116477495334806 -153,5.0,3.0,-6.413123730174556,22.31120356548123 -153,5.0,5.0,16.052323092933932,-55.79464715800405 -153,5.0,6.0,-3.590210423980992,11.02611441072814 -153,5.0,9.0,0.0,1.8561002591115965 -153,5.0,27.0,-4.362844058012917,15.463571542897856 -153,6.0,4.0,-2.954020035961983,7.449267916773697 -153,6.0,5.0,-3.590210423980992,11.02611441072814 -153,6.0,6.0,6.544230459942975,-18.45668232750184 -153,7.0,7.0,1.4439790613954469,-4.519414658476248 -153,7.0,27.0,-1.4439790613954469,4.540814658476248 -153,8.0,8.0,0.0,-13.8986013986014 -153,8.0,9.0,0.0,9.090909090909092 -153,8.0,10.0,0.0,4.807692307692308 -153,9.0,5.0,0.0,1.8561002591115965 -153,9.0,8.0,0.0,9.090909090909092 -153,9.0,9.0,13.462042814524237,-41.3837606675224 -153,9.0,16.0,-3.956039125715353,10.317447719844054 -153,9.0,19.0,-1.7848303152666305,3.98535828943083 -153,9.0,20.0,-5.101853820159654,10.98071411292983 -153,9.0,21.0,-2.619319553382597,5.400770303329455 -153,10.0,8.0,0.0,4.807692307692308 -153,10.0,10.0,0.0,-4.807692307692308 -153,11.0,3.0,0.0,4.191255364806866 -153,11.0,11.0,6.573961583776156,-24.424167659260668 -153,11.0,12.0,0.0,7.142857142857143 -153,11.0,13.0,-1.5265676088395577,3.1734252729654173 -153,11.0,14.0,-3.0953961826564296,6.097275864326261 -153,11.0,15.0,-1.9519977922801688,4.104359379111847 -153,12.0,11.0,0.0,7.142857142857143 -153,12.0,12.0,0.0,-7.142857142857143 -153,13.0,11.0,-1.5265676088395577,3.1734252729654173 -153,13.0,13.0,4.01751987283902,-5.424299332335067 -153,13.0,14.0,-2.4909522639994623,2.250874059369649 -153,14.0,11.0,-3.0953961826564296,6.097275864326261 -153,14.0,13.0,-2.4909522639994623,2.250874059369649 -153,14.0,14.0,7.554697395557554,-12.324214800477266 -153,14.0,22.0,-1.9683489489016612,3.976064876781356 -153,15.0,11.0,-1.9519977922801688,4.104359379111847 -153,15.0,15.0,3.271064728633931,-8.94513365126506 -153,15.0,16.0,-1.3190669363537617,4.8407742721532125 -153,16.0,9.0,-3.956039125715353,10.317447719844054 -153,16.0,15.0,-1.3190669363537617,4.8407742721532125 -153,16.0,16.0,5.275106062069114,-15.158221991997266 -153,17.0,17.0,3.0756864340087167,-6.218758799278971 -153,17.0,18.0,-3.0756864340087167,6.218758799278971 -153,18.0,17.0,-3.0756864340087167,6.218758799278971 -153,18.0,18.0,8.958039375185187,-17.98346468163191 -153,18.0,19.0,-5.88235294117647,11.76470588235294 -153,19.0,9.0,-1.7848303152666305,3.98535828943083 -153,19.0,18.0,-5.88235294117647,11.76470588235294 -153,19.0,19.0,7.6671832564431,-15.75006417178377 -153,20.0,9.0,-5.101853820159654,10.98071411292983 -153,20.0,20.0,21.876495189895888,-45.10843276170355 -153,20.0,21.0,-16.774641369736234,34.127718648773715 -153,21.0,9.0,-2.619319553382597,5.400770303329455 -153,21.0,20.0,-16.774641369736234,34.127718648773715 -153,21.0,21.0,21.93449907537439,-43.48289181517921 -153,21.0,23.0,-2.5405381522555563,3.95440286307604 -153,22.0,14.0,-1.9683489489016612,3.976064876781356 -153,22.0,22.0,3.429754555384988,-6.965303617315433 -153,22.0,23.0,-1.4614056064833263,2.989238740534077 -153,23.0,21.0,-2.5405381522555563,3.95440286307604 -153,23.0,22.0,-1.4614056064833263,2.989238740534077 -153,23.0,23.0,5.311836702613133,-9.188263657315172 -153,23.0,24.0,-1.3098929438742493,2.287622053705056 -153,24.0,23.0,-1.3098929438742493,2.287622053705056 -153,24.0,24.0,4.495715080321987,-7.864978761969621 -153,24.0,25.0,-1.2165301194494855,1.8171440463475024 -153,24.0,26.0,-1.9692920169982515,3.760212661917064 -153,25.0,24.0,-1.2165301194494855,1.8171440463475024 -153,25.0,25.0,1.2165301194494855,-1.8171440463475024 -153,26.0,24.0,-1.9692920169982515,3.760212661917064 -153,26.0,26.0,3.652281470778589,-9.46044252232512 -153,26.0,27.0,0.0,2.608731947574922 -153,26.0,28.0,-0.99553355095268,1.881005840357816 -153,26.0,29.0,-0.6874559028276572,1.293971494797717 -153,27.0,5.0,-4.362844058012917,15.463571542897856 -153,27.0,7.0,-1.4439790613954469,4.540814658476248 -153,27.0,26.0,0.0,2.608731947574922 -153,27.0,27.0,5.806823119408364,-22.67145722159613 -153,28.0,26.0,-0.99553355095268,1.881005840357816 -153,28.0,28.0,0.99553355095268,-1.881005840357816 -153,29.0,26.0,-0.6874559028276572,1.293971494797717 -153,29.0,29.0,0.6874559028276572,-1.293971494797717 -154,0.0,0.0,6.765516048652632,-21.23160167089863 -154,0.0,1.0,-5.224646179885656,15.646726840803398 -154,0.0,2.0,-1.5408698687669766,5.631674830095234 -154,1.0,0.0,-5.224646179885656,15.646726840803398 -154,1.0,1.0,8.066137284758561,-25.55088539734126 -154,1.0,3.0,-1.7055303166990268,5.1973792282565086 -154,1.0,4.0,-1.1359607881738778,4.772479328281356 -154,2.0,0.0,-1.5408698687669766,5.631674830095234 -154,2.0,2.0,9.736318911079088,-29.13794745915803 -154,2.0,3.0,-8.19544904231211,23.5308726290628 -154,3.0,1.0,-1.7055303166990268,5.1973792282565086 -154,3.0,2.0,-8.19544904231211,23.5308726290628 -154,3.0,3.0,16.314103089185693,-55.509410535254254 -154,3.0,5.0,-6.413123730174556,22.31120356548123 -154,3.0,11.0,0.0,4.191255364806866 -154,4.0,1.0,-1.1359607881738778,4.772479328281356 -154,4.0,4.0,4.089980824135861,-12.190647245055052 -154,4.0,6.0,-2.954020035961983,7.449267916773697 -154,5.0,3.0,-6.413123730174556,22.31120356548123 -154,5.0,5.0,20.655486388269097,-77.7313703704441 -154,5.0,6.0,-3.590210423980992,11.02611441072814 -154,5.0,7.0,-6.289308176100628,22.0125786163522 -154,5.0,8.0,0.0,4.915840805411357 -154,5.0,9.0,0.0,1.8561002591115965 -154,5.0,27.0,-4.362844058012917,15.463571542897856 -154,6.0,4.0,-2.954020035961983,7.449267916773697 -154,6.0,5.0,-3.590210423980992,11.02611441072814 -154,6.0,6.0,6.544230459942975,-18.45668232750184 -154,7.0,5.0,-6.289308176100628,22.0125786163522 -154,7.0,7.0,6.289308176100628,-22.0080786163522 -154,8.0,5.0,0.0,4.915840805411357 -154,8.0,8.0,0.0,-9.615384615384617 -154,8.0,10.0,0.0,4.807692307692308 -154,9.0,5.0,0.0,1.8561002591115965 -154,9.0,9.0,13.462042814524237,-32.29285157661331 -154,9.0,16.0,-3.956039125715353,10.317447719844054 -154,9.0,19.0,-1.7848303152666305,3.98535828943083 -154,9.0,20.0,-5.101853820159654,10.98071411292983 -154,9.0,21.0,-2.619319553382597,5.400770303329455 -154,10.0,8.0,0.0,4.807692307692308 -154,10.0,10.0,0.0,-4.807692307692308 -154,11.0,3.0,0.0,4.191255364806866 -154,11.0,11.0,6.573961583776156,-24.424167659260668 -154,11.0,12.0,0.0,7.142857142857143 -154,11.0,13.0,-1.5265676088395577,3.1734252729654173 -154,11.0,14.0,-3.0953961826564296,6.097275864326261 -154,11.0,15.0,-1.9519977922801688,4.104359379111847 -154,12.0,11.0,0.0,7.142857142857143 -154,12.0,12.0,0.0,-7.142857142857143 -154,13.0,11.0,-1.5265676088395577,3.1734252729654173 -154,13.0,13.0,4.01751987283902,-5.424299332335067 -154,13.0,14.0,-2.4909522639994623,2.250874059369649 -154,14.0,11.0,-3.0953961826564296,6.097275864326261 -154,14.0,13.0,-2.4909522639994623,2.250874059369649 -154,14.0,14.0,9.365498545964757,-16.01163373210796 -154,14.0,17.0,-1.8108011504072024,3.687418931630696 -154,14.0,22.0,-1.9683489489016612,3.976064876781356 -154,15.0,11.0,-1.9519977922801688,4.104359379111847 -154,15.0,15.0,3.271064728633931,-8.94513365126506 -154,15.0,16.0,-1.3190669363537617,4.8407742721532125 -154,16.0,9.0,-3.956039125715353,10.317447719844054 -154,16.0,15.0,-1.3190669363537617,4.8407742721532125 -154,16.0,16.0,5.275106062069114,-15.158221991997266 -154,17.0,14.0,-1.8108011504072024,3.687418931630696 -154,17.0,17.0,4.886487584415919,-9.906177730909668 -154,17.0,18.0,-3.0756864340087167,6.218758799278971 -154,18.0,17.0,-3.0756864340087167,6.218758799278971 -154,18.0,18.0,8.958039375185187,-17.98346468163191 -154,18.0,19.0,-5.88235294117647,11.76470588235294 -154,19.0,9.0,-1.7848303152666305,3.98535828943083 -154,19.0,18.0,-5.88235294117647,11.76470588235294 -154,19.0,19.0,7.6671832564431,-15.75006417178377 -154,20.0,9.0,-5.101853820159654,10.98071411292983 -154,20.0,20.0,21.876495189895888,-45.10843276170355 -154,20.0,21.0,-16.774641369736234,34.127718648773715 -154,21.0,9.0,-2.619319553382597,5.400770303329455 -154,21.0,20.0,-16.774641369736234,34.127718648773715 -154,21.0,21.0,19.393960923118836,-39.52848895210317 -154,22.0,14.0,-1.9683489489016612,3.976064876781356 -154,22.0,22.0,3.429754555384988,-6.965303617315433 -154,22.0,23.0,-1.4614056064833263,2.989238740534077 -154,23.0,22.0,-1.4614056064833263,2.989238740534077 -154,23.0,23.0,2.771298550357576,-5.233860794239132 -154,23.0,24.0,-1.3098929438742493,2.287622053705056 -154,24.0,23.0,-1.3098929438742493,2.287622053705056 -154,24.0,24.0,4.495715080321987,-7.864978761969621 -154,24.0,25.0,-1.2165301194494855,1.8171440463475024 -154,24.0,26.0,-1.9692920169982515,3.760212661917064 -154,25.0,24.0,-1.2165301194494855,1.8171440463475024 -154,25.0,25.0,1.2165301194494855,-1.8171440463475024 -154,26.0,24.0,-1.9692920169982515,3.760212661917064 -154,26.0,26.0,3.652281470778589,-9.46044252232512 -154,26.0,27.0,0.0,2.608731947574922 -154,26.0,28.0,-0.99553355095268,1.881005840357816 -154,26.0,29.0,-0.6874559028276572,1.293971494797717 -154,27.0,5.0,-4.362844058012917,15.463571542897856 -154,27.0,26.0,0.0,2.608731947574922 -154,27.0,27.0,4.362844058012917,-18.15204256311988 -154,28.0,26.0,-0.99553355095268,1.881005840357816 -154,28.0,28.0,1.9075867579849564,-3.604364401207048 -154,28.0,29.0,-0.9120532070322764,1.7233585608492326 -154,29.0,26.0,-0.6874559028276572,1.293971494797717 -154,29.0,28.0,-0.9120532070322764,1.7233585608492326 -154,29.0,29.0,1.5995091098599337,-3.0173300556469496 -155,0.0,0.0,6.765516048652632,-21.23160167089863 -155,0.0,1.0,-5.224646179885656,15.646726840803398 -155,0.0,2.0,-1.5408698687669766,5.631674830095234 -155,1.0,0.0,-5.224646179885656,15.646726840803398 -155,1.0,1.0,9.75228216552403,-30.648662892676068 -155,1.0,3.0,-1.7055303166990268,5.1973792282565086 -155,1.0,4.0,-1.1359607881738778,4.772479328281356 -155,1.0,5.0,-1.6861448807654689,5.116477495334806 -155,2.0,0.0,-1.5408698687669766,5.631674830095234 -155,2.0,2.0,9.736318911079088,-29.13794745915803 -155,2.0,3.0,-8.19544904231211,23.5308726290628 -155,3.0,1.0,-1.7055303166990268,5.1973792282565086 -155,3.0,2.0,-8.19544904231211,23.5308726290628 -155,3.0,3.0,16.314103089185693,-55.509410535254254 -155,3.0,5.0,-6.413123730174556,22.31120356548123 -155,3.0,11.0,0.0,4.191255364806866 -155,4.0,1.0,-1.1359607881738778,4.772479328281356 -155,4.0,4.0,4.089980824135861,-12.190647245055052 -155,4.0,6.0,-2.954020035961983,7.449267916773697 -155,5.0,1.0,-1.6861448807654689,5.116477495334806 -155,5.0,3.0,-6.413123730174556,22.31120356548123 -155,5.0,5.0,22.341631269034565,-82.8291478657789 -155,5.0,6.0,-3.590210423980992,11.02611441072814 -155,5.0,7.0,-6.289308176100628,22.0125786163522 -155,5.0,8.0,0.0,4.915840805411357 -155,5.0,9.0,0.0,1.8561002591115965 -155,5.0,27.0,-4.362844058012917,15.463571542897856 -155,6.0,4.0,-2.954020035961983,7.449267916773697 -155,6.0,5.0,-3.590210423980992,11.02611441072814 -155,6.0,6.0,6.544230459942975,-18.45668232750184 -155,7.0,5.0,-6.289308176100628,22.0125786163522 -155,7.0,7.0,7.733287237496075,-26.527493274828448 -155,7.0,27.0,-1.4439790613954469,4.540814658476248 -155,8.0,5.0,0.0,4.915840805411357 -155,8.0,8.0,0.0,-18.706293706293707 -155,8.0,9.0,0.0,9.090909090909092 -155,8.0,10.0,0.0,4.807692307692308 -155,9.0,5.0,0.0,1.8561002591115965 -155,9.0,8.0,0.0,9.090909090909092 -155,9.0,9.0,9.506003688808882,-31.06631294767834 -155,9.0,19.0,-1.7848303152666305,3.98535828943083 -155,9.0,20.0,-5.101853820159654,10.98071411292983 -155,9.0,21.0,-2.619319553382597,5.400770303329455 -155,10.0,8.0,0.0,4.807692307692308 -155,10.0,10.0,0.0,-4.807692307692308 -155,11.0,3.0,0.0,4.191255364806866 -155,11.0,11.0,6.573961583776156,-24.424167659260668 -155,11.0,12.0,0.0,7.142857142857143 -155,11.0,13.0,-1.5265676088395577,3.1734252729654173 -155,11.0,14.0,-3.0953961826564296,6.097275864326261 -155,11.0,15.0,-1.9519977922801688,4.104359379111847 -155,12.0,11.0,0.0,7.142857142857143 -155,12.0,12.0,0.0,-7.142857142857143 -155,13.0,11.0,-1.5265676088395577,3.1734252729654173 -155,13.0,13.0,4.01751987283902,-5.424299332335067 -155,13.0,14.0,-2.4909522639994623,2.250874059369649 -155,14.0,11.0,-3.0953961826564296,6.097275864326261 -155,14.0,13.0,-2.4909522639994623,2.250874059369649 -155,14.0,14.0,9.365498545964757,-16.01163373210796 -155,14.0,17.0,-1.8108011504072024,3.687418931630696 -155,14.0,22.0,-1.9683489489016612,3.976064876781356 -155,15.0,11.0,-1.9519977922801688,4.104359379111847 -155,15.0,15.0,3.271064728633931,-8.94513365126506 -155,15.0,16.0,-1.3190669363537617,4.8407742721532125 -155,16.0,15.0,-1.3190669363537617,4.8407742721532125 -155,16.0,16.0,1.3190669363537617,-4.8407742721532125 -155,17.0,14.0,-1.8108011504072024,3.687418931630696 -155,17.0,17.0,4.886487584415919,-9.906177730909668 -155,17.0,18.0,-3.0756864340087167,6.218758799278971 -155,18.0,17.0,-3.0756864340087167,6.218758799278971 -155,18.0,18.0,3.0756864340087167,-6.218758799278971 -155,19.0,9.0,-1.7848303152666305,3.98535828943083 -155,19.0,19.0,1.7848303152666305,-3.98535828943083 -155,20.0,9.0,-5.101853820159654,10.98071411292983 -155,20.0,20.0,21.876495189895888,-45.10843276170355 -155,20.0,21.0,-16.774641369736234,34.127718648773715 -155,21.0,9.0,-2.619319553382597,5.400770303329455 -155,21.0,20.0,-16.774641369736234,34.127718648773715 -155,21.0,21.0,21.93449907537439,-43.48289181517921 -155,21.0,23.0,-2.5405381522555563,3.95440286307604 -155,22.0,14.0,-1.9683489489016612,3.976064876781356 -155,22.0,22.0,3.429754555384988,-6.965303617315433 -155,22.0,23.0,-1.4614056064833263,2.989238740534077 -155,23.0,21.0,-2.5405381522555563,3.95440286307604 -155,23.0,22.0,-1.4614056064833263,2.989238740534077 -155,23.0,23.0,5.311836702613133,-9.188263657315172 -155,23.0,24.0,-1.3098929438742493,2.287622053705056 -155,24.0,23.0,-1.3098929438742493,2.287622053705056 -155,24.0,24.0,4.495715080321987,-7.864978761969621 -155,24.0,25.0,-1.2165301194494855,1.8171440463475024 -155,24.0,26.0,-1.9692920169982515,3.760212661917064 -155,25.0,24.0,-1.2165301194494855,1.8171440463475024 -155,25.0,25.0,1.2165301194494855,-1.8171440463475024 -155,26.0,24.0,-1.9692920169982515,3.760212661917064 -155,26.0,26.0,3.652281470778589,-9.46044252232512 -155,26.0,27.0,0.0,2.608731947574922 -155,26.0,28.0,-0.99553355095268,1.881005840357816 -155,26.0,29.0,-0.6874559028276572,1.293971494797717 -155,27.0,5.0,-4.362844058012917,15.463571542897856 -155,27.0,7.0,-1.4439790613954469,4.540814658476248 -155,27.0,26.0,0.0,2.608731947574922 -155,27.0,27.0,5.806823119408364,-22.67145722159613 -155,28.0,26.0,-0.99553355095268,1.881005840357816 -155,28.0,28.0,1.9075867579849564,-3.604364401207048 -155,28.0,29.0,-0.9120532070322764,1.7233585608492326 -155,29.0,26.0,-0.6874559028276572,1.293971494797717 -155,29.0,28.0,-0.9120532070322764,1.7233585608492326 -155,29.0,29.0,1.5995091098599337,-3.0173300556469496 -156,0.0,0.0,6.765516048652632,-21.23160167089863 -156,0.0,1.0,-5.224646179885656,15.646726840803398 -156,0.0,2.0,-1.5408698687669766,5.631674830095234 -156,1.0,0.0,-5.224646179885656,15.646726840803398 -156,1.0,1.0,9.75228216552403,-30.648662892676068 -156,1.0,3.0,-1.7055303166990268,5.1973792282565086 -156,1.0,4.0,-1.1359607881738778,4.772479328281356 -156,1.0,5.0,-1.6861448807654689,5.116477495334806 -156,2.0,0.0,-1.5408698687669766,5.631674830095234 -156,2.0,2.0,9.736318911079088,-29.13794745915803 -156,2.0,3.0,-8.19544904231211,23.5308726290628 -156,3.0,1.0,-1.7055303166990268,5.1973792282565086 -156,3.0,2.0,-8.19544904231211,23.5308726290628 -156,3.0,3.0,16.314103089185693,-55.509410535254254 -156,3.0,5.0,-6.413123730174556,22.31120356548123 -156,3.0,11.0,0.0,4.191255364806866 -156,4.0,1.0,-1.1359607881738778,4.772479328281356 -156,4.0,4.0,4.089980824135861,-12.190647245055052 -156,4.0,6.0,-2.954020035961983,7.449267916773697 -156,5.0,1.0,-1.6861448807654689,5.116477495334806 -156,5.0,3.0,-6.413123730174556,22.31120356548123 -156,5.0,5.0,17.978787211021647,-67.37207632288106 -156,5.0,6.0,-3.590210423980992,11.02611441072814 -156,5.0,7.0,-6.289308176100628,22.0125786163522 -156,5.0,8.0,0.0,4.915840805411357 -156,5.0,9.0,0.0,1.8561002591115965 -156,6.0,4.0,-2.954020035961983,7.449267916773697 -156,6.0,5.0,-3.590210423980992,11.02611441072814 -156,6.0,6.0,6.544230459942975,-18.45668232750184 -156,7.0,5.0,-6.289308176100628,22.0125786163522 -156,7.0,7.0,7.733287237496075,-26.527493274828448 -156,7.0,27.0,-1.4439790613954469,4.540814658476248 -156,8.0,5.0,0.0,4.915840805411357 -156,8.0,8.0,0.0,-18.706293706293707 -156,8.0,9.0,0.0,9.090909090909092 -156,8.0,10.0,0.0,4.807692307692308 -156,9.0,5.0,0.0,1.8561002591115965 -156,9.0,8.0,0.0,9.090909090909092 -156,9.0,9.0,13.462042814524237,-41.3837606675224 -156,9.0,16.0,-3.956039125715353,10.317447719844054 -156,9.0,19.0,-1.7848303152666305,3.98535828943083 -156,9.0,20.0,-5.101853820159654,10.98071411292983 -156,9.0,21.0,-2.619319553382597,5.400770303329455 -156,10.0,8.0,0.0,4.807692307692308 -156,10.0,10.0,0.0,-4.807692307692308 -156,11.0,3.0,0.0,4.191255364806866 -156,11.0,11.0,6.573961583776156,-24.424167659260668 -156,11.0,12.0,0.0,7.142857142857143 -156,11.0,13.0,-1.5265676088395577,3.1734252729654173 -156,11.0,14.0,-3.0953961826564296,6.097275864326261 -156,11.0,15.0,-1.9519977922801688,4.104359379111847 -156,12.0,11.0,0.0,7.142857142857143 -156,12.0,12.0,0.0,-7.142857142857143 -156,13.0,11.0,-1.5265676088395577,3.1734252729654173 -156,13.0,13.0,4.01751987283902,-5.424299332335067 -156,13.0,14.0,-2.4909522639994623,2.250874059369649 -156,14.0,11.0,-3.0953961826564296,6.097275864326261 -156,14.0,13.0,-2.4909522639994623,2.250874059369649 -156,14.0,14.0,9.365498545964757,-16.01163373210796 -156,14.0,17.0,-1.8108011504072024,3.687418931630696 -156,14.0,22.0,-1.9683489489016612,3.976064876781356 -156,15.0,11.0,-1.9519977922801688,4.104359379111847 -156,15.0,15.0,3.271064728633931,-8.94513365126506 -156,15.0,16.0,-1.3190669363537617,4.8407742721532125 -156,16.0,9.0,-3.956039125715353,10.317447719844054 -156,16.0,15.0,-1.3190669363537617,4.8407742721532125 -156,16.0,16.0,5.275106062069114,-15.158221991997266 -156,17.0,14.0,-1.8108011504072024,3.687418931630696 -156,17.0,17.0,4.886487584415919,-9.906177730909668 -156,17.0,18.0,-3.0756864340087167,6.218758799278971 -156,18.0,17.0,-3.0756864340087167,6.218758799278971 -156,18.0,18.0,8.958039375185187,-17.98346468163191 -156,18.0,19.0,-5.88235294117647,11.76470588235294 -156,19.0,9.0,-1.7848303152666305,3.98535828943083 -156,19.0,18.0,-5.88235294117647,11.76470588235294 -156,19.0,19.0,7.6671832564431,-15.75006417178377 -156,20.0,9.0,-5.101853820159654,10.98071411292983 -156,20.0,20.0,21.876495189895888,-45.10843276170355 -156,20.0,21.0,-16.774641369736234,34.127718648773715 -156,21.0,9.0,-2.619319553382597,5.400770303329455 -156,21.0,20.0,-16.774641369736234,34.127718648773715 -156,21.0,21.0,21.93449907537439,-43.48289181517921 -156,21.0,23.0,-2.5405381522555563,3.95440286307604 -156,22.0,14.0,-1.9683489489016612,3.976064876781356 -156,22.0,22.0,3.429754555384988,-6.965303617315433 -156,22.0,23.0,-1.4614056064833263,2.989238740534077 -156,23.0,21.0,-2.5405381522555563,3.95440286307604 -156,23.0,22.0,-1.4614056064833263,2.989238740534077 -156,23.0,23.0,5.311836702613133,-9.188263657315172 -156,23.0,24.0,-1.3098929438742493,2.287622053705056 -156,24.0,23.0,-1.3098929438742493,2.287622053705056 -156,24.0,24.0,4.495715080321987,-7.864978761969621 -156,24.0,25.0,-1.2165301194494855,1.8171440463475024 -156,24.0,26.0,-1.9692920169982515,3.760212661917064 -156,25.0,24.0,-1.2165301194494855,1.8171440463475024 -156,25.0,25.0,1.2165301194494855,-1.8171440463475024 -156,26.0,24.0,-1.9692920169982515,3.760212661917064 -156,26.0,26.0,3.652281470778589,-9.46044252232512 -156,26.0,27.0,0.0,2.608731947574922 -156,26.0,28.0,-0.99553355095268,1.881005840357816 -156,26.0,29.0,-0.6874559028276572,1.293971494797717 -156,27.0,7.0,-1.4439790613954469,4.540814658476248 -156,27.0,26.0,0.0,2.608731947574922 -156,27.0,27.0,1.4439790613954469,-7.214385678698274 -156,28.0,26.0,-0.99553355095268,1.881005840357816 -156,28.0,28.0,1.9075867579849564,-3.604364401207048 -156,28.0,29.0,-0.9120532070322764,1.7233585608492326 -156,29.0,26.0,-0.6874559028276572,1.293971494797717 -156,29.0,28.0,-0.9120532070322764,1.7233585608492326 -156,29.0,29.0,1.5995091098599337,-3.0173300556469496 -157,0.0,0.0,6.765516048652632,-21.23160167089863 -157,0.0,1.0,-5.224646179885656,15.646726840803398 -157,0.0,2.0,-1.5408698687669766,5.631674830095234 -157,1.0,0.0,-5.224646179885656,15.646726840803398 -157,1.0,1.0,9.75228216552403,-30.648662892676068 -157,1.0,3.0,-1.7055303166990268,5.1973792282565086 -157,1.0,4.0,-1.1359607881738778,4.772479328281356 -157,1.0,5.0,-1.6861448807654689,5.116477495334806 -157,2.0,0.0,-1.5408698687669766,5.631674830095234 -157,2.0,2.0,9.736318911079088,-29.13794745915803 -157,2.0,3.0,-8.19544904231211,23.5308726290628 -157,3.0,1.0,-1.7055303166990268,5.1973792282565086 -157,3.0,2.0,-8.19544904231211,23.5308726290628 -157,3.0,3.0,16.314103089185693,-55.509410535254254 -157,3.0,5.0,-6.413123730174556,22.31120356548123 -157,3.0,11.0,0.0,4.191255364806866 -157,4.0,1.0,-1.1359607881738778,4.772479328281356 -157,4.0,4.0,4.089980824135861,-12.190647245055052 -157,4.0,6.0,-2.954020035961983,7.449267916773697 -157,5.0,1.0,-1.6861448807654689,5.116477495334806 -157,5.0,3.0,-6.413123730174556,22.31120356548123 -157,5.0,5.0,22.341631269034565,-82.8291478657789 -157,5.0,6.0,-3.590210423980992,11.02611441072814 -157,5.0,7.0,-6.289308176100628,22.0125786163522 -157,5.0,8.0,0.0,4.915840805411357 -157,5.0,9.0,0.0,1.8561002591115965 -157,5.0,27.0,-4.362844058012917,15.463571542897856 -157,6.0,4.0,-2.954020035961983,7.449267916773697 -157,6.0,5.0,-3.590210423980992,11.02611441072814 -157,6.0,6.0,6.544230459942975,-18.45668232750184 -157,7.0,5.0,-6.289308176100628,22.0125786163522 -157,7.0,7.0,7.733287237496075,-26.527493274828448 -157,7.0,27.0,-1.4439790613954469,4.540814658476248 -157,8.0,5.0,0.0,4.915840805411357 -157,8.0,8.0,0.0,-18.706293706293707 -157,8.0,9.0,0.0,9.090909090909092 -157,8.0,10.0,0.0,4.807692307692308 -157,9.0,5.0,0.0,1.8561002591115965 -157,9.0,8.0,0.0,9.090909090909092 -157,9.0,9.0,13.462042814524237,-41.3837606675224 -157,9.0,16.0,-3.956039125715353,10.317447719844054 -157,9.0,19.0,-1.7848303152666305,3.98535828943083 -157,9.0,20.0,-5.101853820159654,10.98071411292983 -157,9.0,21.0,-2.619319553382597,5.400770303329455 -157,10.0,8.0,0.0,4.807692307692308 -157,10.0,10.0,0.0,-4.807692307692308 -157,11.0,3.0,0.0,4.191255364806866 -157,11.0,11.0,6.573961583776156,-24.424167659260668 -157,11.0,12.0,0.0,7.142857142857143 -157,11.0,13.0,-1.5265676088395577,3.1734252729654173 -157,11.0,14.0,-3.0953961826564296,6.097275864326261 -157,11.0,15.0,-1.9519977922801688,4.104359379111847 -157,12.0,11.0,0.0,7.142857142857143 -157,12.0,12.0,0.0,-7.142857142857143 -157,13.0,11.0,-1.5265676088395577,3.1734252729654173 -157,13.0,13.0,4.01751987283902,-5.424299332335067 -157,13.0,14.0,-2.4909522639994623,2.250874059369649 -157,14.0,11.0,-3.0953961826564296,6.097275864326261 -157,14.0,13.0,-2.4909522639994623,2.250874059369649 -157,14.0,14.0,9.365498545964757,-16.01163373210796 -157,14.0,17.0,-1.8108011504072024,3.687418931630696 -157,14.0,22.0,-1.9683489489016612,3.976064876781356 -157,15.0,11.0,-1.9519977922801688,4.104359379111847 -157,15.0,15.0,3.271064728633931,-8.94513365126506 -157,15.0,16.0,-1.3190669363537617,4.8407742721532125 -157,16.0,9.0,-3.956039125715353,10.317447719844054 -157,16.0,15.0,-1.3190669363537617,4.8407742721532125 -157,16.0,16.0,5.275106062069114,-15.158221991997266 -157,17.0,14.0,-1.8108011504072024,3.687418931630696 -157,17.0,17.0,4.886487584415919,-9.906177730909668 -157,17.0,18.0,-3.0756864340087167,6.218758799278971 -157,18.0,17.0,-3.0756864340087167,6.218758799278971 -157,18.0,18.0,8.958039375185187,-17.98346468163191 -157,18.0,19.0,-5.88235294117647,11.76470588235294 -157,19.0,9.0,-1.7848303152666305,3.98535828943083 -157,19.0,18.0,-5.88235294117647,11.76470588235294 -157,19.0,19.0,7.6671832564431,-15.75006417178377 -157,20.0,9.0,-5.101853820159654,10.98071411292983 -157,20.0,20.0,21.876495189895888,-45.10843276170355 -157,20.0,21.0,-16.774641369736234,34.127718648773715 -157,21.0,9.0,-2.619319553382597,5.400770303329455 -157,21.0,20.0,-16.774641369736234,34.127718648773715 -157,21.0,21.0,21.93449907537439,-43.48289181517921 -157,21.0,23.0,-2.5405381522555563,3.95440286307604 -157,22.0,14.0,-1.9683489489016612,3.976064876781356 -157,22.0,22.0,3.429754555384988,-6.965303617315433 -157,22.0,23.0,-1.4614056064833263,2.989238740534077 -157,23.0,21.0,-2.5405381522555563,3.95440286307604 -157,23.0,22.0,-1.4614056064833263,2.989238740534077 -157,23.0,23.0,5.311836702613133,-9.188263657315172 -157,23.0,24.0,-1.3098929438742493,2.287622053705056 -157,24.0,23.0,-1.3098929438742493,2.287622053705056 -157,24.0,24.0,4.495715080321987,-7.864978761969621 -157,24.0,25.0,-1.2165301194494855,1.8171440463475024 -157,24.0,26.0,-1.9692920169982515,3.760212661917064 -157,25.0,24.0,-1.2165301194494855,1.8171440463475024 -157,25.0,25.0,1.2165301194494855,-1.8171440463475024 -157,26.0,24.0,-1.9692920169982515,3.760212661917064 -157,26.0,26.0,3.652281470778589,-9.46044252232512 -157,26.0,27.0,0.0,2.608731947574922 -157,26.0,28.0,-0.99553355095268,1.881005840357816 -157,26.0,29.0,-0.6874559028276572,1.293971494797717 -157,27.0,5.0,-4.362844058012917,15.463571542897856 -157,27.0,7.0,-1.4439790613954469,4.540814658476248 -157,27.0,26.0,0.0,2.608731947574922 -157,27.0,27.0,5.806823119408364,-22.67145722159613 -157,28.0,26.0,-0.99553355095268,1.881005840357816 -157,28.0,28.0,1.9075867579849564,-3.604364401207048 -157,28.0,29.0,-0.9120532070322764,1.7233585608492326 -157,29.0,26.0,-0.6874559028276572,1.293971494797717 -157,29.0,28.0,-0.9120532070322764,1.7233585608492326 -157,29.0,29.0,1.5995091098599337,-3.0173300556469496 -158,0.0,0.0,6.765516048652632,-21.23160167089863 -158,0.0,1.0,-5.224646179885656,15.646726840803398 -158,0.0,2.0,-1.5408698687669766,5.631674830095234 -158,1.0,0.0,-5.224646179885656,15.646726840803398 -158,1.0,1.0,9.75228216552403,-30.648662892676068 -158,1.0,3.0,-1.7055303166990268,5.1973792282565086 -158,1.0,4.0,-1.1359607881738778,4.772479328281356 -158,1.0,5.0,-1.6861448807654689,5.116477495334806 -158,2.0,0.0,-1.5408698687669766,5.631674830095234 -158,2.0,2.0,9.736318911079088,-29.13794745915803 -158,2.0,3.0,-8.19544904231211,23.5308726290628 -158,3.0,1.0,-1.7055303166990268,5.1973792282565086 -158,3.0,2.0,-8.19544904231211,23.5308726290628 -158,3.0,3.0,16.314103089185693,-55.509410535254254 -158,3.0,5.0,-6.413123730174556,22.31120356548123 -158,3.0,11.0,0.0,4.191255364806866 -158,4.0,1.0,-1.1359607881738778,4.772479328281356 -158,4.0,4.0,4.089980824135861,-12.190647245055052 -158,4.0,6.0,-2.954020035961983,7.449267916773697 -158,5.0,1.0,-1.6861448807654689,5.116477495334806 -158,5.0,3.0,-6.413123730174556,22.31120356548123 -158,5.0,5.0,22.341631269034565,-82.8291478657789 -158,5.0,6.0,-3.590210423980992,11.02611441072814 -158,5.0,7.0,-6.289308176100628,22.0125786163522 -158,5.0,8.0,0.0,4.915840805411357 -158,5.0,9.0,0.0,1.8561002591115965 -158,5.0,27.0,-4.362844058012917,15.463571542897856 -158,6.0,4.0,-2.954020035961983,7.449267916773697 -158,6.0,5.0,-3.590210423980992,11.02611441072814 -158,6.0,6.0,6.544230459942975,-18.45668232750184 -158,7.0,5.0,-6.289308176100628,22.0125786163522 -158,7.0,7.0,7.733287237496075,-26.527493274828448 -158,7.0,27.0,-1.4439790613954469,4.540814658476248 -158,8.0,5.0,0.0,4.915840805411357 -158,8.0,8.0,0.0,-18.706293706293707 -158,8.0,9.0,0.0,9.090909090909092 -158,8.0,10.0,0.0,4.807692307692308 -158,9.0,5.0,0.0,1.8561002591115965 -158,9.0,8.0,0.0,9.090909090909092 -158,9.0,9.0,13.462042814524237,-41.3837606675224 -158,9.0,16.0,-3.956039125715353,10.317447719844054 -158,9.0,19.0,-1.7848303152666305,3.98535828943083 -158,9.0,20.0,-5.101853820159654,10.98071411292983 -158,9.0,21.0,-2.619319553382597,5.400770303329455 -158,10.0,8.0,0.0,4.807692307692308 -158,10.0,10.0,0.0,-4.807692307692308 -158,11.0,3.0,0.0,4.191255364806866 -158,11.0,11.0,6.573961583776156,-24.424167659260668 -158,11.0,12.0,0.0,7.142857142857143 -158,11.0,13.0,-1.5265676088395577,3.1734252729654173 -158,11.0,14.0,-3.0953961826564296,6.097275864326261 -158,11.0,15.0,-1.9519977922801688,4.104359379111847 -158,12.0,11.0,0.0,7.142857142857143 -158,12.0,12.0,0.0,-7.142857142857143 -158,13.0,11.0,-1.5265676088395577,3.1734252729654173 -158,13.0,13.0,4.01751987283902,-5.424299332335067 -158,13.0,14.0,-2.4909522639994623,2.250874059369649 -158,14.0,11.0,-3.0953961826564296,6.097275864326261 -158,14.0,13.0,-2.4909522639994623,2.250874059369649 -158,14.0,14.0,9.365498545964757,-16.01163373210796 -158,14.0,17.0,-1.8108011504072024,3.687418931630696 -158,14.0,22.0,-1.9683489489016612,3.976064876781356 -158,15.0,11.0,-1.9519977922801688,4.104359379111847 -158,15.0,15.0,3.271064728633931,-8.94513365126506 -158,15.0,16.0,-1.3190669363537617,4.8407742721532125 -158,16.0,9.0,-3.956039125715353,10.317447719844054 -158,16.0,15.0,-1.3190669363537617,4.8407742721532125 -158,16.0,16.0,5.275106062069114,-15.158221991997266 -158,17.0,14.0,-1.8108011504072024,3.687418931630696 -158,17.0,17.0,4.886487584415919,-9.906177730909668 -158,17.0,18.0,-3.0756864340087167,6.218758799278971 -158,18.0,17.0,-3.0756864340087167,6.218758799278971 -158,18.0,18.0,8.958039375185187,-17.98346468163191 -158,18.0,19.0,-5.88235294117647,11.76470588235294 -158,19.0,9.0,-1.7848303152666305,3.98535828943083 -158,19.0,18.0,-5.88235294117647,11.76470588235294 -158,19.0,19.0,7.6671832564431,-15.75006417178377 -158,20.0,9.0,-5.101853820159654,10.98071411292983 -158,20.0,20.0,21.876495189895888,-45.10843276170355 -158,20.0,21.0,-16.774641369736234,34.127718648773715 -158,21.0,9.0,-2.619319553382597,5.400770303329455 -158,21.0,20.0,-16.774641369736234,34.127718648773715 -158,21.0,21.0,21.93449907537439,-43.48289181517921 -158,21.0,23.0,-2.5405381522555563,3.95440286307604 -158,22.0,14.0,-1.9683489489016612,3.976064876781356 -158,22.0,22.0,3.429754555384988,-6.965303617315433 -158,22.0,23.0,-1.4614056064833263,2.989238740534077 -158,23.0,21.0,-2.5405381522555563,3.95440286307604 -158,23.0,22.0,-1.4614056064833263,2.989238740534077 -158,23.0,23.0,5.311836702613133,-9.188263657315172 -158,23.0,24.0,-1.3098929438742493,2.287622053705056 -158,24.0,23.0,-1.3098929438742493,2.287622053705056 -158,24.0,24.0,4.495715080321987,-7.864978761969621 -158,24.0,25.0,-1.2165301194494855,1.8171440463475024 -158,24.0,26.0,-1.9692920169982515,3.760212661917064 -158,25.0,24.0,-1.2165301194494855,1.8171440463475024 -158,25.0,25.0,1.2165301194494855,-1.8171440463475024 -158,26.0,24.0,-1.9692920169982515,3.760212661917064 -158,26.0,26.0,3.652281470778589,-9.46044252232512 -158,26.0,27.0,0.0,2.608731947574922 -158,26.0,28.0,-0.99553355095268,1.881005840357816 -158,26.0,29.0,-0.6874559028276572,1.293971494797717 -158,27.0,5.0,-4.362844058012917,15.463571542897856 -158,27.0,7.0,-1.4439790613954469,4.540814658476248 -158,27.0,26.0,0.0,2.608731947574922 -158,27.0,27.0,5.806823119408364,-22.67145722159613 -158,28.0,26.0,-0.99553355095268,1.881005840357816 -158,28.0,28.0,1.9075867579849564,-3.604364401207048 -158,28.0,29.0,-0.9120532070322764,1.7233585608492326 -158,29.0,26.0,-0.6874559028276572,1.293971494797717 -158,29.0,28.0,-0.9120532070322764,1.7233585608492326 -158,29.0,29.0,1.5995091098599337,-3.0173300556469496 -159,0.0,0.0,6.765516048652632,-21.23160167089863 -159,0.0,1.0,-5.224646179885656,15.646726840803398 -159,0.0,2.0,-1.5408698687669766,5.631674830095234 -159,1.0,0.0,-5.224646179885656,15.646726840803398 -159,1.0,1.0,9.75228216552403,-30.648662892676068 -159,1.0,3.0,-1.7055303166990268,5.1973792282565086 -159,1.0,4.0,-1.1359607881738778,4.772479328281356 -159,1.0,5.0,-1.6861448807654689,5.116477495334806 -159,2.0,0.0,-1.5408698687669766,5.631674830095234 -159,2.0,2.0,9.736318911079088,-29.13794745915803 -159,2.0,3.0,-8.19544904231211,23.5308726290628 -159,3.0,1.0,-1.7055303166990268,5.1973792282565086 -159,3.0,2.0,-8.19544904231211,23.5308726290628 -159,3.0,3.0,16.314103089185693,-55.509410535254254 -159,3.0,5.0,-6.413123730174556,22.31120356548123 -159,3.0,11.0,0.0,4.191255364806866 -159,4.0,1.0,-1.1359607881738778,4.772479328281356 -159,4.0,4.0,4.089980824135861,-12.190647245055052 -159,4.0,6.0,-2.954020035961983,7.449267916773697 -159,5.0,1.0,-1.6861448807654689,5.116477495334806 -159,5.0,3.0,-6.413123730174556,22.31120356548123 -159,5.0,5.0,22.341631269034565,-77.80272577435625 -159,5.0,6.0,-3.590210423980992,11.02611441072814 -159,5.0,7.0,-6.289308176100628,22.0125786163522 -159,5.0,9.0,0.0,1.8561002591115965 -159,5.0,27.0,-4.362844058012917,15.463571542897856 -159,6.0,4.0,-2.954020035961983,7.449267916773697 -159,6.0,5.0,-3.590210423980992,11.02611441072814 -159,6.0,6.0,6.544230459942975,-18.45668232750184 -159,7.0,5.0,-6.289308176100628,22.0125786163522 -159,7.0,7.0,7.733287237496075,-26.527493274828448 -159,7.0,27.0,-1.4439790613954469,4.540814658476248 -159,8.0,8.0,0.0,-13.8986013986014 -159,8.0,9.0,0.0,9.090909090909092 -159,8.0,10.0,0.0,4.807692307692308 -159,9.0,5.0,0.0,1.8561002591115965 -159,9.0,8.0,0.0,9.090909090909092 -159,9.0,9.0,13.462042814524237,-41.3837606675224 -159,9.0,16.0,-3.956039125715353,10.317447719844054 -159,9.0,19.0,-1.7848303152666305,3.98535828943083 -159,9.0,20.0,-5.101853820159654,10.98071411292983 -159,9.0,21.0,-2.619319553382597,5.400770303329455 -159,10.0,8.0,0.0,4.807692307692308 -159,10.0,10.0,0.0,-4.807692307692308 -159,11.0,3.0,0.0,4.191255364806866 -159,11.0,11.0,6.573961583776156,-24.424167659260668 -159,11.0,12.0,0.0,7.142857142857143 -159,11.0,13.0,-1.5265676088395577,3.1734252729654173 -159,11.0,14.0,-3.0953961826564296,6.097275864326261 -159,11.0,15.0,-1.9519977922801688,4.104359379111847 -159,12.0,11.0,0.0,7.142857142857143 -159,12.0,12.0,0.0,-7.142857142857143 -159,13.0,11.0,-1.5265676088395577,3.1734252729654173 -159,13.0,13.0,4.01751987283902,-5.424299332335067 -159,13.0,14.0,-2.4909522639994623,2.250874059369649 -159,14.0,11.0,-3.0953961826564296,6.097275864326261 -159,14.0,13.0,-2.4909522639994623,2.250874059369649 -159,14.0,14.0,9.365498545964757,-16.01163373210796 -159,14.0,17.0,-1.8108011504072024,3.687418931630696 -159,14.0,22.0,-1.9683489489016612,3.976064876781356 -159,15.0,11.0,-1.9519977922801688,4.104359379111847 -159,15.0,15.0,3.271064728633931,-8.94513365126506 -159,15.0,16.0,-1.3190669363537617,4.8407742721532125 -159,16.0,9.0,-3.956039125715353,10.317447719844054 -159,16.0,15.0,-1.3190669363537617,4.8407742721532125 -159,16.0,16.0,5.275106062069114,-15.158221991997266 -159,17.0,14.0,-1.8108011504072024,3.687418931630696 -159,17.0,17.0,4.886487584415919,-9.906177730909668 -159,17.0,18.0,-3.0756864340087167,6.218758799278971 -159,18.0,17.0,-3.0756864340087167,6.218758799278971 -159,18.0,18.0,8.958039375185187,-17.98346468163191 -159,18.0,19.0,-5.88235294117647,11.76470588235294 -159,19.0,9.0,-1.7848303152666305,3.98535828943083 -159,19.0,18.0,-5.88235294117647,11.76470588235294 -159,19.0,19.0,7.6671832564431,-15.75006417178377 -159,20.0,9.0,-5.101853820159654,10.98071411292983 -159,20.0,20.0,5.101853820159654,-10.98071411292983 -159,21.0,9.0,-2.619319553382597,5.400770303329455 -159,21.0,21.0,5.159857705638154,-9.355173166405494 -159,21.0,23.0,-2.5405381522555563,3.95440286307604 -159,22.0,14.0,-1.9683489489016612,3.976064876781356 -159,22.0,22.0,3.429754555384988,-6.965303617315433 -159,22.0,23.0,-1.4614056064833263,2.989238740534077 -159,23.0,21.0,-2.5405381522555563,3.95440286307604 -159,23.0,22.0,-1.4614056064833263,2.989238740534077 -159,23.0,23.0,4.001943758738883,-6.900641603610116 -159,24.0,24.0,3.185822136447737,-5.577356708264566 -159,24.0,25.0,-1.2165301194494855,1.8171440463475024 -159,24.0,26.0,-1.9692920169982515,3.760212661917064 -159,25.0,24.0,-1.2165301194494855,1.8171440463475024 -159,25.0,25.0,1.2165301194494855,-1.8171440463475024 -159,26.0,24.0,-1.9692920169982515,3.760212661917064 -159,26.0,26.0,3.652281470778589,-9.46044252232512 -159,26.0,27.0,0.0,2.608731947574922 -159,26.0,28.0,-0.99553355095268,1.881005840357816 -159,26.0,29.0,-0.6874559028276572,1.293971494797717 -159,27.0,5.0,-4.362844058012917,15.463571542897856 -159,27.0,7.0,-1.4439790613954469,4.540814658476248 -159,27.0,26.0,0.0,2.608731947574922 -159,27.0,27.0,5.806823119408364,-22.67145722159613 -159,28.0,26.0,-0.99553355095268,1.881005840357816 -159,28.0,28.0,1.9075867579849564,-3.604364401207048 -159,28.0,29.0,-0.9120532070322764,1.7233585608492326 -159,29.0,26.0,-0.6874559028276572,1.293971494797717 -159,29.0,28.0,-0.9120532070322764,1.7233585608492326 -159,29.0,29.0,1.5995091098599337,-3.0173300556469496 -160,0.0,0.0,6.765516048652632,-21.23160167089863 -160,0.0,1.0,-5.224646179885656,15.646726840803398 -160,0.0,2.0,-1.5408698687669766,5.631674830095234 -160,1.0,0.0,-5.224646179885656,15.646726840803398 -160,1.0,1.0,9.75228216552403,-30.648662892676068 -160,1.0,3.0,-1.7055303166990268,5.1973792282565086 -160,1.0,4.0,-1.1359607881738778,4.772479328281356 -160,1.0,5.0,-1.6861448807654689,5.116477495334806 -160,2.0,0.0,-1.5408698687669766,5.631674830095234 -160,2.0,2.0,9.736318911079088,-29.13794745915803 -160,2.0,3.0,-8.19544904231211,23.5308726290628 -160,3.0,1.0,-1.7055303166990268,5.1973792282565086 -160,3.0,2.0,-8.19544904231211,23.5308726290628 -160,3.0,3.0,16.314103089185693,-55.509410535254254 -160,3.0,5.0,-6.413123730174556,22.31120356548123 -160,3.0,11.0,0.0,4.191255364806866 -160,4.0,1.0,-1.1359607881738778,4.772479328281356 -160,4.0,4.0,4.089980824135861,-12.190647245055052 -160,4.0,6.0,-2.954020035961983,7.449267916773697 -160,5.0,1.0,-1.6861448807654689,5.116477495334806 -160,5.0,3.0,-6.413123730174556,22.31120356548123 -160,5.0,5.0,22.341631269034565,-82.8291478657789 -160,5.0,6.0,-3.590210423980992,11.02611441072814 -160,5.0,7.0,-6.289308176100628,22.0125786163522 -160,5.0,8.0,0.0,4.915840805411357 -160,5.0,9.0,0.0,1.8561002591115965 -160,5.0,27.0,-4.362844058012917,15.463571542897856 -160,6.0,4.0,-2.954020035961983,7.449267916773697 -160,6.0,5.0,-3.590210423980992,11.02611441072814 -160,6.0,6.0,6.544230459942975,-18.45668232750184 -160,7.0,5.0,-6.289308176100628,22.0125786163522 -160,7.0,7.0,7.733287237496075,-26.527493274828448 -160,7.0,27.0,-1.4439790613954469,4.540814658476248 -160,8.0,5.0,0.0,4.915840805411357 -160,8.0,8.0,0.0,-18.706293706293707 -160,8.0,9.0,0.0,9.090909090909092 -160,8.0,10.0,0.0,4.807692307692308 -160,9.0,5.0,0.0,1.8561002591115965 -160,9.0,8.0,0.0,9.090909090909092 -160,9.0,9.0,13.462042814524237,-41.3837606675224 -160,9.0,16.0,-3.956039125715353,10.317447719844054 -160,9.0,19.0,-1.7848303152666305,3.98535828943083 -160,9.0,20.0,-5.101853820159654,10.98071411292983 -160,9.0,21.0,-2.619319553382597,5.400770303329455 -160,10.0,8.0,0.0,4.807692307692308 -160,10.0,10.0,0.0,-4.807692307692308 -160,11.0,3.0,0.0,4.191255364806866 -160,11.0,11.0,6.573961583776156,-24.424167659260668 -160,11.0,12.0,0.0,7.142857142857143 -160,11.0,13.0,-1.5265676088395577,3.1734252729654173 -160,11.0,14.0,-3.0953961826564296,6.097275864326261 -160,11.0,15.0,-1.9519977922801688,4.104359379111847 -160,12.0,11.0,0.0,7.142857142857143 -160,12.0,12.0,0.0,-7.142857142857143 -160,13.0,11.0,-1.5265676088395577,3.1734252729654173 -160,13.0,13.0,4.01751987283902,-5.424299332335067 -160,13.0,14.0,-2.4909522639994623,2.250874059369649 -160,14.0,11.0,-3.0953961826564296,6.097275864326261 -160,14.0,13.0,-2.4909522639994623,2.250874059369649 -160,14.0,14.0,9.365498545964757,-16.01163373210796 -160,14.0,17.0,-1.8108011504072024,3.687418931630696 -160,14.0,22.0,-1.9683489489016612,3.976064876781356 -160,15.0,11.0,-1.9519977922801688,4.104359379111847 -160,15.0,15.0,3.271064728633931,-8.94513365126506 -160,15.0,16.0,-1.3190669363537617,4.8407742721532125 -160,16.0,9.0,-3.956039125715353,10.317447719844054 -160,16.0,15.0,-1.3190669363537617,4.8407742721532125 -160,16.0,16.0,5.275106062069114,-15.158221991997266 -160,17.0,14.0,-1.8108011504072024,3.687418931630696 -160,17.0,17.0,4.886487584415919,-9.906177730909668 -160,17.0,18.0,-3.0756864340087167,6.218758799278971 -160,18.0,17.0,-3.0756864340087167,6.218758799278971 -160,18.0,18.0,8.958039375185187,-17.98346468163191 -160,18.0,19.0,-5.88235294117647,11.76470588235294 -160,19.0,9.0,-1.7848303152666305,3.98535828943083 -160,19.0,18.0,-5.88235294117647,11.76470588235294 -160,19.0,19.0,7.6671832564431,-15.75006417178377 -160,20.0,9.0,-5.101853820159654,10.98071411292983 -160,20.0,20.0,21.876495189895888,-45.10843276170355 -160,20.0,21.0,-16.774641369736234,34.127718648773715 -160,21.0,9.0,-2.619319553382597,5.400770303329455 -160,21.0,20.0,-16.774641369736234,34.127718648773715 -160,21.0,21.0,21.93449907537439,-43.48289181517921 -160,21.0,23.0,-2.5405381522555563,3.95440286307604 -160,22.0,14.0,-1.9683489489016612,3.976064876781356 -160,22.0,22.0,3.429754555384988,-6.965303617315433 -160,22.0,23.0,-1.4614056064833263,2.989238740534077 -160,23.0,21.0,-2.5405381522555563,3.95440286307604 -160,23.0,22.0,-1.4614056064833263,2.989238740534077 -160,23.0,23.0,5.311836702613133,-9.188263657315172 -160,23.0,24.0,-1.3098929438742493,2.287622053705056 -160,24.0,23.0,-1.3098929438742493,2.287622053705056 -160,24.0,24.0,4.495715080321987,-7.864978761969621 -160,24.0,25.0,-1.2165301194494855,1.8171440463475024 -160,24.0,26.0,-1.9692920169982515,3.760212661917064 -160,25.0,24.0,-1.2165301194494855,1.8171440463475024 -160,25.0,25.0,1.2165301194494855,-1.8171440463475024 -160,26.0,24.0,-1.9692920169982515,3.760212661917064 -160,26.0,26.0,3.652281470778589,-9.46044252232512 -160,26.0,27.0,0.0,2.608731947574922 -160,26.0,28.0,-0.99553355095268,1.881005840357816 -160,26.0,29.0,-0.6874559028276572,1.293971494797717 -160,27.0,5.0,-4.362844058012917,15.463571542897856 -160,27.0,7.0,-1.4439790613954469,4.540814658476248 -160,27.0,26.0,0.0,2.608731947574922 -160,27.0,27.0,5.806823119408364,-22.67145722159613 -160,28.0,26.0,-0.99553355095268,1.881005840357816 -160,28.0,28.0,1.9075867579849564,-3.604364401207048 -160,28.0,29.0,-0.9120532070322764,1.7233585608492326 -160,29.0,26.0,-0.6874559028276572,1.293971494797717 -160,29.0,28.0,-0.9120532070322764,1.7233585608492326 -160,29.0,29.0,1.5995091098599337,-3.0173300556469496 -161,0.0,0.0,6.765516048652632,-21.23160167089863 -161,0.0,1.0,-5.224646179885656,15.646726840803398 -161,0.0,2.0,-1.5408698687669766,5.631674830095234 -161,1.0,0.0,-5.224646179885656,15.646726840803398 -161,1.0,1.0,9.75228216552403,-30.648662892676068 -161,1.0,3.0,-1.7055303166990268,5.1973792282565086 -161,1.0,4.0,-1.1359607881738778,4.772479328281356 -161,1.0,5.0,-1.6861448807654689,5.116477495334806 -161,2.0,0.0,-1.5408698687669766,5.631674830095234 -161,2.0,2.0,9.736318911079088,-29.13794745915803 -161,2.0,3.0,-8.19544904231211,23.5308726290628 -161,3.0,1.0,-1.7055303166990268,5.1973792282565086 -161,3.0,2.0,-8.19544904231211,23.5308726290628 -161,3.0,3.0,16.314103089185693,-55.509410535254254 -161,3.0,5.0,-6.413123730174556,22.31120356548123 -161,3.0,11.0,0.0,4.191255364806866 -161,4.0,1.0,-1.1359607881738778,4.772479328281356 -161,4.0,4.0,4.089980824135861,-12.190647245055052 -161,4.0,6.0,-2.954020035961983,7.449267916773697 -161,5.0,1.0,-1.6861448807654689,5.116477495334806 -161,5.0,3.0,-6.413123730174556,22.31120356548123 -161,5.0,5.0,22.341631269034565,-82.8291478657789 -161,5.0,6.0,-3.590210423980992,11.02611441072814 -161,5.0,7.0,-6.289308176100628,22.0125786163522 -161,5.0,8.0,0.0,4.915840805411357 -161,5.0,9.0,0.0,1.8561002591115965 -161,5.0,27.0,-4.362844058012917,15.463571542897856 -161,6.0,4.0,-2.954020035961983,7.449267916773697 -161,6.0,5.0,-3.590210423980992,11.02611441072814 -161,6.0,6.0,6.544230459942975,-18.45668232750184 -161,7.0,5.0,-6.289308176100628,22.0125786163522 -161,7.0,7.0,7.733287237496075,-26.527493274828448 -161,7.0,27.0,-1.4439790613954469,4.540814658476248 -161,8.0,5.0,0.0,4.915840805411357 -161,8.0,8.0,0.0,-18.706293706293707 -161,8.0,9.0,0.0,9.090909090909092 -161,8.0,10.0,0.0,4.807692307692308 -161,9.0,5.0,0.0,1.8561002591115965 -161,9.0,8.0,0.0,9.090909090909092 -161,9.0,9.0,13.462042814524237,-41.3837606675224 -161,9.0,16.0,-3.956039125715353,10.317447719844054 -161,9.0,19.0,-1.7848303152666305,3.98535828943083 -161,9.0,20.0,-5.101853820159654,10.98071411292983 -161,9.0,21.0,-2.619319553382597,5.400770303329455 -161,10.0,8.0,0.0,4.807692307692308 -161,10.0,10.0,0.0,-4.807692307692308 -161,11.0,3.0,0.0,4.191255364806866 -161,11.0,11.0,6.573961583776156,-24.424167659260668 -161,11.0,12.0,0.0,7.142857142857143 -161,11.0,13.0,-1.5265676088395577,3.1734252729654173 -161,11.0,14.0,-3.0953961826564296,6.097275864326261 -161,11.0,15.0,-1.9519977922801688,4.104359379111847 -161,12.0,11.0,0.0,7.142857142857143 -161,12.0,12.0,0.0,-7.142857142857143 -161,13.0,11.0,-1.5265676088395577,3.1734252729654173 -161,13.0,13.0,4.01751987283902,-5.424299332335067 -161,13.0,14.0,-2.4909522639994623,2.250874059369649 -161,14.0,11.0,-3.0953961826564296,6.097275864326261 -161,14.0,13.0,-2.4909522639994623,2.250874059369649 -161,14.0,14.0,7.397149597063095,-12.035568855326606 -161,14.0,17.0,-1.8108011504072024,3.687418931630696 -161,15.0,11.0,-1.9519977922801688,4.104359379111847 -161,15.0,15.0,3.271064728633931,-8.94513365126506 -161,15.0,16.0,-1.3190669363537617,4.8407742721532125 -161,16.0,9.0,-3.956039125715353,10.317447719844054 -161,16.0,15.0,-1.3190669363537617,4.8407742721532125 -161,16.0,16.0,5.275106062069114,-15.158221991997266 -161,17.0,14.0,-1.8108011504072024,3.687418931630696 -161,17.0,17.0,4.886487584415919,-9.906177730909668 -161,17.0,18.0,-3.0756864340087167,6.218758799278971 -161,18.0,17.0,-3.0756864340087167,6.218758799278971 -161,18.0,18.0,3.0756864340087167,-6.218758799278971 -161,19.0,9.0,-1.7848303152666305,3.98535828943083 -161,19.0,19.0,1.7848303152666305,-3.98535828943083 -161,20.0,9.0,-5.101853820159654,10.98071411292983 -161,20.0,20.0,21.876495189895888,-45.10843276170355 -161,20.0,21.0,-16.774641369736234,34.127718648773715 -161,21.0,9.0,-2.619319553382597,5.400770303329455 -161,21.0,20.0,-16.774641369736234,34.127718648773715 -161,21.0,21.0,21.93449907537439,-43.48289181517921 -161,21.0,23.0,-2.5405381522555563,3.95440286307604 -161,22.0,22.0,1.4614056064833263,-2.989238740534077 -161,22.0,23.0,-1.4614056064833263,2.989238740534077 -161,23.0,21.0,-2.5405381522555563,3.95440286307604 -161,23.0,22.0,-1.4614056064833263,2.989238740534077 -161,23.0,23.0,5.311836702613133,-9.188263657315172 -161,23.0,24.0,-1.3098929438742493,2.287622053705056 -161,24.0,23.0,-1.3098929438742493,2.287622053705056 -161,24.0,24.0,4.495715080321987,-7.864978761969621 -161,24.0,25.0,-1.2165301194494855,1.8171440463475024 -161,24.0,26.0,-1.9692920169982515,3.760212661917064 -161,25.0,24.0,-1.2165301194494855,1.8171440463475024 -161,25.0,25.0,1.2165301194494855,-1.8171440463475024 -161,26.0,24.0,-1.9692920169982515,3.760212661917064 -161,26.0,26.0,3.652281470778589,-9.46044252232512 -161,26.0,27.0,0.0,2.608731947574922 -161,26.0,28.0,-0.99553355095268,1.881005840357816 -161,26.0,29.0,-0.6874559028276572,1.293971494797717 -161,27.0,5.0,-4.362844058012917,15.463571542897856 -161,27.0,7.0,-1.4439790613954469,4.540814658476248 -161,27.0,26.0,0.0,2.608731947574922 -161,27.0,27.0,5.806823119408364,-22.67145722159613 -161,28.0,26.0,-0.99553355095268,1.881005840357816 -161,28.0,28.0,1.9075867579849564,-3.604364401207048 -161,28.0,29.0,-0.9120532070322764,1.7233585608492326 -161,29.0,26.0,-0.6874559028276572,1.293971494797717 -161,29.0,28.0,-0.9120532070322764,1.7233585608492326 -161,29.0,29.0,1.5995091098599337,-3.0173300556469496 -162,0.0,0.0,6.765516048652632,-21.23160167089863 -162,0.0,1.0,-5.224646179885656,15.646726840803398 -162,0.0,2.0,-1.5408698687669766,5.631674830095234 -162,1.0,0.0,-5.224646179885656,15.646726840803398 -162,1.0,1.0,9.75228216552403,-30.648662892676068 -162,1.0,3.0,-1.7055303166990268,5.1973792282565086 -162,1.0,4.0,-1.1359607881738778,4.772479328281356 -162,1.0,5.0,-1.6861448807654689,5.116477495334806 -162,2.0,0.0,-1.5408698687669766,5.631674830095234 -162,2.0,2.0,9.736318911079088,-29.13794745915803 -162,2.0,3.0,-8.19544904231211,23.5308726290628 -162,3.0,1.0,-1.7055303166990268,5.1973792282565086 -162,3.0,2.0,-8.19544904231211,23.5308726290628 -162,3.0,3.0,16.314103089185693,-55.509410535254254 -162,3.0,5.0,-6.413123730174556,22.31120356548123 -162,3.0,11.0,0.0,4.191255364806866 -162,4.0,1.0,-1.1359607881738778,4.772479328281356 -162,4.0,4.0,4.089980824135861,-12.190647245055052 -162,4.0,6.0,-2.954020035961983,7.449267916773697 -162,5.0,1.0,-1.6861448807654689,5.116477495334806 -162,5.0,3.0,-6.413123730174556,22.31120356548123 -162,5.0,5.0,22.341631269034565,-82.8291478657789 -162,5.0,6.0,-3.590210423980992,11.02611441072814 -162,5.0,7.0,-6.289308176100628,22.0125786163522 -162,5.0,8.0,0.0,4.915840805411357 -162,5.0,9.0,0.0,1.8561002591115965 -162,5.0,27.0,-4.362844058012917,15.463571542897856 -162,6.0,4.0,-2.954020035961983,7.449267916773697 -162,6.0,5.0,-3.590210423980992,11.02611441072814 -162,6.0,6.0,6.544230459942975,-18.45668232750184 -162,7.0,5.0,-6.289308176100628,22.0125786163522 -162,7.0,7.0,7.733287237496075,-26.527493274828448 -162,7.0,27.0,-1.4439790613954469,4.540814658476248 -162,8.0,5.0,0.0,4.915840805411357 -162,8.0,8.0,0.0,-18.706293706293707 -162,8.0,9.0,0.0,9.090909090909092 -162,8.0,10.0,0.0,4.807692307692308 -162,9.0,5.0,0.0,1.8561002591115965 -162,9.0,8.0,0.0,9.090909090909092 -162,9.0,9.0,13.462042814524237,-41.3837606675224 -162,9.0,16.0,-3.956039125715353,10.317447719844054 -162,9.0,19.0,-1.7848303152666305,3.98535828943083 -162,9.0,20.0,-5.101853820159654,10.98071411292983 -162,9.0,21.0,-2.619319553382597,5.400770303329455 -162,10.0,8.0,0.0,4.807692307692308 -162,10.0,10.0,0.0,-4.807692307692308 -162,11.0,3.0,0.0,4.191255364806866 -162,11.0,11.0,6.573961583776156,-24.424167659260668 -162,11.0,12.0,0.0,7.142857142857143 -162,11.0,13.0,-1.5265676088395577,3.1734252729654173 -162,11.0,14.0,-3.0953961826564296,6.097275864326261 -162,11.0,15.0,-1.9519977922801688,4.104359379111847 -162,12.0,11.0,0.0,7.142857142857143 -162,12.0,12.0,0.0,-7.142857142857143 -162,13.0,11.0,-1.5265676088395577,3.1734252729654173 -162,13.0,13.0,4.01751987283902,-5.424299332335067 -162,13.0,14.0,-2.4909522639994623,2.250874059369649 -162,14.0,11.0,-3.0953961826564296,6.097275864326261 -162,14.0,13.0,-2.4909522639994623,2.250874059369649 -162,14.0,14.0,9.365498545964757,-16.01163373210796 -162,14.0,17.0,-1.8108011504072024,3.687418931630696 -162,14.0,22.0,-1.9683489489016612,3.976064876781356 -162,15.0,11.0,-1.9519977922801688,4.104359379111847 -162,15.0,15.0,3.271064728633931,-8.94513365126506 -162,15.0,16.0,-1.3190669363537617,4.8407742721532125 -162,16.0,9.0,-3.956039125715353,10.317447719844054 -162,16.0,15.0,-1.3190669363537617,4.8407742721532125 -162,16.0,16.0,5.275106062069114,-15.158221991997266 -162,17.0,14.0,-1.8108011504072024,3.687418931630696 -162,17.0,17.0,4.886487584415919,-9.906177730909668 -162,17.0,18.0,-3.0756864340087167,6.218758799278971 -162,18.0,17.0,-3.0756864340087167,6.218758799278971 -162,18.0,18.0,8.958039375185187,-17.98346468163191 -162,18.0,19.0,-5.88235294117647,11.76470588235294 -162,19.0,9.0,-1.7848303152666305,3.98535828943083 -162,19.0,18.0,-5.88235294117647,11.76470588235294 -162,19.0,19.0,7.6671832564431,-15.75006417178377 -162,20.0,9.0,-5.101853820159654,10.98071411292983 -162,20.0,20.0,21.876495189895888,-45.10843276170355 -162,20.0,21.0,-16.774641369736234,34.127718648773715 -162,21.0,9.0,-2.619319553382597,5.400770303329455 -162,21.0,20.0,-16.774641369736234,34.127718648773715 -162,21.0,21.0,21.93449907537439,-43.48289181517921 -162,21.0,23.0,-2.5405381522555563,3.95440286307604 -162,22.0,14.0,-1.9683489489016612,3.976064876781356 -162,22.0,22.0,1.9683489489016612,-3.976064876781356 -162,23.0,21.0,-2.5405381522555563,3.95440286307604 -162,23.0,23.0,3.850431096129806,-6.199024916781094 -162,23.0,24.0,-1.3098929438742493,2.287622053705056 -162,24.0,23.0,-1.3098929438742493,2.287622053705056 -162,24.0,24.0,4.495715080321987,-7.864978761969621 -162,24.0,25.0,-1.2165301194494855,1.8171440463475024 -162,24.0,26.0,-1.9692920169982515,3.760212661917064 -162,25.0,24.0,-1.2165301194494855,1.8171440463475024 -162,25.0,25.0,1.2165301194494855,-1.8171440463475024 -162,26.0,24.0,-1.9692920169982515,3.760212661917064 -162,26.0,26.0,3.652281470778589,-9.46044252232512 -162,26.0,27.0,0.0,2.608731947574922 -162,26.0,28.0,-0.99553355095268,1.881005840357816 -162,26.0,29.0,-0.6874559028276572,1.293971494797717 -162,27.0,5.0,-4.362844058012917,15.463571542897856 -162,27.0,7.0,-1.4439790613954469,4.540814658476248 -162,27.0,26.0,0.0,2.608731947574922 -162,27.0,27.0,5.806823119408364,-22.67145722159613 -162,28.0,26.0,-0.99553355095268,1.881005840357816 -162,28.0,28.0,1.9075867579849564,-3.604364401207048 -162,28.0,29.0,-0.9120532070322764,1.7233585608492326 -162,29.0,26.0,-0.6874559028276572,1.293971494797717 -162,29.0,28.0,-0.9120532070322764,1.7233585608492326 -162,29.0,29.0,1.5995091098599337,-3.0173300556469496 -163,0.0,0.0,6.765516048652632,-21.23160167089863 -163,0.0,1.0,-5.224646179885656,15.646726840803398 -163,0.0,2.0,-1.5408698687669766,5.631674830095234 -163,1.0,0.0,-5.224646179885656,15.646726840803398 -163,1.0,1.0,9.75228216552403,-30.648662892676068 -163,1.0,3.0,-1.7055303166990268,5.1973792282565086 -163,1.0,4.0,-1.1359607881738778,4.772479328281356 -163,1.0,5.0,-1.6861448807654689,5.116477495334806 -163,2.0,0.0,-1.5408698687669766,5.631674830095234 -163,2.0,2.0,9.736318911079088,-29.13794745915803 -163,2.0,3.0,-8.19544904231211,23.5308726290628 -163,3.0,1.0,-1.7055303166990268,5.1973792282565086 -163,3.0,2.0,-8.19544904231211,23.5308726290628 -163,3.0,3.0,16.314103089185693,-55.509410535254254 -163,3.0,5.0,-6.413123730174556,22.31120356548123 -163,3.0,11.0,0.0,4.191255364806866 -163,4.0,1.0,-1.1359607881738778,4.772479328281356 -163,4.0,4.0,4.089980824135861,-12.190647245055052 -163,4.0,6.0,-2.954020035961983,7.449267916773697 -163,5.0,1.0,-1.6861448807654689,5.116477495334806 -163,5.0,3.0,-6.413123730174556,22.31120356548123 -163,5.0,5.0,22.341631269034565,-82.8291478657789 -163,5.0,6.0,-3.590210423980992,11.02611441072814 -163,5.0,7.0,-6.289308176100628,22.0125786163522 -163,5.0,8.0,0.0,4.915840805411357 -163,5.0,9.0,0.0,1.8561002591115965 -163,5.0,27.0,-4.362844058012917,15.463571542897856 -163,6.0,4.0,-2.954020035961983,7.449267916773697 -163,6.0,5.0,-3.590210423980992,11.02611441072814 -163,6.0,6.0,6.544230459942975,-18.45668232750184 -163,7.0,5.0,-6.289308176100628,22.0125786163522 -163,7.0,7.0,7.733287237496075,-26.527493274828448 -163,7.0,27.0,-1.4439790613954469,4.540814658476248 -163,8.0,5.0,0.0,4.915840805411357 -163,8.0,8.0,0.0,-18.706293706293707 -163,8.0,9.0,0.0,9.090909090909092 -163,8.0,10.0,0.0,4.807692307692308 -163,9.0,5.0,0.0,1.8561002591115965 -163,9.0,8.0,0.0,9.090909090909092 -163,9.0,9.0,13.462042814524237,-41.3837606675224 -163,9.0,16.0,-3.956039125715353,10.317447719844054 -163,9.0,19.0,-1.7848303152666305,3.98535828943083 -163,9.0,20.0,-5.101853820159654,10.98071411292983 -163,9.0,21.0,-2.619319553382597,5.400770303329455 -163,10.0,8.0,0.0,4.807692307692308 -163,10.0,10.0,0.0,-4.807692307692308 -163,11.0,3.0,0.0,4.191255364806866 -163,11.0,11.0,6.573961583776156,-24.424167659260668 -163,11.0,12.0,0.0,7.142857142857143 -163,11.0,13.0,-1.5265676088395577,3.1734252729654173 -163,11.0,14.0,-3.0953961826564296,6.097275864326261 -163,11.0,15.0,-1.9519977922801688,4.104359379111847 -163,12.0,11.0,0.0,7.142857142857143 -163,12.0,12.0,0.0,-7.142857142857143 -163,13.0,11.0,-1.5265676088395577,3.1734252729654173 -163,13.0,13.0,4.01751987283902,-5.424299332335067 -163,13.0,14.0,-2.4909522639994623,2.250874059369649 -163,14.0,11.0,-3.0953961826564296,6.097275864326261 -163,14.0,13.0,-2.4909522639994623,2.250874059369649 -163,14.0,14.0,9.365498545964757,-16.01163373210796 -163,14.0,17.0,-1.8108011504072024,3.687418931630696 -163,14.0,22.0,-1.9683489489016612,3.976064876781356 -163,15.0,11.0,-1.9519977922801688,4.104359379111847 -163,15.0,15.0,3.271064728633931,-8.94513365126506 -163,15.0,16.0,-1.3190669363537617,4.8407742721532125 -163,16.0,9.0,-3.956039125715353,10.317447719844054 -163,16.0,15.0,-1.3190669363537617,4.8407742721532125 -163,16.0,16.0,5.275106062069114,-15.158221991997266 -163,17.0,14.0,-1.8108011504072024,3.687418931630696 -163,17.0,17.0,4.886487584415919,-9.906177730909668 -163,17.0,18.0,-3.0756864340087167,6.218758799278971 -163,18.0,17.0,-3.0756864340087167,6.218758799278971 -163,18.0,18.0,8.958039375185187,-17.98346468163191 -163,18.0,19.0,-5.88235294117647,11.76470588235294 -163,19.0,9.0,-1.7848303152666305,3.98535828943083 -163,19.0,18.0,-5.88235294117647,11.76470588235294 -163,19.0,19.0,7.6671832564431,-15.75006417178377 -163,20.0,9.0,-5.101853820159654,10.98071411292983 -163,20.0,20.0,21.876495189895888,-45.10843276170355 -163,20.0,21.0,-16.774641369736234,34.127718648773715 -163,21.0,9.0,-2.619319553382597,5.400770303329455 -163,21.0,20.0,-16.774641369736234,34.127718648773715 -163,21.0,21.0,21.93449907537439,-43.48289181517921 -163,21.0,23.0,-2.5405381522555563,3.95440286307604 -163,22.0,14.0,-1.9683489489016612,3.976064876781356 -163,22.0,22.0,3.429754555384988,-6.965303617315433 -163,22.0,23.0,-1.4614056064833263,2.989238740534077 -163,23.0,21.0,-2.5405381522555563,3.95440286307604 -163,23.0,22.0,-1.4614056064833263,2.989238740534077 -163,23.0,23.0,5.311836702613133,-9.188263657315172 -163,23.0,24.0,-1.3098929438742493,2.287622053705056 -163,24.0,23.0,-1.3098929438742493,2.287622053705056 -163,24.0,24.0,4.495715080321987,-7.864978761969621 -163,24.0,25.0,-1.2165301194494855,1.8171440463475024 -163,24.0,26.0,-1.9692920169982515,3.760212661917064 -163,25.0,24.0,-1.2165301194494855,1.8171440463475024 -163,25.0,25.0,1.2165301194494855,-1.8171440463475024 -163,26.0,24.0,-1.9692920169982515,3.760212661917064 -163,26.0,26.0,3.652281470778589,-9.46044252232512 -163,26.0,27.0,0.0,2.608731947574922 -163,26.0,28.0,-0.99553355095268,1.881005840357816 -163,26.0,29.0,-0.6874559028276572,1.293971494797717 -163,27.0,5.0,-4.362844058012917,15.463571542897856 -163,27.0,7.0,-1.4439790613954469,4.540814658476248 -163,27.0,26.0,0.0,2.608731947574922 -163,27.0,27.0,5.806823119408364,-22.67145722159613 -163,28.0,26.0,-0.99553355095268,1.881005840357816 -163,28.0,28.0,1.9075867579849564,-3.604364401207048 -163,28.0,29.0,-0.9120532070322764,1.7233585608492326 -163,29.0,26.0,-0.6874559028276572,1.293971494797717 -163,29.0,28.0,-0.9120532070322764,1.7233585608492326 -163,29.0,29.0,1.5995091098599337,-3.0173300556469496 -164,0.0,0.0,6.765516048652632,-21.23160167089863 -164,0.0,1.0,-5.224646179885656,15.646726840803398 -164,0.0,2.0,-1.5408698687669766,5.631674830095234 -164,1.0,0.0,-5.224646179885656,15.646726840803398 -164,1.0,1.0,9.75228216552403,-30.648662892676068 -164,1.0,3.0,-1.7055303166990268,5.1973792282565086 -164,1.0,4.0,-1.1359607881738778,4.772479328281356 -164,1.0,5.0,-1.6861448807654689,5.116477495334806 -164,2.0,0.0,-1.5408698687669766,5.631674830095234 -164,2.0,2.0,9.736318911079088,-29.13794745915803 -164,2.0,3.0,-8.19544904231211,23.5308726290628 -164,3.0,1.0,-1.7055303166990268,5.1973792282565086 -164,3.0,2.0,-8.19544904231211,23.5308726290628 -164,3.0,3.0,16.314103089185693,-55.509410535254254 -164,3.0,5.0,-6.413123730174556,22.31120356548123 -164,3.0,11.0,0.0,4.191255364806866 -164,4.0,1.0,-1.1359607881738778,4.772479328281356 -164,4.0,4.0,4.089980824135861,-12.190647245055052 -164,4.0,6.0,-2.954020035961983,7.449267916773697 -164,5.0,1.0,-1.6861448807654689,5.116477495334806 -164,5.0,3.0,-6.413123730174556,22.31120356548123 -164,5.0,5.0,22.341631269034565,-82.8291478657789 -164,5.0,6.0,-3.590210423980992,11.02611441072814 -164,5.0,7.0,-6.289308176100628,22.0125786163522 -164,5.0,8.0,0.0,4.915840805411357 -164,5.0,9.0,0.0,1.8561002591115965 -164,5.0,27.0,-4.362844058012917,15.463571542897856 -164,6.0,4.0,-2.954020035961983,7.449267916773697 -164,6.0,5.0,-3.590210423980992,11.02611441072814 -164,6.0,6.0,6.544230459942975,-18.45668232750184 -164,7.0,5.0,-6.289308176100628,22.0125786163522 -164,7.0,7.0,7.733287237496075,-26.527493274828448 -164,7.0,27.0,-1.4439790613954469,4.540814658476248 -164,8.0,5.0,0.0,4.915840805411357 -164,8.0,8.0,0.0,-18.706293706293707 -164,8.0,9.0,0.0,9.090909090909092 -164,8.0,10.0,0.0,4.807692307692308 -164,9.0,5.0,0.0,1.8561002591115965 -164,9.0,8.0,0.0,9.090909090909092 -164,9.0,9.0,13.462042814524237,-41.3837606675224 -164,9.0,16.0,-3.956039125715353,10.317447719844054 -164,9.0,19.0,-1.7848303152666305,3.98535828943083 -164,9.0,20.0,-5.101853820159654,10.98071411292983 -164,9.0,21.0,-2.619319553382597,5.400770303329455 -164,10.0,8.0,0.0,4.807692307692308 -164,10.0,10.0,0.0,-4.807692307692308 -164,11.0,3.0,0.0,4.191255364806866 -164,11.0,11.0,6.573961583776156,-24.424167659260668 -164,11.0,12.0,0.0,7.142857142857143 -164,11.0,13.0,-1.5265676088395577,3.1734252729654173 -164,11.0,14.0,-3.0953961826564296,6.097275864326261 -164,11.0,15.0,-1.9519977922801688,4.104359379111847 -164,12.0,11.0,0.0,7.142857142857143 -164,12.0,12.0,0.0,-7.142857142857143 -164,13.0,11.0,-1.5265676088395577,3.1734252729654173 -164,13.0,13.0,4.01751987283902,-5.424299332335067 -164,13.0,14.0,-2.4909522639994623,2.250874059369649 -164,14.0,11.0,-3.0953961826564296,6.097275864326261 -164,14.0,13.0,-2.4909522639994623,2.250874059369649 -164,14.0,14.0,9.365498545964757,-16.01163373210796 -164,14.0,17.0,-1.8108011504072024,3.687418931630696 -164,14.0,22.0,-1.9683489489016612,3.976064876781356 -164,15.0,11.0,-1.9519977922801688,4.104359379111847 -164,15.0,15.0,3.271064728633931,-8.94513365126506 -164,15.0,16.0,-1.3190669363537617,4.8407742721532125 -164,16.0,9.0,-3.956039125715353,10.317447719844054 -164,16.0,15.0,-1.3190669363537617,4.8407742721532125 -164,16.0,16.0,5.275106062069114,-15.158221991997266 -164,17.0,14.0,-1.8108011504072024,3.687418931630696 -164,17.0,17.0,4.886487584415919,-9.906177730909668 -164,17.0,18.0,-3.0756864340087167,6.218758799278971 -164,18.0,17.0,-3.0756864340087167,6.218758799278971 -164,18.0,18.0,3.0756864340087167,-6.218758799278971 -164,19.0,9.0,-1.7848303152666305,3.98535828943083 -164,19.0,19.0,1.7848303152666305,-3.98535828943083 -164,20.0,9.0,-5.101853820159654,10.98071411292983 -164,20.0,20.0,21.876495189895888,-45.10843276170355 -164,20.0,21.0,-16.774641369736234,34.127718648773715 -164,21.0,9.0,-2.619319553382597,5.400770303329455 -164,21.0,20.0,-16.774641369736234,34.127718648773715 -164,21.0,21.0,21.93449907537439,-43.48289181517921 -164,21.0,23.0,-2.5405381522555563,3.95440286307604 -164,22.0,14.0,-1.9683489489016612,3.976064876781356 -164,22.0,22.0,3.429754555384988,-6.965303617315433 -164,22.0,23.0,-1.4614056064833263,2.989238740534077 -164,23.0,21.0,-2.5405381522555563,3.95440286307604 -164,23.0,22.0,-1.4614056064833263,2.989238740534077 -164,23.0,23.0,5.311836702613133,-9.188263657315172 -164,23.0,24.0,-1.3098929438742493,2.287622053705056 -164,24.0,23.0,-1.3098929438742493,2.287622053705056 -164,24.0,24.0,4.495715080321987,-7.864978761969621 -164,24.0,25.0,-1.2165301194494855,1.8171440463475024 -164,24.0,26.0,-1.9692920169982515,3.760212661917064 -164,25.0,24.0,-1.2165301194494855,1.8171440463475024 -164,25.0,25.0,1.2165301194494855,-1.8171440463475024 -164,26.0,24.0,-1.9692920169982515,3.760212661917064 -164,26.0,26.0,3.652281470778589,-9.46044252232512 -164,26.0,27.0,0.0,2.608731947574922 -164,26.0,28.0,-0.99553355095268,1.881005840357816 -164,26.0,29.0,-0.6874559028276572,1.293971494797717 -164,27.0,5.0,-4.362844058012917,15.463571542897856 -164,27.0,7.0,-1.4439790613954469,4.540814658476248 -164,27.0,26.0,0.0,2.608731947574922 -164,27.0,27.0,5.806823119408364,-22.67145722159613 -164,28.0,26.0,-0.99553355095268,1.881005840357816 -164,28.0,28.0,1.9075867579849564,-3.604364401207048 -164,28.0,29.0,-0.9120532070322764,1.7233585608492326 -164,29.0,26.0,-0.6874559028276572,1.293971494797717 -164,29.0,28.0,-0.9120532070322764,1.7233585608492326 -164,29.0,29.0,1.5995091098599337,-3.0173300556469496 -165,0.0,0.0,6.765516048652632,-21.23160167089863 -165,0.0,1.0,-5.224646179885656,15.646726840803398 -165,0.0,2.0,-1.5408698687669766,5.631674830095234 -165,1.0,0.0,-5.224646179885656,15.646726840803398 -165,1.0,1.0,8.046751848825002,-25.46968366441956 -165,1.0,4.0,-1.1359607881738778,4.772479328281356 -165,1.0,5.0,-1.6861448807654689,5.116477495334806 -165,2.0,0.0,-1.5408698687669766,5.631674830095234 -165,2.0,2.0,9.736318911079088,-29.13794745915803 -165,2.0,3.0,-8.19544904231211,23.5308726290628 -165,3.0,2.0,-8.19544904231211,23.5308726290628 -165,3.0,3.0,14.608572772486664,-50.33043130699775 -165,3.0,5.0,-6.413123730174556,22.31120356548123 -165,3.0,11.0,0.0,4.191255364806866 -165,4.0,1.0,-1.1359607881738778,4.772479328281356 -165,4.0,4.0,4.089980824135861,-12.190647245055052 -165,4.0,6.0,-2.954020035961983,7.449267916773697 -165,5.0,1.0,-1.6861448807654689,5.116477495334806 -165,5.0,3.0,-6.413123730174556,22.31120356548123 -165,5.0,5.0,22.341631269034565,-82.8291478657789 -165,5.0,6.0,-3.590210423980992,11.02611441072814 -165,5.0,7.0,-6.289308176100628,22.0125786163522 -165,5.0,8.0,0.0,4.915840805411357 -165,5.0,9.0,0.0,1.8561002591115965 -165,5.0,27.0,-4.362844058012917,15.463571542897856 -165,6.0,4.0,-2.954020035961983,7.449267916773697 -165,6.0,5.0,-3.590210423980992,11.02611441072814 -165,6.0,6.0,6.544230459942975,-18.45668232750184 -165,7.0,5.0,-6.289308176100628,22.0125786163522 -165,7.0,7.0,7.733287237496075,-26.527493274828448 -165,7.0,27.0,-1.4439790613954469,4.540814658476248 -165,8.0,5.0,0.0,4.915840805411357 -165,8.0,8.0,0.0,-18.706293706293707 -165,8.0,9.0,0.0,9.090909090909092 -165,8.0,10.0,0.0,4.807692307692308 -165,9.0,5.0,0.0,1.8561002591115965 -165,9.0,8.0,0.0,9.090909090909092 -165,9.0,9.0,13.462042814524237,-41.3837606675224 -165,9.0,16.0,-3.956039125715353,10.317447719844054 -165,9.0,19.0,-1.7848303152666305,3.98535828943083 -165,9.0,20.0,-5.101853820159654,10.98071411292983 -165,9.0,21.0,-2.619319553382597,5.400770303329455 -165,10.0,8.0,0.0,4.807692307692308 -165,10.0,10.0,0.0,-4.807692307692308 -165,11.0,3.0,0.0,4.191255364806866 -165,11.0,11.0,6.573961583776156,-24.424167659260668 -165,11.0,12.0,0.0,7.142857142857143 -165,11.0,13.0,-1.5265676088395577,3.1734252729654173 -165,11.0,14.0,-3.0953961826564296,6.097275864326261 -165,11.0,15.0,-1.9519977922801688,4.104359379111847 -165,12.0,11.0,0.0,7.142857142857143 -165,12.0,12.0,0.0,-7.142857142857143 -165,13.0,11.0,-1.5265676088395577,3.1734252729654173 -165,13.0,13.0,4.01751987283902,-5.424299332335067 -165,13.0,14.0,-2.4909522639994623,2.250874059369649 -165,14.0,11.0,-3.0953961826564296,6.097275864326261 -165,14.0,13.0,-2.4909522639994623,2.250874059369649 -165,14.0,14.0,9.365498545964757,-16.01163373210796 -165,14.0,17.0,-1.8108011504072024,3.687418931630696 -165,14.0,22.0,-1.9683489489016612,3.976064876781356 -165,15.0,11.0,-1.9519977922801688,4.104359379111847 -165,15.0,15.0,1.9519977922801688,-4.104359379111847 -165,16.0,9.0,-3.956039125715353,10.317447719844054 -165,16.0,16.0,3.956039125715353,-10.317447719844054 -165,17.0,14.0,-1.8108011504072024,3.687418931630696 -165,17.0,17.0,4.886487584415919,-9.906177730909668 -165,17.0,18.0,-3.0756864340087167,6.218758799278971 -165,18.0,17.0,-3.0756864340087167,6.218758799278971 -165,18.0,18.0,8.958039375185187,-17.98346468163191 -165,18.0,19.0,-5.88235294117647,11.76470588235294 -165,19.0,9.0,-1.7848303152666305,3.98535828943083 -165,19.0,18.0,-5.88235294117647,11.76470588235294 -165,19.0,19.0,7.6671832564431,-15.75006417178377 -165,20.0,9.0,-5.101853820159654,10.98071411292983 -165,20.0,20.0,21.876495189895888,-45.10843276170355 -165,20.0,21.0,-16.774641369736234,34.127718648773715 -165,21.0,9.0,-2.619319553382597,5.400770303329455 -165,21.0,20.0,-16.774641369736234,34.127718648773715 -165,21.0,21.0,21.93449907537439,-43.48289181517921 -165,21.0,23.0,-2.5405381522555563,3.95440286307604 -165,22.0,14.0,-1.9683489489016612,3.976064876781356 -165,22.0,22.0,3.429754555384988,-6.965303617315433 -165,22.0,23.0,-1.4614056064833263,2.989238740534077 -165,23.0,21.0,-2.5405381522555563,3.95440286307604 -165,23.0,22.0,-1.4614056064833263,2.989238740534077 -165,23.0,23.0,5.311836702613133,-9.188263657315172 -165,23.0,24.0,-1.3098929438742493,2.287622053705056 -165,24.0,23.0,-1.3098929438742493,2.287622053705056 -165,24.0,24.0,4.495715080321987,-7.864978761969621 -165,24.0,25.0,-1.2165301194494855,1.8171440463475024 -165,24.0,26.0,-1.9692920169982515,3.760212661917064 -165,25.0,24.0,-1.2165301194494855,1.8171440463475024 -165,25.0,25.0,1.2165301194494855,-1.8171440463475024 -165,26.0,24.0,-1.9692920169982515,3.760212661917064 -165,26.0,26.0,3.652281470778589,-9.46044252232512 -165,26.0,27.0,0.0,2.608731947574922 -165,26.0,28.0,-0.99553355095268,1.881005840357816 -165,26.0,29.0,-0.6874559028276572,1.293971494797717 -165,27.0,5.0,-4.362844058012917,15.463571542897856 -165,27.0,7.0,-1.4439790613954469,4.540814658476248 -165,27.0,26.0,0.0,2.608731947574922 -165,27.0,27.0,5.806823119408364,-22.67145722159613 -165,28.0,26.0,-0.99553355095268,1.881005840357816 -165,28.0,28.0,1.9075867579849564,-3.604364401207048 -165,28.0,29.0,-0.9120532070322764,1.7233585608492326 -165,29.0,26.0,-0.6874559028276572,1.293971494797717 -165,29.0,28.0,-0.9120532070322764,1.7233585608492326 -165,29.0,29.0,1.5995091098599337,-3.0173300556469496 -166,0.0,0.0,6.765516048652632,-21.23160167089863 -166,0.0,1.0,-5.224646179885656,15.646726840803398 -166,0.0,2.0,-1.5408698687669766,5.631674830095234 -166,1.0,0.0,-5.224646179885656,15.646726840803398 -166,1.0,1.0,9.75228216552403,-30.648662892676068 -166,1.0,3.0,-1.7055303166990268,5.1973792282565086 -166,1.0,4.0,-1.1359607881738778,4.772479328281356 -166,1.0,5.0,-1.6861448807654689,5.116477495334806 -166,2.0,0.0,-1.5408698687669766,5.631674830095234 -166,2.0,2.0,9.736318911079088,-29.13794745915803 -166,2.0,3.0,-8.19544904231211,23.5308726290628 -166,3.0,1.0,-1.7055303166990268,5.1973792282565086 -166,3.0,2.0,-8.19544904231211,23.5308726290628 -166,3.0,3.0,16.314103089185693,-55.509410535254254 -166,3.0,5.0,-6.413123730174556,22.31120356548123 -166,3.0,11.0,0.0,4.191255364806866 -166,4.0,1.0,-1.1359607881738778,4.772479328281356 -166,4.0,4.0,4.089980824135861,-12.190647245055052 -166,4.0,6.0,-2.954020035961983,7.449267916773697 -166,5.0,1.0,-1.6861448807654689,5.116477495334806 -166,5.0,3.0,-6.413123730174556,22.31120356548123 -166,5.0,5.0,22.341631269034565,-82.8291478657789 -166,5.0,6.0,-3.590210423980992,11.02611441072814 -166,5.0,7.0,-6.289308176100628,22.0125786163522 -166,5.0,8.0,0.0,4.915840805411357 -166,5.0,9.0,0.0,1.8561002591115965 -166,5.0,27.0,-4.362844058012917,15.463571542897856 -166,6.0,4.0,-2.954020035961983,7.449267916773697 -166,6.0,5.0,-3.590210423980992,11.02611441072814 -166,6.0,6.0,6.544230459942975,-18.45668232750184 -166,7.0,5.0,-6.289308176100628,22.0125786163522 -166,7.0,7.0,7.733287237496075,-26.527493274828448 -166,7.0,27.0,-1.4439790613954469,4.540814658476248 -166,8.0,5.0,0.0,4.915840805411357 -166,8.0,8.0,0.0,-18.706293706293707 -166,8.0,9.0,0.0,9.090909090909092 -166,8.0,10.0,0.0,4.807692307692308 -166,9.0,5.0,0.0,1.8561002591115965 -166,9.0,8.0,0.0,9.090909090909092 -166,9.0,9.0,6.575358679097951,-26.417688265161736 -166,9.0,16.0,-3.956039125715353,10.317447719844054 -166,9.0,21.0,-2.619319553382597,5.400770303329455 -166,10.0,8.0,0.0,4.807692307692308 -166,10.0,10.0,0.0,-4.807692307692308 -166,11.0,3.0,0.0,4.191255364806866 -166,11.0,11.0,6.573961583776156,-24.424167659260668 -166,11.0,12.0,0.0,7.142857142857143 -166,11.0,13.0,-1.5265676088395577,3.1734252729654173 -166,11.0,14.0,-3.0953961826564296,6.097275864326261 -166,11.0,15.0,-1.9519977922801688,4.104359379111847 -166,12.0,11.0,0.0,7.142857142857143 -166,12.0,12.0,0.0,-7.142857142857143 -166,13.0,11.0,-1.5265676088395577,3.1734252729654173 -166,13.0,13.0,4.01751987283902,-5.424299332335067 -166,13.0,14.0,-2.4909522639994623,2.250874059369649 -166,14.0,11.0,-3.0953961826564296,6.097275864326261 -166,14.0,13.0,-2.4909522639994623,2.250874059369649 -166,14.0,14.0,9.365498545964757,-16.01163373210796 -166,14.0,17.0,-1.8108011504072024,3.687418931630696 -166,14.0,22.0,-1.9683489489016612,3.976064876781356 -166,15.0,11.0,-1.9519977922801688,4.104359379111847 -166,15.0,15.0,1.9519977922801688,-4.104359379111847 -166,16.0,9.0,-3.956039125715353,10.317447719844054 -166,16.0,16.0,3.956039125715353,-10.317447719844054 -166,17.0,14.0,-1.8108011504072024,3.687418931630696 -166,17.0,17.0,4.886487584415919,-9.906177730909668 -166,17.0,18.0,-3.0756864340087167,6.218758799278971 -166,18.0,17.0,-3.0756864340087167,6.218758799278971 -166,18.0,18.0,8.958039375185187,-17.98346468163191 -166,18.0,19.0,-5.88235294117647,11.76470588235294 -166,19.0,18.0,-5.88235294117647,11.76470588235294 -166,19.0,19.0,5.88235294117647,-11.76470588235294 -166,20.0,20.0,16.774641369736234,-34.127718648773715 -166,20.0,21.0,-16.774641369736234,34.127718648773715 -166,21.0,9.0,-2.619319553382597,5.400770303329455 -166,21.0,20.0,-16.774641369736234,34.127718648773715 -166,21.0,21.0,21.93449907537439,-43.48289181517921 -166,21.0,23.0,-2.5405381522555563,3.95440286307604 -166,22.0,14.0,-1.9683489489016612,3.976064876781356 -166,22.0,22.0,3.429754555384988,-6.965303617315433 -166,22.0,23.0,-1.4614056064833263,2.989238740534077 -166,23.0,21.0,-2.5405381522555563,3.95440286307604 -166,23.0,22.0,-1.4614056064833263,2.989238740534077 -166,23.0,23.0,5.311836702613133,-9.188263657315172 -166,23.0,24.0,-1.3098929438742493,2.287622053705056 -166,24.0,23.0,-1.3098929438742493,2.287622053705056 -166,24.0,24.0,4.495715080321987,-7.864978761969621 -166,24.0,25.0,-1.2165301194494855,1.8171440463475024 -166,24.0,26.0,-1.9692920169982515,3.760212661917064 -166,25.0,24.0,-1.2165301194494855,1.8171440463475024 -166,25.0,25.0,1.2165301194494855,-1.8171440463475024 -166,26.0,24.0,-1.9692920169982515,3.760212661917064 -166,26.0,26.0,2.9648255679509314,-8.166471027527404 -166,26.0,27.0,0.0,2.608731947574922 -166,26.0,28.0,-0.99553355095268,1.881005840357816 -166,27.0,5.0,-4.362844058012917,15.463571542897856 -166,27.0,7.0,-1.4439790613954469,4.540814658476248 -166,27.0,26.0,0.0,2.608731947574922 -166,27.0,27.0,5.806823119408364,-22.67145722159613 -166,28.0,26.0,-0.99553355095268,1.881005840357816 -166,28.0,28.0,1.9075867579849564,-3.604364401207048 -166,28.0,29.0,-0.9120532070322764,1.7233585608492326 -166,29.0,28.0,-0.9120532070322764,1.7233585608492326 -166,29.0,29.0,0.9120532070322764,-1.7233585608492326 -167,0.0,0.0,6.765516048652632,-21.23160167089863 -167,0.0,1.0,-5.224646179885656,15.646726840803398 -167,0.0,2.0,-1.5408698687669766,5.631674830095234 -167,1.0,0.0,-5.224646179885656,15.646726840803398 -167,1.0,1.0,8.61632137735015,-25.897083564394716 -167,1.0,3.0,-1.7055303166990268,5.1973792282565086 -167,1.0,5.0,-1.6861448807654689,5.116477495334806 -167,2.0,0.0,-1.5408698687669766,5.631674830095234 -167,2.0,2.0,9.736318911079088,-29.13794745915803 -167,2.0,3.0,-8.19544904231211,23.5308726290628 -167,3.0,1.0,-1.7055303166990268,5.1973792282565086 -167,3.0,2.0,-8.19544904231211,23.5308726290628 -167,3.0,3.0,16.314103089185693,-55.509410535254254 -167,3.0,5.0,-6.413123730174556,22.31120356548123 -167,3.0,11.0,0.0,4.191255364806866 -167,4.0,4.0,2.954020035961983,-7.439067916773697 -167,4.0,6.0,-2.954020035961983,7.449267916773697 -167,5.0,1.0,-1.6861448807654689,5.116477495334806 -167,5.0,3.0,-6.413123730174556,22.31120356548123 -167,5.0,5.0,22.341631269034565,-82.8291478657789 -167,5.0,6.0,-3.590210423980992,11.02611441072814 -167,5.0,7.0,-6.289308176100628,22.0125786163522 -167,5.0,8.0,0.0,4.915840805411357 -167,5.0,9.0,0.0,1.8561002591115965 -167,5.0,27.0,-4.362844058012917,15.463571542897856 -167,6.0,4.0,-2.954020035961983,7.449267916773697 -167,6.0,5.0,-3.590210423980992,11.02611441072814 -167,6.0,6.0,6.544230459942975,-18.45668232750184 -167,7.0,5.0,-6.289308176100628,22.0125786163522 -167,7.0,7.0,7.733287237496075,-26.527493274828448 -167,7.0,27.0,-1.4439790613954469,4.540814658476248 -167,8.0,5.0,0.0,4.915840805411357 -167,8.0,8.0,0.0,-18.706293706293707 -167,8.0,9.0,0.0,9.090909090909092 -167,8.0,10.0,0.0,4.807692307692308 -167,9.0,5.0,0.0,1.8561002591115965 -167,9.0,8.0,0.0,9.090909090909092 -167,9.0,9.0,13.462042814524237,-41.3837606675224 -167,9.0,16.0,-3.956039125715353,10.317447719844054 -167,9.0,19.0,-1.7848303152666305,3.98535828943083 -167,9.0,20.0,-5.101853820159654,10.98071411292983 -167,9.0,21.0,-2.619319553382597,5.400770303329455 -167,10.0,8.0,0.0,4.807692307692308 -167,10.0,10.0,0.0,-4.807692307692308 -167,11.0,3.0,0.0,4.191255364806866 -167,11.0,11.0,6.573961583776156,-24.424167659260668 -167,11.0,12.0,0.0,7.142857142857143 -167,11.0,13.0,-1.5265676088395577,3.1734252729654173 -167,11.0,14.0,-3.0953961826564296,6.097275864326261 -167,11.0,15.0,-1.9519977922801688,4.104359379111847 -167,12.0,11.0,0.0,7.142857142857143 -167,12.0,12.0,0.0,-7.142857142857143 -167,13.0,11.0,-1.5265676088395577,3.1734252729654173 -167,13.0,13.0,4.01751987283902,-5.424299332335067 -167,13.0,14.0,-2.4909522639994623,2.250874059369649 -167,14.0,11.0,-3.0953961826564296,6.097275864326261 -167,14.0,13.0,-2.4909522639994623,2.250874059369649 -167,14.0,14.0,9.365498545964757,-16.01163373210796 -167,14.0,17.0,-1.8108011504072024,3.687418931630696 -167,14.0,22.0,-1.9683489489016612,3.976064876781356 -167,15.0,11.0,-1.9519977922801688,4.104359379111847 -167,15.0,15.0,3.271064728633931,-8.94513365126506 -167,15.0,16.0,-1.3190669363537617,4.8407742721532125 -167,16.0,9.0,-3.956039125715353,10.317447719844054 -167,16.0,15.0,-1.3190669363537617,4.8407742721532125 -167,16.0,16.0,5.275106062069114,-15.158221991997266 -167,17.0,14.0,-1.8108011504072024,3.687418931630696 -167,17.0,17.0,4.886487584415919,-9.906177730909668 -167,17.0,18.0,-3.0756864340087167,6.218758799278971 -167,18.0,17.0,-3.0756864340087167,6.218758799278971 -167,18.0,18.0,8.958039375185187,-17.98346468163191 -167,18.0,19.0,-5.88235294117647,11.76470588235294 -167,19.0,9.0,-1.7848303152666305,3.98535828943083 -167,19.0,18.0,-5.88235294117647,11.76470588235294 -167,19.0,19.0,7.6671832564431,-15.75006417178377 -167,20.0,9.0,-5.101853820159654,10.98071411292983 -167,20.0,20.0,21.876495189895888,-45.10843276170355 -167,20.0,21.0,-16.774641369736234,34.127718648773715 -167,21.0,9.0,-2.619319553382597,5.400770303329455 -167,21.0,20.0,-16.774641369736234,34.127718648773715 -167,21.0,21.0,21.93449907537439,-43.48289181517921 -167,21.0,23.0,-2.5405381522555563,3.95440286307604 -167,22.0,14.0,-1.9683489489016612,3.976064876781356 -167,22.0,22.0,3.429754555384988,-6.965303617315433 -167,22.0,23.0,-1.4614056064833263,2.989238740534077 -167,23.0,21.0,-2.5405381522555563,3.95440286307604 -167,23.0,22.0,-1.4614056064833263,2.989238740534077 -167,23.0,23.0,5.311836702613133,-9.188263657315172 -167,23.0,24.0,-1.3098929438742493,2.287622053705056 -167,24.0,23.0,-1.3098929438742493,2.287622053705056 -167,24.0,24.0,4.495715080321987,-7.864978761969621 -167,24.0,25.0,-1.2165301194494855,1.8171440463475024 -167,24.0,26.0,-1.9692920169982515,3.760212661917064 -167,25.0,24.0,-1.2165301194494855,1.8171440463475024 -167,25.0,25.0,1.2165301194494855,-1.8171440463475024 -167,26.0,24.0,-1.9692920169982515,3.760212661917064 -167,26.0,26.0,2.9648255679509314,-8.166471027527404 -167,26.0,27.0,0.0,2.608731947574922 -167,26.0,28.0,-0.99553355095268,1.881005840357816 -167,27.0,5.0,-4.362844058012917,15.463571542897856 -167,27.0,7.0,-1.4439790613954469,4.540814658476248 -167,27.0,26.0,0.0,2.608731947574922 -167,27.0,27.0,5.806823119408364,-22.67145722159613 -167,28.0,26.0,-0.99553355095268,1.881005840357816 -167,28.0,28.0,1.9075867579849564,-3.604364401207048 -167,28.0,29.0,-0.9120532070322764,1.7233585608492326 -167,29.0,28.0,-0.9120532070322764,1.7233585608492326 -167,29.0,29.0,0.9120532070322764,-1.7233585608492326 -168,0.0,0.0,6.765516048652632,-21.23160167089863 -168,0.0,1.0,-5.224646179885656,15.646726840803398 -168,0.0,2.0,-1.5408698687669766,5.631674830095234 -168,1.0,0.0,-5.224646179885656,15.646726840803398 -168,1.0,1.0,9.75228216552403,-30.648662892676068 -168,1.0,3.0,-1.7055303166990268,5.1973792282565086 -168,1.0,4.0,-1.1359607881738778,4.772479328281356 -168,1.0,5.0,-1.6861448807654689,5.116477495334806 -168,2.0,0.0,-1.5408698687669766,5.631674830095234 -168,2.0,2.0,9.736318911079088,-29.13794745915803 -168,2.0,3.0,-8.19544904231211,23.5308726290628 -168,3.0,1.0,-1.7055303166990268,5.1973792282565086 -168,3.0,2.0,-8.19544904231211,23.5308726290628 -168,3.0,3.0,16.314103089185693,-55.509410535254254 -168,3.0,5.0,-6.413123730174556,22.31120356548123 -168,3.0,11.0,0.0,4.191255364806866 -168,4.0,1.0,-1.1359607881738778,4.772479328281356 -168,4.0,4.0,4.089980824135861,-12.190647245055052 -168,4.0,6.0,-2.954020035961983,7.449267916773697 -168,5.0,1.0,-1.6861448807654689,5.116477495334806 -168,5.0,3.0,-6.413123730174556,22.31120356548123 -168,5.0,5.0,22.341631269034565,-82.8291478657789 -168,5.0,6.0,-3.590210423980992,11.02611441072814 -168,5.0,7.0,-6.289308176100628,22.0125786163522 -168,5.0,8.0,0.0,4.915840805411357 -168,5.0,9.0,0.0,1.8561002591115965 -168,5.0,27.0,-4.362844058012917,15.463571542897856 -168,6.0,4.0,-2.954020035961983,7.449267916773697 -168,6.0,5.0,-3.590210423980992,11.02611441072814 -168,6.0,6.0,6.544230459942975,-18.45668232750184 -168,7.0,5.0,-6.289308176100628,22.0125786163522 -168,7.0,7.0,7.733287237496075,-26.527493274828448 -168,7.0,27.0,-1.4439790613954469,4.540814658476248 -168,8.0,5.0,0.0,4.915840805411357 -168,8.0,8.0,0.0,-18.706293706293707 -168,8.0,9.0,0.0,9.090909090909092 -168,8.0,10.0,0.0,4.807692307692308 -168,9.0,5.0,0.0,1.8561002591115965 -168,9.0,8.0,0.0,9.090909090909092 -168,9.0,9.0,13.462042814524237,-41.3837606675224 -168,9.0,16.0,-3.956039125715353,10.317447719844054 -168,9.0,19.0,-1.7848303152666305,3.98535828943083 -168,9.0,20.0,-5.101853820159654,10.98071411292983 -168,9.0,21.0,-2.619319553382597,5.400770303329455 -168,10.0,8.0,0.0,4.807692307692308 -168,10.0,10.0,0.0,-4.807692307692308 -168,11.0,3.0,0.0,4.191255364806866 -168,11.0,11.0,6.573961583776156,-24.424167659260668 -168,11.0,12.0,0.0,7.142857142857143 -168,11.0,13.0,-1.5265676088395577,3.1734252729654173 -168,11.0,14.0,-3.0953961826564296,6.097275864326261 -168,11.0,15.0,-1.9519977922801688,4.104359379111847 -168,12.0,11.0,0.0,7.142857142857143 -168,12.0,12.0,0.0,-7.142857142857143 -168,13.0,11.0,-1.5265676088395577,3.1734252729654173 -168,13.0,13.0,1.5265676088395577,-3.1734252729654173 -168,14.0,11.0,-3.0953961826564296,6.097275864326261 -168,14.0,14.0,6.874546281965293,-13.760759672738311 -168,14.0,17.0,-1.8108011504072024,3.687418931630696 -168,14.0,22.0,-1.9683489489016612,3.976064876781356 -168,15.0,11.0,-1.9519977922801688,4.104359379111847 -168,15.0,15.0,3.271064728633931,-8.94513365126506 -168,15.0,16.0,-1.3190669363537617,4.8407742721532125 -168,16.0,9.0,-3.956039125715353,10.317447719844054 -168,16.0,15.0,-1.3190669363537617,4.8407742721532125 -168,16.0,16.0,5.275106062069114,-15.158221991997266 -168,17.0,14.0,-1.8108011504072024,3.687418931630696 -168,17.0,17.0,4.886487584415919,-9.906177730909668 -168,17.0,18.0,-3.0756864340087167,6.218758799278971 -168,18.0,17.0,-3.0756864340087167,6.218758799278971 -168,18.0,18.0,8.958039375185187,-17.98346468163191 -168,18.0,19.0,-5.88235294117647,11.76470588235294 -168,19.0,9.0,-1.7848303152666305,3.98535828943083 -168,19.0,18.0,-5.88235294117647,11.76470588235294 -168,19.0,19.0,7.6671832564431,-15.75006417178377 -168,20.0,9.0,-5.101853820159654,10.98071411292983 -168,20.0,20.0,21.876495189895888,-45.10843276170355 -168,20.0,21.0,-16.774641369736234,34.127718648773715 -168,21.0,9.0,-2.619319553382597,5.400770303329455 -168,21.0,20.0,-16.774641369736234,34.127718648773715 -168,21.0,21.0,21.93449907537439,-43.48289181517921 -168,21.0,23.0,-2.5405381522555563,3.95440286307604 -168,22.0,14.0,-1.9683489489016612,3.976064876781356 -168,22.0,22.0,3.429754555384988,-6.965303617315433 -168,22.0,23.0,-1.4614056064833263,2.989238740534077 -168,23.0,21.0,-2.5405381522555563,3.95440286307604 -168,23.0,22.0,-1.4614056064833263,2.989238740534077 -168,23.0,23.0,5.311836702613133,-9.188263657315172 -168,23.0,24.0,-1.3098929438742493,2.287622053705056 -168,24.0,23.0,-1.3098929438742493,2.287622053705056 -168,24.0,24.0,4.495715080321987,-7.864978761969621 -168,24.0,25.0,-1.2165301194494855,1.8171440463475024 -168,24.0,26.0,-1.9692920169982515,3.760212661917064 -168,25.0,24.0,-1.2165301194494855,1.8171440463475024 -168,25.0,25.0,1.2165301194494855,-1.8171440463475024 -168,26.0,24.0,-1.9692920169982515,3.760212661917064 -168,26.0,26.0,3.652281470778589,-9.46044252232512 -168,26.0,27.0,0.0,2.608731947574922 -168,26.0,28.0,-0.99553355095268,1.881005840357816 -168,26.0,29.0,-0.6874559028276572,1.293971494797717 -168,27.0,5.0,-4.362844058012917,15.463571542897856 -168,27.0,7.0,-1.4439790613954469,4.540814658476248 -168,27.0,26.0,0.0,2.608731947574922 -168,27.0,27.0,5.806823119408364,-22.67145722159613 -168,28.0,26.0,-0.99553355095268,1.881005840357816 -168,28.0,28.0,1.9075867579849564,-3.604364401207048 -168,28.0,29.0,-0.9120532070322764,1.7233585608492326 -168,29.0,26.0,-0.6874559028276572,1.293971494797717 -168,29.0,28.0,-0.9120532070322764,1.7233585608492326 -168,29.0,29.0,1.5995091098599337,-3.0173300556469496 -169,0.0,0.0,6.765516048652632,-21.23160167089863 -169,0.0,1.0,-5.224646179885656,15.646726840803398 -169,0.0,2.0,-1.5408698687669766,5.631674830095234 -169,1.0,0.0,-5.224646179885656,15.646726840803398 -169,1.0,1.0,8.046751848825002,-25.46968366441956 -169,1.0,4.0,-1.1359607881738778,4.772479328281356 -169,1.0,5.0,-1.6861448807654689,5.116477495334806 -169,2.0,0.0,-1.5408698687669766,5.631674830095234 -169,2.0,2.0,9.736318911079088,-29.13794745915803 -169,2.0,3.0,-8.19544904231211,23.5308726290628 -169,3.0,2.0,-8.19544904231211,23.5308726290628 -169,3.0,3.0,14.608572772486664,-45.83337619454403 -169,3.0,5.0,-6.413123730174556,22.31120356548123 -169,4.0,1.0,-1.1359607881738778,4.772479328281356 -169,4.0,4.0,4.089980824135861,-12.190647245055052 -169,4.0,6.0,-2.954020035961983,7.449267916773697 -169,5.0,1.0,-1.6861448807654689,5.116477495334806 -169,5.0,3.0,-6.413123730174556,22.31120356548123 -169,5.0,5.0,17.978787211021647,-67.37207632288106 -169,5.0,6.0,-3.590210423980992,11.02611441072814 -169,5.0,7.0,-6.289308176100628,22.0125786163522 -169,5.0,8.0,0.0,4.915840805411357 -169,5.0,9.0,0.0,1.8561002591115965 -169,6.0,4.0,-2.954020035961983,7.449267916773697 -169,6.0,5.0,-3.590210423980992,11.02611441072814 -169,6.0,6.0,6.544230459942975,-18.45668232750184 -169,7.0,5.0,-6.289308176100628,22.0125786163522 -169,7.0,7.0,7.733287237496075,-26.527493274828448 -169,7.0,27.0,-1.4439790613954469,4.540814658476248 -169,8.0,5.0,0.0,4.915840805411357 -169,8.0,8.0,0.0,-18.706293706293707 -169,8.0,9.0,0.0,9.090909090909092 -169,8.0,10.0,0.0,4.807692307692308 -169,9.0,5.0,0.0,1.8561002591115965 -169,9.0,8.0,0.0,9.090909090909092 -169,9.0,9.0,8.36018899436458,-30.40304655459257 -169,9.0,16.0,-3.956039125715353,10.317447719844054 -169,9.0,19.0,-1.7848303152666305,3.98535828943083 -169,9.0,21.0,-2.619319553382597,5.400770303329455 -169,10.0,8.0,0.0,4.807692307692308 -169,10.0,10.0,0.0,-4.807692307692308 -169,11.0,11.0,6.573961583776156,-20.517917659260668 -169,11.0,12.0,0.0,7.142857142857143 -169,11.0,13.0,-1.5265676088395577,3.1734252729654173 -169,11.0,14.0,-3.0953961826564296,6.097275864326261 -169,11.0,15.0,-1.9519977922801688,4.104359379111847 -169,12.0,11.0,0.0,7.142857142857143 -169,12.0,12.0,0.0,-7.142857142857143 -169,13.0,11.0,-1.5265676088395577,3.1734252729654173 -169,13.0,13.0,4.01751987283902,-5.424299332335067 -169,13.0,14.0,-2.4909522639994623,2.250874059369649 -169,14.0,11.0,-3.0953961826564296,6.097275864326261 -169,14.0,13.0,-2.4909522639994623,2.250874059369649 -169,14.0,14.0,9.365498545964757,-16.01163373210796 -169,14.0,17.0,-1.8108011504072024,3.687418931630696 -169,14.0,22.0,-1.9683489489016612,3.976064876781356 -169,15.0,11.0,-1.9519977922801688,4.104359379111847 -169,15.0,15.0,3.271064728633931,-8.94513365126506 -169,15.0,16.0,-1.3190669363537617,4.8407742721532125 -169,16.0,9.0,-3.956039125715353,10.317447719844054 -169,16.0,15.0,-1.3190669363537617,4.8407742721532125 -169,16.0,16.0,5.275106062069114,-15.158221991997266 -169,17.0,14.0,-1.8108011504072024,3.687418931630696 -169,17.0,17.0,4.886487584415919,-9.906177730909668 -169,17.0,18.0,-3.0756864340087167,6.218758799278971 -169,18.0,17.0,-3.0756864340087167,6.218758799278971 -169,18.0,18.0,8.958039375185187,-17.98346468163191 -169,18.0,19.0,-5.88235294117647,11.76470588235294 -169,19.0,9.0,-1.7848303152666305,3.98535828943083 -169,19.0,18.0,-5.88235294117647,11.76470588235294 -169,19.0,19.0,7.6671832564431,-15.75006417178377 -169,20.0,20.0,16.774641369736234,-34.127718648773715 -169,20.0,21.0,-16.774641369736234,34.127718648773715 -169,21.0,9.0,-2.619319553382597,5.400770303329455 -169,21.0,20.0,-16.774641369736234,34.127718648773715 -169,21.0,21.0,19.393960923118836,-39.52848895210317 -169,22.0,14.0,-1.9683489489016612,3.976064876781356 -169,22.0,22.0,3.429754555384988,-6.965303617315433 -169,22.0,23.0,-1.4614056064833263,2.989238740534077 -169,23.0,22.0,-1.4614056064833263,2.989238740534077 -169,23.0,23.0,2.771298550357576,-5.233860794239132 -169,23.0,24.0,-1.3098929438742493,2.287622053705056 -169,24.0,23.0,-1.3098929438742493,2.287622053705056 -169,24.0,24.0,4.495715080321987,-7.864978761969621 -169,24.0,25.0,-1.2165301194494855,1.8171440463475024 -169,24.0,26.0,-1.9692920169982515,3.760212661917064 -169,25.0,24.0,-1.2165301194494855,1.8171440463475024 -169,25.0,25.0,1.2165301194494855,-1.8171440463475024 -169,26.0,24.0,-1.9692920169982515,3.760212661917064 -169,26.0,26.0,3.652281470778589,-9.46044252232512 -169,26.0,27.0,0.0,2.608731947574922 -169,26.0,28.0,-0.99553355095268,1.881005840357816 -169,26.0,29.0,-0.6874559028276572,1.293971494797717 -169,27.0,7.0,-1.4439790613954469,4.540814658476248 -169,27.0,26.0,0.0,2.608731947574922 -169,27.0,27.0,1.4439790613954469,-7.214385678698274 -169,28.0,26.0,-0.99553355095268,1.881005840357816 -169,28.0,28.0,1.9075867579849564,-3.604364401207048 -169,28.0,29.0,-0.9120532070322764,1.7233585608492326 -169,29.0,26.0,-0.6874559028276572,1.293971494797717 -169,29.0,28.0,-0.9120532070322764,1.7233585608492326 -169,29.0,29.0,1.5995091098599337,-3.0173300556469496 -170,0.0,0.0,6.765516048652632,-21.23160167089863 -170,0.0,1.0,-5.224646179885656,15.646726840803398 -170,0.0,2.0,-1.5408698687669766,5.631674830095234 -170,1.0,0.0,-5.224646179885656,15.646726840803398 -170,1.0,1.0,9.75228216552403,-30.648662892676068 -170,1.0,3.0,-1.7055303166990268,5.1973792282565086 -170,1.0,4.0,-1.1359607881738778,4.772479328281356 -170,1.0,5.0,-1.6861448807654689,5.116477495334806 -170,2.0,0.0,-1.5408698687669766,5.631674830095234 -170,2.0,2.0,9.736318911079088,-29.13794745915803 -170,2.0,3.0,-8.19544904231211,23.5308726290628 -170,3.0,1.0,-1.7055303166990268,5.1973792282565086 -170,3.0,2.0,-8.19544904231211,23.5308726290628 -170,3.0,3.0,16.314103089185693,-55.509410535254254 -170,3.0,5.0,-6.413123730174556,22.31120356548123 -170,3.0,11.0,0.0,4.191255364806866 -170,4.0,1.0,-1.1359607881738778,4.772479328281356 -170,4.0,4.0,4.089980824135861,-12.190647245055052 -170,4.0,6.0,-2.954020035961983,7.449267916773697 -170,5.0,1.0,-1.6861448807654689,5.116477495334806 -170,5.0,3.0,-6.413123730174556,22.31120356548123 -170,5.0,5.0,22.341631269034565,-82.8291478657789 -170,5.0,6.0,-3.590210423980992,11.02611441072814 -170,5.0,7.0,-6.289308176100628,22.0125786163522 -170,5.0,8.0,0.0,4.915840805411357 -170,5.0,9.0,0.0,1.8561002591115965 -170,5.0,27.0,-4.362844058012917,15.463571542897856 -170,6.0,4.0,-2.954020035961983,7.449267916773697 -170,6.0,5.0,-3.590210423980992,11.02611441072814 -170,6.0,6.0,6.544230459942975,-18.45668232750184 -170,7.0,5.0,-6.289308176100628,22.0125786163522 -170,7.0,7.0,7.733287237496075,-26.527493274828448 -170,7.0,27.0,-1.4439790613954469,4.540814658476248 -170,8.0,5.0,0.0,4.915840805411357 -170,8.0,8.0,0.0,-18.706293706293707 -170,8.0,9.0,0.0,9.090909090909092 -170,8.0,10.0,0.0,4.807692307692308 -170,9.0,5.0,0.0,1.8561002591115965 -170,9.0,8.0,0.0,9.090909090909092 -170,9.0,9.0,13.462042814524237,-41.3837606675224 -170,9.0,16.0,-3.956039125715353,10.317447719844054 -170,9.0,19.0,-1.7848303152666305,3.98535828943083 -170,9.0,20.0,-5.101853820159654,10.98071411292983 -170,9.0,21.0,-2.619319553382597,5.400770303329455 -170,10.0,8.0,0.0,4.807692307692308 -170,10.0,10.0,0.0,-4.807692307692308 -170,11.0,3.0,0.0,4.191255364806866 -170,11.0,11.0,6.573961583776156,-24.424167659260668 -170,11.0,12.0,0.0,7.142857142857143 -170,11.0,13.0,-1.5265676088395577,3.1734252729654173 -170,11.0,14.0,-3.0953961826564296,6.097275864326261 -170,11.0,15.0,-1.9519977922801688,4.104359379111847 -170,12.0,11.0,0.0,7.142857142857143 -170,12.0,12.0,0.0,-7.142857142857143 -170,13.0,11.0,-1.5265676088395577,3.1734252729654173 -170,13.0,13.0,4.01751987283902,-5.424299332335067 -170,13.0,14.0,-2.4909522639994623,2.250874059369649 -170,14.0,11.0,-3.0953961826564296,6.097275864326261 -170,14.0,13.0,-2.4909522639994623,2.250874059369649 -170,14.0,14.0,9.365498545964757,-16.01163373210796 -170,14.0,17.0,-1.8108011504072024,3.687418931630696 -170,14.0,22.0,-1.9683489489016612,3.976064876781356 -170,15.0,11.0,-1.9519977922801688,4.104359379111847 -170,15.0,15.0,3.271064728633931,-8.94513365126506 -170,15.0,16.0,-1.3190669363537617,4.8407742721532125 -170,16.0,9.0,-3.956039125715353,10.317447719844054 -170,16.0,15.0,-1.3190669363537617,4.8407742721532125 -170,16.0,16.0,5.275106062069114,-15.158221991997266 -170,17.0,14.0,-1.8108011504072024,3.687418931630696 -170,17.0,17.0,4.886487584415919,-9.906177730909668 -170,17.0,18.0,-3.0756864340087167,6.218758799278971 -170,18.0,17.0,-3.0756864340087167,6.218758799278971 -170,18.0,18.0,8.958039375185187,-17.98346468163191 -170,18.0,19.0,-5.88235294117647,11.76470588235294 -170,19.0,9.0,-1.7848303152666305,3.98535828943083 -170,19.0,18.0,-5.88235294117647,11.76470588235294 -170,19.0,19.0,7.6671832564431,-15.75006417178377 -170,20.0,9.0,-5.101853820159654,10.98071411292983 -170,20.0,20.0,21.876495189895888,-45.10843276170355 -170,20.0,21.0,-16.774641369736234,34.127718648773715 -170,21.0,9.0,-2.619319553382597,5.400770303329455 -170,21.0,20.0,-16.774641369736234,34.127718648773715 -170,21.0,21.0,21.93449907537439,-43.48289181517921 -170,21.0,23.0,-2.5405381522555563,3.95440286307604 -170,22.0,14.0,-1.9683489489016612,3.976064876781356 -170,22.0,22.0,3.429754555384988,-6.965303617315433 -170,22.0,23.0,-1.4614056064833263,2.989238740534077 -170,23.0,21.0,-2.5405381522555563,3.95440286307604 -170,23.0,22.0,-1.4614056064833263,2.989238740534077 -170,23.0,23.0,5.311836702613133,-9.188263657315172 -170,23.0,24.0,-1.3098929438742493,2.287622053705056 -170,24.0,23.0,-1.3098929438742493,2.287622053705056 -170,24.0,24.0,4.495715080321987,-7.864978761969621 -170,24.0,25.0,-1.2165301194494855,1.8171440463475024 -170,24.0,26.0,-1.9692920169982515,3.760212661917064 -170,25.0,24.0,-1.2165301194494855,1.8171440463475024 -170,25.0,25.0,1.2165301194494855,-1.8171440463475024 -170,26.0,24.0,-1.9692920169982515,3.760212661917064 -170,26.0,26.0,3.652281470778589,-9.46044252232512 -170,26.0,27.0,0.0,2.608731947574922 -170,26.0,28.0,-0.99553355095268,1.881005840357816 -170,26.0,29.0,-0.6874559028276572,1.293971494797717 -170,27.0,5.0,-4.362844058012917,15.463571542897856 -170,27.0,7.0,-1.4439790613954469,4.540814658476248 -170,27.0,26.0,0.0,2.608731947574922 -170,27.0,27.0,5.806823119408364,-22.67145722159613 -170,28.0,26.0,-0.99553355095268,1.881005840357816 -170,28.0,28.0,1.9075867579849564,-3.604364401207048 -170,28.0,29.0,-0.9120532070322764,1.7233585608492326 -170,29.0,26.0,-0.6874559028276572,1.293971494797717 -170,29.0,28.0,-0.9120532070322764,1.7233585608492326 -170,29.0,29.0,1.5995091098599337,-3.0173300556469496 -171,0.0,0.0,6.765516048652632,-21.23160167089863 -171,0.0,1.0,-5.224646179885656,15.646726840803398 -171,0.0,2.0,-1.5408698687669766,5.631674830095234 -171,1.0,0.0,-5.224646179885656,15.646726840803398 -171,1.0,1.0,9.75228216552403,-30.648662892676068 -171,1.0,3.0,-1.7055303166990268,5.1973792282565086 -171,1.0,4.0,-1.1359607881738778,4.772479328281356 -171,1.0,5.0,-1.6861448807654689,5.116477495334806 -171,2.0,0.0,-1.5408698687669766,5.631674830095234 -171,2.0,2.0,9.736318911079088,-29.13794745915803 -171,2.0,3.0,-8.19544904231211,23.5308726290628 -171,3.0,1.0,-1.7055303166990268,5.1973792282565086 -171,3.0,2.0,-8.19544904231211,23.5308726290628 -171,3.0,3.0,16.314103089185693,-55.509410535254254 -171,3.0,5.0,-6.413123730174556,22.31120356548123 -171,3.0,11.0,0.0,4.191255364806866 -171,4.0,1.0,-1.1359607881738778,4.772479328281356 -171,4.0,4.0,4.089980824135861,-12.190647245055052 -171,4.0,6.0,-2.954020035961983,7.449267916773697 -171,5.0,1.0,-1.6861448807654689,5.116477495334806 -171,5.0,3.0,-6.413123730174556,22.31120356548123 -171,5.0,5.0,22.341631269034565,-82.8291478657789 -171,5.0,6.0,-3.590210423980992,11.02611441072814 -171,5.0,7.0,-6.289308176100628,22.0125786163522 -171,5.0,8.0,0.0,4.915840805411357 -171,5.0,9.0,0.0,1.8561002591115965 -171,5.0,27.0,-4.362844058012917,15.463571542897856 -171,6.0,4.0,-2.954020035961983,7.449267916773697 -171,6.0,5.0,-3.590210423980992,11.02611441072814 -171,6.0,6.0,6.544230459942975,-18.45668232750184 -171,7.0,5.0,-6.289308176100628,22.0125786163522 -171,7.0,7.0,7.733287237496075,-26.527493274828448 -171,7.0,27.0,-1.4439790613954469,4.540814658476248 -171,8.0,5.0,0.0,4.915840805411357 -171,8.0,8.0,0.0,-18.706293706293707 -171,8.0,9.0,0.0,9.090909090909092 -171,8.0,10.0,0.0,4.807692307692308 -171,9.0,5.0,0.0,1.8561002591115965 -171,9.0,8.0,0.0,9.090909090909092 -171,9.0,9.0,13.462042814524237,-41.3837606675224 -171,9.0,16.0,-3.956039125715353,10.317447719844054 -171,9.0,19.0,-1.7848303152666305,3.98535828943083 -171,9.0,20.0,-5.101853820159654,10.98071411292983 -171,9.0,21.0,-2.619319553382597,5.400770303329455 -171,10.0,8.0,0.0,4.807692307692308 -171,10.0,10.0,0.0,-4.807692307692308 -171,11.0,3.0,0.0,4.191255364806866 -171,11.0,11.0,6.573961583776156,-24.424167659260668 -171,11.0,12.0,0.0,7.142857142857143 -171,11.0,13.0,-1.5265676088395577,3.1734252729654173 -171,11.0,14.0,-3.0953961826564296,6.097275864326261 -171,11.0,15.0,-1.9519977922801688,4.104359379111847 -171,12.0,11.0,0.0,7.142857142857143 -171,12.0,12.0,0.0,-7.142857142857143 -171,13.0,11.0,-1.5265676088395577,3.1734252729654173 -171,13.0,13.0,4.01751987283902,-5.424299332335067 -171,13.0,14.0,-2.4909522639994623,2.250874059369649 -171,14.0,11.0,-3.0953961826564296,6.097275864326261 -171,14.0,13.0,-2.4909522639994623,2.250874059369649 -171,14.0,14.0,9.365498545964757,-16.01163373210796 -171,14.0,17.0,-1.8108011504072024,3.687418931630696 -171,14.0,22.0,-1.9683489489016612,3.976064876781356 -171,15.0,11.0,-1.9519977922801688,4.104359379111847 -171,15.0,15.0,3.271064728633931,-8.94513365126506 -171,15.0,16.0,-1.3190669363537617,4.8407742721532125 -171,16.0,9.0,-3.956039125715353,10.317447719844054 -171,16.0,15.0,-1.3190669363537617,4.8407742721532125 -171,16.0,16.0,5.275106062069114,-15.158221991997266 -171,17.0,14.0,-1.8108011504072024,3.687418931630696 -171,17.0,17.0,4.886487584415919,-9.906177730909668 -171,17.0,18.0,-3.0756864340087167,6.218758799278971 -171,18.0,17.0,-3.0756864340087167,6.218758799278971 -171,18.0,18.0,8.958039375185187,-17.98346468163191 -171,18.0,19.0,-5.88235294117647,11.76470588235294 -171,19.0,9.0,-1.7848303152666305,3.98535828943083 -171,19.0,18.0,-5.88235294117647,11.76470588235294 -171,19.0,19.0,7.6671832564431,-15.75006417178377 -171,20.0,9.0,-5.101853820159654,10.98071411292983 -171,20.0,20.0,21.876495189895888,-45.10843276170355 -171,20.0,21.0,-16.774641369736234,34.127718648773715 -171,21.0,9.0,-2.619319553382597,5.400770303329455 -171,21.0,20.0,-16.774641369736234,34.127718648773715 -171,21.0,21.0,21.93449907537439,-43.48289181517921 -171,21.0,23.0,-2.5405381522555563,3.95440286307604 -171,22.0,14.0,-1.9683489489016612,3.976064876781356 -171,22.0,22.0,3.429754555384988,-6.965303617315433 -171,22.0,23.0,-1.4614056064833263,2.989238740534077 -171,23.0,21.0,-2.5405381522555563,3.95440286307604 -171,23.0,22.0,-1.4614056064833263,2.989238740534077 -171,23.0,23.0,5.311836702613133,-9.188263657315172 -171,23.0,24.0,-1.3098929438742493,2.287622053705056 -171,24.0,23.0,-1.3098929438742493,2.287622053705056 -171,24.0,24.0,4.495715080321987,-7.864978761969621 -171,24.0,25.0,-1.2165301194494855,1.8171440463475024 -171,24.0,26.0,-1.9692920169982515,3.760212661917064 -171,25.0,24.0,-1.2165301194494855,1.8171440463475024 -171,25.0,25.0,1.2165301194494855,-1.8171440463475024 -171,26.0,24.0,-1.9692920169982515,3.760212661917064 -171,26.0,26.0,3.652281470778589,-9.46044252232512 -171,26.0,27.0,0.0,2.608731947574922 -171,26.0,28.0,-0.99553355095268,1.881005840357816 -171,26.0,29.0,-0.6874559028276572,1.293971494797717 -171,27.0,5.0,-4.362844058012917,15.463571542897856 -171,27.0,7.0,-1.4439790613954469,4.540814658476248 -171,27.0,26.0,0.0,2.608731947574922 -171,27.0,27.0,5.806823119408364,-22.67145722159613 -171,28.0,26.0,-0.99553355095268,1.881005840357816 -171,28.0,28.0,1.9075867579849564,-3.604364401207048 -171,28.0,29.0,-0.9120532070322764,1.7233585608492326 -171,29.0,26.0,-0.6874559028276572,1.293971494797717 -171,29.0,28.0,-0.9120532070322764,1.7233585608492326 -171,29.0,29.0,1.5995091098599337,-3.0173300556469496 -172,0.0,0.0,6.765516048652632,-21.23160167089863 -172,0.0,1.0,-5.224646179885656,15.646726840803398 -172,0.0,2.0,-1.5408698687669766,5.631674830095234 -172,1.0,0.0,-5.224646179885656,15.646726840803398 -172,1.0,1.0,9.75228216552403,-30.648662892676068 -172,1.0,3.0,-1.7055303166990268,5.1973792282565086 -172,1.0,4.0,-1.1359607881738778,4.772479328281356 -172,1.0,5.0,-1.6861448807654689,5.116477495334806 -172,2.0,0.0,-1.5408698687669766,5.631674830095234 -172,2.0,2.0,9.736318911079088,-29.13794745915803 -172,2.0,3.0,-8.19544904231211,23.5308726290628 -172,3.0,1.0,-1.7055303166990268,5.1973792282565086 -172,3.0,2.0,-8.19544904231211,23.5308726290628 -172,3.0,3.0,16.314103089185693,-55.509410535254254 -172,3.0,5.0,-6.413123730174556,22.31120356548123 -172,3.0,11.0,0.0,4.191255364806866 -172,4.0,1.0,-1.1359607881738778,4.772479328281356 -172,4.0,4.0,4.089980824135861,-12.190647245055052 -172,4.0,6.0,-2.954020035961983,7.449267916773697 -172,5.0,1.0,-1.6861448807654689,5.116477495334806 -172,5.0,3.0,-6.413123730174556,22.31120356548123 -172,5.0,5.0,22.341631269034565,-82.8291478657789 -172,5.0,6.0,-3.590210423980992,11.02611441072814 -172,5.0,7.0,-6.289308176100628,22.0125786163522 -172,5.0,8.0,0.0,4.915840805411357 -172,5.0,9.0,0.0,1.8561002591115965 -172,5.0,27.0,-4.362844058012917,15.463571542897856 -172,6.0,4.0,-2.954020035961983,7.449267916773697 -172,6.0,5.0,-3.590210423980992,11.02611441072814 -172,6.0,6.0,6.544230459942975,-18.45668232750184 -172,7.0,5.0,-6.289308176100628,22.0125786163522 -172,7.0,7.0,7.733287237496075,-26.527493274828448 -172,7.0,27.0,-1.4439790613954469,4.540814658476248 -172,8.0,5.0,0.0,4.915840805411357 -172,8.0,8.0,0.0,-18.706293706293707 -172,8.0,9.0,0.0,9.090909090909092 -172,8.0,10.0,0.0,4.807692307692308 -172,9.0,5.0,0.0,1.8561002591115965 -172,9.0,8.0,0.0,9.090909090909092 -172,9.0,9.0,13.462042814524237,-41.3837606675224 -172,9.0,16.0,-3.956039125715353,10.317447719844054 -172,9.0,19.0,-1.7848303152666305,3.98535828943083 -172,9.0,20.0,-5.101853820159654,10.98071411292983 -172,9.0,21.0,-2.619319553382597,5.400770303329455 -172,10.0,8.0,0.0,4.807692307692308 -172,10.0,10.0,0.0,-4.807692307692308 -172,11.0,3.0,0.0,4.191255364806866 -172,11.0,11.0,6.573961583776156,-24.424167659260668 -172,11.0,12.0,0.0,7.142857142857143 -172,11.0,13.0,-1.5265676088395577,3.1734252729654173 -172,11.0,14.0,-3.0953961826564296,6.097275864326261 -172,11.0,15.0,-1.9519977922801688,4.104359379111847 -172,12.0,11.0,0.0,7.142857142857143 -172,12.0,12.0,0.0,-7.142857142857143 -172,13.0,11.0,-1.5265676088395577,3.1734252729654173 -172,13.0,13.0,4.01751987283902,-5.424299332335067 -172,13.0,14.0,-2.4909522639994623,2.250874059369649 -172,14.0,11.0,-3.0953961826564296,6.097275864326261 -172,14.0,13.0,-2.4909522639994623,2.250874059369649 -172,14.0,14.0,9.365498545964757,-16.01163373210796 -172,14.0,17.0,-1.8108011504072024,3.687418931630696 -172,14.0,22.0,-1.9683489489016612,3.976064876781356 -172,15.0,11.0,-1.9519977922801688,4.104359379111847 -172,15.0,15.0,3.271064728633931,-8.94513365126506 -172,15.0,16.0,-1.3190669363537617,4.8407742721532125 -172,16.0,9.0,-3.956039125715353,10.317447719844054 -172,16.0,15.0,-1.3190669363537617,4.8407742721532125 -172,16.0,16.0,5.275106062069114,-15.158221991997266 -172,17.0,14.0,-1.8108011504072024,3.687418931630696 -172,17.0,17.0,4.886487584415919,-9.906177730909668 -172,17.0,18.0,-3.0756864340087167,6.218758799278971 -172,18.0,17.0,-3.0756864340087167,6.218758799278971 -172,18.0,18.0,8.958039375185187,-17.98346468163191 -172,18.0,19.0,-5.88235294117647,11.76470588235294 -172,19.0,9.0,-1.7848303152666305,3.98535828943083 -172,19.0,18.0,-5.88235294117647,11.76470588235294 -172,19.0,19.0,7.6671832564431,-15.75006417178377 -172,20.0,9.0,-5.101853820159654,10.98071411292983 -172,20.0,20.0,21.876495189895888,-45.10843276170355 -172,20.0,21.0,-16.774641369736234,34.127718648773715 -172,21.0,9.0,-2.619319553382597,5.400770303329455 -172,21.0,20.0,-16.774641369736234,34.127718648773715 -172,21.0,21.0,21.93449907537439,-43.48289181517921 -172,21.0,23.0,-2.5405381522555563,3.95440286307604 -172,22.0,14.0,-1.9683489489016612,3.976064876781356 -172,22.0,22.0,3.429754555384988,-6.965303617315433 -172,22.0,23.0,-1.4614056064833263,2.989238740534077 -172,23.0,21.0,-2.5405381522555563,3.95440286307604 -172,23.0,22.0,-1.4614056064833263,2.989238740534077 -172,23.0,23.0,5.311836702613133,-9.188263657315172 -172,23.0,24.0,-1.3098929438742493,2.287622053705056 -172,24.0,23.0,-1.3098929438742493,2.287622053705056 -172,24.0,24.0,4.495715080321987,-7.864978761969621 -172,24.0,25.0,-1.2165301194494855,1.8171440463475024 -172,24.0,26.0,-1.9692920169982515,3.760212661917064 -172,25.0,24.0,-1.2165301194494855,1.8171440463475024 -172,25.0,25.0,1.2165301194494855,-1.8171440463475024 -172,26.0,24.0,-1.9692920169982515,3.760212661917064 -172,26.0,26.0,3.652281470778589,-9.46044252232512 -172,26.0,27.0,0.0,2.608731947574922 -172,26.0,28.0,-0.99553355095268,1.881005840357816 -172,26.0,29.0,-0.6874559028276572,1.293971494797717 -172,27.0,5.0,-4.362844058012917,15.463571542897856 -172,27.0,7.0,-1.4439790613954469,4.540814658476248 -172,27.0,26.0,0.0,2.608731947574922 -172,27.0,27.0,5.806823119408364,-22.67145722159613 -172,28.0,26.0,-0.99553355095268,1.881005840357816 -172,28.0,28.0,1.9075867579849564,-3.604364401207048 -172,28.0,29.0,-0.9120532070322764,1.7233585608492326 -172,29.0,26.0,-0.6874559028276572,1.293971494797717 -172,29.0,28.0,-0.9120532070322764,1.7233585608492326 -172,29.0,29.0,1.5995091098599337,-3.0173300556469496 -173,0.0,0.0,6.765516048652632,-21.23160167089863 -173,0.0,1.0,-5.224646179885656,15.646726840803398 -173,0.0,2.0,-1.5408698687669766,5.631674830095234 -173,1.0,0.0,-5.224646179885656,15.646726840803398 -173,1.0,1.0,9.75228216552403,-30.648662892676068 -173,1.0,3.0,-1.7055303166990268,5.1973792282565086 -173,1.0,4.0,-1.1359607881738778,4.772479328281356 -173,1.0,5.0,-1.6861448807654689,5.116477495334806 -173,2.0,0.0,-1.5408698687669766,5.631674830095234 -173,2.0,2.0,9.736318911079088,-29.13794745915803 -173,2.0,3.0,-8.19544904231211,23.5308726290628 -173,3.0,1.0,-1.7055303166990268,5.1973792282565086 -173,3.0,2.0,-8.19544904231211,23.5308726290628 -173,3.0,3.0,16.314103089185693,-55.509410535254254 -173,3.0,5.0,-6.413123730174556,22.31120356548123 -173,3.0,11.0,0.0,4.191255364806866 -173,4.0,1.0,-1.1359607881738778,4.772479328281356 -173,4.0,4.0,4.089980824135861,-12.190647245055052 -173,4.0,6.0,-2.954020035961983,7.449267916773697 -173,5.0,1.0,-1.6861448807654689,5.116477495334806 -173,5.0,3.0,-6.413123730174556,22.31120356548123 -173,5.0,5.0,22.341631269034565,-82.8291478657789 -173,5.0,6.0,-3.590210423980992,11.02611441072814 -173,5.0,7.0,-6.289308176100628,22.0125786163522 -173,5.0,8.0,0.0,4.915840805411357 -173,5.0,9.0,0.0,1.8561002591115965 -173,5.0,27.0,-4.362844058012917,15.463571542897856 -173,6.0,4.0,-2.954020035961983,7.449267916773697 -173,6.0,5.0,-3.590210423980992,11.02611441072814 -173,6.0,6.0,6.544230459942975,-18.45668232750184 -173,7.0,5.0,-6.289308176100628,22.0125786163522 -173,7.0,7.0,7.733287237496075,-26.527493274828448 -173,7.0,27.0,-1.4439790613954469,4.540814658476248 -173,8.0,5.0,0.0,4.915840805411357 -173,8.0,8.0,0.0,-9.615384615384617 -173,8.0,10.0,0.0,4.807692307692308 -173,9.0,5.0,0.0,1.8561002591115965 -173,9.0,9.0,13.462042814524237,-32.29285157661331 -173,9.0,16.0,-3.956039125715353,10.317447719844054 -173,9.0,19.0,-1.7848303152666305,3.98535828943083 -173,9.0,20.0,-5.101853820159654,10.98071411292983 -173,9.0,21.0,-2.619319553382597,5.400770303329455 -173,10.0,8.0,0.0,4.807692307692308 -173,10.0,10.0,0.0,-4.807692307692308 -173,11.0,3.0,0.0,4.191255364806866 -173,11.0,11.0,6.573961583776156,-24.424167659260668 -173,11.0,12.0,0.0,7.142857142857143 -173,11.0,13.0,-1.5265676088395577,3.1734252729654173 -173,11.0,14.0,-3.0953961826564296,6.097275864326261 -173,11.0,15.0,-1.9519977922801688,4.104359379111847 -173,12.0,11.0,0.0,7.142857142857143 -173,12.0,12.0,0.0,-7.142857142857143 -173,13.0,11.0,-1.5265676088395577,3.1734252729654173 -173,13.0,13.0,4.01751987283902,-5.424299332335067 -173,13.0,14.0,-2.4909522639994623,2.250874059369649 -173,14.0,11.0,-3.0953961826564296,6.097275864326261 -173,14.0,13.0,-2.4909522639994623,2.250874059369649 -173,14.0,14.0,9.365498545964757,-16.01163373210796 -173,14.0,17.0,-1.8108011504072024,3.687418931630696 -173,14.0,22.0,-1.9683489489016612,3.976064876781356 -173,15.0,11.0,-1.9519977922801688,4.104359379111847 -173,15.0,15.0,3.271064728633931,-8.94513365126506 -173,15.0,16.0,-1.3190669363537617,4.8407742721532125 -173,16.0,9.0,-3.956039125715353,10.317447719844054 -173,16.0,15.0,-1.3190669363537617,4.8407742721532125 -173,16.0,16.0,5.275106062069114,-15.158221991997266 -173,17.0,14.0,-1.8108011504072024,3.687418931630696 -173,17.0,17.0,4.886487584415919,-9.906177730909668 -173,17.0,18.0,-3.0756864340087167,6.218758799278971 -173,18.0,17.0,-3.0756864340087167,6.218758799278971 -173,18.0,18.0,8.958039375185187,-17.98346468163191 -173,18.0,19.0,-5.88235294117647,11.76470588235294 -173,19.0,9.0,-1.7848303152666305,3.98535828943083 -173,19.0,18.0,-5.88235294117647,11.76470588235294 -173,19.0,19.0,7.6671832564431,-15.75006417178377 -173,20.0,9.0,-5.101853820159654,10.98071411292983 -173,20.0,20.0,21.876495189895888,-45.10843276170355 -173,20.0,21.0,-16.774641369736234,34.127718648773715 -173,21.0,9.0,-2.619319553382597,5.400770303329455 -173,21.0,20.0,-16.774641369736234,34.127718648773715 -173,21.0,21.0,21.93449907537439,-43.48289181517921 -173,21.0,23.0,-2.5405381522555563,3.95440286307604 -173,22.0,14.0,-1.9683489489016612,3.976064876781356 -173,22.0,22.0,3.429754555384988,-6.965303617315433 -173,22.0,23.0,-1.4614056064833263,2.989238740534077 -173,23.0,21.0,-2.5405381522555563,3.95440286307604 -173,23.0,22.0,-1.4614056064833263,2.989238740534077 -173,23.0,23.0,5.311836702613133,-9.188263657315172 -173,23.0,24.0,-1.3098929438742493,2.287622053705056 -173,24.0,23.0,-1.3098929438742493,2.287622053705056 -173,24.0,24.0,4.495715080321987,-7.864978761969621 -173,24.0,25.0,-1.2165301194494855,1.8171440463475024 -173,24.0,26.0,-1.9692920169982515,3.760212661917064 -173,25.0,24.0,-1.2165301194494855,1.8171440463475024 -173,25.0,25.0,1.2165301194494855,-1.8171440463475024 -173,26.0,24.0,-1.9692920169982515,3.760212661917064 -173,26.0,26.0,3.652281470778589,-9.46044252232512 -173,26.0,27.0,0.0,2.608731947574922 -173,26.0,28.0,-0.99553355095268,1.881005840357816 -173,26.0,29.0,-0.6874559028276572,1.293971494797717 -173,27.0,5.0,-4.362844058012917,15.463571542897856 -173,27.0,7.0,-1.4439790613954469,4.540814658476248 -173,27.0,26.0,0.0,2.608731947574922 -173,27.0,27.0,5.806823119408364,-22.67145722159613 -173,28.0,26.0,-0.99553355095268,1.881005840357816 -173,28.0,28.0,1.9075867579849564,-3.604364401207048 -173,28.0,29.0,-0.9120532070322764,1.7233585608492326 -173,29.0,26.0,-0.6874559028276572,1.293971494797717 -173,29.0,28.0,-0.9120532070322764,1.7233585608492326 -173,29.0,29.0,1.5995091098599337,-3.0173300556469496 -174,0.0,0.0,6.765516048652632,-21.23160167089863 -174,0.0,1.0,-5.224646179885656,15.646726840803398 -174,0.0,2.0,-1.5408698687669766,5.631674830095234 -174,1.0,0.0,-5.224646179885656,15.646726840803398 -174,1.0,1.0,8.61632137735015,-25.897083564394716 -174,1.0,3.0,-1.7055303166990268,5.1973792282565086 -174,1.0,5.0,-1.6861448807654689,5.116477495334806 -174,2.0,0.0,-1.5408698687669766,5.631674830095234 -174,2.0,2.0,9.736318911079088,-29.13794745915803 -174,2.0,3.0,-8.19544904231211,23.5308726290628 -174,3.0,1.0,-1.7055303166990268,5.1973792282565086 -174,3.0,2.0,-8.19544904231211,23.5308726290628 -174,3.0,3.0,16.314103089185693,-55.509410535254254 -174,3.0,5.0,-6.413123730174556,22.31120356548123 -174,3.0,11.0,0.0,4.191255364806866 -174,4.0,4.0,2.954020035961983,-7.439067916773697 -174,4.0,6.0,-2.954020035961983,7.449267916773697 -174,5.0,1.0,-1.6861448807654689,5.116477495334806 -174,5.0,3.0,-6.413123730174556,22.31120356548123 -174,5.0,5.0,22.341631269034565,-80.91366772221689 -174,5.0,6.0,-3.590210423980992,11.02611441072814 -174,5.0,7.0,-6.289308176100628,22.0125786163522 -174,5.0,8.0,0.0,4.915840805411357 -174,5.0,27.0,-4.362844058012917,15.463571542897856 -174,6.0,4.0,-2.954020035961983,7.449267916773697 -174,6.0,5.0,-3.590210423980992,11.02611441072814 -174,6.0,6.0,6.544230459942975,-18.45668232750184 -174,7.0,5.0,-6.289308176100628,22.0125786163522 -174,7.0,7.0,7.733287237496075,-26.527493274828448 -174,7.0,27.0,-1.4439790613954469,4.540814658476248 -174,8.0,5.0,0.0,4.915840805411357 -174,8.0,8.0,0.0,-18.706293706293707 -174,8.0,9.0,0.0,9.090909090909092 -174,8.0,10.0,0.0,4.807692307692308 -174,9.0,8.0,0.0,9.090909090909092 -174,9.0,9.0,10.842723261141638,-34.18442921311381 -174,9.0,16.0,-3.956039125715353,10.317447719844054 -174,9.0,19.0,-1.7848303152666305,3.98535828943083 -174,9.0,20.0,-5.101853820159654,10.98071411292983 -174,10.0,8.0,0.0,4.807692307692308 -174,10.0,10.0,0.0,-4.807692307692308 -174,11.0,3.0,0.0,4.191255364806866 -174,11.0,11.0,5.047393974936599,-21.25074238629525 -174,11.0,12.0,0.0,7.142857142857143 -174,11.0,14.0,-3.0953961826564296,6.097275864326261 -174,11.0,15.0,-1.9519977922801688,4.104359379111847 -174,12.0,11.0,0.0,7.142857142857143 -174,12.0,12.0,0.0,-7.142857142857143 -174,13.0,13.0,2.4909522639994623,-2.250874059369649 -174,13.0,14.0,-2.4909522639994623,2.250874059369649 -174,14.0,11.0,-3.0953961826564296,6.097275864326261 -174,14.0,13.0,-2.4909522639994623,2.250874059369649 -174,14.0,14.0,9.365498545964757,-16.01163373210796 -174,14.0,17.0,-1.8108011504072024,3.687418931630696 -174,14.0,22.0,-1.9683489489016612,3.976064876781356 -174,15.0,11.0,-1.9519977922801688,4.104359379111847 -174,15.0,15.0,3.271064728633931,-8.94513365126506 -174,15.0,16.0,-1.3190669363537617,4.8407742721532125 -174,16.0,9.0,-3.956039125715353,10.317447719844054 -174,16.0,15.0,-1.3190669363537617,4.8407742721532125 -174,16.0,16.0,5.275106062069114,-15.158221991997266 -174,17.0,14.0,-1.8108011504072024,3.687418931630696 -174,17.0,17.0,4.886487584415919,-9.906177730909668 -174,17.0,18.0,-3.0756864340087167,6.218758799278971 -174,18.0,17.0,-3.0756864340087167,6.218758799278971 -174,18.0,18.0,8.958039375185187,-17.98346468163191 -174,18.0,19.0,-5.88235294117647,11.76470588235294 -174,19.0,9.0,-1.7848303152666305,3.98535828943083 -174,19.0,18.0,-5.88235294117647,11.76470588235294 -174,19.0,19.0,7.6671832564431,-15.75006417178377 -174,20.0,9.0,-5.101853820159654,10.98071411292983 -174,20.0,20.0,21.876495189895888,-45.10843276170355 -174,20.0,21.0,-16.774641369736234,34.127718648773715 -174,21.0,20.0,-16.774641369736234,34.127718648773715 -174,21.0,21.0,19.31517952199179,-38.08212151184976 -174,21.0,23.0,-2.5405381522555563,3.95440286307604 -174,22.0,14.0,-1.9683489489016612,3.976064876781356 -174,22.0,22.0,3.429754555384988,-6.965303617315433 -174,22.0,23.0,-1.4614056064833263,2.989238740534077 -174,23.0,21.0,-2.5405381522555563,3.95440286307604 -174,23.0,22.0,-1.4614056064833263,2.989238740534077 -174,23.0,23.0,5.311836702613133,-9.188263657315172 -174,23.0,24.0,-1.3098929438742493,2.287622053705056 -174,24.0,23.0,-1.3098929438742493,2.287622053705056 -174,24.0,24.0,4.495715080321987,-7.864978761969621 -174,24.0,25.0,-1.2165301194494855,1.8171440463475024 -174,24.0,26.0,-1.9692920169982515,3.760212661917064 -174,25.0,24.0,-1.2165301194494855,1.8171440463475024 -174,25.0,25.0,1.2165301194494855,-1.8171440463475024 -174,26.0,24.0,-1.9692920169982515,3.760212661917064 -174,26.0,26.0,3.652281470778589,-9.46044252232512 -174,26.0,27.0,0.0,2.608731947574922 -174,26.0,28.0,-0.99553355095268,1.881005840357816 -174,26.0,29.0,-0.6874559028276572,1.293971494797717 -174,27.0,5.0,-4.362844058012917,15.463571542897856 -174,27.0,7.0,-1.4439790613954469,4.540814658476248 -174,27.0,26.0,0.0,2.608731947574922 -174,27.0,27.0,5.806823119408364,-22.67145722159613 -174,28.0,26.0,-0.99553355095268,1.881005840357816 -174,28.0,28.0,1.9075867579849564,-3.604364401207048 -174,28.0,29.0,-0.9120532070322764,1.7233585608492326 -174,29.0,26.0,-0.6874559028276572,1.293971494797717 -174,29.0,28.0,-0.9120532070322764,1.7233585608492326 -174,29.0,29.0,1.5995091098599337,-3.0173300556469496 -175,0.0,0.0,6.765516048652632,-21.23160167089863 -175,0.0,1.0,-5.224646179885656,15.646726840803398 -175,0.0,2.0,-1.5408698687669766,5.631674830095234 -175,1.0,0.0,-5.224646179885656,15.646726840803398 -175,1.0,1.0,9.75228216552403,-30.648662892676068 -175,1.0,3.0,-1.7055303166990268,5.1973792282565086 -175,1.0,4.0,-1.1359607881738778,4.772479328281356 -175,1.0,5.0,-1.6861448807654689,5.116477495334806 -175,2.0,0.0,-1.5408698687669766,5.631674830095234 -175,2.0,2.0,1.5408698687669766,-5.611274830095233 -175,3.0,1.0,-1.7055303166990268,5.1973792282565086 -175,3.0,3.0,8.118654046873583,-31.982737906191456 -175,3.0,5.0,-6.413123730174556,22.31120356548123 -175,3.0,11.0,0.0,4.191255364806866 -175,4.0,1.0,-1.1359607881738778,4.772479328281356 -175,4.0,4.0,4.089980824135861,-12.190647245055052 -175,4.0,6.0,-2.954020035961983,7.449267916773697 -175,5.0,1.0,-1.6861448807654689,5.116477495334806 -175,5.0,3.0,-6.413123730174556,22.31120356548123 -175,5.0,5.0,22.341631269034565,-82.8291478657789 -175,5.0,6.0,-3.590210423980992,11.02611441072814 -175,5.0,7.0,-6.289308176100628,22.0125786163522 -175,5.0,8.0,0.0,4.915840805411357 -175,5.0,9.0,0.0,1.8561002591115965 -175,5.0,27.0,-4.362844058012917,15.463571542897856 -175,6.0,4.0,-2.954020035961983,7.449267916773697 -175,6.0,5.0,-3.590210423980992,11.02611441072814 -175,6.0,6.0,6.544230459942975,-18.45668232750184 -175,7.0,5.0,-6.289308176100628,22.0125786163522 -175,7.0,7.0,7.733287237496075,-26.527493274828448 -175,7.0,27.0,-1.4439790613954469,4.540814658476248 -175,8.0,5.0,0.0,4.915840805411357 -175,8.0,8.0,0.0,-18.706293706293707 -175,8.0,9.0,0.0,9.090909090909092 -175,8.0,10.0,0.0,4.807692307692308 -175,9.0,5.0,0.0,1.8561002591115965 -175,9.0,8.0,0.0,9.090909090909092 -175,9.0,9.0,13.462042814524237,-41.3837606675224 -175,9.0,16.0,-3.956039125715353,10.317447719844054 -175,9.0,19.0,-1.7848303152666305,3.98535828943083 -175,9.0,20.0,-5.101853820159654,10.98071411292983 -175,9.0,21.0,-2.619319553382597,5.400770303329455 -175,10.0,8.0,0.0,4.807692307692308 -175,10.0,10.0,0.0,-4.807692307692308 -175,11.0,3.0,0.0,4.191255364806866 -175,11.0,11.0,6.573961583776156,-24.424167659260668 -175,11.0,12.0,0.0,7.142857142857143 -175,11.0,13.0,-1.5265676088395577,3.1734252729654173 -175,11.0,14.0,-3.0953961826564296,6.097275864326261 -175,11.0,15.0,-1.9519977922801688,4.104359379111847 -175,12.0,11.0,0.0,7.142857142857143 -175,12.0,12.0,0.0,-7.142857142857143 -175,13.0,11.0,-1.5265676088395577,3.1734252729654173 -175,13.0,13.0,4.01751987283902,-5.424299332335067 -175,13.0,14.0,-2.4909522639994623,2.250874059369649 -175,14.0,11.0,-3.0953961826564296,6.097275864326261 -175,14.0,13.0,-2.4909522639994623,2.250874059369649 -175,14.0,14.0,9.365498545964757,-16.01163373210796 -175,14.0,17.0,-1.8108011504072024,3.687418931630696 -175,14.0,22.0,-1.9683489489016612,3.976064876781356 -175,15.0,11.0,-1.9519977922801688,4.104359379111847 -175,15.0,15.0,3.271064728633931,-8.94513365126506 -175,15.0,16.0,-1.3190669363537617,4.8407742721532125 -175,16.0,9.0,-3.956039125715353,10.317447719844054 -175,16.0,15.0,-1.3190669363537617,4.8407742721532125 -175,16.0,16.0,5.275106062069114,-15.158221991997266 -175,17.0,14.0,-1.8108011504072024,3.687418931630696 -175,17.0,17.0,4.886487584415919,-9.906177730909668 -175,17.0,18.0,-3.0756864340087167,6.218758799278971 -175,18.0,17.0,-3.0756864340087167,6.218758799278971 -175,18.0,18.0,8.958039375185187,-17.98346468163191 -175,18.0,19.0,-5.88235294117647,11.76470588235294 -175,19.0,9.0,-1.7848303152666305,3.98535828943083 -175,19.0,18.0,-5.88235294117647,11.76470588235294 -175,19.0,19.0,7.6671832564431,-15.75006417178377 -175,20.0,9.0,-5.101853820159654,10.98071411292983 -175,20.0,20.0,21.876495189895888,-45.10843276170355 -175,20.0,21.0,-16.774641369736234,34.127718648773715 -175,21.0,9.0,-2.619319553382597,5.400770303329455 -175,21.0,20.0,-16.774641369736234,34.127718648773715 -175,21.0,21.0,21.93449907537439,-43.48289181517921 -175,21.0,23.0,-2.5405381522555563,3.95440286307604 -175,22.0,14.0,-1.9683489489016612,3.976064876781356 -175,22.0,22.0,3.429754555384988,-6.965303617315433 -175,22.0,23.0,-1.4614056064833263,2.989238740534077 -175,23.0,21.0,-2.5405381522555563,3.95440286307604 -175,23.0,22.0,-1.4614056064833263,2.989238740534077 -175,23.0,23.0,5.311836702613133,-9.188263657315172 -175,23.0,24.0,-1.3098929438742493,2.287622053705056 -175,24.0,23.0,-1.3098929438742493,2.287622053705056 -175,24.0,24.0,4.495715080321987,-7.864978761969621 -175,24.0,25.0,-1.2165301194494855,1.8171440463475024 -175,24.0,26.0,-1.9692920169982515,3.760212661917064 -175,25.0,24.0,-1.2165301194494855,1.8171440463475024 -175,25.0,25.0,1.2165301194494855,-1.8171440463475024 -175,26.0,24.0,-1.9692920169982515,3.760212661917064 -175,26.0,26.0,3.652281470778589,-9.46044252232512 -175,26.0,27.0,0.0,2.608731947574922 -175,26.0,28.0,-0.99553355095268,1.881005840357816 -175,26.0,29.0,-0.6874559028276572,1.293971494797717 -175,27.0,5.0,-4.362844058012917,15.463571542897856 -175,27.0,7.0,-1.4439790613954469,4.540814658476248 -175,27.0,26.0,0.0,2.608731947574922 -175,27.0,27.0,5.806823119408364,-22.67145722159613 -175,28.0,26.0,-0.99553355095268,1.881005840357816 -175,28.0,28.0,1.9075867579849564,-3.604364401207048 -175,28.0,29.0,-0.9120532070322764,1.7233585608492326 -175,29.0,26.0,-0.6874559028276572,1.293971494797717 -175,29.0,28.0,-0.9120532070322764,1.7233585608492326 -175,29.0,29.0,1.5995091098599337,-3.0173300556469496 -176,0.0,0.0,6.765516048652632,-21.23160167089863 -176,0.0,1.0,-5.224646179885656,15.646726840803398 -176,0.0,2.0,-1.5408698687669766,5.631674830095234 -176,1.0,0.0,-5.224646179885656,15.646726840803398 -176,1.0,1.0,9.75228216552403,-30.648662892676068 -176,1.0,3.0,-1.7055303166990268,5.1973792282565086 -176,1.0,4.0,-1.1359607881738778,4.772479328281356 -176,1.0,5.0,-1.6861448807654689,5.116477495334806 -176,2.0,0.0,-1.5408698687669766,5.631674830095234 -176,2.0,2.0,9.736318911079088,-29.13794745915803 -176,2.0,3.0,-8.19544904231211,23.5308726290628 -176,3.0,1.0,-1.7055303166990268,5.1973792282565086 -176,3.0,2.0,-8.19544904231211,23.5308726290628 -176,3.0,3.0,16.314103089185693,-55.509410535254254 -176,3.0,5.0,-6.413123730174556,22.31120356548123 -176,3.0,11.0,0.0,4.191255364806866 -176,4.0,1.0,-1.1359607881738778,4.772479328281356 -176,4.0,4.0,4.089980824135861,-12.190647245055052 -176,4.0,6.0,-2.954020035961983,7.449267916773697 -176,5.0,1.0,-1.6861448807654689,5.116477495334806 -176,5.0,3.0,-6.413123730174556,22.31120356548123 -176,5.0,5.0,16.052323092933932,-60.8210692494267 -176,5.0,6.0,-3.590210423980992,11.02611441072814 -176,5.0,8.0,0.0,4.915840805411357 -176,5.0,9.0,0.0,1.8561002591115965 -176,5.0,27.0,-4.362844058012917,15.463571542897856 -176,6.0,4.0,-2.954020035961983,7.449267916773697 -176,6.0,5.0,-3.590210423980992,11.02611441072814 -176,6.0,6.0,6.544230459942975,-18.45668232750184 -176,7.0,7.0,1.4439790613954469,-4.519414658476248 -176,7.0,27.0,-1.4439790613954469,4.540814658476248 -176,8.0,5.0,0.0,4.915840805411357 -176,8.0,8.0,0.0,-18.706293706293707 -176,8.0,9.0,0.0,9.090909090909092 -176,8.0,10.0,0.0,4.807692307692308 -176,9.0,5.0,0.0,1.8561002591115965 -176,9.0,8.0,0.0,9.090909090909092 -176,9.0,9.0,13.462042814524237,-41.3837606675224 -176,9.0,16.0,-3.956039125715353,10.317447719844054 -176,9.0,19.0,-1.7848303152666305,3.98535828943083 -176,9.0,20.0,-5.101853820159654,10.98071411292983 -176,9.0,21.0,-2.619319553382597,5.400770303329455 -176,10.0,8.0,0.0,4.807692307692308 -176,10.0,10.0,0.0,-4.807692307692308 -176,11.0,3.0,0.0,4.191255364806866 -176,11.0,11.0,3.0953961826564296,-17.146383007183402 -176,11.0,12.0,0.0,7.142857142857143 -176,11.0,14.0,-3.0953961826564296,6.097275864326261 -176,12.0,11.0,0.0,7.142857142857143 -176,12.0,12.0,0.0,-7.142857142857143 -176,13.0,13.0,2.4909522639994623,-2.250874059369649 -176,13.0,14.0,-2.4909522639994623,2.250874059369649 -176,14.0,11.0,-3.0953961826564296,6.097275864326261 -176,14.0,13.0,-2.4909522639994623,2.250874059369649 -176,14.0,14.0,9.365498545964757,-16.01163373210796 -176,14.0,17.0,-1.8108011504072024,3.687418931630696 -176,14.0,22.0,-1.9683489489016612,3.976064876781356 -176,15.0,15.0,1.3190669363537617,-4.8407742721532125 -176,15.0,16.0,-1.3190669363537617,4.8407742721532125 -176,16.0,9.0,-3.956039125715353,10.317447719844054 -176,16.0,15.0,-1.3190669363537617,4.8407742721532125 -176,16.0,16.0,5.275106062069114,-15.158221991997266 -176,17.0,14.0,-1.8108011504072024,3.687418931630696 -176,17.0,17.0,4.886487584415919,-9.906177730909668 -176,17.0,18.0,-3.0756864340087167,6.218758799278971 -176,18.0,17.0,-3.0756864340087167,6.218758799278971 -176,18.0,18.0,3.0756864340087167,-6.218758799278971 -176,19.0,9.0,-1.7848303152666305,3.98535828943083 -176,19.0,19.0,1.7848303152666305,-3.98535828943083 -176,20.0,9.0,-5.101853820159654,10.98071411292983 -176,20.0,20.0,5.101853820159654,-10.98071411292983 -176,21.0,9.0,-2.619319553382597,5.400770303329455 -176,21.0,21.0,5.159857705638154,-9.355173166405494 -176,21.0,23.0,-2.5405381522555563,3.95440286307604 -176,22.0,14.0,-1.9683489489016612,3.976064876781356 -176,22.0,22.0,3.429754555384988,-6.965303617315433 -176,22.0,23.0,-1.4614056064833263,2.989238740534077 -176,23.0,21.0,-2.5405381522555563,3.95440286307604 -176,23.0,22.0,-1.4614056064833263,2.989238740534077 -176,23.0,23.0,4.001943758738883,-6.900641603610116 -176,24.0,24.0,3.185822136447737,-5.577356708264566 -176,24.0,25.0,-1.2165301194494855,1.8171440463475024 -176,24.0,26.0,-1.9692920169982515,3.760212661917064 -176,25.0,24.0,-1.2165301194494855,1.8171440463475024 -176,25.0,25.0,1.2165301194494855,-1.8171440463475024 -176,26.0,24.0,-1.9692920169982515,3.760212661917064 -176,26.0,26.0,2.9648255679509314,-8.166471027527404 -176,26.0,27.0,0.0,2.608731947574922 -176,26.0,28.0,-0.99553355095268,1.881005840357816 -176,27.0,5.0,-4.362844058012917,15.463571542897856 -176,27.0,7.0,-1.4439790613954469,4.540814658476248 -176,27.0,26.0,0.0,2.608731947574922 -176,27.0,27.0,5.806823119408364,-22.67145722159613 -176,28.0,26.0,-0.99553355095268,1.881005840357816 -176,28.0,28.0,1.9075867579849564,-3.604364401207048 -176,28.0,29.0,-0.9120532070322764,1.7233585608492326 -176,29.0,28.0,-0.9120532070322764,1.7233585608492326 -176,29.0,29.0,0.9120532070322764,-1.7233585608492326 -177,0.0,0.0,6.765516048652632,-21.23160167089863 -177,0.0,1.0,-5.224646179885656,15.646726840803398 -177,0.0,2.0,-1.5408698687669766,5.631674830095234 -177,1.0,0.0,-5.224646179885656,15.646726840803398 -177,1.0,1.0,9.75228216552403,-30.648662892676068 -177,1.0,3.0,-1.7055303166990268,5.1973792282565086 -177,1.0,4.0,-1.1359607881738778,4.772479328281356 -177,1.0,5.0,-1.6861448807654689,5.116477495334806 -177,2.0,0.0,-1.5408698687669766,5.631674830095234 -177,2.0,2.0,9.736318911079088,-29.13794745915803 -177,2.0,3.0,-8.19544904231211,23.5308726290628 -177,3.0,1.0,-1.7055303166990268,5.1973792282565086 -177,3.0,2.0,-8.19544904231211,23.5308726290628 -177,3.0,3.0,16.314103089185693,-55.509410535254254 -177,3.0,5.0,-6.413123730174556,22.31120356548123 -177,3.0,11.0,0.0,4.191255364806866 -177,4.0,1.0,-1.1359607881738778,4.772479328281356 -177,4.0,4.0,4.089980824135861,-12.190647245055052 -177,4.0,6.0,-2.954020035961983,7.449267916773697 -177,5.0,1.0,-1.6861448807654689,5.116477495334806 -177,5.0,3.0,-6.413123730174556,22.31120356548123 -177,5.0,5.0,22.341631269034565,-82.8291478657789 -177,5.0,6.0,-3.590210423980992,11.02611441072814 -177,5.0,7.0,-6.289308176100628,22.0125786163522 -177,5.0,8.0,0.0,4.915840805411357 -177,5.0,9.0,0.0,1.8561002591115965 -177,5.0,27.0,-4.362844058012917,15.463571542897856 -177,6.0,4.0,-2.954020035961983,7.449267916773697 -177,6.0,5.0,-3.590210423980992,11.02611441072814 -177,6.0,6.0,6.544230459942975,-18.45668232750184 -177,7.0,5.0,-6.289308176100628,22.0125786163522 -177,7.0,7.0,7.733287237496075,-26.527493274828448 -177,7.0,27.0,-1.4439790613954469,4.540814658476248 -177,8.0,5.0,0.0,4.915840805411357 -177,8.0,8.0,0.0,-18.706293706293707 -177,8.0,9.0,0.0,9.090909090909092 -177,8.0,10.0,0.0,4.807692307692308 -177,9.0,5.0,0.0,1.8561002591115965 -177,9.0,8.0,0.0,9.090909090909092 -177,9.0,9.0,13.462042814524237,-41.3837606675224 -177,9.0,16.0,-3.956039125715353,10.317447719844054 -177,9.0,19.0,-1.7848303152666305,3.98535828943083 -177,9.0,20.0,-5.101853820159654,10.98071411292983 -177,9.0,21.0,-2.619319553382597,5.400770303329455 -177,10.0,8.0,0.0,4.807692307692308 -177,10.0,10.0,0.0,-4.807692307692308 -177,11.0,3.0,0.0,4.191255364806866 -177,11.0,11.0,6.573961583776156,-24.424167659260668 -177,11.0,12.0,0.0,7.142857142857143 -177,11.0,13.0,-1.5265676088395577,3.1734252729654173 -177,11.0,14.0,-3.0953961826564296,6.097275864326261 -177,11.0,15.0,-1.9519977922801688,4.104359379111847 -177,12.0,11.0,0.0,7.142857142857143 -177,12.0,12.0,0.0,-7.142857142857143 -177,13.0,11.0,-1.5265676088395577,3.1734252729654173 -177,13.0,13.0,4.01751987283902,-5.424299332335067 -177,13.0,14.0,-2.4909522639994623,2.250874059369649 -177,14.0,11.0,-3.0953961826564296,6.097275864326261 -177,14.0,13.0,-2.4909522639994623,2.250874059369649 -177,14.0,14.0,9.365498545964757,-16.01163373210796 -177,14.0,17.0,-1.8108011504072024,3.687418931630696 -177,14.0,22.0,-1.9683489489016612,3.976064876781356 -177,15.0,11.0,-1.9519977922801688,4.104359379111847 -177,15.0,15.0,3.271064728633931,-8.94513365126506 -177,15.0,16.0,-1.3190669363537617,4.8407742721532125 -177,16.0,9.0,-3.956039125715353,10.317447719844054 -177,16.0,15.0,-1.3190669363537617,4.8407742721532125 -177,16.0,16.0,5.275106062069114,-15.158221991997266 -177,17.0,14.0,-1.8108011504072024,3.687418931630696 -177,17.0,17.0,4.886487584415919,-9.906177730909668 -177,17.0,18.0,-3.0756864340087167,6.218758799278971 -177,18.0,17.0,-3.0756864340087167,6.218758799278971 -177,18.0,18.0,8.958039375185187,-17.98346468163191 -177,18.0,19.0,-5.88235294117647,11.76470588235294 -177,19.0,9.0,-1.7848303152666305,3.98535828943083 -177,19.0,18.0,-5.88235294117647,11.76470588235294 -177,19.0,19.0,7.6671832564431,-15.75006417178377 -177,20.0,9.0,-5.101853820159654,10.98071411292983 -177,20.0,20.0,21.876495189895888,-45.10843276170355 -177,20.0,21.0,-16.774641369736234,34.127718648773715 -177,21.0,9.0,-2.619319553382597,5.400770303329455 -177,21.0,20.0,-16.774641369736234,34.127718648773715 -177,21.0,21.0,21.93449907537439,-43.48289181517921 -177,21.0,23.0,-2.5405381522555563,3.95440286307604 -177,22.0,14.0,-1.9683489489016612,3.976064876781356 -177,22.0,22.0,3.429754555384988,-6.965303617315433 -177,22.0,23.0,-1.4614056064833263,2.989238740534077 -177,23.0,21.0,-2.5405381522555563,3.95440286307604 -177,23.0,22.0,-1.4614056064833263,2.989238740534077 -177,23.0,23.0,5.311836702613133,-9.188263657315172 -177,23.0,24.0,-1.3098929438742493,2.287622053705056 -177,24.0,23.0,-1.3098929438742493,2.287622053705056 -177,24.0,24.0,4.495715080321987,-7.864978761969621 -177,24.0,25.0,-1.2165301194494855,1.8171440463475024 -177,24.0,26.0,-1.9692920169982515,3.760212661917064 -177,25.0,24.0,-1.2165301194494855,1.8171440463475024 -177,25.0,25.0,1.2165301194494855,-1.8171440463475024 -177,26.0,24.0,-1.9692920169982515,3.760212661917064 -177,26.0,26.0,3.652281470778589,-9.46044252232512 -177,26.0,27.0,0.0,2.608731947574922 -177,26.0,28.0,-0.99553355095268,1.881005840357816 -177,26.0,29.0,-0.6874559028276572,1.293971494797717 -177,27.0,5.0,-4.362844058012917,15.463571542897856 -177,27.0,7.0,-1.4439790613954469,4.540814658476248 -177,27.0,26.0,0.0,2.608731947574922 -177,27.0,27.0,5.806823119408364,-22.67145722159613 -177,28.0,26.0,-0.99553355095268,1.881005840357816 -177,28.0,28.0,1.9075867579849564,-3.604364401207048 -177,28.0,29.0,-0.9120532070322764,1.7233585608492326 -177,29.0,26.0,-0.6874559028276572,1.293971494797717 -177,29.0,28.0,-0.9120532070322764,1.7233585608492326 -177,29.0,29.0,1.5995091098599337,-3.0173300556469496 -178,0.0,0.0,6.765516048652632,-21.23160167089863 -178,0.0,1.0,-5.224646179885656,15.646726840803398 -178,0.0,2.0,-1.5408698687669766,5.631674830095234 -178,1.0,0.0,-5.224646179885656,15.646726840803398 -178,1.0,1.0,9.75228216552403,-30.648662892676068 -178,1.0,3.0,-1.7055303166990268,5.1973792282565086 -178,1.0,4.0,-1.1359607881738778,4.772479328281356 -178,1.0,5.0,-1.6861448807654689,5.116477495334806 -178,2.0,0.0,-1.5408698687669766,5.631674830095234 -178,2.0,2.0,1.5408698687669766,-5.611274830095233 -178,3.0,1.0,-1.7055303166990268,5.1973792282565086 -178,3.0,3.0,8.118654046873583,-31.982737906191456 -178,3.0,5.0,-6.413123730174556,22.31120356548123 -178,3.0,11.0,0.0,4.191255364806866 -178,4.0,1.0,-1.1359607881738778,4.772479328281356 -178,4.0,4.0,4.089980824135861,-12.190647245055052 -178,4.0,6.0,-2.954020035961983,7.449267916773697 -178,5.0,1.0,-1.6861448807654689,5.116477495334806 -178,5.0,3.0,-6.413123730174556,22.31120356548123 -178,5.0,5.0,22.341631269034565,-82.8291478657789 -178,5.0,6.0,-3.590210423980992,11.02611441072814 -178,5.0,7.0,-6.289308176100628,22.0125786163522 -178,5.0,8.0,0.0,4.915840805411357 -178,5.0,9.0,0.0,1.8561002591115965 -178,5.0,27.0,-4.362844058012917,15.463571542897856 -178,6.0,4.0,-2.954020035961983,7.449267916773697 -178,6.0,5.0,-3.590210423980992,11.02611441072814 -178,6.0,6.0,6.544230459942975,-18.45668232750184 -178,7.0,5.0,-6.289308176100628,22.0125786163522 -178,7.0,7.0,6.289308176100628,-22.0080786163522 -178,8.0,5.0,0.0,4.915840805411357 -178,8.0,8.0,0.0,-18.706293706293707 -178,8.0,9.0,0.0,9.090909090909092 -178,8.0,10.0,0.0,4.807692307692308 -178,9.0,5.0,0.0,1.8561002591115965 -178,9.0,8.0,0.0,9.090909090909092 -178,9.0,9.0,8.36018899436458,-30.40304655459257 -178,9.0,16.0,-3.956039125715353,10.317447719844054 -178,9.0,19.0,-1.7848303152666305,3.98535828943083 -178,9.0,21.0,-2.619319553382597,5.400770303329455 -178,10.0,8.0,0.0,4.807692307692308 -178,10.0,10.0,0.0,-4.807692307692308 -178,11.0,3.0,0.0,4.191255364806866 -178,11.0,11.0,3.478565401119727,-18.326891794934408 -178,11.0,12.0,0.0,7.142857142857143 -178,11.0,13.0,-1.5265676088395577,3.1734252729654173 -178,11.0,15.0,-1.9519977922801688,4.104359379111847 -178,12.0,11.0,0.0,7.142857142857143 -178,12.0,12.0,0.0,-7.142857142857143 -178,13.0,11.0,-1.5265676088395577,3.1734252729654173 -178,13.0,13.0,4.01751987283902,-5.424299332335067 -178,13.0,14.0,-2.4909522639994623,2.250874059369649 -178,14.0,13.0,-2.4909522639994623,2.250874059369649 -178,14.0,14.0,6.270102363308326,-9.9143578677817 -178,14.0,17.0,-1.8108011504072024,3.687418931630696 -178,14.0,22.0,-1.9683489489016612,3.976064876781356 -178,15.0,11.0,-1.9519977922801688,4.104359379111847 -178,15.0,15.0,3.271064728633931,-8.94513365126506 -178,15.0,16.0,-1.3190669363537617,4.8407742721532125 -178,16.0,9.0,-3.956039125715353,10.317447719844054 -178,16.0,15.0,-1.3190669363537617,4.8407742721532125 -178,16.0,16.0,5.275106062069114,-15.158221991997266 -178,17.0,14.0,-1.8108011504072024,3.687418931630696 -178,17.0,17.0,4.886487584415919,-9.906177730909668 -178,17.0,18.0,-3.0756864340087167,6.218758799278971 -178,18.0,17.0,-3.0756864340087167,6.218758799278971 -178,18.0,18.0,8.958039375185187,-17.98346468163191 -178,18.0,19.0,-5.88235294117647,11.76470588235294 -178,19.0,9.0,-1.7848303152666305,3.98535828943083 -178,19.0,18.0,-5.88235294117647,11.76470588235294 -178,19.0,19.0,7.6671832564431,-15.75006417178377 -178,20.0,20.0,16.774641369736234,-34.127718648773715 -178,20.0,21.0,-16.774641369736234,34.127718648773715 -178,21.0,9.0,-2.619319553382597,5.400770303329455 -178,21.0,20.0,-16.774641369736234,34.127718648773715 -178,21.0,21.0,21.93449907537439,-43.48289181517921 -178,21.0,23.0,-2.5405381522555563,3.95440286307604 -178,22.0,14.0,-1.9683489489016612,3.976064876781356 -178,22.0,22.0,3.429754555384988,-6.965303617315433 -178,22.0,23.0,-1.4614056064833263,2.989238740534077 -178,23.0,21.0,-2.5405381522555563,3.95440286307604 -178,23.0,22.0,-1.4614056064833263,2.989238740534077 -178,23.0,23.0,5.311836702613133,-9.188263657315172 -178,23.0,24.0,-1.3098929438742493,2.287622053705056 -178,24.0,23.0,-1.3098929438742493,2.287622053705056 -178,24.0,24.0,4.495715080321987,-7.864978761969621 -178,24.0,25.0,-1.2165301194494855,1.8171440463475024 -178,24.0,26.0,-1.9692920169982515,3.760212661917064 -178,25.0,24.0,-1.2165301194494855,1.8171440463475024 -178,25.0,25.0,1.2165301194494855,-1.8171440463475024 -178,26.0,24.0,-1.9692920169982515,3.760212661917064 -178,26.0,26.0,3.652281470778589,-9.46044252232512 -178,26.0,27.0,0.0,2.608731947574922 -178,26.0,28.0,-0.99553355095268,1.881005840357816 -178,26.0,29.0,-0.6874559028276572,1.293971494797717 -178,27.0,5.0,-4.362844058012917,15.463571542897856 -178,27.0,26.0,0.0,2.608731947574922 -178,27.0,27.0,4.362844058012917,-18.15204256311988 -178,28.0,26.0,-0.99553355095268,1.881005840357816 -178,28.0,28.0,1.9075867579849564,-3.604364401207048 -178,28.0,29.0,-0.9120532070322764,1.7233585608492326 -178,29.0,26.0,-0.6874559028276572,1.293971494797717 -178,29.0,28.0,-0.9120532070322764,1.7233585608492326 -178,29.0,29.0,1.5995091098599337,-3.0173300556469496 -179,0.0,0.0,6.765516048652632,-21.23160167089863 -179,0.0,1.0,-5.224646179885656,15.646726840803398 -179,0.0,2.0,-1.5408698687669766,5.631674830095234 -179,1.0,0.0,-5.224646179885656,15.646726840803398 -179,1.0,1.0,9.75228216552403,-30.648662892676068 -179,1.0,3.0,-1.7055303166990268,5.1973792282565086 -179,1.0,4.0,-1.1359607881738778,4.772479328281356 -179,1.0,5.0,-1.6861448807654689,5.116477495334806 -179,2.0,0.0,-1.5408698687669766,5.631674830095234 -179,2.0,2.0,9.736318911079088,-29.13794745915803 -179,2.0,3.0,-8.19544904231211,23.5308726290628 -179,3.0,1.0,-1.7055303166990268,5.1973792282565086 -179,3.0,2.0,-8.19544904231211,23.5308726290628 -179,3.0,3.0,16.314103089185693,-55.509410535254254 -179,3.0,5.0,-6.413123730174556,22.31120356548123 -179,3.0,11.0,0.0,4.191255364806866 -179,4.0,1.0,-1.1359607881738778,4.772479328281356 -179,4.0,4.0,4.089980824135861,-12.190647245055052 -179,4.0,6.0,-2.954020035961983,7.449267916773697 -179,5.0,1.0,-1.6861448807654689,5.116477495334806 -179,5.0,3.0,-6.413123730174556,22.31120356548123 -179,5.0,5.0,22.341631269034565,-82.8291478657789 -179,5.0,6.0,-3.590210423980992,11.02611441072814 -179,5.0,7.0,-6.289308176100628,22.0125786163522 -179,5.0,8.0,0.0,4.915840805411357 -179,5.0,9.0,0.0,1.8561002591115965 -179,5.0,27.0,-4.362844058012917,15.463571542897856 -179,6.0,4.0,-2.954020035961983,7.449267916773697 -179,6.0,5.0,-3.590210423980992,11.02611441072814 -179,6.0,6.0,6.544230459942975,-18.45668232750184 -179,7.0,5.0,-6.289308176100628,22.0125786163522 -179,7.0,7.0,7.733287237496075,-26.527493274828448 -179,7.0,27.0,-1.4439790613954469,4.540814658476248 -179,8.0,5.0,0.0,4.915840805411357 -179,8.0,8.0,0.0,-18.706293706293707 -179,8.0,9.0,0.0,9.090909090909092 -179,8.0,10.0,0.0,4.807692307692308 -179,9.0,5.0,0.0,1.8561002591115965 -179,9.0,8.0,0.0,9.090909090909092 -179,9.0,9.0,13.462042814524237,-41.3837606675224 -179,9.0,16.0,-3.956039125715353,10.317447719844054 -179,9.0,19.0,-1.7848303152666305,3.98535828943083 -179,9.0,20.0,-5.101853820159654,10.98071411292983 -179,9.0,21.0,-2.619319553382597,5.400770303329455 -179,10.0,8.0,0.0,4.807692307692308 -179,10.0,10.0,0.0,-4.807692307692308 -179,11.0,3.0,0.0,4.191255364806866 -179,11.0,11.0,6.573961583776156,-24.424167659260668 -179,11.0,12.0,0.0,7.142857142857143 -179,11.0,13.0,-1.5265676088395577,3.1734252729654173 -179,11.0,14.0,-3.0953961826564296,6.097275864326261 -179,11.0,15.0,-1.9519977922801688,4.104359379111847 -179,12.0,11.0,0.0,7.142857142857143 -179,12.0,12.0,0.0,-7.142857142857143 -179,13.0,11.0,-1.5265676088395577,3.1734252729654173 -179,13.0,13.0,4.01751987283902,-5.424299332335067 -179,13.0,14.0,-2.4909522639994623,2.250874059369649 -179,14.0,11.0,-3.0953961826564296,6.097275864326261 -179,14.0,13.0,-2.4909522639994623,2.250874059369649 -179,14.0,14.0,9.365498545964757,-16.01163373210796 -179,14.0,17.0,-1.8108011504072024,3.687418931630696 -179,14.0,22.0,-1.9683489489016612,3.976064876781356 -179,15.0,11.0,-1.9519977922801688,4.104359379111847 -179,15.0,15.0,3.271064728633931,-8.94513365126506 -179,15.0,16.0,-1.3190669363537617,4.8407742721532125 -179,16.0,9.0,-3.956039125715353,10.317447719844054 -179,16.0,15.0,-1.3190669363537617,4.8407742721532125 -179,16.0,16.0,5.275106062069114,-15.158221991997266 -179,17.0,14.0,-1.8108011504072024,3.687418931630696 -179,17.0,17.0,4.886487584415919,-9.906177730909668 -179,17.0,18.0,-3.0756864340087167,6.218758799278971 -179,18.0,17.0,-3.0756864340087167,6.218758799278971 -179,18.0,18.0,8.958039375185187,-17.98346468163191 -179,18.0,19.0,-5.88235294117647,11.76470588235294 -179,19.0,9.0,-1.7848303152666305,3.98535828943083 -179,19.0,18.0,-5.88235294117647,11.76470588235294 -179,19.0,19.0,7.6671832564431,-15.75006417178377 -179,20.0,9.0,-5.101853820159654,10.98071411292983 -179,20.0,20.0,5.101853820159654,-10.98071411292983 -179,21.0,9.0,-2.619319553382597,5.400770303329455 -179,21.0,21.0,5.159857705638154,-9.355173166405494 -179,21.0,23.0,-2.5405381522555563,3.95440286307604 -179,22.0,14.0,-1.9683489489016612,3.976064876781356 -179,22.0,22.0,3.429754555384988,-6.965303617315433 -179,22.0,23.0,-1.4614056064833263,2.989238740534077 -179,23.0,21.0,-2.5405381522555563,3.95440286307604 -179,23.0,22.0,-1.4614056064833263,2.989238740534077 -179,23.0,23.0,5.311836702613133,-9.188263657315172 -179,23.0,24.0,-1.3098929438742493,2.287622053705056 -179,24.0,23.0,-1.3098929438742493,2.287622053705056 -179,24.0,24.0,4.495715080321987,-7.864978761969621 -179,24.0,25.0,-1.2165301194494855,1.8171440463475024 -179,24.0,26.0,-1.9692920169982515,3.760212661917064 -179,25.0,24.0,-1.2165301194494855,1.8171440463475024 -179,25.0,25.0,1.2165301194494855,-1.8171440463475024 -179,26.0,24.0,-1.9692920169982515,3.760212661917064 -179,26.0,26.0,3.652281470778589,-9.46044252232512 -179,26.0,27.0,0.0,2.608731947574922 -179,26.0,28.0,-0.99553355095268,1.881005840357816 -179,26.0,29.0,-0.6874559028276572,1.293971494797717 -179,27.0,5.0,-4.362844058012917,15.463571542897856 -179,27.0,7.0,-1.4439790613954469,4.540814658476248 -179,27.0,26.0,0.0,2.608731947574922 -179,27.0,27.0,5.806823119408364,-22.67145722159613 -179,28.0,26.0,-0.99553355095268,1.881005840357816 -179,28.0,28.0,1.9075867579849564,-3.604364401207048 -179,28.0,29.0,-0.9120532070322764,1.7233585608492326 -179,29.0,26.0,-0.6874559028276572,1.293971494797717 -179,29.0,28.0,-0.9120532070322764,1.7233585608492326 -179,29.0,29.0,1.5995091098599337,-3.0173300556469496 -180,0.0,0.0,6.765516048652632,-21.23160167089863 -180,0.0,1.0,-5.224646179885656,15.646726840803398 -180,0.0,2.0,-1.5408698687669766,5.631674830095234 -180,1.0,0.0,-5.224646179885656,15.646726840803398 -180,1.0,1.0,9.75228216552403,-30.648662892676068 -180,1.0,3.0,-1.7055303166990268,5.1973792282565086 -180,1.0,4.0,-1.1359607881738778,4.772479328281356 -180,1.0,5.0,-1.6861448807654689,5.116477495334806 -180,2.0,0.0,-1.5408698687669766,5.631674830095234 -180,2.0,2.0,9.736318911079088,-29.13794745915803 -180,2.0,3.0,-8.19544904231211,23.5308726290628 -180,3.0,1.0,-1.7055303166990268,5.1973792282565086 -180,3.0,2.0,-8.19544904231211,23.5308726290628 -180,3.0,3.0,16.314103089185693,-55.509410535254254 -180,3.0,5.0,-6.413123730174556,22.31120356548123 -180,3.0,11.0,0.0,4.191255364806866 -180,4.0,1.0,-1.1359607881738778,4.772479328281356 -180,4.0,4.0,4.089980824135861,-12.190647245055052 -180,4.0,6.0,-2.954020035961983,7.449267916773697 -180,5.0,1.0,-1.6861448807654689,5.116477495334806 -180,5.0,3.0,-6.413123730174556,22.31120356548123 -180,5.0,5.0,22.341631269034565,-82.8291478657789 -180,5.0,6.0,-3.590210423980992,11.02611441072814 -180,5.0,7.0,-6.289308176100628,22.0125786163522 -180,5.0,8.0,0.0,4.915840805411357 -180,5.0,9.0,0.0,1.8561002591115965 -180,5.0,27.0,-4.362844058012917,15.463571542897856 -180,6.0,4.0,-2.954020035961983,7.449267916773697 -180,6.0,5.0,-3.590210423980992,11.02611441072814 -180,6.0,6.0,6.544230459942975,-18.45668232750184 -180,7.0,5.0,-6.289308176100628,22.0125786163522 -180,7.0,7.0,7.733287237496075,-26.527493274828448 -180,7.0,27.0,-1.4439790613954469,4.540814658476248 -180,8.0,5.0,0.0,4.915840805411357 -180,8.0,8.0,0.0,-18.706293706293707 -180,8.0,9.0,0.0,9.090909090909092 -180,8.0,10.0,0.0,4.807692307692308 -180,9.0,5.0,0.0,1.8561002591115965 -180,9.0,8.0,0.0,9.090909090909092 -180,9.0,9.0,13.462042814524237,-41.3837606675224 -180,9.0,16.0,-3.956039125715353,10.317447719844054 -180,9.0,19.0,-1.7848303152666305,3.98535828943083 -180,9.0,20.0,-5.101853820159654,10.98071411292983 -180,9.0,21.0,-2.619319553382597,5.400770303329455 -180,10.0,8.0,0.0,4.807692307692308 -180,10.0,10.0,0.0,-4.807692307692308 -180,11.0,3.0,0.0,4.191255364806866 -180,11.0,11.0,6.573961583776156,-24.424167659260668 -180,11.0,12.0,0.0,7.142857142857143 -180,11.0,13.0,-1.5265676088395577,3.1734252729654173 -180,11.0,14.0,-3.0953961826564296,6.097275864326261 -180,11.0,15.0,-1.9519977922801688,4.104359379111847 -180,12.0,11.0,0.0,7.142857142857143 -180,12.0,12.0,0.0,-7.142857142857143 -180,13.0,11.0,-1.5265676088395577,3.1734252729654173 -180,13.0,13.0,4.01751987283902,-5.424299332335067 -180,13.0,14.0,-2.4909522639994623,2.250874059369649 -180,14.0,11.0,-3.0953961826564296,6.097275864326261 -180,14.0,13.0,-2.4909522639994623,2.250874059369649 -180,14.0,14.0,9.365498545964757,-16.01163373210796 -180,14.0,17.0,-1.8108011504072024,3.687418931630696 -180,14.0,22.0,-1.9683489489016612,3.976064876781356 -180,15.0,11.0,-1.9519977922801688,4.104359379111847 -180,15.0,15.0,3.271064728633931,-8.94513365126506 -180,15.0,16.0,-1.3190669363537617,4.8407742721532125 -180,16.0,9.0,-3.956039125715353,10.317447719844054 -180,16.0,15.0,-1.3190669363537617,4.8407742721532125 -180,16.0,16.0,5.275106062069114,-15.158221991997266 -180,17.0,14.0,-1.8108011504072024,3.687418931630696 -180,17.0,17.0,4.886487584415919,-9.906177730909668 -180,17.0,18.0,-3.0756864340087167,6.218758799278971 -180,18.0,17.0,-3.0756864340087167,6.218758799278971 -180,18.0,18.0,8.958039375185187,-17.98346468163191 -180,18.0,19.0,-5.88235294117647,11.76470588235294 -180,19.0,9.0,-1.7848303152666305,3.98535828943083 -180,19.0,18.0,-5.88235294117647,11.76470588235294 -180,19.0,19.0,7.6671832564431,-15.75006417178377 -180,20.0,9.0,-5.101853820159654,10.98071411292983 -180,20.0,20.0,21.876495189895888,-45.10843276170355 -180,20.0,21.0,-16.774641369736234,34.127718648773715 -180,21.0,9.0,-2.619319553382597,5.400770303329455 -180,21.0,20.0,-16.774641369736234,34.127718648773715 -180,21.0,21.0,21.93449907537439,-43.48289181517921 -180,21.0,23.0,-2.5405381522555563,3.95440286307604 -180,22.0,14.0,-1.9683489489016612,3.976064876781356 -180,22.0,22.0,3.429754555384988,-6.965303617315433 -180,22.0,23.0,-1.4614056064833263,2.989238740534077 -180,23.0,21.0,-2.5405381522555563,3.95440286307604 -180,23.0,22.0,-1.4614056064833263,2.989238740534077 -180,23.0,23.0,5.311836702613133,-9.188263657315172 -180,23.0,24.0,-1.3098929438742493,2.287622053705056 -180,24.0,23.0,-1.3098929438742493,2.287622053705056 -180,24.0,24.0,4.495715080321987,-7.864978761969621 -180,24.0,25.0,-1.2165301194494855,1.8171440463475024 -180,24.0,26.0,-1.9692920169982515,3.760212661917064 -180,25.0,24.0,-1.2165301194494855,1.8171440463475024 -180,25.0,25.0,1.2165301194494855,-1.8171440463475024 -180,26.0,24.0,-1.9692920169982515,3.760212661917064 -180,26.0,26.0,3.652281470778589,-9.46044252232512 -180,26.0,27.0,0.0,2.608731947574922 -180,26.0,28.0,-0.99553355095268,1.881005840357816 -180,26.0,29.0,-0.6874559028276572,1.293971494797717 -180,27.0,5.0,-4.362844058012917,15.463571542897856 -180,27.0,7.0,-1.4439790613954469,4.540814658476248 -180,27.0,26.0,0.0,2.608731947574922 -180,27.0,27.0,5.806823119408364,-22.67145722159613 -180,28.0,26.0,-0.99553355095268,1.881005840357816 -180,28.0,28.0,1.9075867579849564,-3.604364401207048 -180,28.0,29.0,-0.9120532070322764,1.7233585608492326 -180,29.0,26.0,-0.6874559028276572,1.293971494797717 -180,29.0,28.0,-0.9120532070322764,1.7233585608492326 -180,29.0,29.0,1.5995091098599337,-3.0173300556469496 -181,0.0,0.0,6.765516048652632,-21.23160167089863 -181,0.0,1.0,-5.224646179885656,15.646726840803398 -181,0.0,2.0,-1.5408698687669766,5.631674830095234 -181,1.0,0.0,-5.224646179885656,15.646726840803398 -181,1.0,1.0,8.046751848825002,-25.46968366441956 -181,1.0,4.0,-1.1359607881738778,4.772479328281356 -181,1.0,5.0,-1.6861448807654689,5.116477495334806 -181,2.0,0.0,-1.5408698687669766,5.631674830095234 -181,2.0,2.0,9.736318911079088,-29.13794745915803 -181,2.0,3.0,-8.19544904231211,23.5308726290628 -181,3.0,2.0,-8.19544904231211,23.5308726290628 -181,3.0,3.0,14.608572772486664,-50.33043130699775 -181,3.0,5.0,-6.413123730174556,22.31120356548123 -181,3.0,11.0,0.0,4.191255364806866 -181,4.0,1.0,-1.1359607881738778,4.772479328281356 -181,4.0,4.0,4.089980824135861,-12.190647245055052 -181,4.0,6.0,-2.954020035961983,7.449267916773697 -181,5.0,1.0,-1.6861448807654689,5.116477495334806 -181,5.0,3.0,-6.413123730174556,22.31120356548123 -181,5.0,5.0,22.341631269034565,-82.8291478657789 -181,5.0,6.0,-3.590210423980992,11.02611441072814 -181,5.0,7.0,-6.289308176100628,22.0125786163522 -181,5.0,8.0,0.0,4.915840805411357 -181,5.0,9.0,0.0,1.8561002591115965 -181,5.0,27.0,-4.362844058012917,15.463571542897856 -181,6.0,4.0,-2.954020035961983,7.449267916773697 -181,6.0,5.0,-3.590210423980992,11.02611441072814 -181,6.0,6.0,6.544230459942975,-18.45668232750184 -181,7.0,5.0,-6.289308176100628,22.0125786163522 -181,7.0,7.0,7.733287237496075,-26.527493274828448 -181,7.0,27.0,-1.4439790613954469,4.540814658476248 -181,8.0,5.0,0.0,4.915840805411357 -181,8.0,8.0,0.0,-18.706293706293707 -181,8.0,9.0,0.0,9.090909090909092 -181,8.0,10.0,0.0,4.807692307692308 -181,9.0,5.0,0.0,1.8561002591115965 -181,9.0,8.0,0.0,9.090909090909092 -181,9.0,9.0,13.462042814524237,-41.3837606675224 -181,9.0,16.0,-3.956039125715353,10.317447719844054 -181,9.0,19.0,-1.7848303152666305,3.98535828943083 -181,9.0,20.0,-5.101853820159654,10.98071411292983 -181,9.0,21.0,-2.619319553382597,5.400770303329455 -181,10.0,8.0,0.0,4.807692307692308 -181,10.0,10.0,0.0,-4.807692307692308 -181,11.0,3.0,0.0,4.191255364806866 -181,11.0,11.0,6.573961583776156,-24.424167659260668 -181,11.0,12.0,0.0,7.142857142857143 -181,11.0,13.0,-1.5265676088395577,3.1734252729654173 -181,11.0,14.0,-3.0953961826564296,6.097275864326261 -181,11.0,15.0,-1.9519977922801688,4.104359379111847 -181,12.0,11.0,0.0,7.142857142857143 -181,12.0,12.0,0.0,-7.142857142857143 -181,13.0,11.0,-1.5265676088395577,3.1734252729654173 -181,13.0,13.0,4.01751987283902,-5.424299332335067 -181,13.0,14.0,-2.4909522639994623,2.250874059369649 -181,14.0,11.0,-3.0953961826564296,6.097275864326261 -181,14.0,13.0,-2.4909522639994623,2.250874059369649 -181,14.0,14.0,9.365498545964757,-16.01163373210796 -181,14.0,17.0,-1.8108011504072024,3.687418931630696 -181,14.0,22.0,-1.9683489489016612,3.976064876781356 -181,15.0,11.0,-1.9519977922801688,4.104359379111847 -181,15.0,15.0,1.9519977922801688,-4.104359379111847 -181,16.0,9.0,-3.956039125715353,10.317447719844054 -181,16.0,16.0,3.956039125715353,-10.317447719844054 -181,17.0,14.0,-1.8108011504072024,3.687418931630696 -181,17.0,17.0,4.886487584415919,-9.906177730909668 -181,17.0,18.0,-3.0756864340087167,6.218758799278971 -181,18.0,17.0,-3.0756864340087167,6.218758799278971 -181,18.0,18.0,8.958039375185187,-17.98346468163191 -181,18.0,19.0,-5.88235294117647,11.76470588235294 -181,19.0,9.0,-1.7848303152666305,3.98535828943083 -181,19.0,18.0,-5.88235294117647,11.76470588235294 -181,19.0,19.0,7.6671832564431,-15.75006417178377 -181,20.0,9.0,-5.101853820159654,10.98071411292983 -181,20.0,20.0,21.876495189895888,-45.10843276170355 -181,20.0,21.0,-16.774641369736234,34.127718648773715 -181,21.0,9.0,-2.619319553382597,5.400770303329455 -181,21.0,20.0,-16.774641369736234,34.127718648773715 -181,21.0,21.0,21.93449907537439,-43.48289181517921 -181,21.0,23.0,-2.5405381522555563,3.95440286307604 -181,22.0,14.0,-1.9683489489016612,3.976064876781356 -181,22.0,22.0,3.429754555384988,-6.965303617315433 -181,22.0,23.0,-1.4614056064833263,2.989238740534077 -181,23.0,21.0,-2.5405381522555563,3.95440286307604 -181,23.0,22.0,-1.4614056064833263,2.989238740534077 -181,23.0,23.0,5.311836702613133,-9.188263657315172 -181,23.0,24.0,-1.3098929438742493,2.287622053705056 -181,24.0,23.0,-1.3098929438742493,2.287622053705056 -181,24.0,24.0,4.495715080321987,-7.864978761969621 -181,24.0,25.0,-1.2165301194494855,1.8171440463475024 -181,24.0,26.0,-1.9692920169982515,3.760212661917064 -181,25.0,24.0,-1.2165301194494855,1.8171440463475024 -181,25.0,25.0,1.2165301194494855,-1.8171440463475024 -181,26.0,24.0,-1.9692920169982515,3.760212661917064 -181,26.0,26.0,3.652281470778589,-9.46044252232512 -181,26.0,27.0,0.0,2.608731947574922 -181,26.0,28.0,-0.99553355095268,1.881005840357816 -181,26.0,29.0,-0.6874559028276572,1.293971494797717 -181,27.0,5.0,-4.362844058012917,15.463571542897856 -181,27.0,7.0,-1.4439790613954469,4.540814658476248 -181,27.0,26.0,0.0,2.608731947574922 -181,27.0,27.0,5.806823119408364,-22.67145722159613 -181,28.0,26.0,-0.99553355095268,1.881005840357816 -181,28.0,28.0,0.99553355095268,-1.881005840357816 -181,29.0,26.0,-0.6874559028276572,1.293971494797717 -181,29.0,29.0,0.6874559028276572,-1.293971494797717 -182,0.0,0.0,6.765516048652632,-21.23160167089863 -182,0.0,1.0,-5.224646179885656,15.646726840803398 -182,0.0,2.0,-1.5408698687669766,5.631674830095234 -182,1.0,0.0,-5.224646179885656,15.646726840803398 -182,1.0,1.0,9.75228216552403,-30.648662892676068 -182,1.0,3.0,-1.7055303166990268,5.1973792282565086 -182,1.0,4.0,-1.1359607881738778,4.772479328281356 -182,1.0,5.0,-1.6861448807654689,5.116477495334806 -182,2.0,0.0,-1.5408698687669766,5.631674830095234 -182,2.0,2.0,9.736318911079088,-29.13794745915803 -182,2.0,3.0,-8.19544904231211,23.5308726290628 -182,3.0,1.0,-1.7055303166990268,5.1973792282565086 -182,3.0,2.0,-8.19544904231211,23.5308726290628 -182,3.0,3.0,16.314103089185693,-55.509410535254254 -182,3.0,5.0,-6.413123730174556,22.31120356548123 -182,3.0,11.0,0.0,4.191255364806866 -182,4.0,1.0,-1.1359607881738778,4.772479328281356 -182,4.0,4.0,4.089980824135861,-12.190647245055052 -182,4.0,6.0,-2.954020035961983,7.449267916773697 -182,5.0,1.0,-1.6861448807654689,5.116477495334806 -182,5.0,3.0,-6.413123730174556,22.31120356548123 -182,5.0,5.0,22.341631269034565,-82.8291478657789 -182,5.0,6.0,-3.590210423980992,11.02611441072814 -182,5.0,7.0,-6.289308176100628,22.0125786163522 -182,5.0,8.0,0.0,4.915840805411357 -182,5.0,9.0,0.0,1.8561002591115965 -182,5.0,27.0,-4.362844058012917,15.463571542897856 -182,6.0,4.0,-2.954020035961983,7.449267916773697 -182,6.0,5.0,-3.590210423980992,11.02611441072814 -182,6.0,6.0,6.544230459942975,-18.45668232750184 -182,7.0,5.0,-6.289308176100628,22.0125786163522 -182,7.0,7.0,6.289308176100628,-22.0080786163522 -182,8.0,5.0,0.0,4.915840805411357 -182,8.0,8.0,0.0,-18.706293706293707 -182,8.0,9.0,0.0,9.090909090909092 -182,8.0,10.0,0.0,4.807692307692308 -182,9.0,5.0,0.0,1.8561002591115965 -182,9.0,8.0,0.0,9.090909090909092 -182,9.0,9.0,13.462042814524237,-41.3837606675224 -182,9.0,16.0,-3.956039125715353,10.317447719844054 -182,9.0,19.0,-1.7848303152666305,3.98535828943083 -182,9.0,20.0,-5.101853820159654,10.98071411292983 -182,9.0,21.0,-2.619319553382597,5.400770303329455 -182,10.0,8.0,0.0,4.807692307692308 -182,10.0,10.0,0.0,-4.807692307692308 -182,11.0,3.0,0.0,4.191255364806866 -182,11.0,11.0,3.478565401119727,-18.326891794934408 -182,11.0,12.0,0.0,7.142857142857143 -182,11.0,13.0,-1.5265676088395577,3.1734252729654173 -182,11.0,15.0,-1.9519977922801688,4.104359379111847 -182,12.0,11.0,0.0,7.142857142857143 -182,12.0,12.0,0.0,-7.142857142857143 -182,13.0,11.0,-1.5265676088395577,3.1734252729654173 -182,13.0,13.0,4.01751987283902,-5.424299332335067 -182,13.0,14.0,-2.4909522639994623,2.250874059369649 -182,14.0,13.0,-2.4909522639994623,2.250874059369649 -182,14.0,14.0,6.270102363308326,-9.9143578677817 -182,14.0,17.0,-1.8108011504072024,3.687418931630696 -182,14.0,22.0,-1.9683489489016612,3.976064876781356 -182,15.0,11.0,-1.9519977922801688,4.104359379111847 -182,15.0,15.0,3.271064728633931,-8.94513365126506 -182,15.0,16.0,-1.3190669363537617,4.8407742721532125 -182,16.0,9.0,-3.956039125715353,10.317447719844054 -182,16.0,15.0,-1.3190669363537617,4.8407742721532125 -182,16.0,16.0,5.275106062069114,-15.158221991997266 -182,17.0,14.0,-1.8108011504072024,3.687418931630696 -182,17.0,17.0,4.886487584415919,-9.906177730909668 -182,17.0,18.0,-3.0756864340087167,6.218758799278971 -182,18.0,17.0,-3.0756864340087167,6.218758799278971 -182,18.0,18.0,8.958039375185187,-17.98346468163191 -182,18.0,19.0,-5.88235294117647,11.76470588235294 -182,19.0,9.0,-1.7848303152666305,3.98535828943083 -182,19.0,18.0,-5.88235294117647,11.76470588235294 -182,19.0,19.0,7.6671832564431,-15.75006417178377 -182,20.0,9.0,-5.101853820159654,10.98071411292983 -182,20.0,20.0,21.876495189895888,-45.10843276170355 -182,20.0,21.0,-16.774641369736234,34.127718648773715 -182,21.0,9.0,-2.619319553382597,5.400770303329455 -182,21.0,20.0,-16.774641369736234,34.127718648773715 -182,21.0,21.0,21.93449907537439,-43.48289181517921 -182,21.0,23.0,-2.5405381522555563,3.95440286307604 -182,22.0,14.0,-1.9683489489016612,3.976064876781356 -182,22.0,22.0,3.429754555384988,-6.965303617315433 -182,22.0,23.0,-1.4614056064833263,2.989238740534077 -182,23.0,21.0,-2.5405381522555563,3.95440286307604 -182,23.0,22.0,-1.4614056064833263,2.989238740534077 -182,23.0,23.0,5.311836702613133,-9.188263657315172 -182,23.0,24.0,-1.3098929438742493,2.287622053705056 -182,24.0,23.0,-1.3098929438742493,2.287622053705056 -182,24.0,24.0,4.495715080321987,-7.864978761969621 -182,24.0,25.0,-1.2165301194494855,1.8171440463475024 -182,24.0,26.0,-1.9692920169982515,3.760212661917064 -182,25.0,24.0,-1.2165301194494855,1.8171440463475024 -182,25.0,25.0,1.2165301194494855,-1.8171440463475024 -182,26.0,24.0,-1.9692920169982515,3.760212661917064 -182,26.0,26.0,3.652281470778589,-9.46044252232512 -182,26.0,27.0,0.0,2.608731947574922 -182,26.0,28.0,-0.99553355095268,1.881005840357816 -182,26.0,29.0,-0.6874559028276572,1.293971494797717 -182,27.0,5.0,-4.362844058012917,15.463571542897856 -182,27.0,26.0,0.0,2.608731947574922 -182,27.0,27.0,4.362844058012917,-18.15204256311988 -182,28.0,26.0,-0.99553355095268,1.881005840357816 -182,28.0,28.0,1.9075867579849564,-3.604364401207048 -182,28.0,29.0,-0.9120532070322764,1.7233585608492326 -182,29.0,26.0,-0.6874559028276572,1.293971494797717 -182,29.0,28.0,-0.9120532070322764,1.7233585608492326 -182,29.0,29.0,1.5995091098599337,-3.0173300556469496 -183,0.0,0.0,6.765516048652632,-21.23160167089863 -183,0.0,1.0,-5.224646179885656,15.646726840803398 -183,0.0,2.0,-1.5408698687669766,5.631674830095234 -183,1.0,0.0,-5.224646179885656,15.646726840803398 -183,1.0,1.0,9.75228216552403,-30.648662892676068 -183,1.0,3.0,-1.7055303166990268,5.1973792282565086 -183,1.0,4.0,-1.1359607881738778,4.772479328281356 -183,1.0,5.0,-1.6861448807654689,5.116477495334806 -183,2.0,0.0,-1.5408698687669766,5.631674830095234 -183,2.0,2.0,9.736318911079088,-29.13794745915803 -183,2.0,3.0,-8.19544904231211,23.5308726290628 -183,3.0,1.0,-1.7055303166990268,5.1973792282565086 -183,3.0,2.0,-8.19544904231211,23.5308726290628 -183,3.0,3.0,16.314103089185693,-55.509410535254254 -183,3.0,5.0,-6.413123730174556,22.31120356548123 -183,3.0,11.0,0.0,4.191255364806866 -183,4.0,1.0,-1.1359607881738778,4.772479328281356 -183,4.0,4.0,4.089980824135861,-12.190647245055052 -183,4.0,6.0,-2.954020035961983,7.449267916773697 -183,5.0,1.0,-1.6861448807654689,5.116477495334806 -183,5.0,3.0,-6.413123730174556,22.31120356548123 -183,5.0,5.0,22.341631269034565,-82.8291478657789 -183,5.0,6.0,-3.590210423980992,11.02611441072814 -183,5.0,7.0,-6.289308176100628,22.0125786163522 -183,5.0,8.0,0.0,4.915840805411357 -183,5.0,9.0,0.0,1.8561002591115965 -183,5.0,27.0,-4.362844058012917,15.463571542897856 -183,6.0,4.0,-2.954020035961983,7.449267916773697 -183,6.0,5.0,-3.590210423980992,11.02611441072814 -183,6.0,6.0,6.544230459942975,-18.45668232750184 -183,7.0,5.0,-6.289308176100628,22.0125786163522 -183,7.0,7.0,7.733287237496075,-26.527493274828448 -183,7.0,27.0,-1.4439790613954469,4.540814658476248 -183,8.0,5.0,0.0,4.915840805411357 -183,8.0,8.0,0.0,-18.706293706293707 -183,8.0,9.0,0.0,9.090909090909092 -183,8.0,10.0,0.0,4.807692307692308 -183,9.0,5.0,0.0,1.8561002591115965 -183,9.0,8.0,0.0,9.090909090909092 -183,9.0,9.0,13.462042814524237,-41.3837606675224 -183,9.0,16.0,-3.956039125715353,10.317447719844054 -183,9.0,19.0,-1.7848303152666305,3.98535828943083 -183,9.0,20.0,-5.101853820159654,10.98071411292983 -183,9.0,21.0,-2.619319553382597,5.400770303329455 -183,10.0,8.0,0.0,4.807692307692308 -183,10.0,10.0,0.0,-4.807692307692308 -183,11.0,3.0,0.0,4.191255364806866 -183,11.0,11.0,6.573961583776156,-24.424167659260668 -183,11.0,12.0,0.0,7.142857142857143 -183,11.0,13.0,-1.5265676088395577,3.1734252729654173 -183,11.0,14.0,-3.0953961826564296,6.097275864326261 -183,11.0,15.0,-1.9519977922801688,4.104359379111847 -183,12.0,11.0,0.0,7.142857142857143 -183,12.0,12.0,0.0,-7.142857142857143 -183,13.0,11.0,-1.5265676088395577,3.1734252729654173 -183,13.0,13.0,4.01751987283902,-5.424299332335067 -183,13.0,14.0,-2.4909522639994623,2.250874059369649 -183,14.0,11.0,-3.0953961826564296,6.097275864326261 -183,14.0,13.0,-2.4909522639994623,2.250874059369649 -183,14.0,14.0,9.365498545964757,-16.01163373210796 -183,14.0,17.0,-1.8108011504072024,3.687418931630696 -183,14.0,22.0,-1.9683489489016612,3.976064876781356 -183,15.0,11.0,-1.9519977922801688,4.104359379111847 -183,15.0,15.0,3.271064728633931,-8.94513365126506 -183,15.0,16.0,-1.3190669363537617,4.8407742721532125 -183,16.0,9.0,-3.956039125715353,10.317447719844054 -183,16.0,15.0,-1.3190669363537617,4.8407742721532125 -183,16.0,16.0,5.275106062069114,-15.158221991997266 -183,17.0,14.0,-1.8108011504072024,3.687418931630696 -183,17.0,17.0,4.886487584415919,-9.906177730909668 -183,17.0,18.0,-3.0756864340087167,6.218758799278971 -183,18.0,17.0,-3.0756864340087167,6.218758799278971 -183,18.0,18.0,8.958039375185187,-17.98346468163191 -183,18.0,19.0,-5.88235294117647,11.76470588235294 -183,19.0,9.0,-1.7848303152666305,3.98535828943083 -183,19.0,18.0,-5.88235294117647,11.76470588235294 -183,19.0,19.0,7.6671832564431,-15.75006417178377 -183,20.0,9.0,-5.101853820159654,10.98071411292983 -183,20.0,20.0,21.876495189895888,-45.10843276170355 -183,20.0,21.0,-16.774641369736234,34.127718648773715 -183,21.0,9.0,-2.619319553382597,5.400770303329455 -183,21.0,20.0,-16.774641369736234,34.127718648773715 -183,21.0,21.0,21.93449907537439,-43.48289181517921 -183,21.0,23.0,-2.5405381522555563,3.95440286307604 -183,22.0,14.0,-1.9683489489016612,3.976064876781356 -183,22.0,22.0,3.429754555384988,-6.965303617315433 -183,22.0,23.0,-1.4614056064833263,2.989238740534077 -183,23.0,21.0,-2.5405381522555563,3.95440286307604 -183,23.0,22.0,-1.4614056064833263,2.989238740534077 -183,23.0,23.0,5.311836702613133,-9.188263657315172 -183,23.0,24.0,-1.3098929438742493,2.287622053705056 -183,24.0,23.0,-1.3098929438742493,2.287622053705056 -183,24.0,24.0,4.495715080321987,-7.864978761969621 -183,24.0,25.0,-1.2165301194494855,1.8171440463475024 -183,24.0,26.0,-1.9692920169982515,3.760212661917064 -183,25.0,24.0,-1.2165301194494855,1.8171440463475024 -183,25.0,25.0,1.2165301194494855,-1.8171440463475024 -183,26.0,24.0,-1.9692920169982515,3.760212661917064 -183,26.0,26.0,3.652281470778589,-9.46044252232512 -183,26.0,27.0,0.0,2.608731947574922 -183,26.0,28.0,-0.99553355095268,1.881005840357816 -183,26.0,29.0,-0.6874559028276572,1.293971494797717 -183,27.0,5.0,-4.362844058012917,15.463571542897856 -183,27.0,7.0,-1.4439790613954469,4.540814658476248 -183,27.0,26.0,0.0,2.608731947574922 -183,27.0,27.0,5.806823119408364,-22.67145722159613 -183,28.0,26.0,-0.99553355095268,1.881005840357816 -183,28.0,28.0,1.9075867579849564,-3.604364401207048 -183,28.0,29.0,-0.9120532070322764,1.7233585608492326 -183,29.0,26.0,-0.6874559028276572,1.293971494797717 -183,29.0,28.0,-0.9120532070322764,1.7233585608492326 -183,29.0,29.0,1.5995091098599337,-3.0173300556469496 -184,0.0,0.0,6.765516048652632,-21.23160167089863 -184,0.0,1.0,-5.224646179885656,15.646726840803398 -184,0.0,2.0,-1.5408698687669766,5.631674830095234 -184,1.0,0.0,-5.224646179885656,15.646726840803398 -184,1.0,1.0,9.75228216552403,-30.648662892676068 -184,1.0,3.0,-1.7055303166990268,5.1973792282565086 -184,1.0,4.0,-1.1359607881738778,4.772479328281356 -184,1.0,5.0,-1.6861448807654689,5.116477495334806 -184,2.0,0.0,-1.5408698687669766,5.631674830095234 -184,2.0,2.0,9.736318911079088,-29.13794745915803 -184,2.0,3.0,-8.19544904231211,23.5308726290628 -184,3.0,1.0,-1.7055303166990268,5.1973792282565086 -184,3.0,2.0,-8.19544904231211,23.5308726290628 -184,3.0,3.0,16.314103089185693,-55.509410535254254 -184,3.0,5.0,-6.413123730174556,22.31120356548123 -184,3.0,11.0,0.0,4.191255364806866 -184,4.0,1.0,-1.1359607881738778,4.772479328281356 -184,4.0,4.0,4.089980824135861,-12.190647245055052 -184,4.0,6.0,-2.954020035961983,7.449267916773697 -184,5.0,1.0,-1.6861448807654689,5.116477495334806 -184,5.0,3.0,-6.413123730174556,22.31120356548123 -184,5.0,5.0,17.978787211021647,-62.3456542314584 -184,5.0,6.0,-3.590210423980992,11.02611441072814 -184,5.0,7.0,-6.289308176100628,22.0125786163522 -184,5.0,9.0,0.0,1.8561002591115965 -184,6.0,4.0,-2.954020035961983,7.449267916773697 -184,6.0,5.0,-3.590210423980992,11.02611441072814 -184,6.0,6.0,6.544230459942975,-18.45668232750184 -184,7.0,5.0,-6.289308176100628,22.0125786163522 -184,7.0,7.0,7.733287237496075,-26.527493274828448 -184,7.0,27.0,-1.4439790613954469,4.540814658476248 -184,8.0,8.0,0.0,-13.8986013986014 -184,8.0,9.0,0.0,9.090909090909092 -184,8.0,10.0,0.0,4.807692307692308 -184,9.0,5.0,0.0,1.8561002591115965 -184,9.0,8.0,0.0,9.090909090909092 -184,9.0,9.0,13.462042814524237,-41.3837606675224 -184,9.0,16.0,-3.956039125715353,10.317447719844054 -184,9.0,19.0,-1.7848303152666305,3.98535828943083 -184,9.0,20.0,-5.101853820159654,10.98071411292983 -184,9.0,21.0,-2.619319553382597,5.400770303329455 -184,10.0,8.0,0.0,4.807692307692308 -184,10.0,10.0,0.0,-4.807692307692308 -184,11.0,3.0,0.0,4.191255364806866 -184,11.0,11.0,6.573961583776156,-24.424167659260668 -184,11.0,12.0,0.0,7.142857142857143 -184,11.0,13.0,-1.5265676088395577,3.1734252729654173 -184,11.0,14.0,-3.0953961826564296,6.097275864326261 -184,11.0,15.0,-1.9519977922801688,4.104359379111847 -184,12.0,11.0,0.0,7.142857142857143 -184,12.0,12.0,0.0,-7.142857142857143 -184,13.0,11.0,-1.5265676088395577,3.1734252729654173 -184,13.0,13.0,4.01751987283902,-5.424299332335067 -184,13.0,14.0,-2.4909522639994623,2.250874059369649 -184,14.0,11.0,-3.0953961826564296,6.097275864326261 -184,14.0,13.0,-2.4909522639994623,2.250874059369649 -184,14.0,14.0,9.365498545964757,-16.01163373210796 -184,14.0,17.0,-1.8108011504072024,3.687418931630696 -184,14.0,22.0,-1.9683489489016612,3.976064876781356 -184,15.0,11.0,-1.9519977922801688,4.104359379111847 -184,15.0,15.0,3.271064728633931,-8.94513365126506 -184,15.0,16.0,-1.3190669363537617,4.8407742721532125 -184,16.0,9.0,-3.956039125715353,10.317447719844054 -184,16.0,15.0,-1.3190669363537617,4.8407742721532125 -184,16.0,16.0,5.275106062069114,-15.158221991997266 -184,17.0,14.0,-1.8108011504072024,3.687418931630696 -184,17.0,17.0,4.886487584415919,-9.906177730909668 -184,17.0,18.0,-3.0756864340087167,6.218758799278971 -184,18.0,17.0,-3.0756864340087167,6.218758799278971 -184,18.0,18.0,8.958039375185187,-17.98346468163191 -184,18.0,19.0,-5.88235294117647,11.76470588235294 -184,19.0,9.0,-1.7848303152666305,3.98535828943083 -184,19.0,18.0,-5.88235294117647,11.76470588235294 -184,19.0,19.0,7.6671832564431,-15.75006417178377 -184,20.0,9.0,-5.101853820159654,10.98071411292983 -184,20.0,20.0,21.876495189895888,-45.10843276170355 -184,20.0,21.0,-16.774641369736234,34.127718648773715 -184,21.0,9.0,-2.619319553382597,5.400770303329455 -184,21.0,20.0,-16.774641369736234,34.127718648773715 -184,21.0,21.0,21.93449907537439,-43.48289181517921 -184,21.0,23.0,-2.5405381522555563,3.95440286307604 -184,22.0,14.0,-1.9683489489016612,3.976064876781356 -184,22.0,22.0,3.429754555384988,-6.965303617315433 -184,22.0,23.0,-1.4614056064833263,2.989238740534077 -184,23.0,21.0,-2.5405381522555563,3.95440286307604 -184,23.0,22.0,-1.4614056064833263,2.989238740534077 -184,23.0,23.0,5.311836702613133,-9.188263657315172 -184,23.0,24.0,-1.3098929438742493,2.287622053705056 -184,24.0,23.0,-1.3098929438742493,2.287622053705056 -184,24.0,24.0,2.526423063323735,-4.104766100052558 -184,24.0,25.0,-1.2165301194494855,1.8171440463475024 -184,25.0,24.0,-1.2165301194494855,1.8171440463475024 -184,25.0,25.0,1.2165301194494855,-1.8171440463475024 -184,26.0,26.0,1.6829894537803372,-5.700229860408058 -184,26.0,27.0,0.0,2.608731947574922 -184,26.0,28.0,-0.99553355095268,1.881005840357816 -184,26.0,29.0,-0.6874559028276572,1.293971494797717 -184,27.0,7.0,-1.4439790613954469,4.540814658476248 -184,27.0,26.0,0.0,2.608731947574922 -184,27.0,27.0,1.4439790613954469,-7.214385678698274 -184,28.0,26.0,-0.99553355095268,1.881005840357816 -184,28.0,28.0,1.9075867579849564,-3.604364401207048 -184,28.0,29.0,-0.9120532070322764,1.7233585608492326 -184,29.0,26.0,-0.6874559028276572,1.293971494797717 -184,29.0,28.0,-0.9120532070322764,1.7233585608492326 -184,29.0,29.0,1.5995091098599337,-3.0173300556469496 -185,0.0,0.0,6.765516048652632,-21.23160167089863 -185,0.0,1.0,-5.224646179885656,15.646726840803398 -185,0.0,2.0,-1.5408698687669766,5.631674830095234 -185,1.0,0.0,-5.224646179885656,15.646726840803398 -185,1.0,1.0,8.046751848825002,-25.46968366441956 -185,1.0,4.0,-1.1359607881738778,4.772479328281356 -185,1.0,5.0,-1.6861448807654689,5.116477495334806 -185,2.0,0.0,-1.5408698687669766,5.631674830095234 -185,2.0,2.0,9.736318911079088,-29.13794745915803 -185,2.0,3.0,-8.19544904231211,23.5308726290628 -185,3.0,2.0,-8.19544904231211,23.5308726290628 -185,3.0,3.0,14.608572772486664,-50.33043130699775 -185,3.0,5.0,-6.413123730174556,22.31120356548123 -185,3.0,11.0,0.0,4.191255364806866 -185,4.0,1.0,-1.1359607881738778,4.772479328281356 -185,4.0,4.0,4.089980824135861,-12.190647245055052 -185,4.0,6.0,-2.954020035961983,7.449267916773697 -185,5.0,1.0,-1.6861448807654689,5.116477495334806 -185,5.0,3.0,-6.413123730174556,22.31120356548123 -185,5.0,5.0,22.341631269034565,-80.91366772221689 -185,5.0,6.0,-3.590210423980992,11.02611441072814 -185,5.0,7.0,-6.289308176100628,22.0125786163522 -185,5.0,8.0,0.0,4.915840805411357 -185,5.0,27.0,-4.362844058012917,15.463571542897856 -185,6.0,4.0,-2.954020035961983,7.449267916773697 -185,6.0,5.0,-3.590210423980992,11.02611441072814 -185,6.0,6.0,6.544230459942975,-18.45668232750184 -185,7.0,5.0,-6.289308176100628,22.0125786163522 -185,7.0,7.0,7.733287237496075,-26.527493274828448 -185,7.0,27.0,-1.4439790613954469,4.540814658476248 -185,8.0,5.0,0.0,4.915840805411357 -185,8.0,8.0,0.0,-18.706293706293707 -185,8.0,9.0,0.0,9.090909090909092 -185,8.0,10.0,0.0,4.807692307692308 -185,9.0,8.0,0.0,9.090909090909092 -185,9.0,9.0,8.36018899436458,-28.604485403513436 -185,9.0,16.0,-3.956039125715353,10.317447719844054 -185,9.0,19.0,-1.7848303152666305,3.98535828943083 -185,9.0,21.0,-2.619319553382597,5.400770303329455 -185,10.0,8.0,0.0,4.807692307692308 -185,10.0,10.0,0.0,-4.807692307692308 -185,11.0,3.0,0.0,4.191255364806866 -185,11.0,11.0,5.047393974936599,-21.25074238629525 -185,11.0,12.0,0.0,7.142857142857143 -185,11.0,14.0,-3.0953961826564296,6.097275864326261 -185,11.0,15.0,-1.9519977922801688,4.104359379111847 -185,12.0,11.0,0.0,7.142857142857143 -185,12.0,12.0,0.0,-7.142857142857143 -185,13.0,13.0,2.4909522639994623,-2.250874059369649 -185,13.0,14.0,-2.4909522639994623,2.250874059369649 -185,14.0,11.0,-3.0953961826564296,6.097275864326261 -185,14.0,13.0,-2.4909522639994623,2.250874059369649 -185,14.0,14.0,9.365498545964757,-16.01163373210796 -185,14.0,17.0,-1.8108011504072024,3.687418931630696 -185,14.0,22.0,-1.9683489489016612,3.976064876781356 -185,15.0,11.0,-1.9519977922801688,4.104359379111847 -185,15.0,15.0,3.271064728633931,-8.94513365126506 -185,15.0,16.0,-1.3190669363537617,4.8407742721532125 -185,16.0,9.0,-3.956039125715353,10.317447719844054 -185,16.0,15.0,-1.3190669363537617,4.8407742721532125 -185,16.0,16.0,5.275106062069114,-15.158221991997266 -185,17.0,14.0,-1.8108011504072024,3.687418931630696 -185,17.0,17.0,4.886487584415919,-9.906177730909668 -185,17.0,18.0,-3.0756864340087167,6.218758799278971 -185,18.0,17.0,-3.0756864340087167,6.218758799278971 -185,18.0,18.0,8.958039375185187,-17.98346468163191 -185,18.0,19.0,-5.88235294117647,11.76470588235294 -185,19.0,9.0,-1.7848303152666305,3.98535828943083 -185,19.0,18.0,-5.88235294117647,11.76470588235294 -185,19.0,19.0,7.6671832564431,-15.75006417178377 -185,20.0,20.0,16.774641369736234,-34.127718648773715 -185,20.0,21.0,-16.774641369736234,34.127718648773715 -185,21.0,9.0,-2.619319553382597,5.400770303329455 -185,21.0,20.0,-16.774641369736234,34.127718648773715 -185,21.0,21.0,21.93449907537439,-43.48289181517921 -185,21.0,23.0,-2.5405381522555563,3.95440286307604 -185,22.0,14.0,-1.9683489489016612,3.976064876781356 -185,22.0,22.0,3.429754555384988,-6.965303617315433 -185,22.0,23.0,-1.4614056064833263,2.989238740534077 -185,23.0,21.0,-2.5405381522555563,3.95440286307604 -185,23.0,22.0,-1.4614056064833263,2.989238740534077 -185,23.0,23.0,5.311836702613133,-9.188263657315172 -185,23.0,24.0,-1.3098929438742493,2.287622053705056 -185,24.0,23.0,-1.3098929438742493,2.287622053705056 -185,24.0,24.0,4.495715080321987,-7.864978761969621 -185,24.0,25.0,-1.2165301194494855,1.8171440463475024 -185,24.0,26.0,-1.9692920169982515,3.760212661917064 -185,25.0,24.0,-1.2165301194494855,1.8171440463475024 -185,25.0,25.0,1.2165301194494855,-1.8171440463475024 -185,26.0,24.0,-1.9692920169982515,3.760212661917064 -185,26.0,26.0,3.652281470778589,-9.46044252232512 -185,26.0,27.0,0.0,2.608731947574922 -185,26.0,28.0,-0.99553355095268,1.881005840357816 -185,26.0,29.0,-0.6874559028276572,1.293971494797717 -185,27.0,5.0,-4.362844058012917,15.463571542897856 -185,27.0,7.0,-1.4439790613954469,4.540814658476248 -185,27.0,26.0,0.0,2.608731947574922 -185,27.0,27.0,5.806823119408364,-22.67145722159613 -185,28.0,26.0,-0.99553355095268,1.881005840357816 -185,28.0,28.0,1.9075867579849564,-3.604364401207048 -185,28.0,29.0,-0.9120532070322764,1.7233585608492326 -185,29.0,26.0,-0.6874559028276572,1.293971494797717 -185,29.0,28.0,-0.9120532070322764,1.7233585608492326 -185,29.0,29.0,1.5995091098599337,-3.0173300556469496 -186,0.0,0.0,6.765516048652632,-21.23160167089863 -186,0.0,1.0,-5.224646179885656,15.646726840803398 -186,0.0,2.0,-1.5408698687669766,5.631674830095234 -186,1.0,0.0,-5.224646179885656,15.646726840803398 -186,1.0,1.0,9.75228216552403,-30.648662892676068 -186,1.0,3.0,-1.7055303166990268,5.1973792282565086 -186,1.0,4.0,-1.1359607881738778,4.772479328281356 -186,1.0,5.0,-1.6861448807654689,5.116477495334806 -186,2.0,0.0,-1.5408698687669766,5.631674830095234 -186,2.0,2.0,9.736318911079088,-29.13794745915803 -186,2.0,3.0,-8.19544904231211,23.5308726290628 -186,3.0,1.0,-1.7055303166990268,5.1973792282565086 -186,3.0,2.0,-8.19544904231211,23.5308726290628 -186,3.0,3.0,16.314103089185693,-55.509410535254254 -186,3.0,5.0,-6.413123730174556,22.31120356548123 -186,3.0,11.0,0.0,4.191255364806866 -186,4.0,1.0,-1.1359607881738778,4.772479328281356 -186,4.0,4.0,4.089980824135861,-12.190647245055052 -186,4.0,6.0,-2.954020035961983,7.449267916773697 -186,5.0,1.0,-1.6861448807654689,5.116477495334806 -186,5.0,3.0,-6.413123730174556,22.31120356548123 -186,5.0,5.0,22.341631269034565,-82.8291478657789 -186,5.0,6.0,-3.590210423980992,11.02611441072814 -186,5.0,7.0,-6.289308176100628,22.0125786163522 -186,5.0,8.0,0.0,4.915840805411357 -186,5.0,9.0,0.0,1.8561002591115965 -186,5.0,27.0,-4.362844058012917,15.463571542897856 -186,6.0,4.0,-2.954020035961983,7.449267916773697 -186,6.0,5.0,-3.590210423980992,11.02611441072814 -186,6.0,6.0,6.544230459942975,-18.45668232750184 -186,7.0,5.0,-6.289308176100628,22.0125786163522 -186,7.0,7.0,7.733287237496075,-26.527493274828448 -186,7.0,27.0,-1.4439790613954469,4.540814658476248 -186,8.0,5.0,0.0,4.915840805411357 -186,8.0,8.0,0.0,-18.706293706293707 -186,8.0,9.0,0.0,9.090909090909092 -186,8.0,10.0,0.0,4.807692307692308 -186,9.0,5.0,0.0,1.8561002591115965 -186,9.0,8.0,0.0,9.090909090909092 -186,9.0,9.0,13.462042814524237,-41.3837606675224 -186,9.0,16.0,-3.956039125715353,10.317447719844054 -186,9.0,19.0,-1.7848303152666305,3.98535828943083 -186,9.0,20.0,-5.101853820159654,10.98071411292983 -186,9.0,21.0,-2.619319553382597,5.400770303329455 -186,10.0,8.0,0.0,4.807692307692308 -186,10.0,10.0,0.0,-4.807692307692308 -186,11.0,3.0,0.0,4.191255364806866 -186,11.0,11.0,6.573961583776156,-24.424167659260668 -186,11.0,12.0,0.0,7.142857142857143 -186,11.0,13.0,-1.5265676088395577,3.1734252729654173 -186,11.0,14.0,-3.0953961826564296,6.097275864326261 -186,11.0,15.0,-1.9519977922801688,4.104359379111847 -186,12.0,11.0,0.0,7.142857142857143 -186,12.0,12.0,0.0,-7.142857142857143 -186,13.0,11.0,-1.5265676088395577,3.1734252729654173 -186,13.0,13.0,4.01751987283902,-5.424299332335067 -186,13.0,14.0,-2.4909522639994623,2.250874059369649 -186,14.0,11.0,-3.0953961826564296,6.097275864326261 -186,14.0,13.0,-2.4909522639994623,2.250874059369649 -186,14.0,14.0,9.365498545964757,-16.01163373210796 -186,14.0,17.0,-1.8108011504072024,3.687418931630696 -186,14.0,22.0,-1.9683489489016612,3.976064876781356 -186,15.0,11.0,-1.9519977922801688,4.104359379111847 -186,15.0,15.0,3.271064728633931,-8.94513365126506 -186,15.0,16.0,-1.3190669363537617,4.8407742721532125 -186,16.0,9.0,-3.956039125715353,10.317447719844054 -186,16.0,15.0,-1.3190669363537617,4.8407742721532125 -186,16.0,16.0,5.275106062069114,-15.158221991997266 -186,17.0,14.0,-1.8108011504072024,3.687418931630696 -186,17.0,17.0,4.886487584415919,-9.906177730909668 -186,17.0,18.0,-3.0756864340087167,6.218758799278971 -186,18.0,17.0,-3.0756864340087167,6.218758799278971 -186,18.0,18.0,8.958039375185187,-17.98346468163191 -186,18.0,19.0,-5.88235294117647,11.76470588235294 -186,19.0,9.0,-1.7848303152666305,3.98535828943083 -186,19.0,18.0,-5.88235294117647,11.76470588235294 -186,19.0,19.0,7.6671832564431,-15.75006417178377 -186,20.0,9.0,-5.101853820159654,10.98071411292983 -186,20.0,20.0,21.876495189895888,-45.10843276170355 -186,20.0,21.0,-16.774641369736234,34.127718648773715 -186,21.0,9.0,-2.619319553382597,5.400770303329455 -186,21.0,20.0,-16.774641369736234,34.127718648773715 -186,21.0,21.0,21.93449907537439,-43.48289181517921 -186,21.0,23.0,-2.5405381522555563,3.95440286307604 -186,22.0,14.0,-1.9683489489016612,3.976064876781356 -186,22.0,22.0,3.429754555384988,-6.965303617315433 -186,22.0,23.0,-1.4614056064833263,2.989238740534077 -186,23.0,21.0,-2.5405381522555563,3.95440286307604 -186,23.0,22.0,-1.4614056064833263,2.989238740534077 -186,23.0,23.0,5.311836702613133,-9.188263657315172 -186,23.0,24.0,-1.3098929438742493,2.287622053705056 -186,24.0,23.0,-1.3098929438742493,2.287622053705056 -186,24.0,24.0,4.495715080321987,-7.864978761969621 -186,24.0,25.0,-1.2165301194494855,1.8171440463475024 -186,24.0,26.0,-1.9692920169982515,3.760212661917064 -186,25.0,24.0,-1.2165301194494855,1.8171440463475024 -186,25.0,25.0,1.2165301194494855,-1.8171440463475024 -186,26.0,24.0,-1.9692920169982515,3.760212661917064 -186,26.0,26.0,3.652281470778589,-9.46044252232512 -186,26.0,27.0,0.0,2.608731947574922 -186,26.0,28.0,-0.99553355095268,1.881005840357816 -186,26.0,29.0,-0.6874559028276572,1.293971494797717 -186,27.0,5.0,-4.362844058012917,15.463571542897856 -186,27.0,7.0,-1.4439790613954469,4.540814658476248 -186,27.0,26.0,0.0,2.608731947574922 -186,27.0,27.0,5.806823119408364,-22.67145722159613 -186,28.0,26.0,-0.99553355095268,1.881005840357816 -186,28.0,28.0,1.9075867579849564,-3.604364401207048 -186,28.0,29.0,-0.9120532070322764,1.7233585608492326 -186,29.0,26.0,-0.6874559028276572,1.293971494797717 -186,29.0,28.0,-0.9120532070322764,1.7233585608492326 -186,29.0,29.0,1.5995091098599337,-3.0173300556469496 -187,0.0,0.0,6.765516048652632,-21.23160167089863 -187,0.0,1.0,-5.224646179885656,15.646726840803398 -187,0.0,2.0,-1.5408698687669766,5.631674830095234 -187,1.0,0.0,-5.224646179885656,15.646726840803398 -187,1.0,1.0,9.75228216552403,-30.648662892676068 -187,1.0,3.0,-1.7055303166990268,5.1973792282565086 -187,1.0,4.0,-1.1359607881738778,4.772479328281356 -187,1.0,5.0,-1.6861448807654689,5.116477495334806 -187,2.0,0.0,-1.5408698687669766,5.631674830095234 -187,2.0,2.0,9.736318911079088,-29.13794745915803 -187,2.0,3.0,-8.19544904231211,23.5308726290628 -187,3.0,1.0,-1.7055303166990268,5.1973792282565086 -187,3.0,2.0,-8.19544904231211,23.5308726290628 -187,3.0,3.0,16.314103089185693,-55.509410535254254 -187,3.0,5.0,-6.413123730174556,22.31120356548123 -187,3.0,11.0,0.0,4.191255364806866 -187,4.0,1.0,-1.1359607881738778,4.772479328281356 -187,4.0,4.0,4.089980824135861,-12.190647245055052 -187,4.0,6.0,-2.954020035961983,7.449267916773697 -187,5.0,1.0,-1.6861448807654689,5.116477495334806 -187,5.0,3.0,-6.413123730174556,22.31120356548123 -187,5.0,5.0,22.341631269034565,-82.8291478657789 -187,5.0,6.0,-3.590210423980992,11.02611441072814 -187,5.0,7.0,-6.289308176100628,22.0125786163522 -187,5.0,8.0,0.0,4.915840805411357 -187,5.0,9.0,0.0,1.8561002591115965 -187,5.0,27.0,-4.362844058012917,15.463571542897856 -187,6.0,4.0,-2.954020035961983,7.449267916773697 -187,6.0,5.0,-3.590210423980992,11.02611441072814 -187,6.0,6.0,6.544230459942975,-18.45668232750184 -187,7.0,5.0,-6.289308176100628,22.0125786163522 -187,7.0,7.0,7.733287237496075,-26.527493274828448 -187,7.0,27.0,-1.4439790613954469,4.540814658476248 -187,8.0,5.0,0.0,4.915840805411357 -187,8.0,8.0,0.0,-18.706293706293707 -187,8.0,9.0,0.0,9.090909090909092 -187,8.0,10.0,0.0,4.807692307692308 -187,9.0,5.0,0.0,1.8561002591115965 -187,9.0,8.0,0.0,9.090909090909092 -187,9.0,9.0,9.506003688808882,-31.06631294767834 -187,9.0,19.0,-1.7848303152666305,3.98535828943083 -187,9.0,20.0,-5.101853820159654,10.98071411292983 -187,9.0,21.0,-2.619319553382597,5.400770303329455 -187,10.0,8.0,0.0,4.807692307692308 -187,10.0,10.0,0.0,-4.807692307692308 -187,11.0,3.0,0.0,4.191255364806866 -187,11.0,11.0,3.478565401119727,-18.326891794934408 -187,11.0,12.0,0.0,7.142857142857143 -187,11.0,13.0,-1.5265676088395577,3.1734252729654173 -187,11.0,15.0,-1.9519977922801688,4.104359379111847 -187,12.0,11.0,0.0,7.142857142857143 -187,12.0,12.0,0.0,-7.142857142857143 -187,13.0,11.0,-1.5265676088395577,3.1734252729654173 -187,13.0,13.0,4.01751987283902,-5.424299332335067 -187,13.0,14.0,-2.4909522639994623,2.250874059369649 -187,14.0,13.0,-2.4909522639994623,2.250874059369649 -187,14.0,14.0,6.270102363308326,-9.9143578677817 -187,14.0,17.0,-1.8108011504072024,3.687418931630696 -187,14.0,22.0,-1.9683489489016612,3.976064876781356 -187,15.0,11.0,-1.9519977922801688,4.104359379111847 -187,15.0,15.0,3.271064728633931,-8.94513365126506 -187,15.0,16.0,-1.3190669363537617,4.8407742721532125 -187,16.0,15.0,-1.3190669363537617,4.8407742721532125 -187,16.0,16.0,1.3190669363537617,-4.8407742721532125 -187,17.0,14.0,-1.8108011504072024,3.687418931630696 -187,17.0,17.0,4.886487584415919,-9.906177730909668 -187,17.0,18.0,-3.0756864340087167,6.218758799278971 -187,18.0,17.0,-3.0756864340087167,6.218758799278971 -187,18.0,18.0,8.958039375185187,-17.98346468163191 -187,18.0,19.0,-5.88235294117647,11.76470588235294 -187,19.0,9.0,-1.7848303152666305,3.98535828943083 -187,19.0,18.0,-5.88235294117647,11.76470588235294 -187,19.0,19.0,7.6671832564431,-15.75006417178377 -187,20.0,9.0,-5.101853820159654,10.98071411292983 -187,20.0,20.0,21.876495189895888,-45.10843276170355 -187,20.0,21.0,-16.774641369736234,34.127718648773715 -187,21.0,9.0,-2.619319553382597,5.400770303329455 -187,21.0,20.0,-16.774641369736234,34.127718648773715 -187,21.0,21.0,21.93449907537439,-43.48289181517921 -187,21.0,23.0,-2.5405381522555563,3.95440286307604 -187,22.0,14.0,-1.9683489489016612,3.976064876781356 -187,22.0,22.0,3.429754555384988,-6.965303617315433 -187,22.0,23.0,-1.4614056064833263,2.989238740534077 -187,23.0,21.0,-2.5405381522555563,3.95440286307604 -187,23.0,22.0,-1.4614056064833263,2.989238740534077 -187,23.0,23.0,5.311836702613133,-9.188263657315172 -187,23.0,24.0,-1.3098929438742493,2.287622053705056 -187,24.0,23.0,-1.3098929438742493,2.287622053705056 -187,24.0,24.0,4.495715080321987,-7.864978761969621 -187,24.0,25.0,-1.2165301194494855,1.8171440463475024 -187,24.0,26.0,-1.9692920169982515,3.760212661917064 -187,25.0,24.0,-1.2165301194494855,1.8171440463475024 -187,25.0,25.0,1.2165301194494855,-1.8171440463475024 -187,26.0,24.0,-1.9692920169982515,3.760212661917064 -187,26.0,26.0,3.652281470778589,-9.46044252232512 -187,26.0,27.0,0.0,2.608731947574922 -187,26.0,28.0,-0.99553355095268,1.881005840357816 -187,26.0,29.0,-0.6874559028276572,1.293971494797717 -187,27.0,5.0,-4.362844058012917,15.463571542897856 -187,27.0,7.0,-1.4439790613954469,4.540814658476248 -187,27.0,26.0,0.0,2.608731947574922 -187,27.0,27.0,5.806823119408364,-22.67145722159613 -187,28.0,26.0,-0.99553355095268,1.881005840357816 -187,28.0,28.0,1.9075867579849564,-3.604364401207048 -187,28.0,29.0,-0.9120532070322764,1.7233585608492326 -187,29.0,26.0,-0.6874559028276572,1.293971494797717 -187,29.0,28.0,-0.9120532070322764,1.7233585608492326 -187,29.0,29.0,1.5995091098599337,-3.0173300556469496 -188,0.0,0.0,6.765516048652632,-21.23160167089863 -188,0.0,1.0,-5.224646179885656,15.646726840803398 -188,0.0,2.0,-1.5408698687669766,5.631674830095234 -188,1.0,0.0,-5.224646179885656,15.646726840803398 -188,1.0,1.0,9.75228216552403,-30.648662892676068 -188,1.0,3.0,-1.7055303166990268,5.1973792282565086 -188,1.0,4.0,-1.1359607881738778,4.772479328281356 -188,1.0,5.0,-1.6861448807654689,5.116477495334806 -188,2.0,0.0,-1.5408698687669766,5.631674830095234 -188,2.0,2.0,9.736318911079088,-29.13794745915803 -188,2.0,3.0,-8.19544904231211,23.5308726290628 -188,3.0,1.0,-1.7055303166990268,5.1973792282565086 -188,3.0,2.0,-8.19544904231211,23.5308726290628 -188,3.0,3.0,16.314103089185693,-55.509410535254254 -188,3.0,5.0,-6.413123730174556,22.31120356548123 -188,3.0,11.0,0.0,4.191255364806866 -188,4.0,1.0,-1.1359607881738778,4.772479328281356 -188,4.0,4.0,4.089980824135861,-12.190647245055052 -188,4.0,6.0,-2.954020035961983,7.449267916773697 -188,5.0,1.0,-1.6861448807654689,5.116477495334806 -188,5.0,3.0,-6.413123730174556,22.31120356548123 -188,5.0,5.0,22.341631269034565,-82.8291478657789 -188,5.0,6.0,-3.590210423980992,11.02611441072814 -188,5.0,7.0,-6.289308176100628,22.0125786163522 -188,5.0,8.0,0.0,4.915840805411357 -188,5.0,9.0,0.0,1.8561002591115965 -188,5.0,27.0,-4.362844058012917,15.463571542897856 -188,6.0,4.0,-2.954020035961983,7.449267916773697 -188,6.0,5.0,-3.590210423980992,11.02611441072814 -188,6.0,6.0,6.544230459942975,-18.45668232750184 -188,7.0,5.0,-6.289308176100628,22.0125786163522 -188,7.0,7.0,7.733287237496075,-26.527493274828448 -188,7.0,27.0,-1.4439790613954469,4.540814658476248 -188,8.0,5.0,0.0,4.915840805411357 -188,8.0,8.0,0.0,-18.706293706293707 -188,8.0,9.0,0.0,9.090909090909092 -188,8.0,10.0,0.0,4.807692307692308 -188,9.0,5.0,0.0,1.8561002591115965 -188,9.0,8.0,0.0,9.090909090909092 -188,9.0,9.0,13.462042814524237,-41.3837606675224 -188,9.0,16.0,-3.956039125715353,10.317447719844054 -188,9.0,19.0,-1.7848303152666305,3.98535828943083 -188,9.0,20.0,-5.101853820159654,10.98071411292983 -188,9.0,21.0,-2.619319553382597,5.400770303329455 -188,10.0,8.0,0.0,4.807692307692308 -188,10.0,10.0,0.0,-4.807692307692308 -188,11.0,3.0,0.0,4.191255364806866 -188,11.0,11.0,6.573961583776156,-24.424167659260668 -188,11.0,12.0,0.0,7.142857142857143 -188,11.0,13.0,-1.5265676088395577,3.1734252729654173 -188,11.0,14.0,-3.0953961826564296,6.097275864326261 -188,11.0,15.0,-1.9519977922801688,4.104359379111847 -188,12.0,11.0,0.0,7.142857142857143 -188,12.0,12.0,0.0,-7.142857142857143 -188,13.0,11.0,-1.5265676088395577,3.1734252729654173 -188,13.0,13.0,4.01751987283902,-5.424299332335067 -188,13.0,14.0,-2.4909522639994623,2.250874059369649 -188,14.0,11.0,-3.0953961826564296,6.097275864326261 -188,14.0,13.0,-2.4909522639994623,2.250874059369649 -188,14.0,14.0,9.365498545964757,-16.01163373210796 -188,14.0,17.0,-1.8108011504072024,3.687418931630696 -188,14.0,22.0,-1.9683489489016612,3.976064876781356 -188,15.0,11.0,-1.9519977922801688,4.104359379111847 -188,15.0,15.0,1.9519977922801688,-4.104359379111847 -188,16.0,9.0,-3.956039125715353,10.317447719844054 -188,16.0,16.0,3.956039125715353,-10.317447719844054 -188,17.0,14.0,-1.8108011504072024,3.687418931630696 -188,17.0,17.0,4.886487584415919,-9.906177730909668 -188,17.0,18.0,-3.0756864340087167,6.218758799278971 -188,18.0,17.0,-3.0756864340087167,6.218758799278971 -188,18.0,18.0,3.0756864340087167,-6.218758799278971 -188,19.0,9.0,-1.7848303152666305,3.98535828943083 -188,19.0,19.0,1.7848303152666305,-3.98535828943083 -188,20.0,9.0,-5.101853820159654,10.98071411292983 -188,20.0,20.0,21.876495189895888,-45.10843276170355 -188,20.0,21.0,-16.774641369736234,34.127718648773715 -188,21.0,9.0,-2.619319553382597,5.400770303329455 -188,21.0,20.0,-16.774641369736234,34.127718648773715 -188,21.0,21.0,21.93449907537439,-43.48289181517921 -188,21.0,23.0,-2.5405381522555563,3.95440286307604 -188,22.0,14.0,-1.9683489489016612,3.976064876781356 -188,22.0,22.0,3.429754555384988,-6.965303617315433 -188,22.0,23.0,-1.4614056064833263,2.989238740534077 -188,23.0,21.0,-2.5405381522555563,3.95440286307604 -188,23.0,22.0,-1.4614056064833263,2.989238740534077 -188,23.0,23.0,5.311836702613133,-9.188263657315172 -188,23.0,24.0,-1.3098929438742493,2.287622053705056 -188,24.0,23.0,-1.3098929438742493,2.287622053705056 -188,24.0,24.0,4.495715080321987,-7.864978761969621 -188,24.0,25.0,-1.2165301194494855,1.8171440463475024 -188,24.0,26.0,-1.9692920169982515,3.760212661917064 -188,25.0,24.0,-1.2165301194494855,1.8171440463475024 -188,25.0,25.0,1.2165301194494855,-1.8171440463475024 -188,26.0,24.0,-1.9692920169982515,3.760212661917064 -188,26.0,26.0,3.652281470778589,-9.46044252232512 -188,26.0,27.0,0.0,2.608731947574922 -188,26.0,28.0,-0.99553355095268,1.881005840357816 -188,26.0,29.0,-0.6874559028276572,1.293971494797717 -188,27.0,5.0,-4.362844058012917,15.463571542897856 -188,27.0,7.0,-1.4439790613954469,4.540814658476248 -188,27.0,26.0,0.0,2.608731947574922 -188,27.0,27.0,5.806823119408364,-22.67145722159613 -188,28.0,26.0,-0.99553355095268,1.881005840357816 -188,28.0,28.0,1.9075867579849564,-3.604364401207048 -188,28.0,29.0,-0.9120532070322764,1.7233585608492326 -188,29.0,26.0,-0.6874559028276572,1.293971494797717 -188,29.0,28.0,-0.9120532070322764,1.7233585608492326 -188,29.0,29.0,1.5995091098599337,-3.0173300556469496 -189,0.0,0.0,5.224646179885656,-15.620326840803395 -189,0.0,1.0,-5.224646179885656,15.646726840803398 -189,1.0,0.0,-5.224646179885656,15.646726840803398 -189,1.0,1.0,9.75228216552403,-30.648662892676068 -189,1.0,3.0,-1.7055303166990268,5.1973792282565086 -189,1.0,4.0,-1.1359607881738778,4.772479328281356 -189,1.0,5.0,-1.6861448807654689,5.116477495334806 -189,2.0,2.0,8.19544904231211,-23.5266726290628 -189,2.0,3.0,-8.19544904231211,23.5308726290628 -189,3.0,1.0,-1.7055303166990268,5.1973792282565086 -189,3.0,2.0,-8.19544904231211,23.5308726290628 -189,3.0,3.0,16.314103089185693,-55.509410535254254 -189,3.0,5.0,-6.413123730174556,22.31120356548123 -189,3.0,11.0,0.0,4.191255364806866 -189,4.0,1.0,-1.1359607881738778,4.772479328281356 -189,4.0,4.0,4.089980824135861,-12.190647245055052 -189,4.0,6.0,-2.954020035961983,7.449267916773697 -189,5.0,1.0,-1.6861448807654689,5.116477495334806 -189,5.0,3.0,-6.413123730174556,22.31120356548123 -189,5.0,5.0,22.341631269034565,-80.91366772221689 -189,5.0,6.0,-3.590210423980992,11.02611441072814 -189,5.0,7.0,-6.289308176100628,22.0125786163522 -189,5.0,8.0,0.0,4.915840805411357 -189,5.0,27.0,-4.362844058012917,15.463571542897856 -189,6.0,4.0,-2.954020035961983,7.449267916773697 -189,6.0,5.0,-3.590210423980992,11.02611441072814 -189,6.0,6.0,6.544230459942975,-18.45668232750184 -189,7.0,5.0,-6.289308176100628,22.0125786163522 -189,7.0,7.0,7.733287237496075,-26.527493274828448 -189,7.0,27.0,-1.4439790613954469,4.540814658476248 -189,8.0,5.0,0.0,4.915840805411357 -189,8.0,8.0,0.0,-18.706293706293707 -189,8.0,9.0,0.0,9.090909090909092 -189,8.0,10.0,0.0,4.807692307692308 -189,9.0,8.0,0.0,9.090909090909092 -189,9.0,9.0,13.462042814524237,-39.58519951644326 -189,9.0,16.0,-3.956039125715353,10.317447719844054 -189,9.0,19.0,-1.7848303152666305,3.98535828943083 -189,9.0,20.0,-5.101853820159654,10.98071411292983 -189,9.0,21.0,-2.619319553382597,5.400770303329455 -189,10.0,8.0,0.0,4.807692307692308 -189,10.0,10.0,0.0,-4.807692307692308 -189,11.0,3.0,0.0,4.191255364806866 -189,11.0,11.0,6.573961583776156,-24.424167659260668 -189,11.0,12.0,0.0,7.142857142857143 -189,11.0,13.0,-1.5265676088395577,3.1734252729654173 -189,11.0,14.0,-3.0953961826564296,6.097275864326261 -189,11.0,15.0,-1.9519977922801688,4.104359379111847 -189,12.0,11.0,0.0,7.142857142857143 -189,12.0,12.0,0.0,-7.142857142857143 -189,13.0,11.0,-1.5265676088395577,3.1734252729654173 -189,13.0,13.0,4.01751987283902,-5.424299332335067 -189,13.0,14.0,-2.4909522639994623,2.250874059369649 -189,14.0,11.0,-3.0953961826564296,6.097275864326261 -189,14.0,13.0,-2.4909522639994623,2.250874059369649 -189,14.0,14.0,9.365498545964757,-16.01163373210796 -189,14.0,17.0,-1.8108011504072024,3.687418931630696 -189,14.0,22.0,-1.9683489489016612,3.976064876781356 -189,15.0,11.0,-1.9519977922801688,4.104359379111847 -189,15.0,15.0,1.9519977922801688,-4.104359379111847 -189,16.0,9.0,-3.956039125715353,10.317447719844054 -189,16.0,16.0,3.956039125715353,-10.317447719844054 -189,17.0,14.0,-1.8108011504072024,3.687418931630696 -189,17.0,17.0,4.886487584415919,-9.906177730909668 -189,17.0,18.0,-3.0756864340087167,6.218758799278971 -189,18.0,17.0,-3.0756864340087167,6.218758799278971 -189,18.0,18.0,8.958039375185187,-17.98346468163191 -189,18.0,19.0,-5.88235294117647,11.76470588235294 -189,19.0,9.0,-1.7848303152666305,3.98535828943083 -189,19.0,18.0,-5.88235294117647,11.76470588235294 -189,19.0,19.0,7.6671832564431,-15.75006417178377 -189,20.0,9.0,-5.101853820159654,10.98071411292983 -189,20.0,20.0,21.876495189895888,-45.10843276170355 -189,20.0,21.0,-16.774641369736234,34.127718648773715 -189,21.0,9.0,-2.619319553382597,5.400770303329455 -189,21.0,20.0,-16.774641369736234,34.127718648773715 -189,21.0,21.0,21.93449907537439,-43.48289181517921 -189,21.0,23.0,-2.5405381522555563,3.95440286307604 -189,22.0,14.0,-1.9683489489016612,3.976064876781356 -189,22.0,22.0,1.9683489489016612,-3.976064876781356 -189,23.0,21.0,-2.5405381522555563,3.95440286307604 -189,23.0,23.0,2.5405381522555563,-3.9114028630760393 -189,24.0,24.0,3.185822136447737,-5.577356708264566 -189,24.0,25.0,-1.2165301194494855,1.8171440463475024 -189,24.0,26.0,-1.9692920169982515,3.760212661917064 -189,25.0,24.0,-1.2165301194494855,1.8171440463475024 -189,25.0,25.0,1.2165301194494855,-1.8171440463475024 -189,26.0,24.0,-1.9692920169982515,3.760212661917064 -189,26.0,26.0,3.652281470778589,-9.46044252232512 -189,26.0,27.0,0.0,2.608731947574922 -189,26.0,28.0,-0.99553355095268,1.881005840357816 -189,26.0,29.0,-0.6874559028276572,1.293971494797717 -189,27.0,5.0,-4.362844058012917,15.463571542897856 -189,27.0,7.0,-1.4439790613954469,4.540814658476248 -189,27.0,26.0,0.0,2.608731947574922 -189,27.0,27.0,5.806823119408364,-22.67145722159613 -189,28.0,26.0,-0.99553355095268,1.881005840357816 -189,28.0,28.0,1.9075867579849564,-3.604364401207048 -189,28.0,29.0,-0.9120532070322764,1.7233585608492326 -189,29.0,26.0,-0.6874559028276572,1.293971494797717 -189,29.0,28.0,-0.9120532070322764,1.7233585608492326 -189,29.0,29.0,1.5995091098599337,-3.0173300556469496 -190,0.0,0.0,6.765516048652632,-21.23160167089863 -190,0.0,1.0,-5.224646179885656,15.646726840803398 -190,0.0,2.0,-1.5408698687669766,5.631674830095234 -190,1.0,0.0,-5.224646179885656,15.646726840803398 -190,1.0,1.0,9.75228216552403,-30.648662892676068 -190,1.0,3.0,-1.7055303166990268,5.1973792282565086 -190,1.0,4.0,-1.1359607881738778,4.772479328281356 -190,1.0,5.0,-1.6861448807654689,5.116477495334806 -190,2.0,0.0,-1.5408698687669766,5.631674830095234 -190,2.0,2.0,9.736318911079088,-29.13794745915803 -190,2.0,3.0,-8.19544904231211,23.5308726290628 -190,3.0,1.0,-1.7055303166990268,5.1973792282565086 -190,3.0,2.0,-8.19544904231211,23.5308726290628 -190,3.0,3.0,16.314103089185693,-55.509410535254254 -190,3.0,5.0,-6.413123730174556,22.31120356548123 -190,3.0,11.0,0.0,4.191255364806866 -190,4.0,1.0,-1.1359607881738778,4.772479328281356 -190,4.0,4.0,4.089980824135861,-12.190647245055052 -190,4.0,6.0,-2.954020035961983,7.449267916773697 -190,5.0,1.0,-1.6861448807654689,5.116477495334806 -190,5.0,3.0,-6.413123730174556,22.31120356548123 -190,5.0,5.0,22.341631269034565,-82.8291478657789 -190,5.0,6.0,-3.590210423980992,11.02611441072814 -190,5.0,7.0,-6.289308176100628,22.0125786163522 -190,5.0,8.0,0.0,4.915840805411357 -190,5.0,9.0,0.0,1.8561002591115965 -190,5.0,27.0,-4.362844058012917,15.463571542897856 -190,6.0,4.0,-2.954020035961983,7.449267916773697 -190,6.0,5.0,-3.590210423980992,11.02611441072814 -190,6.0,6.0,6.544230459942975,-18.45668232750184 -190,7.0,5.0,-6.289308176100628,22.0125786163522 -190,7.0,7.0,7.733287237496075,-26.527493274828448 -190,7.0,27.0,-1.4439790613954469,4.540814658476248 -190,8.0,5.0,0.0,4.915840805411357 -190,8.0,8.0,0.0,-9.615384615384617 -190,8.0,10.0,0.0,4.807692307692308 -190,9.0,5.0,0.0,1.8561002591115965 -190,9.0,9.0,13.462042814524237,-32.29285157661331 -190,9.0,16.0,-3.956039125715353,10.317447719844054 -190,9.0,19.0,-1.7848303152666305,3.98535828943083 -190,9.0,20.0,-5.101853820159654,10.98071411292983 -190,9.0,21.0,-2.619319553382597,5.400770303329455 -190,10.0,8.0,0.0,4.807692307692308 -190,10.0,10.0,0.0,-4.807692307692308 -190,11.0,3.0,0.0,4.191255364806866 -190,11.0,11.0,6.573961583776156,-24.424167659260668 -190,11.0,12.0,0.0,7.142857142857143 -190,11.0,13.0,-1.5265676088395577,3.1734252729654173 -190,11.0,14.0,-3.0953961826564296,6.097275864326261 -190,11.0,15.0,-1.9519977922801688,4.104359379111847 -190,12.0,11.0,0.0,7.142857142857143 -190,12.0,12.0,0.0,-7.142857142857143 -190,13.0,11.0,-1.5265676088395577,3.1734252729654173 -190,13.0,13.0,4.01751987283902,-5.424299332335067 -190,13.0,14.0,-2.4909522639994623,2.250874059369649 -190,14.0,11.0,-3.0953961826564296,6.097275864326261 -190,14.0,13.0,-2.4909522639994623,2.250874059369649 -190,14.0,14.0,9.365498545964757,-16.01163373210796 -190,14.0,17.0,-1.8108011504072024,3.687418931630696 -190,14.0,22.0,-1.9683489489016612,3.976064876781356 -190,15.0,11.0,-1.9519977922801688,4.104359379111847 -190,15.0,15.0,3.271064728633931,-8.94513365126506 -190,15.0,16.0,-1.3190669363537617,4.8407742721532125 -190,16.0,9.0,-3.956039125715353,10.317447719844054 -190,16.0,15.0,-1.3190669363537617,4.8407742721532125 -190,16.0,16.0,5.275106062069114,-15.158221991997266 -190,17.0,14.0,-1.8108011504072024,3.687418931630696 -190,17.0,17.0,4.886487584415919,-9.906177730909668 -190,17.0,18.0,-3.0756864340087167,6.218758799278971 -190,18.0,17.0,-3.0756864340087167,6.218758799278971 -190,18.0,18.0,8.958039375185187,-17.98346468163191 -190,18.0,19.0,-5.88235294117647,11.76470588235294 -190,19.0,9.0,-1.7848303152666305,3.98535828943083 -190,19.0,18.0,-5.88235294117647,11.76470588235294 -190,19.0,19.0,7.6671832564431,-15.75006417178377 -190,20.0,9.0,-5.101853820159654,10.98071411292983 -190,20.0,20.0,21.876495189895888,-45.10843276170355 -190,20.0,21.0,-16.774641369736234,34.127718648773715 -190,21.0,9.0,-2.619319553382597,5.400770303329455 -190,21.0,20.0,-16.774641369736234,34.127718648773715 -190,21.0,21.0,21.93449907537439,-43.48289181517921 -190,21.0,23.0,-2.5405381522555563,3.95440286307604 -190,22.0,14.0,-1.9683489489016612,3.976064876781356 -190,22.0,22.0,3.429754555384988,-6.965303617315433 -190,22.0,23.0,-1.4614056064833263,2.989238740534077 -190,23.0,21.0,-2.5405381522555563,3.95440286307604 -190,23.0,22.0,-1.4614056064833263,2.989238740534077 -190,23.0,23.0,5.311836702613133,-9.188263657315172 -190,23.0,24.0,-1.3098929438742493,2.287622053705056 -190,24.0,23.0,-1.3098929438742493,2.287622053705056 -190,24.0,24.0,4.495715080321987,-7.864978761969621 -190,24.0,25.0,-1.2165301194494855,1.8171440463475024 -190,24.0,26.0,-1.9692920169982515,3.760212661917064 -190,25.0,24.0,-1.2165301194494855,1.8171440463475024 -190,25.0,25.0,1.2165301194494855,-1.8171440463475024 -190,26.0,24.0,-1.9692920169982515,3.760212661917064 -190,26.0,26.0,3.652281470778589,-9.46044252232512 -190,26.0,27.0,0.0,2.608731947574922 -190,26.0,28.0,-0.99553355095268,1.881005840357816 -190,26.0,29.0,-0.6874559028276572,1.293971494797717 -190,27.0,5.0,-4.362844058012917,15.463571542897856 -190,27.0,7.0,-1.4439790613954469,4.540814658476248 -190,27.0,26.0,0.0,2.608731947574922 -190,27.0,27.0,5.806823119408364,-22.67145722159613 -190,28.0,26.0,-0.99553355095268,1.881005840357816 -190,28.0,28.0,0.99553355095268,-1.881005840357816 -190,29.0,26.0,-0.6874559028276572,1.293971494797717 -190,29.0,29.0,0.6874559028276572,-1.293971494797717 -191,0.0,0.0,6.765516048652632,-21.23160167089863 -191,0.0,1.0,-5.224646179885656,15.646726840803398 -191,0.0,2.0,-1.5408698687669766,5.631674830095234 -191,1.0,0.0,-5.224646179885656,15.646726840803398 -191,1.0,1.0,9.75228216552403,-30.648662892676068 -191,1.0,3.0,-1.7055303166990268,5.1973792282565086 -191,1.0,4.0,-1.1359607881738778,4.772479328281356 -191,1.0,5.0,-1.6861448807654689,5.116477495334806 -191,2.0,0.0,-1.5408698687669766,5.631674830095234 -191,2.0,2.0,9.736318911079088,-29.13794745915803 -191,2.0,3.0,-8.19544904231211,23.5308726290628 -191,3.0,1.0,-1.7055303166990268,5.1973792282565086 -191,3.0,2.0,-8.19544904231211,23.5308726290628 -191,3.0,3.0,16.314103089185693,-55.509410535254254 -191,3.0,5.0,-6.413123730174556,22.31120356548123 -191,3.0,11.0,0.0,4.191255364806866 -191,4.0,1.0,-1.1359607881738778,4.772479328281356 -191,4.0,4.0,4.089980824135861,-12.190647245055052 -191,4.0,6.0,-2.954020035961983,7.449267916773697 -191,5.0,1.0,-1.6861448807654689,5.116477495334806 -191,5.0,3.0,-6.413123730174556,22.31120356548123 -191,5.0,5.0,22.341631269034565,-82.8291478657789 -191,5.0,6.0,-3.590210423980992,11.02611441072814 -191,5.0,7.0,-6.289308176100628,22.0125786163522 -191,5.0,8.0,0.0,4.915840805411357 -191,5.0,9.0,0.0,1.8561002591115965 -191,5.0,27.0,-4.362844058012917,15.463571542897856 -191,6.0,4.0,-2.954020035961983,7.449267916773697 -191,6.0,5.0,-3.590210423980992,11.02611441072814 -191,6.0,6.0,6.544230459942975,-18.45668232750184 -191,7.0,5.0,-6.289308176100628,22.0125786163522 -191,7.0,7.0,7.733287237496075,-26.527493274828448 -191,7.0,27.0,-1.4439790613954469,4.540814658476248 -191,8.0,5.0,0.0,4.915840805411357 -191,8.0,8.0,0.0,-9.615384615384617 -191,8.0,10.0,0.0,4.807692307692308 -191,9.0,5.0,0.0,1.8561002591115965 -191,9.0,9.0,13.462042814524237,-32.29285157661331 -191,9.0,16.0,-3.956039125715353,10.317447719844054 -191,9.0,19.0,-1.7848303152666305,3.98535828943083 -191,9.0,20.0,-5.101853820159654,10.98071411292983 -191,9.0,21.0,-2.619319553382597,5.400770303329455 -191,10.0,8.0,0.0,4.807692307692308 -191,10.0,10.0,0.0,-4.807692307692308 -191,11.0,3.0,0.0,4.191255364806866 -191,11.0,11.0,6.573961583776156,-24.424167659260668 -191,11.0,12.0,0.0,7.142857142857143 -191,11.0,13.0,-1.5265676088395577,3.1734252729654173 -191,11.0,14.0,-3.0953961826564296,6.097275864326261 -191,11.0,15.0,-1.9519977922801688,4.104359379111847 -191,12.0,11.0,0.0,7.142857142857143 -191,12.0,12.0,0.0,-7.142857142857143 -191,13.0,11.0,-1.5265676088395577,3.1734252729654173 -191,13.0,13.0,4.01751987283902,-5.424299332335067 -191,13.0,14.0,-2.4909522639994623,2.250874059369649 -191,14.0,11.0,-3.0953961826564296,6.097275864326261 -191,14.0,13.0,-2.4909522639994623,2.250874059369649 -191,14.0,14.0,9.365498545964757,-16.01163373210796 -191,14.0,17.0,-1.8108011504072024,3.687418931630696 -191,14.0,22.0,-1.9683489489016612,3.976064876781356 -191,15.0,11.0,-1.9519977922801688,4.104359379111847 -191,15.0,15.0,3.271064728633931,-8.94513365126506 -191,15.0,16.0,-1.3190669363537617,4.8407742721532125 -191,16.0,9.0,-3.956039125715353,10.317447719844054 -191,16.0,15.0,-1.3190669363537617,4.8407742721532125 -191,16.0,16.0,5.275106062069114,-15.158221991997266 -191,17.0,14.0,-1.8108011504072024,3.687418931630696 -191,17.0,17.0,4.886487584415919,-9.906177730909668 -191,17.0,18.0,-3.0756864340087167,6.218758799278971 -191,18.0,17.0,-3.0756864340087167,6.218758799278971 -191,18.0,18.0,8.958039375185187,-17.98346468163191 -191,18.0,19.0,-5.88235294117647,11.76470588235294 -191,19.0,9.0,-1.7848303152666305,3.98535828943083 -191,19.0,18.0,-5.88235294117647,11.76470588235294 -191,19.0,19.0,7.6671832564431,-15.75006417178377 -191,20.0,9.0,-5.101853820159654,10.98071411292983 -191,20.0,20.0,21.876495189895888,-45.10843276170355 -191,20.0,21.0,-16.774641369736234,34.127718648773715 -191,21.0,9.0,-2.619319553382597,5.400770303329455 -191,21.0,20.0,-16.774641369736234,34.127718648773715 -191,21.0,21.0,21.93449907537439,-43.48289181517921 -191,21.0,23.0,-2.5405381522555563,3.95440286307604 -191,22.0,14.0,-1.9683489489016612,3.976064876781356 -191,22.0,22.0,3.429754555384988,-6.965303617315433 -191,22.0,23.0,-1.4614056064833263,2.989238740534077 -191,23.0,21.0,-2.5405381522555563,3.95440286307604 -191,23.0,22.0,-1.4614056064833263,2.989238740534077 -191,23.0,23.0,5.311836702613133,-9.188263657315172 -191,23.0,24.0,-1.3098929438742493,2.287622053705056 -191,24.0,23.0,-1.3098929438742493,2.287622053705056 -191,24.0,24.0,4.495715080321987,-7.864978761969621 -191,24.0,25.0,-1.2165301194494855,1.8171440463475024 -191,24.0,26.0,-1.9692920169982515,3.760212661917064 -191,25.0,24.0,-1.2165301194494855,1.8171440463475024 -191,25.0,25.0,1.2165301194494855,-1.8171440463475024 -191,26.0,24.0,-1.9692920169982515,3.760212661917064 -191,26.0,26.0,3.652281470778589,-9.46044252232512 -191,26.0,27.0,0.0,2.608731947574922 -191,26.0,28.0,-0.99553355095268,1.881005840357816 -191,26.0,29.0,-0.6874559028276572,1.293971494797717 -191,27.0,5.0,-4.362844058012917,15.463571542897856 -191,27.0,7.0,-1.4439790613954469,4.540814658476248 -191,27.0,26.0,0.0,2.608731947574922 -191,27.0,27.0,5.806823119408364,-22.67145722159613 -191,28.0,26.0,-0.99553355095268,1.881005840357816 -191,28.0,28.0,1.9075867579849564,-3.604364401207048 -191,28.0,29.0,-0.9120532070322764,1.7233585608492326 -191,29.0,26.0,-0.6874559028276572,1.293971494797717 -191,29.0,28.0,-0.9120532070322764,1.7233585608492326 -191,29.0,29.0,1.5995091098599337,-3.0173300556469496 -192,0.0,0.0,6.765516048652632,-21.23160167089863 -192,0.0,1.0,-5.224646179885656,15.646726840803398 -192,0.0,2.0,-1.5408698687669766,5.631674830095234 -192,1.0,0.0,-5.224646179885656,15.646726840803398 -192,1.0,1.0,9.75228216552403,-30.648662892676068 -192,1.0,3.0,-1.7055303166990268,5.1973792282565086 -192,1.0,4.0,-1.1359607881738778,4.772479328281356 -192,1.0,5.0,-1.6861448807654689,5.116477495334806 -192,2.0,0.0,-1.5408698687669766,5.631674830095234 -192,2.0,2.0,9.736318911079088,-29.13794745915803 -192,2.0,3.0,-8.19544904231211,23.5308726290628 -192,3.0,1.0,-1.7055303166990268,5.1973792282565086 -192,3.0,2.0,-8.19544904231211,23.5308726290628 -192,3.0,3.0,16.314103089185693,-55.509410535254254 -192,3.0,5.0,-6.413123730174556,22.31120356548123 -192,3.0,11.0,0.0,4.191255364806866 -192,4.0,1.0,-1.1359607881738778,4.772479328281356 -192,4.0,4.0,1.1359607881738778,-4.751579328281355 -192,5.0,1.0,-1.6861448807654689,5.116477495334806 -192,5.0,3.0,-6.413123730174556,22.31120356548123 -192,5.0,5.0,22.341631269034565,-82.8291478657789 -192,5.0,6.0,-3.590210423980992,11.02611441072814 -192,5.0,7.0,-6.289308176100628,22.0125786163522 -192,5.0,8.0,0.0,4.915840805411357 -192,5.0,9.0,0.0,1.8561002591115965 -192,5.0,27.0,-4.362844058012917,15.463571542897856 -192,6.0,5.0,-3.590210423980992,11.02611441072814 -192,6.0,6.0,3.590210423980992,-11.01761441072814 -192,7.0,5.0,-6.289308176100628,22.0125786163522 -192,7.0,7.0,7.733287237496075,-26.527493274828448 -192,7.0,27.0,-1.4439790613954469,4.540814658476248 -192,8.0,5.0,0.0,4.915840805411357 -192,8.0,8.0,0.0,-18.706293706293707 -192,8.0,9.0,0.0,9.090909090909092 -192,8.0,10.0,0.0,4.807692307692308 -192,9.0,5.0,0.0,1.8561002591115965 -192,9.0,8.0,0.0,9.090909090909092 -192,9.0,9.0,13.462042814524237,-41.3837606675224 -192,9.0,16.0,-3.956039125715353,10.317447719844054 -192,9.0,19.0,-1.7848303152666305,3.98535828943083 -192,9.0,20.0,-5.101853820159654,10.98071411292983 -192,9.0,21.0,-2.619319553382597,5.400770303329455 -192,10.0,8.0,0.0,4.807692307692308 -192,10.0,10.0,0.0,-4.807692307692308 -192,11.0,3.0,0.0,4.191255364806866 -192,11.0,11.0,6.573961583776156,-24.424167659260668 -192,11.0,12.0,0.0,7.142857142857143 -192,11.0,13.0,-1.5265676088395577,3.1734252729654173 -192,11.0,14.0,-3.0953961826564296,6.097275864326261 -192,11.0,15.0,-1.9519977922801688,4.104359379111847 -192,12.0,11.0,0.0,7.142857142857143 -192,12.0,12.0,0.0,-7.142857142857143 -192,13.0,11.0,-1.5265676088395577,3.1734252729654173 -192,13.0,13.0,4.01751987283902,-5.424299332335067 -192,13.0,14.0,-2.4909522639994623,2.250874059369649 -192,14.0,11.0,-3.0953961826564296,6.097275864326261 -192,14.0,13.0,-2.4909522639994623,2.250874059369649 -192,14.0,14.0,9.365498545964757,-16.01163373210796 -192,14.0,17.0,-1.8108011504072024,3.687418931630696 -192,14.0,22.0,-1.9683489489016612,3.976064876781356 -192,15.0,11.0,-1.9519977922801688,4.104359379111847 -192,15.0,15.0,3.271064728633931,-8.94513365126506 -192,15.0,16.0,-1.3190669363537617,4.8407742721532125 -192,16.0,9.0,-3.956039125715353,10.317447719844054 -192,16.0,15.0,-1.3190669363537617,4.8407742721532125 -192,16.0,16.0,5.275106062069114,-15.158221991997266 -192,17.0,14.0,-1.8108011504072024,3.687418931630696 -192,17.0,17.0,4.886487584415919,-9.906177730909668 -192,17.0,18.0,-3.0756864340087167,6.218758799278971 -192,18.0,17.0,-3.0756864340087167,6.218758799278971 -192,18.0,18.0,8.958039375185187,-17.98346468163191 -192,18.0,19.0,-5.88235294117647,11.76470588235294 -192,19.0,9.0,-1.7848303152666305,3.98535828943083 -192,19.0,18.0,-5.88235294117647,11.76470588235294 -192,19.0,19.0,7.6671832564431,-15.75006417178377 -192,20.0,9.0,-5.101853820159654,10.98071411292983 -192,20.0,20.0,21.876495189895888,-45.10843276170355 -192,20.0,21.0,-16.774641369736234,34.127718648773715 -192,21.0,9.0,-2.619319553382597,5.400770303329455 -192,21.0,20.0,-16.774641369736234,34.127718648773715 -192,21.0,21.0,19.393960923118836,-39.52848895210317 -192,22.0,14.0,-1.9683489489016612,3.976064876781356 -192,22.0,22.0,3.429754555384988,-6.965303617315433 -192,22.0,23.0,-1.4614056064833263,2.989238740534077 -192,23.0,22.0,-1.4614056064833263,2.989238740534077 -192,23.0,23.0,2.771298550357576,-5.233860794239132 -192,23.0,24.0,-1.3098929438742493,2.287622053705056 -192,24.0,23.0,-1.3098929438742493,2.287622053705056 -192,24.0,24.0,4.495715080321987,-7.864978761969621 -192,24.0,25.0,-1.2165301194494855,1.8171440463475024 -192,24.0,26.0,-1.9692920169982515,3.760212661917064 -192,25.0,24.0,-1.2165301194494855,1.8171440463475024 -192,25.0,25.0,1.2165301194494855,-1.8171440463475024 -192,26.0,24.0,-1.9692920169982515,3.760212661917064 -192,26.0,26.0,3.652281470778589,-9.46044252232512 -192,26.0,27.0,0.0,2.608731947574922 -192,26.0,28.0,-0.99553355095268,1.881005840357816 -192,26.0,29.0,-0.6874559028276572,1.293971494797717 -192,27.0,5.0,-4.362844058012917,15.463571542897856 -192,27.0,7.0,-1.4439790613954469,4.540814658476248 -192,27.0,26.0,0.0,2.608731947574922 -192,27.0,27.0,5.806823119408364,-22.67145722159613 -192,28.0,26.0,-0.99553355095268,1.881005840357816 -192,28.0,28.0,1.9075867579849564,-3.604364401207048 -192,28.0,29.0,-0.9120532070322764,1.7233585608492326 -192,29.0,26.0,-0.6874559028276572,1.293971494797717 -192,29.0,28.0,-0.9120532070322764,1.7233585608492326 -192,29.0,29.0,1.5995091098599337,-3.0173300556469496 -193,0.0,0.0,6.765516048652632,-21.23160167089863 -193,0.0,1.0,-5.224646179885656,15.646726840803398 -193,0.0,2.0,-1.5408698687669766,5.631674830095234 -193,1.0,0.0,-5.224646179885656,15.646726840803398 -193,1.0,1.0,8.066137284758561,-25.55088539734126 -193,1.0,3.0,-1.7055303166990268,5.1973792282565086 -193,1.0,4.0,-1.1359607881738778,4.772479328281356 -193,2.0,0.0,-1.5408698687669766,5.631674830095234 -193,2.0,2.0,9.736318911079088,-29.13794745915803 -193,2.0,3.0,-8.19544904231211,23.5308726290628 -193,3.0,1.0,-1.7055303166990268,5.1973792282565086 -193,3.0,2.0,-8.19544904231211,23.5308726290628 -193,3.0,3.0,16.314103089185693,-55.509410535254254 -193,3.0,5.0,-6.413123730174556,22.31120356548123 -193,3.0,11.0,0.0,4.191255364806866 -193,4.0,1.0,-1.1359607881738778,4.772479328281356 -193,4.0,4.0,4.089980824135861,-12.190647245055052 -193,4.0,6.0,-2.954020035961983,7.449267916773697 -193,5.0,3.0,-6.413123730174556,22.31120356548123 -193,5.0,5.0,20.655486388269097,-75.81589022688208 -193,5.0,6.0,-3.590210423980992,11.02611441072814 -193,5.0,7.0,-6.289308176100628,22.0125786163522 -193,5.0,8.0,0.0,4.915840805411357 -193,5.0,27.0,-4.362844058012917,15.463571542897856 -193,6.0,4.0,-2.954020035961983,7.449267916773697 -193,6.0,5.0,-3.590210423980992,11.02611441072814 -193,6.0,6.0,6.544230459942975,-18.45668232750184 -193,7.0,5.0,-6.289308176100628,22.0125786163522 -193,7.0,7.0,6.289308176100628,-22.0080786163522 -193,8.0,5.0,0.0,4.915840805411357 -193,8.0,8.0,0.0,-18.706293706293707 -193,8.0,9.0,0.0,9.090909090909092 -193,8.0,10.0,0.0,4.807692307692308 -193,9.0,8.0,0.0,9.090909090909092 -193,9.0,9.0,13.462042814524237,-39.58519951644326 -193,9.0,16.0,-3.956039125715353,10.317447719844054 -193,9.0,19.0,-1.7848303152666305,3.98535828943083 -193,9.0,20.0,-5.101853820159654,10.98071411292983 -193,9.0,21.0,-2.619319553382597,5.400770303329455 -193,10.0,8.0,0.0,4.807692307692308 -193,10.0,10.0,0.0,-4.807692307692308 -193,11.0,3.0,0.0,4.191255364806866 -193,11.0,11.0,6.573961583776156,-24.424167659260668 -193,11.0,12.0,0.0,7.142857142857143 -193,11.0,13.0,-1.5265676088395577,3.1734252729654173 -193,11.0,14.0,-3.0953961826564296,6.097275864326261 -193,11.0,15.0,-1.9519977922801688,4.104359379111847 -193,12.0,11.0,0.0,7.142857142857143 -193,12.0,12.0,0.0,-7.142857142857143 -193,13.0,11.0,-1.5265676088395577,3.1734252729654173 -193,13.0,13.0,4.01751987283902,-5.424299332335067 -193,13.0,14.0,-2.4909522639994623,2.250874059369649 -193,14.0,11.0,-3.0953961826564296,6.097275864326261 -193,14.0,13.0,-2.4909522639994623,2.250874059369649 -193,14.0,14.0,9.365498545964757,-16.01163373210796 -193,14.0,17.0,-1.8108011504072024,3.687418931630696 -193,14.0,22.0,-1.9683489489016612,3.976064876781356 -193,15.0,11.0,-1.9519977922801688,4.104359379111847 -193,15.0,15.0,3.271064728633931,-8.94513365126506 -193,15.0,16.0,-1.3190669363537617,4.8407742721532125 -193,16.0,9.0,-3.956039125715353,10.317447719844054 -193,16.0,15.0,-1.3190669363537617,4.8407742721532125 -193,16.0,16.0,5.275106062069114,-15.158221991997266 -193,17.0,14.0,-1.8108011504072024,3.687418931630696 -193,17.0,17.0,4.886487584415919,-9.906177730909668 -193,17.0,18.0,-3.0756864340087167,6.218758799278971 -193,18.0,17.0,-3.0756864340087167,6.218758799278971 -193,18.0,18.0,8.958039375185187,-17.98346468163191 -193,18.0,19.0,-5.88235294117647,11.76470588235294 -193,19.0,9.0,-1.7848303152666305,3.98535828943083 -193,19.0,18.0,-5.88235294117647,11.76470588235294 -193,19.0,19.0,7.6671832564431,-15.75006417178377 -193,20.0,9.0,-5.101853820159654,10.98071411292983 -193,20.0,20.0,5.101853820159654,-10.98071411292983 -193,21.0,9.0,-2.619319553382597,5.400770303329455 -193,21.0,21.0,5.159857705638154,-9.355173166405494 -193,21.0,23.0,-2.5405381522555563,3.95440286307604 -193,22.0,14.0,-1.9683489489016612,3.976064876781356 -193,22.0,22.0,3.429754555384988,-6.965303617315433 -193,22.0,23.0,-1.4614056064833263,2.989238740534077 -193,23.0,21.0,-2.5405381522555563,3.95440286307604 -193,23.0,22.0,-1.4614056064833263,2.989238740534077 -193,23.0,23.0,5.311836702613133,-9.188263657315172 -193,23.0,24.0,-1.3098929438742493,2.287622053705056 -193,24.0,23.0,-1.3098929438742493,2.287622053705056 -193,24.0,24.0,4.495715080321987,-7.864978761969621 -193,24.0,25.0,-1.2165301194494855,1.8171440463475024 -193,24.0,26.0,-1.9692920169982515,3.760212661917064 -193,25.0,24.0,-1.2165301194494855,1.8171440463475024 -193,25.0,25.0,1.2165301194494855,-1.8171440463475024 -193,26.0,24.0,-1.9692920169982515,3.760212661917064 -193,26.0,26.0,3.652281470778589,-9.46044252232512 -193,26.0,27.0,0.0,2.608731947574922 -193,26.0,28.0,-0.99553355095268,1.881005840357816 -193,26.0,29.0,-0.6874559028276572,1.293971494797717 -193,27.0,5.0,-4.362844058012917,15.463571542897856 -193,27.0,26.0,0.0,2.608731947574922 -193,27.0,27.0,4.362844058012917,-18.15204256311988 -193,28.0,26.0,-0.99553355095268,1.881005840357816 -193,28.0,28.0,1.9075867579849564,-3.604364401207048 -193,28.0,29.0,-0.9120532070322764,1.7233585608492326 -193,29.0,26.0,-0.6874559028276572,1.293971494797717 -193,29.0,28.0,-0.9120532070322764,1.7233585608492326 -193,29.0,29.0,1.5995091098599337,-3.0173300556469496 -194,0.0,0.0,6.765516048652632,-21.23160167089863 -194,0.0,1.0,-5.224646179885656,15.646726840803398 -194,0.0,2.0,-1.5408698687669766,5.631674830095234 -194,1.0,0.0,-5.224646179885656,15.646726840803398 -194,1.0,1.0,9.75228216552403,-30.648662892676068 -194,1.0,3.0,-1.7055303166990268,5.1973792282565086 -194,1.0,4.0,-1.1359607881738778,4.772479328281356 -194,1.0,5.0,-1.6861448807654689,5.116477495334806 -194,2.0,0.0,-1.5408698687669766,5.631674830095234 -194,2.0,2.0,9.736318911079088,-29.13794745915803 -194,2.0,3.0,-8.19544904231211,23.5308726290628 -194,3.0,1.0,-1.7055303166990268,5.1973792282565086 -194,3.0,2.0,-8.19544904231211,23.5308726290628 -194,3.0,3.0,16.314103089185693,-55.509410535254254 -194,3.0,5.0,-6.413123730174556,22.31120356548123 -194,3.0,11.0,0.0,4.191255364806866 -194,4.0,1.0,-1.1359607881738778,4.772479328281356 -194,4.0,4.0,4.089980824135861,-12.190647245055052 -194,4.0,6.0,-2.954020035961983,7.449267916773697 -194,5.0,1.0,-1.6861448807654689,5.116477495334806 -194,5.0,3.0,-6.413123730174556,22.31120356548123 -194,5.0,5.0,22.341631269034565,-82.8291478657789 -194,5.0,6.0,-3.590210423980992,11.02611441072814 -194,5.0,7.0,-6.289308176100628,22.0125786163522 -194,5.0,8.0,0.0,4.915840805411357 -194,5.0,9.0,0.0,1.8561002591115965 -194,5.0,27.0,-4.362844058012917,15.463571542897856 -194,6.0,4.0,-2.954020035961983,7.449267916773697 -194,6.0,5.0,-3.590210423980992,11.02611441072814 -194,6.0,6.0,6.544230459942975,-18.45668232750184 -194,7.0,5.0,-6.289308176100628,22.0125786163522 -194,7.0,7.0,7.733287237496075,-26.527493274828448 -194,7.0,27.0,-1.4439790613954469,4.540814658476248 -194,8.0,5.0,0.0,4.915840805411357 -194,8.0,8.0,0.0,-18.706293706293707 -194,8.0,9.0,0.0,9.090909090909092 -194,8.0,10.0,0.0,4.807692307692308 -194,9.0,5.0,0.0,1.8561002591115965 -194,9.0,8.0,0.0,9.090909090909092 -194,9.0,9.0,13.462042814524237,-41.3837606675224 -194,9.0,16.0,-3.956039125715353,10.317447719844054 -194,9.0,19.0,-1.7848303152666305,3.98535828943083 -194,9.0,20.0,-5.101853820159654,10.98071411292983 -194,9.0,21.0,-2.619319553382597,5.400770303329455 -194,10.0,8.0,0.0,4.807692307692308 -194,10.0,10.0,0.0,-4.807692307692308 -194,11.0,3.0,0.0,4.191255364806866 -194,11.0,11.0,6.573961583776156,-24.424167659260668 -194,11.0,12.0,0.0,7.142857142857143 -194,11.0,13.0,-1.5265676088395577,3.1734252729654173 -194,11.0,14.0,-3.0953961826564296,6.097275864326261 -194,11.0,15.0,-1.9519977922801688,4.104359379111847 -194,12.0,11.0,0.0,7.142857142857143 -194,12.0,12.0,0.0,-7.142857142857143 -194,13.0,11.0,-1.5265676088395577,3.1734252729654173 -194,13.0,13.0,4.01751987283902,-5.424299332335067 -194,13.0,14.0,-2.4909522639994623,2.250874059369649 -194,14.0,11.0,-3.0953961826564296,6.097275864326261 -194,14.0,13.0,-2.4909522639994623,2.250874059369649 -194,14.0,14.0,9.365498545964757,-16.01163373210796 -194,14.0,17.0,-1.8108011504072024,3.687418931630696 -194,14.0,22.0,-1.9683489489016612,3.976064876781356 -194,15.0,11.0,-1.9519977922801688,4.104359379111847 -194,15.0,15.0,3.271064728633931,-8.94513365126506 -194,15.0,16.0,-1.3190669363537617,4.8407742721532125 -194,16.0,9.0,-3.956039125715353,10.317447719844054 -194,16.0,15.0,-1.3190669363537617,4.8407742721532125 -194,16.0,16.0,5.275106062069114,-15.158221991997266 -194,17.0,14.0,-1.8108011504072024,3.687418931630696 -194,17.0,17.0,4.886487584415919,-9.906177730909668 -194,17.0,18.0,-3.0756864340087167,6.218758799278971 -194,18.0,17.0,-3.0756864340087167,6.218758799278971 -194,18.0,18.0,8.958039375185187,-17.98346468163191 -194,18.0,19.0,-5.88235294117647,11.76470588235294 -194,19.0,9.0,-1.7848303152666305,3.98535828943083 -194,19.0,18.0,-5.88235294117647,11.76470588235294 -194,19.0,19.0,7.6671832564431,-15.75006417178377 -194,20.0,9.0,-5.101853820159654,10.98071411292983 -194,20.0,20.0,21.876495189895888,-45.10843276170355 -194,20.0,21.0,-16.774641369736234,34.127718648773715 -194,21.0,9.0,-2.619319553382597,5.400770303329455 -194,21.0,20.0,-16.774641369736234,34.127718648773715 -194,21.0,21.0,21.93449907537439,-43.48289181517921 -194,21.0,23.0,-2.5405381522555563,3.95440286307604 -194,22.0,14.0,-1.9683489489016612,3.976064876781356 -194,22.0,22.0,3.429754555384988,-6.965303617315433 -194,22.0,23.0,-1.4614056064833263,2.989238740534077 -194,23.0,21.0,-2.5405381522555563,3.95440286307604 -194,23.0,22.0,-1.4614056064833263,2.989238740534077 -194,23.0,23.0,5.311836702613133,-9.188263657315172 -194,23.0,24.0,-1.3098929438742493,2.287622053705056 -194,24.0,23.0,-1.3098929438742493,2.287622053705056 -194,24.0,24.0,4.495715080321987,-7.864978761969621 -194,24.0,25.0,-1.2165301194494855,1.8171440463475024 -194,24.0,26.0,-1.9692920169982515,3.760212661917064 -194,25.0,24.0,-1.2165301194494855,1.8171440463475024 -194,25.0,25.0,1.2165301194494855,-1.8171440463475024 -194,26.0,24.0,-1.9692920169982515,3.760212661917064 -194,26.0,26.0,3.652281470778589,-9.46044252232512 -194,26.0,27.0,0.0,2.608731947574922 -194,26.0,28.0,-0.99553355095268,1.881005840357816 -194,26.0,29.0,-0.6874559028276572,1.293971494797717 -194,27.0,5.0,-4.362844058012917,15.463571542897856 -194,27.0,7.0,-1.4439790613954469,4.540814658476248 -194,27.0,26.0,0.0,2.608731947574922 -194,27.0,27.0,5.806823119408364,-22.67145722159613 -194,28.0,26.0,-0.99553355095268,1.881005840357816 -194,28.0,28.0,1.9075867579849564,-3.604364401207048 -194,28.0,29.0,-0.9120532070322764,1.7233585608492326 -194,29.0,26.0,-0.6874559028276572,1.293971494797717 -194,29.0,28.0,-0.9120532070322764,1.7233585608492326 -194,29.0,29.0,1.5995091098599337,-3.0173300556469496 -195,0.0,0.0,6.765516048652632,-21.23160167089863 -195,0.0,1.0,-5.224646179885656,15.646726840803398 -195,0.0,2.0,-1.5408698687669766,5.631674830095234 -195,1.0,0.0,-5.224646179885656,15.646726840803398 -195,1.0,1.0,9.75228216552403,-30.648662892676068 -195,1.0,3.0,-1.7055303166990268,5.1973792282565086 -195,1.0,4.0,-1.1359607881738778,4.772479328281356 -195,1.0,5.0,-1.6861448807654689,5.116477495334806 -195,2.0,0.0,-1.5408698687669766,5.631674830095234 -195,2.0,2.0,9.736318911079088,-29.13794745915803 -195,2.0,3.0,-8.19544904231211,23.5308726290628 -195,3.0,1.0,-1.7055303166990268,5.1973792282565086 -195,3.0,2.0,-8.19544904231211,23.5308726290628 -195,3.0,3.0,16.314103089185693,-55.509410535254254 -195,3.0,5.0,-6.413123730174556,22.31120356548123 -195,3.0,11.0,0.0,4.191255364806866 -195,4.0,1.0,-1.1359607881738778,4.772479328281356 -195,4.0,4.0,4.089980824135861,-12.190647245055052 -195,4.0,6.0,-2.954020035961983,7.449267916773697 -195,5.0,1.0,-1.6861448807654689,5.116477495334806 -195,5.0,3.0,-6.413123730174556,22.31120356548123 -195,5.0,5.0,22.341631269034565,-82.8291478657789 -195,5.0,6.0,-3.590210423980992,11.02611441072814 -195,5.0,7.0,-6.289308176100628,22.0125786163522 -195,5.0,8.0,0.0,4.915840805411357 -195,5.0,9.0,0.0,1.8561002591115965 -195,5.0,27.0,-4.362844058012917,15.463571542897856 -195,6.0,4.0,-2.954020035961983,7.449267916773697 -195,6.0,5.0,-3.590210423980992,11.02611441072814 -195,6.0,6.0,6.544230459942975,-18.45668232750184 -195,7.0,5.0,-6.289308176100628,22.0125786163522 -195,7.0,7.0,7.733287237496075,-26.527493274828448 -195,7.0,27.0,-1.4439790613954469,4.540814658476248 -195,8.0,5.0,0.0,4.915840805411357 -195,8.0,8.0,0.0,-18.706293706293707 -195,8.0,9.0,0.0,9.090909090909092 -195,8.0,10.0,0.0,4.807692307692308 -195,9.0,5.0,0.0,1.8561002591115965 -195,9.0,8.0,0.0,9.090909090909092 -195,9.0,9.0,13.462042814524237,-41.3837606675224 -195,9.0,16.0,-3.956039125715353,10.317447719844054 -195,9.0,19.0,-1.7848303152666305,3.98535828943083 -195,9.0,20.0,-5.101853820159654,10.98071411292983 -195,9.0,21.0,-2.619319553382597,5.400770303329455 -195,10.0,8.0,0.0,4.807692307692308 -195,10.0,10.0,0.0,-4.807692307692308 -195,11.0,3.0,0.0,4.191255364806866 -195,11.0,11.0,6.573961583776156,-24.424167659260668 -195,11.0,12.0,0.0,7.142857142857143 -195,11.0,13.0,-1.5265676088395577,3.1734252729654173 -195,11.0,14.0,-3.0953961826564296,6.097275864326261 -195,11.0,15.0,-1.9519977922801688,4.104359379111847 -195,12.0,11.0,0.0,7.142857142857143 -195,12.0,12.0,0.0,-7.142857142857143 -195,13.0,11.0,-1.5265676088395577,3.1734252729654173 -195,13.0,13.0,4.01751987283902,-5.424299332335067 -195,13.0,14.0,-2.4909522639994623,2.250874059369649 -195,14.0,11.0,-3.0953961826564296,6.097275864326261 -195,14.0,13.0,-2.4909522639994623,2.250874059369649 -195,14.0,14.0,9.365498545964757,-16.01163373210796 -195,14.0,17.0,-1.8108011504072024,3.687418931630696 -195,14.0,22.0,-1.9683489489016612,3.976064876781356 -195,15.0,11.0,-1.9519977922801688,4.104359379111847 -195,15.0,15.0,3.271064728633931,-8.94513365126506 -195,15.0,16.0,-1.3190669363537617,4.8407742721532125 -195,16.0,9.0,-3.956039125715353,10.317447719844054 -195,16.0,15.0,-1.3190669363537617,4.8407742721532125 -195,16.0,16.0,5.275106062069114,-15.158221991997266 -195,17.0,14.0,-1.8108011504072024,3.687418931630696 -195,17.0,17.0,4.886487584415919,-9.906177730909668 -195,17.0,18.0,-3.0756864340087167,6.218758799278971 -195,18.0,17.0,-3.0756864340087167,6.218758799278971 -195,18.0,18.0,8.958039375185187,-17.98346468163191 -195,18.0,19.0,-5.88235294117647,11.76470588235294 -195,19.0,9.0,-1.7848303152666305,3.98535828943083 -195,19.0,18.0,-5.88235294117647,11.76470588235294 -195,19.0,19.0,7.6671832564431,-15.75006417178377 -195,20.0,9.0,-5.101853820159654,10.98071411292983 -195,20.0,20.0,21.876495189895888,-45.10843276170355 -195,20.0,21.0,-16.774641369736234,34.127718648773715 -195,21.0,9.0,-2.619319553382597,5.400770303329455 -195,21.0,20.0,-16.774641369736234,34.127718648773715 -195,21.0,21.0,21.93449907537439,-43.48289181517921 -195,21.0,23.0,-2.5405381522555563,3.95440286307604 -195,22.0,14.0,-1.9683489489016612,3.976064876781356 -195,22.0,22.0,3.429754555384988,-6.965303617315433 -195,22.0,23.0,-1.4614056064833263,2.989238740534077 -195,23.0,21.0,-2.5405381522555563,3.95440286307604 -195,23.0,22.0,-1.4614056064833263,2.989238740534077 -195,23.0,23.0,5.311836702613133,-9.188263657315172 -195,23.0,24.0,-1.3098929438742493,2.287622053705056 -195,24.0,23.0,-1.3098929438742493,2.287622053705056 -195,24.0,24.0,4.495715080321987,-7.864978761969621 -195,24.0,25.0,-1.2165301194494855,1.8171440463475024 -195,24.0,26.0,-1.9692920169982515,3.760212661917064 -195,25.0,24.0,-1.2165301194494855,1.8171440463475024 -195,25.0,25.0,1.2165301194494855,-1.8171440463475024 -195,26.0,24.0,-1.9692920169982515,3.760212661917064 -195,26.0,26.0,3.652281470778589,-9.46044252232512 -195,26.0,27.0,0.0,2.608731947574922 -195,26.0,28.0,-0.99553355095268,1.881005840357816 -195,26.0,29.0,-0.6874559028276572,1.293971494797717 -195,27.0,5.0,-4.362844058012917,15.463571542897856 -195,27.0,7.0,-1.4439790613954469,4.540814658476248 -195,27.0,26.0,0.0,2.608731947574922 -195,27.0,27.0,5.806823119408364,-22.67145722159613 -195,28.0,26.0,-0.99553355095268,1.881005840357816 -195,28.0,28.0,1.9075867579849564,-3.604364401207048 -195,28.0,29.0,-0.9120532070322764,1.7233585608492326 -195,29.0,26.0,-0.6874559028276572,1.293971494797717 -195,29.0,28.0,-0.9120532070322764,1.7233585608492326 -195,29.0,29.0,1.5995091098599337,-3.0173300556469496 -196,0.0,0.0,6.765516048652632,-21.23160167089863 -196,0.0,1.0,-5.224646179885656,15.646726840803398 -196,0.0,2.0,-1.5408698687669766,5.631674830095234 -196,1.0,0.0,-5.224646179885656,15.646726840803398 -196,1.0,1.0,9.75228216552403,-30.648662892676068 -196,1.0,3.0,-1.7055303166990268,5.1973792282565086 -196,1.0,4.0,-1.1359607881738778,4.772479328281356 -196,1.0,5.0,-1.6861448807654689,5.116477495334806 -196,2.0,0.0,-1.5408698687669766,5.631674830095234 -196,2.0,2.0,9.736318911079088,-29.13794745915803 -196,2.0,3.0,-8.19544904231211,23.5308726290628 -196,3.0,1.0,-1.7055303166990268,5.1973792282565086 -196,3.0,2.0,-8.19544904231211,23.5308726290628 -196,3.0,3.0,16.314103089185693,-55.509410535254254 -196,3.0,5.0,-6.413123730174556,22.31120356548123 -196,3.0,11.0,0.0,4.191255364806866 -196,4.0,1.0,-1.1359607881738778,4.772479328281356 -196,4.0,4.0,4.089980824135861,-12.190647245055052 -196,4.0,6.0,-2.954020035961983,7.449267916773697 -196,5.0,1.0,-1.6861448807654689,5.116477495334806 -196,5.0,3.0,-6.413123730174556,22.31120356548123 -196,5.0,5.0,22.341631269034565,-82.8291478657789 -196,5.0,6.0,-3.590210423980992,11.02611441072814 -196,5.0,7.0,-6.289308176100628,22.0125786163522 -196,5.0,8.0,0.0,4.915840805411357 -196,5.0,9.0,0.0,1.8561002591115965 -196,5.0,27.0,-4.362844058012917,15.463571542897856 -196,6.0,4.0,-2.954020035961983,7.449267916773697 -196,6.0,5.0,-3.590210423980992,11.02611441072814 -196,6.0,6.0,6.544230459942975,-18.45668232750184 -196,7.0,5.0,-6.289308176100628,22.0125786163522 -196,7.0,7.0,7.733287237496075,-26.527493274828448 -196,7.0,27.0,-1.4439790613954469,4.540814658476248 -196,8.0,5.0,0.0,4.915840805411357 -196,8.0,8.0,0.0,-18.706293706293707 -196,8.0,9.0,0.0,9.090909090909092 -196,8.0,10.0,0.0,4.807692307692308 -196,9.0,5.0,0.0,1.8561002591115965 -196,9.0,8.0,0.0,9.090909090909092 -196,9.0,9.0,13.462042814524237,-41.3837606675224 -196,9.0,16.0,-3.956039125715353,10.317447719844054 -196,9.0,19.0,-1.7848303152666305,3.98535828943083 -196,9.0,20.0,-5.101853820159654,10.98071411292983 -196,9.0,21.0,-2.619319553382597,5.400770303329455 -196,10.0,8.0,0.0,4.807692307692308 -196,10.0,10.0,0.0,-4.807692307692308 -196,11.0,3.0,0.0,4.191255364806866 -196,11.0,11.0,6.573961583776156,-24.424167659260668 -196,11.0,12.0,0.0,7.142857142857143 -196,11.0,13.0,-1.5265676088395577,3.1734252729654173 -196,11.0,14.0,-3.0953961826564296,6.097275864326261 -196,11.0,15.0,-1.9519977922801688,4.104359379111847 -196,12.0,11.0,0.0,7.142857142857143 -196,12.0,12.0,0.0,-7.142857142857143 -196,13.0,11.0,-1.5265676088395577,3.1734252729654173 -196,13.0,13.0,4.01751987283902,-5.424299332335067 -196,13.0,14.0,-2.4909522639994623,2.250874059369649 -196,14.0,11.0,-3.0953961826564296,6.097275864326261 -196,14.0,13.0,-2.4909522639994623,2.250874059369649 -196,14.0,14.0,9.365498545964757,-16.01163373210796 -196,14.0,17.0,-1.8108011504072024,3.687418931630696 -196,14.0,22.0,-1.9683489489016612,3.976064876781356 -196,15.0,11.0,-1.9519977922801688,4.104359379111847 -196,15.0,15.0,3.271064728633931,-8.94513365126506 -196,15.0,16.0,-1.3190669363537617,4.8407742721532125 -196,16.0,9.0,-3.956039125715353,10.317447719844054 -196,16.0,15.0,-1.3190669363537617,4.8407742721532125 -196,16.0,16.0,5.275106062069114,-15.158221991997266 -196,17.0,14.0,-1.8108011504072024,3.687418931630696 -196,17.0,17.0,1.8108011504072024,-3.687418931630696 -196,18.0,18.0,5.88235294117647,-11.76470588235294 -196,18.0,19.0,-5.88235294117647,11.76470588235294 -196,19.0,9.0,-1.7848303152666305,3.98535828943083 -196,19.0,18.0,-5.88235294117647,11.76470588235294 -196,19.0,19.0,7.6671832564431,-15.75006417178377 -196,20.0,9.0,-5.101853820159654,10.98071411292983 -196,20.0,20.0,21.876495189895888,-45.10843276170355 -196,20.0,21.0,-16.774641369736234,34.127718648773715 -196,21.0,9.0,-2.619319553382597,5.400770303329455 -196,21.0,20.0,-16.774641369736234,34.127718648773715 -196,21.0,21.0,21.93449907537439,-43.48289181517921 -196,21.0,23.0,-2.5405381522555563,3.95440286307604 -196,22.0,14.0,-1.9683489489016612,3.976064876781356 -196,22.0,22.0,3.429754555384988,-6.965303617315433 -196,22.0,23.0,-1.4614056064833263,2.989238740534077 -196,23.0,21.0,-2.5405381522555563,3.95440286307604 -196,23.0,22.0,-1.4614056064833263,2.989238740534077 -196,23.0,23.0,5.311836702613133,-9.188263657315172 -196,23.0,24.0,-1.3098929438742493,2.287622053705056 -196,24.0,23.0,-1.3098929438742493,2.287622053705056 -196,24.0,24.0,4.495715080321987,-7.864978761969621 -196,24.0,25.0,-1.2165301194494855,1.8171440463475024 -196,24.0,26.0,-1.9692920169982515,3.760212661917064 -196,25.0,24.0,-1.2165301194494855,1.8171440463475024 -196,25.0,25.0,1.2165301194494855,-1.8171440463475024 -196,26.0,24.0,-1.9692920169982515,3.760212661917064 -196,26.0,26.0,3.652281470778589,-9.46044252232512 -196,26.0,27.0,0.0,2.608731947574922 -196,26.0,28.0,-0.99553355095268,1.881005840357816 -196,26.0,29.0,-0.6874559028276572,1.293971494797717 -196,27.0,5.0,-4.362844058012917,15.463571542897856 -196,27.0,7.0,-1.4439790613954469,4.540814658476248 -196,27.0,26.0,0.0,2.608731947574922 -196,27.0,27.0,5.806823119408364,-22.67145722159613 -196,28.0,26.0,-0.99553355095268,1.881005840357816 -196,28.0,28.0,1.9075867579849564,-3.604364401207048 -196,28.0,29.0,-0.9120532070322764,1.7233585608492326 -196,29.0,26.0,-0.6874559028276572,1.293971494797717 -196,29.0,28.0,-0.9120532070322764,1.7233585608492326 -196,29.0,29.0,1.5995091098599337,-3.0173300556469496 -197,0.0,0.0,6.765516048652632,-21.23160167089863 -197,0.0,1.0,-5.224646179885656,15.646726840803398 -197,0.0,2.0,-1.5408698687669766,5.631674830095234 -197,1.0,0.0,-5.224646179885656,15.646726840803398 -197,1.0,1.0,9.75228216552403,-30.648662892676068 -197,1.0,3.0,-1.7055303166990268,5.1973792282565086 -197,1.0,4.0,-1.1359607881738778,4.772479328281356 -197,1.0,5.0,-1.6861448807654689,5.116477495334806 -197,2.0,0.0,-1.5408698687669766,5.631674830095234 -197,2.0,2.0,9.736318911079088,-29.13794745915803 -197,2.0,3.0,-8.19544904231211,23.5308726290628 -197,3.0,1.0,-1.7055303166990268,5.1973792282565086 -197,3.0,2.0,-8.19544904231211,23.5308726290628 -197,3.0,3.0,16.314103089185693,-55.509410535254254 -197,3.0,5.0,-6.413123730174556,22.31120356548123 -197,3.0,11.0,0.0,4.191255364806866 -197,4.0,1.0,-1.1359607881738778,4.772479328281356 -197,4.0,4.0,4.089980824135861,-12.190647245055052 -197,4.0,6.0,-2.954020035961983,7.449267916773697 -197,5.0,1.0,-1.6861448807654689,5.116477495334806 -197,5.0,3.0,-6.413123730174556,22.31120356548123 -197,5.0,5.0,22.341631269034565,-82.8291478657789 -197,5.0,6.0,-3.590210423980992,11.02611441072814 -197,5.0,7.0,-6.289308176100628,22.0125786163522 -197,5.0,8.0,0.0,4.915840805411357 -197,5.0,9.0,0.0,1.8561002591115965 -197,5.0,27.0,-4.362844058012917,15.463571542897856 -197,6.0,4.0,-2.954020035961983,7.449267916773697 -197,6.0,5.0,-3.590210423980992,11.02611441072814 -197,6.0,6.0,6.544230459942975,-18.45668232750184 -197,7.0,5.0,-6.289308176100628,22.0125786163522 -197,7.0,7.0,7.733287237496075,-26.527493274828448 -197,7.0,27.0,-1.4439790613954469,4.540814658476248 -197,8.0,5.0,0.0,4.915840805411357 -197,8.0,8.0,0.0,-18.706293706293707 -197,8.0,9.0,0.0,9.090909090909092 -197,8.0,10.0,0.0,4.807692307692308 -197,9.0,5.0,0.0,1.8561002591115965 -197,9.0,8.0,0.0,9.090909090909092 -197,9.0,9.0,13.462042814524237,-41.3837606675224 -197,9.0,16.0,-3.956039125715353,10.317447719844054 -197,9.0,19.0,-1.7848303152666305,3.98535828943083 -197,9.0,20.0,-5.101853820159654,10.98071411292983 -197,9.0,21.0,-2.619319553382597,5.400770303329455 -197,10.0,8.0,0.0,4.807692307692308 -197,10.0,10.0,0.0,-4.807692307692308 -197,11.0,3.0,0.0,4.191255364806866 -197,11.0,11.0,6.573961583776156,-24.424167659260668 -197,11.0,12.0,0.0,7.142857142857143 -197,11.0,13.0,-1.5265676088395577,3.1734252729654173 -197,11.0,14.0,-3.0953961826564296,6.097275864326261 -197,11.0,15.0,-1.9519977922801688,4.104359379111847 -197,12.0,11.0,0.0,7.142857142857143 -197,12.0,12.0,0.0,-7.142857142857143 -197,13.0,11.0,-1.5265676088395577,3.1734252729654173 -197,13.0,13.0,4.01751987283902,-5.424299332335067 -197,13.0,14.0,-2.4909522639994623,2.250874059369649 -197,14.0,11.0,-3.0953961826564296,6.097275864326261 -197,14.0,13.0,-2.4909522639994623,2.250874059369649 -197,14.0,14.0,7.397149597063095,-12.035568855326606 -197,14.0,17.0,-1.8108011504072024,3.687418931630696 -197,15.0,11.0,-1.9519977922801688,4.104359379111847 -197,15.0,15.0,3.271064728633931,-8.94513365126506 -197,15.0,16.0,-1.3190669363537617,4.8407742721532125 -197,16.0,9.0,-3.956039125715353,10.317447719844054 -197,16.0,15.0,-1.3190669363537617,4.8407742721532125 -197,16.0,16.0,5.275106062069114,-15.158221991997266 -197,17.0,14.0,-1.8108011504072024,3.687418931630696 -197,17.0,17.0,4.886487584415919,-9.906177730909668 -197,17.0,18.0,-3.0756864340087167,6.218758799278971 -197,18.0,17.0,-3.0756864340087167,6.218758799278971 -197,18.0,18.0,8.958039375185187,-17.98346468163191 -197,18.0,19.0,-5.88235294117647,11.76470588235294 -197,19.0,9.0,-1.7848303152666305,3.98535828943083 -197,19.0,18.0,-5.88235294117647,11.76470588235294 -197,19.0,19.0,7.6671832564431,-15.75006417178377 -197,20.0,9.0,-5.101853820159654,10.98071411292983 -197,20.0,20.0,21.876495189895888,-45.10843276170355 -197,20.0,21.0,-16.774641369736234,34.127718648773715 -197,21.0,9.0,-2.619319553382597,5.400770303329455 -197,21.0,20.0,-16.774641369736234,34.127718648773715 -197,21.0,21.0,21.93449907537439,-43.48289181517921 -197,21.0,23.0,-2.5405381522555563,3.95440286307604 -197,22.0,22.0,1.4614056064833263,-2.989238740534077 -197,22.0,23.0,-1.4614056064833263,2.989238740534077 -197,23.0,21.0,-2.5405381522555563,3.95440286307604 -197,23.0,22.0,-1.4614056064833263,2.989238740534077 -197,23.0,23.0,5.311836702613133,-9.188263657315172 -197,23.0,24.0,-1.3098929438742493,2.287622053705056 -197,24.0,23.0,-1.3098929438742493,2.287622053705056 -197,24.0,24.0,4.495715080321987,-7.864978761969621 -197,24.0,25.0,-1.2165301194494855,1.8171440463475024 -197,24.0,26.0,-1.9692920169982515,3.760212661917064 -197,25.0,24.0,-1.2165301194494855,1.8171440463475024 -197,25.0,25.0,1.2165301194494855,-1.8171440463475024 -197,26.0,24.0,-1.9692920169982515,3.760212661917064 -197,26.0,26.0,3.652281470778589,-9.46044252232512 -197,26.0,27.0,0.0,2.608731947574922 -197,26.0,28.0,-0.99553355095268,1.881005840357816 -197,26.0,29.0,-0.6874559028276572,1.293971494797717 -197,27.0,5.0,-4.362844058012917,15.463571542897856 -197,27.0,7.0,-1.4439790613954469,4.540814658476248 -197,27.0,26.0,0.0,2.608731947574922 -197,27.0,27.0,5.806823119408364,-22.67145722159613 -197,28.0,26.0,-0.99553355095268,1.881005840357816 -197,28.0,28.0,1.9075867579849564,-3.604364401207048 -197,28.0,29.0,-0.9120532070322764,1.7233585608492326 -197,29.0,26.0,-0.6874559028276572,1.293971494797717 -197,29.0,28.0,-0.9120532070322764,1.7233585608492326 -197,29.0,29.0,1.5995091098599337,-3.0173300556469496 -198,0.0,0.0,6.765516048652632,-21.23160167089863 -198,0.0,1.0,-5.224646179885656,15.646726840803398 -198,0.0,2.0,-1.5408698687669766,5.631674830095234 -198,1.0,0.0,-5.224646179885656,15.646726840803398 -198,1.0,1.0,9.75228216552403,-30.648662892676068 -198,1.0,3.0,-1.7055303166990268,5.1973792282565086 -198,1.0,4.0,-1.1359607881738778,4.772479328281356 -198,1.0,5.0,-1.6861448807654689,5.116477495334806 -198,2.0,0.0,-1.5408698687669766,5.631674830095234 -198,2.0,2.0,9.736318911079088,-29.13794745915803 -198,2.0,3.0,-8.19544904231211,23.5308726290628 -198,3.0,1.0,-1.7055303166990268,5.1973792282565086 -198,3.0,2.0,-8.19544904231211,23.5308726290628 -198,3.0,3.0,16.314103089185693,-55.509410535254254 -198,3.0,5.0,-6.413123730174556,22.31120356548123 -198,3.0,11.0,0.0,4.191255364806866 -198,4.0,1.0,-1.1359607881738778,4.772479328281356 -198,4.0,4.0,4.089980824135861,-12.190647245055052 -198,4.0,6.0,-2.954020035961983,7.449267916773697 -198,5.0,1.0,-1.6861448807654689,5.116477495334806 -198,5.0,3.0,-6.413123730174556,22.31120356548123 -198,5.0,5.0,17.978787211021647,-67.37207632288106 -198,5.0,6.0,-3.590210423980992,11.02611441072814 -198,5.0,7.0,-6.289308176100628,22.0125786163522 -198,5.0,8.0,0.0,4.915840805411357 -198,5.0,9.0,0.0,1.8561002591115965 -198,6.0,4.0,-2.954020035961983,7.449267916773697 -198,6.0,5.0,-3.590210423980992,11.02611441072814 -198,6.0,6.0,6.544230459942975,-18.45668232750184 -198,7.0,5.0,-6.289308176100628,22.0125786163522 -198,7.0,7.0,7.733287237496075,-26.527493274828448 -198,7.0,27.0,-1.4439790613954469,4.540814658476248 -198,8.0,5.0,0.0,4.915840805411357 -198,8.0,8.0,0.0,-18.706293706293707 -198,8.0,9.0,0.0,9.090909090909092 -198,8.0,10.0,0.0,4.807692307692308 -198,9.0,5.0,0.0,1.8561002591115965 -198,9.0,8.0,0.0,9.090909090909092 -198,9.0,9.0,13.462042814524237,-41.3837606675224 -198,9.0,16.0,-3.956039125715353,10.317447719844054 -198,9.0,19.0,-1.7848303152666305,3.98535828943083 -198,9.0,20.0,-5.101853820159654,10.98071411292983 -198,9.0,21.0,-2.619319553382597,5.400770303329455 -198,10.0,8.0,0.0,4.807692307692308 -198,10.0,10.0,0.0,-4.807692307692308 -198,11.0,3.0,0.0,4.191255364806866 -198,11.0,11.0,4.621963791495987,-20.31980828014882 -198,11.0,12.0,0.0,7.142857142857143 -198,11.0,13.0,-1.5265676088395577,3.1734252729654173 -198,11.0,14.0,-3.0953961826564296,6.097275864326261 -198,12.0,11.0,0.0,7.142857142857143 -198,12.0,12.0,0.0,-7.142857142857143 -198,13.0,11.0,-1.5265676088395577,3.1734252729654173 -198,13.0,13.0,4.01751987283902,-5.424299332335067 -198,13.0,14.0,-2.4909522639994623,2.250874059369649 -198,14.0,11.0,-3.0953961826564296,6.097275864326261 -198,14.0,13.0,-2.4909522639994623,2.250874059369649 -198,14.0,14.0,9.365498545964757,-16.01163373210796 -198,14.0,17.0,-1.8108011504072024,3.687418931630696 -198,14.0,22.0,-1.9683489489016612,3.976064876781356 -198,15.0,15.0,1.3190669363537617,-4.8407742721532125 -198,15.0,16.0,-1.3190669363537617,4.8407742721532125 -198,16.0,9.0,-3.956039125715353,10.317447719844054 -198,16.0,15.0,-1.3190669363537617,4.8407742721532125 -198,16.0,16.0,5.275106062069114,-15.158221991997266 -198,17.0,14.0,-1.8108011504072024,3.687418931630696 -198,17.0,17.0,4.886487584415919,-9.906177730909668 -198,17.0,18.0,-3.0756864340087167,6.218758799278971 -198,18.0,17.0,-3.0756864340087167,6.218758799278971 -198,18.0,18.0,8.958039375185187,-17.98346468163191 -198,18.0,19.0,-5.88235294117647,11.76470588235294 -198,19.0,9.0,-1.7848303152666305,3.98535828943083 -198,19.0,18.0,-5.88235294117647,11.76470588235294 -198,19.0,19.0,7.6671832564431,-15.75006417178377 -198,20.0,9.0,-5.101853820159654,10.98071411292983 -198,20.0,20.0,21.876495189895888,-45.10843276170355 -198,20.0,21.0,-16.774641369736234,34.127718648773715 -198,21.0,9.0,-2.619319553382597,5.400770303329455 -198,21.0,20.0,-16.774641369736234,34.127718648773715 -198,21.0,21.0,21.93449907537439,-43.48289181517921 -198,21.0,23.0,-2.5405381522555563,3.95440286307604 -198,22.0,14.0,-1.9683489489016612,3.976064876781356 -198,22.0,22.0,3.429754555384988,-6.965303617315433 -198,22.0,23.0,-1.4614056064833263,2.989238740534077 -198,23.0,21.0,-2.5405381522555563,3.95440286307604 -198,23.0,22.0,-1.4614056064833263,2.989238740534077 -198,23.0,23.0,5.311836702613133,-9.188263657315172 -198,23.0,24.0,-1.3098929438742493,2.287622053705056 -198,24.0,23.0,-1.3098929438742493,2.287622053705056 -198,24.0,24.0,4.495715080321987,-7.864978761969621 -198,24.0,25.0,-1.2165301194494855,1.8171440463475024 -198,24.0,26.0,-1.9692920169982515,3.760212661917064 -198,25.0,24.0,-1.2165301194494855,1.8171440463475024 -198,25.0,25.0,1.2165301194494855,-1.8171440463475024 -198,26.0,24.0,-1.9692920169982515,3.760212661917064 -198,26.0,26.0,3.652281470778589,-9.46044252232512 -198,26.0,27.0,0.0,2.608731947574922 -198,26.0,28.0,-0.99553355095268,1.881005840357816 -198,26.0,29.0,-0.6874559028276572,1.293971494797717 -198,27.0,7.0,-1.4439790613954469,4.540814658476248 -198,27.0,26.0,0.0,2.608731947574922 -198,27.0,27.0,1.4439790613954469,-7.214385678698274 -198,28.0,26.0,-0.99553355095268,1.881005840357816 -198,28.0,28.0,1.9075867579849564,-3.604364401207048 -198,28.0,29.0,-0.9120532070322764,1.7233585608492326 -198,29.0,26.0,-0.6874559028276572,1.293971494797717 -198,29.0,28.0,-0.9120532070322764,1.7233585608492326 -198,29.0,29.0,1.5995091098599337,-3.0173300556469496 -199,0.0,0.0,6.765516048652632,-21.23160167089863 -199,0.0,1.0,-5.224646179885656,15.646726840803398 -199,0.0,2.0,-1.5408698687669766,5.631674830095234 -199,1.0,0.0,-5.224646179885656,15.646726840803398 -199,1.0,1.0,9.75228216552403,-30.648662892676068 -199,1.0,3.0,-1.7055303166990268,5.1973792282565086 -199,1.0,4.0,-1.1359607881738778,4.772479328281356 -199,1.0,5.0,-1.6861448807654689,5.116477495334806 -199,2.0,0.0,-1.5408698687669766,5.631674830095234 -199,2.0,2.0,9.736318911079088,-29.13794745915803 -199,2.0,3.0,-8.19544904231211,23.5308726290628 -199,3.0,1.0,-1.7055303166990268,5.1973792282565086 -199,3.0,2.0,-8.19544904231211,23.5308726290628 -199,3.0,3.0,16.314103089185693,-55.509410535254254 -199,3.0,5.0,-6.413123730174556,22.31120356548123 -199,3.0,11.0,0.0,4.191255364806866 -199,4.0,1.0,-1.1359607881738778,4.772479328281356 -199,4.0,4.0,4.089980824135861,-12.190647245055052 -199,4.0,6.0,-2.954020035961983,7.449267916773697 -199,5.0,1.0,-1.6861448807654689,5.116477495334806 -199,5.0,3.0,-6.413123730174556,22.31120356548123 -199,5.0,5.0,22.341631269034565,-82.8291478657789 -199,5.0,6.0,-3.590210423980992,11.02611441072814 -199,5.0,7.0,-6.289308176100628,22.0125786163522 -199,5.0,8.0,0.0,4.915840805411357 -199,5.0,9.0,0.0,1.8561002591115965 -199,5.0,27.0,-4.362844058012917,15.463571542897856 -199,6.0,4.0,-2.954020035961983,7.449267916773697 -199,6.0,5.0,-3.590210423980992,11.02611441072814 -199,6.0,6.0,6.544230459942975,-18.45668232750184 -199,7.0,5.0,-6.289308176100628,22.0125786163522 -199,7.0,7.0,7.733287237496075,-26.527493274828448 -199,7.0,27.0,-1.4439790613954469,4.540814658476248 -199,8.0,5.0,0.0,4.915840805411357 -199,8.0,8.0,0.0,-18.706293706293707 -199,8.0,9.0,0.0,9.090909090909092 -199,8.0,10.0,0.0,4.807692307692308 -199,9.0,5.0,0.0,1.8561002591115965 -199,9.0,8.0,0.0,9.090909090909092 -199,9.0,9.0,13.462042814524237,-41.3837606675224 -199,9.0,16.0,-3.956039125715353,10.317447719844054 -199,9.0,19.0,-1.7848303152666305,3.98535828943083 -199,9.0,20.0,-5.101853820159654,10.98071411292983 -199,9.0,21.0,-2.619319553382597,5.400770303329455 -199,10.0,8.0,0.0,4.807692307692308 -199,10.0,10.0,0.0,-4.807692307692308 -199,11.0,3.0,0.0,4.191255364806866 -199,11.0,11.0,6.573961583776156,-24.424167659260668 -199,11.0,12.0,0.0,7.142857142857143 -199,11.0,13.0,-1.5265676088395577,3.1734252729654173 -199,11.0,14.0,-3.0953961826564296,6.097275864326261 -199,11.0,15.0,-1.9519977922801688,4.104359379111847 -199,12.0,11.0,0.0,7.142857142857143 -199,12.0,12.0,0.0,-7.142857142857143 -199,13.0,11.0,-1.5265676088395577,3.1734252729654173 -199,13.0,13.0,4.01751987283902,-5.424299332335067 -199,13.0,14.0,-2.4909522639994623,2.250874059369649 -199,14.0,11.0,-3.0953961826564296,6.097275864326261 -199,14.0,13.0,-2.4909522639994623,2.250874059369649 -199,14.0,14.0,9.365498545964757,-16.01163373210796 -199,14.0,17.0,-1.8108011504072024,3.687418931630696 -199,14.0,22.0,-1.9683489489016612,3.976064876781356 -199,15.0,11.0,-1.9519977922801688,4.104359379111847 -199,15.0,15.0,3.271064728633931,-8.94513365126506 -199,15.0,16.0,-1.3190669363537617,4.8407742721532125 -199,16.0,9.0,-3.956039125715353,10.317447719844054 -199,16.0,15.0,-1.3190669363537617,4.8407742721532125 -199,16.0,16.0,5.275106062069114,-15.158221991997266 -199,17.0,14.0,-1.8108011504072024,3.687418931630696 -199,17.0,17.0,4.886487584415919,-9.906177730909668 -199,17.0,18.0,-3.0756864340087167,6.218758799278971 -199,18.0,17.0,-3.0756864340087167,6.218758799278971 -199,18.0,18.0,8.958039375185187,-17.98346468163191 -199,18.0,19.0,-5.88235294117647,11.76470588235294 -199,19.0,9.0,-1.7848303152666305,3.98535828943083 -199,19.0,18.0,-5.88235294117647,11.76470588235294 -199,19.0,19.0,7.6671832564431,-15.75006417178377 -199,20.0,9.0,-5.101853820159654,10.98071411292983 -199,20.0,20.0,21.876495189895888,-45.10843276170355 -199,20.0,21.0,-16.774641369736234,34.127718648773715 -199,21.0,9.0,-2.619319553382597,5.400770303329455 -199,21.0,20.0,-16.774641369736234,34.127718648773715 -199,21.0,21.0,21.93449907537439,-43.48289181517921 -199,21.0,23.0,-2.5405381522555563,3.95440286307604 -199,22.0,14.0,-1.9683489489016612,3.976064876781356 -199,22.0,22.0,3.429754555384988,-6.965303617315433 -199,22.0,23.0,-1.4614056064833263,2.989238740534077 -199,23.0,21.0,-2.5405381522555563,3.95440286307604 -199,23.0,22.0,-1.4614056064833263,2.989238740534077 -199,23.0,23.0,5.311836702613133,-9.188263657315172 -199,23.0,24.0,-1.3098929438742493,2.287622053705056 -199,24.0,23.0,-1.3098929438742493,2.287622053705056 -199,24.0,24.0,4.495715080321987,-7.864978761969621 -199,24.0,25.0,-1.2165301194494855,1.8171440463475024 -199,24.0,26.0,-1.9692920169982515,3.760212661917064 -199,25.0,24.0,-1.2165301194494855,1.8171440463475024 -199,25.0,25.0,1.2165301194494855,-1.8171440463475024 -199,26.0,24.0,-1.9692920169982515,3.760212661917064 -199,26.0,26.0,3.652281470778589,-9.46044252232512 -199,26.0,27.0,0.0,2.608731947574922 -199,26.0,28.0,-0.99553355095268,1.881005840357816 -199,26.0,29.0,-0.6874559028276572,1.293971494797717 -199,27.0,5.0,-4.362844058012917,15.463571542897856 -199,27.0,7.0,-1.4439790613954469,4.540814658476248 -199,27.0,26.0,0.0,2.608731947574922 -199,27.0,27.0,5.806823119408364,-22.67145722159613 -199,28.0,26.0,-0.99553355095268,1.881005840357816 -199,28.0,28.0,1.9075867579849564,-3.604364401207048 -199,28.0,29.0,-0.9120532070322764,1.7233585608492326 -199,29.0,26.0,-0.6874559028276572,1.293971494797717 -199,29.0,28.0,-0.9120532070322764,1.7233585608492326 -199,29.0,29.0,1.5995091098599337,-3.0173300556469496 -200,0.0,0.0,6.765516048652632,-21.23160167089863 -200,0.0,1.0,-5.224646179885656,15.646726840803398 -200,0.0,2.0,-1.5408698687669766,5.631674830095234 -200,1.0,0.0,-5.224646179885656,15.646726840803398 -200,1.0,1.0,9.75228216552403,-30.648662892676068 -200,1.0,3.0,-1.7055303166990268,5.1973792282565086 -200,1.0,4.0,-1.1359607881738778,4.772479328281356 -200,1.0,5.0,-1.6861448807654689,5.116477495334806 -200,2.0,0.0,-1.5408698687669766,5.631674830095234 -200,2.0,2.0,9.736318911079088,-29.13794745915803 -200,2.0,3.0,-8.19544904231211,23.5308726290628 -200,3.0,1.0,-1.7055303166990268,5.1973792282565086 -200,3.0,2.0,-8.19544904231211,23.5308726290628 -200,3.0,3.0,16.314103089185693,-55.509410535254254 -200,3.0,5.0,-6.413123730174556,22.31120356548123 -200,3.0,11.0,0.0,4.191255364806866 -200,4.0,1.0,-1.1359607881738778,4.772479328281356 -200,4.0,4.0,4.089980824135861,-12.190647245055052 -200,4.0,6.0,-2.954020035961983,7.449267916773697 -200,5.0,1.0,-1.6861448807654689,5.116477495334806 -200,5.0,3.0,-6.413123730174556,22.31120356548123 -200,5.0,5.0,18.75142084505357,-71.81153345505078 -200,5.0,7.0,-6.289308176100628,22.0125786163522 -200,5.0,8.0,0.0,4.915840805411357 -200,5.0,9.0,0.0,1.8561002591115965 -200,5.0,27.0,-4.362844058012917,15.463571542897856 -200,6.0,4.0,-2.954020035961983,7.449267916773697 -200,6.0,6.0,2.954020035961983,-7.439067916773697 -200,7.0,5.0,-6.289308176100628,22.0125786163522 -200,7.0,7.0,6.289308176100628,-22.0080786163522 -200,8.0,5.0,0.0,4.915840805411357 -200,8.0,8.0,0.0,-18.706293706293707 -200,8.0,9.0,0.0,9.090909090909092 -200,8.0,10.0,0.0,4.807692307692308 -200,9.0,5.0,0.0,1.8561002591115965 -200,9.0,8.0,0.0,9.090909090909092 -200,9.0,9.0,13.462042814524237,-41.3837606675224 -200,9.0,16.0,-3.956039125715353,10.317447719844054 -200,9.0,19.0,-1.7848303152666305,3.98535828943083 -200,9.0,20.0,-5.101853820159654,10.98071411292983 -200,9.0,21.0,-2.619319553382597,5.400770303329455 -200,10.0,8.0,0.0,4.807692307692308 -200,10.0,10.0,0.0,-4.807692307692308 -200,11.0,3.0,0.0,4.191255364806866 -200,11.0,11.0,6.573961583776156,-24.424167659260668 -200,11.0,12.0,0.0,7.142857142857143 -200,11.0,13.0,-1.5265676088395577,3.1734252729654173 -200,11.0,14.0,-3.0953961826564296,6.097275864326261 -200,11.0,15.0,-1.9519977922801688,4.104359379111847 -200,12.0,11.0,0.0,7.142857142857143 -200,12.0,12.0,0.0,-7.142857142857143 -200,13.0,11.0,-1.5265676088395577,3.1734252729654173 -200,13.0,13.0,4.01751987283902,-5.424299332335067 -200,13.0,14.0,-2.4909522639994623,2.250874059369649 -200,14.0,11.0,-3.0953961826564296,6.097275864326261 -200,14.0,13.0,-2.4909522639994623,2.250874059369649 -200,14.0,14.0,9.365498545964757,-16.01163373210796 -200,14.0,17.0,-1.8108011504072024,3.687418931630696 -200,14.0,22.0,-1.9683489489016612,3.976064876781356 -200,15.0,11.0,-1.9519977922801688,4.104359379111847 -200,15.0,15.0,3.271064728633931,-8.94513365126506 -200,15.0,16.0,-1.3190669363537617,4.8407742721532125 -200,16.0,9.0,-3.956039125715353,10.317447719844054 -200,16.0,15.0,-1.3190669363537617,4.8407742721532125 -200,16.0,16.0,5.275106062069114,-15.158221991997266 -200,17.0,14.0,-1.8108011504072024,3.687418931630696 -200,17.0,17.0,4.886487584415919,-9.906177730909668 -200,17.0,18.0,-3.0756864340087167,6.218758799278971 -200,18.0,17.0,-3.0756864340087167,6.218758799278971 -200,18.0,18.0,8.958039375185187,-17.98346468163191 -200,18.0,19.0,-5.88235294117647,11.76470588235294 -200,19.0,9.0,-1.7848303152666305,3.98535828943083 -200,19.0,18.0,-5.88235294117647,11.76470588235294 -200,19.0,19.0,7.6671832564431,-15.75006417178377 -200,20.0,9.0,-5.101853820159654,10.98071411292983 -200,20.0,20.0,21.876495189895888,-45.10843276170355 -200,20.0,21.0,-16.774641369736234,34.127718648773715 -200,21.0,9.0,-2.619319553382597,5.400770303329455 -200,21.0,20.0,-16.774641369736234,34.127718648773715 -200,21.0,21.0,21.93449907537439,-43.48289181517921 -200,21.0,23.0,-2.5405381522555563,3.95440286307604 -200,22.0,14.0,-1.9683489489016612,3.976064876781356 -200,22.0,22.0,3.429754555384988,-6.965303617315433 -200,22.0,23.0,-1.4614056064833263,2.989238740534077 -200,23.0,21.0,-2.5405381522555563,3.95440286307604 -200,23.0,22.0,-1.4614056064833263,2.989238740534077 -200,23.0,23.0,5.311836702613133,-9.188263657315172 -200,23.0,24.0,-1.3098929438742493,2.287622053705056 -200,24.0,23.0,-1.3098929438742493,2.287622053705056 -200,24.0,24.0,4.495715080321987,-7.864978761969621 -200,24.0,25.0,-1.2165301194494855,1.8171440463475024 -200,24.0,26.0,-1.9692920169982515,3.760212661917064 -200,25.0,24.0,-1.2165301194494855,1.8171440463475024 -200,25.0,25.0,1.2165301194494855,-1.8171440463475024 -200,26.0,24.0,-1.9692920169982515,3.760212661917064 -200,26.0,26.0,3.652281470778589,-9.46044252232512 -200,26.0,27.0,0.0,2.608731947574922 -200,26.0,28.0,-0.99553355095268,1.881005840357816 -200,26.0,29.0,-0.6874559028276572,1.293971494797717 -200,27.0,5.0,-4.362844058012917,15.463571542897856 -200,27.0,26.0,0.0,2.608731947574922 -200,27.0,27.0,4.362844058012917,-18.15204256311988 -200,28.0,26.0,-0.99553355095268,1.881005840357816 -200,28.0,28.0,1.9075867579849564,-3.604364401207048 -200,28.0,29.0,-0.9120532070322764,1.7233585608492326 -200,29.0,26.0,-0.6874559028276572,1.293971494797717 -200,29.0,28.0,-0.9120532070322764,1.7233585608492326 -200,29.0,29.0,1.5995091098599337,-3.0173300556469496 -201,0.0,0.0,6.765516048652632,-21.23160167089863 -201,0.0,1.0,-5.224646179885656,15.646726840803398 -201,0.0,2.0,-1.5408698687669766,5.631674830095234 -201,1.0,0.0,-5.224646179885656,15.646726840803398 -201,1.0,1.0,9.75228216552403,-30.648662892676068 -201,1.0,3.0,-1.7055303166990268,5.1973792282565086 -201,1.0,4.0,-1.1359607881738778,4.772479328281356 -201,1.0,5.0,-1.6861448807654689,5.116477495334806 -201,2.0,0.0,-1.5408698687669766,5.631674830095234 -201,2.0,2.0,1.5408698687669766,-5.611274830095233 -201,3.0,1.0,-1.7055303166990268,5.1973792282565086 -201,3.0,3.0,1.7055303166990268,-9.676034340710228 -201,3.0,11.0,0.0,4.191255364806866 -201,4.0,1.0,-1.1359607881738778,4.772479328281356 -201,4.0,4.0,4.089980824135861,-12.190647245055052 -201,4.0,6.0,-2.954020035961983,7.449267916773697 -201,5.0,1.0,-1.6861448807654689,5.116477495334806 -201,5.0,5.0,15.928507538860009,-60.52244430029767 -201,5.0,6.0,-3.590210423980992,11.02611441072814 -201,5.0,7.0,-6.289308176100628,22.0125786163522 -201,5.0,8.0,0.0,4.915840805411357 -201,5.0,9.0,0.0,1.8561002591115965 -201,5.0,27.0,-4.362844058012917,15.463571542897856 -201,6.0,4.0,-2.954020035961983,7.449267916773697 -201,6.0,5.0,-3.590210423980992,11.02611441072814 -201,6.0,6.0,6.544230459942975,-18.45668232750184 -201,7.0,5.0,-6.289308176100628,22.0125786163522 -201,7.0,7.0,7.733287237496075,-26.527493274828448 -201,7.0,27.0,-1.4439790613954469,4.540814658476248 -201,8.0,5.0,0.0,4.915840805411357 -201,8.0,8.0,0.0,-18.706293706293707 -201,8.0,9.0,0.0,9.090909090909092 -201,8.0,10.0,0.0,4.807692307692308 -201,9.0,5.0,0.0,1.8561002591115965 -201,9.0,8.0,0.0,9.090909090909092 -201,9.0,9.0,13.462042814524237,-41.3837606675224 -201,9.0,16.0,-3.956039125715353,10.317447719844054 -201,9.0,19.0,-1.7848303152666305,3.98535828943083 -201,9.0,20.0,-5.101853820159654,10.98071411292983 -201,9.0,21.0,-2.619319553382597,5.400770303329455 -201,10.0,8.0,0.0,4.807692307692308 -201,10.0,10.0,0.0,-4.807692307692308 -201,11.0,3.0,0.0,4.191255364806866 -201,11.0,11.0,4.621963791495987,-20.31980828014882 -201,11.0,12.0,0.0,7.142857142857143 -201,11.0,13.0,-1.5265676088395577,3.1734252729654173 -201,11.0,14.0,-3.0953961826564296,6.097275864326261 -201,12.0,11.0,0.0,7.142857142857143 -201,12.0,12.0,0.0,-7.142857142857143 -201,13.0,11.0,-1.5265676088395577,3.1734252729654173 -201,13.0,13.0,4.01751987283902,-5.424299332335067 -201,13.0,14.0,-2.4909522639994623,2.250874059369649 -201,14.0,11.0,-3.0953961826564296,6.097275864326261 -201,14.0,13.0,-2.4909522639994623,2.250874059369649 -201,14.0,14.0,9.365498545964757,-16.01163373210796 -201,14.0,17.0,-1.8108011504072024,3.687418931630696 -201,14.0,22.0,-1.9683489489016612,3.976064876781356 -201,15.0,15.0,1.3190669363537617,-4.8407742721532125 -201,15.0,16.0,-1.3190669363537617,4.8407742721532125 -201,16.0,9.0,-3.956039125715353,10.317447719844054 -201,16.0,15.0,-1.3190669363537617,4.8407742721532125 -201,16.0,16.0,5.275106062069114,-15.158221991997266 -201,17.0,14.0,-1.8108011504072024,3.687418931630696 -201,17.0,17.0,4.886487584415919,-9.906177730909668 -201,17.0,18.0,-3.0756864340087167,6.218758799278971 -201,18.0,17.0,-3.0756864340087167,6.218758799278971 -201,18.0,18.0,8.958039375185187,-17.98346468163191 -201,18.0,19.0,-5.88235294117647,11.76470588235294 -201,19.0,9.0,-1.7848303152666305,3.98535828943083 -201,19.0,18.0,-5.88235294117647,11.76470588235294 -201,19.0,19.0,7.6671832564431,-15.75006417178377 -201,20.0,9.0,-5.101853820159654,10.98071411292983 -201,20.0,20.0,21.876495189895888,-45.10843276170355 -201,20.0,21.0,-16.774641369736234,34.127718648773715 -201,21.0,9.0,-2.619319553382597,5.400770303329455 -201,21.0,20.0,-16.774641369736234,34.127718648773715 -201,21.0,21.0,21.93449907537439,-43.48289181517921 -201,21.0,23.0,-2.5405381522555563,3.95440286307604 -201,22.0,14.0,-1.9683489489016612,3.976064876781356 -201,22.0,22.0,3.429754555384988,-6.965303617315433 -201,22.0,23.0,-1.4614056064833263,2.989238740534077 -201,23.0,21.0,-2.5405381522555563,3.95440286307604 -201,23.0,22.0,-1.4614056064833263,2.989238740534077 -201,23.0,23.0,5.311836702613133,-9.188263657315172 -201,23.0,24.0,-1.3098929438742493,2.287622053705056 -201,24.0,23.0,-1.3098929438742493,2.287622053705056 -201,24.0,24.0,4.495715080321987,-7.864978761969621 -201,24.0,25.0,-1.2165301194494855,1.8171440463475024 -201,24.0,26.0,-1.9692920169982515,3.760212661917064 -201,25.0,24.0,-1.2165301194494855,1.8171440463475024 -201,25.0,25.0,1.2165301194494855,-1.8171440463475024 -201,26.0,24.0,-1.9692920169982515,3.760212661917064 -201,26.0,26.0,2.9648255679509314,-8.166471027527404 -201,26.0,27.0,0.0,2.608731947574922 -201,26.0,28.0,-0.99553355095268,1.881005840357816 -201,27.0,5.0,-4.362844058012917,15.463571542897856 -201,27.0,7.0,-1.4439790613954469,4.540814658476248 -201,27.0,26.0,0.0,2.608731947574922 -201,27.0,27.0,5.806823119408364,-22.67145722159613 -201,28.0,26.0,-0.99553355095268,1.881005840357816 -201,28.0,28.0,1.9075867579849564,-3.604364401207048 -201,28.0,29.0,-0.9120532070322764,1.7233585608492326 -201,29.0,28.0,-0.9120532070322764,1.7233585608492326 -201,29.0,29.0,0.9120532070322764,-1.7233585608492326 -202,0.0,0.0,6.765516048652632,-21.23160167089863 -202,0.0,1.0,-5.224646179885656,15.646726840803398 -202,0.0,2.0,-1.5408698687669766,5.631674830095234 -202,1.0,0.0,-5.224646179885656,15.646726840803398 -202,1.0,1.0,9.75228216552403,-30.648662892676068 -202,1.0,3.0,-1.7055303166990268,5.1973792282565086 -202,1.0,4.0,-1.1359607881738778,4.772479328281356 -202,1.0,5.0,-1.6861448807654689,5.116477495334806 -202,2.0,0.0,-1.5408698687669766,5.631674830095234 -202,2.0,2.0,9.736318911079088,-29.13794745915803 -202,2.0,3.0,-8.19544904231211,23.5308726290628 -202,3.0,1.0,-1.7055303166990268,5.1973792282565086 -202,3.0,2.0,-8.19544904231211,23.5308726290628 -202,3.0,3.0,16.314103089185693,-55.509410535254254 -202,3.0,5.0,-6.413123730174556,22.31120356548123 -202,3.0,11.0,0.0,4.191255364806866 -202,4.0,1.0,-1.1359607881738778,4.772479328281356 -202,4.0,4.0,4.089980824135861,-12.190647245055052 -202,4.0,6.0,-2.954020035961983,7.449267916773697 -202,5.0,1.0,-1.6861448807654689,5.116477495334806 -202,5.0,3.0,-6.413123730174556,22.31120356548123 -202,5.0,5.0,17.978787211021647,-67.37207632288106 -202,5.0,6.0,-3.590210423980992,11.02611441072814 -202,5.0,7.0,-6.289308176100628,22.0125786163522 -202,5.0,8.0,0.0,4.915840805411357 -202,5.0,9.0,0.0,1.8561002591115965 -202,6.0,4.0,-2.954020035961983,7.449267916773697 -202,6.0,5.0,-3.590210423980992,11.02611441072814 -202,6.0,6.0,6.544230459942975,-18.45668232750184 -202,7.0,5.0,-6.289308176100628,22.0125786163522 -202,7.0,7.0,7.733287237496075,-26.527493274828448 -202,7.0,27.0,-1.4439790613954469,4.540814658476248 -202,8.0,5.0,0.0,4.915840805411357 -202,8.0,8.0,0.0,-18.706293706293707 -202,8.0,9.0,0.0,9.090909090909092 -202,8.0,10.0,0.0,4.807692307692308 -202,9.0,5.0,0.0,1.8561002591115965 -202,9.0,8.0,0.0,9.090909090909092 -202,9.0,9.0,13.462042814524237,-41.3837606675224 -202,9.0,16.0,-3.956039125715353,10.317447719844054 -202,9.0,19.0,-1.7848303152666305,3.98535828943083 -202,9.0,20.0,-5.101853820159654,10.98071411292983 -202,9.0,21.0,-2.619319553382597,5.400770303329455 -202,10.0,8.0,0.0,4.807692307692308 -202,10.0,10.0,0.0,-4.807692307692308 -202,11.0,3.0,0.0,4.191255364806866 -202,11.0,11.0,6.573961583776156,-24.424167659260668 -202,11.0,12.0,0.0,7.142857142857143 -202,11.0,13.0,-1.5265676088395577,3.1734252729654173 -202,11.0,14.0,-3.0953961826564296,6.097275864326261 -202,11.0,15.0,-1.9519977922801688,4.104359379111847 -202,12.0,11.0,0.0,7.142857142857143 -202,12.0,12.0,0.0,-7.142857142857143 -202,13.0,11.0,-1.5265676088395577,3.1734252729654173 -202,13.0,13.0,4.01751987283902,-5.424299332335067 -202,13.0,14.0,-2.4909522639994623,2.250874059369649 -202,14.0,11.0,-3.0953961826564296,6.097275864326261 -202,14.0,13.0,-2.4909522639994623,2.250874059369649 -202,14.0,14.0,9.365498545964757,-16.01163373210796 -202,14.0,17.0,-1.8108011504072024,3.687418931630696 -202,14.0,22.0,-1.9683489489016612,3.976064876781356 -202,15.0,11.0,-1.9519977922801688,4.104359379111847 -202,15.0,15.0,3.271064728633931,-8.94513365126506 -202,15.0,16.0,-1.3190669363537617,4.8407742721532125 -202,16.0,9.0,-3.956039125715353,10.317447719844054 -202,16.0,15.0,-1.3190669363537617,4.8407742721532125 -202,16.0,16.0,5.275106062069114,-15.158221991997266 -202,17.0,14.0,-1.8108011504072024,3.687418931630696 -202,17.0,17.0,4.886487584415919,-9.906177730909668 -202,17.0,18.0,-3.0756864340087167,6.218758799278971 -202,18.0,17.0,-3.0756864340087167,6.218758799278971 -202,18.0,18.0,8.958039375185187,-17.98346468163191 -202,18.0,19.0,-5.88235294117647,11.76470588235294 -202,19.0,9.0,-1.7848303152666305,3.98535828943083 -202,19.0,18.0,-5.88235294117647,11.76470588235294 -202,19.0,19.0,7.6671832564431,-15.75006417178377 -202,20.0,9.0,-5.101853820159654,10.98071411292983 -202,20.0,20.0,21.876495189895888,-45.10843276170355 -202,20.0,21.0,-16.774641369736234,34.127718648773715 -202,21.0,9.0,-2.619319553382597,5.400770303329455 -202,21.0,20.0,-16.774641369736234,34.127718648773715 -202,21.0,21.0,21.93449907537439,-43.48289181517921 -202,21.0,23.0,-2.5405381522555563,3.95440286307604 -202,22.0,14.0,-1.9683489489016612,3.976064876781356 -202,22.0,22.0,1.9683489489016612,-3.976064876781356 -202,23.0,21.0,-2.5405381522555563,3.95440286307604 -202,23.0,23.0,3.850431096129806,-6.199024916781094 -202,23.0,24.0,-1.3098929438742493,2.287622053705056 -202,24.0,23.0,-1.3098929438742493,2.287622053705056 -202,24.0,24.0,4.495715080321987,-7.864978761969621 -202,24.0,25.0,-1.2165301194494855,1.8171440463475024 -202,24.0,26.0,-1.9692920169982515,3.760212661917064 -202,25.0,24.0,-1.2165301194494855,1.8171440463475024 -202,25.0,25.0,1.2165301194494855,-1.8171440463475024 -202,26.0,24.0,-1.9692920169982515,3.760212661917064 -202,26.0,26.0,3.652281470778589,-9.46044252232512 -202,26.0,27.0,0.0,2.608731947574922 -202,26.0,28.0,-0.99553355095268,1.881005840357816 -202,26.0,29.0,-0.6874559028276572,1.293971494797717 -202,27.0,7.0,-1.4439790613954469,4.540814658476248 -202,27.0,26.0,0.0,2.608731947574922 -202,27.0,27.0,1.4439790613954469,-7.214385678698274 -202,28.0,26.0,-0.99553355095268,1.881005840357816 -202,28.0,28.0,1.9075867579849564,-3.604364401207048 -202,28.0,29.0,-0.9120532070322764,1.7233585608492326 -202,29.0,26.0,-0.6874559028276572,1.293971494797717 -202,29.0,28.0,-0.9120532070322764,1.7233585608492326 -202,29.0,29.0,1.5995091098599337,-3.0173300556469496 -203,0.0,0.0,6.765516048652632,-21.23160167089863 -203,0.0,1.0,-5.224646179885656,15.646726840803398 -203,0.0,2.0,-1.5408698687669766,5.631674830095234 -203,1.0,0.0,-5.224646179885656,15.646726840803398 -203,1.0,1.0,9.75228216552403,-30.648662892676068 -203,1.0,3.0,-1.7055303166990268,5.1973792282565086 -203,1.0,4.0,-1.1359607881738778,4.772479328281356 -203,1.0,5.0,-1.6861448807654689,5.116477495334806 -203,2.0,0.0,-1.5408698687669766,5.631674830095234 -203,2.0,2.0,9.736318911079088,-29.13794745915803 -203,2.0,3.0,-8.19544904231211,23.5308726290628 -203,3.0,1.0,-1.7055303166990268,5.1973792282565086 -203,3.0,2.0,-8.19544904231211,23.5308726290628 -203,3.0,3.0,16.314103089185693,-55.509410535254254 -203,3.0,5.0,-6.413123730174556,22.31120356548123 -203,3.0,11.0,0.0,4.191255364806866 -203,4.0,1.0,-1.1359607881738778,4.772479328281356 -203,4.0,4.0,4.089980824135861,-12.190647245055052 -203,4.0,6.0,-2.954020035961983,7.449267916773697 -203,5.0,1.0,-1.6861448807654689,5.116477495334806 -203,5.0,3.0,-6.413123730174556,22.31120356548123 -203,5.0,5.0,22.341631269034565,-82.8291478657789 -203,5.0,6.0,-3.590210423980992,11.02611441072814 -203,5.0,7.0,-6.289308176100628,22.0125786163522 -203,5.0,8.0,0.0,4.915840805411357 -203,5.0,9.0,0.0,1.8561002591115965 -203,5.0,27.0,-4.362844058012917,15.463571542897856 -203,6.0,4.0,-2.954020035961983,7.449267916773697 -203,6.0,5.0,-3.590210423980992,11.02611441072814 -203,6.0,6.0,6.544230459942975,-18.45668232750184 -203,7.0,5.0,-6.289308176100628,22.0125786163522 -203,7.0,7.0,6.289308176100628,-22.0080786163522 -203,8.0,5.0,0.0,4.915840805411357 -203,8.0,8.0,0.0,-18.706293706293707 -203,8.0,9.0,0.0,9.090909090909092 -203,8.0,10.0,0.0,4.807692307692308 -203,9.0,5.0,0.0,1.8561002591115965 -203,9.0,8.0,0.0,9.090909090909092 -203,9.0,9.0,8.36018899436458,-30.40304655459257 -203,9.0,16.0,-3.956039125715353,10.317447719844054 -203,9.0,19.0,-1.7848303152666305,3.98535828943083 -203,9.0,21.0,-2.619319553382597,5.400770303329455 -203,10.0,8.0,0.0,4.807692307692308 -203,10.0,10.0,0.0,-4.807692307692308 -203,11.0,3.0,0.0,4.191255364806866 -203,11.0,11.0,6.573961583776156,-24.424167659260668 -203,11.0,12.0,0.0,7.142857142857143 -203,11.0,13.0,-1.5265676088395577,3.1734252729654173 -203,11.0,14.0,-3.0953961826564296,6.097275864326261 -203,11.0,15.0,-1.9519977922801688,4.104359379111847 -203,12.0,11.0,0.0,7.142857142857143 -203,12.0,12.0,0.0,-7.142857142857143 -203,13.0,11.0,-1.5265676088395577,3.1734252729654173 -203,13.0,13.0,4.01751987283902,-5.424299332335067 -203,13.0,14.0,-2.4909522639994623,2.250874059369649 -203,14.0,11.0,-3.0953961826564296,6.097275864326261 -203,14.0,13.0,-2.4909522639994623,2.250874059369649 -203,14.0,14.0,9.365498545964757,-16.01163373210796 -203,14.0,17.0,-1.8108011504072024,3.687418931630696 -203,14.0,22.0,-1.9683489489016612,3.976064876781356 -203,15.0,11.0,-1.9519977922801688,4.104359379111847 -203,15.0,15.0,3.271064728633931,-8.94513365126506 -203,15.0,16.0,-1.3190669363537617,4.8407742721532125 -203,16.0,9.0,-3.956039125715353,10.317447719844054 -203,16.0,15.0,-1.3190669363537617,4.8407742721532125 -203,16.0,16.0,5.275106062069114,-15.158221991997266 -203,17.0,14.0,-1.8108011504072024,3.687418931630696 -203,17.0,17.0,1.8108011504072024,-3.687418931630696 -203,18.0,18.0,5.88235294117647,-11.76470588235294 -203,18.0,19.0,-5.88235294117647,11.76470588235294 -203,19.0,9.0,-1.7848303152666305,3.98535828943083 -203,19.0,18.0,-5.88235294117647,11.76470588235294 -203,19.0,19.0,7.6671832564431,-15.75006417178377 -203,20.0,20.0,16.774641369736234,-34.127718648773715 -203,20.0,21.0,-16.774641369736234,34.127718648773715 -203,21.0,9.0,-2.619319553382597,5.400770303329455 -203,21.0,20.0,-16.774641369736234,34.127718648773715 -203,21.0,21.0,19.393960923118836,-39.52848895210317 -203,22.0,14.0,-1.9683489489016612,3.976064876781356 -203,22.0,22.0,3.429754555384988,-6.965303617315433 -203,22.0,23.0,-1.4614056064833263,2.989238740534077 -203,23.0,22.0,-1.4614056064833263,2.989238740534077 -203,23.0,23.0,2.771298550357576,-5.233860794239132 -203,23.0,24.0,-1.3098929438742493,2.287622053705056 -203,24.0,23.0,-1.3098929438742493,2.287622053705056 -203,24.0,24.0,4.495715080321987,-7.864978761969621 -203,24.0,25.0,-1.2165301194494855,1.8171440463475024 -203,24.0,26.0,-1.9692920169982515,3.760212661917064 -203,25.0,24.0,-1.2165301194494855,1.8171440463475024 -203,25.0,25.0,1.2165301194494855,-1.8171440463475024 -203,26.0,24.0,-1.9692920169982515,3.760212661917064 -203,26.0,26.0,3.652281470778589,-9.46044252232512 -203,26.0,27.0,0.0,2.608731947574922 -203,26.0,28.0,-0.99553355095268,1.881005840357816 -203,26.0,29.0,-0.6874559028276572,1.293971494797717 -203,27.0,5.0,-4.362844058012917,15.463571542897856 -203,27.0,26.0,0.0,2.608731947574922 -203,27.0,27.0,4.362844058012917,-18.15204256311988 -203,28.0,26.0,-0.99553355095268,1.881005840357816 -203,28.0,28.0,1.9075867579849564,-3.604364401207048 -203,28.0,29.0,-0.9120532070322764,1.7233585608492326 -203,29.0,26.0,-0.6874559028276572,1.293971494797717 -203,29.0,28.0,-0.9120532070322764,1.7233585608492326 -203,29.0,29.0,1.5995091098599337,-3.0173300556469496 -204,0.0,0.0,6.765516048652632,-21.23160167089863 -204,0.0,1.0,-5.224646179885656,15.646726840803398 -204,0.0,2.0,-1.5408698687669766,5.631674830095234 -204,1.0,0.0,-5.224646179885656,15.646726840803398 -204,1.0,1.0,9.75228216552403,-30.648662892676068 -204,1.0,3.0,-1.7055303166990268,5.1973792282565086 -204,1.0,4.0,-1.1359607881738778,4.772479328281356 -204,1.0,5.0,-1.6861448807654689,5.116477495334806 -204,2.0,0.0,-1.5408698687669766,5.631674830095234 -204,2.0,2.0,9.736318911079088,-29.13794745915803 -204,2.0,3.0,-8.19544904231211,23.5308726290628 -204,3.0,1.0,-1.7055303166990268,5.1973792282565086 -204,3.0,2.0,-8.19544904231211,23.5308726290628 -204,3.0,3.0,16.314103089185693,-55.509410535254254 -204,3.0,5.0,-6.413123730174556,22.31120356548123 -204,3.0,11.0,0.0,4.191255364806866 -204,4.0,1.0,-1.1359607881738778,4.772479328281356 -204,4.0,4.0,4.089980824135861,-12.190647245055052 -204,4.0,6.0,-2.954020035961983,7.449267916773697 -204,5.0,1.0,-1.6861448807654689,5.116477495334806 -204,5.0,3.0,-6.413123730174556,22.31120356548123 -204,5.0,5.0,22.341631269034565,-82.8291478657789 -204,5.0,6.0,-3.590210423980992,11.02611441072814 -204,5.0,7.0,-6.289308176100628,22.0125786163522 -204,5.0,8.0,0.0,4.915840805411357 -204,5.0,9.0,0.0,1.8561002591115965 -204,5.0,27.0,-4.362844058012917,15.463571542897856 -204,6.0,4.0,-2.954020035961983,7.449267916773697 -204,6.0,5.0,-3.590210423980992,11.02611441072814 -204,6.0,6.0,6.544230459942975,-18.45668232750184 -204,7.0,5.0,-6.289308176100628,22.0125786163522 -204,7.0,7.0,7.733287237496075,-26.527493274828448 -204,7.0,27.0,-1.4439790613954469,4.540814658476248 -204,8.0,5.0,0.0,4.915840805411357 -204,8.0,8.0,0.0,-9.615384615384617 -204,8.0,10.0,0.0,4.807692307692308 -204,9.0,5.0,0.0,1.8561002591115965 -204,9.0,9.0,13.462042814524237,-32.29285157661331 -204,9.0,16.0,-3.956039125715353,10.317447719844054 -204,9.0,19.0,-1.7848303152666305,3.98535828943083 -204,9.0,20.0,-5.101853820159654,10.98071411292983 -204,9.0,21.0,-2.619319553382597,5.400770303329455 -204,10.0,8.0,0.0,4.807692307692308 -204,10.0,10.0,0.0,-4.807692307692308 -204,11.0,3.0,0.0,4.191255364806866 -204,11.0,11.0,6.573961583776156,-24.424167659260668 -204,11.0,12.0,0.0,7.142857142857143 -204,11.0,13.0,-1.5265676088395577,3.1734252729654173 -204,11.0,14.0,-3.0953961826564296,6.097275864326261 -204,11.0,15.0,-1.9519977922801688,4.104359379111847 -204,12.0,11.0,0.0,7.142857142857143 -204,12.0,12.0,0.0,-7.142857142857143 -204,13.0,11.0,-1.5265676088395577,3.1734252729654173 -204,13.0,13.0,4.01751987283902,-5.424299332335067 -204,13.0,14.0,-2.4909522639994623,2.250874059369649 -204,14.0,11.0,-3.0953961826564296,6.097275864326261 -204,14.0,13.0,-2.4909522639994623,2.250874059369649 -204,14.0,14.0,9.365498545964757,-16.01163373210796 -204,14.0,17.0,-1.8108011504072024,3.687418931630696 -204,14.0,22.0,-1.9683489489016612,3.976064876781356 -204,15.0,11.0,-1.9519977922801688,4.104359379111847 -204,15.0,15.0,1.9519977922801688,-4.104359379111847 -204,16.0,9.0,-3.956039125715353,10.317447719844054 -204,16.0,16.0,3.956039125715353,-10.317447719844054 -204,17.0,14.0,-1.8108011504072024,3.687418931630696 -204,17.0,17.0,4.886487584415919,-9.906177730909668 -204,17.0,18.0,-3.0756864340087167,6.218758799278971 -204,18.0,17.0,-3.0756864340087167,6.218758799278971 -204,18.0,18.0,3.0756864340087167,-6.218758799278971 -204,19.0,9.0,-1.7848303152666305,3.98535828943083 -204,19.0,19.0,1.7848303152666305,-3.98535828943083 -204,20.0,9.0,-5.101853820159654,10.98071411292983 -204,20.0,20.0,21.876495189895888,-45.10843276170355 -204,20.0,21.0,-16.774641369736234,34.127718648773715 -204,21.0,9.0,-2.619319553382597,5.400770303329455 -204,21.0,20.0,-16.774641369736234,34.127718648773715 -204,21.0,21.0,21.93449907537439,-43.48289181517921 -204,21.0,23.0,-2.5405381522555563,3.95440286307604 -204,22.0,14.0,-1.9683489489016612,3.976064876781356 -204,22.0,22.0,3.429754555384988,-6.965303617315433 -204,22.0,23.0,-1.4614056064833263,2.989238740534077 -204,23.0,21.0,-2.5405381522555563,3.95440286307604 -204,23.0,22.0,-1.4614056064833263,2.989238740534077 -204,23.0,23.0,5.311836702613133,-9.188263657315172 -204,23.0,24.0,-1.3098929438742493,2.287622053705056 -204,24.0,23.0,-1.3098929438742493,2.287622053705056 -204,24.0,24.0,4.495715080321987,-7.864978761969621 -204,24.0,25.0,-1.2165301194494855,1.8171440463475024 -204,24.0,26.0,-1.9692920169982515,3.760212661917064 -204,25.0,24.0,-1.2165301194494855,1.8171440463475024 -204,25.0,25.0,1.2165301194494855,-1.8171440463475024 -204,26.0,24.0,-1.9692920169982515,3.760212661917064 -204,26.0,26.0,3.652281470778589,-9.46044252232512 -204,26.0,27.0,0.0,2.608731947574922 -204,26.0,28.0,-0.99553355095268,1.881005840357816 -204,26.0,29.0,-0.6874559028276572,1.293971494797717 -204,27.0,5.0,-4.362844058012917,15.463571542897856 -204,27.0,7.0,-1.4439790613954469,4.540814658476248 -204,27.0,26.0,0.0,2.608731947574922 -204,27.0,27.0,5.806823119408364,-22.67145722159613 -204,28.0,26.0,-0.99553355095268,1.881005840357816 -204,28.0,28.0,1.9075867579849564,-3.604364401207048 -204,28.0,29.0,-0.9120532070322764,1.7233585608492326 -204,29.0,26.0,-0.6874559028276572,1.293971494797717 -204,29.0,28.0,-0.9120532070322764,1.7233585608492326 -204,29.0,29.0,1.5995091098599337,-3.0173300556469496 -205,0.0,0.0,6.765516048652632,-21.23160167089863 -205,0.0,1.0,-5.224646179885656,15.646726840803398 -205,0.0,2.0,-1.5408698687669766,5.631674830095234 -205,1.0,0.0,-5.224646179885656,15.646726840803398 -205,1.0,1.0,9.75228216552403,-30.648662892676068 -205,1.0,3.0,-1.7055303166990268,5.1973792282565086 -205,1.0,4.0,-1.1359607881738778,4.772479328281356 -205,1.0,5.0,-1.6861448807654689,5.116477495334806 -205,2.0,0.0,-1.5408698687669766,5.631674830095234 -205,2.0,2.0,9.736318911079088,-29.13794745915803 -205,2.0,3.0,-8.19544904231211,23.5308726290628 -205,3.0,1.0,-1.7055303166990268,5.1973792282565086 -205,3.0,2.0,-8.19544904231211,23.5308726290628 -205,3.0,3.0,16.314103089185693,-55.509410535254254 -205,3.0,5.0,-6.413123730174556,22.31120356548123 -205,3.0,11.0,0.0,4.191255364806866 -205,4.0,1.0,-1.1359607881738778,4.772479328281356 -205,4.0,4.0,4.089980824135861,-12.190647245055052 -205,4.0,6.0,-2.954020035961983,7.449267916773697 -205,5.0,1.0,-1.6861448807654689,5.116477495334806 -205,5.0,3.0,-6.413123730174556,22.31120356548123 -205,5.0,5.0,22.341631269034565,-82.8291478657789 -205,5.0,6.0,-3.590210423980992,11.02611441072814 -205,5.0,7.0,-6.289308176100628,22.0125786163522 -205,5.0,8.0,0.0,4.915840805411357 -205,5.0,9.0,0.0,1.8561002591115965 -205,5.0,27.0,-4.362844058012917,15.463571542897856 -205,6.0,4.0,-2.954020035961983,7.449267916773697 -205,6.0,5.0,-3.590210423980992,11.02611441072814 -205,6.0,6.0,6.544230459942975,-18.45668232750184 -205,7.0,5.0,-6.289308176100628,22.0125786163522 -205,7.0,7.0,7.733287237496075,-26.527493274828448 -205,7.0,27.0,-1.4439790613954469,4.540814658476248 -205,8.0,5.0,0.0,4.915840805411357 -205,8.0,8.0,0.0,-18.706293706293707 -205,8.0,9.0,0.0,9.090909090909092 -205,8.0,10.0,0.0,4.807692307692308 -205,9.0,5.0,0.0,1.8561002591115965 -205,9.0,8.0,0.0,9.090909090909092 -205,9.0,9.0,13.462042814524237,-41.3837606675224 -205,9.0,16.0,-3.956039125715353,10.317447719844054 -205,9.0,19.0,-1.7848303152666305,3.98535828943083 -205,9.0,20.0,-5.101853820159654,10.98071411292983 -205,9.0,21.0,-2.619319553382597,5.400770303329455 -205,10.0,8.0,0.0,4.807692307692308 -205,10.0,10.0,0.0,-4.807692307692308 -205,11.0,3.0,0.0,4.191255364806866 -205,11.0,11.0,6.573961583776156,-24.424167659260668 -205,11.0,12.0,0.0,7.142857142857143 -205,11.0,13.0,-1.5265676088395577,3.1734252729654173 -205,11.0,14.0,-3.0953961826564296,6.097275864326261 -205,11.0,15.0,-1.9519977922801688,4.104359379111847 -205,12.0,11.0,0.0,7.142857142857143 -205,12.0,12.0,0.0,-7.142857142857143 -205,13.0,11.0,-1.5265676088395577,3.1734252729654173 -205,13.0,13.0,4.01751987283902,-5.424299332335067 -205,13.0,14.0,-2.4909522639994623,2.250874059369649 -205,14.0,11.0,-3.0953961826564296,6.097275864326261 -205,14.0,13.0,-2.4909522639994623,2.250874059369649 -205,14.0,14.0,9.365498545964757,-16.01163373210796 -205,14.0,17.0,-1.8108011504072024,3.687418931630696 -205,14.0,22.0,-1.9683489489016612,3.976064876781356 -205,15.0,11.0,-1.9519977922801688,4.104359379111847 -205,15.0,15.0,3.271064728633931,-8.94513365126506 -205,15.0,16.0,-1.3190669363537617,4.8407742721532125 -205,16.0,9.0,-3.956039125715353,10.317447719844054 -205,16.0,15.0,-1.3190669363537617,4.8407742721532125 -205,16.0,16.0,5.275106062069114,-15.158221991997266 -205,17.0,14.0,-1.8108011504072024,3.687418931630696 -205,17.0,17.0,4.886487584415919,-9.906177730909668 -205,17.0,18.0,-3.0756864340087167,6.218758799278971 -205,18.0,17.0,-3.0756864340087167,6.218758799278971 -205,18.0,18.0,8.958039375185187,-17.98346468163191 -205,18.0,19.0,-5.88235294117647,11.76470588235294 -205,19.0,9.0,-1.7848303152666305,3.98535828943083 -205,19.0,18.0,-5.88235294117647,11.76470588235294 -205,19.0,19.0,7.6671832564431,-15.75006417178377 -205,20.0,9.0,-5.101853820159654,10.98071411292983 -205,20.0,20.0,21.876495189895888,-45.10843276170355 -205,20.0,21.0,-16.774641369736234,34.127718648773715 -205,21.0,9.0,-2.619319553382597,5.400770303329455 -205,21.0,20.0,-16.774641369736234,34.127718648773715 -205,21.0,21.0,21.93449907537439,-43.48289181517921 -205,21.0,23.0,-2.5405381522555563,3.95440286307604 -205,22.0,14.0,-1.9683489489016612,3.976064876781356 -205,22.0,22.0,3.429754555384988,-6.965303617315433 -205,22.0,23.0,-1.4614056064833263,2.989238740534077 -205,23.0,21.0,-2.5405381522555563,3.95440286307604 -205,23.0,22.0,-1.4614056064833263,2.989238740534077 -205,23.0,23.0,5.311836702613133,-9.188263657315172 -205,23.0,24.0,-1.3098929438742493,2.287622053705056 -205,24.0,23.0,-1.3098929438742493,2.287622053705056 -205,24.0,24.0,4.495715080321987,-7.864978761969621 -205,24.0,25.0,-1.2165301194494855,1.8171440463475024 -205,24.0,26.0,-1.9692920169982515,3.760212661917064 -205,25.0,24.0,-1.2165301194494855,1.8171440463475024 -205,25.0,25.0,1.2165301194494855,-1.8171440463475024 -205,26.0,24.0,-1.9692920169982515,3.760212661917064 -205,26.0,26.0,3.652281470778589,-9.46044252232512 -205,26.0,27.0,0.0,2.608731947574922 -205,26.0,28.0,-0.99553355095268,1.881005840357816 -205,26.0,29.0,-0.6874559028276572,1.293971494797717 -205,27.0,5.0,-4.362844058012917,15.463571542897856 -205,27.0,7.0,-1.4439790613954469,4.540814658476248 -205,27.0,26.0,0.0,2.608731947574922 -205,27.0,27.0,5.806823119408364,-22.67145722159613 -205,28.0,26.0,-0.99553355095268,1.881005840357816 -205,28.0,28.0,0.99553355095268,-1.881005840357816 -205,29.0,26.0,-0.6874559028276572,1.293971494797717 -205,29.0,29.0,0.6874559028276572,-1.293971494797717 -206,0.0,0.0,6.765516048652632,-21.23160167089863 -206,0.0,1.0,-5.224646179885656,15.646726840803398 -206,0.0,2.0,-1.5408698687669766,5.631674830095234 -206,1.0,0.0,-5.224646179885656,15.646726840803398 -206,1.0,1.0,9.75228216552403,-30.648662892676068 -206,1.0,3.0,-1.7055303166990268,5.1973792282565086 -206,1.0,4.0,-1.1359607881738778,4.772479328281356 -206,1.0,5.0,-1.6861448807654689,5.116477495334806 -206,2.0,0.0,-1.5408698687669766,5.631674830095234 -206,2.0,2.0,9.736318911079088,-29.13794745915803 -206,2.0,3.0,-8.19544904231211,23.5308726290628 -206,3.0,1.0,-1.7055303166990268,5.1973792282565086 -206,3.0,2.0,-8.19544904231211,23.5308726290628 -206,3.0,3.0,16.314103089185693,-55.509410535254254 -206,3.0,5.0,-6.413123730174556,22.31120356548123 -206,3.0,11.0,0.0,4.191255364806866 -206,4.0,1.0,-1.1359607881738778,4.772479328281356 -206,4.0,4.0,4.089980824135861,-12.190647245055052 -206,4.0,6.0,-2.954020035961983,7.449267916773697 -206,5.0,1.0,-1.6861448807654689,5.116477495334806 -206,5.0,3.0,-6.413123730174556,22.31120356548123 -206,5.0,5.0,22.341631269034565,-82.8291478657789 -206,5.0,6.0,-3.590210423980992,11.02611441072814 -206,5.0,7.0,-6.289308176100628,22.0125786163522 -206,5.0,8.0,0.0,4.915840805411357 -206,5.0,9.0,0.0,1.8561002591115965 -206,5.0,27.0,-4.362844058012917,15.463571542897856 -206,6.0,4.0,-2.954020035961983,7.449267916773697 -206,6.0,5.0,-3.590210423980992,11.02611441072814 -206,6.0,6.0,6.544230459942975,-18.45668232750184 -206,7.0,5.0,-6.289308176100628,22.0125786163522 -206,7.0,7.0,7.733287237496075,-26.527493274828448 -206,7.0,27.0,-1.4439790613954469,4.540814658476248 -206,8.0,5.0,0.0,4.915840805411357 -206,8.0,8.0,0.0,-18.706293706293707 -206,8.0,9.0,0.0,9.090909090909092 -206,8.0,10.0,0.0,4.807692307692308 -206,9.0,5.0,0.0,1.8561002591115965 -206,9.0,8.0,0.0,9.090909090909092 -206,9.0,9.0,13.462042814524237,-41.3837606675224 -206,9.0,16.0,-3.956039125715353,10.317447719844054 -206,9.0,19.0,-1.7848303152666305,3.98535828943083 -206,9.0,20.0,-5.101853820159654,10.98071411292983 -206,9.0,21.0,-2.619319553382597,5.400770303329455 -206,10.0,8.0,0.0,4.807692307692308 -206,10.0,10.0,0.0,-4.807692307692308 -206,11.0,3.0,0.0,4.191255364806866 -206,11.0,11.0,6.573961583776156,-24.424167659260668 -206,11.0,12.0,0.0,7.142857142857143 -206,11.0,13.0,-1.5265676088395577,3.1734252729654173 -206,11.0,14.0,-3.0953961826564296,6.097275864326261 -206,11.0,15.0,-1.9519977922801688,4.104359379111847 -206,12.0,11.0,0.0,7.142857142857143 -206,12.0,12.0,0.0,-7.142857142857143 -206,13.0,11.0,-1.5265676088395577,3.1734252729654173 -206,13.0,13.0,4.01751987283902,-5.424299332335067 -206,13.0,14.0,-2.4909522639994623,2.250874059369649 -206,14.0,11.0,-3.0953961826564296,6.097275864326261 -206,14.0,13.0,-2.4909522639994623,2.250874059369649 -206,14.0,14.0,9.365498545964757,-16.01163373210796 -206,14.0,17.0,-1.8108011504072024,3.687418931630696 -206,14.0,22.0,-1.9683489489016612,3.976064876781356 -206,15.0,11.0,-1.9519977922801688,4.104359379111847 -206,15.0,15.0,3.271064728633931,-8.94513365126506 -206,15.0,16.0,-1.3190669363537617,4.8407742721532125 -206,16.0,9.0,-3.956039125715353,10.317447719844054 -206,16.0,15.0,-1.3190669363537617,4.8407742721532125 -206,16.0,16.0,5.275106062069114,-15.158221991997266 -206,17.0,14.0,-1.8108011504072024,3.687418931630696 -206,17.0,17.0,4.886487584415919,-9.906177730909668 -206,17.0,18.0,-3.0756864340087167,6.218758799278971 -206,18.0,17.0,-3.0756864340087167,6.218758799278971 -206,18.0,18.0,8.958039375185187,-17.98346468163191 -206,18.0,19.0,-5.88235294117647,11.76470588235294 -206,19.0,9.0,-1.7848303152666305,3.98535828943083 -206,19.0,18.0,-5.88235294117647,11.76470588235294 -206,19.0,19.0,7.6671832564431,-15.75006417178377 -206,20.0,9.0,-5.101853820159654,10.98071411292983 -206,20.0,20.0,21.876495189895888,-45.10843276170355 -206,20.0,21.0,-16.774641369736234,34.127718648773715 -206,21.0,9.0,-2.619319553382597,5.400770303329455 -206,21.0,20.0,-16.774641369736234,34.127718648773715 -206,21.0,21.0,21.93449907537439,-43.48289181517921 -206,21.0,23.0,-2.5405381522555563,3.95440286307604 -206,22.0,14.0,-1.9683489489016612,3.976064876781356 -206,22.0,22.0,3.429754555384988,-6.965303617315433 -206,22.0,23.0,-1.4614056064833263,2.989238740534077 -206,23.0,21.0,-2.5405381522555563,3.95440286307604 -206,23.0,22.0,-1.4614056064833263,2.989238740534077 -206,23.0,23.0,5.311836702613133,-9.188263657315172 -206,23.0,24.0,-1.3098929438742493,2.287622053705056 -206,24.0,23.0,-1.3098929438742493,2.287622053705056 -206,24.0,24.0,4.495715080321987,-7.864978761969621 -206,24.0,25.0,-1.2165301194494855,1.8171440463475024 -206,24.0,26.0,-1.9692920169982515,3.760212661917064 -206,25.0,24.0,-1.2165301194494855,1.8171440463475024 -206,25.0,25.0,1.2165301194494855,-1.8171440463475024 -206,26.0,24.0,-1.9692920169982515,3.760212661917064 -206,26.0,26.0,3.652281470778589,-9.46044252232512 -206,26.0,27.0,0.0,2.608731947574922 -206,26.0,28.0,-0.99553355095268,1.881005840357816 -206,26.0,29.0,-0.6874559028276572,1.293971494797717 -206,27.0,5.0,-4.362844058012917,15.463571542897856 -206,27.0,7.0,-1.4439790613954469,4.540814658476248 -206,27.0,26.0,0.0,2.608731947574922 -206,27.0,27.0,5.806823119408364,-22.67145722159613 -206,28.0,26.0,-0.99553355095268,1.881005840357816 -206,28.0,28.0,1.9075867579849564,-3.604364401207048 -206,28.0,29.0,-0.9120532070322764,1.7233585608492326 -206,29.0,26.0,-0.6874559028276572,1.293971494797717 -206,29.0,28.0,-0.9120532070322764,1.7233585608492326 -206,29.0,29.0,1.5995091098599337,-3.0173300556469496 -207,0.0,0.0,6.765516048652632,-21.23160167089863 -207,0.0,1.0,-5.224646179885656,15.646726840803398 -207,0.0,2.0,-1.5408698687669766,5.631674830095234 -207,1.0,0.0,-5.224646179885656,15.646726840803398 -207,1.0,1.0,8.066137284758561,-25.55088539734126 -207,1.0,3.0,-1.7055303166990268,5.1973792282565086 -207,1.0,4.0,-1.1359607881738778,4.772479328281356 -207,2.0,0.0,-1.5408698687669766,5.631674830095234 -207,2.0,2.0,9.736318911079088,-29.13794745915803 -207,2.0,3.0,-8.19544904231211,23.5308726290628 -207,3.0,1.0,-1.7055303166990268,5.1973792282565086 -207,3.0,2.0,-8.19544904231211,23.5308726290628 -207,3.0,3.0,16.314103089185693,-55.509410535254254 -207,3.0,5.0,-6.413123730174556,22.31120356548123 -207,3.0,11.0,0.0,4.191255364806866 -207,4.0,1.0,-1.1359607881738778,4.772479328281356 -207,4.0,4.0,4.089980824135861,-12.190647245055052 -207,4.0,6.0,-2.954020035961983,7.449267916773697 -207,5.0,3.0,-6.413123730174556,22.31120356548123 -207,5.0,5.0,20.655486388269097,-77.7313703704441 -207,5.0,6.0,-3.590210423980992,11.02611441072814 -207,5.0,7.0,-6.289308176100628,22.0125786163522 -207,5.0,8.0,0.0,4.915840805411357 -207,5.0,9.0,0.0,1.8561002591115965 -207,5.0,27.0,-4.362844058012917,15.463571542897856 -207,6.0,4.0,-2.954020035961983,7.449267916773697 -207,6.0,5.0,-3.590210423980992,11.02611441072814 -207,6.0,6.0,6.544230459942975,-18.45668232750184 -207,7.0,5.0,-6.289308176100628,22.0125786163522 -207,7.0,7.0,6.289308176100628,-22.0080786163522 -207,8.0,5.0,0.0,4.915840805411357 -207,8.0,8.0,0.0,-18.706293706293707 -207,8.0,9.0,0.0,9.090909090909092 -207,8.0,10.0,0.0,4.807692307692308 -207,9.0,5.0,0.0,1.8561002591115965 -207,9.0,8.0,0.0,9.090909090909092 -207,9.0,9.0,8.36018899436458,-30.40304655459257 -207,9.0,16.0,-3.956039125715353,10.317447719844054 -207,9.0,19.0,-1.7848303152666305,3.98535828943083 -207,9.0,21.0,-2.619319553382597,5.400770303329455 -207,10.0,8.0,0.0,4.807692307692308 -207,10.0,10.0,0.0,-4.807692307692308 -207,11.0,3.0,0.0,4.191255364806866 -207,11.0,11.0,5.047393974936599,-21.25074238629525 -207,11.0,12.0,0.0,7.142857142857143 -207,11.0,14.0,-3.0953961826564296,6.097275864326261 -207,11.0,15.0,-1.9519977922801688,4.104359379111847 -207,12.0,11.0,0.0,7.142857142857143 -207,12.0,12.0,0.0,-7.142857142857143 -207,13.0,13.0,2.4909522639994623,-2.250874059369649 -207,13.0,14.0,-2.4909522639994623,2.250874059369649 -207,14.0,11.0,-3.0953961826564296,6.097275864326261 -207,14.0,13.0,-2.4909522639994623,2.250874059369649 -207,14.0,14.0,9.365498545964757,-16.01163373210796 -207,14.0,17.0,-1.8108011504072024,3.687418931630696 -207,14.0,22.0,-1.9683489489016612,3.976064876781356 -207,15.0,11.0,-1.9519977922801688,4.104359379111847 -207,15.0,15.0,3.271064728633931,-8.94513365126506 -207,15.0,16.0,-1.3190669363537617,4.8407742721532125 -207,16.0,9.0,-3.956039125715353,10.317447719844054 -207,16.0,15.0,-1.3190669363537617,4.8407742721532125 -207,16.0,16.0,5.275106062069114,-15.158221991997266 -207,17.0,14.0,-1.8108011504072024,3.687418931630696 -207,17.0,17.0,4.886487584415919,-9.906177730909668 -207,17.0,18.0,-3.0756864340087167,6.218758799278971 -207,18.0,17.0,-3.0756864340087167,6.218758799278971 -207,18.0,18.0,8.958039375185187,-17.98346468163191 -207,18.0,19.0,-5.88235294117647,11.76470588235294 -207,19.0,9.0,-1.7848303152666305,3.98535828943083 -207,19.0,18.0,-5.88235294117647,11.76470588235294 -207,19.0,19.0,7.6671832564431,-15.75006417178377 -207,20.0,20.0,16.774641369736234,-34.127718648773715 -207,20.0,21.0,-16.774641369736234,34.127718648773715 -207,21.0,9.0,-2.619319553382597,5.400770303329455 -207,21.0,20.0,-16.774641369736234,34.127718648773715 -207,21.0,21.0,21.93449907537439,-43.48289181517921 -207,21.0,23.0,-2.5405381522555563,3.95440286307604 -207,22.0,14.0,-1.9683489489016612,3.976064876781356 -207,22.0,22.0,3.429754555384988,-6.965303617315433 -207,22.0,23.0,-1.4614056064833263,2.989238740534077 -207,23.0,21.0,-2.5405381522555563,3.95440286307604 -207,23.0,22.0,-1.4614056064833263,2.989238740534077 -207,23.0,23.0,5.311836702613133,-9.188263657315172 -207,23.0,24.0,-1.3098929438742493,2.287622053705056 -207,24.0,23.0,-1.3098929438742493,2.287622053705056 -207,24.0,24.0,4.495715080321987,-7.864978761969621 -207,24.0,25.0,-1.2165301194494855,1.8171440463475024 -207,24.0,26.0,-1.9692920169982515,3.760212661917064 -207,25.0,24.0,-1.2165301194494855,1.8171440463475024 -207,25.0,25.0,1.2165301194494855,-1.8171440463475024 -207,26.0,24.0,-1.9692920169982515,3.760212661917064 -207,26.0,26.0,3.652281470778589,-9.46044252232512 -207,26.0,27.0,0.0,2.608731947574922 -207,26.0,28.0,-0.99553355095268,1.881005840357816 -207,26.0,29.0,-0.6874559028276572,1.293971494797717 -207,27.0,5.0,-4.362844058012917,15.463571542897856 -207,27.0,26.0,0.0,2.608731947574922 -207,27.0,27.0,4.362844058012917,-18.15204256311988 -207,28.0,26.0,-0.99553355095268,1.881005840357816 -207,28.0,28.0,0.99553355095268,-1.881005840357816 -207,29.0,26.0,-0.6874559028276572,1.293971494797717 -207,29.0,29.0,0.6874559028276572,-1.293971494797717 -208,0.0,0.0,6.765516048652632,-21.23160167089863 -208,0.0,1.0,-5.224646179885656,15.646726840803398 -208,0.0,2.0,-1.5408698687669766,5.631674830095234 -208,1.0,0.0,-5.224646179885656,15.646726840803398 -208,1.0,1.0,9.75228216552403,-30.648662892676068 -208,1.0,3.0,-1.7055303166990268,5.1973792282565086 -208,1.0,4.0,-1.1359607881738778,4.772479328281356 -208,1.0,5.0,-1.6861448807654689,5.116477495334806 -208,2.0,0.0,-1.5408698687669766,5.631674830095234 -208,2.0,2.0,9.736318911079088,-29.13794745915803 -208,2.0,3.0,-8.19544904231211,23.5308726290628 -208,3.0,1.0,-1.7055303166990268,5.1973792282565086 -208,3.0,2.0,-8.19544904231211,23.5308726290628 -208,3.0,3.0,16.314103089185693,-55.509410535254254 -208,3.0,5.0,-6.413123730174556,22.31120356548123 -208,3.0,11.0,0.0,4.191255364806866 -208,4.0,1.0,-1.1359607881738778,4.772479328281356 -208,4.0,4.0,4.089980824135861,-12.190647245055052 -208,4.0,6.0,-2.954020035961983,7.449267916773697 -208,5.0,1.0,-1.6861448807654689,5.116477495334806 -208,5.0,3.0,-6.413123730174556,22.31120356548123 -208,5.0,5.0,22.341631269034565,-82.8291478657789 -208,5.0,6.0,-3.590210423980992,11.02611441072814 -208,5.0,7.0,-6.289308176100628,22.0125786163522 -208,5.0,8.0,0.0,4.915840805411357 -208,5.0,9.0,0.0,1.8561002591115965 -208,5.0,27.0,-4.362844058012917,15.463571542897856 -208,6.0,4.0,-2.954020035961983,7.449267916773697 -208,6.0,5.0,-3.590210423980992,11.02611441072814 -208,6.0,6.0,6.544230459942975,-18.45668232750184 -208,7.0,5.0,-6.289308176100628,22.0125786163522 -208,7.0,7.0,7.733287237496075,-26.527493274828448 -208,7.0,27.0,-1.4439790613954469,4.540814658476248 -208,8.0,5.0,0.0,4.915840805411357 -208,8.0,8.0,0.0,-18.706293706293707 -208,8.0,9.0,0.0,9.090909090909092 -208,8.0,10.0,0.0,4.807692307692308 -208,9.0,5.0,0.0,1.8561002591115965 -208,9.0,8.0,0.0,9.090909090909092 -208,9.0,9.0,13.462042814524237,-41.3837606675224 -208,9.0,16.0,-3.956039125715353,10.317447719844054 -208,9.0,19.0,-1.7848303152666305,3.98535828943083 -208,9.0,20.0,-5.101853820159654,10.98071411292983 -208,9.0,21.0,-2.619319553382597,5.400770303329455 -208,10.0,8.0,0.0,4.807692307692308 -208,10.0,10.0,0.0,-4.807692307692308 -208,11.0,3.0,0.0,4.191255364806866 -208,11.0,11.0,6.573961583776156,-24.424167659260668 -208,11.0,12.0,0.0,7.142857142857143 -208,11.0,13.0,-1.5265676088395577,3.1734252729654173 -208,11.0,14.0,-3.0953961826564296,6.097275864326261 -208,11.0,15.0,-1.9519977922801688,4.104359379111847 -208,12.0,11.0,0.0,7.142857142857143 -208,12.0,12.0,0.0,-7.142857142857143 -208,13.0,11.0,-1.5265676088395577,3.1734252729654173 -208,13.0,13.0,4.01751987283902,-5.424299332335067 -208,13.0,14.0,-2.4909522639994623,2.250874059369649 -208,14.0,11.0,-3.0953961826564296,6.097275864326261 -208,14.0,13.0,-2.4909522639994623,2.250874059369649 -208,14.0,14.0,9.365498545964757,-16.01163373210796 -208,14.0,17.0,-1.8108011504072024,3.687418931630696 -208,14.0,22.0,-1.9683489489016612,3.976064876781356 -208,15.0,11.0,-1.9519977922801688,4.104359379111847 -208,15.0,15.0,3.271064728633931,-8.94513365126506 -208,15.0,16.0,-1.3190669363537617,4.8407742721532125 -208,16.0,9.0,-3.956039125715353,10.317447719844054 -208,16.0,15.0,-1.3190669363537617,4.8407742721532125 -208,16.0,16.0,5.275106062069114,-15.158221991997266 -208,17.0,14.0,-1.8108011504072024,3.687418931630696 -208,17.0,17.0,4.886487584415919,-9.906177730909668 -208,17.0,18.0,-3.0756864340087167,6.218758799278971 -208,18.0,17.0,-3.0756864340087167,6.218758799278971 -208,18.0,18.0,8.958039375185187,-17.98346468163191 -208,18.0,19.0,-5.88235294117647,11.76470588235294 -208,19.0,9.0,-1.7848303152666305,3.98535828943083 -208,19.0,18.0,-5.88235294117647,11.76470588235294 -208,19.0,19.0,7.6671832564431,-15.75006417178377 -208,20.0,9.0,-5.101853820159654,10.98071411292983 -208,20.0,20.0,21.876495189895888,-45.10843276170355 -208,20.0,21.0,-16.774641369736234,34.127718648773715 -208,21.0,9.0,-2.619319553382597,5.400770303329455 -208,21.0,20.0,-16.774641369736234,34.127718648773715 -208,21.0,21.0,21.93449907537439,-43.48289181517921 -208,21.0,23.0,-2.5405381522555563,3.95440286307604 -208,22.0,14.0,-1.9683489489016612,3.976064876781356 -208,22.0,22.0,3.429754555384988,-6.965303617315433 -208,22.0,23.0,-1.4614056064833263,2.989238740534077 -208,23.0,21.0,-2.5405381522555563,3.95440286307604 -208,23.0,22.0,-1.4614056064833263,2.989238740534077 -208,23.0,23.0,5.311836702613133,-9.188263657315172 -208,23.0,24.0,-1.3098929438742493,2.287622053705056 -208,24.0,23.0,-1.3098929438742493,2.287622053705056 -208,24.0,24.0,4.495715080321987,-7.864978761969621 -208,24.0,25.0,-1.2165301194494855,1.8171440463475024 -208,24.0,26.0,-1.9692920169982515,3.760212661917064 -208,25.0,24.0,-1.2165301194494855,1.8171440463475024 -208,25.0,25.0,1.2165301194494855,-1.8171440463475024 -208,26.0,24.0,-1.9692920169982515,3.760212661917064 -208,26.0,26.0,3.652281470778589,-9.46044252232512 -208,26.0,27.0,0.0,2.608731947574922 -208,26.0,28.0,-0.99553355095268,1.881005840357816 -208,26.0,29.0,-0.6874559028276572,1.293971494797717 -208,27.0,5.0,-4.362844058012917,15.463571542897856 -208,27.0,7.0,-1.4439790613954469,4.540814658476248 -208,27.0,26.0,0.0,2.608731947574922 -208,27.0,27.0,5.806823119408364,-22.67145722159613 -208,28.0,26.0,-0.99553355095268,1.881005840357816 -208,28.0,28.0,1.9075867579849564,-3.604364401207048 -208,28.0,29.0,-0.9120532070322764,1.7233585608492326 -208,29.0,26.0,-0.6874559028276572,1.293971494797717 -208,29.0,28.0,-0.9120532070322764,1.7233585608492326 -208,29.0,29.0,1.5995091098599337,-3.0173300556469496 -209,0.0,0.0,5.224646179885656,-15.620326840803395 -209,0.0,1.0,-5.224646179885656,15.646726840803398 -209,1.0,0.0,-5.224646179885656,15.646726840803398 -209,1.0,1.0,9.75228216552403,-30.648662892676068 -209,1.0,3.0,-1.7055303166990268,5.1973792282565086 -209,1.0,4.0,-1.1359607881738778,4.772479328281356 -209,1.0,5.0,-1.6861448807654689,5.116477495334806 -209,2.0,2.0,8.19544904231211,-23.5266726290628 -209,2.0,3.0,-8.19544904231211,23.5308726290628 -209,3.0,1.0,-1.7055303166990268,5.1973792282565086 -209,3.0,2.0,-8.19544904231211,23.5308726290628 -209,3.0,3.0,16.314103089185693,-51.01235542280054 -209,3.0,5.0,-6.413123730174556,22.31120356548123 -209,4.0,1.0,-1.1359607881738778,4.772479328281356 -209,4.0,4.0,4.089980824135861,-12.190647245055052 -209,4.0,6.0,-2.954020035961983,7.449267916773697 -209,5.0,1.0,-1.6861448807654689,5.116477495334806 -209,5.0,3.0,-6.413123730174556,22.31120356548123 -209,5.0,5.0,22.341631269034565,-77.80272577435625 -209,5.0,6.0,-3.590210423980992,11.02611441072814 -209,5.0,7.0,-6.289308176100628,22.0125786163522 -209,5.0,9.0,0.0,1.8561002591115965 -209,5.0,27.0,-4.362844058012917,15.463571542897856 -209,6.0,4.0,-2.954020035961983,7.449267916773697 -209,6.0,5.0,-3.590210423980992,11.02611441072814 -209,6.0,6.0,6.544230459942975,-18.45668232750184 -209,7.0,5.0,-6.289308176100628,22.0125786163522 -209,7.0,7.0,7.733287237496075,-26.527493274828448 -209,7.0,27.0,-1.4439790613954469,4.540814658476248 -209,8.0,8.0,0.0,-13.8986013986014 -209,8.0,9.0,0.0,9.090909090909092 -209,8.0,10.0,0.0,4.807692307692308 -209,9.0,5.0,0.0,1.8561002591115965 -209,9.0,8.0,0.0,9.090909090909092 -209,9.0,9.0,13.462042814524237,-41.3837606675224 -209,9.0,16.0,-3.956039125715353,10.317447719844054 -209,9.0,19.0,-1.7848303152666305,3.98535828943083 -209,9.0,20.0,-5.101853820159654,10.98071411292983 -209,9.0,21.0,-2.619319553382597,5.400770303329455 -209,10.0,8.0,0.0,4.807692307692308 -209,10.0,10.0,0.0,-4.807692307692308 -209,11.0,11.0,6.573961583776156,-20.517917659260668 -209,11.0,12.0,0.0,7.142857142857143 -209,11.0,13.0,-1.5265676088395577,3.1734252729654173 -209,11.0,14.0,-3.0953961826564296,6.097275864326261 -209,11.0,15.0,-1.9519977922801688,4.104359379111847 -209,12.0,11.0,0.0,7.142857142857143 -209,12.0,12.0,0.0,-7.142857142857143 -209,13.0,11.0,-1.5265676088395577,3.1734252729654173 -209,13.0,13.0,4.01751987283902,-5.424299332335067 -209,13.0,14.0,-2.4909522639994623,2.250874059369649 -209,14.0,11.0,-3.0953961826564296,6.097275864326261 -209,14.0,13.0,-2.4909522639994623,2.250874059369649 -209,14.0,14.0,7.397149597063095,-12.035568855326606 -209,14.0,17.0,-1.8108011504072024,3.687418931630696 -209,15.0,11.0,-1.9519977922801688,4.104359379111847 -209,15.0,15.0,3.271064728633931,-8.94513365126506 -209,15.0,16.0,-1.3190669363537617,4.8407742721532125 -209,16.0,9.0,-3.956039125715353,10.317447719844054 -209,16.0,15.0,-1.3190669363537617,4.8407742721532125 -209,16.0,16.0,5.275106062069114,-15.158221991997266 -209,17.0,14.0,-1.8108011504072024,3.687418931630696 -209,17.0,17.0,4.886487584415919,-9.906177730909668 -209,17.0,18.0,-3.0756864340087167,6.218758799278971 -209,18.0,17.0,-3.0756864340087167,6.218758799278971 -209,18.0,18.0,8.958039375185187,-17.98346468163191 -209,18.0,19.0,-5.88235294117647,11.76470588235294 -209,19.0,9.0,-1.7848303152666305,3.98535828943083 -209,19.0,18.0,-5.88235294117647,11.76470588235294 -209,19.0,19.0,7.6671832564431,-15.75006417178377 -209,20.0,9.0,-5.101853820159654,10.98071411292983 -209,20.0,20.0,21.876495189895888,-45.10843276170355 -209,20.0,21.0,-16.774641369736234,34.127718648773715 -209,21.0,9.0,-2.619319553382597,5.400770303329455 -209,21.0,20.0,-16.774641369736234,34.127718648773715 -209,21.0,21.0,21.93449907537439,-43.48289181517921 -209,21.0,23.0,-2.5405381522555563,3.95440286307604 -209,22.0,22.0,1.4614056064833263,-2.989238740534077 -209,22.0,23.0,-1.4614056064833263,2.989238740534077 -209,23.0,21.0,-2.5405381522555563,3.95440286307604 -209,23.0,22.0,-1.4614056064833263,2.989238740534077 -209,23.0,23.0,5.311836702613133,-9.188263657315172 -209,23.0,24.0,-1.3098929438742493,2.287622053705056 -209,24.0,23.0,-1.3098929438742493,2.287622053705056 -209,24.0,24.0,4.495715080321987,-7.864978761969621 -209,24.0,25.0,-1.2165301194494855,1.8171440463475024 -209,24.0,26.0,-1.9692920169982515,3.760212661917064 -209,25.0,24.0,-1.2165301194494855,1.8171440463475024 -209,25.0,25.0,1.2165301194494855,-1.8171440463475024 -209,26.0,24.0,-1.9692920169982515,3.760212661917064 -209,26.0,26.0,3.652281470778589,-9.46044252232512 -209,26.0,27.0,0.0,2.608731947574922 -209,26.0,28.0,-0.99553355095268,1.881005840357816 -209,26.0,29.0,-0.6874559028276572,1.293971494797717 -209,27.0,5.0,-4.362844058012917,15.463571542897856 -209,27.0,7.0,-1.4439790613954469,4.540814658476248 -209,27.0,26.0,0.0,2.608731947574922 -209,27.0,27.0,5.806823119408364,-22.67145722159613 -209,28.0,26.0,-0.99553355095268,1.881005840357816 -209,28.0,28.0,1.9075867579849564,-3.604364401207048 -209,28.0,29.0,-0.9120532070322764,1.7233585608492326 -209,29.0,26.0,-0.6874559028276572,1.293971494797717 -209,29.0,28.0,-0.9120532070322764,1.7233585608492326 -209,29.0,29.0,1.5995091098599337,-3.0173300556469496 -210,0.0,0.0,6.765516048652632,-21.23160167089863 -210,0.0,1.0,-5.224646179885656,15.646726840803398 -210,0.0,2.0,-1.5408698687669766,5.631674830095234 -210,1.0,0.0,-5.224646179885656,15.646726840803398 -210,1.0,1.0,8.046751848825002,-25.46968366441956 -210,1.0,4.0,-1.1359607881738778,4.772479328281356 -210,1.0,5.0,-1.6861448807654689,5.116477495334806 -210,2.0,0.0,-1.5408698687669766,5.631674830095234 -210,2.0,2.0,9.736318911079088,-29.13794745915803 -210,2.0,3.0,-8.19544904231211,23.5308726290628 -210,3.0,2.0,-8.19544904231211,23.5308726290628 -210,3.0,3.0,14.608572772486664,-50.33043130699775 -210,3.0,5.0,-6.413123730174556,22.31120356548123 -210,3.0,11.0,0.0,4.191255364806866 -210,4.0,1.0,-1.1359607881738778,4.772479328281356 -210,4.0,4.0,4.089980824135861,-12.190647245055052 -210,4.0,6.0,-2.954020035961983,7.449267916773697 -210,5.0,1.0,-1.6861448807654689,5.116477495334806 -210,5.0,3.0,-6.413123730174556,22.31120356548123 -210,5.0,5.0,22.341631269034565,-82.8291478657789 -210,5.0,6.0,-3.590210423980992,11.02611441072814 -210,5.0,7.0,-6.289308176100628,22.0125786163522 -210,5.0,8.0,0.0,4.915840805411357 -210,5.0,9.0,0.0,1.8561002591115965 -210,5.0,27.0,-4.362844058012917,15.463571542897856 -210,6.0,4.0,-2.954020035961983,7.449267916773697 -210,6.0,5.0,-3.590210423980992,11.02611441072814 -210,6.0,6.0,6.544230459942975,-18.45668232750184 -210,7.0,5.0,-6.289308176100628,22.0125786163522 -210,7.0,7.0,7.733287237496075,-26.527493274828448 -210,7.0,27.0,-1.4439790613954469,4.540814658476248 -210,8.0,5.0,0.0,4.915840805411357 -210,8.0,8.0,0.0,-18.706293706293707 -210,8.0,9.0,0.0,9.090909090909092 -210,8.0,10.0,0.0,4.807692307692308 -210,9.0,5.0,0.0,1.8561002591115965 -210,9.0,8.0,0.0,9.090909090909092 -210,9.0,9.0,13.462042814524237,-41.3837606675224 -210,9.0,16.0,-3.956039125715353,10.317447719844054 -210,9.0,19.0,-1.7848303152666305,3.98535828943083 -210,9.0,20.0,-5.101853820159654,10.98071411292983 -210,9.0,21.0,-2.619319553382597,5.400770303329455 -210,10.0,8.0,0.0,4.807692307692308 -210,10.0,10.0,0.0,-4.807692307692308 -210,11.0,3.0,0.0,4.191255364806866 -210,11.0,11.0,6.573961583776156,-24.424167659260668 -210,11.0,12.0,0.0,7.142857142857143 -210,11.0,13.0,-1.5265676088395577,3.1734252729654173 -210,11.0,14.0,-3.0953961826564296,6.097275864326261 -210,11.0,15.0,-1.9519977922801688,4.104359379111847 -210,12.0,11.0,0.0,7.142857142857143 -210,12.0,12.0,0.0,-7.142857142857143 -210,13.0,11.0,-1.5265676088395577,3.1734252729654173 -210,13.0,13.0,4.01751987283902,-5.424299332335067 -210,13.0,14.0,-2.4909522639994623,2.250874059369649 -210,14.0,11.0,-3.0953961826564296,6.097275864326261 -210,14.0,13.0,-2.4909522639994623,2.250874059369649 -210,14.0,14.0,9.365498545964757,-16.01163373210796 -210,14.0,17.0,-1.8108011504072024,3.687418931630696 -210,14.0,22.0,-1.9683489489016612,3.976064876781356 -210,15.0,11.0,-1.9519977922801688,4.104359379111847 -210,15.0,15.0,3.271064728633931,-8.94513365126506 -210,15.0,16.0,-1.3190669363537617,4.8407742721532125 -210,16.0,9.0,-3.956039125715353,10.317447719844054 -210,16.0,15.0,-1.3190669363537617,4.8407742721532125 -210,16.0,16.0,5.275106062069114,-15.158221991997266 -210,17.0,14.0,-1.8108011504072024,3.687418931630696 -210,17.0,17.0,4.886487584415919,-9.906177730909668 -210,17.0,18.0,-3.0756864340087167,6.218758799278971 -210,18.0,17.0,-3.0756864340087167,6.218758799278971 -210,18.0,18.0,8.958039375185187,-17.98346468163191 -210,18.0,19.0,-5.88235294117647,11.76470588235294 -210,19.0,9.0,-1.7848303152666305,3.98535828943083 -210,19.0,18.0,-5.88235294117647,11.76470588235294 -210,19.0,19.0,7.6671832564431,-15.75006417178377 -210,20.0,9.0,-5.101853820159654,10.98071411292983 -210,20.0,20.0,21.876495189895888,-45.10843276170355 -210,20.0,21.0,-16.774641369736234,34.127718648773715 -210,21.0,9.0,-2.619319553382597,5.400770303329455 -210,21.0,20.0,-16.774641369736234,34.127718648773715 -210,21.0,21.0,21.93449907537439,-43.48289181517921 -210,21.0,23.0,-2.5405381522555563,3.95440286307604 -210,22.0,14.0,-1.9683489489016612,3.976064876781356 -210,22.0,22.0,3.429754555384988,-6.965303617315433 -210,22.0,23.0,-1.4614056064833263,2.989238740534077 -210,23.0,21.0,-2.5405381522555563,3.95440286307604 -210,23.0,22.0,-1.4614056064833263,2.989238740534077 -210,23.0,23.0,5.311836702613133,-9.188263657315172 -210,23.0,24.0,-1.3098929438742493,2.287622053705056 -210,24.0,23.0,-1.3098929438742493,2.287622053705056 -210,24.0,24.0,4.495715080321987,-7.864978761969621 -210,24.0,25.0,-1.2165301194494855,1.8171440463475024 -210,24.0,26.0,-1.9692920169982515,3.760212661917064 -210,25.0,24.0,-1.2165301194494855,1.8171440463475024 -210,25.0,25.0,1.2165301194494855,-1.8171440463475024 -210,26.0,24.0,-1.9692920169982515,3.760212661917064 -210,26.0,26.0,3.652281470778589,-9.46044252232512 -210,26.0,27.0,0.0,2.608731947574922 -210,26.0,28.0,-0.99553355095268,1.881005840357816 -210,26.0,29.0,-0.6874559028276572,1.293971494797717 -210,27.0,5.0,-4.362844058012917,15.463571542897856 -210,27.0,7.0,-1.4439790613954469,4.540814658476248 -210,27.0,26.0,0.0,2.608731947574922 -210,27.0,27.0,5.806823119408364,-22.67145722159613 -210,28.0,26.0,-0.99553355095268,1.881005840357816 -210,28.0,28.0,1.9075867579849564,-3.604364401207048 -210,28.0,29.0,-0.9120532070322764,1.7233585608492326 -210,29.0,26.0,-0.6874559028276572,1.293971494797717 -210,29.0,28.0,-0.9120532070322764,1.7233585608492326 -210,29.0,29.0,1.5995091098599337,-3.0173300556469496 -211,0.0,0.0,6.765516048652632,-21.23160167089863 -211,0.0,1.0,-5.224646179885656,15.646726840803398 -211,0.0,2.0,-1.5408698687669766,5.631674830095234 -211,1.0,0.0,-5.224646179885656,15.646726840803398 -211,1.0,1.0,9.75228216552403,-30.648662892676068 -211,1.0,3.0,-1.7055303166990268,5.1973792282565086 -211,1.0,4.0,-1.1359607881738778,4.772479328281356 -211,1.0,5.0,-1.6861448807654689,5.116477495334806 -211,2.0,0.0,-1.5408698687669766,5.631674830095234 -211,2.0,2.0,9.736318911079088,-29.13794745915803 -211,2.0,3.0,-8.19544904231211,23.5308726290628 -211,3.0,1.0,-1.7055303166990268,5.1973792282565086 -211,3.0,2.0,-8.19544904231211,23.5308726290628 -211,3.0,3.0,16.314103089185693,-55.509410535254254 -211,3.0,5.0,-6.413123730174556,22.31120356548123 -211,3.0,11.0,0.0,4.191255364806866 -211,4.0,1.0,-1.1359607881738778,4.772479328281356 -211,4.0,4.0,4.089980824135861,-12.190647245055052 -211,4.0,6.0,-2.954020035961983,7.449267916773697 -211,5.0,1.0,-1.6861448807654689,5.116477495334806 -211,5.0,3.0,-6.413123730174556,22.31120356548123 -211,5.0,5.0,16.052323092933932,-60.8210692494267 -211,5.0,6.0,-3.590210423980992,11.02611441072814 -211,5.0,8.0,0.0,4.915840805411357 -211,5.0,9.0,0.0,1.8561002591115965 -211,5.0,27.0,-4.362844058012917,15.463571542897856 -211,6.0,4.0,-2.954020035961983,7.449267916773697 -211,6.0,5.0,-3.590210423980992,11.02611441072814 -211,6.0,6.0,6.544230459942975,-18.45668232750184 -211,7.0,7.0,1.4439790613954469,-4.519414658476248 -211,7.0,27.0,-1.4439790613954469,4.540814658476248 -211,8.0,5.0,0.0,4.915840805411357 -211,8.0,8.0,0.0,-18.706293706293707 -211,8.0,9.0,0.0,9.090909090909092 -211,8.0,10.0,0.0,4.807692307692308 -211,9.0,5.0,0.0,1.8561002591115965 -211,9.0,8.0,0.0,9.090909090909092 -211,9.0,9.0,13.462042814524237,-41.3837606675224 -211,9.0,16.0,-3.956039125715353,10.317447719844054 -211,9.0,19.0,-1.7848303152666305,3.98535828943083 -211,9.0,20.0,-5.101853820159654,10.98071411292983 -211,9.0,21.0,-2.619319553382597,5.400770303329455 -211,10.0,8.0,0.0,4.807692307692308 -211,10.0,10.0,0.0,-4.807692307692308 -211,11.0,3.0,0.0,4.191255364806866 -211,11.0,11.0,3.0953961826564296,-17.146383007183402 -211,11.0,12.0,0.0,7.142857142857143 -211,11.0,14.0,-3.0953961826564296,6.097275864326261 -211,12.0,11.0,0.0,7.142857142857143 -211,12.0,12.0,0.0,-7.142857142857143 -211,13.0,13.0,2.4909522639994623,-2.250874059369649 -211,13.0,14.0,-2.4909522639994623,2.250874059369649 -211,14.0,11.0,-3.0953961826564296,6.097275864326261 -211,14.0,13.0,-2.4909522639994623,2.250874059369649 -211,14.0,14.0,9.365498545964757,-16.01163373210796 -211,14.0,17.0,-1.8108011504072024,3.687418931630696 -211,14.0,22.0,-1.9683489489016612,3.976064876781356 -211,15.0,15.0,1.3190669363537617,-4.8407742721532125 -211,15.0,16.0,-1.3190669363537617,4.8407742721532125 -211,16.0,9.0,-3.956039125715353,10.317447719844054 -211,16.0,15.0,-1.3190669363537617,4.8407742721532125 -211,16.0,16.0,5.275106062069114,-15.158221991997266 -211,17.0,14.0,-1.8108011504072024,3.687418931630696 -211,17.0,17.0,4.886487584415919,-9.906177730909668 -211,17.0,18.0,-3.0756864340087167,6.218758799278971 -211,18.0,17.0,-3.0756864340087167,6.218758799278971 -211,18.0,18.0,8.958039375185187,-17.98346468163191 -211,18.0,19.0,-5.88235294117647,11.76470588235294 -211,19.0,9.0,-1.7848303152666305,3.98535828943083 -211,19.0,18.0,-5.88235294117647,11.76470588235294 -211,19.0,19.0,7.6671832564431,-15.75006417178377 -211,20.0,9.0,-5.101853820159654,10.98071411292983 -211,20.0,20.0,21.876495189895888,-45.10843276170355 -211,20.0,21.0,-16.774641369736234,34.127718648773715 -211,21.0,9.0,-2.619319553382597,5.400770303329455 -211,21.0,20.0,-16.774641369736234,34.127718648773715 -211,21.0,21.0,21.93449907537439,-43.48289181517921 -211,21.0,23.0,-2.5405381522555563,3.95440286307604 -211,22.0,14.0,-1.9683489489016612,3.976064876781356 -211,22.0,22.0,3.429754555384988,-6.965303617315433 -211,22.0,23.0,-1.4614056064833263,2.989238740534077 -211,23.0,21.0,-2.5405381522555563,3.95440286307604 -211,23.0,22.0,-1.4614056064833263,2.989238740534077 -211,23.0,23.0,5.311836702613133,-9.188263657315172 -211,23.0,24.0,-1.3098929438742493,2.287622053705056 -211,24.0,23.0,-1.3098929438742493,2.287622053705056 -211,24.0,24.0,2.526423063323735,-4.104766100052558 -211,24.0,25.0,-1.2165301194494855,1.8171440463475024 -211,25.0,24.0,-1.2165301194494855,1.8171440463475024 -211,25.0,25.0,1.2165301194494855,-1.8171440463475024 -211,26.0,26.0,1.6829894537803372,-5.700229860408058 -211,26.0,27.0,0.0,2.608731947574922 -211,26.0,28.0,-0.99553355095268,1.881005840357816 -211,26.0,29.0,-0.6874559028276572,1.293971494797717 -211,27.0,5.0,-4.362844058012917,15.463571542897856 -211,27.0,7.0,-1.4439790613954469,4.540814658476248 -211,27.0,26.0,0.0,2.608731947574922 -211,27.0,27.0,5.806823119408364,-22.67145722159613 -211,28.0,26.0,-0.99553355095268,1.881005840357816 -211,28.0,28.0,1.9075867579849564,-3.604364401207048 -211,28.0,29.0,-0.9120532070322764,1.7233585608492326 -211,29.0,26.0,-0.6874559028276572,1.293971494797717 -211,29.0,28.0,-0.9120532070322764,1.7233585608492326 -211,29.0,29.0,1.5995091098599337,-3.0173300556469496 -212,0.0,0.0,6.765516048652632,-21.23160167089863 -212,0.0,1.0,-5.224646179885656,15.646726840803398 -212,0.0,2.0,-1.5408698687669766,5.631674830095234 -212,1.0,0.0,-5.224646179885656,15.646726840803398 -212,1.0,1.0,9.75228216552403,-30.648662892676068 -212,1.0,3.0,-1.7055303166990268,5.1973792282565086 -212,1.0,4.0,-1.1359607881738778,4.772479328281356 -212,1.0,5.0,-1.6861448807654689,5.116477495334806 -212,2.0,0.0,-1.5408698687669766,5.631674830095234 -212,2.0,2.0,9.736318911079088,-29.13794745915803 -212,2.0,3.0,-8.19544904231211,23.5308726290628 -212,3.0,1.0,-1.7055303166990268,5.1973792282565086 -212,3.0,2.0,-8.19544904231211,23.5308726290628 -212,3.0,3.0,16.314103089185693,-55.509410535254254 -212,3.0,5.0,-6.413123730174556,22.31120356548123 -212,3.0,11.0,0.0,4.191255364806866 -212,4.0,1.0,-1.1359607881738778,4.772479328281356 -212,4.0,4.0,4.089980824135861,-12.190647245055052 -212,4.0,6.0,-2.954020035961983,7.449267916773697 -212,5.0,1.0,-1.6861448807654689,5.116477495334806 -212,5.0,3.0,-6.413123730174556,22.31120356548123 -212,5.0,5.0,18.75142084505357,-71.81153345505078 -212,5.0,7.0,-6.289308176100628,22.0125786163522 -212,5.0,8.0,0.0,4.915840805411357 -212,5.0,9.0,0.0,1.8561002591115965 -212,5.0,27.0,-4.362844058012917,15.463571542897856 -212,6.0,4.0,-2.954020035961983,7.449267916773697 -212,6.0,6.0,2.954020035961983,-7.439067916773697 -212,7.0,5.0,-6.289308176100628,22.0125786163522 -212,7.0,7.0,7.733287237496075,-26.527493274828448 -212,7.0,27.0,-1.4439790613954469,4.540814658476248 -212,8.0,5.0,0.0,4.915840805411357 -212,8.0,8.0,0.0,-18.706293706293707 -212,8.0,9.0,0.0,9.090909090909092 -212,8.0,10.0,0.0,4.807692307692308 -212,9.0,5.0,0.0,1.8561002591115965 -212,9.0,8.0,0.0,9.090909090909092 -212,9.0,9.0,13.462042814524237,-41.3837606675224 -212,9.0,16.0,-3.956039125715353,10.317447719844054 -212,9.0,19.0,-1.7848303152666305,3.98535828943083 -212,9.0,20.0,-5.101853820159654,10.98071411292983 -212,9.0,21.0,-2.619319553382597,5.400770303329455 -212,10.0,8.0,0.0,4.807692307692308 -212,10.0,10.0,0.0,-4.807692307692308 -212,11.0,3.0,0.0,4.191255364806866 -212,11.0,11.0,6.573961583776156,-24.424167659260668 -212,11.0,12.0,0.0,7.142857142857143 -212,11.0,13.0,-1.5265676088395577,3.1734252729654173 -212,11.0,14.0,-3.0953961826564296,6.097275864326261 -212,11.0,15.0,-1.9519977922801688,4.104359379111847 -212,12.0,11.0,0.0,7.142857142857143 -212,12.0,12.0,0.0,-7.142857142857143 -212,13.0,11.0,-1.5265676088395577,3.1734252729654173 -212,13.0,13.0,1.5265676088395577,-3.1734252729654173 -212,14.0,11.0,-3.0953961826564296,6.097275864326261 -212,14.0,14.0,6.874546281965293,-13.760759672738311 -212,14.0,17.0,-1.8108011504072024,3.687418931630696 -212,14.0,22.0,-1.9683489489016612,3.976064876781356 -212,15.0,11.0,-1.9519977922801688,4.104359379111847 -212,15.0,15.0,3.271064728633931,-8.94513365126506 -212,15.0,16.0,-1.3190669363537617,4.8407742721532125 -212,16.0,9.0,-3.956039125715353,10.317447719844054 -212,16.0,15.0,-1.3190669363537617,4.8407742721532125 -212,16.0,16.0,5.275106062069114,-15.158221991997266 -212,17.0,14.0,-1.8108011504072024,3.687418931630696 -212,17.0,17.0,4.886487584415919,-9.906177730909668 -212,17.0,18.0,-3.0756864340087167,6.218758799278971 -212,18.0,17.0,-3.0756864340087167,6.218758799278971 -212,18.0,18.0,8.958039375185187,-17.98346468163191 -212,18.0,19.0,-5.88235294117647,11.76470588235294 -212,19.0,9.0,-1.7848303152666305,3.98535828943083 -212,19.0,18.0,-5.88235294117647,11.76470588235294 -212,19.0,19.0,7.6671832564431,-15.75006417178377 -212,20.0,9.0,-5.101853820159654,10.98071411292983 -212,20.0,20.0,21.876495189895888,-45.10843276170355 -212,20.0,21.0,-16.774641369736234,34.127718648773715 -212,21.0,9.0,-2.619319553382597,5.400770303329455 -212,21.0,20.0,-16.774641369736234,34.127718648773715 -212,21.0,21.0,21.93449907537439,-43.48289181517921 -212,21.0,23.0,-2.5405381522555563,3.95440286307604 -212,22.0,14.0,-1.9683489489016612,3.976064876781356 -212,22.0,22.0,3.429754555384988,-6.965303617315433 -212,22.0,23.0,-1.4614056064833263,2.989238740534077 -212,23.0,21.0,-2.5405381522555563,3.95440286307604 -212,23.0,22.0,-1.4614056064833263,2.989238740534077 -212,23.0,23.0,5.311836702613133,-9.188263657315172 -212,23.0,24.0,-1.3098929438742493,2.287622053705056 -212,24.0,23.0,-1.3098929438742493,2.287622053705056 -212,24.0,24.0,4.495715080321987,-7.864978761969621 -212,24.0,25.0,-1.2165301194494855,1.8171440463475024 -212,24.0,26.0,-1.9692920169982515,3.760212661917064 -212,25.0,24.0,-1.2165301194494855,1.8171440463475024 -212,25.0,25.0,1.2165301194494855,-1.8171440463475024 -212,26.0,24.0,-1.9692920169982515,3.760212661917064 -212,26.0,26.0,3.652281470778589,-9.46044252232512 -212,26.0,27.0,0.0,2.608731947574922 -212,26.0,28.0,-0.99553355095268,1.881005840357816 -212,26.0,29.0,-0.6874559028276572,1.293971494797717 -212,27.0,5.0,-4.362844058012917,15.463571542897856 -212,27.0,7.0,-1.4439790613954469,4.540814658476248 -212,27.0,26.0,0.0,2.608731947574922 -212,27.0,27.0,5.806823119408364,-22.67145722159613 -212,28.0,26.0,-0.99553355095268,1.881005840357816 -212,28.0,28.0,1.9075867579849564,-3.604364401207048 -212,28.0,29.0,-0.9120532070322764,1.7233585608492326 -212,29.0,26.0,-0.6874559028276572,1.293971494797717 -212,29.0,28.0,-0.9120532070322764,1.7233585608492326 -212,29.0,29.0,1.5995091098599337,-3.0173300556469496 -213,0.0,0.0,6.765516048652632,-21.23160167089863 -213,0.0,1.0,-5.224646179885656,15.646726840803398 -213,0.0,2.0,-1.5408698687669766,5.631674830095234 -213,1.0,0.0,-5.224646179885656,15.646726840803398 -213,1.0,1.0,9.75228216552403,-30.648662892676068 -213,1.0,3.0,-1.7055303166990268,5.1973792282565086 -213,1.0,4.0,-1.1359607881738778,4.772479328281356 -213,1.0,5.0,-1.6861448807654689,5.116477495334806 -213,2.0,0.0,-1.5408698687669766,5.631674830095234 -213,2.0,2.0,9.736318911079088,-29.13794745915803 -213,2.0,3.0,-8.19544904231211,23.5308726290628 -213,3.0,1.0,-1.7055303166990268,5.1973792282565086 -213,3.0,2.0,-8.19544904231211,23.5308726290628 -213,3.0,3.0,16.314103089185693,-55.509410535254254 -213,3.0,5.0,-6.413123730174556,22.31120356548123 -213,3.0,11.0,0.0,4.191255364806866 -213,4.0,1.0,-1.1359607881738778,4.772479328281356 -213,4.0,4.0,4.089980824135861,-12.190647245055052 -213,4.0,6.0,-2.954020035961983,7.449267916773697 -213,5.0,1.0,-1.6861448807654689,5.116477495334806 -213,5.0,3.0,-6.413123730174556,22.31120356548123 -213,5.0,5.0,12.46211266895294,-49.80345483869856 -213,5.0,8.0,0.0,4.915840805411357 -213,5.0,9.0,0.0,1.8561002591115965 -213,5.0,27.0,-4.362844058012917,15.463571542897856 -213,6.0,4.0,-2.954020035961983,7.449267916773697 -213,6.0,6.0,2.954020035961983,-7.439067916773697 -213,7.0,7.0,1.4439790613954469,-4.519414658476248 -213,7.0,27.0,-1.4439790613954469,4.540814658476248 -213,8.0,5.0,0.0,4.915840805411357 -213,8.0,8.0,0.0,-18.706293706293707 -213,8.0,9.0,0.0,9.090909090909092 -213,8.0,10.0,0.0,4.807692307692308 -213,9.0,5.0,0.0,1.8561002591115965 -213,9.0,8.0,0.0,9.090909090909092 -213,9.0,9.0,13.462042814524237,-41.3837606675224 -213,9.0,16.0,-3.956039125715353,10.317447719844054 -213,9.0,19.0,-1.7848303152666305,3.98535828943083 -213,9.0,20.0,-5.101853820159654,10.98071411292983 -213,9.0,21.0,-2.619319553382597,5.400770303329455 -213,10.0,8.0,0.0,4.807692307692308 -213,10.0,10.0,0.0,-4.807692307692308 -213,11.0,3.0,0.0,4.191255364806866 -213,11.0,11.0,6.573961583776156,-24.424167659260668 -213,11.0,12.0,0.0,7.142857142857143 -213,11.0,13.0,-1.5265676088395577,3.1734252729654173 -213,11.0,14.0,-3.0953961826564296,6.097275864326261 -213,11.0,15.0,-1.9519977922801688,4.104359379111847 -213,12.0,11.0,0.0,7.142857142857143 -213,12.0,12.0,0.0,-7.142857142857143 -213,13.0,11.0,-1.5265676088395577,3.1734252729654173 -213,13.0,13.0,4.01751987283902,-5.424299332335067 -213,13.0,14.0,-2.4909522639994623,2.250874059369649 -213,14.0,11.0,-3.0953961826564296,6.097275864326261 -213,14.0,13.0,-2.4909522639994623,2.250874059369649 -213,14.0,14.0,9.365498545964757,-16.01163373210796 -213,14.0,17.0,-1.8108011504072024,3.687418931630696 -213,14.0,22.0,-1.9683489489016612,3.976064876781356 -213,15.0,11.0,-1.9519977922801688,4.104359379111847 -213,15.0,15.0,1.9519977922801688,-4.104359379111847 -213,16.0,9.0,-3.956039125715353,10.317447719844054 -213,16.0,16.0,3.956039125715353,-10.317447719844054 -213,17.0,14.0,-1.8108011504072024,3.687418931630696 -213,17.0,17.0,4.886487584415919,-9.906177730909668 -213,17.0,18.0,-3.0756864340087167,6.218758799278971 -213,18.0,17.0,-3.0756864340087167,6.218758799278971 -213,18.0,18.0,8.958039375185187,-17.98346468163191 -213,18.0,19.0,-5.88235294117647,11.76470588235294 -213,19.0,9.0,-1.7848303152666305,3.98535828943083 -213,19.0,18.0,-5.88235294117647,11.76470588235294 -213,19.0,19.0,7.6671832564431,-15.75006417178377 -213,20.0,9.0,-5.101853820159654,10.98071411292983 -213,20.0,20.0,21.876495189895888,-45.10843276170355 -213,20.0,21.0,-16.774641369736234,34.127718648773715 -213,21.0,9.0,-2.619319553382597,5.400770303329455 -213,21.0,20.0,-16.774641369736234,34.127718648773715 -213,21.0,21.0,21.93449907537439,-43.48289181517921 -213,21.0,23.0,-2.5405381522555563,3.95440286307604 -213,22.0,14.0,-1.9683489489016612,3.976064876781356 -213,22.0,22.0,3.429754555384988,-6.965303617315433 -213,22.0,23.0,-1.4614056064833263,2.989238740534077 -213,23.0,21.0,-2.5405381522555563,3.95440286307604 -213,23.0,22.0,-1.4614056064833263,2.989238740534077 -213,23.0,23.0,5.311836702613133,-9.188263657315172 -213,23.0,24.0,-1.3098929438742493,2.287622053705056 -213,24.0,23.0,-1.3098929438742493,2.287622053705056 -213,24.0,24.0,4.495715080321987,-7.864978761969621 -213,24.0,25.0,-1.2165301194494855,1.8171440463475024 -213,24.0,26.0,-1.9692920169982515,3.760212661917064 -213,25.0,24.0,-1.2165301194494855,1.8171440463475024 -213,25.0,25.0,1.2165301194494855,-1.8171440463475024 -213,26.0,24.0,-1.9692920169982515,3.760212661917064 -213,26.0,26.0,3.652281470778589,-9.46044252232512 -213,26.0,27.0,0.0,2.608731947574922 -213,26.0,28.0,-0.99553355095268,1.881005840357816 -213,26.0,29.0,-0.6874559028276572,1.293971494797717 -213,27.0,5.0,-4.362844058012917,15.463571542897856 -213,27.0,7.0,-1.4439790613954469,4.540814658476248 -213,27.0,26.0,0.0,2.608731947574922 -213,27.0,27.0,5.806823119408364,-22.67145722159613 -213,28.0,26.0,-0.99553355095268,1.881005840357816 -213,28.0,28.0,1.9075867579849564,-3.604364401207048 -213,28.0,29.0,-0.9120532070322764,1.7233585608492326 -213,29.0,26.0,-0.6874559028276572,1.293971494797717 -213,29.0,28.0,-0.9120532070322764,1.7233585608492326 -213,29.0,29.0,1.5995091098599337,-3.0173300556469496 -214,0.0,0.0,6.765516048652632,-21.23160167089863 -214,0.0,1.0,-5.224646179885656,15.646726840803398 -214,0.0,2.0,-1.5408698687669766,5.631674830095234 -214,1.0,0.0,-5.224646179885656,15.646726840803398 -214,1.0,1.0,9.75228216552403,-30.648662892676068 -214,1.0,3.0,-1.7055303166990268,5.1973792282565086 -214,1.0,4.0,-1.1359607881738778,4.772479328281356 -214,1.0,5.0,-1.6861448807654689,5.116477495334806 -214,2.0,0.0,-1.5408698687669766,5.631674830095234 -214,2.0,2.0,9.736318911079088,-29.13794745915803 -214,2.0,3.0,-8.19544904231211,23.5308726290628 -214,3.0,1.0,-1.7055303166990268,5.1973792282565086 -214,3.0,2.0,-8.19544904231211,23.5308726290628 -214,3.0,3.0,16.314103089185693,-55.509410535254254 -214,3.0,5.0,-6.413123730174556,22.31120356548123 -214,3.0,11.0,0.0,4.191255364806866 -214,4.0,1.0,-1.1359607881738778,4.772479328281356 -214,4.0,4.0,4.089980824135861,-12.190647245055052 -214,4.0,6.0,-2.954020035961983,7.449267916773697 -214,5.0,1.0,-1.6861448807654689,5.116477495334806 -214,5.0,3.0,-6.413123730174556,22.31120356548123 -214,5.0,5.0,22.341631269034565,-82.8291478657789 -214,5.0,6.0,-3.590210423980992,11.02611441072814 -214,5.0,7.0,-6.289308176100628,22.0125786163522 -214,5.0,8.0,0.0,4.915840805411357 -214,5.0,9.0,0.0,1.8561002591115965 -214,5.0,27.0,-4.362844058012917,15.463571542897856 -214,6.0,4.0,-2.954020035961983,7.449267916773697 -214,6.0,5.0,-3.590210423980992,11.02611441072814 -214,6.0,6.0,6.544230459942975,-18.45668232750184 -214,7.0,5.0,-6.289308176100628,22.0125786163522 -214,7.0,7.0,7.733287237496075,-26.527493274828448 -214,7.0,27.0,-1.4439790613954469,4.540814658476248 -214,8.0,5.0,0.0,4.915840805411357 -214,8.0,8.0,0.0,-18.706293706293707 -214,8.0,9.0,0.0,9.090909090909092 -214,8.0,10.0,0.0,4.807692307692308 -214,9.0,5.0,0.0,1.8561002591115965 -214,9.0,8.0,0.0,9.090909090909092 -214,9.0,9.0,13.462042814524237,-41.3837606675224 -214,9.0,16.0,-3.956039125715353,10.317447719844054 -214,9.0,19.0,-1.7848303152666305,3.98535828943083 -214,9.0,20.0,-5.101853820159654,10.98071411292983 -214,9.0,21.0,-2.619319553382597,5.400770303329455 -214,10.0,8.0,0.0,4.807692307692308 -214,10.0,10.0,0.0,-4.807692307692308 -214,11.0,3.0,0.0,4.191255364806866 -214,11.0,11.0,6.573961583776156,-24.424167659260668 -214,11.0,12.0,0.0,7.142857142857143 -214,11.0,13.0,-1.5265676088395577,3.1734252729654173 -214,11.0,14.0,-3.0953961826564296,6.097275864326261 -214,11.0,15.0,-1.9519977922801688,4.104359379111847 -214,12.0,11.0,0.0,7.142857142857143 -214,12.0,12.0,0.0,-7.142857142857143 -214,13.0,11.0,-1.5265676088395577,3.1734252729654173 -214,13.0,13.0,4.01751987283902,-5.424299332335067 -214,13.0,14.0,-2.4909522639994623,2.250874059369649 -214,14.0,11.0,-3.0953961826564296,6.097275864326261 -214,14.0,13.0,-2.4909522639994623,2.250874059369649 -214,14.0,14.0,9.365498545964757,-16.01163373210796 -214,14.0,17.0,-1.8108011504072024,3.687418931630696 -214,14.0,22.0,-1.9683489489016612,3.976064876781356 -214,15.0,11.0,-1.9519977922801688,4.104359379111847 -214,15.0,15.0,3.271064728633931,-8.94513365126506 -214,15.0,16.0,-1.3190669363537617,4.8407742721532125 -214,16.0,9.0,-3.956039125715353,10.317447719844054 -214,16.0,15.0,-1.3190669363537617,4.8407742721532125 -214,16.0,16.0,5.275106062069114,-15.158221991997266 -214,17.0,14.0,-1.8108011504072024,3.687418931630696 -214,17.0,17.0,4.886487584415919,-9.906177730909668 -214,17.0,18.0,-3.0756864340087167,6.218758799278971 -214,18.0,17.0,-3.0756864340087167,6.218758799278971 -214,18.0,18.0,8.958039375185187,-17.98346468163191 -214,18.0,19.0,-5.88235294117647,11.76470588235294 -214,19.0,9.0,-1.7848303152666305,3.98535828943083 -214,19.0,18.0,-5.88235294117647,11.76470588235294 -214,19.0,19.0,7.6671832564431,-15.75006417178377 -214,20.0,9.0,-5.101853820159654,10.98071411292983 -214,20.0,20.0,21.876495189895888,-45.10843276170355 -214,20.0,21.0,-16.774641369736234,34.127718648773715 -214,21.0,9.0,-2.619319553382597,5.400770303329455 -214,21.0,20.0,-16.774641369736234,34.127718648773715 -214,21.0,21.0,21.93449907537439,-43.48289181517921 -214,21.0,23.0,-2.5405381522555563,3.95440286307604 -214,22.0,14.0,-1.9683489489016612,3.976064876781356 -214,22.0,22.0,3.429754555384988,-6.965303617315433 -214,22.0,23.0,-1.4614056064833263,2.989238740534077 -214,23.0,21.0,-2.5405381522555563,3.95440286307604 -214,23.0,22.0,-1.4614056064833263,2.989238740534077 -214,23.0,23.0,5.311836702613133,-9.188263657315172 -214,23.0,24.0,-1.3098929438742493,2.287622053705056 -214,24.0,23.0,-1.3098929438742493,2.287622053705056 -214,24.0,24.0,4.495715080321987,-7.864978761969621 -214,24.0,25.0,-1.2165301194494855,1.8171440463475024 -214,24.0,26.0,-1.9692920169982515,3.760212661917064 -214,25.0,24.0,-1.2165301194494855,1.8171440463475024 -214,25.0,25.0,1.2165301194494855,-1.8171440463475024 -214,26.0,24.0,-1.9692920169982515,3.760212661917064 -214,26.0,26.0,3.652281470778589,-9.46044252232512 -214,26.0,27.0,0.0,2.608731947574922 -214,26.0,28.0,-0.99553355095268,1.881005840357816 -214,26.0,29.0,-0.6874559028276572,1.293971494797717 -214,27.0,5.0,-4.362844058012917,15.463571542897856 -214,27.0,7.0,-1.4439790613954469,4.540814658476248 -214,27.0,26.0,0.0,2.608731947574922 -214,27.0,27.0,5.806823119408364,-22.67145722159613 -214,28.0,26.0,-0.99553355095268,1.881005840357816 -214,28.0,28.0,1.9075867579849564,-3.604364401207048 -214,28.0,29.0,-0.9120532070322764,1.7233585608492326 -214,29.0,26.0,-0.6874559028276572,1.293971494797717 -214,29.0,28.0,-0.9120532070322764,1.7233585608492326 -214,29.0,29.0,1.5995091098599337,-3.0173300556469496 -215,0.0,0.0,6.765516048652632,-21.23160167089863 -215,0.0,1.0,-5.224646179885656,15.646726840803398 -215,0.0,2.0,-1.5408698687669766,5.631674830095234 -215,1.0,0.0,-5.224646179885656,15.646726840803398 -215,1.0,1.0,9.75228216552403,-30.648662892676068 -215,1.0,3.0,-1.7055303166990268,5.1973792282565086 -215,1.0,4.0,-1.1359607881738778,4.772479328281356 -215,1.0,5.0,-1.6861448807654689,5.116477495334806 -215,2.0,0.0,-1.5408698687669766,5.631674830095234 -215,2.0,2.0,9.736318911079088,-29.13794745915803 -215,2.0,3.0,-8.19544904231211,23.5308726290628 -215,3.0,1.0,-1.7055303166990268,5.1973792282565086 -215,3.0,2.0,-8.19544904231211,23.5308726290628 -215,3.0,3.0,16.314103089185693,-55.509410535254254 -215,3.0,5.0,-6.413123730174556,22.31120356548123 -215,3.0,11.0,0.0,4.191255364806866 -215,4.0,1.0,-1.1359607881738778,4.772479328281356 -215,4.0,4.0,4.089980824135861,-12.190647245055052 -215,4.0,6.0,-2.954020035961983,7.449267916773697 -215,5.0,1.0,-1.6861448807654689,5.116477495334806 -215,5.0,3.0,-6.413123730174556,22.31120356548123 -215,5.0,5.0,22.341631269034565,-82.8291478657789 -215,5.0,6.0,-3.590210423980992,11.02611441072814 -215,5.0,7.0,-6.289308176100628,22.0125786163522 -215,5.0,8.0,0.0,4.915840805411357 -215,5.0,9.0,0.0,1.8561002591115965 -215,5.0,27.0,-4.362844058012917,15.463571542897856 -215,6.0,4.0,-2.954020035961983,7.449267916773697 -215,6.0,5.0,-3.590210423980992,11.02611441072814 -215,6.0,6.0,6.544230459942975,-18.45668232750184 -215,7.0,5.0,-6.289308176100628,22.0125786163522 -215,7.0,7.0,7.733287237496075,-26.527493274828448 -215,7.0,27.0,-1.4439790613954469,4.540814658476248 -215,8.0,5.0,0.0,4.915840805411357 -215,8.0,8.0,0.0,-18.706293706293707 -215,8.0,9.0,0.0,9.090909090909092 -215,8.0,10.0,0.0,4.807692307692308 -215,9.0,5.0,0.0,1.8561002591115965 -215,9.0,8.0,0.0,9.090909090909092 -215,9.0,9.0,13.462042814524237,-41.3837606675224 -215,9.0,16.0,-3.956039125715353,10.317447719844054 -215,9.0,19.0,-1.7848303152666305,3.98535828943083 -215,9.0,20.0,-5.101853820159654,10.98071411292983 -215,9.0,21.0,-2.619319553382597,5.400770303329455 -215,10.0,8.0,0.0,4.807692307692308 -215,10.0,10.0,0.0,-4.807692307692308 -215,11.0,3.0,0.0,4.191255364806866 -215,11.0,11.0,6.573961583776156,-24.424167659260668 -215,11.0,12.0,0.0,7.142857142857143 -215,11.0,13.0,-1.5265676088395577,3.1734252729654173 -215,11.0,14.0,-3.0953961826564296,6.097275864326261 -215,11.0,15.0,-1.9519977922801688,4.104359379111847 -215,12.0,11.0,0.0,7.142857142857143 -215,12.0,12.0,0.0,-7.142857142857143 -215,13.0,11.0,-1.5265676088395577,3.1734252729654173 -215,13.0,13.0,4.01751987283902,-5.424299332335067 -215,13.0,14.0,-2.4909522639994623,2.250874059369649 -215,14.0,11.0,-3.0953961826564296,6.097275864326261 -215,14.0,13.0,-2.4909522639994623,2.250874059369649 -215,14.0,14.0,9.365498545964757,-16.01163373210796 -215,14.0,17.0,-1.8108011504072024,3.687418931630696 -215,14.0,22.0,-1.9683489489016612,3.976064876781356 -215,15.0,11.0,-1.9519977922801688,4.104359379111847 -215,15.0,15.0,3.271064728633931,-8.94513365126506 -215,15.0,16.0,-1.3190669363537617,4.8407742721532125 -215,16.0,9.0,-3.956039125715353,10.317447719844054 -215,16.0,15.0,-1.3190669363537617,4.8407742721532125 -215,16.0,16.0,5.275106062069114,-15.158221991997266 -215,17.0,14.0,-1.8108011504072024,3.687418931630696 -215,17.0,17.0,4.886487584415919,-9.906177730909668 -215,17.0,18.0,-3.0756864340087167,6.218758799278971 -215,18.0,17.0,-3.0756864340087167,6.218758799278971 -215,18.0,18.0,8.958039375185187,-17.98346468163191 -215,18.0,19.0,-5.88235294117647,11.76470588235294 -215,19.0,9.0,-1.7848303152666305,3.98535828943083 -215,19.0,18.0,-5.88235294117647,11.76470588235294 -215,19.0,19.0,7.6671832564431,-15.75006417178377 -215,20.0,9.0,-5.101853820159654,10.98071411292983 -215,20.0,20.0,21.876495189895888,-45.10843276170355 -215,20.0,21.0,-16.774641369736234,34.127718648773715 -215,21.0,9.0,-2.619319553382597,5.400770303329455 -215,21.0,20.0,-16.774641369736234,34.127718648773715 -215,21.0,21.0,21.93449907537439,-43.48289181517921 -215,21.0,23.0,-2.5405381522555563,3.95440286307604 -215,22.0,14.0,-1.9683489489016612,3.976064876781356 -215,22.0,22.0,3.429754555384988,-6.965303617315433 -215,22.0,23.0,-1.4614056064833263,2.989238740534077 -215,23.0,21.0,-2.5405381522555563,3.95440286307604 -215,23.0,22.0,-1.4614056064833263,2.989238740534077 -215,23.0,23.0,5.311836702613133,-9.188263657315172 -215,23.0,24.0,-1.3098929438742493,2.287622053705056 -215,24.0,23.0,-1.3098929438742493,2.287622053705056 -215,24.0,24.0,4.495715080321987,-7.864978761969621 -215,24.0,25.0,-1.2165301194494855,1.8171440463475024 -215,24.0,26.0,-1.9692920169982515,3.760212661917064 -215,25.0,24.0,-1.2165301194494855,1.8171440463475024 -215,25.0,25.0,1.2165301194494855,-1.8171440463475024 -215,26.0,24.0,-1.9692920169982515,3.760212661917064 -215,26.0,26.0,3.652281470778589,-9.46044252232512 -215,26.0,27.0,0.0,2.608731947574922 -215,26.0,28.0,-0.99553355095268,1.881005840357816 -215,26.0,29.0,-0.6874559028276572,1.293971494797717 -215,27.0,5.0,-4.362844058012917,15.463571542897856 -215,27.0,7.0,-1.4439790613954469,4.540814658476248 -215,27.0,26.0,0.0,2.608731947574922 -215,27.0,27.0,5.806823119408364,-22.67145722159613 -215,28.0,26.0,-0.99553355095268,1.881005840357816 -215,28.0,28.0,1.9075867579849564,-3.604364401207048 -215,28.0,29.0,-0.9120532070322764,1.7233585608492326 -215,29.0,26.0,-0.6874559028276572,1.293971494797717 -215,29.0,28.0,-0.9120532070322764,1.7233585608492326 -215,29.0,29.0,1.5995091098599337,-3.0173300556469496 -216,0.0,0.0,6.765516048652632,-21.23160167089863 -216,0.0,1.0,-5.224646179885656,15.646726840803398 -216,0.0,2.0,-1.5408698687669766,5.631674830095234 -216,1.0,0.0,-5.224646179885656,15.646726840803398 -216,1.0,1.0,9.75228216552403,-30.648662892676068 -216,1.0,3.0,-1.7055303166990268,5.1973792282565086 -216,1.0,4.0,-1.1359607881738778,4.772479328281356 -216,1.0,5.0,-1.6861448807654689,5.116477495334806 -216,2.0,0.0,-1.5408698687669766,5.631674830095234 -216,2.0,2.0,9.736318911079088,-29.13794745915803 -216,2.0,3.0,-8.19544904231211,23.5308726290628 -216,3.0,1.0,-1.7055303166990268,5.1973792282565086 -216,3.0,2.0,-8.19544904231211,23.5308726290628 -216,3.0,3.0,16.314103089185693,-55.509410535254254 -216,3.0,5.0,-6.413123730174556,22.31120356548123 -216,3.0,11.0,0.0,4.191255364806866 -216,4.0,1.0,-1.1359607881738778,4.772479328281356 -216,4.0,4.0,4.089980824135861,-12.190647245055052 -216,4.0,6.0,-2.954020035961983,7.449267916773697 -216,5.0,1.0,-1.6861448807654689,5.116477495334806 -216,5.0,3.0,-6.413123730174556,22.31120356548123 -216,5.0,5.0,22.341631269034565,-82.8291478657789 -216,5.0,6.0,-3.590210423980992,11.02611441072814 -216,5.0,7.0,-6.289308176100628,22.0125786163522 -216,5.0,8.0,0.0,4.915840805411357 -216,5.0,9.0,0.0,1.8561002591115965 -216,5.0,27.0,-4.362844058012917,15.463571542897856 -216,6.0,4.0,-2.954020035961983,7.449267916773697 -216,6.0,5.0,-3.590210423980992,11.02611441072814 -216,6.0,6.0,6.544230459942975,-18.45668232750184 -216,7.0,5.0,-6.289308176100628,22.0125786163522 -216,7.0,7.0,7.733287237496075,-26.527493274828448 -216,7.0,27.0,-1.4439790613954469,4.540814658476248 -216,8.0,5.0,0.0,4.915840805411357 -216,8.0,8.0,0.0,-18.706293706293707 -216,8.0,9.0,0.0,9.090909090909092 -216,8.0,10.0,0.0,4.807692307692308 -216,9.0,5.0,0.0,1.8561002591115965 -216,9.0,8.0,0.0,9.090909090909092 -216,9.0,9.0,13.462042814524237,-41.3837606675224 -216,9.0,16.0,-3.956039125715353,10.317447719844054 -216,9.0,19.0,-1.7848303152666305,3.98535828943083 -216,9.0,20.0,-5.101853820159654,10.98071411292983 -216,9.0,21.0,-2.619319553382597,5.400770303329455 -216,10.0,8.0,0.0,4.807692307692308 -216,10.0,10.0,0.0,-4.807692307692308 -216,11.0,3.0,0.0,4.191255364806866 -216,11.0,11.0,6.573961583776156,-24.424167659260668 -216,11.0,12.0,0.0,7.142857142857143 -216,11.0,13.0,-1.5265676088395577,3.1734252729654173 -216,11.0,14.0,-3.0953961826564296,6.097275864326261 -216,11.0,15.0,-1.9519977922801688,4.104359379111847 -216,12.0,11.0,0.0,7.142857142857143 -216,12.0,12.0,0.0,-7.142857142857143 -216,13.0,11.0,-1.5265676088395577,3.1734252729654173 -216,13.0,13.0,4.01751987283902,-5.424299332335067 -216,13.0,14.0,-2.4909522639994623,2.250874059369649 -216,14.0,11.0,-3.0953961826564296,6.097275864326261 -216,14.0,13.0,-2.4909522639994623,2.250874059369649 -216,14.0,14.0,9.365498545964757,-16.01163373210796 -216,14.0,17.0,-1.8108011504072024,3.687418931630696 -216,14.0,22.0,-1.9683489489016612,3.976064876781356 -216,15.0,11.0,-1.9519977922801688,4.104359379111847 -216,15.0,15.0,3.271064728633931,-8.94513365126506 -216,15.0,16.0,-1.3190669363537617,4.8407742721532125 -216,16.0,9.0,-3.956039125715353,10.317447719844054 -216,16.0,15.0,-1.3190669363537617,4.8407742721532125 -216,16.0,16.0,5.275106062069114,-15.158221991997266 -216,17.0,14.0,-1.8108011504072024,3.687418931630696 -216,17.0,17.0,4.886487584415919,-9.906177730909668 -216,17.0,18.0,-3.0756864340087167,6.218758799278971 -216,18.0,17.0,-3.0756864340087167,6.218758799278971 -216,18.0,18.0,8.958039375185187,-17.98346468163191 -216,18.0,19.0,-5.88235294117647,11.76470588235294 -216,19.0,9.0,-1.7848303152666305,3.98535828943083 -216,19.0,18.0,-5.88235294117647,11.76470588235294 -216,19.0,19.0,7.6671832564431,-15.75006417178377 -216,20.0,9.0,-5.101853820159654,10.98071411292983 -216,20.0,20.0,21.876495189895888,-45.10843276170355 -216,20.0,21.0,-16.774641369736234,34.127718648773715 -216,21.0,9.0,-2.619319553382597,5.400770303329455 -216,21.0,20.0,-16.774641369736234,34.127718648773715 -216,21.0,21.0,21.93449907537439,-43.48289181517921 -216,21.0,23.0,-2.5405381522555563,3.95440286307604 -216,22.0,14.0,-1.9683489489016612,3.976064876781356 -216,22.0,22.0,3.429754555384988,-6.965303617315433 -216,22.0,23.0,-1.4614056064833263,2.989238740534077 -216,23.0,21.0,-2.5405381522555563,3.95440286307604 -216,23.0,22.0,-1.4614056064833263,2.989238740534077 -216,23.0,23.0,5.311836702613133,-9.188263657315172 -216,23.0,24.0,-1.3098929438742493,2.287622053705056 -216,24.0,23.0,-1.3098929438742493,2.287622053705056 -216,24.0,24.0,4.495715080321987,-7.864978761969621 -216,24.0,25.0,-1.2165301194494855,1.8171440463475024 -216,24.0,26.0,-1.9692920169982515,3.760212661917064 -216,25.0,24.0,-1.2165301194494855,1.8171440463475024 -216,25.0,25.0,1.2165301194494855,-1.8171440463475024 -216,26.0,24.0,-1.9692920169982515,3.760212661917064 -216,26.0,26.0,3.652281470778589,-9.46044252232512 -216,26.0,27.0,0.0,2.608731947574922 -216,26.0,28.0,-0.99553355095268,1.881005840357816 -216,26.0,29.0,-0.6874559028276572,1.293971494797717 -216,27.0,5.0,-4.362844058012917,15.463571542897856 -216,27.0,7.0,-1.4439790613954469,4.540814658476248 -216,27.0,26.0,0.0,2.608731947574922 -216,27.0,27.0,5.806823119408364,-22.67145722159613 -216,28.0,26.0,-0.99553355095268,1.881005840357816 -216,28.0,28.0,1.9075867579849564,-3.604364401207048 -216,28.0,29.0,-0.9120532070322764,1.7233585608492326 -216,29.0,26.0,-0.6874559028276572,1.293971494797717 -216,29.0,28.0,-0.9120532070322764,1.7233585608492326 -216,29.0,29.0,1.5995091098599337,-3.0173300556469496 -217,0.0,0.0,6.765516048652632,-21.23160167089863 -217,0.0,1.0,-5.224646179885656,15.646726840803398 -217,0.0,2.0,-1.5408698687669766,5.631674830095234 -217,1.0,0.0,-5.224646179885656,15.646726840803398 -217,1.0,1.0,9.75228216552403,-30.648662892676068 -217,1.0,3.0,-1.7055303166990268,5.1973792282565086 -217,1.0,4.0,-1.1359607881738778,4.772479328281356 -217,1.0,5.0,-1.6861448807654689,5.116477495334806 -217,2.0,0.0,-1.5408698687669766,5.631674830095234 -217,2.0,2.0,9.736318911079088,-29.13794745915803 -217,2.0,3.0,-8.19544904231211,23.5308726290628 -217,3.0,1.0,-1.7055303166990268,5.1973792282565086 -217,3.0,2.0,-8.19544904231211,23.5308726290628 -217,3.0,3.0,16.314103089185693,-55.509410535254254 -217,3.0,5.0,-6.413123730174556,22.31120356548123 -217,3.0,11.0,0.0,4.191255364806866 -217,4.0,1.0,-1.1359607881738778,4.772479328281356 -217,4.0,4.0,4.089980824135861,-12.190647245055052 -217,4.0,6.0,-2.954020035961983,7.449267916773697 -217,5.0,1.0,-1.6861448807654689,5.116477495334806 -217,5.0,3.0,-6.413123730174556,22.31120356548123 -217,5.0,5.0,22.341631269034565,-82.8291478657789 -217,5.0,6.0,-3.590210423980992,11.02611441072814 -217,5.0,7.0,-6.289308176100628,22.0125786163522 -217,5.0,8.0,0.0,4.915840805411357 -217,5.0,9.0,0.0,1.8561002591115965 -217,5.0,27.0,-4.362844058012917,15.463571542897856 -217,6.0,4.0,-2.954020035961983,7.449267916773697 -217,6.0,5.0,-3.590210423980992,11.02611441072814 -217,6.0,6.0,6.544230459942975,-18.45668232750184 -217,7.0,5.0,-6.289308176100628,22.0125786163522 -217,7.0,7.0,7.733287237496075,-26.527493274828448 -217,7.0,27.0,-1.4439790613954469,4.540814658476248 -217,8.0,5.0,0.0,4.915840805411357 -217,8.0,8.0,0.0,-18.706293706293707 -217,8.0,9.0,0.0,9.090909090909092 -217,8.0,10.0,0.0,4.807692307692308 -217,9.0,5.0,0.0,1.8561002591115965 -217,9.0,8.0,0.0,9.090909090909092 -217,9.0,9.0,13.462042814524237,-41.3837606675224 -217,9.0,16.0,-3.956039125715353,10.317447719844054 -217,9.0,19.0,-1.7848303152666305,3.98535828943083 -217,9.0,20.0,-5.101853820159654,10.98071411292983 -217,9.0,21.0,-2.619319553382597,5.400770303329455 -217,10.0,8.0,0.0,4.807692307692308 -217,10.0,10.0,0.0,-4.807692307692308 -217,11.0,3.0,0.0,4.191255364806866 -217,11.0,11.0,6.573961583776156,-24.424167659260668 -217,11.0,12.0,0.0,7.142857142857143 -217,11.0,13.0,-1.5265676088395577,3.1734252729654173 -217,11.0,14.0,-3.0953961826564296,6.097275864326261 -217,11.0,15.0,-1.9519977922801688,4.104359379111847 -217,12.0,11.0,0.0,7.142857142857143 -217,12.0,12.0,0.0,-7.142857142857143 -217,13.0,11.0,-1.5265676088395577,3.1734252729654173 -217,13.0,13.0,4.01751987283902,-5.424299332335067 -217,13.0,14.0,-2.4909522639994623,2.250874059369649 -217,14.0,11.0,-3.0953961826564296,6.097275864326261 -217,14.0,13.0,-2.4909522639994623,2.250874059369649 -217,14.0,14.0,9.365498545964757,-16.01163373210796 -217,14.0,17.0,-1.8108011504072024,3.687418931630696 -217,14.0,22.0,-1.9683489489016612,3.976064876781356 -217,15.0,11.0,-1.9519977922801688,4.104359379111847 -217,15.0,15.0,3.271064728633931,-8.94513365126506 -217,15.0,16.0,-1.3190669363537617,4.8407742721532125 -217,16.0,9.0,-3.956039125715353,10.317447719844054 -217,16.0,15.0,-1.3190669363537617,4.8407742721532125 -217,16.0,16.0,5.275106062069114,-15.158221991997266 -217,17.0,14.0,-1.8108011504072024,3.687418931630696 -217,17.0,17.0,4.886487584415919,-9.906177730909668 -217,17.0,18.0,-3.0756864340087167,6.218758799278971 -217,18.0,17.0,-3.0756864340087167,6.218758799278971 -217,18.0,18.0,8.958039375185187,-17.98346468163191 -217,18.0,19.0,-5.88235294117647,11.76470588235294 -217,19.0,9.0,-1.7848303152666305,3.98535828943083 -217,19.0,18.0,-5.88235294117647,11.76470588235294 -217,19.0,19.0,7.6671832564431,-15.75006417178377 -217,20.0,9.0,-5.101853820159654,10.98071411292983 -217,20.0,20.0,21.876495189895888,-45.10843276170355 -217,20.0,21.0,-16.774641369736234,34.127718648773715 -217,21.0,9.0,-2.619319553382597,5.400770303329455 -217,21.0,20.0,-16.774641369736234,34.127718648773715 -217,21.0,21.0,21.93449907537439,-43.48289181517921 -217,21.0,23.0,-2.5405381522555563,3.95440286307604 -217,22.0,14.0,-1.9683489489016612,3.976064876781356 -217,22.0,22.0,3.429754555384988,-6.965303617315433 -217,22.0,23.0,-1.4614056064833263,2.989238740534077 -217,23.0,21.0,-2.5405381522555563,3.95440286307604 -217,23.0,22.0,-1.4614056064833263,2.989238740534077 -217,23.0,23.0,5.311836702613133,-9.188263657315172 -217,23.0,24.0,-1.3098929438742493,2.287622053705056 -217,24.0,23.0,-1.3098929438742493,2.287622053705056 -217,24.0,24.0,4.495715080321987,-7.864978761969621 -217,24.0,25.0,-1.2165301194494855,1.8171440463475024 -217,24.0,26.0,-1.9692920169982515,3.760212661917064 -217,25.0,24.0,-1.2165301194494855,1.8171440463475024 -217,25.0,25.0,1.2165301194494855,-1.8171440463475024 -217,26.0,24.0,-1.9692920169982515,3.760212661917064 -217,26.0,26.0,3.652281470778589,-9.46044252232512 -217,26.0,27.0,0.0,2.608731947574922 -217,26.0,28.0,-0.99553355095268,1.881005840357816 -217,26.0,29.0,-0.6874559028276572,1.293971494797717 -217,27.0,5.0,-4.362844058012917,15.463571542897856 -217,27.0,7.0,-1.4439790613954469,4.540814658476248 -217,27.0,26.0,0.0,2.608731947574922 -217,27.0,27.0,5.806823119408364,-22.67145722159613 -217,28.0,26.0,-0.99553355095268,1.881005840357816 -217,28.0,28.0,1.9075867579849564,-3.604364401207048 -217,28.0,29.0,-0.9120532070322764,1.7233585608492326 -217,29.0,26.0,-0.6874559028276572,1.293971494797717 -217,29.0,28.0,-0.9120532070322764,1.7233585608492326 -217,29.0,29.0,1.5995091098599337,-3.0173300556469496 -218,0.0,0.0,6.765516048652632,-21.23160167089863 -218,0.0,1.0,-5.224646179885656,15.646726840803398 -218,0.0,2.0,-1.5408698687669766,5.631674830095234 -218,1.0,0.0,-5.224646179885656,15.646726840803398 -218,1.0,1.0,9.75228216552403,-30.648662892676068 -218,1.0,3.0,-1.7055303166990268,5.1973792282565086 -218,1.0,4.0,-1.1359607881738778,4.772479328281356 -218,1.0,5.0,-1.6861448807654689,5.116477495334806 -218,2.0,0.0,-1.5408698687669766,5.631674830095234 -218,2.0,2.0,1.5408698687669766,-5.611274830095233 -218,3.0,1.0,-1.7055303166990268,5.1973792282565086 -218,3.0,3.0,8.118654046873583,-31.982737906191456 -218,3.0,5.0,-6.413123730174556,22.31120356548123 -218,3.0,11.0,0.0,4.191255364806866 -218,4.0,1.0,-1.1359607881738778,4.772479328281356 -218,4.0,4.0,4.089980824135861,-12.190647245055052 -218,4.0,6.0,-2.954020035961983,7.449267916773697 -218,5.0,1.0,-1.6861448807654689,5.116477495334806 -218,5.0,3.0,-6.413123730174556,22.31120356548123 -218,5.0,5.0,22.341631269034565,-82.8291478657789 -218,5.0,6.0,-3.590210423980992,11.02611441072814 -218,5.0,7.0,-6.289308176100628,22.0125786163522 -218,5.0,8.0,0.0,4.915840805411357 -218,5.0,9.0,0.0,1.8561002591115965 -218,5.0,27.0,-4.362844058012917,15.463571542897856 -218,6.0,4.0,-2.954020035961983,7.449267916773697 -218,6.0,5.0,-3.590210423980992,11.02611441072814 -218,6.0,6.0,6.544230459942975,-18.45668232750184 -218,7.0,5.0,-6.289308176100628,22.0125786163522 -218,7.0,7.0,7.733287237496075,-26.527493274828448 -218,7.0,27.0,-1.4439790613954469,4.540814658476248 -218,8.0,5.0,0.0,4.915840805411357 -218,8.0,8.0,0.0,-18.706293706293707 -218,8.0,9.0,0.0,9.090909090909092 -218,8.0,10.0,0.0,4.807692307692308 -218,9.0,5.0,0.0,1.8561002591115965 -218,9.0,8.0,0.0,9.090909090909092 -218,9.0,9.0,13.462042814524237,-41.3837606675224 -218,9.0,16.0,-3.956039125715353,10.317447719844054 -218,9.0,19.0,-1.7848303152666305,3.98535828943083 -218,9.0,20.0,-5.101853820159654,10.98071411292983 -218,9.0,21.0,-2.619319553382597,5.400770303329455 -218,10.0,8.0,0.0,4.807692307692308 -218,10.0,10.0,0.0,-4.807692307692308 -218,11.0,3.0,0.0,4.191255364806866 -218,11.0,11.0,6.573961583776156,-24.424167659260668 -218,11.0,12.0,0.0,7.142857142857143 -218,11.0,13.0,-1.5265676088395577,3.1734252729654173 -218,11.0,14.0,-3.0953961826564296,6.097275864326261 -218,11.0,15.0,-1.9519977922801688,4.104359379111847 -218,12.0,11.0,0.0,7.142857142857143 -218,12.0,12.0,0.0,-7.142857142857143 -218,13.0,11.0,-1.5265676088395577,3.1734252729654173 -218,13.0,13.0,4.01751987283902,-5.424299332335067 -218,13.0,14.0,-2.4909522639994623,2.250874059369649 -218,14.0,11.0,-3.0953961826564296,6.097275864326261 -218,14.0,13.0,-2.4909522639994623,2.250874059369649 -218,14.0,14.0,9.365498545964757,-16.01163373210796 -218,14.0,17.0,-1.8108011504072024,3.687418931630696 -218,14.0,22.0,-1.9683489489016612,3.976064876781356 -218,15.0,11.0,-1.9519977922801688,4.104359379111847 -218,15.0,15.0,3.271064728633931,-8.94513365126506 -218,15.0,16.0,-1.3190669363537617,4.8407742721532125 -218,16.0,9.0,-3.956039125715353,10.317447719844054 -218,16.0,15.0,-1.3190669363537617,4.8407742721532125 -218,16.0,16.0,5.275106062069114,-15.158221991997266 -218,17.0,14.0,-1.8108011504072024,3.687418931630696 -218,17.0,17.0,4.886487584415919,-9.906177730909668 -218,17.0,18.0,-3.0756864340087167,6.218758799278971 -218,18.0,17.0,-3.0756864340087167,6.218758799278971 -218,18.0,18.0,8.958039375185187,-17.98346468163191 -218,18.0,19.0,-5.88235294117647,11.76470588235294 -218,19.0,9.0,-1.7848303152666305,3.98535828943083 -218,19.0,18.0,-5.88235294117647,11.76470588235294 -218,19.0,19.0,7.6671832564431,-15.75006417178377 -218,20.0,9.0,-5.101853820159654,10.98071411292983 -218,20.0,20.0,5.101853820159654,-10.98071411292983 -218,21.0,9.0,-2.619319553382597,5.400770303329455 -218,21.0,21.0,5.159857705638154,-9.355173166405494 -218,21.0,23.0,-2.5405381522555563,3.95440286307604 -218,22.0,14.0,-1.9683489489016612,3.976064876781356 -218,22.0,22.0,3.429754555384988,-6.965303617315433 -218,22.0,23.0,-1.4614056064833263,2.989238740534077 -218,23.0,21.0,-2.5405381522555563,3.95440286307604 -218,23.0,22.0,-1.4614056064833263,2.989238740534077 -218,23.0,23.0,5.311836702613133,-9.188263657315172 -218,23.0,24.0,-1.3098929438742493,2.287622053705056 -218,24.0,23.0,-1.3098929438742493,2.287622053705056 -218,24.0,24.0,4.495715080321987,-7.864978761969621 -218,24.0,25.0,-1.2165301194494855,1.8171440463475024 -218,24.0,26.0,-1.9692920169982515,3.760212661917064 -218,25.0,24.0,-1.2165301194494855,1.8171440463475024 -218,25.0,25.0,1.2165301194494855,-1.8171440463475024 -218,26.0,24.0,-1.9692920169982515,3.760212661917064 -218,26.0,26.0,3.652281470778589,-9.46044252232512 -218,26.0,27.0,0.0,2.608731947574922 -218,26.0,28.0,-0.99553355095268,1.881005840357816 -218,26.0,29.0,-0.6874559028276572,1.293971494797717 -218,27.0,5.0,-4.362844058012917,15.463571542897856 -218,27.0,7.0,-1.4439790613954469,4.540814658476248 -218,27.0,26.0,0.0,2.608731947574922 -218,27.0,27.0,5.806823119408364,-22.67145722159613 -218,28.0,26.0,-0.99553355095268,1.881005840357816 -218,28.0,28.0,1.9075867579849564,-3.604364401207048 -218,28.0,29.0,-0.9120532070322764,1.7233585608492326 -218,29.0,26.0,-0.6874559028276572,1.293971494797717 -218,29.0,28.0,-0.9120532070322764,1.7233585608492326 -218,29.0,29.0,1.5995091098599337,-3.0173300556469496 -219,0.0,0.0,1.5408698687669766,-5.611274830095233 -219,0.0,2.0,-1.5408698687669766,5.631674830095234 -219,1.0,1.0,4.527635985638374,-15.028336051872673 -219,1.0,3.0,-1.7055303166990268,5.1973792282565086 -219,1.0,4.0,-1.1359607881738778,4.772479328281356 -219,1.0,5.0,-1.6861448807654689,5.116477495334806 -219,2.0,0.0,-1.5408698687669766,5.631674830095234 -219,2.0,2.0,9.736318911079088,-29.13794745915803 -219,2.0,3.0,-8.19544904231211,23.5308726290628 -219,3.0,1.0,-1.7055303166990268,5.1973792282565086 -219,3.0,2.0,-8.19544904231211,23.5308726290628 -219,3.0,3.0,16.314103089185693,-55.509410535254254 -219,3.0,5.0,-6.413123730174556,22.31120356548123 -219,3.0,11.0,0.0,4.191255364806866 -219,4.0,1.0,-1.1359607881738778,4.772479328281356 -219,4.0,4.0,4.089980824135861,-12.190647245055052 -219,4.0,6.0,-2.954020035961983,7.449267916773697 -219,5.0,1.0,-1.6861448807654689,5.116477495334806 -219,5.0,3.0,-6.413123730174556,22.31120356548123 -219,5.0,5.0,22.341631269034565,-82.8291478657789 -219,5.0,6.0,-3.590210423980992,11.02611441072814 -219,5.0,7.0,-6.289308176100628,22.0125786163522 -219,5.0,8.0,0.0,4.915840805411357 -219,5.0,9.0,0.0,1.8561002591115965 -219,5.0,27.0,-4.362844058012917,15.463571542897856 -219,6.0,4.0,-2.954020035961983,7.449267916773697 -219,6.0,5.0,-3.590210423980992,11.02611441072814 -219,6.0,6.0,6.544230459942975,-18.45668232750184 -219,7.0,5.0,-6.289308176100628,22.0125786163522 -219,7.0,7.0,7.733287237496075,-26.527493274828448 -219,7.0,27.0,-1.4439790613954469,4.540814658476248 -219,8.0,5.0,0.0,4.915840805411357 -219,8.0,8.0,0.0,-18.706293706293707 -219,8.0,9.0,0.0,9.090909090909092 -219,8.0,10.0,0.0,4.807692307692308 -219,9.0,5.0,0.0,1.8561002591115965 -219,9.0,8.0,0.0,9.090909090909092 -219,9.0,9.0,13.462042814524237,-41.3837606675224 -219,9.0,16.0,-3.956039125715353,10.317447719844054 -219,9.0,19.0,-1.7848303152666305,3.98535828943083 -219,9.0,20.0,-5.101853820159654,10.98071411292983 -219,9.0,21.0,-2.619319553382597,5.400770303329455 -219,10.0,8.0,0.0,4.807692307692308 -219,10.0,10.0,0.0,-4.807692307692308 -219,11.0,3.0,0.0,4.191255364806866 -219,11.0,11.0,6.573961583776156,-24.424167659260668 -219,11.0,12.0,0.0,7.142857142857143 -219,11.0,13.0,-1.5265676088395577,3.1734252729654173 -219,11.0,14.0,-3.0953961826564296,6.097275864326261 -219,11.0,15.0,-1.9519977922801688,4.104359379111847 -219,12.0,11.0,0.0,7.142857142857143 -219,12.0,12.0,0.0,-7.142857142857143 -219,13.0,11.0,-1.5265676088395577,3.1734252729654173 -219,13.0,13.0,4.01751987283902,-5.424299332335067 -219,13.0,14.0,-2.4909522639994623,2.250874059369649 -219,14.0,11.0,-3.0953961826564296,6.097275864326261 -219,14.0,13.0,-2.4909522639994623,2.250874059369649 -219,14.0,14.0,9.365498545964757,-16.01163373210796 -219,14.0,17.0,-1.8108011504072024,3.687418931630696 -219,14.0,22.0,-1.9683489489016612,3.976064876781356 -219,15.0,11.0,-1.9519977922801688,4.104359379111847 -219,15.0,15.0,3.271064728633931,-8.94513365126506 -219,15.0,16.0,-1.3190669363537617,4.8407742721532125 -219,16.0,9.0,-3.956039125715353,10.317447719844054 -219,16.0,15.0,-1.3190669363537617,4.8407742721532125 -219,16.0,16.0,5.275106062069114,-15.158221991997266 -219,17.0,14.0,-1.8108011504072024,3.687418931630696 -219,17.0,17.0,1.8108011504072024,-3.687418931630696 -219,18.0,18.0,5.88235294117647,-11.76470588235294 -219,18.0,19.0,-5.88235294117647,11.76470588235294 -219,19.0,9.0,-1.7848303152666305,3.98535828943083 -219,19.0,18.0,-5.88235294117647,11.76470588235294 -219,19.0,19.0,7.6671832564431,-15.75006417178377 -219,20.0,9.0,-5.101853820159654,10.98071411292983 -219,20.0,20.0,21.876495189895888,-45.10843276170355 -219,20.0,21.0,-16.774641369736234,34.127718648773715 -219,21.0,9.0,-2.619319553382597,5.400770303329455 -219,21.0,20.0,-16.774641369736234,34.127718648773715 -219,21.0,21.0,21.93449907537439,-43.48289181517921 -219,21.0,23.0,-2.5405381522555563,3.95440286307604 -219,22.0,14.0,-1.9683489489016612,3.976064876781356 -219,22.0,22.0,3.429754555384988,-6.965303617315433 -219,22.0,23.0,-1.4614056064833263,2.989238740534077 -219,23.0,21.0,-2.5405381522555563,3.95440286307604 -219,23.0,22.0,-1.4614056064833263,2.989238740534077 -219,23.0,23.0,5.311836702613133,-9.188263657315172 -219,23.0,24.0,-1.3098929438742493,2.287622053705056 -219,24.0,23.0,-1.3098929438742493,2.287622053705056 -219,24.0,24.0,4.495715080321987,-7.864978761969621 -219,24.0,25.0,-1.2165301194494855,1.8171440463475024 -219,24.0,26.0,-1.9692920169982515,3.760212661917064 -219,25.0,24.0,-1.2165301194494855,1.8171440463475024 -219,25.0,25.0,1.2165301194494855,-1.8171440463475024 -219,26.0,24.0,-1.9692920169982515,3.760212661917064 -219,26.0,26.0,3.652281470778589,-9.46044252232512 -219,26.0,27.0,0.0,2.608731947574922 -219,26.0,28.0,-0.99553355095268,1.881005840357816 -219,26.0,29.0,-0.6874559028276572,1.293971494797717 -219,27.0,5.0,-4.362844058012917,15.463571542897856 -219,27.0,7.0,-1.4439790613954469,4.540814658476248 -219,27.0,26.0,0.0,2.608731947574922 -219,27.0,27.0,5.806823119408364,-22.67145722159613 -219,28.0,26.0,-0.99553355095268,1.881005840357816 -219,28.0,28.0,0.99553355095268,-1.881005840357816 -219,29.0,26.0,-0.6874559028276572,1.293971494797717 -219,29.0,29.0,0.6874559028276572,-1.293971494797717 -220,0.0,0.0,6.765516048652632,-21.23160167089863 -220,0.0,1.0,-5.224646179885656,15.646726840803398 -220,0.0,2.0,-1.5408698687669766,5.631674830095234 -220,1.0,0.0,-5.224646179885656,15.646726840803398 -220,1.0,1.0,9.75228216552403,-30.648662892676068 -220,1.0,3.0,-1.7055303166990268,5.1973792282565086 -220,1.0,4.0,-1.1359607881738778,4.772479328281356 -220,1.0,5.0,-1.6861448807654689,5.116477495334806 -220,2.0,0.0,-1.5408698687669766,5.631674830095234 -220,2.0,2.0,9.736318911079088,-29.13794745915803 -220,2.0,3.0,-8.19544904231211,23.5308726290628 -220,3.0,1.0,-1.7055303166990268,5.1973792282565086 -220,3.0,2.0,-8.19544904231211,23.5308726290628 -220,3.0,3.0,16.314103089185693,-55.509410535254254 -220,3.0,5.0,-6.413123730174556,22.31120356548123 -220,3.0,11.0,0.0,4.191255364806866 -220,4.0,1.0,-1.1359607881738778,4.772479328281356 -220,4.0,4.0,4.089980824135861,-12.190647245055052 -220,4.0,6.0,-2.954020035961983,7.449267916773697 -220,5.0,1.0,-1.6861448807654689,5.116477495334806 -220,5.0,3.0,-6.413123730174556,22.31120356548123 -220,5.0,5.0,22.341631269034565,-82.8291478657789 -220,5.0,6.0,-3.590210423980992,11.02611441072814 -220,5.0,7.0,-6.289308176100628,22.0125786163522 -220,5.0,8.0,0.0,4.915840805411357 -220,5.0,9.0,0.0,1.8561002591115965 -220,5.0,27.0,-4.362844058012917,15.463571542897856 -220,6.0,4.0,-2.954020035961983,7.449267916773697 -220,6.0,5.0,-3.590210423980992,11.02611441072814 -220,6.0,6.0,6.544230459942975,-18.45668232750184 -220,7.0,5.0,-6.289308176100628,22.0125786163522 -220,7.0,7.0,7.733287237496075,-26.527493274828448 -220,7.0,27.0,-1.4439790613954469,4.540814658476248 -220,8.0,5.0,0.0,4.915840805411357 -220,8.0,8.0,0.0,-18.706293706293707 -220,8.0,9.0,0.0,9.090909090909092 -220,8.0,10.0,0.0,4.807692307692308 -220,9.0,5.0,0.0,1.8561002591115965 -220,9.0,8.0,0.0,9.090909090909092 -220,9.0,9.0,13.462042814524237,-41.3837606675224 -220,9.0,16.0,-3.956039125715353,10.317447719844054 -220,9.0,19.0,-1.7848303152666305,3.98535828943083 -220,9.0,20.0,-5.101853820159654,10.98071411292983 -220,9.0,21.0,-2.619319553382597,5.400770303329455 -220,10.0,8.0,0.0,4.807692307692308 -220,10.0,10.0,0.0,-4.807692307692308 -220,11.0,3.0,0.0,4.191255364806866 -220,11.0,11.0,6.573961583776156,-24.424167659260668 -220,11.0,12.0,0.0,7.142857142857143 -220,11.0,13.0,-1.5265676088395577,3.1734252729654173 -220,11.0,14.0,-3.0953961826564296,6.097275864326261 -220,11.0,15.0,-1.9519977922801688,4.104359379111847 -220,12.0,11.0,0.0,7.142857142857143 -220,12.0,12.0,0.0,-7.142857142857143 -220,13.0,11.0,-1.5265676088395577,3.1734252729654173 -220,13.0,13.0,4.01751987283902,-5.424299332335067 -220,13.0,14.0,-2.4909522639994623,2.250874059369649 -220,14.0,11.0,-3.0953961826564296,6.097275864326261 -220,14.0,13.0,-2.4909522639994623,2.250874059369649 -220,14.0,14.0,9.365498545964757,-16.01163373210796 -220,14.0,17.0,-1.8108011504072024,3.687418931630696 -220,14.0,22.0,-1.9683489489016612,3.976064876781356 -220,15.0,11.0,-1.9519977922801688,4.104359379111847 -220,15.0,15.0,3.271064728633931,-8.94513365126506 -220,15.0,16.0,-1.3190669363537617,4.8407742721532125 -220,16.0,9.0,-3.956039125715353,10.317447719844054 -220,16.0,15.0,-1.3190669363537617,4.8407742721532125 -220,16.0,16.0,5.275106062069114,-15.158221991997266 -220,17.0,14.0,-1.8108011504072024,3.687418931630696 -220,17.0,17.0,4.886487584415919,-9.906177730909668 -220,17.0,18.0,-3.0756864340087167,6.218758799278971 -220,18.0,17.0,-3.0756864340087167,6.218758799278971 -220,18.0,18.0,8.958039375185187,-17.98346468163191 -220,18.0,19.0,-5.88235294117647,11.76470588235294 -220,19.0,9.0,-1.7848303152666305,3.98535828943083 -220,19.0,18.0,-5.88235294117647,11.76470588235294 -220,19.0,19.0,7.6671832564431,-15.75006417178377 -220,20.0,9.0,-5.101853820159654,10.98071411292983 -220,20.0,20.0,21.876495189895888,-45.10843276170355 -220,20.0,21.0,-16.774641369736234,34.127718648773715 -220,21.0,9.0,-2.619319553382597,5.400770303329455 -220,21.0,20.0,-16.774641369736234,34.127718648773715 -220,21.0,21.0,21.93449907537439,-43.48289181517921 -220,21.0,23.0,-2.5405381522555563,3.95440286307604 -220,22.0,14.0,-1.9683489489016612,3.976064876781356 -220,22.0,22.0,3.429754555384988,-6.965303617315433 -220,22.0,23.0,-1.4614056064833263,2.989238740534077 -220,23.0,21.0,-2.5405381522555563,3.95440286307604 -220,23.0,22.0,-1.4614056064833263,2.989238740534077 -220,23.0,23.0,5.311836702613133,-9.188263657315172 -220,23.0,24.0,-1.3098929438742493,2.287622053705056 -220,24.0,23.0,-1.3098929438742493,2.287622053705056 -220,24.0,24.0,4.495715080321987,-7.864978761969621 -220,24.0,25.0,-1.2165301194494855,1.8171440463475024 -220,24.0,26.0,-1.9692920169982515,3.760212661917064 -220,25.0,24.0,-1.2165301194494855,1.8171440463475024 -220,25.0,25.0,1.2165301194494855,-1.8171440463475024 -220,26.0,24.0,-1.9692920169982515,3.760212661917064 -220,26.0,26.0,3.652281470778589,-9.46044252232512 -220,26.0,27.0,0.0,2.608731947574922 -220,26.0,28.0,-0.99553355095268,1.881005840357816 -220,26.0,29.0,-0.6874559028276572,1.293971494797717 -220,27.0,5.0,-4.362844058012917,15.463571542897856 -220,27.0,7.0,-1.4439790613954469,4.540814658476248 -220,27.0,26.0,0.0,2.608731947574922 -220,27.0,27.0,5.806823119408364,-22.67145722159613 -220,28.0,26.0,-0.99553355095268,1.881005840357816 -220,28.0,28.0,1.9075867579849564,-3.604364401207048 -220,28.0,29.0,-0.9120532070322764,1.7233585608492326 -220,29.0,26.0,-0.6874559028276572,1.293971494797717 -220,29.0,28.0,-0.9120532070322764,1.7233585608492326 -220,29.0,29.0,1.5995091098599337,-3.0173300556469496 -221,0.0,0.0,6.765516048652632,-21.23160167089863 -221,0.0,1.0,-5.224646179885656,15.646726840803398 -221,0.0,2.0,-1.5408698687669766,5.631674830095234 -221,1.0,0.0,-5.224646179885656,15.646726840803398 -221,1.0,1.0,9.75228216552403,-30.648662892676068 -221,1.0,3.0,-1.7055303166990268,5.1973792282565086 -221,1.0,4.0,-1.1359607881738778,4.772479328281356 -221,1.0,5.0,-1.6861448807654689,5.116477495334806 -221,2.0,0.0,-1.5408698687669766,5.631674830095234 -221,2.0,2.0,9.736318911079088,-29.13794745915803 -221,2.0,3.0,-8.19544904231211,23.5308726290628 -221,3.0,1.0,-1.7055303166990268,5.1973792282565086 -221,3.0,2.0,-8.19544904231211,23.5308726290628 -221,3.0,3.0,16.314103089185693,-55.509410535254254 -221,3.0,5.0,-6.413123730174556,22.31120356548123 -221,3.0,11.0,0.0,4.191255364806866 -221,4.0,1.0,-1.1359607881738778,4.772479328281356 -221,4.0,4.0,4.089980824135861,-12.190647245055052 -221,4.0,6.0,-2.954020035961983,7.449267916773697 -221,5.0,1.0,-1.6861448807654689,5.116477495334806 -221,5.0,3.0,-6.413123730174556,22.31120356548123 -221,5.0,5.0,22.341631269034565,-82.8291478657789 -221,5.0,6.0,-3.590210423980992,11.02611441072814 -221,5.0,7.0,-6.289308176100628,22.0125786163522 -221,5.0,8.0,0.0,4.915840805411357 -221,5.0,9.0,0.0,1.8561002591115965 -221,5.0,27.0,-4.362844058012917,15.463571542897856 -221,6.0,4.0,-2.954020035961983,7.449267916773697 -221,6.0,5.0,-3.590210423980992,11.02611441072814 -221,6.0,6.0,6.544230459942975,-18.45668232750184 -221,7.0,5.0,-6.289308176100628,22.0125786163522 -221,7.0,7.0,7.733287237496075,-26.527493274828448 -221,7.0,27.0,-1.4439790613954469,4.540814658476248 -221,8.0,5.0,0.0,4.915840805411357 -221,8.0,8.0,0.0,-18.706293706293707 -221,8.0,9.0,0.0,9.090909090909092 -221,8.0,10.0,0.0,4.807692307692308 -221,9.0,5.0,0.0,1.8561002591115965 -221,9.0,8.0,0.0,9.090909090909092 -221,9.0,9.0,13.462042814524237,-41.3837606675224 -221,9.0,16.0,-3.956039125715353,10.317447719844054 -221,9.0,19.0,-1.7848303152666305,3.98535828943083 -221,9.0,20.0,-5.101853820159654,10.98071411292983 -221,9.0,21.0,-2.619319553382597,5.400770303329455 -221,10.0,8.0,0.0,4.807692307692308 -221,10.0,10.0,0.0,-4.807692307692308 -221,11.0,3.0,0.0,4.191255364806866 -221,11.0,11.0,5.047393974936599,-21.25074238629525 -221,11.0,12.0,0.0,7.142857142857143 -221,11.0,14.0,-3.0953961826564296,6.097275864326261 -221,11.0,15.0,-1.9519977922801688,4.104359379111847 -221,12.0,11.0,0.0,7.142857142857143 -221,12.0,12.0,0.0,-7.142857142857143 -221,13.0,13.0,2.4909522639994623,-2.250874059369649 -221,13.0,14.0,-2.4909522639994623,2.250874059369649 -221,14.0,11.0,-3.0953961826564296,6.097275864326261 -221,14.0,13.0,-2.4909522639994623,2.250874059369649 -221,14.0,14.0,7.554697395557554,-12.324214800477266 -221,14.0,22.0,-1.9683489489016612,3.976064876781356 -221,15.0,11.0,-1.9519977922801688,4.104359379111847 -221,15.0,15.0,1.9519977922801688,-4.104359379111847 -221,16.0,9.0,-3.956039125715353,10.317447719844054 -221,16.0,16.0,3.956039125715353,-10.317447719844054 -221,17.0,17.0,3.0756864340087167,-6.218758799278971 -221,17.0,18.0,-3.0756864340087167,6.218758799278971 -221,18.0,17.0,-3.0756864340087167,6.218758799278971 -221,18.0,18.0,8.958039375185187,-17.98346468163191 -221,18.0,19.0,-5.88235294117647,11.76470588235294 -221,19.0,9.0,-1.7848303152666305,3.98535828943083 -221,19.0,18.0,-5.88235294117647,11.76470588235294 -221,19.0,19.0,7.6671832564431,-15.75006417178377 -221,20.0,9.0,-5.101853820159654,10.98071411292983 -221,20.0,20.0,21.876495189895888,-45.10843276170355 -221,20.0,21.0,-16.774641369736234,34.127718648773715 -221,21.0,9.0,-2.619319553382597,5.400770303329455 -221,21.0,20.0,-16.774641369736234,34.127718648773715 -221,21.0,21.0,21.93449907537439,-43.48289181517921 -221,21.0,23.0,-2.5405381522555563,3.95440286307604 -221,22.0,14.0,-1.9683489489016612,3.976064876781356 -221,22.0,22.0,3.429754555384988,-6.965303617315433 -221,22.0,23.0,-1.4614056064833263,2.989238740534077 -221,23.0,21.0,-2.5405381522555563,3.95440286307604 -221,23.0,22.0,-1.4614056064833263,2.989238740534077 -221,23.0,23.0,5.311836702613133,-9.188263657315172 -221,23.0,24.0,-1.3098929438742493,2.287622053705056 -221,24.0,23.0,-1.3098929438742493,2.287622053705056 -221,24.0,24.0,4.495715080321987,-7.864978761969621 -221,24.0,25.0,-1.2165301194494855,1.8171440463475024 -221,24.0,26.0,-1.9692920169982515,3.760212661917064 -221,25.0,24.0,-1.2165301194494855,1.8171440463475024 -221,25.0,25.0,1.2165301194494855,-1.8171440463475024 -221,26.0,24.0,-1.9692920169982515,3.760212661917064 -221,26.0,26.0,3.652281470778589,-9.46044252232512 -221,26.0,27.0,0.0,2.608731947574922 -221,26.0,28.0,-0.99553355095268,1.881005840357816 -221,26.0,29.0,-0.6874559028276572,1.293971494797717 -221,27.0,5.0,-4.362844058012917,15.463571542897856 -221,27.0,7.0,-1.4439790613954469,4.540814658476248 -221,27.0,26.0,0.0,2.608731947574922 -221,27.0,27.0,5.806823119408364,-22.67145722159613 -221,28.0,26.0,-0.99553355095268,1.881005840357816 -221,28.0,28.0,1.9075867579849564,-3.604364401207048 -221,28.0,29.0,-0.9120532070322764,1.7233585608492326 -221,29.0,26.0,-0.6874559028276572,1.293971494797717 -221,29.0,28.0,-0.9120532070322764,1.7233585608492326 -221,29.0,29.0,1.5995091098599337,-3.0173300556469496 -222,0.0,0.0,6.765516048652632,-21.23160167089863 -222,0.0,1.0,-5.224646179885656,15.646726840803398 -222,0.0,2.0,-1.5408698687669766,5.631674830095234 -222,1.0,0.0,-5.224646179885656,15.646726840803398 -222,1.0,1.0,9.75228216552403,-30.648662892676068 -222,1.0,3.0,-1.7055303166990268,5.1973792282565086 -222,1.0,4.0,-1.1359607881738778,4.772479328281356 -222,1.0,5.0,-1.6861448807654689,5.116477495334806 -222,2.0,0.0,-1.5408698687669766,5.631674830095234 -222,2.0,2.0,9.736318911079088,-29.13794745915803 -222,2.0,3.0,-8.19544904231211,23.5308726290628 -222,3.0,1.0,-1.7055303166990268,5.1973792282565086 -222,3.0,2.0,-8.19544904231211,23.5308726290628 -222,3.0,3.0,16.314103089185693,-55.509410535254254 -222,3.0,5.0,-6.413123730174556,22.31120356548123 -222,3.0,11.0,0.0,4.191255364806866 -222,4.0,1.0,-1.1359607881738778,4.772479328281356 -222,4.0,4.0,4.089980824135861,-12.190647245055052 -222,4.0,6.0,-2.954020035961983,7.449267916773697 -222,5.0,1.0,-1.6861448807654689,5.116477495334806 -222,5.0,3.0,-6.413123730174556,22.31120356548123 -222,5.0,5.0,22.341631269034565,-82.8291478657789 -222,5.0,6.0,-3.590210423980992,11.02611441072814 -222,5.0,7.0,-6.289308176100628,22.0125786163522 -222,5.0,8.0,0.0,4.915840805411357 -222,5.0,9.0,0.0,1.8561002591115965 -222,5.0,27.0,-4.362844058012917,15.463571542897856 -222,6.0,4.0,-2.954020035961983,7.449267916773697 -222,6.0,5.0,-3.590210423980992,11.02611441072814 -222,6.0,6.0,6.544230459942975,-18.45668232750184 -222,7.0,5.0,-6.289308176100628,22.0125786163522 -222,7.0,7.0,7.733287237496075,-26.527493274828448 -222,7.0,27.0,-1.4439790613954469,4.540814658476248 -222,8.0,5.0,0.0,4.915840805411357 -222,8.0,8.0,0.0,-18.706293706293707 -222,8.0,9.0,0.0,9.090909090909092 -222,8.0,10.0,0.0,4.807692307692308 -222,9.0,5.0,0.0,1.8561002591115965 -222,9.0,8.0,0.0,9.090909090909092 -222,9.0,9.0,13.462042814524237,-41.3837606675224 -222,9.0,16.0,-3.956039125715353,10.317447719844054 -222,9.0,19.0,-1.7848303152666305,3.98535828943083 -222,9.0,20.0,-5.101853820159654,10.98071411292983 -222,9.0,21.0,-2.619319553382597,5.400770303329455 -222,10.0,8.0,0.0,4.807692307692308 -222,10.0,10.0,0.0,-4.807692307692308 -222,11.0,3.0,0.0,4.191255364806866 -222,11.0,11.0,6.573961583776156,-24.424167659260668 -222,11.0,12.0,0.0,7.142857142857143 -222,11.0,13.0,-1.5265676088395577,3.1734252729654173 -222,11.0,14.0,-3.0953961826564296,6.097275864326261 -222,11.0,15.0,-1.9519977922801688,4.104359379111847 -222,12.0,11.0,0.0,7.142857142857143 -222,12.0,12.0,0.0,-7.142857142857143 -222,13.0,11.0,-1.5265676088395577,3.1734252729654173 -222,13.0,13.0,4.01751987283902,-5.424299332335067 -222,13.0,14.0,-2.4909522639994623,2.250874059369649 -222,14.0,11.0,-3.0953961826564296,6.097275864326261 -222,14.0,13.0,-2.4909522639994623,2.250874059369649 -222,14.0,14.0,9.365498545964757,-16.01163373210796 -222,14.0,17.0,-1.8108011504072024,3.687418931630696 -222,14.0,22.0,-1.9683489489016612,3.976064876781356 -222,15.0,11.0,-1.9519977922801688,4.104359379111847 -222,15.0,15.0,3.271064728633931,-8.94513365126506 -222,15.0,16.0,-1.3190669363537617,4.8407742721532125 -222,16.0,9.0,-3.956039125715353,10.317447719844054 -222,16.0,15.0,-1.3190669363537617,4.8407742721532125 -222,16.0,16.0,5.275106062069114,-15.158221991997266 -222,17.0,14.0,-1.8108011504072024,3.687418931630696 -222,17.0,17.0,4.886487584415919,-9.906177730909668 -222,17.0,18.0,-3.0756864340087167,6.218758799278971 -222,18.0,17.0,-3.0756864340087167,6.218758799278971 -222,18.0,18.0,8.958039375185187,-17.98346468163191 -222,18.0,19.0,-5.88235294117647,11.76470588235294 -222,19.0,9.0,-1.7848303152666305,3.98535828943083 -222,19.0,18.0,-5.88235294117647,11.76470588235294 -222,19.0,19.0,7.6671832564431,-15.75006417178377 -222,20.0,9.0,-5.101853820159654,10.98071411292983 -222,20.0,20.0,21.876495189895888,-45.10843276170355 -222,20.0,21.0,-16.774641369736234,34.127718648773715 -222,21.0,9.0,-2.619319553382597,5.400770303329455 -222,21.0,20.0,-16.774641369736234,34.127718648773715 -222,21.0,21.0,21.93449907537439,-43.48289181517921 -222,21.0,23.0,-2.5405381522555563,3.95440286307604 -222,22.0,14.0,-1.9683489489016612,3.976064876781356 -222,22.0,22.0,3.429754555384988,-6.965303617315433 -222,22.0,23.0,-1.4614056064833263,2.989238740534077 -222,23.0,21.0,-2.5405381522555563,3.95440286307604 -222,23.0,22.0,-1.4614056064833263,2.989238740534077 -222,23.0,23.0,5.311836702613133,-9.188263657315172 -222,23.0,24.0,-1.3098929438742493,2.287622053705056 -222,24.0,23.0,-1.3098929438742493,2.287622053705056 -222,24.0,24.0,4.495715080321987,-7.864978761969621 -222,24.0,25.0,-1.2165301194494855,1.8171440463475024 -222,24.0,26.0,-1.9692920169982515,3.760212661917064 -222,25.0,24.0,-1.2165301194494855,1.8171440463475024 -222,25.0,25.0,1.2165301194494855,-1.8171440463475024 -222,26.0,24.0,-1.9692920169982515,3.760212661917064 -222,26.0,26.0,3.652281470778589,-9.46044252232512 -222,26.0,27.0,0.0,2.608731947574922 -222,26.0,28.0,-0.99553355095268,1.881005840357816 -222,26.0,29.0,-0.6874559028276572,1.293971494797717 -222,27.0,5.0,-4.362844058012917,15.463571542897856 -222,27.0,7.0,-1.4439790613954469,4.540814658476248 -222,27.0,26.0,0.0,2.608731947574922 -222,27.0,27.0,5.806823119408364,-22.67145722159613 -222,28.0,26.0,-0.99553355095268,1.881005840357816 -222,28.0,28.0,1.9075867579849564,-3.604364401207048 -222,28.0,29.0,-0.9120532070322764,1.7233585608492326 -222,29.0,26.0,-0.6874559028276572,1.293971494797717 -222,29.0,28.0,-0.9120532070322764,1.7233585608492326 -222,29.0,29.0,1.5995091098599337,-3.0173300556469496 -223,0.0,0.0,6.765516048652632,-21.23160167089863 -223,0.0,1.0,-5.224646179885656,15.646726840803398 -223,0.0,2.0,-1.5408698687669766,5.631674830095234 -223,1.0,0.0,-5.224646179885656,15.646726840803398 -223,1.0,1.0,9.75228216552403,-30.648662892676068 -223,1.0,3.0,-1.7055303166990268,5.1973792282565086 -223,1.0,4.0,-1.1359607881738778,4.772479328281356 -223,1.0,5.0,-1.6861448807654689,5.116477495334806 -223,2.0,0.0,-1.5408698687669766,5.631674830095234 -223,2.0,2.0,9.736318911079088,-29.13794745915803 -223,2.0,3.0,-8.19544904231211,23.5308726290628 -223,3.0,1.0,-1.7055303166990268,5.1973792282565086 -223,3.0,2.0,-8.19544904231211,23.5308726290628 -223,3.0,3.0,16.314103089185693,-55.509410535254254 -223,3.0,5.0,-6.413123730174556,22.31120356548123 -223,3.0,11.0,0.0,4.191255364806866 -223,4.0,1.0,-1.1359607881738778,4.772479328281356 -223,4.0,4.0,4.089980824135861,-12.190647245055052 -223,4.0,6.0,-2.954020035961983,7.449267916773697 -223,5.0,1.0,-1.6861448807654689,5.116477495334806 -223,5.0,3.0,-6.413123730174556,22.31120356548123 -223,5.0,5.0,22.341631269034565,-82.8291478657789 -223,5.0,6.0,-3.590210423980992,11.02611441072814 -223,5.0,7.0,-6.289308176100628,22.0125786163522 -223,5.0,8.0,0.0,4.915840805411357 -223,5.0,9.0,0.0,1.8561002591115965 -223,5.0,27.0,-4.362844058012917,15.463571542897856 -223,6.0,4.0,-2.954020035961983,7.449267916773697 -223,6.0,5.0,-3.590210423980992,11.02611441072814 -223,6.0,6.0,6.544230459942975,-18.45668232750184 -223,7.0,5.0,-6.289308176100628,22.0125786163522 -223,7.0,7.0,7.733287237496075,-26.527493274828448 -223,7.0,27.0,-1.4439790613954469,4.540814658476248 -223,8.0,5.0,0.0,4.915840805411357 -223,8.0,8.0,0.0,-18.706293706293707 -223,8.0,9.0,0.0,9.090909090909092 -223,8.0,10.0,0.0,4.807692307692308 -223,9.0,5.0,0.0,1.8561002591115965 -223,9.0,8.0,0.0,9.090909090909092 -223,9.0,9.0,13.462042814524237,-41.3837606675224 -223,9.0,16.0,-3.956039125715353,10.317447719844054 -223,9.0,19.0,-1.7848303152666305,3.98535828943083 -223,9.0,20.0,-5.101853820159654,10.98071411292983 -223,9.0,21.0,-2.619319553382597,5.400770303329455 -223,10.0,8.0,0.0,4.807692307692308 -223,10.0,10.0,0.0,-4.807692307692308 -223,11.0,3.0,0.0,4.191255364806866 -223,11.0,11.0,6.573961583776156,-24.424167659260668 -223,11.0,12.0,0.0,7.142857142857143 -223,11.0,13.0,-1.5265676088395577,3.1734252729654173 -223,11.0,14.0,-3.0953961826564296,6.097275864326261 -223,11.0,15.0,-1.9519977922801688,4.104359379111847 -223,12.0,11.0,0.0,7.142857142857143 -223,12.0,12.0,0.0,-7.142857142857143 -223,13.0,11.0,-1.5265676088395577,3.1734252729654173 -223,13.0,13.0,4.01751987283902,-5.424299332335067 -223,13.0,14.0,-2.4909522639994623,2.250874059369649 -223,14.0,11.0,-3.0953961826564296,6.097275864326261 -223,14.0,13.0,-2.4909522639994623,2.250874059369649 -223,14.0,14.0,9.365498545964757,-16.01163373210796 -223,14.0,17.0,-1.8108011504072024,3.687418931630696 -223,14.0,22.0,-1.9683489489016612,3.976064876781356 -223,15.0,11.0,-1.9519977922801688,4.104359379111847 -223,15.0,15.0,3.271064728633931,-8.94513365126506 -223,15.0,16.0,-1.3190669363537617,4.8407742721532125 -223,16.0,9.0,-3.956039125715353,10.317447719844054 -223,16.0,15.0,-1.3190669363537617,4.8407742721532125 -223,16.0,16.0,5.275106062069114,-15.158221991997266 -223,17.0,14.0,-1.8108011504072024,3.687418931630696 -223,17.0,17.0,4.886487584415919,-9.906177730909668 -223,17.0,18.0,-3.0756864340087167,6.218758799278971 -223,18.0,17.0,-3.0756864340087167,6.218758799278971 -223,18.0,18.0,8.958039375185187,-17.98346468163191 -223,18.0,19.0,-5.88235294117647,11.76470588235294 -223,19.0,9.0,-1.7848303152666305,3.98535828943083 -223,19.0,18.0,-5.88235294117647,11.76470588235294 -223,19.0,19.0,7.6671832564431,-15.75006417178377 -223,20.0,9.0,-5.101853820159654,10.98071411292983 -223,20.0,20.0,21.876495189895888,-45.10843276170355 -223,20.0,21.0,-16.774641369736234,34.127718648773715 -223,21.0,9.0,-2.619319553382597,5.400770303329455 -223,21.0,20.0,-16.774641369736234,34.127718648773715 -223,21.0,21.0,21.93449907537439,-43.48289181517921 -223,21.0,23.0,-2.5405381522555563,3.95440286307604 -223,22.0,14.0,-1.9683489489016612,3.976064876781356 -223,22.0,22.0,3.429754555384988,-6.965303617315433 -223,22.0,23.0,-1.4614056064833263,2.989238740534077 -223,23.0,21.0,-2.5405381522555563,3.95440286307604 -223,23.0,22.0,-1.4614056064833263,2.989238740534077 -223,23.0,23.0,5.311836702613133,-9.188263657315172 -223,23.0,24.0,-1.3098929438742493,2.287622053705056 -223,24.0,23.0,-1.3098929438742493,2.287622053705056 -223,24.0,24.0,4.495715080321987,-7.864978761969621 -223,24.0,25.0,-1.2165301194494855,1.8171440463475024 -223,24.0,26.0,-1.9692920169982515,3.760212661917064 -223,25.0,24.0,-1.2165301194494855,1.8171440463475024 -223,25.0,25.0,1.2165301194494855,-1.8171440463475024 -223,26.0,24.0,-1.9692920169982515,3.760212661917064 -223,26.0,26.0,3.652281470778589,-9.46044252232512 -223,26.0,27.0,0.0,2.608731947574922 -223,26.0,28.0,-0.99553355095268,1.881005840357816 -223,26.0,29.0,-0.6874559028276572,1.293971494797717 -223,27.0,5.0,-4.362844058012917,15.463571542897856 -223,27.0,7.0,-1.4439790613954469,4.540814658476248 -223,27.0,26.0,0.0,2.608731947574922 -223,27.0,27.0,5.806823119408364,-22.67145722159613 -223,28.0,26.0,-0.99553355095268,1.881005840357816 -223,28.0,28.0,1.9075867579849564,-3.604364401207048 -223,28.0,29.0,-0.9120532070322764,1.7233585608492326 -223,29.0,26.0,-0.6874559028276572,1.293971494797717 -223,29.0,28.0,-0.9120532070322764,1.7233585608492326 -223,29.0,29.0,1.5995091098599337,-3.0173300556469496 -224,0.0,0.0,1.5408698687669766,-5.611274830095233 -224,0.0,2.0,-1.5408698687669766,5.631674830095234 -224,1.0,1.0,4.527635985638374,-15.028336051872673 -224,1.0,3.0,-1.7055303166990268,5.1973792282565086 -224,1.0,4.0,-1.1359607881738778,4.772479328281356 -224,1.0,5.0,-1.6861448807654689,5.116477495334806 -224,2.0,0.0,-1.5408698687669766,5.631674830095234 -224,2.0,2.0,9.736318911079088,-29.13794745915803 -224,2.0,3.0,-8.19544904231211,23.5308726290628 -224,3.0,1.0,-1.7055303166990268,5.1973792282565086 -224,3.0,2.0,-8.19544904231211,23.5308726290628 -224,3.0,3.0,16.314103089185693,-55.509410535254254 -224,3.0,5.0,-6.413123730174556,22.31120356548123 -224,3.0,11.0,0.0,4.191255364806866 -224,4.0,1.0,-1.1359607881738778,4.772479328281356 -224,4.0,4.0,4.089980824135861,-12.190647245055052 -224,4.0,6.0,-2.954020035961983,7.449267916773697 -224,5.0,1.0,-1.6861448807654689,5.116477495334806 -224,5.0,3.0,-6.413123730174556,22.31120356548123 -224,5.0,5.0,22.341631269034565,-82.8291478657789 -224,5.0,6.0,-3.590210423980992,11.02611441072814 -224,5.0,7.0,-6.289308176100628,22.0125786163522 -224,5.0,8.0,0.0,4.915840805411357 -224,5.0,9.0,0.0,1.8561002591115965 -224,5.0,27.0,-4.362844058012917,15.463571542897856 -224,6.0,4.0,-2.954020035961983,7.449267916773697 -224,6.0,5.0,-3.590210423980992,11.02611441072814 -224,6.0,6.0,6.544230459942975,-18.45668232750184 -224,7.0,5.0,-6.289308176100628,22.0125786163522 -224,7.0,7.0,7.733287237496075,-26.527493274828448 -224,7.0,27.0,-1.4439790613954469,4.540814658476248 -224,8.0,5.0,0.0,4.915840805411357 -224,8.0,8.0,0.0,-18.706293706293707 -224,8.0,9.0,0.0,9.090909090909092 -224,8.0,10.0,0.0,4.807692307692308 -224,9.0,5.0,0.0,1.8561002591115965 -224,9.0,8.0,0.0,9.090909090909092 -224,9.0,9.0,13.462042814524237,-41.3837606675224 -224,9.0,16.0,-3.956039125715353,10.317447719844054 -224,9.0,19.0,-1.7848303152666305,3.98535828943083 -224,9.0,20.0,-5.101853820159654,10.98071411292983 -224,9.0,21.0,-2.619319553382597,5.400770303329455 -224,10.0,8.0,0.0,4.807692307692308 -224,10.0,10.0,0.0,-4.807692307692308 -224,11.0,3.0,0.0,4.191255364806866 -224,11.0,11.0,5.047393974936599,-21.25074238629525 -224,11.0,12.0,0.0,7.142857142857143 -224,11.0,14.0,-3.0953961826564296,6.097275864326261 -224,11.0,15.0,-1.9519977922801688,4.104359379111847 -224,12.0,11.0,0.0,7.142857142857143 -224,12.0,12.0,0.0,-7.142857142857143 -224,13.0,13.0,2.4909522639994623,-2.250874059369649 -224,13.0,14.0,-2.4909522639994623,2.250874059369649 -224,14.0,11.0,-3.0953961826564296,6.097275864326261 -224,14.0,13.0,-2.4909522639994623,2.250874059369649 -224,14.0,14.0,9.365498545964757,-16.01163373210796 -224,14.0,17.0,-1.8108011504072024,3.687418931630696 -224,14.0,22.0,-1.9683489489016612,3.976064876781356 -224,15.0,11.0,-1.9519977922801688,4.104359379111847 -224,15.0,15.0,3.271064728633931,-8.94513365126506 -224,15.0,16.0,-1.3190669363537617,4.8407742721532125 -224,16.0,9.0,-3.956039125715353,10.317447719844054 -224,16.0,15.0,-1.3190669363537617,4.8407742721532125 -224,16.0,16.0,5.275106062069114,-15.158221991997266 -224,17.0,14.0,-1.8108011504072024,3.687418931630696 -224,17.0,17.0,4.886487584415919,-9.906177730909668 -224,17.0,18.0,-3.0756864340087167,6.218758799278971 -224,18.0,17.0,-3.0756864340087167,6.218758799278971 -224,18.0,18.0,8.958039375185187,-17.98346468163191 -224,18.0,19.0,-5.88235294117647,11.76470588235294 -224,19.0,9.0,-1.7848303152666305,3.98535828943083 -224,19.0,18.0,-5.88235294117647,11.76470588235294 -224,19.0,19.0,7.6671832564431,-15.75006417178377 -224,20.0,9.0,-5.101853820159654,10.98071411292983 -224,20.0,20.0,21.876495189895888,-45.10843276170355 -224,20.0,21.0,-16.774641369736234,34.127718648773715 -224,21.0,9.0,-2.619319553382597,5.400770303329455 -224,21.0,20.0,-16.774641369736234,34.127718648773715 -224,21.0,21.0,21.93449907537439,-43.48289181517921 -224,21.0,23.0,-2.5405381522555563,3.95440286307604 -224,22.0,14.0,-1.9683489489016612,3.976064876781356 -224,22.0,22.0,3.429754555384988,-6.965303617315433 -224,22.0,23.0,-1.4614056064833263,2.989238740534077 -224,23.0,21.0,-2.5405381522555563,3.95440286307604 -224,23.0,22.0,-1.4614056064833263,2.989238740534077 -224,23.0,23.0,5.311836702613133,-9.188263657315172 -224,23.0,24.0,-1.3098929438742493,2.287622053705056 -224,24.0,23.0,-1.3098929438742493,2.287622053705056 -224,24.0,24.0,4.495715080321987,-7.864978761969621 -224,24.0,25.0,-1.2165301194494855,1.8171440463475024 -224,24.0,26.0,-1.9692920169982515,3.760212661917064 -224,25.0,24.0,-1.2165301194494855,1.8171440463475024 -224,25.0,25.0,1.2165301194494855,-1.8171440463475024 -224,26.0,24.0,-1.9692920169982515,3.760212661917064 -224,26.0,26.0,3.652281470778589,-9.46044252232512 -224,26.0,27.0,0.0,2.608731947574922 -224,26.0,28.0,-0.99553355095268,1.881005840357816 -224,26.0,29.0,-0.6874559028276572,1.293971494797717 -224,27.0,5.0,-4.362844058012917,15.463571542897856 -224,27.0,7.0,-1.4439790613954469,4.540814658476248 -224,27.0,26.0,0.0,2.608731947574922 -224,27.0,27.0,5.806823119408364,-22.67145722159613 -224,28.0,26.0,-0.99553355095268,1.881005840357816 -224,28.0,28.0,1.9075867579849564,-3.604364401207048 -224,28.0,29.0,-0.9120532070322764,1.7233585608492326 -224,29.0,26.0,-0.6874559028276572,1.293971494797717 -224,29.0,28.0,-0.9120532070322764,1.7233585608492326 -224,29.0,29.0,1.5995091098599337,-3.0173300556469496 -225,0.0,0.0,6.765516048652632,-21.23160167089863 -225,0.0,1.0,-5.224646179885656,15.646726840803398 -225,0.0,2.0,-1.5408698687669766,5.631674830095234 -225,1.0,0.0,-5.224646179885656,15.646726840803398 -225,1.0,1.0,9.75228216552403,-30.648662892676068 -225,1.0,3.0,-1.7055303166990268,5.1973792282565086 -225,1.0,4.0,-1.1359607881738778,4.772479328281356 -225,1.0,5.0,-1.6861448807654689,5.116477495334806 -225,2.0,0.0,-1.5408698687669766,5.631674830095234 -225,2.0,2.0,9.736318911079088,-29.13794745915803 -225,2.0,3.0,-8.19544904231211,23.5308726290628 -225,3.0,1.0,-1.7055303166990268,5.1973792282565086 -225,3.0,2.0,-8.19544904231211,23.5308726290628 -225,3.0,3.0,16.314103089185693,-55.509410535254254 -225,3.0,5.0,-6.413123730174556,22.31120356548123 -225,3.0,11.0,0.0,4.191255364806866 -225,4.0,1.0,-1.1359607881738778,4.772479328281356 -225,4.0,4.0,4.089980824135861,-12.190647245055052 -225,4.0,6.0,-2.954020035961983,7.449267916773697 -225,5.0,1.0,-1.6861448807654689,5.116477495334806 -225,5.0,3.0,-6.413123730174556,22.31120356548123 -225,5.0,5.0,22.341631269034565,-82.8291478657789 -225,5.0,6.0,-3.590210423980992,11.02611441072814 -225,5.0,7.0,-6.289308176100628,22.0125786163522 -225,5.0,8.0,0.0,4.915840805411357 -225,5.0,9.0,0.0,1.8561002591115965 -225,5.0,27.0,-4.362844058012917,15.463571542897856 -225,6.0,4.0,-2.954020035961983,7.449267916773697 -225,6.0,5.0,-3.590210423980992,11.02611441072814 -225,6.0,6.0,6.544230459942975,-18.45668232750184 -225,7.0,5.0,-6.289308176100628,22.0125786163522 -225,7.0,7.0,7.733287237496075,-26.527493274828448 -225,7.0,27.0,-1.4439790613954469,4.540814658476248 -225,8.0,5.0,0.0,4.915840805411357 -225,8.0,8.0,0.0,-18.706293706293707 -225,8.0,9.0,0.0,9.090909090909092 -225,8.0,10.0,0.0,4.807692307692308 -225,9.0,5.0,0.0,1.8561002591115965 -225,9.0,8.0,0.0,9.090909090909092 -225,9.0,9.0,13.462042814524237,-41.3837606675224 -225,9.0,16.0,-3.956039125715353,10.317447719844054 -225,9.0,19.0,-1.7848303152666305,3.98535828943083 -225,9.0,20.0,-5.101853820159654,10.98071411292983 -225,9.0,21.0,-2.619319553382597,5.400770303329455 -225,10.0,8.0,0.0,4.807692307692308 -225,10.0,10.0,0.0,-4.807692307692308 -225,11.0,3.0,0.0,4.191255364806866 -225,11.0,11.0,6.573961583776156,-24.424167659260668 -225,11.0,12.0,0.0,7.142857142857143 -225,11.0,13.0,-1.5265676088395577,3.1734252729654173 -225,11.0,14.0,-3.0953961826564296,6.097275864326261 -225,11.0,15.0,-1.9519977922801688,4.104359379111847 -225,12.0,11.0,0.0,7.142857142857143 -225,12.0,12.0,0.0,-7.142857142857143 -225,13.0,11.0,-1.5265676088395577,3.1734252729654173 -225,13.0,13.0,4.01751987283902,-5.424299332335067 -225,13.0,14.0,-2.4909522639994623,2.250874059369649 -225,14.0,11.0,-3.0953961826564296,6.097275864326261 -225,14.0,13.0,-2.4909522639994623,2.250874059369649 -225,14.0,14.0,9.365498545964757,-16.01163373210796 -225,14.0,17.0,-1.8108011504072024,3.687418931630696 -225,14.0,22.0,-1.9683489489016612,3.976064876781356 -225,15.0,11.0,-1.9519977922801688,4.104359379111847 -225,15.0,15.0,3.271064728633931,-8.94513365126506 -225,15.0,16.0,-1.3190669363537617,4.8407742721532125 -225,16.0,9.0,-3.956039125715353,10.317447719844054 -225,16.0,15.0,-1.3190669363537617,4.8407742721532125 -225,16.0,16.0,5.275106062069114,-15.158221991997266 -225,17.0,14.0,-1.8108011504072024,3.687418931630696 -225,17.0,17.0,4.886487584415919,-9.906177730909668 -225,17.0,18.0,-3.0756864340087167,6.218758799278971 -225,18.0,17.0,-3.0756864340087167,6.218758799278971 -225,18.0,18.0,8.958039375185187,-17.98346468163191 -225,18.0,19.0,-5.88235294117647,11.76470588235294 -225,19.0,9.0,-1.7848303152666305,3.98535828943083 -225,19.0,18.0,-5.88235294117647,11.76470588235294 -225,19.0,19.0,7.6671832564431,-15.75006417178377 -225,20.0,9.0,-5.101853820159654,10.98071411292983 -225,20.0,20.0,21.876495189895888,-45.10843276170355 -225,20.0,21.0,-16.774641369736234,34.127718648773715 -225,21.0,9.0,-2.619319553382597,5.400770303329455 -225,21.0,20.0,-16.774641369736234,34.127718648773715 -225,21.0,21.0,21.93449907537439,-43.48289181517921 -225,21.0,23.0,-2.5405381522555563,3.95440286307604 -225,22.0,14.0,-1.9683489489016612,3.976064876781356 -225,22.0,22.0,3.429754555384988,-6.965303617315433 -225,22.0,23.0,-1.4614056064833263,2.989238740534077 -225,23.0,21.0,-2.5405381522555563,3.95440286307604 -225,23.0,22.0,-1.4614056064833263,2.989238740534077 -225,23.0,23.0,5.311836702613133,-9.188263657315172 -225,23.0,24.0,-1.3098929438742493,2.287622053705056 -225,24.0,23.0,-1.3098929438742493,2.287622053705056 -225,24.0,24.0,2.526423063323735,-4.104766100052558 -225,24.0,25.0,-1.2165301194494855,1.8171440463475024 -225,25.0,24.0,-1.2165301194494855,1.8171440463475024 -225,25.0,25.0,1.2165301194494855,-1.8171440463475024 -225,26.0,26.0,1.6829894537803372,-5.700229860408058 -225,26.0,27.0,0.0,2.608731947574922 -225,26.0,28.0,-0.99553355095268,1.881005840357816 -225,26.0,29.0,-0.6874559028276572,1.293971494797717 -225,27.0,5.0,-4.362844058012917,15.463571542897856 -225,27.0,7.0,-1.4439790613954469,4.540814658476248 -225,27.0,26.0,0.0,2.608731947574922 -225,27.0,27.0,5.806823119408364,-22.67145722159613 -225,28.0,26.0,-0.99553355095268,1.881005840357816 -225,28.0,28.0,1.9075867579849564,-3.604364401207048 -225,28.0,29.0,-0.9120532070322764,1.7233585608492326 -225,29.0,26.0,-0.6874559028276572,1.293971494797717 -225,29.0,28.0,-0.9120532070322764,1.7233585608492326 -225,29.0,29.0,1.5995091098599337,-3.0173300556469496 -226,0.0,0.0,6.765516048652632,-21.23160167089863 -226,0.0,1.0,-5.224646179885656,15.646726840803398 -226,0.0,2.0,-1.5408698687669766,5.631674830095234 -226,1.0,0.0,-5.224646179885656,15.646726840803398 -226,1.0,1.0,8.066137284758561,-25.55088539734126 -226,1.0,3.0,-1.7055303166990268,5.1973792282565086 -226,1.0,4.0,-1.1359607881738778,4.772479328281356 -226,2.0,0.0,-1.5408698687669766,5.631674830095234 -226,2.0,2.0,9.736318911079088,-29.13794745915803 -226,2.0,3.0,-8.19544904231211,23.5308726290628 -226,3.0,1.0,-1.7055303166990268,5.1973792282565086 -226,3.0,2.0,-8.19544904231211,23.5308726290628 -226,3.0,3.0,16.314103089185693,-55.509410535254254 -226,3.0,5.0,-6.413123730174556,22.31120356548123 -226,3.0,11.0,0.0,4.191255364806866 -226,4.0,1.0,-1.1359607881738778,4.772479328281356 -226,4.0,4.0,4.089980824135861,-12.190647245055052 -226,4.0,6.0,-2.954020035961983,7.449267916773697 -226,5.0,3.0,-6.413123730174556,22.31120356548123 -226,5.0,5.0,20.655486388269097,-77.7313703704441 -226,5.0,6.0,-3.590210423980992,11.02611441072814 -226,5.0,7.0,-6.289308176100628,22.0125786163522 -226,5.0,8.0,0.0,4.915840805411357 -226,5.0,9.0,0.0,1.8561002591115965 -226,5.0,27.0,-4.362844058012917,15.463571542897856 -226,6.0,4.0,-2.954020035961983,7.449267916773697 -226,6.0,5.0,-3.590210423980992,11.02611441072814 -226,6.0,6.0,6.544230459942975,-18.45668232750184 -226,7.0,5.0,-6.289308176100628,22.0125786163522 -226,7.0,7.0,6.289308176100628,-22.0080786163522 -226,8.0,5.0,0.0,4.915840805411357 -226,8.0,8.0,0.0,-18.706293706293707 -226,8.0,9.0,0.0,9.090909090909092 -226,8.0,10.0,0.0,4.807692307692308 -226,9.0,5.0,0.0,1.8561002591115965 -226,9.0,8.0,0.0,9.090909090909092 -226,9.0,9.0,13.462042814524237,-41.3837606675224 -226,9.0,16.0,-3.956039125715353,10.317447719844054 -226,9.0,19.0,-1.7848303152666305,3.98535828943083 -226,9.0,20.0,-5.101853820159654,10.98071411292983 -226,9.0,21.0,-2.619319553382597,5.400770303329455 -226,10.0,8.0,0.0,4.807692307692308 -226,10.0,10.0,0.0,-4.807692307692308 -226,11.0,3.0,0.0,4.191255364806866 -226,11.0,11.0,5.047393974936599,-21.25074238629525 -226,11.0,12.0,0.0,7.142857142857143 -226,11.0,14.0,-3.0953961826564296,6.097275864326261 -226,11.0,15.0,-1.9519977922801688,4.104359379111847 -226,12.0,11.0,0.0,7.142857142857143 -226,12.0,12.0,0.0,-7.142857142857143 -226,13.0,13.0,2.4909522639994623,-2.250874059369649 -226,13.0,14.0,-2.4909522639994623,2.250874059369649 -226,14.0,11.0,-3.0953961826564296,6.097275864326261 -226,14.0,13.0,-2.4909522639994623,2.250874059369649 -226,14.0,14.0,9.365498545964757,-16.01163373210796 -226,14.0,17.0,-1.8108011504072024,3.687418931630696 -226,14.0,22.0,-1.9683489489016612,3.976064876781356 -226,15.0,11.0,-1.9519977922801688,4.104359379111847 -226,15.0,15.0,3.271064728633931,-8.94513365126506 -226,15.0,16.0,-1.3190669363537617,4.8407742721532125 -226,16.0,9.0,-3.956039125715353,10.317447719844054 -226,16.0,15.0,-1.3190669363537617,4.8407742721532125 -226,16.0,16.0,5.275106062069114,-15.158221991997266 -226,17.0,14.0,-1.8108011504072024,3.687418931630696 -226,17.0,17.0,4.886487584415919,-9.906177730909668 -226,17.0,18.0,-3.0756864340087167,6.218758799278971 -226,18.0,17.0,-3.0756864340087167,6.218758799278971 -226,18.0,18.0,8.958039375185187,-17.98346468163191 -226,18.0,19.0,-5.88235294117647,11.76470588235294 -226,19.0,9.0,-1.7848303152666305,3.98535828943083 -226,19.0,18.0,-5.88235294117647,11.76470588235294 -226,19.0,19.0,7.6671832564431,-15.75006417178377 -226,20.0,9.0,-5.101853820159654,10.98071411292983 -226,20.0,20.0,21.876495189895888,-45.10843276170355 -226,20.0,21.0,-16.774641369736234,34.127718648773715 -226,21.0,9.0,-2.619319553382597,5.400770303329455 -226,21.0,20.0,-16.774641369736234,34.127718648773715 -226,21.0,21.0,21.93449907537439,-43.48289181517921 -226,21.0,23.0,-2.5405381522555563,3.95440286307604 -226,22.0,14.0,-1.9683489489016612,3.976064876781356 -226,22.0,22.0,3.429754555384988,-6.965303617315433 -226,22.0,23.0,-1.4614056064833263,2.989238740534077 -226,23.0,21.0,-2.5405381522555563,3.95440286307604 -226,23.0,22.0,-1.4614056064833263,2.989238740534077 -226,23.0,23.0,5.311836702613133,-9.188263657315172 -226,23.0,24.0,-1.3098929438742493,2.287622053705056 -226,24.0,23.0,-1.3098929438742493,2.287622053705056 -226,24.0,24.0,4.495715080321987,-7.864978761969621 -226,24.0,25.0,-1.2165301194494855,1.8171440463475024 -226,24.0,26.0,-1.9692920169982515,3.760212661917064 -226,25.0,24.0,-1.2165301194494855,1.8171440463475024 -226,25.0,25.0,1.2165301194494855,-1.8171440463475024 -226,26.0,24.0,-1.9692920169982515,3.760212661917064 -226,26.0,26.0,3.652281470778589,-9.46044252232512 -226,26.0,27.0,0.0,2.608731947574922 -226,26.0,28.0,-0.99553355095268,1.881005840357816 -226,26.0,29.0,-0.6874559028276572,1.293971494797717 -226,27.0,5.0,-4.362844058012917,15.463571542897856 -226,27.0,26.0,0.0,2.608731947574922 -226,27.0,27.0,4.362844058012917,-18.15204256311988 -226,28.0,26.0,-0.99553355095268,1.881005840357816 -226,28.0,28.0,1.9075867579849564,-3.604364401207048 -226,28.0,29.0,-0.9120532070322764,1.7233585608492326 -226,29.0,26.0,-0.6874559028276572,1.293971494797717 -226,29.0,28.0,-0.9120532070322764,1.7233585608492326 -226,29.0,29.0,1.5995091098599337,-3.0173300556469496 -227,0.0,0.0,6.765516048652632,-21.23160167089863 -227,0.0,1.0,-5.224646179885656,15.646726840803398 -227,0.0,2.0,-1.5408698687669766,5.631674830095234 -227,1.0,0.0,-5.224646179885656,15.646726840803398 -227,1.0,1.0,9.75228216552403,-30.648662892676068 -227,1.0,3.0,-1.7055303166990268,5.1973792282565086 -227,1.0,4.0,-1.1359607881738778,4.772479328281356 -227,1.0,5.0,-1.6861448807654689,5.116477495334806 -227,2.0,0.0,-1.5408698687669766,5.631674830095234 -227,2.0,2.0,9.736318911079088,-29.13794745915803 -227,2.0,3.0,-8.19544904231211,23.5308726290628 -227,3.0,1.0,-1.7055303166990268,5.1973792282565086 -227,3.0,2.0,-8.19544904231211,23.5308726290628 -227,3.0,3.0,16.314103089185693,-55.509410535254254 -227,3.0,5.0,-6.413123730174556,22.31120356548123 -227,3.0,11.0,0.0,4.191255364806866 -227,4.0,1.0,-1.1359607881738778,4.772479328281356 -227,4.0,4.0,4.089980824135861,-12.190647245055052 -227,4.0,6.0,-2.954020035961983,7.449267916773697 -227,5.0,1.0,-1.6861448807654689,5.116477495334806 -227,5.0,3.0,-6.413123730174556,22.31120356548123 -227,5.0,5.0,22.341631269034565,-82.8291478657789 -227,5.0,6.0,-3.590210423980992,11.02611441072814 -227,5.0,7.0,-6.289308176100628,22.0125786163522 -227,5.0,8.0,0.0,4.915840805411357 -227,5.0,9.0,0.0,1.8561002591115965 -227,5.0,27.0,-4.362844058012917,15.463571542897856 -227,6.0,4.0,-2.954020035961983,7.449267916773697 -227,6.0,5.0,-3.590210423980992,11.02611441072814 -227,6.0,6.0,6.544230459942975,-18.45668232750184 -227,7.0,5.0,-6.289308176100628,22.0125786163522 -227,7.0,7.0,7.733287237496075,-26.527493274828448 -227,7.0,27.0,-1.4439790613954469,4.540814658476248 -227,8.0,5.0,0.0,4.915840805411357 -227,8.0,8.0,0.0,-18.706293706293707 -227,8.0,9.0,0.0,9.090909090909092 -227,8.0,10.0,0.0,4.807692307692308 -227,9.0,5.0,0.0,1.8561002591115965 -227,9.0,8.0,0.0,9.090909090909092 -227,9.0,9.0,13.462042814524237,-41.3837606675224 -227,9.0,16.0,-3.956039125715353,10.317447719844054 -227,9.0,19.0,-1.7848303152666305,3.98535828943083 -227,9.0,20.0,-5.101853820159654,10.98071411292983 -227,9.0,21.0,-2.619319553382597,5.400770303329455 -227,10.0,8.0,0.0,4.807692307692308 -227,10.0,10.0,0.0,-4.807692307692308 -227,11.0,3.0,0.0,4.191255364806866 -227,11.0,11.0,6.573961583776156,-24.424167659260668 -227,11.0,12.0,0.0,7.142857142857143 -227,11.0,13.0,-1.5265676088395577,3.1734252729654173 -227,11.0,14.0,-3.0953961826564296,6.097275864326261 -227,11.0,15.0,-1.9519977922801688,4.104359379111847 -227,12.0,11.0,0.0,7.142857142857143 -227,12.0,12.0,0.0,-7.142857142857143 -227,13.0,11.0,-1.5265676088395577,3.1734252729654173 -227,13.0,13.0,4.01751987283902,-5.424299332335067 -227,13.0,14.0,-2.4909522639994623,2.250874059369649 -227,14.0,11.0,-3.0953961826564296,6.097275864326261 -227,14.0,13.0,-2.4909522639994623,2.250874059369649 -227,14.0,14.0,9.365498545964757,-16.01163373210796 -227,14.0,17.0,-1.8108011504072024,3.687418931630696 -227,14.0,22.0,-1.9683489489016612,3.976064876781356 -227,15.0,11.0,-1.9519977922801688,4.104359379111847 -227,15.0,15.0,3.271064728633931,-8.94513365126506 -227,15.0,16.0,-1.3190669363537617,4.8407742721532125 -227,16.0,9.0,-3.956039125715353,10.317447719844054 -227,16.0,15.0,-1.3190669363537617,4.8407742721532125 -227,16.0,16.0,5.275106062069114,-15.158221991997266 -227,17.0,14.0,-1.8108011504072024,3.687418931630696 -227,17.0,17.0,4.886487584415919,-9.906177730909668 -227,17.0,18.0,-3.0756864340087167,6.218758799278971 -227,18.0,17.0,-3.0756864340087167,6.218758799278971 -227,18.0,18.0,8.958039375185187,-17.98346468163191 -227,18.0,19.0,-5.88235294117647,11.76470588235294 -227,19.0,9.0,-1.7848303152666305,3.98535828943083 -227,19.0,18.0,-5.88235294117647,11.76470588235294 -227,19.0,19.0,7.6671832564431,-15.75006417178377 -227,20.0,9.0,-5.101853820159654,10.98071411292983 -227,20.0,20.0,21.876495189895888,-45.10843276170355 -227,20.0,21.0,-16.774641369736234,34.127718648773715 -227,21.0,9.0,-2.619319553382597,5.400770303329455 -227,21.0,20.0,-16.774641369736234,34.127718648773715 -227,21.0,21.0,21.93449907537439,-43.48289181517921 -227,21.0,23.0,-2.5405381522555563,3.95440286307604 -227,22.0,14.0,-1.9683489489016612,3.976064876781356 -227,22.0,22.0,3.429754555384988,-6.965303617315433 -227,22.0,23.0,-1.4614056064833263,2.989238740534077 -227,23.0,21.0,-2.5405381522555563,3.95440286307604 -227,23.0,22.0,-1.4614056064833263,2.989238740534077 -227,23.0,23.0,5.311836702613133,-9.188263657315172 -227,23.0,24.0,-1.3098929438742493,2.287622053705056 -227,24.0,23.0,-1.3098929438742493,2.287622053705056 -227,24.0,24.0,4.495715080321987,-7.864978761969621 -227,24.0,25.0,-1.2165301194494855,1.8171440463475024 -227,24.0,26.0,-1.9692920169982515,3.760212661917064 -227,25.0,24.0,-1.2165301194494855,1.8171440463475024 -227,25.0,25.0,1.2165301194494855,-1.8171440463475024 -227,26.0,24.0,-1.9692920169982515,3.760212661917064 -227,26.0,26.0,3.652281470778589,-9.46044252232512 -227,26.0,27.0,0.0,2.608731947574922 -227,26.0,28.0,-0.99553355095268,1.881005840357816 -227,26.0,29.0,-0.6874559028276572,1.293971494797717 -227,27.0,5.0,-4.362844058012917,15.463571542897856 -227,27.0,7.0,-1.4439790613954469,4.540814658476248 -227,27.0,26.0,0.0,2.608731947574922 -227,27.0,27.0,5.806823119408364,-22.67145722159613 -227,28.0,26.0,-0.99553355095268,1.881005840357816 -227,28.0,28.0,1.9075867579849564,-3.604364401207048 -227,28.0,29.0,-0.9120532070322764,1.7233585608492326 -227,29.0,26.0,-0.6874559028276572,1.293971494797717 -227,29.0,28.0,-0.9120532070322764,1.7233585608492326 -227,29.0,29.0,1.5995091098599337,-3.0173300556469496 -228,0.0,0.0,6.765516048652632,-21.23160167089863 -228,0.0,1.0,-5.224646179885656,15.646726840803398 -228,0.0,2.0,-1.5408698687669766,5.631674830095234 -228,1.0,0.0,-5.224646179885656,15.646726840803398 -228,1.0,1.0,9.75228216552403,-30.648662892676068 -228,1.0,3.0,-1.7055303166990268,5.1973792282565086 -228,1.0,4.0,-1.1359607881738778,4.772479328281356 -228,1.0,5.0,-1.6861448807654689,5.116477495334806 -228,2.0,0.0,-1.5408698687669766,5.631674830095234 -228,2.0,2.0,9.736318911079088,-29.13794745915803 -228,2.0,3.0,-8.19544904231211,23.5308726290628 -228,3.0,1.0,-1.7055303166990268,5.1973792282565086 -228,3.0,2.0,-8.19544904231211,23.5308726290628 -228,3.0,3.0,16.314103089185693,-55.509410535254254 -228,3.0,5.0,-6.413123730174556,22.31120356548123 -228,3.0,11.0,0.0,4.191255364806866 -228,4.0,1.0,-1.1359607881738778,4.772479328281356 -228,4.0,4.0,4.089980824135861,-12.190647245055052 -228,4.0,6.0,-2.954020035961983,7.449267916773697 -228,5.0,1.0,-1.6861448807654689,5.116477495334806 -228,5.0,3.0,-6.413123730174556,22.31120356548123 -228,5.0,5.0,22.341631269034565,-82.8291478657789 -228,5.0,6.0,-3.590210423980992,11.02611441072814 -228,5.0,7.0,-6.289308176100628,22.0125786163522 -228,5.0,8.0,0.0,4.915840805411357 -228,5.0,9.0,0.0,1.8561002591115965 -228,5.0,27.0,-4.362844058012917,15.463571542897856 -228,6.0,4.0,-2.954020035961983,7.449267916773697 -228,6.0,5.0,-3.590210423980992,11.02611441072814 -228,6.0,6.0,6.544230459942975,-18.45668232750184 -228,7.0,5.0,-6.289308176100628,22.0125786163522 -228,7.0,7.0,7.733287237496075,-26.527493274828448 -228,7.0,27.0,-1.4439790613954469,4.540814658476248 -228,8.0,5.0,0.0,4.915840805411357 -228,8.0,8.0,0.0,-18.706293706293707 -228,8.0,9.0,0.0,9.090909090909092 -228,8.0,10.0,0.0,4.807692307692308 -228,9.0,5.0,0.0,1.8561002591115965 -228,9.0,8.0,0.0,9.090909090909092 -228,9.0,9.0,13.462042814524237,-41.3837606675224 -228,9.0,16.0,-3.956039125715353,10.317447719844054 -228,9.0,19.0,-1.7848303152666305,3.98535828943083 -228,9.0,20.0,-5.101853820159654,10.98071411292983 -228,9.0,21.0,-2.619319553382597,5.400770303329455 -228,10.0,8.0,0.0,4.807692307692308 -228,10.0,10.0,0.0,-4.807692307692308 -228,11.0,3.0,0.0,4.191255364806866 -228,11.0,11.0,6.573961583776156,-24.424167659260668 -228,11.0,12.0,0.0,7.142857142857143 -228,11.0,13.0,-1.5265676088395577,3.1734252729654173 -228,11.0,14.0,-3.0953961826564296,6.097275864326261 -228,11.0,15.0,-1.9519977922801688,4.104359379111847 -228,12.0,11.0,0.0,7.142857142857143 -228,12.0,12.0,0.0,-7.142857142857143 -228,13.0,11.0,-1.5265676088395577,3.1734252729654173 -228,13.0,13.0,4.01751987283902,-5.424299332335067 -228,13.0,14.0,-2.4909522639994623,2.250874059369649 -228,14.0,11.0,-3.0953961826564296,6.097275864326261 -228,14.0,13.0,-2.4909522639994623,2.250874059369649 -228,14.0,14.0,9.365498545964757,-16.01163373210796 -228,14.0,17.0,-1.8108011504072024,3.687418931630696 -228,14.0,22.0,-1.9683489489016612,3.976064876781356 -228,15.0,11.0,-1.9519977922801688,4.104359379111847 -228,15.0,15.0,3.271064728633931,-8.94513365126506 -228,15.0,16.0,-1.3190669363537617,4.8407742721532125 -228,16.0,9.0,-3.956039125715353,10.317447719844054 -228,16.0,15.0,-1.3190669363537617,4.8407742721532125 -228,16.0,16.0,5.275106062069114,-15.158221991997266 -228,17.0,14.0,-1.8108011504072024,3.687418931630696 -228,17.0,17.0,4.886487584415919,-9.906177730909668 -228,17.0,18.0,-3.0756864340087167,6.218758799278971 -228,18.0,17.0,-3.0756864340087167,6.218758799278971 -228,18.0,18.0,8.958039375185187,-17.98346468163191 -228,18.0,19.0,-5.88235294117647,11.76470588235294 -228,19.0,9.0,-1.7848303152666305,3.98535828943083 -228,19.0,18.0,-5.88235294117647,11.76470588235294 -228,19.0,19.0,7.6671832564431,-15.75006417178377 -228,20.0,9.0,-5.101853820159654,10.98071411292983 -228,20.0,20.0,5.101853820159654,-10.98071411292983 -228,21.0,9.0,-2.619319553382597,5.400770303329455 -228,21.0,21.0,5.159857705638154,-9.355173166405494 -228,21.0,23.0,-2.5405381522555563,3.95440286307604 -228,22.0,14.0,-1.9683489489016612,3.976064876781356 -228,22.0,22.0,3.429754555384988,-6.965303617315433 -228,22.0,23.0,-1.4614056064833263,2.989238740534077 -228,23.0,21.0,-2.5405381522555563,3.95440286307604 -228,23.0,22.0,-1.4614056064833263,2.989238740534077 -228,23.0,23.0,5.311836702613133,-9.188263657315172 -228,23.0,24.0,-1.3098929438742493,2.287622053705056 -228,24.0,23.0,-1.3098929438742493,2.287622053705056 -228,24.0,24.0,4.495715080321987,-7.864978761969621 -228,24.0,25.0,-1.2165301194494855,1.8171440463475024 -228,24.0,26.0,-1.9692920169982515,3.760212661917064 -228,25.0,24.0,-1.2165301194494855,1.8171440463475024 -228,25.0,25.0,1.2165301194494855,-1.8171440463475024 -228,26.0,24.0,-1.9692920169982515,3.760212661917064 -228,26.0,26.0,3.652281470778589,-9.46044252232512 -228,26.0,27.0,0.0,2.608731947574922 -228,26.0,28.0,-0.99553355095268,1.881005840357816 -228,26.0,29.0,-0.6874559028276572,1.293971494797717 -228,27.0,5.0,-4.362844058012917,15.463571542897856 -228,27.0,7.0,-1.4439790613954469,4.540814658476248 -228,27.0,26.0,0.0,2.608731947574922 -228,27.0,27.0,5.806823119408364,-22.67145722159613 -228,28.0,26.0,-0.99553355095268,1.881005840357816 -228,28.0,28.0,1.9075867579849564,-3.604364401207048 -228,28.0,29.0,-0.9120532070322764,1.7233585608492326 -228,29.0,26.0,-0.6874559028276572,1.293971494797717 -228,29.0,28.0,-0.9120532070322764,1.7233585608492326 -228,29.0,29.0,1.5995091098599337,-3.0173300556469496 -229,0.0,0.0,1.5408698687669766,-5.611274830095233 -229,0.0,2.0,-1.5408698687669766,5.631674830095234 -229,1.0,1.0,4.527635985638374,-15.028336051872673 -229,1.0,3.0,-1.7055303166990268,5.1973792282565086 -229,1.0,4.0,-1.1359607881738778,4.772479328281356 -229,1.0,5.0,-1.6861448807654689,5.116477495334806 -229,2.0,0.0,-1.5408698687669766,5.631674830095234 -229,2.0,2.0,9.736318911079088,-29.13794745915803 -229,2.0,3.0,-8.19544904231211,23.5308726290628 -229,3.0,1.0,-1.7055303166990268,5.1973792282565086 -229,3.0,2.0,-8.19544904231211,23.5308726290628 -229,3.0,3.0,16.314103089185693,-55.509410535254254 -229,3.0,5.0,-6.413123730174556,22.31120356548123 -229,3.0,11.0,0.0,4.191255364806866 -229,4.0,1.0,-1.1359607881738778,4.772479328281356 -229,4.0,4.0,4.089980824135861,-12.190647245055052 -229,4.0,6.0,-2.954020035961983,7.449267916773697 -229,5.0,1.0,-1.6861448807654689,5.116477495334806 -229,5.0,3.0,-6.413123730174556,22.31120356548123 -229,5.0,5.0,22.341631269034565,-82.8291478657789 -229,5.0,6.0,-3.590210423980992,11.02611441072814 -229,5.0,7.0,-6.289308176100628,22.0125786163522 -229,5.0,8.0,0.0,4.915840805411357 -229,5.0,9.0,0.0,1.8561002591115965 -229,5.0,27.0,-4.362844058012917,15.463571542897856 -229,6.0,4.0,-2.954020035961983,7.449267916773697 -229,6.0,5.0,-3.590210423980992,11.02611441072814 -229,6.0,6.0,6.544230459942975,-18.45668232750184 -229,7.0,5.0,-6.289308176100628,22.0125786163522 -229,7.0,7.0,7.733287237496075,-26.527493274828448 -229,7.0,27.0,-1.4439790613954469,4.540814658476248 -229,8.0,5.0,0.0,4.915840805411357 -229,8.0,8.0,0.0,-18.706293706293707 -229,8.0,9.0,0.0,9.090909090909092 -229,8.0,10.0,0.0,4.807692307692308 -229,9.0,5.0,0.0,1.8561002591115965 -229,9.0,8.0,0.0,9.090909090909092 -229,9.0,9.0,6.575358679097951,-26.417688265161736 -229,9.0,16.0,-3.956039125715353,10.317447719844054 -229,9.0,21.0,-2.619319553382597,5.400770303329455 -229,10.0,8.0,0.0,4.807692307692308 -229,10.0,10.0,0.0,-4.807692307692308 -229,11.0,3.0,0.0,4.191255364806866 -229,11.0,11.0,5.047393974936599,-21.25074238629525 -229,11.0,12.0,0.0,7.142857142857143 -229,11.0,14.0,-3.0953961826564296,6.097275864326261 -229,11.0,15.0,-1.9519977922801688,4.104359379111847 -229,12.0,11.0,0.0,7.142857142857143 -229,12.0,12.0,0.0,-7.142857142857143 -229,13.0,13.0,2.4909522639994623,-2.250874059369649 -229,13.0,14.0,-2.4909522639994623,2.250874059369649 -229,14.0,11.0,-3.0953961826564296,6.097275864326261 -229,14.0,13.0,-2.4909522639994623,2.250874059369649 -229,14.0,14.0,9.365498545964757,-16.01163373210796 -229,14.0,17.0,-1.8108011504072024,3.687418931630696 -229,14.0,22.0,-1.9683489489016612,3.976064876781356 -229,15.0,11.0,-1.9519977922801688,4.104359379111847 -229,15.0,15.0,3.271064728633931,-8.94513365126506 -229,15.0,16.0,-1.3190669363537617,4.8407742721532125 -229,16.0,9.0,-3.956039125715353,10.317447719844054 -229,16.0,15.0,-1.3190669363537617,4.8407742721532125 -229,16.0,16.0,5.275106062069114,-15.158221991997266 -229,17.0,14.0,-1.8108011504072024,3.687418931630696 -229,17.0,17.0,4.886487584415919,-9.906177730909668 -229,17.0,18.0,-3.0756864340087167,6.218758799278971 -229,18.0,17.0,-3.0756864340087167,6.218758799278971 -229,18.0,18.0,8.958039375185187,-17.98346468163191 -229,18.0,19.0,-5.88235294117647,11.76470588235294 -229,19.0,18.0,-5.88235294117647,11.76470588235294 -229,19.0,19.0,5.88235294117647,-11.76470588235294 -229,20.0,20.0,16.774641369736234,-34.127718648773715 -229,20.0,21.0,-16.774641369736234,34.127718648773715 -229,21.0,9.0,-2.619319553382597,5.400770303329455 -229,21.0,20.0,-16.774641369736234,34.127718648773715 -229,21.0,21.0,21.93449907537439,-43.48289181517921 -229,21.0,23.0,-2.5405381522555563,3.95440286307604 -229,22.0,14.0,-1.9683489489016612,3.976064876781356 -229,22.0,22.0,3.429754555384988,-6.965303617315433 -229,22.0,23.0,-1.4614056064833263,2.989238740534077 -229,23.0,21.0,-2.5405381522555563,3.95440286307604 -229,23.0,22.0,-1.4614056064833263,2.989238740534077 -229,23.0,23.0,5.311836702613133,-9.188263657315172 -229,23.0,24.0,-1.3098929438742493,2.287622053705056 -229,24.0,23.0,-1.3098929438742493,2.287622053705056 -229,24.0,24.0,4.495715080321987,-7.864978761969621 -229,24.0,25.0,-1.2165301194494855,1.8171440463475024 -229,24.0,26.0,-1.9692920169982515,3.760212661917064 -229,25.0,24.0,-1.2165301194494855,1.8171440463475024 -229,25.0,25.0,1.2165301194494855,-1.8171440463475024 -229,26.0,24.0,-1.9692920169982515,3.760212661917064 -229,26.0,26.0,3.652281470778589,-9.46044252232512 -229,26.0,27.0,0.0,2.608731947574922 -229,26.0,28.0,-0.99553355095268,1.881005840357816 -229,26.0,29.0,-0.6874559028276572,1.293971494797717 -229,27.0,5.0,-4.362844058012917,15.463571542897856 -229,27.0,7.0,-1.4439790613954469,4.540814658476248 -229,27.0,26.0,0.0,2.608731947574922 -229,27.0,27.0,5.806823119408364,-22.67145722159613 -229,28.0,26.0,-0.99553355095268,1.881005840357816 -229,28.0,28.0,0.99553355095268,-1.881005840357816 -229,29.0,26.0,-0.6874559028276572,1.293971494797717 -229,29.0,29.0,0.6874559028276572,-1.293971494797717 -230,0.0,0.0,6.765516048652632,-21.23160167089863 -230,0.0,1.0,-5.224646179885656,15.646726840803398 -230,0.0,2.0,-1.5408698687669766,5.631674830095234 -230,1.0,0.0,-5.224646179885656,15.646726840803398 -230,1.0,1.0,9.75228216552403,-30.648662892676068 -230,1.0,3.0,-1.7055303166990268,5.1973792282565086 -230,1.0,4.0,-1.1359607881738778,4.772479328281356 -230,1.0,5.0,-1.6861448807654689,5.116477495334806 -230,2.0,0.0,-1.5408698687669766,5.631674830095234 -230,2.0,2.0,9.736318911079088,-29.13794745915803 -230,2.0,3.0,-8.19544904231211,23.5308726290628 -230,3.0,1.0,-1.7055303166990268,5.1973792282565086 -230,3.0,2.0,-8.19544904231211,23.5308726290628 -230,3.0,3.0,16.314103089185693,-55.509410535254254 -230,3.0,5.0,-6.413123730174556,22.31120356548123 -230,3.0,11.0,0.0,4.191255364806866 -230,4.0,1.0,-1.1359607881738778,4.772479328281356 -230,4.0,4.0,4.089980824135861,-12.190647245055052 -230,4.0,6.0,-2.954020035961983,7.449267916773697 -230,5.0,1.0,-1.6861448807654689,5.116477495334806 -230,5.0,3.0,-6.413123730174556,22.31120356548123 -230,5.0,5.0,22.341631269034565,-82.8291478657789 -230,5.0,6.0,-3.590210423980992,11.02611441072814 -230,5.0,7.0,-6.289308176100628,22.0125786163522 -230,5.0,8.0,0.0,4.915840805411357 -230,5.0,9.0,0.0,1.8561002591115965 -230,5.0,27.0,-4.362844058012917,15.463571542897856 -230,6.0,4.0,-2.954020035961983,7.449267916773697 -230,6.0,5.0,-3.590210423980992,11.02611441072814 -230,6.0,6.0,6.544230459942975,-18.45668232750184 -230,7.0,5.0,-6.289308176100628,22.0125786163522 -230,7.0,7.0,7.733287237496075,-26.527493274828448 -230,7.0,27.0,-1.4439790613954469,4.540814658476248 -230,8.0,5.0,0.0,4.915840805411357 -230,8.0,8.0,0.0,-18.706293706293707 -230,8.0,9.0,0.0,9.090909090909092 -230,8.0,10.0,0.0,4.807692307692308 -230,9.0,5.0,0.0,1.8561002591115965 -230,9.0,8.0,0.0,9.090909090909092 -230,9.0,9.0,13.462042814524237,-41.3837606675224 -230,9.0,16.0,-3.956039125715353,10.317447719844054 -230,9.0,19.0,-1.7848303152666305,3.98535828943083 -230,9.0,20.0,-5.101853820159654,10.98071411292983 -230,9.0,21.0,-2.619319553382597,5.400770303329455 -230,10.0,8.0,0.0,4.807692307692308 -230,10.0,10.0,0.0,-4.807692307692308 -230,11.0,3.0,0.0,4.191255364806866 -230,11.0,11.0,6.573961583776156,-24.424167659260668 -230,11.0,12.0,0.0,7.142857142857143 -230,11.0,13.0,-1.5265676088395577,3.1734252729654173 -230,11.0,14.0,-3.0953961826564296,6.097275864326261 -230,11.0,15.0,-1.9519977922801688,4.104359379111847 -230,12.0,11.0,0.0,7.142857142857143 -230,12.0,12.0,0.0,-7.142857142857143 -230,13.0,11.0,-1.5265676088395577,3.1734252729654173 -230,13.0,13.0,4.01751987283902,-5.424299332335067 -230,13.0,14.0,-2.4909522639994623,2.250874059369649 -230,14.0,11.0,-3.0953961826564296,6.097275864326261 -230,14.0,13.0,-2.4909522639994623,2.250874059369649 -230,14.0,14.0,9.365498545964757,-16.01163373210796 -230,14.0,17.0,-1.8108011504072024,3.687418931630696 -230,14.0,22.0,-1.9683489489016612,3.976064876781356 -230,15.0,11.0,-1.9519977922801688,4.104359379111847 -230,15.0,15.0,3.271064728633931,-8.94513365126506 -230,15.0,16.0,-1.3190669363537617,4.8407742721532125 -230,16.0,9.0,-3.956039125715353,10.317447719844054 -230,16.0,15.0,-1.3190669363537617,4.8407742721532125 -230,16.0,16.0,5.275106062069114,-15.158221991997266 -230,17.0,14.0,-1.8108011504072024,3.687418931630696 -230,17.0,17.0,4.886487584415919,-9.906177730909668 -230,17.0,18.0,-3.0756864340087167,6.218758799278971 -230,18.0,17.0,-3.0756864340087167,6.218758799278971 -230,18.0,18.0,8.958039375185187,-17.98346468163191 -230,18.0,19.0,-5.88235294117647,11.76470588235294 -230,19.0,9.0,-1.7848303152666305,3.98535828943083 -230,19.0,18.0,-5.88235294117647,11.76470588235294 -230,19.0,19.0,7.6671832564431,-15.75006417178377 -230,20.0,9.0,-5.101853820159654,10.98071411292983 -230,20.0,20.0,21.876495189895888,-45.10843276170355 -230,20.0,21.0,-16.774641369736234,34.127718648773715 -230,21.0,9.0,-2.619319553382597,5.400770303329455 -230,21.0,20.0,-16.774641369736234,34.127718648773715 -230,21.0,21.0,21.93449907537439,-43.48289181517921 -230,21.0,23.0,-2.5405381522555563,3.95440286307604 -230,22.0,14.0,-1.9683489489016612,3.976064876781356 -230,22.0,22.0,3.429754555384988,-6.965303617315433 -230,22.0,23.0,-1.4614056064833263,2.989238740534077 -230,23.0,21.0,-2.5405381522555563,3.95440286307604 -230,23.0,22.0,-1.4614056064833263,2.989238740534077 -230,23.0,23.0,5.311836702613133,-9.188263657315172 -230,23.0,24.0,-1.3098929438742493,2.287622053705056 -230,24.0,23.0,-1.3098929438742493,2.287622053705056 -230,24.0,24.0,4.495715080321987,-7.864978761969621 -230,24.0,25.0,-1.2165301194494855,1.8171440463475024 -230,24.0,26.0,-1.9692920169982515,3.760212661917064 -230,25.0,24.0,-1.2165301194494855,1.8171440463475024 -230,25.0,25.0,1.2165301194494855,-1.8171440463475024 -230,26.0,24.0,-1.9692920169982515,3.760212661917064 -230,26.0,26.0,3.652281470778589,-9.46044252232512 -230,26.0,27.0,0.0,2.608731947574922 -230,26.0,28.0,-0.99553355095268,1.881005840357816 -230,26.0,29.0,-0.6874559028276572,1.293971494797717 -230,27.0,5.0,-4.362844058012917,15.463571542897856 -230,27.0,7.0,-1.4439790613954469,4.540814658476248 -230,27.0,26.0,0.0,2.608731947574922 -230,27.0,27.0,5.806823119408364,-22.67145722159613 -230,28.0,26.0,-0.99553355095268,1.881005840357816 -230,28.0,28.0,1.9075867579849564,-3.604364401207048 -230,28.0,29.0,-0.9120532070322764,1.7233585608492326 -230,29.0,26.0,-0.6874559028276572,1.293971494797717 -230,29.0,28.0,-0.9120532070322764,1.7233585608492326 -230,29.0,29.0,1.5995091098599337,-3.0173300556469496 -231,0.0,0.0,6.765516048652632,-21.23160167089863 -231,0.0,1.0,-5.224646179885656,15.646726840803398 -231,0.0,2.0,-1.5408698687669766,5.631674830095234 -231,1.0,0.0,-5.224646179885656,15.646726840803398 -231,1.0,1.0,9.75228216552403,-30.648662892676068 -231,1.0,3.0,-1.7055303166990268,5.1973792282565086 -231,1.0,4.0,-1.1359607881738778,4.772479328281356 -231,1.0,5.0,-1.6861448807654689,5.116477495334806 -231,2.0,0.0,-1.5408698687669766,5.631674830095234 -231,2.0,2.0,9.736318911079088,-29.13794745915803 -231,2.0,3.0,-8.19544904231211,23.5308726290628 -231,3.0,1.0,-1.7055303166990268,5.1973792282565086 -231,3.0,2.0,-8.19544904231211,23.5308726290628 -231,3.0,3.0,16.314103089185693,-55.509410535254254 -231,3.0,5.0,-6.413123730174556,22.31120356548123 -231,3.0,11.0,0.0,4.191255364806866 -231,4.0,1.0,-1.1359607881738778,4.772479328281356 -231,4.0,4.0,4.089980824135861,-12.190647245055052 -231,4.0,6.0,-2.954020035961983,7.449267916773697 -231,5.0,1.0,-1.6861448807654689,5.116477495334806 -231,5.0,3.0,-6.413123730174556,22.31120356548123 -231,5.0,5.0,22.341631269034565,-82.8291478657789 -231,5.0,6.0,-3.590210423980992,11.02611441072814 -231,5.0,7.0,-6.289308176100628,22.0125786163522 -231,5.0,8.0,0.0,4.915840805411357 -231,5.0,9.0,0.0,1.8561002591115965 -231,5.0,27.0,-4.362844058012917,15.463571542897856 -231,6.0,4.0,-2.954020035961983,7.449267916773697 -231,6.0,5.0,-3.590210423980992,11.02611441072814 -231,6.0,6.0,6.544230459942975,-18.45668232750184 -231,7.0,5.0,-6.289308176100628,22.0125786163522 -231,7.0,7.0,7.733287237496075,-26.527493274828448 -231,7.0,27.0,-1.4439790613954469,4.540814658476248 -231,8.0,5.0,0.0,4.915840805411357 -231,8.0,8.0,0.0,-18.706293706293707 -231,8.0,9.0,0.0,9.090909090909092 -231,8.0,10.0,0.0,4.807692307692308 -231,9.0,5.0,0.0,1.8561002591115965 -231,9.0,8.0,0.0,9.090909090909092 -231,9.0,9.0,13.462042814524237,-41.3837606675224 -231,9.0,16.0,-3.956039125715353,10.317447719844054 -231,9.0,19.0,-1.7848303152666305,3.98535828943083 -231,9.0,20.0,-5.101853820159654,10.98071411292983 -231,9.0,21.0,-2.619319553382597,5.400770303329455 -231,10.0,8.0,0.0,4.807692307692308 -231,10.0,10.0,0.0,-4.807692307692308 -231,11.0,3.0,0.0,4.191255364806866 -231,11.0,11.0,6.573961583776156,-24.424167659260668 -231,11.0,12.0,0.0,7.142857142857143 -231,11.0,13.0,-1.5265676088395577,3.1734252729654173 -231,11.0,14.0,-3.0953961826564296,6.097275864326261 -231,11.0,15.0,-1.9519977922801688,4.104359379111847 -231,12.0,11.0,0.0,7.142857142857143 -231,12.0,12.0,0.0,-7.142857142857143 -231,13.0,11.0,-1.5265676088395577,3.1734252729654173 -231,13.0,13.0,4.01751987283902,-5.424299332335067 -231,13.0,14.0,-2.4909522639994623,2.250874059369649 -231,14.0,11.0,-3.0953961826564296,6.097275864326261 -231,14.0,13.0,-2.4909522639994623,2.250874059369649 -231,14.0,14.0,9.365498545964757,-16.01163373210796 -231,14.0,17.0,-1.8108011504072024,3.687418931630696 -231,14.0,22.0,-1.9683489489016612,3.976064876781356 -231,15.0,11.0,-1.9519977922801688,4.104359379111847 -231,15.0,15.0,3.271064728633931,-8.94513365126506 -231,15.0,16.0,-1.3190669363537617,4.8407742721532125 -231,16.0,9.0,-3.956039125715353,10.317447719844054 -231,16.0,15.0,-1.3190669363537617,4.8407742721532125 -231,16.0,16.0,5.275106062069114,-15.158221991997266 -231,17.0,14.0,-1.8108011504072024,3.687418931630696 -231,17.0,17.0,4.886487584415919,-9.906177730909668 -231,17.0,18.0,-3.0756864340087167,6.218758799278971 -231,18.0,17.0,-3.0756864340087167,6.218758799278971 -231,18.0,18.0,8.958039375185187,-17.98346468163191 -231,18.0,19.0,-5.88235294117647,11.76470588235294 -231,19.0,9.0,-1.7848303152666305,3.98535828943083 -231,19.0,18.0,-5.88235294117647,11.76470588235294 -231,19.0,19.0,7.6671832564431,-15.75006417178377 -231,20.0,9.0,-5.101853820159654,10.98071411292983 -231,20.0,20.0,21.876495189895888,-45.10843276170355 -231,20.0,21.0,-16.774641369736234,34.127718648773715 -231,21.0,9.0,-2.619319553382597,5.400770303329455 -231,21.0,20.0,-16.774641369736234,34.127718648773715 -231,21.0,21.0,21.93449907537439,-43.48289181517921 -231,21.0,23.0,-2.5405381522555563,3.95440286307604 -231,22.0,14.0,-1.9683489489016612,3.976064876781356 -231,22.0,22.0,3.429754555384988,-6.965303617315433 -231,22.0,23.0,-1.4614056064833263,2.989238740534077 -231,23.0,21.0,-2.5405381522555563,3.95440286307604 -231,23.0,22.0,-1.4614056064833263,2.989238740534077 -231,23.0,23.0,5.311836702613133,-9.188263657315172 -231,23.0,24.0,-1.3098929438742493,2.287622053705056 -231,24.0,23.0,-1.3098929438742493,2.287622053705056 -231,24.0,24.0,4.495715080321987,-7.864978761969621 -231,24.0,25.0,-1.2165301194494855,1.8171440463475024 -231,24.0,26.0,-1.9692920169982515,3.760212661917064 -231,25.0,24.0,-1.2165301194494855,1.8171440463475024 -231,25.0,25.0,1.2165301194494855,-1.8171440463475024 -231,26.0,24.0,-1.9692920169982515,3.760212661917064 -231,26.0,26.0,3.652281470778589,-9.46044252232512 -231,26.0,27.0,0.0,2.608731947574922 -231,26.0,28.0,-0.99553355095268,1.881005840357816 -231,26.0,29.0,-0.6874559028276572,1.293971494797717 -231,27.0,5.0,-4.362844058012917,15.463571542897856 -231,27.0,7.0,-1.4439790613954469,4.540814658476248 -231,27.0,26.0,0.0,2.608731947574922 -231,27.0,27.0,5.806823119408364,-22.67145722159613 -231,28.0,26.0,-0.99553355095268,1.881005840357816 -231,28.0,28.0,1.9075867579849564,-3.604364401207048 -231,28.0,29.0,-0.9120532070322764,1.7233585608492326 -231,29.0,26.0,-0.6874559028276572,1.293971494797717 -231,29.0,28.0,-0.9120532070322764,1.7233585608492326 -231,29.0,29.0,1.5995091098599337,-3.0173300556469496 -232,0.0,0.0,6.765516048652632,-21.23160167089863 -232,0.0,1.0,-5.224646179885656,15.646726840803398 -232,0.0,2.0,-1.5408698687669766,5.631674830095234 -232,1.0,0.0,-5.224646179885656,15.646726840803398 -232,1.0,1.0,9.75228216552403,-30.648662892676068 -232,1.0,3.0,-1.7055303166990268,5.1973792282565086 -232,1.0,4.0,-1.1359607881738778,4.772479328281356 -232,1.0,5.0,-1.6861448807654689,5.116477495334806 -232,2.0,0.0,-1.5408698687669766,5.631674830095234 -232,2.0,2.0,9.736318911079088,-29.13794745915803 -232,2.0,3.0,-8.19544904231211,23.5308726290628 -232,3.0,1.0,-1.7055303166990268,5.1973792282565086 -232,3.0,2.0,-8.19544904231211,23.5308726290628 -232,3.0,3.0,16.314103089185693,-55.509410535254254 -232,3.0,5.0,-6.413123730174556,22.31120356548123 -232,3.0,11.0,0.0,4.191255364806866 -232,4.0,1.0,-1.1359607881738778,4.772479328281356 -232,4.0,4.0,4.089980824135861,-12.190647245055052 -232,4.0,6.0,-2.954020035961983,7.449267916773697 -232,5.0,1.0,-1.6861448807654689,5.116477495334806 -232,5.0,3.0,-6.413123730174556,22.31120356548123 -232,5.0,5.0,22.341631269034565,-82.8291478657789 -232,5.0,6.0,-3.590210423980992,11.02611441072814 -232,5.0,7.0,-6.289308176100628,22.0125786163522 -232,5.0,8.0,0.0,4.915840805411357 -232,5.0,9.0,0.0,1.8561002591115965 -232,5.0,27.0,-4.362844058012917,15.463571542897856 -232,6.0,4.0,-2.954020035961983,7.449267916773697 -232,6.0,5.0,-3.590210423980992,11.02611441072814 -232,6.0,6.0,6.544230459942975,-18.45668232750184 -232,7.0,5.0,-6.289308176100628,22.0125786163522 -232,7.0,7.0,7.733287237496075,-26.527493274828448 -232,7.0,27.0,-1.4439790613954469,4.540814658476248 -232,8.0,5.0,0.0,4.915840805411357 -232,8.0,8.0,0.0,-18.706293706293707 -232,8.0,9.0,0.0,9.090909090909092 -232,8.0,10.0,0.0,4.807692307692308 -232,9.0,5.0,0.0,1.8561002591115965 -232,9.0,8.0,0.0,9.090909090909092 -232,9.0,9.0,13.462042814524237,-41.3837606675224 -232,9.0,16.0,-3.956039125715353,10.317447719844054 -232,9.0,19.0,-1.7848303152666305,3.98535828943083 -232,9.0,20.0,-5.101853820159654,10.98071411292983 -232,9.0,21.0,-2.619319553382597,5.400770303329455 -232,10.0,8.0,0.0,4.807692307692308 -232,10.0,10.0,0.0,-4.807692307692308 -232,11.0,3.0,0.0,4.191255364806866 -232,11.0,11.0,4.621963791495987,-20.31980828014882 -232,11.0,12.0,0.0,7.142857142857143 -232,11.0,13.0,-1.5265676088395577,3.1734252729654173 -232,11.0,14.0,-3.0953961826564296,6.097275864326261 -232,12.0,11.0,0.0,7.142857142857143 -232,12.0,12.0,0.0,-7.142857142857143 -232,13.0,11.0,-1.5265676088395577,3.1734252729654173 -232,13.0,13.0,4.01751987283902,-5.424299332335067 -232,13.0,14.0,-2.4909522639994623,2.250874059369649 -232,14.0,11.0,-3.0953961826564296,6.097275864326261 -232,14.0,13.0,-2.4909522639994623,2.250874059369649 -232,14.0,14.0,9.365498545964757,-16.01163373210796 -232,14.0,17.0,-1.8108011504072024,3.687418931630696 -232,14.0,22.0,-1.9683489489016612,3.976064876781356 -232,15.0,15.0,1.3190669363537617,-4.8407742721532125 -232,15.0,16.0,-1.3190669363537617,4.8407742721532125 -232,16.0,9.0,-3.956039125715353,10.317447719844054 -232,16.0,15.0,-1.3190669363537617,4.8407742721532125 -232,16.0,16.0,5.275106062069114,-15.158221991997266 -232,17.0,14.0,-1.8108011504072024,3.687418931630696 -232,17.0,17.0,4.886487584415919,-9.906177730909668 -232,17.0,18.0,-3.0756864340087167,6.218758799278971 -232,18.0,17.0,-3.0756864340087167,6.218758799278971 -232,18.0,18.0,8.958039375185187,-17.98346468163191 -232,18.0,19.0,-5.88235294117647,11.76470588235294 -232,19.0,9.0,-1.7848303152666305,3.98535828943083 -232,19.0,18.0,-5.88235294117647,11.76470588235294 -232,19.0,19.0,7.6671832564431,-15.75006417178377 -232,20.0,9.0,-5.101853820159654,10.98071411292983 -232,20.0,20.0,21.876495189895888,-45.10843276170355 -232,20.0,21.0,-16.774641369736234,34.127718648773715 -232,21.0,9.0,-2.619319553382597,5.400770303329455 -232,21.0,20.0,-16.774641369736234,34.127718648773715 -232,21.0,21.0,21.93449907537439,-43.48289181517921 -232,21.0,23.0,-2.5405381522555563,3.95440286307604 -232,22.0,14.0,-1.9683489489016612,3.976064876781356 -232,22.0,22.0,3.429754555384988,-6.965303617315433 -232,22.0,23.0,-1.4614056064833263,2.989238740534077 -232,23.0,21.0,-2.5405381522555563,3.95440286307604 -232,23.0,22.0,-1.4614056064833263,2.989238740534077 -232,23.0,23.0,5.311836702613133,-9.188263657315172 -232,23.0,24.0,-1.3098929438742493,2.287622053705056 -232,24.0,23.0,-1.3098929438742493,2.287622053705056 -232,24.0,24.0,4.495715080321987,-7.864978761969621 -232,24.0,25.0,-1.2165301194494855,1.8171440463475024 -232,24.0,26.0,-1.9692920169982515,3.760212661917064 -232,25.0,24.0,-1.2165301194494855,1.8171440463475024 -232,25.0,25.0,1.2165301194494855,-1.8171440463475024 -232,26.0,24.0,-1.9692920169982515,3.760212661917064 -232,26.0,26.0,3.652281470778589,-9.46044252232512 -232,26.0,27.0,0.0,2.608731947574922 -232,26.0,28.0,-0.99553355095268,1.881005840357816 -232,26.0,29.0,-0.6874559028276572,1.293971494797717 -232,27.0,5.0,-4.362844058012917,15.463571542897856 -232,27.0,7.0,-1.4439790613954469,4.540814658476248 -232,27.0,26.0,0.0,2.608731947574922 -232,27.0,27.0,5.806823119408364,-22.67145722159613 -232,28.0,26.0,-0.99553355095268,1.881005840357816 -232,28.0,28.0,1.9075867579849564,-3.604364401207048 -232,28.0,29.0,-0.9120532070322764,1.7233585608492326 -232,29.0,26.0,-0.6874559028276572,1.293971494797717 -232,29.0,28.0,-0.9120532070322764,1.7233585608492326 -232,29.0,29.0,1.5995091098599337,-3.0173300556469496 -233,0.0,0.0,6.765516048652632,-21.23160167089863 -233,0.0,1.0,-5.224646179885656,15.646726840803398 -233,0.0,2.0,-1.5408698687669766,5.631674830095234 -233,1.0,0.0,-5.224646179885656,15.646726840803398 -233,1.0,1.0,6.910791060651125,-20.718104336138204 -233,1.0,5.0,-1.6861448807654689,5.116477495334806 -233,2.0,0.0,-1.5408698687669766,5.631674830095234 -233,2.0,2.0,9.736318911079088,-29.13794745915803 -233,2.0,3.0,-8.19544904231211,23.5308726290628 -233,3.0,2.0,-8.19544904231211,23.5308726290628 -233,3.0,3.0,8.19544904231211,-28.02372774151652 -233,3.0,11.0,0.0,4.191255364806866 -233,4.0,4.0,2.954020035961983,-7.439067916773697 -233,4.0,6.0,-2.954020035961983,7.449267916773697 -233,5.0,1.0,-1.6861448807654689,5.116477495334806 -233,5.0,5.0,15.928507538860009,-60.52244430029767 -233,5.0,6.0,-3.590210423980992,11.02611441072814 -233,5.0,7.0,-6.289308176100628,22.0125786163522 -233,5.0,8.0,0.0,4.915840805411357 -233,5.0,9.0,0.0,1.8561002591115965 -233,5.0,27.0,-4.362844058012917,15.463571542897856 -233,6.0,4.0,-2.954020035961983,7.449267916773697 -233,6.0,5.0,-3.590210423980992,11.02611441072814 -233,6.0,6.0,6.544230459942975,-18.45668232750184 -233,7.0,5.0,-6.289308176100628,22.0125786163522 -233,7.0,7.0,7.733287237496075,-26.527493274828448 -233,7.0,27.0,-1.4439790613954469,4.540814658476248 -233,8.0,5.0,0.0,4.915840805411357 -233,8.0,8.0,0.0,-18.706293706293707 -233,8.0,9.0,0.0,9.090909090909092 -233,8.0,10.0,0.0,4.807692307692308 -233,9.0,5.0,0.0,1.8561002591115965 -233,9.0,8.0,0.0,9.090909090909092 -233,9.0,9.0,13.462042814524237,-41.3837606675224 -233,9.0,16.0,-3.956039125715353,10.317447719844054 -233,9.0,19.0,-1.7848303152666305,3.98535828943083 -233,9.0,20.0,-5.101853820159654,10.98071411292983 -233,9.0,21.0,-2.619319553382597,5.400770303329455 -233,10.0,8.0,0.0,4.807692307692308 -233,10.0,10.0,0.0,-4.807692307692308 -233,11.0,3.0,0.0,4.191255364806866 -233,11.0,11.0,6.573961583776156,-24.424167659260668 -233,11.0,12.0,0.0,7.142857142857143 -233,11.0,13.0,-1.5265676088395577,3.1734252729654173 -233,11.0,14.0,-3.0953961826564296,6.097275864326261 -233,11.0,15.0,-1.9519977922801688,4.104359379111847 -233,12.0,11.0,0.0,7.142857142857143 -233,12.0,12.0,0.0,-7.142857142857143 -233,13.0,11.0,-1.5265676088395577,3.1734252729654173 -233,13.0,13.0,4.01751987283902,-5.424299332335067 -233,13.0,14.0,-2.4909522639994623,2.250874059369649 -233,14.0,11.0,-3.0953961826564296,6.097275864326261 -233,14.0,13.0,-2.4909522639994623,2.250874059369649 -233,14.0,14.0,9.365498545964757,-16.01163373210796 -233,14.0,17.0,-1.8108011504072024,3.687418931630696 -233,14.0,22.0,-1.9683489489016612,3.976064876781356 -233,15.0,11.0,-1.9519977922801688,4.104359379111847 -233,15.0,15.0,3.271064728633931,-8.94513365126506 -233,15.0,16.0,-1.3190669363537617,4.8407742721532125 -233,16.0,9.0,-3.956039125715353,10.317447719844054 -233,16.0,15.0,-1.3190669363537617,4.8407742721532125 -233,16.0,16.0,5.275106062069114,-15.158221991997266 -233,17.0,14.0,-1.8108011504072024,3.687418931630696 -233,17.0,17.0,4.886487584415919,-9.906177730909668 -233,17.0,18.0,-3.0756864340087167,6.218758799278971 -233,18.0,17.0,-3.0756864340087167,6.218758799278971 -233,18.0,18.0,8.958039375185187,-17.98346468163191 -233,18.0,19.0,-5.88235294117647,11.76470588235294 -233,19.0,9.0,-1.7848303152666305,3.98535828943083 -233,19.0,18.0,-5.88235294117647,11.76470588235294 -233,19.0,19.0,7.6671832564431,-15.75006417178377 -233,20.0,9.0,-5.101853820159654,10.98071411292983 -233,20.0,20.0,21.876495189895888,-45.10843276170355 -233,20.0,21.0,-16.774641369736234,34.127718648773715 -233,21.0,9.0,-2.619319553382597,5.400770303329455 -233,21.0,20.0,-16.774641369736234,34.127718648773715 -233,21.0,21.0,21.93449907537439,-43.48289181517921 -233,21.0,23.0,-2.5405381522555563,3.95440286307604 -233,22.0,14.0,-1.9683489489016612,3.976064876781356 -233,22.0,22.0,3.429754555384988,-6.965303617315433 -233,22.0,23.0,-1.4614056064833263,2.989238740534077 -233,23.0,21.0,-2.5405381522555563,3.95440286307604 -233,23.0,22.0,-1.4614056064833263,2.989238740534077 -233,23.0,23.0,5.311836702613133,-9.188263657315172 -233,23.0,24.0,-1.3098929438742493,2.287622053705056 -233,24.0,23.0,-1.3098929438742493,2.287622053705056 -233,24.0,24.0,4.495715080321987,-7.864978761969621 -233,24.0,25.0,-1.2165301194494855,1.8171440463475024 -233,24.0,26.0,-1.9692920169982515,3.760212661917064 -233,25.0,24.0,-1.2165301194494855,1.8171440463475024 -233,25.0,25.0,1.2165301194494855,-1.8171440463475024 -233,26.0,24.0,-1.9692920169982515,3.760212661917064 -233,26.0,26.0,2.656747919825909,-7.579436681967305 -233,26.0,27.0,0.0,2.608731947574922 -233,26.0,29.0,-0.6874559028276572,1.293971494797717 -233,27.0,5.0,-4.362844058012917,15.463571542897856 -233,27.0,7.0,-1.4439790613954469,4.540814658476248 -233,27.0,26.0,0.0,2.608731947574922 -233,27.0,27.0,5.806823119408364,-22.67145722159613 -233,28.0,28.0,0.9120532070322764,-1.7233585608492326 -233,28.0,29.0,-0.9120532070322764,1.7233585608492326 -233,29.0,26.0,-0.6874559028276572,1.293971494797717 -233,29.0,28.0,-0.9120532070322764,1.7233585608492326 -233,29.0,29.0,1.5995091098599337,-3.0173300556469496 -234,0.0,0.0,6.765516048652632,-21.23160167089863 -234,0.0,1.0,-5.224646179885656,15.646726840803398 -234,0.0,2.0,-1.5408698687669766,5.631674830095234 -234,1.0,0.0,-5.224646179885656,15.646726840803398 -234,1.0,1.0,9.75228216552403,-30.648662892676068 -234,1.0,3.0,-1.7055303166990268,5.1973792282565086 -234,1.0,4.0,-1.1359607881738778,4.772479328281356 -234,1.0,5.0,-1.6861448807654689,5.116477495334806 -234,2.0,0.0,-1.5408698687669766,5.631674830095234 -234,2.0,2.0,9.736318911079088,-29.13794745915803 -234,2.0,3.0,-8.19544904231211,23.5308726290628 -234,3.0,1.0,-1.7055303166990268,5.1973792282565086 -234,3.0,2.0,-8.19544904231211,23.5308726290628 -234,3.0,3.0,16.314103089185693,-55.509410535254254 -234,3.0,5.0,-6.413123730174556,22.31120356548123 -234,3.0,11.0,0.0,4.191255364806866 -234,4.0,1.0,-1.1359607881738778,4.772479328281356 -234,4.0,4.0,4.089980824135861,-12.190647245055052 -234,4.0,6.0,-2.954020035961983,7.449267916773697 -234,5.0,1.0,-1.6861448807654689,5.116477495334806 -234,5.0,3.0,-6.413123730174556,22.31120356548123 -234,5.0,5.0,22.341631269034565,-82.8291478657789 -234,5.0,6.0,-3.590210423980992,11.02611441072814 -234,5.0,7.0,-6.289308176100628,22.0125786163522 -234,5.0,8.0,0.0,4.915840805411357 -234,5.0,9.0,0.0,1.8561002591115965 -234,5.0,27.0,-4.362844058012917,15.463571542897856 -234,6.0,4.0,-2.954020035961983,7.449267916773697 -234,6.0,5.0,-3.590210423980992,11.02611441072814 -234,6.0,6.0,6.544230459942975,-18.45668232750184 -234,7.0,5.0,-6.289308176100628,22.0125786163522 -234,7.0,7.0,7.733287237496075,-26.527493274828448 -234,7.0,27.0,-1.4439790613954469,4.540814658476248 -234,8.0,5.0,0.0,4.915840805411357 -234,8.0,8.0,0.0,-18.706293706293707 -234,8.0,9.0,0.0,9.090909090909092 -234,8.0,10.0,0.0,4.807692307692308 -234,9.0,5.0,0.0,1.8561002591115965 -234,9.0,8.0,0.0,9.090909090909092 -234,9.0,9.0,13.462042814524237,-41.3837606675224 -234,9.0,16.0,-3.956039125715353,10.317447719844054 -234,9.0,19.0,-1.7848303152666305,3.98535828943083 -234,9.0,20.0,-5.101853820159654,10.98071411292983 -234,9.0,21.0,-2.619319553382597,5.400770303329455 -234,10.0,8.0,0.0,4.807692307692308 -234,10.0,10.0,0.0,-4.807692307692308 -234,11.0,3.0,0.0,4.191255364806866 -234,11.0,11.0,3.478565401119727,-18.326891794934408 -234,11.0,12.0,0.0,7.142857142857143 -234,11.0,13.0,-1.5265676088395577,3.1734252729654173 -234,11.0,15.0,-1.9519977922801688,4.104359379111847 -234,12.0,11.0,0.0,7.142857142857143 -234,12.0,12.0,0.0,-7.142857142857143 -234,13.0,11.0,-1.5265676088395577,3.1734252729654173 -234,13.0,13.0,4.01751987283902,-5.424299332335067 -234,13.0,14.0,-2.4909522639994623,2.250874059369649 -234,14.0,13.0,-2.4909522639994623,2.250874059369649 -234,14.0,14.0,6.270102363308326,-9.9143578677817 -234,14.0,17.0,-1.8108011504072024,3.687418931630696 -234,14.0,22.0,-1.9683489489016612,3.976064876781356 -234,15.0,11.0,-1.9519977922801688,4.104359379111847 -234,15.0,15.0,3.271064728633931,-8.94513365126506 -234,15.0,16.0,-1.3190669363537617,4.8407742721532125 -234,16.0,9.0,-3.956039125715353,10.317447719844054 -234,16.0,15.0,-1.3190669363537617,4.8407742721532125 -234,16.0,16.0,5.275106062069114,-15.158221991997266 -234,17.0,14.0,-1.8108011504072024,3.687418931630696 -234,17.0,17.0,4.886487584415919,-9.906177730909668 -234,17.0,18.0,-3.0756864340087167,6.218758799278971 -234,18.0,17.0,-3.0756864340087167,6.218758799278971 -234,18.0,18.0,8.958039375185187,-17.98346468163191 -234,18.0,19.0,-5.88235294117647,11.76470588235294 -234,19.0,9.0,-1.7848303152666305,3.98535828943083 -234,19.0,18.0,-5.88235294117647,11.76470588235294 -234,19.0,19.0,7.6671832564431,-15.75006417178377 -234,20.0,9.0,-5.101853820159654,10.98071411292983 -234,20.0,20.0,21.876495189895888,-45.10843276170355 -234,20.0,21.0,-16.774641369736234,34.127718648773715 -234,21.0,9.0,-2.619319553382597,5.400770303329455 -234,21.0,20.0,-16.774641369736234,34.127718648773715 -234,21.0,21.0,21.93449907537439,-43.48289181517921 -234,21.0,23.0,-2.5405381522555563,3.95440286307604 -234,22.0,14.0,-1.9683489489016612,3.976064876781356 -234,22.0,22.0,3.429754555384988,-6.965303617315433 -234,22.0,23.0,-1.4614056064833263,2.989238740534077 -234,23.0,21.0,-2.5405381522555563,3.95440286307604 -234,23.0,22.0,-1.4614056064833263,2.989238740534077 -234,23.0,23.0,5.311836702613133,-9.188263657315172 -234,23.0,24.0,-1.3098929438742493,2.287622053705056 -234,24.0,23.0,-1.3098929438742493,2.287622053705056 -234,24.0,24.0,4.495715080321987,-7.864978761969621 -234,24.0,25.0,-1.2165301194494855,1.8171440463475024 -234,24.0,26.0,-1.9692920169982515,3.760212661917064 -234,25.0,24.0,-1.2165301194494855,1.8171440463475024 -234,25.0,25.0,1.2165301194494855,-1.8171440463475024 -234,26.0,24.0,-1.9692920169982515,3.760212661917064 -234,26.0,26.0,3.652281470778589,-9.46044252232512 -234,26.0,27.0,0.0,2.608731947574922 -234,26.0,28.0,-0.99553355095268,1.881005840357816 -234,26.0,29.0,-0.6874559028276572,1.293971494797717 -234,27.0,5.0,-4.362844058012917,15.463571542897856 -234,27.0,7.0,-1.4439790613954469,4.540814658476248 -234,27.0,26.0,0.0,2.608731947574922 -234,27.0,27.0,5.806823119408364,-22.67145722159613 -234,28.0,26.0,-0.99553355095268,1.881005840357816 -234,28.0,28.0,1.9075867579849564,-3.604364401207048 -234,28.0,29.0,-0.9120532070322764,1.7233585608492326 -234,29.0,26.0,-0.6874559028276572,1.293971494797717 -234,29.0,28.0,-0.9120532070322764,1.7233585608492326 -234,29.0,29.0,1.5995091098599337,-3.0173300556469496 -235,0.0,0.0,6.765516048652632,-21.23160167089863 -235,0.0,1.0,-5.224646179885656,15.646726840803398 -235,0.0,2.0,-1.5408698687669766,5.631674830095234 -235,1.0,0.0,-5.224646179885656,15.646726840803398 -235,1.0,1.0,8.046751848825002,-25.46968366441956 -235,1.0,4.0,-1.1359607881738778,4.772479328281356 -235,1.0,5.0,-1.6861448807654689,5.116477495334806 -235,2.0,0.0,-1.5408698687669766,5.631674830095234 -235,2.0,2.0,9.736318911079088,-29.13794745915803 -235,2.0,3.0,-8.19544904231211,23.5308726290628 -235,3.0,2.0,-8.19544904231211,23.5308726290628 -235,3.0,3.0,14.608572772486664,-50.33043130699775 -235,3.0,5.0,-6.413123730174556,22.31120356548123 -235,3.0,11.0,0.0,4.191255364806866 -235,4.0,1.0,-1.1359607881738778,4.772479328281356 -235,4.0,4.0,4.089980824135861,-12.190647245055052 -235,4.0,6.0,-2.954020035961983,7.449267916773697 -235,5.0,1.0,-1.6861448807654689,5.116477495334806 -235,5.0,3.0,-6.413123730174556,22.31120356548123 -235,5.0,5.0,22.341631269034565,-82.8291478657789 -235,5.0,6.0,-3.590210423980992,11.02611441072814 -235,5.0,7.0,-6.289308176100628,22.0125786163522 -235,5.0,8.0,0.0,4.915840805411357 -235,5.0,9.0,0.0,1.8561002591115965 -235,5.0,27.0,-4.362844058012917,15.463571542897856 -235,6.0,4.0,-2.954020035961983,7.449267916773697 -235,6.0,5.0,-3.590210423980992,11.02611441072814 -235,6.0,6.0,6.544230459942975,-18.45668232750184 -235,7.0,5.0,-6.289308176100628,22.0125786163522 -235,7.0,7.0,7.733287237496075,-26.527493274828448 -235,7.0,27.0,-1.4439790613954469,4.540814658476248 -235,8.0,5.0,0.0,4.915840805411357 -235,8.0,8.0,0.0,-18.706293706293707 -235,8.0,9.0,0.0,9.090909090909092 -235,8.0,10.0,0.0,4.807692307692308 -235,9.0,5.0,0.0,1.8561002591115965 -235,9.0,8.0,0.0,9.090909090909092 -235,9.0,9.0,13.462042814524237,-41.3837606675224 -235,9.0,16.0,-3.956039125715353,10.317447719844054 -235,9.0,19.0,-1.7848303152666305,3.98535828943083 -235,9.0,20.0,-5.101853820159654,10.98071411292983 -235,9.0,21.0,-2.619319553382597,5.400770303329455 -235,10.0,8.0,0.0,4.807692307692308 -235,10.0,10.0,0.0,-4.807692307692308 -235,11.0,3.0,0.0,4.191255364806866 -235,11.0,11.0,6.573961583776156,-24.424167659260668 -235,11.0,12.0,0.0,7.142857142857143 -235,11.0,13.0,-1.5265676088395577,3.1734252729654173 -235,11.0,14.0,-3.0953961826564296,6.097275864326261 -235,11.0,15.0,-1.9519977922801688,4.104359379111847 -235,12.0,11.0,0.0,7.142857142857143 -235,12.0,12.0,0.0,-7.142857142857143 -235,13.0,11.0,-1.5265676088395577,3.1734252729654173 -235,13.0,13.0,4.01751987283902,-5.424299332335067 -235,13.0,14.0,-2.4909522639994623,2.250874059369649 -235,14.0,11.0,-3.0953961826564296,6.097275864326261 -235,14.0,13.0,-2.4909522639994623,2.250874059369649 -235,14.0,14.0,9.365498545964757,-16.01163373210796 -235,14.0,17.0,-1.8108011504072024,3.687418931630696 -235,14.0,22.0,-1.9683489489016612,3.976064876781356 -235,15.0,11.0,-1.9519977922801688,4.104359379111847 -235,15.0,15.0,3.271064728633931,-8.94513365126506 -235,15.0,16.0,-1.3190669363537617,4.8407742721532125 -235,16.0,9.0,-3.956039125715353,10.317447719844054 -235,16.0,15.0,-1.3190669363537617,4.8407742721532125 -235,16.0,16.0,5.275106062069114,-15.158221991997266 -235,17.0,14.0,-1.8108011504072024,3.687418931630696 -235,17.0,17.0,4.886487584415919,-9.906177730909668 -235,17.0,18.0,-3.0756864340087167,6.218758799278971 -235,18.0,17.0,-3.0756864340087167,6.218758799278971 -235,18.0,18.0,3.0756864340087167,-6.218758799278971 -235,19.0,9.0,-1.7848303152666305,3.98535828943083 -235,19.0,19.0,1.7848303152666305,-3.98535828943083 -235,20.0,9.0,-5.101853820159654,10.98071411292983 -235,20.0,20.0,21.876495189895888,-45.10843276170355 -235,20.0,21.0,-16.774641369736234,34.127718648773715 -235,21.0,9.0,-2.619319553382597,5.400770303329455 -235,21.0,20.0,-16.774641369736234,34.127718648773715 -235,21.0,21.0,21.93449907537439,-43.48289181517921 -235,21.0,23.0,-2.5405381522555563,3.95440286307604 -235,22.0,14.0,-1.9683489489016612,3.976064876781356 -235,22.0,22.0,1.9683489489016612,-3.976064876781356 -235,23.0,21.0,-2.5405381522555563,3.95440286307604 -235,23.0,23.0,3.850431096129806,-6.199024916781094 -235,23.0,24.0,-1.3098929438742493,2.287622053705056 -235,24.0,23.0,-1.3098929438742493,2.287622053705056 -235,24.0,24.0,4.495715080321987,-7.864978761969621 -235,24.0,25.0,-1.2165301194494855,1.8171440463475024 -235,24.0,26.0,-1.9692920169982515,3.760212661917064 -235,25.0,24.0,-1.2165301194494855,1.8171440463475024 -235,25.0,25.0,1.2165301194494855,-1.8171440463475024 -235,26.0,24.0,-1.9692920169982515,3.760212661917064 -235,26.0,26.0,2.9648255679509314,-8.166471027527404 -235,26.0,27.0,0.0,2.608731947574922 -235,26.0,28.0,-0.99553355095268,1.881005840357816 -235,27.0,5.0,-4.362844058012917,15.463571542897856 -235,27.0,7.0,-1.4439790613954469,4.540814658476248 -235,27.0,26.0,0.0,2.608731947574922 -235,27.0,27.0,5.806823119408364,-22.67145722159613 -235,28.0,26.0,-0.99553355095268,1.881005840357816 -235,28.0,28.0,1.9075867579849564,-3.604364401207048 -235,28.0,29.0,-0.9120532070322764,1.7233585608492326 -235,29.0,28.0,-0.9120532070322764,1.7233585608492326 -235,29.0,29.0,0.9120532070322764,-1.7233585608492326 -236,0.0,0.0,6.765516048652632,-21.23160167089863 -236,0.0,1.0,-5.224646179885656,15.646726840803398 -236,0.0,2.0,-1.5408698687669766,5.631674830095234 -236,1.0,0.0,-5.224646179885656,15.646726840803398 -236,1.0,1.0,9.75228216552403,-30.648662892676068 -236,1.0,3.0,-1.7055303166990268,5.1973792282565086 -236,1.0,4.0,-1.1359607881738778,4.772479328281356 -236,1.0,5.0,-1.6861448807654689,5.116477495334806 -236,2.0,0.0,-1.5408698687669766,5.631674830095234 -236,2.0,2.0,9.736318911079088,-29.13794745915803 -236,2.0,3.0,-8.19544904231211,23.5308726290628 -236,3.0,1.0,-1.7055303166990268,5.1973792282565086 -236,3.0,2.0,-8.19544904231211,23.5308726290628 -236,3.0,3.0,16.314103089185693,-55.509410535254254 -236,3.0,5.0,-6.413123730174556,22.31120356548123 -236,3.0,11.0,0.0,4.191255364806866 -236,4.0,1.0,-1.1359607881738778,4.772479328281356 -236,4.0,4.0,4.089980824135861,-12.190647245055052 -236,4.0,6.0,-2.954020035961983,7.449267916773697 -236,5.0,1.0,-1.6861448807654689,5.116477495334806 -236,5.0,3.0,-6.413123730174556,22.31120356548123 -236,5.0,5.0,22.341631269034565,-82.8291478657789 -236,5.0,6.0,-3.590210423980992,11.02611441072814 -236,5.0,7.0,-6.289308176100628,22.0125786163522 -236,5.0,8.0,0.0,4.915840805411357 -236,5.0,9.0,0.0,1.8561002591115965 -236,5.0,27.0,-4.362844058012917,15.463571542897856 -236,6.0,4.0,-2.954020035961983,7.449267916773697 -236,6.0,5.0,-3.590210423980992,11.02611441072814 -236,6.0,6.0,6.544230459942975,-18.45668232750184 -236,7.0,5.0,-6.289308176100628,22.0125786163522 -236,7.0,7.0,7.733287237496075,-26.527493274828448 -236,7.0,27.0,-1.4439790613954469,4.540814658476248 -236,8.0,5.0,0.0,4.915840805411357 -236,8.0,8.0,0.0,-18.706293706293707 -236,8.0,9.0,0.0,9.090909090909092 -236,8.0,10.0,0.0,4.807692307692308 -236,9.0,5.0,0.0,1.8561002591115965 -236,9.0,8.0,0.0,9.090909090909092 -236,9.0,9.0,13.462042814524237,-41.3837606675224 -236,9.0,16.0,-3.956039125715353,10.317447719844054 -236,9.0,19.0,-1.7848303152666305,3.98535828943083 -236,9.0,20.0,-5.101853820159654,10.98071411292983 -236,9.0,21.0,-2.619319553382597,5.400770303329455 -236,10.0,8.0,0.0,4.807692307692308 -236,10.0,10.0,0.0,-4.807692307692308 -236,11.0,3.0,0.0,4.191255364806866 -236,11.0,11.0,6.573961583776156,-24.424167659260668 -236,11.0,12.0,0.0,7.142857142857143 -236,11.0,13.0,-1.5265676088395577,3.1734252729654173 -236,11.0,14.0,-3.0953961826564296,6.097275864326261 -236,11.0,15.0,-1.9519977922801688,4.104359379111847 -236,12.0,11.0,0.0,7.142857142857143 -236,12.0,12.0,0.0,-7.142857142857143 -236,13.0,11.0,-1.5265676088395577,3.1734252729654173 -236,13.0,13.0,4.01751987283902,-5.424299332335067 -236,13.0,14.0,-2.4909522639994623,2.250874059369649 -236,14.0,11.0,-3.0953961826564296,6.097275864326261 -236,14.0,13.0,-2.4909522639994623,2.250874059369649 -236,14.0,14.0,9.365498545964757,-16.01163373210796 -236,14.0,17.0,-1.8108011504072024,3.687418931630696 -236,14.0,22.0,-1.9683489489016612,3.976064876781356 -236,15.0,11.0,-1.9519977922801688,4.104359379111847 -236,15.0,15.0,3.271064728633931,-8.94513365126506 -236,15.0,16.0,-1.3190669363537617,4.8407742721532125 -236,16.0,9.0,-3.956039125715353,10.317447719844054 -236,16.0,15.0,-1.3190669363537617,4.8407742721532125 -236,16.0,16.0,5.275106062069114,-15.158221991997266 -236,17.0,14.0,-1.8108011504072024,3.687418931630696 -236,17.0,17.0,4.886487584415919,-9.906177730909668 -236,17.0,18.0,-3.0756864340087167,6.218758799278971 -236,18.0,17.0,-3.0756864340087167,6.218758799278971 -236,18.0,18.0,8.958039375185187,-17.98346468163191 -236,18.0,19.0,-5.88235294117647,11.76470588235294 -236,19.0,9.0,-1.7848303152666305,3.98535828943083 -236,19.0,18.0,-5.88235294117647,11.76470588235294 -236,19.0,19.0,7.6671832564431,-15.75006417178377 -236,20.0,9.0,-5.101853820159654,10.98071411292983 -236,20.0,20.0,21.876495189895888,-45.10843276170355 -236,20.0,21.0,-16.774641369736234,34.127718648773715 -236,21.0,9.0,-2.619319553382597,5.400770303329455 -236,21.0,20.0,-16.774641369736234,34.127718648773715 -236,21.0,21.0,21.93449907537439,-43.48289181517921 -236,21.0,23.0,-2.5405381522555563,3.95440286307604 -236,22.0,14.0,-1.9683489489016612,3.976064876781356 -236,22.0,22.0,3.429754555384988,-6.965303617315433 -236,22.0,23.0,-1.4614056064833263,2.989238740534077 -236,23.0,21.0,-2.5405381522555563,3.95440286307604 -236,23.0,22.0,-1.4614056064833263,2.989238740534077 -236,23.0,23.0,5.311836702613133,-9.188263657315172 -236,23.0,24.0,-1.3098929438742493,2.287622053705056 -236,24.0,23.0,-1.3098929438742493,2.287622053705056 -236,24.0,24.0,4.495715080321987,-7.864978761969621 -236,24.0,25.0,-1.2165301194494855,1.8171440463475024 -236,24.0,26.0,-1.9692920169982515,3.760212661917064 -236,25.0,24.0,-1.2165301194494855,1.8171440463475024 -236,25.0,25.0,1.2165301194494855,-1.8171440463475024 -236,26.0,24.0,-1.9692920169982515,3.760212661917064 -236,26.0,26.0,3.652281470778589,-9.46044252232512 -236,26.0,27.0,0.0,2.608731947574922 -236,26.0,28.0,-0.99553355095268,1.881005840357816 -236,26.0,29.0,-0.6874559028276572,1.293971494797717 -236,27.0,5.0,-4.362844058012917,15.463571542897856 -236,27.0,7.0,-1.4439790613954469,4.540814658476248 -236,27.0,26.0,0.0,2.608731947574922 -236,27.0,27.0,5.806823119408364,-22.67145722159613 -236,28.0,26.0,-0.99553355095268,1.881005840357816 -236,28.0,28.0,1.9075867579849564,-3.604364401207048 -236,28.0,29.0,-0.9120532070322764,1.7233585608492326 -236,29.0,26.0,-0.6874559028276572,1.293971494797717 -236,29.0,28.0,-0.9120532070322764,1.7233585608492326 -236,29.0,29.0,1.5995091098599337,-3.0173300556469496 -237,0.0,0.0,5.224646179885656,-15.620326840803395 -237,0.0,1.0,-5.224646179885656,15.646726840803398 -237,1.0,0.0,-5.224646179885656,15.646726840803398 -237,1.0,1.0,9.75228216552403,-30.648662892676068 -237,1.0,3.0,-1.7055303166990268,5.1973792282565086 -237,1.0,4.0,-1.1359607881738778,4.772479328281356 -237,1.0,5.0,-1.6861448807654689,5.116477495334806 -237,2.0,2.0,8.19544904231211,-23.5266726290628 -237,2.0,3.0,-8.19544904231211,23.5308726290628 -237,3.0,1.0,-1.7055303166990268,5.1973792282565086 -237,3.0,2.0,-8.19544904231211,23.5308726290628 -237,3.0,3.0,16.314103089185693,-51.01235542280054 -237,3.0,5.0,-6.413123730174556,22.31120356548123 -237,4.0,1.0,-1.1359607881738778,4.772479328281356 -237,4.0,4.0,4.089980824135861,-12.190647245055052 -237,4.0,6.0,-2.954020035961983,7.449267916773697 -237,5.0,1.0,-1.6861448807654689,5.116477495334806 -237,5.0,3.0,-6.413123730174556,22.31120356548123 -237,5.0,5.0,22.341631269034565,-82.8291478657789 -237,5.0,6.0,-3.590210423980992,11.02611441072814 -237,5.0,7.0,-6.289308176100628,22.0125786163522 -237,5.0,8.0,0.0,4.915840805411357 -237,5.0,9.0,0.0,1.8561002591115965 -237,5.0,27.0,-4.362844058012917,15.463571542897856 -237,6.0,4.0,-2.954020035961983,7.449267916773697 -237,6.0,5.0,-3.590210423980992,11.02611441072814 -237,6.0,6.0,6.544230459942975,-18.45668232750184 -237,7.0,5.0,-6.289308176100628,22.0125786163522 -237,7.0,7.0,7.733287237496075,-26.527493274828448 -237,7.0,27.0,-1.4439790613954469,4.540814658476248 -237,8.0,5.0,0.0,4.915840805411357 -237,8.0,8.0,0.0,-18.706293706293707 -237,8.0,9.0,0.0,9.090909090909092 -237,8.0,10.0,0.0,4.807692307692308 -237,9.0,5.0,0.0,1.8561002591115965 -237,9.0,8.0,0.0,9.090909090909092 -237,9.0,9.0,13.462042814524237,-41.3837606675224 -237,9.0,16.0,-3.956039125715353,10.317447719844054 -237,9.0,19.0,-1.7848303152666305,3.98535828943083 -237,9.0,20.0,-5.101853820159654,10.98071411292983 -237,9.0,21.0,-2.619319553382597,5.400770303329455 -237,10.0,8.0,0.0,4.807692307692308 -237,10.0,10.0,0.0,-4.807692307692308 -237,11.0,11.0,6.573961583776156,-20.517917659260668 -237,11.0,12.0,0.0,7.142857142857143 -237,11.0,13.0,-1.5265676088395577,3.1734252729654173 -237,11.0,14.0,-3.0953961826564296,6.097275864326261 -237,11.0,15.0,-1.9519977922801688,4.104359379111847 -237,12.0,11.0,0.0,7.142857142857143 -237,12.0,12.0,0.0,-7.142857142857143 -237,13.0,11.0,-1.5265676088395577,3.1734252729654173 -237,13.0,13.0,4.01751987283902,-5.424299332335067 -237,13.0,14.0,-2.4909522639994623,2.250874059369649 -237,14.0,11.0,-3.0953961826564296,6.097275864326261 -237,14.0,13.0,-2.4909522639994623,2.250874059369649 -237,14.0,14.0,9.365498545964757,-16.01163373210796 -237,14.0,17.0,-1.8108011504072024,3.687418931630696 -237,14.0,22.0,-1.9683489489016612,3.976064876781356 -237,15.0,11.0,-1.9519977922801688,4.104359379111847 -237,15.0,15.0,3.271064728633931,-8.94513365126506 -237,15.0,16.0,-1.3190669363537617,4.8407742721532125 -237,16.0,9.0,-3.956039125715353,10.317447719844054 -237,16.0,15.0,-1.3190669363537617,4.8407742721532125 -237,16.0,16.0,5.275106062069114,-15.158221991997266 -237,17.0,14.0,-1.8108011504072024,3.687418931630696 -237,17.0,17.0,4.886487584415919,-9.906177730909668 -237,17.0,18.0,-3.0756864340087167,6.218758799278971 -237,18.0,17.0,-3.0756864340087167,6.218758799278971 -237,18.0,18.0,8.958039375185187,-17.98346468163191 -237,18.0,19.0,-5.88235294117647,11.76470588235294 -237,19.0,9.0,-1.7848303152666305,3.98535828943083 -237,19.0,18.0,-5.88235294117647,11.76470588235294 -237,19.0,19.0,7.6671832564431,-15.75006417178377 -237,20.0,9.0,-5.101853820159654,10.98071411292983 -237,20.0,20.0,21.876495189895888,-45.10843276170355 -237,20.0,21.0,-16.774641369736234,34.127718648773715 -237,21.0,9.0,-2.619319553382597,5.400770303329455 -237,21.0,20.0,-16.774641369736234,34.127718648773715 -237,21.0,21.0,21.93449907537439,-43.48289181517921 -237,21.0,23.0,-2.5405381522555563,3.95440286307604 -237,22.0,14.0,-1.9683489489016612,3.976064876781356 -237,22.0,22.0,3.429754555384988,-6.965303617315433 -237,22.0,23.0,-1.4614056064833263,2.989238740534077 -237,23.0,21.0,-2.5405381522555563,3.95440286307604 -237,23.0,22.0,-1.4614056064833263,2.989238740534077 -237,23.0,23.0,5.311836702613133,-9.188263657315172 -237,23.0,24.0,-1.3098929438742493,2.287622053705056 -237,24.0,23.0,-1.3098929438742493,2.287622053705056 -237,24.0,24.0,4.495715080321987,-7.864978761969621 -237,24.0,25.0,-1.2165301194494855,1.8171440463475024 -237,24.0,26.0,-1.9692920169982515,3.760212661917064 -237,25.0,24.0,-1.2165301194494855,1.8171440463475024 -237,25.0,25.0,1.2165301194494855,-1.8171440463475024 -237,26.0,24.0,-1.9692920169982515,3.760212661917064 -237,26.0,26.0,3.652281470778589,-9.46044252232512 -237,26.0,27.0,0.0,2.608731947574922 -237,26.0,28.0,-0.99553355095268,1.881005840357816 -237,26.0,29.0,-0.6874559028276572,1.293971494797717 -237,27.0,5.0,-4.362844058012917,15.463571542897856 -237,27.0,7.0,-1.4439790613954469,4.540814658476248 -237,27.0,26.0,0.0,2.608731947574922 -237,27.0,27.0,5.806823119408364,-22.67145722159613 -237,28.0,26.0,-0.99553355095268,1.881005840357816 -237,28.0,28.0,1.9075867579849564,-3.604364401207048 -237,28.0,29.0,-0.9120532070322764,1.7233585608492326 -237,29.0,26.0,-0.6874559028276572,1.293971494797717 -237,29.0,28.0,-0.9120532070322764,1.7233585608492326 -237,29.0,29.0,1.5995091098599337,-3.0173300556469496 -238,0.0,0.0,6.765516048652632,-21.23160167089863 -238,0.0,1.0,-5.224646179885656,15.646726840803398 -238,0.0,2.0,-1.5408698687669766,5.631674830095234 -238,1.0,0.0,-5.224646179885656,15.646726840803398 -238,1.0,1.0,9.75228216552403,-30.648662892676068 -238,1.0,3.0,-1.7055303166990268,5.1973792282565086 -238,1.0,4.0,-1.1359607881738778,4.772479328281356 -238,1.0,5.0,-1.6861448807654689,5.116477495334806 -238,2.0,0.0,-1.5408698687669766,5.631674830095234 -238,2.0,2.0,9.736318911079088,-29.13794745915803 -238,2.0,3.0,-8.19544904231211,23.5308726290628 -238,3.0,1.0,-1.7055303166990268,5.1973792282565086 -238,3.0,2.0,-8.19544904231211,23.5308726290628 -238,3.0,3.0,16.314103089185693,-55.509410535254254 -238,3.0,5.0,-6.413123730174556,22.31120356548123 -238,3.0,11.0,0.0,4.191255364806866 -238,4.0,1.0,-1.1359607881738778,4.772479328281356 -238,4.0,4.0,4.089980824135861,-12.190647245055052 -238,4.0,6.0,-2.954020035961983,7.449267916773697 -238,5.0,1.0,-1.6861448807654689,5.116477495334806 -238,5.0,3.0,-6.413123730174556,22.31120356548123 -238,5.0,5.0,22.341631269034565,-82.8291478657789 -238,5.0,6.0,-3.590210423980992,11.02611441072814 -238,5.0,7.0,-6.289308176100628,22.0125786163522 -238,5.0,8.0,0.0,4.915840805411357 -238,5.0,9.0,0.0,1.8561002591115965 -238,5.0,27.0,-4.362844058012917,15.463571542897856 -238,6.0,4.0,-2.954020035961983,7.449267916773697 -238,6.0,5.0,-3.590210423980992,11.02611441072814 -238,6.0,6.0,6.544230459942975,-18.45668232750184 -238,7.0,5.0,-6.289308176100628,22.0125786163522 -238,7.0,7.0,7.733287237496075,-26.527493274828448 -238,7.0,27.0,-1.4439790613954469,4.540814658476248 -238,8.0,5.0,0.0,4.915840805411357 -238,8.0,8.0,0.0,-18.706293706293707 -238,8.0,9.0,0.0,9.090909090909092 -238,8.0,10.0,0.0,4.807692307692308 -238,9.0,5.0,0.0,1.8561002591115965 -238,9.0,8.0,0.0,9.090909090909092 -238,9.0,9.0,8.36018899436458,-30.40304655459257 -238,9.0,16.0,-3.956039125715353,10.317447719844054 -238,9.0,19.0,-1.7848303152666305,3.98535828943083 -238,9.0,21.0,-2.619319553382597,5.400770303329455 -238,10.0,8.0,0.0,4.807692307692308 -238,10.0,10.0,0.0,-4.807692307692308 -238,11.0,3.0,0.0,4.191255364806866 -238,11.0,11.0,6.573961583776156,-24.424167659260668 -238,11.0,12.0,0.0,7.142857142857143 -238,11.0,13.0,-1.5265676088395577,3.1734252729654173 -238,11.0,14.0,-3.0953961826564296,6.097275864326261 -238,11.0,15.0,-1.9519977922801688,4.104359379111847 -238,12.0,11.0,0.0,7.142857142857143 -238,12.0,12.0,0.0,-7.142857142857143 -238,13.0,11.0,-1.5265676088395577,3.1734252729654173 -238,13.0,13.0,4.01751987283902,-5.424299332335067 -238,13.0,14.0,-2.4909522639994623,2.250874059369649 -238,14.0,11.0,-3.0953961826564296,6.097275864326261 -238,14.0,13.0,-2.4909522639994623,2.250874059369649 -238,14.0,14.0,9.365498545964757,-16.01163373210796 -238,14.0,17.0,-1.8108011504072024,3.687418931630696 -238,14.0,22.0,-1.9683489489016612,3.976064876781356 -238,15.0,11.0,-1.9519977922801688,4.104359379111847 -238,15.0,15.0,3.271064728633931,-8.94513365126506 -238,15.0,16.0,-1.3190669363537617,4.8407742721532125 -238,16.0,9.0,-3.956039125715353,10.317447719844054 -238,16.0,15.0,-1.3190669363537617,4.8407742721532125 -238,16.0,16.0,5.275106062069114,-15.158221991997266 -238,17.0,14.0,-1.8108011504072024,3.687418931630696 -238,17.0,17.0,4.886487584415919,-9.906177730909668 -238,17.0,18.0,-3.0756864340087167,6.218758799278971 -238,18.0,17.0,-3.0756864340087167,6.218758799278971 -238,18.0,18.0,8.958039375185187,-17.98346468163191 -238,18.0,19.0,-5.88235294117647,11.76470588235294 -238,19.0,9.0,-1.7848303152666305,3.98535828943083 -238,19.0,18.0,-5.88235294117647,11.76470588235294 -238,19.0,19.0,7.6671832564431,-15.75006417178377 -238,20.0,20.0,16.774641369736234,-34.127718648773715 -238,20.0,21.0,-16.774641369736234,34.127718648773715 -238,21.0,9.0,-2.619319553382597,5.400770303329455 -238,21.0,20.0,-16.774641369736234,34.127718648773715 -238,21.0,21.0,21.93449907537439,-43.48289181517921 -238,21.0,23.0,-2.5405381522555563,3.95440286307604 -238,22.0,14.0,-1.9683489489016612,3.976064876781356 -238,22.0,22.0,3.429754555384988,-6.965303617315433 -238,22.0,23.0,-1.4614056064833263,2.989238740534077 -238,23.0,21.0,-2.5405381522555563,3.95440286307604 -238,23.0,22.0,-1.4614056064833263,2.989238740534077 -238,23.0,23.0,5.311836702613133,-9.188263657315172 -238,23.0,24.0,-1.3098929438742493,2.287622053705056 -238,24.0,23.0,-1.3098929438742493,2.287622053705056 -238,24.0,24.0,4.495715080321987,-7.864978761969621 -238,24.0,25.0,-1.2165301194494855,1.8171440463475024 -238,24.0,26.0,-1.9692920169982515,3.760212661917064 -238,25.0,24.0,-1.2165301194494855,1.8171440463475024 -238,25.0,25.0,1.2165301194494855,-1.8171440463475024 -238,26.0,24.0,-1.9692920169982515,3.760212661917064 -238,26.0,26.0,3.652281470778589,-9.46044252232512 -238,26.0,27.0,0.0,2.608731947574922 -238,26.0,28.0,-0.99553355095268,1.881005840357816 -238,26.0,29.0,-0.6874559028276572,1.293971494797717 -238,27.0,5.0,-4.362844058012917,15.463571542897856 -238,27.0,7.0,-1.4439790613954469,4.540814658476248 -238,27.0,26.0,0.0,2.608731947574922 -238,27.0,27.0,5.806823119408364,-22.67145722159613 -238,28.0,26.0,-0.99553355095268,1.881005840357816 -238,28.0,28.0,1.9075867579849564,-3.604364401207048 -238,28.0,29.0,-0.9120532070322764,1.7233585608492326 -238,29.0,26.0,-0.6874559028276572,1.293971494797717 -238,29.0,28.0,-0.9120532070322764,1.7233585608492326 -238,29.0,29.0,1.5995091098599337,-3.0173300556469496 -239,0.0,0.0,6.765516048652632,-21.23160167089863 -239,0.0,1.0,-5.224646179885656,15.646726840803398 -239,0.0,2.0,-1.5408698687669766,5.631674830095234 -239,1.0,0.0,-5.224646179885656,15.646726840803398 -239,1.0,1.0,8.61632137735015,-25.897083564394716 -239,1.0,3.0,-1.7055303166990268,5.1973792282565086 -239,1.0,5.0,-1.6861448807654689,5.116477495334806 -239,2.0,0.0,-1.5408698687669766,5.631674830095234 -239,2.0,2.0,9.736318911079088,-29.13794745915803 -239,2.0,3.0,-8.19544904231211,23.5308726290628 -239,3.0,1.0,-1.7055303166990268,5.1973792282565086 -239,3.0,2.0,-8.19544904231211,23.5308726290628 -239,3.0,3.0,16.314103089185693,-55.509410535254254 -239,3.0,5.0,-6.413123730174556,22.31120356548123 -239,3.0,11.0,0.0,4.191255364806866 -239,4.0,4.0,2.954020035961983,-7.439067916773697 -239,4.0,6.0,-2.954020035961983,7.449267916773697 -239,5.0,1.0,-1.6861448807654689,5.116477495334806 -239,5.0,3.0,-6.413123730174556,22.31120356548123 -239,5.0,5.0,22.341631269034565,-82.8291478657789 -239,5.0,6.0,-3.590210423980992,11.02611441072814 -239,5.0,7.0,-6.289308176100628,22.0125786163522 -239,5.0,8.0,0.0,4.915840805411357 -239,5.0,9.0,0.0,1.8561002591115965 -239,5.0,27.0,-4.362844058012917,15.463571542897856 -239,6.0,4.0,-2.954020035961983,7.449267916773697 -239,6.0,5.0,-3.590210423980992,11.02611441072814 -239,6.0,6.0,6.544230459942975,-18.45668232750184 -239,7.0,5.0,-6.289308176100628,22.0125786163522 -239,7.0,7.0,7.733287237496075,-26.527493274828448 -239,7.0,27.0,-1.4439790613954469,4.540814658476248 -239,8.0,5.0,0.0,4.915840805411357 -239,8.0,8.0,0.0,-18.706293706293707 -239,8.0,9.0,0.0,9.090909090909092 -239,8.0,10.0,0.0,4.807692307692308 -239,9.0,5.0,0.0,1.8561002591115965 -239,9.0,8.0,0.0,9.090909090909092 -239,9.0,9.0,13.462042814524237,-41.3837606675224 -239,9.0,16.0,-3.956039125715353,10.317447719844054 -239,9.0,19.0,-1.7848303152666305,3.98535828943083 -239,9.0,20.0,-5.101853820159654,10.98071411292983 -239,9.0,21.0,-2.619319553382597,5.400770303329455 -239,10.0,8.0,0.0,4.807692307692308 -239,10.0,10.0,0.0,-4.807692307692308 -239,11.0,3.0,0.0,4.191255364806866 -239,11.0,11.0,6.573961583776156,-24.424167659260668 -239,11.0,12.0,0.0,7.142857142857143 -239,11.0,13.0,-1.5265676088395577,3.1734252729654173 -239,11.0,14.0,-3.0953961826564296,6.097275864326261 -239,11.0,15.0,-1.9519977922801688,4.104359379111847 -239,12.0,11.0,0.0,7.142857142857143 -239,12.0,12.0,0.0,-7.142857142857143 -239,13.0,11.0,-1.5265676088395577,3.1734252729654173 -239,13.0,13.0,4.01751987283902,-5.424299332335067 -239,13.0,14.0,-2.4909522639994623,2.250874059369649 -239,14.0,11.0,-3.0953961826564296,6.097275864326261 -239,14.0,13.0,-2.4909522639994623,2.250874059369649 -239,14.0,14.0,9.365498545964757,-16.01163373210796 -239,14.0,17.0,-1.8108011504072024,3.687418931630696 -239,14.0,22.0,-1.9683489489016612,3.976064876781356 -239,15.0,11.0,-1.9519977922801688,4.104359379111847 -239,15.0,15.0,3.271064728633931,-8.94513365126506 -239,15.0,16.0,-1.3190669363537617,4.8407742721532125 -239,16.0,9.0,-3.956039125715353,10.317447719844054 -239,16.0,15.0,-1.3190669363537617,4.8407742721532125 -239,16.0,16.0,5.275106062069114,-15.158221991997266 -239,17.0,14.0,-1.8108011504072024,3.687418931630696 -239,17.0,17.0,4.886487584415919,-9.906177730909668 -239,17.0,18.0,-3.0756864340087167,6.218758799278971 -239,18.0,17.0,-3.0756864340087167,6.218758799278971 -239,18.0,18.0,8.958039375185187,-17.98346468163191 -239,18.0,19.0,-5.88235294117647,11.76470588235294 -239,19.0,9.0,-1.7848303152666305,3.98535828943083 -239,19.0,18.0,-5.88235294117647,11.76470588235294 -239,19.0,19.0,7.6671832564431,-15.75006417178377 -239,20.0,9.0,-5.101853820159654,10.98071411292983 -239,20.0,20.0,21.876495189895888,-45.10843276170355 -239,20.0,21.0,-16.774641369736234,34.127718648773715 -239,21.0,9.0,-2.619319553382597,5.400770303329455 -239,21.0,20.0,-16.774641369736234,34.127718648773715 -239,21.0,21.0,21.93449907537439,-43.48289181517921 -239,21.0,23.0,-2.5405381522555563,3.95440286307604 -239,22.0,14.0,-1.9683489489016612,3.976064876781356 -239,22.0,22.0,3.429754555384988,-6.965303617315433 -239,22.0,23.0,-1.4614056064833263,2.989238740534077 -239,23.0,21.0,-2.5405381522555563,3.95440286307604 -239,23.0,22.0,-1.4614056064833263,2.989238740534077 -239,23.0,23.0,5.311836702613133,-9.188263657315172 -239,23.0,24.0,-1.3098929438742493,2.287622053705056 -239,24.0,23.0,-1.3098929438742493,2.287622053705056 -239,24.0,24.0,4.495715080321987,-7.864978761969621 -239,24.0,25.0,-1.2165301194494855,1.8171440463475024 -239,24.0,26.0,-1.9692920169982515,3.760212661917064 -239,25.0,24.0,-1.2165301194494855,1.8171440463475024 -239,25.0,25.0,1.2165301194494855,-1.8171440463475024 -239,26.0,24.0,-1.9692920169982515,3.760212661917064 -239,26.0,26.0,3.652281470778589,-9.46044252232512 -239,26.0,27.0,0.0,2.608731947574922 -239,26.0,28.0,-0.99553355095268,1.881005840357816 -239,26.0,29.0,-0.6874559028276572,1.293971494797717 -239,27.0,5.0,-4.362844058012917,15.463571542897856 -239,27.0,7.0,-1.4439790613954469,4.540814658476248 -239,27.0,26.0,0.0,2.608731947574922 -239,27.0,27.0,5.806823119408364,-22.67145722159613 -239,28.0,26.0,-0.99553355095268,1.881005840357816 -239,28.0,28.0,1.9075867579849564,-3.604364401207048 -239,28.0,29.0,-0.9120532070322764,1.7233585608492326 -239,29.0,26.0,-0.6874559028276572,1.293971494797717 -239,29.0,28.0,-0.9120532070322764,1.7233585608492326 -239,29.0,29.0,1.5995091098599337,-3.0173300556469496 -240,0.0,0.0,6.765516048652632,-21.23160167089863 -240,0.0,1.0,-5.224646179885656,15.646726840803398 -240,0.0,2.0,-1.5408698687669766,5.631674830095234 -240,1.0,0.0,-5.224646179885656,15.646726840803398 -240,1.0,1.0,9.75228216552403,-30.648662892676068 -240,1.0,3.0,-1.7055303166990268,5.1973792282565086 -240,1.0,4.0,-1.1359607881738778,4.772479328281356 -240,1.0,5.0,-1.6861448807654689,5.116477495334806 -240,2.0,0.0,-1.5408698687669766,5.631674830095234 -240,2.0,2.0,9.736318911079088,-29.13794745915803 -240,2.0,3.0,-8.19544904231211,23.5308726290628 -240,3.0,1.0,-1.7055303166990268,5.1973792282565086 -240,3.0,2.0,-8.19544904231211,23.5308726290628 -240,3.0,3.0,16.314103089185693,-55.509410535254254 -240,3.0,5.0,-6.413123730174556,22.31120356548123 -240,3.0,11.0,0.0,4.191255364806866 -240,4.0,1.0,-1.1359607881738778,4.772479328281356 -240,4.0,4.0,1.1359607881738778,-4.751579328281355 -240,5.0,1.0,-1.6861448807654689,5.116477495334806 -240,5.0,3.0,-6.413123730174556,22.31120356548123 -240,5.0,5.0,22.341631269034565,-82.8291478657789 -240,5.0,6.0,-3.590210423980992,11.02611441072814 -240,5.0,7.0,-6.289308176100628,22.0125786163522 -240,5.0,8.0,0.0,4.915840805411357 -240,5.0,9.0,0.0,1.8561002591115965 -240,5.0,27.0,-4.362844058012917,15.463571542897856 -240,6.0,5.0,-3.590210423980992,11.02611441072814 -240,6.0,6.0,3.590210423980992,-11.01761441072814 -240,7.0,5.0,-6.289308176100628,22.0125786163522 -240,7.0,7.0,7.733287237496075,-26.527493274828448 -240,7.0,27.0,-1.4439790613954469,4.540814658476248 -240,8.0,5.0,0.0,4.915840805411357 -240,8.0,8.0,0.0,-18.706293706293707 -240,8.0,9.0,0.0,9.090909090909092 -240,8.0,10.0,0.0,4.807692307692308 -240,9.0,5.0,0.0,1.8561002591115965 -240,9.0,8.0,0.0,9.090909090909092 -240,9.0,9.0,13.462042814524237,-41.3837606675224 -240,9.0,16.0,-3.956039125715353,10.317447719844054 -240,9.0,19.0,-1.7848303152666305,3.98535828943083 -240,9.0,20.0,-5.101853820159654,10.98071411292983 -240,9.0,21.0,-2.619319553382597,5.400770303329455 -240,10.0,8.0,0.0,4.807692307692308 -240,10.0,10.0,0.0,-4.807692307692308 -240,11.0,3.0,0.0,4.191255364806866 -240,11.0,11.0,6.573961583776156,-24.424167659260668 -240,11.0,12.0,0.0,7.142857142857143 -240,11.0,13.0,-1.5265676088395577,3.1734252729654173 -240,11.0,14.0,-3.0953961826564296,6.097275864326261 -240,11.0,15.0,-1.9519977922801688,4.104359379111847 -240,12.0,11.0,0.0,7.142857142857143 -240,12.0,12.0,0.0,-7.142857142857143 -240,13.0,11.0,-1.5265676088395577,3.1734252729654173 -240,13.0,13.0,4.01751987283902,-5.424299332335067 -240,13.0,14.0,-2.4909522639994623,2.250874059369649 -240,14.0,11.0,-3.0953961826564296,6.097275864326261 -240,14.0,13.0,-2.4909522639994623,2.250874059369649 -240,14.0,14.0,7.397149597063095,-12.035568855326606 -240,14.0,17.0,-1.8108011504072024,3.687418931630696 -240,15.0,11.0,-1.9519977922801688,4.104359379111847 -240,15.0,15.0,3.271064728633931,-8.94513365126506 -240,15.0,16.0,-1.3190669363537617,4.8407742721532125 -240,16.0,9.0,-3.956039125715353,10.317447719844054 -240,16.0,15.0,-1.3190669363537617,4.8407742721532125 -240,16.0,16.0,5.275106062069114,-15.158221991997266 -240,17.0,14.0,-1.8108011504072024,3.687418931630696 -240,17.0,17.0,1.8108011504072024,-3.687418931630696 -240,18.0,18.0,5.88235294117647,-11.76470588235294 -240,18.0,19.0,-5.88235294117647,11.76470588235294 -240,19.0,9.0,-1.7848303152666305,3.98535828943083 -240,19.0,18.0,-5.88235294117647,11.76470588235294 -240,19.0,19.0,7.6671832564431,-15.75006417178377 -240,20.0,9.0,-5.101853820159654,10.98071411292983 -240,20.0,20.0,21.876495189895888,-45.10843276170355 -240,20.0,21.0,-16.774641369736234,34.127718648773715 -240,21.0,9.0,-2.619319553382597,5.400770303329455 -240,21.0,20.0,-16.774641369736234,34.127718648773715 -240,21.0,21.0,21.93449907537439,-43.48289181517921 -240,21.0,23.0,-2.5405381522555563,3.95440286307604 -240,22.0,22.0,1.4614056064833263,-2.989238740534077 -240,22.0,23.0,-1.4614056064833263,2.989238740534077 -240,23.0,21.0,-2.5405381522555563,3.95440286307604 -240,23.0,22.0,-1.4614056064833263,2.989238740534077 -240,23.0,23.0,5.311836702613133,-9.188263657315172 -240,23.0,24.0,-1.3098929438742493,2.287622053705056 -240,24.0,23.0,-1.3098929438742493,2.287622053705056 -240,24.0,24.0,4.495715080321987,-7.864978761969621 -240,24.0,25.0,-1.2165301194494855,1.8171440463475024 -240,24.0,26.0,-1.9692920169982515,3.760212661917064 -240,25.0,24.0,-1.2165301194494855,1.8171440463475024 -240,25.0,25.0,1.2165301194494855,-1.8171440463475024 -240,26.0,24.0,-1.9692920169982515,3.760212661917064 -240,26.0,26.0,3.652281470778589,-9.46044252232512 -240,26.0,27.0,0.0,2.608731947574922 -240,26.0,28.0,-0.99553355095268,1.881005840357816 -240,26.0,29.0,-0.6874559028276572,1.293971494797717 -240,27.0,5.0,-4.362844058012917,15.463571542897856 -240,27.0,7.0,-1.4439790613954469,4.540814658476248 -240,27.0,26.0,0.0,2.608731947574922 -240,27.0,27.0,5.806823119408364,-22.67145722159613 -240,28.0,26.0,-0.99553355095268,1.881005840357816 -240,28.0,28.0,1.9075867579849564,-3.604364401207048 -240,28.0,29.0,-0.9120532070322764,1.7233585608492326 -240,29.0,26.0,-0.6874559028276572,1.293971494797717 -240,29.0,28.0,-0.9120532070322764,1.7233585608492326 -240,29.0,29.0,1.5995091098599337,-3.0173300556469496 -241,0.0,0.0,6.765516048652632,-21.23160167089863 -241,0.0,1.0,-5.224646179885656,15.646726840803398 -241,0.0,2.0,-1.5408698687669766,5.631674830095234 -241,1.0,0.0,-5.224646179885656,15.646726840803398 -241,1.0,1.0,9.75228216552403,-30.648662892676068 -241,1.0,3.0,-1.7055303166990268,5.1973792282565086 -241,1.0,4.0,-1.1359607881738778,4.772479328281356 -241,1.0,5.0,-1.6861448807654689,5.116477495334806 -241,2.0,0.0,-1.5408698687669766,5.631674830095234 -241,2.0,2.0,9.736318911079088,-29.13794745915803 -241,2.0,3.0,-8.19544904231211,23.5308726290628 -241,3.0,1.0,-1.7055303166990268,5.1973792282565086 -241,3.0,2.0,-8.19544904231211,23.5308726290628 -241,3.0,3.0,16.314103089185693,-55.509410535254254 -241,3.0,5.0,-6.413123730174556,22.31120356548123 -241,3.0,11.0,0.0,4.191255364806866 -241,4.0,1.0,-1.1359607881738778,4.772479328281356 -241,4.0,4.0,4.089980824135861,-12.190647245055052 -241,4.0,6.0,-2.954020035961983,7.449267916773697 -241,5.0,1.0,-1.6861448807654689,5.116477495334806 -241,5.0,3.0,-6.413123730174556,22.31120356548123 -241,5.0,5.0,22.341631269034565,-82.8291478657789 -241,5.0,6.0,-3.590210423980992,11.02611441072814 -241,5.0,7.0,-6.289308176100628,22.0125786163522 -241,5.0,8.0,0.0,4.915840805411357 -241,5.0,9.0,0.0,1.8561002591115965 -241,5.0,27.0,-4.362844058012917,15.463571542897856 -241,6.0,4.0,-2.954020035961983,7.449267916773697 -241,6.0,5.0,-3.590210423980992,11.02611441072814 -241,6.0,6.0,6.544230459942975,-18.45668232750184 -241,7.0,5.0,-6.289308176100628,22.0125786163522 -241,7.0,7.0,7.733287237496075,-26.527493274828448 -241,7.0,27.0,-1.4439790613954469,4.540814658476248 -241,8.0,5.0,0.0,4.915840805411357 -241,8.0,8.0,0.0,-18.706293706293707 -241,8.0,9.0,0.0,9.090909090909092 -241,8.0,10.0,0.0,4.807692307692308 -241,9.0,5.0,0.0,1.8561002591115965 -241,9.0,8.0,0.0,9.090909090909092 -241,9.0,9.0,13.462042814524237,-41.3837606675224 -241,9.0,16.0,-3.956039125715353,10.317447719844054 -241,9.0,19.0,-1.7848303152666305,3.98535828943083 -241,9.0,20.0,-5.101853820159654,10.98071411292983 -241,9.0,21.0,-2.619319553382597,5.400770303329455 -241,10.0,8.0,0.0,4.807692307692308 -241,10.0,10.0,0.0,-4.807692307692308 -241,11.0,3.0,0.0,4.191255364806866 -241,11.0,11.0,6.573961583776156,-24.424167659260668 -241,11.0,12.0,0.0,7.142857142857143 -241,11.0,13.0,-1.5265676088395577,3.1734252729654173 -241,11.0,14.0,-3.0953961826564296,6.097275864326261 -241,11.0,15.0,-1.9519977922801688,4.104359379111847 -241,12.0,11.0,0.0,7.142857142857143 -241,12.0,12.0,0.0,-7.142857142857143 -241,13.0,11.0,-1.5265676088395577,3.1734252729654173 -241,13.0,13.0,4.01751987283902,-5.424299332335067 -241,13.0,14.0,-2.4909522639994623,2.250874059369649 -241,14.0,11.0,-3.0953961826564296,6.097275864326261 -241,14.0,13.0,-2.4909522639994623,2.250874059369649 -241,14.0,14.0,9.365498545964757,-16.01163373210796 -241,14.0,17.0,-1.8108011504072024,3.687418931630696 -241,14.0,22.0,-1.9683489489016612,3.976064876781356 -241,15.0,11.0,-1.9519977922801688,4.104359379111847 -241,15.0,15.0,3.271064728633931,-8.94513365126506 -241,15.0,16.0,-1.3190669363537617,4.8407742721532125 -241,16.0,9.0,-3.956039125715353,10.317447719844054 -241,16.0,15.0,-1.3190669363537617,4.8407742721532125 -241,16.0,16.0,5.275106062069114,-15.158221991997266 -241,17.0,14.0,-1.8108011504072024,3.687418931630696 -241,17.0,17.0,4.886487584415919,-9.906177730909668 -241,17.0,18.0,-3.0756864340087167,6.218758799278971 -241,18.0,17.0,-3.0756864340087167,6.218758799278971 -241,18.0,18.0,8.958039375185187,-17.98346468163191 -241,18.0,19.0,-5.88235294117647,11.76470588235294 -241,19.0,9.0,-1.7848303152666305,3.98535828943083 -241,19.0,18.0,-5.88235294117647,11.76470588235294 -241,19.0,19.0,7.6671832564431,-15.75006417178377 -241,20.0,9.0,-5.101853820159654,10.98071411292983 -241,20.0,20.0,21.876495189895888,-45.10843276170355 -241,20.0,21.0,-16.774641369736234,34.127718648773715 -241,21.0,9.0,-2.619319553382597,5.400770303329455 -241,21.0,20.0,-16.774641369736234,34.127718648773715 -241,21.0,21.0,21.93449907537439,-43.48289181517921 -241,21.0,23.0,-2.5405381522555563,3.95440286307604 -241,22.0,14.0,-1.9683489489016612,3.976064876781356 -241,22.0,22.0,3.429754555384988,-6.965303617315433 -241,22.0,23.0,-1.4614056064833263,2.989238740534077 -241,23.0,21.0,-2.5405381522555563,3.95440286307604 -241,23.0,22.0,-1.4614056064833263,2.989238740534077 -241,23.0,23.0,5.311836702613133,-9.188263657315172 -241,23.0,24.0,-1.3098929438742493,2.287622053705056 -241,24.0,23.0,-1.3098929438742493,2.287622053705056 -241,24.0,24.0,4.495715080321987,-7.864978761969621 -241,24.0,25.0,-1.2165301194494855,1.8171440463475024 -241,24.0,26.0,-1.9692920169982515,3.760212661917064 -241,25.0,24.0,-1.2165301194494855,1.8171440463475024 -241,25.0,25.0,1.2165301194494855,-1.8171440463475024 -241,26.0,24.0,-1.9692920169982515,3.760212661917064 -241,26.0,26.0,3.652281470778589,-9.46044252232512 -241,26.0,27.0,0.0,2.608731947574922 -241,26.0,28.0,-0.99553355095268,1.881005840357816 -241,26.0,29.0,-0.6874559028276572,1.293971494797717 -241,27.0,5.0,-4.362844058012917,15.463571542897856 -241,27.0,7.0,-1.4439790613954469,4.540814658476248 -241,27.0,26.0,0.0,2.608731947574922 -241,27.0,27.0,5.806823119408364,-22.67145722159613 -241,28.0,26.0,-0.99553355095268,1.881005840357816 -241,28.0,28.0,1.9075867579849564,-3.604364401207048 -241,28.0,29.0,-0.9120532070322764,1.7233585608492326 -241,29.0,26.0,-0.6874559028276572,1.293971494797717 -241,29.0,28.0,-0.9120532070322764,1.7233585608492326 -241,29.0,29.0,1.5995091098599337,-3.0173300556469496 -242,0.0,0.0,6.765516048652632,-21.23160167089863 -242,0.0,1.0,-5.224646179885656,15.646726840803398 -242,0.0,2.0,-1.5408698687669766,5.631674830095234 -242,1.0,0.0,-5.224646179885656,15.646726840803398 -242,1.0,1.0,9.75228216552403,-30.648662892676068 -242,1.0,3.0,-1.7055303166990268,5.1973792282565086 -242,1.0,4.0,-1.1359607881738778,4.772479328281356 -242,1.0,5.0,-1.6861448807654689,5.116477495334806 -242,2.0,0.0,-1.5408698687669766,5.631674830095234 -242,2.0,2.0,9.736318911079088,-29.13794745915803 -242,2.0,3.0,-8.19544904231211,23.5308726290628 -242,3.0,1.0,-1.7055303166990268,5.1973792282565086 -242,3.0,2.0,-8.19544904231211,23.5308726290628 -242,3.0,3.0,9.900979359011137,-33.202706969773025 -242,3.0,11.0,0.0,4.191255364806866 -242,4.0,1.0,-1.1359607881738778,4.772479328281356 -242,4.0,4.0,4.089980824135861,-12.190647245055052 -242,4.0,6.0,-2.954020035961983,7.449267916773697 -242,5.0,1.0,-1.6861448807654689,5.116477495334806 -242,5.0,5.0,15.928507538860009,-60.52244430029767 -242,5.0,6.0,-3.590210423980992,11.02611441072814 -242,5.0,7.0,-6.289308176100628,22.0125786163522 -242,5.0,8.0,0.0,4.915840805411357 -242,5.0,9.0,0.0,1.8561002591115965 -242,5.0,27.0,-4.362844058012917,15.463571542897856 -242,6.0,4.0,-2.954020035961983,7.449267916773697 -242,6.0,5.0,-3.590210423980992,11.02611441072814 -242,6.0,6.0,6.544230459942975,-18.45668232750184 -242,7.0,5.0,-6.289308176100628,22.0125786163522 -242,7.0,7.0,7.733287237496075,-26.527493274828448 -242,7.0,27.0,-1.4439790613954469,4.540814658476248 -242,8.0,5.0,0.0,4.915840805411357 -242,8.0,8.0,0.0,-9.615384615384617 -242,8.0,10.0,0.0,4.807692307692308 -242,9.0,5.0,0.0,1.8561002591115965 -242,9.0,9.0,10.842723261141638,-26.89208127328385 -242,9.0,16.0,-3.956039125715353,10.317447719844054 -242,9.0,19.0,-1.7848303152666305,3.98535828943083 -242,9.0,20.0,-5.101853820159654,10.98071411292983 -242,10.0,8.0,0.0,4.807692307692308 -242,10.0,10.0,0.0,-4.807692307692308 -242,11.0,3.0,0.0,4.191255364806866 -242,11.0,11.0,6.573961583776156,-24.424167659260668 -242,11.0,12.0,0.0,7.142857142857143 -242,11.0,13.0,-1.5265676088395577,3.1734252729654173 -242,11.0,14.0,-3.0953961826564296,6.097275864326261 -242,11.0,15.0,-1.9519977922801688,4.104359379111847 -242,12.0,11.0,0.0,7.142857142857143 -242,12.0,12.0,0.0,-7.142857142857143 -242,13.0,11.0,-1.5265676088395577,3.1734252729654173 -242,13.0,13.0,4.01751987283902,-5.424299332335067 -242,13.0,14.0,-2.4909522639994623,2.250874059369649 -242,14.0,11.0,-3.0953961826564296,6.097275864326261 -242,14.0,13.0,-2.4909522639994623,2.250874059369649 -242,14.0,14.0,9.365498545964757,-16.01163373210796 -242,14.0,17.0,-1.8108011504072024,3.687418931630696 -242,14.0,22.0,-1.9683489489016612,3.976064876781356 -242,15.0,11.0,-1.9519977922801688,4.104359379111847 -242,15.0,15.0,3.271064728633931,-8.94513365126506 -242,15.0,16.0,-1.3190669363537617,4.8407742721532125 -242,16.0,9.0,-3.956039125715353,10.317447719844054 -242,16.0,15.0,-1.3190669363537617,4.8407742721532125 -242,16.0,16.0,5.275106062069114,-15.158221991997266 -242,17.0,14.0,-1.8108011504072024,3.687418931630696 -242,17.0,17.0,4.886487584415919,-9.906177730909668 -242,17.0,18.0,-3.0756864340087167,6.218758799278971 -242,18.0,17.0,-3.0756864340087167,6.218758799278971 -242,18.0,18.0,8.958039375185187,-17.98346468163191 -242,18.0,19.0,-5.88235294117647,11.76470588235294 -242,19.0,9.0,-1.7848303152666305,3.98535828943083 -242,19.0,18.0,-5.88235294117647,11.76470588235294 -242,19.0,19.0,7.6671832564431,-15.75006417178377 -242,20.0,9.0,-5.101853820159654,10.98071411292983 -242,20.0,20.0,21.876495189895888,-45.10843276170355 -242,20.0,21.0,-16.774641369736234,34.127718648773715 -242,21.0,20.0,-16.774641369736234,34.127718648773715 -242,21.0,21.0,19.31517952199179,-38.08212151184976 -242,21.0,23.0,-2.5405381522555563,3.95440286307604 -242,22.0,14.0,-1.9683489489016612,3.976064876781356 -242,22.0,22.0,3.429754555384988,-6.965303617315433 -242,22.0,23.0,-1.4614056064833263,2.989238740534077 -242,23.0,21.0,-2.5405381522555563,3.95440286307604 -242,23.0,22.0,-1.4614056064833263,2.989238740534077 -242,23.0,23.0,5.311836702613133,-9.188263657315172 -242,23.0,24.0,-1.3098929438742493,2.287622053705056 -242,24.0,23.0,-1.3098929438742493,2.287622053705056 -242,24.0,24.0,4.495715080321987,-7.864978761969621 -242,24.0,25.0,-1.2165301194494855,1.8171440463475024 -242,24.0,26.0,-1.9692920169982515,3.760212661917064 -242,25.0,24.0,-1.2165301194494855,1.8171440463475024 -242,25.0,25.0,1.2165301194494855,-1.8171440463475024 -242,26.0,24.0,-1.9692920169982515,3.760212661917064 -242,26.0,26.0,3.652281470778589,-9.46044252232512 -242,26.0,27.0,0.0,2.608731947574922 -242,26.0,28.0,-0.99553355095268,1.881005840357816 -242,26.0,29.0,-0.6874559028276572,1.293971494797717 -242,27.0,5.0,-4.362844058012917,15.463571542897856 -242,27.0,7.0,-1.4439790613954469,4.540814658476248 -242,27.0,26.0,0.0,2.608731947574922 -242,27.0,27.0,5.806823119408364,-22.67145722159613 -242,28.0,26.0,-0.99553355095268,1.881005840357816 -242,28.0,28.0,1.9075867579849564,-3.604364401207048 -242,28.0,29.0,-0.9120532070322764,1.7233585608492326 -242,29.0,26.0,-0.6874559028276572,1.293971494797717 -242,29.0,28.0,-0.9120532070322764,1.7233585608492326 -242,29.0,29.0,1.5995091098599337,-3.0173300556469496 -243,0.0,0.0,6.765516048652632,-21.23160167089863 -243,0.0,1.0,-5.224646179885656,15.646726840803398 -243,0.0,2.0,-1.5408698687669766,5.631674830095234 -243,1.0,0.0,-5.224646179885656,15.646726840803398 -243,1.0,1.0,9.75228216552403,-30.648662892676068 -243,1.0,3.0,-1.7055303166990268,5.1973792282565086 -243,1.0,4.0,-1.1359607881738778,4.772479328281356 -243,1.0,5.0,-1.6861448807654689,5.116477495334806 -243,2.0,0.0,-1.5408698687669766,5.631674830095234 -243,2.0,2.0,9.736318911079088,-29.13794745915803 -243,2.0,3.0,-8.19544904231211,23.5308726290628 -243,3.0,1.0,-1.7055303166990268,5.1973792282565086 -243,3.0,2.0,-8.19544904231211,23.5308726290628 -243,3.0,3.0,16.314103089185693,-55.509410535254254 -243,3.0,5.0,-6.413123730174556,22.31120356548123 -243,3.0,11.0,0.0,4.191255364806866 -243,4.0,1.0,-1.1359607881738778,4.772479328281356 -243,4.0,4.0,4.089980824135861,-12.190647245055052 -243,4.0,6.0,-2.954020035961983,7.449267916773697 -243,5.0,1.0,-1.6861448807654689,5.116477495334806 -243,5.0,3.0,-6.413123730174556,22.31120356548123 -243,5.0,5.0,22.341631269034565,-82.8291478657789 -243,5.0,6.0,-3.590210423980992,11.02611441072814 -243,5.0,7.0,-6.289308176100628,22.0125786163522 -243,5.0,8.0,0.0,4.915840805411357 -243,5.0,9.0,0.0,1.8561002591115965 -243,5.0,27.0,-4.362844058012917,15.463571542897856 -243,6.0,4.0,-2.954020035961983,7.449267916773697 -243,6.0,5.0,-3.590210423980992,11.02611441072814 -243,6.0,6.0,6.544230459942975,-18.45668232750184 -243,7.0,5.0,-6.289308176100628,22.0125786163522 -243,7.0,7.0,7.733287237496075,-26.527493274828448 -243,7.0,27.0,-1.4439790613954469,4.540814658476248 -243,8.0,5.0,0.0,4.915840805411357 -243,8.0,8.0,0.0,-18.706293706293707 -243,8.0,9.0,0.0,9.090909090909092 -243,8.0,10.0,0.0,4.807692307692308 -243,9.0,5.0,0.0,1.8561002591115965 -243,9.0,8.0,0.0,9.090909090909092 -243,9.0,9.0,13.462042814524237,-41.3837606675224 -243,9.0,16.0,-3.956039125715353,10.317447719844054 -243,9.0,19.0,-1.7848303152666305,3.98535828943083 -243,9.0,20.0,-5.101853820159654,10.98071411292983 -243,9.0,21.0,-2.619319553382597,5.400770303329455 -243,10.0,8.0,0.0,4.807692307692308 -243,10.0,10.0,0.0,-4.807692307692308 -243,11.0,3.0,0.0,4.191255364806866 -243,11.0,11.0,5.047393974936599,-21.25074238629525 -243,11.0,12.0,0.0,7.142857142857143 -243,11.0,14.0,-3.0953961826564296,6.097275864326261 -243,11.0,15.0,-1.9519977922801688,4.104359379111847 -243,12.0,11.0,0.0,7.142857142857143 -243,12.0,12.0,0.0,-7.142857142857143 -243,13.0,13.0,2.4909522639994623,-2.250874059369649 -243,13.0,14.0,-2.4909522639994623,2.250874059369649 -243,14.0,11.0,-3.0953961826564296,6.097275864326261 -243,14.0,13.0,-2.4909522639994623,2.250874059369649 -243,14.0,14.0,9.365498545964757,-16.01163373210796 -243,14.0,17.0,-1.8108011504072024,3.687418931630696 -243,14.0,22.0,-1.9683489489016612,3.976064876781356 -243,15.0,11.0,-1.9519977922801688,4.104359379111847 -243,15.0,15.0,3.271064728633931,-8.94513365126506 -243,15.0,16.0,-1.3190669363537617,4.8407742721532125 -243,16.0,9.0,-3.956039125715353,10.317447719844054 -243,16.0,15.0,-1.3190669363537617,4.8407742721532125 -243,16.0,16.0,5.275106062069114,-15.158221991997266 -243,17.0,14.0,-1.8108011504072024,3.687418931630696 -243,17.0,17.0,4.886487584415919,-9.906177730909668 -243,17.0,18.0,-3.0756864340087167,6.218758799278971 -243,18.0,17.0,-3.0756864340087167,6.218758799278971 -243,18.0,18.0,8.958039375185187,-17.98346468163191 -243,18.0,19.0,-5.88235294117647,11.76470588235294 -243,19.0,9.0,-1.7848303152666305,3.98535828943083 -243,19.0,18.0,-5.88235294117647,11.76470588235294 -243,19.0,19.0,7.6671832564431,-15.75006417178377 -243,20.0,9.0,-5.101853820159654,10.98071411292983 -243,20.0,20.0,21.876495189895888,-45.10843276170355 -243,20.0,21.0,-16.774641369736234,34.127718648773715 -243,21.0,9.0,-2.619319553382597,5.400770303329455 -243,21.0,20.0,-16.774641369736234,34.127718648773715 -243,21.0,21.0,21.93449907537439,-43.48289181517921 -243,21.0,23.0,-2.5405381522555563,3.95440286307604 -243,22.0,14.0,-1.9683489489016612,3.976064876781356 -243,22.0,22.0,3.429754555384988,-6.965303617315433 -243,22.0,23.0,-1.4614056064833263,2.989238740534077 -243,23.0,21.0,-2.5405381522555563,3.95440286307604 -243,23.0,22.0,-1.4614056064833263,2.989238740534077 -243,23.0,23.0,5.311836702613133,-9.188263657315172 -243,23.0,24.0,-1.3098929438742493,2.287622053705056 -243,24.0,23.0,-1.3098929438742493,2.287622053705056 -243,24.0,24.0,4.495715080321987,-7.864978761969621 -243,24.0,25.0,-1.2165301194494855,1.8171440463475024 -243,24.0,26.0,-1.9692920169982515,3.760212661917064 -243,25.0,24.0,-1.2165301194494855,1.8171440463475024 -243,25.0,25.0,1.2165301194494855,-1.8171440463475024 -243,26.0,24.0,-1.9692920169982515,3.760212661917064 -243,26.0,26.0,3.652281470778589,-9.46044252232512 -243,26.0,27.0,0.0,2.608731947574922 -243,26.0,28.0,-0.99553355095268,1.881005840357816 -243,26.0,29.0,-0.6874559028276572,1.293971494797717 -243,27.0,5.0,-4.362844058012917,15.463571542897856 -243,27.0,7.0,-1.4439790613954469,4.540814658476248 -243,27.0,26.0,0.0,2.608731947574922 -243,27.0,27.0,5.806823119408364,-22.67145722159613 -243,28.0,26.0,-0.99553355095268,1.881005840357816 -243,28.0,28.0,1.9075867579849564,-3.604364401207048 -243,28.0,29.0,-0.9120532070322764,1.7233585608492326 -243,29.0,26.0,-0.6874559028276572,1.293971494797717 -243,29.0,28.0,-0.9120532070322764,1.7233585608492326 -243,29.0,29.0,1.5995091098599337,-3.0173300556469496 -244,0.0,0.0,6.765516048652632,-21.23160167089863 -244,0.0,1.0,-5.224646179885656,15.646726840803398 -244,0.0,2.0,-1.5408698687669766,5.631674830095234 -244,1.0,0.0,-5.224646179885656,15.646726840803398 -244,1.0,1.0,9.75228216552403,-30.648662892676068 -244,1.0,3.0,-1.7055303166990268,5.1973792282565086 -244,1.0,4.0,-1.1359607881738778,4.772479328281356 -244,1.0,5.0,-1.6861448807654689,5.116477495334806 -244,2.0,0.0,-1.5408698687669766,5.631674830095234 -244,2.0,2.0,9.736318911079088,-29.13794745915803 -244,2.0,3.0,-8.19544904231211,23.5308726290628 -244,3.0,1.0,-1.7055303166990268,5.1973792282565086 -244,3.0,2.0,-8.19544904231211,23.5308726290628 -244,3.0,3.0,16.314103089185693,-55.509410535254254 -244,3.0,5.0,-6.413123730174556,22.31120356548123 -244,3.0,11.0,0.0,4.191255364806866 -244,4.0,1.0,-1.1359607881738778,4.772479328281356 -244,4.0,4.0,4.089980824135861,-12.190647245055052 -244,4.0,6.0,-2.954020035961983,7.449267916773697 -244,5.0,1.0,-1.6861448807654689,5.116477495334806 -244,5.0,3.0,-6.413123730174556,22.31120356548123 -244,5.0,5.0,22.341631269034565,-82.8291478657789 -244,5.0,6.0,-3.590210423980992,11.02611441072814 -244,5.0,7.0,-6.289308176100628,22.0125786163522 -244,5.0,8.0,0.0,4.915840805411357 -244,5.0,9.0,0.0,1.8561002591115965 -244,5.0,27.0,-4.362844058012917,15.463571542897856 -244,6.0,4.0,-2.954020035961983,7.449267916773697 -244,6.0,5.0,-3.590210423980992,11.02611441072814 -244,6.0,6.0,6.544230459942975,-18.45668232750184 -244,7.0,5.0,-6.289308176100628,22.0125786163522 -244,7.0,7.0,7.733287237496075,-26.527493274828448 -244,7.0,27.0,-1.4439790613954469,4.540814658476248 -244,8.0,5.0,0.0,4.915840805411357 -244,8.0,8.0,0.0,-18.706293706293707 -244,8.0,9.0,0.0,9.090909090909092 -244,8.0,10.0,0.0,4.807692307692308 -244,9.0,5.0,0.0,1.8561002591115965 -244,9.0,8.0,0.0,9.090909090909092 -244,9.0,9.0,10.842723261141638,-35.98299036419294 -244,9.0,16.0,-3.956039125715353,10.317447719844054 -244,9.0,19.0,-1.7848303152666305,3.98535828943083 -244,9.0,20.0,-5.101853820159654,10.98071411292983 -244,10.0,8.0,0.0,4.807692307692308 -244,10.0,10.0,0.0,-4.807692307692308 -244,11.0,3.0,0.0,4.191255364806866 -244,11.0,11.0,6.573961583776156,-24.424167659260668 -244,11.0,12.0,0.0,7.142857142857143 -244,11.0,13.0,-1.5265676088395577,3.1734252729654173 -244,11.0,14.0,-3.0953961826564296,6.097275864326261 -244,11.0,15.0,-1.9519977922801688,4.104359379111847 -244,12.0,11.0,0.0,7.142857142857143 -244,12.0,12.0,0.0,-7.142857142857143 -244,13.0,11.0,-1.5265676088395577,3.1734252729654173 -244,13.0,13.0,4.01751987283902,-5.424299332335067 -244,13.0,14.0,-2.4909522639994623,2.250874059369649 -244,14.0,11.0,-3.0953961826564296,6.097275864326261 -244,14.0,13.0,-2.4909522639994623,2.250874059369649 -244,14.0,14.0,9.365498545964757,-16.01163373210796 -244,14.0,17.0,-1.8108011504072024,3.687418931630696 -244,14.0,22.0,-1.9683489489016612,3.976064876781356 -244,15.0,11.0,-1.9519977922801688,4.104359379111847 -244,15.0,15.0,3.271064728633931,-8.94513365126506 -244,15.0,16.0,-1.3190669363537617,4.8407742721532125 -244,16.0,9.0,-3.956039125715353,10.317447719844054 -244,16.0,15.0,-1.3190669363537617,4.8407742721532125 -244,16.0,16.0,5.275106062069114,-15.158221991997266 -244,17.0,14.0,-1.8108011504072024,3.687418931630696 -244,17.0,17.0,4.886487584415919,-9.906177730909668 -244,17.0,18.0,-3.0756864340087167,6.218758799278971 -244,18.0,17.0,-3.0756864340087167,6.218758799278971 -244,18.0,18.0,8.958039375185187,-17.98346468163191 -244,18.0,19.0,-5.88235294117647,11.76470588235294 -244,19.0,9.0,-1.7848303152666305,3.98535828943083 -244,19.0,18.0,-5.88235294117647,11.76470588235294 -244,19.0,19.0,7.6671832564431,-15.75006417178377 -244,20.0,9.0,-5.101853820159654,10.98071411292983 -244,20.0,20.0,21.876495189895888,-45.10843276170355 -244,20.0,21.0,-16.774641369736234,34.127718648773715 -244,21.0,20.0,-16.774641369736234,34.127718648773715 -244,21.0,21.0,19.31517952199179,-38.08212151184976 -244,21.0,23.0,-2.5405381522555563,3.95440286307604 -244,22.0,14.0,-1.9683489489016612,3.976064876781356 -244,22.0,22.0,3.429754555384988,-6.965303617315433 -244,22.0,23.0,-1.4614056064833263,2.989238740534077 -244,23.0,21.0,-2.5405381522555563,3.95440286307604 -244,23.0,22.0,-1.4614056064833263,2.989238740534077 -244,23.0,23.0,5.311836702613133,-9.188263657315172 -244,23.0,24.0,-1.3098929438742493,2.287622053705056 -244,24.0,23.0,-1.3098929438742493,2.287622053705056 -244,24.0,24.0,4.495715080321987,-7.864978761969621 -244,24.0,25.0,-1.2165301194494855,1.8171440463475024 -244,24.0,26.0,-1.9692920169982515,3.760212661917064 -244,25.0,24.0,-1.2165301194494855,1.8171440463475024 -244,25.0,25.0,1.2165301194494855,-1.8171440463475024 -244,26.0,24.0,-1.9692920169982515,3.760212661917064 -244,26.0,26.0,3.652281470778589,-9.46044252232512 -244,26.0,27.0,0.0,2.608731947574922 -244,26.0,28.0,-0.99553355095268,1.881005840357816 -244,26.0,29.0,-0.6874559028276572,1.293971494797717 -244,27.0,5.0,-4.362844058012917,15.463571542897856 -244,27.0,7.0,-1.4439790613954469,4.540814658476248 -244,27.0,26.0,0.0,2.608731947574922 -244,27.0,27.0,5.806823119408364,-22.67145722159613 -244,28.0,26.0,-0.99553355095268,1.881005840357816 -244,28.0,28.0,1.9075867579849564,-3.604364401207048 -244,28.0,29.0,-0.9120532070322764,1.7233585608492326 -244,29.0,26.0,-0.6874559028276572,1.293971494797717 -244,29.0,28.0,-0.9120532070322764,1.7233585608492326 -244,29.0,29.0,1.5995091098599337,-3.0173300556469496 -245,0.0,0.0,5.224646179885656,-15.620326840803395 -245,0.0,1.0,-5.224646179885656,15.646726840803398 -245,1.0,0.0,-5.224646179885656,15.646726840803398 -245,1.0,1.0,9.75228216552403,-30.648662892676068 -245,1.0,3.0,-1.7055303166990268,5.1973792282565086 -245,1.0,4.0,-1.1359607881738778,4.772479328281356 -245,1.0,5.0,-1.6861448807654689,5.116477495334806 -245,2.0,2.0,8.19544904231211,-23.5266726290628 -245,2.0,3.0,-8.19544904231211,23.5308726290628 -245,3.0,1.0,-1.7055303166990268,5.1973792282565086 -245,3.0,2.0,-8.19544904231211,23.5308726290628 -245,3.0,3.0,16.314103089185693,-55.509410535254254 -245,3.0,5.0,-6.413123730174556,22.31120356548123 -245,3.0,11.0,0.0,4.191255364806866 -245,4.0,1.0,-1.1359607881738778,4.772479328281356 -245,4.0,4.0,4.089980824135861,-12.190647245055052 -245,4.0,6.0,-2.954020035961983,7.449267916773697 -245,5.0,1.0,-1.6861448807654689,5.116477495334806 -245,5.0,3.0,-6.413123730174556,22.31120356548123 -245,5.0,5.0,22.341631269034565,-82.8291478657789 -245,5.0,6.0,-3.590210423980992,11.02611441072814 -245,5.0,7.0,-6.289308176100628,22.0125786163522 -245,5.0,8.0,0.0,4.915840805411357 -245,5.0,9.0,0.0,1.8561002591115965 -245,5.0,27.0,-4.362844058012917,15.463571542897856 -245,6.0,4.0,-2.954020035961983,7.449267916773697 -245,6.0,5.0,-3.590210423980992,11.02611441072814 -245,6.0,6.0,6.544230459942975,-18.45668232750184 -245,7.0,5.0,-6.289308176100628,22.0125786163522 -245,7.0,7.0,6.289308176100628,-22.0080786163522 -245,8.0,5.0,0.0,4.915840805411357 -245,8.0,8.0,0.0,-9.615384615384617 -245,8.0,10.0,0.0,4.807692307692308 -245,9.0,5.0,0.0,1.8561002591115965 -245,9.0,9.0,13.462042814524237,-32.29285157661331 -245,9.0,16.0,-3.956039125715353,10.317447719844054 -245,9.0,19.0,-1.7848303152666305,3.98535828943083 -245,9.0,20.0,-5.101853820159654,10.98071411292983 -245,9.0,21.0,-2.619319553382597,5.400770303329455 -245,10.0,8.0,0.0,4.807692307692308 -245,10.0,10.0,0.0,-4.807692307692308 -245,11.0,3.0,0.0,4.191255364806866 -245,11.0,11.0,6.573961583776156,-24.424167659260668 -245,11.0,12.0,0.0,7.142857142857143 -245,11.0,13.0,-1.5265676088395577,3.1734252729654173 -245,11.0,14.0,-3.0953961826564296,6.097275864326261 -245,11.0,15.0,-1.9519977922801688,4.104359379111847 -245,12.0,11.0,0.0,7.142857142857143 -245,12.0,12.0,0.0,-7.142857142857143 -245,13.0,11.0,-1.5265676088395577,3.1734252729654173 -245,13.0,13.0,4.01751987283902,-5.424299332335067 -245,13.0,14.0,-2.4909522639994623,2.250874059369649 -245,14.0,11.0,-3.0953961826564296,6.097275864326261 -245,14.0,13.0,-2.4909522639994623,2.250874059369649 -245,14.0,14.0,9.365498545964757,-16.01163373210796 -245,14.0,17.0,-1.8108011504072024,3.687418931630696 -245,14.0,22.0,-1.9683489489016612,3.976064876781356 -245,15.0,11.0,-1.9519977922801688,4.104359379111847 -245,15.0,15.0,3.271064728633931,-8.94513365126506 -245,15.0,16.0,-1.3190669363537617,4.8407742721532125 -245,16.0,9.0,-3.956039125715353,10.317447719844054 -245,16.0,15.0,-1.3190669363537617,4.8407742721532125 -245,16.0,16.0,5.275106062069114,-15.158221991997266 -245,17.0,14.0,-1.8108011504072024,3.687418931630696 -245,17.0,17.0,1.8108011504072024,-3.687418931630696 -245,18.0,18.0,5.88235294117647,-11.76470588235294 -245,18.0,19.0,-5.88235294117647,11.76470588235294 -245,19.0,9.0,-1.7848303152666305,3.98535828943083 -245,19.0,18.0,-5.88235294117647,11.76470588235294 -245,19.0,19.0,7.6671832564431,-15.75006417178377 -245,20.0,9.0,-5.101853820159654,10.98071411292983 -245,20.0,20.0,21.876495189895888,-45.10843276170355 -245,20.0,21.0,-16.774641369736234,34.127718648773715 -245,21.0,9.0,-2.619319553382597,5.400770303329455 -245,21.0,20.0,-16.774641369736234,34.127718648773715 -245,21.0,21.0,21.93449907537439,-43.48289181517921 -245,21.0,23.0,-2.5405381522555563,3.95440286307604 -245,22.0,14.0,-1.9683489489016612,3.976064876781356 -245,22.0,22.0,3.429754555384988,-6.965303617315433 -245,22.0,23.0,-1.4614056064833263,2.989238740534077 -245,23.0,21.0,-2.5405381522555563,3.95440286307604 -245,23.0,22.0,-1.4614056064833263,2.989238740534077 -245,23.0,23.0,5.311836702613133,-9.188263657315172 -245,23.0,24.0,-1.3098929438742493,2.287622053705056 -245,24.0,23.0,-1.3098929438742493,2.287622053705056 -245,24.0,24.0,4.495715080321987,-7.864978761969621 -245,24.0,25.0,-1.2165301194494855,1.8171440463475024 -245,24.0,26.0,-1.9692920169982515,3.760212661917064 -245,25.0,24.0,-1.2165301194494855,1.8171440463475024 -245,25.0,25.0,1.2165301194494855,-1.8171440463475024 -245,26.0,24.0,-1.9692920169982515,3.760212661917064 -245,26.0,26.0,3.652281470778589,-9.46044252232512 -245,26.0,27.0,0.0,2.608731947574922 -245,26.0,28.0,-0.99553355095268,1.881005840357816 -245,26.0,29.0,-0.6874559028276572,1.293971494797717 -245,27.0,5.0,-4.362844058012917,15.463571542897856 -245,27.0,26.0,0.0,2.608731947574922 -245,27.0,27.0,4.362844058012917,-18.15204256311988 -245,28.0,26.0,-0.99553355095268,1.881005840357816 -245,28.0,28.0,1.9075867579849564,-3.604364401207048 -245,28.0,29.0,-0.9120532070322764,1.7233585608492326 -245,29.0,26.0,-0.6874559028276572,1.293971494797717 -245,29.0,28.0,-0.9120532070322764,1.7233585608492326 -245,29.0,29.0,1.5995091098599337,-3.0173300556469496 -246,0.0,0.0,6.765516048652632,-21.23160167089863 -246,0.0,1.0,-5.224646179885656,15.646726840803398 -246,0.0,2.0,-1.5408698687669766,5.631674830095234 -246,1.0,0.0,-5.224646179885656,15.646726840803398 -246,1.0,1.0,8.046751848825002,-25.46968366441956 -246,1.0,4.0,-1.1359607881738778,4.772479328281356 -246,1.0,5.0,-1.6861448807654689,5.116477495334806 -246,2.0,0.0,-1.5408698687669766,5.631674830095234 -246,2.0,2.0,9.736318911079088,-29.13794745915803 -246,2.0,3.0,-8.19544904231211,23.5308726290628 -246,3.0,2.0,-8.19544904231211,23.5308726290628 -246,3.0,3.0,14.608572772486664,-50.33043130699775 -246,3.0,5.0,-6.413123730174556,22.31120356548123 -246,3.0,11.0,0.0,4.191255364806866 -246,4.0,1.0,-1.1359607881738778,4.772479328281356 -246,4.0,4.0,4.089980824135861,-12.190647245055052 -246,4.0,6.0,-2.954020035961983,7.449267916773697 -246,5.0,1.0,-1.6861448807654689,5.116477495334806 -246,5.0,3.0,-6.413123730174556,22.31120356548123 -246,5.0,5.0,17.978787211021647,-67.37207632288106 -246,5.0,6.0,-3.590210423980992,11.02611441072814 -246,5.0,7.0,-6.289308176100628,22.0125786163522 -246,5.0,8.0,0.0,4.915840805411357 -246,5.0,9.0,0.0,1.8561002591115965 -246,6.0,4.0,-2.954020035961983,7.449267916773697 -246,6.0,5.0,-3.590210423980992,11.02611441072814 -246,6.0,6.0,6.544230459942975,-18.45668232750184 -246,7.0,5.0,-6.289308176100628,22.0125786163522 -246,7.0,7.0,7.733287237496075,-26.527493274828448 -246,7.0,27.0,-1.4439790613954469,4.540814658476248 -246,8.0,5.0,0.0,4.915840805411357 -246,8.0,8.0,0.0,-18.706293706293707 -246,8.0,9.0,0.0,9.090909090909092 -246,8.0,10.0,0.0,4.807692307692308 -246,9.0,5.0,0.0,1.8561002591115965 -246,9.0,8.0,0.0,9.090909090909092 -246,9.0,9.0,13.462042814524237,-41.3837606675224 -246,9.0,16.0,-3.956039125715353,10.317447719844054 -246,9.0,19.0,-1.7848303152666305,3.98535828943083 -246,9.0,20.0,-5.101853820159654,10.98071411292983 -246,9.0,21.0,-2.619319553382597,5.400770303329455 -246,10.0,8.0,0.0,4.807692307692308 -246,10.0,10.0,0.0,-4.807692307692308 -246,11.0,3.0,0.0,4.191255364806866 -246,11.0,11.0,6.573961583776156,-24.424167659260668 -246,11.0,12.0,0.0,7.142857142857143 -246,11.0,13.0,-1.5265676088395577,3.1734252729654173 -246,11.0,14.0,-3.0953961826564296,6.097275864326261 -246,11.0,15.0,-1.9519977922801688,4.104359379111847 -246,12.0,11.0,0.0,7.142857142857143 -246,12.0,12.0,0.0,-7.142857142857143 -246,13.0,11.0,-1.5265676088395577,3.1734252729654173 -246,13.0,13.0,4.01751987283902,-5.424299332335067 -246,13.0,14.0,-2.4909522639994623,2.250874059369649 -246,14.0,11.0,-3.0953961826564296,6.097275864326261 -246,14.0,13.0,-2.4909522639994623,2.250874059369649 -246,14.0,14.0,9.365498545964757,-16.01163373210796 -246,14.0,17.0,-1.8108011504072024,3.687418931630696 -246,14.0,22.0,-1.9683489489016612,3.976064876781356 -246,15.0,11.0,-1.9519977922801688,4.104359379111847 -246,15.0,15.0,3.271064728633931,-8.94513365126506 -246,15.0,16.0,-1.3190669363537617,4.8407742721532125 -246,16.0,9.0,-3.956039125715353,10.317447719844054 -246,16.0,15.0,-1.3190669363537617,4.8407742721532125 -246,16.0,16.0,5.275106062069114,-15.158221991997266 -246,17.0,14.0,-1.8108011504072024,3.687418931630696 -246,17.0,17.0,4.886487584415919,-9.906177730909668 -246,17.0,18.0,-3.0756864340087167,6.218758799278971 -246,18.0,17.0,-3.0756864340087167,6.218758799278971 -246,18.0,18.0,8.958039375185187,-17.98346468163191 -246,18.0,19.0,-5.88235294117647,11.76470588235294 -246,19.0,9.0,-1.7848303152666305,3.98535828943083 -246,19.0,18.0,-5.88235294117647,11.76470588235294 -246,19.0,19.0,7.6671832564431,-15.75006417178377 -246,20.0,9.0,-5.101853820159654,10.98071411292983 -246,20.0,20.0,21.876495189895888,-45.10843276170355 -246,20.0,21.0,-16.774641369736234,34.127718648773715 -246,21.0,9.0,-2.619319553382597,5.400770303329455 -246,21.0,20.0,-16.774641369736234,34.127718648773715 -246,21.0,21.0,21.93449907537439,-43.48289181517921 -246,21.0,23.0,-2.5405381522555563,3.95440286307604 -246,22.0,14.0,-1.9683489489016612,3.976064876781356 -246,22.0,22.0,3.429754555384988,-6.965303617315433 -246,22.0,23.0,-1.4614056064833263,2.989238740534077 -246,23.0,21.0,-2.5405381522555563,3.95440286307604 -246,23.0,22.0,-1.4614056064833263,2.989238740534077 -246,23.0,23.0,5.311836702613133,-9.188263657315172 -246,23.0,24.0,-1.3098929438742493,2.287622053705056 -246,24.0,23.0,-1.3098929438742493,2.287622053705056 -246,24.0,24.0,4.495715080321987,-7.864978761969621 -246,24.0,25.0,-1.2165301194494855,1.8171440463475024 -246,24.0,26.0,-1.9692920169982515,3.760212661917064 -246,25.0,24.0,-1.2165301194494855,1.8171440463475024 -246,25.0,25.0,1.2165301194494855,-1.8171440463475024 -246,26.0,24.0,-1.9692920169982515,3.760212661917064 -246,26.0,26.0,3.652281470778589,-9.46044252232512 -246,26.0,27.0,0.0,2.608731947574922 -246,26.0,28.0,-0.99553355095268,1.881005840357816 -246,26.0,29.0,-0.6874559028276572,1.293971494797717 -246,27.0,7.0,-1.4439790613954469,4.540814658476248 -246,27.0,26.0,0.0,2.608731947574922 -246,27.0,27.0,1.4439790613954469,-7.214385678698274 -246,28.0,26.0,-0.99553355095268,1.881005840357816 -246,28.0,28.0,1.9075867579849564,-3.604364401207048 -246,28.0,29.0,-0.9120532070322764,1.7233585608492326 -246,29.0,26.0,-0.6874559028276572,1.293971494797717 -246,29.0,28.0,-0.9120532070322764,1.7233585608492326 -246,29.0,29.0,1.5995091098599337,-3.0173300556469496 -247,0.0,0.0,1.5408698687669766,-5.611274830095233 -247,0.0,2.0,-1.5408698687669766,5.631674830095234 -247,1.0,1.0,4.527635985638374,-15.028336051872673 -247,1.0,3.0,-1.7055303166990268,5.1973792282565086 -247,1.0,4.0,-1.1359607881738778,4.772479328281356 -247,1.0,5.0,-1.6861448807654689,5.116477495334806 -247,2.0,0.0,-1.5408698687669766,5.631674830095234 -247,2.0,2.0,9.736318911079088,-29.13794745915803 -247,2.0,3.0,-8.19544904231211,23.5308726290628 -247,3.0,1.0,-1.7055303166990268,5.1973792282565086 -247,3.0,2.0,-8.19544904231211,23.5308726290628 -247,3.0,3.0,16.314103089185693,-55.509410535254254 -247,3.0,5.0,-6.413123730174556,22.31120356548123 -247,3.0,11.0,0.0,4.191255364806866 -247,4.0,1.0,-1.1359607881738778,4.772479328281356 -247,4.0,4.0,4.089980824135861,-12.190647245055052 -247,4.0,6.0,-2.954020035961983,7.449267916773697 -247,5.0,1.0,-1.6861448807654689,5.116477495334806 -247,5.0,3.0,-6.413123730174556,22.31120356548123 -247,5.0,5.0,22.341631269034565,-82.8291478657789 -247,5.0,6.0,-3.590210423980992,11.02611441072814 -247,5.0,7.0,-6.289308176100628,22.0125786163522 -247,5.0,8.0,0.0,4.915840805411357 -247,5.0,9.0,0.0,1.8561002591115965 -247,5.0,27.0,-4.362844058012917,15.463571542897856 -247,6.0,4.0,-2.954020035961983,7.449267916773697 -247,6.0,5.0,-3.590210423980992,11.02611441072814 -247,6.0,6.0,6.544230459942975,-18.45668232750184 -247,7.0,5.0,-6.289308176100628,22.0125786163522 -247,7.0,7.0,7.733287237496075,-26.527493274828448 -247,7.0,27.0,-1.4439790613954469,4.540814658476248 -247,8.0,5.0,0.0,4.915840805411357 -247,8.0,8.0,0.0,-18.706293706293707 -247,8.0,9.0,0.0,9.090909090909092 -247,8.0,10.0,0.0,4.807692307692308 -247,9.0,5.0,0.0,1.8561002591115965 -247,9.0,8.0,0.0,9.090909090909092 -247,9.0,9.0,13.462042814524237,-41.3837606675224 -247,9.0,16.0,-3.956039125715353,10.317447719844054 -247,9.0,19.0,-1.7848303152666305,3.98535828943083 -247,9.0,20.0,-5.101853820159654,10.98071411292983 -247,9.0,21.0,-2.619319553382597,5.400770303329455 -247,10.0,8.0,0.0,4.807692307692308 -247,10.0,10.0,0.0,-4.807692307692308 -247,11.0,3.0,0.0,4.191255364806866 -247,11.0,11.0,6.573961583776156,-24.424167659260668 -247,11.0,12.0,0.0,7.142857142857143 -247,11.0,13.0,-1.5265676088395577,3.1734252729654173 -247,11.0,14.0,-3.0953961826564296,6.097275864326261 -247,11.0,15.0,-1.9519977922801688,4.104359379111847 -247,12.0,11.0,0.0,7.142857142857143 -247,12.0,12.0,0.0,-7.142857142857143 -247,13.0,11.0,-1.5265676088395577,3.1734252729654173 -247,13.0,13.0,4.01751987283902,-5.424299332335067 -247,13.0,14.0,-2.4909522639994623,2.250874059369649 -247,14.0,11.0,-3.0953961826564296,6.097275864326261 -247,14.0,13.0,-2.4909522639994623,2.250874059369649 -247,14.0,14.0,9.365498545964757,-16.01163373210796 -247,14.0,17.0,-1.8108011504072024,3.687418931630696 -247,14.0,22.0,-1.9683489489016612,3.976064876781356 -247,15.0,11.0,-1.9519977922801688,4.104359379111847 -247,15.0,15.0,3.271064728633931,-8.94513365126506 -247,15.0,16.0,-1.3190669363537617,4.8407742721532125 -247,16.0,9.0,-3.956039125715353,10.317447719844054 -247,16.0,15.0,-1.3190669363537617,4.8407742721532125 -247,16.0,16.0,5.275106062069114,-15.158221991997266 -247,17.0,14.0,-1.8108011504072024,3.687418931630696 -247,17.0,17.0,4.886487584415919,-9.906177730909668 -247,17.0,18.0,-3.0756864340087167,6.218758799278971 -247,18.0,17.0,-3.0756864340087167,6.218758799278971 -247,18.0,18.0,8.958039375185187,-17.98346468163191 -247,18.0,19.0,-5.88235294117647,11.76470588235294 -247,19.0,9.0,-1.7848303152666305,3.98535828943083 -247,19.0,18.0,-5.88235294117647,11.76470588235294 -247,19.0,19.0,7.6671832564431,-15.75006417178377 -247,20.0,9.0,-5.101853820159654,10.98071411292983 -247,20.0,20.0,21.876495189895888,-45.10843276170355 -247,20.0,21.0,-16.774641369736234,34.127718648773715 -247,21.0,9.0,-2.619319553382597,5.400770303329455 -247,21.0,20.0,-16.774641369736234,34.127718648773715 -247,21.0,21.0,21.93449907537439,-43.48289181517921 -247,21.0,23.0,-2.5405381522555563,3.95440286307604 -247,22.0,14.0,-1.9683489489016612,3.976064876781356 -247,22.0,22.0,3.429754555384988,-6.965303617315433 -247,22.0,23.0,-1.4614056064833263,2.989238740534077 -247,23.0,21.0,-2.5405381522555563,3.95440286307604 -247,23.0,22.0,-1.4614056064833263,2.989238740534077 -247,23.0,23.0,5.311836702613133,-9.188263657315172 -247,23.0,24.0,-1.3098929438742493,2.287622053705056 -247,24.0,23.0,-1.3098929438742493,2.287622053705056 -247,24.0,24.0,4.495715080321987,-7.864978761969621 -247,24.0,25.0,-1.2165301194494855,1.8171440463475024 -247,24.0,26.0,-1.9692920169982515,3.760212661917064 -247,25.0,24.0,-1.2165301194494855,1.8171440463475024 -247,25.0,25.0,1.2165301194494855,-1.8171440463475024 -247,26.0,24.0,-1.9692920169982515,3.760212661917064 -247,26.0,26.0,3.652281470778589,-9.46044252232512 -247,26.0,27.0,0.0,2.608731947574922 -247,26.0,28.0,-0.99553355095268,1.881005840357816 -247,26.0,29.0,-0.6874559028276572,1.293971494797717 -247,27.0,5.0,-4.362844058012917,15.463571542897856 -247,27.0,7.0,-1.4439790613954469,4.540814658476248 -247,27.0,26.0,0.0,2.608731947574922 -247,27.0,27.0,5.806823119408364,-22.67145722159613 -247,28.0,26.0,-0.99553355095268,1.881005840357816 -247,28.0,28.0,1.9075867579849564,-3.604364401207048 -247,28.0,29.0,-0.9120532070322764,1.7233585608492326 -247,29.0,26.0,-0.6874559028276572,1.293971494797717 -247,29.0,28.0,-0.9120532070322764,1.7233585608492326 -247,29.0,29.0,1.5995091098599337,-3.0173300556469496 -248,0.0,0.0,6.765516048652632,-21.23160167089863 -248,0.0,1.0,-5.224646179885656,15.646726840803398 -248,0.0,2.0,-1.5408698687669766,5.631674830095234 -248,1.0,0.0,-5.224646179885656,15.646726840803398 -248,1.0,1.0,9.75228216552403,-30.648662892676068 -248,1.0,3.0,-1.7055303166990268,5.1973792282565086 -248,1.0,4.0,-1.1359607881738778,4.772479328281356 -248,1.0,5.0,-1.6861448807654689,5.116477495334806 -248,2.0,0.0,-1.5408698687669766,5.631674830095234 -248,2.0,2.0,9.736318911079088,-29.13794745915803 -248,2.0,3.0,-8.19544904231211,23.5308726290628 -248,3.0,1.0,-1.7055303166990268,5.1973792282565086 -248,3.0,2.0,-8.19544904231211,23.5308726290628 -248,3.0,3.0,16.314103089185693,-55.509410535254254 -248,3.0,5.0,-6.413123730174556,22.31120356548123 -248,3.0,11.0,0.0,4.191255364806866 -248,4.0,1.0,-1.1359607881738778,4.772479328281356 -248,4.0,4.0,4.089980824135861,-12.190647245055052 -248,4.0,6.0,-2.954020035961983,7.449267916773697 -248,5.0,1.0,-1.6861448807654689,5.116477495334806 -248,5.0,3.0,-6.413123730174556,22.31120356548123 -248,5.0,5.0,22.341631269034565,-82.8291478657789 -248,5.0,6.0,-3.590210423980992,11.02611441072814 -248,5.0,7.0,-6.289308176100628,22.0125786163522 -248,5.0,8.0,0.0,4.915840805411357 -248,5.0,9.0,0.0,1.8561002591115965 -248,5.0,27.0,-4.362844058012917,15.463571542897856 -248,6.0,4.0,-2.954020035961983,7.449267916773697 -248,6.0,5.0,-3.590210423980992,11.02611441072814 -248,6.0,6.0,6.544230459942975,-18.45668232750184 -248,7.0,5.0,-6.289308176100628,22.0125786163522 -248,7.0,7.0,7.733287237496075,-26.527493274828448 -248,7.0,27.0,-1.4439790613954469,4.540814658476248 -248,8.0,5.0,0.0,4.915840805411357 -248,8.0,8.0,0.0,-18.706293706293707 -248,8.0,9.0,0.0,9.090909090909092 -248,8.0,10.0,0.0,4.807692307692308 -248,9.0,5.0,0.0,1.8561002591115965 -248,9.0,8.0,0.0,9.090909090909092 -248,9.0,9.0,13.462042814524237,-41.3837606675224 -248,9.0,16.0,-3.956039125715353,10.317447719844054 -248,9.0,19.0,-1.7848303152666305,3.98535828943083 -248,9.0,20.0,-5.101853820159654,10.98071411292983 -248,9.0,21.0,-2.619319553382597,5.400770303329455 -248,10.0,8.0,0.0,4.807692307692308 -248,10.0,10.0,0.0,-4.807692307692308 -248,11.0,3.0,0.0,4.191255364806866 -248,11.0,11.0,5.047393974936599,-21.25074238629525 -248,11.0,12.0,0.0,7.142857142857143 -248,11.0,14.0,-3.0953961826564296,6.097275864326261 -248,11.0,15.0,-1.9519977922801688,4.104359379111847 -248,12.0,11.0,0.0,7.142857142857143 -248,12.0,12.0,0.0,-7.142857142857143 -248,13.0,13.0,2.4909522639994623,-2.250874059369649 -248,13.0,14.0,-2.4909522639994623,2.250874059369649 -248,14.0,11.0,-3.0953961826564296,6.097275864326261 -248,14.0,13.0,-2.4909522639994623,2.250874059369649 -248,14.0,14.0,9.365498545964757,-16.01163373210796 -248,14.0,17.0,-1.8108011504072024,3.687418931630696 -248,14.0,22.0,-1.9683489489016612,3.976064876781356 -248,15.0,11.0,-1.9519977922801688,4.104359379111847 -248,15.0,15.0,3.271064728633931,-8.94513365126506 -248,15.0,16.0,-1.3190669363537617,4.8407742721532125 -248,16.0,9.0,-3.956039125715353,10.317447719844054 -248,16.0,15.0,-1.3190669363537617,4.8407742721532125 -248,16.0,16.0,5.275106062069114,-15.158221991997266 -248,17.0,14.0,-1.8108011504072024,3.687418931630696 -248,17.0,17.0,4.886487584415919,-9.906177730909668 -248,17.0,18.0,-3.0756864340087167,6.218758799278971 -248,18.0,17.0,-3.0756864340087167,6.218758799278971 -248,18.0,18.0,8.958039375185187,-17.98346468163191 -248,18.0,19.0,-5.88235294117647,11.76470588235294 -248,19.0,9.0,-1.7848303152666305,3.98535828943083 -248,19.0,18.0,-5.88235294117647,11.76470588235294 -248,19.0,19.0,7.6671832564431,-15.75006417178377 -248,20.0,9.0,-5.101853820159654,10.98071411292983 -248,20.0,20.0,21.876495189895888,-45.10843276170355 -248,20.0,21.0,-16.774641369736234,34.127718648773715 -248,21.0,9.0,-2.619319553382597,5.400770303329455 -248,21.0,20.0,-16.774641369736234,34.127718648773715 -248,21.0,21.0,21.93449907537439,-43.48289181517921 -248,21.0,23.0,-2.5405381522555563,3.95440286307604 -248,22.0,14.0,-1.9683489489016612,3.976064876781356 -248,22.0,22.0,3.429754555384988,-6.965303617315433 -248,22.0,23.0,-1.4614056064833263,2.989238740534077 -248,23.0,21.0,-2.5405381522555563,3.95440286307604 -248,23.0,22.0,-1.4614056064833263,2.989238740534077 -248,23.0,23.0,5.311836702613133,-9.188263657315172 -248,23.0,24.0,-1.3098929438742493,2.287622053705056 -248,24.0,23.0,-1.3098929438742493,2.287622053705056 -248,24.0,24.0,4.495715080321987,-7.864978761969621 -248,24.0,25.0,-1.2165301194494855,1.8171440463475024 -248,24.0,26.0,-1.9692920169982515,3.760212661917064 -248,25.0,24.0,-1.2165301194494855,1.8171440463475024 -248,25.0,25.0,1.2165301194494855,-1.8171440463475024 -248,26.0,24.0,-1.9692920169982515,3.760212661917064 -248,26.0,26.0,3.652281470778589,-9.46044252232512 -248,26.0,27.0,0.0,2.608731947574922 -248,26.0,28.0,-0.99553355095268,1.881005840357816 -248,26.0,29.0,-0.6874559028276572,1.293971494797717 -248,27.0,5.0,-4.362844058012917,15.463571542897856 -248,27.0,7.0,-1.4439790613954469,4.540814658476248 -248,27.0,26.0,0.0,2.608731947574922 -248,27.0,27.0,5.806823119408364,-22.67145722159613 -248,28.0,26.0,-0.99553355095268,1.881005840357816 -248,28.0,28.0,1.9075867579849564,-3.604364401207048 -248,28.0,29.0,-0.9120532070322764,1.7233585608492326 -248,29.0,26.0,-0.6874559028276572,1.293971494797717 -248,29.0,28.0,-0.9120532070322764,1.7233585608492326 -248,29.0,29.0,1.5995091098599337,-3.0173300556469496 -249,0.0,0.0,6.765516048652632,-21.23160167089863 -249,0.0,1.0,-5.224646179885656,15.646726840803398 -249,0.0,2.0,-1.5408698687669766,5.631674830095234 -249,1.0,0.0,-5.224646179885656,15.646726840803398 -249,1.0,1.0,8.066137284758561,-25.55088539734126 -249,1.0,3.0,-1.7055303166990268,5.1973792282565086 -249,1.0,4.0,-1.1359607881738778,4.772479328281356 -249,2.0,0.0,-1.5408698687669766,5.631674830095234 -249,2.0,2.0,9.736318911079088,-29.13794745915803 -249,2.0,3.0,-8.19544904231211,23.5308726290628 -249,3.0,1.0,-1.7055303166990268,5.1973792282565086 -249,3.0,2.0,-8.19544904231211,23.5308726290628 -249,3.0,3.0,16.314103089185693,-55.509410535254254 -249,3.0,5.0,-6.413123730174556,22.31120356548123 -249,3.0,11.0,0.0,4.191255364806866 -249,4.0,1.0,-1.1359607881738778,4.772479328281356 -249,4.0,4.0,4.089980824135861,-12.190647245055052 -249,4.0,6.0,-2.954020035961983,7.449267916773697 -249,5.0,3.0,-6.413123730174556,22.31120356548123 -249,5.0,5.0,20.655486388269097,-77.7313703704441 -249,5.0,6.0,-3.590210423980992,11.02611441072814 -249,5.0,7.0,-6.289308176100628,22.0125786163522 -249,5.0,8.0,0.0,4.915840805411357 -249,5.0,9.0,0.0,1.8561002591115965 -249,5.0,27.0,-4.362844058012917,15.463571542897856 -249,6.0,4.0,-2.954020035961983,7.449267916773697 -249,6.0,5.0,-3.590210423980992,11.02611441072814 -249,6.0,6.0,6.544230459942975,-18.45668232750184 -249,7.0,5.0,-6.289308176100628,22.0125786163522 -249,7.0,7.0,7.733287237496075,-26.527493274828448 -249,7.0,27.0,-1.4439790613954469,4.540814658476248 -249,8.0,5.0,0.0,4.915840805411357 -249,8.0,8.0,0.0,-18.706293706293707 -249,8.0,9.0,0.0,9.090909090909092 -249,8.0,10.0,0.0,4.807692307692308 -249,9.0,5.0,0.0,1.8561002591115965 -249,9.0,8.0,0.0,9.090909090909092 -249,9.0,9.0,13.462042814524237,-41.3837606675224 -249,9.0,16.0,-3.956039125715353,10.317447719844054 -249,9.0,19.0,-1.7848303152666305,3.98535828943083 -249,9.0,20.0,-5.101853820159654,10.98071411292983 -249,9.0,21.0,-2.619319553382597,5.400770303329455 -249,10.0,8.0,0.0,4.807692307692308 -249,10.0,10.0,0.0,-4.807692307692308 -249,11.0,3.0,0.0,4.191255364806866 -249,11.0,11.0,6.573961583776156,-24.424167659260668 -249,11.0,12.0,0.0,7.142857142857143 -249,11.0,13.0,-1.5265676088395577,3.1734252729654173 -249,11.0,14.0,-3.0953961826564296,6.097275864326261 -249,11.0,15.0,-1.9519977922801688,4.104359379111847 -249,12.0,11.0,0.0,7.142857142857143 -249,12.0,12.0,0.0,-7.142857142857143 -249,13.0,11.0,-1.5265676088395577,3.1734252729654173 -249,13.0,13.0,4.01751987283902,-5.424299332335067 -249,13.0,14.0,-2.4909522639994623,2.250874059369649 -249,14.0,11.0,-3.0953961826564296,6.097275864326261 -249,14.0,13.0,-2.4909522639994623,2.250874059369649 -249,14.0,14.0,9.365498545964757,-16.01163373210796 -249,14.0,17.0,-1.8108011504072024,3.687418931630696 -249,14.0,22.0,-1.9683489489016612,3.976064876781356 -249,15.0,11.0,-1.9519977922801688,4.104359379111847 -249,15.0,15.0,3.271064728633931,-8.94513365126506 -249,15.0,16.0,-1.3190669363537617,4.8407742721532125 -249,16.0,9.0,-3.956039125715353,10.317447719844054 -249,16.0,15.0,-1.3190669363537617,4.8407742721532125 -249,16.0,16.0,5.275106062069114,-15.158221991997266 -249,17.0,14.0,-1.8108011504072024,3.687418931630696 -249,17.0,17.0,4.886487584415919,-9.906177730909668 -249,17.0,18.0,-3.0756864340087167,6.218758799278971 -249,18.0,17.0,-3.0756864340087167,6.218758799278971 -249,18.0,18.0,3.0756864340087167,-6.218758799278971 -249,19.0,9.0,-1.7848303152666305,3.98535828943083 -249,19.0,19.0,1.7848303152666305,-3.98535828943083 -249,20.0,9.0,-5.101853820159654,10.98071411292983 -249,20.0,20.0,21.876495189895888,-45.10843276170355 -249,20.0,21.0,-16.774641369736234,34.127718648773715 -249,21.0,9.0,-2.619319553382597,5.400770303329455 -249,21.0,20.0,-16.774641369736234,34.127718648773715 -249,21.0,21.0,21.93449907537439,-43.48289181517921 -249,21.0,23.0,-2.5405381522555563,3.95440286307604 -249,22.0,14.0,-1.9683489489016612,3.976064876781356 -249,22.0,22.0,3.429754555384988,-6.965303617315433 -249,22.0,23.0,-1.4614056064833263,2.989238740534077 -249,23.0,21.0,-2.5405381522555563,3.95440286307604 -249,23.0,22.0,-1.4614056064833263,2.989238740534077 -249,23.0,23.0,5.311836702613133,-9.188263657315172 -249,23.0,24.0,-1.3098929438742493,2.287622053705056 -249,24.0,23.0,-1.3098929438742493,2.287622053705056 -249,24.0,24.0,4.495715080321987,-7.864978761969621 -249,24.0,25.0,-1.2165301194494855,1.8171440463475024 -249,24.0,26.0,-1.9692920169982515,3.760212661917064 -249,25.0,24.0,-1.2165301194494855,1.8171440463475024 -249,25.0,25.0,1.2165301194494855,-1.8171440463475024 -249,26.0,24.0,-1.9692920169982515,3.760212661917064 -249,26.0,26.0,3.652281470778589,-9.46044252232512 -249,26.0,27.0,0.0,2.608731947574922 -249,26.0,28.0,-0.99553355095268,1.881005840357816 -249,26.0,29.0,-0.6874559028276572,1.293971494797717 -249,27.0,5.0,-4.362844058012917,15.463571542897856 -249,27.0,7.0,-1.4439790613954469,4.540814658476248 -249,27.0,26.0,0.0,2.608731947574922 -249,27.0,27.0,5.806823119408364,-22.67145722159613 -249,28.0,26.0,-0.99553355095268,1.881005840357816 -249,28.0,28.0,0.99553355095268,-1.881005840357816 -249,29.0,26.0,-0.6874559028276572,1.293971494797717 -249,29.0,29.0,0.6874559028276572,-1.293971494797717 -250,0.0,0.0,6.765516048652632,-21.23160167089863 -250,0.0,1.0,-5.224646179885656,15.646726840803398 -250,0.0,2.0,-1.5408698687669766,5.631674830095234 -250,1.0,0.0,-5.224646179885656,15.646726840803398 -250,1.0,1.0,9.75228216552403,-30.648662892676068 -250,1.0,3.0,-1.7055303166990268,5.1973792282565086 -250,1.0,4.0,-1.1359607881738778,4.772479328281356 -250,1.0,5.0,-1.6861448807654689,5.116477495334806 -250,2.0,0.0,-1.5408698687669766,5.631674830095234 -250,2.0,2.0,9.736318911079088,-29.13794745915803 -250,2.0,3.0,-8.19544904231211,23.5308726290628 -250,3.0,1.0,-1.7055303166990268,5.1973792282565086 -250,3.0,2.0,-8.19544904231211,23.5308726290628 -250,3.0,3.0,16.314103089185693,-55.509410535254254 -250,3.0,5.0,-6.413123730174556,22.31120356548123 -250,3.0,11.0,0.0,4.191255364806866 -250,4.0,1.0,-1.1359607881738778,4.772479328281356 -250,4.0,4.0,4.089980824135861,-12.190647245055052 -250,4.0,6.0,-2.954020035961983,7.449267916773697 -250,5.0,1.0,-1.6861448807654689,5.116477495334806 -250,5.0,3.0,-6.413123730174556,22.31120356548123 -250,5.0,5.0,22.341631269034565,-82.8291478657789 -250,5.0,6.0,-3.590210423980992,11.02611441072814 -250,5.0,7.0,-6.289308176100628,22.0125786163522 -250,5.0,8.0,0.0,4.915840805411357 -250,5.0,9.0,0.0,1.8561002591115965 -250,5.0,27.0,-4.362844058012917,15.463571542897856 -250,6.0,4.0,-2.954020035961983,7.449267916773697 -250,6.0,5.0,-3.590210423980992,11.02611441072814 -250,6.0,6.0,6.544230459942975,-18.45668232750184 -250,7.0,5.0,-6.289308176100628,22.0125786163522 -250,7.0,7.0,7.733287237496075,-26.527493274828448 -250,7.0,27.0,-1.4439790613954469,4.540814658476248 -250,8.0,5.0,0.0,4.915840805411357 -250,8.0,8.0,0.0,-18.706293706293707 -250,8.0,9.0,0.0,9.090909090909092 -250,8.0,10.0,0.0,4.807692307692308 -250,9.0,5.0,0.0,1.8561002591115965 -250,9.0,8.0,0.0,9.090909090909092 -250,9.0,9.0,13.462042814524237,-41.3837606675224 -250,9.0,16.0,-3.956039125715353,10.317447719844054 -250,9.0,19.0,-1.7848303152666305,3.98535828943083 -250,9.0,20.0,-5.101853820159654,10.98071411292983 -250,9.0,21.0,-2.619319553382597,5.400770303329455 -250,10.0,8.0,0.0,4.807692307692308 -250,10.0,10.0,0.0,-4.807692307692308 -250,11.0,3.0,0.0,4.191255364806866 -250,11.0,11.0,6.573961583776156,-24.424167659260668 -250,11.0,12.0,0.0,7.142857142857143 -250,11.0,13.0,-1.5265676088395577,3.1734252729654173 -250,11.0,14.0,-3.0953961826564296,6.097275864326261 -250,11.0,15.0,-1.9519977922801688,4.104359379111847 -250,12.0,11.0,0.0,7.142857142857143 -250,12.0,12.0,0.0,-7.142857142857143 -250,13.0,11.0,-1.5265676088395577,3.1734252729654173 -250,13.0,13.0,4.01751987283902,-5.424299332335067 -250,13.0,14.0,-2.4909522639994623,2.250874059369649 -250,14.0,11.0,-3.0953961826564296,6.097275864326261 -250,14.0,13.0,-2.4909522639994623,2.250874059369649 -250,14.0,14.0,9.365498545964757,-16.01163373210796 -250,14.0,17.0,-1.8108011504072024,3.687418931630696 -250,14.0,22.0,-1.9683489489016612,3.976064876781356 -250,15.0,11.0,-1.9519977922801688,4.104359379111847 -250,15.0,15.0,3.271064728633931,-8.94513365126506 -250,15.0,16.0,-1.3190669363537617,4.8407742721532125 -250,16.0,9.0,-3.956039125715353,10.317447719844054 -250,16.0,15.0,-1.3190669363537617,4.8407742721532125 -250,16.0,16.0,5.275106062069114,-15.158221991997266 -250,17.0,14.0,-1.8108011504072024,3.687418931630696 -250,17.0,17.0,4.886487584415919,-9.906177730909668 -250,17.0,18.0,-3.0756864340087167,6.218758799278971 -250,18.0,17.0,-3.0756864340087167,6.218758799278971 -250,18.0,18.0,8.958039375185187,-17.98346468163191 -250,18.0,19.0,-5.88235294117647,11.76470588235294 -250,19.0,9.0,-1.7848303152666305,3.98535828943083 -250,19.0,18.0,-5.88235294117647,11.76470588235294 -250,19.0,19.0,7.6671832564431,-15.75006417178377 -250,20.0,9.0,-5.101853820159654,10.98071411292983 -250,20.0,20.0,21.876495189895888,-45.10843276170355 -250,20.0,21.0,-16.774641369736234,34.127718648773715 -250,21.0,9.0,-2.619319553382597,5.400770303329455 -250,21.0,20.0,-16.774641369736234,34.127718648773715 -250,21.0,21.0,21.93449907537439,-43.48289181517921 -250,21.0,23.0,-2.5405381522555563,3.95440286307604 -250,22.0,14.0,-1.9683489489016612,3.976064876781356 -250,22.0,22.0,3.429754555384988,-6.965303617315433 -250,22.0,23.0,-1.4614056064833263,2.989238740534077 -250,23.0,21.0,-2.5405381522555563,3.95440286307604 -250,23.0,22.0,-1.4614056064833263,2.989238740534077 -250,23.0,23.0,5.311836702613133,-9.188263657315172 -250,23.0,24.0,-1.3098929438742493,2.287622053705056 -250,24.0,23.0,-1.3098929438742493,2.287622053705056 -250,24.0,24.0,4.495715080321987,-7.864978761969621 -250,24.0,25.0,-1.2165301194494855,1.8171440463475024 -250,24.0,26.0,-1.9692920169982515,3.760212661917064 -250,25.0,24.0,-1.2165301194494855,1.8171440463475024 -250,25.0,25.0,1.2165301194494855,-1.8171440463475024 -250,26.0,24.0,-1.9692920169982515,3.760212661917064 -250,26.0,26.0,3.652281470778589,-9.46044252232512 -250,26.0,27.0,0.0,2.608731947574922 -250,26.0,28.0,-0.99553355095268,1.881005840357816 -250,26.0,29.0,-0.6874559028276572,1.293971494797717 -250,27.0,5.0,-4.362844058012917,15.463571542897856 -250,27.0,7.0,-1.4439790613954469,4.540814658476248 -250,27.0,26.0,0.0,2.608731947574922 -250,27.0,27.0,5.806823119408364,-22.67145722159613 -250,28.0,26.0,-0.99553355095268,1.881005840357816 -250,28.0,28.0,1.9075867579849564,-3.604364401207048 -250,28.0,29.0,-0.9120532070322764,1.7233585608492326 -250,29.0,26.0,-0.6874559028276572,1.293971494797717 -250,29.0,28.0,-0.9120532070322764,1.7233585608492326 -250,29.0,29.0,1.5995091098599337,-3.0173300556469496 -251,0.0,0.0,6.765516048652632,-21.23160167089863 -251,0.0,1.0,-5.224646179885656,15.646726840803398 -251,0.0,2.0,-1.5408698687669766,5.631674830095234 -251,1.0,0.0,-5.224646179885656,15.646726840803398 -251,1.0,1.0,9.75228216552403,-30.648662892676068 -251,1.0,3.0,-1.7055303166990268,5.1973792282565086 -251,1.0,4.0,-1.1359607881738778,4.772479328281356 -251,1.0,5.0,-1.6861448807654689,5.116477495334806 -251,2.0,0.0,-1.5408698687669766,5.631674830095234 -251,2.0,2.0,9.736318911079088,-29.13794745915803 -251,2.0,3.0,-8.19544904231211,23.5308726290628 -251,3.0,1.0,-1.7055303166990268,5.1973792282565086 -251,3.0,2.0,-8.19544904231211,23.5308726290628 -251,3.0,3.0,16.314103089185693,-55.509410535254254 -251,3.0,5.0,-6.413123730174556,22.31120356548123 -251,3.0,11.0,0.0,4.191255364806866 -251,4.0,1.0,-1.1359607881738778,4.772479328281356 -251,4.0,4.0,4.089980824135861,-12.190647245055052 -251,4.0,6.0,-2.954020035961983,7.449267916773697 -251,5.0,1.0,-1.6861448807654689,5.116477495334806 -251,5.0,3.0,-6.413123730174556,22.31120356548123 -251,5.0,5.0,22.341631269034565,-82.8291478657789 -251,5.0,6.0,-3.590210423980992,11.02611441072814 -251,5.0,7.0,-6.289308176100628,22.0125786163522 -251,5.0,8.0,0.0,4.915840805411357 -251,5.0,9.0,0.0,1.8561002591115965 -251,5.0,27.0,-4.362844058012917,15.463571542897856 -251,6.0,4.0,-2.954020035961983,7.449267916773697 -251,6.0,5.0,-3.590210423980992,11.02611441072814 -251,6.0,6.0,6.544230459942975,-18.45668232750184 -251,7.0,5.0,-6.289308176100628,22.0125786163522 -251,7.0,7.0,7.733287237496075,-26.527493274828448 -251,7.0,27.0,-1.4439790613954469,4.540814658476248 -251,8.0,5.0,0.0,4.915840805411357 -251,8.0,8.0,0.0,-18.706293706293707 -251,8.0,9.0,0.0,9.090909090909092 -251,8.0,10.0,0.0,4.807692307692308 -251,9.0,5.0,0.0,1.8561002591115965 -251,9.0,8.0,0.0,9.090909090909092 -251,9.0,9.0,13.462042814524237,-41.3837606675224 -251,9.0,16.0,-3.956039125715353,10.317447719844054 -251,9.0,19.0,-1.7848303152666305,3.98535828943083 -251,9.0,20.0,-5.101853820159654,10.98071411292983 -251,9.0,21.0,-2.619319553382597,5.400770303329455 -251,10.0,8.0,0.0,4.807692307692308 -251,10.0,10.0,0.0,-4.807692307692308 -251,11.0,3.0,0.0,4.191255364806866 -251,11.0,11.0,6.573961583776156,-24.424167659260668 -251,11.0,12.0,0.0,7.142857142857143 -251,11.0,13.0,-1.5265676088395577,3.1734252729654173 -251,11.0,14.0,-3.0953961826564296,6.097275864326261 -251,11.0,15.0,-1.9519977922801688,4.104359379111847 -251,12.0,11.0,0.0,7.142857142857143 -251,12.0,12.0,0.0,-7.142857142857143 -251,13.0,11.0,-1.5265676088395577,3.1734252729654173 -251,13.0,13.0,4.01751987283902,-5.424299332335067 -251,13.0,14.0,-2.4909522639994623,2.250874059369649 -251,14.0,11.0,-3.0953961826564296,6.097275864326261 -251,14.0,13.0,-2.4909522639994623,2.250874059369649 -251,14.0,14.0,9.365498545964757,-16.01163373210796 -251,14.0,17.0,-1.8108011504072024,3.687418931630696 -251,14.0,22.0,-1.9683489489016612,3.976064876781356 -251,15.0,11.0,-1.9519977922801688,4.104359379111847 -251,15.0,15.0,3.271064728633931,-8.94513365126506 -251,15.0,16.0,-1.3190669363537617,4.8407742721532125 -251,16.0,9.0,-3.956039125715353,10.317447719844054 -251,16.0,15.0,-1.3190669363537617,4.8407742721532125 -251,16.0,16.0,5.275106062069114,-15.158221991997266 -251,17.0,14.0,-1.8108011504072024,3.687418931630696 -251,17.0,17.0,4.886487584415919,-9.906177730909668 -251,17.0,18.0,-3.0756864340087167,6.218758799278971 -251,18.0,17.0,-3.0756864340087167,6.218758799278971 -251,18.0,18.0,8.958039375185187,-17.98346468163191 -251,18.0,19.0,-5.88235294117647,11.76470588235294 -251,19.0,9.0,-1.7848303152666305,3.98535828943083 -251,19.0,18.0,-5.88235294117647,11.76470588235294 -251,19.0,19.0,7.6671832564431,-15.75006417178377 -251,20.0,9.0,-5.101853820159654,10.98071411292983 -251,20.0,20.0,21.876495189895888,-45.10843276170355 -251,20.0,21.0,-16.774641369736234,34.127718648773715 -251,21.0,9.0,-2.619319553382597,5.400770303329455 -251,21.0,20.0,-16.774641369736234,34.127718648773715 -251,21.0,21.0,21.93449907537439,-43.48289181517921 -251,21.0,23.0,-2.5405381522555563,3.95440286307604 -251,22.0,14.0,-1.9683489489016612,3.976064876781356 -251,22.0,22.0,3.429754555384988,-6.965303617315433 -251,22.0,23.0,-1.4614056064833263,2.989238740534077 -251,23.0,21.0,-2.5405381522555563,3.95440286307604 -251,23.0,22.0,-1.4614056064833263,2.989238740534077 -251,23.0,23.0,5.311836702613133,-9.188263657315172 -251,23.0,24.0,-1.3098929438742493,2.287622053705056 -251,24.0,23.0,-1.3098929438742493,2.287622053705056 -251,24.0,24.0,4.495715080321987,-7.864978761969621 -251,24.0,25.0,-1.2165301194494855,1.8171440463475024 -251,24.0,26.0,-1.9692920169982515,3.760212661917064 -251,25.0,24.0,-1.2165301194494855,1.8171440463475024 -251,25.0,25.0,1.2165301194494855,-1.8171440463475024 -251,26.0,24.0,-1.9692920169982515,3.760212661917064 -251,26.0,26.0,3.652281470778589,-9.46044252232512 -251,26.0,27.0,0.0,2.608731947574922 -251,26.0,28.0,-0.99553355095268,1.881005840357816 -251,26.0,29.0,-0.6874559028276572,1.293971494797717 -251,27.0,5.0,-4.362844058012917,15.463571542897856 -251,27.0,7.0,-1.4439790613954469,4.540814658476248 -251,27.0,26.0,0.0,2.608731947574922 -251,27.0,27.0,5.806823119408364,-22.67145722159613 -251,28.0,26.0,-0.99553355095268,1.881005840357816 -251,28.0,28.0,0.99553355095268,-1.881005840357816 -251,29.0,26.0,-0.6874559028276572,1.293971494797717 -251,29.0,29.0,0.6874559028276572,-1.293971494797717 -252,0.0,0.0,6.765516048652632,-21.23160167089863 -252,0.0,1.0,-5.224646179885656,15.646726840803398 -252,0.0,2.0,-1.5408698687669766,5.631674830095234 -252,1.0,0.0,-5.224646179885656,15.646726840803398 -252,1.0,1.0,9.75228216552403,-30.648662892676068 -252,1.0,3.0,-1.7055303166990268,5.1973792282565086 -252,1.0,4.0,-1.1359607881738778,4.772479328281356 -252,1.0,5.0,-1.6861448807654689,5.116477495334806 -252,2.0,0.0,-1.5408698687669766,5.631674830095234 -252,2.0,2.0,9.736318911079088,-29.13794745915803 -252,2.0,3.0,-8.19544904231211,23.5308726290628 -252,3.0,1.0,-1.7055303166990268,5.1973792282565086 -252,3.0,2.0,-8.19544904231211,23.5308726290628 -252,3.0,3.0,16.314103089185693,-55.509410535254254 -252,3.0,5.0,-6.413123730174556,22.31120356548123 -252,3.0,11.0,0.0,4.191255364806866 -252,4.0,1.0,-1.1359607881738778,4.772479328281356 -252,4.0,4.0,4.089980824135861,-12.190647245055052 -252,4.0,6.0,-2.954020035961983,7.449267916773697 -252,5.0,1.0,-1.6861448807654689,5.116477495334806 -252,5.0,3.0,-6.413123730174556,22.31120356548123 -252,5.0,5.0,22.341631269034565,-82.8291478657789 -252,5.0,6.0,-3.590210423980992,11.02611441072814 -252,5.0,7.0,-6.289308176100628,22.0125786163522 -252,5.0,8.0,0.0,4.915840805411357 -252,5.0,9.0,0.0,1.8561002591115965 -252,5.0,27.0,-4.362844058012917,15.463571542897856 -252,6.0,4.0,-2.954020035961983,7.449267916773697 -252,6.0,5.0,-3.590210423980992,11.02611441072814 -252,6.0,6.0,6.544230459942975,-18.45668232750184 -252,7.0,5.0,-6.289308176100628,22.0125786163522 -252,7.0,7.0,7.733287237496075,-26.527493274828448 -252,7.0,27.0,-1.4439790613954469,4.540814658476248 -252,8.0,5.0,0.0,4.915840805411357 -252,8.0,8.0,0.0,-18.706293706293707 -252,8.0,9.0,0.0,9.090909090909092 -252,8.0,10.0,0.0,4.807692307692308 -252,9.0,5.0,0.0,1.8561002591115965 -252,9.0,8.0,0.0,9.090909090909092 -252,9.0,9.0,11.677212499257603,-37.39840237809157 -252,9.0,16.0,-3.956039125715353,10.317447719844054 -252,9.0,20.0,-5.101853820159654,10.98071411292983 -252,9.0,21.0,-2.619319553382597,5.400770303329455 -252,10.0,8.0,0.0,4.807692307692308 -252,10.0,10.0,0.0,-4.807692307692308 -252,11.0,3.0,0.0,4.191255364806866 -252,11.0,11.0,4.621963791495987,-20.31980828014882 -252,11.0,12.0,0.0,7.142857142857143 -252,11.0,13.0,-1.5265676088395577,3.1734252729654173 -252,11.0,14.0,-3.0953961826564296,6.097275864326261 -252,12.0,11.0,0.0,7.142857142857143 -252,12.0,12.0,0.0,-7.142857142857143 -252,13.0,11.0,-1.5265676088395577,3.1734252729654173 -252,13.0,13.0,4.01751987283902,-5.424299332335067 -252,13.0,14.0,-2.4909522639994623,2.250874059369649 -252,14.0,11.0,-3.0953961826564296,6.097275864326261 -252,14.0,13.0,-2.4909522639994623,2.250874059369649 -252,14.0,14.0,9.365498545964757,-16.01163373210796 -252,14.0,17.0,-1.8108011504072024,3.687418931630696 -252,14.0,22.0,-1.9683489489016612,3.976064876781356 -252,15.0,15.0,1.3190669363537617,-4.8407742721532125 -252,15.0,16.0,-1.3190669363537617,4.8407742721532125 -252,16.0,9.0,-3.956039125715353,10.317447719844054 -252,16.0,15.0,-1.3190669363537617,4.8407742721532125 -252,16.0,16.0,5.275106062069114,-15.158221991997266 -252,17.0,14.0,-1.8108011504072024,3.687418931630696 -252,17.0,17.0,4.886487584415919,-9.906177730909668 -252,17.0,18.0,-3.0756864340087167,6.218758799278971 -252,18.0,17.0,-3.0756864340087167,6.218758799278971 -252,18.0,18.0,8.958039375185187,-17.98346468163191 -252,18.0,19.0,-5.88235294117647,11.76470588235294 -252,19.0,18.0,-5.88235294117647,11.76470588235294 -252,19.0,19.0,5.88235294117647,-11.76470588235294 -252,20.0,9.0,-5.101853820159654,10.98071411292983 -252,20.0,20.0,21.876495189895888,-45.10843276170355 -252,20.0,21.0,-16.774641369736234,34.127718648773715 -252,21.0,9.0,-2.619319553382597,5.400770303329455 -252,21.0,20.0,-16.774641369736234,34.127718648773715 -252,21.0,21.0,21.93449907537439,-43.48289181517921 -252,21.0,23.0,-2.5405381522555563,3.95440286307604 -252,22.0,14.0,-1.9683489489016612,3.976064876781356 -252,22.0,22.0,3.429754555384988,-6.965303617315433 -252,22.0,23.0,-1.4614056064833263,2.989238740534077 -252,23.0,21.0,-2.5405381522555563,3.95440286307604 -252,23.0,22.0,-1.4614056064833263,2.989238740534077 -252,23.0,23.0,5.311836702613133,-9.188263657315172 -252,23.0,24.0,-1.3098929438742493,2.287622053705056 -252,24.0,23.0,-1.3098929438742493,2.287622053705056 -252,24.0,24.0,4.495715080321987,-7.864978761969621 -252,24.0,25.0,-1.2165301194494855,1.8171440463475024 -252,24.0,26.0,-1.9692920169982515,3.760212661917064 -252,25.0,24.0,-1.2165301194494855,1.8171440463475024 -252,25.0,25.0,1.2165301194494855,-1.8171440463475024 -252,26.0,24.0,-1.9692920169982515,3.760212661917064 -252,26.0,26.0,3.652281470778589,-9.46044252232512 -252,26.0,27.0,0.0,2.608731947574922 -252,26.0,28.0,-0.99553355095268,1.881005840357816 -252,26.0,29.0,-0.6874559028276572,1.293971494797717 -252,27.0,5.0,-4.362844058012917,15.463571542897856 -252,27.0,7.0,-1.4439790613954469,4.540814658476248 -252,27.0,26.0,0.0,2.608731947574922 -252,27.0,27.0,5.806823119408364,-22.67145722159613 -252,28.0,26.0,-0.99553355095268,1.881005840357816 -252,28.0,28.0,1.9075867579849564,-3.604364401207048 -252,28.0,29.0,-0.9120532070322764,1.7233585608492326 -252,29.0,26.0,-0.6874559028276572,1.293971494797717 -252,29.0,28.0,-0.9120532070322764,1.7233585608492326 -252,29.0,29.0,1.5995091098599337,-3.0173300556469496 -253,0.0,0.0,1.5408698687669766,-5.611274830095233 -253,0.0,2.0,-1.5408698687669766,5.631674830095234 -253,1.0,1.0,4.527635985638374,-15.028336051872673 -253,1.0,3.0,-1.7055303166990268,5.1973792282565086 -253,1.0,4.0,-1.1359607881738778,4.772479328281356 -253,1.0,5.0,-1.6861448807654689,5.116477495334806 -253,2.0,0.0,-1.5408698687669766,5.631674830095234 -253,2.0,2.0,9.736318911079088,-29.13794745915803 -253,2.0,3.0,-8.19544904231211,23.5308726290628 -253,3.0,1.0,-1.7055303166990268,5.1973792282565086 -253,3.0,2.0,-8.19544904231211,23.5308726290628 -253,3.0,3.0,9.900979359011137,-33.202706969773025 -253,3.0,11.0,0.0,4.191255364806866 -253,4.0,1.0,-1.1359607881738778,4.772479328281356 -253,4.0,4.0,4.089980824135861,-12.190647245055052 -253,4.0,6.0,-2.954020035961983,7.449267916773697 -253,5.0,1.0,-1.6861448807654689,5.116477495334806 -253,5.0,5.0,15.928507538860009,-60.52244430029767 -253,5.0,6.0,-3.590210423980992,11.02611441072814 -253,5.0,7.0,-6.289308176100628,22.0125786163522 -253,5.0,8.0,0.0,4.915840805411357 -253,5.0,9.0,0.0,1.8561002591115965 -253,5.0,27.0,-4.362844058012917,15.463571542897856 -253,6.0,4.0,-2.954020035961983,7.449267916773697 -253,6.0,5.0,-3.590210423980992,11.02611441072814 -253,6.0,6.0,6.544230459942975,-18.45668232750184 -253,7.0,5.0,-6.289308176100628,22.0125786163522 -253,7.0,7.0,7.733287237496075,-26.527493274828448 -253,7.0,27.0,-1.4439790613954469,4.540814658476248 -253,8.0,5.0,0.0,4.915840805411357 -253,8.0,8.0,0.0,-18.706293706293707 -253,8.0,9.0,0.0,9.090909090909092 -253,8.0,10.0,0.0,4.807692307692308 -253,9.0,5.0,0.0,1.8561002591115965 -253,9.0,8.0,0.0,9.090909090909092 -253,9.0,9.0,11.677212499257603,-37.39840237809157 -253,9.0,16.0,-3.956039125715353,10.317447719844054 -253,9.0,20.0,-5.101853820159654,10.98071411292983 -253,9.0,21.0,-2.619319553382597,5.400770303329455 -253,10.0,8.0,0.0,4.807692307692308 -253,10.0,10.0,0.0,-4.807692307692308 -253,11.0,3.0,0.0,4.191255364806866 -253,11.0,11.0,6.573961583776156,-24.424167659260668 -253,11.0,12.0,0.0,7.142857142857143 -253,11.0,13.0,-1.5265676088395577,3.1734252729654173 -253,11.0,14.0,-3.0953961826564296,6.097275864326261 -253,11.0,15.0,-1.9519977922801688,4.104359379111847 -253,12.0,11.0,0.0,7.142857142857143 -253,12.0,12.0,0.0,-7.142857142857143 -253,13.0,11.0,-1.5265676088395577,3.1734252729654173 -253,13.0,13.0,4.01751987283902,-5.424299332335067 -253,13.0,14.0,-2.4909522639994623,2.250874059369649 -253,14.0,11.0,-3.0953961826564296,6.097275864326261 -253,14.0,13.0,-2.4909522639994623,2.250874059369649 -253,14.0,14.0,9.365498545964757,-16.01163373210796 -253,14.0,17.0,-1.8108011504072024,3.687418931630696 -253,14.0,22.0,-1.9683489489016612,3.976064876781356 -253,15.0,11.0,-1.9519977922801688,4.104359379111847 -253,15.0,15.0,3.271064728633931,-8.94513365126506 -253,15.0,16.0,-1.3190669363537617,4.8407742721532125 -253,16.0,9.0,-3.956039125715353,10.317447719844054 -253,16.0,15.0,-1.3190669363537617,4.8407742721532125 -253,16.0,16.0,5.275106062069114,-15.158221991997266 -253,17.0,14.0,-1.8108011504072024,3.687418931630696 -253,17.0,17.0,4.886487584415919,-9.906177730909668 -253,17.0,18.0,-3.0756864340087167,6.218758799278971 -253,18.0,17.0,-3.0756864340087167,6.218758799278971 -253,18.0,18.0,8.958039375185187,-17.98346468163191 -253,18.0,19.0,-5.88235294117647,11.76470588235294 -253,19.0,18.0,-5.88235294117647,11.76470588235294 -253,19.0,19.0,5.88235294117647,-11.76470588235294 -253,20.0,9.0,-5.101853820159654,10.98071411292983 -253,20.0,20.0,21.876495189895888,-45.10843276170355 -253,20.0,21.0,-16.774641369736234,34.127718648773715 -253,21.0,9.0,-2.619319553382597,5.400770303329455 -253,21.0,20.0,-16.774641369736234,34.127718648773715 -253,21.0,21.0,19.393960923118836,-39.52848895210317 -253,22.0,14.0,-1.9683489489016612,3.976064876781356 -253,22.0,22.0,3.429754555384988,-6.965303617315433 -253,22.0,23.0,-1.4614056064833263,2.989238740534077 -253,23.0,22.0,-1.4614056064833263,2.989238740534077 -253,23.0,23.0,2.771298550357576,-5.233860794239132 -253,23.0,24.0,-1.3098929438742493,2.287622053705056 -253,24.0,23.0,-1.3098929438742493,2.287622053705056 -253,24.0,24.0,4.495715080321987,-7.864978761969621 -253,24.0,25.0,-1.2165301194494855,1.8171440463475024 -253,24.0,26.0,-1.9692920169982515,3.760212661917064 -253,25.0,24.0,-1.2165301194494855,1.8171440463475024 -253,25.0,25.0,1.2165301194494855,-1.8171440463475024 -253,26.0,24.0,-1.9692920169982515,3.760212661917064 -253,26.0,26.0,3.652281470778589,-9.46044252232512 -253,26.0,27.0,0.0,2.608731947574922 -253,26.0,28.0,-0.99553355095268,1.881005840357816 -253,26.0,29.0,-0.6874559028276572,1.293971494797717 -253,27.0,5.0,-4.362844058012917,15.463571542897856 -253,27.0,7.0,-1.4439790613954469,4.540814658476248 -253,27.0,26.0,0.0,2.608731947574922 -253,27.0,27.0,5.806823119408364,-22.67145722159613 -253,28.0,26.0,-0.99553355095268,1.881005840357816 -253,28.0,28.0,1.9075867579849564,-3.604364401207048 -253,28.0,29.0,-0.9120532070322764,1.7233585608492326 -253,29.0,26.0,-0.6874559028276572,1.293971494797717 -253,29.0,28.0,-0.9120532070322764,1.7233585608492326 -253,29.0,29.0,1.5995091098599337,-3.0173300556469496 -254,0.0,0.0,6.765516048652632,-21.23160167089863 -254,0.0,1.0,-5.224646179885656,15.646726840803398 -254,0.0,2.0,-1.5408698687669766,5.631674830095234 -254,1.0,0.0,-5.224646179885656,15.646726840803398 -254,1.0,1.0,9.75228216552403,-30.648662892676068 -254,1.0,3.0,-1.7055303166990268,5.1973792282565086 -254,1.0,4.0,-1.1359607881738778,4.772479328281356 -254,1.0,5.0,-1.6861448807654689,5.116477495334806 -254,2.0,0.0,-1.5408698687669766,5.631674830095234 -254,2.0,2.0,9.736318911079088,-29.13794745915803 -254,2.0,3.0,-8.19544904231211,23.5308726290628 -254,3.0,1.0,-1.7055303166990268,5.1973792282565086 -254,3.0,2.0,-8.19544904231211,23.5308726290628 -254,3.0,3.0,16.314103089185693,-55.509410535254254 -254,3.0,5.0,-6.413123730174556,22.31120356548123 -254,3.0,11.0,0.0,4.191255364806866 -254,4.0,1.0,-1.1359607881738778,4.772479328281356 -254,4.0,4.0,4.089980824135861,-12.190647245055052 -254,4.0,6.0,-2.954020035961983,7.449267916773697 -254,5.0,1.0,-1.6861448807654689,5.116477495334806 -254,5.0,3.0,-6.413123730174556,22.31120356548123 -254,5.0,5.0,22.341631269034565,-82.8291478657789 -254,5.0,6.0,-3.590210423980992,11.02611441072814 -254,5.0,7.0,-6.289308176100628,22.0125786163522 -254,5.0,8.0,0.0,4.915840805411357 -254,5.0,9.0,0.0,1.8561002591115965 -254,5.0,27.0,-4.362844058012917,15.463571542897856 -254,6.0,4.0,-2.954020035961983,7.449267916773697 -254,6.0,5.0,-3.590210423980992,11.02611441072814 -254,6.0,6.0,6.544230459942975,-18.45668232750184 -254,7.0,5.0,-6.289308176100628,22.0125786163522 -254,7.0,7.0,7.733287237496075,-26.527493274828448 -254,7.0,27.0,-1.4439790613954469,4.540814658476248 -254,8.0,5.0,0.0,4.915840805411357 -254,8.0,8.0,0.0,-18.706293706293707 -254,8.0,9.0,0.0,9.090909090909092 -254,8.0,10.0,0.0,4.807692307692308 -254,9.0,5.0,0.0,1.8561002591115965 -254,9.0,8.0,0.0,9.090909090909092 -254,9.0,9.0,13.462042814524237,-41.3837606675224 -254,9.0,16.0,-3.956039125715353,10.317447719844054 -254,9.0,19.0,-1.7848303152666305,3.98535828943083 -254,9.0,20.0,-5.101853820159654,10.98071411292983 -254,9.0,21.0,-2.619319553382597,5.400770303329455 -254,10.0,8.0,0.0,4.807692307692308 -254,10.0,10.0,0.0,-4.807692307692308 -254,11.0,3.0,0.0,4.191255364806866 -254,11.0,11.0,6.573961583776156,-24.424167659260668 -254,11.0,12.0,0.0,7.142857142857143 -254,11.0,13.0,-1.5265676088395577,3.1734252729654173 -254,11.0,14.0,-3.0953961826564296,6.097275864326261 -254,11.0,15.0,-1.9519977922801688,4.104359379111847 -254,12.0,11.0,0.0,7.142857142857143 -254,12.0,12.0,0.0,-7.142857142857143 -254,13.0,11.0,-1.5265676088395577,3.1734252729654173 -254,13.0,13.0,4.01751987283902,-5.424299332335067 -254,13.0,14.0,-2.4909522639994623,2.250874059369649 -254,14.0,11.0,-3.0953961826564296,6.097275864326261 -254,14.0,13.0,-2.4909522639994623,2.250874059369649 -254,14.0,14.0,9.365498545964757,-16.01163373210796 -254,14.0,17.0,-1.8108011504072024,3.687418931630696 -254,14.0,22.0,-1.9683489489016612,3.976064876781356 -254,15.0,11.0,-1.9519977922801688,4.104359379111847 -254,15.0,15.0,1.9519977922801688,-4.104359379111847 -254,16.0,9.0,-3.956039125715353,10.317447719844054 -254,16.0,16.0,3.956039125715353,-10.317447719844054 -254,17.0,14.0,-1.8108011504072024,3.687418931630696 -254,17.0,17.0,4.886487584415919,-9.906177730909668 -254,17.0,18.0,-3.0756864340087167,6.218758799278971 -254,18.0,17.0,-3.0756864340087167,6.218758799278971 -254,18.0,18.0,8.958039375185187,-17.98346468163191 -254,18.0,19.0,-5.88235294117647,11.76470588235294 -254,19.0,9.0,-1.7848303152666305,3.98535828943083 -254,19.0,18.0,-5.88235294117647,11.76470588235294 -254,19.0,19.0,7.6671832564431,-15.75006417178377 -254,20.0,9.0,-5.101853820159654,10.98071411292983 -254,20.0,20.0,5.101853820159654,-10.98071411292983 -254,21.0,9.0,-2.619319553382597,5.400770303329455 -254,21.0,21.0,5.159857705638154,-9.355173166405494 -254,21.0,23.0,-2.5405381522555563,3.95440286307604 -254,22.0,14.0,-1.9683489489016612,3.976064876781356 -254,22.0,22.0,3.429754555384988,-6.965303617315433 -254,22.0,23.0,-1.4614056064833263,2.989238740534077 -254,23.0,21.0,-2.5405381522555563,3.95440286307604 -254,23.0,22.0,-1.4614056064833263,2.989238740534077 -254,23.0,23.0,5.311836702613133,-9.188263657315172 -254,23.0,24.0,-1.3098929438742493,2.287622053705056 -254,24.0,23.0,-1.3098929438742493,2.287622053705056 -254,24.0,24.0,4.495715080321987,-7.864978761969621 -254,24.0,25.0,-1.2165301194494855,1.8171440463475024 -254,24.0,26.0,-1.9692920169982515,3.760212661917064 -254,25.0,24.0,-1.2165301194494855,1.8171440463475024 -254,25.0,25.0,1.2165301194494855,-1.8171440463475024 -254,26.0,24.0,-1.9692920169982515,3.760212661917064 -254,26.0,26.0,3.652281470778589,-9.46044252232512 -254,26.0,27.0,0.0,2.608731947574922 -254,26.0,28.0,-0.99553355095268,1.881005840357816 -254,26.0,29.0,-0.6874559028276572,1.293971494797717 -254,27.0,5.0,-4.362844058012917,15.463571542897856 -254,27.0,7.0,-1.4439790613954469,4.540814658476248 -254,27.0,26.0,0.0,2.608731947574922 -254,27.0,27.0,5.806823119408364,-22.67145722159613 -254,28.0,26.0,-0.99553355095268,1.881005840357816 -254,28.0,28.0,1.9075867579849564,-3.604364401207048 -254,28.0,29.0,-0.9120532070322764,1.7233585608492326 -254,29.0,26.0,-0.6874559028276572,1.293971494797717 -254,29.0,28.0,-0.9120532070322764,1.7233585608492326 -254,29.0,29.0,1.5995091098599337,-3.0173300556469496 -255,0.0,0.0,6.765516048652632,-21.23160167089863 -255,0.0,1.0,-5.224646179885656,15.646726840803398 -255,0.0,2.0,-1.5408698687669766,5.631674830095234 -255,1.0,0.0,-5.224646179885656,15.646726840803398 -255,1.0,1.0,9.75228216552403,-30.648662892676068 -255,1.0,3.0,-1.7055303166990268,5.1973792282565086 -255,1.0,4.0,-1.1359607881738778,4.772479328281356 -255,1.0,5.0,-1.6861448807654689,5.116477495334806 -255,2.0,0.0,-1.5408698687669766,5.631674830095234 -255,2.0,2.0,9.736318911079088,-29.13794745915803 -255,2.0,3.0,-8.19544904231211,23.5308726290628 -255,3.0,1.0,-1.7055303166990268,5.1973792282565086 -255,3.0,2.0,-8.19544904231211,23.5308726290628 -255,3.0,3.0,16.314103089185693,-55.509410535254254 -255,3.0,5.0,-6.413123730174556,22.31120356548123 -255,3.0,11.0,0.0,4.191255364806866 -255,4.0,1.0,-1.1359607881738778,4.772479328281356 -255,4.0,4.0,4.089980824135861,-12.190647245055052 -255,4.0,6.0,-2.954020035961983,7.449267916773697 -255,5.0,1.0,-1.6861448807654689,5.116477495334806 -255,5.0,3.0,-6.413123730174556,22.31120356548123 -255,5.0,5.0,22.341631269034565,-82.8291478657789 -255,5.0,6.0,-3.590210423980992,11.02611441072814 -255,5.0,7.0,-6.289308176100628,22.0125786163522 -255,5.0,8.0,0.0,4.915840805411357 -255,5.0,9.0,0.0,1.8561002591115965 -255,5.0,27.0,-4.362844058012917,15.463571542897856 -255,6.0,4.0,-2.954020035961983,7.449267916773697 -255,6.0,5.0,-3.590210423980992,11.02611441072814 -255,6.0,6.0,6.544230459942975,-18.45668232750184 -255,7.0,5.0,-6.289308176100628,22.0125786163522 -255,7.0,7.0,7.733287237496075,-26.527493274828448 -255,7.0,27.0,-1.4439790613954469,4.540814658476248 -255,8.0,5.0,0.0,4.915840805411357 -255,8.0,8.0,0.0,-18.706293706293707 -255,8.0,9.0,0.0,9.090909090909092 -255,8.0,10.0,0.0,4.807692307692308 -255,9.0,5.0,0.0,1.8561002591115965 -255,9.0,8.0,0.0,9.090909090909092 -255,9.0,9.0,13.462042814524237,-41.3837606675224 -255,9.0,16.0,-3.956039125715353,10.317447719844054 -255,9.0,19.0,-1.7848303152666305,3.98535828943083 -255,9.0,20.0,-5.101853820159654,10.98071411292983 -255,9.0,21.0,-2.619319553382597,5.400770303329455 -255,10.0,8.0,0.0,4.807692307692308 -255,10.0,10.0,0.0,-4.807692307692308 -255,11.0,3.0,0.0,4.191255364806866 -255,11.0,11.0,6.573961583776156,-24.424167659260668 -255,11.0,12.0,0.0,7.142857142857143 -255,11.0,13.0,-1.5265676088395577,3.1734252729654173 -255,11.0,14.0,-3.0953961826564296,6.097275864326261 -255,11.0,15.0,-1.9519977922801688,4.104359379111847 -255,12.0,11.0,0.0,7.142857142857143 -255,12.0,12.0,0.0,-7.142857142857143 -255,13.0,11.0,-1.5265676088395577,3.1734252729654173 -255,13.0,13.0,4.01751987283902,-5.424299332335067 -255,13.0,14.0,-2.4909522639994623,2.250874059369649 -255,14.0,11.0,-3.0953961826564296,6.097275864326261 -255,14.0,13.0,-2.4909522639994623,2.250874059369649 -255,14.0,14.0,9.365498545964757,-16.01163373210796 -255,14.0,17.0,-1.8108011504072024,3.687418931630696 -255,14.0,22.0,-1.9683489489016612,3.976064876781356 -255,15.0,11.0,-1.9519977922801688,4.104359379111847 -255,15.0,15.0,3.271064728633931,-8.94513365126506 -255,15.0,16.0,-1.3190669363537617,4.8407742721532125 -255,16.0,9.0,-3.956039125715353,10.317447719844054 -255,16.0,15.0,-1.3190669363537617,4.8407742721532125 -255,16.0,16.0,5.275106062069114,-15.158221991997266 -255,17.0,14.0,-1.8108011504072024,3.687418931630696 -255,17.0,17.0,4.886487584415919,-9.906177730909668 -255,17.0,18.0,-3.0756864340087167,6.218758799278971 -255,18.0,17.0,-3.0756864340087167,6.218758799278971 -255,18.0,18.0,8.958039375185187,-17.98346468163191 -255,18.0,19.0,-5.88235294117647,11.76470588235294 -255,19.0,9.0,-1.7848303152666305,3.98535828943083 -255,19.0,18.0,-5.88235294117647,11.76470588235294 -255,19.0,19.0,7.6671832564431,-15.75006417178377 -255,20.0,9.0,-5.101853820159654,10.98071411292983 -255,20.0,20.0,21.876495189895888,-45.10843276170355 -255,20.0,21.0,-16.774641369736234,34.127718648773715 -255,21.0,9.0,-2.619319553382597,5.400770303329455 -255,21.0,20.0,-16.774641369736234,34.127718648773715 -255,21.0,21.0,21.93449907537439,-43.48289181517921 -255,21.0,23.0,-2.5405381522555563,3.95440286307604 -255,22.0,14.0,-1.9683489489016612,3.976064876781356 -255,22.0,22.0,3.429754555384988,-6.965303617315433 -255,22.0,23.0,-1.4614056064833263,2.989238740534077 -255,23.0,21.0,-2.5405381522555563,3.95440286307604 -255,23.0,22.0,-1.4614056064833263,2.989238740534077 -255,23.0,23.0,5.311836702613133,-9.188263657315172 -255,23.0,24.0,-1.3098929438742493,2.287622053705056 -255,24.0,23.0,-1.3098929438742493,2.287622053705056 -255,24.0,24.0,4.495715080321987,-7.864978761969621 -255,24.0,25.0,-1.2165301194494855,1.8171440463475024 -255,24.0,26.0,-1.9692920169982515,3.760212661917064 -255,25.0,24.0,-1.2165301194494855,1.8171440463475024 -255,25.0,25.0,1.2165301194494855,-1.8171440463475024 -255,26.0,24.0,-1.9692920169982515,3.760212661917064 -255,26.0,26.0,3.652281470778589,-9.46044252232512 -255,26.0,27.0,0.0,2.608731947574922 -255,26.0,28.0,-0.99553355095268,1.881005840357816 -255,26.0,29.0,-0.6874559028276572,1.293971494797717 -255,27.0,5.0,-4.362844058012917,15.463571542897856 -255,27.0,7.0,-1.4439790613954469,4.540814658476248 -255,27.0,26.0,0.0,2.608731947574922 -255,27.0,27.0,5.806823119408364,-22.67145722159613 -255,28.0,26.0,-0.99553355095268,1.881005840357816 -255,28.0,28.0,1.9075867579849564,-3.604364401207048 -255,28.0,29.0,-0.9120532070322764,1.7233585608492326 -255,29.0,26.0,-0.6874559028276572,1.293971494797717 -255,29.0,28.0,-0.9120532070322764,1.7233585608492326 -255,29.0,29.0,1.5995091098599337,-3.0173300556469496 -256,0.0,0.0,6.765516048652632,-21.23160167089863 -256,0.0,1.0,-5.224646179885656,15.646726840803398 -256,0.0,2.0,-1.5408698687669766,5.631674830095234 -256,1.0,0.0,-5.224646179885656,15.646726840803398 -256,1.0,1.0,9.75228216552403,-30.648662892676068 -256,1.0,3.0,-1.7055303166990268,5.1973792282565086 -256,1.0,4.0,-1.1359607881738778,4.772479328281356 -256,1.0,5.0,-1.6861448807654689,5.116477495334806 -256,2.0,0.0,-1.5408698687669766,5.631674830095234 -256,2.0,2.0,9.736318911079088,-29.13794745915803 -256,2.0,3.0,-8.19544904231211,23.5308726290628 -256,3.0,1.0,-1.7055303166990268,5.1973792282565086 -256,3.0,2.0,-8.19544904231211,23.5308726290628 -256,3.0,3.0,16.314103089185693,-55.509410535254254 -256,3.0,5.0,-6.413123730174556,22.31120356548123 -256,3.0,11.0,0.0,4.191255364806866 -256,4.0,1.0,-1.1359607881738778,4.772479328281356 -256,4.0,4.0,4.089980824135861,-12.190647245055052 -256,4.0,6.0,-2.954020035961983,7.449267916773697 -256,5.0,1.0,-1.6861448807654689,5.116477495334806 -256,5.0,3.0,-6.413123730174556,22.31120356548123 -256,5.0,5.0,22.341631269034565,-80.91366772221689 -256,5.0,6.0,-3.590210423980992,11.02611441072814 -256,5.0,7.0,-6.289308176100628,22.0125786163522 -256,5.0,8.0,0.0,4.915840805411357 -256,5.0,27.0,-4.362844058012917,15.463571542897856 -256,6.0,4.0,-2.954020035961983,7.449267916773697 -256,6.0,5.0,-3.590210423980992,11.02611441072814 -256,6.0,6.0,6.544230459942975,-18.45668232750184 -256,7.0,5.0,-6.289308176100628,22.0125786163522 -256,7.0,7.0,7.733287237496075,-26.527493274828448 -256,7.0,27.0,-1.4439790613954469,4.540814658476248 -256,8.0,5.0,0.0,4.915840805411357 -256,8.0,8.0,0.0,-18.706293706293707 -256,8.0,9.0,0.0,9.090909090909092 -256,8.0,10.0,0.0,4.807692307692308 -256,9.0,8.0,0.0,9.090909090909092 -256,9.0,9.0,13.462042814524237,-39.58519951644326 -256,9.0,16.0,-3.956039125715353,10.317447719844054 -256,9.0,19.0,-1.7848303152666305,3.98535828943083 -256,9.0,20.0,-5.101853820159654,10.98071411292983 -256,9.0,21.0,-2.619319553382597,5.400770303329455 -256,10.0,8.0,0.0,4.807692307692308 -256,10.0,10.0,0.0,-4.807692307692308 -256,11.0,3.0,0.0,4.191255364806866 -256,11.0,11.0,6.573961583776156,-24.424167659260668 -256,11.0,12.0,0.0,7.142857142857143 -256,11.0,13.0,-1.5265676088395577,3.1734252729654173 -256,11.0,14.0,-3.0953961826564296,6.097275864326261 -256,11.0,15.0,-1.9519977922801688,4.104359379111847 -256,12.0,11.0,0.0,7.142857142857143 -256,12.0,12.0,0.0,-7.142857142857143 -256,13.0,11.0,-1.5265676088395577,3.1734252729654173 -256,13.0,13.0,4.01751987283902,-5.424299332335067 -256,13.0,14.0,-2.4909522639994623,2.250874059369649 -256,14.0,11.0,-3.0953961826564296,6.097275864326261 -256,14.0,13.0,-2.4909522639994623,2.250874059369649 -256,14.0,14.0,9.365498545964757,-16.01163373210796 -256,14.0,17.0,-1.8108011504072024,3.687418931630696 -256,14.0,22.0,-1.9683489489016612,3.976064876781356 -256,15.0,11.0,-1.9519977922801688,4.104359379111847 -256,15.0,15.0,3.271064728633931,-8.94513365126506 -256,15.0,16.0,-1.3190669363537617,4.8407742721532125 -256,16.0,9.0,-3.956039125715353,10.317447719844054 -256,16.0,15.0,-1.3190669363537617,4.8407742721532125 -256,16.0,16.0,5.275106062069114,-15.158221991997266 -256,17.0,14.0,-1.8108011504072024,3.687418931630696 -256,17.0,17.0,4.886487584415919,-9.906177730909668 -256,17.0,18.0,-3.0756864340087167,6.218758799278971 -256,18.0,17.0,-3.0756864340087167,6.218758799278971 -256,18.0,18.0,8.958039375185187,-17.98346468163191 -256,18.0,19.0,-5.88235294117647,11.76470588235294 -256,19.0,9.0,-1.7848303152666305,3.98535828943083 -256,19.0,18.0,-5.88235294117647,11.76470588235294 -256,19.0,19.0,7.6671832564431,-15.75006417178377 -256,20.0,9.0,-5.101853820159654,10.98071411292983 -256,20.0,20.0,21.876495189895888,-45.10843276170355 -256,20.0,21.0,-16.774641369736234,34.127718648773715 -256,21.0,9.0,-2.619319553382597,5.400770303329455 -256,21.0,20.0,-16.774641369736234,34.127718648773715 -256,21.0,21.0,21.93449907537439,-43.48289181517921 -256,21.0,23.0,-2.5405381522555563,3.95440286307604 -256,22.0,14.0,-1.9683489489016612,3.976064876781356 -256,22.0,22.0,3.429754555384988,-6.965303617315433 -256,22.0,23.0,-1.4614056064833263,2.989238740534077 -256,23.0,21.0,-2.5405381522555563,3.95440286307604 -256,23.0,22.0,-1.4614056064833263,2.989238740534077 -256,23.0,23.0,5.311836702613133,-9.188263657315172 -256,23.0,24.0,-1.3098929438742493,2.287622053705056 -256,24.0,23.0,-1.3098929438742493,2.287622053705056 -256,24.0,24.0,4.495715080321987,-7.864978761969621 -256,24.0,25.0,-1.2165301194494855,1.8171440463475024 -256,24.0,26.0,-1.9692920169982515,3.760212661917064 -256,25.0,24.0,-1.2165301194494855,1.8171440463475024 -256,25.0,25.0,1.2165301194494855,-1.8171440463475024 -256,26.0,24.0,-1.9692920169982515,3.760212661917064 -256,26.0,26.0,3.652281470778589,-9.46044252232512 -256,26.0,27.0,0.0,2.608731947574922 -256,26.0,28.0,-0.99553355095268,1.881005840357816 -256,26.0,29.0,-0.6874559028276572,1.293971494797717 -256,27.0,5.0,-4.362844058012917,15.463571542897856 -256,27.0,7.0,-1.4439790613954469,4.540814658476248 -256,27.0,26.0,0.0,2.608731947574922 -256,27.0,27.0,5.806823119408364,-22.67145722159613 -256,28.0,26.0,-0.99553355095268,1.881005840357816 -256,28.0,28.0,1.9075867579849564,-3.604364401207048 -256,28.0,29.0,-0.9120532070322764,1.7233585608492326 -256,29.0,26.0,-0.6874559028276572,1.293971494797717 -256,29.0,28.0,-0.9120532070322764,1.7233585608492326 -256,29.0,29.0,1.5995091098599337,-3.0173300556469496 -257,0.0,0.0,6.765516048652632,-21.23160167089863 -257,0.0,1.0,-5.224646179885656,15.646726840803398 -257,0.0,2.0,-1.5408698687669766,5.631674830095234 -257,1.0,0.0,-5.224646179885656,15.646726840803398 -257,1.0,1.0,9.75228216552403,-30.648662892676068 -257,1.0,3.0,-1.7055303166990268,5.1973792282565086 -257,1.0,4.0,-1.1359607881738778,4.772479328281356 -257,1.0,5.0,-1.6861448807654689,5.116477495334806 -257,2.0,0.0,-1.5408698687669766,5.631674830095234 -257,2.0,2.0,9.736318911079088,-29.13794745915803 -257,2.0,3.0,-8.19544904231211,23.5308726290628 -257,3.0,1.0,-1.7055303166990268,5.1973792282565086 -257,3.0,2.0,-8.19544904231211,23.5308726290628 -257,3.0,3.0,16.314103089185693,-55.509410535254254 -257,3.0,5.0,-6.413123730174556,22.31120356548123 -257,3.0,11.0,0.0,4.191255364806866 -257,4.0,1.0,-1.1359607881738778,4.772479328281356 -257,4.0,4.0,1.1359607881738778,-4.751579328281355 -257,5.0,1.0,-1.6861448807654689,5.116477495334806 -257,5.0,3.0,-6.413123730174556,22.31120356548123 -257,5.0,5.0,16.052323092933932,-60.8210692494267 -257,5.0,6.0,-3.590210423980992,11.02611441072814 -257,5.0,8.0,0.0,4.915840805411357 -257,5.0,9.0,0.0,1.8561002591115965 -257,5.0,27.0,-4.362844058012917,15.463571542897856 -257,6.0,5.0,-3.590210423980992,11.02611441072814 -257,6.0,6.0,3.590210423980992,-11.01761441072814 -257,7.0,7.0,1.4439790613954469,-4.519414658476248 -257,7.0,27.0,-1.4439790613954469,4.540814658476248 -257,8.0,5.0,0.0,4.915840805411357 -257,8.0,8.0,0.0,-18.706293706293707 -257,8.0,9.0,0.0,9.090909090909092 -257,8.0,10.0,0.0,4.807692307692308 -257,9.0,5.0,0.0,1.8561002591115965 -257,9.0,8.0,0.0,9.090909090909092 -257,9.0,9.0,13.462042814524237,-41.3837606675224 -257,9.0,16.0,-3.956039125715353,10.317447719844054 -257,9.0,19.0,-1.7848303152666305,3.98535828943083 -257,9.0,20.0,-5.101853820159654,10.98071411292983 -257,9.0,21.0,-2.619319553382597,5.400770303329455 -257,10.0,8.0,0.0,4.807692307692308 -257,10.0,10.0,0.0,-4.807692307692308 -257,11.0,3.0,0.0,4.191255364806866 -257,11.0,11.0,6.573961583776156,-24.424167659260668 -257,11.0,12.0,0.0,7.142857142857143 -257,11.0,13.0,-1.5265676088395577,3.1734252729654173 -257,11.0,14.0,-3.0953961826564296,6.097275864326261 -257,11.0,15.0,-1.9519977922801688,4.104359379111847 -257,12.0,11.0,0.0,7.142857142857143 -257,12.0,12.0,0.0,-7.142857142857143 -257,13.0,11.0,-1.5265676088395577,3.1734252729654173 -257,13.0,13.0,4.01751987283902,-5.424299332335067 -257,13.0,14.0,-2.4909522639994623,2.250874059369649 -257,14.0,11.0,-3.0953961826564296,6.097275864326261 -257,14.0,13.0,-2.4909522639994623,2.250874059369649 -257,14.0,14.0,7.397149597063095,-12.035568855326606 -257,14.0,17.0,-1.8108011504072024,3.687418931630696 -257,15.0,11.0,-1.9519977922801688,4.104359379111847 -257,15.0,15.0,3.271064728633931,-8.94513365126506 -257,15.0,16.0,-1.3190669363537617,4.8407742721532125 -257,16.0,9.0,-3.956039125715353,10.317447719844054 -257,16.0,15.0,-1.3190669363537617,4.8407742721532125 -257,16.0,16.0,5.275106062069114,-15.158221991997266 -257,17.0,14.0,-1.8108011504072024,3.687418931630696 -257,17.0,17.0,4.886487584415919,-9.906177730909668 -257,17.0,18.0,-3.0756864340087167,6.218758799278971 -257,18.0,17.0,-3.0756864340087167,6.218758799278971 -257,18.0,18.0,8.958039375185187,-17.98346468163191 -257,18.0,19.0,-5.88235294117647,11.76470588235294 -257,19.0,9.0,-1.7848303152666305,3.98535828943083 -257,19.0,18.0,-5.88235294117647,11.76470588235294 -257,19.0,19.0,7.6671832564431,-15.75006417178377 -257,20.0,9.0,-5.101853820159654,10.98071411292983 -257,20.0,20.0,21.876495189895888,-45.10843276170355 -257,20.0,21.0,-16.774641369736234,34.127718648773715 -257,21.0,9.0,-2.619319553382597,5.400770303329455 -257,21.0,20.0,-16.774641369736234,34.127718648773715 -257,21.0,21.0,21.93449907537439,-43.48289181517921 -257,21.0,23.0,-2.5405381522555563,3.95440286307604 -257,22.0,22.0,1.4614056064833263,-2.989238740534077 -257,22.0,23.0,-1.4614056064833263,2.989238740534077 -257,23.0,21.0,-2.5405381522555563,3.95440286307604 -257,23.0,22.0,-1.4614056064833263,2.989238740534077 -257,23.0,23.0,5.311836702613133,-9.188263657315172 -257,23.0,24.0,-1.3098929438742493,2.287622053705056 -257,24.0,23.0,-1.3098929438742493,2.287622053705056 -257,24.0,24.0,4.495715080321987,-7.864978761969621 -257,24.0,25.0,-1.2165301194494855,1.8171440463475024 -257,24.0,26.0,-1.9692920169982515,3.760212661917064 -257,25.0,24.0,-1.2165301194494855,1.8171440463475024 -257,25.0,25.0,1.2165301194494855,-1.8171440463475024 -257,26.0,24.0,-1.9692920169982515,3.760212661917064 -257,26.0,26.0,2.9648255679509314,-8.166471027527404 -257,26.0,27.0,0.0,2.608731947574922 -257,26.0,28.0,-0.99553355095268,1.881005840357816 -257,27.0,5.0,-4.362844058012917,15.463571542897856 -257,27.0,7.0,-1.4439790613954469,4.540814658476248 -257,27.0,26.0,0.0,2.608731947574922 -257,27.0,27.0,5.806823119408364,-22.67145722159613 -257,28.0,26.0,-0.99553355095268,1.881005840357816 -257,28.0,28.0,1.9075867579849564,-3.604364401207048 -257,28.0,29.0,-0.9120532070322764,1.7233585608492326 -257,29.0,28.0,-0.9120532070322764,1.7233585608492326 -257,29.0,29.0,0.9120532070322764,-1.7233585608492326 -258,0.0,0.0,6.765516048652632,-21.23160167089863 -258,0.0,1.0,-5.224646179885656,15.646726840803398 -258,0.0,2.0,-1.5408698687669766,5.631674830095234 -258,1.0,0.0,-5.224646179885656,15.646726840803398 -258,1.0,1.0,9.75228216552403,-30.648662892676068 -258,1.0,3.0,-1.7055303166990268,5.1973792282565086 -258,1.0,4.0,-1.1359607881738778,4.772479328281356 -258,1.0,5.0,-1.6861448807654689,5.116477495334806 -258,2.0,0.0,-1.5408698687669766,5.631674830095234 -258,2.0,2.0,9.736318911079088,-29.13794745915803 -258,2.0,3.0,-8.19544904231211,23.5308726290628 -258,3.0,1.0,-1.7055303166990268,5.1973792282565086 -258,3.0,2.0,-8.19544904231211,23.5308726290628 -258,3.0,3.0,16.314103089185693,-55.509410535254254 -258,3.0,5.0,-6.413123730174556,22.31120356548123 -258,3.0,11.0,0.0,4.191255364806866 -258,4.0,1.0,-1.1359607881738778,4.772479328281356 -258,4.0,4.0,4.089980824135861,-12.190647245055052 -258,4.0,6.0,-2.954020035961983,7.449267916773697 -258,5.0,1.0,-1.6861448807654689,5.116477495334806 -258,5.0,3.0,-6.413123730174556,22.31120356548123 -258,5.0,5.0,22.341631269034565,-82.8291478657789 -258,5.0,6.0,-3.590210423980992,11.02611441072814 -258,5.0,7.0,-6.289308176100628,22.0125786163522 -258,5.0,8.0,0.0,4.915840805411357 -258,5.0,9.0,0.0,1.8561002591115965 -258,5.0,27.0,-4.362844058012917,15.463571542897856 -258,6.0,4.0,-2.954020035961983,7.449267916773697 -258,6.0,5.0,-3.590210423980992,11.02611441072814 -258,6.0,6.0,6.544230459942975,-18.45668232750184 -258,7.0,5.0,-6.289308176100628,22.0125786163522 -258,7.0,7.0,6.289308176100628,-22.0080786163522 -258,8.0,5.0,0.0,4.915840805411357 -258,8.0,8.0,0.0,-18.706293706293707 -258,8.0,9.0,0.0,9.090909090909092 -258,8.0,10.0,0.0,4.807692307692308 -258,9.0,5.0,0.0,1.8561002591115965 -258,9.0,8.0,0.0,9.090909090909092 -258,9.0,9.0,13.462042814524237,-41.3837606675224 -258,9.0,16.0,-3.956039125715353,10.317447719844054 -258,9.0,19.0,-1.7848303152666305,3.98535828943083 -258,9.0,20.0,-5.101853820159654,10.98071411292983 -258,9.0,21.0,-2.619319553382597,5.400770303329455 -258,10.0,8.0,0.0,4.807692307692308 -258,10.0,10.0,0.0,-4.807692307692308 -258,11.0,3.0,0.0,4.191255364806866 -258,11.0,11.0,6.573961583776156,-24.424167659260668 -258,11.0,12.0,0.0,7.142857142857143 -258,11.0,13.0,-1.5265676088395577,3.1734252729654173 -258,11.0,14.0,-3.0953961826564296,6.097275864326261 -258,11.0,15.0,-1.9519977922801688,4.104359379111847 -258,12.0,11.0,0.0,7.142857142857143 -258,12.0,12.0,0.0,-7.142857142857143 -258,13.0,11.0,-1.5265676088395577,3.1734252729654173 -258,13.0,13.0,4.01751987283902,-5.424299332335067 -258,13.0,14.0,-2.4909522639994623,2.250874059369649 -258,14.0,11.0,-3.0953961826564296,6.097275864326261 -258,14.0,13.0,-2.4909522639994623,2.250874059369649 -258,14.0,14.0,9.365498545964757,-16.01163373210796 -258,14.0,17.0,-1.8108011504072024,3.687418931630696 -258,14.0,22.0,-1.9683489489016612,3.976064876781356 -258,15.0,11.0,-1.9519977922801688,4.104359379111847 -258,15.0,15.0,3.271064728633931,-8.94513365126506 -258,15.0,16.0,-1.3190669363537617,4.8407742721532125 -258,16.0,9.0,-3.956039125715353,10.317447719844054 -258,16.0,15.0,-1.3190669363537617,4.8407742721532125 -258,16.0,16.0,5.275106062069114,-15.158221991997266 -258,17.0,14.0,-1.8108011504072024,3.687418931630696 -258,17.0,17.0,4.886487584415919,-9.906177730909668 -258,17.0,18.0,-3.0756864340087167,6.218758799278971 -258,18.0,17.0,-3.0756864340087167,6.218758799278971 -258,18.0,18.0,8.958039375185187,-17.98346468163191 -258,18.0,19.0,-5.88235294117647,11.76470588235294 -258,19.0,9.0,-1.7848303152666305,3.98535828943083 -258,19.0,18.0,-5.88235294117647,11.76470588235294 -258,19.0,19.0,7.6671832564431,-15.75006417178377 -258,20.0,9.0,-5.101853820159654,10.98071411292983 -258,20.0,20.0,21.876495189895888,-45.10843276170355 -258,20.0,21.0,-16.774641369736234,34.127718648773715 -258,21.0,9.0,-2.619319553382597,5.400770303329455 -258,21.0,20.0,-16.774641369736234,34.127718648773715 -258,21.0,21.0,21.93449907537439,-43.48289181517921 -258,21.0,23.0,-2.5405381522555563,3.95440286307604 -258,22.0,14.0,-1.9683489489016612,3.976064876781356 -258,22.0,22.0,3.429754555384988,-6.965303617315433 -258,22.0,23.0,-1.4614056064833263,2.989238740534077 -258,23.0,21.0,-2.5405381522555563,3.95440286307604 -258,23.0,22.0,-1.4614056064833263,2.989238740534077 -258,23.0,23.0,5.311836702613133,-9.188263657315172 -258,23.0,24.0,-1.3098929438742493,2.287622053705056 -258,24.0,23.0,-1.3098929438742493,2.287622053705056 -258,24.0,24.0,4.495715080321987,-7.864978761969621 -258,24.0,25.0,-1.2165301194494855,1.8171440463475024 -258,24.0,26.0,-1.9692920169982515,3.760212661917064 -258,25.0,24.0,-1.2165301194494855,1.8171440463475024 -258,25.0,25.0,1.2165301194494855,-1.8171440463475024 -258,26.0,24.0,-1.9692920169982515,3.760212661917064 -258,26.0,26.0,3.652281470778589,-9.46044252232512 -258,26.0,27.0,0.0,2.608731947574922 -258,26.0,28.0,-0.99553355095268,1.881005840357816 -258,26.0,29.0,-0.6874559028276572,1.293971494797717 -258,27.0,5.0,-4.362844058012917,15.463571542897856 -258,27.0,26.0,0.0,2.608731947574922 -258,27.0,27.0,4.362844058012917,-18.15204256311988 -258,28.0,26.0,-0.99553355095268,1.881005840357816 -258,28.0,28.0,1.9075867579849564,-3.604364401207048 -258,28.0,29.0,-0.9120532070322764,1.7233585608492326 -258,29.0,26.0,-0.6874559028276572,1.293971494797717 -258,29.0,28.0,-0.9120532070322764,1.7233585608492326 -258,29.0,29.0,1.5995091098599337,-3.0173300556469496 -259,0.0,0.0,6.765516048652632,-21.23160167089863 -259,0.0,1.0,-5.224646179885656,15.646726840803398 -259,0.0,2.0,-1.5408698687669766,5.631674830095234 -259,1.0,0.0,-5.224646179885656,15.646726840803398 -259,1.0,1.0,9.75228216552403,-30.648662892676068 -259,1.0,3.0,-1.7055303166990268,5.1973792282565086 -259,1.0,4.0,-1.1359607881738778,4.772479328281356 -259,1.0,5.0,-1.6861448807654689,5.116477495334806 -259,2.0,0.0,-1.5408698687669766,5.631674830095234 -259,2.0,2.0,9.736318911079088,-29.13794745915803 -259,2.0,3.0,-8.19544904231211,23.5308726290628 -259,3.0,1.0,-1.7055303166990268,5.1973792282565086 -259,3.0,2.0,-8.19544904231211,23.5308726290628 -259,3.0,3.0,9.900979359011137,-33.202706969773025 -259,3.0,11.0,0.0,4.191255364806866 -259,4.0,1.0,-1.1359607881738778,4.772479328281356 -259,4.0,4.0,4.089980824135861,-12.190647245055052 -259,4.0,6.0,-2.954020035961983,7.449267916773697 -259,5.0,1.0,-1.6861448807654689,5.116477495334806 -259,5.0,5.0,15.928507538860009,-60.52244430029767 -259,5.0,6.0,-3.590210423980992,11.02611441072814 -259,5.0,7.0,-6.289308176100628,22.0125786163522 -259,5.0,8.0,0.0,4.915840805411357 -259,5.0,9.0,0.0,1.8561002591115965 -259,5.0,27.0,-4.362844058012917,15.463571542897856 -259,6.0,4.0,-2.954020035961983,7.449267916773697 -259,6.0,5.0,-3.590210423980992,11.02611441072814 -259,6.0,6.0,6.544230459942975,-18.45668232750184 -259,7.0,5.0,-6.289308176100628,22.0125786163522 -259,7.0,7.0,7.733287237496075,-26.527493274828448 -259,7.0,27.0,-1.4439790613954469,4.540814658476248 -259,8.0,5.0,0.0,4.915840805411357 -259,8.0,8.0,0.0,-18.706293706293707 -259,8.0,9.0,0.0,9.090909090909092 -259,8.0,10.0,0.0,4.807692307692308 -259,9.0,5.0,0.0,1.8561002591115965 -259,9.0,8.0,0.0,9.090909090909092 -259,9.0,9.0,13.462042814524237,-41.3837606675224 -259,9.0,16.0,-3.956039125715353,10.317447719844054 -259,9.0,19.0,-1.7848303152666305,3.98535828943083 -259,9.0,20.0,-5.101853820159654,10.98071411292983 -259,9.0,21.0,-2.619319553382597,5.400770303329455 -259,10.0,8.0,0.0,4.807692307692308 -259,10.0,10.0,0.0,-4.807692307692308 -259,11.0,3.0,0.0,4.191255364806866 -259,11.0,11.0,3.478565401119727,-18.326891794934408 -259,11.0,12.0,0.0,7.142857142857143 -259,11.0,13.0,-1.5265676088395577,3.1734252729654173 -259,11.0,15.0,-1.9519977922801688,4.104359379111847 -259,12.0,11.0,0.0,7.142857142857143 -259,12.0,12.0,0.0,-7.142857142857143 -259,13.0,11.0,-1.5265676088395577,3.1734252729654173 -259,13.0,13.0,4.01751987283902,-5.424299332335067 -259,13.0,14.0,-2.4909522639994623,2.250874059369649 -259,14.0,13.0,-2.4909522639994623,2.250874059369649 -259,14.0,14.0,6.270102363308326,-9.9143578677817 -259,14.0,17.0,-1.8108011504072024,3.687418931630696 -259,14.0,22.0,-1.9683489489016612,3.976064876781356 -259,15.0,11.0,-1.9519977922801688,4.104359379111847 -259,15.0,15.0,3.271064728633931,-8.94513365126506 -259,15.0,16.0,-1.3190669363537617,4.8407742721532125 -259,16.0,9.0,-3.956039125715353,10.317447719844054 -259,16.0,15.0,-1.3190669363537617,4.8407742721532125 -259,16.0,16.0,5.275106062069114,-15.158221991997266 -259,17.0,14.0,-1.8108011504072024,3.687418931630696 -259,17.0,17.0,1.8108011504072024,-3.687418931630696 -259,18.0,18.0,5.88235294117647,-11.76470588235294 -259,18.0,19.0,-5.88235294117647,11.76470588235294 -259,19.0,9.0,-1.7848303152666305,3.98535828943083 -259,19.0,18.0,-5.88235294117647,11.76470588235294 -259,19.0,19.0,7.6671832564431,-15.75006417178377 -259,20.0,9.0,-5.101853820159654,10.98071411292983 -259,20.0,20.0,21.876495189895888,-45.10843276170355 -259,20.0,21.0,-16.774641369736234,34.127718648773715 -259,21.0,9.0,-2.619319553382597,5.400770303329455 -259,21.0,20.0,-16.774641369736234,34.127718648773715 -259,21.0,21.0,21.93449907537439,-43.48289181517921 -259,21.0,23.0,-2.5405381522555563,3.95440286307604 -259,22.0,14.0,-1.9683489489016612,3.976064876781356 -259,22.0,22.0,3.429754555384988,-6.965303617315433 -259,22.0,23.0,-1.4614056064833263,2.989238740534077 -259,23.0,21.0,-2.5405381522555563,3.95440286307604 -259,23.0,22.0,-1.4614056064833263,2.989238740534077 -259,23.0,23.0,5.311836702613133,-9.188263657315172 -259,23.0,24.0,-1.3098929438742493,2.287622053705056 -259,24.0,23.0,-1.3098929438742493,2.287622053705056 -259,24.0,24.0,4.495715080321987,-7.864978761969621 -259,24.0,25.0,-1.2165301194494855,1.8171440463475024 -259,24.0,26.0,-1.9692920169982515,3.760212661917064 -259,25.0,24.0,-1.2165301194494855,1.8171440463475024 -259,25.0,25.0,1.2165301194494855,-1.8171440463475024 -259,26.0,24.0,-1.9692920169982515,3.760212661917064 -259,26.0,26.0,3.652281470778589,-9.46044252232512 -259,26.0,27.0,0.0,2.608731947574922 -259,26.0,28.0,-0.99553355095268,1.881005840357816 -259,26.0,29.0,-0.6874559028276572,1.293971494797717 -259,27.0,5.0,-4.362844058012917,15.463571542897856 -259,27.0,7.0,-1.4439790613954469,4.540814658476248 -259,27.0,26.0,0.0,2.608731947574922 -259,27.0,27.0,5.806823119408364,-22.67145722159613 -259,28.0,26.0,-0.99553355095268,1.881005840357816 -259,28.0,28.0,1.9075867579849564,-3.604364401207048 -259,28.0,29.0,-0.9120532070322764,1.7233585608492326 -259,29.0,26.0,-0.6874559028276572,1.293971494797717 -259,29.0,28.0,-0.9120532070322764,1.7233585608492326 -259,29.0,29.0,1.5995091098599337,-3.0173300556469496 -260,0.0,0.0,5.224646179885656,-15.620326840803395 -260,0.0,1.0,-5.224646179885656,15.646726840803398 -260,1.0,0.0,-5.224646179885656,15.646726840803398 -260,1.0,1.0,9.75228216552403,-30.648662892676068 -260,1.0,3.0,-1.7055303166990268,5.1973792282565086 -260,1.0,4.0,-1.1359607881738778,4.772479328281356 -260,1.0,5.0,-1.6861448807654689,5.116477495334806 -260,2.0,2.0,8.19544904231211,-23.5266726290628 -260,2.0,3.0,-8.19544904231211,23.5308726290628 -260,3.0,1.0,-1.7055303166990268,5.1973792282565086 -260,3.0,2.0,-8.19544904231211,23.5308726290628 -260,3.0,3.0,9.900979359011137,-33.202706969773025 -260,3.0,11.0,0.0,4.191255364806866 -260,4.0,1.0,-1.1359607881738778,4.772479328281356 -260,4.0,4.0,4.089980824135861,-12.190647245055052 -260,4.0,6.0,-2.954020035961983,7.449267916773697 -260,5.0,1.0,-1.6861448807654689,5.116477495334806 -260,5.0,5.0,15.928507538860009,-60.52244430029767 -260,5.0,6.0,-3.590210423980992,11.02611441072814 -260,5.0,7.0,-6.289308176100628,22.0125786163522 -260,5.0,8.0,0.0,4.915840805411357 -260,5.0,9.0,0.0,1.8561002591115965 -260,5.0,27.0,-4.362844058012917,15.463571542897856 -260,6.0,4.0,-2.954020035961983,7.449267916773697 -260,6.0,5.0,-3.590210423980992,11.02611441072814 -260,6.0,6.0,6.544230459942975,-18.45668232750184 -260,7.0,5.0,-6.289308176100628,22.0125786163522 -260,7.0,7.0,7.733287237496075,-26.527493274828448 -260,7.0,27.0,-1.4439790613954469,4.540814658476248 -260,8.0,5.0,0.0,4.915840805411357 -260,8.0,8.0,0.0,-18.706293706293707 -260,8.0,9.0,0.0,9.090909090909092 -260,8.0,10.0,0.0,4.807692307692308 -260,9.0,5.0,0.0,1.8561002591115965 -260,9.0,8.0,0.0,9.090909090909092 -260,9.0,9.0,13.462042814524237,-41.3837606675224 -260,9.0,16.0,-3.956039125715353,10.317447719844054 -260,9.0,19.0,-1.7848303152666305,3.98535828943083 -260,9.0,20.0,-5.101853820159654,10.98071411292983 -260,9.0,21.0,-2.619319553382597,5.400770303329455 -260,10.0,8.0,0.0,4.807692307692308 -260,10.0,10.0,0.0,-4.807692307692308 -260,11.0,3.0,0.0,4.191255364806866 -260,11.0,11.0,6.573961583776156,-24.424167659260668 -260,11.0,12.0,0.0,7.142857142857143 -260,11.0,13.0,-1.5265676088395577,3.1734252729654173 -260,11.0,14.0,-3.0953961826564296,6.097275864326261 -260,11.0,15.0,-1.9519977922801688,4.104359379111847 -260,12.0,11.0,0.0,7.142857142857143 -260,12.0,12.0,0.0,-7.142857142857143 -260,13.0,11.0,-1.5265676088395577,3.1734252729654173 -260,13.0,13.0,4.01751987283902,-5.424299332335067 -260,13.0,14.0,-2.4909522639994623,2.250874059369649 -260,14.0,11.0,-3.0953961826564296,6.097275864326261 -260,14.0,13.0,-2.4909522639994623,2.250874059369649 -260,14.0,14.0,9.365498545964757,-16.01163373210796 -260,14.0,17.0,-1.8108011504072024,3.687418931630696 -260,14.0,22.0,-1.9683489489016612,3.976064876781356 -260,15.0,11.0,-1.9519977922801688,4.104359379111847 -260,15.0,15.0,3.271064728633931,-8.94513365126506 -260,15.0,16.0,-1.3190669363537617,4.8407742721532125 -260,16.0,9.0,-3.956039125715353,10.317447719844054 -260,16.0,15.0,-1.3190669363537617,4.8407742721532125 -260,16.0,16.0,5.275106062069114,-15.158221991997266 -260,17.0,14.0,-1.8108011504072024,3.687418931630696 -260,17.0,17.0,4.886487584415919,-9.906177730909668 -260,17.0,18.0,-3.0756864340087167,6.218758799278971 -260,18.0,17.0,-3.0756864340087167,6.218758799278971 -260,18.0,18.0,8.958039375185187,-17.98346468163191 -260,18.0,19.0,-5.88235294117647,11.76470588235294 -260,19.0,9.0,-1.7848303152666305,3.98535828943083 -260,19.0,18.0,-5.88235294117647,11.76470588235294 -260,19.0,19.0,7.6671832564431,-15.75006417178377 -260,20.0,9.0,-5.101853820159654,10.98071411292983 -260,20.0,20.0,21.876495189895888,-45.10843276170355 -260,20.0,21.0,-16.774641369736234,34.127718648773715 -260,21.0,9.0,-2.619319553382597,5.400770303329455 -260,21.0,20.0,-16.774641369736234,34.127718648773715 -260,21.0,21.0,21.93449907537439,-43.48289181517921 -260,21.0,23.0,-2.5405381522555563,3.95440286307604 -260,22.0,14.0,-1.9683489489016612,3.976064876781356 -260,22.0,22.0,3.429754555384988,-6.965303617315433 -260,22.0,23.0,-1.4614056064833263,2.989238740534077 -260,23.0,21.0,-2.5405381522555563,3.95440286307604 -260,23.0,22.0,-1.4614056064833263,2.989238740534077 -260,23.0,23.0,5.311836702613133,-9.188263657315172 -260,23.0,24.0,-1.3098929438742493,2.287622053705056 -260,24.0,23.0,-1.3098929438742493,2.287622053705056 -260,24.0,24.0,4.495715080321987,-7.864978761969621 -260,24.0,25.0,-1.2165301194494855,1.8171440463475024 -260,24.0,26.0,-1.9692920169982515,3.760212661917064 -260,25.0,24.0,-1.2165301194494855,1.8171440463475024 -260,25.0,25.0,1.2165301194494855,-1.8171440463475024 -260,26.0,24.0,-1.9692920169982515,3.760212661917064 -260,26.0,26.0,3.652281470778589,-9.46044252232512 -260,26.0,27.0,0.0,2.608731947574922 -260,26.0,28.0,-0.99553355095268,1.881005840357816 -260,26.0,29.0,-0.6874559028276572,1.293971494797717 -260,27.0,5.0,-4.362844058012917,15.463571542897856 -260,27.0,7.0,-1.4439790613954469,4.540814658476248 -260,27.0,26.0,0.0,2.608731947574922 -260,27.0,27.0,5.806823119408364,-22.67145722159613 -260,28.0,26.0,-0.99553355095268,1.881005840357816 -260,28.0,28.0,1.9075867579849564,-3.604364401207048 -260,28.0,29.0,-0.9120532070322764,1.7233585608492326 -260,29.0,26.0,-0.6874559028276572,1.293971494797717 -260,29.0,28.0,-0.9120532070322764,1.7233585608492326 -260,29.0,29.0,1.5995091098599337,-3.0173300556469496 -261,0.0,0.0,6.765516048652632,-21.23160167089863 -261,0.0,1.0,-5.224646179885656,15.646726840803398 -261,0.0,2.0,-1.5408698687669766,5.631674830095234 -261,1.0,0.0,-5.224646179885656,15.646726840803398 -261,1.0,1.0,9.75228216552403,-30.648662892676068 -261,1.0,3.0,-1.7055303166990268,5.1973792282565086 -261,1.0,4.0,-1.1359607881738778,4.772479328281356 -261,1.0,5.0,-1.6861448807654689,5.116477495334806 -261,2.0,0.0,-1.5408698687669766,5.631674830095234 -261,2.0,2.0,9.736318911079088,-29.13794745915803 -261,2.0,3.0,-8.19544904231211,23.5308726290628 -261,3.0,1.0,-1.7055303166990268,5.1973792282565086 -261,3.0,2.0,-8.19544904231211,23.5308726290628 -261,3.0,3.0,16.314103089185693,-55.509410535254254 -261,3.0,5.0,-6.413123730174556,22.31120356548123 -261,3.0,11.0,0.0,4.191255364806866 -261,4.0,1.0,-1.1359607881738778,4.772479328281356 -261,4.0,4.0,4.089980824135861,-12.190647245055052 -261,4.0,6.0,-2.954020035961983,7.449267916773697 -261,5.0,1.0,-1.6861448807654689,5.116477495334806 -261,5.0,3.0,-6.413123730174556,22.31120356548123 -261,5.0,5.0,16.052323092933932,-60.8210692494267 -261,5.0,6.0,-3.590210423980992,11.02611441072814 -261,5.0,8.0,0.0,4.915840805411357 -261,5.0,9.0,0.0,1.8561002591115965 -261,5.0,27.0,-4.362844058012917,15.463571542897856 -261,6.0,4.0,-2.954020035961983,7.449267916773697 -261,6.0,5.0,-3.590210423980992,11.02611441072814 -261,6.0,6.0,6.544230459942975,-18.45668232750184 -261,7.0,7.0,1.4439790613954469,-4.519414658476248 -261,7.0,27.0,-1.4439790613954469,4.540814658476248 -261,8.0,5.0,0.0,4.915840805411357 -261,8.0,8.0,0.0,-18.706293706293707 -261,8.0,9.0,0.0,9.090909090909092 -261,8.0,10.0,0.0,4.807692307692308 -261,9.0,5.0,0.0,1.8561002591115965 -261,9.0,8.0,0.0,9.090909090909092 -261,9.0,9.0,13.462042814524237,-41.3837606675224 -261,9.0,16.0,-3.956039125715353,10.317447719844054 -261,9.0,19.0,-1.7848303152666305,3.98535828943083 -261,9.0,20.0,-5.101853820159654,10.98071411292983 -261,9.0,21.0,-2.619319553382597,5.400770303329455 -261,10.0,8.0,0.0,4.807692307692308 -261,10.0,10.0,0.0,-4.807692307692308 -261,11.0,3.0,0.0,4.191255364806866 -261,11.0,11.0,3.478565401119727,-18.326891794934408 -261,11.0,12.0,0.0,7.142857142857143 -261,11.0,13.0,-1.5265676088395577,3.1734252729654173 -261,11.0,15.0,-1.9519977922801688,4.104359379111847 -261,12.0,11.0,0.0,7.142857142857143 -261,12.0,12.0,0.0,-7.142857142857143 -261,13.0,11.0,-1.5265676088395577,3.1734252729654173 -261,13.0,13.0,4.01751987283902,-5.424299332335067 -261,13.0,14.0,-2.4909522639994623,2.250874059369649 -261,14.0,13.0,-2.4909522639994623,2.250874059369649 -261,14.0,14.0,6.270102363308326,-9.9143578677817 -261,14.0,17.0,-1.8108011504072024,3.687418931630696 -261,14.0,22.0,-1.9683489489016612,3.976064876781356 -261,15.0,11.0,-1.9519977922801688,4.104359379111847 -261,15.0,15.0,3.271064728633931,-8.94513365126506 -261,15.0,16.0,-1.3190669363537617,4.8407742721532125 -261,16.0,9.0,-3.956039125715353,10.317447719844054 -261,16.0,15.0,-1.3190669363537617,4.8407742721532125 -261,16.0,16.0,5.275106062069114,-15.158221991997266 -261,17.0,14.0,-1.8108011504072024,3.687418931630696 -261,17.0,17.0,4.886487584415919,-9.906177730909668 -261,17.0,18.0,-3.0756864340087167,6.218758799278971 -261,18.0,17.0,-3.0756864340087167,6.218758799278971 -261,18.0,18.0,8.958039375185187,-17.98346468163191 -261,18.0,19.0,-5.88235294117647,11.76470588235294 -261,19.0,9.0,-1.7848303152666305,3.98535828943083 -261,19.0,18.0,-5.88235294117647,11.76470588235294 -261,19.0,19.0,7.6671832564431,-15.75006417178377 -261,20.0,9.0,-5.101853820159654,10.98071411292983 -261,20.0,20.0,21.876495189895888,-45.10843276170355 -261,20.0,21.0,-16.774641369736234,34.127718648773715 -261,21.0,9.0,-2.619319553382597,5.400770303329455 -261,21.0,20.0,-16.774641369736234,34.127718648773715 -261,21.0,21.0,21.93449907537439,-43.48289181517921 -261,21.0,23.0,-2.5405381522555563,3.95440286307604 -261,22.0,14.0,-1.9683489489016612,3.976064876781356 -261,22.0,22.0,3.429754555384988,-6.965303617315433 -261,22.0,23.0,-1.4614056064833263,2.989238740534077 -261,23.0,21.0,-2.5405381522555563,3.95440286307604 -261,23.0,22.0,-1.4614056064833263,2.989238740534077 -261,23.0,23.0,5.311836702613133,-9.188263657315172 -261,23.0,24.0,-1.3098929438742493,2.287622053705056 -261,24.0,23.0,-1.3098929438742493,2.287622053705056 -261,24.0,24.0,4.495715080321987,-7.864978761969621 -261,24.0,25.0,-1.2165301194494855,1.8171440463475024 -261,24.0,26.0,-1.9692920169982515,3.760212661917064 -261,25.0,24.0,-1.2165301194494855,1.8171440463475024 -261,25.0,25.0,1.2165301194494855,-1.8171440463475024 -261,26.0,24.0,-1.9692920169982515,3.760212661917064 -261,26.0,26.0,2.9648255679509314,-8.166471027527404 -261,26.0,27.0,0.0,2.608731947574922 -261,26.0,28.0,-0.99553355095268,1.881005840357816 -261,27.0,5.0,-4.362844058012917,15.463571542897856 -261,27.0,7.0,-1.4439790613954469,4.540814658476248 -261,27.0,26.0,0.0,2.608731947574922 -261,27.0,27.0,5.806823119408364,-22.67145722159613 -261,28.0,26.0,-0.99553355095268,1.881005840357816 -261,28.0,28.0,1.9075867579849564,-3.604364401207048 -261,28.0,29.0,-0.9120532070322764,1.7233585608492326 -261,29.0,28.0,-0.9120532070322764,1.7233585608492326 -261,29.0,29.0,0.9120532070322764,-1.7233585608492326 -262,0.0,0.0,6.765516048652632,-21.23160167089863 -262,0.0,1.0,-5.224646179885656,15.646726840803398 -262,0.0,2.0,-1.5408698687669766,5.631674830095234 -262,1.0,0.0,-5.224646179885656,15.646726840803398 -262,1.0,1.0,9.75228216552403,-30.648662892676068 -262,1.0,3.0,-1.7055303166990268,5.1973792282565086 -262,1.0,4.0,-1.1359607881738778,4.772479328281356 -262,1.0,5.0,-1.6861448807654689,5.116477495334806 -262,2.0,0.0,-1.5408698687669766,5.631674830095234 -262,2.0,2.0,9.736318911079088,-29.13794745915803 -262,2.0,3.0,-8.19544904231211,23.5308726290628 -262,3.0,1.0,-1.7055303166990268,5.1973792282565086 -262,3.0,2.0,-8.19544904231211,23.5308726290628 -262,3.0,3.0,16.314103089185693,-55.509410535254254 -262,3.0,5.0,-6.413123730174556,22.31120356548123 -262,3.0,11.0,0.0,4.191255364806866 -262,4.0,1.0,-1.1359607881738778,4.772479328281356 -262,4.0,4.0,4.089980824135861,-12.190647245055052 -262,4.0,6.0,-2.954020035961983,7.449267916773697 -262,5.0,1.0,-1.6861448807654689,5.116477495334806 -262,5.0,3.0,-6.413123730174556,22.31120356548123 -262,5.0,5.0,18.75142084505357,-71.81153345505078 -262,5.0,7.0,-6.289308176100628,22.0125786163522 -262,5.0,8.0,0.0,4.915840805411357 -262,5.0,9.0,0.0,1.8561002591115965 -262,5.0,27.0,-4.362844058012917,15.463571542897856 -262,6.0,4.0,-2.954020035961983,7.449267916773697 -262,6.0,6.0,2.954020035961983,-7.439067916773697 -262,7.0,5.0,-6.289308176100628,22.0125786163522 -262,7.0,7.0,7.733287237496075,-26.527493274828448 -262,7.0,27.0,-1.4439790613954469,4.540814658476248 -262,8.0,5.0,0.0,4.915840805411357 -262,8.0,8.0,0.0,-18.706293706293707 -262,8.0,9.0,0.0,9.090909090909092 -262,8.0,10.0,0.0,4.807692307692308 -262,9.0,5.0,0.0,1.8561002591115965 -262,9.0,8.0,0.0,9.090909090909092 -262,9.0,9.0,13.462042814524237,-41.3837606675224 -262,9.0,16.0,-3.956039125715353,10.317447719844054 -262,9.0,19.0,-1.7848303152666305,3.98535828943083 -262,9.0,20.0,-5.101853820159654,10.98071411292983 -262,9.0,21.0,-2.619319553382597,5.400770303329455 -262,10.0,8.0,0.0,4.807692307692308 -262,10.0,10.0,0.0,-4.807692307692308 -262,11.0,3.0,0.0,4.191255364806866 -262,11.0,11.0,6.573961583776156,-24.424167659260668 -262,11.0,12.0,0.0,7.142857142857143 -262,11.0,13.0,-1.5265676088395577,3.1734252729654173 -262,11.0,14.0,-3.0953961826564296,6.097275864326261 -262,11.0,15.0,-1.9519977922801688,4.104359379111847 -262,12.0,11.0,0.0,7.142857142857143 -262,12.0,12.0,0.0,-7.142857142857143 -262,13.0,11.0,-1.5265676088395577,3.1734252729654173 -262,13.0,13.0,4.01751987283902,-5.424299332335067 -262,13.0,14.0,-2.4909522639994623,2.250874059369649 -262,14.0,11.0,-3.0953961826564296,6.097275864326261 -262,14.0,13.0,-2.4909522639994623,2.250874059369649 -262,14.0,14.0,9.365498545964757,-16.01163373210796 -262,14.0,17.0,-1.8108011504072024,3.687418931630696 -262,14.0,22.0,-1.9683489489016612,3.976064876781356 -262,15.0,11.0,-1.9519977922801688,4.104359379111847 -262,15.0,15.0,3.271064728633931,-8.94513365126506 -262,15.0,16.0,-1.3190669363537617,4.8407742721532125 -262,16.0,9.0,-3.956039125715353,10.317447719844054 -262,16.0,15.0,-1.3190669363537617,4.8407742721532125 -262,16.0,16.0,5.275106062069114,-15.158221991997266 -262,17.0,14.0,-1.8108011504072024,3.687418931630696 -262,17.0,17.0,4.886487584415919,-9.906177730909668 -262,17.0,18.0,-3.0756864340087167,6.218758799278971 -262,18.0,17.0,-3.0756864340087167,6.218758799278971 -262,18.0,18.0,8.958039375185187,-17.98346468163191 -262,18.0,19.0,-5.88235294117647,11.76470588235294 -262,19.0,9.0,-1.7848303152666305,3.98535828943083 -262,19.0,18.0,-5.88235294117647,11.76470588235294 -262,19.0,19.0,7.6671832564431,-15.75006417178377 -262,20.0,9.0,-5.101853820159654,10.98071411292983 -262,20.0,20.0,21.876495189895888,-45.10843276170355 -262,20.0,21.0,-16.774641369736234,34.127718648773715 -262,21.0,9.0,-2.619319553382597,5.400770303329455 -262,21.0,20.0,-16.774641369736234,34.127718648773715 -262,21.0,21.0,21.93449907537439,-43.48289181517921 -262,21.0,23.0,-2.5405381522555563,3.95440286307604 -262,22.0,14.0,-1.9683489489016612,3.976064876781356 -262,22.0,22.0,3.429754555384988,-6.965303617315433 -262,22.0,23.0,-1.4614056064833263,2.989238740534077 -262,23.0,21.0,-2.5405381522555563,3.95440286307604 -262,23.0,22.0,-1.4614056064833263,2.989238740534077 -262,23.0,23.0,5.311836702613133,-9.188263657315172 -262,23.0,24.0,-1.3098929438742493,2.287622053705056 -262,24.0,23.0,-1.3098929438742493,2.287622053705056 -262,24.0,24.0,4.495715080321987,-7.864978761969621 -262,24.0,25.0,-1.2165301194494855,1.8171440463475024 -262,24.0,26.0,-1.9692920169982515,3.760212661917064 -262,25.0,24.0,-1.2165301194494855,1.8171440463475024 -262,25.0,25.0,1.2165301194494855,-1.8171440463475024 -262,26.0,24.0,-1.9692920169982515,3.760212661917064 -262,26.0,26.0,3.652281470778589,-9.46044252232512 -262,26.0,27.0,0.0,2.608731947574922 -262,26.0,28.0,-0.99553355095268,1.881005840357816 -262,26.0,29.0,-0.6874559028276572,1.293971494797717 -262,27.0,5.0,-4.362844058012917,15.463571542897856 -262,27.0,7.0,-1.4439790613954469,4.540814658476248 -262,27.0,26.0,0.0,2.608731947574922 -262,27.0,27.0,5.806823119408364,-22.67145722159613 -262,28.0,26.0,-0.99553355095268,1.881005840357816 -262,28.0,28.0,1.9075867579849564,-3.604364401207048 -262,28.0,29.0,-0.9120532070322764,1.7233585608492326 -262,29.0,26.0,-0.6874559028276572,1.293971494797717 -262,29.0,28.0,-0.9120532070322764,1.7233585608492326 -262,29.0,29.0,1.5995091098599337,-3.0173300556469496 -263,0.0,0.0,6.765516048652632,-21.23160167089863 -263,0.0,1.0,-5.224646179885656,15.646726840803398 -263,0.0,2.0,-1.5408698687669766,5.631674830095234 -263,1.0,0.0,-5.224646179885656,15.646726840803398 -263,1.0,1.0,9.75228216552403,-30.648662892676068 -263,1.0,3.0,-1.7055303166990268,5.1973792282565086 -263,1.0,4.0,-1.1359607881738778,4.772479328281356 -263,1.0,5.0,-1.6861448807654689,5.116477495334806 -263,2.0,0.0,-1.5408698687669766,5.631674830095234 -263,2.0,2.0,9.736318911079088,-29.13794745915803 -263,2.0,3.0,-8.19544904231211,23.5308726290628 -263,3.0,1.0,-1.7055303166990268,5.1973792282565086 -263,3.0,2.0,-8.19544904231211,23.5308726290628 -263,3.0,3.0,16.314103089185693,-55.509410535254254 -263,3.0,5.0,-6.413123730174556,22.31120356548123 -263,3.0,11.0,0.0,4.191255364806866 -263,4.0,1.0,-1.1359607881738778,4.772479328281356 -263,4.0,4.0,4.089980824135861,-12.190647245055052 -263,4.0,6.0,-2.954020035961983,7.449267916773697 -263,5.0,1.0,-1.6861448807654689,5.116477495334806 -263,5.0,3.0,-6.413123730174556,22.31120356548123 -263,5.0,5.0,22.341631269034565,-82.8291478657789 -263,5.0,6.0,-3.590210423980992,11.02611441072814 -263,5.0,7.0,-6.289308176100628,22.0125786163522 -263,5.0,8.0,0.0,4.915840805411357 -263,5.0,9.0,0.0,1.8561002591115965 -263,5.0,27.0,-4.362844058012917,15.463571542897856 -263,6.0,4.0,-2.954020035961983,7.449267916773697 -263,6.0,5.0,-3.590210423980992,11.02611441072814 -263,6.0,6.0,6.544230459942975,-18.45668232750184 -263,7.0,5.0,-6.289308176100628,22.0125786163522 -263,7.0,7.0,7.733287237496075,-26.527493274828448 -263,7.0,27.0,-1.4439790613954469,4.540814658476248 -263,8.0,5.0,0.0,4.915840805411357 -263,8.0,8.0,0.0,-18.706293706293707 -263,8.0,9.0,0.0,9.090909090909092 -263,8.0,10.0,0.0,4.807692307692308 -263,9.0,5.0,0.0,1.8561002591115965 -263,9.0,8.0,0.0,9.090909090909092 -263,9.0,9.0,13.462042814524237,-41.3837606675224 -263,9.0,16.0,-3.956039125715353,10.317447719844054 -263,9.0,19.0,-1.7848303152666305,3.98535828943083 -263,9.0,20.0,-5.101853820159654,10.98071411292983 -263,9.0,21.0,-2.619319553382597,5.400770303329455 -263,10.0,8.0,0.0,4.807692307692308 -263,10.0,10.0,0.0,-4.807692307692308 -263,11.0,3.0,0.0,4.191255364806866 -263,11.0,11.0,6.573961583776156,-24.424167659260668 -263,11.0,12.0,0.0,7.142857142857143 -263,11.0,13.0,-1.5265676088395577,3.1734252729654173 -263,11.0,14.0,-3.0953961826564296,6.097275864326261 -263,11.0,15.0,-1.9519977922801688,4.104359379111847 -263,12.0,11.0,0.0,7.142857142857143 -263,12.0,12.0,0.0,-7.142857142857143 -263,13.0,11.0,-1.5265676088395577,3.1734252729654173 -263,13.0,13.0,4.01751987283902,-5.424299332335067 -263,13.0,14.0,-2.4909522639994623,2.250874059369649 -263,14.0,11.0,-3.0953961826564296,6.097275864326261 -263,14.0,13.0,-2.4909522639994623,2.250874059369649 -263,14.0,14.0,9.365498545964757,-16.01163373210796 -263,14.0,17.0,-1.8108011504072024,3.687418931630696 -263,14.0,22.0,-1.9683489489016612,3.976064876781356 -263,15.0,11.0,-1.9519977922801688,4.104359379111847 -263,15.0,15.0,3.271064728633931,-8.94513365126506 -263,15.0,16.0,-1.3190669363537617,4.8407742721532125 -263,16.0,9.0,-3.956039125715353,10.317447719844054 -263,16.0,15.0,-1.3190669363537617,4.8407742721532125 -263,16.0,16.0,5.275106062069114,-15.158221991997266 -263,17.0,14.0,-1.8108011504072024,3.687418931630696 -263,17.0,17.0,4.886487584415919,-9.906177730909668 -263,17.0,18.0,-3.0756864340087167,6.218758799278971 -263,18.0,17.0,-3.0756864340087167,6.218758799278971 -263,18.0,18.0,8.958039375185187,-17.98346468163191 -263,18.0,19.0,-5.88235294117647,11.76470588235294 -263,19.0,9.0,-1.7848303152666305,3.98535828943083 -263,19.0,18.0,-5.88235294117647,11.76470588235294 -263,19.0,19.0,7.6671832564431,-15.75006417178377 -263,20.0,9.0,-5.101853820159654,10.98071411292983 -263,20.0,20.0,21.876495189895888,-45.10843276170355 -263,20.0,21.0,-16.774641369736234,34.127718648773715 -263,21.0,9.0,-2.619319553382597,5.400770303329455 -263,21.0,20.0,-16.774641369736234,34.127718648773715 -263,21.0,21.0,21.93449907537439,-43.48289181517921 -263,21.0,23.0,-2.5405381522555563,3.95440286307604 -263,22.0,14.0,-1.9683489489016612,3.976064876781356 -263,22.0,22.0,3.429754555384988,-6.965303617315433 -263,22.0,23.0,-1.4614056064833263,2.989238740534077 -263,23.0,21.0,-2.5405381522555563,3.95440286307604 -263,23.0,22.0,-1.4614056064833263,2.989238740534077 -263,23.0,23.0,5.311836702613133,-9.188263657315172 -263,23.0,24.0,-1.3098929438742493,2.287622053705056 -263,24.0,23.0,-1.3098929438742493,2.287622053705056 -263,24.0,24.0,4.495715080321987,-7.864978761969621 -263,24.0,25.0,-1.2165301194494855,1.8171440463475024 -263,24.0,26.0,-1.9692920169982515,3.760212661917064 -263,25.0,24.0,-1.2165301194494855,1.8171440463475024 -263,25.0,25.0,1.2165301194494855,-1.8171440463475024 -263,26.0,24.0,-1.9692920169982515,3.760212661917064 -263,26.0,26.0,3.652281470778589,-9.46044252232512 -263,26.0,27.0,0.0,2.608731947574922 -263,26.0,28.0,-0.99553355095268,1.881005840357816 -263,26.0,29.0,-0.6874559028276572,1.293971494797717 -263,27.0,5.0,-4.362844058012917,15.463571542897856 -263,27.0,7.0,-1.4439790613954469,4.540814658476248 -263,27.0,26.0,0.0,2.608731947574922 -263,27.0,27.0,5.806823119408364,-22.67145722159613 -263,28.0,26.0,-0.99553355095268,1.881005840357816 -263,28.0,28.0,1.9075867579849564,-3.604364401207048 -263,28.0,29.0,-0.9120532070322764,1.7233585608492326 -263,29.0,26.0,-0.6874559028276572,1.293971494797717 -263,29.0,28.0,-0.9120532070322764,1.7233585608492326 -263,29.0,29.0,1.5995091098599337,-3.0173300556469496 -264,0.0,0.0,6.765516048652632,-21.23160167089863 -264,0.0,1.0,-5.224646179885656,15.646726840803398 -264,0.0,2.0,-1.5408698687669766,5.631674830095234 -264,1.0,0.0,-5.224646179885656,15.646726840803398 -264,1.0,1.0,9.75228216552403,-30.648662892676068 -264,1.0,3.0,-1.7055303166990268,5.1973792282565086 -264,1.0,4.0,-1.1359607881738778,4.772479328281356 -264,1.0,5.0,-1.6861448807654689,5.116477495334806 -264,2.0,0.0,-1.5408698687669766,5.631674830095234 -264,2.0,2.0,9.736318911079088,-29.13794745915803 -264,2.0,3.0,-8.19544904231211,23.5308726290628 -264,3.0,1.0,-1.7055303166990268,5.1973792282565086 -264,3.0,2.0,-8.19544904231211,23.5308726290628 -264,3.0,3.0,16.314103089185693,-55.509410535254254 -264,3.0,5.0,-6.413123730174556,22.31120356548123 -264,3.0,11.0,0.0,4.191255364806866 -264,4.0,1.0,-1.1359607881738778,4.772479328281356 -264,4.0,4.0,4.089980824135861,-12.190647245055052 -264,4.0,6.0,-2.954020035961983,7.449267916773697 -264,5.0,1.0,-1.6861448807654689,5.116477495334806 -264,5.0,3.0,-6.413123730174556,22.31120356548123 -264,5.0,5.0,22.341631269034565,-82.8291478657789 -264,5.0,6.0,-3.590210423980992,11.02611441072814 -264,5.0,7.0,-6.289308176100628,22.0125786163522 -264,5.0,8.0,0.0,4.915840805411357 -264,5.0,9.0,0.0,1.8561002591115965 -264,5.0,27.0,-4.362844058012917,15.463571542897856 -264,6.0,4.0,-2.954020035961983,7.449267916773697 -264,6.0,5.0,-3.590210423980992,11.02611441072814 -264,6.0,6.0,6.544230459942975,-18.45668232750184 -264,7.0,5.0,-6.289308176100628,22.0125786163522 -264,7.0,7.0,7.733287237496075,-26.527493274828448 -264,7.0,27.0,-1.4439790613954469,4.540814658476248 -264,8.0,5.0,0.0,4.915840805411357 -264,8.0,8.0,0.0,-18.706293706293707 -264,8.0,9.0,0.0,9.090909090909092 -264,8.0,10.0,0.0,4.807692307692308 -264,9.0,5.0,0.0,1.8561002591115965 -264,9.0,8.0,0.0,9.090909090909092 -264,9.0,9.0,13.462042814524237,-41.3837606675224 -264,9.0,16.0,-3.956039125715353,10.317447719844054 -264,9.0,19.0,-1.7848303152666305,3.98535828943083 -264,9.0,20.0,-5.101853820159654,10.98071411292983 -264,9.0,21.0,-2.619319553382597,5.400770303329455 -264,10.0,8.0,0.0,4.807692307692308 -264,10.0,10.0,0.0,-4.807692307692308 -264,11.0,3.0,0.0,4.191255364806866 -264,11.0,11.0,6.573961583776156,-24.424167659260668 -264,11.0,12.0,0.0,7.142857142857143 -264,11.0,13.0,-1.5265676088395577,3.1734252729654173 -264,11.0,14.0,-3.0953961826564296,6.097275864326261 -264,11.0,15.0,-1.9519977922801688,4.104359379111847 -264,12.0,11.0,0.0,7.142857142857143 -264,12.0,12.0,0.0,-7.142857142857143 -264,13.0,11.0,-1.5265676088395577,3.1734252729654173 -264,13.0,13.0,4.01751987283902,-5.424299332335067 -264,13.0,14.0,-2.4909522639994623,2.250874059369649 -264,14.0,11.0,-3.0953961826564296,6.097275864326261 -264,14.0,13.0,-2.4909522639994623,2.250874059369649 -264,14.0,14.0,9.365498545964757,-16.01163373210796 -264,14.0,17.0,-1.8108011504072024,3.687418931630696 -264,14.0,22.0,-1.9683489489016612,3.976064876781356 -264,15.0,11.0,-1.9519977922801688,4.104359379111847 -264,15.0,15.0,3.271064728633931,-8.94513365126506 -264,15.0,16.0,-1.3190669363537617,4.8407742721532125 -264,16.0,9.0,-3.956039125715353,10.317447719844054 -264,16.0,15.0,-1.3190669363537617,4.8407742721532125 -264,16.0,16.0,5.275106062069114,-15.158221991997266 -264,17.0,14.0,-1.8108011504072024,3.687418931630696 -264,17.0,17.0,4.886487584415919,-9.906177730909668 -264,17.0,18.0,-3.0756864340087167,6.218758799278971 -264,18.0,17.0,-3.0756864340087167,6.218758799278971 -264,18.0,18.0,8.958039375185187,-17.98346468163191 -264,18.0,19.0,-5.88235294117647,11.76470588235294 -264,19.0,9.0,-1.7848303152666305,3.98535828943083 -264,19.0,18.0,-5.88235294117647,11.76470588235294 -264,19.0,19.0,7.6671832564431,-15.75006417178377 -264,20.0,9.0,-5.101853820159654,10.98071411292983 -264,20.0,20.0,21.876495189895888,-45.10843276170355 -264,20.0,21.0,-16.774641369736234,34.127718648773715 -264,21.0,9.0,-2.619319553382597,5.400770303329455 -264,21.0,20.0,-16.774641369736234,34.127718648773715 -264,21.0,21.0,21.93449907537439,-43.48289181517921 -264,21.0,23.0,-2.5405381522555563,3.95440286307604 -264,22.0,14.0,-1.9683489489016612,3.976064876781356 -264,22.0,22.0,3.429754555384988,-6.965303617315433 -264,22.0,23.0,-1.4614056064833263,2.989238740534077 -264,23.0,21.0,-2.5405381522555563,3.95440286307604 -264,23.0,22.0,-1.4614056064833263,2.989238740534077 -264,23.0,23.0,5.311836702613133,-9.188263657315172 -264,23.0,24.0,-1.3098929438742493,2.287622053705056 -264,24.0,23.0,-1.3098929438742493,2.287622053705056 -264,24.0,24.0,4.495715080321987,-7.864978761969621 -264,24.0,25.0,-1.2165301194494855,1.8171440463475024 -264,24.0,26.0,-1.9692920169982515,3.760212661917064 -264,25.0,24.0,-1.2165301194494855,1.8171440463475024 -264,25.0,25.0,1.2165301194494855,-1.8171440463475024 -264,26.0,24.0,-1.9692920169982515,3.760212661917064 -264,26.0,26.0,3.652281470778589,-9.46044252232512 -264,26.0,27.0,0.0,2.608731947574922 -264,26.0,28.0,-0.99553355095268,1.881005840357816 -264,26.0,29.0,-0.6874559028276572,1.293971494797717 -264,27.0,5.0,-4.362844058012917,15.463571542897856 -264,27.0,7.0,-1.4439790613954469,4.540814658476248 -264,27.0,26.0,0.0,2.608731947574922 -264,27.0,27.0,5.806823119408364,-22.67145722159613 -264,28.0,26.0,-0.99553355095268,1.881005840357816 -264,28.0,28.0,1.9075867579849564,-3.604364401207048 -264,28.0,29.0,-0.9120532070322764,1.7233585608492326 -264,29.0,26.0,-0.6874559028276572,1.293971494797717 -264,29.0,28.0,-0.9120532070322764,1.7233585608492326 -264,29.0,29.0,1.5995091098599337,-3.0173300556469496 -265,0.0,0.0,6.765516048652632,-21.23160167089863 -265,0.0,1.0,-5.224646179885656,15.646726840803398 -265,0.0,2.0,-1.5408698687669766,5.631674830095234 -265,1.0,0.0,-5.224646179885656,15.646726840803398 -265,1.0,1.0,8.046751848825002,-25.46968366441956 -265,1.0,4.0,-1.1359607881738778,4.772479328281356 -265,1.0,5.0,-1.6861448807654689,5.116477495334806 -265,2.0,0.0,-1.5408698687669766,5.631674830095234 -265,2.0,2.0,1.5408698687669766,-5.611274830095233 -265,3.0,3.0,6.413123730174556,-26.803758677934947 -265,3.0,5.0,-6.413123730174556,22.31120356548123 -265,3.0,11.0,0.0,4.191255364806866 -265,4.0,1.0,-1.1359607881738778,4.772479328281356 -265,4.0,4.0,1.1359607881738778,-4.751579328281355 -265,5.0,1.0,-1.6861448807654689,5.116477495334806 -265,5.0,3.0,-6.413123730174556,22.31120356548123 -265,5.0,5.0,22.341631269034565,-82.8291478657789 -265,5.0,6.0,-3.590210423980992,11.02611441072814 -265,5.0,7.0,-6.289308176100628,22.0125786163522 -265,5.0,8.0,0.0,4.915840805411357 -265,5.0,9.0,0.0,1.8561002591115965 -265,5.0,27.0,-4.362844058012917,15.463571542897856 -265,6.0,5.0,-3.590210423980992,11.02611441072814 -265,6.0,6.0,3.590210423980992,-11.01761441072814 -265,7.0,5.0,-6.289308176100628,22.0125786163522 -265,7.0,7.0,7.733287237496075,-26.527493274828448 -265,7.0,27.0,-1.4439790613954469,4.540814658476248 -265,8.0,5.0,0.0,4.915840805411357 -265,8.0,8.0,0.0,-18.706293706293707 -265,8.0,9.0,0.0,9.090909090909092 -265,8.0,10.0,0.0,4.807692307692308 -265,9.0,5.0,0.0,1.8561002591115965 -265,9.0,8.0,0.0,9.090909090909092 -265,9.0,9.0,13.462042814524237,-41.3837606675224 -265,9.0,16.0,-3.956039125715353,10.317447719844054 -265,9.0,19.0,-1.7848303152666305,3.98535828943083 -265,9.0,20.0,-5.101853820159654,10.98071411292983 -265,9.0,21.0,-2.619319553382597,5.400770303329455 -265,10.0,8.0,0.0,4.807692307692308 -265,10.0,10.0,0.0,-4.807692307692308 -265,11.0,3.0,0.0,4.191255364806866 -265,11.0,11.0,6.573961583776156,-24.424167659260668 -265,11.0,12.0,0.0,7.142857142857143 -265,11.0,13.0,-1.5265676088395577,3.1734252729654173 -265,11.0,14.0,-3.0953961826564296,6.097275864326261 -265,11.0,15.0,-1.9519977922801688,4.104359379111847 -265,12.0,11.0,0.0,7.142857142857143 -265,12.0,12.0,0.0,-7.142857142857143 -265,13.0,11.0,-1.5265676088395577,3.1734252729654173 -265,13.0,13.0,4.01751987283902,-5.424299332335067 -265,13.0,14.0,-2.4909522639994623,2.250874059369649 -265,14.0,11.0,-3.0953961826564296,6.097275864326261 -265,14.0,13.0,-2.4909522639994623,2.250874059369649 -265,14.0,14.0,7.554697395557554,-12.324214800477266 -265,14.0,22.0,-1.9683489489016612,3.976064876781356 -265,15.0,11.0,-1.9519977922801688,4.104359379111847 -265,15.0,15.0,3.271064728633931,-8.94513365126506 -265,15.0,16.0,-1.3190669363537617,4.8407742721532125 -265,16.0,9.0,-3.956039125715353,10.317447719844054 -265,16.0,15.0,-1.3190669363537617,4.8407742721532125 -265,16.0,16.0,5.275106062069114,-15.158221991997266 -265,17.0,17.0,3.0756864340087167,-6.218758799278971 -265,17.0,18.0,-3.0756864340087167,6.218758799278971 -265,18.0,17.0,-3.0756864340087167,6.218758799278971 -265,18.0,18.0,8.958039375185187,-17.98346468163191 -265,18.0,19.0,-5.88235294117647,11.76470588235294 -265,19.0,9.0,-1.7848303152666305,3.98535828943083 -265,19.0,18.0,-5.88235294117647,11.76470588235294 -265,19.0,19.0,7.6671832564431,-15.75006417178377 -265,20.0,9.0,-5.101853820159654,10.98071411292983 -265,20.0,20.0,21.876495189895888,-45.10843276170355 -265,20.0,21.0,-16.774641369736234,34.127718648773715 -265,21.0,9.0,-2.619319553382597,5.400770303329455 -265,21.0,20.0,-16.774641369736234,34.127718648773715 -265,21.0,21.0,21.93449907537439,-43.48289181517921 -265,21.0,23.0,-2.5405381522555563,3.95440286307604 -265,22.0,14.0,-1.9683489489016612,3.976064876781356 -265,22.0,22.0,3.429754555384988,-6.965303617315433 -265,22.0,23.0,-1.4614056064833263,2.989238740534077 -265,23.0,21.0,-2.5405381522555563,3.95440286307604 -265,23.0,22.0,-1.4614056064833263,2.989238740534077 -265,23.0,23.0,5.311836702613133,-9.188263657315172 -265,23.0,24.0,-1.3098929438742493,2.287622053705056 -265,24.0,23.0,-1.3098929438742493,2.287622053705056 -265,24.0,24.0,4.495715080321987,-7.864978761969621 -265,24.0,25.0,-1.2165301194494855,1.8171440463475024 -265,24.0,26.0,-1.9692920169982515,3.760212661917064 -265,25.0,24.0,-1.2165301194494855,1.8171440463475024 -265,25.0,25.0,1.2165301194494855,-1.8171440463475024 -265,26.0,24.0,-1.9692920169982515,3.760212661917064 -265,26.0,26.0,3.652281470778589,-9.46044252232512 -265,26.0,27.0,0.0,2.608731947574922 -265,26.0,28.0,-0.99553355095268,1.881005840357816 -265,26.0,29.0,-0.6874559028276572,1.293971494797717 -265,27.0,5.0,-4.362844058012917,15.463571542897856 -265,27.0,7.0,-1.4439790613954469,4.540814658476248 -265,27.0,26.0,0.0,2.608731947574922 -265,27.0,27.0,5.806823119408364,-22.67145722159613 -265,28.0,26.0,-0.99553355095268,1.881005840357816 -265,28.0,28.0,1.9075867579849564,-3.604364401207048 -265,28.0,29.0,-0.9120532070322764,1.7233585608492326 -265,29.0,26.0,-0.6874559028276572,1.293971494797717 -265,29.0,28.0,-0.9120532070322764,1.7233585608492326 -265,29.0,29.0,1.5995091098599337,-3.0173300556469496 -266,0.0,0.0,6.765516048652632,-21.23160167089863 -266,0.0,1.0,-5.224646179885656,15.646726840803398 -266,0.0,2.0,-1.5408698687669766,5.631674830095234 -266,1.0,0.0,-5.224646179885656,15.646726840803398 -266,1.0,1.0,9.75228216552403,-30.648662892676068 -266,1.0,3.0,-1.7055303166990268,5.1973792282565086 -266,1.0,4.0,-1.1359607881738778,4.772479328281356 -266,1.0,5.0,-1.6861448807654689,5.116477495334806 -266,2.0,0.0,-1.5408698687669766,5.631674830095234 -266,2.0,2.0,9.736318911079088,-29.13794745915803 -266,2.0,3.0,-8.19544904231211,23.5308726290628 -266,3.0,1.0,-1.7055303166990268,5.1973792282565086 -266,3.0,2.0,-8.19544904231211,23.5308726290628 -266,3.0,3.0,16.314103089185693,-55.509410535254254 -266,3.0,5.0,-6.413123730174556,22.31120356548123 -266,3.0,11.0,0.0,4.191255364806866 -266,4.0,1.0,-1.1359607881738778,4.772479328281356 -266,4.0,4.0,4.089980824135861,-12.190647245055052 -266,4.0,6.0,-2.954020035961983,7.449267916773697 -266,5.0,1.0,-1.6861448807654689,5.116477495334806 -266,5.0,3.0,-6.413123730174556,22.31120356548123 -266,5.0,5.0,22.341631269034565,-82.8291478657789 -266,5.0,6.0,-3.590210423980992,11.02611441072814 -266,5.0,7.0,-6.289308176100628,22.0125786163522 -266,5.0,8.0,0.0,4.915840805411357 -266,5.0,9.0,0.0,1.8561002591115965 -266,5.0,27.0,-4.362844058012917,15.463571542897856 -266,6.0,4.0,-2.954020035961983,7.449267916773697 -266,6.0,5.0,-3.590210423980992,11.02611441072814 -266,6.0,6.0,6.544230459942975,-18.45668232750184 -266,7.0,5.0,-6.289308176100628,22.0125786163522 -266,7.0,7.0,7.733287237496075,-26.527493274828448 -266,7.0,27.0,-1.4439790613954469,4.540814658476248 -266,8.0,5.0,0.0,4.915840805411357 -266,8.0,8.0,0.0,-18.706293706293707 -266,8.0,9.0,0.0,9.090909090909092 -266,8.0,10.0,0.0,4.807692307692308 -266,9.0,5.0,0.0,1.8561002591115965 -266,9.0,8.0,0.0,9.090909090909092 -266,9.0,9.0,13.462042814524237,-41.3837606675224 -266,9.0,16.0,-3.956039125715353,10.317447719844054 -266,9.0,19.0,-1.7848303152666305,3.98535828943083 -266,9.0,20.0,-5.101853820159654,10.98071411292983 -266,9.0,21.0,-2.619319553382597,5.400770303329455 -266,10.0,8.0,0.0,4.807692307692308 -266,10.0,10.0,0.0,-4.807692307692308 -266,11.0,3.0,0.0,4.191255364806866 -266,11.0,11.0,6.573961583776156,-24.424167659260668 -266,11.0,12.0,0.0,7.142857142857143 -266,11.0,13.0,-1.5265676088395577,3.1734252729654173 -266,11.0,14.0,-3.0953961826564296,6.097275864326261 -266,11.0,15.0,-1.9519977922801688,4.104359379111847 -266,12.0,11.0,0.0,7.142857142857143 -266,12.0,12.0,0.0,-7.142857142857143 -266,13.0,11.0,-1.5265676088395577,3.1734252729654173 -266,13.0,13.0,4.01751987283902,-5.424299332335067 -266,13.0,14.0,-2.4909522639994623,2.250874059369649 -266,14.0,11.0,-3.0953961826564296,6.097275864326261 -266,14.0,13.0,-2.4909522639994623,2.250874059369649 -266,14.0,14.0,9.365498545964757,-16.01163373210796 -266,14.0,17.0,-1.8108011504072024,3.687418931630696 -266,14.0,22.0,-1.9683489489016612,3.976064876781356 -266,15.0,11.0,-1.9519977922801688,4.104359379111847 -266,15.0,15.0,3.271064728633931,-8.94513365126506 -266,15.0,16.0,-1.3190669363537617,4.8407742721532125 -266,16.0,9.0,-3.956039125715353,10.317447719844054 -266,16.0,15.0,-1.3190669363537617,4.8407742721532125 -266,16.0,16.0,5.275106062069114,-15.158221991997266 -266,17.0,14.0,-1.8108011504072024,3.687418931630696 -266,17.0,17.0,4.886487584415919,-9.906177730909668 -266,17.0,18.0,-3.0756864340087167,6.218758799278971 -266,18.0,17.0,-3.0756864340087167,6.218758799278971 -266,18.0,18.0,8.958039375185187,-17.98346468163191 -266,18.0,19.0,-5.88235294117647,11.76470588235294 -266,19.0,9.0,-1.7848303152666305,3.98535828943083 -266,19.0,18.0,-5.88235294117647,11.76470588235294 -266,19.0,19.0,7.6671832564431,-15.75006417178377 -266,20.0,9.0,-5.101853820159654,10.98071411292983 -266,20.0,20.0,21.876495189895888,-45.10843276170355 -266,20.0,21.0,-16.774641369736234,34.127718648773715 -266,21.0,9.0,-2.619319553382597,5.400770303329455 -266,21.0,20.0,-16.774641369736234,34.127718648773715 -266,21.0,21.0,21.93449907537439,-43.48289181517921 -266,21.0,23.0,-2.5405381522555563,3.95440286307604 -266,22.0,14.0,-1.9683489489016612,3.976064876781356 -266,22.0,22.0,3.429754555384988,-6.965303617315433 -266,22.0,23.0,-1.4614056064833263,2.989238740534077 -266,23.0,21.0,-2.5405381522555563,3.95440286307604 -266,23.0,22.0,-1.4614056064833263,2.989238740534077 -266,23.0,23.0,5.311836702613133,-9.188263657315172 -266,23.0,24.0,-1.3098929438742493,2.287622053705056 -266,24.0,23.0,-1.3098929438742493,2.287622053705056 -266,24.0,24.0,4.495715080321987,-7.864978761969621 -266,24.0,25.0,-1.2165301194494855,1.8171440463475024 -266,24.0,26.0,-1.9692920169982515,3.760212661917064 -266,25.0,24.0,-1.2165301194494855,1.8171440463475024 -266,25.0,25.0,1.2165301194494855,-1.8171440463475024 -266,26.0,24.0,-1.9692920169982515,3.760212661917064 -266,26.0,26.0,3.652281470778589,-9.46044252232512 -266,26.0,27.0,0.0,2.608731947574922 -266,26.0,28.0,-0.99553355095268,1.881005840357816 -266,26.0,29.0,-0.6874559028276572,1.293971494797717 -266,27.0,5.0,-4.362844058012917,15.463571542897856 -266,27.0,7.0,-1.4439790613954469,4.540814658476248 -266,27.0,26.0,0.0,2.608731947574922 -266,27.0,27.0,5.806823119408364,-22.67145722159613 -266,28.0,26.0,-0.99553355095268,1.881005840357816 -266,28.0,28.0,1.9075867579849564,-3.604364401207048 -266,28.0,29.0,-0.9120532070322764,1.7233585608492326 -266,29.0,26.0,-0.6874559028276572,1.293971494797717 -266,29.0,28.0,-0.9120532070322764,1.7233585608492326 -266,29.0,29.0,1.5995091098599337,-3.0173300556469496 -267,0.0,0.0,6.765516048652632,-21.23160167089863 -267,0.0,1.0,-5.224646179885656,15.646726840803398 -267,0.0,2.0,-1.5408698687669766,5.631674830095234 -267,1.0,0.0,-5.224646179885656,15.646726840803398 -267,1.0,1.0,9.75228216552403,-30.648662892676068 -267,1.0,3.0,-1.7055303166990268,5.1973792282565086 -267,1.0,4.0,-1.1359607881738778,4.772479328281356 -267,1.0,5.0,-1.6861448807654689,5.116477495334806 -267,2.0,0.0,-1.5408698687669766,5.631674830095234 -267,2.0,2.0,9.736318911079088,-29.13794745915803 -267,2.0,3.0,-8.19544904231211,23.5308726290628 -267,3.0,1.0,-1.7055303166990268,5.1973792282565086 -267,3.0,2.0,-8.19544904231211,23.5308726290628 -267,3.0,3.0,16.314103089185693,-55.509410535254254 -267,3.0,5.0,-6.413123730174556,22.31120356548123 -267,3.0,11.0,0.0,4.191255364806866 -267,4.0,1.0,-1.1359607881738778,4.772479328281356 -267,4.0,4.0,1.1359607881738778,-4.751579328281355 -267,5.0,1.0,-1.6861448807654689,5.116477495334806 -267,5.0,3.0,-6.413123730174556,22.31120356548123 -267,5.0,5.0,16.052323092933932,-60.8210692494267 -267,5.0,6.0,-3.590210423980992,11.02611441072814 -267,5.0,8.0,0.0,4.915840805411357 -267,5.0,9.0,0.0,1.8561002591115965 -267,5.0,27.0,-4.362844058012917,15.463571542897856 -267,6.0,5.0,-3.590210423980992,11.02611441072814 -267,6.0,6.0,3.590210423980992,-11.01761441072814 -267,7.0,7.0,1.4439790613954469,-4.519414658476248 -267,7.0,27.0,-1.4439790613954469,4.540814658476248 -267,8.0,5.0,0.0,4.915840805411357 -267,8.0,8.0,0.0,-18.706293706293707 -267,8.0,9.0,0.0,9.090909090909092 -267,8.0,10.0,0.0,4.807692307692308 -267,9.0,5.0,0.0,1.8561002591115965 -267,9.0,8.0,0.0,9.090909090909092 -267,9.0,9.0,11.677212499257603,-37.39840237809157 -267,9.0,16.0,-3.956039125715353,10.317447719844054 -267,9.0,20.0,-5.101853820159654,10.98071411292983 -267,9.0,21.0,-2.619319553382597,5.400770303329455 -267,10.0,8.0,0.0,4.807692307692308 -267,10.0,10.0,0.0,-4.807692307692308 -267,11.0,3.0,0.0,4.191255364806866 -267,11.0,11.0,6.573961583776156,-24.424167659260668 -267,11.0,12.0,0.0,7.142857142857143 -267,11.0,13.0,-1.5265676088395577,3.1734252729654173 -267,11.0,14.0,-3.0953961826564296,6.097275864326261 -267,11.0,15.0,-1.9519977922801688,4.104359379111847 -267,12.0,11.0,0.0,7.142857142857143 -267,12.0,12.0,0.0,-7.142857142857143 -267,13.0,11.0,-1.5265676088395577,3.1734252729654173 -267,13.0,13.0,4.01751987283902,-5.424299332335067 -267,13.0,14.0,-2.4909522639994623,2.250874059369649 -267,14.0,11.0,-3.0953961826564296,6.097275864326261 -267,14.0,13.0,-2.4909522639994623,2.250874059369649 -267,14.0,14.0,9.365498545964757,-16.01163373210796 -267,14.0,17.0,-1.8108011504072024,3.687418931630696 -267,14.0,22.0,-1.9683489489016612,3.976064876781356 -267,15.0,11.0,-1.9519977922801688,4.104359379111847 -267,15.0,15.0,3.271064728633931,-8.94513365126506 -267,15.0,16.0,-1.3190669363537617,4.8407742721532125 -267,16.0,9.0,-3.956039125715353,10.317447719844054 -267,16.0,15.0,-1.3190669363537617,4.8407742721532125 -267,16.0,16.0,5.275106062069114,-15.158221991997266 -267,17.0,14.0,-1.8108011504072024,3.687418931630696 -267,17.0,17.0,4.886487584415919,-9.906177730909668 -267,17.0,18.0,-3.0756864340087167,6.218758799278971 -267,18.0,17.0,-3.0756864340087167,6.218758799278971 -267,18.0,18.0,8.958039375185187,-17.98346468163191 -267,18.0,19.0,-5.88235294117647,11.76470588235294 -267,19.0,18.0,-5.88235294117647,11.76470588235294 -267,19.0,19.0,5.88235294117647,-11.76470588235294 -267,20.0,9.0,-5.101853820159654,10.98071411292983 -267,20.0,20.0,21.876495189895888,-45.10843276170355 -267,20.0,21.0,-16.774641369736234,34.127718648773715 -267,21.0,9.0,-2.619319553382597,5.400770303329455 -267,21.0,20.0,-16.774641369736234,34.127718648773715 -267,21.0,21.0,21.93449907537439,-43.48289181517921 -267,21.0,23.0,-2.5405381522555563,3.95440286307604 -267,22.0,14.0,-1.9683489489016612,3.976064876781356 -267,22.0,22.0,3.429754555384988,-6.965303617315433 -267,22.0,23.0,-1.4614056064833263,2.989238740534077 -267,23.0,21.0,-2.5405381522555563,3.95440286307604 -267,23.0,22.0,-1.4614056064833263,2.989238740534077 -267,23.0,23.0,5.311836702613133,-9.188263657315172 -267,23.0,24.0,-1.3098929438742493,2.287622053705056 -267,24.0,23.0,-1.3098929438742493,2.287622053705056 -267,24.0,24.0,4.495715080321987,-7.864978761969621 -267,24.0,25.0,-1.2165301194494855,1.8171440463475024 -267,24.0,26.0,-1.9692920169982515,3.760212661917064 -267,25.0,24.0,-1.2165301194494855,1.8171440463475024 -267,25.0,25.0,1.2165301194494855,-1.8171440463475024 -267,26.0,24.0,-1.9692920169982515,3.760212661917064 -267,26.0,26.0,3.652281470778589,-9.46044252232512 -267,26.0,27.0,0.0,2.608731947574922 -267,26.0,28.0,-0.99553355095268,1.881005840357816 -267,26.0,29.0,-0.6874559028276572,1.293971494797717 -267,27.0,5.0,-4.362844058012917,15.463571542897856 -267,27.0,7.0,-1.4439790613954469,4.540814658476248 -267,27.0,26.0,0.0,2.608731947574922 -267,27.0,27.0,5.806823119408364,-22.67145722159613 -267,28.0,26.0,-0.99553355095268,1.881005840357816 -267,28.0,28.0,1.9075867579849564,-3.604364401207048 -267,28.0,29.0,-0.9120532070322764,1.7233585608492326 -267,29.0,26.0,-0.6874559028276572,1.293971494797717 -267,29.0,28.0,-0.9120532070322764,1.7233585608492326 -267,29.0,29.0,1.5995091098599337,-3.0173300556469496 -268,0.0,0.0,1.5408698687669766,-5.611274830095233 -268,0.0,2.0,-1.5408698687669766,5.631674830095234 -268,1.0,1.0,4.527635985638374,-15.028336051872673 -268,1.0,3.0,-1.7055303166990268,5.1973792282565086 -268,1.0,4.0,-1.1359607881738778,4.772479328281356 -268,1.0,5.0,-1.6861448807654689,5.116477495334806 -268,2.0,0.0,-1.5408698687669766,5.631674830095234 -268,2.0,2.0,9.736318911079088,-29.13794745915803 -268,2.0,3.0,-8.19544904231211,23.5308726290628 -268,3.0,1.0,-1.7055303166990268,5.1973792282565086 -268,3.0,2.0,-8.19544904231211,23.5308726290628 -268,3.0,3.0,16.314103089185693,-55.509410535254254 -268,3.0,5.0,-6.413123730174556,22.31120356548123 -268,3.0,11.0,0.0,4.191255364806866 -268,4.0,1.0,-1.1359607881738778,4.772479328281356 -268,4.0,4.0,4.089980824135861,-12.190647245055052 -268,4.0,6.0,-2.954020035961983,7.449267916773697 -268,5.0,1.0,-1.6861448807654689,5.116477495334806 -268,5.0,3.0,-6.413123730174556,22.31120356548123 -268,5.0,5.0,18.75142084505357,-69.89605331148876 -268,5.0,7.0,-6.289308176100628,22.0125786163522 -268,5.0,8.0,0.0,4.915840805411357 -268,5.0,27.0,-4.362844058012917,15.463571542897856 -268,6.0,4.0,-2.954020035961983,7.449267916773697 -268,6.0,6.0,2.954020035961983,-7.439067916773697 -268,7.0,5.0,-6.289308176100628,22.0125786163522 -268,7.0,7.0,7.733287237496075,-26.527493274828448 -268,7.0,27.0,-1.4439790613954469,4.540814658476248 -268,8.0,5.0,0.0,4.915840805411357 -268,8.0,8.0,0.0,-18.706293706293707 -268,8.0,9.0,0.0,9.090909090909092 -268,8.0,10.0,0.0,4.807692307692308 -268,9.0,8.0,0.0,9.090909090909092 -268,9.0,9.0,13.462042814524237,-39.58519951644326 -268,9.0,16.0,-3.956039125715353,10.317447719844054 -268,9.0,19.0,-1.7848303152666305,3.98535828943083 -268,9.0,20.0,-5.101853820159654,10.98071411292983 -268,9.0,21.0,-2.619319553382597,5.400770303329455 -268,10.0,8.0,0.0,4.807692307692308 -268,10.0,10.0,0.0,-4.807692307692308 -268,11.0,3.0,0.0,4.191255364806866 -268,11.0,11.0,6.573961583776156,-24.424167659260668 -268,11.0,12.0,0.0,7.142857142857143 -268,11.0,13.0,-1.5265676088395577,3.1734252729654173 -268,11.0,14.0,-3.0953961826564296,6.097275864326261 -268,11.0,15.0,-1.9519977922801688,4.104359379111847 -268,12.0,11.0,0.0,7.142857142857143 -268,12.0,12.0,0.0,-7.142857142857143 -268,13.0,11.0,-1.5265676088395577,3.1734252729654173 -268,13.0,13.0,4.01751987283902,-5.424299332335067 -268,13.0,14.0,-2.4909522639994623,2.250874059369649 -268,14.0,11.0,-3.0953961826564296,6.097275864326261 -268,14.0,13.0,-2.4909522639994623,2.250874059369649 -268,14.0,14.0,7.554697395557554,-12.324214800477266 -268,14.0,22.0,-1.9683489489016612,3.976064876781356 -268,15.0,11.0,-1.9519977922801688,4.104359379111847 -268,15.0,15.0,3.271064728633931,-8.94513365126506 -268,15.0,16.0,-1.3190669363537617,4.8407742721532125 -268,16.0,9.0,-3.956039125715353,10.317447719844054 -268,16.0,15.0,-1.3190669363537617,4.8407742721532125 -268,16.0,16.0,5.275106062069114,-15.158221991997266 -268,17.0,17.0,3.0756864340087167,-6.218758799278971 -268,17.0,18.0,-3.0756864340087167,6.218758799278971 -268,18.0,17.0,-3.0756864340087167,6.218758799278971 -268,18.0,18.0,8.958039375185187,-17.98346468163191 -268,18.0,19.0,-5.88235294117647,11.76470588235294 -268,19.0,9.0,-1.7848303152666305,3.98535828943083 -268,19.0,18.0,-5.88235294117647,11.76470588235294 -268,19.0,19.0,7.6671832564431,-15.75006417178377 -268,20.0,9.0,-5.101853820159654,10.98071411292983 -268,20.0,20.0,21.876495189895888,-45.10843276170355 -268,20.0,21.0,-16.774641369736234,34.127718648773715 -268,21.0,9.0,-2.619319553382597,5.400770303329455 -268,21.0,20.0,-16.774641369736234,34.127718648773715 -268,21.0,21.0,21.93449907537439,-43.48289181517921 -268,21.0,23.0,-2.5405381522555563,3.95440286307604 -268,22.0,14.0,-1.9683489489016612,3.976064876781356 -268,22.0,22.0,3.429754555384988,-6.965303617315433 -268,22.0,23.0,-1.4614056064833263,2.989238740534077 -268,23.0,21.0,-2.5405381522555563,3.95440286307604 -268,23.0,22.0,-1.4614056064833263,2.989238740534077 -268,23.0,23.0,5.311836702613133,-9.188263657315172 -268,23.0,24.0,-1.3098929438742493,2.287622053705056 -268,24.0,23.0,-1.3098929438742493,2.287622053705056 -268,24.0,24.0,4.495715080321987,-7.864978761969621 -268,24.0,25.0,-1.2165301194494855,1.8171440463475024 -268,24.0,26.0,-1.9692920169982515,3.760212661917064 -268,25.0,24.0,-1.2165301194494855,1.8171440463475024 -268,25.0,25.0,1.2165301194494855,-1.8171440463475024 -268,26.0,24.0,-1.9692920169982515,3.760212661917064 -268,26.0,26.0,3.652281470778589,-9.46044252232512 -268,26.0,27.0,0.0,2.608731947574922 -268,26.0,28.0,-0.99553355095268,1.881005840357816 -268,26.0,29.0,-0.6874559028276572,1.293971494797717 -268,27.0,5.0,-4.362844058012917,15.463571542897856 -268,27.0,7.0,-1.4439790613954469,4.540814658476248 -268,27.0,26.0,0.0,2.608731947574922 -268,27.0,27.0,5.806823119408364,-22.67145722159613 -268,28.0,26.0,-0.99553355095268,1.881005840357816 -268,28.0,28.0,1.9075867579849564,-3.604364401207048 -268,28.0,29.0,-0.9120532070322764,1.7233585608492326 -268,29.0,26.0,-0.6874559028276572,1.293971494797717 -268,29.0,28.0,-0.9120532070322764,1.7233585608492326 -268,29.0,29.0,1.5995091098599337,-3.0173300556469496 -269,0.0,0.0,6.765516048652632,-21.23160167089863 -269,0.0,1.0,-5.224646179885656,15.646726840803398 -269,0.0,2.0,-1.5408698687669766,5.631674830095234 -269,1.0,0.0,-5.224646179885656,15.646726840803398 -269,1.0,1.0,9.75228216552403,-30.648662892676068 -269,1.0,3.0,-1.7055303166990268,5.1973792282565086 -269,1.0,4.0,-1.1359607881738778,4.772479328281356 -269,1.0,5.0,-1.6861448807654689,5.116477495334806 -269,2.0,0.0,-1.5408698687669766,5.631674830095234 -269,2.0,2.0,9.736318911079088,-29.13794745915803 -269,2.0,3.0,-8.19544904231211,23.5308726290628 -269,3.0,1.0,-1.7055303166990268,5.1973792282565086 -269,3.0,2.0,-8.19544904231211,23.5308726290628 -269,3.0,3.0,16.314103089185693,-55.509410535254254 -269,3.0,5.0,-6.413123730174556,22.31120356548123 -269,3.0,11.0,0.0,4.191255364806866 -269,4.0,1.0,-1.1359607881738778,4.772479328281356 -269,4.0,4.0,4.089980824135861,-12.190647245055052 -269,4.0,6.0,-2.954020035961983,7.449267916773697 -269,5.0,1.0,-1.6861448807654689,5.116477495334806 -269,5.0,3.0,-6.413123730174556,22.31120356548123 -269,5.0,5.0,22.341631269034565,-82.8291478657789 -269,5.0,6.0,-3.590210423980992,11.02611441072814 -269,5.0,7.0,-6.289308176100628,22.0125786163522 -269,5.0,8.0,0.0,4.915840805411357 -269,5.0,9.0,0.0,1.8561002591115965 -269,5.0,27.0,-4.362844058012917,15.463571542897856 -269,6.0,4.0,-2.954020035961983,7.449267916773697 -269,6.0,5.0,-3.590210423980992,11.02611441072814 -269,6.0,6.0,6.544230459942975,-18.45668232750184 -269,7.0,5.0,-6.289308176100628,22.0125786163522 -269,7.0,7.0,7.733287237496075,-26.527493274828448 -269,7.0,27.0,-1.4439790613954469,4.540814658476248 -269,8.0,5.0,0.0,4.915840805411357 -269,8.0,8.0,0.0,-18.706293706293707 -269,8.0,9.0,0.0,9.090909090909092 -269,8.0,10.0,0.0,4.807692307692308 -269,9.0,5.0,0.0,1.8561002591115965 -269,9.0,8.0,0.0,9.090909090909092 -269,9.0,9.0,13.462042814524237,-41.3837606675224 -269,9.0,16.0,-3.956039125715353,10.317447719844054 -269,9.0,19.0,-1.7848303152666305,3.98535828943083 -269,9.0,20.0,-5.101853820159654,10.98071411292983 -269,9.0,21.0,-2.619319553382597,5.400770303329455 -269,10.0,8.0,0.0,4.807692307692308 -269,10.0,10.0,0.0,-4.807692307692308 -269,11.0,3.0,0.0,4.191255364806866 -269,11.0,11.0,6.573961583776156,-24.424167659260668 -269,11.0,12.0,0.0,7.142857142857143 -269,11.0,13.0,-1.5265676088395577,3.1734252729654173 -269,11.0,14.0,-3.0953961826564296,6.097275864326261 -269,11.0,15.0,-1.9519977922801688,4.104359379111847 -269,12.0,11.0,0.0,7.142857142857143 -269,12.0,12.0,0.0,-7.142857142857143 -269,13.0,11.0,-1.5265676088395577,3.1734252729654173 -269,13.0,13.0,4.01751987283902,-5.424299332335067 -269,13.0,14.0,-2.4909522639994623,2.250874059369649 -269,14.0,11.0,-3.0953961826564296,6.097275864326261 -269,14.0,13.0,-2.4909522639994623,2.250874059369649 -269,14.0,14.0,9.365498545964757,-16.01163373210796 -269,14.0,17.0,-1.8108011504072024,3.687418931630696 -269,14.0,22.0,-1.9683489489016612,3.976064876781356 -269,15.0,11.0,-1.9519977922801688,4.104359379111847 -269,15.0,15.0,3.271064728633931,-8.94513365126506 -269,15.0,16.0,-1.3190669363537617,4.8407742721532125 -269,16.0,9.0,-3.956039125715353,10.317447719844054 -269,16.0,15.0,-1.3190669363537617,4.8407742721532125 -269,16.0,16.0,5.275106062069114,-15.158221991997266 -269,17.0,14.0,-1.8108011504072024,3.687418931630696 -269,17.0,17.0,4.886487584415919,-9.906177730909668 -269,17.0,18.0,-3.0756864340087167,6.218758799278971 -269,18.0,17.0,-3.0756864340087167,6.218758799278971 -269,18.0,18.0,8.958039375185187,-17.98346468163191 -269,18.0,19.0,-5.88235294117647,11.76470588235294 -269,19.0,9.0,-1.7848303152666305,3.98535828943083 -269,19.0,18.0,-5.88235294117647,11.76470588235294 -269,19.0,19.0,7.6671832564431,-15.75006417178377 -269,20.0,9.0,-5.101853820159654,10.98071411292983 -269,20.0,20.0,21.876495189895888,-45.10843276170355 -269,20.0,21.0,-16.774641369736234,34.127718648773715 -269,21.0,9.0,-2.619319553382597,5.400770303329455 -269,21.0,20.0,-16.774641369736234,34.127718648773715 -269,21.0,21.0,21.93449907537439,-43.48289181517921 -269,21.0,23.0,-2.5405381522555563,3.95440286307604 -269,22.0,14.0,-1.9683489489016612,3.976064876781356 -269,22.0,22.0,3.429754555384988,-6.965303617315433 -269,22.0,23.0,-1.4614056064833263,2.989238740534077 -269,23.0,21.0,-2.5405381522555563,3.95440286307604 -269,23.0,22.0,-1.4614056064833263,2.989238740534077 -269,23.0,23.0,5.311836702613133,-9.188263657315172 -269,23.0,24.0,-1.3098929438742493,2.287622053705056 -269,24.0,23.0,-1.3098929438742493,2.287622053705056 -269,24.0,24.0,4.495715080321987,-7.864978761969621 -269,24.0,25.0,-1.2165301194494855,1.8171440463475024 -269,24.0,26.0,-1.9692920169982515,3.760212661917064 -269,25.0,24.0,-1.2165301194494855,1.8171440463475024 -269,25.0,25.0,1.2165301194494855,-1.8171440463475024 -269,26.0,24.0,-1.9692920169982515,3.760212661917064 -269,26.0,26.0,3.652281470778589,-9.46044252232512 -269,26.0,27.0,0.0,2.608731947574922 -269,26.0,28.0,-0.99553355095268,1.881005840357816 -269,26.0,29.0,-0.6874559028276572,1.293971494797717 -269,27.0,5.0,-4.362844058012917,15.463571542897856 -269,27.0,7.0,-1.4439790613954469,4.540814658476248 -269,27.0,26.0,0.0,2.608731947574922 -269,27.0,27.0,5.806823119408364,-22.67145722159613 -269,28.0,26.0,-0.99553355095268,1.881005840357816 -269,28.0,28.0,1.9075867579849564,-3.604364401207048 -269,28.0,29.0,-0.9120532070322764,1.7233585608492326 -269,29.0,26.0,-0.6874559028276572,1.293971494797717 -269,29.0,28.0,-0.9120532070322764,1.7233585608492326 -269,29.0,29.0,1.5995091098599337,-3.0173300556469496 -270,0.0,0.0,6.765516048652632,-21.23160167089863 -270,0.0,1.0,-5.224646179885656,15.646726840803398 -270,0.0,2.0,-1.5408698687669766,5.631674830095234 -270,1.0,0.0,-5.224646179885656,15.646726840803398 -270,1.0,1.0,9.75228216552403,-30.648662892676068 -270,1.0,3.0,-1.7055303166990268,5.1973792282565086 -270,1.0,4.0,-1.1359607881738778,4.772479328281356 -270,1.0,5.0,-1.6861448807654689,5.116477495334806 -270,2.0,0.0,-1.5408698687669766,5.631674830095234 -270,2.0,2.0,9.736318911079088,-29.13794745915803 -270,2.0,3.0,-8.19544904231211,23.5308726290628 -270,3.0,1.0,-1.7055303166990268,5.1973792282565086 -270,3.0,2.0,-8.19544904231211,23.5308726290628 -270,3.0,3.0,16.314103089185693,-55.509410535254254 -270,3.0,5.0,-6.413123730174556,22.31120356548123 -270,3.0,11.0,0.0,4.191255364806866 -270,4.0,1.0,-1.1359607881738778,4.772479328281356 -270,4.0,4.0,1.1359607881738778,-4.751579328281355 -270,5.0,1.0,-1.6861448807654689,5.116477495334806 -270,5.0,3.0,-6.413123730174556,22.31120356548123 -270,5.0,5.0,16.052323092933932,-60.8210692494267 -270,5.0,6.0,-3.590210423980992,11.02611441072814 -270,5.0,8.0,0.0,4.915840805411357 -270,5.0,9.0,0.0,1.8561002591115965 -270,5.0,27.0,-4.362844058012917,15.463571542897856 -270,6.0,5.0,-3.590210423980992,11.02611441072814 -270,6.0,6.0,3.590210423980992,-11.01761441072814 -270,7.0,7.0,1.4439790613954469,-4.519414658476248 -270,7.0,27.0,-1.4439790613954469,4.540814658476248 -270,8.0,5.0,0.0,4.915840805411357 -270,8.0,8.0,0.0,-18.706293706293707 -270,8.0,9.0,0.0,9.090909090909092 -270,8.0,10.0,0.0,4.807692307692308 -270,9.0,5.0,0.0,1.8561002591115965 -270,9.0,8.0,0.0,9.090909090909092 -270,9.0,9.0,13.462042814524237,-41.3837606675224 -270,9.0,16.0,-3.956039125715353,10.317447719844054 -270,9.0,19.0,-1.7848303152666305,3.98535828943083 -270,9.0,20.0,-5.101853820159654,10.98071411292983 -270,9.0,21.0,-2.619319553382597,5.400770303329455 -270,10.0,8.0,0.0,4.807692307692308 -270,10.0,10.0,0.0,-4.807692307692308 -270,11.0,3.0,0.0,4.191255364806866 -270,11.0,11.0,6.573961583776156,-24.424167659260668 -270,11.0,12.0,0.0,7.142857142857143 -270,11.0,13.0,-1.5265676088395577,3.1734252729654173 -270,11.0,14.0,-3.0953961826564296,6.097275864326261 -270,11.0,15.0,-1.9519977922801688,4.104359379111847 -270,12.0,11.0,0.0,7.142857142857143 -270,12.0,12.0,0.0,-7.142857142857143 -270,13.0,11.0,-1.5265676088395577,3.1734252729654173 -270,13.0,13.0,4.01751987283902,-5.424299332335067 -270,13.0,14.0,-2.4909522639994623,2.250874059369649 -270,14.0,11.0,-3.0953961826564296,6.097275864326261 -270,14.0,13.0,-2.4909522639994623,2.250874059369649 -270,14.0,14.0,9.365498545964757,-16.01163373210796 -270,14.0,17.0,-1.8108011504072024,3.687418931630696 -270,14.0,22.0,-1.9683489489016612,3.976064876781356 -270,15.0,11.0,-1.9519977922801688,4.104359379111847 -270,15.0,15.0,3.271064728633931,-8.94513365126506 -270,15.0,16.0,-1.3190669363537617,4.8407742721532125 -270,16.0,9.0,-3.956039125715353,10.317447719844054 -270,16.0,15.0,-1.3190669363537617,4.8407742721532125 -270,16.0,16.0,5.275106062069114,-15.158221991997266 -270,17.0,14.0,-1.8108011504072024,3.687418931630696 -270,17.0,17.0,4.886487584415919,-9.906177730909668 -270,17.0,18.0,-3.0756864340087167,6.218758799278971 -270,18.0,17.0,-3.0756864340087167,6.218758799278971 -270,18.0,18.0,8.958039375185187,-17.98346468163191 -270,18.0,19.0,-5.88235294117647,11.76470588235294 -270,19.0,9.0,-1.7848303152666305,3.98535828943083 -270,19.0,18.0,-5.88235294117647,11.76470588235294 -270,19.0,19.0,7.6671832564431,-15.75006417178377 -270,20.0,9.0,-5.101853820159654,10.98071411292983 -270,20.0,20.0,21.876495189895888,-45.10843276170355 -270,20.0,21.0,-16.774641369736234,34.127718648773715 -270,21.0,9.0,-2.619319553382597,5.400770303329455 -270,21.0,20.0,-16.774641369736234,34.127718648773715 -270,21.0,21.0,21.93449907537439,-43.48289181517921 -270,21.0,23.0,-2.5405381522555563,3.95440286307604 -270,22.0,14.0,-1.9683489489016612,3.976064876781356 -270,22.0,22.0,1.9683489489016612,-3.976064876781356 -270,23.0,21.0,-2.5405381522555563,3.95440286307604 -270,23.0,23.0,3.850431096129806,-6.199024916781094 -270,23.0,24.0,-1.3098929438742493,2.287622053705056 -270,24.0,23.0,-1.3098929438742493,2.287622053705056 -270,24.0,24.0,4.495715080321987,-7.864978761969621 -270,24.0,25.0,-1.2165301194494855,1.8171440463475024 -270,24.0,26.0,-1.9692920169982515,3.760212661917064 -270,25.0,24.0,-1.2165301194494855,1.8171440463475024 -270,25.0,25.0,1.2165301194494855,-1.8171440463475024 -270,26.0,24.0,-1.9692920169982515,3.760212661917064 -270,26.0,26.0,3.652281470778589,-9.46044252232512 -270,26.0,27.0,0.0,2.608731947574922 -270,26.0,28.0,-0.99553355095268,1.881005840357816 -270,26.0,29.0,-0.6874559028276572,1.293971494797717 -270,27.0,5.0,-4.362844058012917,15.463571542897856 -270,27.0,7.0,-1.4439790613954469,4.540814658476248 -270,27.0,26.0,0.0,2.608731947574922 -270,27.0,27.0,5.806823119408364,-22.67145722159613 -270,28.0,26.0,-0.99553355095268,1.881005840357816 -270,28.0,28.0,1.9075867579849564,-3.604364401207048 -270,28.0,29.0,-0.9120532070322764,1.7233585608492326 -270,29.0,26.0,-0.6874559028276572,1.293971494797717 -270,29.0,28.0,-0.9120532070322764,1.7233585608492326 -270,29.0,29.0,1.5995091098599337,-3.0173300556469496 -271,0.0,0.0,6.765516048652632,-21.23160167089863 -271,0.0,1.0,-5.224646179885656,15.646726840803398 -271,0.0,2.0,-1.5408698687669766,5.631674830095234 -271,1.0,0.0,-5.224646179885656,15.646726840803398 -271,1.0,1.0,9.75228216552403,-30.648662892676068 -271,1.0,3.0,-1.7055303166990268,5.1973792282565086 -271,1.0,4.0,-1.1359607881738778,4.772479328281356 -271,1.0,5.0,-1.6861448807654689,5.116477495334806 -271,2.0,0.0,-1.5408698687669766,5.631674830095234 -271,2.0,2.0,9.736318911079088,-29.13794745915803 -271,2.0,3.0,-8.19544904231211,23.5308726290628 -271,3.0,1.0,-1.7055303166990268,5.1973792282565086 -271,3.0,2.0,-8.19544904231211,23.5308726290628 -271,3.0,3.0,16.314103089185693,-55.509410535254254 -271,3.0,5.0,-6.413123730174556,22.31120356548123 -271,3.0,11.0,0.0,4.191255364806866 -271,4.0,1.0,-1.1359607881738778,4.772479328281356 -271,4.0,4.0,4.089980824135861,-12.190647245055052 -271,4.0,6.0,-2.954020035961983,7.449267916773697 -271,5.0,1.0,-1.6861448807654689,5.116477495334806 -271,5.0,3.0,-6.413123730174556,22.31120356548123 -271,5.0,5.0,22.341631269034565,-82.8291478657789 -271,5.0,6.0,-3.590210423980992,11.02611441072814 -271,5.0,7.0,-6.289308176100628,22.0125786163522 -271,5.0,8.0,0.0,4.915840805411357 -271,5.0,9.0,0.0,1.8561002591115965 -271,5.0,27.0,-4.362844058012917,15.463571542897856 -271,6.0,4.0,-2.954020035961983,7.449267916773697 -271,6.0,5.0,-3.590210423980992,11.02611441072814 -271,6.0,6.0,6.544230459942975,-18.45668232750184 -271,7.0,5.0,-6.289308176100628,22.0125786163522 -271,7.0,7.0,7.733287237496075,-26.527493274828448 -271,7.0,27.0,-1.4439790613954469,4.540814658476248 -271,8.0,5.0,0.0,4.915840805411357 -271,8.0,8.0,0.0,-18.706293706293707 -271,8.0,9.0,0.0,9.090909090909092 -271,8.0,10.0,0.0,4.807692307692308 -271,9.0,5.0,0.0,1.8561002591115965 -271,9.0,8.0,0.0,9.090909090909092 -271,9.0,9.0,11.677212499257603,-37.39840237809157 -271,9.0,16.0,-3.956039125715353,10.317447719844054 -271,9.0,20.0,-5.101853820159654,10.98071411292983 -271,9.0,21.0,-2.619319553382597,5.400770303329455 -271,10.0,8.0,0.0,4.807692307692308 -271,10.0,10.0,0.0,-4.807692307692308 -271,11.0,3.0,0.0,4.191255364806866 -271,11.0,11.0,6.573961583776156,-24.424167659260668 -271,11.0,12.0,0.0,7.142857142857143 -271,11.0,13.0,-1.5265676088395577,3.1734252729654173 -271,11.0,14.0,-3.0953961826564296,6.097275864326261 -271,11.0,15.0,-1.9519977922801688,4.104359379111847 -271,12.0,11.0,0.0,7.142857142857143 -271,12.0,12.0,0.0,-7.142857142857143 -271,13.0,11.0,-1.5265676088395577,3.1734252729654173 -271,13.0,13.0,4.01751987283902,-5.424299332335067 -271,13.0,14.0,-2.4909522639994623,2.250874059369649 -271,14.0,11.0,-3.0953961826564296,6.097275864326261 -271,14.0,13.0,-2.4909522639994623,2.250874059369649 -271,14.0,14.0,9.365498545964757,-16.01163373210796 -271,14.0,17.0,-1.8108011504072024,3.687418931630696 -271,14.0,22.0,-1.9683489489016612,3.976064876781356 -271,15.0,11.0,-1.9519977922801688,4.104359379111847 -271,15.0,15.0,3.271064728633931,-8.94513365126506 -271,15.0,16.0,-1.3190669363537617,4.8407742721532125 -271,16.0,9.0,-3.956039125715353,10.317447719844054 -271,16.0,15.0,-1.3190669363537617,4.8407742721532125 -271,16.0,16.0,5.275106062069114,-15.158221991997266 -271,17.0,14.0,-1.8108011504072024,3.687418931630696 -271,17.0,17.0,4.886487584415919,-9.906177730909668 -271,17.0,18.0,-3.0756864340087167,6.218758799278971 -271,18.0,17.0,-3.0756864340087167,6.218758799278971 -271,18.0,18.0,8.958039375185187,-17.98346468163191 -271,18.0,19.0,-5.88235294117647,11.76470588235294 -271,19.0,18.0,-5.88235294117647,11.76470588235294 -271,19.0,19.0,5.88235294117647,-11.76470588235294 -271,20.0,9.0,-5.101853820159654,10.98071411292983 -271,20.0,20.0,21.876495189895888,-45.10843276170355 -271,20.0,21.0,-16.774641369736234,34.127718648773715 -271,21.0,9.0,-2.619319553382597,5.400770303329455 -271,21.0,20.0,-16.774641369736234,34.127718648773715 -271,21.0,21.0,21.93449907537439,-43.48289181517921 -271,21.0,23.0,-2.5405381522555563,3.95440286307604 -271,22.0,14.0,-1.9683489489016612,3.976064876781356 -271,22.0,22.0,3.429754555384988,-6.965303617315433 -271,22.0,23.0,-1.4614056064833263,2.989238740534077 -271,23.0,21.0,-2.5405381522555563,3.95440286307604 -271,23.0,22.0,-1.4614056064833263,2.989238740534077 -271,23.0,23.0,5.311836702613133,-9.188263657315172 -271,23.0,24.0,-1.3098929438742493,2.287622053705056 -271,24.0,23.0,-1.3098929438742493,2.287622053705056 -271,24.0,24.0,2.526423063323735,-4.104766100052558 -271,24.0,25.0,-1.2165301194494855,1.8171440463475024 -271,25.0,24.0,-1.2165301194494855,1.8171440463475024 -271,25.0,25.0,1.2165301194494855,-1.8171440463475024 -271,26.0,26.0,1.6829894537803372,-5.700229860408058 -271,26.0,27.0,0.0,2.608731947574922 -271,26.0,28.0,-0.99553355095268,1.881005840357816 -271,26.0,29.0,-0.6874559028276572,1.293971494797717 -271,27.0,5.0,-4.362844058012917,15.463571542897856 -271,27.0,7.0,-1.4439790613954469,4.540814658476248 -271,27.0,26.0,0.0,2.608731947574922 -271,27.0,27.0,5.806823119408364,-22.67145722159613 -271,28.0,26.0,-0.99553355095268,1.881005840357816 -271,28.0,28.0,1.9075867579849564,-3.604364401207048 -271,28.0,29.0,-0.9120532070322764,1.7233585608492326 -271,29.0,26.0,-0.6874559028276572,1.293971494797717 -271,29.0,28.0,-0.9120532070322764,1.7233585608492326 -271,29.0,29.0,1.5995091098599337,-3.0173300556469496 -272,0.0,0.0,6.765516048652632,-21.23160167089863 -272,0.0,1.0,-5.224646179885656,15.646726840803398 -272,0.0,2.0,-1.5408698687669766,5.631674830095234 -272,1.0,0.0,-5.224646179885656,15.646726840803398 -272,1.0,1.0,9.75228216552403,-30.648662892676068 -272,1.0,3.0,-1.7055303166990268,5.1973792282565086 -272,1.0,4.0,-1.1359607881738778,4.772479328281356 -272,1.0,5.0,-1.6861448807654689,5.116477495334806 -272,2.0,0.0,-1.5408698687669766,5.631674830095234 -272,2.0,2.0,9.736318911079088,-29.13794745915803 -272,2.0,3.0,-8.19544904231211,23.5308726290628 -272,3.0,1.0,-1.7055303166990268,5.1973792282565086 -272,3.0,2.0,-8.19544904231211,23.5308726290628 -272,3.0,3.0,16.314103089185693,-55.509410535254254 -272,3.0,5.0,-6.413123730174556,22.31120356548123 -272,3.0,11.0,0.0,4.191255364806866 -272,4.0,1.0,-1.1359607881738778,4.772479328281356 -272,4.0,4.0,4.089980824135861,-12.190647245055052 -272,4.0,6.0,-2.954020035961983,7.449267916773697 -272,5.0,1.0,-1.6861448807654689,5.116477495334806 -272,5.0,3.0,-6.413123730174556,22.31120356548123 -272,5.0,5.0,22.341631269034565,-82.8291478657789 -272,5.0,6.0,-3.590210423980992,11.02611441072814 -272,5.0,7.0,-6.289308176100628,22.0125786163522 -272,5.0,8.0,0.0,4.915840805411357 -272,5.0,9.0,0.0,1.8561002591115965 -272,5.0,27.0,-4.362844058012917,15.463571542897856 -272,6.0,4.0,-2.954020035961983,7.449267916773697 -272,6.0,5.0,-3.590210423980992,11.02611441072814 -272,6.0,6.0,6.544230459942975,-18.45668232750184 -272,7.0,5.0,-6.289308176100628,22.0125786163522 -272,7.0,7.0,7.733287237496075,-26.527493274828448 -272,7.0,27.0,-1.4439790613954469,4.540814658476248 -272,8.0,5.0,0.0,4.915840805411357 -272,8.0,8.0,0.0,-18.706293706293707 -272,8.0,9.0,0.0,9.090909090909092 -272,8.0,10.0,0.0,4.807692307692308 -272,9.0,5.0,0.0,1.8561002591115965 -272,9.0,8.0,0.0,9.090909090909092 -272,9.0,9.0,13.462042814524237,-41.3837606675224 -272,9.0,16.0,-3.956039125715353,10.317447719844054 -272,9.0,19.0,-1.7848303152666305,3.98535828943083 -272,9.0,20.0,-5.101853820159654,10.98071411292983 -272,9.0,21.0,-2.619319553382597,5.400770303329455 -272,10.0,8.0,0.0,4.807692307692308 -272,10.0,10.0,0.0,-4.807692307692308 -272,11.0,3.0,0.0,4.191255364806866 -272,11.0,11.0,6.573961583776156,-24.424167659260668 -272,11.0,12.0,0.0,7.142857142857143 -272,11.0,13.0,-1.5265676088395577,3.1734252729654173 -272,11.0,14.0,-3.0953961826564296,6.097275864326261 -272,11.0,15.0,-1.9519977922801688,4.104359379111847 -272,12.0,11.0,0.0,7.142857142857143 -272,12.0,12.0,0.0,-7.142857142857143 -272,13.0,11.0,-1.5265676088395577,3.1734252729654173 -272,13.0,13.0,4.01751987283902,-5.424299332335067 -272,13.0,14.0,-2.4909522639994623,2.250874059369649 -272,14.0,11.0,-3.0953961826564296,6.097275864326261 -272,14.0,13.0,-2.4909522639994623,2.250874059369649 -272,14.0,14.0,9.365498545964757,-16.01163373210796 -272,14.0,17.0,-1.8108011504072024,3.687418931630696 -272,14.0,22.0,-1.9683489489016612,3.976064876781356 -272,15.0,11.0,-1.9519977922801688,4.104359379111847 -272,15.0,15.0,3.271064728633931,-8.94513365126506 -272,15.0,16.0,-1.3190669363537617,4.8407742721532125 -272,16.0,9.0,-3.956039125715353,10.317447719844054 -272,16.0,15.0,-1.3190669363537617,4.8407742721532125 -272,16.0,16.0,5.275106062069114,-15.158221991997266 -272,17.0,14.0,-1.8108011504072024,3.687418931630696 -272,17.0,17.0,4.886487584415919,-9.906177730909668 -272,17.0,18.0,-3.0756864340087167,6.218758799278971 -272,18.0,17.0,-3.0756864340087167,6.218758799278971 -272,18.0,18.0,8.958039375185187,-17.98346468163191 -272,18.0,19.0,-5.88235294117647,11.76470588235294 -272,19.0,9.0,-1.7848303152666305,3.98535828943083 -272,19.0,18.0,-5.88235294117647,11.76470588235294 -272,19.0,19.0,7.6671832564431,-15.75006417178377 -272,20.0,9.0,-5.101853820159654,10.98071411292983 -272,20.0,20.0,21.876495189895888,-45.10843276170355 -272,20.0,21.0,-16.774641369736234,34.127718648773715 -272,21.0,9.0,-2.619319553382597,5.400770303329455 -272,21.0,20.0,-16.774641369736234,34.127718648773715 -272,21.0,21.0,21.93449907537439,-43.48289181517921 -272,21.0,23.0,-2.5405381522555563,3.95440286307604 -272,22.0,14.0,-1.9683489489016612,3.976064876781356 -272,22.0,22.0,3.429754555384988,-6.965303617315433 -272,22.0,23.0,-1.4614056064833263,2.989238740534077 -272,23.0,21.0,-2.5405381522555563,3.95440286307604 -272,23.0,22.0,-1.4614056064833263,2.989238740534077 -272,23.0,23.0,5.311836702613133,-9.188263657315172 -272,23.0,24.0,-1.3098929438742493,2.287622053705056 -272,24.0,23.0,-1.3098929438742493,2.287622053705056 -272,24.0,24.0,4.495715080321987,-7.864978761969621 -272,24.0,25.0,-1.2165301194494855,1.8171440463475024 -272,24.0,26.0,-1.9692920169982515,3.760212661917064 -272,25.0,24.0,-1.2165301194494855,1.8171440463475024 -272,25.0,25.0,1.2165301194494855,-1.8171440463475024 -272,26.0,24.0,-1.9692920169982515,3.760212661917064 -272,26.0,26.0,3.652281470778589,-9.46044252232512 -272,26.0,27.0,0.0,2.608731947574922 -272,26.0,28.0,-0.99553355095268,1.881005840357816 -272,26.0,29.0,-0.6874559028276572,1.293971494797717 -272,27.0,5.0,-4.362844058012917,15.463571542897856 -272,27.0,7.0,-1.4439790613954469,4.540814658476248 -272,27.0,26.0,0.0,2.608731947574922 -272,27.0,27.0,5.806823119408364,-22.67145722159613 -272,28.0,26.0,-0.99553355095268,1.881005840357816 -272,28.0,28.0,1.9075867579849564,-3.604364401207048 -272,28.0,29.0,-0.9120532070322764,1.7233585608492326 -272,29.0,26.0,-0.6874559028276572,1.293971494797717 -272,29.0,28.0,-0.9120532070322764,1.7233585608492326 -272,29.0,29.0,1.5995091098599337,-3.0173300556469496 -273,0.0,0.0,6.765516048652632,-21.23160167089863 -273,0.0,1.0,-5.224646179885656,15.646726840803398 -273,0.0,2.0,-1.5408698687669766,5.631674830095234 -273,1.0,0.0,-5.224646179885656,15.646726840803398 -273,1.0,1.0,9.75228216552403,-30.648662892676068 -273,1.0,3.0,-1.7055303166990268,5.1973792282565086 -273,1.0,4.0,-1.1359607881738778,4.772479328281356 -273,1.0,5.0,-1.6861448807654689,5.116477495334806 -273,2.0,0.0,-1.5408698687669766,5.631674830095234 -273,2.0,2.0,9.736318911079088,-29.13794745915803 -273,2.0,3.0,-8.19544904231211,23.5308726290628 -273,3.0,1.0,-1.7055303166990268,5.1973792282565086 -273,3.0,2.0,-8.19544904231211,23.5308726290628 -273,3.0,3.0,16.314103089185693,-55.509410535254254 -273,3.0,5.0,-6.413123730174556,22.31120356548123 -273,3.0,11.0,0.0,4.191255364806866 -273,4.0,1.0,-1.1359607881738778,4.772479328281356 -273,4.0,4.0,4.089980824135861,-12.190647245055052 -273,4.0,6.0,-2.954020035961983,7.449267916773697 -273,5.0,1.0,-1.6861448807654689,5.116477495334806 -273,5.0,3.0,-6.413123730174556,22.31120356548123 -273,5.0,5.0,22.341631269034565,-82.8291478657789 -273,5.0,6.0,-3.590210423980992,11.02611441072814 -273,5.0,7.0,-6.289308176100628,22.0125786163522 -273,5.0,8.0,0.0,4.915840805411357 -273,5.0,9.0,0.0,1.8561002591115965 -273,5.0,27.0,-4.362844058012917,15.463571542897856 -273,6.0,4.0,-2.954020035961983,7.449267916773697 -273,6.0,5.0,-3.590210423980992,11.02611441072814 -273,6.0,6.0,6.544230459942975,-18.45668232750184 -273,7.0,5.0,-6.289308176100628,22.0125786163522 -273,7.0,7.0,7.733287237496075,-26.527493274828448 -273,7.0,27.0,-1.4439790613954469,4.540814658476248 -273,8.0,5.0,0.0,4.915840805411357 -273,8.0,8.0,0.0,-18.706293706293707 -273,8.0,9.0,0.0,9.090909090909092 -273,8.0,10.0,0.0,4.807692307692308 -273,9.0,5.0,0.0,1.8561002591115965 -273,9.0,8.0,0.0,9.090909090909092 -273,9.0,9.0,13.462042814524237,-41.3837606675224 -273,9.0,16.0,-3.956039125715353,10.317447719844054 -273,9.0,19.0,-1.7848303152666305,3.98535828943083 -273,9.0,20.0,-5.101853820159654,10.98071411292983 -273,9.0,21.0,-2.619319553382597,5.400770303329455 -273,10.0,8.0,0.0,4.807692307692308 -273,10.0,10.0,0.0,-4.807692307692308 -273,11.0,3.0,0.0,4.191255364806866 -273,11.0,11.0,6.573961583776156,-24.424167659260668 -273,11.0,12.0,0.0,7.142857142857143 -273,11.0,13.0,-1.5265676088395577,3.1734252729654173 -273,11.0,14.0,-3.0953961826564296,6.097275864326261 -273,11.0,15.0,-1.9519977922801688,4.104359379111847 -273,12.0,11.0,0.0,7.142857142857143 -273,12.0,12.0,0.0,-7.142857142857143 -273,13.0,11.0,-1.5265676088395577,3.1734252729654173 -273,13.0,13.0,4.01751987283902,-5.424299332335067 -273,13.0,14.0,-2.4909522639994623,2.250874059369649 -273,14.0,11.0,-3.0953961826564296,6.097275864326261 -273,14.0,13.0,-2.4909522639994623,2.250874059369649 -273,14.0,14.0,9.365498545964757,-16.01163373210796 -273,14.0,17.0,-1.8108011504072024,3.687418931630696 -273,14.0,22.0,-1.9683489489016612,3.976064876781356 -273,15.0,11.0,-1.9519977922801688,4.104359379111847 -273,15.0,15.0,3.271064728633931,-8.94513365126506 -273,15.0,16.0,-1.3190669363537617,4.8407742721532125 -273,16.0,9.0,-3.956039125715353,10.317447719844054 -273,16.0,15.0,-1.3190669363537617,4.8407742721532125 -273,16.0,16.0,5.275106062069114,-15.158221991997266 -273,17.0,14.0,-1.8108011504072024,3.687418931630696 -273,17.0,17.0,4.886487584415919,-9.906177730909668 -273,17.0,18.0,-3.0756864340087167,6.218758799278971 -273,18.0,17.0,-3.0756864340087167,6.218758799278971 -273,18.0,18.0,8.958039375185187,-17.98346468163191 -273,18.0,19.0,-5.88235294117647,11.76470588235294 -273,19.0,9.0,-1.7848303152666305,3.98535828943083 -273,19.0,18.0,-5.88235294117647,11.76470588235294 -273,19.0,19.0,7.6671832564431,-15.75006417178377 -273,20.0,9.0,-5.101853820159654,10.98071411292983 -273,20.0,20.0,21.876495189895888,-45.10843276170355 -273,20.0,21.0,-16.774641369736234,34.127718648773715 -273,21.0,9.0,-2.619319553382597,5.400770303329455 -273,21.0,20.0,-16.774641369736234,34.127718648773715 -273,21.0,21.0,21.93449907537439,-43.48289181517921 -273,21.0,23.0,-2.5405381522555563,3.95440286307604 -273,22.0,14.0,-1.9683489489016612,3.976064876781356 -273,22.0,22.0,3.429754555384988,-6.965303617315433 -273,22.0,23.0,-1.4614056064833263,2.989238740534077 -273,23.0,21.0,-2.5405381522555563,3.95440286307604 -273,23.0,22.0,-1.4614056064833263,2.989238740534077 -273,23.0,23.0,5.311836702613133,-9.188263657315172 -273,23.0,24.0,-1.3098929438742493,2.287622053705056 -273,24.0,23.0,-1.3098929438742493,2.287622053705056 -273,24.0,24.0,4.495715080321987,-7.864978761969621 -273,24.0,25.0,-1.2165301194494855,1.8171440463475024 -273,24.0,26.0,-1.9692920169982515,3.760212661917064 -273,25.0,24.0,-1.2165301194494855,1.8171440463475024 -273,25.0,25.0,1.2165301194494855,-1.8171440463475024 -273,26.0,24.0,-1.9692920169982515,3.760212661917064 -273,26.0,26.0,3.652281470778589,-9.46044252232512 -273,26.0,27.0,0.0,2.608731947574922 -273,26.0,28.0,-0.99553355095268,1.881005840357816 -273,26.0,29.0,-0.6874559028276572,1.293971494797717 -273,27.0,5.0,-4.362844058012917,15.463571542897856 -273,27.0,7.0,-1.4439790613954469,4.540814658476248 -273,27.0,26.0,0.0,2.608731947574922 -273,27.0,27.0,5.806823119408364,-22.67145722159613 -273,28.0,26.0,-0.99553355095268,1.881005840357816 -273,28.0,28.0,1.9075867579849564,-3.604364401207048 -273,28.0,29.0,-0.9120532070322764,1.7233585608492326 -273,29.0,26.0,-0.6874559028276572,1.293971494797717 -273,29.0,28.0,-0.9120532070322764,1.7233585608492326 -273,29.0,29.0,1.5995091098599337,-3.0173300556469496 -274,0.0,0.0,6.765516048652632,-21.23160167089863 -274,0.0,1.0,-5.224646179885656,15.646726840803398 -274,0.0,2.0,-1.5408698687669766,5.631674830095234 -274,1.0,0.0,-5.224646179885656,15.646726840803398 -274,1.0,1.0,9.75228216552403,-30.648662892676068 -274,1.0,3.0,-1.7055303166990268,5.1973792282565086 -274,1.0,4.0,-1.1359607881738778,4.772479328281356 -274,1.0,5.0,-1.6861448807654689,5.116477495334806 -274,2.0,0.0,-1.5408698687669766,5.631674830095234 -274,2.0,2.0,9.736318911079088,-29.13794745915803 -274,2.0,3.0,-8.19544904231211,23.5308726290628 -274,3.0,1.0,-1.7055303166990268,5.1973792282565086 -274,3.0,2.0,-8.19544904231211,23.5308726290628 -274,3.0,3.0,16.314103089185693,-51.01235542280054 -274,3.0,5.0,-6.413123730174556,22.31120356548123 -274,4.0,1.0,-1.1359607881738778,4.772479328281356 -274,4.0,4.0,4.089980824135861,-12.190647245055052 -274,4.0,6.0,-2.954020035961983,7.449267916773697 -274,5.0,1.0,-1.6861448807654689,5.116477495334806 -274,5.0,3.0,-6.413123730174556,22.31120356548123 -274,5.0,5.0,17.978787211021647,-67.37207632288106 -274,5.0,6.0,-3.590210423980992,11.02611441072814 -274,5.0,7.0,-6.289308176100628,22.0125786163522 -274,5.0,8.0,0.0,4.915840805411357 -274,5.0,9.0,0.0,1.8561002591115965 -274,6.0,4.0,-2.954020035961983,7.449267916773697 -274,6.0,5.0,-3.590210423980992,11.02611441072814 -274,6.0,6.0,6.544230459942975,-18.45668232750184 -274,7.0,5.0,-6.289308176100628,22.0125786163522 -274,7.0,7.0,7.733287237496075,-26.527493274828448 -274,7.0,27.0,-1.4439790613954469,4.540814658476248 -274,8.0,5.0,0.0,4.915840805411357 -274,8.0,8.0,0.0,-18.706293706293707 -274,8.0,9.0,0.0,9.090909090909092 -274,8.0,10.0,0.0,4.807692307692308 -274,9.0,5.0,0.0,1.8561002591115965 -274,9.0,8.0,0.0,9.090909090909092 -274,9.0,9.0,13.462042814524237,-41.3837606675224 -274,9.0,16.0,-3.956039125715353,10.317447719844054 -274,9.0,19.0,-1.7848303152666305,3.98535828943083 -274,9.0,20.0,-5.101853820159654,10.98071411292983 -274,9.0,21.0,-2.619319553382597,5.400770303329455 -274,10.0,8.0,0.0,4.807692307692308 -274,10.0,10.0,0.0,-4.807692307692308 -274,11.0,11.0,6.573961583776156,-20.517917659260668 -274,11.0,12.0,0.0,7.142857142857143 -274,11.0,13.0,-1.5265676088395577,3.1734252729654173 -274,11.0,14.0,-3.0953961826564296,6.097275864326261 -274,11.0,15.0,-1.9519977922801688,4.104359379111847 -274,12.0,11.0,0.0,7.142857142857143 -274,12.0,12.0,0.0,-7.142857142857143 -274,13.0,11.0,-1.5265676088395577,3.1734252729654173 -274,13.0,13.0,4.01751987283902,-5.424299332335067 -274,13.0,14.0,-2.4909522639994623,2.250874059369649 -274,14.0,11.0,-3.0953961826564296,6.097275864326261 -274,14.0,13.0,-2.4909522639994623,2.250874059369649 -274,14.0,14.0,9.365498545964757,-16.01163373210796 -274,14.0,17.0,-1.8108011504072024,3.687418931630696 -274,14.0,22.0,-1.9683489489016612,3.976064876781356 -274,15.0,11.0,-1.9519977922801688,4.104359379111847 -274,15.0,15.0,3.271064728633931,-8.94513365126506 -274,15.0,16.0,-1.3190669363537617,4.8407742721532125 -274,16.0,9.0,-3.956039125715353,10.317447719844054 -274,16.0,15.0,-1.3190669363537617,4.8407742721532125 -274,16.0,16.0,5.275106062069114,-15.158221991997266 -274,17.0,14.0,-1.8108011504072024,3.687418931630696 -274,17.0,17.0,4.886487584415919,-9.906177730909668 -274,17.0,18.0,-3.0756864340087167,6.218758799278971 -274,18.0,17.0,-3.0756864340087167,6.218758799278971 -274,18.0,18.0,8.958039375185187,-17.98346468163191 -274,18.0,19.0,-5.88235294117647,11.76470588235294 -274,19.0,9.0,-1.7848303152666305,3.98535828943083 -274,19.0,18.0,-5.88235294117647,11.76470588235294 -274,19.0,19.0,7.6671832564431,-15.75006417178377 -274,20.0,9.0,-5.101853820159654,10.98071411292983 -274,20.0,20.0,21.876495189895888,-45.10843276170355 -274,20.0,21.0,-16.774641369736234,34.127718648773715 -274,21.0,9.0,-2.619319553382597,5.400770303329455 -274,21.0,20.0,-16.774641369736234,34.127718648773715 -274,21.0,21.0,21.93449907537439,-43.48289181517921 -274,21.0,23.0,-2.5405381522555563,3.95440286307604 -274,22.0,14.0,-1.9683489489016612,3.976064876781356 -274,22.0,22.0,3.429754555384988,-6.965303617315433 -274,22.0,23.0,-1.4614056064833263,2.989238740534077 -274,23.0,21.0,-2.5405381522555563,3.95440286307604 -274,23.0,22.0,-1.4614056064833263,2.989238740534077 -274,23.0,23.0,5.311836702613133,-9.188263657315172 -274,23.0,24.0,-1.3098929438742493,2.287622053705056 -274,24.0,23.0,-1.3098929438742493,2.287622053705056 -274,24.0,24.0,4.495715080321987,-7.864978761969621 -274,24.0,25.0,-1.2165301194494855,1.8171440463475024 -274,24.0,26.0,-1.9692920169982515,3.760212661917064 -274,25.0,24.0,-1.2165301194494855,1.8171440463475024 -274,25.0,25.0,1.2165301194494855,-1.8171440463475024 -274,26.0,24.0,-1.9692920169982515,3.760212661917064 -274,26.0,26.0,2.9648255679509314,-8.166471027527404 -274,26.0,27.0,0.0,2.608731947574922 -274,26.0,28.0,-0.99553355095268,1.881005840357816 -274,27.0,7.0,-1.4439790613954469,4.540814658476248 -274,27.0,26.0,0.0,2.608731947574922 -274,27.0,27.0,1.4439790613954469,-7.214385678698274 -274,28.0,26.0,-0.99553355095268,1.881005840357816 -274,28.0,28.0,1.9075867579849564,-3.604364401207048 -274,28.0,29.0,-0.9120532070322764,1.7233585608492326 -274,29.0,28.0,-0.9120532070322764,1.7233585608492326 -274,29.0,29.0,0.9120532070322764,-1.7233585608492326 -275,0.0,0.0,5.224646179885656,-15.620326840803395 -275,0.0,1.0,-5.224646179885656,15.646726840803398 -275,1.0,0.0,-5.224646179885656,15.646726840803398 -275,1.0,1.0,9.75228216552403,-30.648662892676068 -275,1.0,3.0,-1.7055303166990268,5.1973792282565086 -275,1.0,4.0,-1.1359607881738778,4.772479328281356 -275,1.0,5.0,-1.6861448807654689,5.116477495334806 -275,2.0,2.0,8.19544904231211,-23.5266726290628 -275,2.0,3.0,-8.19544904231211,23.5308726290628 -275,3.0,1.0,-1.7055303166990268,5.1973792282565086 -275,3.0,2.0,-8.19544904231211,23.5308726290628 -275,3.0,3.0,16.314103089185693,-55.509410535254254 -275,3.0,5.0,-6.413123730174556,22.31120356548123 -275,3.0,11.0,0.0,4.191255364806866 -275,4.0,1.0,-1.1359607881738778,4.772479328281356 -275,4.0,4.0,4.089980824135861,-12.190647245055052 -275,4.0,6.0,-2.954020035961983,7.449267916773697 -275,5.0,1.0,-1.6861448807654689,5.116477495334806 -275,5.0,3.0,-6.413123730174556,22.31120356548123 -275,5.0,5.0,17.978787211021647,-67.37207632288106 -275,5.0,6.0,-3.590210423980992,11.02611441072814 -275,5.0,7.0,-6.289308176100628,22.0125786163522 -275,5.0,8.0,0.0,4.915840805411357 -275,5.0,9.0,0.0,1.8561002591115965 -275,6.0,4.0,-2.954020035961983,7.449267916773697 -275,6.0,5.0,-3.590210423980992,11.02611441072814 -275,6.0,6.0,6.544230459942975,-18.45668232750184 -275,7.0,5.0,-6.289308176100628,22.0125786163522 -275,7.0,7.0,7.733287237496075,-26.527493274828448 -275,7.0,27.0,-1.4439790613954469,4.540814658476248 -275,8.0,5.0,0.0,4.915840805411357 -275,8.0,8.0,0.0,-18.706293706293707 -275,8.0,9.0,0.0,9.090909090909092 -275,8.0,10.0,0.0,4.807692307692308 -275,9.0,5.0,0.0,1.8561002591115965 -275,9.0,8.0,0.0,9.090909090909092 -275,9.0,9.0,8.36018899436458,-30.40304655459257 -275,9.0,16.0,-3.956039125715353,10.317447719844054 -275,9.0,19.0,-1.7848303152666305,3.98535828943083 -275,9.0,21.0,-2.619319553382597,5.400770303329455 -275,10.0,8.0,0.0,4.807692307692308 -275,10.0,10.0,0.0,-4.807692307692308 -275,11.0,3.0,0.0,4.191255364806866 -275,11.0,11.0,6.573961583776156,-24.424167659260668 -275,11.0,12.0,0.0,7.142857142857143 -275,11.0,13.0,-1.5265676088395577,3.1734252729654173 -275,11.0,14.0,-3.0953961826564296,6.097275864326261 -275,11.0,15.0,-1.9519977922801688,4.104359379111847 -275,12.0,11.0,0.0,7.142857142857143 -275,12.0,12.0,0.0,-7.142857142857143 -275,13.0,11.0,-1.5265676088395577,3.1734252729654173 -275,13.0,13.0,1.5265676088395577,-3.1734252729654173 -275,14.0,11.0,-3.0953961826564296,6.097275864326261 -275,14.0,14.0,6.874546281965293,-13.760759672738311 -275,14.0,17.0,-1.8108011504072024,3.687418931630696 -275,14.0,22.0,-1.9683489489016612,3.976064876781356 -275,15.0,11.0,-1.9519977922801688,4.104359379111847 -275,15.0,15.0,3.271064728633931,-8.94513365126506 -275,15.0,16.0,-1.3190669363537617,4.8407742721532125 -275,16.0,9.0,-3.956039125715353,10.317447719844054 -275,16.0,15.0,-1.3190669363537617,4.8407742721532125 -275,16.0,16.0,5.275106062069114,-15.158221991997266 -275,17.0,14.0,-1.8108011504072024,3.687418931630696 -275,17.0,17.0,4.886487584415919,-9.906177730909668 -275,17.0,18.0,-3.0756864340087167,6.218758799278971 -275,18.0,17.0,-3.0756864340087167,6.218758799278971 -275,18.0,18.0,8.958039375185187,-17.98346468163191 -275,18.0,19.0,-5.88235294117647,11.76470588235294 -275,19.0,9.0,-1.7848303152666305,3.98535828943083 -275,19.0,18.0,-5.88235294117647,11.76470588235294 -275,19.0,19.0,7.6671832564431,-15.75006417178377 -275,20.0,20.0,16.774641369736234,-34.127718648773715 -275,20.0,21.0,-16.774641369736234,34.127718648773715 -275,21.0,9.0,-2.619319553382597,5.400770303329455 -275,21.0,20.0,-16.774641369736234,34.127718648773715 -275,21.0,21.0,21.93449907537439,-43.48289181517921 -275,21.0,23.0,-2.5405381522555563,3.95440286307604 -275,22.0,14.0,-1.9683489489016612,3.976064876781356 -275,22.0,22.0,1.9683489489016612,-3.976064876781356 -275,23.0,21.0,-2.5405381522555563,3.95440286307604 -275,23.0,23.0,3.850431096129806,-6.199024916781094 -275,23.0,24.0,-1.3098929438742493,2.287622053705056 -275,24.0,23.0,-1.3098929438742493,2.287622053705056 -275,24.0,24.0,4.495715080321987,-7.864978761969621 -275,24.0,25.0,-1.2165301194494855,1.8171440463475024 -275,24.0,26.0,-1.9692920169982515,3.760212661917064 -275,25.0,24.0,-1.2165301194494855,1.8171440463475024 -275,25.0,25.0,1.2165301194494855,-1.8171440463475024 -275,26.0,24.0,-1.9692920169982515,3.760212661917064 -275,26.0,26.0,3.652281470778589,-9.46044252232512 -275,26.0,27.0,0.0,2.608731947574922 -275,26.0,28.0,-0.99553355095268,1.881005840357816 -275,26.0,29.0,-0.6874559028276572,1.293971494797717 -275,27.0,7.0,-1.4439790613954469,4.540814658476248 -275,27.0,26.0,0.0,2.608731947574922 -275,27.0,27.0,1.4439790613954469,-7.214385678698274 -275,28.0,26.0,-0.99553355095268,1.881005840357816 -275,28.0,28.0,1.9075867579849564,-3.604364401207048 -275,28.0,29.0,-0.9120532070322764,1.7233585608492326 -275,29.0,26.0,-0.6874559028276572,1.293971494797717 -275,29.0,28.0,-0.9120532070322764,1.7233585608492326 -275,29.0,29.0,1.5995091098599337,-3.0173300556469496 -276,0.0,0.0,6.765516048652632,-21.23160167089863 -276,0.0,1.0,-5.224646179885656,15.646726840803398 -276,0.0,2.0,-1.5408698687669766,5.631674830095234 -276,1.0,0.0,-5.224646179885656,15.646726840803398 -276,1.0,1.0,9.75228216552403,-30.648662892676068 -276,1.0,3.0,-1.7055303166990268,5.1973792282565086 -276,1.0,4.0,-1.1359607881738778,4.772479328281356 -276,1.0,5.0,-1.6861448807654689,5.116477495334806 -276,2.0,0.0,-1.5408698687669766,5.631674830095234 -276,2.0,2.0,9.736318911079088,-29.13794745915803 -276,2.0,3.0,-8.19544904231211,23.5308726290628 -276,3.0,1.0,-1.7055303166990268,5.1973792282565086 -276,3.0,2.0,-8.19544904231211,23.5308726290628 -276,3.0,3.0,16.314103089185693,-55.509410535254254 -276,3.0,5.0,-6.413123730174556,22.31120356548123 -276,3.0,11.0,0.0,4.191255364806866 -276,4.0,1.0,-1.1359607881738778,4.772479328281356 -276,4.0,4.0,4.089980824135861,-12.190647245055052 -276,4.0,6.0,-2.954020035961983,7.449267916773697 -276,5.0,1.0,-1.6861448807654689,5.116477495334806 -276,5.0,3.0,-6.413123730174556,22.31120356548123 -276,5.0,5.0,22.341631269034565,-82.8291478657789 -276,5.0,6.0,-3.590210423980992,11.02611441072814 -276,5.0,7.0,-6.289308176100628,22.0125786163522 -276,5.0,8.0,0.0,4.915840805411357 -276,5.0,9.0,0.0,1.8561002591115965 -276,5.0,27.0,-4.362844058012917,15.463571542897856 -276,6.0,4.0,-2.954020035961983,7.449267916773697 -276,6.0,5.0,-3.590210423980992,11.02611441072814 -276,6.0,6.0,6.544230459942975,-18.45668232750184 -276,7.0,5.0,-6.289308176100628,22.0125786163522 -276,7.0,7.0,7.733287237496075,-26.527493274828448 -276,7.0,27.0,-1.4439790613954469,4.540814658476248 -276,8.0,5.0,0.0,4.915840805411357 -276,8.0,8.0,0.0,-18.706293706293707 -276,8.0,9.0,0.0,9.090909090909092 -276,8.0,10.0,0.0,4.807692307692308 -276,9.0,5.0,0.0,1.8561002591115965 -276,9.0,8.0,0.0,9.090909090909092 -276,9.0,9.0,9.506003688808882,-31.06631294767834 -276,9.0,19.0,-1.7848303152666305,3.98535828943083 -276,9.0,20.0,-5.101853820159654,10.98071411292983 -276,9.0,21.0,-2.619319553382597,5.400770303329455 -276,10.0,8.0,0.0,4.807692307692308 -276,10.0,10.0,0.0,-4.807692307692308 -276,11.0,3.0,0.0,4.191255364806866 -276,11.0,11.0,6.573961583776156,-24.424167659260668 -276,11.0,12.0,0.0,7.142857142857143 -276,11.0,13.0,-1.5265676088395577,3.1734252729654173 -276,11.0,14.0,-3.0953961826564296,6.097275864326261 -276,11.0,15.0,-1.9519977922801688,4.104359379111847 -276,12.0,11.0,0.0,7.142857142857143 -276,12.0,12.0,0.0,-7.142857142857143 -276,13.0,11.0,-1.5265676088395577,3.1734252729654173 -276,13.0,13.0,4.01751987283902,-5.424299332335067 -276,13.0,14.0,-2.4909522639994623,2.250874059369649 -276,14.0,11.0,-3.0953961826564296,6.097275864326261 -276,14.0,13.0,-2.4909522639994623,2.250874059369649 -276,14.0,14.0,9.365498545964757,-16.01163373210796 -276,14.0,17.0,-1.8108011504072024,3.687418931630696 -276,14.0,22.0,-1.9683489489016612,3.976064876781356 -276,15.0,11.0,-1.9519977922801688,4.104359379111847 -276,15.0,15.0,3.271064728633931,-8.94513365126506 -276,15.0,16.0,-1.3190669363537617,4.8407742721532125 -276,16.0,15.0,-1.3190669363537617,4.8407742721532125 -276,16.0,16.0,1.3190669363537617,-4.8407742721532125 -276,17.0,14.0,-1.8108011504072024,3.687418931630696 -276,17.0,17.0,4.886487584415919,-9.906177730909668 -276,17.0,18.0,-3.0756864340087167,6.218758799278971 -276,18.0,17.0,-3.0756864340087167,6.218758799278971 -276,18.0,18.0,8.958039375185187,-17.98346468163191 -276,18.0,19.0,-5.88235294117647,11.76470588235294 -276,19.0,9.0,-1.7848303152666305,3.98535828943083 -276,19.0,18.0,-5.88235294117647,11.76470588235294 -276,19.0,19.0,7.6671832564431,-15.75006417178377 -276,20.0,9.0,-5.101853820159654,10.98071411292983 -276,20.0,20.0,21.876495189895888,-45.10843276170355 -276,20.0,21.0,-16.774641369736234,34.127718648773715 -276,21.0,9.0,-2.619319553382597,5.400770303329455 -276,21.0,20.0,-16.774641369736234,34.127718648773715 -276,21.0,21.0,21.93449907537439,-43.48289181517921 -276,21.0,23.0,-2.5405381522555563,3.95440286307604 -276,22.0,14.0,-1.9683489489016612,3.976064876781356 -276,22.0,22.0,3.429754555384988,-6.965303617315433 -276,22.0,23.0,-1.4614056064833263,2.989238740534077 -276,23.0,21.0,-2.5405381522555563,3.95440286307604 -276,23.0,22.0,-1.4614056064833263,2.989238740534077 -276,23.0,23.0,5.311836702613133,-9.188263657315172 -276,23.0,24.0,-1.3098929438742493,2.287622053705056 -276,24.0,23.0,-1.3098929438742493,2.287622053705056 -276,24.0,24.0,4.495715080321987,-7.864978761969621 -276,24.0,25.0,-1.2165301194494855,1.8171440463475024 -276,24.0,26.0,-1.9692920169982515,3.760212661917064 -276,25.0,24.0,-1.2165301194494855,1.8171440463475024 -276,25.0,25.0,1.2165301194494855,-1.8171440463475024 -276,26.0,24.0,-1.9692920169982515,3.760212661917064 -276,26.0,26.0,3.652281470778589,-9.46044252232512 -276,26.0,27.0,0.0,2.608731947574922 -276,26.0,28.0,-0.99553355095268,1.881005840357816 -276,26.0,29.0,-0.6874559028276572,1.293971494797717 -276,27.0,5.0,-4.362844058012917,15.463571542897856 -276,27.0,7.0,-1.4439790613954469,4.540814658476248 -276,27.0,26.0,0.0,2.608731947574922 -276,27.0,27.0,5.806823119408364,-22.67145722159613 -276,28.0,26.0,-0.99553355095268,1.881005840357816 -276,28.0,28.0,1.9075867579849564,-3.604364401207048 -276,28.0,29.0,-0.9120532070322764,1.7233585608492326 -276,29.0,26.0,-0.6874559028276572,1.293971494797717 -276,29.0,28.0,-0.9120532070322764,1.7233585608492326 -276,29.0,29.0,1.5995091098599337,-3.0173300556469496 -277,0.0,0.0,6.765516048652632,-21.23160167089863 -277,0.0,1.0,-5.224646179885656,15.646726840803398 -277,0.0,2.0,-1.5408698687669766,5.631674830095234 -277,1.0,0.0,-5.224646179885656,15.646726840803398 -277,1.0,1.0,9.75228216552403,-30.648662892676068 -277,1.0,3.0,-1.7055303166990268,5.1973792282565086 -277,1.0,4.0,-1.1359607881738778,4.772479328281356 -277,1.0,5.0,-1.6861448807654689,5.116477495334806 -277,2.0,0.0,-1.5408698687669766,5.631674830095234 -277,2.0,2.0,9.736318911079088,-29.13794745915803 -277,2.0,3.0,-8.19544904231211,23.5308726290628 -277,3.0,1.0,-1.7055303166990268,5.1973792282565086 -277,3.0,2.0,-8.19544904231211,23.5308726290628 -277,3.0,3.0,16.314103089185693,-55.509410535254254 -277,3.0,5.0,-6.413123730174556,22.31120356548123 -277,3.0,11.0,0.0,4.191255364806866 -277,4.0,1.0,-1.1359607881738778,4.772479328281356 -277,4.0,4.0,1.1359607881738778,-4.751579328281355 -277,5.0,1.0,-1.6861448807654689,5.116477495334806 -277,5.0,3.0,-6.413123730174556,22.31120356548123 -277,5.0,5.0,22.341631269034565,-77.80272577435625 -277,5.0,6.0,-3.590210423980992,11.02611441072814 -277,5.0,7.0,-6.289308176100628,22.0125786163522 -277,5.0,9.0,0.0,1.8561002591115965 -277,5.0,27.0,-4.362844058012917,15.463571542897856 -277,6.0,5.0,-3.590210423980992,11.02611441072814 -277,6.0,6.0,3.590210423980992,-11.01761441072814 -277,7.0,5.0,-6.289308176100628,22.0125786163522 -277,7.0,7.0,7.733287237496075,-26.527493274828448 -277,7.0,27.0,-1.4439790613954469,4.540814658476248 -277,8.0,8.0,0.0,-13.8986013986014 -277,8.0,9.0,0.0,9.090909090909092 -277,8.0,10.0,0.0,4.807692307692308 -277,9.0,5.0,0.0,1.8561002591115965 -277,9.0,8.0,0.0,9.090909090909092 -277,9.0,9.0,13.462042814524237,-41.3837606675224 -277,9.0,16.0,-3.956039125715353,10.317447719844054 -277,9.0,19.0,-1.7848303152666305,3.98535828943083 -277,9.0,20.0,-5.101853820159654,10.98071411292983 -277,9.0,21.0,-2.619319553382597,5.400770303329455 -277,10.0,8.0,0.0,4.807692307692308 -277,10.0,10.0,0.0,-4.807692307692308 -277,11.0,3.0,0.0,4.191255364806866 -277,11.0,11.0,6.573961583776156,-24.424167659260668 -277,11.0,12.0,0.0,7.142857142857143 -277,11.0,13.0,-1.5265676088395577,3.1734252729654173 -277,11.0,14.0,-3.0953961826564296,6.097275864326261 -277,11.0,15.0,-1.9519977922801688,4.104359379111847 -277,12.0,11.0,0.0,7.142857142857143 -277,12.0,12.0,0.0,-7.142857142857143 -277,13.0,11.0,-1.5265676088395577,3.1734252729654173 -277,13.0,13.0,4.01751987283902,-5.424299332335067 -277,13.0,14.0,-2.4909522639994623,2.250874059369649 -277,14.0,11.0,-3.0953961826564296,6.097275864326261 -277,14.0,13.0,-2.4909522639994623,2.250874059369649 -277,14.0,14.0,7.554697395557554,-12.324214800477266 -277,14.0,22.0,-1.9683489489016612,3.976064876781356 -277,15.0,11.0,-1.9519977922801688,4.104359379111847 -277,15.0,15.0,3.271064728633931,-8.94513365126506 -277,15.0,16.0,-1.3190669363537617,4.8407742721532125 -277,16.0,9.0,-3.956039125715353,10.317447719844054 -277,16.0,15.0,-1.3190669363537617,4.8407742721532125 -277,16.0,16.0,5.275106062069114,-15.158221991997266 -277,17.0,17.0,3.0756864340087167,-6.218758799278971 -277,17.0,18.0,-3.0756864340087167,6.218758799278971 -277,18.0,17.0,-3.0756864340087167,6.218758799278971 -277,18.0,18.0,8.958039375185187,-17.98346468163191 -277,18.0,19.0,-5.88235294117647,11.76470588235294 -277,19.0,9.0,-1.7848303152666305,3.98535828943083 -277,19.0,18.0,-5.88235294117647,11.76470588235294 -277,19.0,19.0,7.6671832564431,-15.75006417178377 -277,20.0,9.0,-5.101853820159654,10.98071411292983 -277,20.0,20.0,21.876495189895888,-45.10843276170355 -277,20.0,21.0,-16.774641369736234,34.127718648773715 -277,21.0,9.0,-2.619319553382597,5.400770303329455 -277,21.0,20.0,-16.774641369736234,34.127718648773715 -277,21.0,21.0,21.93449907537439,-43.48289181517921 -277,21.0,23.0,-2.5405381522555563,3.95440286307604 -277,22.0,14.0,-1.9683489489016612,3.976064876781356 -277,22.0,22.0,3.429754555384988,-6.965303617315433 -277,22.0,23.0,-1.4614056064833263,2.989238740534077 -277,23.0,21.0,-2.5405381522555563,3.95440286307604 -277,23.0,22.0,-1.4614056064833263,2.989238740534077 -277,23.0,23.0,5.311836702613133,-9.188263657315172 -277,23.0,24.0,-1.3098929438742493,2.287622053705056 -277,24.0,23.0,-1.3098929438742493,2.287622053705056 -277,24.0,24.0,4.495715080321987,-7.864978761969621 -277,24.0,25.0,-1.2165301194494855,1.8171440463475024 -277,24.0,26.0,-1.9692920169982515,3.760212661917064 -277,25.0,24.0,-1.2165301194494855,1.8171440463475024 -277,25.0,25.0,1.2165301194494855,-1.8171440463475024 -277,26.0,24.0,-1.9692920169982515,3.760212661917064 -277,26.0,26.0,3.652281470778589,-9.46044252232512 -277,26.0,27.0,0.0,2.608731947574922 -277,26.0,28.0,-0.99553355095268,1.881005840357816 -277,26.0,29.0,-0.6874559028276572,1.293971494797717 -277,27.0,5.0,-4.362844058012917,15.463571542897856 -277,27.0,7.0,-1.4439790613954469,4.540814658476248 -277,27.0,26.0,0.0,2.608731947574922 -277,27.0,27.0,5.806823119408364,-22.67145722159613 -277,28.0,26.0,-0.99553355095268,1.881005840357816 -277,28.0,28.0,1.9075867579849564,-3.604364401207048 -277,28.0,29.0,-0.9120532070322764,1.7233585608492326 -277,29.0,26.0,-0.6874559028276572,1.293971494797717 -277,29.0,28.0,-0.9120532070322764,1.7233585608492326 -277,29.0,29.0,1.5995091098599337,-3.0173300556469496 -278,0.0,0.0,6.765516048652632,-21.23160167089863 -278,0.0,1.0,-5.224646179885656,15.646726840803398 -278,0.0,2.0,-1.5408698687669766,5.631674830095234 -278,1.0,0.0,-5.224646179885656,15.646726840803398 -278,1.0,1.0,9.75228216552403,-30.648662892676068 -278,1.0,3.0,-1.7055303166990268,5.1973792282565086 -278,1.0,4.0,-1.1359607881738778,4.772479328281356 -278,1.0,5.0,-1.6861448807654689,5.116477495334806 -278,2.0,0.0,-1.5408698687669766,5.631674830095234 -278,2.0,2.0,9.736318911079088,-29.13794745915803 -278,2.0,3.0,-8.19544904231211,23.5308726290628 -278,3.0,1.0,-1.7055303166990268,5.1973792282565086 -278,3.0,2.0,-8.19544904231211,23.5308726290628 -278,3.0,3.0,16.314103089185693,-55.509410535254254 -278,3.0,5.0,-6.413123730174556,22.31120356548123 -278,3.0,11.0,0.0,4.191255364806866 -278,4.0,1.0,-1.1359607881738778,4.772479328281356 -278,4.0,4.0,4.089980824135861,-12.190647245055052 -278,4.0,6.0,-2.954020035961983,7.449267916773697 -278,5.0,1.0,-1.6861448807654689,5.116477495334806 -278,5.0,3.0,-6.413123730174556,22.31120356548123 -278,5.0,5.0,22.341631269034565,-82.8291478657789 -278,5.0,6.0,-3.590210423980992,11.02611441072814 -278,5.0,7.0,-6.289308176100628,22.0125786163522 -278,5.0,8.0,0.0,4.915840805411357 -278,5.0,9.0,0.0,1.8561002591115965 -278,5.0,27.0,-4.362844058012917,15.463571542897856 -278,6.0,4.0,-2.954020035961983,7.449267916773697 -278,6.0,5.0,-3.590210423980992,11.02611441072814 -278,6.0,6.0,6.544230459942975,-18.45668232750184 -278,7.0,5.0,-6.289308176100628,22.0125786163522 -278,7.0,7.0,7.733287237496075,-26.527493274828448 -278,7.0,27.0,-1.4439790613954469,4.540814658476248 -278,8.0,5.0,0.0,4.915840805411357 -278,8.0,8.0,0.0,-18.706293706293707 -278,8.0,9.0,0.0,9.090909090909092 -278,8.0,10.0,0.0,4.807692307692308 -278,9.0,5.0,0.0,1.8561002591115965 -278,9.0,8.0,0.0,9.090909090909092 -278,9.0,9.0,13.462042814524237,-41.3837606675224 -278,9.0,16.0,-3.956039125715353,10.317447719844054 -278,9.0,19.0,-1.7848303152666305,3.98535828943083 -278,9.0,20.0,-5.101853820159654,10.98071411292983 -278,9.0,21.0,-2.619319553382597,5.400770303329455 -278,10.0,8.0,0.0,4.807692307692308 -278,10.0,10.0,0.0,-4.807692307692308 -278,11.0,3.0,0.0,4.191255364806866 -278,11.0,11.0,6.573961583776156,-24.424167659260668 -278,11.0,12.0,0.0,7.142857142857143 -278,11.0,13.0,-1.5265676088395577,3.1734252729654173 -278,11.0,14.0,-3.0953961826564296,6.097275864326261 -278,11.0,15.0,-1.9519977922801688,4.104359379111847 -278,12.0,11.0,0.0,7.142857142857143 -278,12.0,12.0,0.0,-7.142857142857143 -278,13.0,11.0,-1.5265676088395577,3.1734252729654173 -278,13.0,13.0,4.01751987283902,-5.424299332335067 -278,13.0,14.0,-2.4909522639994623,2.250874059369649 -278,14.0,11.0,-3.0953961826564296,6.097275864326261 -278,14.0,13.0,-2.4909522639994623,2.250874059369649 -278,14.0,14.0,9.365498545964757,-16.01163373210796 -278,14.0,17.0,-1.8108011504072024,3.687418931630696 -278,14.0,22.0,-1.9683489489016612,3.976064876781356 -278,15.0,11.0,-1.9519977922801688,4.104359379111847 -278,15.0,15.0,3.271064728633931,-8.94513365126506 -278,15.0,16.0,-1.3190669363537617,4.8407742721532125 -278,16.0,9.0,-3.956039125715353,10.317447719844054 -278,16.0,15.0,-1.3190669363537617,4.8407742721532125 -278,16.0,16.0,5.275106062069114,-15.158221991997266 -278,17.0,14.0,-1.8108011504072024,3.687418931630696 -278,17.0,17.0,4.886487584415919,-9.906177730909668 -278,17.0,18.0,-3.0756864340087167,6.218758799278971 -278,18.0,17.0,-3.0756864340087167,6.218758799278971 -278,18.0,18.0,8.958039375185187,-17.98346468163191 -278,18.0,19.0,-5.88235294117647,11.76470588235294 -278,19.0,9.0,-1.7848303152666305,3.98535828943083 -278,19.0,18.0,-5.88235294117647,11.76470588235294 -278,19.0,19.0,7.6671832564431,-15.75006417178377 -278,20.0,9.0,-5.101853820159654,10.98071411292983 -278,20.0,20.0,21.876495189895888,-45.10843276170355 -278,20.0,21.0,-16.774641369736234,34.127718648773715 -278,21.0,9.0,-2.619319553382597,5.400770303329455 -278,21.0,20.0,-16.774641369736234,34.127718648773715 -278,21.0,21.0,21.93449907537439,-43.48289181517921 -278,21.0,23.0,-2.5405381522555563,3.95440286307604 -278,22.0,14.0,-1.9683489489016612,3.976064876781356 -278,22.0,22.0,3.429754555384988,-6.965303617315433 -278,22.0,23.0,-1.4614056064833263,2.989238740534077 -278,23.0,21.0,-2.5405381522555563,3.95440286307604 -278,23.0,22.0,-1.4614056064833263,2.989238740534077 -278,23.0,23.0,5.311836702613133,-9.188263657315172 -278,23.0,24.0,-1.3098929438742493,2.287622053705056 -278,24.0,23.0,-1.3098929438742493,2.287622053705056 -278,24.0,24.0,4.495715080321987,-7.864978761969621 -278,24.0,25.0,-1.2165301194494855,1.8171440463475024 -278,24.0,26.0,-1.9692920169982515,3.760212661917064 -278,25.0,24.0,-1.2165301194494855,1.8171440463475024 -278,25.0,25.0,1.2165301194494855,-1.8171440463475024 -278,26.0,24.0,-1.9692920169982515,3.760212661917064 -278,26.0,26.0,3.652281470778589,-9.46044252232512 -278,26.0,27.0,0.0,2.608731947574922 -278,26.0,28.0,-0.99553355095268,1.881005840357816 -278,26.0,29.0,-0.6874559028276572,1.293971494797717 -278,27.0,5.0,-4.362844058012917,15.463571542897856 -278,27.0,7.0,-1.4439790613954469,4.540814658476248 -278,27.0,26.0,0.0,2.608731947574922 -278,27.0,27.0,5.806823119408364,-22.67145722159613 -278,28.0,26.0,-0.99553355095268,1.881005840357816 -278,28.0,28.0,1.9075867579849564,-3.604364401207048 -278,28.0,29.0,-0.9120532070322764,1.7233585608492326 -278,29.0,26.0,-0.6874559028276572,1.293971494797717 -278,29.0,28.0,-0.9120532070322764,1.7233585608492326 -278,29.0,29.0,1.5995091098599337,-3.0173300556469496 -279,0.0,0.0,5.224646179885656,-15.620326840803395 -279,0.0,1.0,-5.224646179885656,15.646726840803398 -279,1.0,0.0,-5.224646179885656,15.646726840803398 -279,1.0,1.0,8.046751848825002,-25.46968366441956 -279,1.0,4.0,-1.1359607881738778,4.772479328281356 -279,1.0,5.0,-1.6861448807654689,5.116477495334806 -279,2.0,2.0,8.19544904231211,-23.5266726290628 -279,2.0,3.0,-8.19544904231211,23.5308726290628 -279,3.0,2.0,-8.19544904231211,23.5308726290628 -279,3.0,3.0,14.608572772486664,-50.33043130699775 -279,3.0,5.0,-6.413123730174556,22.31120356548123 -279,3.0,11.0,0.0,4.191255364806866 -279,4.0,1.0,-1.1359607881738778,4.772479328281356 -279,4.0,4.0,1.1359607881738778,-4.751579328281355 -279,5.0,1.0,-1.6861448807654689,5.116477495334806 -279,5.0,3.0,-6.413123730174556,22.31120356548123 -279,5.0,5.0,22.341631269034565,-82.8291478657789 -279,5.0,6.0,-3.590210423980992,11.02611441072814 -279,5.0,7.0,-6.289308176100628,22.0125786163522 -279,5.0,8.0,0.0,4.915840805411357 -279,5.0,9.0,0.0,1.8561002591115965 -279,5.0,27.0,-4.362844058012917,15.463571542897856 -279,6.0,5.0,-3.590210423980992,11.02611441072814 -279,6.0,6.0,3.590210423980992,-11.01761441072814 -279,7.0,5.0,-6.289308176100628,22.0125786163522 -279,7.0,7.0,7.733287237496075,-26.527493274828448 -279,7.0,27.0,-1.4439790613954469,4.540814658476248 -279,8.0,5.0,0.0,4.915840805411357 -279,8.0,8.0,0.0,-18.706293706293707 -279,8.0,9.0,0.0,9.090909090909092 -279,8.0,10.0,0.0,4.807692307692308 -279,9.0,5.0,0.0,1.8561002591115965 -279,9.0,8.0,0.0,9.090909090909092 -279,9.0,9.0,13.462042814524237,-41.3837606675224 -279,9.0,16.0,-3.956039125715353,10.317447719844054 -279,9.0,19.0,-1.7848303152666305,3.98535828943083 -279,9.0,20.0,-5.101853820159654,10.98071411292983 -279,9.0,21.0,-2.619319553382597,5.400770303329455 -279,10.0,8.0,0.0,4.807692307692308 -279,10.0,10.0,0.0,-4.807692307692308 -279,11.0,3.0,0.0,4.191255364806866 -279,11.0,11.0,6.573961583776156,-24.424167659260668 -279,11.0,12.0,0.0,7.142857142857143 -279,11.0,13.0,-1.5265676088395577,3.1734252729654173 -279,11.0,14.0,-3.0953961826564296,6.097275864326261 -279,11.0,15.0,-1.9519977922801688,4.104359379111847 -279,12.0,11.0,0.0,7.142857142857143 -279,12.0,12.0,0.0,-7.142857142857143 -279,13.0,11.0,-1.5265676088395577,3.1734252729654173 -279,13.0,13.0,4.01751987283902,-5.424299332335067 -279,13.0,14.0,-2.4909522639994623,2.250874059369649 -279,14.0,11.0,-3.0953961826564296,6.097275864326261 -279,14.0,13.0,-2.4909522639994623,2.250874059369649 -279,14.0,14.0,9.365498545964757,-16.01163373210796 -279,14.0,17.0,-1.8108011504072024,3.687418931630696 -279,14.0,22.0,-1.9683489489016612,3.976064876781356 -279,15.0,11.0,-1.9519977922801688,4.104359379111847 -279,15.0,15.0,3.271064728633931,-8.94513365126506 -279,15.0,16.0,-1.3190669363537617,4.8407742721532125 -279,16.0,9.0,-3.956039125715353,10.317447719844054 -279,16.0,15.0,-1.3190669363537617,4.8407742721532125 -279,16.0,16.0,5.275106062069114,-15.158221991997266 -279,17.0,14.0,-1.8108011504072024,3.687418931630696 -279,17.0,17.0,4.886487584415919,-9.906177730909668 -279,17.0,18.0,-3.0756864340087167,6.218758799278971 -279,18.0,17.0,-3.0756864340087167,6.218758799278971 -279,18.0,18.0,8.958039375185187,-17.98346468163191 -279,18.0,19.0,-5.88235294117647,11.76470588235294 -279,19.0,9.0,-1.7848303152666305,3.98535828943083 -279,19.0,18.0,-5.88235294117647,11.76470588235294 -279,19.0,19.0,7.6671832564431,-15.75006417178377 -279,20.0,9.0,-5.101853820159654,10.98071411292983 -279,20.0,20.0,21.876495189895888,-45.10843276170355 -279,20.0,21.0,-16.774641369736234,34.127718648773715 -279,21.0,9.0,-2.619319553382597,5.400770303329455 -279,21.0,20.0,-16.774641369736234,34.127718648773715 -279,21.0,21.0,21.93449907537439,-43.48289181517921 -279,21.0,23.0,-2.5405381522555563,3.95440286307604 -279,22.0,14.0,-1.9683489489016612,3.976064876781356 -279,22.0,22.0,3.429754555384988,-6.965303617315433 -279,22.0,23.0,-1.4614056064833263,2.989238740534077 -279,23.0,21.0,-2.5405381522555563,3.95440286307604 -279,23.0,22.0,-1.4614056064833263,2.989238740534077 -279,23.0,23.0,5.311836702613133,-9.188263657315172 -279,23.0,24.0,-1.3098929438742493,2.287622053705056 -279,24.0,23.0,-1.3098929438742493,2.287622053705056 -279,24.0,24.0,4.495715080321987,-7.864978761969621 -279,24.0,25.0,-1.2165301194494855,1.8171440463475024 -279,24.0,26.0,-1.9692920169982515,3.760212661917064 -279,25.0,24.0,-1.2165301194494855,1.8171440463475024 -279,25.0,25.0,1.2165301194494855,-1.8171440463475024 -279,26.0,24.0,-1.9692920169982515,3.760212661917064 -279,26.0,26.0,3.652281470778589,-9.46044252232512 -279,26.0,27.0,0.0,2.608731947574922 -279,26.0,28.0,-0.99553355095268,1.881005840357816 -279,26.0,29.0,-0.6874559028276572,1.293971494797717 -279,27.0,5.0,-4.362844058012917,15.463571542897856 -279,27.0,7.0,-1.4439790613954469,4.540814658476248 -279,27.0,26.0,0.0,2.608731947574922 -279,27.0,27.0,5.806823119408364,-22.67145722159613 -279,28.0,26.0,-0.99553355095268,1.881005840357816 -279,28.0,28.0,1.9075867579849564,-3.604364401207048 -279,28.0,29.0,-0.9120532070322764,1.7233585608492326 -279,29.0,26.0,-0.6874559028276572,1.293971494797717 -279,29.0,28.0,-0.9120532070322764,1.7233585608492326 -279,29.0,29.0,1.5995091098599337,-3.0173300556469496 -280,0.0,0.0,6.765516048652632,-21.23160167089863 -280,0.0,1.0,-5.224646179885656,15.646726840803398 -280,0.0,2.0,-1.5408698687669766,5.631674830095234 -280,1.0,0.0,-5.224646179885656,15.646726840803398 -280,1.0,1.0,9.75228216552403,-30.648662892676068 -280,1.0,3.0,-1.7055303166990268,5.1973792282565086 -280,1.0,4.0,-1.1359607881738778,4.772479328281356 -280,1.0,5.0,-1.6861448807654689,5.116477495334806 -280,2.0,0.0,-1.5408698687669766,5.631674830095234 -280,2.0,2.0,9.736318911079088,-29.13794745915803 -280,2.0,3.0,-8.19544904231211,23.5308726290628 -280,3.0,1.0,-1.7055303166990268,5.1973792282565086 -280,3.0,2.0,-8.19544904231211,23.5308726290628 -280,3.0,3.0,16.314103089185693,-55.509410535254254 -280,3.0,5.0,-6.413123730174556,22.31120356548123 -280,3.0,11.0,0.0,4.191255364806866 -280,4.0,1.0,-1.1359607881738778,4.772479328281356 -280,4.0,4.0,4.089980824135861,-12.190647245055052 -280,4.0,6.0,-2.954020035961983,7.449267916773697 -280,5.0,1.0,-1.6861448807654689,5.116477495334806 -280,5.0,3.0,-6.413123730174556,22.31120356548123 -280,5.0,5.0,22.341631269034565,-82.8291478657789 -280,5.0,6.0,-3.590210423980992,11.02611441072814 -280,5.0,7.0,-6.289308176100628,22.0125786163522 -280,5.0,8.0,0.0,4.915840805411357 -280,5.0,9.0,0.0,1.8561002591115965 -280,5.0,27.0,-4.362844058012917,15.463571542897856 -280,6.0,4.0,-2.954020035961983,7.449267916773697 -280,6.0,5.0,-3.590210423980992,11.02611441072814 -280,6.0,6.0,6.544230459942975,-18.45668232750184 -280,7.0,5.0,-6.289308176100628,22.0125786163522 -280,7.0,7.0,7.733287237496075,-26.527493274828448 -280,7.0,27.0,-1.4439790613954469,4.540814658476248 -280,8.0,5.0,0.0,4.915840805411357 -280,8.0,8.0,0.0,-18.706293706293707 -280,8.0,9.0,0.0,9.090909090909092 -280,8.0,10.0,0.0,4.807692307692308 -280,9.0,5.0,0.0,1.8561002591115965 -280,9.0,8.0,0.0,9.090909090909092 -280,9.0,9.0,13.462042814524237,-41.3837606675224 -280,9.0,16.0,-3.956039125715353,10.317447719844054 -280,9.0,19.0,-1.7848303152666305,3.98535828943083 -280,9.0,20.0,-5.101853820159654,10.98071411292983 -280,9.0,21.0,-2.619319553382597,5.400770303329455 -280,10.0,8.0,0.0,4.807692307692308 -280,10.0,10.0,0.0,-4.807692307692308 -280,11.0,3.0,0.0,4.191255364806866 -280,11.0,11.0,6.573961583776156,-24.424167659260668 -280,11.0,12.0,0.0,7.142857142857143 -280,11.0,13.0,-1.5265676088395577,3.1734252729654173 -280,11.0,14.0,-3.0953961826564296,6.097275864326261 -280,11.0,15.0,-1.9519977922801688,4.104359379111847 -280,12.0,11.0,0.0,7.142857142857143 -280,12.0,12.0,0.0,-7.142857142857143 -280,13.0,11.0,-1.5265676088395577,3.1734252729654173 -280,13.0,13.0,4.01751987283902,-5.424299332335067 -280,13.0,14.0,-2.4909522639994623,2.250874059369649 -280,14.0,11.0,-3.0953961826564296,6.097275864326261 -280,14.0,13.0,-2.4909522639994623,2.250874059369649 -280,14.0,14.0,9.365498545964757,-16.01163373210796 -280,14.0,17.0,-1.8108011504072024,3.687418931630696 -280,14.0,22.0,-1.9683489489016612,3.976064876781356 -280,15.0,11.0,-1.9519977922801688,4.104359379111847 -280,15.0,15.0,3.271064728633931,-8.94513365126506 -280,15.0,16.0,-1.3190669363537617,4.8407742721532125 -280,16.0,9.0,-3.956039125715353,10.317447719844054 -280,16.0,15.0,-1.3190669363537617,4.8407742721532125 -280,16.0,16.0,5.275106062069114,-15.158221991997266 -280,17.0,14.0,-1.8108011504072024,3.687418931630696 -280,17.0,17.0,4.886487584415919,-9.906177730909668 -280,17.0,18.0,-3.0756864340087167,6.218758799278971 -280,18.0,17.0,-3.0756864340087167,6.218758799278971 -280,18.0,18.0,8.958039375185187,-17.98346468163191 -280,18.0,19.0,-5.88235294117647,11.76470588235294 -280,19.0,9.0,-1.7848303152666305,3.98535828943083 -280,19.0,18.0,-5.88235294117647,11.76470588235294 -280,19.0,19.0,7.6671832564431,-15.75006417178377 -280,20.0,9.0,-5.101853820159654,10.98071411292983 -280,20.0,20.0,21.876495189895888,-45.10843276170355 -280,20.0,21.0,-16.774641369736234,34.127718648773715 -280,21.0,9.0,-2.619319553382597,5.400770303329455 -280,21.0,20.0,-16.774641369736234,34.127718648773715 -280,21.0,21.0,21.93449907537439,-43.48289181517921 -280,21.0,23.0,-2.5405381522555563,3.95440286307604 -280,22.0,14.0,-1.9683489489016612,3.976064876781356 -280,22.0,22.0,3.429754555384988,-6.965303617315433 -280,22.0,23.0,-1.4614056064833263,2.989238740534077 -280,23.0,21.0,-2.5405381522555563,3.95440286307604 -280,23.0,22.0,-1.4614056064833263,2.989238740534077 -280,23.0,23.0,5.311836702613133,-9.188263657315172 -280,23.0,24.0,-1.3098929438742493,2.287622053705056 -280,24.0,23.0,-1.3098929438742493,2.287622053705056 -280,24.0,24.0,4.495715080321987,-7.864978761969621 -280,24.0,25.0,-1.2165301194494855,1.8171440463475024 -280,24.0,26.0,-1.9692920169982515,3.760212661917064 -280,25.0,24.0,-1.2165301194494855,1.8171440463475024 -280,25.0,25.0,1.2165301194494855,-1.8171440463475024 -280,26.0,24.0,-1.9692920169982515,3.760212661917064 -280,26.0,26.0,3.652281470778589,-9.46044252232512 -280,26.0,27.0,0.0,2.608731947574922 -280,26.0,28.0,-0.99553355095268,1.881005840357816 -280,26.0,29.0,-0.6874559028276572,1.293971494797717 -280,27.0,5.0,-4.362844058012917,15.463571542897856 -280,27.0,7.0,-1.4439790613954469,4.540814658476248 -280,27.0,26.0,0.0,2.608731947574922 -280,27.0,27.0,5.806823119408364,-22.67145722159613 -280,28.0,26.0,-0.99553355095268,1.881005840357816 -280,28.0,28.0,1.9075867579849564,-3.604364401207048 -280,28.0,29.0,-0.9120532070322764,1.7233585608492326 -280,29.0,26.0,-0.6874559028276572,1.293971494797717 -280,29.0,28.0,-0.9120532070322764,1.7233585608492326 -280,29.0,29.0,1.5995091098599337,-3.0173300556469496 -281,0.0,0.0,6.765516048652632,-21.23160167089863 -281,0.0,1.0,-5.224646179885656,15.646726840803398 -281,0.0,2.0,-1.5408698687669766,5.631674830095234 -281,1.0,0.0,-5.224646179885656,15.646726840803398 -281,1.0,1.0,9.75228216552403,-30.648662892676068 -281,1.0,3.0,-1.7055303166990268,5.1973792282565086 -281,1.0,4.0,-1.1359607881738778,4.772479328281356 -281,1.0,5.0,-1.6861448807654689,5.116477495334806 -281,2.0,0.0,-1.5408698687669766,5.631674830095234 -281,2.0,2.0,9.736318911079088,-29.13794745915803 -281,2.0,3.0,-8.19544904231211,23.5308726290628 -281,3.0,1.0,-1.7055303166990268,5.1973792282565086 -281,3.0,2.0,-8.19544904231211,23.5308726290628 -281,3.0,3.0,16.314103089185693,-55.509410535254254 -281,3.0,5.0,-6.413123730174556,22.31120356548123 -281,3.0,11.0,0.0,4.191255364806866 -281,4.0,1.0,-1.1359607881738778,4.772479328281356 -281,4.0,4.0,4.089980824135861,-12.190647245055052 -281,4.0,6.0,-2.954020035961983,7.449267916773697 -281,5.0,1.0,-1.6861448807654689,5.116477495334806 -281,5.0,3.0,-6.413123730174556,22.31120356548123 -281,5.0,5.0,22.341631269034565,-82.8291478657789 -281,5.0,6.0,-3.590210423980992,11.02611441072814 -281,5.0,7.0,-6.289308176100628,22.0125786163522 -281,5.0,8.0,0.0,4.915840805411357 -281,5.0,9.0,0.0,1.8561002591115965 -281,5.0,27.0,-4.362844058012917,15.463571542897856 -281,6.0,4.0,-2.954020035961983,7.449267916773697 -281,6.0,5.0,-3.590210423980992,11.02611441072814 -281,6.0,6.0,6.544230459942975,-18.45668232750184 -281,7.0,5.0,-6.289308176100628,22.0125786163522 -281,7.0,7.0,7.733287237496075,-26.527493274828448 -281,7.0,27.0,-1.4439790613954469,4.540814658476248 -281,8.0,5.0,0.0,4.915840805411357 -281,8.0,8.0,0.0,-18.706293706293707 -281,8.0,9.0,0.0,9.090909090909092 -281,8.0,10.0,0.0,4.807692307692308 -281,9.0,5.0,0.0,1.8561002591115965 -281,9.0,8.0,0.0,9.090909090909092 -281,9.0,9.0,13.462042814524237,-41.3837606675224 -281,9.0,16.0,-3.956039125715353,10.317447719844054 -281,9.0,19.0,-1.7848303152666305,3.98535828943083 -281,9.0,20.0,-5.101853820159654,10.98071411292983 -281,9.0,21.0,-2.619319553382597,5.400770303329455 -281,10.0,8.0,0.0,4.807692307692308 -281,10.0,10.0,0.0,-4.807692307692308 -281,11.0,3.0,0.0,4.191255364806866 -281,11.0,11.0,6.573961583776156,-24.424167659260668 -281,11.0,12.0,0.0,7.142857142857143 -281,11.0,13.0,-1.5265676088395577,3.1734252729654173 -281,11.0,14.0,-3.0953961826564296,6.097275864326261 -281,11.0,15.0,-1.9519977922801688,4.104359379111847 -281,12.0,11.0,0.0,7.142857142857143 -281,12.0,12.0,0.0,-7.142857142857143 -281,13.0,11.0,-1.5265676088395577,3.1734252729654173 -281,13.0,13.0,4.01751987283902,-5.424299332335067 -281,13.0,14.0,-2.4909522639994623,2.250874059369649 -281,14.0,11.0,-3.0953961826564296,6.097275864326261 -281,14.0,13.0,-2.4909522639994623,2.250874059369649 -281,14.0,14.0,7.554697395557554,-12.324214800477266 -281,14.0,22.0,-1.9683489489016612,3.976064876781356 -281,15.0,11.0,-1.9519977922801688,4.104359379111847 -281,15.0,15.0,3.271064728633931,-8.94513365126506 -281,15.0,16.0,-1.3190669363537617,4.8407742721532125 -281,16.0,9.0,-3.956039125715353,10.317447719844054 -281,16.0,15.0,-1.3190669363537617,4.8407742721532125 -281,16.0,16.0,5.275106062069114,-15.158221991997266 -281,17.0,17.0,3.0756864340087167,-6.218758799278971 -281,17.0,18.0,-3.0756864340087167,6.218758799278971 -281,18.0,17.0,-3.0756864340087167,6.218758799278971 -281,18.0,18.0,8.958039375185187,-17.98346468163191 -281,18.0,19.0,-5.88235294117647,11.76470588235294 -281,19.0,9.0,-1.7848303152666305,3.98535828943083 -281,19.0,18.0,-5.88235294117647,11.76470588235294 -281,19.0,19.0,7.6671832564431,-15.75006417178377 -281,20.0,9.0,-5.101853820159654,10.98071411292983 -281,20.0,20.0,21.876495189895888,-45.10843276170355 -281,20.0,21.0,-16.774641369736234,34.127718648773715 -281,21.0,9.0,-2.619319553382597,5.400770303329455 -281,21.0,20.0,-16.774641369736234,34.127718648773715 -281,21.0,21.0,19.393960923118836,-39.52848895210317 -281,22.0,14.0,-1.9683489489016612,3.976064876781356 -281,22.0,22.0,3.429754555384988,-6.965303617315433 -281,22.0,23.0,-1.4614056064833263,2.989238740534077 -281,23.0,22.0,-1.4614056064833263,2.989238740534077 -281,23.0,23.0,2.771298550357576,-5.233860794239132 -281,23.0,24.0,-1.3098929438742493,2.287622053705056 -281,24.0,23.0,-1.3098929438742493,2.287622053705056 -281,24.0,24.0,4.495715080321987,-7.864978761969621 -281,24.0,25.0,-1.2165301194494855,1.8171440463475024 -281,24.0,26.0,-1.9692920169982515,3.760212661917064 -281,25.0,24.0,-1.2165301194494855,1.8171440463475024 -281,25.0,25.0,1.2165301194494855,-1.8171440463475024 -281,26.0,24.0,-1.9692920169982515,3.760212661917064 -281,26.0,26.0,3.652281470778589,-9.46044252232512 -281,26.0,27.0,0.0,2.608731947574922 -281,26.0,28.0,-0.99553355095268,1.881005840357816 -281,26.0,29.0,-0.6874559028276572,1.293971494797717 -281,27.0,5.0,-4.362844058012917,15.463571542897856 -281,27.0,7.0,-1.4439790613954469,4.540814658476248 -281,27.0,26.0,0.0,2.608731947574922 -281,27.0,27.0,5.806823119408364,-22.67145722159613 -281,28.0,26.0,-0.99553355095268,1.881005840357816 -281,28.0,28.0,1.9075867579849564,-3.604364401207048 -281,28.0,29.0,-0.9120532070322764,1.7233585608492326 -281,29.0,26.0,-0.6874559028276572,1.293971494797717 -281,29.0,28.0,-0.9120532070322764,1.7233585608492326 -281,29.0,29.0,1.5995091098599337,-3.0173300556469496 -282,0.0,0.0,6.765516048652632,-21.23160167089863 -282,0.0,1.0,-5.224646179885656,15.646726840803398 -282,0.0,2.0,-1.5408698687669766,5.631674830095234 -282,1.0,0.0,-5.224646179885656,15.646726840803398 -282,1.0,1.0,8.046751848825002,-25.46968366441956 -282,1.0,4.0,-1.1359607881738778,4.772479328281356 -282,1.0,5.0,-1.6861448807654689,5.116477495334806 -282,2.0,0.0,-1.5408698687669766,5.631674830095234 -282,2.0,2.0,9.736318911079088,-29.13794745915803 -282,2.0,3.0,-8.19544904231211,23.5308726290628 -282,3.0,2.0,-8.19544904231211,23.5308726290628 -282,3.0,3.0,14.608572772486664,-50.33043130699775 -282,3.0,5.0,-6.413123730174556,22.31120356548123 -282,3.0,11.0,0.0,4.191255364806866 -282,4.0,1.0,-1.1359607881738778,4.772479328281356 -282,4.0,4.0,4.089980824135861,-12.190647245055052 -282,4.0,6.0,-2.954020035961983,7.449267916773697 -282,5.0,1.0,-1.6861448807654689,5.116477495334806 -282,5.0,3.0,-6.413123730174556,22.31120356548123 -282,5.0,5.0,22.341631269034565,-82.8291478657789 -282,5.0,6.0,-3.590210423980992,11.02611441072814 -282,5.0,7.0,-6.289308176100628,22.0125786163522 -282,5.0,8.0,0.0,4.915840805411357 -282,5.0,9.0,0.0,1.8561002591115965 -282,5.0,27.0,-4.362844058012917,15.463571542897856 -282,6.0,4.0,-2.954020035961983,7.449267916773697 -282,6.0,5.0,-3.590210423980992,11.02611441072814 -282,6.0,6.0,6.544230459942975,-18.45668232750184 -282,7.0,5.0,-6.289308176100628,22.0125786163522 -282,7.0,7.0,7.733287237496075,-26.527493274828448 -282,7.0,27.0,-1.4439790613954469,4.540814658476248 -282,8.0,5.0,0.0,4.915840805411357 -282,8.0,8.0,0.0,-18.706293706293707 -282,8.0,9.0,0.0,9.090909090909092 -282,8.0,10.0,0.0,4.807692307692308 -282,9.0,5.0,0.0,1.8561002591115965 -282,9.0,8.0,0.0,9.090909090909092 -282,9.0,9.0,13.462042814524237,-41.3837606675224 -282,9.0,16.0,-3.956039125715353,10.317447719844054 -282,9.0,19.0,-1.7848303152666305,3.98535828943083 -282,9.0,20.0,-5.101853820159654,10.98071411292983 -282,9.0,21.0,-2.619319553382597,5.400770303329455 -282,10.0,8.0,0.0,4.807692307692308 -282,10.0,10.0,0.0,-4.807692307692308 -282,11.0,3.0,0.0,4.191255364806866 -282,11.0,11.0,6.573961583776156,-24.424167659260668 -282,11.0,12.0,0.0,7.142857142857143 -282,11.0,13.0,-1.5265676088395577,3.1734252729654173 -282,11.0,14.0,-3.0953961826564296,6.097275864326261 -282,11.0,15.0,-1.9519977922801688,4.104359379111847 -282,12.0,11.0,0.0,7.142857142857143 -282,12.0,12.0,0.0,-7.142857142857143 -282,13.0,11.0,-1.5265676088395577,3.1734252729654173 -282,13.0,13.0,4.01751987283902,-5.424299332335067 -282,13.0,14.0,-2.4909522639994623,2.250874059369649 -282,14.0,11.0,-3.0953961826564296,6.097275864326261 -282,14.0,13.0,-2.4909522639994623,2.250874059369649 -282,14.0,14.0,9.365498545964757,-16.01163373210796 -282,14.0,17.0,-1.8108011504072024,3.687418931630696 -282,14.0,22.0,-1.9683489489016612,3.976064876781356 -282,15.0,11.0,-1.9519977922801688,4.104359379111847 -282,15.0,15.0,3.271064728633931,-8.94513365126506 -282,15.0,16.0,-1.3190669363537617,4.8407742721532125 -282,16.0,9.0,-3.956039125715353,10.317447719844054 -282,16.0,15.0,-1.3190669363537617,4.8407742721532125 -282,16.0,16.0,5.275106062069114,-15.158221991997266 -282,17.0,14.0,-1.8108011504072024,3.687418931630696 -282,17.0,17.0,4.886487584415919,-9.906177730909668 -282,17.0,18.0,-3.0756864340087167,6.218758799278971 -282,18.0,17.0,-3.0756864340087167,6.218758799278971 -282,18.0,18.0,8.958039375185187,-17.98346468163191 -282,18.0,19.0,-5.88235294117647,11.76470588235294 -282,19.0,9.0,-1.7848303152666305,3.98535828943083 -282,19.0,18.0,-5.88235294117647,11.76470588235294 -282,19.0,19.0,7.6671832564431,-15.75006417178377 -282,20.0,9.0,-5.101853820159654,10.98071411292983 -282,20.0,20.0,21.876495189895888,-45.10843276170355 -282,20.0,21.0,-16.774641369736234,34.127718648773715 -282,21.0,9.0,-2.619319553382597,5.400770303329455 -282,21.0,20.0,-16.774641369736234,34.127718648773715 -282,21.0,21.0,21.93449907537439,-43.48289181517921 -282,21.0,23.0,-2.5405381522555563,3.95440286307604 -282,22.0,14.0,-1.9683489489016612,3.976064876781356 -282,22.0,22.0,3.429754555384988,-6.965303617315433 -282,22.0,23.0,-1.4614056064833263,2.989238740534077 -282,23.0,21.0,-2.5405381522555563,3.95440286307604 -282,23.0,22.0,-1.4614056064833263,2.989238740534077 -282,23.0,23.0,5.311836702613133,-9.188263657315172 -282,23.0,24.0,-1.3098929438742493,2.287622053705056 -282,24.0,23.0,-1.3098929438742493,2.287622053705056 -282,24.0,24.0,4.495715080321987,-7.864978761969621 -282,24.0,25.0,-1.2165301194494855,1.8171440463475024 -282,24.0,26.0,-1.9692920169982515,3.760212661917064 -282,25.0,24.0,-1.2165301194494855,1.8171440463475024 -282,25.0,25.0,1.2165301194494855,-1.8171440463475024 -282,26.0,24.0,-1.9692920169982515,3.760212661917064 -282,26.0,26.0,3.652281470778589,-9.46044252232512 -282,26.0,27.0,0.0,2.608731947574922 -282,26.0,28.0,-0.99553355095268,1.881005840357816 -282,26.0,29.0,-0.6874559028276572,1.293971494797717 -282,27.0,5.0,-4.362844058012917,15.463571542897856 -282,27.0,7.0,-1.4439790613954469,4.540814658476248 -282,27.0,26.0,0.0,2.608731947574922 -282,27.0,27.0,5.806823119408364,-22.67145722159613 -282,28.0,26.0,-0.99553355095268,1.881005840357816 -282,28.0,28.0,1.9075867579849564,-3.604364401207048 -282,28.0,29.0,-0.9120532070322764,1.7233585608492326 -282,29.0,26.0,-0.6874559028276572,1.293971494797717 -282,29.0,28.0,-0.9120532070322764,1.7233585608492326 -282,29.0,29.0,1.5995091098599337,-3.0173300556469496 -283,0.0,0.0,6.765516048652632,-21.23160167089863 -283,0.0,1.0,-5.224646179885656,15.646726840803398 -283,0.0,2.0,-1.5408698687669766,5.631674830095234 -283,1.0,0.0,-5.224646179885656,15.646726840803398 -283,1.0,1.0,8.046751848825002,-25.46968366441956 -283,1.0,4.0,-1.1359607881738778,4.772479328281356 -283,1.0,5.0,-1.6861448807654689,5.116477495334806 -283,2.0,0.0,-1.5408698687669766,5.631674830095234 -283,2.0,2.0,9.736318911079088,-29.13794745915803 -283,2.0,3.0,-8.19544904231211,23.5308726290628 -283,3.0,2.0,-8.19544904231211,23.5308726290628 -283,3.0,3.0,14.608572772486664,-50.33043130699775 -283,3.0,5.0,-6.413123730174556,22.31120356548123 -283,3.0,11.0,0.0,4.191255364806866 -283,4.0,1.0,-1.1359607881738778,4.772479328281356 -283,4.0,4.0,4.089980824135861,-12.190647245055052 -283,4.0,6.0,-2.954020035961983,7.449267916773697 -283,5.0,1.0,-1.6861448807654689,5.116477495334806 -283,5.0,3.0,-6.413123730174556,22.31120356548123 -283,5.0,5.0,18.75142084505357,-71.81153345505078 -283,5.0,7.0,-6.289308176100628,22.0125786163522 -283,5.0,8.0,0.0,4.915840805411357 -283,5.0,9.0,0.0,1.8561002591115965 -283,5.0,27.0,-4.362844058012917,15.463571542897856 -283,6.0,4.0,-2.954020035961983,7.449267916773697 -283,6.0,6.0,2.954020035961983,-7.439067916773697 -283,7.0,5.0,-6.289308176100628,22.0125786163522 -283,7.0,7.0,7.733287237496075,-26.527493274828448 -283,7.0,27.0,-1.4439790613954469,4.540814658476248 -283,8.0,5.0,0.0,4.915840805411357 -283,8.0,8.0,0.0,-18.706293706293707 -283,8.0,9.0,0.0,9.090909090909092 -283,8.0,10.0,0.0,4.807692307692308 -283,9.0,5.0,0.0,1.8561002591115965 -283,9.0,8.0,0.0,9.090909090909092 -283,9.0,9.0,13.462042814524237,-41.3837606675224 -283,9.0,16.0,-3.956039125715353,10.317447719844054 -283,9.0,19.0,-1.7848303152666305,3.98535828943083 -283,9.0,20.0,-5.101853820159654,10.98071411292983 -283,9.0,21.0,-2.619319553382597,5.400770303329455 -283,10.0,8.0,0.0,4.807692307692308 -283,10.0,10.0,0.0,-4.807692307692308 -283,11.0,3.0,0.0,4.191255364806866 -283,11.0,11.0,6.573961583776156,-24.424167659260668 -283,11.0,12.0,0.0,7.142857142857143 -283,11.0,13.0,-1.5265676088395577,3.1734252729654173 -283,11.0,14.0,-3.0953961826564296,6.097275864326261 -283,11.0,15.0,-1.9519977922801688,4.104359379111847 -283,12.0,11.0,0.0,7.142857142857143 -283,12.0,12.0,0.0,-7.142857142857143 -283,13.0,11.0,-1.5265676088395577,3.1734252729654173 -283,13.0,13.0,4.01751987283902,-5.424299332335067 -283,13.0,14.0,-2.4909522639994623,2.250874059369649 -283,14.0,11.0,-3.0953961826564296,6.097275864326261 -283,14.0,13.0,-2.4909522639994623,2.250874059369649 -283,14.0,14.0,7.554697395557554,-12.324214800477266 -283,14.0,22.0,-1.9683489489016612,3.976064876781356 -283,15.0,11.0,-1.9519977922801688,4.104359379111847 -283,15.0,15.0,3.271064728633931,-8.94513365126506 -283,15.0,16.0,-1.3190669363537617,4.8407742721532125 -283,16.0,9.0,-3.956039125715353,10.317447719844054 -283,16.0,15.0,-1.3190669363537617,4.8407742721532125 -283,16.0,16.0,5.275106062069114,-15.158221991997266 -283,17.0,17.0,3.0756864340087167,-6.218758799278971 -283,17.0,18.0,-3.0756864340087167,6.218758799278971 -283,18.0,17.0,-3.0756864340087167,6.218758799278971 -283,18.0,18.0,8.958039375185187,-17.98346468163191 -283,18.0,19.0,-5.88235294117647,11.76470588235294 -283,19.0,9.0,-1.7848303152666305,3.98535828943083 -283,19.0,18.0,-5.88235294117647,11.76470588235294 -283,19.0,19.0,7.6671832564431,-15.75006417178377 -283,20.0,9.0,-5.101853820159654,10.98071411292983 -283,20.0,20.0,21.876495189895888,-45.10843276170355 -283,20.0,21.0,-16.774641369736234,34.127718648773715 -283,21.0,9.0,-2.619319553382597,5.400770303329455 -283,21.0,20.0,-16.774641369736234,34.127718648773715 -283,21.0,21.0,21.93449907537439,-43.48289181517921 -283,21.0,23.0,-2.5405381522555563,3.95440286307604 -283,22.0,14.0,-1.9683489489016612,3.976064876781356 -283,22.0,22.0,1.9683489489016612,-3.976064876781356 -283,23.0,21.0,-2.5405381522555563,3.95440286307604 -283,23.0,23.0,3.850431096129806,-6.199024916781094 -283,23.0,24.0,-1.3098929438742493,2.287622053705056 -283,24.0,23.0,-1.3098929438742493,2.287622053705056 -283,24.0,24.0,4.495715080321987,-7.864978761969621 -283,24.0,25.0,-1.2165301194494855,1.8171440463475024 -283,24.0,26.0,-1.9692920169982515,3.760212661917064 -283,25.0,24.0,-1.2165301194494855,1.8171440463475024 -283,25.0,25.0,1.2165301194494855,-1.8171440463475024 -283,26.0,24.0,-1.9692920169982515,3.760212661917064 -283,26.0,26.0,3.652281470778589,-9.46044252232512 -283,26.0,27.0,0.0,2.608731947574922 -283,26.0,28.0,-0.99553355095268,1.881005840357816 -283,26.0,29.0,-0.6874559028276572,1.293971494797717 -283,27.0,5.0,-4.362844058012917,15.463571542897856 -283,27.0,7.0,-1.4439790613954469,4.540814658476248 -283,27.0,26.0,0.0,2.608731947574922 -283,27.0,27.0,5.806823119408364,-22.67145722159613 -283,28.0,26.0,-0.99553355095268,1.881005840357816 -283,28.0,28.0,1.9075867579849564,-3.604364401207048 -283,28.0,29.0,-0.9120532070322764,1.7233585608492326 -283,29.0,26.0,-0.6874559028276572,1.293971494797717 -283,29.0,28.0,-0.9120532070322764,1.7233585608492326 -283,29.0,29.0,1.5995091098599337,-3.0173300556469496 -284,0.0,0.0,6.765516048652632,-21.23160167089863 -284,0.0,1.0,-5.224646179885656,15.646726840803398 -284,0.0,2.0,-1.5408698687669766,5.631674830095234 -284,1.0,0.0,-5.224646179885656,15.646726840803398 -284,1.0,1.0,9.75228216552403,-30.648662892676068 -284,1.0,3.0,-1.7055303166990268,5.1973792282565086 -284,1.0,4.0,-1.1359607881738778,4.772479328281356 -284,1.0,5.0,-1.6861448807654689,5.116477495334806 -284,2.0,0.0,-1.5408698687669766,5.631674830095234 -284,2.0,2.0,9.736318911079088,-29.13794745915803 -284,2.0,3.0,-8.19544904231211,23.5308726290628 -284,3.0,1.0,-1.7055303166990268,5.1973792282565086 -284,3.0,2.0,-8.19544904231211,23.5308726290628 -284,3.0,3.0,16.314103089185693,-55.509410535254254 -284,3.0,5.0,-6.413123730174556,22.31120356548123 -284,3.0,11.0,0.0,4.191255364806866 -284,4.0,1.0,-1.1359607881738778,4.772479328281356 -284,4.0,4.0,4.089980824135861,-12.190647245055052 -284,4.0,6.0,-2.954020035961983,7.449267916773697 -284,5.0,1.0,-1.6861448807654689,5.116477495334806 -284,5.0,3.0,-6.413123730174556,22.31120356548123 -284,5.0,5.0,22.341631269034565,-82.8291478657789 -284,5.0,6.0,-3.590210423980992,11.02611441072814 -284,5.0,7.0,-6.289308176100628,22.0125786163522 -284,5.0,8.0,0.0,4.915840805411357 -284,5.0,9.0,0.0,1.8561002591115965 -284,5.0,27.0,-4.362844058012917,15.463571542897856 -284,6.0,4.0,-2.954020035961983,7.449267916773697 -284,6.0,5.0,-3.590210423980992,11.02611441072814 -284,6.0,6.0,6.544230459942975,-18.45668232750184 -284,7.0,5.0,-6.289308176100628,22.0125786163522 -284,7.0,7.0,7.733287237496075,-26.527493274828448 -284,7.0,27.0,-1.4439790613954469,4.540814658476248 -284,8.0,5.0,0.0,4.915840805411357 -284,8.0,8.0,0.0,-18.706293706293707 -284,8.0,9.0,0.0,9.090909090909092 -284,8.0,10.0,0.0,4.807692307692308 -284,9.0,5.0,0.0,1.8561002591115965 -284,9.0,8.0,0.0,9.090909090909092 -284,9.0,9.0,13.462042814524237,-41.3837606675224 -284,9.0,16.0,-3.956039125715353,10.317447719844054 -284,9.0,19.0,-1.7848303152666305,3.98535828943083 -284,9.0,20.0,-5.101853820159654,10.98071411292983 -284,9.0,21.0,-2.619319553382597,5.400770303329455 -284,10.0,8.0,0.0,4.807692307692308 -284,10.0,10.0,0.0,-4.807692307692308 -284,11.0,3.0,0.0,4.191255364806866 -284,11.0,11.0,6.573961583776156,-24.424167659260668 -284,11.0,12.0,0.0,7.142857142857143 -284,11.0,13.0,-1.5265676088395577,3.1734252729654173 -284,11.0,14.0,-3.0953961826564296,6.097275864326261 -284,11.0,15.0,-1.9519977922801688,4.104359379111847 -284,12.0,11.0,0.0,7.142857142857143 -284,12.0,12.0,0.0,-7.142857142857143 -284,13.0,11.0,-1.5265676088395577,3.1734252729654173 -284,13.0,13.0,4.01751987283902,-5.424299332335067 -284,13.0,14.0,-2.4909522639994623,2.250874059369649 -284,14.0,11.0,-3.0953961826564296,6.097275864326261 -284,14.0,13.0,-2.4909522639994623,2.250874059369649 -284,14.0,14.0,9.365498545964757,-16.01163373210796 -284,14.0,17.0,-1.8108011504072024,3.687418931630696 -284,14.0,22.0,-1.9683489489016612,3.976064876781356 -284,15.0,11.0,-1.9519977922801688,4.104359379111847 -284,15.0,15.0,3.271064728633931,-8.94513365126506 -284,15.0,16.0,-1.3190669363537617,4.8407742721532125 -284,16.0,9.0,-3.956039125715353,10.317447719844054 -284,16.0,15.0,-1.3190669363537617,4.8407742721532125 -284,16.0,16.0,5.275106062069114,-15.158221991997266 -284,17.0,14.0,-1.8108011504072024,3.687418931630696 -284,17.0,17.0,4.886487584415919,-9.906177730909668 -284,17.0,18.0,-3.0756864340087167,6.218758799278971 -284,18.0,17.0,-3.0756864340087167,6.218758799278971 -284,18.0,18.0,8.958039375185187,-17.98346468163191 -284,18.0,19.0,-5.88235294117647,11.76470588235294 -284,19.0,9.0,-1.7848303152666305,3.98535828943083 -284,19.0,18.0,-5.88235294117647,11.76470588235294 -284,19.0,19.0,7.6671832564431,-15.75006417178377 -284,20.0,9.0,-5.101853820159654,10.98071411292983 -284,20.0,20.0,21.876495189895888,-45.10843276170355 -284,20.0,21.0,-16.774641369736234,34.127718648773715 -284,21.0,9.0,-2.619319553382597,5.400770303329455 -284,21.0,20.0,-16.774641369736234,34.127718648773715 -284,21.0,21.0,21.93449907537439,-43.48289181517921 -284,21.0,23.0,-2.5405381522555563,3.95440286307604 -284,22.0,14.0,-1.9683489489016612,3.976064876781356 -284,22.0,22.0,3.429754555384988,-6.965303617315433 -284,22.0,23.0,-1.4614056064833263,2.989238740534077 -284,23.0,21.0,-2.5405381522555563,3.95440286307604 -284,23.0,22.0,-1.4614056064833263,2.989238740534077 -284,23.0,23.0,5.311836702613133,-9.188263657315172 -284,23.0,24.0,-1.3098929438742493,2.287622053705056 -284,24.0,23.0,-1.3098929438742493,2.287622053705056 -284,24.0,24.0,4.495715080321987,-7.864978761969621 -284,24.0,25.0,-1.2165301194494855,1.8171440463475024 -284,24.0,26.0,-1.9692920169982515,3.760212661917064 -284,25.0,24.0,-1.2165301194494855,1.8171440463475024 -284,25.0,25.0,1.2165301194494855,-1.8171440463475024 -284,26.0,24.0,-1.9692920169982515,3.760212661917064 -284,26.0,26.0,3.652281470778589,-9.46044252232512 -284,26.0,27.0,0.0,2.608731947574922 -284,26.0,28.0,-0.99553355095268,1.881005840357816 -284,26.0,29.0,-0.6874559028276572,1.293971494797717 -284,27.0,5.0,-4.362844058012917,15.463571542897856 -284,27.0,7.0,-1.4439790613954469,4.540814658476248 -284,27.0,26.0,0.0,2.608731947574922 -284,27.0,27.0,5.806823119408364,-22.67145722159613 -284,28.0,26.0,-0.99553355095268,1.881005840357816 -284,28.0,28.0,1.9075867579849564,-3.604364401207048 -284,28.0,29.0,-0.9120532070322764,1.7233585608492326 -284,29.0,26.0,-0.6874559028276572,1.293971494797717 -284,29.0,28.0,-0.9120532070322764,1.7233585608492326 -284,29.0,29.0,1.5995091098599337,-3.0173300556469496 -285,0.0,0.0,6.765516048652632,-21.23160167089863 -285,0.0,1.0,-5.224646179885656,15.646726840803398 -285,0.0,2.0,-1.5408698687669766,5.631674830095234 -285,1.0,0.0,-5.224646179885656,15.646726840803398 -285,1.0,1.0,9.75228216552403,-30.648662892676068 -285,1.0,3.0,-1.7055303166990268,5.1973792282565086 -285,1.0,4.0,-1.1359607881738778,4.772479328281356 -285,1.0,5.0,-1.6861448807654689,5.116477495334806 -285,2.0,0.0,-1.5408698687669766,5.631674830095234 -285,2.0,2.0,9.736318911079088,-29.13794745915803 -285,2.0,3.0,-8.19544904231211,23.5308726290628 -285,3.0,1.0,-1.7055303166990268,5.1973792282565086 -285,3.0,2.0,-8.19544904231211,23.5308726290628 -285,3.0,3.0,9.900979359011137,-33.202706969773025 -285,3.0,11.0,0.0,4.191255364806866 -285,4.0,1.0,-1.1359607881738778,4.772479328281356 -285,4.0,4.0,4.089980824135861,-12.190647245055052 -285,4.0,6.0,-2.954020035961983,7.449267916773697 -285,5.0,1.0,-1.6861448807654689,5.116477495334806 -285,5.0,5.0,15.928507538860009,-60.52244430029767 -285,5.0,6.0,-3.590210423980992,11.02611441072814 -285,5.0,7.0,-6.289308176100628,22.0125786163522 -285,5.0,8.0,0.0,4.915840805411357 -285,5.0,9.0,0.0,1.8561002591115965 -285,5.0,27.0,-4.362844058012917,15.463571542897856 -285,6.0,4.0,-2.954020035961983,7.449267916773697 -285,6.0,5.0,-3.590210423980992,11.02611441072814 -285,6.0,6.0,6.544230459942975,-18.45668232750184 -285,7.0,5.0,-6.289308176100628,22.0125786163522 -285,7.0,7.0,7.733287237496075,-26.527493274828448 -285,7.0,27.0,-1.4439790613954469,4.540814658476248 -285,8.0,5.0,0.0,4.915840805411357 -285,8.0,8.0,0.0,-18.706293706293707 -285,8.0,9.0,0.0,9.090909090909092 -285,8.0,10.0,0.0,4.807692307692308 -285,9.0,5.0,0.0,1.8561002591115965 -285,9.0,8.0,0.0,9.090909090909092 -285,9.0,9.0,13.462042814524237,-41.3837606675224 -285,9.0,16.0,-3.956039125715353,10.317447719844054 -285,9.0,19.0,-1.7848303152666305,3.98535828943083 -285,9.0,20.0,-5.101853820159654,10.98071411292983 -285,9.0,21.0,-2.619319553382597,5.400770303329455 -285,10.0,8.0,0.0,4.807692307692308 -285,10.0,10.0,0.0,-4.807692307692308 -285,11.0,3.0,0.0,4.191255364806866 -285,11.0,11.0,6.573961583776156,-24.424167659260668 -285,11.0,12.0,0.0,7.142857142857143 -285,11.0,13.0,-1.5265676088395577,3.1734252729654173 -285,11.0,14.0,-3.0953961826564296,6.097275864326261 -285,11.0,15.0,-1.9519977922801688,4.104359379111847 -285,12.0,11.0,0.0,7.142857142857143 -285,12.0,12.0,0.0,-7.142857142857143 -285,13.0,11.0,-1.5265676088395577,3.1734252729654173 -285,13.0,13.0,1.5265676088395577,-3.1734252729654173 -285,14.0,11.0,-3.0953961826564296,6.097275864326261 -285,14.0,14.0,6.874546281965293,-13.760759672738311 -285,14.0,17.0,-1.8108011504072024,3.687418931630696 -285,14.0,22.0,-1.9683489489016612,3.976064876781356 -285,15.0,11.0,-1.9519977922801688,4.104359379111847 -285,15.0,15.0,3.271064728633931,-8.94513365126506 -285,15.0,16.0,-1.3190669363537617,4.8407742721532125 -285,16.0,9.0,-3.956039125715353,10.317447719844054 -285,16.0,15.0,-1.3190669363537617,4.8407742721532125 -285,16.0,16.0,5.275106062069114,-15.158221991997266 -285,17.0,14.0,-1.8108011504072024,3.687418931630696 -285,17.0,17.0,4.886487584415919,-9.906177730909668 -285,17.0,18.0,-3.0756864340087167,6.218758799278971 -285,18.0,17.0,-3.0756864340087167,6.218758799278971 -285,18.0,18.0,8.958039375185187,-17.98346468163191 -285,18.0,19.0,-5.88235294117647,11.76470588235294 -285,19.0,9.0,-1.7848303152666305,3.98535828943083 -285,19.0,18.0,-5.88235294117647,11.76470588235294 -285,19.0,19.0,7.6671832564431,-15.75006417178377 -285,20.0,9.0,-5.101853820159654,10.98071411292983 -285,20.0,20.0,5.101853820159654,-10.98071411292983 -285,21.0,9.0,-2.619319553382597,5.400770303329455 -285,21.0,21.0,5.159857705638154,-9.355173166405494 -285,21.0,23.0,-2.5405381522555563,3.95440286307604 -285,22.0,14.0,-1.9683489489016612,3.976064876781356 -285,22.0,22.0,3.429754555384988,-6.965303617315433 -285,22.0,23.0,-1.4614056064833263,2.989238740534077 -285,23.0,21.0,-2.5405381522555563,3.95440286307604 -285,23.0,22.0,-1.4614056064833263,2.989238740534077 -285,23.0,23.0,5.311836702613133,-9.188263657315172 -285,23.0,24.0,-1.3098929438742493,2.287622053705056 -285,24.0,23.0,-1.3098929438742493,2.287622053705056 -285,24.0,24.0,4.495715080321987,-7.864978761969621 -285,24.0,25.0,-1.2165301194494855,1.8171440463475024 -285,24.0,26.0,-1.9692920169982515,3.760212661917064 -285,25.0,24.0,-1.2165301194494855,1.8171440463475024 -285,25.0,25.0,1.2165301194494855,-1.8171440463475024 -285,26.0,24.0,-1.9692920169982515,3.760212661917064 -285,26.0,26.0,3.652281470778589,-9.46044252232512 -285,26.0,27.0,0.0,2.608731947574922 -285,26.0,28.0,-0.99553355095268,1.881005840357816 -285,26.0,29.0,-0.6874559028276572,1.293971494797717 -285,27.0,5.0,-4.362844058012917,15.463571542897856 -285,27.0,7.0,-1.4439790613954469,4.540814658476248 -285,27.0,26.0,0.0,2.608731947574922 -285,27.0,27.0,5.806823119408364,-22.67145722159613 -285,28.0,26.0,-0.99553355095268,1.881005840357816 -285,28.0,28.0,1.9075867579849564,-3.604364401207048 -285,28.0,29.0,-0.9120532070322764,1.7233585608492326 -285,29.0,26.0,-0.6874559028276572,1.293971494797717 -285,29.0,28.0,-0.9120532070322764,1.7233585608492326 -285,29.0,29.0,1.5995091098599337,-3.0173300556469496 -286,0.0,0.0,6.765516048652632,-21.23160167089863 -286,0.0,1.0,-5.224646179885656,15.646726840803398 -286,0.0,2.0,-1.5408698687669766,5.631674830095234 -286,1.0,0.0,-5.224646179885656,15.646726840803398 -286,1.0,1.0,9.75228216552403,-30.648662892676068 -286,1.0,3.0,-1.7055303166990268,5.1973792282565086 -286,1.0,4.0,-1.1359607881738778,4.772479328281356 -286,1.0,5.0,-1.6861448807654689,5.116477495334806 -286,2.0,0.0,-1.5408698687669766,5.631674830095234 -286,2.0,2.0,9.736318911079088,-29.13794745915803 -286,2.0,3.0,-8.19544904231211,23.5308726290628 -286,3.0,1.0,-1.7055303166990268,5.1973792282565086 -286,3.0,2.0,-8.19544904231211,23.5308726290628 -286,3.0,3.0,16.314103089185693,-55.509410535254254 -286,3.0,5.0,-6.413123730174556,22.31120356548123 -286,3.0,11.0,0.0,4.191255364806866 -286,4.0,1.0,-1.1359607881738778,4.772479328281356 -286,4.0,4.0,4.089980824135861,-12.190647245055052 -286,4.0,6.0,-2.954020035961983,7.449267916773697 -286,5.0,1.0,-1.6861448807654689,5.116477495334806 -286,5.0,3.0,-6.413123730174556,22.31120356548123 -286,5.0,5.0,22.341631269034565,-82.8291478657789 -286,5.0,6.0,-3.590210423980992,11.02611441072814 -286,5.0,7.0,-6.289308176100628,22.0125786163522 -286,5.0,8.0,0.0,4.915840805411357 -286,5.0,9.0,0.0,1.8561002591115965 -286,5.0,27.0,-4.362844058012917,15.463571542897856 -286,6.0,4.0,-2.954020035961983,7.449267916773697 -286,6.0,5.0,-3.590210423980992,11.02611441072814 -286,6.0,6.0,6.544230459942975,-18.45668232750184 -286,7.0,5.0,-6.289308176100628,22.0125786163522 -286,7.0,7.0,7.733287237496075,-26.527493274828448 -286,7.0,27.0,-1.4439790613954469,4.540814658476248 -286,8.0,5.0,0.0,4.915840805411357 -286,8.0,8.0,0.0,-18.706293706293707 -286,8.0,9.0,0.0,9.090909090909092 -286,8.0,10.0,0.0,4.807692307692308 -286,9.0,5.0,0.0,1.8561002591115965 -286,9.0,8.0,0.0,9.090909090909092 -286,9.0,9.0,13.462042814524237,-41.3837606675224 -286,9.0,16.0,-3.956039125715353,10.317447719844054 -286,9.0,19.0,-1.7848303152666305,3.98535828943083 -286,9.0,20.0,-5.101853820159654,10.98071411292983 -286,9.0,21.0,-2.619319553382597,5.400770303329455 -286,10.0,8.0,0.0,4.807692307692308 -286,10.0,10.0,0.0,-4.807692307692308 -286,11.0,3.0,0.0,4.191255364806866 -286,11.0,11.0,6.573961583776156,-24.424167659260668 -286,11.0,12.0,0.0,7.142857142857143 -286,11.0,13.0,-1.5265676088395577,3.1734252729654173 -286,11.0,14.0,-3.0953961826564296,6.097275864326261 -286,11.0,15.0,-1.9519977922801688,4.104359379111847 -286,12.0,11.0,0.0,7.142857142857143 -286,12.0,12.0,0.0,-7.142857142857143 -286,13.0,11.0,-1.5265676088395577,3.1734252729654173 -286,13.0,13.0,4.01751987283902,-5.424299332335067 -286,13.0,14.0,-2.4909522639994623,2.250874059369649 -286,14.0,11.0,-3.0953961826564296,6.097275864326261 -286,14.0,13.0,-2.4909522639994623,2.250874059369649 -286,14.0,14.0,9.365498545964757,-16.01163373210796 -286,14.0,17.0,-1.8108011504072024,3.687418931630696 -286,14.0,22.0,-1.9683489489016612,3.976064876781356 -286,15.0,11.0,-1.9519977922801688,4.104359379111847 -286,15.0,15.0,3.271064728633931,-8.94513365126506 -286,15.0,16.0,-1.3190669363537617,4.8407742721532125 -286,16.0,9.0,-3.956039125715353,10.317447719844054 -286,16.0,15.0,-1.3190669363537617,4.8407742721532125 -286,16.0,16.0,5.275106062069114,-15.158221991997266 -286,17.0,14.0,-1.8108011504072024,3.687418931630696 -286,17.0,17.0,4.886487584415919,-9.906177730909668 -286,17.0,18.0,-3.0756864340087167,6.218758799278971 -286,18.0,17.0,-3.0756864340087167,6.218758799278971 -286,18.0,18.0,8.958039375185187,-17.98346468163191 -286,18.0,19.0,-5.88235294117647,11.76470588235294 -286,19.0,9.0,-1.7848303152666305,3.98535828943083 -286,19.0,18.0,-5.88235294117647,11.76470588235294 -286,19.0,19.0,7.6671832564431,-15.75006417178377 -286,20.0,9.0,-5.101853820159654,10.98071411292983 -286,20.0,20.0,21.876495189895888,-45.10843276170355 -286,20.0,21.0,-16.774641369736234,34.127718648773715 -286,21.0,9.0,-2.619319553382597,5.400770303329455 -286,21.0,20.0,-16.774641369736234,34.127718648773715 -286,21.0,21.0,21.93449907537439,-43.48289181517921 -286,21.0,23.0,-2.5405381522555563,3.95440286307604 -286,22.0,14.0,-1.9683489489016612,3.976064876781356 -286,22.0,22.0,3.429754555384988,-6.965303617315433 -286,22.0,23.0,-1.4614056064833263,2.989238740534077 -286,23.0,21.0,-2.5405381522555563,3.95440286307604 -286,23.0,22.0,-1.4614056064833263,2.989238740534077 -286,23.0,23.0,5.311836702613133,-9.188263657315172 -286,23.0,24.0,-1.3098929438742493,2.287622053705056 -286,24.0,23.0,-1.3098929438742493,2.287622053705056 -286,24.0,24.0,4.495715080321987,-7.864978761969621 -286,24.0,25.0,-1.2165301194494855,1.8171440463475024 -286,24.0,26.0,-1.9692920169982515,3.760212661917064 -286,25.0,24.0,-1.2165301194494855,1.8171440463475024 -286,25.0,25.0,1.2165301194494855,-1.8171440463475024 -286,26.0,24.0,-1.9692920169982515,3.760212661917064 -286,26.0,26.0,3.652281470778589,-9.46044252232512 -286,26.0,27.0,0.0,2.608731947574922 -286,26.0,28.0,-0.99553355095268,1.881005840357816 -286,26.0,29.0,-0.6874559028276572,1.293971494797717 -286,27.0,5.0,-4.362844058012917,15.463571542897856 -286,27.0,7.0,-1.4439790613954469,4.540814658476248 -286,27.0,26.0,0.0,2.608731947574922 -286,27.0,27.0,5.806823119408364,-22.67145722159613 -286,28.0,26.0,-0.99553355095268,1.881005840357816 -286,28.0,28.0,1.9075867579849564,-3.604364401207048 -286,28.0,29.0,-0.9120532070322764,1.7233585608492326 -286,29.0,26.0,-0.6874559028276572,1.293971494797717 -286,29.0,28.0,-0.9120532070322764,1.7233585608492326 -286,29.0,29.0,1.5995091098599337,-3.0173300556469496 -287,0.0,0.0,6.765516048652632,-21.23160167089863 -287,0.0,1.0,-5.224646179885656,15.646726840803398 -287,0.0,2.0,-1.5408698687669766,5.631674830095234 -287,1.0,0.0,-5.224646179885656,15.646726840803398 -287,1.0,1.0,8.61632137735015,-25.897083564394716 -287,1.0,3.0,-1.7055303166990268,5.1973792282565086 -287,1.0,5.0,-1.6861448807654689,5.116477495334806 -287,2.0,0.0,-1.5408698687669766,5.631674830095234 -287,2.0,2.0,9.736318911079088,-29.13794745915803 -287,2.0,3.0,-8.19544904231211,23.5308726290628 -287,3.0,1.0,-1.7055303166990268,5.1973792282565086 -287,3.0,2.0,-8.19544904231211,23.5308726290628 -287,3.0,3.0,16.314103089185693,-55.509410535254254 -287,3.0,5.0,-6.413123730174556,22.31120356548123 -287,3.0,11.0,0.0,4.191255364806866 -287,4.0,4.0,2.954020035961983,-7.439067916773697 -287,4.0,6.0,-2.954020035961983,7.449267916773697 -287,5.0,1.0,-1.6861448807654689,5.116477495334806 -287,5.0,3.0,-6.413123730174556,22.31120356548123 -287,5.0,5.0,22.341631269034565,-82.8291478657789 -287,5.0,6.0,-3.590210423980992,11.02611441072814 -287,5.0,7.0,-6.289308176100628,22.0125786163522 -287,5.0,8.0,0.0,4.915840805411357 -287,5.0,9.0,0.0,1.8561002591115965 -287,5.0,27.0,-4.362844058012917,15.463571542897856 -287,6.0,4.0,-2.954020035961983,7.449267916773697 -287,6.0,5.0,-3.590210423980992,11.02611441072814 -287,6.0,6.0,6.544230459942975,-18.45668232750184 -287,7.0,5.0,-6.289308176100628,22.0125786163522 -287,7.0,7.0,7.733287237496075,-26.527493274828448 -287,7.0,27.0,-1.4439790613954469,4.540814658476248 -287,8.0,5.0,0.0,4.915840805411357 -287,8.0,8.0,0.0,-18.706293706293707 -287,8.0,9.0,0.0,9.090909090909092 -287,8.0,10.0,0.0,4.807692307692308 -287,9.0,5.0,0.0,1.8561002591115965 -287,9.0,8.0,0.0,9.090909090909092 -287,9.0,9.0,13.462042814524237,-41.3837606675224 -287,9.0,16.0,-3.956039125715353,10.317447719844054 -287,9.0,19.0,-1.7848303152666305,3.98535828943083 -287,9.0,20.0,-5.101853820159654,10.98071411292983 -287,9.0,21.0,-2.619319553382597,5.400770303329455 -287,10.0,8.0,0.0,4.807692307692308 -287,10.0,10.0,0.0,-4.807692307692308 -287,11.0,3.0,0.0,4.191255364806866 -287,11.0,11.0,6.573961583776156,-24.424167659260668 -287,11.0,12.0,0.0,7.142857142857143 -287,11.0,13.0,-1.5265676088395577,3.1734252729654173 -287,11.0,14.0,-3.0953961826564296,6.097275864326261 -287,11.0,15.0,-1.9519977922801688,4.104359379111847 -287,12.0,11.0,0.0,7.142857142857143 -287,12.0,12.0,0.0,-7.142857142857143 -287,13.0,11.0,-1.5265676088395577,3.1734252729654173 -287,13.0,13.0,4.01751987283902,-5.424299332335067 -287,13.0,14.0,-2.4909522639994623,2.250874059369649 -287,14.0,11.0,-3.0953961826564296,6.097275864326261 -287,14.0,13.0,-2.4909522639994623,2.250874059369649 -287,14.0,14.0,7.397149597063095,-12.035568855326606 -287,14.0,17.0,-1.8108011504072024,3.687418931630696 -287,15.0,11.0,-1.9519977922801688,4.104359379111847 -287,15.0,15.0,3.271064728633931,-8.94513365126506 -287,15.0,16.0,-1.3190669363537617,4.8407742721532125 -287,16.0,9.0,-3.956039125715353,10.317447719844054 -287,16.0,15.0,-1.3190669363537617,4.8407742721532125 -287,16.0,16.0,5.275106062069114,-15.158221991997266 -287,17.0,14.0,-1.8108011504072024,3.687418931630696 -287,17.0,17.0,4.886487584415919,-9.906177730909668 -287,17.0,18.0,-3.0756864340087167,6.218758799278971 -287,18.0,17.0,-3.0756864340087167,6.218758799278971 -287,18.0,18.0,8.958039375185187,-17.98346468163191 -287,18.0,19.0,-5.88235294117647,11.76470588235294 -287,19.0,9.0,-1.7848303152666305,3.98535828943083 -287,19.0,18.0,-5.88235294117647,11.76470588235294 -287,19.0,19.0,7.6671832564431,-15.75006417178377 -287,20.0,9.0,-5.101853820159654,10.98071411292983 -287,20.0,20.0,21.876495189895888,-45.10843276170355 -287,20.0,21.0,-16.774641369736234,34.127718648773715 -287,21.0,9.0,-2.619319553382597,5.400770303329455 -287,21.0,20.0,-16.774641369736234,34.127718648773715 -287,21.0,21.0,21.93449907537439,-43.48289181517921 -287,21.0,23.0,-2.5405381522555563,3.95440286307604 -287,22.0,22.0,1.4614056064833263,-2.989238740534077 -287,22.0,23.0,-1.4614056064833263,2.989238740534077 -287,23.0,21.0,-2.5405381522555563,3.95440286307604 -287,23.0,22.0,-1.4614056064833263,2.989238740534077 -287,23.0,23.0,5.311836702613133,-9.188263657315172 -287,23.0,24.0,-1.3098929438742493,2.287622053705056 -287,24.0,23.0,-1.3098929438742493,2.287622053705056 -287,24.0,24.0,4.495715080321987,-7.864978761969621 -287,24.0,25.0,-1.2165301194494855,1.8171440463475024 -287,24.0,26.0,-1.9692920169982515,3.760212661917064 -287,25.0,24.0,-1.2165301194494855,1.8171440463475024 -287,25.0,25.0,1.2165301194494855,-1.8171440463475024 -287,26.0,24.0,-1.9692920169982515,3.760212661917064 -287,26.0,26.0,3.652281470778589,-9.46044252232512 -287,26.0,27.0,0.0,2.608731947574922 -287,26.0,28.0,-0.99553355095268,1.881005840357816 -287,26.0,29.0,-0.6874559028276572,1.293971494797717 -287,27.0,5.0,-4.362844058012917,15.463571542897856 -287,27.0,7.0,-1.4439790613954469,4.540814658476248 -287,27.0,26.0,0.0,2.608731947574922 -287,27.0,27.0,5.806823119408364,-22.67145722159613 -287,28.0,26.0,-0.99553355095268,1.881005840357816 -287,28.0,28.0,1.9075867579849564,-3.604364401207048 -287,28.0,29.0,-0.9120532070322764,1.7233585608492326 -287,29.0,26.0,-0.6874559028276572,1.293971494797717 -287,29.0,28.0,-0.9120532070322764,1.7233585608492326 -287,29.0,29.0,1.5995091098599337,-3.0173300556469496 -288,0.0,0.0,6.765516048652632,-21.23160167089863 -288,0.0,1.0,-5.224646179885656,15.646726840803398 -288,0.0,2.0,-1.5408698687669766,5.631674830095234 -288,1.0,0.0,-5.224646179885656,15.646726840803398 -288,1.0,1.0,9.75228216552403,-30.648662892676068 -288,1.0,3.0,-1.7055303166990268,5.1973792282565086 -288,1.0,4.0,-1.1359607881738778,4.772479328281356 -288,1.0,5.0,-1.6861448807654689,5.116477495334806 -288,2.0,0.0,-1.5408698687669766,5.631674830095234 -288,2.0,2.0,9.736318911079088,-29.13794745915803 -288,2.0,3.0,-8.19544904231211,23.5308726290628 -288,3.0,1.0,-1.7055303166990268,5.1973792282565086 -288,3.0,2.0,-8.19544904231211,23.5308726290628 -288,3.0,3.0,16.314103089185693,-55.509410535254254 -288,3.0,5.0,-6.413123730174556,22.31120356548123 -288,3.0,11.0,0.0,4.191255364806866 -288,4.0,1.0,-1.1359607881738778,4.772479328281356 -288,4.0,4.0,4.089980824135861,-12.190647245055052 -288,4.0,6.0,-2.954020035961983,7.449267916773697 -288,5.0,1.0,-1.6861448807654689,5.116477495334806 -288,5.0,3.0,-6.413123730174556,22.31120356548123 -288,5.0,5.0,22.341631269034565,-82.8291478657789 -288,5.0,6.0,-3.590210423980992,11.02611441072814 -288,5.0,7.0,-6.289308176100628,22.0125786163522 -288,5.0,8.0,0.0,4.915840805411357 -288,5.0,9.0,0.0,1.8561002591115965 -288,5.0,27.0,-4.362844058012917,15.463571542897856 -288,6.0,4.0,-2.954020035961983,7.449267916773697 -288,6.0,5.0,-3.590210423980992,11.02611441072814 -288,6.0,6.0,6.544230459942975,-18.45668232750184 -288,7.0,5.0,-6.289308176100628,22.0125786163522 -288,7.0,7.0,7.733287237496075,-26.527493274828448 -288,7.0,27.0,-1.4439790613954469,4.540814658476248 -288,8.0,5.0,0.0,4.915840805411357 -288,8.0,8.0,0.0,-18.706293706293707 -288,8.0,9.0,0.0,9.090909090909092 -288,8.0,10.0,0.0,4.807692307692308 -288,9.0,5.0,0.0,1.8561002591115965 -288,9.0,8.0,0.0,9.090909090909092 -288,9.0,9.0,13.462042814524237,-41.3837606675224 -288,9.0,16.0,-3.956039125715353,10.317447719844054 -288,9.0,19.0,-1.7848303152666305,3.98535828943083 -288,9.0,20.0,-5.101853820159654,10.98071411292983 -288,9.0,21.0,-2.619319553382597,5.400770303329455 -288,10.0,8.0,0.0,4.807692307692308 -288,10.0,10.0,0.0,-4.807692307692308 -288,11.0,3.0,0.0,4.191255364806866 -288,11.0,11.0,6.573961583776156,-24.424167659260668 -288,11.0,12.0,0.0,7.142857142857143 -288,11.0,13.0,-1.5265676088395577,3.1734252729654173 -288,11.0,14.0,-3.0953961826564296,6.097275864326261 -288,11.0,15.0,-1.9519977922801688,4.104359379111847 -288,12.0,11.0,0.0,7.142857142857143 -288,12.0,12.0,0.0,-7.142857142857143 -288,13.0,11.0,-1.5265676088395577,3.1734252729654173 -288,13.0,13.0,4.01751987283902,-5.424299332335067 -288,13.0,14.0,-2.4909522639994623,2.250874059369649 -288,14.0,11.0,-3.0953961826564296,6.097275864326261 -288,14.0,13.0,-2.4909522639994623,2.250874059369649 -288,14.0,14.0,9.365498545964757,-16.01163373210796 -288,14.0,17.0,-1.8108011504072024,3.687418931630696 -288,14.0,22.0,-1.9683489489016612,3.976064876781356 -288,15.0,11.0,-1.9519977922801688,4.104359379111847 -288,15.0,15.0,3.271064728633931,-8.94513365126506 -288,15.0,16.0,-1.3190669363537617,4.8407742721532125 -288,16.0,9.0,-3.956039125715353,10.317447719844054 -288,16.0,15.0,-1.3190669363537617,4.8407742721532125 -288,16.0,16.0,5.275106062069114,-15.158221991997266 -288,17.0,14.0,-1.8108011504072024,3.687418931630696 -288,17.0,17.0,4.886487584415919,-9.906177730909668 -288,17.0,18.0,-3.0756864340087167,6.218758799278971 -288,18.0,17.0,-3.0756864340087167,6.218758799278971 -288,18.0,18.0,8.958039375185187,-17.98346468163191 -288,18.0,19.0,-5.88235294117647,11.76470588235294 -288,19.0,9.0,-1.7848303152666305,3.98535828943083 -288,19.0,18.0,-5.88235294117647,11.76470588235294 -288,19.0,19.0,7.6671832564431,-15.75006417178377 -288,20.0,9.0,-5.101853820159654,10.98071411292983 -288,20.0,20.0,21.876495189895888,-45.10843276170355 -288,20.0,21.0,-16.774641369736234,34.127718648773715 -288,21.0,9.0,-2.619319553382597,5.400770303329455 -288,21.0,20.0,-16.774641369736234,34.127718648773715 -288,21.0,21.0,21.93449907537439,-43.48289181517921 -288,21.0,23.0,-2.5405381522555563,3.95440286307604 -288,22.0,14.0,-1.9683489489016612,3.976064876781356 -288,22.0,22.0,3.429754555384988,-6.965303617315433 -288,22.0,23.0,-1.4614056064833263,2.989238740534077 -288,23.0,21.0,-2.5405381522555563,3.95440286307604 -288,23.0,22.0,-1.4614056064833263,2.989238740534077 -288,23.0,23.0,5.311836702613133,-9.188263657315172 -288,23.0,24.0,-1.3098929438742493,2.287622053705056 -288,24.0,23.0,-1.3098929438742493,2.287622053705056 -288,24.0,24.0,4.495715080321987,-7.864978761969621 -288,24.0,25.0,-1.2165301194494855,1.8171440463475024 -288,24.0,26.0,-1.9692920169982515,3.760212661917064 -288,25.0,24.0,-1.2165301194494855,1.8171440463475024 -288,25.0,25.0,1.2165301194494855,-1.8171440463475024 -288,26.0,24.0,-1.9692920169982515,3.760212661917064 -288,26.0,26.0,3.652281470778589,-9.46044252232512 -288,26.0,27.0,0.0,2.608731947574922 -288,26.0,28.0,-0.99553355095268,1.881005840357816 -288,26.0,29.0,-0.6874559028276572,1.293971494797717 -288,27.0,5.0,-4.362844058012917,15.463571542897856 -288,27.0,7.0,-1.4439790613954469,4.540814658476248 -288,27.0,26.0,0.0,2.608731947574922 -288,27.0,27.0,5.806823119408364,-22.67145722159613 -288,28.0,26.0,-0.99553355095268,1.881005840357816 -288,28.0,28.0,1.9075867579849564,-3.604364401207048 -288,28.0,29.0,-0.9120532070322764,1.7233585608492326 -288,29.0,26.0,-0.6874559028276572,1.293971494797717 -288,29.0,28.0,-0.9120532070322764,1.7233585608492326 -288,29.0,29.0,1.5995091098599337,-3.0173300556469496 -289,0.0,0.0,6.765516048652632,-21.23160167089863 -289,0.0,1.0,-5.224646179885656,15.646726840803398 -289,0.0,2.0,-1.5408698687669766,5.631674830095234 -289,1.0,0.0,-5.224646179885656,15.646726840803398 -289,1.0,1.0,8.066137284758561,-25.55088539734126 -289,1.0,3.0,-1.7055303166990268,5.1973792282565086 -289,1.0,4.0,-1.1359607881738778,4.772479328281356 -289,2.0,0.0,-1.5408698687669766,5.631674830095234 -289,2.0,2.0,9.736318911079088,-29.13794745915803 -289,2.0,3.0,-8.19544904231211,23.5308726290628 -289,3.0,1.0,-1.7055303166990268,5.1973792282565086 -289,3.0,2.0,-8.19544904231211,23.5308726290628 -289,3.0,3.0,16.314103089185693,-55.509410535254254 -289,3.0,5.0,-6.413123730174556,22.31120356548123 -289,3.0,11.0,0.0,4.191255364806866 -289,4.0,1.0,-1.1359607881738778,4.772479328281356 -289,4.0,4.0,4.089980824135861,-12.190647245055052 -289,4.0,6.0,-2.954020035961983,7.449267916773697 -289,5.0,3.0,-6.413123730174556,22.31120356548123 -289,5.0,5.0,20.655486388269097,-77.7313703704441 -289,5.0,6.0,-3.590210423980992,11.02611441072814 -289,5.0,7.0,-6.289308176100628,22.0125786163522 -289,5.0,8.0,0.0,4.915840805411357 -289,5.0,9.0,0.0,1.8561002591115965 -289,5.0,27.0,-4.362844058012917,15.463571542897856 -289,6.0,4.0,-2.954020035961983,7.449267916773697 -289,6.0,5.0,-3.590210423980992,11.02611441072814 -289,6.0,6.0,6.544230459942975,-18.45668232750184 -289,7.0,5.0,-6.289308176100628,22.0125786163522 -289,7.0,7.0,7.733287237496075,-26.527493274828448 -289,7.0,27.0,-1.4439790613954469,4.540814658476248 -289,8.0,5.0,0.0,4.915840805411357 -289,8.0,8.0,0.0,-18.706293706293707 -289,8.0,9.0,0.0,9.090909090909092 -289,8.0,10.0,0.0,4.807692307692308 -289,9.0,5.0,0.0,1.8561002591115965 -289,9.0,8.0,0.0,9.090909090909092 -289,9.0,9.0,13.462042814524237,-41.3837606675224 -289,9.0,16.0,-3.956039125715353,10.317447719844054 -289,9.0,19.0,-1.7848303152666305,3.98535828943083 -289,9.0,20.0,-5.101853820159654,10.98071411292983 -289,9.0,21.0,-2.619319553382597,5.400770303329455 -289,10.0,8.0,0.0,4.807692307692308 -289,10.0,10.0,0.0,-4.807692307692308 -289,11.0,3.0,0.0,4.191255364806866 -289,11.0,11.0,6.573961583776156,-24.424167659260668 -289,11.0,12.0,0.0,7.142857142857143 -289,11.0,13.0,-1.5265676088395577,3.1734252729654173 -289,11.0,14.0,-3.0953961826564296,6.097275864326261 -289,11.0,15.0,-1.9519977922801688,4.104359379111847 -289,12.0,11.0,0.0,7.142857142857143 -289,12.0,12.0,0.0,-7.142857142857143 -289,13.0,11.0,-1.5265676088395577,3.1734252729654173 -289,13.0,13.0,4.01751987283902,-5.424299332335067 -289,13.0,14.0,-2.4909522639994623,2.250874059369649 -289,14.0,11.0,-3.0953961826564296,6.097275864326261 -289,14.0,13.0,-2.4909522639994623,2.250874059369649 -289,14.0,14.0,9.365498545964757,-16.01163373210796 -289,14.0,17.0,-1.8108011504072024,3.687418931630696 -289,14.0,22.0,-1.9683489489016612,3.976064876781356 -289,15.0,11.0,-1.9519977922801688,4.104359379111847 -289,15.0,15.0,3.271064728633931,-8.94513365126506 -289,15.0,16.0,-1.3190669363537617,4.8407742721532125 -289,16.0,9.0,-3.956039125715353,10.317447719844054 -289,16.0,15.0,-1.3190669363537617,4.8407742721532125 -289,16.0,16.0,5.275106062069114,-15.158221991997266 -289,17.0,14.0,-1.8108011504072024,3.687418931630696 -289,17.0,17.0,4.886487584415919,-9.906177730909668 -289,17.0,18.0,-3.0756864340087167,6.218758799278971 -289,18.0,17.0,-3.0756864340087167,6.218758799278971 -289,18.0,18.0,8.958039375185187,-17.98346468163191 -289,18.0,19.0,-5.88235294117647,11.76470588235294 -289,19.0,9.0,-1.7848303152666305,3.98535828943083 -289,19.0,18.0,-5.88235294117647,11.76470588235294 -289,19.0,19.0,7.6671832564431,-15.75006417178377 -289,20.0,9.0,-5.101853820159654,10.98071411292983 -289,20.0,20.0,21.876495189895888,-45.10843276170355 -289,20.0,21.0,-16.774641369736234,34.127718648773715 -289,21.0,9.0,-2.619319553382597,5.400770303329455 -289,21.0,20.0,-16.774641369736234,34.127718648773715 -289,21.0,21.0,21.93449907537439,-43.48289181517921 -289,21.0,23.0,-2.5405381522555563,3.95440286307604 -289,22.0,14.0,-1.9683489489016612,3.976064876781356 -289,22.0,22.0,3.429754555384988,-6.965303617315433 -289,22.0,23.0,-1.4614056064833263,2.989238740534077 -289,23.0,21.0,-2.5405381522555563,3.95440286307604 -289,23.0,22.0,-1.4614056064833263,2.989238740534077 -289,23.0,23.0,5.311836702613133,-9.188263657315172 -289,23.0,24.0,-1.3098929438742493,2.287622053705056 -289,24.0,23.0,-1.3098929438742493,2.287622053705056 -289,24.0,24.0,4.495715080321987,-7.864978761969621 -289,24.0,25.0,-1.2165301194494855,1.8171440463475024 -289,24.0,26.0,-1.9692920169982515,3.760212661917064 -289,25.0,24.0,-1.2165301194494855,1.8171440463475024 -289,25.0,25.0,1.2165301194494855,-1.8171440463475024 -289,26.0,24.0,-1.9692920169982515,3.760212661917064 -289,26.0,26.0,3.652281470778589,-9.46044252232512 -289,26.0,27.0,0.0,2.608731947574922 -289,26.0,28.0,-0.99553355095268,1.881005840357816 -289,26.0,29.0,-0.6874559028276572,1.293971494797717 -289,27.0,5.0,-4.362844058012917,15.463571542897856 -289,27.0,7.0,-1.4439790613954469,4.540814658476248 -289,27.0,26.0,0.0,2.608731947574922 -289,27.0,27.0,5.806823119408364,-22.67145722159613 -289,28.0,26.0,-0.99553355095268,1.881005840357816 -289,28.0,28.0,1.9075867579849564,-3.604364401207048 -289,28.0,29.0,-0.9120532070322764,1.7233585608492326 -289,29.0,26.0,-0.6874559028276572,1.293971494797717 -289,29.0,28.0,-0.9120532070322764,1.7233585608492326 -289,29.0,29.0,1.5995091098599337,-3.0173300556469496 -290,0.0,0.0,6.765516048652632,-21.23160167089863 -290,0.0,1.0,-5.224646179885656,15.646726840803398 -290,0.0,2.0,-1.5408698687669766,5.631674830095234 -290,1.0,0.0,-5.224646179885656,15.646726840803398 -290,1.0,1.0,9.75228216552403,-30.648662892676068 -290,1.0,3.0,-1.7055303166990268,5.1973792282565086 -290,1.0,4.0,-1.1359607881738778,4.772479328281356 -290,1.0,5.0,-1.6861448807654689,5.116477495334806 -290,2.0,0.0,-1.5408698687669766,5.631674830095234 -290,2.0,2.0,9.736318911079088,-29.13794745915803 -290,2.0,3.0,-8.19544904231211,23.5308726290628 -290,3.0,1.0,-1.7055303166990268,5.1973792282565086 -290,3.0,2.0,-8.19544904231211,23.5308726290628 -290,3.0,3.0,16.314103089185693,-55.509410535254254 -290,3.0,5.0,-6.413123730174556,22.31120356548123 -290,3.0,11.0,0.0,4.191255364806866 -290,4.0,1.0,-1.1359607881738778,4.772479328281356 -290,4.0,4.0,4.089980824135861,-12.190647245055052 -290,4.0,6.0,-2.954020035961983,7.449267916773697 -290,5.0,1.0,-1.6861448807654689,5.116477495334806 -290,5.0,3.0,-6.413123730174556,22.31120356548123 -290,5.0,5.0,22.341631269034565,-82.8291478657789 -290,5.0,6.0,-3.590210423980992,11.02611441072814 -290,5.0,7.0,-6.289308176100628,22.0125786163522 -290,5.0,8.0,0.0,4.915840805411357 -290,5.0,9.0,0.0,1.8561002591115965 -290,5.0,27.0,-4.362844058012917,15.463571542897856 -290,6.0,4.0,-2.954020035961983,7.449267916773697 -290,6.0,5.0,-3.590210423980992,11.02611441072814 -290,6.0,6.0,6.544230459942975,-18.45668232750184 -290,7.0,5.0,-6.289308176100628,22.0125786163522 -290,7.0,7.0,7.733287237496075,-26.527493274828448 -290,7.0,27.0,-1.4439790613954469,4.540814658476248 -290,8.0,5.0,0.0,4.915840805411357 -290,8.0,8.0,0.0,-18.706293706293707 -290,8.0,9.0,0.0,9.090909090909092 -290,8.0,10.0,0.0,4.807692307692308 -290,9.0,5.0,0.0,1.8561002591115965 -290,9.0,8.0,0.0,9.090909090909092 -290,9.0,9.0,13.462042814524237,-41.3837606675224 -290,9.0,16.0,-3.956039125715353,10.317447719844054 -290,9.0,19.0,-1.7848303152666305,3.98535828943083 -290,9.0,20.0,-5.101853820159654,10.98071411292983 -290,9.0,21.0,-2.619319553382597,5.400770303329455 -290,10.0,8.0,0.0,4.807692307692308 -290,10.0,10.0,0.0,-4.807692307692308 -290,11.0,3.0,0.0,4.191255364806866 -290,11.0,11.0,6.573961583776156,-24.424167659260668 -290,11.0,12.0,0.0,7.142857142857143 -290,11.0,13.0,-1.5265676088395577,3.1734252729654173 -290,11.0,14.0,-3.0953961826564296,6.097275864326261 -290,11.0,15.0,-1.9519977922801688,4.104359379111847 -290,12.0,11.0,0.0,7.142857142857143 -290,12.0,12.0,0.0,-7.142857142857143 -290,13.0,11.0,-1.5265676088395577,3.1734252729654173 -290,13.0,13.0,4.01751987283902,-5.424299332335067 -290,13.0,14.0,-2.4909522639994623,2.250874059369649 -290,14.0,11.0,-3.0953961826564296,6.097275864326261 -290,14.0,13.0,-2.4909522639994623,2.250874059369649 -290,14.0,14.0,7.554697395557554,-12.324214800477266 -290,14.0,22.0,-1.9683489489016612,3.976064876781356 -290,15.0,11.0,-1.9519977922801688,4.104359379111847 -290,15.0,15.0,3.271064728633931,-8.94513365126506 -290,15.0,16.0,-1.3190669363537617,4.8407742721532125 -290,16.0,9.0,-3.956039125715353,10.317447719844054 -290,16.0,15.0,-1.3190669363537617,4.8407742721532125 -290,16.0,16.0,5.275106062069114,-15.158221991997266 -290,17.0,17.0,3.0756864340087167,-6.218758799278971 -290,17.0,18.0,-3.0756864340087167,6.218758799278971 -290,18.0,17.0,-3.0756864340087167,6.218758799278971 -290,18.0,18.0,8.958039375185187,-17.98346468163191 -290,18.0,19.0,-5.88235294117647,11.76470588235294 -290,19.0,9.0,-1.7848303152666305,3.98535828943083 -290,19.0,18.0,-5.88235294117647,11.76470588235294 -290,19.0,19.0,7.6671832564431,-15.75006417178377 -290,20.0,9.0,-5.101853820159654,10.98071411292983 -290,20.0,20.0,21.876495189895888,-45.10843276170355 -290,20.0,21.0,-16.774641369736234,34.127718648773715 -290,21.0,9.0,-2.619319553382597,5.400770303329455 -290,21.0,20.0,-16.774641369736234,34.127718648773715 -290,21.0,21.0,21.93449907537439,-43.48289181517921 -290,21.0,23.0,-2.5405381522555563,3.95440286307604 -290,22.0,14.0,-1.9683489489016612,3.976064876781356 -290,22.0,22.0,3.429754555384988,-6.965303617315433 -290,22.0,23.0,-1.4614056064833263,2.989238740534077 -290,23.0,21.0,-2.5405381522555563,3.95440286307604 -290,23.0,22.0,-1.4614056064833263,2.989238740534077 -290,23.0,23.0,5.311836702613133,-9.188263657315172 -290,23.0,24.0,-1.3098929438742493,2.287622053705056 -290,24.0,23.0,-1.3098929438742493,2.287622053705056 -290,24.0,24.0,4.495715080321987,-7.864978761969621 -290,24.0,25.0,-1.2165301194494855,1.8171440463475024 -290,24.0,26.0,-1.9692920169982515,3.760212661917064 -290,25.0,24.0,-1.2165301194494855,1.8171440463475024 -290,25.0,25.0,1.2165301194494855,-1.8171440463475024 -290,26.0,24.0,-1.9692920169982515,3.760212661917064 -290,26.0,26.0,3.652281470778589,-9.46044252232512 -290,26.0,27.0,0.0,2.608731947574922 -290,26.0,28.0,-0.99553355095268,1.881005840357816 -290,26.0,29.0,-0.6874559028276572,1.293971494797717 -290,27.0,5.0,-4.362844058012917,15.463571542897856 -290,27.0,7.0,-1.4439790613954469,4.540814658476248 -290,27.0,26.0,0.0,2.608731947574922 -290,27.0,27.0,5.806823119408364,-22.67145722159613 -290,28.0,26.0,-0.99553355095268,1.881005840357816 -290,28.0,28.0,1.9075867579849564,-3.604364401207048 -290,28.0,29.0,-0.9120532070322764,1.7233585608492326 -290,29.0,26.0,-0.6874559028276572,1.293971494797717 -290,29.0,28.0,-0.9120532070322764,1.7233585608492326 -290,29.0,29.0,1.5995091098599337,-3.0173300556469496 -291,0.0,0.0,6.765516048652632,-21.23160167089863 -291,0.0,1.0,-5.224646179885656,15.646726840803398 -291,0.0,2.0,-1.5408698687669766,5.631674830095234 -291,1.0,0.0,-5.224646179885656,15.646726840803398 -291,1.0,1.0,9.75228216552403,-30.648662892676068 -291,1.0,3.0,-1.7055303166990268,5.1973792282565086 -291,1.0,4.0,-1.1359607881738778,4.772479328281356 -291,1.0,5.0,-1.6861448807654689,5.116477495334806 -291,2.0,0.0,-1.5408698687669766,5.631674830095234 -291,2.0,2.0,9.736318911079088,-29.13794745915803 -291,2.0,3.0,-8.19544904231211,23.5308726290628 -291,3.0,1.0,-1.7055303166990268,5.1973792282565086 -291,3.0,2.0,-8.19544904231211,23.5308726290628 -291,3.0,3.0,16.314103089185693,-55.509410535254254 -291,3.0,5.0,-6.413123730174556,22.31120356548123 -291,3.0,11.0,0.0,4.191255364806866 -291,4.0,1.0,-1.1359607881738778,4.772479328281356 -291,4.0,4.0,4.089980824135861,-12.190647245055052 -291,4.0,6.0,-2.954020035961983,7.449267916773697 -291,5.0,1.0,-1.6861448807654689,5.116477495334806 -291,5.0,3.0,-6.413123730174556,22.31120356548123 -291,5.0,5.0,22.341631269034565,-82.8291478657789 -291,5.0,6.0,-3.590210423980992,11.02611441072814 -291,5.0,7.0,-6.289308176100628,22.0125786163522 -291,5.0,8.0,0.0,4.915840805411357 -291,5.0,9.0,0.0,1.8561002591115965 -291,5.0,27.0,-4.362844058012917,15.463571542897856 -291,6.0,4.0,-2.954020035961983,7.449267916773697 -291,6.0,5.0,-3.590210423980992,11.02611441072814 -291,6.0,6.0,6.544230459942975,-18.45668232750184 -291,7.0,5.0,-6.289308176100628,22.0125786163522 -291,7.0,7.0,7.733287237496075,-26.527493274828448 -291,7.0,27.0,-1.4439790613954469,4.540814658476248 -291,8.0,5.0,0.0,4.915840805411357 -291,8.0,8.0,0.0,-18.706293706293707 -291,8.0,9.0,0.0,9.090909090909092 -291,8.0,10.0,0.0,4.807692307692308 -291,9.0,5.0,0.0,1.8561002591115965 -291,9.0,8.0,0.0,9.090909090909092 -291,9.0,9.0,13.462042814524237,-41.3837606675224 -291,9.0,16.0,-3.956039125715353,10.317447719844054 -291,9.0,19.0,-1.7848303152666305,3.98535828943083 -291,9.0,20.0,-5.101853820159654,10.98071411292983 -291,9.0,21.0,-2.619319553382597,5.400770303329455 -291,10.0,8.0,0.0,4.807692307692308 -291,10.0,10.0,0.0,-4.807692307692308 -291,11.0,3.0,0.0,4.191255364806866 -291,11.0,11.0,6.573961583776156,-24.424167659260668 -291,11.0,12.0,0.0,7.142857142857143 -291,11.0,13.0,-1.5265676088395577,3.1734252729654173 -291,11.0,14.0,-3.0953961826564296,6.097275864326261 -291,11.0,15.0,-1.9519977922801688,4.104359379111847 -291,12.0,11.0,0.0,7.142857142857143 -291,12.0,12.0,0.0,-7.142857142857143 -291,13.0,11.0,-1.5265676088395577,3.1734252729654173 -291,13.0,13.0,4.01751987283902,-5.424299332335067 -291,13.0,14.0,-2.4909522639994623,2.250874059369649 -291,14.0,11.0,-3.0953961826564296,6.097275864326261 -291,14.0,13.0,-2.4909522639994623,2.250874059369649 -291,14.0,14.0,9.365498545964757,-16.01163373210796 -291,14.0,17.0,-1.8108011504072024,3.687418931630696 -291,14.0,22.0,-1.9683489489016612,3.976064876781356 -291,15.0,11.0,-1.9519977922801688,4.104359379111847 -291,15.0,15.0,3.271064728633931,-8.94513365126506 -291,15.0,16.0,-1.3190669363537617,4.8407742721532125 -291,16.0,9.0,-3.956039125715353,10.317447719844054 -291,16.0,15.0,-1.3190669363537617,4.8407742721532125 -291,16.0,16.0,5.275106062069114,-15.158221991997266 -291,17.0,14.0,-1.8108011504072024,3.687418931630696 -291,17.0,17.0,4.886487584415919,-9.906177730909668 -291,17.0,18.0,-3.0756864340087167,6.218758799278971 -291,18.0,17.0,-3.0756864340087167,6.218758799278971 -291,18.0,18.0,8.958039375185187,-17.98346468163191 -291,18.0,19.0,-5.88235294117647,11.76470588235294 -291,19.0,9.0,-1.7848303152666305,3.98535828943083 -291,19.0,18.0,-5.88235294117647,11.76470588235294 -291,19.0,19.0,7.6671832564431,-15.75006417178377 -291,20.0,9.0,-5.101853820159654,10.98071411292983 -291,20.0,20.0,21.876495189895888,-45.10843276170355 -291,20.0,21.0,-16.774641369736234,34.127718648773715 -291,21.0,9.0,-2.619319553382597,5.400770303329455 -291,21.0,20.0,-16.774641369736234,34.127718648773715 -291,21.0,21.0,21.93449907537439,-43.48289181517921 -291,21.0,23.0,-2.5405381522555563,3.95440286307604 -291,22.0,14.0,-1.9683489489016612,3.976064876781356 -291,22.0,22.0,3.429754555384988,-6.965303617315433 -291,22.0,23.0,-1.4614056064833263,2.989238740534077 -291,23.0,21.0,-2.5405381522555563,3.95440286307604 -291,23.0,22.0,-1.4614056064833263,2.989238740534077 -291,23.0,23.0,5.311836702613133,-9.188263657315172 -291,23.0,24.0,-1.3098929438742493,2.287622053705056 -291,24.0,23.0,-1.3098929438742493,2.287622053705056 -291,24.0,24.0,4.495715080321987,-7.864978761969621 -291,24.0,25.0,-1.2165301194494855,1.8171440463475024 -291,24.0,26.0,-1.9692920169982515,3.760212661917064 -291,25.0,24.0,-1.2165301194494855,1.8171440463475024 -291,25.0,25.0,1.2165301194494855,-1.8171440463475024 -291,26.0,24.0,-1.9692920169982515,3.760212661917064 -291,26.0,26.0,3.652281470778589,-9.46044252232512 -291,26.0,27.0,0.0,2.608731947574922 -291,26.0,28.0,-0.99553355095268,1.881005840357816 -291,26.0,29.0,-0.6874559028276572,1.293971494797717 -291,27.0,5.0,-4.362844058012917,15.463571542897856 -291,27.0,7.0,-1.4439790613954469,4.540814658476248 -291,27.0,26.0,0.0,2.608731947574922 -291,27.0,27.0,5.806823119408364,-22.67145722159613 -291,28.0,26.0,-0.99553355095268,1.881005840357816 -291,28.0,28.0,1.9075867579849564,-3.604364401207048 -291,28.0,29.0,-0.9120532070322764,1.7233585608492326 -291,29.0,26.0,-0.6874559028276572,1.293971494797717 -291,29.0,28.0,-0.9120532070322764,1.7233585608492326 -291,29.0,29.0,1.5995091098599337,-3.0173300556469496 -292,0.0,0.0,6.765516048652632,-21.23160167089863 -292,0.0,1.0,-5.224646179885656,15.646726840803398 -292,0.0,2.0,-1.5408698687669766,5.631674830095234 -292,1.0,0.0,-5.224646179885656,15.646726840803398 -292,1.0,1.0,9.75228216552403,-30.648662892676068 -292,1.0,3.0,-1.7055303166990268,5.1973792282565086 -292,1.0,4.0,-1.1359607881738778,4.772479328281356 -292,1.0,5.0,-1.6861448807654689,5.116477495334806 -292,2.0,0.0,-1.5408698687669766,5.631674830095234 -292,2.0,2.0,9.736318911079088,-29.13794745915803 -292,2.0,3.0,-8.19544904231211,23.5308726290628 -292,3.0,1.0,-1.7055303166990268,5.1973792282565086 -292,3.0,2.0,-8.19544904231211,23.5308726290628 -292,3.0,3.0,16.314103089185693,-55.509410535254254 -292,3.0,5.0,-6.413123730174556,22.31120356548123 -292,3.0,11.0,0.0,4.191255364806866 -292,4.0,1.0,-1.1359607881738778,4.772479328281356 -292,4.0,4.0,4.089980824135861,-12.190647245055052 -292,4.0,6.0,-2.954020035961983,7.449267916773697 -292,5.0,1.0,-1.6861448807654689,5.116477495334806 -292,5.0,3.0,-6.413123730174556,22.31120356548123 -292,5.0,5.0,22.341631269034565,-82.8291478657789 -292,5.0,6.0,-3.590210423980992,11.02611441072814 -292,5.0,7.0,-6.289308176100628,22.0125786163522 -292,5.0,8.0,0.0,4.915840805411357 -292,5.0,9.0,0.0,1.8561002591115965 -292,5.0,27.0,-4.362844058012917,15.463571542897856 -292,6.0,4.0,-2.954020035961983,7.449267916773697 -292,6.0,5.0,-3.590210423980992,11.02611441072814 -292,6.0,6.0,6.544230459942975,-18.45668232750184 -292,7.0,5.0,-6.289308176100628,22.0125786163522 -292,7.0,7.0,7.733287237496075,-26.527493274828448 -292,7.0,27.0,-1.4439790613954469,4.540814658476248 -292,8.0,5.0,0.0,4.915840805411357 -292,8.0,8.0,0.0,-18.706293706293707 -292,8.0,9.0,0.0,9.090909090909092 -292,8.0,10.0,0.0,4.807692307692308 -292,9.0,5.0,0.0,1.8561002591115965 -292,9.0,8.0,0.0,9.090909090909092 -292,9.0,9.0,13.462042814524237,-41.3837606675224 -292,9.0,16.0,-3.956039125715353,10.317447719844054 -292,9.0,19.0,-1.7848303152666305,3.98535828943083 -292,9.0,20.0,-5.101853820159654,10.98071411292983 -292,9.0,21.0,-2.619319553382597,5.400770303329455 -292,10.0,8.0,0.0,4.807692307692308 -292,10.0,10.0,0.0,-4.807692307692308 -292,11.0,3.0,0.0,4.191255364806866 -292,11.0,11.0,6.573961583776156,-24.424167659260668 -292,11.0,12.0,0.0,7.142857142857143 -292,11.0,13.0,-1.5265676088395577,3.1734252729654173 -292,11.0,14.0,-3.0953961826564296,6.097275864326261 -292,11.0,15.0,-1.9519977922801688,4.104359379111847 -292,12.0,11.0,0.0,7.142857142857143 -292,12.0,12.0,0.0,-7.142857142857143 -292,13.0,11.0,-1.5265676088395577,3.1734252729654173 -292,13.0,13.0,4.01751987283902,-5.424299332335067 -292,13.0,14.0,-2.4909522639994623,2.250874059369649 -292,14.0,11.0,-3.0953961826564296,6.097275864326261 -292,14.0,13.0,-2.4909522639994623,2.250874059369649 -292,14.0,14.0,9.365498545964757,-16.01163373210796 -292,14.0,17.0,-1.8108011504072024,3.687418931630696 -292,14.0,22.0,-1.9683489489016612,3.976064876781356 -292,15.0,11.0,-1.9519977922801688,4.104359379111847 -292,15.0,15.0,3.271064728633931,-8.94513365126506 -292,15.0,16.0,-1.3190669363537617,4.8407742721532125 -292,16.0,9.0,-3.956039125715353,10.317447719844054 -292,16.0,15.0,-1.3190669363537617,4.8407742721532125 -292,16.0,16.0,5.275106062069114,-15.158221991997266 -292,17.0,14.0,-1.8108011504072024,3.687418931630696 -292,17.0,17.0,4.886487584415919,-9.906177730909668 -292,17.0,18.0,-3.0756864340087167,6.218758799278971 -292,18.0,17.0,-3.0756864340087167,6.218758799278971 -292,18.0,18.0,8.958039375185187,-17.98346468163191 -292,18.0,19.0,-5.88235294117647,11.76470588235294 -292,19.0,9.0,-1.7848303152666305,3.98535828943083 -292,19.0,18.0,-5.88235294117647,11.76470588235294 -292,19.0,19.0,7.6671832564431,-15.75006417178377 -292,20.0,9.0,-5.101853820159654,10.98071411292983 -292,20.0,20.0,21.876495189895888,-45.10843276170355 -292,20.0,21.0,-16.774641369736234,34.127718648773715 -292,21.0,9.0,-2.619319553382597,5.400770303329455 -292,21.0,20.0,-16.774641369736234,34.127718648773715 -292,21.0,21.0,21.93449907537439,-43.48289181517921 -292,21.0,23.0,-2.5405381522555563,3.95440286307604 -292,22.0,14.0,-1.9683489489016612,3.976064876781356 -292,22.0,22.0,3.429754555384988,-6.965303617315433 -292,22.0,23.0,-1.4614056064833263,2.989238740534077 -292,23.0,21.0,-2.5405381522555563,3.95440286307604 -292,23.0,22.0,-1.4614056064833263,2.989238740534077 -292,23.0,23.0,5.311836702613133,-9.188263657315172 -292,23.0,24.0,-1.3098929438742493,2.287622053705056 -292,24.0,23.0,-1.3098929438742493,2.287622053705056 -292,24.0,24.0,4.495715080321987,-7.864978761969621 -292,24.0,25.0,-1.2165301194494855,1.8171440463475024 -292,24.0,26.0,-1.9692920169982515,3.760212661917064 -292,25.0,24.0,-1.2165301194494855,1.8171440463475024 -292,25.0,25.0,1.2165301194494855,-1.8171440463475024 -292,26.0,24.0,-1.9692920169982515,3.760212661917064 -292,26.0,26.0,3.652281470778589,-9.46044252232512 -292,26.0,27.0,0.0,2.608731947574922 -292,26.0,28.0,-0.99553355095268,1.881005840357816 -292,26.0,29.0,-0.6874559028276572,1.293971494797717 -292,27.0,5.0,-4.362844058012917,15.463571542897856 -292,27.0,7.0,-1.4439790613954469,4.540814658476248 -292,27.0,26.0,0.0,2.608731947574922 -292,27.0,27.0,5.806823119408364,-22.67145722159613 -292,28.0,26.0,-0.99553355095268,1.881005840357816 -292,28.0,28.0,1.9075867579849564,-3.604364401207048 -292,28.0,29.0,-0.9120532070322764,1.7233585608492326 -292,29.0,26.0,-0.6874559028276572,1.293971494797717 -292,29.0,28.0,-0.9120532070322764,1.7233585608492326 -292,29.0,29.0,1.5995091098599337,-3.0173300556469496 -293,0.0,0.0,6.765516048652632,-21.23160167089863 -293,0.0,1.0,-5.224646179885656,15.646726840803398 -293,0.0,2.0,-1.5408698687669766,5.631674830095234 -293,1.0,0.0,-5.224646179885656,15.646726840803398 -293,1.0,1.0,9.75228216552403,-30.648662892676068 -293,1.0,3.0,-1.7055303166990268,5.1973792282565086 -293,1.0,4.0,-1.1359607881738778,4.772479328281356 -293,1.0,5.0,-1.6861448807654689,5.116477495334806 -293,2.0,0.0,-1.5408698687669766,5.631674830095234 -293,2.0,2.0,9.736318911079088,-29.13794745915803 -293,2.0,3.0,-8.19544904231211,23.5308726290628 -293,3.0,1.0,-1.7055303166990268,5.1973792282565086 -293,3.0,2.0,-8.19544904231211,23.5308726290628 -293,3.0,3.0,16.314103089185693,-55.509410535254254 -293,3.0,5.0,-6.413123730174556,22.31120356548123 -293,3.0,11.0,0.0,4.191255364806866 -293,4.0,1.0,-1.1359607881738778,4.772479328281356 -293,4.0,4.0,4.089980824135861,-12.190647245055052 -293,4.0,6.0,-2.954020035961983,7.449267916773697 -293,5.0,1.0,-1.6861448807654689,5.116477495334806 -293,5.0,3.0,-6.413123730174556,22.31120356548123 -293,5.0,5.0,22.341631269034565,-82.8291478657789 -293,5.0,6.0,-3.590210423980992,11.02611441072814 -293,5.0,7.0,-6.289308176100628,22.0125786163522 -293,5.0,8.0,0.0,4.915840805411357 -293,5.0,9.0,0.0,1.8561002591115965 -293,5.0,27.0,-4.362844058012917,15.463571542897856 -293,6.0,4.0,-2.954020035961983,7.449267916773697 -293,6.0,5.0,-3.590210423980992,11.02611441072814 -293,6.0,6.0,6.544230459942975,-18.45668232750184 -293,7.0,5.0,-6.289308176100628,22.0125786163522 -293,7.0,7.0,7.733287237496075,-26.527493274828448 -293,7.0,27.0,-1.4439790613954469,4.540814658476248 -293,8.0,5.0,0.0,4.915840805411357 -293,8.0,8.0,0.0,-18.706293706293707 -293,8.0,9.0,0.0,9.090909090909092 -293,8.0,10.0,0.0,4.807692307692308 -293,9.0,5.0,0.0,1.8561002591115965 -293,9.0,8.0,0.0,9.090909090909092 -293,9.0,9.0,10.842723261141638,-35.98299036419294 -293,9.0,16.0,-3.956039125715353,10.317447719844054 -293,9.0,19.0,-1.7848303152666305,3.98535828943083 -293,9.0,20.0,-5.101853820159654,10.98071411292983 -293,10.0,8.0,0.0,4.807692307692308 -293,10.0,10.0,0.0,-4.807692307692308 -293,11.0,3.0,0.0,4.191255364806866 -293,11.0,11.0,6.573961583776156,-24.424167659260668 -293,11.0,12.0,0.0,7.142857142857143 -293,11.0,13.0,-1.5265676088395577,3.1734252729654173 -293,11.0,14.0,-3.0953961826564296,6.097275864326261 -293,11.0,15.0,-1.9519977922801688,4.104359379111847 -293,12.0,11.0,0.0,7.142857142857143 -293,12.0,12.0,0.0,-7.142857142857143 -293,13.0,11.0,-1.5265676088395577,3.1734252729654173 -293,13.0,13.0,4.01751987283902,-5.424299332335067 -293,13.0,14.0,-2.4909522639994623,2.250874059369649 -293,14.0,11.0,-3.0953961826564296,6.097275864326261 -293,14.0,13.0,-2.4909522639994623,2.250874059369649 -293,14.0,14.0,9.365498545964757,-16.01163373210796 -293,14.0,17.0,-1.8108011504072024,3.687418931630696 -293,14.0,22.0,-1.9683489489016612,3.976064876781356 -293,15.0,11.0,-1.9519977922801688,4.104359379111847 -293,15.0,15.0,3.271064728633931,-8.94513365126506 -293,15.0,16.0,-1.3190669363537617,4.8407742721532125 -293,16.0,9.0,-3.956039125715353,10.317447719844054 -293,16.0,15.0,-1.3190669363537617,4.8407742721532125 -293,16.0,16.0,5.275106062069114,-15.158221991997266 -293,17.0,14.0,-1.8108011504072024,3.687418931630696 -293,17.0,17.0,4.886487584415919,-9.906177730909668 -293,17.0,18.0,-3.0756864340087167,6.218758799278971 -293,18.0,17.0,-3.0756864340087167,6.218758799278971 -293,18.0,18.0,8.958039375185187,-17.98346468163191 -293,18.0,19.0,-5.88235294117647,11.76470588235294 -293,19.0,9.0,-1.7848303152666305,3.98535828943083 -293,19.0,18.0,-5.88235294117647,11.76470588235294 -293,19.0,19.0,7.6671832564431,-15.75006417178377 -293,20.0,9.0,-5.101853820159654,10.98071411292983 -293,20.0,20.0,21.876495189895888,-45.10843276170355 -293,20.0,21.0,-16.774641369736234,34.127718648773715 -293,21.0,20.0,-16.774641369736234,34.127718648773715 -293,21.0,21.0,19.31517952199179,-38.08212151184976 -293,21.0,23.0,-2.5405381522555563,3.95440286307604 -293,22.0,14.0,-1.9683489489016612,3.976064876781356 -293,22.0,22.0,3.429754555384988,-6.965303617315433 -293,22.0,23.0,-1.4614056064833263,2.989238740534077 -293,23.0,21.0,-2.5405381522555563,3.95440286307604 -293,23.0,22.0,-1.4614056064833263,2.989238740534077 -293,23.0,23.0,5.311836702613133,-9.188263657315172 -293,23.0,24.0,-1.3098929438742493,2.287622053705056 -293,24.0,23.0,-1.3098929438742493,2.287622053705056 -293,24.0,24.0,4.495715080321987,-7.864978761969621 -293,24.0,25.0,-1.2165301194494855,1.8171440463475024 -293,24.0,26.0,-1.9692920169982515,3.760212661917064 -293,25.0,24.0,-1.2165301194494855,1.8171440463475024 -293,25.0,25.0,1.2165301194494855,-1.8171440463475024 -293,26.0,24.0,-1.9692920169982515,3.760212661917064 -293,26.0,26.0,3.652281470778589,-9.46044252232512 -293,26.0,27.0,0.0,2.608731947574922 -293,26.0,28.0,-0.99553355095268,1.881005840357816 -293,26.0,29.0,-0.6874559028276572,1.293971494797717 -293,27.0,5.0,-4.362844058012917,15.463571542897856 -293,27.0,7.0,-1.4439790613954469,4.540814658476248 -293,27.0,26.0,0.0,2.608731947574922 -293,27.0,27.0,5.806823119408364,-22.67145722159613 -293,28.0,26.0,-0.99553355095268,1.881005840357816 -293,28.0,28.0,1.9075867579849564,-3.604364401207048 -293,28.0,29.0,-0.9120532070322764,1.7233585608492326 -293,29.0,26.0,-0.6874559028276572,1.293971494797717 -293,29.0,28.0,-0.9120532070322764,1.7233585608492326 -293,29.0,29.0,1.5995091098599337,-3.0173300556469496 -294,0.0,0.0,6.765516048652632,-21.23160167089863 -294,0.0,1.0,-5.224646179885656,15.646726840803398 -294,0.0,2.0,-1.5408698687669766,5.631674830095234 -294,1.0,0.0,-5.224646179885656,15.646726840803398 -294,1.0,1.0,9.75228216552403,-30.648662892676068 -294,1.0,3.0,-1.7055303166990268,5.1973792282565086 -294,1.0,4.0,-1.1359607881738778,4.772479328281356 -294,1.0,5.0,-1.6861448807654689,5.116477495334806 -294,2.0,0.0,-1.5408698687669766,5.631674830095234 -294,2.0,2.0,9.736318911079088,-29.13794745915803 -294,2.0,3.0,-8.19544904231211,23.5308726290628 -294,3.0,1.0,-1.7055303166990268,5.1973792282565086 -294,3.0,2.0,-8.19544904231211,23.5308726290628 -294,3.0,3.0,9.900979359011137,-33.202706969773025 -294,3.0,11.0,0.0,4.191255364806866 -294,4.0,1.0,-1.1359607881738778,4.772479328281356 -294,4.0,4.0,4.089980824135861,-12.190647245055052 -294,4.0,6.0,-2.954020035961983,7.449267916773697 -294,5.0,1.0,-1.6861448807654689,5.116477495334806 -294,5.0,5.0,11.565663480847087,-38.12347052241514 -294,5.0,6.0,-3.590210423980992,11.02611441072814 -294,5.0,7.0,-6.289308176100628,22.0125786163522 -294,6.0,4.0,-2.954020035961983,7.449267916773697 -294,6.0,5.0,-3.590210423980992,11.02611441072814 -294,6.0,6.0,6.544230459942975,-18.45668232750184 -294,7.0,5.0,-6.289308176100628,22.0125786163522 -294,7.0,7.0,7.733287237496075,-26.527493274828448 -294,7.0,27.0,-1.4439790613954469,4.540814658476248 -294,8.0,8.0,0.0,-13.8986013986014 -294,8.0,9.0,0.0,9.090909090909092 -294,8.0,10.0,0.0,4.807692307692308 -294,9.0,8.0,0.0,9.090909090909092 -294,9.0,9.0,13.462042814524237,-39.58519951644326 -294,9.0,16.0,-3.956039125715353,10.317447719844054 -294,9.0,19.0,-1.7848303152666305,3.98535828943083 -294,9.0,20.0,-5.101853820159654,10.98071411292983 -294,9.0,21.0,-2.619319553382597,5.400770303329455 -294,10.0,8.0,0.0,4.807692307692308 -294,10.0,10.0,0.0,-4.807692307692308 -294,11.0,3.0,0.0,4.191255364806866 -294,11.0,11.0,6.573961583776156,-24.424167659260668 -294,11.0,12.0,0.0,7.142857142857143 -294,11.0,13.0,-1.5265676088395577,3.1734252729654173 -294,11.0,14.0,-3.0953961826564296,6.097275864326261 -294,11.0,15.0,-1.9519977922801688,4.104359379111847 -294,12.0,11.0,0.0,7.142857142857143 -294,12.0,12.0,0.0,-7.142857142857143 -294,13.0,11.0,-1.5265676088395577,3.1734252729654173 -294,13.0,13.0,1.5265676088395577,-3.1734252729654173 -294,14.0,11.0,-3.0953961826564296,6.097275864326261 -294,14.0,14.0,6.874546281965293,-13.760759672738311 -294,14.0,17.0,-1.8108011504072024,3.687418931630696 -294,14.0,22.0,-1.9683489489016612,3.976064876781356 -294,15.0,11.0,-1.9519977922801688,4.104359379111847 -294,15.0,15.0,3.271064728633931,-8.94513365126506 -294,15.0,16.0,-1.3190669363537617,4.8407742721532125 -294,16.0,9.0,-3.956039125715353,10.317447719844054 -294,16.0,15.0,-1.3190669363537617,4.8407742721532125 -294,16.0,16.0,5.275106062069114,-15.158221991997266 -294,17.0,14.0,-1.8108011504072024,3.687418931630696 -294,17.0,17.0,4.886487584415919,-9.906177730909668 -294,17.0,18.0,-3.0756864340087167,6.218758799278971 -294,18.0,17.0,-3.0756864340087167,6.218758799278971 -294,18.0,18.0,8.958039375185187,-17.98346468163191 -294,18.0,19.0,-5.88235294117647,11.76470588235294 -294,19.0,9.0,-1.7848303152666305,3.98535828943083 -294,19.0,18.0,-5.88235294117647,11.76470588235294 -294,19.0,19.0,7.6671832564431,-15.75006417178377 -294,20.0,9.0,-5.101853820159654,10.98071411292983 -294,20.0,20.0,21.876495189895888,-45.10843276170355 -294,20.0,21.0,-16.774641369736234,34.127718648773715 -294,21.0,9.0,-2.619319553382597,5.400770303329455 -294,21.0,20.0,-16.774641369736234,34.127718648773715 -294,21.0,21.0,19.393960923118836,-39.52848895210317 -294,22.0,14.0,-1.9683489489016612,3.976064876781356 -294,22.0,22.0,3.429754555384988,-6.965303617315433 -294,22.0,23.0,-1.4614056064833263,2.989238740534077 -294,23.0,22.0,-1.4614056064833263,2.989238740534077 -294,23.0,23.0,2.771298550357576,-5.233860794239132 -294,23.0,24.0,-1.3098929438742493,2.287622053705056 -294,24.0,23.0,-1.3098929438742493,2.287622053705056 -294,24.0,24.0,4.495715080321987,-7.864978761969621 -294,24.0,25.0,-1.2165301194494855,1.8171440463475024 -294,24.0,26.0,-1.9692920169982515,3.760212661917064 -294,25.0,24.0,-1.2165301194494855,1.8171440463475024 -294,25.0,25.0,1.2165301194494855,-1.8171440463475024 -294,26.0,24.0,-1.9692920169982515,3.760212661917064 -294,26.0,26.0,3.652281470778589,-9.46044252232512 -294,26.0,27.0,0.0,2.608731947574922 -294,26.0,28.0,-0.99553355095268,1.881005840357816 -294,26.0,29.0,-0.6874559028276572,1.293971494797717 -294,27.0,7.0,-1.4439790613954469,4.540814658476248 -294,27.0,26.0,0.0,2.608731947574922 -294,27.0,27.0,1.4439790613954469,-7.214385678698274 -294,28.0,26.0,-0.99553355095268,1.881005840357816 -294,28.0,28.0,1.9075867579849564,-3.604364401207048 -294,28.0,29.0,-0.9120532070322764,1.7233585608492326 -294,29.0,26.0,-0.6874559028276572,1.293971494797717 -294,29.0,28.0,-0.9120532070322764,1.7233585608492326 -294,29.0,29.0,1.5995091098599337,-3.0173300556469496 -295,0.0,0.0,6.765516048652632,-21.23160167089863 -295,0.0,1.0,-5.224646179885656,15.646726840803398 -295,0.0,2.0,-1.5408698687669766,5.631674830095234 -295,1.0,0.0,-5.224646179885656,15.646726840803398 -295,1.0,1.0,9.75228216552403,-30.648662892676068 -295,1.0,3.0,-1.7055303166990268,5.1973792282565086 -295,1.0,4.0,-1.1359607881738778,4.772479328281356 -295,1.0,5.0,-1.6861448807654689,5.116477495334806 -295,2.0,0.0,-1.5408698687669766,5.631674830095234 -295,2.0,2.0,9.736318911079088,-29.13794745915803 -295,2.0,3.0,-8.19544904231211,23.5308726290628 -295,3.0,1.0,-1.7055303166990268,5.1973792282565086 -295,3.0,2.0,-8.19544904231211,23.5308726290628 -295,3.0,3.0,16.314103089185693,-55.509410535254254 -295,3.0,5.0,-6.413123730174556,22.31120356548123 -295,3.0,11.0,0.0,4.191255364806866 -295,4.0,1.0,-1.1359607881738778,4.772479328281356 -295,4.0,4.0,4.089980824135861,-12.190647245055052 -295,4.0,6.0,-2.954020035961983,7.449267916773697 -295,5.0,1.0,-1.6861448807654689,5.116477495334806 -295,5.0,3.0,-6.413123730174556,22.31120356548123 -295,5.0,5.0,22.341631269034565,-82.8291478657789 -295,5.0,6.0,-3.590210423980992,11.02611441072814 -295,5.0,7.0,-6.289308176100628,22.0125786163522 -295,5.0,8.0,0.0,4.915840805411357 -295,5.0,9.0,0.0,1.8561002591115965 -295,5.0,27.0,-4.362844058012917,15.463571542897856 -295,6.0,4.0,-2.954020035961983,7.449267916773697 -295,6.0,5.0,-3.590210423980992,11.02611441072814 -295,6.0,6.0,6.544230459942975,-18.45668232750184 -295,7.0,5.0,-6.289308176100628,22.0125786163522 -295,7.0,7.0,7.733287237496075,-26.527493274828448 -295,7.0,27.0,-1.4439790613954469,4.540814658476248 -295,8.0,5.0,0.0,4.915840805411357 -295,8.0,8.0,0.0,-18.706293706293707 -295,8.0,9.0,0.0,9.090909090909092 -295,8.0,10.0,0.0,4.807692307692308 -295,9.0,5.0,0.0,1.8561002591115965 -295,9.0,8.0,0.0,9.090909090909092 -295,9.0,9.0,9.506003688808882,-31.06631294767834 -295,9.0,19.0,-1.7848303152666305,3.98535828943083 -295,9.0,20.0,-5.101853820159654,10.98071411292983 -295,9.0,21.0,-2.619319553382597,5.400770303329455 -295,10.0,8.0,0.0,4.807692307692308 -295,10.0,10.0,0.0,-4.807692307692308 -295,11.0,3.0,0.0,4.191255364806866 -295,11.0,11.0,6.573961583776156,-24.424167659260668 -295,11.0,12.0,0.0,7.142857142857143 -295,11.0,13.0,-1.5265676088395577,3.1734252729654173 -295,11.0,14.0,-3.0953961826564296,6.097275864326261 -295,11.0,15.0,-1.9519977922801688,4.104359379111847 -295,12.0,11.0,0.0,7.142857142857143 -295,12.0,12.0,0.0,-7.142857142857143 -295,13.0,11.0,-1.5265676088395577,3.1734252729654173 -295,13.0,13.0,4.01751987283902,-5.424299332335067 -295,13.0,14.0,-2.4909522639994623,2.250874059369649 -295,14.0,11.0,-3.0953961826564296,6.097275864326261 -295,14.0,13.0,-2.4909522639994623,2.250874059369649 -295,14.0,14.0,9.365498545964757,-16.01163373210796 -295,14.0,17.0,-1.8108011504072024,3.687418931630696 -295,14.0,22.0,-1.9683489489016612,3.976064876781356 -295,15.0,11.0,-1.9519977922801688,4.104359379111847 -295,15.0,15.0,3.271064728633931,-8.94513365126506 -295,15.0,16.0,-1.3190669363537617,4.8407742721532125 -295,16.0,15.0,-1.3190669363537617,4.8407742721532125 -295,16.0,16.0,1.3190669363537617,-4.8407742721532125 -295,17.0,14.0,-1.8108011504072024,3.687418931630696 -295,17.0,17.0,4.886487584415919,-9.906177730909668 -295,17.0,18.0,-3.0756864340087167,6.218758799278971 -295,18.0,17.0,-3.0756864340087167,6.218758799278971 -295,18.0,18.0,8.958039375185187,-17.98346468163191 -295,18.0,19.0,-5.88235294117647,11.76470588235294 -295,19.0,9.0,-1.7848303152666305,3.98535828943083 -295,19.0,18.0,-5.88235294117647,11.76470588235294 -295,19.0,19.0,7.6671832564431,-15.75006417178377 -295,20.0,9.0,-5.101853820159654,10.98071411292983 -295,20.0,20.0,5.101853820159654,-10.98071411292983 -295,21.0,9.0,-2.619319553382597,5.400770303329455 -295,21.0,21.0,5.159857705638154,-9.355173166405494 -295,21.0,23.0,-2.5405381522555563,3.95440286307604 -295,22.0,14.0,-1.9683489489016612,3.976064876781356 -295,22.0,22.0,3.429754555384988,-6.965303617315433 -295,22.0,23.0,-1.4614056064833263,2.989238740534077 -295,23.0,21.0,-2.5405381522555563,3.95440286307604 -295,23.0,22.0,-1.4614056064833263,2.989238740534077 -295,23.0,23.0,5.311836702613133,-9.188263657315172 -295,23.0,24.0,-1.3098929438742493,2.287622053705056 -295,24.0,23.0,-1.3098929438742493,2.287622053705056 -295,24.0,24.0,4.495715080321987,-7.864978761969621 -295,24.0,25.0,-1.2165301194494855,1.8171440463475024 -295,24.0,26.0,-1.9692920169982515,3.760212661917064 -295,25.0,24.0,-1.2165301194494855,1.8171440463475024 -295,25.0,25.0,1.2165301194494855,-1.8171440463475024 -295,26.0,24.0,-1.9692920169982515,3.760212661917064 -295,26.0,26.0,2.9648255679509314,-8.166471027527404 -295,26.0,27.0,0.0,2.608731947574922 -295,26.0,28.0,-0.99553355095268,1.881005840357816 -295,27.0,5.0,-4.362844058012917,15.463571542897856 -295,27.0,7.0,-1.4439790613954469,4.540814658476248 -295,27.0,26.0,0.0,2.608731947574922 -295,27.0,27.0,5.806823119408364,-22.67145722159613 -295,28.0,26.0,-0.99553355095268,1.881005840357816 -295,28.0,28.0,1.9075867579849564,-3.604364401207048 -295,28.0,29.0,-0.9120532070322764,1.7233585608492326 -295,29.0,28.0,-0.9120532070322764,1.7233585608492326 -295,29.0,29.0,0.9120532070322764,-1.7233585608492326 -296,0.0,0.0,6.765516048652632,-21.23160167089863 -296,0.0,1.0,-5.224646179885656,15.646726840803398 -296,0.0,2.0,-1.5408698687669766,5.631674830095234 -296,1.0,0.0,-5.224646179885656,15.646726840803398 -296,1.0,1.0,9.75228216552403,-30.648662892676068 -296,1.0,3.0,-1.7055303166990268,5.1973792282565086 -296,1.0,4.0,-1.1359607881738778,4.772479328281356 -296,1.0,5.0,-1.6861448807654689,5.116477495334806 -296,2.0,0.0,-1.5408698687669766,5.631674830095234 -296,2.0,2.0,9.736318911079088,-29.13794745915803 -296,2.0,3.0,-8.19544904231211,23.5308726290628 -296,3.0,1.0,-1.7055303166990268,5.1973792282565086 -296,3.0,2.0,-8.19544904231211,23.5308726290628 -296,3.0,3.0,16.314103089185693,-55.509410535254254 -296,3.0,5.0,-6.413123730174556,22.31120356548123 -296,3.0,11.0,0.0,4.191255364806866 -296,4.0,1.0,-1.1359607881738778,4.772479328281356 -296,4.0,4.0,4.089980824135861,-12.190647245055052 -296,4.0,6.0,-2.954020035961983,7.449267916773697 -296,5.0,1.0,-1.6861448807654689,5.116477495334806 -296,5.0,3.0,-6.413123730174556,22.31120356548123 -296,5.0,5.0,12.46211266895294,-49.80345483869856 -296,5.0,8.0,0.0,4.915840805411357 -296,5.0,9.0,0.0,1.8561002591115965 -296,5.0,27.0,-4.362844058012917,15.463571542897856 -296,6.0,4.0,-2.954020035961983,7.449267916773697 -296,6.0,6.0,2.954020035961983,-7.439067916773697 -296,7.0,7.0,1.4439790613954469,-4.519414658476248 -296,7.0,27.0,-1.4439790613954469,4.540814658476248 -296,8.0,5.0,0.0,4.915840805411357 -296,8.0,8.0,0.0,-18.706293706293707 -296,8.0,9.0,0.0,9.090909090909092 -296,8.0,10.0,0.0,4.807692307692308 -296,9.0,5.0,0.0,1.8561002591115965 -296,9.0,8.0,0.0,9.090909090909092 -296,9.0,9.0,13.462042814524237,-41.3837606675224 -296,9.0,16.0,-3.956039125715353,10.317447719844054 -296,9.0,19.0,-1.7848303152666305,3.98535828943083 -296,9.0,20.0,-5.101853820159654,10.98071411292983 -296,9.0,21.0,-2.619319553382597,5.400770303329455 -296,10.0,8.0,0.0,4.807692307692308 -296,10.0,10.0,0.0,-4.807692307692308 -296,11.0,3.0,0.0,4.191255364806866 -296,11.0,11.0,6.573961583776156,-24.424167659260668 -296,11.0,12.0,0.0,7.142857142857143 -296,11.0,13.0,-1.5265676088395577,3.1734252729654173 -296,11.0,14.0,-3.0953961826564296,6.097275864326261 -296,11.0,15.0,-1.9519977922801688,4.104359379111847 -296,12.0,11.0,0.0,7.142857142857143 -296,12.0,12.0,0.0,-7.142857142857143 -296,13.0,11.0,-1.5265676088395577,3.1734252729654173 -296,13.0,13.0,1.5265676088395577,-3.1734252729654173 -296,14.0,11.0,-3.0953961826564296,6.097275864326261 -296,14.0,14.0,6.874546281965293,-13.760759672738311 -296,14.0,17.0,-1.8108011504072024,3.687418931630696 -296,14.0,22.0,-1.9683489489016612,3.976064876781356 -296,15.0,11.0,-1.9519977922801688,4.104359379111847 -296,15.0,15.0,3.271064728633931,-8.94513365126506 -296,15.0,16.0,-1.3190669363537617,4.8407742721532125 -296,16.0,9.0,-3.956039125715353,10.317447719844054 -296,16.0,15.0,-1.3190669363537617,4.8407742721532125 -296,16.0,16.0,5.275106062069114,-15.158221991997266 -296,17.0,14.0,-1.8108011504072024,3.687418931630696 -296,17.0,17.0,4.886487584415919,-9.906177730909668 -296,17.0,18.0,-3.0756864340087167,6.218758799278971 -296,18.0,17.0,-3.0756864340087167,6.218758799278971 -296,18.0,18.0,8.958039375185187,-17.98346468163191 -296,18.0,19.0,-5.88235294117647,11.76470588235294 -296,19.0,9.0,-1.7848303152666305,3.98535828943083 -296,19.0,18.0,-5.88235294117647,11.76470588235294 -296,19.0,19.0,7.6671832564431,-15.75006417178377 -296,20.0,9.0,-5.101853820159654,10.98071411292983 -296,20.0,20.0,21.876495189895888,-45.10843276170355 -296,20.0,21.0,-16.774641369736234,34.127718648773715 -296,21.0,9.0,-2.619319553382597,5.400770303329455 -296,21.0,20.0,-16.774641369736234,34.127718648773715 -296,21.0,21.0,19.393960923118836,-39.52848895210317 -296,22.0,14.0,-1.9683489489016612,3.976064876781356 -296,22.0,22.0,3.429754555384988,-6.965303617315433 -296,22.0,23.0,-1.4614056064833263,2.989238740534077 -296,23.0,22.0,-1.4614056064833263,2.989238740534077 -296,23.0,23.0,2.771298550357576,-5.233860794239132 -296,23.0,24.0,-1.3098929438742493,2.287622053705056 -296,24.0,23.0,-1.3098929438742493,2.287622053705056 -296,24.0,24.0,4.495715080321987,-7.864978761969621 -296,24.0,25.0,-1.2165301194494855,1.8171440463475024 -296,24.0,26.0,-1.9692920169982515,3.760212661917064 -296,25.0,24.0,-1.2165301194494855,1.8171440463475024 -296,25.0,25.0,1.2165301194494855,-1.8171440463475024 -296,26.0,24.0,-1.9692920169982515,3.760212661917064 -296,26.0,26.0,3.652281470778589,-9.46044252232512 -296,26.0,27.0,0.0,2.608731947574922 -296,26.0,28.0,-0.99553355095268,1.881005840357816 -296,26.0,29.0,-0.6874559028276572,1.293971494797717 -296,27.0,5.0,-4.362844058012917,15.463571542897856 -296,27.0,7.0,-1.4439790613954469,4.540814658476248 -296,27.0,26.0,0.0,2.608731947574922 -296,27.0,27.0,5.806823119408364,-22.67145722159613 -296,28.0,26.0,-0.99553355095268,1.881005840357816 -296,28.0,28.0,1.9075867579849564,-3.604364401207048 -296,28.0,29.0,-0.9120532070322764,1.7233585608492326 -296,29.0,26.0,-0.6874559028276572,1.293971494797717 -296,29.0,28.0,-0.9120532070322764,1.7233585608492326 -296,29.0,29.0,1.5995091098599337,-3.0173300556469496 -297,0.0,0.0,1.5408698687669766,-5.611274830095233 -297,0.0,2.0,-1.5408698687669766,5.631674830095234 -297,1.0,1.0,4.527635985638374,-15.028336051872673 -297,1.0,3.0,-1.7055303166990268,5.1973792282565086 -297,1.0,4.0,-1.1359607881738778,4.772479328281356 -297,1.0,5.0,-1.6861448807654689,5.116477495334806 -297,2.0,0.0,-1.5408698687669766,5.631674830095234 -297,2.0,2.0,9.736318911079088,-29.13794745915803 -297,2.0,3.0,-8.19544904231211,23.5308726290628 -297,3.0,1.0,-1.7055303166990268,5.1973792282565086 -297,3.0,2.0,-8.19544904231211,23.5308726290628 -297,3.0,3.0,16.314103089185693,-55.509410535254254 -297,3.0,5.0,-6.413123730174556,22.31120356548123 -297,3.0,11.0,0.0,4.191255364806866 -297,4.0,1.0,-1.1359607881738778,4.772479328281356 -297,4.0,4.0,4.089980824135861,-12.190647245055052 -297,4.0,6.0,-2.954020035961983,7.449267916773697 -297,5.0,1.0,-1.6861448807654689,5.116477495334806 -297,5.0,3.0,-6.413123730174556,22.31120356548123 -297,5.0,5.0,22.341631269034565,-82.8291478657789 -297,5.0,6.0,-3.590210423980992,11.02611441072814 -297,5.0,7.0,-6.289308176100628,22.0125786163522 -297,5.0,8.0,0.0,4.915840805411357 -297,5.0,9.0,0.0,1.8561002591115965 -297,5.0,27.0,-4.362844058012917,15.463571542897856 -297,6.0,4.0,-2.954020035961983,7.449267916773697 -297,6.0,5.0,-3.590210423980992,11.02611441072814 -297,6.0,6.0,6.544230459942975,-18.45668232750184 -297,7.0,5.0,-6.289308176100628,22.0125786163522 -297,7.0,7.0,7.733287237496075,-26.527493274828448 -297,7.0,27.0,-1.4439790613954469,4.540814658476248 -297,8.0,5.0,0.0,4.915840805411357 -297,8.0,8.0,0.0,-18.706293706293707 -297,8.0,9.0,0.0,9.090909090909092 -297,8.0,10.0,0.0,4.807692307692308 -297,9.0,5.0,0.0,1.8561002591115965 -297,9.0,8.0,0.0,9.090909090909092 -297,9.0,9.0,13.462042814524237,-41.3837606675224 -297,9.0,16.0,-3.956039125715353,10.317447719844054 -297,9.0,19.0,-1.7848303152666305,3.98535828943083 -297,9.0,20.0,-5.101853820159654,10.98071411292983 -297,9.0,21.0,-2.619319553382597,5.400770303329455 -297,10.0,8.0,0.0,4.807692307692308 -297,10.0,10.0,0.0,-4.807692307692308 -297,11.0,3.0,0.0,4.191255364806866 -297,11.0,11.0,6.573961583776156,-24.424167659260668 -297,11.0,12.0,0.0,7.142857142857143 -297,11.0,13.0,-1.5265676088395577,3.1734252729654173 -297,11.0,14.0,-3.0953961826564296,6.097275864326261 -297,11.0,15.0,-1.9519977922801688,4.104359379111847 -297,12.0,11.0,0.0,7.142857142857143 -297,12.0,12.0,0.0,-7.142857142857143 -297,13.0,11.0,-1.5265676088395577,3.1734252729654173 -297,13.0,13.0,4.01751987283902,-5.424299332335067 -297,13.0,14.0,-2.4909522639994623,2.250874059369649 -297,14.0,11.0,-3.0953961826564296,6.097275864326261 -297,14.0,13.0,-2.4909522639994623,2.250874059369649 -297,14.0,14.0,9.365498545964757,-16.01163373210796 -297,14.0,17.0,-1.8108011504072024,3.687418931630696 -297,14.0,22.0,-1.9683489489016612,3.976064876781356 -297,15.0,11.0,-1.9519977922801688,4.104359379111847 -297,15.0,15.0,3.271064728633931,-8.94513365126506 -297,15.0,16.0,-1.3190669363537617,4.8407742721532125 -297,16.0,9.0,-3.956039125715353,10.317447719844054 -297,16.0,15.0,-1.3190669363537617,4.8407742721532125 -297,16.0,16.0,5.275106062069114,-15.158221991997266 -297,17.0,14.0,-1.8108011504072024,3.687418931630696 -297,17.0,17.0,4.886487584415919,-9.906177730909668 -297,17.0,18.0,-3.0756864340087167,6.218758799278971 -297,18.0,17.0,-3.0756864340087167,6.218758799278971 -297,18.0,18.0,8.958039375185187,-17.98346468163191 -297,18.0,19.0,-5.88235294117647,11.76470588235294 -297,19.0,9.0,-1.7848303152666305,3.98535828943083 -297,19.0,18.0,-5.88235294117647,11.76470588235294 -297,19.0,19.0,7.6671832564431,-15.75006417178377 -297,20.0,9.0,-5.101853820159654,10.98071411292983 -297,20.0,20.0,21.876495189895888,-45.10843276170355 -297,20.0,21.0,-16.774641369736234,34.127718648773715 -297,21.0,9.0,-2.619319553382597,5.400770303329455 -297,21.0,20.0,-16.774641369736234,34.127718648773715 -297,21.0,21.0,21.93449907537439,-43.48289181517921 -297,21.0,23.0,-2.5405381522555563,3.95440286307604 -297,22.0,14.0,-1.9683489489016612,3.976064876781356 -297,22.0,22.0,3.429754555384988,-6.965303617315433 -297,22.0,23.0,-1.4614056064833263,2.989238740534077 -297,23.0,21.0,-2.5405381522555563,3.95440286307604 -297,23.0,22.0,-1.4614056064833263,2.989238740534077 -297,23.0,23.0,5.311836702613133,-9.188263657315172 -297,23.0,24.0,-1.3098929438742493,2.287622053705056 -297,24.0,23.0,-1.3098929438742493,2.287622053705056 -297,24.0,24.0,4.495715080321987,-7.864978761969621 -297,24.0,25.0,-1.2165301194494855,1.8171440463475024 -297,24.0,26.0,-1.9692920169982515,3.760212661917064 -297,25.0,24.0,-1.2165301194494855,1.8171440463475024 -297,25.0,25.0,1.2165301194494855,-1.8171440463475024 -297,26.0,24.0,-1.9692920169982515,3.760212661917064 -297,26.0,26.0,3.652281470778589,-9.46044252232512 -297,26.0,27.0,0.0,2.608731947574922 -297,26.0,28.0,-0.99553355095268,1.881005840357816 -297,26.0,29.0,-0.6874559028276572,1.293971494797717 -297,27.0,5.0,-4.362844058012917,15.463571542897856 -297,27.0,7.0,-1.4439790613954469,4.540814658476248 -297,27.0,26.0,0.0,2.608731947574922 -297,27.0,27.0,5.806823119408364,-22.67145722159613 -297,28.0,26.0,-0.99553355095268,1.881005840357816 -297,28.0,28.0,1.9075867579849564,-3.604364401207048 -297,28.0,29.0,-0.9120532070322764,1.7233585608492326 -297,29.0,26.0,-0.6874559028276572,1.293971494797717 -297,29.0,28.0,-0.9120532070322764,1.7233585608492326 -297,29.0,29.0,1.5995091098599337,-3.0173300556469496 -298,0.0,0.0,6.765516048652632,-21.23160167089863 -298,0.0,1.0,-5.224646179885656,15.646726840803398 -298,0.0,2.0,-1.5408698687669766,5.631674830095234 -298,1.0,0.0,-5.224646179885656,15.646726840803398 -298,1.0,1.0,9.75228216552403,-30.648662892676068 -298,1.0,3.0,-1.7055303166990268,5.1973792282565086 -298,1.0,4.0,-1.1359607881738778,4.772479328281356 -298,1.0,5.0,-1.6861448807654689,5.116477495334806 -298,2.0,0.0,-1.5408698687669766,5.631674830095234 -298,2.0,2.0,9.736318911079088,-29.13794745915803 -298,2.0,3.0,-8.19544904231211,23.5308726290628 -298,3.0,1.0,-1.7055303166990268,5.1973792282565086 -298,3.0,2.0,-8.19544904231211,23.5308726290628 -298,3.0,3.0,16.314103089185693,-55.509410535254254 -298,3.0,5.0,-6.413123730174556,22.31120356548123 -298,3.0,11.0,0.0,4.191255364806866 -298,4.0,1.0,-1.1359607881738778,4.772479328281356 -298,4.0,4.0,4.089980824135861,-12.190647245055052 -298,4.0,6.0,-2.954020035961983,7.449267916773697 -298,5.0,1.0,-1.6861448807654689,5.116477495334806 -298,5.0,3.0,-6.413123730174556,22.31120356548123 -298,5.0,5.0,17.978787211021647,-65.45659617931904 -298,5.0,6.0,-3.590210423980992,11.02611441072814 -298,5.0,7.0,-6.289308176100628,22.0125786163522 -298,5.0,8.0,0.0,4.915840805411357 -298,6.0,4.0,-2.954020035961983,7.449267916773697 -298,6.0,5.0,-3.590210423980992,11.02611441072814 -298,6.0,6.0,6.544230459942975,-18.45668232750184 -298,7.0,5.0,-6.289308176100628,22.0125786163522 -298,7.0,7.0,7.733287237496075,-26.527493274828448 -298,7.0,27.0,-1.4439790613954469,4.540814658476248 -298,8.0,5.0,0.0,4.915840805411357 -298,8.0,8.0,0.0,-18.706293706293707 -298,8.0,9.0,0.0,9.090909090909092 -298,8.0,10.0,0.0,4.807692307692308 -298,9.0,8.0,0.0,9.090909090909092 -298,9.0,9.0,13.462042814524237,-39.58519951644326 -298,9.0,16.0,-3.956039125715353,10.317447719844054 -298,9.0,19.0,-1.7848303152666305,3.98535828943083 -298,9.0,20.0,-5.101853820159654,10.98071411292983 -298,9.0,21.0,-2.619319553382597,5.400770303329455 -298,10.0,8.0,0.0,4.807692307692308 -298,10.0,10.0,0.0,-4.807692307692308 -298,11.0,3.0,0.0,4.191255364806866 -298,11.0,11.0,6.573961583776156,-24.424167659260668 -298,11.0,12.0,0.0,7.142857142857143 -298,11.0,13.0,-1.5265676088395577,3.1734252729654173 -298,11.0,14.0,-3.0953961826564296,6.097275864326261 -298,11.0,15.0,-1.9519977922801688,4.104359379111847 -298,12.0,11.0,0.0,7.142857142857143 -298,12.0,12.0,0.0,-7.142857142857143 -298,13.0,11.0,-1.5265676088395577,3.1734252729654173 -298,13.0,13.0,4.01751987283902,-5.424299332335067 -298,13.0,14.0,-2.4909522639994623,2.250874059369649 -298,14.0,11.0,-3.0953961826564296,6.097275864326261 -298,14.0,13.0,-2.4909522639994623,2.250874059369649 -298,14.0,14.0,9.365498545964757,-16.01163373210796 -298,14.0,17.0,-1.8108011504072024,3.687418931630696 -298,14.0,22.0,-1.9683489489016612,3.976064876781356 -298,15.0,11.0,-1.9519977922801688,4.104359379111847 -298,15.0,15.0,3.271064728633931,-8.94513365126506 -298,15.0,16.0,-1.3190669363537617,4.8407742721532125 -298,16.0,9.0,-3.956039125715353,10.317447719844054 -298,16.0,15.0,-1.3190669363537617,4.8407742721532125 -298,16.0,16.0,5.275106062069114,-15.158221991997266 -298,17.0,14.0,-1.8108011504072024,3.687418931630696 -298,17.0,17.0,4.886487584415919,-9.906177730909668 -298,17.0,18.0,-3.0756864340087167,6.218758799278971 -298,18.0,17.0,-3.0756864340087167,6.218758799278971 -298,18.0,18.0,8.958039375185187,-17.98346468163191 -298,18.0,19.0,-5.88235294117647,11.76470588235294 -298,19.0,9.0,-1.7848303152666305,3.98535828943083 -298,19.0,18.0,-5.88235294117647,11.76470588235294 -298,19.0,19.0,7.6671832564431,-15.75006417178377 -298,20.0,9.0,-5.101853820159654,10.98071411292983 -298,20.0,20.0,21.876495189895888,-45.10843276170355 -298,20.0,21.0,-16.774641369736234,34.127718648773715 -298,21.0,9.0,-2.619319553382597,5.400770303329455 -298,21.0,20.0,-16.774641369736234,34.127718648773715 -298,21.0,21.0,21.93449907537439,-43.48289181517921 -298,21.0,23.0,-2.5405381522555563,3.95440286307604 -298,22.0,14.0,-1.9683489489016612,3.976064876781356 -298,22.0,22.0,3.429754555384988,-6.965303617315433 -298,22.0,23.0,-1.4614056064833263,2.989238740534077 -298,23.0,21.0,-2.5405381522555563,3.95440286307604 -298,23.0,22.0,-1.4614056064833263,2.989238740534077 -298,23.0,23.0,5.311836702613133,-9.188263657315172 -298,23.0,24.0,-1.3098929438742493,2.287622053705056 -298,24.0,23.0,-1.3098929438742493,2.287622053705056 -298,24.0,24.0,4.495715080321987,-7.864978761969621 -298,24.0,25.0,-1.2165301194494855,1.8171440463475024 -298,24.0,26.0,-1.9692920169982515,3.760212661917064 -298,25.0,24.0,-1.2165301194494855,1.8171440463475024 -298,25.0,25.0,1.2165301194494855,-1.8171440463475024 -298,26.0,24.0,-1.9692920169982515,3.760212661917064 -298,26.0,26.0,3.652281470778589,-9.46044252232512 -298,26.0,27.0,0.0,2.608731947574922 -298,26.0,28.0,-0.99553355095268,1.881005840357816 -298,26.0,29.0,-0.6874559028276572,1.293971494797717 -298,27.0,7.0,-1.4439790613954469,4.540814658476248 -298,27.0,26.0,0.0,2.608731947574922 -298,27.0,27.0,1.4439790613954469,-7.214385678698274 -298,28.0,26.0,-0.99553355095268,1.881005840357816 -298,28.0,28.0,1.9075867579849564,-3.604364401207048 -298,28.0,29.0,-0.9120532070322764,1.7233585608492326 -298,29.0,26.0,-0.6874559028276572,1.293971494797717 -298,29.0,28.0,-0.9120532070322764,1.7233585608492326 -298,29.0,29.0,1.5995091098599337,-3.0173300556469496 -299,0.0,0.0,6.765516048652632,-21.23160167089863 -299,0.0,1.0,-5.224646179885656,15.646726840803398 -299,0.0,2.0,-1.5408698687669766,5.631674830095234 -299,1.0,0.0,-5.224646179885656,15.646726840803398 -299,1.0,1.0,9.75228216552403,-30.648662892676068 -299,1.0,3.0,-1.7055303166990268,5.1973792282565086 -299,1.0,4.0,-1.1359607881738778,4.772479328281356 -299,1.0,5.0,-1.6861448807654689,5.116477495334806 -299,2.0,0.0,-1.5408698687669766,5.631674830095234 -299,2.0,2.0,1.5408698687669766,-5.611274830095233 -299,3.0,1.0,-1.7055303166990268,5.1973792282565086 -299,3.0,3.0,8.118654046873583,-31.982737906191456 -299,3.0,5.0,-6.413123730174556,22.31120356548123 -299,3.0,11.0,0.0,4.191255364806866 -299,4.0,1.0,-1.1359607881738778,4.772479328281356 -299,4.0,4.0,4.089980824135861,-12.190647245055052 -299,4.0,6.0,-2.954020035961983,7.449267916773697 -299,5.0,1.0,-1.6861448807654689,5.116477495334806 -299,5.0,3.0,-6.413123730174556,22.31120356548123 -299,5.0,5.0,18.75142084505357,-71.81153345505078 -299,5.0,7.0,-6.289308176100628,22.0125786163522 -299,5.0,8.0,0.0,4.915840805411357 -299,5.0,9.0,0.0,1.8561002591115965 -299,5.0,27.0,-4.362844058012917,15.463571542897856 -299,6.0,4.0,-2.954020035961983,7.449267916773697 -299,6.0,6.0,2.954020035961983,-7.439067916773697 -299,7.0,5.0,-6.289308176100628,22.0125786163522 -299,7.0,7.0,7.733287237496075,-26.527493274828448 -299,7.0,27.0,-1.4439790613954469,4.540814658476248 -299,8.0,5.0,0.0,4.915840805411357 -299,8.0,8.0,0.0,-9.615384615384617 -299,8.0,10.0,0.0,4.807692307692308 -299,9.0,5.0,0.0,1.8561002591115965 -299,9.0,9.0,13.462042814524237,-32.29285157661331 -299,9.0,16.0,-3.956039125715353,10.317447719844054 -299,9.0,19.0,-1.7848303152666305,3.98535828943083 -299,9.0,20.0,-5.101853820159654,10.98071411292983 -299,9.0,21.0,-2.619319553382597,5.400770303329455 -299,10.0,8.0,0.0,4.807692307692308 -299,10.0,10.0,0.0,-4.807692307692308 -299,11.0,3.0,0.0,4.191255364806866 -299,11.0,11.0,6.573961583776156,-24.424167659260668 -299,11.0,12.0,0.0,7.142857142857143 -299,11.0,13.0,-1.5265676088395577,3.1734252729654173 -299,11.0,14.0,-3.0953961826564296,6.097275864326261 -299,11.0,15.0,-1.9519977922801688,4.104359379111847 -299,12.0,11.0,0.0,7.142857142857143 -299,12.0,12.0,0.0,-7.142857142857143 -299,13.0,11.0,-1.5265676088395577,3.1734252729654173 -299,13.0,13.0,1.5265676088395577,-3.1734252729654173 -299,14.0,11.0,-3.0953961826564296,6.097275864326261 -299,14.0,14.0,4.906197333063632,-9.784694795956955 -299,14.0,17.0,-1.8108011504072024,3.687418931630696 -299,15.0,11.0,-1.9519977922801688,4.104359379111847 -299,15.0,15.0,3.271064728633931,-8.94513365126506 -299,15.0,16.0,-1.3190669363537617,4.8407742721532125 -299,16.0,9.0,-3.956039125715353,10.317447719844054 -299,16.0,15.0,-1.3190669363537617,4.8407742721532125 -299,16.0,16.0,5.275106062069114,-15.158221991997266 -299,17.0,14.0,-1.8108011504072024,3.687418931630696 -299,17.0,17.0,4.886487584415919,-9.906177730909668 -299,17.0,18.0,-3.0756864340087167,6.218758799278971 -299,18.0,17.0,-3.0756864340087167,6.218758799278971 -299,18.0,18.0,8.958039375185187,-17.98346468163191 -299,18.0,19.0,-5.88235294117647,11.76470588235294 -299,19.0,9.0,-1.7848303152666305,3.98535828943083 -299,19.0,18.0,-5.88235294117647,11.76470588235294 -299,19.0,19.0,7.6671832564431,-15.75006417178377 -299,20.0,9.0,-5.101853820159654,10.98071411292983 -299,20.0,20.0,5.101853820159654,-10.98071411292983 -299,21.0,9.0,-2.619319553382597,5.400770303329455 -299,21.0,21.0,5.159857705638154,-9.355173166405494 -299,21.0,23.0,-2.5405381522555563,3.95440286307604 -299,22.0,22.0,1.4614056064833263,-2.989238740534077 -299,22.0,23.0,-1.4614056064833263,2.989238740534077 -299,23.0,21.0,-2.5405381522555563,3.95440286307604 -299,23.0,22.0,-1.4614056064833263,2.989238740534077 -299,23.0,23.0,5.311836702613133,-9.188263657315172 -299,23.0,24.0,-1.3098929438742493,2.287622053705056 -299,24.0,23.0,-1.3098929438742493,2.287622053705056 -299,24.0,24.0,4.495715080321987,-7.864978761969621 -299,24.0,25.0,-1.2165301194494855,1.8171440463475024 -299,24.0,26.0,-1.9692920169982515,3.760212661917064 -299,25.0,24.0,-1.2165301194494855,1.8171440463475024 -299,25.0,25.0,1.2165301194494855,-1.8171440463475024 -299,26.0,24.0,-1.9692920169982515,3.760212661917064 -299,26.0,26.0,3.652281470778589,-9.46044252232512 -299,26.0,27.0,0.0,2.608731947574922 -299,26.0,28.0,-0.99553355095268,1.881005840357816 -299,26.0,29.0,-0.6874559028276572,1.293971494797717 -299,27.0,5.0,-4.362844058012917,15.463571542897856 -299,27.0,7.0,-1.4439790613954469,4.540814658476248 -299,27.0,26.0,0.0,2.608731947574922 -299,27.0,27.0,5.806823119408364,-22.67145722159613 -299,28.0,26.0,-0.99553355095268,1.881005840357816 -299,28.0,28.0,1.9075867579849564,-3.604364401207048 -299,28.0,29.0,-0.9120532070322764,1.7233585608492326 -299,29.0,26.0,-0.6874559028276572,1.293971494797717 -299,29.0,28.0,-0.9120532070322764,1.7233585608492326 -299,29.0,29.0,1.5995091098599337,-3.0173300556469496 -300,0.0,0.0,6.765516048652632,-21.23160167089863 -300,0.0,1.0,-5.224646179885656,15.646726840803398 -300,0.0,2.0,-1.5408698687669766,5.631674830095234 -300,1.0,0.0,-5.224646179885656,15.646726840803398 -300,1.0,1.0,9.75228216552403,-30.648662892676068 -300,1.0,3.0,-1.7055303166990268,5.1973792282565086 -300,1.0,4.0,-1.1359607881738778,4.772479328281356 -300,1.0,5.0,-1.6861448807654689,5.116477495334806 -300,2.0,0.0,-1.5408698687669766,5.631674830095234 -300,2.0,2.0,9.736318911079088,-29.13794745915803 -300,2.0,3.0,-8.19544904231211,23.5308726290628 -300,3.0,1.0,-1.7055303166990268,5.1973792282565086 -300,3.0,2.0,-8.19544904231211,23.5308726290628 -300,3.0,3.0,16.314103089185693,-55.509410535254254 -300,3.0,5.0,-6.413123730174556,22.31120356548123 -300,3.0,11.0,0.0,4.191255364806866 -300,4.0,1.0,-1.1359607881738778,4.772479328281356 -300,4.0,4.0,4.089980824135861,-12.190647245055052 -300,4.0,6.0,-2.954020035961983,7.449267916773697 -300,5.0,1.0,-1.6861448807654689,5.116477495334806 -300,5.0,3.0,-6.413123730174556,22.31120356548123 -300,5.0,5.0,16.052323092933932,-60.8210692494267 -300,5.0,6.0,-3.590210423980992,11.02611441072814 -300,5.0,8.0,0.0,4.915840805411357 -300,5.0,9.0,0.0,1.8561002591115965 -300,5.0,27.0,-4.362844058012917,15.463571542897856 -300,6.0,4.0,-2.954020035961983,7.449267916773697 -300,6.0,5.0,-3.590210423980992,11.02611441072814 -300,6.0,6.0,6.544230459942975,-18.45668232750184 -300,7.0,7.0,1.4439790613954469,-4.519414658476248 -300,7.0,27.0,-1.4439790613954469,4.540814658476248 -300,8.0,5.0,0.0,4.915840805411357 -300,8.0,8.0,0.0,-18.706293706293707 -300,8.0,9.0,0.0,9.090909090909092 -300,8.0,10.0,0.0,4.807692307692308 -300,9.0,5.0,0.0,1.8561002591115965 -300,9.0,8.0,0.0,9.090909090909092 -300,9.0,9.0,13.462042814524237,-41.3837606675224 -300,9.0,16.0,-3.956039125715353,10.317447719844054 -300,9.0,19.0,-1.7848303152666305,3.98535828943083 -300,9.0,20.0,-5.101853820159654,10.98071411292983 -300,9.0,21.0,-2.619319553382597,5.400770303329455 -300,10.0,8.0,0.0,4.807692307692308 -300,10.0,10.0,0.0,-4.807692307692308 -300,11.0,3.0,0.0,4.191255364806866 -300,11.0,11.0,6.573961583776156,-24.424167659260668 -300,11.0,12.0,0.0,7.142857142857143 -300,11.0,13.0,-1.5265676088395577,3.1734252729654173 -300,11.0,14.0,-3.0953961826564296,6.097275864326261 -300,11.0,15.0,-1.9519977922801688,4.104359379111847 -300,12.0,11.0,0.0,7.142857142857143 -300,12.0,12.0,0.0,-7.142857142857143 -300,13.0,11.0,-1.5265676088395577,3.1734252729654173 -300,13.0,13.0,4.01751987283902,-5.424299332335067 -300,13.0,14.0,-2.4909522639994623,2.250874059369649 -300,14.0,11.0,-3.0953961826564296,6.097275864326261 -300,14.0,13.0,-2.4909522639994623,2.250874059369649 -300,14.0,14.0,9.365498545964757,-16.01163373210796 -300,14.0,17.0,-1.8108011504072024,3.687418931630696 -300,14.0,22.0,-1.9683489489016612,3.976064876781356 -300,15.0,11.0,-1.9519977922801688,4.104359379111847 -300,15.0,15.0,3.271064728633931,-8.94513365126506 -300,15.0,16.0,-1.3190669363537617,4.8407742721532125 -300,16.0,9.0,-3.956039125715353,10.317447719844054 -300,16.0,15.0,-1.3190669363537617,4.8407742721532125 -300,16.0,16.0,5.275106062069114,-15.158221991997266 -300,17.0,14.0,-1.8108011504072024,3.687418931630696 -300,17.0,17.0,4.886487584415919,-9.906177730909668 -300,17.0,18.0,-3.0756864340087167,6.218758799278971 -300,18.0,17.0,-3.0756864340087167,6.218758799278971 -300,18.0,18.0,8.958039375185187,-17.98346468163191 -300,18.0,19.0,-5.88235294117647,11.76470588235294 -300,19.0,9.0,-1.7848303152666305,3.98535828943083 -300,19.0,18.0,-5.88235294117647,11.76470588235294 -300,19.0,19.0,7.6671832564431,-15.75006417178377 -300,20.0,9.0,-5.101853820159654,10.98071411292983 -300,20.0,20.0,21.876495189895888,-45.10843276170355 -300,20.0,21.0,-16.774641369736234,34.127718648773715 -300,21.0,9.0,-2.619319553382597,5.400770303329455 -300,21.0,20.0,-16.774641369736234,34.127718648773715 -300,21.0,21.0,21.93449907537439,-43.48289181517921 -300,21.0,23.0,-2.5405381522555563,3.95440286307604 -300,22.0,14.0,-1.9683489489016612,3.976064876781356 -300,22.0,22.0,3.429754555384988,-6.965303617315433 -300,22.0,23.0,-1.4614056064833263,2.989238740534077 -300,23.0,21.0,-2.5405381522555563,3.95440286307604 -300,23.0,22.0,-1.4614056064833263,2.989238740534077 -300,23.0,23.0,5.311836702613133,-9.188263657315172 -300,23.0,24.0,-1.3098929438742493,2.287622053705056 -300,24.0,23.0,-1.3098929438742493,2.287622053705056 -300,24.0,24.0,4.495715080321987,-7.864978761969621 -300,24.0,25.0,-1.2165301194494855,1.8171440463475024 -300,24.0,26.0,-1.9692920169982515,3.760212661917064 -300,25.0,24.0,-1.2165301194494855,1.8171440463475024 -300,25.0,25.0,1.2165301194494855,-1.8171440463475024 -300,26.0,24.0,-1.9692920169982515,3.760212661917064 -300,26.0,26.0,2.9648255679509314,-8.166471027527404 -300,26.0,27.0,0.0,2.608731947574922 -300,26.0,28.0,-0.99553355095268,1.881005840357816 -300,27.0,5.0,-4.362844058012917,15.463571542897856 -300,27.0,7.0,-1.4439790613954469,4.540814658476248 -300,27.0,26.0,0.0,2.608731947574922 -300,27.0,27.0,5.806823119408364,-22.67145722159613 -300,28.0,26.0,-0.99553355095268,1.881005840357816 -300,28.0,28.0,1.9075867579849564,-3.604364401207048 -300,28.0,29.0,-0.9120532070322764,1.7233585608492326 -300,29.0,28.0,-0.9120532070322764,1.7233585608492326 -300,29.0,29.0,0.9120532070322764,-1.7233585608492326 -301,0.0,0.0,6.765516048652632,-21.23160167089863 -301,0.0,1.0,-5.224646179885656,15.646726840803398 -301,0.0,2.0,-1.5408698687669766,5.631674830095234 -301,1.0,0.0,-5.224646179885656,15.646726840803398 -301,1.0,1.0,9.75228216552403,-30.648662892676068 -301,1.0,3.0,-1.7055303166990268,5.1973792282565086 -301,1.0,4.0,-1.1359607881738778,4.772479328281356 -301,1.0,5.0,-1.6861448807654689,5.116477495334806 -301,2.0,0.0,-1.5408698687669766,5.631674830095234 -301,2.0,2.0,9.736318911079088,-29.13794745915803 -301,2.0,3.0,-8.19544904231211,23.5308726290628 -301,3.0,1.0,-1.7055303166990268,5.1973792282565086 -301,3.0,2.0,-8.19544904231211,23.5308726290628 -301,3.0,3.0,16.314103089185693,-55.509410535254254 -301,3.0,5.0,-6.413123730174556,22.31120356548123 -301,3.0,11.0,0.0,4.191255364806866 -301,4.0,1.0,-1.1359607881738778,4.772479328281356 -301,4.0,4.0,4.089980824135861,-12.190647245055052 -301,4.0,6.0,-2.954020035961983,7.449267916773697 -301,5.0,1.0,-1.6861448807654689,5.116477495334806 -301,5.0,3.0,-6.413123730174556,22.31120356548123 -301,5.0,5.0,17.978787211021647,-65.45659617931904 -301,5.0,6.0,-3.590210423980992,11.02611441072814 -301,5.0,7.0,-6.289308176100628,22.0125786163522 -301,5.0,8.0,0.0,4.915840805411357 -301,6.0,4.0,-2.954020035961983,7.449267916773697 -301,6.0,5.0,-3.590210423980992,11.02611441072814 -301,6.0,6.0,6.544230459942975,-18.45668232750184 -301,7.0,5.0,-6.289308176100628,22.0125786163522 -301,7.0,7.0,7.733287237496075,-26.527493274828448 -301,7.0,27.0,-1.4439790613954469,4.540814658476248 -301,8.0,5.0,0.0,4.915840805411357 -301,8.0,8.0,0.0,-18.706293706293707 -301,8.0,9.0,0.0,9.090909090909092 -301,8.0,10.0,0.0,4.807692307692308 -301,9.0,8.0,0.0,9.090909090909092 -301,9.0,9.0,10.842723261141638,-34.18442921311381 -301,9.0,16.0,-3.956039125715353,10.317447719844054 -301,9.0,19.0,-1.7848303152666305,3.98535828943083 -301,9.0,20.0,-5.101853820159654,10.98071411292983 -301,10.0,8.0,0.0,4.807692307692308 -301,10.0,10.0,0.0,-4.807692307692308 -301,11.0,3.0,0.0,4.191255364806866 -301,11.0,11.0,5.047393974936599,-21.25074238629525 -301,11.0,12.0,0.0,7.142857142857143 -301,11.0,14.0,-3.0953961826564296,6.097275864326261 -301,11.0,15.0,-1.9519977922801688,4.104359379111847 -301,12.0,11.0,0.0,7.142857142857143 -301,12.0,12.0,0.0,-7.142857142857143 -301,13.0,13.0,2.4909522639994623,-2.250874059369649 -301,13.0,14.0,-2.4909522639994623,2.250874059369649 -301,14.0,11.0,-3.0953961826564296,6.097275864326261 -301,14.0,13.0,-2.4909522639994623,2.250874059369649 -301,14.0,14.0,9.365498545964757,-16.01163373210796 -301,14.0,17.0,-1.8108011504072024,3.687418931630696 -301,14.0,22.0,-1.9683489489016612,3.976064876781356 -301,15.0,11.0,-1.9519977922801688,4.104359379111847 -301,15.0,15.0,3.271064728633931,-8.94513365126506 -301,15.0,16.0,-1.3190669363537617,4.8407742721532125 -301,16.0,9.0,-3.956039125715353,10.317447719844054 -301,16.0,15.0,-1.3190669363537617,4.8407742721532125 -301,16.0,16.0,5.275106062069114,-15.158221991997266 -301,17.0,14.0,-1.8108011504072024,3.687418931630696 -301,17.0,17.0,1.8108011504072024,-3.687418931630696 -301,18.0,18.0,5.88235294117647,-11.76470588235294 -301,18.0,19.0,-5.88235294117647,11.76470588235294 -301,19.0,9.0,-1.7848303152666305,3.98535828943083 -301,19.0,18.0,-5.88235294117647,11.76470588235294 -301,19.0,19.0,7.6671832564431,-15.75006417178377 -301,20.0,9.0,-5.101853820159654,10.98071411292983 -301,20.0,20.0,21.876495189895888,-45.10843276170355 -301,20.0,21.0,-16.774641369736234,34.127718648773715 -301,21.0,20.0,-16.774641369736234,34.127718648773715 -301,21.0,21.0,19.31517952199179,-38.08212151184976 -301,21.0,23.0,-2.5405381522555563,3.95440286307604 -301,22.0,14.0,-1.9683489489016612,3.976064876781356 -301,22.0,22.0,3.429754555384988,-6.965303617315433 -301,22.0,23.0,-1.4614056064833263,2.989238740534077 -301,23.0,21.0,-2.5405381522555563,3.95440286307604 -301,23.0,22.0,-1.4614056064833263,2.989238740534077 -301,23.0,23.0,5.311836702613133,-9.188263657315172 -301,23.0,24.0,-1.3098929438742493,2.287622053705056 -301,24.0,23.0,-1.3098929438742493,2.287622053705056 -301,24.0,24.0,4.495715080321987,-7.864978761969621 -301,24.0,25.0,-1.2165301194494855,1.8171440463475024 -301,24.0,26.0,-1.9692920169982515,3.760212661917064 -301,25.0,24.0,-1.2165301194494855,1.8171440463475024 -301,25.0,25.0,1.2165301194494855,-1.8171440463475024 -301,26.0,24.0,-1.9692920169982515,3.760212661917064 -301,26.0,26.0,3.652281470778589,-9.46044252232512 -301,26.0,27.0,0.0,2.608731947574922 -301,26.0,28.0,-0.99553355095268,1.881005840357816 -301,26.0,29.0,-0.6874559028276572,1.293971494797717 -301,27.0,7.0,-1.4439790613954469,4.540814658476248 -301,27.0,26.0,0.0,2.608731947574922 -301,27.0,27.0,1.4439790613954469,-7.214385678698274 -301,28.0,26.0,-0.99553355095268,1.881005840357816 -301,28.0,28.0,0.99553355095268,-1.881005840357816 -301,29.0,26.0,-0.6874559028276572,1.293971494797717 -301,29.0,29.0,0.6874559028276572,-1.293971494797717 -302,0.0,0.0,6.765516048652632,-21.23160167089863 -302,0.0,1.0,-5.224646179885656,15.646726840803398 -302,0.0,2.0,-1.5408698687669766,5.631674830095234 -302,1.0,0.0,-5.224646179885656,15.646726840803398 -302,1.0,1.0,9.75228216552403,-30.648662892676068 -302,1.0,3.0,-1.7055303166990268,5.1973792282565086 -302,1.0,4.0,-1.1359607881738778,4.772479328281356 -302,1.0,5.0,-1.6861448807654689,5.116477495334806 -302,2.0,0.0,-1.5408698687669766,5.631674830095234 -302,2.0,2.0,9.736318911079088,-29.13794745915803 -302,2.0,3.0,-8.19544904231211,23.5308726290628 -302,3.0,1.0,-1.7055303166990268,5.1973792282565086 -302,3.0,2.0,-8.19544904231211,23.5308726290628 -302,3.0,3.0,16.314103089185693,-55.509410535254254 -302,3.0,5.0,-6.413123730174556,22.31120356548123 -302,3.0,11.0,0.0,4.191255364806866 -302,4.0,1.0,-1.1359607881738778,4.772479328281356 -302,4.0,4.0,4.089980824135861,-12.190647245055052 -302,4.0,6.0,-2.954020035961983,7.449267916773697 -302,5.0,1.0,-1.6861448807654689,5.116477495334806 -302,5.0,3.0,-6.413123730174556,22.31120356548123 -302,5.0,5.0,22.341631269034565,-82.8291478657789 -302,5.0,6.0,-3.590210423980992,11.02611441072814 -302,5.0,7.0,-6.289308176100628,22.0125786163522 -302,5.0,8.0,0.0,4.915840805411357 -302,5.0,9.0,0.0,1.8561002591115965 -302,5.0,27.0,-4.362844058012917,15.463571542897856 -302,6.0,4.0,-2.954020035961983,7.449267916773697 -302,6.0,5.0,-3.590210423980992,11.02611441072814 -302,6.0,6.0,6.544230459942975,-18.45668232750184 -302,7.0,5.0,-6.289308176100628,22.0125786163522 -302,7.0,7.0,7.733287237496075,-26.527493274828448 -302,7.0,27.0,-1.4439790613954469,4.540814658476248 -302,8.0,5.0,0.0,4.915840805411357 -302,8.0,8.0,0.0,-18.706293706293707 -302,8.0,9.0,0.0,9.090909090909092 -302,8.0,10.0,0.0,4.807692307692308 -302,9.0,5.0,0.0,1.8561002591115965 -302,9.0,8.0,0.0,9.090909090909092 -302,9.0,9.0,13.462042814524237,-41.3837606675224 -302,9.0,16.0,-3.956039125715353,10.317447719844054 -302,9.0,19.0,-1.7848303152666305,3.98535828943083 -302,9.0,20.0,-5.101853820159654,10.98071411292983 -302,9.0,21.0,-2.619319553382597,5.400770303329455 -302,10.0,8.0,0.0,4.807692307692308 -302,10.0,10.0,0.0,-4.807692307692308 -302,11.0,3.0,0.0,4.191255364806866 -302,11.0,11.0,6.573961583776156,-24.424167659260668 -302,11.0,12.0,0.0,7.142857142857143 -302,11.0,13.0,-1.5265676088395577,3.1734252729654173 -302,11.0,14.0,-3.0953961826564296,6.097275864326261 -302,11.0,15.0,-1.9519977922801688,4.104359379111847 -302,12.0,11.0,0.0,7.142857142857143 -302,12.0,12.0,0.0,-7.142857142857143 -302,13.0,11.0,-1.5265676088395577,3.1734252729654173 -302,13.0,13.0,4.01751987283902,-5.424299332335067 -302,13.0,14.0,-2.4909522639994623,2.250874059369649 -302,14.0,11.0,-3.0953961826564296,6.097275864326261 -302,14.0,13.0,-2.4909522639994623,2.250874059369649 -302,14.0,14.0,9.365498545964757,-16.01163373210796 -302,14.0,17.0,-1.8108011504072024,3.687418931630696 -302,14.0,22.0,-1.9683489489016612,3.976064876781356 -302,15.0,11.0,-1.9519977922801688,4.104359379111847 -302,15.0,15.0,3.271064728633931,-8.94513365126506 -302,15.0,16.0,-1.3190669363537617,4.8407742721532125 -302,16.0,9.0,-3.956039125715353,10.317447719844054 -302,16.0,15.0,-1.3190669363537617,4.8407742721532125 -302,16.0,16.0,5.275106062069114,-15.158221991997266 -302,17.0,14.0,-1.8108011504072024,3.687418931630696 -302,17.0,17.0,4.886487584415919,-9.906177730909668 -302,17.0,18.0,-3.0756864340087167,6.218758799278971 -302,18.0,17.0,-3.0756864340087167,6.218758799278971 -302,18.0,18.0,8.958039375185187,-17.98346468163191 -302,18.0,19.0,-5.88235294117647,11.76470588235294 -302,19.0,9.0,-1.7848303152666305,3.98535828943083 -302,19.0,18.0,-5.88235294117647,11.76470588235294 -302,19.0,19.0,7.6671832564431,-15.75006417178377 -302,20.0,9.0,-5.101853820159654,10.98071411292983 -302,20.0,20.0,21.876495189895888,-45.10843276170355 -302,20.0,21.0,-16.774641369736234,34.127718648773715 -302,21.0,9.0,-2.619319553382597,5.400770303329455 -302,21.0,20.0,-16.774641369736234,34.127718648773715 -302,21.0,21.0,21.93449907537439,-43.48289181517921 -302,21.0,23.0,-2.5405381522555563,3.95440286307604 -302,22.0,14.0,-1.9683489489016612,3.976064876781356 -302,22.0,22.0,3.429754555384988,-6.965303617315433 -302,22.0,23.0,-1.4614056064833263,2.989238740534077 -302,23.0,21.0,-2.5405381522555563,3.95440286307604 -302,23.0,22.0,-1.4614056064833263,2.989238740534077 -302,23.0,23.0,5.311836702613133,-9.188263657315172 -302,23.0,24.0,-1.3098929438742493,2.287622053705056 -302,24.0,23.0,-1.3098929438742493,2.287622053705056 -302,24.0,24.0,4.495715080321987,-7.864978761969621 -302,24.0,25.0,-1.2165301194494855,1.8171440463475024 -302,24.0,26.0,-1.9692920169982515,3.760212661917064 -302,25.0,24.0,-1.2165301194494855,1.8171440463475024 -302,25.0,25.0,1.2165301194494855,-1.8171440463475024 -302,26.0,24.0,-1.9692920169982515,3.760212661917064 -302,26.0,26.0,3.652281470778589,-9.46044252232512 -302,26.0,27.0,0.0,2.608731947574922 -302,26.0,28.0,-0.99553355095268,1.881005840357816 -302,26.0,29.0,-0.6874559028276572,1.293971494797717 -302,27.0,5.0,-4.362844058012917,15.463571542897856 -302,27.0,7.0,-1.4439790613954469,4.540814658476248 -302,27.0,26.0,0.0,2.608731947574922 -302,27.0,27.0,5.806823119408364,-22.67145722159613 -302,28.0,26.0,-0.99553355095268,1.881005840357816 -302,28.0,28.0,0.99553355095268,-1.881005840357816 -302,29.0,26.0,-0.6874559028276572,1.293971494797717 -302,29.0,29.0,0.6874559028276572,-1.293971494797717 -303,0.0,0.0,6.765516048652632,-21.23160167089863 -303,0.0,1.0,-5.224646179885656,15.646726840803398 -303,0.0,2.0,-1.5408698687669766,5.631674830095234 -303,1.0,0.0,-5.224646179885656,15.646726840803398 -303,1.0,1.0,9.75228216552403,-30.648662892676068 -303,1.0,3.0,-1.7055303166990268,5.1973792282565086 -303,1.0,4.0,-1.1359607881738778,4.772479328281356 -303,1.0,5.0,-1.6861448807654689,5.116477495334806 -303,2.0,0.0,-1.5408698687669766,5.631674830095234 -303,2.0,2.0,9.736318911079088,-29.13794745915803 -303,2.0,3.0,-8.19544904231211,23.5308726290628 -303,3.0,1.0,-1.7055303166990268,5.1973792282565086 -303,3.0,2.0,-8.19544904231211,23.5308726290628 -303,3.0,3.0,16.314103089185693,-55.509410535254254 -303,3.0,5.0,-6.413123730174556,22.31120356548123 -303,3.0,11.0,0.0,4.191255364806866 -303,4.0,1.0,-1.1359607881738778,4.772479328281356 -303,4.0,4.0,4.089980824135861,-12.190647245055052 -303,4.0,6.0,-2.954020035961983,7.449267916773697 -303,5.0,1.0,-1.6861448807654689,5.116477495334806 -303,5.0,3.0,-6.413123730174556,22.31120356548123 -303,5.0,5.0,22.341631269034565,-82.8291478657789 -303,5.0,6.0,-3.590210423980992,11.02611441072814 -303,5.0,7.0,-6.289308176100628,22.0125786163522 -303,5.0,8.0,0.0,4.915840805411357 -303,5.0,9.0,0.0,1.8561002591115965 -303,5.0,27.0,-4.362844058012917,15.463571542897856 -303,6.0,4.0,-2.954020035961983,7.449267916773697 -303,6.0,5.0,-3.590210423980992,11.02611441072814 -303,6.0,6.0,6.544230459942975,-18.45668232750184 -303,7.0,5.0,-6.289308176100628,22.0125786163522 -303,7.0,7.0,6.289308176100628,-22.0080786163522 -303,8.0,5.0,0.0,4.915840805411357 -303,8.0,8.0,0.0,-18.706293706293707 -303,8.0,9.0,0.0,9.090909090909092 -303,8.0,10.0,0.0,4.807692307692308 -303,9.0,5.0,0.0,1.8561002591115965 -303,9.0,8.0,0.0,9.090909090909092 -303,9.0,9.0,13.462042814524237,-41.3837606675224 -303,9.0,16.0,-3.956039125715353,10.317447719844054 -303,9.0,19.0,-1.7848303152666305,3.98535828943083 -303,9.0,20.0,-5.101853820159654,10.98071411292983 -303,9.0,21.0,-2.619319553382597,5.400770303329455 -303,10.0,8.0,0.0,4.807692307692308 -303,10.0,10.0,0.0,-4.807692307692308 -303,11.0,3.0,0.0,4.191255364806866 -303,11.0,11.0,6.573961583776156,-24.424167659260668 -303,11.0,12.0,0.0,7.142857142857143 -303,11.0,13.0,-1.5265676088395577,3.1734252729654173 -303,11.0,14.0,-3.0953961826564296,6.097275864326261 -303,11.0,15.0,-1.9519977922801688,4.104359379111847 -303,12.0,11.0,0.0,7.142857142857143 -303,12.0,12.0,0.0,-7.142857142857143 -303,13.0,11.0,-1.5265676088395577,3.1734252729654173 -303,13.0,13.0,4.01751987283902,-5.424299332335067 -303,13.0,14.0,-2.4909522639994623,2.250874059369649 -303,14.0,11.0,-3.0953961826564296,6.097275864326261 -303,14.0,13.0,-2.4909522639994623,2.250874059369649 -303,14.0,14.0,9.365498545964757,-16.01163373210796 -303,14.0,17.0,-1.8108011504072024,3.687418931630696 -303,14.0,22.0,-1.9683489489016612,3.976064876781356 -303,15.0,11.0,-1.9519977922801688,4.104359379111847 -303,15.0,15.0,3.271064728633931,-8.94513365126506 -303,15.0,16.0,-1.3190669363537617,4.8407742721532125 -303,16.0,9.0,-3.956039125715353,10.317447719844054 -303,16.0,15.0,-1.3190669363537617,4.8407742721532125 -303,16.0,16.0,5.275106062069114,-15.158221991997266 -303,17.0,14.0,-1.8108011504072024,3.687418931630696 -303,17.0,17.0,4.886487584415919,-9.906177730909668 -303,17.0,18.0,-3.0756864340087167,6.218758799278971 -303,18.0,17.0,-3.0756864340087167,6.218758799278971 -303,18.0,18.0,8.958039375185187,-17.98346468163191 -303,18.0,19.0,-5.88235294117647,11.76470588235294 -303,19.0,9.0,-1.7848303152666305,3.98535828943083 -303,19.0,18.0,-5.88235294117647,11.76470588235294 -303,19.0,19.0,7.6671832564431,-15.75006417178377 -303,20.0,9.0,-5.101853820159654,10.98071411292983 -303,20.0,20.0,21.876495189895888,-45.10843276170355 -303,20.0,21.0,-16.774641369736234,34.127718648773715 -303,21.0,9.0,-2.619319553382597,5.400770303329455 -303,21.0,20.0,-16.774641369736234,34.127718648773715 -303,21.0,21.0,21.93449907537439,-43.48289181517921 -303,21.0,23.0,-2.5405381522555563,3.95440286307604 -303,22.0,14.0,-1.9683489489016612,3.976064876781356 -303,22.0,22.0,3.429754555384988,-6.965303617315433 -303,22.0,23.0,-1.4614056064833263,2.989238740534077 -303,23.0,21.0,-2.5405381522555563,3.95440286307604 -303,23.0,22.0,-1.4614056064833263,2.989238740534077 -303,23.0,23.0,5.311836702613133,-9.188263657315172 -303,23.0,24.0,-1.3098929438742493,2.287622053705056 -303,24.0,23.0,-1.3098929438742493,2.287622053705056 -303,24.0,24.0,4.495715080321987,-7.864978761969621 -303,24.0,25.0,-1.2165301194494855,1.8171440463475024 -303,24.0,26.0,-1.9692920169982515,3.760212661917064 -303,25.0,24.0,-1.2165301194494855,1.8171440463475024 -303,25.0,25.0,1.2165301194494855,-1.8171440463475024 -303,26.0,24.0,-1.9692920169982515,3.760212661917064 -303,26.0,26.0,3.652281470778589,-9.46044252232512 -303,26.0,27.0,0.0,2.608731947574922 -303,26.0,28.0,-0.99553355095268,1.881005840357816 -303,26.0,29.0,-0.6874559028276572,1.293971494797717 -303,27.0,5.0,-4.362844058012917,15.463571542897856 -303,27.0,26.0,0.0,2.608731947574922 -303,27.0,27.0,4.362844058012917,-18.15204256311988 -303,28.0,26.0,-0.99553355095268,1.881005840357816 -303,28.0,28.0,1.9075867579849564,-3.604364401207048 -303,28.0,29.0,-0.9120532070322764,1.7233585608492326 -303,29.0,26.0,-0.6874559028276572,1.293971494797717 -303,29.0,28.0,-0.9120532070322764,1.7233585608492326 -303,29.0,29.0,1.5995091098599337,-3.0173300556469496 -304,0.0,0.0,6.765516048652632,-21.23160167089863 -304,0.0,1.0,-5.224646179885656,15.646726840803398 -304,0.0,2.0,-1.5408698687669766,5.631674830095234 -304,1.0,0.0,-5.224646179885656,15.646726840803398 -304,1.0,1.0,9.75228216552403,-30.648662892676068 -304,1.0,3.0,-1.7055303166990268,5.1973792282565086 -304,1.0,4.0,-1.1359607881738778,4.772479328281356 -304,1.0,5.0,-1.6861448807654689,5.116477495334806 -304,2.0,0.0,-1.5408698687669766,5.631674830095234 -304,2.0,2.0,9.736318911079088,-29.13794745915803 -304,2.0,3.0,-8.19544904231211,23.5308726290628 -304,3.0,1.0,-1.7055303166990268,5.1973792282565086 -304,3.0,2.0,-8.19544904231211,23.5308726290628 -304,3.0,3.0,16.314103089185693,-55.509410535254254 -304,3.0,5.0,-6.413123730174556,22.31120356548123 -304,3.0,11.0,0.0,4.191255364806866 -304,4.0,1.0,-1.1359607881738778,4.772479328281356 -304,4.0,4.0,4.089980824135861,-12.190647245055052 -304,4.0,6.0,-2.954020035961983,7.449267916773697 -304,5.0,1.0,-1.6861448807654689,5.116477495334806 -304,5.0,3.0,-6.413123730174556,22.31120356548123 -304,5.0,5.0,22.341631269034565,-82.8291478657789 -304,5.0,6.0,-3.590210423980992,11.02611441072814 -304,5.0,7.0,-6.289308176100628,22.0125786163522 -304,5.0,8.0,0.0,4.915840805411357 -304,5.0,9.0,0.0,1.8561002591115965 -304,5.0,27.0,-4.362844058012917,15.463571542897856 -304,6.0,4.0,-2.954020035961983,7.449267916773697 -304,6.0,5.0,-3.590210423980992,11.02611441072814 -304,6.0,6.0,6.544230459942975,-18.45668232750184 -304,7.0,5.0,-6.289308176100628,22.0125786163522 -304,7.0,7.0,7.733287237496075,-26.527493274828448 -304,7.0,27.0,-1.4439790613954469,4.540814658476248 -304,8.0,5.0,0.0,4.915840805411357 -304,8.0,8.0,0.0,-18.706293706293707 -304,8.0,9.0,0.0,9.090909090909092 -304,8.0,10.0,0.0,4.807692307692308 -304,9.0,5.0,0.0,1.8561002591115965 -304,9.0,8.0,0.0,9.090909090909092 -304,9.0,9.0,13.462042814524237,-41.3837606675224 -304,9.0,16.0,-3.956039125715353,10.317447719844054 -304,9.0,19.0,-1.7848303152666305,3.98535828943083 -304,9.0,20.0,-5.101853820159654,10.98071411292983 -304,9.0,21.0,-2.619319553382597,5.400770303329455 -304,10.0,8.0,0.0,4.807692307692308 -304,10.0,10.0,0.0,-4.807692307692308 -304,11.0,3.0,0.0,4.191255364806866 -304,11.0,11.0,6.573961583776156,-24.424167659260668 -304,11.0,12.0,0.0,7.142857142857143 -304,11.0,13.0,-1.5265676088395577,3.1734252729654173 -304,11.0,14.0,-3.0953961826564296,6.097275864326261 -304,11.0,15.0,-1.9519977922801688,4.104359379111847 -304,12.0,11.0,0.0,7.142857142857143 -304,12.0,12.0,0.0,-7.142857142857143 -304,13.0,11.0,-1.5265676088395577,3.1734252729654173 -304,13.0,13.0,4.01751987283902,-5.424299332335067 -304,13.0,14.0,-2.4909522639994623,2.250874059369649 -304,14.0,11.0,-3.0953961826564296,6.097275864326261 -304,14.0,13.0,-2.4909522639994623,2.250874059369649 -304,14.0,14.0,9.365498545964757,-16.01163373210796 -304,14.0,17.0,-1.8108011504072024,3.687418931630696 -304,14.0,22.0,-1.9683489489016612,3.976064876781356 -304,15.0,11.0,-1.9519977922801688,4.104359379111847 -304,15.0,15.0,3.271064728633931,-8.94513365126506 -304,15.0,16.0,-1.3190669363537617,4.8407742721532125 -304,16.0,9.0,-3.956039125715353,10.317447719844054 -304,16.0,15.0,-1.3190669363537617,4.8407742721532125 -304,16.0,16.0,5.275106062069114,-15.158221991997266 -304,17.0,14.0,-1.8108011504072024,3.687418931630696 -304,17.0,17.0,4.886487584415919,-9.906177730909668 -304,17.0,18.0,-3.0756864340087167,6.218758799278971 -304,18.0,17.0,-3.0756864340087167,6.218758799278971 -304,18.0,18.0,8.958039375185187,-17.98346468163191 -304,18.0,19.0,-5.88235294117647,11.76470588235294 -304,19.0,9.0,-1.7848303152666305,3.98535828943083 -304,19.0,18.0,-5.88235294117647,11.76470588235294 -304,19.0,19.0,7.6671832564431,-15.75006417178377 -304,20.0,9.0,-5.101853820159654,10.98071411292983 -304,20.0,20.0,21.876495189895888,-45.10843276170355 -304,20.0,21.0,-16.774641369736234,34.127718648773715 -304,21.0,9.0,-2.619319553382597,5.400770303329455 -304,21.0,20.0,-16.774641369736234,34.127718648773715 -304,21.0,21.0,21.93449907537439,-43.48289181517921 -304,21.0,23.0,-2.5405381522555563,3.95440286307604 -304,22.0,14.0,-1.9683489489016612,3.976064876781356 -304,22.0,22.0,3.429754555384988,-6.965303617315433 -304,22.0,23.0,-1.4614056064833263,2.989238740534077 -304,23.0,21.0,-2.5405381522555563,3.95440286307604 -304,23.0,22.0,-1.4614056064833263,2.989238740534077 -304,23.0,23.0,5.311836702613133,-9.188263657315172 -304,23.0,24.0,-1.3098929438742493,2.287622053705056 -304,24.0,23.0,-1.3098929438742493,2.287622053705056 -304,24.0,24.0,4.495715080321987,-7.864978761969621 -304,24.0,25.0,-1.2165301194494855,1.8171440463475024 -304,24.0,26.0,-1.9692920169982515,3.760212661917064 -304,25.0,24.0,-1.2165301194494855,1.8171440463475024 -304,25.0,25.0,1.2165301194494855,-1.8171440463475024 -304,26.0,24.0,-1.9692920169982515,3.760212661917064 -304,26.0,26.0,3.652281470778589,-9.46044252232512 -304,26.0,27.0,0.0,2.608731947574922 -304,26.0,28.0,-0.99553355095268,1.881005840357816 -304,26.0,29.0,-0.6874559028276572,1.293971494797717 -304,27.0,5.0,-4.362844058012917,15.463571542897856 -304,27.0,7.0,-1.4439790613954469,4.540814658476248 -304,27.0,26.0,0.0,2.608731947574922 -304,27.0,27.0,5.806823119408364,-22.67145722159613 -304,28.0,26.0,-0.99553355095268,1.881005840357816 -304,28.0,28.0,1.9075867579849564,-3.604364401207048 -304,28.0,29.0,-0.9120532070322764,1.7233585608492326 -304,29.0,26.0,-0.6874559028276572,1.293971494797717 -304,29.0,28.0,-0.9120532070322764,1.7233585608492326 -304,29.0,29.0,1.5995091098599337,-3.0173300556469496 -305,0.0,0.0,6.765516048652632,-21.23160167089863 -305,0.0,1.0,-5.224646179885656,15.646726840803398 -305,0.0,2.0,-1.5408698687669766,5.631674830095234 -305,1.0,0.0,-5.224646179885656,15.646726840803398 -305,1.0,1.0,9.75228216552403,-30.648662892676068 -305,1.0,3.0,-1.7055303166990268,5.1973792282565086 -305,1.0,4.0,-1.1359607881738778,4.772479328281356 -305,1.0,5.0,-1.6861448807654689,5.116477495334806 -305,2.0,0.0,-1.5408698687669766,5.631674830095234 -305,2.0,2.0,9.736318911079088,-29.13794745915803 -305,2.0,3.0,-8.19544904231211,23.5308726290628 -305,3.0,1.0,-1.7055303166990268,5.1973792282565086 -305,3.0,2.0,-8.19544904231211,23.5308726290628 -305,3.0,3.0,16.314103089185693,-55.509410535254254 -305,3.0,5.0,-6.413123730174556,22.31120356548123 -305,3.0,11.0,0.0,4.191255364806866 -305,4.0,1.0,-1.1359607881738778,4.772479328281356 -305,4.0,4.0,4.089980824135861,-12.190647245055052 -305,4.0,6.0,-2.954020035961983,7.449267916773697 -305,5.0,1.0,-1.6861448807654689,5.116477495334806 -305,5.0,3.0,-6.413123730174556,22.31120356548123 -305,5.0,5.0,22.341631269034565,-82.8291478657789 -305,5.0,6.0,-3.590210423980992,11.02611441072814 -305,5.0,7.0,-6.289308176100628,22.0125786163522 -305,5.0,8.0,0.0,4.915840805411357 -305,5.0,9.0,0.0,1.8561002591115965 -305,5.0,27.0,-4.362844058012917,15.463571542897856 -305,6.0,4.0,-2.954020035961983,7.449267916773697 -305,6.0,5.0,-3.590210423980992,11.02611441072814 -305,6.0,6.0,6.544230459942975,-18.45668232750184 -305,7.0,5.0,-6.289308176100628,22.0125786163522 -305,7.0,7.0,7.733287237496075,-26.527493274828448 -305,7.0,27.0,-1.4439790613954469,4.540814658476248 -305,8.0,5.0,0.0,4.915840805411357 -305,8.0,8.0,0.0,-18.706293706293707 -305,8.0,9.0,0.0,9.090909090909092 -305,8.0,10.0,0.0,4.807692307692308 -305,9.0,5.0,0.0,1.8561002591115965 -305,9.0,8.0,0.0,9.090909090909092 -305,9.0,9.0,13.462042814524237,-41.3837606675224 -305,9.0,16.0,-3.956039125715353,10.317447719844054 -305,9.0,19.0,-1.7848303152666305,3.98535828943083 -305,9.0,20.0,-5.101853820159654,10.98071411292983 -305,9.0,21.0,-2.619319553382597,5.400770303329455 -305,10.0,8.0,0.0,4.807692307692308 -305,10.0,10.0,0.0,-4.807692307692308 -305,11.0,3.0,0.0,4.191255364806866 -305,11.0,11.0,6.573961583776156,-24.424167659260668 -305,11.0,12.0,0.0,7.142857142857143 -305,11.0,13.0,-1.5265676088395577,3.1734252729654173 -305,11.0,14.0,-3.0953961826564296,6.097275864326261 -305,11.0,15.0,-1.9519977922801688,4.104359379111847 -305,12.0,11.0,0.0,7.142857142857143 -305,12.0,12.0,0.0,-7.142857142857143 -305,13.0,11.0,-1.5265676088395577,3.1734252729654173 -305,13.0,13.0,4.01751987283902,-5.424299332335067 -305,13.0,14.0,-2.4909522639994623,2.250874059369649 -305,14.0,11.0,-3.0953961826564296,6.097275864326261 -305,14.0,13.0,-2.4909522639994623,2.250874059369649 -305,14.0,14.0,9.365498545964757,-16.01163373210796 -305,14.0,17.0,-1.8108011504072024,3.687418931630696 -305,14.0,22.0,-1.9683489489016612,3.976064876781356 -305,15.0,11.0,-1.9519977922801688,4.104359379111847 -305,15.0,15.0,3.271064728633931,-8.94513365126506 -305,15.0,16.0,-1.3190669363537617,4.8407742721532125 -305,16.0,9.0,-3.956039125715353,10.317447719844054 -305,16.0,15.0,-1.3190669363537617,4.8407742721532125 -305,16.0,16.0,5.275106062069114,-15.158221991997266 -305,17.0,14.0,-1.8108011504072024,3.687418931630696 -305,17.0,17.0,4.886487584415919,-9.906177730909668 -305,17.0,18.0,-3.0756864340087167,6.218758799278971 -305,18.0,17.0,-3.0756864340087167,6.218758799278971 -305,18.0,18.0,8.958039375185187,-17.98346468163191 -305,18.0,19.0,-5.88235294117647,11.76470588235294 -305,19.0,9.0,-1.7848303152666305,3.98535828943083 -305,19.0,18.0,-5.88235294117647,11.76470588235294 -305,19.0,19.0,7.6671832564431,-15.75006417178377 -305,20.0,9.0,-5.101853820159654,10.98071411292983 -305,20.0,20.0,21.876495189895888,-45.10843276170355 -305,20.0,21.0,-16.774641369736234,34.127718648773715 -305,21.0,9.0,-2.619319553382597,5.400770303329455 -305,21.0,20.0,-16.774641369736234,34.127718648773715 -305,21.0,21.0,21.93449907537439,-43.48289181517921 -305,21.0,23.0,-2.5405381522555563,3.95440286307604 -305,22.0,14.0,-1.9683489489016612,3.976064876781356 -305,22.0,22.0,3.429754555384988,-6.965303617315433 -305,22.0,23.0,-1.4614056064833263,2.989238740534077 -305,23.0,21.0,-2.5405381522555563,3.95440286307604 -305,23.0,22.0,-1.4614056064833263,2.989238740534077 -305,23.0,23.0,5.311836702613133,-9.188263657315172 -305,23.0,24.0,-1.3098929438742493,2.287622053705056 -305,24.0,23.0,-1.3098929438742493,2.287622053705056 -305,24.0,24.0,4.495715080321987,-7.864978761969621 -305,24.0,25.0,-1.2165301194494855,1.8171440463475024 -305,24.0,26.0,-1.9692920169982515,3.760212661917064 -305,25.0,24.0,-1.2165301194494855,1.8171440463475024 -305,25.0,25.0,1.2165301194494855,-1.8171440463475024 -305,26.0,24.0,-1.9692920169982515,3.760212661917064 -305,26.0,26.0,3.652281470778589,-9.46044252232512 -305,26.0,27.0,0.0,2.608731947574922 -305,26.0,28.0,-0.99553355095268,1.881005840357816 -305,26.0,29.0,-0.6874559028276572,1.293971494797717 -305,27.0,5.0,-4.362844058012917,15.463571542897856 -305,27.0,7.0,-1.4439790613954469,4.540814658476248 -305,27.0,26.0,0.0,2.608731947574922 -305,27.0,27.0,5.806823119408364,-22.67145722159613 -305,28.0,26.0,-0.99553355095268,1.881005840357816 -305,28.0,28.0,1.9075867579849564,-3.604364401207048 -305,28.0,29.0,-0.9120532070322764,1.7233585608492326 -305,29.0,26.0,-0.6874559028276572,1.293971494797717 -305,29.0,28.0,-0.9120532070322764,1.7233585608492326 -305,29.0,29.0,1.5995091098599337,-3.0173300556469496 -306,0.0,0.0,6.765516048652632,-21.23160167089863 -306,0.0,1.0,-5.224646179885656,15.646726840803398 -306,0.0,2.0,-1.5408698687669766,5.631674830095234 -306,1.0,0.0,-5.224646179885656,15.646726840803398 -306,1.0,1.0,9.75228216552403,-30.648662892676068 -306,1.0,3.0,-1.7055303166990268,5.1973792282565086 -306,1.0,4.0,-1.1359607881738778,4.772479328281356 -306,1.0,5.0,-1.6861448807654689,5.116477495334806 -306,2.0,0.0,-1.5408698687669766,5.631674830095234 -306,2.0,2.0,9.736318911079088,-29.13794745915803 -306,2.0,3.0,-8.19544904231211,23.5308726290628 -306,3.0,1.0,-1.7055303166990268,5.1973792282565086 -306,3.0,2.0,-8.19544904231211,23.5308726290628 -306,3.0,3.0,16.314103089185693,-55.509410535254254 -306,3.0,5.0,-6.413123730174556,22.31120356548123 -306,3.0,11.0,0.0,4.191255364806866 -306,4.0,1.0,-1.1359607881738778,4.772479328281356 -306,4.0,4.0,4.089980824135861,-12.190647245055052 -306,4.0,6.0,-2.954020035961983,7.449267916773697 -306,5.0,1.0,-1.6861448807654689,5.116477495334806 -306,5.0,3.0,-6.413123730174556,22.31120356548123 -306,5.0,5.0,22.341631269034565,-82.8291478657789 -306,5.0,6.0,-3.590210423980992,11.02611441072814 -306,5.0,7.0,-6.289308176100628,22.0125786163522 -306,5.0,8.0,0.0,4.915840805411357 -306,5.0,9.0,0.0,1.8561002591115965 -306,5.0,27.0,-4.362844058012917,15.463571542897856 -306,6.0,4.0,-2.954020035961983,7.449267916773697 -306,6.0,5.0,-3.590210423980992,11.02611441072814 -306,6.0,6.0,6.544230459942975,-18.45668232750184 -306,7.0,5.0,-6.289308176100628,22.0125786163522 -306,7.0,7.0,7.733287237496075,-26.527493274828448 -306,7.0,27.0,-1.4439790613954469,4.540814658476248 -306,8.0,5.0,0.0,4.915840805411357 -306,8.0,8.0,0.0,-18.706293706293707 -306,8.0,9.0,0.0,9.090909090909092 -306,8.0,10.0,0.0,4.807692307692308 -306,9.0,5.0,0.0,1.8561002591115965 -306,9.0,8.0,0.0,9.090909090909092 -306,9.0,9.0,13.462042814524237,-41.3837606675224 -306,9.0,16.0,-3.956039125715353,10.317447719844054 -306,9.0,19.0,-1.7848303152666305,3.98535828943083 -306,9.0,20.0,-5.101853820159654,10.98071411292983 -306,9.0,21.0,-2.619319553382597,5.400770303329455 -306,10.0,8.0,0.0,4.807692307692308 -306,10.0,10.0,0.0,-4.807692307692308 -306,11.0,3.0,0.0,4.191255364806866 -306,11.0,11.0,6.573961583776156,-24.424167659260668 -306,11.0,12.0,0.0,7.142857142857143 -306,11.0,13.0,-1.5265676088395577,3.1734252729654173 -306,11.0,14.0,-3.0953961826564296,6.097275864326261 -306,11.0,15.0,-1.9519977922801688,4.104359379111847 -306,12.0,11.0,0.0,7.142857142857143 -306,12.0,12.0,0.0,-7.142857142857143 -306,13.0,11.0,-1.5265676088395577,3.1734252729654173 -306,13.0,13.0,4.01751987283902,-5.424299332335067 -306,13.0,14.0,-2.4909522639994623,2.250874059369649 -306,14.0,11.0,-3.0953961826564296,6.097275864326261 -306,14.0,13.0,-2.4909522639994623,2.250874059369649 -306,14.0,14.0,9.365498545964757,-16.01163373210796 -306,14.0,17.0,-1.8108011504072024,3.687418931630696 -306,14.0,22.0,-1.9683489489016612,3.976064876781356 -306,15.0,11.0,-1.9519977922801688,4.104359379111847 -306,15.0,15.0,3.271064728633931,-8.94513365126506 -306,15.0,16.0,-1.3190669363537617,4.8407742721532125 -306,16.0,9.0,-3.956039125715353,10.317447719844054 -306,16.0,15.0,-1.3190669363537617,4.8407742721532125 -306,16.0,16.0,5.275106062069114,-15.158221991997266 -306,17.0,14.0,-1.8108011504072024,3.687418931630696 -306,17.0,17.0,4.886487584415919,-9.906177730909668 -306,17.0,18.0,-3.0756864340087167,6.218758799278971 -306,18.0,17.0,-3.0756864340087167,6.218758799278971 -306,18.0,18.0,8.958039375185187,-17.98346468163191 -306,18.0,19.0,-5.88235294117647,11.76470588235294 -306,19.0,9.0,-1.7848303152666305,3.98535828943083 -306,19.0,18.0,-5.88235294117647,11.76470588235294 -306,19.0,19.0,7.6671832564431,-15.75006417178377 -306,20.0,9.0,-5.101853820159654,10.98071411292983 -306,20.0,20.0,21.876495189895888,-45.10843276170355 -306,20.0,21.0,-16.774641369736234,34.127718648773715 -306,21.0,9.0,-2.619319553382597,5.400770303329455 -306,21.0,20.0,-16.774641369736234,34.127718648773715 -306,21.0,21.0,21.93449907537439,-43.48289181517921 -306,21.0,23.0,-2.5405381522555563,3.95440286307604 -306,22.0,14.0,-1.9683489489016612,3.976064876781356 -306,22.0,22.0,3.429754555384988,-6.965303617315433 -306,22.0,23.0,-1.4614056064833263,2.989238740534077 -306,23.0,21.0,-2.5405381522555563,3.95440286307604 -306,23.0,22.0,-1.4614056064833263,2.989238740534077 -306,23.0,23.0,5.311836702613133,-9.188263657315172 -306,23.0,24.0,-1.3098929438742493,2.287622053705056 -306,24.0,23.0,-1.3098929438742493,2.287622053705056 -306,24.0,24.0,4.495715080321987,-7.864978761969621 -306,24.0,25.0,-1.2165301194494855,1.8171440463475024 -306,24.0,26.0,-1.9692920169982515,3.760212661917064 -306,25.0,24.0,-1.2165301194494855,1.8171440463475024 -306,25.0,25.0,1.2165301194494855,-1.8171440463475024 -306,26.0,24.0,-1.9692920169982515,3.760212661917064 -306,26.0,26.0,3.652281470778589,-9.46044252232512 -306,26.0,27.0,0.0,2.608731947574922 -306,26.0,28.0,-0.99553355095268,1.881005840357816 -306,26.0,29.0,-0.6874559028276572,1.293971494797717 -306,27.0,5.0,-4.362844058012917,15.463571542897856 -306,27.0,7.0,-1.4439790613954469,4.540814658476248 -306,27.0,26.0,0.0,2.608731947574922 -306,27.0,27.0,5.806823119408364,-22.67145722159613 -306,28.0,26.0,-0.99553355095268,1.881005840357816 -306,28.0,28.0,1.9075867579849564,-3.604364401207048 -306,28.0,29.0,-0.9120532070322764,1.7233585608492326 -306,29.0,26.0,-0.6874559028276572,1.293971494797717 -306,29.0,28.0,-0.9120532070322764,1.7233585608492326 -306,29.0,29.0,1.5995091098599337,-3.0173300556469496 -307,0.0,0.0,6.765516048652632,-21.23160167089863 -307,0.0,1.0,-5.224646179885656,15.646726840803398 -307,0.0,2.0,-1.5408698687669766,5.631674830095234 -307,1.0,0.0,-5.224646179885656,15.646726840803398 -307,1.0,1.0,9.75228216552403,-30.648662892676068 -307,1.0,3.0,-1.7055303166990268,5.1973792282565086 -307,1.0,4.0,-1.1359607881738778,4.772479328281356 -307,1.0,5.0,-1.6861448807654689,5.116477495334806 -307,2.0,0.0,-1.5408698687669766,5.631674830095234 -307,2.0,2.0,9.736318911079088,-29.13794745915803 -307,2.0,3.0,-8.19544904231211,23.5308726290628 -307,3.0,1.0,-1.7055303166990268,5.1973792282565086 -307,3.0,2.0,-8.19544904231211,23.5308726290628 -307,3.0,3.0,16.314103089185693,-55.509410535254254 -307,3.0,5.0,-6.413123730174556,22.31120356548123 -307,3.0,11.0,0.0,4.191255364806866 -307,4.0,1.0,-1.1359607881738778,4.772479328281356 -307,4.0,4.0,4.089980824135861,-12.190647245055052 -307,4.0,6.0,-2.954020035961983,7.449267916773697 -307,5.0,1.0,-1.6861448807654689,5.116477495334806 -307,5.0,3.0,-6.413123730174556,22.31120356548123 -307,5.0,5.0,22.341631269034565,-82.8291478657789 -307,5.0,6.0,-3.590210423980992,11.02611441072814 -307,5.0,7.0,-6.289308176100628,22.0125786163522 -307,5.0,8.0,0.0,4.915840805411357 -307,5.0,9.0,0.0,1.8561002591115965 -307,5.0,27.0,-4.362844058012917,15.463571542897856 -307,6.0,4.0,-2.954020035961983,7.449267916773697 -307,6.0,5.0,-3.590210423980992,11.02611441072814 -307,6.0,6.0,6.544230459942975,-18.45668232750184 -307,7.0,5.0,-6.289308176100628,22.0125786163522 -307,7.0,7.0,7.733287237496075,-26.527493274828448 -307,7.0,27.0,-1.4439790613954469,4.540814658476248 -307,8.0,5.0,0.0,4.915840805411357 -307,8.0,8.0,0.0,-18.706293706293707 -307,8.0,9.0,0.0,9.090909090909092 -307,8.0,10.0,0.0,4.807692307692308 -307,9.0,5.0,0.0,1.8561002591115965 -307,9.0,8.0,0.0,9.090909090909092 -307,9.0,9.0,13.462042814524237,-41.3837606675224 -307,9.0,16.0,-3.956039125715353,10.317447719844054 -307,9.0,19.0,-1.7848303152666305,3.98535828943083 -307,9.0,20.0,-5.101853820159654,10.98071411292983 -307,9.0,21.0,-2.619319553382597,5.400770303329455 -307,10.0,8.0,0.0,4.807692307692308 -307,10.0,10.0,0.0,-4.807692307692308 -307,11.0,3.0,0.0,4.191255364806866 -307,11.0,11.0,6.573961583776156,-24.424167659260668 -307,11.0,12.0,0.0,7.142857142857143 -307,11.0,13.0,-1.5265676088395577,3.1734252729654173 -307,11.0,14.0,-3.0953961826564296,6.097275864326261 -307,11.0,15.0,-1.9519977922801688,4.104359379111847 -307,12.0,11.0,0.0,7.142857142857143 -307,12.0,12.0,0.0,-7.142857142857143 -307,13.0,11.0,-1.5265676088395577,3.1734252729654173 -307,13.0,13.0,4.01751987283902,-5.424299332335067 -307,13.0,14.0,-2.4909522639994623,2.250874059369649 -307,14.0,11.0,-3.0953961826564296,6.097275864326261 -307,14.0,13.0,-2.4909522639994623,2.250874059369649 -307,14.0,14.0,9.365498545964757,-16.01163373210796 -307,14.0,17.0,-1.8108011504072024,3.687418931630696 -307,14.0,22.0,-1.9683489489016612,3.976064876781356 -307,15.0,11.0,-1.9519977922801688,4.104359379111847 -307,15.0,15.0,3.271064728633931,-8.94513365126506 -307,15.0,16.0,-1.3190669363537617,4.8407742721532125 -307,16.0,9.0,-3.956039125715353,10.317447719844054 -307,16.0,15.0,-1.3190669363537617,4.8407742721532125 -307,16.0,16.0,5.275106062069114,-15.158221991997266 -307,17.0,14.0,-1.8108011504072024,3.687418931630696 -307,17.0,17.0,4.886487584415919,-9.906177730909668 -307,17.0,18.0,-3.0756864340087167,6.218758799278971 -307,18.0,17.0,-3.0756864340087167,6.218758799278971 -307,18.0,18.0,8.958039375185187,-17.98346468163191 -307,18.0,19.0,-5.88235294117647,11.76470588235294 -307,19.0,9.0,-1.7848303152666305,3.98535828943083 -307,19.0,18.0,-5.88235294117647,11.76470588235294 -307,19.0,19.0,7.6671832564431,-15.75006417178377 -307,20.0,9.0,-5.101853820159654,10.98071411292983 -307,20.0,20.0,21.876495189895888,-45.10843276170355 -307,20.0,21.0,-16.774641369736234,34.127718648773715 -307,21.0,9.0,-2.619319553382597,5.400770303329455 -307,21.0,20.0,-16.774641369736234,34.127718648773715 -307,21.0,21.0,21.93449907537439,-43.48289181517921 -307,21.0,23.0,-2.5405381522555563,3.95440286307604 -307,22.0,14.0,-1.9683489489016612,3.976064876781356 -307,22.0,22.0,3.429754555384988,-6.965303617315433 -307,22.0,23.0,-1.4614056064833263,2.989238740534077 -307,23.0,21.0,-2.5405381522555563,3.95440286307604 -307,23.0,22.0,-1.4614056064833263,2.989238740534077 -307,23.0,23.0,5.311836702613133,-9.188263657315172 -307,23.0,24.0,-1.3098929438742493,2.287622053705056 -307,24.0,23.0,-1.3098929438742493,2.287622053705056 -307,24.0,24.0,4.495715080321987,-7.864978761969621 -307,24.0,25.0,-1.2165301194494855,1.8171440463475024 -307,24.0,26.0,-1.9692920169982515,3.760212661917064 -307,25.0,24.0,-1.2165301194494855,1.8171440463475024 -307,25.0,25.0,1.2165301194494855,-1.8171440463475024 -307,26.0,24.0,-1.9692920169982515,3.760212661917064 -307,26.0,26.0,3.652281470778589,-9.46044252232512 -307,26.0,27.0,0.0,2.608731947574922 -307,26.0,28.0,-0.99553355095268,1.881005840357816 -307,26.0,29.0,-0.6874559028276572,1.293971494797717 -307,27.0,5.0,-4.362844058012917,15.463571542897856 -307,27.0,7.0,-1.4439790613954469,4.540814658476248 -307,27.0,26.0,0.0,2.608731947574922 -307,27.0,27.0,5.806823119408364,-22.67145722159613 -307,28.0,26.0,-0.99553355095268,1.881005840357816 -307,28.0,28.0,1.9075867579849564,-3.604364401207048 -307,28.0,29.0,-0.9120532070322764,1.7233585608492326 -307,29.0,26.0,-0.6874559028276572,1.293971494797717 -307,29.0,28.0,-0.9120532070322764,1.7233585608492326 -307,29.0,29.0,1.5995091098599337,-3.0173300556469496 -308,0.0,0.0,6.765516048652632,-21.23160167089863 -308,0.0,1.0,-5.224646179885656,15.646726840803398 -308,0.0,2.0,-1.5408698687669766,5.631674830095234 -308,1.0,0.0,-5.224646179885656,15.646726840803398 -308,1.0,1.0,9.75228216552403,-30.648662892676068 -308,1.0,3.0,-1.7055303166990268,5.1973792282565086 -308,1.0,4.0,-1.1359607881738778,4.772479328281356 -308,1.0,5.0,-1.6861448807654689,5.116477495334806 -308,2.0,0.0,-1.5408698687669766,5.631674830095234 -308,2.0,2.0,9.736318911079088,-29.13794745915803 -308,2.0,3.0,-8.19544904231211,23.5308726290628 -308,3.0,1.0,-1.7055303166990268,5.1973792282565086 -308,3.0,2.0,-8.19544904231211,23.5308726290628 -308,3.0,3.0,16.314103089185693,-55.509410535254254 -308,3.0,5.0,-6.413123730174556,22.31120356548123 -308,3.0,11.0,0.0,4.191255364806866 -308,4.0,1.0,-1.1359607881738778,4.772479328281356 -308,4.0,4.0,1.1359607881738778,-4.751579328281355 -308,5.0,1.0,-1.6861448807654689,5.116477495334806 -308,5.0,3.0,-6.413123730174556,22.31120356548123 -308,5.0,5.0,17.978787211021647,-67.37207632288106 -308,5.0,6.0,-3.590210423980992,11.02611441072814 -308,5.0,7.0,-6.289308176100628,22.0125786163522 -308,5.0,8.0,0.0,4.915840805411357 -308,5.0,9.0,0.0,1.8561002591115965 -308,6.0,5.0,-3.590210423980992,11.02611441072814 -308,6.0,6.0,3.590210423980992,-11.01761441072814 -308,7.0,5.0,-6.289308176100628,22.0125786163522 -308,7.0,7.0,7.733287237496075,-26.527493274828448 -308,7.0,27.0,-1.4439790613954469,4.540814658476248 -308,8.0,5.0,0.0,4.915840805411357 -308,8.0,8.0,0.0,-18.706293706293707 -308,8.0,9.0,0.0,9.090909090909092 -308,8.0,10.0,0.0,4.807692307692308 -308,9.0,5.0,0.0,1.8561002591115965 -308,9.0,8.0,0.0,9.090909090909092 -308,9.0,9.0,13.462042814524237,-41.3837606675224 -308,9.0,16.0,-3.956039125715353,10.317447719844054 -308,9.0,19.0,-1.7848303152666305,3.98535828943083 -308,9.0,20.0,-5.101853820159654,10.98071411292983 -308,9.0,21.0,-2.619319553382597,5.400770303329455 -308,10.0,8.0,0.0,4.807692307692308 -308,10.0,10.0,0.0,-4.807692307692308 -308,11.0,3.0,0.0,4.191255364806866 -308,11.0,11.0,6.573961583776156,-24.424167659260668 -308,11.0,12.0,0.0,7.142857142857143 -308,11.0,13.0,-1.5265676088395577,3.1734252729654173 -308,11.0,14.0,-3.0953961826564296,6.097275864326261 -308,11.0,15.0,-1.9519977922801688,4.104359379111847 -308,12.0,11.0,0.0,7.142857142857143 -308,12.0,12.0,0.0,-7.142857142857143 -308,13.0,11.0,-1.5265676088395577,3.1734252729654173 -308,13.0,13.0,4.01751987283902,-5.424299332335067 -308,13.0,14.0,-2.4909522639994623,2.250874059369649 -308,14.0,11.0,-3.0953961826564296,6.097275864326261 -308,14.0,13.0,-2.4909522639994623,2.250874059369649 -308,14.0,14.0,9.365498545964757,-16.01163373210796 -308,14.0,17.0,-1.8108011504072024,3.687418931630696 -308,14.0,22.0,-1.9683489489016612,3.976064876781356 -308,15.0,11.0,-1.9519977922801688,4.104359379111847 -308,15.0,15.0,3.271064728633931,-8.94513365126506 -308,15.0,16.0,-1.3190669363537617,4.8407742721532125 -308,16.0,9.0,-3.956039125715353,10.317447719844054 -308,16.0,15.0,-1.3190669363537617,4.8407742721532125 -308,16.0,16.0,5.275106062069114,-15.158221991997266 -308,17.0,14.0,-1.8108011504072024,3.687418931630696 -308,17.0,17.0,4.886487584415919,-9.906177730909668 -308,17.0,18.0,-3.0756864340087167,6.218758799278971 -308,18.0,17.0,-3.0756864340087167,6.218758799278971 -308,18.0,18.0,8.958039375185187,-17.98346468163191 -308,18.0,19.0,-5.88235294117647,11.76470588235294 -308,19.0,9.0,-1.7848303152666305,3.98535828943083 -308,19.0,18.0,-5.88235294117647,11.76470588235294 -308,19.0,19.0,7.6671832564431,-15.75006417178377 -308,20.0,9.0,-5.101853820159654,10.98071411292983 -308,20.0,20.0,21.876495189895888,-45.10843276170355 -308,20.0,21.0,-16.774641369736234,34.127718648773715 -308,21.0,9.0,-2.619319553382597,5.400770303329455 -308,21.0,20.0,-16.774641369736234,34.127718648773715 -308,21.0,21.0,21.93449907537439,-43.48289181517921 -308,21.0,23.0,-2.5405381522555563,3.95440286307604 -308,22.0,14.0,-1.9683489489016612,3.976064876781356 -308,22.0,22.0,1.9683489489016612,-3.976064876781356 -308,23.0,21.0,-2.5405381522555563,3.95440286307604 -308,23.0,23.0,2.5405381522555563,-3.9114028630760393 -308,24.0,24.0,3.185822136447737,-5.577356708264566 -308,24.0,25.0,-1.2165301194494855,1.8171440463475024 -308,24.0,26.0,-1.9692920169982515,3.760212661917064 -308,25.0,24.0,-1.2165301194494855,1.8171440463475024 -308,25.0,25.0,1.2165301194494855,-1.8171440463475024 -308,26.0,24.0,-1.9692920169982515,3.760212661917064 -308,26.0,26.0,3.652281470778589,-9.46044252232512 -308,26.0,27.0,0.0,2.608731947574922 -308,26.0,28.0,-0.99553355095268,1.881005840357816 -308,26.0,29.0,-0.6874559028276572,1.293971494797717 -308,27.0,7.0,-1.4439790613954469,4.540814658476248 -308,27.0,26.0,0.0,2.608731947574922 -308,27.0,27.0,1.4439790613954469,-7.214385678698274 -308,28.0,26.0,-0.99553355095268,1.881005840357816 -308,28.0,28.0,1.9075867579849564,-3.604364401207048 -308,28.0,29.0,-0.9120532070322764,1.7233585608492326 -308,29.0,26.0,-0.6874559028276572,1.293971494797717 -308,29.0,28.0,-0.9120532070322764,1.7233585608492326 -308,29.0,29.0,1.5995091098599337,-3.0173300556469496 -309,0.0,0.0,6.765516048652632,-21.23160167089863 -309,0.0,1.0,-5.224646179885656,15.646726840803398 -309,0.0,2.0,-1.5408698687669766,5.631674830095234 -309,1.0,0.0,-5.224646179885656,15.646726840803398 -309,1.0,1.0,9.75228216552403,-30.648662892676068 -309,1.0,3.0,-1.7055303166990268,5.1973792282565086 -309,1.0,4.0,-1.1359607881738778,4.772479328281356 -309,1.0,5.0,-1.6861448807654689,5.116477495334806 -309,2.0,0.0,-1.5408698687669766,5.631674830095234 -309,2.0,2.0,9.736318911079088,-29.13794745915803 -309,2.0,3.0,-8.19544904231211,23.5308726290628 -309,3.0,1.0,-1.7055303166990268,5.1973792282565086 -309,3.0,2.0,-8.19544904231211,23.5308726290628 -309,3.0,3.0,16.314103089185693,-55.509410535254254 -309,3.0,5.0,-6.413123730174556,22.31120356548123 -309,3.0,11.0,0.0,4.191255364806866 -309,4.0,1.0,-1.1359607881738778,4.772479328281356 -309,4.0,4.0,4.089980824135861,-12.190647245055052 -309,4.0,6.0,-2.954020035961983,7.449267916773697 -309,5.0,1.0,-1.6861448807654689,5.116477495334806 -309,5.0,3.0,-6.413123730174556,22.31120356548123 -309,5.0,5.0,22.341631269034565,-82.8291478657789 -309,5.0,6.0,-3.590210423980992,11.02611441072814 -309,5.0,7.0,-6.289308176100628,22.0125786163522 -309,5.0,8.0,0.0,4.915840805411357 -309,5.0,9.0,0.0,1.8561002591115965 -309,5.0,27.0,-4.362844058012917,15.463571542897856 -309,6.0,4.0,-2.954020035961983,7.449267916773697 -309,6.0,5.0,-3.590210423980992,11.02611441072814 -309,6.0,6.0,6.544230459942975,-18.45668232750184 -309,7.0,5.0,-6.289308176100628,22.0125786163522 -309,7.0,7.0,6.289308176100628,-22.0080786163522 -309,8.0,5.0,0.0,4.915840805411357 -309,8.0,8.0,0.0,-18.706293706293707 -309,8.0,9.0,0.0,9.090909090909092 -309,8.0,10.0,0.0,4.807692307692308 -309,9.0,5.0,0.0,1.8561002591115965 -309,9.0,8.0,0.0,9.090909090909092 -309,9.0,9.0,13.462042814524237,-41.3837606675224 -309,9.0,16.0,-3.956039125715353,10.317447719844054 -309,9.0,19.0,-1.7848303152666305,3.98535828943083 -309,9.0,20.0,-5.101853820159654,10.98071411292983 -309,9.0,21.0,-2.619319553382597,5.400770303329455 -309,10.0,8.0,0.0,4.807692307692308 -309,10.0,10.0,0.0,-4.807692307692308 -309,11.0,3.0,0.0,4.191255364806866 -309,11.0,11.0,6.573961583776156,-24.424167659260668 -309,11.0,12.0,0.0,7.142857142857143 -309,11.0,13.0,-1.5265676088395577,3.1734252729654173 -309,11.0,14.0,-3.0953961826564296,6.097275864326261 -309,11.0,15.0,-1.9519977922801688,4.104359379111847 -309,12.0,11.0,0.0,7.142857142857143 -309,12.0,12.0,0.0,-7.142857142857143 -309,13.0,11.0,-1.5265676088395577,3.1734252729654173 -309,13.0,13.0,4.01751987283902,-5.424299332335067 -309,13.0,14.0,-2.4909522639994623,2.250874059369649 -309,14.0,11.0,-3.0953961826564296,6.097275864326261 -309,14.0,13.0,-2.4909522639994623,2.250874059369649 -309,14.0,14.0,7.554697395557554,-12.324214800477266 -309,14.0,22.0,-1.9683489489016612,3.976064876781356 -309,15.0,11.0,-1.9519977922801688,4.104359379111847 -309,15.0,15.0,3.271064728633931,-8.94513365126506 -309,15.0,16.0,-1.3190669363537617,4.8407742721532125 -309,16.0,9.0,-3.956039125715353,10.317447719844054 -309,16.0,15.0,-1.3190669363537617,4.8407742721532125 -309,16.0,16.0,5.275106062069114,-15.158221991997266 -309,17.0,17.0,3.0756864340087167,-6.218758799278971 -309,17.0,18.0,-3.0756864340087167,6.218758799278971 -309,18.0,17.0,-3.0756864340087167,6.218758799278971 -309,18.0,18.0,8.958039375185187,-17.98346468163191 -309,18.0,19.0,-5.88235294117647,11.76470588235294 -309,19.0,9.0,-1.7848303152666305,3.98535828943083 -309,19.0,18.0,-5.88235294117647,11.76470588235294 -309,19.0,19.0,7.6671832564431,-15.75006417178377 -309,20.0,9.0,-5.101853820159654,10.98071411292983 -309,20.0,20.0,21.876495189895888,-45.10843276170355 -309,20.0,21.0,-16.774641369736234,34.127718648773715 -309,21.0,9.0,-2.619319553382597,5.400770303329455 -309,21.0,20.0,-16.774641369736234,34.127718648773715 -309,21.0,21.0,21.93449907537439,-43.48289181517921 -309,21.0,23.0,-2.5405381522555563,3.95440286307604 -309,22.0,14.0,-1.9683489489016612,3.976064876781356 -309,22.0,22.0,3.429754555384988,-6.965303617315433 -309,22.0,23.0,-1.4614056064833263,2.989238740534077 -309,23.0,21.0,-2.5405381522555563,3.95440286307604 -309,23.0,22.0,-1.4614056064833263,2.989238740534077 -309,23.0,23.0,5.311836702613133,-9.188263657315172 -309,23.0,24.0,-1.3098929438742493,2.287622053705056 -309,24.0,23.0,-1.3098929438742493,2.287622053705056 -309,24.0,24.0,4.495715080321987,-7.864978761969621 -309,24.0,25.0,-1.2165301194494855,1.8171440463475024 -309,24.0,26.0,-1.9692920169982515,3.760212661917064 -309,25.0,24.0,-1.2165301194494855,1.8171440463475024 -309,25.0,25.0,1.2165301194494855,-1.8171440463475024 -309,26.0,24.0,-1.9692920169982515,3.760212661917064 -309,26.0,26.0,3.652281470778589,-9.46044252232512 -309,26.0,27.0,0.0,2.608731947574922 -309,26.0,28.0,-0.99553355095268,1.881005840357816 -309,26.0,29.0,-0.6874559028276572,1.293971494797717 -309,27.0,5.0,-4.362844058012917,15.463571542897856 -309,27.0,26.0,0.0,2.608731947574922 -309,27.0,27.0,4.362844058012917,-18.15204256311988 -309,28.0,26.0,-0.99553355095268,1.881005840357816 -309,28.0,28.0,1.9075867579849564,-3.604364401207048 -309,28.0,29.0,-0.9120532070322764,1.7233585608492326 -309,29.0,26.0,-0.6874559028276572,1.293971494797717 -309,29.0,28.0,-0.9120532070322764,1.7233585608492326 -309,29.0,29.0,1.5995091098599337,-3.0173300556469496 -310,0.0,0.0,6.765516048652632,-21.23160167089863 -310,0.0,1.0,-5.224646179885656,15.646726840803398 -310,0.0,2.0,-1.5408698687669766,5.631674830095234 -310,1.0,0.0,-5.224646179885656,15.646726840803398 -310,1.0,1.0,8.046751848825002,-25.46968366441956 -310,1.0,4.0,-1.1359607881738778,4.772479328281356 -310,1.0,5.0,-1.6861448807654689,5.116477495334806 -310,2.0,0.0,-1.5408698687669766,5.631674830095234 -310,2.0,2.0,9.736318911079088,-29.13794745915803 -310,2.0,3.0,-8.19544904231211,23.5308726290628 -310,3.0,2.0,-8.19544904231211,23.5308726290628 -310,3.0,3.0,14.608572772486664,-50.33043130699775 -310,3.0,5.0,-6.413123730174556,22.31120356548123 -310,3.0,11.0,0.0,4.191255364806866 -310,4.0,1.0,-1.1359607881738778,4.772479328281356 -310,4.0,4.0,4.089980824135861,-12.190647245055052 -310,4.0,6.0,-2.954020035961983,7.449267916773697 -310,5.0,1.0,-1.6861448807654689,5.116477495334806 -310,5.0,3.0,-6.413123730174556,22.31120356548123 -310,5.0,5.0,22.341631269034565,-82.8291478657789 -310,5.0,6.0,-3.590210423980992,11.02611441072814 -310,5.0,7.0,-6.289308176100628,22.0125786163522 -310,5.0,8.0,0.0,4.915840805411357 -310,5.0,9.0,0.0,1.8561002591115965 -310,5.0,27.0,-4.362844058012917,15.463571542897856 -310,6.0,4.0,-2.954020035961983,7.449267916773697 -310,6.0,5.0,-3.590210423980992,11.02611441072814 -310,6.0,6.0,6.544230459942975,-18.45668232750184 -310,7.0,5.0,-6.289308176100628,22.0125786163522 -310,7.0,7.0,7.733287237496075,-26.527493274828448 -310,7.0,27.0,-1.4439790613954469,4.540814658476248 -310,8.0,5.0,0.0,4.915840805411357 -310,8.0,8.0,0.0,-18.706293706293707 -310,8.0,9.0,0.0,9.090909090909092 -310,8.0,10.0,0.0,4.807692307692308 -310,9.0,5.0,0.0,1.8561002591115965 -310,9.0,8.0,0.0,9.090909090909092 -310,9.0,9.0,9.506003688808882,-31.06631294767834 -310,9.0,19.0,-1.7848303152666305,3.98535828943083 -310,9.0,20.0,-5.101853820159654,10.98071411292983 -310,9.0,21.0,-2.619319553382597,5.400770303329455 -310,10.0,8.0,0.0,4.807692307692308 -310,10.0,10.0,0.0,-4.807692307692308 -310,11.0,3.0,0.0,4.191255364806866 -310,11.0,11.0,6.573961583776156,-24.424167659260668 -310,11.0,12.0,0.0,7.142857142857143 -310,11.0,13.0,-1.5265676088395577,3.1734252729654173 -310,11.0,14.0,-3.0953961826564296,6.097275864326261 -310,11.0,15.0,-1.9519977922801688,4.104359379111847 -310,12.0,11.0,0.0,7.142857142857143 -310,12.0,12.0,0.0,-7.142857142857143 -310,13.0,11.0,-1.5265676088395577,3.1734252729654173 -310,13.0,13.0,4.01751987283902,-5.424299332335067 -310,13.0,14.0,-2.4909522639994623,2.250874059369649 -310,14.0,11.0,-3.0953961826564296,6.097275864326261 -310,14.0,13.0,-2.4909522639994623,2.250874059369649 -310,14.0,14.0,9.365498545964757,-16.01163373210796 -310,14.0,17.0,-1.8108011504072024,3.687418931630696 -310,14.0,22.0,-1.9683489489016612,3.976064876781356 -310,15.0,11.0,-1.9519977922801688,4.104359379111847 -310,15.0,15.0,3.271064728633931,-8.94513365126506 -310,15.0,16.0,-1.3190669363537617,4.8407742721532125 -310,16.0,15.0,-1.3190669363537617,4.8407742721532125 -310,16.0,16.0,1.3190669363537617,-4.8407742721532125 -310,17.0,14.0,-1.8108011504072024,3.687418931630696 -310,17.0,17.0,4.886487584415919,-9.906177730909668 -310,17.0,18.0,-3.0756864340087167,6.218758799278971 -310,18.0,17.0,-3.0756864340087167,6.218758799278971 -310,18.0,18.0,8.958039375185187,-17.98346468163191 -310,18.0,19.0,-5.88235294117647,11.76470588235294 -310,19.0,9.0,-1.7848303152666305,3.98535828943083 -310,19.0,18.0,-5.88235294117647,11.76470588235294 -310,19.0,19.0,7.6671832564431,-15.75006417178377 -310,20.0,9.0,-5.101853820159654,10.98071411292983 -310,20.0,20.0,5.101853820159654,-10.98071411292983 -310,21.0,9.0,-2.619319553382597,5.400770303329455 -310,21.0,21.0,5.159857705638154,-9.355173166405494 -310,21.0,23.0,-2.5405381522555563,3.95440286307604 -310,22.0,14.0,-1.9683489489016612,3.976064876781356 -310,22.0,22.0,3.429754555384988,-6.965303617315433 -310,22.0,23.0,-1.4614056064833263,2.989238740534077 -310,23.0,21.0,-2.5405381522555563,3.95440286307604 -310,23.0,22.0,-1.4614056064833263,2.989238740534077 -310,23.0,23.0,5.311836702613133,-9.188263657315172 -310,23.0,24.0,-1.3098929438742493,2.287622053705056 -310,24.0,23.0,-1.3098929438742493,2.287622053705056 -310,24.0,24.0,4.495715080321987,-7.864978761969621 -310,24.0,25.0,-1.2165301194494855,1.8171440463475024 -310,24.0,26.0,-1.9692920169982515,3.760212661917064 -310,25.0,24.0,-1.2165301194494855,1.8171440463475024 -310,25.0,25.0,1.2165301194494855,-1.8171440463475024 -310,26.0,24.0,-1.9692920169982515,3.760212661917064 -310,26.0,26.0,3.652281470778589,-9.46044252232512 -310,26.0,27.0,0.0,2.608731947574922 -310,26.0,28.0,-0.99553355095268,1.881005840357816 -310,26.0,29.0,-0.6874559028276572,1.293971494797717 -310,27.0,5.0,-4.362844058012917,15.463571542897856 -310,27.0,7.0,-1.4439790613954469,4.540814658476248 -310,27.0,26.0,0.0,2.608731947574922 -310,27.0,27.0,5.806823119408364,-22.67145722159613 -310,28.0,26.0,-0.99553355095268,1.881005840357816 -310,28.0,28.0,1.9075867579849564,-3.604364401207048 -310,28.0,29.0,-0.9120532070322764,1.7233585608492326 -310,29.0,26.0,-0.6874559028276572,1.293971494797717 -310,29.0,28.0,-0.9120532070322764,1.7233585608492326 -310,29.0,29.0,1.5995091098599337,-3.0173300556469496 -311,0.0,0.0,6.765516048652632,-21.23160167089863 -311,0.0,1.0,-5.224646179885656,15.646726840803398 -311,0.0,2.0,-1.5408698687669766,5.631674830095234 -311,1.0,0.0,-5.224646179885656,15.646726840803398 -311,1.0,1.0,9.75228216552403,-30.648662892676068 -311,1.0,3.0,-1.7055303166990268,5.1973792282565086 -311,1.0,4.0,-1.1359607881738778,4.772479328281356 -311,1.0,5.0,-1.6861448807654689,5.116477495334806 -311,2.0,0.0,-1.5408698687669766,5.631674830095234 -311,2.0,2.0,9.736318911079088,-29.13794745915803 -311,2.0,3.0,-8.19544904231211,23.5308726290628 -311,3.0,1.0,-1.7055303166990268,5.1973792282565086 -311,3.0,2.0,-8.19544904231211,23.5308726290628 -311,3.0,3.0,16.314103089185693,-55.509410535254254 -311,3.0,5.0,-6.413123730174556,22.31120356548123 -311,3.0,11.0,0.0,4.191255364806866 -311,4.0,1.0,-1.1359607881738778,4.772479328281356 -311,4.0,4.0,4.089980824135861,-12.190647245055052 -311,4.0,6.0,-2.954020035961983,7.449267916773697 -311,5.0,1.0,-1.6861448807654689,5.116477495334806 -311,5.0,3.0,-6.413123730174556,22.31120356548123 -311,5.0,5.0,22.341631269034565,-82.8291478657789 -311,5.0,6.0,-3.590210423980992,11.02611441072814 -311,5.0,7.0,-6.289308176100628,22.0125786163522 -311,5.0,8.0,0.0,4.915840805411357 -311,5.0,9.0,0.0,1.8561002591115965 -311,5.0,27.0,-4.362844058012917,15.463571542897856 -311,6.0,4.0,-2.954020035961983,7.449267916773697 -311,6.0,5.0,-3.590210423980992,11.02611441072814 -311,6.0,6.0,6.544230459942975,-18.45668232750184 -311,7.0,5.0,-6.289308176100628,22.0125786163522 -311,7.0,7.0,7.733287237496075,-26.527493274828448 -311,7.0,27.0,-1.4439790613954469,4.540814658476248 -311,8.0,5.0,0.0,4.915840805411357 -311,8.0,8.0,0.0,-18.706293706293707 -311,8.0,9.0,0.0,9.090909090909092 -311,8.0,10.0,0.0,4.807692307692308 -311,9.0,5.0,0.0,1.8561002591115965 -311,9.0,8.0,0.0,9.090909090909092 -311,9.0,9.0,13.462042814524237,-41.3837606675224 -311,9.0,16.0,-3.956039125715353,10.317447719844054 -311,9.0,19.0,-1.7848303152666305,3.98535828943083 -311,9.0,20.0,-5.101853820159654,10.98071411292983 -311,9.0,21.0,-2.619319553382597,5.400770303329455 -311,10.0,8.0,0.0,4.807692307692308 -311,10.0,10.0,0.0,-4.807692307692308 -311,11.0,3.0,0.0,4.191255364806866 -311,11.0,11.0,4.621963791495987,-20.31980828014882 -311,11.0,12.0,0.0,7.142857142857143 -311,11.0,13.0,-1.5265676088395577,3.1734252729654173 -311,11.0,14.0,-3.0953961826564296,6.097275864326261 -311,12.0,11.0,0.0,7.142857142857143 -311,12.0,12.0,0.0,-7.142857142857143 -311,13.0,11.0,-1.5265676088395577,3.1734252729654173 -311,13.0,13.0,4.01751987283902,-5.424299332335067 -311,13.0,14.0,-2.4909522639994623,2.250874059369649 -311,14.0,11.0,-3.0953961826564296,6.097275864326261 -311,14.0,13.0,-2.4909522639994623,2.250874059369649 -311,14.0,14.0,7.554697395557554,-12.324214800477266 -311,14.0,22.0,-1.9683489489016612,3.976064876781356 -311,15.0,15.0,1.3190669363537617,-4.8407742721532125 -311,15.0,16.0,-1.3190669363537617,4.8407742721532125 -311,16.0,9.0,-3.956039125715353,10.317447719844054 -311,16.0,15.0,-1.3190669363537617,4.8407742721532125 -311,16.0,16.0,5.275106062069114,-15.158221991997266 -311,17.0,17.0,3.0756864340087167,-6.218758799278971 -311,17.0,18.0,-3.0756864340087167,6.218758799278971 -311,18.0,17.0,-3.0756864340087167,6.218758799278971 -311,18.0,18.0,8.958039375185187,-17.98346468163191 -311,18.0,19.0,-5.88235294117647,11.76470588235294 -311,19.0,9.0,-1.7848303152666305,3.98535828943083 -311,19.0,18.0,-5.88235294117647,11.76470588235294 -311,19.0,19.0,7.6671832564431,-15.75006417178377 -311,20.0,9.0,-5.101853820159654,10.98071411292983 -311,20.0,20.0,21.876495189895888,-45.10843276170355 -311,20.0,21.0,-16.774641369736234,34.127718648773715 -311,21.0,9.0,-2.619319553382597,5.400770303329455 -311,21.0,20.0,-16.774641369736234,34.127718648773715 -311,21.0,21.0,21.93449907537439,-43.48289181517921 -311,21.0,23.0,-2.5405381522555563,3.95440286307604 -311,22.0,14.0,-1.9683489489016612,3.976064876781356 -311,22.0,22.0,3.429754555384988,-6.965303617315433 -311,22.0,23.0,-1.4614056064833263,2.989238740534077 -311,23.0,21.0,-2.5405381522555563,3.95440286307604 -311,23.0,22.0,-1.4614056064833263,2.989238740534077 -311,23.0,23.0,5.311836702613133,-9.188263657315172 -311,23.0,24.0,-1.3098929438742493,2.287622053705056 -311,24.0,23.0,-1.3098929438742493,2.287622053705056 -311,24.0,24.0,4.495715080321987,-7.864978761969621 -311,24.0,25.0,-1.2165301194494855,1.8171440463475024 -311,24.0,26.0,-1.9692920169982515,3.760212661917064 -311,25.0,24.0,-1.2165301194494855,1.8171440463475024 -311,25.0,25.0,1.2165301194494855,-1.8171440463475024 -311,26.0,24.0,-1.9692920169982515,3.760212661917064 -311,26.0,26.0,3.652281470778589,-9.46044252232512 -311,26.0,27.0,0.0,2.608731947574922 -311,26.0,28.0,-0.99553355095268,1.881005840357816 -311,26.0,29.0,-0.6874559028276572,1.293971494797717 -311,27.0,5.0,-4.362844058012917,15.463571542897856 -311,27.0,7.0,-1.4439790613954469,4.540814658476248 -311,27.0,26.0,0.0,2.608731947574922 -311,27.0,27.0,5.806823119408364,-22.67145722159613 -311,28.0,26.0,-0.99553355095268,1.881005840357816 -311,28.0,28.0,1.9075867579849564,-3.604364401207048 -311,28.0,29.0,-0.9120532070322764,1.7233585608492326 -311,29.0,26.0,-0.6874559028276572,1.293971494797717 -311,29.0,28.0,-0.9120532070322764,1.7233585608492326 -311,29.0,29.0,1.5995091098599337,-3.0173300556469496 -312,0.0,0.0,6.765516048652632,-21.23160167089863 -312,0.0,1.0,-5.224646179885656,15.646726840803398 -312,0.0,2.0,-1.5408698687669766,5.631674830095234 -312,1.0,0.0,-5.224646179885656,15.646726840803398 -312,1.0,1.0,9.75228216552403,-30.648662892676068 -312,1.0,3.0,-1.7055303166990268,5.1973792282565086 -312,1.0,4.0,-1.1359607881738778,4.772479328281356 -312,1.0,5.0,-1.6861448807654689,5.116477495334806 -312,2.0,0.0,-1.5408698687669766,5.631674830095234 -312,2.0,2.0,9.736318911079088,-29.13794745915803 -312,2.0,3.0,-8.19544904231211,23.5308726290628 -312,3.0,1.0,-1.7055303166990268,5.1973792282565086 -312,3.0,2.0,-8.19544904231211,23.5308726290628 -312,3.0,3.0,16.314103089185693,-55.509410535254254 -312,3.0,5.0,-6.413123730174556,22.31120356548123 -312,3.0,11.0,0.0,4.191255364806866 -312,4.0,1.0,-1.1359607881738778,4.772479328281356 -312,4.0,4.0,4.089980824135861,-12.190647245055052 -312,4.0,6.0,-2.954020035961983,7.449267916773697 -312,5.0,1.0,-1.6861448807654689,5.116477495334806 -312,5.0,3.0,-6.413123730174556,22.31120356548123 -312,5.0,5.0,22.341631269034565,-82.8291478657789 -312,5.0,6.0,-3.590210423980992,11.02611441072814 -312,5.0,7.0,-6.289308176100628,22.0125786163522 -312,5.0,8.0,0.0,4.915840805411357 -312,5.0,9.0,0.0,1.8561002591115965 -312,5.0,27.0,-4.362844058012917,15.463571542897856 -312,6.0,4.0,-2.954020035961983,7.449267916773697 -312,6.0,5.0,-3.590210423980992,11.02611441072814 -312,6.0,6.0,6.544230459942975,-18.45668232750184 -312,7.0,5.0,-6.289308176100628,22.0125786163522 -312,7.0,7.0,7.733287237496075,-26.527493274828448 -312,7.0,27.0,-1.4439790613954469,4.540814658476248 -312,8.0,5.0,0.0,4.915840805411357 -312,8.0,8.0,0.0,-18.706293706293707 -312,8.0,9.0,0.0,9.090909090909092 -312,8.0,10.0,0.0,4.807692307692308 -312,9.0,5.0,0.0,1.8561002591115965 -312,9.0,8.0,0.0,9.090909090909092 -312,9.0,9.0,13.462042814524237,-41.3837606675224 -312,9.0,16.0,-3.956039125715353,10.317447719844054 -312,9.0,19.0,-1.7848303152666305,3.98535828943083 -312,9.0,20.0,-5.101853820159654,10.98071411292983 -312,9.0,21.0,-2.619319553382597,5.400770303329455 -312,10.0,8.0,0.0,4.807692307692308 -312,10.0,10.0,0.0,-4.807692307692308 -312,11.0,3.0,0.0,4.191255364806866 -312,11.0,11.0,6.573961583776156,-24.424167659260668 -312,11.0,12.0,0.0,7.142857142857143 -312,11.0,13.0,-1.5265676088395577,3.1734252729654173 -312,11.0,14.0,-3.0953961826564296,6.097275864326261 -312,11.0,15.0,-1.9519977922801688,4.104359379111847 -312,12.0,11.0,0.0,7.142857142857143 -312,12.0,12.0,0.0,-7.142857142857143 -312,13.0,11.0,-1.5265676088395577,3.1734252729654173 -312,13.0,13.0,4.01751987283902,-5.424299332335067 -312,13.0,14.0,-2.4909522639994623,2.250874059369649 -312,14.0,11.0,-3.0953961826564296,6.097275864326261 -312,14.0,13.0,-2.4909522639994623,2.250874059369649 -312,14.0,14.0,9.365498545964757,-16.01163373210796 -312,14.0,17.0,-1.8108011504072024,3.687418931630696 -312,14.0,22.0,-1.9683489489016612,3.976064876781356 -312,15.0,11.0,-1.9519977922801688,4.104359379111847 -312,15.0,15.0,3.271064728633931,-8.94513365126506 -312,15.0,16.0,-1.3190669363537617,4.8407742721532125 -312,16.0,9.0,-3.956039125715353,10.317447719844054 -312,16.0,15.0,-1.3190669363537617,4.8407742721532125 -312,16.0,16.0,5.275106062069114,-15.158221991997266 -312,17.0,14.0,-1.8108011504072024,3.687418931630696 -312,17.0,17.0,4.886487584415919,-9.906177730909668 -312,17.0,18.0,-3.0756864340087167,6.218758799278971 -312,18.0,17.0,-3.0756864340087167,6.218758799278971 -312,18.0,18.0,8.958039375185187,-17.98346468163191 -312,18.0,19.0,-5.88235294117647,11.76470588235294 -312,19.0,9.0,-1.7848303152666305,3.98535828943083 -312,19.0,18.0,-5.88235294117647,11.76470588235294 -312,19.0,19.0,7.6671832564431,-15.75006417178377 -312,20.0,9.0,-5.101853820159654,10.98071411292983 -312,20.0,20.0,21.876495189895888,-45.10843276170355 -312,20.0,21.0,-16.774641369736234,34.127718648773715 -312,21.0,9.0,-2.619319553382597,5.400770303329455 -312,21.0,20.0,-16.774641369736234,34.127718648773715 -312,21.0,21.0,21.93449907537439,-43.48289181517921 -312,21.0,23.0,-2.5405381522555563,3.95440286307604 -312,22.0,14.0,-1.9683489489016612,3.976064876781356 -312,22.0,22.0,3.429754555384988,-6.965303617315433 -312,22.0,23.0,-1.4614056064833263,2.989238740534077 -312,23.0,21.0,-2.5405381522555563,3.95440286307604 -312,23.0,22.0,-1.4614056064833263,2.989238740534077 -312,23.0,23.0,5.311836702613133,-9.188263657315172 -312,23.0,24.0,-1.3098929438742493,2.287622053705056 -312,24.0,23.0,-1.3098929438742493,2.287622053705056 -312,24.0,24.0,4.495715080321987,-7.864978761969621 -312,24.0,25.0,-1.2165301194494855,1.8171440463475024 -312,24.0,26.0,-1.9692920169982515,3.760212661917064 -312,25.0,24.0,-1.2165301194494855,1.8171440463475024 -312,25.0,25.0,1.2165301194494855,-1.8171440463475024 -312,26.0,24.0,-1.9692920169982515,3.760212661917064 -312,26.0,26.0,3.652281470778589,-9.46044252232512 -312,26.0,27.0,0.0,2.608731947574922 -312,26.0,28.0,-0.99553355095268,1.881005840357816 -312,26.0,29.0,-0.6874559028276572,1.293971494797717 -312,27.0,5.0,-4.362844058012917,15.463571542897856 -312,27.0,7.0,-1.4439790613954469,4.540814658476248 -312,27.0,26.0,0.0,2.608731947574922 -312,27.0,27.0,5.806823119408364,-22.67145722159613 -312,28.0,26.0,-0.99553355095268,1.881005840357816 -312,28.0,28.0,1.9075867579849564,-3.604364401207048 -312,28.0,29.0,-0.9120532070322764,1.7233585608492326 -312,29.0,26.0,-0.6874559028276572,1.293971494797717 -312,29.0,28.0,-0.9120532070322764,1.7233585608492326 -312,29.0,29.0,1.5995091098599337,-3.0173300556469496 -313,0.0,0.0,6.765516048652632,-21.23160167089863 -313,0.0,1.0,-5.224646179885656,15.646726840803398 -313,0.0,2.0,-1.5408698687669766,5.631674830095234 -313,1.0,0.0,-5.224646179885656,15.646726840803398 -313,1.0,1.0,8.61632137735015,-25.897083564394716 -313,1.0,3.0,-1.7055303166990268,5.1973792282565086 -313,1.0,5.0,-1.6861448807654689,5.116477495334806 -313,2.0,0.0,-1.5408698687669766,5.631674830095234 -313,2.0,2.0,9.736318911079088,-29.13794745915803 -313,2.0,3.0,-8.19544904231211,23.5308726290628 -313,3.0,1.0,-1.7055303166990268,5.1973792282565086 -313,3.0,2.0,-8.19544904231211,23.5308726290628 -313,3.0,3.0,16.314103089185693,-55.509410535254254 -313,3.0,5.0,-6.413123730174556,22.31120356548123 -313,3.0,11.0,0.0,4.191255364806866 -313,4.0,4.0,2.954020035961983,-7.439067916773697 -313,4.0,6.0,-2.954020035961983,7.449267916773697 -313,5.0,1.0,-1.6861448807654689,5.116477495334806 -313,5.0,3.0,-6.413123730174556,22.31120356548123 -313,5.0,5.0,22.341631269034565,-82.8291478657789 -313,5.0,6.0,-3.590210423980992,11.02611441072814 -313,5.0,7.0,-6.289308176100628,22.0125786163522 -313,5.0,8.0,0.0,4.915840805411357 -313,5.0,9.0,0.0,1.8561002591115965 -313,5.0,27.0,-4.362844058012917,15.463571542897856 -313,6.0,4.0,-2.954020035961983,7.449267916773697 -313,6.0,5.0,-3.590210423980992,11.02611441072814 -313,6.0,6.0,6.544230459942975,-18.45668232750184 -313,7.0,5.0,-6.289308176100628,22.0125786163522 -313,7.0,7.0,7.733287237496075,-26.527493274828448 -313,7.0,27.0,-1.4439790613954469,4.540814658476248 -313,8.0,5.0,0.0,4.915840805411357 -313,8.0,8.0,0.0,-18.706293706293707 -313,8.0,9.0,0.0,9.090909090909092 -313,8.0,10.0,0.0,4.807692307692308 -313,9.0,5.0,0.0,1.8561002591115965 -313,9.0,8.0,0.0,9.090909090909092 -313,9.0,9.0,13.462042814524237,-41.3837606675224 -313,9.0,16.0,-3.956039125715353,10.317447719844054 -313,9.0,19.0,-1.7848303152666305,3.98535828943083 -313,9.0,20.0,-5.101853820159654,10.98071411292983 -313,9.0,21.0,-2.619319553382597,5.400770303329455 -313,10.0,8.0,0.0,4.807692307692308 -313,10.0,10.0,0.0,-4.807692307692308 -313,11.0,3.0,0.0,4.191255364806866 -313,11.0,11.0,6.573961583776156,-24.424167659260668 -313,11.0,12.0,0.0,7.142857142857143 -313,11.0,13.0,-1.5265676088395577,3.1734252729654173 -313,11.0,14.0,-3.0953961826564296,6.097275864326261 -313,11.0,15.0,-1.9519977922801688,4.104359379111847 -313,12.0,11.0,0.0,7.142857142857143 -313,12.0,12.0,0.0,-7.142857142857143 -313,13.0,11.0,-1.5265676088395577,3.1734252729654173 -313,13.0,13.0,4.01751987283902,-5.424299332335067 -313,13.0,14.0,-2.4909522639994623,2.250874059369649 -313,14.0,11.0,-3.0953961826564296,6.097275864326261 -313,14.0,13.0,-2.4909522639994623,2.250874059369649 -313,14.0,14.0,9.365498545964757,-16.01163373210796 -313,14.0,17.0,-1.8108011504072024,3.687418931630696 -313,14.0,22.0,-1.9683489489016612,3.976064876781356 -313,15.0,11.0,-1.9519977922801688,4.104359379111847 -313,15.0,15.0,3.271064728633931,-8.94513365126506 -313,15.0,16.0,-1.3190669363537617,4.8407742721532125 -313,16.0,9.0,-3.956039125715353,10.317447719844054 -313,16.0,15.0,-1.3190669363537617,4.8407742721532125 -313,16.0,16.0,5.275106062069114,-15.158221991997266 -313,17.0,14.0,-1.8108011504072024,3.687418931630696 -313,17.0,17.0,4.886487584415919,-9.906177730909668 -313,17.0,18.0,-3.0756864340087167,6.218758799278971 -313,18.0,17.0,-3.0756864340087167,6.218758799278971 -313,18.0,18.0,8.958039375185187,-17.98346468163191 -313,18.0,19.0,-5.88235294117647,11.76470588235294 -313,19.0,9.0,-1.7848303152666305,3.98535828943083 -313,19.0,18.0,-5.88235294117647,11.76470588235294 -313,19.0,19.0,7.6671832564431,-15.75006417178377 -313,20.0,9.0,-5.101853820159654,10.98071411292983 -313,20.0,20.0,21.876495189895888,-45.10843276170355 -313,20.0,21.0,-16.774641369736234,34.127718648773715 -313,21.0,9.0,-2.619319553382597,5.400770303329455 -313,21.0,20.0,-16.774641369736234,34.127718648773715 -313,21.0,21.0,21.93449907537439,-43.48289181517921 -313,21.0,23.0,-2.5405381522555563,3.95440286307604 -313,22.0,14.0,-1.9683489489016612,3.976064876781356 -313,22.0,22.0,3.429754555384988,-6.965303617315433 -313,22.0,23.0,-1.4614056064833263,2.989238740534077 -313,23.0,21.0,-2.5405381522555563,3.95440286307604 -313,23.0,22.0,-1.4614056064833263,2.989238740534077 -313,23.0,23.0,5.311836702613133,-9.188263657315172 -313,23.0,24.0,-1.3098929438742493,2.287622053705056 -313,24.0,23.0,-1.3098929438742493,2.287622053705056 -313,24.0,24.0,4.495715080321987,-7.864978761969621 -313,24.0,25.0,-1.2165301194494855,1.8171440463475024 -313,24.0,26.0,-1.9692920169982515,3.760212661917064 -313,25.0,24.0,-1.2165301194494855,1.8171440463475024 -313,25.0,25.0,1.2165301194494855,-1.8171440463475024 -313,26.0,24.0,-1.9692920169982515,3.760212661917064 -313,26.0,26.0,3.652281470778589,-9.46044252232512 -313,26.0,27.0,0.0,2.608731947574922 -313,26.0,28.0,-0.99553355095268,1.881005840357816 -313,26.0,29.0,-0.6874559028276572,1.293971494797717 -313,27.0,5.0,-4.362844058012917,15.463571542897856 -313,27.0,7.0,-1.4439790613954469,4.540814658476248 -313,27.0,26.0,0.0,2.608731947574922 -313,27.0,27.0,5.806823119408364,-22.67145722159613 -313,28.0,26.0,-0.99553355095268,1.881005840357816 -313,28.0,28.0,1.9075867579849564,-3.604364401207048 -313,28.0,29.0,-0.9120532070322764,1.7233585608492326 -313,29.0,26.0,-0.6874559028276572,1.293971494797717 -313,29.0,28.0,-0.9120532070322764,1.7233585608492326 -313,29.0,29.0,1.5995091098599337,-3.0173300556469496 -314,0.0,0.0,6.765516048652632,-21.23160167089863 -314,0.0,1.0,-5.224646179885656,15.646726840803398 -314,0.0,2.0,-1.5408698687669766,5.631674830095234 -314,1.0,0.0,-5.224646179885656,15.646726840803398 -314,1.0,1.0,9.75228216552403,-30.648662892676068 -314,1.0,3.0,-1.7055303166990268,5.1973792282565086 -314,1.0,4.0,-1.1359607881738778,4.772479328281356 -314,1.0,5.0,-1.6861448807654689,5.116477495334806 -314,2.0,0.0,-1.5408698687669766,5.631674830095234 -314,2.0,2.0,9.736318911079088,-29.13794745915803 -314,2.0,3.0,-8.19544904231211,23.5308726290628 -314,3.0,1.0,-1.7055303166990268,5.1973792282565086 -314,3.0,2.0,-8.19544904231211,23.5308726290628 -314,3.0,3.0,16.314103089185693,-55.509410535254254 -314,3.0,5.0,-6.413123730174556,22.31120356548123 -314,3.0,11.0,0.0,4.191255364806866 -314,4.0,1.0,-1.1359607881738778,4.772479328281356 -314,4.0,4.0,4.089980824135861,-12.190647245055052 -314,4.0,6.0,-2.954020035961983,7.449267916773697 -314,5.0,1.0,-1.6861448807654689,5.116477495334806 -314,5.0,3.0,-6.413123730174556,22.31120356548123 -314,5.0,5.0,22.341631269034565,-82.8291478657789 -314,5.0,6.0,-3.590210423980992,11.02611441072814 -314,5.0,7.0,-6.289308176100628,22.0125786163522 -314,5.0,8.0,0.0,4.915840805411357 -314,5.0,9.0,0.0,1.8561002591115965 -314,5.0,27.0,-4.362844058012917,15.463571542897856 -314,6.0,4.0,-2.954020035961983,7.449267916773697 -314,6.0,5.0,-3.590210423980992,11.02611441072814 -314,6.0,6.0,6.544230459942975,-18.45668232750184 -314,7.0,5.0,-6.289308176100628,22.0125786163522 -314,7.0,7.0,7.733287237496075,-26.527493274828448 -314,7.0,27.0,-1.4439790613954469,4.540814658476248 -314,8.0,5.0,0.0,4.915840805411357 -314,8.0,8.0,0.0,-18.706293706293707 -314,8.0,9.0,0.0,9.090909090909092 -314,8.0,10.0,0.0,4.807692307692308 -314,9.0,5.0,0.0,1.8561002591115965 -314,9.0,8.0,0.0,9.090909090909092 -314,9.0,9.0,13.462042814524237,-41.3837606675224 -314,9.0,16.0,-3.956039125715353,10.317447719844054 -314,9.0,19.0,-1.7848303152666305,3.98535828943083 -314,9.0,20.0,-5.101853820159654,10.98071411292983 -314,9.0,21.0,-2.619319553382597,5.400770303329455 -314,10.0,8.0,0.0,4.807692307692308 -314,10.0,10.0,0.0,-4.807692307692308 -314,11.0,3.0,0.0,4.191255364806866 -314,11.0,11.0,6.573961583776156,-24.424167659260668 -314,11.0,12.0,0.0,7.142857142857143 -314,11.0,13.0,-1.5265676088395577,3.1734252729654173 -314,11.0,14.0,-3.0953961826564296,6.097275864326261 -314,11.0,15.0,-1.9519977922801688,4.104359379111847 -314,12.0,11.0,0.0,7.142857142857143 -314,12.0,12.0,0.0,-7.142857142857143 -314,13.0,11.0,-1.5265676088395577,3.1734252729654173 -314,13.0,13.0,4.01751987283902,-5.424299332335067 -314,13.0,14.0,-2.4909522639994623,2.250874059369649 -314,14.0,11.0,-3.0953961826564296,6.097275864326261 -314,14.0,13.0,-2.4909522639994623,2.250874059369649 -314,14.0,14.0,9.365498545964757,-16.01163373210796 -314,14.0,17.0,-1.8108011504072024,3.687418931630696 -314,14.0,22.0,-1.9683489489016612,3.976064876781356 -314,15.0,11.0,-1.9519977922801688,4.104359379111847 -314,15.0,15.0,3.271064728633931,-8.94513365126506 -314,15.0,16.0,-1.3190669363537617,4.8407742721532125 -314,16.0,9.0,-3.956039125715353,10.317447719844054 -314,16.0,15.0,-1.3190669363537617,4.8407742721532125 -314,16.0,16.0,5.275106062069114,-15.158221991997266 -314,17.0,14.0,-1.8108011504072024,3.687418931630696 -314,17.0,17.0,4.886487584415919,-9.906177730909668 -314,17.0,18.0,-3.0756864340087167,6.218758799278971 -314,18.0,17.0,-3.0756864340087167,6.218758799278971 -314,18.0,18.0,8.958039375185187,-17.98346468163191 -314,18.0,19.0,-5.88235294117647,11.76470588235294 -314,19.0,9.0,-1.7848303152666305,3.98535828943083 -314,19.0,18.0,-5.88235294117647,11.76470588235294 -314,19.0,19.0,7.6671832564431,-15.75006417178377 -314,20.0,9.0,-5.101853820159654,10.98071411292983 -314,20.0,20.0,21.876495189895888,-45.10843276170355 -314,20.0,21.0,-16.774641369736234,34.127718648773715 -314,21.0,9.0,-2.619319553382597,5.400770303329455 -314,21.0,20.0,-16.774641369736234,34.127718648773715 -314,21.0,21.0,21.93449907537439,-43.48289181517921 -314,21.0,23.0,-2.5405381522555563,3.95440286307604 -314,22.0,14.0,-1.9683489489016612,3.976064876781356 -314,22.0,22.0,3.429754555384988,-6.965303617315433 -314,22.0,23.0,-1.4614056064833263,2.989238740534077 -314,23.0,21.0,-2.5405381522555563,3.95440286307604 -314,23.0,22.0,-1.4614056064833263,2.989238740534077 -314,23.0,23.0,5.311836702613133,-9.188263657315172 -314,23.0,24.0,-1.3098929438742493,2.287622053705056 -314,24.0,23.0,-1.3098929438742493,2.287622053705056 -314,24.0,24.0,4.495715080321987,-7.864978761969621 -314,24.0,25.0,-1.2165301194494855,1.8171440463475024 -314,24.0,26.0,-1.9692920169982515,3.760212661917064 -314,25.0,24.0,-1.2165301194494855,1.8171440463475024 -314,25.0,25.0,1.2165301194494855,-1.8171440463475024 -314,26.0,24.0,-1.9692920169982515,3.760212661917064 -314,26.0,26.0,3.652281470778589,-9.46044252232512 -314,26.0,27.0,0.0,2.608731947574922 -314,26.0,28.0,-0.99553355095268,1.881005840357816 -314,26.0,29.0,-0.6874559028276572,1.293971494797717 -314,27.0,5.0,-4.362844058012917,15.463571542897856 -314,27.0,7.0,-1.4439790613954469,4.540814658476248 -314,27.0,26.0,0.0,2.608731947574922 -314,27.0,27.0,5.806823119408364,-22.67145722159613 -314,28.0,26.0,-0.99553355095268,1.881005840357816 -314,28.0,28.0,1.9075867579849564,-3.604364401207048 -314,28.0,29.0,-0.9120532070322764,1.7233585608492326 -314,29.0,26.0,-0.6874559028276572,1.293971494797717 -314,29.0,28.0,-0.9120532070322764,1.7233585608492326 -314,29.0,29.0,1.5995091098599337,-3.0173300556469496 -315,0.0,0.0,6.765516048652632,-21.23160167089863 -315,0.0,1.0,-5.224646179885656,15.646726840803398 -315,0.0,2.0,-1.5408698687669766,5.631674830095234 -315,1.0,0.0,-5.224646179885656,15.646726840803398 -315,1.0,1.0,9.75228216552403,-30.648662892676068 -315,1.0,3.0,-1.7055303166990268,5.1973792282565086 -315,1.0,4.0,-1.1359607881738778,4.772479328281356 -315,1.0,5.0,-1.6861448807654689,5.116477495334806 -315,2.0,0.0,-1.5408698687669766,5.631674830095234 -315,2.0,2.0,9.736318911079088,-29.13794745915803 -315,2.0,3.0,-8.19544904231211,23.5308726290628 -315,3.0,1.0,-1.7055303166990268,5.1973792282565086 -315,3.0,2.0,-8.19544904231211,23.5308726290628 -315,3.0,3.0,9.900979359011137,-33.202706969773025 -315,3.0,11.0,0.0,4.191255364806866 -315,4.0,1.0,-1.1359607881738778,4.772479328281356 -315,4.0,4.0,4.089980824135861,-12.190647245055052 -315,4.0,6.0,-2.954020035961983,7.449267916773697 -315,5.0,1.0,-1.6861448807654689,5.116477495334806 -315,5.0,5.0,15.928507538860009,-60.52244430029767 -315,5.0,6.0,-3.590210423980992,11.02611441072814 -315,5.0,7.0,-6.289308176100628,22.0125786163522 -315,5.0,8.0,0.0,4.915840805411357 -315,5.0,9.0,0.0,1.8561002591115965 -315,5.0,27.0,-4.362844058012917,15.463571542897856 -315,6.0,4.0,-2.954020035961983,7.449267916773697 -315,6.0,5.0,-3.590210423980992,11.02611441072814 -315,6.0,6.0,6.544230459942975,-18.45668232750184 -315,7.0,5.0,-6.289308176100628,22.0125786163522 -315,7.0,7.0,7.733287237496075,-26.527493274828448 -315,7.0,27.0,-1.4439790613954469,4.540814658476248 -315,8.0,5.0,0.0,4.915840805411357 -315,8.0,8.0,0.0,-18.706293706293707 -315,8.0,9.0,0.0,9.090909090909092 -315,8.0,10.0,0.0,4.807692307692308 -315,9.0,5.0,0.0,1.8561002591115965 -315,9.0,8.0,0.0,9.090909090909092 -315,9.0,9.0,13.462042814524237,-41.3837606675224 -315,9.0,16.0,-3.956039125715353,10.317447719844054 -315,9.0,19.0,-1.7848303152666305,3.98535828943083 -315,9.0,20.0,-5.101853820159654,10.98071411292983 -315,9.0,21.0,-2.619319553382597,5.400770303329455 -315,10.0,8.0,0.0,4.807692307692308 -315,10.0,10.0,0.0,-4.807692307692308 -315,11.0,3.0,0.0,4.191255364806866 -315,11.0,11.0,6.573961583776156,-24.424167659260668 -315,11.0,12.0,0.0,7.142857142857143 -315,11.0,13.0,-1.5265676088395577,3.1734252729654173 -315,11.0,14.0,-3.0953961826564296,6.097275864326261 -315,11.0,15.0,-1.9519977922801688,4.104359379111847 -315,12.0,11.0,0.0,7.142857142857143 -315,12.0,12.0,0.0,-7.142857142857143 -315,13.0,11.0,-1.5265676088395577,3.1734252729654173 -315,13.0,13.0,4.01751987283902,-5.424299332335067 -315,13.0,14.0,-2.4909522639994623,2.250874059369649 -315,14.0,11.0,-3.0953961826564296,6.097275864326261 -315,14.0,13.0,-2.4909522639994623,2.250874059369649 -315,14.0,14.0,9.365498545964757,-16.01163373210796 -315,14.0,17.0,-1.8108011504072024,3.687418931630696 -315,14.0,22.0,-1.9683489489016612,3.976064876781356 -315,15.0,11.0,-1.9519977922801688,4.104359379111847 -315,15.0,15.0,3.271064728633931,-8.94513365126506 -315,15.0,16.0,-1.3190669363537617,4.8407742721532125 -315,16.0,9.0,-3.956039125715353,10.317447719844054 -315,16.0,15.0,-1.3190669363537617,4.8407742721532125 -315,16.0,16.0,5.275106062069114,-15.158221991997266 -315,17.0,14.0,-1.8108011504072024,3.687418931630696 -315,17.0,17.0,4.886487584415919,-9.906177730909668 -315,17.0,18.0,-3.0756864340087167,6.218758799278971 -315,18.0,17.0,-3.0756864340087167,6.218758799278971 -315,18.0,18.0,8.958039375185187,-17.98346468163191 -315,18.0,19.0,-5.88235294117647,11.76470588235294 -315,19.0,9.0,-1.7848303152666305,3.98535828943083 -315,19.0,18.0,-5.88235294117647,11.76470588235294 -315,19.0,19.0,7.6671832564431,-15.75006417178377 -315,20.0,9.0,-5.101853820159654,10.98071411292983 -315,20.0,20.0,21.876495189895888,-45.10843276170355 -315,20.0,21.0,-16.774641369736234,34.127718648773715 -315,21.0,9.0,-2.619319553382597,5.400770303329455 -315,21.0,20.0,-16.774641369736234,34.127718648773715 -315,21.0,21.0,21.93449907537439,-43.48289181517921 -315,21.0,23.0,-2.5405381522555563,3.95440286307604 -315,22.0,14.0,-1.9683489489016612,3.976064876781356 -315,22.0,22.0,3.429754555384988,-6.965303617315433 -315,22.0,23.0,-1.4614056064833263,2.989238740534077 -315,23.0,21.0,-2.5405381522555563,3.95440286307604 -315,23.0,22.0,-1.4614056064833263,2.989238740534077 -315,23.0,23.0,5.311836702613133,-9.188263657315172 -315,23.0,24.0,-1.3098929438742493,2.287622053705056 -315,24.0,23.0,-1.3098929438742493,2.287622053705056 -315,24.0,24.0,4.495715080321987,-7.864978761969621 -315,24.0,25.0,-1.2165301194494855,1.8171440463475024 -315,24.0,26.0,-1.9692920169982515,3.760212661917064 -315,25.0,24.0,-1.2165301194494855,1.8171440463475024 -315,25.0,25.0,1.2165301194494855,-1.8171440463475024 -315,26.0,24.0,-1.9692920169982515,3.760212661917064 -315,26.0,26.0,2.9648255679509314,-8.166471027527404 -315,26.0,27.0,0.0,2.608731947574922 -315,26.0,28.0,-0.99553355095268,1.881005840357816 -315,27.0,5.0,-4.362844058012917,15.463571542897856 -315,27.0,7.0,-1.4439790613954469,4.540814658476248 -315,27.0,26.0,0.0,2.608731947574922 -315,27.0,27.0,5.806823119408364,-22.67145722159613 -315,28.0,26.0,-0.99553355095268,1.881005840357816 -315,28.0,28.0,1.9075867579849564,-3.604364401207048 -315,28.0,29.0,-0.9120532070322764,1.7233585608492326 -315,29.0,28.0,-0.9120532070322764,1.7233585608492326 -315,29.0,29.0,0.9120532070322764,-1.7233585608492326 -316,0.0,0.0,6.765516048652632,-21.23160167089863 -316,0.0,1.0,-5.224646179885656,15.646726840803398 -316,0.0,2.0,-1.5408698687669766,5.631674830095234 -316,1.0,0.0,-5.224646179885656,15.646726840803398 -316,1.0,1.0,9.75228216552403,-30.648662892676068 -316,1.0,3.0,-1.7055303166990268,5.1973792282565086 -316,1.0,4.0,-1.1359607881738778,4.772479328281356 -316,1.0,5.0,-1.6861448807654689,5.116477495334806 -316,2.0,0.0,-1.5408698687669766,5.631674830095234 -316,2.0,2.0,9.736318911079088,-29.13794745915803 -316,2.0,3.0,-8.19544904231211,23.5308726290628 -316,3.0,1.0,-1.7055303166990268,5.1973792282565086 -316,3.0,2.0,-8.19544904231211,23.5308726290628 -316,3.0,3.0,16.314103089185693,-55.509410535254254 -316,3.0,5.0,-6.413123730174556,22.31120356548123 -316,3.0,11.0,0.0,4.191255364806866 -316,4.0,1.0,-1.1359607881738778,4.772479328281356 -316,4.0,4.0,4.089980824135861,-12.190647245055052 -316,4.0,6.0,-2.954020035961983,7.449267916773697 -316,5.0,1.0,-1.6861448807654689,5.116477495334806 -316,5.0,3.0,-6.413123730174556,22.31120356548123 -316,5.0,5.0,22.341631269034565,-82.8291478657789 -316,5.0,6.0,-3.590210423980992,11.02611441072814 -316,5.0,7.0,-6.289308176100628,22.0125786163522 -316,5.0,8.0,0.0,4.915840805411357 -316,5.0,9.0,0.0,1.8561002591115965 -316,5.0,27.0,-4.362844058012917,15.463571542897856 -316,6.0,4.0,-2.954020035961983,7.449267916773697 -316,6.0,5.0,-3.590210423980992,11.02611441072814 -316,6.0,6.0,6.544230459942975,-18.45668232750184 -316,7.0,5.0,-6.289308176100628,22.0125786163522 -316,7.0,7.0,7.733287237496075,-26.527493274828448 -316,7.0,27.0,-1.4439790613954469,4.540814658476248 -316,8.0,5.0,0.0,4.915840805411357 -316,8.0,8.0,0.0,-18.706293706293707 -316,8.0,9.0,0.0,9.090909090909092 -316,8.0,10.0,0.0,4.807692307692308 -316,9.0,5.0,0.0,1.8561002591115965 -316,9.0,8.0,0.0,9.090909090909092 -316,9.0,9.0,13.462042814524237,-41.3837606675224 -316,9.0,16.0,-3.956039125715353,10.317447719844054 -316,9.0,19.0,-1.7848303152666305,3.98535828943083 -316,9.0,20.0,-5.101853820159654,10.98071411292983 -316,9.0,21.0,-2.619319553382597,5.400770303329455 -316,10.0,8.0,0.0,4.807692307692308 -316,10.0,10.0,0.0,-4.807692307692308 -316,11.0,3.0,0.0,4.191255364806866 -316,11.0,11.0,6.573961583776156,-24.424167659260668 -316,11.0,12.0,0.0,7.142857142857143 -316,11.0,13.0,-1.5265676088395577,3.1734252729654173 -316,11.0,14.0,-3.0953961826564296,6.097275864326261 -316,11.0,15.0,-1.9519977922801688,4.104359379111847 -316,12.0,11.0,0.0,7.142857142857143 -316,12.0,12.0,0.0,-7.142857142857143 -316,13.0,11.0,-1.5265676088395577,3.1734252729654173 -316,13.0,13.0,4.01751987283902,-5.424299332335067 -316,13.0,14.0,-2.4909522639994623,2.250874059369649 -316,14.0,11.0,-3.0953961826564296,6.097275864326261 -316,14.0,13.0,-2.4909522639994623,2.250874059369649 -316,14.0,14.0,9.365498545964757,-16.01163373210796 -316,14.0,17.0,-1.8108011504072024,3.687418931630696 -316,14.0,22.0,-1.9683489489016612,3.976064876781356 -316,15.0,11.0,-1.9519977922801688,4.104359379111847 -316,15.0,15.0,3.271064728633931,-8.94513365126506 -316,15.0,16.0,-1.3190669363537617,4.8407742721532125 -316,16.0,9.0,-3.956039125715353,10.317447719844054 -316,16.0,15.0,-1.3190669363537617,4.8407742721532125 -316,16.0,16.0,5.275106062069114,-15.158221991997266 -316,17.0,14.0,-1.8108011504072024,3.687418931630696 -316,17.0,17.0,4.886487584415919,-9.906177730909668 -316,17.0,18.0,-3.0756864340087167,6.218758799278971 -316,18.0,17.0,-3.0756864340087167,6.218758799278971 -316,18.0,18.0,8.958039375185187,-17.98346468163191 -316,18.0,19.0,-5.88235294117647,11.76470588235294 -316,19.0,9.0,-1.7848303152666305,3.98535828943083 -316,19.0,18.0,-5.88235294117647,11.76470588235294 -316,19.0,19.0,7.6671832564431,-15.75006417178377 -316,20.0,9.0,-5.101853820159654,10.98071411292983 -316,20.0,20.0,21.876495189895888,-45.10843276170355 -316,20.0,21.0,-16.774641369736234,34.127718648773715 -316,21.0,9.0,-2.619319553382597,5.400770303329455 -316,21.0,20.0,-16.774641369736234,34.127718648773715 -316,21.0,21.0,21.93449907537439,-43.48289181517921 -316,21.0,23.0,-2.5405381522555563,3.95440286307604 -316,22.0,14.0,-1.9683489489016612,3.976064876781356 -316,22.0,22.0,3.429754555384988,-6.965303617315433 -316,22.0,23.0,-1.4614056064833263,2.989238740534077 -316,23.0,21.0,-2.5405381522555563,3.95440286307604 -316,23.0,22.0,-1.4614056064833263,2.989238740534077 -316,23.0,23.0,5.311836702613133,-9.188263657315172 -316,23.0,24.0,-1.3098929438742493,2.287622053705056 -316,24.0,23.0,-1.3098929438742493,2.287622053705056 -316,24.0,24.0,4.495715080321987,-7.864978761969621 -316,24.0,25.0,-1.2165301194494855,1.8171440463475024 -316,24.0,26.0,-1.9692920169982515,3.760212661917064 -316,25.0,24.0,-1.2165301194494855,1.8171440463475024 -316,25.0,25.0,1.2165301194494855,-1.8171440463475024 -316,26.0,24.0,-1.9692920169982515,3.760212661917064 -316,26.0,26.0,3.652281470778589,-9.46044252232512 -316,26.0,27.0,0.0,2.608731947574922 -316,26.0,28.0,-0.99553355095268,1.881005840357816 -316,26.0,29.0,-0.6874559028276572,1.293971494797717 -316,27.0,5.0,-4.362844058012917,15.463571542897856 -316,27.0,7.0,-1.4439790613954469,4.540814658476248 -316,27.0,26.0,0.0,2.608731947574922 -316,27.0,27.0,5.806823119408364,-22.67145722159613 -316,28.0,26.0,-0.99553355095268,1.881005840357816 -316,28.0,28.0,1.9075867579849564,-3.604364401207048 -316,28.0,29.0,-0.9120532070322764,1.7233585608492326 -316,29.0,26.0,-0.6874559028276572,1.293971494797717 -316,29.0,28.0,-0.9120532070322764,1.7233585608492326 -316,29.0,29.0,1.5995091098599337,-3.0173300556469496 -317,0.0,0.0,6.765516048652632,-21.23160167089863 -317,0.0,1.0,-5.224646179885656,15.646726840803398 -317,0.0,2.0,-1.5408698687669766,5.631674830095234 -317,1.0,0.0,-5.224646179885656,15.646726840803398 -317,1.0,1.0,9.75228216552403,-30.648662892676068 -317,1.0,3.0,-1.7055303166990268,5.1973792282565086 -317,1.0,4.0,-1.1359607881738778,4.772479328281356 -317,1.0,5.0,-1.6861448807654689,5.116477495334806 -317,2.0,0.0,-1.5408698687669766,5.631674830095234 -317,2.0,2.0,9.736318911079088,-29.13794745915803 -317,2.0,3.0,-8.19544904231211,23.5308726290628 -317,3.0,1.0,-1.7055303166990268,5.1973792282565086 -317,3.0,2.0,-8.19544904231211,23.5308726290628 -317,3.0,3.0,16.314103089185693,-55.509410535254254 -317,3.0,5.0,-6.413123730174556,22.31120356548123 -317,3.0,11.0,0.0,4.191255364806866 -317,4.0,1.0,-1.1359607881738778,4.772479328281356 -317,4.0,4.0,4.089980824135861,-12.190647245055052 -317,4.0,6.0,-2.954020035961983,7.449267916773697 -317,5.0,1.0,-1.6861448807654689,5.116477495334806 -317,5.0,3.0,-6.413123730174556,22.31120356548123 -317,5.0,5.0,22.341631269034565,-82.8291478657789 -317,5.0,6.0,-3.590210423980992,11.02611441072814 -317,5.0,7.0,-6.289308176100628,22.0125786163522 -317,5.0,8.0,0.0,4.915840805411357 -317,5.0,9.0,0.0,1.8561002591115965 -317,5.0,27.0,-4.362844058012917,15.463571542897856 -317,6.0,4.0,-2.954020035961983,7.449267916773697 -317,6.0,5.0,-3.590210423980992,11.02611441072814 -317,6.0,6.0,6.544230459942975,-18.45668232750184 -317,7.0,5.0,-6.289308176100628,22.0125786163522 -317,7.0,7.0,7.733287237496075,-26.527493274828448 -317,7.0,27.0,-1.4439790613954469,4.540814658476248 -317,8.0,5.0,0.0,4.915840805411357 -317,8.0,8.0,0.0,-18.706293706293707 -317,8.0,9.0,0.0,9.090909090909092 -317,8.0,10.0,0.0,4.807692307692308 -317,9.0,5.0,0.0,1.8561002591115965 -317,9.0,8.0,0.0,9.090909090909092 -317,9.0,9.0,10.842723261141638,-35.98299036419294 -317,9.0,16.0,-3.956039125715353,10.317447719844054 -317,9.0,19.0,-1.7848303152666305,3.98535828943083 -317,9.0,20.0,-5.101853820159654,10.98071411292983 -317,10.0,8.0,0.0,4.807692307692308 -317,10.0,10.0,0.0,-4.807692307692308 -317,11.0,3.0,0.0,4.191255364806866 -317,11.0,11.0,6.573961583776156,-24.424167659260668 -317,11.0,12.0,0.0,7.142857142857143 -317,11.0,13.0,-1.5265676088395577,3.1734252729654173 -317,11.0,14.0,-3.0953961826564296,6.097275864326261 -317,11.0,15.0,-1.9519977922801688,4.104359379111847 -317,12.0,11.0,0.0,7.142857142857143 -317,12.0,12.0,0.0,-7.142857142857143 -317,13.0,11.0,-1.5265676088395577,3.1734252729654173 -317,13.0,13.0,4.01751987283902,-5.424299332335067 -317,13.0,14.0,-2.4909522639994623,2.250874059369649 -317,14.0,11.0,-3.0953961826564296,6.097275864326261 -317,14.0,13.0,-2.4909522639994623,2.250874059369649 -317,14.0,14.0,5.586348446655892,-8.34814992369591 -317,15.0,11.0,-1.9519977922801688,4.104359379111847 -317,15.0,15.0,3.271064728633931,-8.94513365126506 -317,15.0,16.0,-1.3190669363537617,4.8407742721532125 -317,16.0,9.0,-3.956039125715353,10.317447719844054 -317,16.0,15.0,-1.3190669363537617,4.8407742721532125 -317,16.0,16.0,5.275106062069114,-15.158221991997266 -317,17.0,17.0,3.0756864340087167,-6.218758799278971 -317,17.0,18.0,-3.0756864340087167,6.218758799278971 -317,18.0,17.0,-3.0756864340087167,6.218758799278971 -317,18.0,18.0,8.958039375185187,-17.98346468163191 -317,18.0,19.0,-5.88235294117647,11.76470588235294 -317,19.0,9.0,-1.7848303152666305,3.98535828943083 -317,19.0,18.0,-5.88235294117647,11.76470588235294 -317,19.0,19.0,7.6671832564431,-15.75006417178377 -317,20.0,9.0,-5.101853820159654,10.98071411292983 -317,20.0,20.0,21.876495189895888,-45.10843276170355 -317,20.0,21.0,-16.774641369736234,34.127718648773715 -317,21.0,20.0,-16.774641369736234,34.127718648773715 -317,21.0,21.0,19.31517952199179,-38.08212151184976 -317,21.0,23.0,-2.5405381522555563,3.95440286307604 -317,22.0,22.0,1.4614056064833263,-2.989238740534077 -317,22.0,23.0,-1.4614056064833263,2.989238740534077 -317,23.0,21.0,-2.5405381522555563,3.95440286307604 -317,23.0,22.0,-1.4614056064833263,2.989238740534077 -317,23.0,23.0,5.311836702613133,-9.188263657315172 -317,23.0,24.0,-1.3098929438742493,2.287622053705056 -317,24.0,23.0,-1.3098929438742493,2.287622053705056 -317,24.0,24.0,4.495715080321987,-7.864978761969621 -317,24.0,25.0,-1.2165301194494855,1.8171440463475024 -317,24.0,26.0,-1.9692920169982515,3.760212661917064 -317,25.0,24.0,-1.2165301194494855,1.8171440463475024 -317,25.0,25.0,1.2165301194494855,-1.8171440463475024 -317,26.0,24.0,-1.9692920169982515,3.760212661917064 -317,26.0,26.0,3.652281470778589,-9.46044252232512 -317,26.0,27.0,0.0,2.608731947574922 -317,26.0,28.0,-0.99553355095268,1.881005840357816 -317,26.0,29.0,-0.6874559028276572,1.293971494797717 -317,27.0,5.0,-4.362844058012917,15.463571542897856 -317,27.0,7.0,-1.4439790613954469,4.540814658476248 -317,27.0,26.0,0.0,2.608731947574922 -317,27.0,27.0,5.806823119408364,-22.67145722159613 -317,28.0,26.0,-0.99553355095268,1.881005840357816 -317,28.0,28.0,1.9075867579849564,-3.604364401207048 -317,28.0,29.0,-0.9120532070322764,1.7233585608492326 -317,29.0,26.0,-0.6874559028276572,1.293971494797717 -317,29.0,28.0,-0.9120532070322764,1.7233585608492326 -317,29.0,29.0,1.5995091098599337,-3.0173300556469496 -318,0.0,0.0,6.765516048652632,-21.23160167089863 -318,0.0,1.0,-5.224646179885656,15.646726840803398 -318,0.0,2.0,-1.5408698687669766,5.631674830095234 -318,1.0,0.0,-5.224646179885656,15.646726840803398 -318,1.0,1.0,9.75228216552403,-30.648662892676068 -318,1.0,3.0,-1.7055303166990268,5.1973792282565086 -318,1.0,4.0,-1.1359607881738778,4.772479328281356 -318,1.0,5.0,-1.6861448807654689,5.116477495334806 -318,2.0,0.0,-1.5408698687669766,5.631674830095234 -318,2.0,2.0,9.736318911079088,-29.13794745915803 -318,2.0,3.0,-8.19544904231211,23.5308726290628 -318,3.0,1.0,-1.7055303166990268,5.1973792282565086 -318,3.0,2.0,-8.19544904231211,23.5308726290628 -318,3.0,3.0,16.314103089185693,-55.509410535254254 -318,3.0,5.0,-6.413123730174556,22.31120356548123 -318,3.0,11.0,0.0,4.191255364806866 -318,4.0,1.0,-1.1359607881738778,4.772479328281356 -318,4.0,4.0,4.089980824135861,-12.190647245055052 -318,4.0,6.0,-2.954020035961983,7.449267916773697 -318,5.0,1.0,-1.6861448807654689,5.116477495334806 -318,5.0,3.0,-6.413123730174556,22.31120356548123 -318,5.0,5.0,22.341631269034565,-82.8291478657789 -318,5.0,6.0,-3.590210423980992,11.02611441072814 -318,5.0,7.0,-6.289308176100628,22.0125786163522 -318,5.0,8.0,0.0,4.915840805411357 -318,5.0,9.0,0.0,1.8561002591115965 -318,5.0,27.0,-4.362844058012917,15.463571542897856 -318,6.0,4.0,-2.954020035961983,7.449267916773697 -318,6.0,5.0,-3.590210423980992,11.02611441072814 -318,6.0,6.0,6.544230459942975,-18.45668232750184 -318,7.0,5.0,-6.289308176100628,22.0125786163522 -318,7.0,7.0,7.733287237496075,-26.527493274828448 -318,7.0,27.0,-1.4439790613954469,4.540814658476248 -318,8.0,5.0,0.0,4.915840805411357 -318,8.0,8.0,0.0,-18.706293706293707 -318,8.0,9.0,0.0,9.090909090909092 -318,8.0,10.0,0.0,4.807692307692308 -318,9.0,5.0,0.0,1.8561002591115965 -318,9.0,8.0,0.0,9.090909090909092 -318,9.0,9.0,9.506003688808882,-31.06631294767834 -318,9.0,19.0,-1.7848303152666305,3.98535828943083 -318,9.0,20.0,-5.101853820159654,10.98071411292983 -318,9.0,21.0,-2.619319553382597,5.400770303329455 -318,10.0,8.0,0.0,4.807692307692308 -318,10.0,10.0,0.0,-4.807692307692308 -318,11.0,3.0,0.0,4.191255364806866 -318,11.0,11.0,6.573961583776156,-24.424167659260668 -318,11.0,12.0,0.0,7.142857142857143 -318,11.0,13.0,-1.5265676088395577,3.1734252729654173 -318,11.0,14.0,-3.0953961826564296,6.097275864326261 -318,11.0,15.0,-1.9519977922801688,4.104359379111847 -318,12.0,11.0,0.0,7.142857142857143 -318,12.0,12.0,0.0,-7.142857142857143 -318,13.0,11.0,-1.5265676088395577,3.1734252729654173 -318,13.0,13.0,4.01751987283902,-5.424299332335067 -318,13.0,14.0,-2.4909522639994623,2.250874059369649 -318,14.0,11.0,-3.0953961826564296,6.097275864326261 -318,14.0,13.0,-2.4909522639994623,2.250874059369649 -318,14.0,14.0,9.365498545964757,-16.01163373210796 -318,14.0,17.0,-1.8108011504072024,3.687418931630696 -318,14.0,22.0,-1.9683489489016612,3.976064876781356 -318,15.0,11.0,-1.9519977922801688,4.104359379111847 -318,15.0,15.0,3.271064728633931,-8.94513365126506 -318,15.0,16.0,-1.3190669363537617,4.8407742721532125 -318,16.0,15.0,-1.3190669363537617,4.8407742721532125 -318,16.0,16.0,1.3190669363537617,-4.8407742721532125 -318,17.0,14.0,-1.8108011504072024,3.687418931630696 -318,17.0,17.0,4.886487584415919,-9.906177730909668 -318,17.0,18.0,-3.0756864340087167,6.218758799278971 -318,18.0,17.0,-3.0756864340087167,6.218758799278971 -318,18.0,18.0,8.958039375185187,-17.98346468163191 -318,18.0,19.0,-5.88235294117647,11.76470588235294 -318,19.0,9.0,-1.7848303152666305,3.98535828943083 -318,19.0,18.0,-5.88235294117647,11.76470588235294 -318,19.0,19.0,7.6671832564431,-15.75006417178377 -318,20.0,9.0,-5.101853820159654,10.98071411292983 -318,20.0,20.0,21.876495189895888,-45.10843276170355 -318,20.0,21.0,-16.774641369736234,34.127718648773715 -318,21.0,9.0,-2.619319553382597,5.400770303329455 -318,21.0,20.0,-16.774641369736234,34.127718648773715 -318,21.0,21.0,19.393960923118836,-39.52848895210317 -318,22.0,14.0,-1.9683489489016612,3.976064876781356 -318,22.0,22.0,3.429754555384988,-6.965303617315433 -318,22.0,23.0,-1.4614056064833263,2.989238740534077 -318,23.0,22.0,-1.4614056064833263,2.989238740534077 -318,23.0,23.0,2.771298550357576,-5.233860794239132 -318,23.0,24.0,-1.3098929438742493,2.287622053705056 -318,24.0,23.0,-1.3098929438742493,2.287622053705056 -318,24.0,24.0,4.495715080321987,-7.864978761969621 -318,24.0,25.0,-1.2165301194494855,1.8171440463475024 -318,24.0,26.0,-1.9692920169982515,3.760212661917064 -318,25.0,24.0,-1.2165301194494855,1.8171440463475024 -318,25.0,25.0,1.2165301194494855,-1.8171440463475024 -318,26.0,24.0,-1.9692920169982515,3.760212661917064 -318,26.0,26.0,3.652281470778589,-9.46044252232512 -318,26.0,27.0,0.0,2.608731947574922 -318,26.0,28.0,-0.99553355095268,1.881005840357816 -318,26.0,29.0,-0.6874559028276572,1.293971494797717 -318,27.0,5.0,-4.362844058012917,15.463571542897856 -318,27.0,7.0,-1.4439790613954469,4.540814658476248 -318,27.0,26.0,0.0,2.608731947574922 -318,27.0,27.0,5.806823119408364,-22.67145722159613 -318,28.0,26.0,-0.99553355095268,1.881005840357816 -318,28.0,28.0,1.9075867579849564,-3.604364401207048 -318,28.0,29.0,-0.9120532070322764,1.7233585608492326 -318,29.0,26.0,-0.6874559028276572,1.293971494797717 -318,29.0,28.0,-0.9120532070322764,1.7233585608492326 -318,29.0,29.0,1.5995091098599337,-3.0173300556469496 -319,0.0,0.0,6.765516048652632,-21.23160167089863 -319,0.0,1.0,-5.224646179885656,15.646726840803398 -319,0.0,2.0,-1.5408698687669766,5.631674830095234 -319,1.0,0.0,-5.224646179885656,15.646726840803398 -319,1.0,1.0,8.066137284758561,-25.55088539734126 -319,1.0,3.0,-1.7055303166990268,5.1973792282565086 -319,1.0,4.0,-1.1359607881738778,4.772479328281356 -319,2.0,0.0,-1.5408698687669766,5.631674830095234 -319,2.0,2.0,9.736318911079088,-29.13794745915803 -319,2.0,3.0,-8.19544904231211,23.5308726290628 -319,3.0,1.0,-1.7055303166990268,5.1973792282565086 -319,3.0,2.0,-8.19544904231211,23.5308726290628 -319,3.0,3.0,16.314103089185693,-51.01235542280054 -319,3.0,5.0,-6.413123730174556,22.31120356548123 -319,4.0,1.0,-1.1359607881738778,4.772479328281356 -319,4.0,4.0,4.089980824135861,-12.190647245055052 -319,4.0,6.0,-2.954020035961983,7.449267916773697 -319,5.0,3.0,-6.413123730174556,22.31120356548123 -319,5.0,5.0,17.0652759642881,-66.71375595971597 -319,5.0,7.0,-6.289308176100628,22.0125786163522 -319,5.0,8.0,0.0,4.915840805411357 -319,5.0,9.0,0.0,1.8561002591115965 -319,5.0,27.0,-4.362844058012917,15.463571542897856 -319,6.0,4.0,-2.954020035961983,7.449267916773697 -319,6.0,6.0,2.954020035961983,-7.439067916773697 -319,7.0,5.0,-6.289308176100628,22.0125786163522 -319,7.0,7.0,6.289308176100628,-22.0080786163522 -319,8.0,5.0,0.0,4.915840805411357 -319,8.0,8.0,0.0,-18.706293706293707 -319,8.0,9.0,0.0,9.090909090909092 -319,8.0,10.0,0.0,4.807692307692308 -319,9.0,5.0,0.0,1.8561002591115965 -319,9.0,8.0,0.0,9.090909090909092 -319,9.0,9.0,13.462042814524237,-41.3837606675224 -319,9.0,16.0,-3.956039125715353,10.317447719844054 -319,9.0,19.0,-1.7848303152666305,3.98535828943083 -319,9.0,20.0,-5.101853820159654,10.98071411292983 -319,9.0,21.0,-2.619319553382597,5.400770303329455 -319,10.0,8.0,0.0,4.807692307692308 -319,10.0,10.0,0.0,-4.807692307692308 -319,11.0,11.0,6.573961583776156,-20.517917659260668 -319,11.0,12.0,0.0,7.142857142857143 -319,11.0,13.0,-1.5265676088395577,3.1734252729654173 -319,11.0,14.0,-3.0953961826564296,6.097275864326261 -319,11.0,15.0,-1.9519977922801688,4.104359379111847 -319,12.0,11.0,0.0,7.142857142857143 -319,12.0,12.0,0.0,-7.142857142857143 -319,13.0,11.0,-1.5265676088395577,3.1734252729654173 -319,13.0,13.0,4.01751987283902,-5.424299332335067 -319,13.0,14.0,-2.4909522639994623,2.250874059369649 -319,14.0,11.0,-3.0953961826564296,6.097275864326261 -319,14.0,13.0,-2.4909522639994623,2.250874059369649 -319,14.0,14.0,9.365498545964757,-16.01163373210796 -319,14.0,17.0,-1.8108011504072024,3.687418931630696 -319,14.0,22.0,-1.9683489489016612,3.976064876781356 -319,15.0,11.0,-1.9519977922801688,4.104359379111847 -319,15.0,15.0,3.271064728633931,-8.94513365126506 -319,15.0,16.0,-1.3190669363537617,4.8407742721532125 -319,16.0,9.0,-3.956039125715353,10.317447719844054 -319,16.0,15.0,-1.3190669363537617,4.8407742721532125 -319,16.0,16.0,5.275106062069114,-15.158221991997266 -319,17.0,14.0,-1.8108011504072024,3.687418931630696 -319,17.0,17.0,4.886487584415919,-9.906177730909668 -319,17.0,18.0,-3.0756864340087167,6.218758799278971 -319,18.0,17.0,-3.0756864340087167,6.218758799278971 -319,18.0,18.0,3.0756864340087167,-6.218758799278971 -319,19.0,9.0,-1.7848303152666305,3.98535828943083 -319,19.0,19.0,1.7848303152666305,-3.98535828943083 -319,20.0,9.0,-5.101853820159654,10.98071411292983 -319,20.0,20.0,21.876495189895888,-45.10843276170355 -319,20.0,21.0,-16.774641369736234,34.127718648773715 -319,21.0,9.0,-2.619319553382597,5.400770303329455 -319,21.0,20.0,-16.774641369736234,34.127718648773715 -319,21.0,21.0,21.93449907537439,-43.48289181517921 -319,21.0,23.0,-2.5405381522555563,3.95440286307604 -319,22.0,14.0,-1.9683489489016612,3.976064876781356 -319,22.0,22.0,3.429754555384988,-6.965303617315433 -319,22.0,23.0,-1.4614056064833263,2.989238740534077 -319,23.0,21.0,-2.5405381522555563,3.95440286307604 -319,23.0,22.0,-1.4614056064833263,2.989238740534077 -319,23.0,23.0,5.311836702613133,-9.188263657315172 -319,23.0,24.0,-1.3098929438742493,2.287622053705056 -319,24.0,23.0,-1.3098929438742493,2.287622053705056 -319,24.0,24.0,4.495715080321987,-7.864978761969621 -319,24.0,25.0,-1.2165301194494855,1.8171440463475024 -319,24.0,26.0,-1.9692920169982515,3.760212661917064 -319,25.0,24.0,-1.2165301194494855,1.8171440463475024 -319,25.0,25.0,1.2165301194494855,-1.8171440463475024 -319,26.0,24.0,-1.9692920169982515,3.760212661917064 -319,26.0,26.0,3.652281470778589,-9.46044252232512 -319,26.0,27.0,0.0,2.608731947574922 -319,26.0,28.0,-0.99553355095268,1.881005840357816 -319,26.0,29.0,-0.6874559028276572,1.293971494797717 -319,27.0,5.0,-4.362844058012917,15.463571542897856 -319,27.0,26.0,0.0,2.608731947574922 -319,27.0,27.0,4.362844058012917,-18.15204256311988 -319,28.0,26.0,-0.99553355095268,1.881005840357816 -319,28.0,28.0,0.99553355095268,-1.881005840357816 -319,29.0,26.0,-0.6874559028276572,1.293971494797717 -319,29.0,29.0,0.6874559028276572,-1.293971494797717 -320,0.0,0.0,6.765516048652632,-21.23160167089863 -320,0.0,1.0,-5.224646179885656,15.646726840803398 -320,0.0,2.0,-1.5408698687669766,5.631674830095234 -320,1.0,0.0,-5.224646179885656,15.646726840803398 -320,1.0,1.0,9.75228216552403,-30.648662892676068 -320,1.0,3.0,-1.7055303166990268,5.1973792282565086 -320,1.0,4.0,-1.1359607881738778,4.772479328281356 -320,1.0,5.0,-1.6861448807654689,5.116477495334806 -320,2.0,0.0,-1.5408698687669766,5.631674830095234 -320,2.0,2.0,9.736318911079088,-29.13794745915803 -320,2.0,3.0,-8.19544904231211,23.5308726290628 -320,3.0,1.0,-1.7055303166990268,5.1973792282565086 -320,3.0,2.0,-8.19544904231211,23.5308726290628 -320,3.0,3.0,16.314103089185693,-55.509410535254254 -320,3.0,5.0,-6.413123730174556,22.31120356548123 -320,3.0,11.0,0.0,4.191255364806866 -320,4.0,1.0,-1.1359607881738778,4.772479328281356 -320,4.0,4.0,4.089980824135861,-12.190647245055052 -320,4.0,6.0,-2.954020035961983,7.449267916773697 -320,5.0,1.0,-1.6861448807654689,5.116477495334806 -320,5.0,3.0,-6.413123730174556,22.31120356548123 -320,5.0,5.0,22.341631269034565,-82.8291478657789 -320,5.0,6.0,-3.590210423980992,11.02611441072814 -320,5.0,7.0,-6.289308176100628,22.0125786163522 -320,5.0,8.0,0.0,4.915840805411357 -320,5.0,9.0,0.0,1.8561002591115965 -320,5.0,27.0,-4.362844058012917,15.463571542897856 -320,6.0,4.0,-2.954020035961983,7.449267916773697 -320,6.0,5.0,-3.590210423980992,11.02611441072814 -320,6.0,6.0,6.544230459942975,-18.45668232750184 -320,7.0,5.0,-6.289308176100628,22.0125786163522 -320,7.0,7.0,7.733287237496075,-26.527493274828448 -320,7.0,27.0,-1.4439790613954469,4.540814658476248 -320,8.0,5.0,0.0,4.915840805411357 -320,8.0,8.0,0.0,-18.706293706293707 -320,8.0,9.0,0.0,9.090909090909092 -320,8.0,10.0,0.0,4.807692307692308 -320,9.0,5.0,0.0,1.8561002591115965 -320,9.0,8.0,0.0,9.090909090909092 -320,9.0,9.0,13.462042814524237,-41.3837606675224 -320,9.0,16.0,-3.956039125715353,10.317447719844054 -320,9.0,19.0,-1.7848303152666305,3.98535828943083 -320,9.0,20.0,-5.101853820159654,10.98071411292983 -320,9.0,21.0,-2.619319553382597,5.400770303329455 -320,10.0,8.0,0.0,4.807692307692308 -320,10.0,10.0,0.0,-4.807692307692308 -320,11.0,3.0,0.0,4.191255364806866 -320,11.0,11.0,6.573961583776156,-24.424167659260668 -320,11.0,12.0,0.0,7.142857142857143 -320,11.0,13.0,-1.5265676088395577,3.1734252729654173 -320,11.0,14.0,-3.0953961826564296,6.097275864326261 -320,11.0,15.0,-1.9519977922801688,4.104359379111847 -320,12.0,11.0,0.0,7.142857142857143 -320,12.0,12.0,0.0,-7.142857142857143 -320,13.0,11.0,-1.5265676088395577,3.1734252729654173 -320,13.0,13.0,4.01751987283902,-5.424299332335067 -320,13.0,14.0,-2.4909522639994623,2.250874059369649 -320,14.0,11.0,-3.0953961826564296,6.097275864326261 -320,14.0,13.0,-2.4909522639994623,2.250874059369649 -320,14.0,14.0,9.365498545964757,-16.01163373210796 -320,14.0,17.0,-1.8108011504072024,3.687418931630696 -320,14.0,22.0,-1.9683489489016612,3.976064876781356 -320,15.0,11.0,-1.9519977922801688,4.104359379111847 -320,15.0,15.0,3.271064728633931,-8.94513365126506 -320,15.0,16.0,-1.3190669363537617,4.8407742721532125 -320,16.0,9.0,-3.956039125715353,10.317447719844054 -320,16.0,15.0,-1.3190669363537617,4.8407742721532125 -320,16.0,16.0,5.275106062069114,-15.158221991997266 -320,17.0,14.0,-1.8108011504072024,3.687418931630696 -320,17.0,17.0,4.886487584415919,-9.906177730909668 -320,17.0,18.0,-3.0756864340087167,6.218758799278971 -320,18.0,17.0,-3.0756864340087167,6.218758799278971 -320,18.0,18.0,8.958039375185187,-17.98346468163191 -320,18.0,19.0,-5.88235294117647,11.76470588235294 -320,19.0,9.0,-1.7848303152666305,3.98535828943083 -320,19.0,18.0,-5.88235294117647,11.76470588235294 -320,19.0,19.0,7.6671832564431,-15.75006417178377 -320,20.0,9.0,-5.101853820159654,10.98071411292983 -320,20.0,20.0,21.876495189895888,-45.10843276170355 -320,20.0,21.0,-16.774641369736234,34.127718648773715 -320,21.0,9.0,-2.619319553382597,5.400770303329455 -320,21.0,20.0,-16.774641369736234,34.127718648773715 -320,21.0,21.0,21.93449907537439,-43.48289181517921 -320,21.0,23.0,-2.5405381522555563,3.95440286307604 -320,22.0,14.0,-1.9683489489016612,3.976064876781356 -320,22.0,22.0,3.429754555384988,-6.965303617315433 -320,22.0,23.0,-1.4614056064833263,2.989238740534077 -320,23.0,21.0,-2.5405381522555563,3.95440286307604 -320,23.0,22.0,-1.4614056064833263,2.989238740534077 -320,23.0,23.0,5.311836702613133,-9.188263657315172 -320,23.0,24.0,-1.3098929438742493,2.287622053705056 -320,24.0,23.0,-1.3098929438742493,2.287622053705056 -320,24.0,24.0,4.495715080321987,-7.864978761969621 -320,24.0,25.0,-1.2165301194494855,1.8171440463475024 -320,24.0,26.0,-1.9692920169982515,3.760212661917064 -320,25.0,24.0,-1.2165301194494855,1.8171440463475024 -320,25.0,25.0,1.2165301194494855,-1.8171440463475024 -320,26.0,24.0,-1.9692920169982515,3.760212661917064 -320,26.0,26.0,3.652281470778589,-9.46044252232512 -320,26.0,27.0,0.0,2.608731947574922 -320,26.0,28.0,-0.99553355095268,1.881005840357816 -320,26.0,29.0,-0.6874559028276572,1.293971494797717 -320,27.0,5.0,-4.362844058012917,15.463571542897856 -320,27.0,7.0,-1.4439790613954469,4.540814658476248 -320,27.0,26.0,0.0,2.608731947574922 -320,27.0,27.0,5.806823119408364,-22.67145722159613 -320,28.0,26.0,-0.99553355095268,1.881005840357816 -320,28.0,28.0,1.9075867579849564,-3.604364401207048 -320,28.0,29.0,-0.9120532070322764,1.7233585608492326 -320,29.0,26.0,-0.6874559028276572,1.293971494797717 -320,29.0,28.0,-0.9120532070322764,1.7233585608492326 -320,29.0,29.0,1.5995091098599337,-3.0173300556469496 -321,0.0,0.0,6.765516048652632,-21.23160167089863 -321,0.0,1.0,-5.224646179885656,15.646726840803398 -321,0.0,2.0,-1.5408698687669766,5.631674830095234 -321,1.0,0.0,-5.224646179885656,15.646726840803398 -321,1.0,1.0,9.75228216552403,-30.648662892676068 -321,1.0,3.0,-1.7055303166990268,5.1973792282565086 -321,1.0,4.0,-1.1359607881738778,4.772479328281356 -321,1.0,5.0,-1.6861448807654689,5.116477495334806 -321,2.0,0.0,-1.5408698687669766,5.631674830095234 -321,2.0,2.0,9.736318911079088,-29.13794745915803 -321,2.0,3.0,-8.19544904231211,23.5308726290628 -321,3.0,1.0,-1.7055303166990268,5.1973792282565086 -321,3.0,2.0,-8.19544904231211,23.5308726290628 -321,3.0,3.0,16.314103089185693,-55.509410535254254 -321,3.0,5.0,-6.413123730174556,22.31120356548123 -321,3.0,11.0,0.0,4.191255364806866 -321,4.0,1.0,-1.1359607881738778,4.772479328281356 -321,4.0,4.0,4.089980824135861,-12.190647245055052 -321,4.0,6.0,-2.954020035961983,7.449267916773697 -321,5.0,1.0,-1.6861448807654689,5.116477495334806 -321,5.0,3.0,-6.413123730174556,22.31120356548123 -321,5.0,5.0,22.341631269034565,-82.8291478657789 -321,5.0,6.0,-3.590210423980992,11.02611441072814 -321,5.0,7.0,-6.289308176100628,22.0125786163522 -321,5.0,8.0,0.0,4.915840805411357 -321,5.0,9.0,0.0,1.8561002591115965 -321,5.0,27.0,-4.362844058012917,15.463571542897856 -321,6.0,4.0,-2.954020035961983,7.449267916773697 -321,6.0,5.0,-3.590210423980992,11.02611441072814 -321,6.0,6.0,6.544230459942975,-18.45668232750184 -321,7.0,5.0,-6.289308176100628,22.0125786163522 -321,7.0,7.0,7.733287237496075,-26.527493274828448 -321,7.0,27.0,-1.4439790613954469,4.540814658476248 -321,8.0,5.0,0.0,4.915840805411357 -321,8.0,8.0,0.0,-18.706293706293707 -321,8.0,9.0,0.0,9.090909090909092 -321,8.0,10.0,0.0,4.807692307692308 -321,9.0,5.0,0.0,1.8561002591115965 -321,9.0,8.0,0.0,9.090909090909092 -321,9.0,9.0,13.462042814524237,-41.3837606675224 -321,9.0,16.0,-3.956039125715353,10.317447719844054 -321,9.0,19.0,-1.7848303152666305,3.98535828943083 -321,9.0,20.0,-5.101853820159654,10.98071411292983 -321,9.0,21.0,-2.619319553382597,5.400770303329455 -321,10.0,8.0,0.0,4.807692307692308 -321,10.0,10.0,0.0,-4.807692307692308 -321,11.0,3.0,0.0,4.191255364806866 -321,11.0,11.0,3.478565401119727,-18.326891794934408 -321,11.0,12.0,0.0,7.142857142857143 -321,11.0,13.0,-1.5265676088395577,3.1734252729654173 -321,11.0,15.0,-1.9519977922801688,4.104359379111847 -321,12.0,11.0,0.0,7.142857142857143 -321,12.0,12.0,0.0,-7.142857142857143 -321,13.0,11.0,-1.5265676088395577,3.1734252729654173 -321,13.0,13.0,4.01751987283902,-5.424299332335067 -321,13.0,14.0,-2.4909522639994623,2.250874059369649 -321,14.0,13.0,-2.4909522639994623,2.250874059369649 -321,14.0,14.0,6.270102363308326,-9.9143578677817 -321,14.0,17.0,-1.8108011504072024,3.687418931630696 -321,14.0,22.0,-1.9683489489016612,3.976064876781356 -321,15.0,11.0,-1.9519977922801688,4.104359379111847 -321,15.0,15.0,3.271064728633931,-8.94513365126506 -321,15.0,16.0,-1.3190669363537617,4.8407742721532125 -321,16.0,9.0,-3.956039125715353,10.317447719844054 -321,16.0,15.0,-1.3190669363537617,4.8407742721532125 -321,16.0,16.0,5.275106062069114,-15.158221991997266 -321,17.0,14.0,-1.8108011504072024,3.687418931630696 -321,17.0,17.0,4.886487584415919,-9.906177730909668 -321,17.0,18.0,-3.0756864340087167,6.218758799278971 -321,18.0,17.0,-3.0756864340087167,6.218758799278971 -321,18.0,18.0,8.958039375185187,-17.98346468163191 -321,18.0,19.0,-5.88235294117647,11.76470588235294 -321,19.0,9.0,-1.7848303152666305,3.98535828943083 -321,19.0,18.0,-5.88235294117647,11.76470588235294 -321,19.0,19.0,7.6671832564431,-15.75006417178377 -321,20.0,9.0,-5.101853820159654,10.98071411292983 -321,20.0,20.0,21.876495189895888,-45.10843276170355 -321,20.0,21.0,-16.774641369736234,34.127718648773715 -321,21.0,9.0,-2.619319553382597,5.400770303329455 -321,21.0,20.0,-16.774641369736234,34.127718648773715 -321,21.0,21.0,21.93449907537439,-43.48289181517921 -321,21.0,23.0,-2.5405381522555563,3.95440286307604 -321,22.0,14.0,-1.9683489489016612,3.976064876781356 -321,22.0,22.0,3.429754555384988,-6.965303617315433 -321,22.0,23.0,-1.4614056064833263,2.989238740534077 -321,23.0,21.0,-2.5405381522555563,3.95440286307604 -321,23.0,22.0,-1.4614056064833263,2.989238740534077 -321,23.0,23.0,5.311836702613133,-9.188263657315172 -321,23.0,24.0,-1.3098929438742493,2.287622053705056 -321,24.0,23.0,-1.3098929438742493,2.287622053705056 -321,24.0,24.0,4.495715080321987,-7.864978761969621 -321,24.0,25.0,-1.2165301194494855,1.8171440463475024 -321,24.0,26.0,-1.9692920169982515,3.760212661917064 -321,25.0,24.0,-1.2165301194494855,1.8171440463475024 -321,25.0,25.0,1.2165301194494855,-1.8171440463475024 -321,26.0,24.0,-1.9692920169982515,3.760212661917064 -321,26.0,26.0,3.652281470778589,-9.46044252232512 -321,26.0,27.0,0.0,2.608731947574922 -321,26.0,28.0,-0.99553355095268,1.881005840357816 -321,26.0,29.0,-0.6874559028276572,1.293971494797717 -321,27.0,5.0,-4.362844058012917,15.463571542897856 -321,27.0,7.0,-1.4439790613954469,4.540814658476248 -321,27.0,26.0,0.0,2.608731947574922 -321,27.0,27.0,5.806823119408364,-22.67145722159613 -321,28.0,26.0,-0.99553355095268,1.881005840357816 -321,28.0,28.0,1.9075867579849564,-3.604364401207048 -321,28.0,29.0,-0.9120532070322764,1.7233585608492326 -321,29.0,26.0,-0.6874559028276572,1.293971494797717 -321,29.0,28.0,-0.9120532070322764,1.7233585608492326 -321,29.0,29.0,1.5995091098599337,-3.0173300556469496 -322,0.0,0.0,6.765516048652632,-21.23160167089863 -322,0.0,1.0,-5.224646179885656,15.646726840803398 -322,0.0,2.0,-1.5408698687669766,5.631674830095234 -322,1.0,0.0,-5.224646179885656,15.646726840803398 -322,1.0,1.0,8.046751848825002,-25.46968366441956 -322,1.0,4.0,-1.1359607881738778,4.772479328281356 -322,1.0,5.0,-1.6861448807654689,5.116477495334806 -322,2.0,0.0,-1.5408698687669766,5.631674830095234 -322,2.0,2.0,9.736318911079088,-29.13794745915803 -322,2.0,3.0,-8.19544904231211,23.5308726290628 -322,3.0,2.0,-8.19544904231211,23.5308726290628 -322,3.0,3.0,14.608572772486664,-50.33043130699775 -322,3.0,5.0,-6.413123730174556,22.31120356548123 -322,3.0,11.0,0.0,4.191255364806866 -322,4.0,1.0,-1.1359607881738778,4.772479328281356 -322,4.0,4.0,4.089980824135861,-12.190647245055052 -322,4.0,6.0,-2.954020035961983,7.449267916773697 -322,5.0,1.0,-1.6861448807654689,5.116477495334806 -322,5.0,3.0,-6.413123730174556,22.31120356548123 -322,5.0,5.0,22.341631269034565,-82.8291478657789 -322,5.0,6.0,-3.590210423980992,11.02611441072814 -322,5.0,7.0,-6.289308176100628,22.0125786163522 -322,5.0,8.0,0.0,4.915840805411357 -322,5.0,9.0,0.0,1.8561002591115965 -322,5.0,27.0,-4.362844058012917,15.463571542897856 -322,6.0,4.0,-2.954020035961983,7.449267916773697 -322,6.0,5.0,-3.590210423980992,11.02611441072814 -322,6.0,6.0,6.544230459942975,-18.45668232750184 -322,7.0,5.0,-6.289308176100628,22.0125786163522 -322,7.0,7.0,7.733287237496075,-26.527493274828448 -322,7.0,27.0,-1.4439790613954469,4.540814658476248 -322,8.0,5.0,0.0,4.915840805411357 -322,8.0,8.0,0.0,-9.615384615384617 -322,8.0,10.0,0.0,4.807692307692308 -322,9.0,5.0,0.0,1.8561002591115965 -322,9.0,9.0,13.462042814524237,-32.29285157661331 -322,9.0,16.0,-3.956039125715353,10.317447719844054 -322,9.0,19.0,-1.7848303152666305,3.98535828943083 -322,9.0,20.0,-5.101853820159654,10.98071411292983 -322,9.0,21.0,-2.619319553382597,5.400770303329455 -322,10.0,8.0,0.0,4.807692307692308 -322,10.0,10.0,0.0,-4.807692307692308 -322,11.0,3.0,0.0,4.191255364806866 -322,11.0,11.0,6.573961583776156,-24.424167659260668 -322,11.0,12.0,0.0,7.142857142857143 -322,11.0,13.0,-1.5265676088395577,3.1734252729654173 -322,11.0,14.0,-3.0953961826564296,6.097275864326261 -322,11.0,15.0,-1.9519977922801688,4.104359379111847 -322,12.0,11.0,0.0,7.142857142857143 -322,12.0,12.0,0.0,-7.142857142857143 -322,13.0,11.0,-1.5265676088395577,3.1734252729654173 -322,13.0,13.0,4.01751987283902,-5.424299332335067 -322,13.0,14.0,-2.4909522639994623,2.250874059369649 -322,14.0,11.0,-3.0953961826564296,6.097275864326261 -322,14.0,13.0,-2.4909522639994623,2.250874059369649 -322,14.0,14.0,9.365498545964757,-16.01163373210796 -322,14.0,17.0,-1.8108011504072024,3.687418931630696 -322,14.0,22.0,-1.9683489489016612,3.976064876781356 -322,15.0,11.0,-1.9519977922801688,4.104359379111847 -322,15.0,15.0,3.271064728633931,-8.94513365126506 -322,15.0,16.0,-1.3190669363537617,4.8407742721532125 -322,16.0,9.0,-3.956039125715353,10.317447719844054 -322,16.0,15.0,-1.3190669363537617,4.8407742721532125 -322,16.0,16.0,5.275106062069114,-15.158221991997266 -322,17.0,14.0,-1.8108011504072024,3.687418931630696 -322,17.0,17.0,4.886487584415919,-9.906177730909668 -322,17.0,18.0,-3.0756864340087167,6.218758799278971 -322,18.0,17.0,-3.0756864340087167,6.218758799278971 -322,18.0,18.0,8.958039375185187,-17.98346468163191 -322,18.0,19.0,-5.88235294117647,11.76470588235294 -322,19.0,9.0,-1.7848303152666305,3.98535828943083 -322,19.0,18.0,-5.88235294117647,11.76470588235294 -322,19.0,19.0,7.6671832564431,-15.75006417178377 -322,20.0,9.0,-5.101853820159654,10.98071411292983 -322,20.0,20.0,21.876495189895888,-45.10843276170355 -322,20.0,21.0,-16.774641369736234,34.127718648773715 -322,21.0,9.0,-2.619319553382597,5.400770303329455 -322,21.0,20.0,-16.774641369736234,34.127718648773715 -322,21.0,21.0,21.93449907537439,-43.48289181517921 -322,21.0,23.0,-2.5405381522555563,3.95440286307604 -322,22.0,14.0,-1.9683489489016612,3.976064876781356 -322,22.0,22.0,3.429754555384988,-6.965303617315433 -322,22.0,23.0,-1.4614056064833263,2.989238740534077 -322,23.0,21.0,-2.5405381522555563,3.95440286307604 -322,23.0,22.0,-1.4614056064833263,2.989238740534077 -322,23.0,23.0,5.311836702613133,-9.188263657315172 -322,23.0,24.0,-1.3098929438742493,2.287622053705056 -322,24.0,23.0,-1.3098929438742493,2.287622053705056 -322,24.0,24.0,4.495715080321987,-7.864978761969621 -322,24.0,25.0,-1.2165301194494855,1.8171440463475024 -322,24.0,26.0,-1.9692920169982515,3.760212661917064 -322,25.0,24.0,-1.2165301194494855,1.8171440463475024 -322,25.0,25.0,1.2165301194494855,-1.8171440463475024 -322,26.0,24.0,-1.9692920169982515,3.760212661917064 -322,26.0,26.0,3.652281470778589,-9.46044252232512 -322,26.0,27.0,0.0,2.608731947574922 -322,26.0,28.0,-0.99553355095268,1.881005840357816 -322,26.0,29.0,-0.6874559028276572,1.293971494797717 -322,27.0,5.0,-4.362844058012917,15.463571542897856 -322,27.0,7.0,-1.4439790613954469,4.540814658476248 -322,27.0,26.0,0.0,2.608731947574922 -322,27.0,27.0,5.806823119408364,-22.67145722159613 -322,28.0,26.0,-0.99553355095268,1.881005840357816 -322,28.0,28.0,1.9075867579849564,-3.604364401207048 -322,28.0,29.0,-0.9120532070322764,1.7233585608492326 -322,29.0,26.0,-0.6874559028276572,1.293971494797717 -322,29.0,28.0,-0.9120532070322764,1.7233585608492326 -322,29.0,29.0,1.5995091098599337,-3.0173300556469496 -323,0.0,0.0,6.765516048652632,-21.23160167089863 -323,0.0,1.0,-5.224646179885656,15.646726840803398 -323,0.0,2.0,-1.5408698687669766,5.631674830095234 -323,1.0,0.0,-5.224646179885656,15.646726840803398 -323,1.0,1.0,8.046751848825002,-25.46968366441956 -323,1.0,4.0,-1.1359607881738778,4.772479328281356 -323,1.0,5.0,-1.6861448807654689,5.116477495334806 -323,2.0,0.0,-1.5408698687669766,5.631674830095234 -323,2.0,2.0,9.736318911079088,-29.13794745915803 -323,2.0,3.0,-8.19544904231211,23.5308726290628 -323,3.0,2.0,-8.19544904231211,23.5308726290628 -323,3.0,3.0,8.19544904231211,-28.02372774151652 -323,3.0,11.0,0.0,4.191255364806866 -323,4.0,1.0,-1.1359607881738778,4.772479328281356 -323,4.0,4.0,4.089980824135861,-12.190647245055052 -323,4.0,6.0,-2.954020035961983,7.449267916773697 -323,5.0,1.0,-1.6861448807654689,5.116477495334806 -323,5.0,5.0,15.928507538860009,-60.52244430029767 -323,5.0,6.0,-3.590210423980992,11.02611441072814 -323,5.0,7.0,-6.289308176100628,22.0125786163522 -323,5.0,8.0,0.0,4.915840805411357 -323,5.0,9.0,0.0,1.8561002591115965 -323,5.0,27.0,-4.362844058012917,15.463571542897856 -323,6.0,4.0,-2.954020035961983,7.449267916773697 -323,6.0,5.0,-3.590210423980992,11.02611441072814 -323,6.0,6.0,6.544230459942975,-18.45668232750184 -323,7.0,5.0,-6.289308176100628,22.0125786163522 -323,7.0,7.0,7.733287237496075,-26.527493274828448 -323,7.0,27.0,-1.4439790613954469,4.540814658476248 -323,8.0,5.0,0.0,4.915840805411357 -323,8.0,8.0,0.0,-18.706293706293707 -323,8.0,9.0,0.0,9.090909090909092 -323,8.0,10.0,0.0,4.807692307692308 -323,9.0,5.0,0.0,1.8561002591115965 -323,9.0,8.0,0.0,9.090909090909092 -323,9.0,9.0,9.506003688808882,-31.06631294767834 -323,9.0,19.0,-1.7848303152666305,3.98535828943083 -323,9.0,20.0,-5.101853820159654,10.98071411292983 -323,9.0,21.0,-2.619319553382597,5.400770303329455 -323,10.0,8.0,0.0,4.807692307692308 -323,10.0,10.0,0.0,-4.807692307692308 -323,11.0,3.0,0.0,4.191255364806866 -323,11.0,11.0,6.573961583776156,-24.424167659260668 -323,11.0,12.0,0.0,7.142857142857143 -323,11.0,13.0,-1.5265676088395577,3.1734252729654173 -323,11.0,14.0,-3.0953961826564296,6.097275864326261 -323,11.0,15.0,-1.9519977922801688,4.104359379111847 -323,12.0,11.0,0.0,7.142857142857143 -323,12.0,12.0,0.0,-7.142857142857143 -323,13.0,11.0,-1.5265676088395577,3.1734252729654173 -323,13.0,13.0,4.01751987283902,-5.424299332335067 -323,13.0,14.0,-2.4909522639994623,2.250874059369649 -323,14.0,11.0,-3.0953961826564296,6.097275864326261 -323,14.0,13.0,-2.4909522639994623,2.250874059369649 -323,14.0,14.0,7.397149597063095,-12.035568855326606 -323,14.0,17.0,-1.8108011504072024,3.687418931630696 -323,15.0,11.0,-1.9519977922801688,4.104359379111847 -323,15.0,15.0,3.271064728633931,-8.94513365126506 -323,15.0,16.0,-1.3190669363537617,4.8407742721532125 -323,16.0,15.0,-1.3190669363537617,4.8407742721532125 -323,16.0,16.0,1.3190669363537617,-4.8407742721532125 -323,17.0,14.0,-1.8108011504072024,3.687418931630696 -323,17.0,17.0,4.886487584415919,-9.906177730909668 -323,17.0,18.0,-3.0756864340087167,6.218758799278971 -323,18.0,17.0,-3.0756864340087167,6.218758799278971 -323,18.0,18.0,8.958039375185187,-17.98346468163191 -323,18.0,19.0,-5.88235294117647,11.76470588235294 -323,19.0,9.0,-1.7848303152666305,3.98535828943083 -323,19.0,18.0,-5.88235294117647,11.76470588235294 -323,19.0,19.0,7.6671832564431,-15.75006417178377 -323,20.0,9.0,-5.101853820159654,10.98071411292983 -323,20.0,20.0,21.876495189895888,-45.10843276170355 -323,20.0,21.0,-16.774641369736234,34.127718648773715 -323,21.0,9.0,-2.619319553382597,5.400770303329455 -323,21.0,20.0,-16.774641369736234,34.127718648773715 -323,21.0,21.0,21.93449907537439,-43.48289181517921 -323,21.0,23.0,-2.5405381522555563,3.95440286307604 -323,22.0,22.0,1.4614056064833263,-2.989238740534077 -323,22.0,23.0,-1.4614056064833263,2.989238740534077 -323,23.0,21.0,-2.5405381522555563,3.95440286307604 -323,23.0,22.0,-1.4614056064833263,2.989238740534077 -323,23.0,23.0,5.311836702613133,-9.188263657315172 -323,23.0,24.0,-1.3098929438742493,2.287622053705056 -323,24.0,23.0,-1.3098929438742493,2.287622053705056 -323,24.0,24.0,4.495715080321987,-7.864978761969621 -323,24.0,25.0,-1.2165301194494855,1.8171440463475024 -323,24.0,26.0,-1.9692920169982515,3.760212661917064 -323,25.0,24.0,-1.2165301194494855,1.8171440463475024 -323,25.0,25.0,1.2165301194494855,-1.8171440463475024 -323,26.0,24.0,-1.9692920169982515,3.760212661917064 -323,26.0,26.0,3.652281470778589,-9.46044252232512 -323,26.0,27.0,0.0,2.608731947574922 -323,26.0,28.0,-0.99553355095268,1.881005840357816 -323,26.0,29.0,-0.6874559028276572,1.293971494797717 -323,27.0,5.0,-4.362844058012917,15.463571542897856 -323,27.0,7.0,-1.4439790613954469,4.540814658476248 -323,27.0,26.0,0.0,2.608731947574922 -323,27.0,27.0,5.806823119408364,-22.67145722159613 -323,28.0,26.0,-0.99553355095268,1.881005840357816 -323,28.0,28.0,1.9075867579849564,-3.604364401207048 -323,28.0,29.0,-0.9120532070322764,1.7233585608492326 -323,29.0,26.0,-0.6874559028276572,1.293971494797717 -323,29.0,28.0,-0.9120532070322764,1.7233585608492326 -323,29.0,29.0,1.5995091098599337,-3.0173300556469496 -324,0.0,0.0,6.765516048652632,-21.23160167089863 -324,0.0,1.0,-5.224646179885656,15.646726840803398 -324,0.0,2.0,-1.5408698687669766,5.631674830095234 -324,1.0,0.0,-5.224646179885656,15.646726840803398 -324,1.0,1.0,9.75228216552403,-30.648662892676068 -324,1.0,3.0,-1.7055303166990268,5.1973792282565086 -324,1.0,4.0,-1.1359607881738778,4.772479328281356 -324,1.0,5.0,-1.6861448807654689,5.116477495334806 -324,2.0,0.0,-1.5408698687669766,5.631674830095234 -324,2.0,2.0,9.736318911079088,-29.13794745915803 -324,2.0,3.0,-8.19544904231211,23.5308726290628 -324,3.0,1.0,-1.7055303166990268,5.1973792282565086 -324,3.0,2.0,-8.19544904231211,23.5308726290628 -324,3.0,3.0,16.314103089185693,-51.01235542280054 -324,3.0,5.0,-6.413123730174556,22.31120356548123 -324,4.0,1.0,-1.1359607881738778,4.772479328281356 -324,4.0,4.0,1.1359607881738778,-4.751579328281355 -324,5.0,1.0,-1.6861448807654689,5.116477495334806 -324,5.0,3.0,-6.413123730174556,22.31120356548123 -324,5.0,5.0,17.978787211021647,-67.37207632288106 -324,5.0,6.0,-3.590210423980992,11.02611441072814 -324,5.0,7.0,-6.289308176100628,22.0125786163522 -324,5.0,8.0,0.0,4.915840805411357 -324,5.0,9.0,0.0,1.8561002591115965 -324,6.0,5.0,-3.590210423980992,11.02611441072814 -324,6.0,6.0,3.590210423980992,-11.01761441072814 -324,7.0,5.0,-6.289308176100628,22.0125786163522 -324,7.0,7.0,7.733287237496075,-26.527493274828448 -324,7.0,27.0,-1.4439790613954469,4.540814658476248 -324,8.0,5.0,0.0,4.915840805411357 -324,8.0,8.0,0.0,-18.706293706293707 -324,8.0,9.0,0.0,9.090909090909092 -324,8.0,10.0,0.0,4.807692307692308 -324,9.0,5.0,0.0,1.8561002591115965 -324,9.0,8.0,0.0,9.090909090909092 -324,9.0,9.0,13.462042814524237,-41.3837606675224 -324,9.0,16.0,-3.956039125715353,10.317447719844054 -324,9.0,19.0,-1.7848303152666305,3.98535828943083 -324,9.0,20.0,-5.101853820159654,10.98071411292983 -324,9.0,21.0,-2.619319553382597,5.400770303329455 -324,10.0,8.0,0.0,4.807692307692308 -324,10.0,10.0,0.0,-4.807692307692308 -324,11.0,11.0,6.573961583776156,-20.517917659260668 -324,11.0,12.0,0.0,7.142857142857143 -324,11.0,13.0,-1.5265676088395577,3.1734252729654173 -324,11.0,14.0,-3.0953961826564296,6.097275864326261 -324,11.0,15.0,-1.9519977922801688,4.104359379111847 -324,12.0,11.0,0.0,7.142857142857143 -324,12.0,12.0,0.0,-7.142857142857143 -324,13.0,11.0,-1.5265676088395577,3.1734252729654173 -324,13.0,13.0,1.5265676088395577,-3.1734252729654173 -324,14.0,11.0,-3.0953961826564296,6.097275864326261 -324,14.0,14.0,6.874546281965293,-13.760759672738311 -324,14.0,17.0,-1.8108011504072024,3.687418931630696 -324,14.0,22.0,-1.9683489489016612,3.976064876781356 -324,15.0,11.0,-1.9519977922801688,4.104359379111847 -324,15.0,15.0,3.271064728633931,-8.94513365126506 -324,15.0,16.0,-1.3190669363537617,4.8407742721532125 -324,16.0,9.0,-3.956039125715353,10.317447719844054 -324,16.0,15.0,-1.3190669363537617,4.8407742721532125 -324,16.0,16.0,5.275106062069114,-15.158221991997266 -324,17.0,14.0,-1.8108011504072024,3.687418931630696 -324,17.0,17.0,1.8108011504072024,-3.687418931630696 -324,18.0,18.0,5.88235294117647,-11.76470588235294 -324,18.0,19.0,-5.88235294117647,11.76470588235294 -324,19.0,9.0,-1.7848303152666305,3.98535828943083 -324,19.0,18.0,-5.88235294117647,11.76470588235294 -324,19.0,19.0,7.6671832564431,-15.75006417178377 -324,20.0,9.0,-5.101853820159654,10.98071411292983 -324,20.0,20.0,21.876495189895888,-45.10843276170355 -324,20.0,21.0,-16.774641369736234,34.127718648773715 -324,21.0,9.0,-2.619319553382597,5.400770303329455 -324,21.0,20.0,-16.774641369736234,34.127718648773715 -324,21.0,21.0,21.93449907537439,-43.48289181517921 -324,21.0,23.0,-2.5405381522555563,3.95440286307604 -324,22.0,14.0,-1.9683489489016612,3.976064876781356 -324,22.0,22.0,3.429754555384988,-6.965303617315433 -324,22.0,23.0,-1.4614056064833263,2.989238740534077 -324,23.0,21.0,-2.5405381522555563,3.95440286307604 -324,23.0,22.0,-1.4614056064833263,2.989238740534077 -324,23.0,23.0,5.311836702613133,-9.188263657315172 -324,23.0,24.0,-1.3098929438742493,2.287622053705056 -324,24.0,23.0,-1.3098929438742493,2.287622053705056 -324,24.0,24.0,4.495715080321987,-7.864978761969621 -324,24.0,25.0,-1.2165301194494855,1.8171440463475024 -324,24.0,26.0,-1.9692920169982515,3.760212661917064 -324,25.0,24.0,-1.2165301194494855,1.8171440463475024 -324,25.0,25.0,1.2165301194494855,-1.8171440463475024 -324,26.0,24.0,-1.9692920169982515,3.760212661917064 -324,26.0,26.0,3.652281470778589,-9.46044252232512 -324,26.0,27.0,0.0,2.608731947574922 -324,26.0,28.0,-0.99553355095268,1.881005840357816 -324,26.0,29.0,-0.6874559028276572,1.293971494797717 -324,27.0,7.0,-1.4439790613954469,4.540814658476248 -324,27.0,26.0,0.0,2.608731947574922 -324,27.0,27.0,1.4439790613954469,-7.214385678698274 -324,28.0,26.0,-0.99553355095268,1.881005840357816 -324,28.0,28.0,1.9075867579849564,-3.604364401207048 -324,28.0,29.0,-0.9120532070322764,1.7233585608492326 -324,29.0,26.0,-0.6874559028276572,1.293971494797717 -324,29.0,28.0,-0.9120532070322764,1.7233585608492326 -324,29.0,29.0,1.5995091098599337,-3.0173300556469496 -325,0.0,0.0,6.765516048652632,-21.23160167089863 -325,0.0,1.0,-5.224646179885656,15.646726840803398 -325,0.0,2.0,-1.5408698687669766,5.631674830095234 -325,1.0,0.0,-5.224646179885656,15.646726840803398 -325,1.0,1.0,9.75228216552403,-30.648662892676068 -325,1.0,3.0,-1.7055303166990268,5.1973792282565086 -325,1.0,4.0,-1.1359607881738778,4.772479328281356 -325,1.0,5.0,-1.6861448807654689,5.116477495334806 -325,2.0,0.0,-1.5408698687669766,5.631674830095234 -325,2.0,2.0,9.736318911079088,-29.13794745915803 -325,2.0,3.0,-8.19544904231211,23.5308726290628 -325,3.0,1.0,-1.7055303166990268,5.1973792282565086 -325,3.0,2.0,-8.19544904231211,23.5308726290628 -325,3.0,3.0,16.314103089185693,-55.509410535254254 -325,3.0,5.0,-6.413123730174556,22.31120356548123 -325,3.0,11.0,0.0,4.191255364806866 -325,4.0,1.0,-1.1359607881738778,4.772479328281356 -325,4.0,4.0,4.089980824135861,-12.190647245055052 -325,4.0,6.0,-2.954020035961983,7.449267916773697 -325,5.0,1.0,-1.6861448807654689,5.116477495334806 -325,5.0,3.0,-6.413123730174556,22.31120356548123 -325,5.0,5.0,22.341631269034565,-82.8291478657789 -325,5.0,6.0,-3.590210423980992,11.02611441072814 -325,5.0,7.0,-6.289308176100628,22.0125786163522 -325,5.0,8.0,0.0,4.915840805411357 -325,5.0,9.0,0.0,1.8561002591115965 -325,5.0,27.0,-4.362844058012917,15.463571542897856 -325,6.0,4.0,-2.954020035961983,7.449267916773697 -325,6.0,5.0,-3.590210423980992,11.02611441072814 -325,6.0,6.0,6.544230459942975,-18.45668232750184 -325,7.0,5.0,-6.289308176100628,22.0125786163522 -325,7.0,7.0,7.733287237496075,-26.527493274828448 -325,7.0,27.0,-1.4439790613954469,4.540814658476248 -325,8.0,5.0,0.0,4.915840805411357 -325,8.0,8.0,0.0,-18.706293706293707 -325,8.0,9.0,0.0,9.090909090909092 -325,8.0,10.0,0.0,4.807692307692308 -325,9.0,5.0,0.0,1.8561002591115965 -325,9.0,8.0,0.0,9.090909090909092 -325,9.0,9.0,13.462042814524237,-41.3837606675224 -325,9.0,16.0,-3.956039125715353,10.317447719844054 -325,9.0,19.0,-1.7848303152666305,3.98535828943083 -325,9.0,20.0,-5.101853820159654,10.98071411292983 -325,9.0,21.0,-2.619319553382597,5.400770303329455 -325,10.0,8.0,0.0,4.807692307692308 -325,10.0,10.0,0.0,-4.807692307692308 -325,11.0,3.0,0.0,4.191255364806866 -325,11.0,11.0,6.573961583776156,-24.424167659260668 -325,11.0,12.0,0.0,7.142857142857143 -325,11.0,13.0,-1.5265676088395577,3.1734252729654173 -325,11.0,14.0,-3.0953961826564296,6.097275864326261 -325,11.0,15.0,-1.9519977922801688,4.104359379111847 -325,12.0,11.0,0.0,7.142857142857143 -325,12.0,12.0,0.0,-7.142857142857143 -325,13.0,11.0,-1.5265676088395577,3.1734252729654173 -325,13.0,13.0,1.5265676088395577,-3.1734252729654173 -325,14.0,11.0,-3.0953961826564296,6.097275864326261 -325,14.0,14.0,5.063745131558092,-10.073340741107616 -325,14.0,22.0,-1.9683489489016612,3.976064876781356 -325,15.0,11.0,-1.9519977922801688,4.104359379111847 -325,15.0,15.0,3.271064728633931,-8.94513365126506 -325,15.0,16.0,-1.3190669363537617,4.8407742721532125 -325,16.0,9.0,-3.956039125715353,10.317447719844054 -325,16.0,15.0,-1.3190669363537617,4.8407742721532125 -325,16.0,16.0,5.275106062069114,-15.158221991997266 -325,17.0,17.0,3.0756864340087167,-6.218758799278971 -325,17.0,18.0,-3.0756864340087167,6.218758799278971 -325,18.0,17.0,-3.0756864340087167,6.218758799278971 -325,18.0,18.0,8.958039375185187,-17.98346468163191 -325,18.0,19.0,-5.88235294117647,11.76470588235294 -325,19.0,9.0,-1.7848303152666305,3.98535828943083 -325,19.0,18.0,-5.88235294117647,11.76470588235294 -325,19.0,19.0,7.6671832564431,-15.75006417178377 -325,20.0,9.0,-5.101853820159654,10.98071411292983 -325,20.0,20.0,5.101853820159654,-10.98071411292983 -325,21.0,9.0,-2.619319553382597,5.400770303329455 -325,21.0,21.0,5.159857705638154,-9.355173166405494 -325,21.0,23.0,-2.5405381522555563,3.95440286307604 -325,22.0,14.0,-1.9683489489016612,3.976064876781356 -325,22.0,22.0,3.429754555384988,-6.965303617315433 -325,22.0,23.0,-1.4614056064833263,2.989238740534077 -325,23.0,21.0,-2.5405381522555563,3.95440286307604 -325,23.0,22.0,-1.4614056064833263,2.989238740534077 -325,23.0,23.0,4.001943758738883,-6.900641603610116 -325,24.0,24.0,3.185822136447737,-5.577356708264566 -325,24.0,25.0,-1.2165301194494855,1.8171440463475024 -325,24.0,26.0,-1.9692920169982515,3.760212661917064 -325,25.0,24.0,-1.2165301194494855,1.8171440463475024 -325,25.0,25.0,1.2165301194494855,-1.8171440463475024 -325,26.0,24.0,-1.9692920169982515,3.760212661917064 -325,26.0,26.0,3.652281470778589,-9.46044252232512 -325,26.0,27.0,0.0,2.608731947574922 -325,26.0,28.0,-0.99553355095268,1.881005840357816 -325,26.0,29.0,-0.6874559028276572,1.293971494797717 -325,27.0,5.0,-4.362844058012917,15.463571542897856 -325,27.0,7.0,-1.4439790613954469,4.540814658476248 -325,27.0,26.0,0.0,2.608731947574922 -325,27.0,27.0,5.806823119408364,-22.67145722159613 -325,28.0,26.0,-0.99553355095268,1.881005840357816 -325,28.0,28.0,1.9075867579849564,-3.604364401207048 -325,28.0,29.0,-0.9120532070322764,1.7233585608492326 -325,29.0,26.0,-0.6874559028276572,1.293971494797717 -325,29.0,28.0,-0.9120532070322764,1.7233585608492326 -325,29.0,29.0,1.5995091098599337,-3.0173300556469496 -326,0.0,0.0,6.765516048652632,-21.23160167089863 -326,0.0,1.0,-5.224646179885656,15.646726840803398 -326,0.0,2.0,-1.5408698687669766,5.631674830095234 -326,1.0,0.0,-5.224646179885656,15.646726840803398 -326,1.0,1.0,9.75228216552403,-30.648662892676068 -326,1.0,3.0,-1.7055303166990268,5.1973792282565086 -326,1.0,4.0,-1.1359607881738778,4.772479328281356 -326,1.0,5.0,-1.6861448807654689,5.116477495334806 -326,2.0,0.0,-1.5408698687669766,5.631674830095234 -326,2.0,2.0,1.5408698687669766,-5.611274830095233 -326,3.0,1.0,-1.7055303166990268,5.1973792282565086 -326,3.0,3.0,8.118654046873583,-31.982737906191456 -326,3.0,5.0,-6.413123730174556,22.31120356548123 -326,3.0,11.0,0.0,4.191255364806866 -326,4.0,1.0,-1.1359607881738778,4.772479328281356 -326,4.0,4.0,4.089980824135861,-12.190647245055052 -326,4.0,6.0,-2.954020035961983,7.449267916773697 -326,5.0,1.0,-1.6861448807654689,5.116477495334806 -326,5.0,3.0,-6.413123730174556,22.31120356548123 -326,5.0,5.0,22.341631269034565,-82.8291478657789 -326,5.0,6.0,-3.590210423980992,11.02611441072814 -326,5.0,7.0,-6.289308176100628,22.0125786163522 -326,5.0,8.0,0.0,4.915840805411357 -326,5.0,9.0,0.0,1.8561002591115965 -326,5.0,27.0,-4.362844058012917,15.463571542897856 -326,6.0,4.0,-2.954020035961983,7.449267916773697 -326,6.0,5.0,-3.590210423980992,11.02611441072814 -326,6.0,6.0,6.544230459942975,-18.45668232750184 -326,7.0,5.0,-6.289308176100628,22.0125786163522 -326,7.0,7.0,7.733287237496075,-26.527493274828448 -326,7.0,27.0,-1.4439790613954469,4.540814658476248 -326,8.0,5.0,0.0,4.915840805411357 -326,8.0,8.0,0.0,-9.615384615384617 -326,8.0,10.0,0.0,4.807692307692308 -326,9.0,5.0,0.0,1.8561002591115965 -326,9.0,9.0,9.506003688808882,-21.97540385676925 -326,9.0,19.0,-1.7848303152666305,3.98535828943083 -326,9.0,20.0,-5.101853820159654,10.98071411292983 -326,9.0,21.0,-2.619319553382597,5.400770303329455 -326,10.0,8.0,0.0,4.807692307692308 -326,10.0,10.0,0.0,-4.807692307692308 -326,11.0,3.0,0.0,4.191255364806866 -326,11.0,11.0,6.573961583776156,-24.424167659260668 -326,11.0,12.0,0.0,7.142857142857143 -326,11.0,13.0,-1.5265676088395577,3.1734252729654173 -326,11.0,14.0,-3.0953961826564296,6.097275864326261 -326,11.0,15.0,-1.9519977922801688,4.104359379111847 -326,12.0,11.0,0.0,7.142857142857143 -326,12.0,12.0,0.0,-7.142857142857143 -326,13.0,11.0,-1.5265676088395577,3.1734252729654173 -326,13.0,13.0,4.01751987283902,-5.424299332335067 -326,13.0,14.0,-2.4909522639994623,2.250874059369649 -326,14.0,11.0,-3.0953961826564296,6.097275864326261 -326,14.0,13.0,-2.4909522639994623,2.250874059369649 -326,14.0,14.0,9.365498545964757,-16.01163373210796 -326,14.0,17.0,-1.8108011504072024,3.687418931630696 -326,14.0,22.0,-1.9683489489016612,3.976064876781356 -326,15.0,11.0,-1.9519977922801688,4.104359379111847 -326,15.0,15.0,3.271064728633931,-8.94513365126506 -326,15.0,16.0,-1.3190669363537617,4.8407742721532125 -326,16.0,15.0,-1.3190669363537617,4.8407742721532125 -326,16.0,16.0,1.3190669363537617,-4.8407742721532125 -326,17.0,14.0,-1.8108011504072024,3.687418931630696 -326,17.0,17.0,4.886487584415919,-9.906177730909668 -326,17.0,18.0,-3.0756864340087167,6.218758799278971 -326,18.0,17.0,-3.0756864340087167,6.218758799278971 -326,18.0,18.0,8.958039375185187,-17.98346468163191 -326,18.0,19.0,-5.88235294117647,11.76470588235294 -326,19.0,9.0,-1.7848303152666305,3.98535828943083 -326,19.0,18.0,-5.88235294117647,11.76470588235294 -326,19.0,19.0,7.6671832564431,-15.75006417178377 -326,20.0,9.0,-5.101853820159654,10.98071411292983 -326,20.0,20.0,5.101853820159654,-10.98071411292983 -326,21.0,9.0,-2.619319553382597,5.400770303329455 -326,21.0,21.0,5.159857705638154,-9.355173166405494 -326,21.0,23.0,-2.5405381522555563,3.95440286307604 -326,22.0,14.0,-1.9683489489016612,3.976064876781356 -326,22.0,22.0,3.429754555384988,-6.965303617315433 -326,22.0,23.0,-1.4614056064833263,2.989238740534077 -326,23.0,21.0,-2.5405381522555563,3.95440286307604 -326,23.0,22.0,-1.4614056064833263,2.989238740534077 -326,23.0,23.0,5.311836702613133,-9.188263657315172 -326,23.0,24.0,-1.3098929438742493,2.287622053705056 -326,24.0,23.0,-1.3098929438742493,2.287622053705056 -326,24.0,24.0,4.495715080321987,-7.864978761969621 -326,24.0,25.0,-1.2165301194494855,1.8171440463475024 -326,24.0,26.0,-1.9692920169982515,3.760212661917064 -326,25.0,24.0,-1.2165301194494855,1.8171440463475024 -326,25.0,25.0,1.2165301194494855,-1.8171440463475024 -326,26.0,24.0,-1.9692920169982515,3.760212661917064 -326,26.0,26.0,3.652281470778589,-9.46044252232512 -326,26.0,27.0,0.0,2.608731947574922 -326,26.0,28.0,-0.99553355095268,1.881005840357816 -326,26.0,29.0,-0.6874559028276572,1.293971494797717 -326,27.0,5.0,-4.362844058012917,15.463571542897856 -326,27.0,7.0,-1.4439790613954469,4.540814658476248 -326,27.0,26.0,0.0,2.608731947574922 -326,27.0,27.0,5.806823119408364,-22.67145722159613 -326,28.0,26.0,-0.99553355095268,1.881005840357816 -326,28.0,28.0,1.9075867579849564,-3.604364401207048 -326,28.0,29.0,-0.9120532070322764,1.7233585608492326 -326,29.0,26.0,-0.6874559028276572,1.293971494797717 -326,29.0,28.0,-0.9120532070322764,1.7233585608492326 -326,29.0,29.0,1.5995091098599337,-3.0173300556469496 -327,0.0,0.0,6.765516048652632,-21.23160167089863 -327,0.0,1.0,-5.224646179885656,15.646726840803398 -327,0.0,2.0,-1.5408698687669766,5.631674830095234 -327,1.0,0.0,-5.224646179885656,15.646726840803398 -327,1.0,1.0,9.75228216552403,-30.648662892676068 -327,1.0,3.0,-1.7055303166990268,5.1973792282565086 -327,1.0,4.0,-1.1359607881738778,4.772479328281356 -327,1.0,5.0,-1.6861448807654689,5.116477495334806 -327,2.0,0.0,-1.5408698687669766,5.631674830095234 -327,2.0,2.0,9.736318911079088,-29.13794745915803 -327,2.0,3.0,-8.19544904231211,23.5308726290628 -327,3.0,1.0,-1.7055303166990268,5.1973792282565086 -327,3.0,2.0,-8.19544904231211,23.5308726290628 -327,3.0,3.0,16.314103089185693,-55.509410535254254 -327,3.0,5.0,-6.413123730174556,22.31120356548123 -327,3.0,11.0,0.0,4.191255364806866 -327,4.0,1.0,-1.1359607881738778,4.772479328281356 -327,4.0,4.0,4.089980824135861,-12.190647245055052 -327,4.0,6.0,-2.954020035961983,7.449267916773697 -327,5.0,1.0,-1.6861448807654689,5.116477495334806 -327,5.0,3.0,-6.413123730174556,22.31120356548123 -327,5.0,5.0,22.341631269034565,-82.8291478657789 -327,5.0,6.0,-3.590210423980992,11.02611441072814 -327,5.0,7.0,-6.289308176100628,22.0125786163522 -327,5.0,8.0,0.0,4.915840805411357 -327,5.0,9.0,0.0,1.8561002591115965 -327,5.0,27.0,-4.362844058012917,15.463571542897856 -327,6.0,4.0,-2.954020035961983,7.449267916773697 -327,6.0,5.0,-3.590210423980992,11.02611441072814 -327,6.0,6.0,6.544230459942975,-18.45668232750184 -327,7.0,5.0,-6.289308176100628,22.0125786163522 -327,7.0,7.0,7.733287237496075,-26.527493274828448 -327,7.0,27.0,-1.4439790613954469,4.540814658476248 -327,8.0,5.0,0.0,4.915840805411357 -327,8.0,8.0,0.0,-18.706293706293707 -327,8.0,9.0,0.0,9.090909090909092 -327,8.0,10.0,0.0,4.807692307692308 -327,9.0,5.0,0.0,1.8561002591115965 -327,9.0,8.0,0.0,9.090909090909092 -327,9.0,9.0,13.462042814524237,-41.3837606675224 -327,9.0,16.0,-3.956039125715353,10.317447719844054 -327,9.0,19.0,-1.7848303152666305,3.98535828943083 -327,9.0,20.0,-5.101853820159654,10.98071411292983 -327,9.0,21.0,-2.619319553382597,5.400770303329455 -327,10.0,8.0,0.0,4.807692307692308 -327,10.0,10.0,0.0,-4.807692307692308 -327,11.0,3.0,0.0,4.191255364806866 -327,11.0,11.0,6.573961583776156,-24.424167659260668 -327,11.0,12.0,0.0,7.142857142857143 -327,11.0,13.0,-1.5265676088395577,3.1734252729654173 -327,11.0,14.0,-3.0953961826564296,6.097275864326261 -327,11.0,15.0,-1.9519977922801688,4.104359379111847 -327,12.0,11.0,0.0,7.142857142857143 -327,12.0,12.0,0.0,-7.142857142857143 -327,13.0,11.0,-1.5265676088395577,3.1734252729654173 -327,13.0,13.0,4.01751987283902,-5.424299332335067 -327,13.0,14.0,-2.4909522639994623,2.250874059369649 -327,14.0,11.0,-3.0953961826564296,6.097275864326261 -327,14.0,13.0,-2.4909522639994623,2.250874059369649 -327,14.0,14.0,9.365498545964757,-16.01163373210796 -327,14.0,17.0,-1.8108011504072024,3.687418931630696 -327,14.0,22.0,-1.9683489489016612,3.976064876781356 -327,15.0,11.0,-1.9519977922801688,4.104359379111847 -327,15.0,15.0,3.271064728633931,-8.94513365126506 -327,15.0,16.0,-1.3190669363537617,4.8407742721532125 -327,16.0,9.0,-3.956039125715353,10.317447719844054 -327,16.0,15.0,-1.3190669363537617,4.8407742721532125 -327,16.0,16.0,5.275106062069114,-15.158221991997266 -327,17.0,14.0,-1.8108011504072024,3.687418931630696 -327,17.0,17.0,4.886487584415919,-9.906177730909668 -327,17.0,18.0,-3.0756864340087167,6.218758799278971 -327,18.0,17.0,-3.0756864340087167,6.218758799278971 -327,18.0,18.0,8.958039375185187,-17.98346468163191 -327,18.0,19.0,-5.88235294117647,11.76470588235294 -327,19.0,9.0,-1.7848303152666305,3.98535828943083 -327,19.0,18.0,-5.88235294117647,11.76470588235294 -327,19.0,19.0,7.6671832564431,-15.75006417178377 -327,20.0,9.0,-5.101853820159654,10.98071411292983 -327,20.0,20.0,21.876495189895888,-45.10843276170355 -327,20.0,21.0,-16.774641369736234,34.127718648773715 -327,21.0,9.0,-2.619319553382597,5.400770303329455 -327,21.0,20.0,-16.774641369736234,34.127718648773715 -327,21.0,21.0,21.93449907537439,-43.48289181517921 -327,21.0,23.0,-2.5405381522555563,3.95440286307604 -327,22.0,14.0,-1.9683489489016612,3.976064876781356 -327,22.0,22.0,3.429754555384988,-6.965303617315433 -327,22.0,23.0,-1.4614056064833263,2.989238740534077 -327,23.0,21.0,-2.5405381522555563,3.95440286307604 -327,23.0,22.0,-1.4614056064833263,2.989238740534077 -327,23.0,23.0,5.311836702613133,-9.188263657315172 -327,23.0,24.0,-1.3098929438742493,2.287622053705056 -327,24.0,23.0,-1.3098929438742493,2.287622053705056 -327,24.0,24.0,4.495715080321987,-7.864978761969621 -327,24.0,25.0,-1.2165301194494855,1.8171440463475024 -327,24.0,26.0,-1.9692920169982515,3.760212661917064 -327,25.0,24.0,-1.2165301194494855,1.8171440463475024 -327,25.0,25.0,1.2165301194494855,-1.8171440463475024 -327,26.0,24.0,-1.9692920169982515,3.760212661917064 -327,26.0,26.0,3.652281470778589,-9.46044252232512 -327,26.0,27.0,0.0,2.608731947574922 -327,26.0,28.0,-0.99553355095268,1.881005840357816 -327,26.0,29.0,-0.6874559028276572,1.293971494797717 -327,27.0,5.0,-4.362844058012917,15.463571542897856 -327,27.0,7.0,-1.4439790613954469,4.540814658476248 -327,27.0,26.0,0.0,2.608731947574922 -327,27.0,27.0,5.806823119408364,-22.67145722159613 -327,28.0,26.0,-0.99553355095268,1.881005840357816 -327,28.0,28.0,1.9075867579849564,-3.604364401207048 -327,28.0,29.0,-0.9120532070322764,1.7233585608492326 -327,29.0,26.0,-0.6874559028276572,1.293971494797717 -327,29.0,28.0,-0.9120532070322764,1.7233585608492326 -327,29.0,29.0,1.5995091098599337,-3.0173300556469496 -328,0.0,0.0,6.765516048652632,-21.23160167089863 -328,0.0,1.0,-5.224646179885656,15.646726840803398 -328,0.0,2.0,-1.5408698687669766,5.631674830095234 -328,1.0,0.0,-5.224646179885656,15.646726840803398 -328,1.0,1.0,9.75228216552403,-30.648662892676068 -328,1.0,3.0,-1.7055303166990268,5.1973792282565086 -328,1.0,4.0,-1.1359607881738778,4.772479328281356 -328,1.0,5.0,-1.6861448807654689,5.116477495334806 -328,2.0,0.0,-1.5408698687669766,5.631674830095234 -328,2.0,2.0,9.736318911079088,-29.13794745915803 -328,2.0,3.0,-8.19544904231211,23.5308726290628 -328,3.0,1.0,-1.7055303166990268,5.1973792282565086 -328,3.0,2.0,-8.19544904231211,23.5308726290628 -328,3.0,3.0,16.314103089185693,-55.509410535254254 -328,3.0,5.0,-6.413123730174556,22.31120356548123 -328,3.0,11.0,0.0,4.191255364806866 -328,4.0,1.0,-1.1359607881738778,4.772479328281356 -328,4.0,4.0,4.089980824135861,-12.190647245055052 -328,4.0,6.0,-2.954020035961983,7.449267916773697 -328,5.0,1.0,-1.6861448807654689,5.116477495334806 -328,5.0,3.0,-6.413123730174556,22.31120356548123 -328,5.0,5.0,22.341631269034565,-82.8291478657789 -328,5.0,6.0,-3.590210423980992,11.02611441072814 -328,5.0,7.0,-6.289308176100628,22.0125786163522 -328,5.0,8.0,0.0,4.915840805411357 -328,5.0,9.0,0.0,1.8561002591115965 -328,5.0,27.0,-4.362844058012917,15.463571542897856 -328,6.0,4.0,-2.954020035961983,7.449267916773697 -328,6.0,5.0,-3.590210423980992,11.02611441072814 -328,6.0,6.0,6.544230459942975,-18.45668232750184 -328,7.0,5.0,-6.289308176100628,22.0125786163522 -328,7.0,7.0,7.733287237496075,-26.527493274828448 -328,7.0,27.0,-1.4439790613954469,4.540814658476248 -328,8.0,5.0,0.0,4.915840805411357 -328,8.0,8.0,0.0,-18.706293706293707 -328,8.0,9.0,0.0,9.090909090909092 -328,8.0,10.0,0.0,4.807692307692308 -328,9.0,5.0,0.0,1.8561002591115965 -328,9.0,8.0,0.0,9.090909090909092 -328,9.0,9.0,13.462042814524237,-41.3837606675224 -328,9.0,16.0,-3.956039125715353,10.317447719844054 -328,9.0,19.0,-1.7848303152666305,3.98535828943083 -328,9.0,20.0,-5.101853820159654,10.98071411292983 -328,9.0,21.0,-2.619319553382597,5.400770303329455 -328,10.0,8.0,0.0,4.807692307692308 -328,10.0,10.0,0.0,-4.807692307692308 -328,11.0,3.0,0.0,4.191255364806866 -328,11.0,11.0,3.478565401119727,-18.326891794934408 -328,11.0,12.0,0.0,7.142857142857143 -328,11.0,13.0,-1.5265676088395577,3.1734252729654173 -328,11.0,15.0,-1.9519977922801688,4.104359379111847 -328,12.0,11.0,0.0,7.142857142857143 -328,12.0,12.0,0.0,-7.142857142857143 -328,13.0,11.0,-1.5265676088395577,3.1734252729654173 -328,13.0,13.0,4.01751987283902,-5.424299332335067 -328,13.0,14.0,-2.4909522639994623,2.250874059369649 -328,14.0,13.0,-2.4909522639994623,2.250874059369649 -328,14.0,14.0,6.270102363308326,-9.9143578677817 -328,14.0,17.0,-1.8108011504072024,3.687418931630696 -328,14.0,22.0,-1.9683489489016612,3.976064876781356 -328,15.0,11.0,-1.9519977922801688,4.104359379111847 -328,15.0,15.0,3.271064728633931,-8.94513365126506 -328,15.0,16.0,-1.3190669363537617,4.8407742721532125 -328,16.0,9.0,-3.956039125715353,10.317447719844054 -328,16.0,15.0,-1.3190669363537617,4.8407742721532125 -328,16.0,16.0,5.275106062069114,-15.158221991997266 -328,17.0,14.0,-1.8108011504072024,3.687418931630696 -328,17.0,17.0,4.886487584415919,-9.906177730909668 -328,17.0,18.0,-3.0756864340087167,6.218758799278971 -328,18.0,17.0,-3.0756864340087167,6.218758799278971 -328,18.0,18.0,3.0756864340087167,-6.218758799278971 -328,19.0,9.0,-1.7848303152666305,3.98535828943083 -328,19.0,19.0,1.7848303152666305,-3.98535828943083 -328,20.0,9.0,-5.101853820159654,10.98071411292983 -328,20.0,20.0,21.876495189895888,-45.10843276170355 -328,20.0,21.0,-16.774641369736234,34.127718648773715 -328,21.0,9.0,-2.619319553382597,5.400770303329455 -328,21.0,20.0,-16.774641369736234,34.127718648773715 -328,21.0,21.0,21.93449907537439,-43.48289181517921 -328,21.0,23.0,-2.5405381522555563,3.95440286307604 -328,22.0,14.0,-1.9683489489016612,3.976064876781356 -328,22.0,22.0,3.429754555384988,-6.965303617315433 -328,22.0,23.0,-1.4614056064833263,2.989238740534077 -328,23.0,21.0,-2.5405381522555563,3.95440286307604 -328,23.0,22.0,-1.4614056064833263,2.989238740534077 -328,23.0,23.0,5.311836702613133,-9.188263657315172 -328,23.0,24.0,-1.3098929438742493,2.287622053705056 -328,24.0,23.0,-1.3098929438742493,2.287622053705056 -328,24.0,24.0,4.495715080321987,-7.864978761969621 -328,24.0,25.0,-1.2165301194494855,1.8171440463475024 -328,24.0,26.0,-1.9692920169982515,3.760212661917064 -328,25.0,24.0,-1.2165301194494855,1.8171440463475024 -328,25.0,25.0,1.2165301194494855,-1.8171440463475024 -328,26.0,24.0,-1.9692920169982515,3.760212661917064 -328,26.0,26.0,3.652281470778589,-9.46044252232512 -328,26.0,27.0,0.0,2.608731947574922 -328,26.0,28.0,-0.99553355095268,1.881005840357816 -328,26.0,29.0,-0.6874559028276572,1.293971494797717 -328,27.0,5.0,-4.362844058012917,15.463571542897856 -328,27.0,7.0,-1.4439790613954469,4.540814658476248 -328,27.0,26.0,0.0,2.608731947574922 -328,27.0,27.0,5.806823119408364,-22.67145722159613 -328,28.0,26.0,-0.99553355095268,1.881005840357816 -328,28.0,28.0,1.9075867579849564,-3.604364401207048 -328,28.0,29.0,-0.9120532070322764,1.7233585608492326 -328,29.0,26.0,-0.6874559028276572,1.293971494797717 -328,29.0,28.0,-0.9120532070322764,1.7233585608492326 -328,29.0,29.0,1.5995091098599337,-3.0173300556469496 -329,0.0,0.0,6.765516048652632,-21.23160167089863 -329,0.0,1.0,-5.224646179885656,15.646726840803398 -329,0.0,2.0,-1.5408698687669766,5.631674830095234 -329,1.0,0.0,-5.224646179885656,15.646726840803398 -329,1.0,1.0,8.066137284758561,-25.55088539734126 -329,1.0,3.0,-1.7055303166990268,5.1973792282565086 -329,1.0,4.0,-1.1359607881738778,4.772479328281356 -329,2.0,0.0,-1.5408698687669766,5.631674830095234 -329,2.0,2.0,9.736318911079088,-29.13794745915803 -329,2.0,3.0,-8.19544904231211,23.5308726290628 -329,3.0,1.0,-1.7055303166990268,5.1973792282565086 -329,3.0,2.0,-8.19544904231211,23.5308726290628 -329,3.0,3.0,16.314103089185693,-55.509410535254254 -329,3.0,5.0,-6.413123730174556,22.31120356548123 -329,3.0,11.0,0.0,4.191255364806866 -329,4.0,1.0,-1.1359607881738778,4.772479328281356 -329,4.0,4.0,1.1359607881738778,-4.751579328281355 -329,5.0,3.0,-6.413123730174556,22.31120356548123 -329,5.0,5.0,20.655486388269097,-77.7313703704441 -329,5.0,6.0,-3.590210423980992,11.02611441072814 -329,5.0,7.0,-6.289308176100628,22.0125786163522 -329,5.0,8.0,0.0,4.915840805411357 -329,5.0,9.0,0.0,1.8561002591115965 -329,5.0,27.0,-4.362844058012917,15.463571542897856 -329,6.0,5.0,-3.590210423980992,11.02611441072814 -329,6.0,6.0,3.590210423980992,-11.01761441072814 -329,7.0,5.0,-6.289308176100628,22.0125786163522 -329,7.0,7.0,7.733287237496075,-26.527493274828448 -329,7.0,27.0,-1.4439790613954469,4.540814658476248 -329,8.0,5.0,0.0,4.915840805411357 -329,8.0,8.0,0.0,-18.706293706293707 -329,8.0,9.0,0.0,9.090909090909092 -329,8.0,10.0,0.0,4.807692307692308 -329,9.0,5.0,0.0,1.8561002591115965 -329,9.0,8.0,0.0,9.090909090909092 -329,9.0,9.0,13.462042814524237,-41.3837606675224 -329,9.0,16.0,-3.956039125715353,10.317447719844054 -329,9.0,19.0,-1.7848303152666305,3.98535828943083 -329,9.0,20.0,-5.101853820159654,10.98071411292983 -329,9.0,21.0,-2.619319553382597,5.400770303329455 -329,10.0,8.0,0.0,4.807692307692308 -329,10.0,10.0,0.0,-4.807692307692308 -329,11.0,3.0,0.0,4.191255364806866 -329,11.0,11.0,6.573961583776156,-24.424167659260668 -329,11.0,12.0,0.0,7.142857142857143 -329,11.0,13.0,-1.5265676088395577,3.1734252729654173 -329,11.0,14.0,-3.0953961826564296,6.097275864326261 -329,11.0,15.0,-1.9519977922801688,4.104359379111847 -329,12.0,11.0,0.0,7.142857142857143 -329,12.0,12.0,0.0,-7.142857142857143 -329,13.0,11.0,-1.5265676088395577,3.1734252729654173 -329,13.0,13.0,4.01751987283902,-5.424299332335067 -329,13.0,14.0,-2.4909522639994623,2.250874059369649 -329,14.0,11.0,-3.0953961826564296,6.097275864326261 -329,14.0,13.0,-2.4909522639994623,2.250874059369649 -329,14.0,14.0,7.397149597063095,-12.035568855326606 -329,14.0,17.0,-1.8108011504072024,3.687418931630696 -329,15.0,11.0,-1.9519977922801688,4.104359379111847 -329,15.0,15.0,3.271064728633931,-8.94513365126506 -329,15.0,16.0,-1.3190669363537617,4.8407742721532125 -329,16.0,9.0,-3.956039125715353,10.317447719844054 -329,16.0,15.0,-1.3190669363537617,4.8407742721532125 -329,16.0,16.0,5.275106062069114,-15.158221991997266 -329,17.0,14.0,-1.8108011504072024,3.687418931630696 -329,17.0,17.0,4.886487584415919,-9.906177730909668 -329,17.0,18.0,-3.0756864340087167,6.218758799278971 -329,18.0,17.0,-3.0756864340087167,6.218758799278971 -329,18.0,18.0,8.958039375185187,-17.98346468163191 -329,18.0,19.0,-5.88235294117647,11.76470588235294 -329,19.0,9.0,-1.7848303152666305,3.98535828943083 -329,19.0,18.0,-5.88235294117647,11.76470588235294 -329,19.0,19.0,7.6671832564431,-15.75006417178377 -329,20.0,9.0,-5.101853820159654,10.98071411292983 -329,20.0,20.0,21.876495189895888,-45.10843276170355 -329,20.0,21.0,-16.774641369736234,34.127718648773715 -329,21.0,9.0,-2.619319553382597,5.400770303329455 -329,21.0,20.0,-16.774641369736234,34.127718648773715 -329,21.0,21.0,21.93449907537439,-43.48289181517921 -329,21.0,23.0,-2.5405381522555563,3.95440286307604 -329,22.0,22.0,1.4614056064833263,-2.989238740534077 -329,22.0,23.0,-1.4614056064833263,2.989238740534077 -329,23.0,21.0,-2.5405381522555563,3.95440286307604 -329,23.0,22.0,-1.4614056064833263,2.989238740534077 -329,23.0,23.0,5.311836702613133,-9.188263657315172 -329,23.0,24.0,-1.3098929438742493,2.287622053705056 -329,24.0,23.0,-1.3098929438742493,2.287622053705056 -329,24.0,24.0,4.495715080321987,-7.864978761969621 -329,24.0,25.0,-1.2165301194494855,1.8171440463475024 -329,24.0,26.0,-1.9692920169982515,3.760212661917064 -329,25.0,24.0,-1.2165301194494855,1.8171440463475024 -329,25.0,25.0,1.2165301194494855,-1.8171440463475024 -329,26.0,24.0,-1.9692920169982515,3.760212661917064 -329,26.0,26.0,3.652281470778589,-9.46044252232512 -329,26.0,27.0,0.0,2.608731947574922 -329,26.0,28.0,-0.99553355095268,1.881005840357816 -329,26.0,29.0,-0.6874559028276572,1.293971494797717 -329,27.0,5.0,-4.362844058012917,15.463571542897856 -329,27.0,7.0,-1.4439790613954469,4.540814658476248 -329,27.0,26.0,0.0,2.608731947574922 -329,27.0,27.0,5.806823119408364,-22.67145722159613 -329,28.0,26.0,-0.99553355095268,1.881005840357816 -329,28.0,28.0,1.9075867579849564,-3.604364401207048 -329,28.0,29.0,-0.9120532070322764,1.7233585608492326 -329,29.0,26.0,-0.6874559028276572,1.293971494797717 -329,29.0,28.0,-0.9120532070322764,1.7233585608492326 -329,29.0,29.0,1.5995091098599337,-3.0173300556469496 -330,0.0,0.0,6.765516048652632,-21.23160167089863 -330,0.0,1.0,-5.224646179885656,15.646726840803398 -330,0.0,2.0,-1.5408698687669766,5.631674830095234 -330,1.0,0.0,-5.224646179885656,15.646726840803398 -330,1.0,1.0,8.066137284758561,-25.55088539734126 -330,1.0,3.0,-1.7055303166990268,5.1973792282565086 -330,1.0,4.0,-1.1359607881738778,4.772479328281356 -330,2.0,0.0,-1.5408698687669766,5.631674830095234 -330,2.0,2.0,9.736318911079088,-29.13794745915803 -330,2.0,3.0,-8.19544904231211,23.5308726290628 -330,3.0,1.0,-1.7055303166990268,5.1973792282565086 -330,3.0,2.0,-8.19544904231211,23.5308726290628 -330,3.0,3.0,16.314103089185693,-55.509410535254254 -330,3.0,5.0,-6.413123730174556,22.31120356548123 -330,3.0,11.0,0.0,4.191255364806866 -330,4.0,1.0,-1.1359607881738778,4.772479328281356 -330,4.0,4.0,4.089980824135861,-12.190647245055052 -330,4.0,6.0,-2.954020035961983,7.449267916773697 -330,5.0,3.0,-6.413123730174556,22.31120356548123 -330,5.0,5.0,20.655486388269097,-77.7313703704441 -330,5.0,6.0,-3.590210423980992,11.02611441072814 -330,5.0,7.0,-6.289308176100628,22.0125786163522 -330,5.0,8.0,0.0,4.915840805411357 -330,5.0,9.0,0.0,1.8561002591115965 -330,5.0,27.0,-4.362844058012917,15.463571542897856 -330,6.0,4.0,-2.954020035961983,7.449267916773697 -330,6.0,5.0,-3.590210423980992,11.02611441072814 -330,6.0,6.0,6.544230459942975,-18.45668232750184 -330,7.0,5.0,-6.289308176100628,22.0125786163522 -330,7.0,7.0,7.733287237496075,-26.527493274828448 -330,7.0,27.0,-1.4439790613954469,4.540814658476248 -330,8.0,5.0,0.0,4.915840805411357 -330,8.0,8.0,0.0,-18.706293706293707 -330,8.0,9.0,0.0,9.090909090909092 -330,8.0,10.0,0.0,4.807692307692308 -330,9.0,5.0,0.0,1.8561002591115965 -330,9.0,8.0,0.0,9.090909090909092 -330,9.0,9.0,10.842723261141638,-35.98299036419294 -330,9.0,16.0,-3.956039125715353,10.317447719844054 -330,9.0,19.0,-1.7848303152666305,3.98535828943083 -330,9.0,20.0,-5.101853820159654,10.98071411292983 -330,10.0,8.0,0.0,4.807692307692308 -330,10.0,10.0,0.0,-4.807692307692308 -330,11.0,3.0,0.0,4.191255364806866 -330,11.0,11.0,5.047393974936599,-21.25074238629525 -330,11.0,12.0,0.0,7.142857142857143 -330,11.0,14.0,-3.0953961826564296,6.097275864326261 -330,11.0,15.0,-1.9519977922801688,4.104359379111847 -330,12.0,11.0,0.0,7.142857142857143 -330,12.0,12.0,0.0,-7.142857142857143 -330,13.0,13.0,2.4909522639994623,-2.250874059369649 -330,13.0,14.0,-2.4909522639994623,2.250874059369649 -330,14.0,11.0,-3.0953961826564296,6.097275864326261 -330,14.0,13.0,-2.4909522639994623,2.250874059369649 -330,14.0,14.0,7.397149597063095,-12.035568855326606 -330,14.0,17.0,-1.8108011504072024,3.687418931630696 -330,15.0,11.0,-1.9519977922801688,4.104359379111847 -330,15.0,15.0,3.271064728633931,-8.94513365126506 -330,15.0,16.0,-1.3190669363537617,4.8407742721532125 -330,16.0,9.0,-3.956039125715353,10.317447719844054 -330,16.0,15.0,-1.3190669363537617,4.8407742721532125 -330,16.0,16.0,5.275106062069114,-15.158221991997266 -330,17.0,14.0,-1.8108011504072024,3.687418931630696 -330,17.0,17.0,4.886487584415919,-9.906177730909668 -330,17.0,18.0,-3.0756864340087167,6.218758799278971 -330,18.0,17.0,-3.0756864340087167,6.218758799278971 -330,18.0,18.0,8.958039375185187,-17.98346468163191 -330,18.0,19.0,-5.88235294117647,11.76470588235294 -330,19.0,9.0,-1.7848303152666305,3.98535828943083 -330,19.0,18.0,-5.88235294117647,11.76470588235294 -330,19.0,19.0,7.6671832564431,-15.75006417178377 -330,20.0,9.0,-5.101853820159654,10.98071411292983 -330,20.0,20.0,21.876495189895888,-45.10843276170355 -330,20.0,21.0,-16.774641369736234,34.127718648773715 -330,21.0,20.0,-16.774641369736234,34.127718648773715 -330,21.0,21.0,19.31517952199179,-38.08212151184976 -330,21.0,23.0,-2.5405381522555563,3.95440286307604 -330,22.0,22.0,1.4614056064833263,-2.989238740534077 -330,22.0,23.0,-1.4614056064833263,2.989238740534077 -330,23.0,21.0,-2.5405381522555563,3.95440286307604 -330,23.0,22.0,-1.4614056064833263,2.989238740534077 -330,23.0,23.0,5.311836702613133,-9.188263657315172 -330,23.0,24.0,-1.3098929438742493,2.287622053705056 -330,24.0,23.0,-1.3098929438742493,2.287622053705056 -330,24.0,24.0,4.495715080321987,-7.864978761969621 -330,24.0,25.0,-1.2165301194494855,1.8171440463475024 -330,24.0,26.0,-1.9692920169982515,3.760212661917064 -330,25.0,24.0,-1.2165301194494855,1.8171440463475024 -330,25.0,25.0,1.2165301194494855,-1.8171440463475024 -330,26.0,24.0,-1.9692920169982515,3.760212661917064 -330,26.0,26.0,3.652281470778589,-9.46044252232512 -330,26.0,27.0,0.0,2.608731947574922 -330,26.0,28.0,-0.99553355095268,1.881005840357816 -330,26.0,29.0,-0.6874559028276572,1.293971494797717 -330,27.0,5.0,-4.362844058012917,15.463571542897856 -330,27.0,7.0,-1.4439790613954469,4.540814658476248 -330,27.0,26.0,0.0,2.608731947574922 -330,27.0,27.0,5.806823119408364,-22.67145722159613 -330,28.0,26.0,-0.99553355095268,1.881005840357816 -330,28.0,28.0,1.9075867579849564,-3.604364401207048 -330,28.0,29.0,-0.9120532070322764,1.7233585608492326 -330,29.0,26.0,-0.6874559028276572,1.293971494797717 -330,29.0,28.0,-0.9120532070322764,1.7233585608492326 -330,29.0,29.0,1.5995091098599337,-3.0173300556469496 -331,0.0,0.0,6.765516048652632,-21.23160167089863 -331,0.0,1.0,-5.224646179885656,15.646726840803398 -331,0.0,2.0,-1.5408698687669766,5.631674830095234 -331,1.0,0.0,-5.224646179885656,15.646726840803398 -331,1.0,1.0,9.75228216552403,-30.648662892676068 -331,1.0,3.0,-1.7055303166990268,5.1973792282565086 -331,1.0,4.0,-1.1359607881738778,4.772479328281356 -331,1.0,5.0,-1.6861448807654689,5.116477495334806 -331,2.0,0.0,-1.5408698687669766,5.631674830095234 -331,2.0,2.0,9.736318911079088,-29.13794745915803 -331,2.0,3.0,-8.19544904231211,23.5308726290628 -331,3.0,1.0,-1.7055303166990268,5.1973792282565086 -331,3.0,2.0,-8.19544904231211,23.5308726290628 -331,3.0,3.0,16.314103089185693,-55.509410535254254 -331,3.0,5.0,-6.413123730174556,22.31120356548123 -331,3.0,11.0,0.0,4.191255364806866 -331,4.0,1.0,-1.1359607881738778,4.772479328281356 -331,4.0,4.0,4.089980824135861,-12.190647245055052 -331,4.0,6.0,-2.954020035961983,7.449267916773697 -331,5.0,1.0,-1.6861448807654689,5.116477495334806 -331,5.0,3.0,-6.413123730174556,22.31120356548123 -331,5.0,5.0,22.341631269034565,-82.8291478657789 -331,5.0,6.0,-3.590210423980992,11.02611441072814 -331,5.0,7.0,-6.289308176100628,22.0125786163522 -331,5.0,8.0,0.0,4.915840805411357 -331,5.0,9.0,0.0,1.8561002591115965 -331,5.0,27.0,-4.362844058012917,15.463571542897856 -331,6.0,4.0,-2.954020035961983,7.449267916773697 -331,6.0,5.0,-3.590210423980992,11.02611441072814 -331,6.0,6.0,6.544230459942975,-18.45668232750184 -331,7.0,5.0,-6.289308176100628,22.0125786163522 -331,7.0,7.0,7.733287237496075,-26.527493274828448 -331,7.0,27.0,-1.4439790613954469,4.540814658476248 -331,8.0,5.0,0.0,4.915840805411357 -331,8.0,8.0,0.0,-18.706293706293707 -331,8.0,9.0,0.0,9.090909090909092 -331,8.0,10.0,0.0,4.807692307692308 -331,9.0,5.0,0.0,1.8561002591115965 -331,9.0,8.0,0.0,9.090909090909092 -331,9.0,9.0,13.462042814524237,-41.3837606675224 -331,9.0,16.0,-3.956039125715353,10.317447719844054 -331,9.0,19.0,-1.7848303152666305,3.98535828943083 -331,9.0,20.0,-5.101853820159654,10.98071411292983 -331,9.0,21.0,-2.619319553382597,5.400770303329455 -331,10.0,8.0,0.0,4.807692307692308 -331,10.0,10.0,0.0,-4.807692307692308 -331,11.0,3.0,0.0,4.191255364806866 -331,11.0,11.0,6.573961583776156,-24.424167659260668 -331,11.0,12.0,0.0,7.142857142857143 -331,11.0,13.0,-1.5265676088395577,3.1734252729654173 -331,11.0,14.0,-3.0953961826564296,6.097275864326261 -331,11.0,15.0,-1.9519977922801688,4.104359379111847 -331,12.0,11.0,0.0,7.142857142857143 -331,12.0,12.0,0.0,-7.142857142857143 -331,13.0,11.0,-1.5265676088395577,3.1734252729654173 -331,13.0,13.0,1.5265676088395577,-3.1734252729654173 -331,14.0,11.0,-3.0953961826564296,6.097275864326261 -331,14.0,14.0,6.874546281965293,-13.760759672738311 -331,14.0,17.0,-1.8108011504072024,3.687418931630696 -331,14.0,22.0,-1.9683489489016612,3.976064876781356 -331,15.0,11.0,-1.9519977922801688,4.104359379111847 -331,15.0,15.0,3.271064728633931,-8.94513365126506 -331,15.0,16.0,-1.3190669363537617,4.8407742721532125 -331,16.0,9.0,-3.956039125715353,10.317447719844054 -331,16.0,15.0,-1.3190669363537617,4.8407742721532125 -331,16.0,16.0,5.275106062069114,-15.158221991997266 -331,17.0,14.0,-1.8108011504072024,3.687418931630696 -331,17.0,17.0,4.886487584415919,-9.906177730909668 -331,17.0,18.0,-3.0756864340087167,6.218758799278971 -331,18.0,17.0,-3.0756864340087167,6.218758799278971 -331,18.0,18.0,8.958039375185187,-17.98346468163191 -331,18.0,19.0,-5.88235294117647,11.76470588235294 -331,19.0,9.0,-1.7848303152666305,3.98535828943083 -331,19.0,18.0,-5.88235294117647,11.76470588235294 -331,19.0,19.0,7.6671832564431,-15.75006417178377 -331,20.0,9.0,-5.101853820159654,10.98071411292983 -331,20.0,20.0,21.876495189895888,-45.10843276170355 -331,20.0,21.0,-16.774641369736234,34.127718648773715 -331,21.0,9.0,-2.619319553382597,5.400770303329455 -331,21.0,20.0,-16.774641369736234,34.127718648773715 -331,21.0,21.0,21.93449907537439,-43.48289181517921 -331,21.0,23.0,-2.5405381522555563,3.95440286307604 -331,22.0,14.0,-1.9683489489016612,3.976064876781356 -331,22.0,22.0,1.9683489489016612,-3.976064876781356 -331,23.0,21.0,-2.5405381522555563,3.95440286307604 -331,23.0,23.0,3.850431096129806,-6.199024916781094 -331,23.0,24.0,-1.3098929438742493,2.287622053705056 -331,24.0,23.0,-1.3098929438742493,2.287622053705056 -331,24.0,24.0,4.495715080321987,-7.864978761969621 -331,24.0,25.0,-1.2165301194494855,1.8171440463475024 -331,24.0,26.0,-1.9692920169982515,3.760212661917064 -331,25.0,24.0,-1.2165301194494855,1.8171440463475024 -331,25.0,25.0,1.2165301194494855,-1.8171440463475024 -331,26.0,24.0,-1.9692920169982515,3.760212661917064 -331,26.0,26.0,3.652281470778589,-9.46044252232512 -331,26.0,27.0,0.0,2.608731947574922 -331,26.0,28.0,-0.99553355095268,1.881005840357816 -331,26.0,29.0,-0.6874559028276572,1.293971494797717 -331,27.0,5.0,-4.362844058012917,15.463571542897856 -331,27.0,7.0,-1.4439790613954469,4.540814658476248 -331,27.0,26.0,0.0,2.608731947574922 -331,27.0,27.0,5.806823119408364,-22.67145722159613 -331,28.0,26.0,-0.99553355095268,1.881005840357816 -331,28.0,28.0,1.9075867579849564,-3.604364401207048 -331,28.0,29.0,-0.9120532070322764,1.7233585608492326 -331,29.0,26.0,-0.6874559028276572,1.293971494797717 -331,29.0,28.0,-0.9120532070322764,1.7233585608492326 -331,29.0,29.0,1.5995091098599337,-3.0173300556469496 -332,0.0,0.0,6.765516048652632,-21.23160167089863 -332,0.0,1.0,-5.224646179885656,15.646726840803398 -332,0.0,2.0,-1.5408698687669766,5.631674830095234 -332,1.0,0.0,-5.224646179885656,15.646726840803398 -332,1.0,1.0,8.066137284758561,-25.55088539734126 -332,1.0,3.0,-1.7055303166990268,5.1973792282565086 -332,1.0,4.0,-1.1359607881738778,4.772479328281356 -332,2.0,0.0,-1.5408698687669766,5.631674830095234 -332,2.0,2.0,1.5408698687669766,-5.611274830095233 -332,3.0,1.0,-1.7055303166990268,5.1973792282565086 -332,3.0,3.0,8.118654046873583,-31.982737906191456 -332,3.0,5.0,-6.413123730174556,22.31120356548123 -332,3.0,11.0,0.0,4.191255364806866 -332,4.0,1.0,-1.1359607881738778,4.772479328281356 -332,4.0,4.0,4.089980824135861,-12.190647245055052 -332,4.0,6.0,-2.954020035961983,7.449267916773697 -332,5.0,3.0,-6.413123730174556,22.31120356548123 -332,5.0,5.0,14.366178212168466,-55.723291754091896 -332,5.0,6.0,-3.590210423980992,11.02611441072814 -332,5.0,8.0,0.0,4.915840805411357 -332,5.0,9.0,0.0,1.8561002591115965 -332,5.0,27.0,-4.362844058012917,15.463571542897856 -332,6.0,4.0,-2.954020035961983,7.449267916773697 -332,6.0,5.0,-3.590210423980992,11.02611441072814 -332,6.0,6.0,6.544230459942975,-18.45668232750184 -332,7.0,7.0,1.4439790613954469,-4.519414658476248 -332,7.0,27.0,-1.4439790613954469,4.540814658476248 -332,8.0,5.0,0.0,4.915840805411357 -332,8.0,8.0,0.0,-18.706293706293707 -332,8.0,9.0,0.0,9.090909090909092 -332,8.0,10.0,0.0,4.807692307692308 -332,9.0,5.0,0.0,1.8561002591115965 -332,9.0,8.0,0.0,9.090909090909092 -332,9.0,9.0,10.842723261141638,-35.98299036419294 -332,9.0,16.0,-3.956039125715353,10.317447719844054 -332,9.0,19.0,-1.7848303152666305,3.98535828943083 -332,9.0,20.0,-5.101853820159654,10.98071411292983 -332,10.0,8.0,0.0,4.807692307692308 -332,10.0,10.0,0.0,-4.807692307692308 -332,11.0,3.0,0.0,4.191255364806866 -332,11.0,11.0,6.573961583776156,-24.424167659260668 -332,11.0,12.0,0.0,7.142857142857143 -332,11.0,13.0,-1.5265676088395577,3.1734252729654173 -332,11.0,14.0,-3.0953961826564296,6.097275864326261 -332,11.0,15.0,-1.9519977922801688,4.104359379111847 -332,12.0,11.0,0.0,7.142857142857143 -332,12.0,12.0,0.0,-7.142857142857143 -332,13.0,11.0,-1.5265676088395577,3.1734252729654173 -332,13.0,13.0,4.01751987283902,-5.424299332335067 -332,13.0,14.0,-2.4909522639994623,2.250874059369649 -332,14.0,11.0,-3.0953961826564296,6.097275864326261 -332,14.0,13.0,-2.4909522639994623,2.250874059369649 -332,14.0,14.0,9.365498545964757,-16.01163373210796 -332,14.0,17.0,-1.8108011504072024,3.687418931630696 -332,14.0,22.0,-1.9683489489016612,3.976064876781356 -332,15.0,11.0,-1.9519977922801688,4.104359379111847 -332,15.0,15.0,3.271064728633931,-8.94513365126506 -332,15.0,16.0,-1.3190669363537617,4.8407742721532125 -332,16.0,9.0,-3.956039125715353,10.317447719844054 -332,16.0,15.0,-1.3190669363537617,4.8407742721532125 -332,16.0,16.0,5.275106062069114,-15.158221991997266 -332,17.0,14.0,-1.8108011504072024,3.687418931630696 -332,17.0,17.0,4.886487584415919,-9.906177730909668 -332,17.0,18.0,-3.0756864340087167,6.218758799278971 -332,18.0,17.0,-3.0756864340087167,6.218758799278971 -332,18.0,18.0,3.0756864340087167,-6.218758799278971 -332,19.0,9.0,-1.7848303152666305,3.98535828943083 -332,19.0,19.0,1.7848303152666305,-3.98535828943083 -332,20.0,9.0,-5.101853820159654,10.98071411292983 -332,20.0,20.0,21.876495189895888,-45.10843276170355 -332,20.0,21.0,-16.774641369736234,34.127718648773715 -332,21.0,20.0,-16.774641369736234,34.127718648773715 -332,21.0,21.0,19.31517952199179,-38.08212151184976 -332,21.0,23.0,-2.5405381522555563,3.95440286307604 -332,22.0,14.0,-1.9683489489016612,3.976064876781356 -332,22.0,22.0,3.429754555384988,-6.965303617315433 -332,22.0,23.0,-1.4614056064833263,2.989238740534077 -332,23.0,21.0,-2.5405381522555563,3.95440286307604 -332,23.0,22.0,-1.4614056064833263,2.989238740534077 -332,23.0,23.0,5.311836702613133,-9.188263657315172 -332,23.0,24.0,-1.3098929438742493,2.287622053705056 -332,24.0,23.0,-1.3098929438742493,2.287622053705056 -332,24.0,24.0,4.495715080321987,-7.864978761969621 -332,24.0,25.0,-1.2165301194494855,1.8171440463475024 -332,24.0,26.0,-1.9692920169982515,3.760212661917064 -332,25.0,24.0,-1.2165301194494855,1.8171440463475024 -332,25.0,25.0,1.2165301194494855,-1.8171440463475024 -332,26.0,24.0,-1.9692920169982515,3.760212661917064 -332,26.0,26.0,3.652281470778589,-9.46044252232512 -332,26.0,27.0,0.0,2.608731947574922 -332,26.0,28.0,-0.99553355095268,1.881005840357816 -332,26.0,29.0,-0.6874559028276572,1.293971494797717 -332,27.0,5.0,-4.362844058012917,15.463571542897856 -332,27.0,7.0,-1.4439790613954469,4.540814658476248 -332,27.0,26.0,0.0,2.608731947574922 -332,27.0,27.0,5.806823119408364,-22.67145722159613 -332,28.0,26.0,-0.99553355095268,1.881005840357816 -332,28.0,28.0,1.9075867579849564,-3.604364401207048 -332,28.0,29.0,-0.9120532070322764,1.7233585608492326 -332,29.0,26.0,-0.6874559028276572,1.293971494797717 -332,29.0,28.0,-0.9120532070322764,1.7233585608492326 -332,29.0,29.0,1.5995091098599337,-3.0173300556469496 -333,0.0,0.0,5.224646179885656,-15.620326840803395 -333,0.0,1.0,-5.224646179885656,15.646726840803398 -333,1.0,0.0,-5.224646179885656,15.646726840803398 -333,1.0,1.0,9.75228216552403,-30.648662892676068 -333,1.0,3.0,-1.7055303166990268,5.1973792282565086 -333,1.0,4.0,-1.1359607881738778,4.772479328281356 -333,1.0,5.0,-1.6861448807654689,5.116477495334806 -333,2.0,2.0,8.19544904231211,-23.5266726290628 -333,2.0,3.0,-8.19544904231211,23.5308726290628 -333,3.0,1.0,-1.7055303166990268,5.1973792282565086 -333,3.0,2.0,-8.19544904231211,23.5308726290628 -333,3.0,3.0,16.314103089185693,-55.509410535254254 -333,3.0,5.0,-6.413123730174556,22.31120356548123 -333,3.0,11.0,0.0,4.191255364806866 -333,4.0,1.0,-1.1359607881738778,4.772479328281356 -333,4.0,4.0,4.089980824135861,-12.190647245055052 -333,4.0,6.0,-2.954020035961983,7.449267916773697 -333,5.0,1.0,-1.6861448807654689,5.116477495334806 -333,5.0,3.0,-6.413123730174556,22.31120356548123 -333,5.0,5.0,22.341631269034565,-82.8291478657789 -333,5.0,6.0,-3.590210423980992,11.02611441072814 -333,5.0,7.0,-6.289308176100628,22.0125786163522 -333,5.0,8.0,0.0,4.915840805411357 -333,5.0,9.0,0.0,1.8561002591115965 -333,5.0,27.0,-4.362844058012917,15.463571542897856 -333,6.0,4.0,-2.954020035961983,7.449267916773697 -333,6.0,5.0,-3.590210423980992,11.02611441072814 -333,6.0,6.0,6.544230459942975,-18.45668232750184 -333,7.0,5.0,-6.289308176100628,22.0125786163522 -333,7.0,7.0,7.733287237496075,-26.527493274828448 -333,7.0,27.0,-1.4439790613954469,4.540814658476248 -333,8.0,5.0,0.0,4.915840805411357 -333,8.0,8.0,0.0,-18.706293706293707 -333,8.0,9.0,0.0,9.090909090909092 -333,8.0,10.0,0.0,4.807692307692308 -333,9.0,5.0,0.0,1.8561002591115965 -333,9.0,8.0,0.0,9.090909090909092 -333,9.0,9.0,8.36018899436458,-30.40304655459257 -333,9.0,16.0,-3.956039125715353,10.317447719844054 -333,9.0,19.0,-1.7848303152666305,3.98535828943083 -333,9.0,21.0,-2.619319553382597,5.400770303329455 -333,10.0,8.0,0.0,4.807692307692308 -333,10.0,10.0,0.0,-4.807692307692308 -333,11.0,3.0,0.0,4.191255364806866 -333,11.0,11.0,6.573961583776156,-24.424167659260668 -333,11.0,12.0,0.0,7.142857142857143 -333,11.0,13.0,-1.5265676088395577,3.1734252729654173 -333,11.0,14.0,-3.0953961826564296,6.097275864326261 -333,11.0,15.0,-1.9519977922801688,4.104359379111847 -333,12.0,11.0,0.0,7.142857142857143 -333,12.0,12.0,0.0,-7.142857142857143 -333,13.0,11.0,-1.5265676088395577,3.1734252729654173 -333,13.0,13.0,4.01751987283902,-5.424299332335067 -333,13.0,14.0,-2.4909522639994623,2.250874059369649 -333,14.0,11.0,-3.0953961826564296,6.097275864326261 -333,14.0,13.0,-2.4909522639994623,2.250874059369649 -333,14.0,14.0,9.365498545964757,-16.01163373210796 -333,14.0,17.0,-1.8108011504072024,3.687418931630696 -333,14.0,22.0,-1.9683489489016612,3.976064876781356 -333,15.0,11.0,-1.9519977922801688,4.104359379111847 -333,15.0,15.0,3.271064728633931,-8.94513365126506 -333,15.0,16.0,-1.3190669363537617,4.8407742721532125 -333,16.0,9.0,-3.956039125715353,10.317447719844054 -333,16.0,15.0,-1.3190669363537617,4.8407742721532125 -333,16.0,16.0,5.275106062069114,-15.158221991997266 -333,17.0,14.0,-1.8108011504072024,3.687418931630696 -333,17.0,17.0,4.886487584415919,-9.906177730909668 -333,17.0,18.0,-3.0756864340087167,6.218758799278971 -333,18.0,17.0,-3.0756864340087167,6.218758799278971 -333,18.0,18.0,8.958039375185187,-17.98346468163191 -333,18.0,19.0,-5.88235294117647,11.76470588235294 -333,19.0,9.0,-1.7848303152666305,3.98535828943083 -333,19.0,18.0,-5.88235294117647,11.76470588235294 -333,19.0,19.0,7.6671832564431,-15.75006417178377 -333,20.0,20.0,16.774641369736234,-34.127718648773715 -333,20.0,21.0,-16.774641369736234,34.127718648773715 -333,21.0,9.0,-2.619319553382597,5.400770303329455 -333,21.0,20.0,-16.774641369736234,34.127718648773715 -333,21.0,21.0,21.93449907537439,-43.48289181517921 -333,21.0,23.0,-2.5405381522555563,3.95440286307604 -333,22.0,14.0,-1.9683489489016612,3.976064876781356 -333,22.0,22.0,3.429754555384988,-6.965303617315433 -333,22.0,23.0,-1.4614056064833263,2.989238740534077 -333,23.0,21.0,-2.5405381522555563,3.95440286307604 -333,23.0,22.0,-1.4614056064833263,2.989238740534077 -333,23.0,23.0,5.311836702613133,-9.188263657315172 -333,23.0,24.0,-1.3098929438742493,2.287622053705056 -333,24.0,23.0,-1.3098929438742493,2.287622053705056 -333,24.0,24.0,4.495715080321987,-7.864978761969621 -333,24.0,25.0,-1.2165301194494855,1.8171440463475024 -333,24.0,26.0,-1.9692920169982515,3.760212661917064 -333,25.0,24.0,-1.2165301194494855,1.8171440463475024 -333,25.0,25.0,1.2165301194494855,-1.8171440463475024 -333,26.0,24.0,-1.9692920169982515,3.760212661917064 -333,26.0,26.0,3.652281470778589,-9.46044252232512 -333,26.0,27.0,0.0,2.608731947574922 -333,26.0,28.0,-0.99553355095268,1.881005840357816 -333,26.0,29.0,-0.6874559028276572,1.293971494797717 -333,27.0,5.0,-4.362844058012917,15.463571542897856 -333,27.0,7.0,-1.4439790613954469,4.540814658476248 -333,27.0,26.0,0.0,2.608731947574922 -333,27.0,27.0,5.806823119408364,-22.67145722159613 -333,28.0,26.0,-0.99553355095268,1.881005840357816 -333,28.0,28.0,1.9075867579849564,-3.604364401207048 -333,28.0,29.0,-0.9120532070322764,1.7233585608492326 -333,29.0,26.0,-0.6874559028276572,1.293971494797717 -333,29.0,28.0,-0.9120532070322764,1.7233585608492326 -333,29.0,29.0,1.5995091098599337,-3.0173300556469496 -334,0.0,0.0,1.5408698687669766,-5.611274830095233 -334,0.0,2.0,-1.5408698687669766,5.631674830095234 -334,1.0,1.0,4.527635985638374,-15.028336051872673 -334,1.0,3.0,-1.7055303166990268,5.1973792282565086 -334,1.0,4.0,-1.1359607881738778,4.772479328281356 -334,1.0,5.0,-1.6861448807654689,5.116477495334806 -334,2.0,0.0,-1.5408698687669766,5.631674830095234 -334,2.0,2.0,9.736318911079088,-29.13794745915803 -334,2.0,3.0,-8.19544904231211,23.5308726290628 -334,3.0,1.0,-1.7055303166990268,5.1973792282565086 -334,3.0,2.0,-8.19544904231211,23.5308726290628 -334,3.0,3.0,16.314103089185693,-55.509410535254254 -334,3.0,5.0,-6.413123730174556,22.31120356548123 -334,3.0,11.0,0.0,4.191255364806866 -334,4.0,1.0,-1.1359607881738778,4.772479328281356 -334,4.0,4.0,4.089980824135861,-12.190647245055052 -334,4.0,6.0,-2.954020035961983,7.449267916773697 -334,5.0,1.0,-1.6861448807654689,5.116477495334806 -334,5.0,3.0,-6.413123730174556,22.31120356548123 -334,5.0,5.0,22.341631269034565,-82.8291478657789 -334,5.0,6.0,-3.590210423980992,11.02611441072814 -334,5.0,7.0,-6.289308176100628,22.0125786163522 -334,5.0,8.0,0.0,4.915840805411357 -334,5.0,9.0,0.0,1.8561002591115965 -334,5.0,27.0,-4.362844058012917,15.463571542897856 -334,6.0,4.0,-2.954020035961983,7.449267916773697 -334,6.0,5.0,-3.590210423980992,11.02611441072814 -334,6.0,6.0,6.544230459942975,-18.45668232750184 -334,7.0,5.0,-6.289308176100628,22.0125786163522 -334,7.0,7.0,7.733287237496075,-26.527493274828448 -334,7.0,27.0,-1.4439790613954469,4.540814658476248 -334,8.0,5.0,0.0,4.915840805411357 -334,8.0,8.0,0.0,-18.706293706293707 -334,8.0,9.0,0.0,9.090909090909092 -334,8.0,10.0,0.0,4.807692307692308 -334,9.0,5.0,0.0,1.8561002591115965 -334,9.0,8.0,0.0,9.090909090909092 -334,9.0,9.0,13.462042814524237,-41.3837606675224 -334,9.0,16.0,-3.956039125715353,10.317447719844054 -334,9.0,19.0,-1.7848303152666305,3.98535828943083 -334,9.0,20.0,-5.101853820159654,10.98071411292983 -334,9.0,21.0,-2.619319553382597,5.400770303329455 -334,10.0,8.0,0.0,4.807692307692308 -334,10.0,10.0,0.0,-4.807692307692308 -334,11.0,3.0,0.0,4.191255364806866 -334,11.0,11.0,5.047393974936599,-21.25074238629525 -334,11.0,12.0,0.0,7.142857142857143 -334,11.0,14.0,-3.0953961826564296,6.097275864326261 -334,11.0,15.0,-1.9519977922801688,4.104359379111847 -334,12.0,11.0,0.0,7.142857142857143 -334,12.0,12.0,0.0,-7.142857142857143 -334,13.0,13.0,2.4909522639994623,-2.250874059369649 -334,13.0,14.0,-2.4909522639994623,2.250874059369649 -334,14.0,11.0,-3.0953961826564296,6.097275864326261 -334,14.0,13.0,-2.4909522639994623,2.250874059369649 -334,14.0,14.0,9.365498545964757,-16.01163373210796 -334,14.0,17.0,-1.8108011504072024,3.687418931630696 -334,14.0,22.0,-1.9683489489016612,3.976064876781356 -334,15.0,11.0,-1.9519977922801688,4.104359379111847 -334,15.0,15.0,3.271064728633931,-8.94513365126506 -334,15.0,16.0,-1.3190669363537617,4.8407742721532125 -334,16.0,9.0,-3.956039125715353,10.317447719844054 -334,16.0,15.0,-1.3190669363537617,4.8407742721532125 -334,16.0,16.0,5.275106062069114,-15.158221991997266 -334,17.0,14.0,-1.8108011504072024,3.687418931630696 -334,17.0,17.0,4.886487584415919,-9.906177730909668 -334,17.0,18.0,-3.0756864340087167,6.218758799278971 -334,18.0,17.0,-3.0756864340087167,6.218758799278971 -334,18.0,18.0,3.0756864340087167,-6.218758799278971 -334,19.0,9.0,-1.7848303152666305,3.98535828943083 -334,19.0,19.0,1.7848303152666305,-3.98535828943083 -334,20.0,9.0,-5.101853820159654,10.98071411292983 -334,20.0,20.0,21.876495189895888,-45.10843276170355 -334,20.0,21.0,-16.774641369736234,34.127718648773715 -334,21.0,9.0,-2.619319553382597,5.400770303329455 -334,21.0,20.0,-16.774641369736234,34.127718648773715 -334,21.0,21.0,21.93449907537439,-43.48289181517921 -334,21.0,23.0,-2.5405381522555563,3.95440286307604 -334,22.0,14.0,-1.9683489489016612,3.976064876781356 -334,22.0,22.0,3.429754555384988,-6.965303617315433 -334,22.0,23.0,-1.4614056064833263,2.989238740534077 -334,23.0,21.0,-2.5405381522555563,3.95440286307604 -334,23.0,22.0,-1.4614056064833263,2.989238740534077 -334,23.0,23.0,5.311836702613133,-9.188263657315172 -334,23.0,24.0,-1.3098929438742493,2.287622053705056 -334,24.0,23.0,-1.3098929438742493,2.287622053705056 -334,24.0,24.0,4.495715080321987,-7.864978761969621 -334,24.0,25.0,-1.2165301194494855,1.8171440463475024 -334,24.0,26.0,-1.9692920169982515,3.760212661917064 -334,25.0,24.0,-1.2165301194494855,1.8171440463475024 -334,25.0,25.0,1.2165301194494855,-1.8171440463475024 -334,26.0,24.0,-1.9692920169982515,3.760212661917064 -334,26.0,26.0,3.652281470778589,-9.46044252232512 -334,26.0,27.0,0.0,2.608731947574922 -334,26.0,28.0,-0.99553355095268,1.881005840357816 -334,26.0,29.0,-0.6874559028276572,1.293971494797717 -334,27.0,5.0,-4.362844058012917,15.463571542897856 -334,27.0,7.0,-1.4439790613954469,4.540814658476248 -334,27.0,26.0,0.0,2.608731947574922 -334,27.0,27.0,5.806823119408364,-22.67145722159613 -334,28.0,26.0,-0.99553355095268,1.881005840357816 -334,28.0,28.0,1.9075867579849564,-3.604364401207048 -334,28.0,29.0,-0.9120532070322764,1.7233585608492326 -334,29.0,26.0,-0.6874559028276572,1.293971494797717 -334,29.0,28.0,-0.9120532070322764,1.7233585608492326 -334,29.0,29.0,1.5995091098599337,-3.0173300556469496 -335,0.0,0.0,6.765516048652632,-21.23160167089863 -335,0.0,1.0,-5.224646179885656,15.646726840803398 -335,0.0,2.0,-1.5408698687669766,5.631674830095234 -335,1.0,0.0,-5.224646179885656,15.646726840803398 -335,1.0,1.0,9.75228216552403,-30.648662892676068 -335,1.0,3.0,-1.7055303166990268,5.1973792282565086 -335,1.0,4.0,-1.1359607881738778,4.772479328281356 -335,1.0,5.0,-1.6861448807654689,5.116477495334806 -335,2.0,0.0,-1.5408698687669766,5.631674830095234 -335,2.0,2.0,9.736318911079088,-29.13794745915803 -335,2.0,3.0,-8.19544904231211,23.5308726290628 -335,3.0,1.0,-1.7055303166990268,5.1973792282565086 -335,3.0,2.0,-8.19544904231211,23.5308726290628 -335,3.0,3.0,16.314103089185693,-55.509410535254254 -335,3.0,5.0,-6.413123730174556,22.31120356548123 -335,3.0,11.0,0.0,4.191255364806866 -335,4.0,1.0,-1.1359607881738778,4.772479328281356 -335,4.0,4.0,4.089980824135861,-12.190647245055052 -335,4.0,6.0,-2.954020035961983,7.449267916773697 -335,5.0,1.0,-1.6861448807654689,5.116477495334806 -335,5.0,3.0,-6.413123730174556,22.31120356548123 -335,5.0,5.0,18.75142084505357,-71.81153345505078 -335,5.0,7.0,-6.289308176100628,22.0125786163522 -335,5.0,8.0,0.0,4.915840805411357 -335,5.0,9.0,0.0,1.8561002591115965 -335,5.0,27.0,-4.362844058012917,15.463571542897856 -335,6.0,4.0,-2.954020035961983,7.449267916773697 -335,6.0,6.0,2.954020035961983,-7.439067916773697 -335,7.0,5.0,-6.289308176100628,22.0125786163522 -335,7.0,7.0,7.733287237496075,-26.527493274828448 -335,7.0,27.0,-1.4439790613954469,4.540814658476248 -335,8.0,5.0,0.0,4.915840805411357 -335,8.0,8.0,0.0,-18.706293706293707 -335,8.0,9.0,0.0,9.090909090909092 -335,8.0,10.0,0.0,4.807692307692308 -335,9.0,5.0,0.0,1.8561002591115965 -335,9.0,8.0,0.0,9.090909090909092 -335,9.0,9.0,13.462042814524237,-41.3837606675224 -335,9.0,16.0,-3.956039125715353,10.317447719844054 -335,9.0,19.0,-1.7848303152666305,3.98535828943083 -335,9.0,20.0,-5.101853820159654,10.98071411292983 -335,9.0,21.0,-2.619319553382597,5.400770303329455 -335,10.0,8.0,0.0,4.807692307692308 -335,10.0,10.0,0.0,-4.807692307692308 -335,11.0,3.0,0.0,4.191255364806866 -335,11.0,11.0,6.573961583776156,-24.424167659260668 -335,11.0,12.0,0.0,7.142857142857143 -335,11.0,13.0,-1.5265676088395577,3.1734252729654173 -335,11.0,14.0,-3.0953961826564296,6.097275864326261 -335,11.0,15.0,-1.9519977922801688,4.104359379111847 -335,12.0,11.0,0.0,7.142857142857143 -335,12.0,12.0,0.0,-7.142857142857143 -335,13.0,11.0,-1.5265676088395577,3.1734252729654173 -335,13.0,13.0,4.01751987283902,-5.424299332335067 -335,13.0,14.0,-2.4909522639994623,2.250874059369649 -335,14.0,11.0,-3.0953961826564296,6.097275864326261 -335,14.0,13.0,-2.4909522639994623,2.250874059369649 -335,14.0,14.0,9.365498545964757,-16.01163373210796 -335,14.0,17.0,-1.8108011504072024,3.687418931630696 -335,14.0,22.0,-1.9683489489016612,3.976064876781356 -335,15.0,11.0,-1.9519977922801688,4.104359379111847 -335,15.0,15.0,3.271064728633931,-8.94513365126506 -335,15.0,16.0,-1.3190669363537617,4.8407742721532125 -335,16.0,9.0,-3.956039125715353,10.317447719844054 -335,16.0,15.0,-1.3190669363537617,4.8407742721532125 -335,16.0,16.0,5.275106062069114,-15.158221991997266 -335,17.0,14.0,-1.8108011504072024,3.687418931630696 -335,17.0,17.0,4.886487584415919,-9.906177730909668 -335,17.0,18.0,-3.0756864340087167,6.218758799278971 -335,18.0,17.0,-3.0756864340087167,6.218758799278971 -335,18.0,18.0,8.958039375185187,-17.98346468163191 -335,18.0,19.0,-5.88235294117647,11.76470588235294 -335,19.0,9.0,-1.7848303152666305,3.98535828943083 -335,19.0,18.0,-5.88235294117647,11.76470588235294 -335,19.0,19.0,7.6671832564431,-15.75006417178377 -335,20.0,9.0,-5.101853820159654,10.98071411292983 -335,20.0,20.0,21.876495189895888,-45.10843276170355 -335,20.0,21.0,-16.774641369736234,34.127718648773715 -335,21.0,9.0,-2.619319553382597,5.400770303329455 -335,21.0,20.0,-16.774641369736234,34.127718648773715 -335,21.0,21.0,21.93449907537439,-43.48289181517921 -335,21.0,23.0,-2.5405381522555563,3.95440286307604 -335,22.0,14.0,-1.9683489489016612,3.976064876781356 -335,22.0,22.0,1.9683489489016612,-3.976064876781356 -335,23.0,21.0,-2.5405381522555563,3.95440286307604 -335,23.0,23.0,3.850431096129806,-6.199024916781094 -335,23.0,24.0,-1.3098929438742493,2.287622053705056 -335,24.0,23.0,-1.3098929438742493,2.287622053705056 -335,24.0,24.0,4.495715080321987,-7.864978761969621 -335,24.0,25.0,-1.2165301194494855,1.8171440463475024 -335,24.0,26.0,-1.9692920169982515,3.760212661917064 -335,25.0,24.0,-1.2165301194494855,1.8171440463475024 -335,25.0,25.0,1.2165301194494855,-1.8171440463475024 -335,26.0,24.0,-1.9692920169982515,3.760212661917064 -335,26.0,26.0,3.652281470778589,-9.46044252232512 -335,26.0,27.0,0.0,2.608731947574922 -335,26.0,28.0,-0.99553355095268,1.881005840357816 -335,26.0,29.0,-0.6874559028276572,1.293971494797717 -335,27.0,5.0,-4.362844058012917,15.463571542897856 -335,27.0,7.0,-1.4439790613954469,4.540814658476248 -335,27.0,26.0,0.0,2.608731947574922 -335,27.0,27.0,5.806823119408364,-22.67145722159613 -335,28.0,26.0,-0.99553355095268,1.881005840357816 -335,28.0,28.0,1.9075867579849564,-3.604364401207048 -335,28.0,29.0,-0.9120532070322764,1.7233585608492326 -335,29.0,26.0,-0.6874559028276572,1.293971494797717 -335,29.0,28.0,-0.9120532070322764,1.7233585608492326 -335,29.0,29.0,1.5995091098599337,-3.0173300556469496 -336,0.0,0.0,6.765516048652632,-21.23160167089863 -336,0.0,1.0,-5.224646179885656,15.646726840803398 -336,0.0,2.0,-1.5408698687669766,5.631674830095234 -336,1.0,0.0,-5.224646179885656,15.646726840803398 -336,1.0,1.0,9.75228216552403,-30.648662892676068 -336,1.0,3.0,-1.7055303166990268,5.1973792282565086 -336,1.0,4.0,-1.1359607881738778,4.772479328281356 -336,1.0,5.0,-1.6861448807654689,5.116477495334806 -336,2.0,0.0,-1.5408698687669766,5.631674830095234 -336,2.0,2.0,9.736318911079088,-29.13794745915803 -336,2.0,3.0,-8.19544904231211,23.5308726290628 -336,3.0,1.0,-1.7055303166990268,5.1973792282565086 -336,3.0,2.0,-8.19544904231211,23.5308726290628 -336,3.0,3.0,16.314103089185693,-51.01235542280054 -336,3.0,5.0,-6.413123730174556,22.31120356548123 -336,4.0,1.0,-1.1359607881738778,4.772479328281356 -336,4.0,4.0,4.089980824135861,-12.190647245055052 -336,4.0,6.0,-2.954020035961983,7.449267916773697 -336,5.0,1.0,-1.6861448807654689,5.116477495334806 -336,5.0,3.0,-6.413123730174556,22.31120356548123 -336,5.0,5.0,18.75142084505357,-71.81153345505078 -336,5.0,7.0,-6.289308176100628,22.0125786163522 -336,5.0,8.0,0.0,4.915840805411357 -336,5.0,9.0,0.0,1.8561002591115965 -336,5.0,27.0,-4.362844058012917,15.463571542897856 -336,6.0,4.0,-2.954020035961983,7.449267916773697 -336,6.0,6.0,2.954020035961983,-7.439067916773697 -336,7.0,5.0,-6.289308176100628,22.0125786163522 -336,7.0,7.0,7.733287237496075,-26.527493274828448 -336,7.0,27.0,-1.4439790613954469,4.540814658476248 -336,8.0,5.0,0.0,4.915840805411357 -336,8.0,8.0,0.0,-18.706293706293707 -336,8.0,9.0,0.0,9.090909090909092 -336,8.0,10.0,0.0,4.807692307692308 -336,9.0,5.0,0.0,1.8561002591115965 -336,9.0,8.0,0.0,9.090909090909092 -336,9.0,9.0,13.462042814524237,-41.3837606675224 -336,9.0,16.0,-3.956039125715353,10.317447719844054 -336,9.0,19.0,-1.7848303152666305,3.98535828943083 -336,9.0,20.0,-5.101853820159654,10.98071411292983 -336,9.0,21.0,-2.619319553382597,5.400770303329455 -336,10.0,8.0,0.0,4.807692307692308 -336,10.0,10.0,0.0,-4.807692307692308 -336,11.0,11.0,6.573961583776156,-20.517917659260668 -336,11.0,12.0,0.0,7.142857142857143 -336,11.0,13.0,-1.5265676088395577,3.1734252729654173 -336,11.0,14.0,-3.0953961826564296,6.097275864326261 -336,11.0,15.0,-1.9519977922801688,4.104359379111847 -336,12.0,11.0,0.0,7.142857142857143 -336,12.0,12.0,0.0,-7.142857142857143 -336,13.0,11.0,-1.5265676088395577,3.1734252729654173 -336,13.0,13.0,4.01751987283902,-5.424299332335067 -336,13.0,14.0,-2.4909522639994623,2.250874059369649 -336,14.0,11.0,-3.0953961826564296,6.097275864326261 -336,14.0,13.0,-2.4909522639994623,2.250874059369649 -336,14.0,14.0,9.365498545964757,-16.01163373210796 -336,14.0,17.0,-1.8108011504072024,3.687418931630696 -336,14.0,22.0,-1.9683489489016612,3.976064876781356 -336,15.0,11.0,-1.9519977922801688,4.104359379111847 -336,15.0,15.0,3.271064728633931,-8.94513365126506 -336,15.0,16.0,-1.3190669363537617,4.8407742721532125 -336,16.0,9.0,-3.956039125715353,10.317447719844054 -336,16.0,15.0,-1.3190669363537617,4.8407742721532125 -336,16.0,16.0,5.275106062069114,-15.158221991997266 -336,17.0,14.0,-1.8108011504072024,3.687418931630696 -336,17.0,17.0,4.886487584415919,-9.906177730909668 -336,17.0,18.0,-3.0756864340087167,6.218758799278971 -336,18.0,17.0,-3.0756864340087167,6.218758799278971 -336,18.0,18.0,8.958039375185187,-17.98346468163191 -336,18.0,19.0,-5.88235294117647,11.76470588235294 -336,19.0,9.0,-1.7848303152666305,3.98535828943083 -336,19.0,18.0,-5.88235294117647,11.76470588235294 -336,19.0,19.0,7.6671832564431,-15.75006417178377 -336,20.0,9.0,-5.101853820159654,10.98071411292983 -336,20.0,20.0,21.876495189895888,-45.10843276170355 -336,20.0,21.0,-16.774641369736234,34.127718648773715 -336,21.0,9.0,-2.619319553382597,5.400770303329455 -336,21.0,20.0,-16.774641369736234,34.127718648773715 -336,21.0,21.0,21.93449907537439,-43.48289181517921 -336,21.0,23.0,-2.5405381522555563,3.95440286307604 -336,22.0,14.0,-1.9683489489016612,3.976064876781356 -336,22.0,22.0,1.9683489489016612,-3.976064876781356 -336,23.0,21.0,-2.5405381522555563,3.95440286307604 -336,23.0,23.0,3.850431096129806,-6.199024916781094 -336,23.0,24.0,-1.3098929438742493,2.287622053705056 -336,24.0,23.0,-1.3098929438742493,2.287622053705056 -336,24.0,24.0,4.495715080321987,-7.864978761969621 -336,24.0,25.0,-1.2165301194494855,1.8171440463475024 -336,24.0,26.0,-1.9692920169982515,3.760212661917064 -336,25.0,24.0,-1.2165301194494855,1.8171440463475024 -336,25.0,25.0,1.2165301194494855,-1.8171440463475024 -336,26.0,24.0,-1.9692920169982515,3.760212661917064 -336,26.0,26.0,3.652281470778589,-9.46044252232512 -336,26.0,27.0,0.0,2.608731947574922 -336,26.0,28.0,-0.99553355095268,1.881005840357816 -336,26.0,29.0,-0.6874559028276572,1.293971494797717 -336,27.0,5.0,-4.362844058012917,15.463571542897856 -336,27.0,7.0,-1.4439790613954469,4.540814658476248 -336,27.0,26.0,0.0,2.608731947574922 -336,27.0,27.0,5.806823119408364,-22.67145722159613 -336,28.0,26.0,-0.99553355095268,1.881005840357816 -336,28.0,28.0,1.9075867579849564,-3.604364401207048 -336,28.0,29.0,-0.9120532070322764,1.7233585608492326 -336,29.0,26.0,-0.6874559028276572,1.293971494797717 -336,29.0,28.0,-0.9120532070322764,1.7233585608492326 -336,29.0,29.0,1.5995091098599337,-3.0173300556469496 -337,0.0,0.0,6.765516048652632,-21.23160167089863 -337,0.0,1.0,-5.224646179885656,15.646726840803398 -337,0.0,2.0,-1.5408698687669766,5.631674830095234 -337,1.0,0.0,-5.224646179885656,15.646726840803398 -337,1.0,1.0,9.75228216552403,-30.648662892676068 -337,1.0,3.0,-1.7055303166990268,5.1973792282565086 -337,1.0,4.0,-1.1359607881738778,4.772479328281356 -337,1.0,5.0,-1.6861448807654689,5.116477495334806 -337,2.0,0.0,-1.5408698687669766,5.631674830095234 -337,2.0,2.0,9.736318911079088,-29.13794745915803 -337,2.0,3.0,-8.19544904231211,23.5308726290628 -337,3.0,1.0,-1.7055303166990268,5.1973792282565086 -337,3.0,2.0,-8.19544904231211,23.5308726290628 -337,3.0,3.0,16.314103089185693,-55.509410535254254 -337,3.0,5.0,-6.413123730174556,22.31120356548123 -337,3.0,11.0,0.0,4.191255364806866 -337,4.0,1.0,-1.1359607881738778,4.772479328281356 -337,4.0,4.0,4.089980824135861,-12.190647245055052 -337,4.0,6.0,-2.954020035961983,7.449267916773697 -337,5.0,1.0,-1.6861448807654689,5.116477495334806 -337,5.0,3.0,-6.413123730174556,22.31120356548123 -337,5.0,5.0,22.341631269034565,-82.8291478657789 -337,5.0,6.0,-3.590210423980992,11.02611441072814 -337,5.0,7.0,-6.289308176100628,22.0125786163522 -337,5.0,8.0,0.0,4.915840805411357 -337,5.0,9.0,0.0,1.8561002591115965 -337,5.0,27.0,-4.362844058012917,15.463571542897856 -337,6.0,4.0,-2.954020035961983,7.449267916773697 -337,6.0,5.0,-3.590210423980992,11.02611441072814 -337,6.0,6.0,6.544230459942975,-18.45668232750184 -337,7.0,5.0,-6.289308176100628,22.0125786163522 -337,7.0,7.0,7.733287237496075,-26.527493274828448 -337,7.0,27.0,-1.4439790613954469,4.540814658476248 -337,8.0,5.0,0.0,4.915840805411357 -337,8.0,8.0,0.0,-18.706293706293707 -337,8.0,9.0,0.0,9.090909090909092 -337,8.0,10.0,0.0,4.807692307692308 -337,9.0,5.0,0.0,1.8561002591115965 -337,9.0,8.0,0.0,9.090909090909092 -337,9.0,9.0,13.462042814524237,-41.3837606675224 -337,9.0,16.0,-3.956039125715353,10.317447719844054 -337,9.0,19.0,-1.7848303152666305,3.98535828943083 -337,9.0,20.0,-5.101853820159654,10.98071411292983 -337,9.0,21.0,-2.619319553382597,5.400770303329455 -337,10.0,8.0,0.0,4.807692307692308 -337,10.0,10.0,0.0,-4.807692307692308 -337,11.0,3.0,0.0,4.191255364806866 -337,11.0,11.0,6.573961583776156,-24.424167659260668 -337,11.0,12.0,0.0,7.142857142857143 -337,11.0,13.0,-1.5265676088395577,3.1734252729654173 -337,11.0,14.0,-3.0953961826564296,6.097275864326261 -337,11.0,15.0,-1.9519977922801688,4.104359379111847 -337,12.0,11.0,0.0,7.142857142857143 -337,12.0,12.0,0.0,-7.142857142857143 -337,13.0,11.0,-1.5265676088395577,3.1734252729654173 -337,13.0,13.0,4.01751987283902,-5.424299332335067 -337,13.0,14.0,-2.4909522639994623,2.250874059369649 -337,14.0,11.0,-3.0953961826564296,6.097275864326261 -337,14.0,13.0,-2.4909522639994623,2.250874059369649 -337,14.0,14.0,9.365498545964757,-16.01163373210796 -337,14.0,17.0,-1.8108011504072024,3.687418931630696 -337,14.0,22.0,-1.9683489489016612,3.976064876781356 -337,15.0,11.0,-1.9519977922801688,4.104359379111847 -337,15.0,15.0,3.271064728633931,-8.94513365126506 -337,15.0,16.0,-1.3190669363537617,4.8407742721532125 -337,16.0,9.0,-3.956039125715353,10.317447719844054 -337,16.0,15.0,-1.3190669363537617,4.8407742721532125 -337,16.0,16.0,5.275106062069114,-15.158221991997266 -337,17.0,14.0,-1.8108011504072024,3.687418931630696 -337,17.0,17.0,4.886487584415919,-9.906177730909668 -337,17.0,18.0,-3.0756864340087167,6.218758799278971 -337,18.0,17.0,-3.0756864340087167,6.218758799278971 -337,18.0,18.0,8.958039375185187,-17.98346468163191 -337,18.0,19.0,-5.88235294117647,11.76470588235294 -337,19.0,9.0,-1.7848303152666305,3.98535828943083 -337,19.0,18.0,-5.88235294117647,11.76470588235294 -337,19.0,19.0,7.6671832564431,-15.75006417178377 -337,20.0,9.0,-5.101853820159654,10.98071411292983 -337,20.0,20.0,21.876495189895888,-45.10843276170355 -337,20.0,21.0,-16.774641369736234,34.127718648773715 -337,21.0,9.0,-2.619319553382597,5.400770303329455 -337,21.0,20.0,-16.774641369736234,34.127718648773715 -337,21.0,21.0,21.93449907537439,-43.48289181517921 -337,21.0,23.0,-2.5405381522555563,3.95440286307604 -337,22.0,14.0,-1.9683489489016612,3.976064876781356 -337,22.0,22.0,1.9683489489016612,-3.976064876781356 -337,23.0,21.0,-2.5405381522555563,3.95440286307604 -337,23.0,23.0,3.850431096129806,-6.199024916781094 -337,23.0,24.0,-1.3098929438742493,2.287622053705056 -337,24.0,23.0,-1.3098929438742493,2.287622053705056 -337,24.0,24.0,4.495715080321987,-7.864978761969621 -337,24.0,25.0,-1.2165301194494855,1.8171440463475024 -337,24.0,26.0,-1.9692920169982515,3.760212661917064 -337,25.0,24.0,-1.2165301194494855,1.8171440463475024 -337,25.0,25.0,1.2165301194494855,-1.8171440463475024 -337,26.0,24.0,-1.9692920169982515,3.760212661917064 -337,26.0,26.0,3.652281470778589,-9.46044252232512 -337,26.0,27.0,0.0,2.608731947574922 -337,26.0,28.0,-0.99553355095268,1.881005840357816 -337,26.0,29.0,-0.6874559028276572,1.293971494797717 -337,27.0,5.0,-4.362844058012917,15.463571542897856 -337,27.0,7.0,-1.4439790613954469,4.540814658476248 -337,27.0,26.0,0.0,2.608731947574922 -337,27.0,27.0,5.806823119408364,-22.67145722159613 -337,28.0,26.0,-0.99553355095268,1.881005840357816 -337,28.0,28.0,1.9075867579849564,-3.604364401207048 -337,28.0,29.0,-0.9120532070322764,1.7233585608492326 -337,29.0,26.0,-0.6874559028276572,1.293971494797717 -337,29.0,28.0,-0.9120532070322764,1.7233585608492326 -337,29.0,29.0,1.5995091098599337,-3.0173300556469496 -338,0.0,0.0,6.765516048652632,-21.23160167089863 -338,0.0,1.0,-5.224646179885656,15.646726840803398 -338,0.0,2.0,-1.5408698687669766,5.631674830095234 -338,1.0,0.0,-5.224646179885656,15.646726840803398 -338,1.0,1.0,9.75228216552403,-30.648662892676068 -338,1.0,3.0,-1.7055303166990268,5.1973792282565086 -338,1.0,4.0,-1.1359607881738778,4.772479328281356 -338,1.0,5.0,-1.6861448807654689,5.116477495334806 -338,2.0,0.0,-1.5408698687669766,5.631674830095234 -338,2.0,2.0,9.736318911079088,-29.13794745915803 -338,2.0,3.0,-8.19544904231211,23.5308726290628 -338,3.0,1.0,-1.7055303166990268,5.1973792282565086 -338,3.0,2.0,-8.19544904231211,23.5308726290628 -338,3.0,3.0,16.314103089185693,-55.509410535254254 -338,3.0,5.0,-6.413123730174556,22.31120356548123 -338,3.0,11.0,0.0,4.191255364806866 -338,4.0,1.0,-1.1359607881738778,4.772479328281356 -338,4.0,4.0,4.089980824135861,-12.190647245055052 -338,4.0,6.0,-2.954020035961983,7.449267916773697 -338,5.0,1.0,-1.6861448807654689,5.116477495334806 -338,5.0,3.0,-6.413123730174556,22.31120356548123 -338,5.0,5.0,22.341631269034565,-82.8291478657789 -338,5.0,6.0,-3.590210423980992,11.02611441072814 -338,5.0,7.0,-6.289308176100628,22.0125786163522 -338,5.0,8.0,0.0,4.915840805411357 -338,5.0,9.0,0.0,1.8561002591115965 -338,5.0,27.0,-4.362844058012917,15.463571542897856 -338,6.0,4.0,-2.954020035961983,7.449267916773697 -338,6.0,5.0,-3.590210423980992,11.02611441072814 -338,6.0,6.0,6.544230459942975,-18.45668232750184 -338,7.0,5.0,-6.289308176100628,22.0125786163522 -338,7.0,7.0,7.733287237496075,-26.527493274828448 -338,7.0,27.0,-1.4439790613954469,4.540814658476248 -338,8.0,5.0,0.0,4.915840805411357 -338,8.0,8.0,0.0,-18.706293706293707 -338,8.0,9.0,0.0,9.090909090909092 -338,8.0,10.0,0.0,4.807692307692308 -338,9.0,5.0,0.0,1.8561002591115965 -338,9.0,8.0,0.0,9.090909090909092 -338,9.0,9.0,13.462042814524237,-41.3837606675224 -338,9.0,16.0,-3.956039125715353,10.317447719844054 -338,9.0,19.0,-1.7848303152666305,3.98535828943083 -338,9.0,20.0,-5.101853820159654,10.98071411292983 -338,9.0,21.0,-2.619319553382597,5.400770303329455 -338,10.0,8.0,0.0,4.807692307692308 -338,10.0,10.0,0.0,-4.807692307692308 -338,11.0,3.0,0.0,4.191255364806866 -338,11.0,11.0,6.573961583776156,-24.424167659260668 -338,11.0,12.0,0.0,7.142857142857143 -338,11.0,13.0,-1.5265676088395577,3.1734252729654173 -338,11.0,14.0,-3.0953961826564296,6.097275864326261 -338,11.0,15.0,-1.9519977922801688,4.104359379111847 -338,12.0,11.0,0.0,7.142857142857143 -338,12.0,12.0,0.0,-7.142857142857143 -338,13.0,11.0,-1.5265676088395577,3.1734252729654173 -338,13.0,13.0,4.01751987283902,-5.424299332335067 -338,13.0,14.0,-2.4909522639994623,2.250874059369649 -338,14.0,11.0,-3.0953961826564296,6.097275864326261 -338,14.0,13.0,-2.4909522639994623,2.250874059369649 -338,14.0,14.0,9.365498545964757,-16.01163373210796 -338,14.0,17.0,-1.8108011504072024,3.687418931630696 -338,14.0,22.0,-1.9683489489016612,3.976064876781356 -338,15.0,11.0,-1.9519977922801688,4.104359379111847 -338,15.0,15.0,3.271064728633931,-8.94513365126506 -338,15.0,16.0,-1.3190669363537617,4.8407742721532125 -338,16.0,9.0,-3.956039125715353,10.317447719844054 -338,16.0,15.0,-1.3190669363537617,4.8407742721532125 -338,16.0,16.0,5.275106062069114,-15.158221991997266 -338,17.0,14.0,-1.8108011504072024,3.687418931630696 -338,17.0,17.0,4.886487584415919,-9.906177730909668 -338,17.0,18.0,-3.0756864340087167,6.218758799278971 -338,18.0,17.0,-3.0756864340087167,6.218758799278971 -338,18.0,18.0,8.958039375185187,-17.98346468163191 -338,18.0,19.0,-5.88235294117647,11.76470588235294 -338,19.0,9.0,-1.7848303152666305,3.98535828943083 -338,19.0,18.0,-5.88235294117647,11.76470588235294 -338,19.0,19.0,7.6671832564431,-15.75006417178377 -338,20.0,9.0,-5.101853820159654,10.98071411292983 -338,20.0,20.0,21.876495189895888,-45.10843276170355 -338,20.0,21.0,-16.774641369736234,34.127718648773715 -338,21.0,9.0,-2.619319553382597,5.400770303329455 -338,21.0,20.0,-16.774641369736234,34.127718648773715 -338,21.0,21.0,21.93449907537439,-43.48289181517921 -338,21.0,23.0,-2.5405381522555563,3.95440286307604 -338,22.0,14.0,-1.9683489489016612,3.976064876781356 -338,22.0,22.0,3.429754555384988,-6.965303617315433 -338,22.0,23.0,-1.4614056064833263,2.989238740534077 -338,23.0,21.0,-2.5405381522555563,3.95440286307604 -338,23.0,22.0,-1.4614056064833263,2.989238740534077 -338,23.0,23.0,5.311836702613133,-9.188263657315172 -338,23.0,24.0,-1.3098929438742493,2.287622053705056 -338,24.0,23.0,-1.3098929438742493,2.287622053705056 -338,24.0,24.0,4.495715080321987,-7.864978761969621 -338,24.0,25.0,-1.2165301194494855,1.8171440463475024 -338,24.0,26.0,-1.9692920169982515,3.760212661917064 -338,25.0,24.0,-1.2165301194494855,1.8171440463475024 -338,25.0,25.0,1.2165301194494855,-1.8171440463475024 -338,26.0,24.0,-1.9692920169982515,3.760212661917064 -338,26.0,26.0,3.652281470778589,-9.46044252232512 -338,26.0,27.0,0.0,2.608731947574922 -338,26.0,28.0,-0.99553355095268,1.881005840357816 -338,26.0,29.0,-0.6874559028276572,1.293971494797717 -338,27.0,5.0,-4.362844058012917,15.463571542897856 -338,27.0,7.0,-1.4439790613954469,4.540814658476248 -338,27.0,26.0,0.0,2.608731947574922 -338,27.0,27.0,5.806823119408364,-22.67145722159613 -338,28.0,26.0,-0.99553355095268,1.881005840357816 -338,28.0,28.0,1.9075867579849564,-3.604364401207048 -338,28.0,29.0,-0.9120532070322764,1.7233585608492326 -338,29.0,26.0,-0.6874559028276572,1.293971494797717 -338,29.0,28.0,-0.9120532070322764,1.7233585608492326 -338,29.0,29.0,1.5995091098599337,-3.0173300556469496 -339,0.0,0.0,6.765516048652632,-21.23160167089863 -339,0.0,1.0,-5.224646179885656,15.646726840803398 -339,0.0,2.0,-1.5408698687669766,5.631674830095234 -339,1.0,0.0,-5.224646179885656,15.646726840803398 -339,1.0,1.0,9.75228216552403,-30.648662892676068 -339,1.0,3.0,-1.7055303166990268,5.1973792282565086 -339,1.0,4.0,-1.1359607881738778,4.772479328281356 -339,1.0,5.0,-1.6861448807654689,5.116477495334806 -339,2.0,0.0,-1.5408698687669766,5.631674830095234 -339,2.0,2.0,9.736318911079088,-29.13794745915803 -339,2.0,3.0,-8.19544904231211,23.5308726290628 -339,3.0,1.0,-1.7055303166990268,5.1973792282565086 -339,3.0,2.0,-8.19544904231211,23.5308726290628 -339,3.0,3.0,16.314103089185693,-55.509410535254254 -339,3.0,5.0,-6.413123730174556,22.31120356548123 -339,3.0,11.0,0.0,4.191255364806866 -339,4.0,1.0,-1.1359607881738778,4.772479328281356 -339,4.0,4.0,4.089980824135861,-12.190647245055052 -339,4.0,6.0,-2.954020035961983,7.449267916773697 -339,5.0,1.0,-1.6861448807654689,5.116477495334806 -339,5.0,3.0,-6.413123730174556,22.31120356548123 -339,5.0,5.0,22.341631269034565,-82.8291478657789 -339,5.0,6.0,-3.590210423980992,11.02611441072814 -339,5.0,7.0,-6.289308176100628,22.0125786163522 -339,5.0,8.0,0.0,4.915840805411357 -339,5.0,9.0,0.0,1.8561002591115965 -339,5.0,27.0,-4.362844058012917,15.463571542897856 -339,6.0,4.0,-2.954020035961983,7.449267916773697 -339,6.0,5.0,-3.590210423980992,11.02611441072814 -339,6.0,6.0,6.544230459942975,-18.45668232750184 -339,7.0,5.0,-6.289308176100628,22.0125786163522 -339,7.0,7.0,7.733287237496075,-26.527493274828448 -339,7.0,27.0,-1.4439790613954469,4.540814658476248 -339,8.0,5.0,0.0,4.915840805411357 -339,8.0,8.0,0.0,-18.706293706293707 -339,8.0,9.0,0.0,9.090909090909092 -339,8.0,10.0,0.0,4.807692307692308 -339,9.0,5.0,0.0,1.8561002591115965 -339,9.0,8.0,0.0,9.090909090909092 -339,9.0,9.0,8.36018899436458,-30.40304655459257 -339,9.0,16.0,-3.956039125715353,10.317447719844054 -339,9.0,19.0,-1.7848303152666305,3.98535828943083 -339,9.0,21.0,-2.619319553382597,5.400770303329455 -339,10.0,8.0,0.0,4.807692307692308 -339,10.0,10.0,0.0,-4.807692307692308 -339,11.0,3.0,0.0,4.191255364806866 -339,11.0,11.0,6.573961583776156,-24.424167659260668 -339,11.0,12.0,0.0,7.142857142857143 -339,11.0,13.0,-1.5265676088395577,3.1734252729654173 -339,11.0,14.0,-3.0953961826564296,6.097275864326261 -339,11.0,15.0,-1.9519977922801688,4.104359379111847 -339,12.0,11.0,0.0,7.142857142857143 -339,12.0,12.0,0.0,-7.142857142857143 -339,13.0,11.0,-1.5265676088395577,3.1734252729654173 -339,13.0,13.0,4.01751987283902,-5.424299332335067 -339,13.0,14.0,-2.4909522639994623,2.250874059369649 -339,14.0,11.0,-3.0953961826564296,6.097275864326261 -339,14.0,13.0,-2.4909522639994623,2.250874059369649 -339,14.0,14.0,9.365498545964757,-16.01163373210796 -339,14.0,17.0,-1.8108011504072024,3.687418931630696 -339,14.0,22.0,-1.9683489489016612,3.976064876781356 -339,15.0,11.0,-1.9519977922801688,4.104359379111847 -339,15.0,15.0,3.271064728633931,-8.94513365126506 -339,15.0,16.0,-1.3190669363537617,4.8407742721532125 -339,16.0,9.0,-3.956039125715353,10.317447719844054 -339,16.0,15.0,-1.3190669363537617,4.8407742721532125 -339,16.0,16.0,5.275106062069114,-15.158221991997266 -339,17.0,14.0,-1.8108011504072024,3.687418931630696 -339,17.0,17.0,4.886487584415919,-9.906177730909668 -339,17.0,18.0,-3.0756864340087167,6.218758799278971 -339,18.0,17.0,-3.0756864340087167,6.218758799278971 -339,18.0,18.0,8.958039375185187,-17.98346468163191 -339,18.0,19.0,-5.88235294117647,11.76470588235294 -339,19.0,9.0,-1.7848303152666305,3.98535828943083 -339,19.0,18.0,-5.88235294117647,11.76470588235294 -339,19.0,19.0,7.6671832564431,-15.75006417178377 -339,20.0,20.0,16.774641369736234,-34.127718648773715 -339,20.0,21.0,-16.774641369736234,34.127718648773715 -339,21.0,9.0,-2.619319553382597,5.400770303329455 -339,21.0,20.0,-16.774641369736234,34.127718648773715 -339,21.0,21.0,21.93449907537439,-43.48289181517921 -339,21.0,23.0,-2.5405381522555563,3.95440286307604 -339,22.0,14.0,-1.9683489489016612,3.976064876781356 -339,22.0,22.0,3.429754555384988,-6.965303617315433 -339,22.0,23.0,-1.4614056064833263,2.989238740534077 -339,23.0,21.0,-2.5405381522555563,3.95440286307604 -339,23.0,22.0,-1.4614056064833263,2.989238740534077 -339,23.0,23.0,5.311836702613133,-9.188263657315172 -339,23.0,24.0,-1.3098929438742493,2.287622053705056 -339,24.0,23.0,-1.3098929438742493,2.287622053705056 -339,24.0,24.0,4.495715080321987,-7.864978761969621 -339,24.0,25.0,-1.2165301194494855,1.8171440463475024 -339,24.0,26.0,-1.9692920169982515,3.760212661917064 -339,25.0,24.0,-1.2165301194494855,1.8171440463475024 -339,25.0,25.0,1.2165301194494855,-1.8171440463475024 -339,26.0,24.0,-1.9692920169982515,3.760212661917064 -339,26.0,26.0,3.652281470778589,-9.46044252232512 -339,26.0,27.0,0.0,2.608731947574922 -339,26.0,28.0,-0.99553355095268,1.881005840357816 -339,26.0,29.0,-0.6874559028276572,1.293971494797717 -339,27.0,5.0,-4.362844058012917,15.463571542897856 -339,27.0,7.0,-1.4439790613954469,4.540814658476248 -339,27.0,26.0,0.0,2.608731947574922 -339,27.0,27.0,5.806823119408364,-22.67145722159613 -339,28.0,26.0,-0.99553355095268,1.881005840357816 -339,28.0,28.0,1.9075867579849564,-3.604364401207048 -339,28.0,29.0,-0.9120532070322764,1.7233585608492326 -339,29.0,26.0,-0.6874559028276572,1.293971494797717 -339,29.0,28.0,-0.9120532070322764,1.7233585608492326 -339,29.0,29.0,1.5995091098599337,-3.0173300556469496 -340,0.0,0.0,6.765516048652632,-21.23160167089863 -340,0.0,1.0,-5.224646179885656,15.646726840803398 -340,0.0,2.0,-1.5408698687669766,5.631674830095234 -340,1.0,0.0,-5.224646179885656,15.646726840803398 -340,1.0,1.0,9.75228216552403,-30.648662892676068 -340,1.0,3.0,-1.7055303166990268,5.1973792282565086 -340,1.0,4.0,-1.1359607881738778,4.772479328281356 -340,1.0,5.0,-1.6861448807654689,5.116477495334806 -340,2.0,0.0,-1.5408698687669766,5.631674830095234 -340,2.0,2.0,9.736318911079088,-29.13794745915803 -340,2.0,3.0,-8.19544904231211,23.5308726290628 -340,3.0,1.0,-1.7055303166990268,5.1973792282565086 -340,3.0,2.0,-8.19544904231211,23.5308726290628 -340,3.0,3.0,16.314103089185693,-55.509410535254254 -340,3.0,5.0,-6.413123730174556,22.31120356548123 -340,3.0,11.0,0.0,4.191255364806866 -340,4.0,1.0,-1.1359607881738778,4.772479328281356 -340,4.0,4.0,4.089980824135861,-12.190647245055052 -340,4.0,6.0,-2.954020035961983,7.449267916773697 -340,5.0,1.0,-1.6861448807654689,5.116477495334806 -340,5.0,3.0,-6.413123730174556,22.31120356548123 -340,5.0,5.0,22.341631269034565,-82.8291478657789 -340,5.0,6.0,-3.590210423980992,11.02611441072814 -340,5.0,7.0,-6.289308176100628,22.0125786163522 -340,5.0,8.0,0.0,4.915840805411357 -340,5.0,9.0,0.0,1.8561002591115965 -340,5.0,27.0,-4.362844058012917,15.463571542897856 -340,6.0,4.0,-2.954020035961983,7.449267916773697 -340,6.0,5.0,-3.590210423980992,11.02611441072814 -340,6.0,6.0,6.544230459942975,-18.45668232750184 -340,7.0,5.0,-6.289308176100628,22.0125786163522 -340,7.0,7.0,7.733287237496075,-26.527493274828448 -340,7.0,27.0,-1.4439790613954469,4.540814658476248 -340,8.0,5.0,0.0,4.915840805411357 -340,8.0,8.0,0.0,-18.706293706293707 -340,8.0,9.0,0.0,9.090909090909092 -340,8.0,10.0,0.0,4.807692307692308 -340,9.0,5.0,0.0,1.8561002591115965 -340,9.0,8.0,0.0,9.090909090909092 -340,9.0,9.0,13.462042814524237,-41.3837606675224 -340,9.0,16.0,-3.956039125715353,10.317447719844054 -340,9.0,19.0,-1.7848303152666305,3.98535828943083 -340,9.0,20.0,-5.101853820159654,10.98071411292983 -340,9.0,21.0,-2.619319553382597,5.400770303329455 -340,10.0,8.0,0.0,4.807692307692308 -340,10.0,10.0,0.0,-4.807692307692308 -340,11.0,3.0,0.0,4.191255364806866 -340,11.0,11.0,6.573961583776156,-24.424167659260668 -340,11.0,12.0,0.0,7.142857142857143 -340,11.0,13.0,-1.5265676088395577,3.1734252729654173 -340,11.0,14.0,-3.0953961826564296,6.097275864326261 -340,11.0,15.0,-1.9519977922801688,4.104359379111847 -340,12.0,11.0,0.0,7.142857142857143 -340,12.0,12.0,0.0,-7.142857142857143 -340,13.0,11.0,-1.5265676088395577,3.1734252729654173 -340,13.0,13.0,4.01751987283902,-5.424299332335067 -340,13.0,14.0,-2.4909522639994623,2.250874059369649 -340,14.0,11.0,-3.0953961826564296,6.097275864326261 -340,14.0,13.0,-2.4909522639994623,2.250874059369649 -340,14.0,14.0,9.365498545964757,-16.01163373210796 -340,14.0,17.0,-1.8108011504072024,3.687418931630696 -340,14.0,22.0,-1.9683489489016612,3.976064876781356 -340,15.0,11.0,-1.9519977922801688,4.104359379111847 -340,15.0,15.0,3.271064728633931,-8.94513365126506 -340,15.0,16.0,-1.3190669363537617,4.8407742721532125 -340,16.0,9.0,-3.956039125715353,10.317447719844054 -340,16.0,15.0,-1.3190669363537617,4.8407742721532125 -340,16.0,16.0,5.275106062069114,-15.158221991997266 -340,17.0,14.0,-1.8108011504072024,3.687418931630696 -340,17.0,17.0,4.886487584415919,-9.906177730909668 -340,17.0,18.0,-3.0756864340087167,6.218758799278971 -340,18.0,17.0,-3.0756864340087167,6.218758799278971 -340,18.0,18.0,8.958039375185187,-17.98346468163191 -340,18.0,19.0,-5.88235294117647,11.76470588235294 -340,19.0,9.0,-1.7848303152666305,3.98535828943083 -340,19.0,18.0,-5.88235294117647,11.76470588235294 -340,19.0,19.0,7.6671832564431,-15.75006417178377 -340,20.0,9.0,-5.101853820159654,10.98071411292983 -340,20.0,20.0,21.876495189895888,-45.10843276170355 -340,20.0,21.0,-16.774641369736234,34.127718648773715 -340,21.0,9.0,-2.619319553382597,5.400770303329455 -340,21.0,20.0,-16.774641369736234,34.127718648773715 -340,21.0,21.0,21.93449907537439,-43.48289181517921 -340,21.0,23.0,-2.5405381522555563,3.95440286307604 -340,22.0,14.0,-1.9683489489016612,3.976064876781356 -340,22.0,22.0,3.429754555384988,-6.965303617315433 -340,22.0,23.0,-1.4614056064833263,2.989238740534077 -340,23.0,21.0,-2.5405381522555563,3.95440286307604 -340,23.0,22.0,-1.4614056064833263,2.989238740534077 -340,23.0,23.0,5.311836702613133,-9.188263657315172 -340,23.0,24.0,-1.3098929438742493,2.287622053705056 -340,24.0,23.0,-1.3098929438742493,2.287622053705056 -340,24.0,24.0,4.495715080321987,-7.864978761969621 -340,24.0,25.0,-1.2165301194494855,1.8171440463475024 -340,24.0,26.0,-1.9692920169982515,3.760212661917064 -340,25.0,24.0,-1.2165301194494855,1.8171440463475024 -340,25.0,25.0,1.2165301194494855,-1.8171440463475024 -340,26.0,24.0,-1.9692920169982515,3.760212661917064 -340,26.0,26.0,3.652281470778589,-9.46044252232512 -340,26.0,27.0,0.0,2.608731947574922 -340,26.0,28.0,-0.99553355095268,1.881005840357816 -340,26.0,29.0,-0.6874559028276572,1.293971494797717 -340,27.0,5.0,-4.362844058012917,15.463571542897856 -340,27.0,7.0,-1.4439790613954469,4.540814658476248 -340,27.0,26.0,0.0,2.608731947574922 -340,27.0,27.0,5.806823119408364,-22.67145722159613 -340,28.0,26.0,-0.99553355095268,1.881005840357816 -340,28.0,28.0,1.9075867579849564,-3.604364401207048 -340,28.0,29.0,-0.9120532070322764,1.7233585608492326 -340,29.0,26.0,-0.6874559028276572,1.293971494797717 -340,29.0,28.0,-0.9120532070322764,1.7233585608492326 -340,29.0,29.0,1.5995091098599337,-3.0173300556469496 -341,0.0,0.0,6.765516048652632,-21.23160167089863 -341,0.0,1.0,-5.224646179885656,15.646726840803398 -341,0.0,2.0,-1.5408698687669766,5.631674830095234 -341,1.0,0.0,-5.224646179885656,15.646726840803398 -341,1.0,1.0,9.75228216552403,-30.648662892676068 -341,1.0,3.0,-1.7055303166990268,5.1973792282565086 -341,1.0,4.0,-1.1359607881738778,4.772479328281356 -341,1.0,5.0,-1.6861448807654689,5.116477495334806 -341,2.0,0.0,-1.5408698687669766,5.631674830095234 -341,2.0,2.0,9.736318911079088,-29.13794745915803 -341,2.0,3.0,-8.19544904231211,23.5308726290628 -341,3.0,1.0,-1.7055303166990268,5.1973792282565086 -341,3.0,2.0,-8.19544904231211,23.5308726290628 -341,3.0,3.0,16.314103089185693,-55.509410535254254 -341,3.0,5.0,-6.413123730174556,22.31120356548123 -341,3.0,11.0,0.0,4.191255364806866 -341,4.0,1.0,-1.1359607881738778,4.772479328281356 -341,4.0,4.0,4.089980824135861,-12.190647245055052 -341,4.0,6.0,-2.954020035961983,7.449267916773697 -341,5.0,1.0,-1.6861448807654689,5.116477495334806 -341,5.0,3.0,-6.413123730174556,22.31120356548123 -341,5.0,5.0,22.341631269034565,-82.8291478657789 -341,5.0,6.0,-3.590210423980992,11.02611441072814 -341,5.0,7.0,-6.289308176100628,22.0125786163522 -341,5.0,8.0,0.0,4.915840805411357 -341,5.0,9.0,0.0,1.8561002591115965 -341,5.0,27.0,-4.362844058012917,15.463571542897856 -341,6.0,4.0,-2.954020035961983,7.449267916773697 -341,6.0,5.0,-3.590210423980992,11.02611441072814 -341,6.0,6.0,6.544230459942975,-18.45668232750184 -341,7.0,5.0,-6.289308176100628,22.0125786163522 -341,7.0,7.0,7.733287237496075,-26.527493274828448 -341,7.0,27.0,-1.4439790613954469,4.540814658476248 -341,8.0,5.0,0.0,4.915840805411357 -341,8.0,8.0,0.0,-18.706293706293707 -341,8.0,9.0,0.0,9.090909090909092 -341,8.0,10.0,0.0,4.807692307692308 -341,9.0,5.0,0.0,1.8561002591115965 -341,9.0,8.0,0.0,9.090909090909092 -341,9.0,9.0,13.462042814524237,-41.3837606675224 -341,9.0,16.0,-3.956039125715353,10.317447719844054 -341,9.0,19.0,-1.7848303152666305,3.98535828943083 -341,9.0,20.0,-5.101853820159654,10.98071411292983 -341,9.0,21.0,-2.619319553382597,5.400770303329455 -341,10.0,8.0,0.0,4.807692307692308 -341,10.0,10.0,0.0,-4.807692307692308 -341,11.0,3.0,0.0,4.191255364806866 -341,11.0,11.0,6.573961583776156,-24.424167659260668 -341,11.0,12.0,0.0,7.142857142857143 -341,11.0,13.0,-1.5265676088395577,3.1734252729654173 -341,11.0,14.0,-3.0953961826564296,6.097275864326261 -341,11.0,15.0,-1.9519977922801688,4.104359379111847 -341,12.0,11.0,0.0,7.142857142857143 -341,12.0,12.0,0.0,-7.142857142857143 -341,13.0,11.0,-1.5265676088395577,3.1734252729654173 -341,13.0,13.0,4.01751987283902,-5.424299332335067 -341,13.0,14.0,-2.4909522639994623,2.250874059369649 -341,14.0,11.0,-3.0953961826564296,6.097275864326261 -341,14.0,13.0,-2.4909522639994623,2.250874059369649 -341,14.0,14.0,7.397149597063095,-12.035568855326606 -341,14.0,17.0,-1.8108011504072024,3.687418931630696 -341,15.0,11.0,-1.9519977922801688,4.104359379111847 -341,15.0,15.0,3.271064728633931,-8.94513365126506 -341,15.0,16.0,-1.3190669363537617,4.8407742721532125 -341,16.0,9.0,-3.956039125715353,10.317447719844054 -341,16.0,15.0,-1.3190669363537617,4.8407742721532125 -341,16.0,16.0,5.275106062069114,-15.158221991997266 -341,17.0,14.0,-1.8108011504072024,3.687418931630696 -341,17.0,17.0,4.886487584415919,-9.906177730909668 -341,17.0,18.0,-3.0756864340087167,6.218758799278971 -341,18.0,17.0,-3.0756864340087167,6.218758799278971 -341,18.0,18.0,8.958039375185187,-17.98346468163191 -341,18.0,19.0,-5.88235294117647,11.76470588235294 -341,19.0,9.0,-1.7848303152666305,3.98535828943083 -341,19.0,18.0,-5.88235294117647,11.76470588235294 -341,19.0,19.0,7.6671832564431,-15.75006417178377 -341,20.0,9.0,-5.101853820159654,10.98071411292983 -341,20.0,20.0,21.876495189895888,-45.10843276170355 -341,20.0,21.0,-16.774641369736234,34.127718648773715 -341,21.0,9.0,-2.619319553382597,5.400770303329455 -341,21.0,20.0,-16.774641369736234,34.127718648773715 -341,21.0,21.0,21.93449907537439,-43.48289181517921 -341,21.0,23.0,-2.5405381522555563,3.95440286307604 -341,22.0,22.0,1.4614056064833263,-2.989238740534077 -341,22.0,23.0,-1.4614056064833263,2.989238740534077 -341,23.0,21.0,-2.5405381522555563,3.95440286307604 -341,23.0,22.0,-1.4614056064833263,2.989238740534077 -341,23.0,23.0,5.311836702613133,-9.188263657315172 -341,23.0,24.0,-1.3098929438742493,2.287622053705056 -341,24.0,23.0,-1.3098929438742493,2.287622053705056 -341,24.0,24.0,4.495715080321987,-7.864978761969621 -341,24.0,25.0,-1.2165301194494855,1.8171440463475024 -341,24.0,26.0,-1.9692920169982515,3.760212661917064 -341,25.0,24.0,-1.2165301194494855,1.8171440463475024 -341,25.0,25.0,1.2165301194494855,-1.8171440463475024 -341,26.0,24.0,-1.9692920169982515,3.760212661917064 -341,26.0,26.0,2.9648255679509314,-8.166471027527404 -341,26.0,27.0,0.0,2.608731947574922 -341,26.0,28.0,-0.99553355095268,1.881005840357816 -341,27.0,5.0,-4.362844058012917,15.463571542897856 -341,27.0,7.0,-1.4439790613954469,4.540814658476248 -341,27.0,26.0,0.0,2.608731947574922 -341,27.0,27.0,5.806823119408364,-22.67145722159613 -341,28.0,26.0,-0.99553355095268,1.881005840357816 -341,28.0,28.0,1.9075867579849564,-3.604364401207048 -341,28.0,29.0,-0.9120532070322764,1.7233585608492326 -341,29.0,28.0,-0.9120532070322764,1.7233585608492326 -341,29.0,29.0,0.9120532070322764,-1.7233585608492326 -342,0.0,0.0,6.765516048652632,-21.23160167089863 -342,0.0,1.0,-5.224646179885656,15.646726840803398 -342,0.0,2.0,-1.5408698687669766,5.631674830095234 -342,1.0,0.0,-5.224646179885656,15.646726840803398 -342,1.0,1.0,9.75228216552403,-30.648662892676068 -342,1.0,3.0,-1.7055303166990268,5.1973792282565086 -342,1.0,4.0,-1.1359607881738778,4.772479328281356 -342,1.0,5.0,-1.6861448807654689,5.116477495334806 -342,2.0,0.0,-1.5408698687669766,5.631674830095234 -342,2.0,2.0,9.736318911079088,-29.13794745915803 -342,2.0,3.0,-8.19544904231211,23.5308726290628 -342,3.0,1.0,-1.7055303166990268,5.1973792282565086 -342,3.0,2.0,-8.19544904231211,23.5308726290628 -342,3.0,3.0,16.314103089185693,-55.509410535254254 -342,3.0,5.0,-6.413123730174556,22.31120356548123 -342,3.0,11.0,0.0,4.191255364806866 -342,4.0,1.0,-1.1359607881738778,4.772479328281356 -342,4.0,4.0,4.089980824135861,-12.190647245055052 -342,4.0,6.0,-2.954020035961983,7.449267916773697 -342,5.0,1.0,-1.6861448807654689,5.116477495334806 -342,5.0,3.0,-6.413123730174556,22.31120356548123 -342,5.0,5.0,22.341631269034565,-82.8291478657789 -342,5.0,6.0,-3.590210423980992,11.02611441072814 -342,5.0,7.0,-6.289308176100628,22.0125786163522 -342,5.0,8.0,0.0,4.915840805411357 -342,5.0,9.0,0.0,1.8561002591115965 -342,5.0,27.0,-4.362844058012917,15.463571542897856 -342,6.0,4.0,-2.954020035961983,7.449267916773697 -342,6.0,5.0,-3.590210423980992,11.02611441072814 -342,6.0,6.0,6.544230459942975,-18.45668232750184 -342,7.0,5.0,-6.289308176100628,22.0125786163522 -342,7.0,7.0,7.733287237496075,-26.527493274828448 -342,7.0,27.0,-1.4439790613954469,4.540814658476248 -342,8.0,5.0,0.0,4.915840805411357 -342,8.0,8.0,0.0,-9.615384615384617 -342,8.0,10.0,0.0,4.807692307692308 -342,9.0,5.0,0.0,1.8561002591115965 -342,9.0,9.0,13.462042814524237,-32.29285157661331 -342,9.0,16.0,-3.956039125715353,10.317447719844054 -342,9.0,19.0,-1.7848303152666305,3.98535828943083 -342,9.0,20.0,-5.101853820159654,10.98071411292983 -342,9.0,21.0,-2.619319553382597,5.400770303329455 -342,10.0,8.0,0.0,4.807692307692308 -342,10.0,10.0,0.0,-4.807692307692308 -342,11.0,3.0,0.0,4.191255364806866 -342,11.0,11.0,6.573961583776156,-24.424167659260668 -342,11.0,12.0,0.0,7.142857142857143 -342,11.0,13.0,-1.5265676088395577,3.1734252729654173 -342,11.0,14.0,-3.0953961826564296,6.097275864326261 -342,11.0,15.0,-1.9519977922801688,4.104359379111847 -342,12.0,11.0,0.0,7.142857142857143 -342,12.0,12.0,0.0,-7.142857142857143 -342,13.0,11.0,-1.5265676088395577,3.1734252729654173 -342,13.0,13.0,4.01751987283902,-5.424299332335067 -342,13.0,14.0,-2.4909522639994623,2.250874059369649 -342,14.0,11.0,-3.0953961826564296,6.097275864326261 -342,14.0,13.0,-2.4909522639994623,2.250874059369649 -342,14.0,14.0,9.365498545964757,-16.01163373210796 -342,14.0,17.0,-1.8108011504072024,3.687418931630696 -342,14.0,22.0,-1.9683489489016612,3.976064876781356 -342,15.0,11.0,-1.9519977922801688,4.104359379111847 -342,15.0,15.0,3.271064728633931,-8.94513365126506 -342,15.0,16.0,-1.3190669363537617,4.8407742721532125 -342,16.0,9.0,-3.956039125715353,10.317447719844054 -342,16.0,15.0,-1.3190669363537617,4.8407742721532125 -342,16.0,16.0,5.275106062069114,-15.158221991997266 -342,17.0,14.0,-1.8108011504072024,3.687418931630696 -342,17.0,17.0,4.886487584415919,-9.906177730909668 -342,17.0,18.0,-3.0756864340087167,6.218758799278971 -342,18.0,17.0,-3.0756864340087167,6.218758799278971 -342,18.0,18.0,8.958039375185187,-17.98346468163191 -342,18.0,19.0,-5.88235294117647,11.76470588235294 -342,19.0,9.0,-1.7848303152666305,3.98535828943083 -342,19.0,18.0,-5.88235294117647,11.76470588235294 -342,19.0,19.0,7.6671832564431,-15.75006417178377 -342,20.0,9.0,-5.101853820159654,10.98071411292983 -342,20.0,20.0,21.876495189895888,-45.10843276170355 -342,20.0,21.0,-16.774641369736234,34.127718648773715 -342,21.0,9.0,-2.619319553382597,5.400770303329455 -342,21.0,20.0,-16.774641369736234,34.127718648773715 -342,21.0,21.0,21.93449907537439,-43.48289181517921 -342,21.0,23.0,-2.5405381522555563,3.95440286307604 -342,22.0,14.0,-1.9683489489016612,3.976064876781356 -342,22.0,22.0,3.429754555384988,-6.965303617315433 -342,22.0,23.0,-1.4614056064833263,2.989238740534077 -342,23.0,21.0,-2.5405381522555563,3.95440286307604 -342,23.0,22.0,-1.4614056064833263,2.989238740534077 -342,23.0,23.0,5.311836702613133,-9.188263657315172 -342,23.0,24.0,-1.3098929438742493,2.287622053705056 -342,24.0,23.0,-1.3098929438742493,2.287622053705056 -342,24.0,24.0,4.495715080321987,-7.864978761969621 -342,24.0,25.0,-1.2165301194494855,1.8171440463475024 -342,24.0,26.0,-1.9692920169982515,3.760212661917064 -342,25.0,24.0,-1.2165301194494855,1.8171440463475024 -342,25.0,25.0,1.2165301194494855,-1.8171440463475024 -342,26.0,24.0,-1.9692920169982515,3.760212661917064 -342,26.0,26.0,3.652281470778589,-9.46044252232512 -342,26.0,27.0,0.0,2.608731947574922 -342,26.0,28.0,-0.99553355095268,1.881005840357816 -342,26.0,29.0,-0.6874559028276572,1.293971494797717 -342,27.0,5.0,-4.362844058012917,15.463571542897856 -342,27.0,7.0,-1.4439790613954469,4.540814658476248 -342,27.0,26.0,0.0,2.608731947574922 -342,27.0,27.0,5.806823119408364,-22.67145722159613 -342,28.0,26.0,-0.99553355095268,1.881005840357816 -342,28.0,28.0,0.99553355095268,-1.881005840357816 -342,29.0,26.0,-0.6874559028276572,1.293971494797717 -342,29.0,29.0,0.6874559028276572,-1.293971494797717 -343,0.0,0.0,6.765516048652632,-21.23160167089863 -343,0.0,1.0,-5.224646179885656,15.646726840803398 -343,0.0,2.0,-1.5408698687669766,5.631674830095234 -343,1.0,0.0,-5.224646179885656,15.646726840803398 -343,1.0,1.0,8.046751848825002,-25.46968366441956 -343,1.0,4.0,-1.1359607881738778,4.772479328281356 -343,1.0,5.0,-1.6861448807654689,5.116477495334806 -343,2.0,0.0,-1.5408698687669766,5.631674830095234 -343,2.0,2.0,9.736318911079088,-29.13794745915803 -343,2.0,3.0,-8.19544904231211,23.5308726290628 -343,3.0,2.0,-8.19544904231211,23.5308726290628 -343,3.0,3.0,14.608572772486664,-50.33043130699775 -343,3.0,5.0,-6.413123730174556,22.31120356548123 -343,3.0,11.0,0.0,4.191255364806866 -343,4.0,1.0,-1.1359607881738778,4.772479328281356 -343,4.0,4.0,4.089980824135861,-12.190647245055052 -343,4.0,6.0,-2.954020035961983,7.449267916773697 -343,5.0,1.0,-1.6861448807654689,5.116477495334806 -343,5.0,3.0,-6.413123730174556,22.31120356548123 -343,5.0,5.0,22.341631269034565,-82.8291478657789 -343,5.0,6.0,-3.590210423980992,11.02611441072814 -343,5.0,7.0,-6.289308176100628,22.0125786163522 -343,5.0,8.0,0.0,4.915840805411357 -343,5.0,9.0,0.0,1.8561002591115965 -343,5.0,27.0,-4.362844058012917,15.463571542897856 -343,6.0,4.0,-2.954020035961983,7.449267916773697 -343,6.0,5.0,-3.590210423980992,11.02611441072814 -343,6.0,6.0,6.544230459942975,-18.45668232750184 -343,7.0,5.0,-6.289308176100628,22.0125786163522 -343,7.0,7.0,7.733287237496075,-26.527493274828448 -343,7.0,27.0,-1.4439790613954469,4.540814658476248 -343,8.0,5.0,0.0,4.915840805411357 -343,8.0,8.0,0.0,-18.706293706293707 -343,8.0,9.0,0.0,9.090909090909092 -343,8.0,10.0,0.0,4.807692307692308 -343,9.0,5.0,0.0,1.8561002591115965 -343,9.0,8.0,0.0,9.090909090909092 -343,9.0,9.0,13.462042814524237,-41.3837606675224 -343,9.0,16.0,-3.956039125715353,10.317447719844054 -343,9.0,19.0,-1.7848303152666305,3.98535828943083 -343,9.0,20.0,-5.101853820159654,10.98071411292983 -343,9.0,21.0,-2.619319553382597,5.400770303329455 -343,10.0,8.0,0.0,4.807692307692308 -343,10.0,10.0,0.0,-4.807692307692308 -343,11.0,3.0,0.0,4.191255364806866 -343,11.0,11.0,6.573961583776156,-24.424167659260668 -343,11.0,12.0,0.0,7.142857142857143 -343,11.0,13.0,-1.5265676088395577,3.1734252729654173 -343,11.0,14.0,-3.0953961826564296,6.097275864326261 -343,11.0,15.0,-1.9519977922801688,4.104359379111847 -343,12.0,11.0,0.0,7.142857142857143 -343,12.0,12.0,0.0,-7.142857142857143 -343,13.0,11.0,-1.5265676088395577,3.1734252729654173 -343,13.0,13.0,4.01751987283902,-5.424299332335067 -343,13.0,14.0,-2.4909522639994623,2.250874059369649 -343,14.0,11.0,-3.0953961826564296,6.097275864326261 -343,14.0,13.0,-2.4909522639994623,2.250874059369649 -343,14.0,14.0,9.365498545964757,-16.01163373210796 -343,14.0,17.0,-1.8108011504072024,3.687418931630696 -343,14.0,22.0,-1.9683489489016612,3.976064876781356 -343,15.0,11.0,-1.9519977922801688,4.104359379111847 -343,15.0,15.0,3.271064728633931,-8.94513365126506 -343,15.0,16.0,-1.3190669363537617,4.8407742721532125 -343,16.0,9.0,-3.956039125715353,10.317447719844054 -343,16.0,15.0,-1.3190669363537617,4.8407742721532125 -343,16.0,16.0,5.275106062069114,-15.158221991997266 -343,17.0,14.0,-1.8108011504072024,3.687418931630696 -343,17.0,17.0,4.886487584415919,-9.906177730909668 -343,17.0,18.0,-3.0756864340087167,6.218758799278971 -343,18.0,17.0,-3.0756864340087167,6.218758799278971 -343,18.0,18.0,8.958039375185187,-17.98346468163191 -343,18.0,19.0,-5.88235294117647,11.76470588235294 -343,19.0,9.0,-1.7848303152666305,3.98535828943083 -343,19.0,18.0,-5.88235294117647,11.76470588235294 -343,19.0,19.0,7.6671832564431,-15.75006417178377 -343,20.0,9.0,-5.101853820159654,10.98071411292983 -343,20.0,20.0,21.876495189895888,-45.10843276170355 -343,20.0,21.0,-16.774641369736234,34.127718648773715 -343,21.0,9.0,-2.619319553382597,5.400770303329455 -343,21.0,20.0,-16.774641369736234,34.127718648773715 -343,21.0,21.0,21.93449907537439,-43.48289181517921 -343,21.0,23.0,-2.5405381522555563,3.95440286307604 -343,22.0,14.0,-1.9683489489016612,3.976064876781356 -343,22.0,22.0,3.429754555384988,-6.965303617315433 -343,22.0,23.0,-1.4614056064833263,2.989238740534077 -343,23.0,21.0,-2.5405381522555563,3.95440286307604 -343,23.0,22.0,-1.4614056064833263,2.989238740534077 -343,23.0,23.0,5.311836702613133,-9.188263657315172 -343,23.0,24.0,-1.3098929438742493,2.287622053705056 -343,24.0,23.0,-1.3098929438742493,2.287622053705056 -343,24.0,24.0,4.495715080321987,-7.864978761969621 -343,24.0,25.0,-1.2165301194494855,1.8171440463475024 -343,24.0,26.0,-1.9692920169982515,3.760212661917064 -343,25.0,24.0,-1.2165301194494855,1.8171440463475024 -343,25.0,25.0,1.2165301194494855,-1.8171440463475024 -343,26.0,24.0,-1.9692920169982515,3.760212661917064 -343,26.0,26.0,2.656747919825909,-7.579436681967305 -343,26.0,27.0,0.0,2.608731947574922 -343,26.0,29.0,-0.6874559028276572,1.293971494797717 -343,27.0,5.0,-4.362844058012917,15.463571542897856 -343,27.0,7.0,-1.4439790613954469,4.540814658476248 -343,27.0,26.0,0.0,2.608731947574922 -343,27.0,27.0,5.806823119408364,-22.67145722159613 -343,28.0,28.0,0.9120532070322764,-1.7233585608492326 -343,28.0,29.0,-0.9120532070322764,1.7233585608492326 -343,29.0,26.0,-0.6874559028276572,1.293971494797717 -343,29.0,28.0,-0.9120532070322764,1.7233585608492326 -343,29.0,29.0,1.5995091098599337,-3.0173300556469496 -344,0.0,0.0,6.765516048652632,-21.23160167089863 -344,0.0,1.0,-5.224646179885656,15.646726840803398 -344,0.0,2.0,-1.5408698687669766,5.631674830095234 -344,1.0,0.0,-5.224646179885656,15.646726840803398 -344,1.0,1.0,9.75228216552403,-30.648662892676068 -344,1.0,3.0,-1.7055303166990268,5.1973792282565086 -344,1.0,4.0,-1.1359607881738778,4.772479328281356 -344,1.0,5.0,-1.6861448807654689,5.116477495334806 -344,2.0,0.0,-1.5408698687669766,5.631674830095234 -344,2.0,2.0,9.736318911079088,-29.13794745915803 -344,2.0,3.0,-8.19544904231211,23.5308726290628 -344,3.0,1.0,-1.7055303166990268,5.1973792282565086 -344,3.0,2.0,-8.19544904231211,23.5308726290628 -344,3.0,3.0,16.314103089185693,-55.509410535254254 -344,3.0,5.0,-6.413123730174556,22.31120356548123 -344,3.0,11.0,0.0,4.191255364806866 -344,4.0,1.0,-1.1359607881738778,4.772479328281356 -344,4.0,4.0,4.089980824135861,-12.190647245055052 -344,4.0,6.0,-2.954020035961983,7.449267916773697 -344,5.0,1.0,-1.6861448807654689,5.116477495334806 -344,5.0,3.0,-6.413123730174556,22.31120356548123 -344,5.0,5.0,22.341631269034565,-77.80272577435625 -344,5.0,6.0,-3.590210423980992,11.02611441072814 -344,5.0,7.0,-6.289308176100628,22.0125786163522 -344,5.0,9.0,0.0,1.8561002591115965 -344,5.0,27.0,-4.362844058012917,15.463571542897856 -344,6.0,4.0,-2.954020035961983,7.449267916773697 -344,6.0,5.0,-3.590210423980992,11.02611441072814 -344,6.0,6.0,6.544230459942975,-18.45668232750184 -344,7.0,5.0,-6.289308176100628,22.0125786163522 -344,7.0,7.0,7.733287237496075,-26.527493274828448 -344,7.0,27.0,-1.4439790613954469,4.540814658476248 -344,8.0,8.0,0.0,-13.8986013986014 -344,8.0,9.0,0.0,9.090909090909092 -344,8.0,10.0,0.0,4.807692307692308 -344,9.0,5.0,0.0,1.8561002591115965 -344,9.0,8.0,0.0,9.090909090909092 -344,9.0,9.0,13.462042814524237,-41.3837606675224 -344,9.0,16.0,-3.956039125715353,10.317447719844054 -344,9.0,19.0,-1.7848303152666305,3.98535828943083 -344,9.0,20.0,-5.101853820159654,10.98071411292983 -344,9.0,21.0,-2.619319553382597,5.400770303329455 -344,10.0,8.0,0.0,4.807692307692308 -344,10.0,10.0,0.0,-4.807692307692308 -344,11.0,3.0,0.0,4.191255364806866 -344,11.0,11.0,6.573961583776156,-24.424167659260668 -344,11.0,12.0,0.0,7.142857142857143 -344,11.0,13.0,-1.5265676088395577,3.1734252729654173 -344,11.0,14.0,-3.0953961826564296,6.097275864326261 -344,11.0,15.0,-1.9519977922801688,4.104359379111847 -344,12.0,11.0,0.0,7.142857142857143 -344,12.0,12.0,0.0,-7.142857142857143 -344,13.0,11.0,-1.5265676088395577,3.1734252729654173 -344,13.0,13.0,4.01751987283902,-5.424299332335067 -344,13.0,14.0,-2.4909522639994623,2.250874059369649 -344,14.0,11.0,-3.0953961826564296,6.097275864326261 -344,14.0,13.0,-2.4909522639994623,2.250874059369649 -344,14.0,14.0,9.365498545964757,-16.01163373210796 -344,14.0,17.0,-1.8108011504072024,3.687418931630696 -344,14.0,22.0,-1.9683489489016612,3.976064876781356 -344,15.0,11.0,-1.9519977922801688,4.104359379111847 -344,15.0,15.0,3.271064728633931,-8.94513365126506 -344,15.0,16.0,-1.3190669363537617,4.8407742721532125 -344,16.0,9.0,-3.956039125715353,10.317447719844054 -344,16.0,15.0,-1.3190669363537617,4.8407742721532125 -344,16.0,16.0,5.275106062069114,-15.158221991997266 -344,17.0,14.0,-1.8108011504072024,3.687418931630696 -344,17.0,17.0,4.886487584415919,-9.906177730909668 -344,17.0,18.0,-3.0756864340087167,6.218758799278971 -344,18.0,17.0,-3.0756864340087167,6.218758799278971 -344,18.0,18.0,8.958039375185187,-17.98346468163191 -344,18.0,19.0,-5.88235294117647,11.76470588235294 -344,19.0,9.0,-1.7848303152666305,3.98535828943083 -344,19.0,18.0,-5.88235294117647,11.76470588235294 -344,19.0,19.0,7.6671832564431,-15.75006417178377 -344,20.0,9.0,-5.101853820159654,10.98071411292983 -344,20.0,20.0,21.876495189895888,-45.10843276170355 -344,20.0,21.0,-16.774641369736234,34.127718648773715 -344,21.0,9.0,-2.619319553382597,5.400770303329455 -344,21.0,20.0,-16.774641369736234,34.127718648773715 -344,21.0,21.0,21.93449907537439,-43.48289181517921 -344,21.0,23.0,-2.5405381522555563,3.95440286307604 -344,22.0,14.0,-1.9683489489016612,3.976064876781356 -344,22.0,22.0,3.429754555384988,-6.965303617315433 -344,22.0,23.0,-1.4614056064833263,2.989238740534077 -344,23.0,21.0,-2.5405381522555563,3.95440286307604 -344,23.0,22.0,-1.4614056064833263,2.989238740534077 -344,23.0,23.0,5.311836702613133,-9.188263657315172 -344,23.0,24.0,-1.3098929438742493,2.287622053705056 -344,24.0,23.0,-1.3098929438742493,2.287622053705056 -344,24.0,24.0,4.495715080321987,-7.864978761969621 -344,24.0,25.0,-1.2165301194494855,1.8171440463475024 -344,24.0,26.0,-1.9692920169982515,3.760212661917064 -344,25.0,24.0,-1.2165301194494855,1.8171440463475024 -344,25.0,25.0,1.2165301194494855,-1.8171440463475024 -344,26.0,24.0,-1.9692920169982515,3.760212661917064 -344,26.0,26.0,3.652281470778589,-9.46044252232512 -344,26.0,27.0,0.0,2.608731947574922 -344,26.0,28.0,-0.99553355095268,1.881005840357816 -344,26.0,29.0,-0.6874559028276572,1.293971494797717 -344,27.0,5.0,-4.362844058012917,15.463571542897856 -344,27.0,7.0,-1.4439790613954469,4.540814658476248 -344,27.0,26.0,0.0,2.608731947574922 -344,27.0,27.0,5.806823119408364,-22.67145722159613 -344,28.0,26.0,-0.99553355095268,1.881005840357816 -344,28.0,28.0,1.9075867579849564,-3.604364401207048 -344,28.0,29.0,-0.9120532070322764,1.7233585608492326 -344,29.0,26.0,-0.6874559028276572,1.293971494797717 -344,29.0,28.0,-0.9120532070322764,1.7233585608492326 -344,29.0,29.0,1.5995091098599337,-3.0173300556469496 -345,0.0,0.0,6.765516048652632,-21.23160167089863 -345,0.0,1.0,-5.224646179885656,15.646726840803398 -345,0.0,2.0,-1.5408698687669766,5.631674830095234 -345,1.0,0.0,-5.224646179885656,15.646726840803398 -345,1.0,1.0,9.75228216552403,-30.648662892676068 -345,1.0,3.0,-1.7055303166990268,5.1973792282565086 -345,1.0,4.0,-1.1359607881738778,4.772479328281356 -345,1.0,5.0,-1.6861448807654689,5.116477495334806 -345,2.0,0.0,-1.5408698687669766,5.631674830095234 -345,2.0,2.0,9.736318911079088,-29.13794745915803 -345,2.0,3.0,-8.19544904231211,23.5308726290628 -345,3.0,1.0,-1.7055303166990268,5.1973792282565086 -345,3.0,2.0,-8.19544904231211,23.5308726290628 -345,3.0,3.0,16.314103089185693,-55.509410535254254 -345,3.0,5.0,-6.413123730174556,22.31120356548123 -345,3.0,11.0,0.0,4.191255364806866 -345,4.0,1.0,-1.1359607881738778,4.772479328281356 -345,4.0,4.0,4.089980824135861,-12.190647245055052 -345,4.0,6.0,-2.954020035961983,7.449267916773697 -345,5.0,1.0,-1.6861448807654689,5.116477495334806 -345,5.0,3.0,-6.413123730174556,22.31120356548123 -345,5.0,5.0,22.341631269034565,-82.8291478657789 -345,5.0,6.0,-3.590210423980992,11.02611441072814 -345,5.0,7.0,-6.289308176100628,22.0125786163522 -345,5.0,8.0,0.0,4.915840805411357 -345,5.0,9.0,0.0,1.8561002591115965 -345,5.0,27.0,-4.362844058012917,15.463571542897856 -345,6.0,4.0,-2.954020035961983,7.449267916773697 -345,6.0,5.0,-3.590210423980992,11.02611441072814 -345,6.0,6.0,6.544230459942975,-18.45668232750184 -345,7.0,5.0,-6.289308176100628,22.0125786163522 -345,7.0,7.0,7.733287237496075,-26.527493274828448 -345,7.0,27.0,-1.4439790613954469,4.540814658476248 -345,8.0,5.0,0.0,4.915840805411357 -345,8.0,8.0,0.0,-18.706293706293707 -345,8.0,9.0,0.0,9.090909090909092 -345,8.0,10.0,0.0,4.807692307692308 -345,9.0,5.0,0.0,1.8561002591115965 -345,9.0,8.0,0.0,9.090909090909092 -345,9.0,9.0,13.462042814524237,-41.3837606675224 -345,9.0,16.0,-3.956039125715353,10.317447719844054 -345,9.0,19.0,-1.7848303152666305,3.98535828943083 -345,9.0,20.0,-5.101853820159654,10.98071411292983 -345,9.0,21.0,-2.619319553382597,5.400770303329455 -345,10.0,8.0,0.0,4.807692307692308 -345,10.0,10.0,0.0,-4.807692307692308 -345,11.0,3.0,0.0,4.191255364806866 -345,11.0,11.0,6.573961583776156,-24.424167659260668 -345,11.0,12.0,0.0,7.142857142857143 -345,11.0,13.0,-1.5265676088395577,3.1734252729654173 -345,11.0,14.0,-3.0953961826564296,6.097275864326261 -345,11.0,15.0,-1.9519977922801688,4.104359379111847 -345,12.0,11.0,0.0,7.142857142857143 -345,12.0,12.0,0.0,-7.142857142857143 -345,13.0,11.0,-1.5265676088395577,3.1734252729654173 -345,13.0,13.0,4.01751987283902,-5.424299332335067 -345,13.0,14.0,-2.4909522639994623,2.250874059369649 -345,14.0,11.0,-3.0953961826564296,6.097275864326261 -345,14.0,13.0,-2.4909522639994623,2.250874059369649 -345,14.0,14.0,9.365498545964757,-16.01163373210796 -345,14.0,17.0,-1.8108011504072024,3.687418931630696 -345,14.0,22.0,-1.9683489489016612,3.976064876781356 -345,15.0,11.0,-1.9519977922801688,4.104359379111847 -345,15.0,15.0,3.271064728633931,-8.94513365126506 -345,15.0,16.0,-1.3190669363537617,4.8407742721532125 -345,16.0,9.0,-3.956039125715353,10.317447719844054 -345,16.0,15.0,-1.3190669363537617,4.8407742721532125 -345,16.0,16.0,5.275106062069114,-15.158221991997266 -345,17.0,14.0,-1.8108011504072024,3.687418931630696 -345,17.0,17.0,4.886487584415919,-9.906177730909668 -345,17.0,18.0,-3.0756864340087167,6.218758799278971 -345,18.0,17.0,-3.0756864340087167,6.218758799278971 -345,18.0,18.0,8.958039375185187,-17.98346468163191 -345,18.0,19.0,-5.88235294117647,11.76470588235294 -345,19.0,9.0,-1.7848303152666305,3.98535828943083 -345,19.0,18.0,-5.88235294117647,11.76470588235294 -345,19.0,19.0,7.6671832564431,-15.75006417178377 -345,20.0,9.0,-5.101853820159654,10.98071411292983 -345,20.0,20.0,21.876495189895888,-45.10843276170355 -345,20.0,21.0,-16.774641369736234,34.127718648773715 -345,21.0,9.0,-2.619319553382597,5.400770303329455 -345,21.0,20.0,-16.774641369736234,34.127718648773715 -345,21.0,21.0,21.93449907537439,-43.48289181517921 -345,21.0,23.0,-2.5405381522555563,3.95440286307604 -345,22.0,14.0,-1.9683489489016612,3.976064876781356 -345,22.0,22.0,3.429754555384988,-6.965303617315433 -345,22.0,23.0,-1.4614056064833263,2.989238740534077 -345,23.0,21.0,-2.5405381522555563,3.95440286307604 -345,23.0,22.0,-1.4614056064833263,2.989238740534077 -345,23.0,23.0,5.311836702613133,-9.188263657315172 -345,23.0,24.0,-1.3098929438742493,2.287622053705056 -345,24.0,23.0,-1.3098929438742493,2.287622053705056 -345,24.0,24.0,4.495715080321987,-7.864978761969621 -345,24.0,25.0,-1.2165301194494855,1.8171440463475024 -345,24.0,26.0,-1.9692920169982515,3.760212661917064 -345,25.0,24.0,-1.2165301194494855,1.8171440463475024 -345,25.0,25.0,1.2165301194494855,-1.8171440463475024 -345,26.0,24.0,-1.9692920169982515,3.760212661917064 -345,26.0,26.0,3.652281470778589,-9.46044252232512 -345,26.0,27.0,0.0,2.608731947574922 -345,26.0,28.0,-0.99553355095268,1.881005840357816 -345,26.0,29.0,-0.6874559028276572,1.293971494797717 -345,27.0,5.0,-4.362844058012917,15.463571542897856 -345,27.0,7.0,-1.4439790613954469,4.540814658476248 -345,27.0,26.0,0.0,2.608731947574922 -345,27.0,27.0,5.806823119408364,-22.67145722159613 -345,28.0,26.0,-0.99553355095268,1.881005840357816 -345,28.0,28.0,1.9075867579849564,-3.604364401207048 -345,28.0,29.0,-0.9120532070322764,1.7233585608492326 -345,29.0,26.0,-0.6874559028276572,1.293971494797717 -345,29.0,28.0,-0.9120532070322764,1.7233585608492326 -345,29.0,29.0,1.5995091098599337,-3.0173300556469496 -346,0.0,0.0,6.765516048652632,-21.23160167089863 -346,0.0,1.0,-5.224646179885656,15.646726840803398 -346,0.0,2.0,-1.5408698687669766,5.631674830095234 -346,1.0,0.0,-5.224646179885656,15.646726840803398 -346,1.0,1.0,9.75228216552403,-30.648662892676068 -346,1.0,3.0,-1.7055303166990268,5.1973792282565086 -346,1.0,4.0,-1.1359607881738778,4.772479328281356 -346,1.0,5.0,-1.6861448807654689,5.116477495334806 -346,2.0,0.0,-1.5408698687669766,5.631674830095234 -346,2.0,2.0,9.736318911079088,-29.13794745915803 -346,2.0,3.0,-8.19544904231211,23.5308726290628 -346,3.0,1.0,-1.7055303166990268,5.1973792282565086 -346,3.0,2.0,-8.19544904231211,23.5308726290628 -346,3.0,3.0,16.314103089185693,-55.509410535254254 -346,3.0,5.0,-6.413123730174556,22.31120356548123 -346,3.0,11.0,0.0,4.191255364806866 -346,4.0,1.0,-1.1359607881738778,4.772479328281356 -346,4.0,4.0,4.089980824135861,-12.190647245055052 -346,4.0,6.0,-2.954020035961983,7.449267916773697 -346,5.0,1.0,-1.6861448807654689,5.116477495334806 -346,5.0,3.0,-6.413123730174556,22.31120356548123 -346,5.0,5.0,22.341631269034565,-77.80272577435625 -346,5.0,6.0,-3.590210423980992,11.02611441072814 -346,5.0,7.0,-6.289308176100628,22.0125786163522 -346,5.0,9.0,0.0,1.8561002591115965 -346,5.0,27.0,-4.362844058012917,15.463571542897856 -346,6.0,4.0,-2.954020035961983,7.449267916773697 -346,6.0,5.0,-3.590210423980992,11.02611441072814 -346,6.0,6.0,6.544230459942975,-18.45668232750184 -346,7.0,5.0,-6.289308176100628,22.0125786163522 -346,7.0,7.0,7.733287237496075,-26.527493274828448 -346,7.0,27.0,-1.4439790613954469,4.540814658476248 -346,8.0,8.0,0.0,-13.8986013986014 -346,8.0,9.0,0.0,9.090909090909092 -346,8.0,10.0,0.0,4.807692307692308 -346,9.0,5.0,0.0,1.8561002591115965 -346,9.0,8.0,0.0,9.090909090909092 -346,9.0,9.0,13.462042814524237,-41.3837606675224 -346,9.0,16.0,-3.956039125715353,10.317447719844054 -346,9.0,19.0,-1.7848303152666305,3.98535828943083 -346,9.0,20.0,-5.101853820159654,10.98071411292983 -346,9.0,21.0,-2.619319553382597,5.400770303329455 -346,10.0,8.0,0.0,4.807692307692308 -346,10.0,10.0,0.0,-4.807692307692308 -346,11.0,3.0,0.0,4.191255364806866 -346,11.0,11.0,5.047393974936599,-21.25074238629525 -346,11.0,12.0,0.0,7.142857142857143 -346,11.0,14.0,-3.0953961826564296,6.097275864326261 -346,11.0,15.0,-1.9519977922801688,4.104359379111847 -346,12.0,11.0,0.0,7.142857142857143 -346,12.0,12.0,0.0,-7.142857142857143 -346,13.0,13.0,2.4909522639994623,-2.250874059369649 -346,13.0,14.0,-2.4909522639994623,2.250874059369649 -346,14.0,11.0,-3.0953961826564296,6.097275864326261 -346,14.0,13.0,-2.4909522639994623,2.250874059369649 -346,14.0,14.0,9.365498545964757,-16.01163373210796 -346,14.0,17.0,-1.8108011504072024,3.687418931630696 -346,14.0,22.0,-1.9683489489016612,3.976064876781356 -346,15.0,11.0,-1.9519977922801688,4.104359379111847 -346,15.0,15.0,3.271064728633931,-8.94513365126506 -346,15.0,16.0,-1.3190669363537617,4.8407742721532125 -346,16.0,9.0,-3.956039125715353,10.317447719844054 -346,16.0,15.0,-1.3190669363537617,4.8407742721532125 -346,16.0,16.0,5.275106062069114,-15.158221991997266 -346,17.0,14.0,-1.8108011504072024,3.687418931630696 -346,17.0,17.0,1.8108011504072024,-3.687418931630696 -346,18.0,18.0,5.88235294117647,-11.76470588235294 -346,18.0,19.0,-5.88235294117647,11.76470588235294 -346,19.0,9.0,-1.7848303152666305,3.98535828943083 -346,19.0,18.0,-5.88235294117647,11.76470588235294 -346,19.0,19.0,7.6671832564431,-15.75006417178377 -346,20.0,9.0,-5.101853820159654,10.98071411292983 -346,20.0,20.0,21.876495189895888,-45.10843276170355 -346,20.0,21.0,-16.774641369736234,34.127718648773715 -346,21.0,9.0,-2.619319553382597,5.400770303329455 -346,21.0,20.0,-16.774641369736234,34.127718648773715 -346,21.0,21.0,21.93449907537439,-43.48289181517921 -346,21.0,23.0,-2.5405381522555563,3.95440286307604 -346,22.0,14.0,-1.9683489489016612,3.976064876781356 -346,22.0,22.0,3.429754555384988,-6.965303617315433 -346,22.0,23.0,-1.4614056064833263,2.989238740534077 -346,23.0,21.0,-2.5405381522555563,3.95440286307604 -346,23.0,22.0,-1.4614056064833263,2.989238740534077 -346,23.0,23.0,5.311836702613133,-9.188263657315172 -346,23.0,24.0,-1.3098929438742493,2.287622053705056 -346,24.0,23.0,-1.3098929438742493,2.287622053705056 -346,24.0,24.0,4.495715080321987,-7.864978761969621 -346,24.0,25.0,-1.2165301194494855,1.8171440463475024 -346,24.0,26.0,-1.9692920169982515,3.760212661917064 -346,25.0,24.0,-1.2165301194494855,1.8171440463475024 -346,25.0,25.0,1.2165301194494855,-1.8171440463475024 -346,26.0,24.0,-1.9692920169982515,3.760212661917064 -346,26.0,26.0,3.652281470778589,-9.46044252232512 -346,26.0,27.0,0.0,2.608731947574922 -346,26.0,28.0,-0.99553355095268,1.881005840357816 -346,26.0,29.0,-0.6874559028276572,1.293971494797717 -346,27.0,5.0,-4.362844058012917,15.463571542897856 -346,27.0,7.0,-1.4439790613954469,4.540814658476248 -346,27.0,26.0,0.0,2.608731947574922 -346,27.0,27.0,5.806823119408364,-22.67145722159613 -346,28.0,26.0,-0.99553355095268,1.881005840357816 -346,28.0,28.0,1.9075867579849564,-3.604364401207048 -346,28.0,29.0,-0.9120532070322764,1.7233585608492326 -346,29.0,26.0,-0.6874559028276572,1.293971494797717 -346,29.0,28.0,-0.9120532070322764,1.7233585608492326 -346,29.0,29.0,1.5995091098599337,-3.0173300556469496 -347,0.0,0.0,6.765516048652632,-21.23160167089863 -347,0.0,1.0,-5.224646179885656,15.646726840803398 -347,0.0,2.0,-1.5408698687669766,5.631674830095234 -347,1.0,0.0,-5.224646179885656,15.646726840803398 -347,1.0,1.0,9.75228216552403,-30.648662892676068 -347,1.0,3.0,-1.7055303166990268,5.1973792282565086 -347,1.0,4.0,-1.1359607881738778,4.772479328281356 -347,1.0,5.0,-1.6861448807654689,5.116477495334806 -347,2.0,0.0,-1.5408698687669766,5.631674830095234 -347,2.0,2.0,9.736318911079088,-29.13794745915803 -347,2.0,3.0,-8.19544904231211,23.5308726290628 -347,3.0,1.0,-1.7055303166990268,5.1973792282565086 -347,3.0,2.0,-8.19544904231211,23.5308726290628 -347,3.0,3.0,16.314103089185693,-55.509410535254254 -347,3.0,5.0,-6.413123730174556,22.31120356548123 -347,3.0,11.0,0.0,4.191255364806866 -347,4.0,1.0,-1.1359607881738778,4.772479328281356 -347,4.0,4.0,4.089980824135861,-12.190647245055052 -347,4.0,6.0,-2.954020035961983,7.449267916773697 -347,5.0,1.0,-1.6861448807654689,5.116477495334806 -347,5.0,3.0,-6.413123730174556,22.31120356548123 -347,5.0,5.0,22.341631269034565,-82.8291478657789 -347,5.0,6.0,-3.590210423980992,11.02611441072814 -347,5.0,7.0,-6.289308176100628,22.0125786163522 -347,5.0,8.0,0.0,4.915840805411357 -347,5.0,9.0,0.0,1.8561002591115965 -347,5.0,27.0,-4.362844058012917,15.463571542897856 -347,6.0,4.0,-2.954020035961983,7.449267916773697 -347,6.0,5.0,-3.590210423980992,11.02611441072814 -347,6.0,6.0,6.544230459942975,-18.45668232750184 -347,7.0,5.0,-6.289308176100628,22.0125786163522 -347,7.0,7.0,7.733287237496075,-26.527493274828448 -347,7.0,27.0,-1.4439790613954469,4.540814658476248 -347,8.0,5.0,0.0,4.915840805411357 -347,8.0,8.0,0.0,-18.706293706293707 -347,8.0,9.0,0.0,9.090909090909092 -347,8.0,10.0,0.0,4.807692307692308 -347,9.0,5.0,0.0,1.8561002591115965 -347,9.0,8.0,0.0,9.090909090909092 -347,9.0,9.0,13.462042814524237,-41.3837606675224 -347,9.0,16.0,-3.956039125715353,10.317447719844054 -347,9.0,19.0,-1.7848303152666305,3.98535828943083 -347,9.0,20.0,-5.101853820159654,10.98071411292983 -347,9.0,21.0,-2.619319553382597,5.400770303329455 -347,10.0,8.0,0.0,4.807692307692308 -347,10.0,10.0,0.0,-4.807692307692308 -347,11.0,3.0,0.0,4.191255364806866 -347,11.0,11.0,6.573961583776156,-24.424167659260668 -347,11.0,12.0,0.0,7.142857142857143 -347,11.0,13.0,-1.5265676088395577,3.1734252729654173 -347,11.0,14.0,-3.0953961826564296,6.097275864326261 -347,11.0,15.0,-1.9519977922801688,4.104359379111847 -347,12.0,11.0,0.0,7.142857142857143 -347,12.0,12.0,0.0,-7.142857142857143 -347,13.0,11.0,-1.5265676088395577,3.1734252729654173 -347,13.0,13.0,4.01751987283902,-5.424299332335067 -347,13.0,14.0,-2.4909522639994623,2.250874059369649 -347,14.0,11.0,-3.0953961826564296,6.097275864326261 -347,14.0,13.0,-2.4909522639994623,2.250874059369649 -347,14.0,14.0,9.365498545964757,-16.01163373210796 -347,14.0,17.0,-1.8108011504072024,3.687418931630696 -347,14.0,22.0,-1.9683489489016612,3.976064876781356 -347,15.0,11.0,-1.9519977922801688,4.104359379111847 -347,15.0,15.0,3.271064728633931,-8.94513365126506 -347,15.0,16.0,-1.3190669363537617,4.8407742721532125 -347,16.0,9.0,-3.956039125715353,10.317447719844054 -347,16.0,15.0,-1.3190669363537617,4.8407742721532125 -347,16.0,16.0,5.275106062069114,-15.158221991997266 -347,17.0,14.0,-1.8108011504072024,3.687418931630696 -347,17.0,17.0,4.886487584415919,-9.906177730909668 -347,17.0,18.0,-3.0756864340087167,6.218758799278971 -347,18.0,17.0,-3.0756864340087167,6.218758799278971 -347,18.0,18.0,8.958039375185187,-17.98346468163191 -347,18.0,19.0,-5.88235294117647,11.76470588235294 -347,19.0,9.0,-1.7848303152666305,3.98535828943083 -347,19.0,18.0,-5.88235294117647,11.76470588235294 -347,19.0,19.0,7.6671832564431,-15.75006417178377 -347,20.0,9.0,-5.101853820159654,10.98071411292983 -347,20.0,20.0,21.876495189895888,-45.10843276170355 -347,20.0,21.0,-16.774641369736234,34.127718648773715 -347,21.0,9.0,-2.619319553382597,5.400770303329455 -347,21.0,20.0,-16.774641369736234,34.127718648773715 -347,21.0,21.0,21.93449907537439,-43.48289181517921 -347,21.0,23.0,-2.5405381522555563,3.95440286307604 -347,22.0,14.0,-1.9683489489016612,3.976064876781356 -347,22.0,22.0,3.429754555384988,-6.965303617315433 -347,22.0,23.0,-1.4614056064833263,2.989238740534077 -347,23.0,21.0,-2.5405381522555563,3.95440286307604 -347,23.0,22.0,-1.4614056064833263,2.989238740534077 -347,23.0,23.0,5.311836702613133,-9.188263657315172 -347,23.0,24.0,-1.3098929438742493,2.287622053705056 -347,24.0,23.0,-1.3098929438742493,2.287622053705056 -347,24.0,24.0,4.495715080321987,-7.864978761969621 -347,24.0,25.0,-1.2165301194494855,1.8171440463475024 -347,24.0,26.0,-1.9692920169982515,3.760212661917064 -347,25.0,24.0,-1.2165301194494855,1.8171440463475024 -347,25.0,25.0,1.2165301194494855,-1.8171440463475024 -347,26.0,24.0,-1.9692920169982515,3.760212661917064 -347,26.0,26.0,3.652281470778589,-9.46044252232512 -347,26.0,27.0,0.0,2.608731947574922 -347,26.0,28.0,-0.99553355095268,1.881005840357816 -347,26.0,29.0,-0.6874559028276572,1.293971494797717 -347,27.0,5.0,-4.362844058012917,15.463571542897856 -347,27.0,7.0,-1.4439790613954469,4.540814658476248 -347,27.0,26.0,0.0,2.608731947574922 -347,27.0,27.0,5.806823119408364,-22.67145722159613 -347,28.0,26.0,-0.99553355095268,1.881005840357816 -347,28.0,28.0,1.9075867579849564,-3.604364401207048 -347,28.0,29.0,-0.9120532070322764,1.7233585608492326 -347,29.0,26.0,-0.6874559028276572,1.293971494797717 -347,29.0,28.0,-0.9120532070322764,1.7233585608492326 -347,29.0,29.0,1.5995091098599337,-3.0173300556469496 -348,0.0,0.0,6.765516048652632,-21.23160167089863 -348,0.0,1.0,-5.224646179885656,15.646726840803398 -348,0.0,2.0,-1.5408698687669766,5.631674830095234 -348,1.0,0.0,-5.224646179885656,15.646726840803398 -348,1.0,1.0,9.75228216552403,-30.648662892676068 -348,1.0,3.0,-1.7055303166990268,5.1973792282565086 -348,1.0,4.0,-1.1359607881738778,4.772479328281356 -348,1.0,5.0,-1.6861448807654689,5.116477495334806 -348,2.0,0.0,-1.5408698687669766,5.631674830095234 -348,2.0,2.0,9.736318911079088,-29.13794745915803 -348,2.0,3.0,-8.19544904231211,23.5308726290628 -348,3.0,1.0,-1.7055303166990268,5.1973792282565086 -348,3.0,2.0,-8.19544904231211,23.5308726290628 -348,3.0,3.0,16.314103089185693,-55.509410535254254 -348,3.0,5.0,-6.413123730174556,22.31120356548123 -348,3.0,11.0,0.0,4.191255364806866 -348,4.0,1.0,-1.1359607881738778,4.772479328281356 -348,4.0,4.0,4.089980824135861,-12.190647245055052 -348,4.0,6.0,-2.954020035961983,7.449267916773697 -348,5.0,1.0,-1.6861448807654689,5.116477495334806 -348,5.0,3.0,-6.413123730174556,22.31120356548123 -348,5.0,5.0,22.341631269034565,-82.8291478657789 -348,5.0,6.0,-3.590210423980992,11.02611441072814 -348,5.0,7.0,-6.289308176100628,22.0125786163522 -348,5.0,8.0,0.0,4.915840805411357 -348,5.0,9.0,0.0,1.8561002591115965 -348,5.0,27.0,-4.362844058012917,15.463571542897856 -348,6.0,4.0,-2.954020035961983,7.449267916773697 -348,6.0,5.0,-3.590210423980992,11.02611441072814 -348,6.0,6.0,6.544230459942975,-18.45668232750184 -348,7.0,5.0,-6.289308176100628,22.0125786163522 -348,7.0,7.0,7.733287237496075,-26.527493274828448 -348,7.0,27.0,-1.4439790613954469,4.540814658476248 -348,8.0,5.0,0.0,4.915840805411357 -348,8.0,8.0,0.0,-18.706293706293707 -348,8.0,9.0,0.0,9.090909090909092 -348,8.0,10.0,0.0,4.807692307692308 -348,9.0,5.0,0.0,1.8561002591115965 -348,9.0,8.0,0.0,9.090909090909092 -348,9.0,9.0,13.462042814524237,-41.3837606675224 -348,9.0,16.0,-3.956039125715353,10.317447719844054 -348,9.0,19.0,-1.7848303152666305,3.98535828943083 -348,9.0,20.0,-5.101853820159654,10.98071411292983 -348,9.0,21.0,-2.619319553382597,5.400770303329455 -348,10.0,8.0,0.0,4.807692307692308 -348,10.0,10.0,0.0,-4.807692307692308 -348,11.0,3.0,0.0,4.191255364806866 -348,11.0,11.0,6.573961583776156,-24.424167659260668 -348,11.0,12.0,0.0,7.142857142857143 -348,11.0,13.0,-1.5265676088395577,3.1734252729654173 -348,11.0,14.0,-3.0953961826564296,6.097275864326261 -348,11.0,15.0,-1.9519977922801688,4.104359379111847 -348,12.0,11.0,0.0,7.142857142857143 -348,12.0,12.0,0.0,-7.142857142857143 -348,13.0,11.0,-1.5265676088395577,3.1734252729654173 -348,13.0,13.0,4.01751987283902,-5.424299332335067 -348,13.0,14.0,-2.4909522639994623,2.250874059369649 -348,14.0,11.0,-3.0953961826564296,6.097275864326261 -348,14.0,13.0,-2.4909522639994623,2.250874059369649 -348,14.0,14.0,9.365498545964757,-16.01163373210796 -348,14.0,17.0,-1.8108011504072024,3.687418931630696 -348,14.0,22.0,-1.9683489489016612,3.976064876781356 -348,15.0,11.0,-1.9519977922801688,4.104359379111847 -348,15.0,15.0,3.271064728633931,-8.94513365126506 -348,15.0,16.0,-1.3190669363537617,4.8407742721532125 -348,16.0,9.0,-3.956039125715353,10.317447719844054 -348,16.0,15.0,-1.3190669363537617,4.8407742721532125 -348,16.0,16.0,5.275106062069114,-15.158221991997266 -348,17.0,14.0,-1.8108011504072024,3.687418931630696 -348,17.0,17.0,4.886487584415919,-9.906177730909668 -348,17.0,18.0,-3.0756864340087167,6.218758799278971 -348,18.0,17.0,-3.0756864340087167,6.218758799278971 -348,18.0,18.0,8.958039375185187,-17.98346468163191 -348,18.0,19.0,-5.88235294117647,11.76470588235294 -348,19.0,9.0,-1.7848303152666305,3.98535828943083 -348,19.0,18.0,-5.88235294117647,11.76470588235294 -348,19.0,19.0,7.6671832564431,-15.75006417178377 -348,20.0,9.0,-5.101853820159654,10.98071411292983 -348,20.0,20.0,21.876495189895888,-45.10843276170355 -348,20.0,21.0,-16.774641369736234,34.127718648773715 -348,21.0,9.0,-2.619319553382597,5.400770303329455 -348,21.0,20.0,-16.774641369736234,34.127718648773715 -348,21.0,21.0,21.93449907537439,-43.48289181517921 -348,21.0,23.0,-2.5405381522555563,3.95440286307604 -348,22.0,14.0,-1.9683489489016612,3.976064876781356 -348,22.0,22.0,3.429754555384988,-6.965303617315433 -348,22.0,23.0,-1.4614056064833263,2.989238740534077 -348,23.0,21.0,-2.5405381522555563,3.95440286307604 -348,23.0,22.0,-1.4614056064833263,2.989238740534077 -348,23.0,23.0,5.311836702613133,-9.188263657315172 -348,23.0,24.0,-1.3098929438742493,2.287622053705056 -348,24.0,23.0,-1.3098929438742493,2.287622053705056 -348,24.0,24.0,4.495715080321987,-7.864978761969621 -348,24.0,25.0,-1.2165301194494855,1.8171440463475024 -348,24.0,26.0,-1.9692920169982515,3.760212661917064 -348,25.0,24.0,-1.2165301194494855,1.8171440463475024 -348,25.0,25.0,1.2165301194494855,-1.8171440463475024 -348,26.0,24.0,-1.9692920169982515,3.760212661917064 -348,26.0,26.0,2.656747919825909,-7.579436681967305 -348,26.0,27.0,0.0,2.608731947574922 -348,26.0,29.0,-0.6874559028276572,1.293971494797717 -348,27.0,5.0,-4.362844058012917,15.463571542897856 -348,27.0,7.0,-1.4439790613954469,4.540814658476248 -348,27.0,26.0,0.0,2.608731947574922 -348,27.0,27.0,5.806823119408364,-22.67145722159613 -348,28.0,28.0,0.9120532070322764,-1.7233585608492326 -348,28.0,29.0,-0.9120532070322764,1.7233585608492326 -348,29.0,26.0,-0.6874559028276572,1.293971494797717 -348,29.0,28.0,-0.9120532070322764,1.7233585608492326 -348,29.0,29.0,1.5995091098599337,-3.0173300556469496 -349,0.0,0.0,6.765516048652632,-21.23160167089863 -349,0.0,1.0,-5.224646179885656,15.646726840803398 -349,0.0,2.0,-1.5408698687669766,5.631674830095234 -349,1.0,0.0,-5.224646179885656,15.646726840803398 -349,1.0,1.0,9.75228216552403,-30.648662892676068 -349,1.0,3.0,-1.7055303166990268,5.1973792282565086 -349,1.0,4.0,-1.1359607881738778,4.772479328281356 -349,1.0,5.0,-1.6861448807654689,5.116477495334806 -349,2.0,0.0,-1.5408698687669766,5.631674830095234 -349,2.0,2.0,9.736318911079088,-29.13794745915803 -349,2.0,3.0,-8.19544904231211,23.5308726290628 -349,3.0,1.0,-1.7055303166990268,5.1973792282565086 -349,3.0,2.0,-8.19544904231211,23.5308726290628 -349,3.0,3.0,16.314103089185693,-55.509410535254254 -349,3.0,5.0,-6.413123730174556,22.31120356548123 -349,3.0,11.0,0.0,4.191255364806866 -349,4.0,1.0,-1.1359607881738778,4.772479328281356 -349,4.0,4.0,4.089980824135861,-12.190647245055052 -349,4.0,6.0,-2.954020035961983,7.449267916773697 -349,5.0,1.0,-1.6861448807654689,5.116477495334806 -349,5.0,3.0,-6.413123730174556,22.31120356548123 -349,5.0,5.0,22.341631269034565,-82.8291478657789 -349,5.0,6.0,-3.590210423980992,11.02611441072814 -349,5.0,7.0,-6.289308176100628,22.0125786163522 -349,5.0,8.0,0.0,4.915840805411357 -349,5.0,9.0,0.0,1.8561002591115965 -349,5.0,27.0,-4.362844058012917,15.463571542897856 -349,6.0,4.0,-2.954020035961983,7.449267916773697 -349,6.0,5.0,-3.590210423980992,11.02611441072814 -349,6.0,6.0,6.544230459942975,-18.45668232750184 -349,7.0,5.0,-6.289308176100628,22.0125786163522 -349,7.0,7.0,7.733287237496075,-26.527493274828448 -349,7.0,27.0,-1.4439790613954469,4.540814658476248 -349,8.0,5.0,0.0,4.915840805411357 -349,8.0,8.0,0.0,-18.706293706293707 -349,8.0,9.0,0.0,9.090909090909092 -349,8.0,10.0,0.0,4.807692307692308 -349,9.0,5.0,0.0,1.8561002591115965 -349,9.0,8.0,0.0,9.090909090909092 -349,9.0,9.0,13.462042814524237,-41.3837606675224 -349,9.0,16.0,-3.956039125715353,10.317447719844054 -349,9.0,19.0,-1.7848303152666305,3.98535828943083 -349,9.0,20.0,-5.101853820159654,10.98071411292983 -349,9.0,21.0,-2.619319553382597,5.400770303329455 -349,10.0,8.0,0.0,4.807692307692308 -349,10.0,10.0,0.0,-4.807692307692308 -349,11.0,3.0,0.0,4.191255364806866 -349,11.0,11.0,6.573961583776156,-24.424167659260668 -349,11.0,12.0,0.0,7.142857142857143 -349,11.0,13.0,-1.5265676088395577,3.1734252729654173 -349,11.0,14.0,-3.0953961826564296,6.097275864326261 -349,11.0,15.0,-1.9519977922801688,4.104359379111847 -349,12.0,11.0,0.0,7.142857142857143 -349,12.0,12.0,0.0,-7.142857142857143 -349,13.0,11.0,-1.5265676088395577,3.1734252729654173 -349,13.0,13.0,4.01751987283902,-5.424299332335067 -349,13.0,14.0,-2.4909522639994623,2.250874059369649 -349,14.0,11.0,-3.0953961826564296,6.097275864326261 -349,14.0,13.0,-2.4909522639994623,2.250874059369649 -349,14.0,14.0,9.365498545964757,-16.01163373210796 -349,14.0,17.0,-1.8108011504072024,3.687418931630696 -349,14.0,22.0,-1.9683489489016612,3.976064876781356 -349,15.0,11.0,-1.9519977922801688,4.104359379111847 -349,15.0,15.0,3.271064728633931,-8.94513365126506 -349,15.0,16.0,-1.3190669363537617,4.8407742721532125 -349,16.0,9.0,-3.956039125715353,10.317447719844054 -349,16.0,15.0,-1.3190669363537617,4.8407742721532125 -349,16.0,16.0,5.275106062069114,-15.158221991997266 -349,17.0,14.0,-1.8108011504072024,3.687418931630696 -349,17.0,17.0,4.886487584415919,-9.906177730909668 -349,17.0,18.0,-3.0756864340087167,6.218758799278971 -349,18.0,17.0,-3.0756864340087167,6.218758799278971 -349,18.0,18.0,3.0756864340087167,-6.218758799278971 -349,19.0,9.0,-1.7848303152666305,3.98535828943083 -349,19.0,19.0,1.7848303152666305,-3.98535828943083 -349,20.0,9.0,-5.101853820159654,10.98071411292983 -349,20.0,20.0,21.876495189895888,-45.10843276170355 -349,20.0,21.0,-16.774641369736234,34.127718648773715 -349,21.0,9.0,-2.619319553382597,5.400770303329455 -349,21.0,20.0,-16.774641369736234,34.127718648773715 -349,21.0,21.0,21.93449907537439,-43.48289181517921 -349,21.0,23.0,-2.5405381522555563,3.95440286307604 -349,22.0,14.0,-1.9683489489016612,3.976064876781356 -349,22.0,22.0,3.429754555384988,-6.965303617315433 -349,22.0,23.0,-1.4614056064833263,2.989238740534077 -349,23.0,21.0,-2.5405381522555563,3.95440286307604 -349,23.0,22.0,-1.4614056064833263,2.989238740534077 -349,23.0,23.0,5.311836702613133,-9.188263657315172 -349,23.0,24.0,-1.3098929438742493,2.287622053705056 -349,24.0,23.0,-1.3098929438742493,2.287622053705056 -349,24.0,24.0,4.495715080321987,-7.864978761969621 -349,24.0,25.0,-1.2165301194494855,1.8171440463475024 -349,24.0,26.0,-1.9692920169982515,3.760212661917064 -349,25.0,24.0,-1.2165301194494855,1.8171440463475024 -349,25.0,25.0,1.2165301194494855,-1.8171440463475024 -349,26.0,24.0,-1.9692920169982515,3.760212661917064 -349,26.0,26.0,3.652281470778589,-9.46044252232512 -349,26.0,27.0,0.0,2.608731947574922 -349,26.0,28.0,-0.99553355095268,1.881005840357816 -349,26.0,29.0,-0.6874559028276572,1.293971494797717 -349,27.0,5.0,-4.362844058012917,15.463571542897856 -349,27.0,7.0,-1.4439790613954469,4.540814658476248 -349,27.0,26.0,0.0,2.608731947574922 -349,27.0,27.0,5.806823119408364,-22.67145722159613 -349,28.0,26.0,-0.99553355095268,1.881005840357816 -349,28.0,28.0,1.9075867579849564,-3.604364401207048 -349,28.0,29.0,-0.9120532070322764,1.7233585608492326 -349,29.0,26.0,-0.6874559028276572,1.293971494797717 -349,29.0,28.0,-0.9120532070322764,1.7233585608492326 -349,29.0,29.0,1.5995091098599337,-3.0173300556469496 -350,0.0,0.0,6.765516048652632,-21.23160167089863 -350,0.0,1.0,-5.224646179885656,15.646726840803398 -350,0.0,2.0,-1.5408698687669766,5.631674830095234 -350,1.0,0.0,-5.224646179885656,15.646726840803398 -350,1.0,1.0,9.75228216552403,-30.648662892676068 -350,1.0,3.0,-1.7055303166990268,5.1973792282565086 -350,1.0,4.0,-1.1359607881738778,4.772479328281356 -350,1.0,5.0,-1.6861448807654689,5.116477495334806 -350,2.0,0.0,-1.5408698687669766,5.631674830095234 -350,2.0,2.0,9.736318911079088,-29.13794745915803 -350,2.0,3.0,-8.19544904231211,23.5308726290628 -350,3.0,1.0,-1.7055303166990268,5.1973792282565086 -350,3.0,2.0,-8.19544904231211,23.5308726290628 -350,3.0,3.0,16.314103089185693,-55.509410535254254 -350,3.0,5.0,-6.413123730174556,22.31120356548123 -350,3.0,11.0,0.0,4.191255364806866 -350,4.0,1.0,-1.1359607881738778,4.772479328281356 -350,4.0,4.0,4.089980824135861,-12.190647245055052 -350,4.0,6.0,-2.954020035961983,7.449267916773697 -350,5.0,1.0,-1.6861448807654689,5.116477495334806 -350,5.0,3.0,-6.413123730174556,22.31120356548123 -350,5.0,5.0,22.341631269034565,-82.8291478657789 -350,5.0,6.0,-3.590210423980992,11.02611441072814 -350,5.0,7.0,-6.289308176100628,22.0125786163522 -350,5.0,8.0,0.0,4.915840805411357 -350,5.0,9.0,0.0,1.8561002591115965 -350,5.0,27.0,-4.362844058012917,15.463571542897856 -350,6.0,4.0,-2.954020035961983,7.449267916773697 -350,6.0,5.0,-3.590210423980992,11.02611441072814 -350,6.0,6.0,6.544230459942975,-18.45668232750184 -350,7.0,5.0,-6.289308176100628,22.0125786163522 -350,7.0,7.0,7.733287237496075,-26.527493274828448 -350,7.0,27.0,-1.4439790613954469,4.540814658476248 -350,8.0,5.0,0.0,4.915840805411357 -350,8.0,8.0,0.0,-18.706293706293707 -350,8.0,9.0,0.0,9.090909090909092 -350,8.0,10.0,0.0,4.807692307692308 -350,9.0,5.0,0.0,1.8561002591115965 -350,9.0,8.0,0.0,9.090909090909092 -350,9.0,9.0,13.462042814524237,-41.3837606675224 -350,9.0,16.0,-3.956039125715353,10.317447719844054 -350,9.0,19.0,-1.7848303152666305,3.98535828943083 -350,9.0,20.0,-5.101853820159654,10.98071411292983 -350,9.0,21.0,-2.619319553382597,5.400770303329455 -350,10.0,8.0,0.0,4.807692307692308 -350,10.0,10.0,0.0,-4.807692307692308 -350,11.0,3.0,0.0,4.191255364806866 -350,11.0,11.0,6.573961583776156,-24.424167659260668 -350,11.0,12.0,0.0,7.142857142857143 -350,11.0,13.0,-1.5265676088395577,3.1734252729654173 -350,11.0,14.0,-3.0953961826564296,6.097275864326261 -350,11.0,15.0,-1.9519977922801688,4.104359379111847 -350,12.0,11.0,0.0,7.142857142857143 -350,12.0,12.0,0.0,-7.142857142857143 -350,13.0,11.0,-1.5265676088395577,3.1734252729654173 -350,13.0,13.0,4.01751987283902,-5.424299332335067 -350,13.0,14.0,-2.4909522639994623,2.250874059369649 -350,14.0,11.0,-3.0953961826564296,6.097275864326261 -350,14.0,13.0,-2.4909522639994623,2.250874059369649 -350,14.0,14.0,9.365498545964757,-16.01163373210796 -350,14.0,17.0,-1.8108011504072024,3.687418931630696 -350,14.0,22.0,-1.9683489489016612,3.976064876781356 -350,15.0,11.0,-1.9519977922801688,4.104359379111847 -350,15.0,15.0,3.271064728633931,-8.94513365126506 -350,15.0,16.0,-1.3190669363537617,4.8407742721532125 -350,16.0,9.0,-3.956039125715353,10.317447719844054 -350,16.0,15.0,-1.3190669363537617,4.8407742721532125 -350,16.0,16.0,5.275106062069114,-15.158221991997266 -350,17.0,14.0,-1.8108011504072024,3.687418931630696 -350,17.0,17.0,4.886487584415919,-9.906177730909668 -350,17.0,18.0,-3.0756864340087167,6.218758799278971 -350,18.0,17.0,-3.0756864340087167,6.218758799278971 -350,18.0,18.0,8.958039375185187,-17.98346468163191 -350,18.0,19.0,-5.88235294117647,11.76470588235294 -350,19.0,9.0,-1.7848303152666305,3.98535828943083 -350,19.0,18.0,-5.88235294117647,11.76470588235294 -350,19.0,19.0,7.6671832564431,-15.75006417178377 -350,20.0,9.0,-5.101853820159654,10.98071411292983 -350,20.0,20.0,21.876495189895888,-45.10843276170355 -350,20.0,21.0,-16.774641369736234,34.127718648773715 -350,21.0,9.0,-2.619319553382597,5.400770303329455 -350,21.0,20.0,-16.774641369736234,34.127718648773715 -350,21.0,21.0,21.93449907537439,-43.48289181517921 -350,21.0,23.0,-2.5405381522555563,3.95440286307604 -350,22.0,14.0,-1.9683489489016612,3.976064876781356 -350,22.0,22.0,3.429754555384988,-6.965303617315433 -350,22.0,23.0,-1.4614056064833263,2.989238740534077 -350,23.0,21.0,-2.5405381522555563,3.95440286307604 -350,23.0,22.0,-1.4614056064833263,2.989238740534077 -350,23.0,23.0,5.311836702613133,-9.188263657315172 -350,23.0,24.0,-1.3098929438742493,2.287622053705056 -350,24.0,23.0,-1.3098929438742493,2.287622053705056 -350,24.0,24.0,4.495715080321987,-7.864978761969621 -350,24.0,25.0,-1.2165301194494855,1.8171440463475024 -350,24.0,26.0,-1.9692920169982515,3.760212661917064 -350,25.0,24.0,-1.2165301194494855,1.8171440463475024 -350,25.0,25.0,1.2165301194494855,-1.8171440463475024 -350,26.0,24.0,-1.9692920169982515,3.760212661917064 -350,26.0,26.0,3.652281470778589,-9.46044252232512 -350,26.0,27.0,0.0,2.608731947574922 -350,26.0,28.0,-0.99553355095268,1.881005840357816 -350,26.0,29.0,-0.6874559028276572,1.293971494797717 -350,27.0,5.0,-4.362844058012917,15.463571542897856 -350,27.0,7.0,-1.4439790613954469,4.540814658476248 -350,27.0,26.0,0.0,2.608731947574922 -350,27.0,27.0,5.806823119408364,-22.67145722159613 -350,28.0,26.0,-0.99553355095268,1.881005840357816 -350,28.0,28.0,1.9075867579849564,-3.604364401207048 -350,28.0,29.0,-0.9120532070322764,1.7233585608492326 -350,29.0,26.0,-0.6874559028276572,1.293971494797717 -350,29.0,28.0,-0.9120532070322764,1.7233585608492326 -350,29.0,29.0,1.5995091098599337,-3.0173300556469496 -351,0.0,0.0,6.765516048652632,-21.23160167089863 -351,0.0,1.0,-5.224646179885656,15.646726840803398 -351,0.0,2.0,-1.5408698687669766,5.631674830095234 -351,1.0,0.0,-5.224646179885656,15.646726840803398 -351,1.0,1.0,9.75228216552403,-30.648662892676068 -351,1.0,3.0,-1.7055303166990268,5.1973792282565086 -351,1.0,4.0,-1.1359607881738778,4.772479328281356 -351,1.0,5.0,-1.6861448807654689,5.116477495334806 -351,2.0,0.0,-1.5408698687669766,5.631674830095234 -351,2.0,2.0,9.736318911079088,-29.13794745915803 -351,2.0,3.0,-8.19544904231211,23.5308726290628 -351,3.0,1.0,-1.7055303166990268,5.1973792282565086 -351,3.0,2.0,-8.19544904231211,23.5308726290628 -351,3.0,3.0,16.314103089185693,-55.509410535254254 -351,3.0,5.0,-6.413123730174556,22.31120356548123 -351,3.0,11.0,0.0,4.191255364806866 -351,4.0,1.0,-1.1359607881738778,4.772479328281356 -351,4.0,4.0,4.089980824135861,-12.190647245055052 -351,4.0,6.0,-2.954020035961983,7.449267916773697 -351,5.0,1.0,-1.6861448807654689,5.116477495334806 -351,5.0,3.0,-6.413123730174556,22.31120356548123 -351,5.0,5.0,22.341631269034565,-82.8291478657789 -351,5.0,6.0,-3.590210423980992,11.02611441072814 -351,5.0,7.0,-6.289308176100628,22.0125786163522 -351,5.0,8.0,0.0,4.915840805411357 -351,5.0,9.0,0.0,1.8561002591115965 -351,5.0,27.0,-4.362844058012917,15.463571542897856 -351,6.0,4.0,-2.954020035961983,7.449267916773697 -351,6.0,5.0,-3.590210423980992,11.02611441072814 -351,6.0,6.0,6.544230459942975,-18.45668232750184 -351,7.0,5.0,-6.289308176100628,22.0125786163522 -351,7.0,7.0,7.733287237496075,-26.527493274828448 -351,7.0,27.0,-1.4439790613954469,4.540814658476248 -351,8.0,5.0,0.0,4.915840805411357 -351,8.0,8.0,0.0,-18.706293706293707 -351,8.0,9.0,0.0,9.090909090909092 -351,8.0,10.0,0.0,4.807692307692308 -351,9.0,5.0,0.0,1.8561002591115965 -351,9.0,8.0,0.0,9.090909090909092 -351,9.0,9.0,13.462042814524237,-41.3837606675224 -351,9.0,16.0,-3.956039125715353,10.317447719844054 -351,9.0,19.0,-1.7848303152666305,3.98535828943083 -351,9.0,20.0,-5.101853820159654,10.98071411292983 -351,9.0,21.0,-2.619319553382597,5.400770303329455 -351,10.0,8.0,0.0,4.807692307692308 -351,10.0,10.0,0.0,-4.807692307692308 -351,11.0,3.0,0.0,4.191255364806866 -351,11.0,11.0,1.9519977922801688,-15.15346652196899 -351,11.0,12.0,0.0,7.142857142857143 -351,11.0,15.0,-1.9519977922801688,4.104359379111847 -351,12.0,11.0,0.0,7.142857142857143 -351,12.0,12.0,0.0,-7.142857142857143 -351,13.0,13.0,2.4909522639994623,-2.250874059369649 -351,13.0,14.0,-2.4909522639994623,2.250874059369649 -351,14.0,13.0,-2.4909522639994623,2.250874059369649 -351,14.0,14.0,6.270102363308326,-9.9143578677817 -351,14.0,17.0,-1.8108011504072024,3.687418931630696 -351,14.0,22.0,-1.9683489489016612,3.976064876781356 -351,15.0,11.0,-1.9519977922801688,4.104359379111847 -351,15.0,15.0,3.271064728633931,-8.94513365126506 -351,15.0,16.0,-1.3190669363537617,4.8407742721532125 -351,16.0,9.0,-3.956039125715353,10.317447719844054 -351,16.0,15.0,-1.3190669363537617,4.8407742721532125 -351,16.0,16.0,5.275106062069114,-15.158221991997266 -351,17.0,14.0,-1.8108011504072024,3.687418931630696 -351,17.0,17.0,4.886487584415919,-9.906177730909668 -351,17.0,18.0,-3.0756864340087167,6.218758799278971 -351,18.0,17.0,-3.0756864340087167,6.218758799278971 -351,18.0,18.0,8.958039375185187,-17.98346468163191 -351,18.0,19.0,-5.88235294117647,11.76470588235294 -351,19.0,9.0,-1.7848303152666305,3.98535828943083 -351,19.0,18.0,-5.88235294117647,11.76470588235294 -351,19.0,19.0,7.6671832564431,-15.75006417178377 -351,20.0,9.0,-5.101853820159654,10.98071411292983 -351,20.0,20.0,21.876495189895888,-45.10843276170355 -351,20.0,21.0,-16.774641369736234,34.127718648773715 -351,21.0,9.0,-2.619319553382597,5.400770303329455 -351,21.0,20.0,-16.774641369736234,34.127718648773715 -351,21.0,21.0,21.93449907537439,-43.48289181517921 -351,21.0,23.0,-2.5405381522555563,3.95440286307604 -351,22.0,14.0,-1.9683489489016612,3.976064876781356 -351,22.0,22.0,3.429754555384988,-6.965303617315433 -351,22.0,23.0,-1.4614056064833263,2.989238740534077 -351,23.0,21.0,-2.5405381522555563,3.95440286307604 -351,23.0,22.0,-1.4614056064833263,2.989238740534077 -351,23.0,23.0,5.311836702613133,-9.188263657315172 -351,23.0,24.0,-1.3098929438742493,2.287622053705056 -351,24.0,23.0,-1.3098929438742493,2.287622053705056 -351,24.0,24.0,4.495715080321987,-7.864978761969621 -351,24.0,25.0,-1.2165301194494855,1.8171440463475024 -351,24.0,26.0,-1.9692920169982515,3.760212661917064 -351,25.0,24.0,-1.2165301194494855,1.8171440463475024 -351,25.0,25.0,1.2165301194494855,-1.8171440463475024 -351,26.0,24.0,-1.9692920169982515,3.760212661917064 -351,26.0,26.0,3.652281470778589,-9.46044252232512 -351,26.0,27.0,0.0,2.608731947574922 -351,26.0,28.0,-0.99553355095268,1.881005840357816 -351,26.0,29.0,-0.6874559028276572,1.293971494797717 -351,27.0,5.0,-4.362844058012917,15.463571542897856 -351,27.0,7.0,-1.4439790613954469,4.540814658476248 -351,27.0,26.0,0.0,2.608731947574922 -351,27.0,27.0,5.806823119408364,-22.67145722159613 -351,28.0,26.0,-0.99553355095268,1.881005840357816 -351,28.0,28.0,1.9075867579849564,-3.604364401207048 -351,28.0,29.0,-0.9120532070322764,1.7233585608492326 -351,29.0,26.0,-0.6874559028276572,1.293971494797717 -351,29.0,28.0,-0.9120532070322764,1.7233585608492326 -351,29.0,29.0,1.5995091098599337,-3.0173300556469496 -352,0.0,0.0,6.765516048652632,-21.23160167089863 -352,0.0,1.0,-5.224646179885656,15.646726840803398 -352,0.0,2.0,-1.5408698687669766,5.631674830095234 -352,1.0,0.0,-5.224646179885656,15.646726840803398 -352,1.0,1.0,9.75228216552403,-30.648662892676068 -352,1.0,3.0,-1.7055303166990268,5.1973792282565086 -352,1.0,4.0,-1.1359607881738778,4.772479328281356 -352,1.0,5.0,-1.6861448807654689,5.116477495334806 -352,2.0,0.0,-1.5408698687669766,5.631674830095234 -352,2.0,2.0,9.736318911079088,-29.13794745915803 -352,2.0,3.0,-8.19544904231211,23.5308726290628 -352,3.0,1.0,-1.7055303166990268,5.1973792282565086 -352,3.0,2.0,-8.19544904231211,23.5308726290628 -352,3.0,3.0,16.314103089185693,-55.509410535254254 -352,3.0,5.0,-6.413123730174556,22.31120356548123 -352,3.0,11.0,0.0,4.191255364806866 -352,4.0,1.0,-1.1359607881738778,4.772479328281356 -352,4.0,4.0,4.089980824135861,-12.190647245055052 -352,4.0,6.0,-2.954020035961983,7.449267916773697 -352,5.0,1.0,-1.6861448807654689,5.116477495334806 -352,5.0,3.0,-6.413123730174556,22.31120356548123 -352,5.0,5.0,18.75142084505357,-66.78511136362812 -352,5.0,7.0,-6.289308176100628,22.0125786163522 -352,5.0,9.0,0.0,1.8561002591115965 -352,5.0,27.0,-4.362844058012917,15.463571542897856 -352,6.0,4.0,-2.954020035961983,7.449267916773697 -352,6.0,6.0,2.954020035961983,-7.439067916773697 -352,7.0,5.0,-6.289308176100628,22.0125786163522 -352,7.0,7.0,7.733287237496075,-26.527493274828448 -352,7.0,27.0,-1.4439790613954469,4.540814658476248 -352,8.0,8.0,0.0,-13.8986013986014 -352,8.0,9.0,0.0,9.090909090909092 -352,8.0,10.0,0.0,4.807692307692308 -352,9.0,5.0,0.0,1.8561002591115965 -352,9.0,8.0,0.0,9.090909090909092 -352,9.0,9.0,8.36018899436458,-30.40304655459257 -352,9.0,16.0,-3.956039125715353,10.317447719844054 -352,9.0,19.0,-1.7848303152666305,3.98535828943083 -352,9.0,21.0,-2.619319553382597,5.400770303329455 -352,10.0,8.0,0.0,4.807692307692308 -352,10.0,10.0,0.0,-4.807692307692308 -352,11.0,3.0,0.0,4.191255364806866 -352,11.0,11.0,5.047393974936599,-21.25074238629525 -352,11.0,12.0,0.0,7.142857142857143 -352,11.0,14.0,-3.0953961826564296,6.097275864326261 -352,11.0,15.0,-1.9519977922801688,4.104359379111847 -352,12.0,11.0,0.0,7.142857142857143 -352,12.0,12.0,0.0,-7.142857142857143 -352,13.0,13.0,2.4909522639994623,-2.250874059369649 -352,13.0,14.0,-2.4909522639994623,2.250874059369649 -352,14.0,11.0,-3.0953961826564296,6.097275864326261 -352,14.0,13.0,-2.4909522639994623,2.250874059369649 -352,14.0,14.0,9.365498545964757,-16.01163373210796 -352,14.0,17.0,-1.8108011504072024,3.687418931630696 -352,14.0,22.0,-1.9683489489016612,3.976064876781356 -352,15.0,11.0,-1.9519977922801688,4.104359379111847 -352,15.0,15.0,3.271064728633931,-8.94513365126506 -352,15.0,16.0,-1.3190669363537617,4.8407742721532125 -352,16.0,9.0,-3.956039125715353,10.317447719844054 -352,16.0,15.0,-1.3190669363537617,4.8407742721532125 -352,16.0,16.0,5.275106062069114,-15.158221991997266 -352,17.0,14.0,-1.8108011504072024,3.687418931630696 -352,17.0,17.0,4.886487584415919,-9.906177730909668 -352,17.0,18.0,-3.0756864340087167,6.218758799278971 -352,18.0,17.0,-3.0756864340087167,6.218758799278971 -352,18.0,18.0,8.958039375185187,-17.98346468163191 -352,18.0,19.0,-5.88235294117647,11.76470588235294 -352,19.0,9.0,-1.7848303152666305,3.98535828943083 -352,19.0,18.0,-5.88235294117647,11.76470588235294 -352,19.0,19.0,7.6671832564431,-15.75006417178377 -352,20.0,20.0,16.774641369736234,-34.127718648773715 -352,20.0,21.0,-16.774641369736234,34.127718648773715 -352,21.0,9.0,-2.619319553382597,5.400770303329455 -352,21.0,20.0,-16.774641369736234,34.127718648773715 -352,21.0,21.0,21.93449907537439,-43.48289181517921 -352,21.0,23.0,-2.5405381522555563,3.95440286307604 -352,22.0,14.0,-1.9683489489016612,3.976064876781356 -352,22.0,22.0,3.429754555384988,-6.965303617315433 -352,22.0,23.0,-1.4614056064833263,2.989238740534077 -352,23.0,21.0,-2.5405381522555563,3.95440286307604 -352,23.0,22.0,-1.4614056064833263,2.989238740534077 -352,23.0,23.0,5.311836702613133,-9.188263657315172 -352,23.0,24.0,-1.3098929438742493,2.287622053705056 -352,24.0,23.0,-1.3098929438742493,2.287622053705056 -352,24.0,24.0,4.495715080321987,-7.864978761969621 -352,24.0,25.0,-1.2165301194494855,1.8171440463475024 -352,24.0,26.0,-1.9692920169982515,3.760212661917064 -352,25.0,24.0,-1.2165301194494855,1.8171440463475024 -352,25.0,25.0,1.2165301194494855,-1.8171440463475024 -352,26.0,24.0,-1.9692920169982515,3.760212661917064 -352,26.0,26.0,3.652281470778589,-9.46044252232512 -352,26.0,27.0,0.0,2.608731947574922 -352,26.0,28.0,-0.99553355095268,1.881005840357816 -352,26.0,29.0,-0.6874559028276572,1.293971494797717 -352,27.0,5.0,-4.362844058012917,15.463571542897856 -352,27.0,7.0,-1.4439790613954469,4.540814658476248 -352,27.0,26.0,0.0,2.608731947574922 -352,27.0,27.0,5.806823119408364,-22.67145722159613 -352,28.0,26.0,-0.99553355095268,1.881005840357816 -352,28.0,28.0,1.9075867579849564,-3.604364401207048 -352,28.0,29.0,-0.9120532070322764,1.7233585608492326 -352,29.0,26.0,-0.6874559028276572,1.293971494797717 -352,29.0,28.0,-0.9120532070322764,1.7233585608492326 -352,29.0,29.0,1.5995091098599337,-3.0173300556469496 -353,0.0,0.0,6.765516048652632,-21.23160167089863 -353,0.0,1.0,-5.224646179885656,15.646726840803398 -353,0.0,2.0,-1.5408698687669766,5.631674830095234 -353,1.0,0.0,-5.224646179885656,15.646726840803398 -353,1.0,1.0,9.75228216552403,-30.648662892676068 -353,1.0,3.0,-1.7055303166990268,5.1973792282565086 -353,1.0,4.0,-1.1359607881738778,4.772479328281356 -353,1.0,5.0,-1.6861448807654689,5.116477495334806 -353,2.0,0.0,-1.5408698687669766,5.631674830095234 -353,2.0,2.0,9.736318911079088,-29.13794745915803 -353,2.0,3.0,-8.19544904231211,23.5308726290628 -353,3.0,1.0,-1.7055303166990268,5.1973792282565086 -353,3.0,2.0,-8.19544904231211,23.5308726290628 -353,3.0,3.0,16.314103089185693,-55.509410535254254 -353,3.0,5.0,-6.413123730174556,22.31120356548123 -353,3.0,11.0,0.0,4.191255364806866 -353,4.0,1.0,-1.1359607881738778,4.772479328281356 -353,4.0,4.0,4.089980824135861,-12.190647245055052 -353,4.0,6.0,-2.954020035961983,7.449267916773697 -353,5.0,1.0,-1.6861448807654689,5.116477495334806 -353,5.0,3.0,-6.413123730174556,22.31120356548123 -353,5.0,5.0,22.341631269034565,-82.8291478657789 -353,5.0,6.0,-3.590210423980992,11.02611441072814 -353,5.0,7.0,-6.289308176100628,22.0125786163522 -353,5.0,8.0,0.0,4.915840805411357 -353,5.0,9.0,0.0,1.8561002591115965 -353,5.0,27.0,-4.362844058012917,15.463571542897856 -353,6.0,4.0,-2.954020035961983,7.449267916773697 -353,6.0,5.0,-3.590210423980992,11.02611441072814 -353,6.0,6.0,6.544230459942975,-18.45668232750184 -353,7.0,5.0,-6.289308176100628,22.0125786163522 -353,7.0,7.0,7.733287237496075,-26.527493274828448 -353,7.0,27.0,-1.4439790613954469,4.540814658476248 -353,8.0,5.0,0.0,4.915840805411357 -353,8.0,8.0,0.0,-18.706293706293707 -353,8.0,9.0,0.0,9.090909090909092 -353,8.0,10.0,0.0,4.807692307692308 -353,9.0,5.0,0.0,1.8561002591115965 -353,9.0,8.0,0.0,9.090909090909092 -353,9.0,9.0,13.462042814524237,-41.3837606675224 -353,9.0,16.0,-3.956039125715353,10.317447719844054 -353,9.0,19.0,-1.7848303152666305,3.98535828943083 -353,9.0,20.0,-5.101853820159654,10.98071411292983 -353,9.0,21.0,-2.619319553382597,5.400770303329455 -353,10.0,8.0,0.0,4.807692307692308 -353,10.0,10.0,0.0,-4.807692307692308 -353,11.0,3.0,0.0,4.191255364806866 -353,11.0,11.0,6.573961583776156,-24.424167659260668 -353,11.0,12.0,0.0,7.142857142857143 -353,11.0,13.0,-1.5265676088395577,3.1734252729654173 -353,11.0,14.0,-3.0953961826564296,6.097275864326261 -353,11.0,15.0,-1.9519977922801688,4.104359379111847 -353,12.0,11.0,0.0,7.142857142857143 -353,12.0,12.0,0.0,-7.142857142857143 -353,13.0,11.0,-1.5265676088395577,3.1734252729654173 -353,13.0,13.0,4.01751987283902,-5.424299332335067 -353,13.0,14.0,-2.4909522639994623,2.250874059369649 -353,14.0,11.0,-3.0953961826564296,6.097275864326261 -353,14.0,13.0,-2.4909522639994623,2.250874059369649 -353,14.0,14.0,9.365498545964757,-16.01163373210796 -353,14.0,17.0,-1.8108011504072024,3.687418931630696 -353,14.0,22.0,-1.9683489489016612,3.976064876781356 -353,15.0,11.0,-1.9519977922801688,4.104359379111847 -353,15.0,15.0,3.271064728633931,-8.94513365126506 -353,15.0,16.0,-1.3190669363537617,4.8407742721532125 -353,16.0,9.0,-3.956039125715353,10.317447719844054 -353,16.0,15.0,-1.3190669363537617,4.8407742721532125 -353,16.0,16.0,5.275106062069114,-15.158221991997266 -353,17.0,14.0,-1.8108011504072024,3.687418931630696 -353,17.0,17.0,4.886487584415919,-9.906177730909668 -353,17.0,18.0,-3.0756864340087167,6.218758799278971 -353,18.0,17.0,-3.0756864340087167,6.218758799278971 -353,18.0,18.0,8.958039375185187,-17.98346468163191 -353,18.0,19.0,-5.88235294117647,11.76470588235294 -353,19.0,9.0,-1.7848303152666305,3.98535828943083 -353,19.0,18.0,-5.88235294117647,11.76470588235294 -353,19.0,19.0,7.6671832564431,-15.75006417178377 -353,20.0,9.0,-5.101853820159654,10.98071411292983 -353,20.0,20.0,21.876495189895888,-45.10843276170355 -353,20.0,21.0,-16.774641369736234,34.127718648773715 -353,21.0,9.0,-2.619319553382597,5.400770303329455 -353,21.0,20.0,-16.774641369736234,34.127718648773715 -353,21.0,21.0,21.93449907537439,-43.48289181517921 -353,21.0,23.0,-2.5405381522555563,3.95440286307604 -353,22.0,14.0,-1.9683489489016612,3.976064876781356 -353,22.0,22.0,3.429754555384988,-6.965303617315433 -353,22.0,23.0,-1.4614056064833263,2.989238740534077 -353,23.0,21.0,-2.5405381522555563,3.95440286307604 -353,23.0,22.0,-1.4614056064833263,2.989238740534077 -353,23.0,23.0,5.311836702613133,-9.188263657315172 -353,23.0,24.0,-1.3098929438742493,2.287622053705056 -353,24.0,23.0,-1.3098929438742493,2.287622053705056 -353,24.0,24.0,4.495715080321987,-7.864978761969621 -353,24.0,25.0,-1.2165301194494855,1.8171440463475024 -353,24.0,26.0,-1.9692920169982515,3.760212661917064 -353,25.0,24.0,-1.2165301194494855,1.8171440463475024 -353,25.0,25.0,1.2165301194494855,-1.8171440463475024 -353,26.0,24.0,-1.9692920169982515,3.760212661917064 -353,26.0,26.0,3.652281470778589,-9.46044252232512 -353,26.0,27.0,0.0,2.608731947574922 -353,26.0,28.0,-0.99553355095268,1.881005840357816 -353,26.0,29.0,-0.6874559028276572,1.293971494797717 -353,27.0,5.0,-4.362844058012917,15.463571542897856 -353,27.0,7.0,-1.4439790613954469,4.540814658476248 -353,27.0,26.0,0.0,2.608731947574922 -353,27.0,27.0,5.806823119408364,-22.67145722159613 -353,28.0,26.0,-0.99553355095268,1.881005840357816 -353,28.0,28.0,1.9075867579849564,-3.604364401207048 -353,28.0,29.0,-0.9120532070322764,1.7233585608492326 -353,29.0,26.0,-0.6874559028276572,1.293971494797717 -353,29.0,28.0,-0.9120532070322764,1.7233585608492326 -353,29.0,29.0,1.5995091098599337,-3.0173300556469496 -354,0.0,0.0,6.765516048652632,-21.23160167089863 -354,0.0,1.0,-5.224646179885656,15.646726840803398 -354,0.0,2.0,-1.5408698687669766,5.631674830095234 -354,1.0,0.0,-5.224646179885656,15.646726840803398 -354,1.0,1.0,9.75228216552403,-30.648662892676068 -354,1.0,3.0,-1.7055303166990268,5.1973792282565086 -354,1.0,4.0,-1.1359607881738778,4.772479328281356 -354,1.0,5.0,-1.6861448807654689,5.116477495334806 -354,2.0,0.0,-1.5408698687669766,5.631674830095234 -354,2.0,2.0,9.736318911079088,-29.13794745915803 -354,2.0,3.0,-8.19544904231211,23.5308726290628 -354,3.0,1.0,-1.7055303166990268,5.1973792282565086 -354,3.0,2.0,-8.19544904231211,23.5308726290628 -354,3.0,3.0,16.314103089185693,-55.509410535254254 -354,3.0,5.0,-6.413123730174556,22.31120356548123 -354,3.0,11.0,0.0,4.191255364806866 -354,4.0,1.0,-1.1359607881738778,4.772479328281356 -354,4.0,4.0,4.089980824135861,-12.190647245055052 -354,4.0,6.0,-2.954020035961983,7.449267916773697 -354,5.0,1.0,-1.6861448807654689,5.116477495334806 -354,5.0,3.0,-6.413123730174556,22.31120356548123 -354,5.0,5.0,17.978787211021647,-67.37207632288106 -354,5.0,6.0,-3.590210423980992,11.02611441072814 -354,5.0,7.0,-6.289308176100628,22.0125786163522 -354,5.0,8.0,0.0,4.915840805411357 -354,5.0,9.0,0.0,1.8561002591115965 -354,6.0,4.0,-2.954020035961983,7.449267916773697 -354,6.0,5.0,-3.590210423980992,11.02611441072814 -354,6.0,6.0,6.544230459942975,-18.45668232750184 -354,7.0,5.0,-6.289308176100628,22.0125786163522 -354,7.0,7.0,7.733287237496075,-26.527493274828448 -354,7.0,27.0,-1.4439790613954469,4.540814658476248 -354,8.0,5.0,0.0,4.915840805411357 -354,8.0,8.0,0.0,-18.706293706293707 -354,8.0,9.0,0.0,9.090909090909092 -354,8.0,10.0,0.0,4.807692307692308 -354,9.0,5.0,0.0,1.8561002591115965 -354,9.0,8.0,0.0,9.090909090909092 -354,9.0,9.0,13.462042814524237,-41.3837606675224 -354,9.0,16.0,-3.956039125715353,10.317447719844054 -354,9.0,19.0,-1.7848303152666305,3.98535828943083 -354,9.0,20.0,-5.101853820159654,10.98071411292983 -354,9.0,21.0,-2.619319553382597,5.400770303329455 -354,10.0,8.0,0.0,4.807692307692308 -354,10.0,10.0,0.0,-4.807692307692308 -354,11.0,3.0,0.0,4.191255364806866 -354,11.0,11.0,6.573961583776156,-24.424167659260668 -354,11.0,12.0,0.0,7.142857142857143 -354,11.0,13.0,-1.5265676088395577,3.1734252729654173 -354,11.0,14.0,-3.0953961826564296,6.097275864326261 -354,11.0,15.0,-1.9519977922801688,4.104359379111847 -354,12.0,11.0,0.0,7.142857142857143 -354,12.0,12.0,0.0,-7.142857142857143 -354,13.0,11.0,-1.5265676088395577,3.1734252729654173 -354,13.0,13.0,4.01751987283902,-5.424299332335067 -354,13.0,14.0,-2.4909522639994623,2.250874059369649 -354,14.0,11.0,-3.0953961826564296,6.097275864326261 -354,14.0,13.0,-2.4909522639994623,2.250874059369649 -354,14.0,14.0,9.365498545964757,-16.01163373210796 -354,14.0,17.0,-1.8108011504072024,3.687418931630696 -354,14.0,22.0,-1.9683489489016612,3.976064876781356 -354,15.0,11.0,-1.9519977922801688,4.104359379111847 -354,15.0,15.0,3.271064728633931,-8.94513365126506 -354,15.0,16.0,-1.3190669363537617,4.8407742721532125 -354,16.0,9.0,-3.956039125715353,10.317447719844054 -354,16.0,15.0,-1.3190669363537617,4.8407742721532125 -354,16.0,16.0,5.275106062069114,-15.158221991997266 -354,17.0,14.0,-1.8108011504072024,3.687418931630696 -354,17.0,17.0,4.886487584415919,-9.906177730909668 -354,17.0,18.0,-3.0756864340087167,6.218758799278971 -354,18.0,17.0,-3.0756864340087167,6.218758799278971 -354,18.0,18.0,8.958039375185187,-17.98346468163191 -354,18.0,19.0,-5.88235294117647,11.76470588235294 -354,19.0,9.0,-1.7848303152666305,3.98535828943083 -354,19.0,18.0,-5.88235294117647,11.76470588235294 -354,19.0,19.0,7.6671832564431,-15.75006417178377 -354,20.0,9.0,-5.101853820159654,10.98071411292983 -354,20.0,20.0,21.876495189895888,-45.10843276170355 -354,20.0,21.0,-16.774641369736234,34.127718648773715 -354,21.0,9.0,-2.619319553382597,5.400770303329455 -354,21.0,20.0,-16.774641369736234,34.127718648773715 -354,21.0,21.0,21.93449907537439,-43.48289181517921 -354,21.0,23.0,-2.5405381522555563,3.95440286307604 -354,22.0,14.0,-1.9683489489016612,3.976064876781356 -354,22.0,22.0,3.429754555384988,-6.965303617315433 -354,22.0,23.0,-1.4614056064833263,2.989238740534077 -354,23.0,21.0,-2.5405381522555563,3.95440286307604 -354,23.0,22.0,-1.4614056064833263,2.989238740534077 -354,23.0,23.0,5.311836702613133,-9.188263657315172 -354,23.0,24.0,-1.3098929438742493,2.287622053705056 -354,24.0,23.0,-1.3098929438742493,2.287622053705056 -354,24.0,24.0,4.495715080321987,-7.864978761969621 -354,24.0,25.0,-1.2165301194494855,1.8171440463475024 -354,24.0,26.0,-1.9692920169982515,3.760212661917064 -354,25.0,24.0,-1.2165301194494855,1.8171440463475024 -354,25.0,25.0,1.2165301194494855,-1.8171440463475024 -354,26.0,24.0,-1.9692920169982515,3.760212661917064 -354,26.0,26.0,2.656747919825909,-7.579436681967305 -354,26.0,27.0,0.0,2.608731947574922 -354,26.0,29.0,-0.6874559028276572,1.293971494797717 -354,27.0,7.0,-1.4439790613954469,4.540814658476248 -354,27.0,26.0,0.0,2.608731947574922 -354,27.0,27.0,1.4439790613954469,-7.214385678698274 -354,28.0,28.0,0.9120532070322764,-1.7233585608492326 -354,28.0,29.0,-0.9120532070322764,1.7233585608492326 -354,29.0,26.0,-0.6874559028276572,1.293971494797717 -354,29.0,28.0,-0.9120532070322764,1.7233585608492326 -354,29.0,29.0,1.5995091098599337,-3.0173300556469496 -355,0.0,0.0,6.765516048652632,-21.23160167089863 -355,0.0,1.0,-5.224646179885656,15.646726840803398 -355,0.0,2.0,-1.5408698687669766,5.631674830095234 -355,1.0,0.0,-5.224646179885656,15.646726840803398 -355,1.0,1.0,9.75228216552403,-30.648662892676068 -355,1.0,3.0,-1.7055303166990268,5.1973792282565086 -355,1.0,4.0,-1.1359607881738778,4.772479328281356 -355,1.0,5.0,-1.6861448807654689,5.116477495334806 -355,2.0,0.0,-1.5408698687669766,5.631674830095234 -355,2.0,2.0,9.736318911079088,-29.13794745915803 -355,2.0,3.0,-8.19544904231211,23.5308726290628 -355,3.0,1.0,-1.7055303166990268,5.1973792282565086 -355,3.0,2.0,-8.19544904231211,23.5308726290628 -355,3.0,3.0,16.314103089185693,-55.509410535254254 -355,3.0,5.0,-6.413123730174556,22.31120356548123 -355,3.0,11.0,0.0,4.191255364806866 -355,4.0,1.0,-1.1359607881738778,4.772479328281356 -355,4.0,4.0,4.089980824135861,-12.190647245055052 -355,4.0,6.0,-2.954020035961983,7.449267916773697 -355,5.0,1.0,-1.6861448807654689,5.116477495334806 -355,5.0,3.0,-6.413123730174556,22.31120356548123 -355,5.0,5.0,22.341631269034565,-82.8291478657789 -355,5.0,6.0,-3.590210423980992,11.02611441072814 -355,5.0,7.0,-6.289308176100628,22.0125786163522 -355,5.0,8.0,0.0,4.915840805411357 -355,5.0,9.0,0.0,1.8561002591115965 -355,5.0,27.0,-4.362844058012917,15.463571542897856 -355,6.0,4.0,-2.954020035961983,7.449267916773697 -355,6.0,5.0,-3.590210423980992,11.02611441072814 -355,6.0,6.0,6.544230459942975,-18.45668232750184 -355,7.0,5.0,-6.289308176100628,22.0125786163522 -355,7.0,7.0,7.733287237496075,-26.527493274828448 -355,7.0,27.0,-1.4439790613954469,4.540814658476248 -355,8.0,5.0,0.0,4.915840805411357 -355,8.0,8.0,0.0,-18.706293706293707 -355,8.0,9.0,0.0,9.090909090909092 -355,8.0,10.0,0.0,4.807692307692308 -355,9.0,5.0,0.0,1.8561002591115965 -355,9.0,8.0,0.0,9.090909090909092 -355,9.0,9.0,13.462042814524237,-41.3837606675224 -355,9.0,16.0,-3.956039125715353,10.317447719844054 -355,9.0,19.0,-1.7848303152666305,3.98535828943083 -355,9.0,20.0,-5.101853820159654,10.98071411292983 -355,9.0,21.0,-2.619319553382597,5.400770303329455 -355,10.0,8.0,0.0,4.807692307692308 -355,10.0,10.0,0.0,-4.807692307692308 -355,11.0,3.0,0.0,4.191255364806866 -355,11.0,11.0,6.573961583776156,-24.424167659260668 -355,11.0,12.0,0.0,7.142857142857143 -355,11.0,13.0,-1.5265676088395577,3.1734252729654173 -355,11.0,14.0,-3.0953961826564296,6.097275864326261 -355,11.0,15.0,-1.9519977922801688,4.104359379111847 -355,12.0,11.0,0.0,7.142857142857143 -355,12.0,12.0,0.0,-7.142857142857143 -355,13.0,11.0,-1.5265676088395577,3.1734252729654173 -355,13.0,13.0,4.01751987283902,-5.424299332335067 -355,13.0,14.0,-2.4909522639994623,2.250874059369649 -355,14.0,11.0,-3.0953961826564296,6.097275864326261 -355,14.0,13.0,-2.4909522639994623,2.250874059369649 -355,14.0,14.0,9.365498545964757,-16.01163373210796 -355,14.0,17.0,-1.8108011504072024,3.687418931630696 -355,14.0,22.0,-1.9683489489016612,3.976064876781356 -355,15.0,11.0,-1.9519977922801688,4.104359379111847 -355,15.0,15.0,3.271064728633931,-8.94513365126506 -355,15.0,16.0,-1.3190669363537617,4.8407742721532125 -355,16.0,9.0,-3.956039125715353,10.317447719844054 -355,16.0,15.0,-1.3190669363537617,4.8407742721532125 -355,16.0,16.0,5.275106062069114,-15.158221991997266 -355,17.0,14.0,-1.8108011504072024,3.687418931630696 -355,17.0,17.0,4.886487584415919,-9.906177730909668 -355,17.0,18.0,-3.0756864340087167,6.218758799278971 -355,18.0,17.0,-3.0756864340087167,6.218758799278971 -355,18.0,18.0,8.958039375185187,-17.98346468163191 -355,18.0,19.0,-5.88235294117647,11.76470588235294 -355,19.0,9.0,-1.7848303152666305,3.98535828943083 -355,19.0,18.0,-5.88235294117647,11.76470588235294 -355,19.0,19.0,7.6671832564431,-15.75006417178377 -355,20.0,9.0,-5.101853820159654,10.98071411292983 -355,20.0,20.0,21.876495189895888,-45.10843276170355 -355,20.0,21.0,-16.774641369736234,34.127718648773715 -355,21.0,9.0,-2.619319553382597,5.400770303329455 -355,21.0,20.0,-16.774641369736234,34.127718648773715 -355,21.0,21.0,21.93449907537439,-43.48289181517921 -355,21.0,23.0,-2.5405381522555563,3.95440286307604 -355,22.0,14.0,-1.9683489489016612,3.976064876781356 -355,22.0,22.0,3.429754555384988,-6.965303617315433 -355,22.0,23.0,-1.4614056064833263,2.989238740534077 -355,23.0,21.0,-2.5405381522555563,3.95440286307604 -355,23.0,22.0,-1.4614056064833263,2.989238740534077 -355,23.0,23.0,5.311836702613133,-9.188263657315172 -355,23.0,24.0,-1.3098929438742493,2.287622053705056 -355,24.0,23.0,-1.3098929438742493,2.287622053705056 -355,24.0,24.0,4.495715080321987,-7.864978761969621 -355,24.0,25.0,-1.2165301194494855,1.8171440463475024 -355,24.0,26.0,-1.9692920169982515,3.760212661917064 -355,25.0,24.0,-1.2165301194494855,1.8171440463475024 -355,25.0,25.0,1.2165301194494855,-1.8171440463475024 -355,26.0,24.0,-1.9692920169982515,3.760212661917064 -355,26.0,26.0,3.652281470778589,-9.46044252232512 -355,26.0,27.0,0.0,2.608731947574922 -355,26.0,28.0,-0.99553355095268,1.881005840357816 -355,26.0,29.0,-0.6874559028276572,1.293971494797717 -355,27.0,5.0,-4.362844058012917,15.463571542897856 -355,27.0,7.0,-1.4439790613954469,4.540814658476248 -355,27.0,26.0,0.0,2.608731947574922 -355,27.0,27.0,5.806823119408364,-22.67145722159613 -355,28.0,26.0,-0.99553355095268,1.881005840357816 -355,28.0,28.0,1.9075867579849564,-3.604364401207048 -355,28.0,29.0,-0.9120532070322764,1.7233585608492326 -355,29.0,26.0,-0.6874559028276572,1.293971494797717 -355,29.0,28.0,-0.9120532070322764,1.7233585608492326 -355,29.0,29.0,1.5995091098599337,-3.0173300556469496 -356,0.0,0.0,6.765516048652632,-21.23160167089863 -356,0.0,1.0,-5.224646179885656,15.646726840803398 -356,0.0,2.0,-1.5408698687669766,5.631674830095234 -356,1.0,0.0,-5.224646179885656,15.646726840803398 -356,1.0,1.0,9.75228216552403,-30.648662892676068 -356,1.0,3.0,-1.7055303166990268,5.1973792282565086 -356,1.0,4.0,-1.1359607881738778,4.772479328281356 -356,1.0,5.0,-1.6861448807654689,5.116477495334806 -356,2.0,0.0,-1.5408698687669766,5.631674830095234 -356,2.0,2.0,9.736318911079088,-29.13794745915803 -356,2.0,3.0,-8.19544904231211,23.5308726290628 -356,3.0,1.0,-1.7055303166990268,5.1973792282565086 -356,3.0,2.0,-8.19544904231211,23.5308726290628 -356,3.0,3.0,16.314103089185693,-55.509410535254254 -356,3.0,5.0,-6.413123730174556,22.31120356548123 -356,3.0,11.0,0.0,4.191255364806866 -356,4.0,1.0,-1.1359607881738778,4.772479328281356 -356,4.0,4.0,1.1359607881738778,-4.751579328281355 -356,5.0,1.0,-1.6861448807654689,5.116477495334806 -356,5.0,3.0,-6.413123730174556,22.31120356548123 -356,5.0,5.0,22.341631269034565,-82.8291478657789 -356,5.0,6.0,-3.590210423980992,11.02611441072814 -356,5.0,7.0,-6.289308176100628,22.0125786163522 -356,5.0,8.0,0.0,4.915840805411357 -356,5.0,9.0,0.0,1.8561002591115965 -356,5.0,27.0,-4.362844058012917,15.463571542897856 -356,6.0,5.0,-3.590210423980992,11.02611441072814 -356,6.0,6.0,3.590210423980992,-11.01761441072814 -356,7.0,5.0,-6.289308176100628,22.0125786163522 -356,7.0,7.0,6.289308176100628,-22.0080786163522 -356,8.0,5.0,0.0,4.915840805411357 -356,8.0,8.0,0.0,-18.706293706293707 -356,8.0,9.0,0.0,9.090909090909092 -356,8.0,10.0,0.0,4.807692307692308 -356,9.0,5.0,0.0,1.8561002591115965 -356,9.0,8.0,0.0,9.090909090909092 -356,9.0,9.0,13.462042814524237,-41.3837606675224 -356,9.0,16.0,-3.956039125715353,10.317447719844054 -356,9.0,19.0,-1.7848303152666305,3.98535828943083 -356,9.0,20.0,-5.101853820159654,10.98071411292983 -356,9.0,21.0,-2.619319553382597,5.400770303329455 -356,10.0,8.0,0.0,4.807692307692308 -356,10.0,10.0,0.0,-4.807692307692308 -356,11.0,3.0,0.0,4.191255364806866 -356,11.0,11.0,6.573961583776156,-24.424167659260668 -356,11.0,12.0,0.0,7.142857142857143 -356,11.0,13.0,-1.5265676088395577,3.1734252729654173 -356,11.0,14.0,-3.0953961826564296,6.097275864326261 -356,11.0,15.0,-1.9519977922801688,4.104359379111847 -356,12.0,11.0,0.0,7.142857142857143 -356,12.0,12.0,0.0,-7.142857142857143 -356,13.0,11.0,-1.5265676088395577,3.1734252729654173 -356,13.0,13.0,4.01751987283902,-5.424299332335067 -356,13.0,14.0,-2.4909522639994623,2.250874059369649 -356,14.0,11.0,-3.0953961826564296,6.097275864326261 -356,14.0,13.0,-2.4909522639994623,2.250874059369649 -356,14.0,14.0,9.365498545964757,-16.01163373210796 -356,14.0,17.0,-1.8108011504072024,3.687418931630696 -356,14.0,22.0,-1.9683489489016612,3.976064876781356 -356,15.0,11.0,-1.9519977922801688,4.104359379111847 -356,15.0,15.0,1.9519977922801688,-4.104359379111847 -356,16.0,9.0,-3.956039125715353,10.317447719844054 -356,16.0,16.0,3.956039125715353,-10.317447719844054 -356,17.0,14.0,-1.8108011504072024,3.687418931630696 -356,17.0,17.0,4.886487584415919,-9.906177730909668 -356,17.0,18.0,-3.0756864340087167,6.218758799278971 -356,18.0,17.0,-3.0756864340087167,6.218758799278971 -356,18.0,18.0,8.958039375185187,-17.98346468163191 -356,18.0,19.0,-5.88235294117647,11.76470588235294 -356,19.0,9.0,-1.7848303152666305,3.98535828943083 -356,19.0,18.0,-5.88235294117647,11.76470588235294 -356,19.0,19.0,7.6671832564431,-15.75006417178377 -356,20.0,9.0,-5.101853820159654,10.98071411292983 -356,20.0,20.0,21.876495189895888,-45.10843276170355 -356,20.0,21.0,-16.774641369736234,34.127718648773715 -356,21.0,9.0,-2.619319553382597,5.400770303329455 -356,21.0,20.0,-16.774641369736234,34.127718648773715 -356,21.0,21.0,21.93449907537439,-43.48289181517921 -356,21.0,23.0,-2.5405381522555563,3.95440286307604 -356,22.0,14.0,-1.9683489489016612,3.976064876781356 -356,22.0,22.0,1.9683489489016612,-3.976064876781356 -356,23.0,21.0,-2.5405381522555563,3.95440286307604 -356,23.0,23.0,3.850431096129806,-6.199024916781094 -356,23.0,24.0,-1.3098929438742493,2.287622053705056 -356,24.0,23.0,-1.3098929438742493,2.287622053705056 -356,24.0,24.0,4.495715080321987,-7.864978761969621 -356,24.0,25.0,-1.2165301194494855,1.8171440463475024 -356,24.0,26.0,-1.9692920169982515,3.760212661917064 -356,25.0,24.0,-1.2165301194494855,1.8171440463475024 -356,25.0,25.0,1.2165301194494855,-1.8171440463475024 -356,26.0,24.0,-1.9692920169982515,3.760212661917064 -356,26.0,26.0,3.652281470778589,-9.46044252232512 -356,26.0,27.0,0.0,2.608731947574922 -356,26.0,28.0,-0.99553355095268,1.881005840357816 -356,26.0,29.0,-0.6874559028276572,1.293971494797717 -356,27.0,5.0,-4.362844058012917,15.463571542897856 -356,27.0,26.0,0.0,2.608731947574922 -356,27.0,27.0,4.362844058012917,-18.15204256311988 -356,28.0,26.0,-0.99553355095268,1.881005840357816 -356,28.0,28.0,1.9075867579849564,-3.604364401207048 -356,28.0,29.0,-0.9120532070322764,1.7233585608492326 -356,29.0,26.0,-0.6874559028276572,1.293971494797717 -356,29.0,28.0,-0.9120532070322764,1.7233585608492326 -356,29.0,29.0,1.5995091098599337,-3.0173300556469496 -357,0.0,0.0,6.765516048652632,-21.23160167089863 -357,0.0,1.0,-5.224646179885656,15.646726840803398 -357,0.0,2.0,-1.5408698687669766,5.631674830095234 -357,1.0,0.0,-5.224646179885656,15.646726840803398 -357,1.0,1.0,9.75228216552403,-30.648662892676068 -357,1.0,3.0,-1.7055303166990268,5.1973792282565086 -357,1.0,4.0,-1.1359607881738778,4.772479328281356 -357,1.0,5.0,-1.6861448807654689,5.116477495334806 -357,2.0,0.0,-1.5408698687669766,5.631674830095234 -357,2.0,2.0,9.736318911079088,-29.13794745915803 -357,2.0,3.0,-8.19544904231211,23.5308726290628 -357,3.0,1.0,-1.7055303166990268,5.1973792282565086 -357,3.0,2.0,-8.19544904231211,23.5308726290628 -357,3.0,3.0,16.314103089185693,-55.509410535254254 -357,3.0,5.0,-6.413123730174556,22.31120356548123 -357,3.0,11.0,0.0,4.191255364806866 -357,4.0,1.0,-1.1359607881738778,4.772479328281356 -357,4.0,4.0,4.089980824135861,-12.190647245055052 -357,4.0,6.0,-2.954020035961983,7.449267916773697 -357,5.0,1.0,-1.6861448807654689,5.116477495334806 -357,5.0,3.0,-6.413123730174556,22.31120356548123 -357,5.0,5.0,22.341631269034565,-82.8291478657789 -357,5.0,6.0,-3.590210423980992,11.02611441072814 -357,5.0,7.0,-6.289308176100628,22.0125786163522 -357,5.0,8.0,0.0,4.915840805411357 -357,5.0,9.0,0.0,1.8561002591115965 -357,5.0,27.0,-4.362844058012917,15.463571542897856 -357,6.0,4.0,-2.954020035961983,7.449267916773697 -357,6.0,5.0,-3.590210423980992,11.02611441072814 -357,6.0,6.0,6.544230459942975,-18.45668232750184 -357,7.0,5.0,-6.289308176100628,22.0125786163522 -357,7.0,7.0,7.733287237496075,-26.527493274828448 -357,7.0,27.0,-1.4439790613954469,4.540814658476248 -357,8.0,5.0,0.0,4.915840805411357 -357,8.0,8.0,0.0,-18.706293706293707 -357,8.0,9.0,0.0,9.090909090909092 -357,8.0,10.0,0.0,4.807692307692308 -357,9.0,5.0,0.0,1.8561002591115965 -357,9.0,8.0,0.0,9.090909090909092 -357,9.0,9.0,13.462042814524237,-41.3837606675224 -357,9.0,16.0,-3.956039125715353,10.317447719844054 -357,9.0,19.0,-1.7848303152666305,3.98535828943083 -357,9.0,20.0,-5.101853820159654,10.98071411292983 -357,9.0,21.0,-2.619319553382597,5.400770303329455 -357,10.0,8.0,0.0,4.807692307692308 -357,10.0,10.0,0.0,-4.807692307692308 -357,11.0,3.0,0.0,4.191255364806866 -357,11.0,11.0,6.573961583776156,-24.424167659260668 -357,11.0,12.0,0.0,7.142857142857143 -357,11.0,13.0,-1.5265676088395577,3.1734252729654173 -357,11.0,14.0,-3.0953961826564296,6.097275864326261 -357,11.0,15.0,-1.9519977922801688,4.104359379111847 -357,12.0,11.0,0.0,7.142857142857143 -357,12.0,12.0,0.0,-7.142857142857143 -357,13.0,11.0,-1.5265676088395577,3.1734252729654173 -357,13.0,13.0,4.01751987283902,-5.424299332335067 -357,13.0,14.0,-2.4909522639994623,2.250874059369649 -357,14.0,11.0,-3.0953961826564296,6.097275864326261 -357,14.0,13.0,-2.4909522639994623,2.250874059369649 -357,14.0,14.0,9.365498545964757,-16.01163373210796 -357,14.0,17.0,-1.8108011504072024,3.687418931630696 -357,14.0,22.0,-1.9683489489016612,3.976064876781356 -357,15.0,11.0,-1.9519977922801688,4.104359379111847 -357,15.0,15.0,3.271064728633931,-8.94513365126506 -357,15.0,16.0,-1.3190669363537617,4.8407742721532125 -357,16.0,9.0,-3.956039125715353,10.317447719844054 -357,16.0,15.0,-1.3190669363537617,4.8407742721532125 -357,16.0,16.0,5.275106062069114,-15.158221991997266 -357,17.0,14.0,-1.8108011504072024,3.687418931630696 -357,17.0,17.0,4.886487584415919,-9.906177730909668 -357,17.0,18.0,-3.0756864340087167,6.218758799278971 -357,18.0,17.0,-3.0756864340087167,6.218758799278971 -357,18.0,18.0,8.958039375185187,-17.98346468163191 -357,18.0,19.0,-5.88235294117647,11.76470588235294 -357,19.0,9.0,-1.7848303152666305,3.98535828943083 -357,19.0,18.0,-5.88235294117647,11.76470588235294 -357,19.0,19.0,7.6671832564431,-15.75006417178377 -357,20.0,9.0,-5.101853820159654,10.98071411292983 -357,20.0,20.0,21.876495189895888,-45.10843276170355 -357,20.0,21.0,-16.774641369736234,34.127718648773715 -357,21.0,9.0,-2.619319553382597,5.400770303329455 -357,21.0,20.0,-16.774641369736234,34.127718648773715 -357,21.0,21.0,21.93449907537439,-43.48289181517921 -357,21.0,23.0,-2.5405381522555563,3.95440286307604 -357,22.0,14.0,-1.9683489489016612,3.976064876781356 -357,22.0,22.0,3.429754555384988,-6.965303617315433 -357,22.0,23.0,-1.4614056064833263,2.989238740534077 -357,23.0,21.0,-2.5405381522555563,3.95440286307604 -357,23.0,22.0,-1.4614056064833263,2.989238740534077 -357,23.0,23.0,5.311836702613133,-9.188263657315172 -357,23.0,24.0,-1.3098929438742493,2.287622053705056 -357,24.0,23.0,-1.3098929438742493,2.287622053705056 -357,24.0,24.0,4.495715080321987,-7.864978761969621 -357,24.0,25.0,-1.2165301194494855,1.8171440463475024 -357,24.0,26.0,-1.9692920169982515,3.760212661917064 -357,25.0,24.0,-1.2165301194494855,1.8171440463475024 -357,25.0,25.0,1.2165301194494855,-1.8171440463475024 -357,26.0,24.0,-1.9692920169982515,3.760212661917064 -357,26.0,26.0,3.652281470778589,-9.46044252232512 -357,26.0,27.0,0.0,2.608731947574922 -357,26.0,28.0,-0.99553355095268,1.881005840357816 -357,26.0,29.0,-0.6874559028276572,1.293971494797717 -357,27.0,5.0,-4.362844058012917,15.463571542897856 -357,27.0,7.0,-1.4439790613954469,4.540814658476248 -357,27.0,26.0,0.0,2.608731947574922 -357,27.0,27.0,5.806823119408364,-22.67145722159613 -357,28.0,26.0,-0.99553355095268,1.881005840357816 -357,28.0,28.0,1.9075867579849564,-3.604364401207048 -357,28.0,29.0,-0.9120532070322764,1.7233585608492326 -357,29.0,26.0,-0.6874559028276572,1.293971494797717 -357,29.0,28.0,-0.9120532070322764,1.7233585608492326 -357,29.0,29.0,1.5995091098599337,-3.0173300556469496 -358,0.0,0.0,6.765516048652632,-21.23160167089863 -358,0.0,1.0,-5.224646179885656,15.646726840803398 -358,0.0,2.0,-1.5408698687669766,5.631674830095234 -358,1.0,0.0,-5.224646179885656,15.646726840803398 -358,1.0,1.0,9.75228216552403,-30.648662892676068 -358,1.0,3.0,-1.7055303166990268,5.1973792282565086 -358,1.0,4.0,-1.1359607881738778,4.772479328281356 -358,1.0,5.0,-1.6861448807654689,5.116477495334806 -358,2.0,0.0,-1.5408698687669766,5.631674830095234 -358,2.0,2.0,9.736318911079088,-29.13794745915803 -358,2.0,3.0,-8.19544904231211,23.5308726290628 -358,3.0,1.0,-1.7055303166990268,5.1973792282565086 -358,3.0,2.0,-8.19544904231211,23.5308726290628 -358,3.0,3.0,16.314103089185693,-55.509410535254254 -358,3.0,5.0,-6.413123730174556,22.31120356548123 -358,3.0,11.0,0.0,4.191255364806866 -358,4.0,1.0,-1.1359607881738778,4.772479328281356 -358,4.0,4.0,4.089980824135861,-12.190647245055052 -358,4.0,6.0,-2.954020035961983,7.449267916773697 -358,5.0,1.0,-1.6861448807654689,5.116477495334806 -358,5.0,3.0,-6.413123730174556,22.31120356548123 -358,5.0,5.0,17.978787211021647,-67.37207632288106 -358,5.0,6.0,-3.590210423980992,11.02611441072814 -358,5.0,7.0,-6.289308176100628,22.0125786163522 -358,5.0,8.0,0.0,4.915840805411357 -358,5.0,9.0,0.0,1.8561002591115965 -358,6.0,4.0,-2.954020035961983,7.449267916773697 -358,6.0,5.0,-3.590210423980992,11.02611441072814 -358,6.0,6.0,6.544230459942975,-18.45668232750184 -358,7.0,5.0,-6.289308176100628,22.0125786163522 -358,7.0,7.0,7.733287237496075,-26.527493274828448 -358,7.0,27.0,-1.4439790613954469,4.540814658476248 -358,8.0,5.0,0.0,4.915840805411357 -358,8.0,8.0,0.0,-18.706293706293707 -358,8.0,9.0,0.0,9.090909090909092 -358,8.0,10.0,0.0,4.807692307692308 -358,9.0,5.0,0.0,1.8561002591115965 -358,9.0,8.0,0.0,9.090909090909092 -358,9.0,9.0,13.462042814524237,-41.3837606675224 -358,9.0,16.0,-3.956039125715353,10.317447719844054 -358,9.0,19.0,-1.7848303152666305,3.98535828943083 -358,9.0,20.0,-5.101853820159654,10.98071411292983 -358,9.0,21.0,-2.619319553382597,5.400770303329455 -358,10.0,8.0,0.0,4.807692307692308 -358,10.0,10.0,0.0,-4.807692307692308 -358,11.0,3.0,0.0,4.191255364806866 -358,11.0,11.0,6.573961583776156,-24.424167659260668 -358,11.0,12.0,0.0,7.142857142857143 -358,11.0,13.0,-1.5265676088395577,3.1734252729654173 -358,11.0,14.0,-3.0953961826564296,6.097275864326261 -358,11.0,15.0,-1.9519977922801688,4.104359379111847 -358,12.0,11.0,0.0,7.142857142857143 -358,12.0,12.0,0.0,-7.142857142857143 -358,13.0,11.0,-1.5265676088395577,3.1734252729654173 -358,13.0,13.0,4.01751987283902,-5.424299332335067 -358,13.0,14.0,-2.4909522639994623,2.250874059369649 -358,14.0,11.0,-3.0953961826564296,6.097275864326261 -358,14.0,13.0,-2.4909522639994623,2.250874059369649 -358,14.0,14.0,9.365498545964757,-16.01163373210796 -358,14.0,17.0,-1.8108011504072024,3.687418931630696 -358,14.0,22.0,-1.9683489489016612,3.976064876781356 -358,15.0,11.0,-1.9519977922801688,4.104359379111847 -358,15.0,15.0,3.271064728633931,-8.94513365126506 -358,15.0,16.0,-1.3190669363537617,4.8407742721532125 -358,16.0,9.0,-3.956039125715353,10.317447719844054 -358,16.0,15.0,-1.3190669363537617,4.8407742721532125 -358,16.0,16.0,5.275106062069114,-15.158221991997266 -358,17.0,14.0,-1.8108011504072024,3.687418931630696 -358,17.0,17.0,4.886487584415919,-9.906177730909668 -358,17.0,18.0,-3.0756864340087167,6.218758799278971 -358,18.0,17.0,-3.0756864340087167,6.218758799278971 -358,18.0,18.0,8.958039375185187,-17.98346468163191 -358,18.0,19.0,-5.88235294117647,11.76470588235294 -358,19.0,9.0,-1.7848303152666305,3.98535828943083 -358,19.0,18.0,-5.88235294117647,11.76470588235294 -358,19.0,19.0,7.6671832564431,-15.75006417178377 -358,20.0,9.0,-5.101853820159654,10.98071411292983 -358,20.0,20.0,21.876495189895888,-45.10843276170355 -358,20.0,21.0,-16.774641369736234,34.127718648773715 -358,21.0,9.0,-2.619319553382597,5.400770303329455 -358,21.0,20.0,-16.774641369736234,34.127718648773715 -358,21.0,21.0,21.93449907537439,-43.48289181517921 -358,21.0,23.0,-2.5405381522555563,3.95440286307604 -358,22.0,14.0,-1.9683489489016612,3.976064876781356 -358,22.0,22.0,3.429754555384988,-6.965303617315433 -358,22.0,23.0,-1.4614056064833263,2.989238740534077 -358,23.0,21.0,-2.5405381522555563,3.95440286307604 -358,23.0,22.0,-1.4614056064833263,2.989238740534077 -358,23.0,23.0,5.311836702613133,-9.188263657315172 -358,23.0,24.0,-1.3098929438742493,2.287622053705056 -358,24.0,23.0,-1.3098929438742493,2.287622053705056 -358,24.0,24.0,4.495715080321987,-7.864978761969621 -358,24.0,25.0,-1.2165301194494855,1.8171440463475024 -358,24.0,26.0,-1.9692920169982515,3.760212661917064 -358,25.0,24.0,-1.2165301194494855,1.8171440463475024 -358,25.0,25.0,1.2165301194494855,-1.8171440463475024 -358,26.0,24.0,-1.9692920169982515,3.760212661917064 -358,26.0,26.0,3.652281470778589,-9.46044252232512 -358,26.0,27.0,0.0,2.608731947574922 -358,26.0,28.0,-0.99553355095268,1.881005840357816 -358,26.0,29.0,-0.6874559028276572,1.293971494797717 -358,27.0,7.0,-1.4439790613954469,4.540814658476248 -358,27.0,26.0,0.0,2.608731947574922 -358,27.0,27.0,1.4439790613954469,-7.214385678698274 -358,28.0,26.0,-0.99553355095268,1.881005840357816 -358,28.0,28.0,1.9075867579849564,-3.604364401207048 -358,28.0,29.0,-0.9120532070322764,1.7233585608492326 -358,29.0,26.0,-0.6874559028276572,1.293971494797717 -358,29.0,28.0,-0.9120532070322764,1.7233585608492326 -358,29.0,29.0,1.5995091098599337,-3.0173300556469496 -359,0.0,0.0,6.765516048652632,-21.23160167089863 -359,0.0,1.0,-5.224646179885656,15.646726840803398 -359,0.0,2.0,-1.5408698687669766,5.631674830095234 -359,1.0,0.0,-5.224646179885656,15.646726840803398 -359,1.0,1.0,9.75228216552403,-30.648662892676068 -359,1.0,3.0,-1.7055303166990268,5.1973792282565086 -359,1.0,4.0,-1.1359607881738778,4.772479328281356 -359,1.0,5.0,-1.6861448807654689,5.116477495334806 -359,2.0,0.0,-1.5408698687669766,5.631674830095234 -359,2.0,2.0,1.5408698687669766,-5.611274830095233 -359,3.0,1.0,-1.7055303166990268,5.1973792282565086 -359,3.0,3.0,8.118654046873583,-31.982737906191456 -359,3.0,5.0,-6.413123730174556,22.31120356548123 -359,3.0,11.0,0.0,4.191255364806866 -359,4.0,1.0,-1.1359607881738778,4.772479328281356 -359,4.0,4.0,4.089980824135861,-12.190647245055052 -359,4.0,6.0,-2.954020035961983,7.449267916773697 -359,5.0,1.0,-1.6861448807654689,5.116477495334806 -359,5.0,3.0,-6.413123730174556,22.31120356548123 -359,5.0,5.0,22.341631269034565,-82.8291478657789 -359,5.0,6.0,-3.590210423980992,11.02611441072814 -359,5.0,7.0,-6.289308176100628,22.0125786163522 -359,5.0,8.0,0.0,4.915840805411357 -359,5.0,9.0,0.0,1.8561002591115965 -359,5.0,27.0,-4.362844058012917,15.463571542897856 -359,6.0,4.0,-2.954020035961983,7.449267916773697 -359,6.0,5.0,-3.590210423980992,11.02611441072814 -359,6.0,6.0,6.544230459942975,-18.45668232750184 -359,7.0,5.0,-6.289308176100628,22.0125786163522 -359,7.0,7.0,6.289308176100628,-22.0080786163522 -359,8.0,5.0,0.0,4.915840805411357 -359,8.0,8.0,0.0,-18.706293706293707 -359,8.0,9.0,0.0,9.090909090909092 -359,8.0,10.0,0.0,4.807692307692308 -359,9.0,5.0,0.0,1.8561002591115965 -359,9.0,8.0,0.0,9.090909090909092 -359,9.0,9.0,13.462042814524237,-41.3837606675224 -359,9.0,16.0,-3.956039125715353,10.317447719844054 -359,9.0,19.0,-1.7848303152666305,3.98535828943083 -359,9.0,20.0,-5.101853820159654,10.98071411292983 -359,9.0,21.0,-2.619319553382597,5.400770303329455 -359,10.0,8.0,0.0,4.807692307692308 -359,10.0,10.0,0.0,-4.807692307692308 -359,11.0,3.0,0.0,4.191255364806866 -359,11.0,11.0,6.573961583776156,-24.424167659260668 -359,11.0,12.0,0.0,7.142857142857143 -359,11.0,13.0,-1.5265676088395577,3.1734252729654173 -359,11.0,14.0,-3.0953961826564296,6.097275864326261 -359,11.0,15.0,-1.9519977922801688,4.104359379111847 -359,12.0,11.0,0.0,7.142857142857143 -359,12.0,12.0,0.0,-7.142857142857143 -359,13.0,11.0,-1.5265676088395577,3.1734252729654173 -359,13.0,13.0,4.01751987283902,-5.424299332335067 -359,13.0,14.0,-2.4909522639994623,2.250874059369649 -359,14.0,11.0,-3.0953961826564296,6.097275864326261 -359,14.0,13.0,-2.4909522639994623,2.250874059369649 -359,14.0,14.0,9.365498545964757,-16.01163373210796 -359,14.0,17.0,-1.8108011504072024,3.687418931630696 -359,14.0,22.0,-1.9683489489016612,3.976064876781356 -359,15.0,11.0,-1.9519977922801688,4.104359379111847 -359,15.0,15.0,3.271064728633931,-8.94513365126506 -359,15.0,16.0,-1.3190669363537617,4.8407742721532125 -359,16.0,9.0,-3.956039125715353,10.317447719844054 -359,16.0,15.0,-1.3190669363537617,4.8407742721532125 -359,16.0,16.0,5.275106062069114,-15.158221991997266 -359,17.0,14.0,-1.8108011504072024,3.687418931630696 -359,17.0,17.0,4.886487584415919,-9.906177730909668 -359,17.0,18.0,-3.0756864340087167,6.218758799278971 -359,18.0,17.0,-3.0756864340087167,6.218758799278971 -359,18.0,18.0,8.958039375185187,-17.98346468163191 -359,18.0,19.0,-5.88235294117647,11.76470588235294 -359,19.0,9.0,-1.7848303152666305,3.98535828943083 -359,19.0,18.0,-5.88235294117647,11.76470588235294 -359,19.0,19.0,7.6671832564431,-15.75006417178377 -359,20.0,9.0,-5.101853820159654,10.98071411292983 -359,20.0,20.0,5.101853820159654,-10.98071411292983 -359,21.0,9.0,-2.619319553382597,5.400770303329455 -359,21.0,21.0,5.159857705638154,-9.355173166405494 -359,21.0,23.0,-2.5405381522555563,3.95440286307604 -359,22.0,14.0,-1.9683489489016612,3.976064876781356 -359,22.0,22.0,3.429754555384988,-6.965303617315433 -359,22.0,23.0,-1.4614056064833263,2.989238740534077 -359,23.0,21.0,-2.5405381522555563,3.95440286307604 -359,23.0,22.0,-1.4614056064833263,2.989238740534077 -359,23.0,23.0,4.001943758738883,-6.900641603610116 -359,24.0,24.0,3.185822136447737,-5.577356708264566 -359,24.0,25.0,-1.2165301194494855,1.8171440463475024 -359,24.0,26.0,-1.9692920169982515,3.760212661917064 -359,25.0,24.0,-1.2165301194494855,1.8171440463475024 -359,25.0,25.0,1.2165301194494855,-1.8171440463475024 -359,26.0,24.0,-1.9692920169982515,3.760212661917064 -359,26.0,26.0,3.652281470778589,-9.46044252232512 -359,26.0,27.0,0.0,2.608731947574922 -359,26.0,28.0,-0.99553355095268,1.881005840357816 -359,26.0,29.0,-0.6874559028276572,1.293971494797717 -359,27.0,5.0,-4.362844058012917,15.463571542897856 -359,27.0,26.0,0.0,2.608731947574922 -359,27.0,27.0,4.362844058012917,-18.15204256311988 -359,28.0,26.0,-0.99553355095268,1.881005840357816 -359,28.0,28.0,1.9075867579849564,-3.604364401207048 -359,28.0,29.0,-0.9120532070322764,1.7233585608492326 -359,29.0,26.0,-0.6874559028276572,1.293971494797717 -359,29.0,28.0,-0.9120532070322764,1.7233585608492326 -359,29.0,29.0,1.5995091098599337,-3.0173300556469496 -360,0.0,0.0,6.765516048652632,-21.23160167089863 -360,0.0,1.0,-5.224646179885656,15.646726840803398 -360,0.0,2.0,-1.5408698687669766,5.631674830095234 -360,1.0,0.0,-5.224646179885656,15.646726840803398 -360,1.0,1.0,9.75228216552403,-30.648662892676068 -360,1.0,3.0,-1.7055303166990268,5.1973792282565086 -360,1.0,4.0,-1.1359607881738778,4.772479328281356 -360,1.0,5.0,-1.6861448807654689,5.116477495334806 -360,2.0,0.0,-1.5408698687669766,5.631674830095234 -360,2.0,2.0,9.736318911079088,-29.13794745915803 -360,2.0,3.0,-8.19544904231211,23.5308726290628 -360,3.0,1.0,-1.7055303166990268,5.1973792282565086 -360,3.0,2.0,-8.19544904231211,23.5308726290628 -360,3.0,3.0,16.314103089185693,-55.509410535254254 -360,3.0,5.0,-6.413123730174556,22.31120356548123 -360,3.0,11.0,0.0,4.191255364806866 -360,4.0,1.0,-1.1359607881738778,4.772479328281356 -360,4.0,4.0,4.089980824135861,-12.190647245055052 -360,4.0,6.0,-2.954020035961983,7.449267916773697 -360,5.0,1.0,-1.6861448807654689,5.116477495334806 -360,5.0,3.0,-6.413123730174556,22.31120356548123 -360,5.0,5.0,22.341631269034565,-82.8291478657789 -360,5.0,6.0,-3.590210423980992,11.02611441072814 -360,5.0,7.0,-6.289308176100628,22.0125786163522 -360,5.0,8.0,0.0,4.915840805411357 -360,5.0,9.0,0.0,1.8561002591115965 -360,5.0,27.0,-4.362844058012917,15.463571542897856 -360,6.0,4.0,-2.954020035961983,7.449267916773697 -360,6.0,5.0,-3.590210423980992,11.02611441072814 -360,6.0,6.0,6.544230459942975,-18.45668232750184 -360,7.0,5.0,-6.289308176100628,22.0125786163522 -360,7.0,7.0,7.733287237496075,-26.527493274828448 -360,7.0,27.0,-1.4439790613954469,4.540814658476248 -360,8.0,5.0,0.0,4.915840805411357 -360,8.0,8.0,0.0,-18.706293706293707 -360,8.0,9.0,0.0,9.090909090909092 -360,8.0,10.0,0.0,4.807692307692308 -360,9.0,5.0,0.0,1.8561002591115965 -360,9.0,8.0,0.0,9.090909090909092 -360,9.0,9.0,13.462042814524237,-41.3837606675224 -360,9.0,16.0,-3.956039125715353,10.317447719844054 -360,9.0,19.0,-1.7848303152666305,3.98535828943083 -360,9.0,20.0,-5.101853820159654,10.98071411292983 -360,9.0,21.0,-2.619319553382597,5.400770303329455 -360,10.0,8.0,0.0,4.807692307692308 -360,10.0,10.0,0.0,-4.807692307692308 -360,11.0,3.0,0.0,4.191255364806866 -360,11.0,11.0,6.573961583776156,-24.424167659260668 -360,11.0,12.0,0.0,7.142857142857143 -360,11.0,13.0,-1.5265676088395577,3.1734252729654173 -360,11.0,14.0,-3.0953961826564296,6.097275864326261 -360,11.0,15.0,-1.9519977922801688,4.104359379111847 -360,12.0,11.0,0.0,7.142857142857143 -360,12.0,12.0,0.0,-7.142857142857143 -360,13.0,11.0,-1.5265676088395577,3.1734252729654173 -360,13.0,13.0,4.01751987283902,-5.424299332335067 -360,13.0,14.0,-2.4909522639994623,2.250874059369649 -360,14.0,11.0,-3.0953961826564296,6.097275864326261 -360,14.0,13.0,-2.4909522639994623,2.250874059369649 -360,14.0,14.0,9.365498545964757,-16.01163373210796 -360,14.0,17.0,-1.8108011504072024,3.687418931630696 -360,14.0,22.0,-1.9683489489016612,3.976064876781356 -360,15.0,11.0,-1.9519977922801688,4.104359379111847 -360,15.0,15.0,3.271064728633931,-8.94513365126506 -360,15.0,16.0,-1.3190669363537617,4.8407742721532125 -360,16.0,9.0,-3.956039125715353,10.317447719844054 -360,16.0,15.0,-1.3190669363537617,4.8407742721532125 -360,16.0,16.0,5.275106062069114,-15.158221991997266 -360,17.0,14.0,-1.8108011504072024,3.687418931630696 -360,17.0,17.0,1.8108011504072024,-3.687418931630696 -360,18.0,18.0,5.88235294117647,-11.76470588235294 -360,18.0,19.0,-5.88235294117647,11.76470588235294 -360,19.0,9.0,-1.7848303152666305,3.98535828943083 -360,19.0,18.0,-5.88235294117647,11.76470588235294 -360,19.0,19.0,7.6671832564431,-15.75006417178377 -360,20.0,9.0,-5.101853820159654,10.98071411292983 -360,20.0,20.0,21.876495189895888,-45.10843276170355 -360,20.0,21.0,-16.774641369736234,34.127718648773715 -360,21.0,9.0,-2.619319553382597,5.400770303329455 -360,21.0,20.0,-16.774641369736234,34.127718648773715 -360,21.0,21.0,21.93449907537439,-43.48289181517921 -360,21.0,23.0,-2.5405381522555563,3.95440286307604 -360,22.0,14.0,-1.9683489489016612,3.976064876781356 -360,22.0,22.0,3.429754555384988,-6.965303617315433 -360,22.0,23.0,-1.4614056064833263,2.989238740534077 -360,23.0,21.0,-2.5405381522555563,3.95440286307604 -360,23.0,22.0,-1.4614056064833263,2.989238740534077 -360,23.0,23.0,5.311836702613133,-9.188263657315172 -360,23.0,24.0,-1.3098929438742493,2.287622053705056 -360,24.0,23.0,-1.3098929438742493,2.287622053705056 -360,24.0,24.0,4.495715080321987,-7.864978761969621 -360,24.0,25.0,-1.2165301194494855,1.8171440463475024 -360,24.0,26.0,-1.9692920169982515,3.760212661917064 -360,25.0,24.0,-1.2165301194494855,1.8171440463475024 -360,25.0,25.0,1.2165301194494855,-1.8171440463475024 -360,26.0,24.0,-1.9692920169982515,3.760212661917064 -360,26.0,26.0,3.652281470778589,-9.46044252232512 -360,26.0,27.0,0.0,2.608731947574922 -360,26.0,28.0,-0.99553355095268,1.881005840357816 -360,26.0,29.0,-0.6874559028276572,1.293971494797717 -360,27.0,5.0,-4.362844058012917,15.463571542897856 -360,27.0,7.0,-1.4439790613954469,4.540814658476248 -360,27.0,26.0,0.0,2.608731947574922 -360,27.0,27.0,5.806823119408364,-22.67145722159613 -360,28.0,26.0,-0.99553355095268,1.881005840357816 -360,28.0,28.0,1.9075867579849564,-3.604364401207048 -360,28.0,29.0,-0.9120532070322764,1.7233585608492326 -360,29.0,26.0,-0.6874559028276572,1.293971494797717 -360,29.0,28.0,-0.9120532070322764,1.7233585608492326 -360,29.0,29.0,1.5995091098599337,-3.0173300556469496 -361,0.0,0.0,6.765516048652632,-21.23160167089863 -361,0.0,1.0,-5.224646179885656,15.646726840803398 -361,0.0,2.0,-1.5408698687669766,5.631674830095234 -361,1.0,0.0,-5.224646179885656,15.646726840803398 -361,1.0,1.0,9.75228216552403,-30.648662892676068 -361,1.0,3.0,-1.7055303166990268,5.1973792282565086 -361,1.0,4.0,-1.1359607881738778,4.772479328281356 -361,1.0,5.0,-1.6861448807654689,5.116477495334806 -361,2.0,0.0,-1.5408698687669766,5.631674830095234 -361,2.0,2.0,9.736318911079088,-29.13794745915803 -361,2.0,3.0,-8.19544904231211,23.5308726290628 -361,3.0,1.0,-1.7055303166990268,5.1973792282565086 -361,3.0,2.0,-8.19544904231211,23.5308726290628 -361,3.0,3.0,16.314103089185693,-55.509410535254254 -361,3.0,5.0,-6.413123730174556,22.31120356548123 -361,3.0,11.0,0.0,4.191255364806866 -361,4.0,1.0,-1.1359607881738778,4.772479328281356 -361,4.0,4.0,4.089980824135861,-12.190647245055052 -361,4.0,6.0,-2.954020035961983,7.449267916773697 -361,5.0,1.0,-1.6861448807654689,5.116477495334806 -361,5.0,3.0,-6.413123730174556,22.31120356548123 -361,5.0,5.0,22.341631269034565,-82.8291478657789 -361,5.0,6.0,-3.590210423980992,11.02611441072814 -361,5.0,7.0,-6.289308176100628,22.0125786163522 -361,5.0,8.0,0.0,4.915840805411357 -361,5.0,9.0,0.0,1.8561002591115965 -361,5.0,27.0,-4.362844058012917,15.463571542897856 -361,6.0,4.0,-2.954020035961983,7.449267916773697 -361,6.0,5.0,-3.590210423980992,11.02611441072814 -361,6.0,6.0,6.544230459942975,-18.45668232750184 -361,7.0,5.0,-6.289308176100628,22.0125786163522 -361,7.0,7.0,7.733287237496075,-26.527493274828448 -361,7.0,27.0,-1.4439790613954469,4.540814658476248 -361,8.0,5.0,0.0,4.915840805411357 -361,8.0,8.0,0.0,-18.706293706293707 -361,8.0,9.0,0.0,9.090909090909092 -361,8.0,10.0,0.0,4.807692307692308 -361,9.0,5.0,0.0,1.8561002591115965 -361,9.0,8.0,0.0,9.090909090909092 -361,9.0,9.0,8.36018899436458,-30.40304655459257 -361,9.0,16.0,-3.956039125715353,10.317447719844054 -361,9.0,19.0,-1.7848303152666305,3.98535828943083 -361,9.0,21.0,-2.619319553382597,5.400770303329455 -361,10.0,8.0,0.0,4.807692307692308 -361,10.0,10.0,0.0,-4.807692307692308 -361,11.0,3.0,0.0,4.191255364806866 -361,11.0,11.0,6.573961583776156,-24.424167659260668 -361,11.0,12.0,0.0,7.142857142857143 -361,11.0,13.0,-1.5265676088395577,3.1734252729654173 -361,11.0,14.0,-3.0953961826564296,6.097275864326261 -361,11.0,15.0,-1.9519977922801688,4.104359379111847 -361,12.0,11.0,0.0,7.142857142857143 -361,12.0,12.0,0.0,-7.142857142857143 -361,13.0,11.0,-1.5265676088395577,3.1734252729654173 -361,13.0,13.0,4.01751987283902,-5.424299332335067 -361,13.0,14.0,-2.4909522639994623,2.250874059369649 -361,14.0,11.0,-3.0953961826564296,6.097275864326261 -361,14.0,13.0,-2.4909522639994623,2.250874059369649 -361,14.0,14.0,9.365498545964757,-16.01163373210796 -361,14.0,17.0,-1.8108011504072024,3.687418931630696 -361,14.0,22.0,-1.9683489489016612,3.976064876781356 -361,15.0,11.0,-1.9519977922801688,4.104359379111847 -361,15.0,15.0,3.271064728633931,-8.94513365126506 -361,15.0,16.0,-1.3190669363537617,4.8407742721532125 -361,16.0,9.0,-3.956039125715353,10.317447719844054 -361,16.0,15.0,-1.3190669363537617,4.8407742721532125 -361,16.0,16.0,5.275106062069114,-15.158221991997266 -361,17.0,14.0,-1.8108011504072024,3.687418931630696 -361,17.0,17.0,4.886487584415919,-9.906177730909668 -361,17.0,18.0,-3.0756864340087167,6.218758799278971 -361,18.0,17.0,-3.0756864340087167,6.218758799278971 -361,18.0,18.0,8.958039375185187,-17.98346468163191 -361,18.0,19.0,-5.88235294117647,11.76470588235294 -361,19.0,9.0,-1.7848303152666305,3.98535828943083 -361,19.0,18.0,-5.88235294117647,11.76470588235294 -361,19.0,19.0,7.6671832564431,-15.75006417178377 -361,20.0,20.0,16.774641369736234,-34.127718648773715 -361,20.0,21.0,-16.774641369736234,34.127718648773715 -361,21.0,9.0,-2.619319553382597,5.400770303329455 -361,21.0,20.0,-16.774641369736234,34.127718648773715 -361,21.0,21.0,21.93449907537439,-43.48289181517921 -361,21.0,23.0,-2.5405381522555563,3.95440286307604 -361,22.0,14.0,-1.9683489489016612,3.976064876781356 -361,22.0,22.0,3.429754555384988,-6.965303617315433 -361,22.0,23.0,-1.4614056064833263,2.989238740534077 -361,23.0,21.0,-2.5405381522555563,3.95440286307604 -361,23.0,22.0,-1.4614056064833263,2.989238740534077 -361,23.0,23.0,5.311836702613133,-9.188263657315172 -361,23.0,24.0,-1.3098929438742493,2.287622053705056 -361,24.0,23.0,-1.3098929438742493,2.287622053705056 -361,24.0,24.0,4.495715080321987,-7.864978761969621 -361,24.0,25.0,-1.2165301194494855,1.8171440463475024 -361,24.0,26.0,-1.9692920169982515,3.760212661917064 -361,25.0,24.0,-1.2165301194494855,1.8171440463475024 -361,25.0,25.0,1.2165301194494855,-1.8171440463475024 -361,26.0,24.0,-1.9692920169982515,3.760212661917064 -361,26.0,26.0,3.652281470778589,-9.46044252232512 -361,26.0,27.0,0.0,2.608731947574922 -361,26.0,28.0,-0.99553355095268,1.881005840357816 -361,26.0,29.0,-0.6874559028276572,1.293971494797717 -361,27.0,5.0,-4.362844058012917,15.463571542897856 -361,27.0,7.0,-1.4439790613954469,4.540814658476248 -361,27.0,26.0,0.0,2.608731947574922 -361,27.0,27.0,5.806823119408364,-22.67145722159613 -361,28.0,26.0,-0.99553355095268,1.881005840357816 -361,28.0,28.0,1.9075867579849564,-3.604364401207048 -361,28.0,29.0,-0.9120532070322764,1.7233585608492326 -361,29.0,26.0,-0.6874559028276572,1.293971494797717 -361,29.0,28.0,-0.9120532070322764,1.7233585608492326 -361,29.0,29.0,1.5995091098599337,-3.0173300556469496 -362,0.0,0.0,6.765516048652632,-21.23160167089863 -362,0.0,1.0,-5.224646179885656,15.646726840803398 -362,0.0,2.0,-1.5408698687669766,5.631674830095234 -362,1.0,0.0,-5.224646179885656,15.646726840803398 -362,1.0,1.0,9.75228216552403,-30.648662892676068 -362,1.0,3.0,-1.7055303166990268,5.1973792282565086 -362,1.0,4.0,-1.1359607881738778,4.772479328281356 -362,1.0,5.0,-1.6861448807654689,5.116477495334806 -362,2.0,0.0,-1.5408698687669766,5.631674830095234 -362,2.0,2.0,9.736318911079088,-29.13794745915803 -362,2.0,3.0,-8.19544904231211,23.5308726290628 -362,3.0,1.0,-1.7055303166990268,5.1973792282565086 -362,3.0,2.0,-8.19544904231211,23.5308726290628 -362,3.0,3.0,16.314103089185693,-55.509410535254254 -362,3.0,5.0,-6.413123730174556,22.31120356548123 -362,3.0,11.0,0.0,4.191255364806866 -362,4.0,1.0,-1.1359607881738778,4.772479328281356 -362,4.0,4.0,4.089980824135861,-12.190647245055052 -362,4.0,6.0,-2.954020035961983,7.449267916773697 -362,5.0,1.0,-1.6861448807654689,5.116477495334806 -362,5.0,3.0,-6.413123730174556,22.31120356548123 -362,5.0,5.0,22.341631269034565,-82.8291478657789 -362,5.0,6.0,-3.590210423980992,11.02611441072814 -362,5.0,7.0,-6.289308176100628,22.0125786163522 -362,5.0,8.0,0.0,4.915840805411357 -362,5.0,9.0,0.0,1.8561002591115965 -362,5.0,27.0,-4.362844058012917,15.463571542897856 -362,6.0,4.0,-2.954020035961983,7.449267916773697 -362,6.0,5.0,-3.590210423980992,11.02611441072814 -362,6.0,6.0,6.544230459942975,-18.45668232750184 -362,7.0,5.0,-6.289308176100628,22.0125786163522 -362,7.0,7.0,7.733287237496075,-26.527493274828448 -362,7.0,27.0,-1.4439790613954469,4.540814658476248 -362,8.0,5.0,0.0,4.915840805411357 -362,8.0,8.0,0.0,-18.706293706293707 -362,8.0,9.0,0.0,9.090909090909092 -362,8.0,10.0,0.0,4.807692307692308 -362,9.0,5.0,0.0,1.8561002591115965 -362,9.0,8.0,0.0,9.090909090909092 -362,9.0,9.0,13.462042814524237,-41.3837606675224 -362,9.0,16.0,-3.956039125715353,10.317447719844054 -362,9.0,19.0,-1.7848303152666305,3.98535828943083 -362,9.0,20.0,-5.101853820159654,10.98071411292983 -362,9.0,21.0,-2.619319553382597,5.400770303329455 -362,10.0,8.0,0.0,4.807692307692308 -362,10.0,10.0,0.0,-4.807692307692308 -362,11.0,3.0,0.0,4.191255364806866 -362,11.0,11.0,6.573961583776156,-24.424167659260668 -362,11.0,12.0,0.0,7.142857142857143 -362,11.0,13.0,-1.5265676088395577,3.1734252729654173 -362,11.0,14.0,-3.0953961826564296,6.097275864326261 -362,11.0,15.0,-1.9519977922801688,4.104359379111847 -362,12.0,11.0,0.0,7.142857142857143 -362,12.0,12.0,0.0,-7.142857142857143 -362,13.0,11.0,-1.5265676088395577,3.1734252729654173 -362,13.0,13.0,4.01751987283902,-5.424299332335067 -362,13.0,14.0,-2.4909522639994623,2.250874059369649 -362,14.0,11.0,-3.0953961826564296,6.097275864326261 -362,14.0,13.0,-2.4909522639994623,2.250874059369649 -362,14.0,14.0,9.365498545964757,-16.01163373210796 -362,14.0,17.0,-1.8108011504072024,3.687418931630696 -362,14.0,22.0,-1.9683489489016612,3.976064876781356 -362,15.0,11.0,-1.9519977922801688,4.104359379111847 -362,15.0,15.0,3.271064728633931,-8.94513365126506 -362,15.0,16.0,-1.3190669363537617,4.8407742721532125 -362,16.0,9.0,-3.956039125715353,10.317447719844054 -362,16.0,15.0,-1.3190669363537617,4.8407742721532125 -362,16.0,16.0,5.275106062069114,-15.158221991997266 -362,17.0,14.0,-1.8108011504072024,3.687418931630696 -362,17.0,17.0,4.886487584415919,-9.906177730909668 -362,17.0,18.0,-3.0756864340087167,6.218758799278971 -362,18.0,17.0,-3.0756864340087167,6.218758799278971 -362,18.0,18.0,8.958039375185187,-17.98346468163191 -362,18.0,19.0,-5.88235294117647,11.76470588235294 -362,19.0,9.0,-1.7848303152666305,3.98535828943083 -362,19.0,18.0,-5.88235294117647,11.76470588235294 -362,19.0,19.0,7.6671832564431,-15.75006417178377 -362,20.0,9.0,-5.101853820159654,10.98071411292983 -362,20.0,20.0,5.101853820159654,-10.98071411292983 -362,21.0,9.0,-2.619319553382597,5.400770303329455 -362,21.0,21.0,5.159857705638154,-9.355173166405494 -362,21.0,23.0,-2.5405381522555563,3.95440286307604 -362,22.0,14.0,-1.9683489489016612,3.976064876781356 -362,22.0,22.0,3.429754555384988,-6.965303617315433 -362,22.0,23.0,-1.4614056064833263,2.989238740534077 -362,23.0,21.0,-2.5405381522555563,3.95440286307604 -362,23.0,22.0,-1.4614056064833263,2.989238740534077 -362,23.0,23.0,4.001943758738883,-6.900641603610116 -362,24.0,24.0,3.185822136447737,-5.577356708264566 -362,24.0,25.0,-1.2165301194494855,1.8171440463475024 -362,24.0,26.0,-1.9692920169982515,3.760212661917064 -362,25.0,24.0,-1.2165301194494855,1.8171440463475024 -362,25.0,25.0,1.2165301194494855,-1.8171440463475024 -362,26.0,24.0,-1.9692920169982515,3.760212661917064 -362,26.0,26.0,3.652281470778589,-9.46044252232512 -362,26.0,27.0,0.0,2.608731947574922 -362,26.0,28.0,-0.99553355095268,1.881005840357816 -362,26.0,29.0,-0.6874559028276572,1.293971494797717 -362,27.0,5.0,-4.362844058012917,15.463571542897856 -362,27.0,7.0,-1.4439790613954469,4.540814658476248 -362,27.0,26.0,0.0,2.608731947574922 -362,27.0,27.0,5.806823119408364,-22.67145722159613 -362,28.0,26.0,-0.99553355095268,1.881005840357816 -362,28.0,28.0,1.9075867579849564,-3.604364401207048 -362,28.0,29.0,-0.9120532070322764,1.7233585608492326 -362,29.0,26.0,-0.6874559028276572,1.293971494797717 -362,29.0,28.0,-0.9120532070322764,1.7233585608492326 -362,29.0,29.0,1.5995091098599337,-3.0173300556469496 -363,0.0,0.0,6.765516048652632,-21.23160167089863 -363,0.0,1.0,-5.224646179885656,15.646726840803398 -363,0.0,2.0,-1.5408698687669766,5.631674830095234 -363,1.0,0.0,-5.224646179885656,15.646726840803398 -363,1.0,1.0,9.75228216552403,-30.648662892676068 -363,1.0,3.0,-1.7055303166990268,5.1973792282565086 -363,1.0,4.0,-1.1359607881738778,4.772479328281356 -363,1.0,5.0,-1.6861448807654689,5.116477495334806 -363,2.0,0.0,-1.5408698687669766,5.631674830095234 -363,2.0,2.0,9.736318911079088,-29.13794745915803 -363,2.0,3.0,-8.19544904231211,23.5308726290628 -363,3.0,1.0,-1.7055303166990268,5.1973792282565086 -363,3.0,2.0,-8.19544904231211,23.5308726290628 -363,3.0,3.0,16.314103089185693,-55.509410535254254 -363,3.0,5.0,-6.413123730174556,22.31120356548123 -363,3.0,11.0,0.0,4.191255364806866 -363,4.0,1.0,-1.1359607881738778,4.772479328281356 -363,4.0,4.0,4.089980824135861,-12.190647245055052 -363,4.0,6.0,-2.954020035961983,7.449267916773697 -363,5.0,1.0,-1.6861448807654689,5.116477495334806 -363,5.0,3.0,-6.413123730174556,22.31120356548123 -363,5.0,5.0,22.341631269034565,-82.8291478657789 -363,5.0,6.0,-3.590210423980992,11.02611441072814 -363,5.0,7.0,-6.289308176100628,22.0125786163522 -363,5.0,8.0,0.0,4.915840805411357 -363,5.0,9.0,0.0,1.8561002591115965 -363,5.0,27.0,-4.362844058012917,15.463571542897856 -363,6.0,4.0,-2.954020035961983,7.449267916773697 -363,6.0,5.0,-3.590210423980992,11.02611441072814 -363,6.0,6.0,6.544230459942975,-18.45668232750184 -363,7.0,5.0,-6.289308176100628,22.0125786163522 -363,7.0,7.0,7.733287237496075,-26.527493274828448 -363,7.0,27.0,-1.4439790613954469,4.540814658476248 -363,8.0,5.0,0.0,4.915840805411357 -363,8.0,8.0,0.0,-18.706293706293707 -363,8.0,9.0,0.0,9.090909090909092 -363,8.0,10.0,0.0,4.807692307692308 -363,9.0,5.0,0.0,1.8561002591115965 -363,9.0,8.0,0.0,9.090909090909092 -363,9.0,9.0,13.462042814524237,-41.3837606675224 -363,9.0,16.0,-3.956039125715353,10.317447719844054 -363,9.0,19.0,-1.7848303152666305,3.98535828943083 -363,9.0,20.0,-5.101853820159654,10.98071411292983 -363,9.0,21.0,-2.619319553382597,5.400770303329455 -363,10.0,8.0,0.0,4.807692307692308 -363,10.0,10.0,0.0,-4.807692307692308 -363,11.0,3.0,0.0,4.191255364806866 -363,11.0,11.0,4.621963791495987,-20.31980828014882 -363,11.0,12.0,0.0,7.142857142857143 -363,11.0,13.0,-1.5265676088395577,3.1734252729654173 -363,11.0,14.0,-3.0953961826564296,6.097275864326261 -363,12.0,11.0,0.0,7.142857142857143 -363,12.0,12.0,0.0,-7.142857142857143 -363,13.0,11.0,-1.5265676088395577,3.1734252729654173 -363,13.0,13.0,4.01751987283902,-5.424299332335067 -363,13.0,14.0,-2.4909522639994623,2.250874059369649 -363,14.0,11.0,-3.0953961826564296,6.097275864326261 -363,14.0,13.0,-2.4909522639994623,2.250874059369649 -363,14.0,14.0,9.365498545964757,-16.01163373210796 -363,14.0,17.0,-1.8108011504072024,3.687418931630696 -363,14.0,22.0,-1.9683489489016612,3.976064876781356 -363,15.0,15.0,1.3190669363537617,-4.8407742721532125 -363,15.0,16.0,-1.3190669363537617,4.8407742721532125 -363,16.0,9.0,-3.956039125715353,10.317447719844054 -363,16.0,15.0,-1.3190669363537617,4.8407742721532125 -363,16.0,16.0,5.275106062069114,-15.158221991997266 -363,17.0,14.0,-1.8108011504072024,3.687418931630696 -363,17.0,17.0,4.886487584415919,-9.906177730909668 -363,17.0,18.0,-3.0756864340087167,6.218758799278971 -363,18.0,17.0,-3.0756864340087167,6.218758799278971 -363,18.0,18.0,3.0756864340087167,-6.218758799278971 -363,19.0,9.0,-1.7848303152666305,3.98535828943083 -363,19.0,19.0,1.7848303152666305,-3.98535828943083 -363,20.0,9.0,-5.101853820159654,10.98071411292983 -363,20.0,20.0,21.876495189895888,-45.10843276170355 -363,20.0,21.0,-16.774641369736234,34.127718648773715 -363,21.0,9.0,-2.619319553382597,5.400770303329455 -363,21.0,20.0,-16.774641369736234,34.127718648773715 -363,21.0,21.0,21.93449907537439,-43.48289181517921 -363,21.0,23.0,-2.5405381522555563,3.95440286307604 -363,22.0,14.0,-1.9683489489016612,3.976064876781356 -363,22.0,22.0,3.429754555384988,-6.965303617315433 -363,22.0,23.0,-1.4614056064833263,2.989238740534077 -363,23.0,21.0,-2.5405381522555563,3.95440286307604 -363,23.0,22.0,-1.4614056064833263,2.989238740534077 -363,23.0,23.0,5.311836702613133,-9.188263657315172 -363,23.0,24.0,-1.3098929438742493,2.287622053705056 -363,24.0,23.0,-1.3098929438742493,2.287622053705056 -363,24.0,24.0,4.495715080321987,-7.864978761969621 -363,24.0,25.0,-1.2165301194494855,1.8171440463475024 -363,24.0,26.0,-1.9692920169982515,3.760212661917064 -363,25.0,24.0,-1.2165301194494855,1.8171440463475024 -363,25.0,25.0,1.2165301194494855,-1.8171440463475024 -363,26.0,24.0,-1.9692920169982515,3.760212661917064 -363,26.0,26.0,3.652281470778589,-9.46044252232512 -363,26.0,27.0,0.0,2.608731947574922 -363,26.0,28.0,-0.99553355095268,1.881005840357816 -363,26.0,29.0,-0.6874559028276572,1.293971494797717 -363,27.0,5.0,-4.362844058012917,15.463571542897856 -363,27.0,7.0,-1.4439790613954469,4.540814658476248 -363,27.0,26.0,0.0,2.608731947574922 -363,27.0,27.0,5.806823119408364,-22.67145722159613 -363,28.0,26.0,-0.99553355095268,1.881005840357816 -363,28.0,28.0,1.9075867579849564,-3.604364401207048 -363,28.0,29.0,-0.9120532070322764,1.7233585608492326 -363,29.0,26.0,-0.6874559028276572,1.293971494797717 -363,29.0,28.0,-0.9120532070322764,1.7233585608492326 -363,29.0,29.0,1.5995091098599337,-3.0173300556469496 -364,0.0,0.0,6.765516048652632,-21.23160167089863 -364,0.0,1.0,-5.224646179885656,15.646726840803398 -364,0.0,2.0,-1.5408698687669766,5.631674830095234 -364,1.0,0.0,-5.224646179885656,15.646726840803398 -364,1.0,1.0,9.75228216552403,-30.648662892676068 -364,1.0,3.0,-1.7055303166990268,5.1973792282565086 -364,1.0,4.0,-1.1359607881738778,4.772479328281356 -364,1.0,5.0,-1.6861448807654689,5.116477495334806 -364,2.0,0.0,-1.5408698687669766,5.631674830095234 -364,2.0,2.0,9.736318911079088,-29.13794745915803 -364,2.0,3.0,-8.19544904231211,23.5308726290628 -364,3.0,1.0,-1.7055303166990268,5.1973792282565086 -364,3.0,2.0,-8.19544904231211,23.5308726290628 -364,3.0,3.0,16.314103089185693,-55.509410535254254 -364,3.0,5.0,-6.413123730174556,22.31120356548123 -364,3.0,11.0,0.0,4.191255364806866 -364,4.0,1.0,-1.1359607881738778,4.772479328281356 -364,4.0,4.0,4.089980824135861,-12.190647245055052 -364,4.0,6.0,-2.954020035961983,7.449267916773697 -364,5.0,1.0,-1.6861448807654689,5.116477495334806 -364,5.0,3.0,-6.413123730174556,22.31120356548123 -364,5.0,5.0,22.341631269034565,-82.8291478657789 -364,5.0,6.0,-3.590210423980992,11.02611441072814 -364,5.0,7.0,-6.289308176100628,22.0125786163522 -364,5.0,8.0,0.0,4.915840805411357 -364,5.0,9.0,0.0,1.8561002591115965 -364,5.0,27.0,-4.362844058012917,15.463571542897856 -364,6.0,4.0,-2.954020035961983,7.449267916773697 -364,6.0,5.0,-3.590210423980992,11.02611441072814 -364,6.0,6.0,6.544230459942975,-18.45668232750184 -364,7.0,5.0,-6.289308176100628,22.0125786163522 -364,7.0,7.0,7.733287237496075,-26.527493274828448 -364,7.0,27.0,-1.4439790613954469,4.540814658476248 -364,8.0,5.0,0.0,4.915840805411357 -364,8.0,8.0,0.0,-18.706293706293707 -364,8.0,9.0,0.0,9.090909090909092 -364,8.0,10.0,0.0,4.807692307692308 -364,9.0,5.0,0.0,1.8561002591115965 -364,9.0,8.0,0.0,9.090909090909092 -364,9.0,9.0,13.462042814524237,-41.3837606675224 -364,9.0,16.0,-3.956039125715353,10.317447719844054 -364,9.0,19.0,-1.7848303152666305,3.98535828943083 -364,9.0,20.0,-5.101853820159654,10.98071411292983 -364,9.0,21.0,-2.619319553382597,5.400770303329455 -364,10.0,8.0,0.0,4.807692307692308 -364,10.0,10.0,0.0,-4.807692307692308 -364,11.0,3.0,0.0,4.191255364806866 -364,11.0,11.0,6.573961583776156,-24.424167659260668 -364,11.0,12.0,0.0,7.142857142857143 -364,11.0,13.0,-1.5265676088395577,3.1734252729654173 -364,11.0,14.0,-3.0953961826564296,6.097275864326261 -364,11.0,15.0,-1.9519977922801688,4.104359379111847 -364,12.0,11.0,0.0,7.142857142857143 -364,12.0,12.0,0.0,-7.142857142857143 -364,13.0,11.0,-1.5265676088395577,3.1734252729654173 -364,13.0,13.0,4.01751987283902,-5.424299332335067 -364,13.0,14.0,-2.4909522639994623,2.250874059369649 -364,14.0,11.0,-3.0953961826564296,6.097275864326261 -364,14.0,13.0,-2.4909522639994623,2.250874059369649 -364,14.0,14.0,9.365498545964757,-16.01163373210796 -364,14.0,17.0,-1.8108011504072024,3.687418931630696 -364,14.0,22.0,-1.9683489489016612,3.976064876781356 -364,15.0,11.0,-1.9519977922801688,4.104359379111847 -364,15.0,15.0,3.271064728633931,-8.94513365126506 -364,15.0,16.0,-1.3190669363537617,4.8407742721532125 -364,16.0,9.0,-3.956039125715353,10.317447719844054 -364,16.0,15.0,-1.3190669363537617,4.8407742721532125 -364,16.0,16.0,5.275106062069114,-15.158221991997266 -364,17.0,14.0,-1.8108011504072024,3.687418931630696 -364,17.0,17.0,4.886487584415919,-9.906177730909668 -364,17.0,18.0,-3.0756864340087167,6.218758799278971 -364,18.0,17.0,-3.0756864340087167,6.218758799278971 -364,18.0,18.0,3.0756864340087167,-6.218758799278971 -364,19.0,9.0,-1.7848303152666305,3.98535828943083 -364,19.0,19.0,1.7848303152666305,-3.98535828943083 -364,20.0,9.0,-5.101853820159654,10.98071411292983 -364,20.0,20.0,21.876495189895888,-45.10843276170355 -364,20.0,21.0,-16.774641369736234,34.127718648773715 -364,21.0,9.0,-2.619319553382597,5.400770303329455 -364,21.0,20.0,-16.774641369736234,34.127718648773715 -364,21.0,21.0,21.93449907537439,-43.48289181517921 -364,21.0,23.0,-2.5405381522555563,3.95440286307604 -364,22.0,14.0,-1.9683489489016612,3.976064876781356 -364,22.0,22.0,3.429754555384988,-6.965303617315433 -364,22.0,23.0,-1.4614056064833263,2.989238740534077 -364,23.0,21.0,-2.5405381522555563,3.95440286307604 -364,23.0,22.0,-1.4614056064833263,2.989238740534077 -364,23.0,23.0,5.311836702613133,-9.188263657315172 -364,23.0,24.0,-1.3098929438742493,2.287622053705056 -364,24.0,23.0,-1.3098929438742493,2.287622053705056 -364,24.0,24.0,4.495715080321987,-7.864978761969621 -364,24.0,25.0,-1.2165301194494855,1.8171440463475024 -364,24.0,26.0,-1.9692920169982515,3.760212661917064 -364,25.0,24.0,-1.2165301194494855,1.8171440463475024 -364,25.0,25.0,1.2165301194494855,-1.8171440463475024 -364,26.0,24.0,-1.9692920169982515,3.760212661917064 -364,26.0,26.0,3.652281470778589,-9.46044252232512 -364,26.0,27.0,0.0,2.608731947574922 -364,26.0,28.0,-0.99553355095268,1.881005840357816 -364,26.0,29.0,-0.6874559028276572,1.293971494797717 -364,27.0,5.0,-4.362844058012917,15.463571542897856 -364,27.0,7.0,-1.4439790613954469,4.540814658476248 -364,27.0,26.0,0.0,2.608731947574922 -364,27.0,27.0,5.806823119408364,-22.67145722159613 -364,28.0,26.0,-0.99553355095268,1.881005840357816 -364,28.0,28.0,1.9075867579849564,-3.604364401207048 -364,28.0,29.0,-0.9120532070322764,1.7233585608492326 -364,29.0,26.0,-0.6874559028276572,1.293971494797717 -364,29.0,28.0,-0.9120532070322764,1.7233585608492326 -364,29.0,29.0,1.5995091098599337,-3.0173300556469496 -365,0.0,0.0,6.765516048652632,-21.23160167089863 -365,0.0,1.0,-5.224646179885656,15.646726840803398 -365,0.0,2.0,-1.5408698687669766,5.631674830095234 -365,1.0,0.0,-5.224646179885656,15.646726840803398 -365,1.0,1.0,9.75228216552403,-30.648662892676068 -365,1.0,3.0,-1.7055303166990268,5.1973792282565086 -365,1.0,4.0,-1.1359607881738778,4.772479328281356 -365,1.0,5.0,-1.6861448807654689,5.116477495334806 -365,2.0,0.0,-1.5408698687669766,5.631674830095234 -365,2.0,2.0,9.736318911079088,-29.13794745915803 -365,2.0,3.0,-8.19544904231211,23.5308726290628 -365,3.0,1.0,-1.7055303166990268,5.1973792282565086 -365,3.0,2.0,-8.19544904231211,23.5308726290628 -365,3.0,3.0,16.314103089185693,-55.509410535254254 -365,3.0,5.0,-6.413123730174556,22.31120356548123 -365,3.0,11.0,0.0,4.191255364806866 -365,4.0,1.0,-1.1359607881738778,4.772479328281356 -365,4.0,4.0,4.089980824135861,-12.190647245055052 -365,4.0,6.0,-2.954020035961983,7.449267916773697 -365,5.0,1.0,-1.6861448807654689,5.116477495334806 -365,5.0,3.0,-6.413123730174556,22.31120356548123 -365,5.0,5.0,22.341631269034565,-82.8291478657789 -365,5.0,6.0,-3.590210423980992,11.02611441072814 -365,5.0,7.0,-6.289308176100628,22.0125786163522 -365,5.0,8.0,0.0,4.915840805411357 -365,5.0,9.0,0.0,1.8561002591115965 -365,5.0,27.0,-4.362844058012917,15.463571542897856 -365,6.0,4.0,-2.954020035961983,7.449267916773697 -365,6.0,5.0,-3.590210423980992,11.02611441072814 -365,6.0,6.0,6.544230459942975,-18.45668232750184 -365,7.0,5.0,-6.289308176100628,22.0125786163522 -365,7.0,7.0,7.733287237496075,-26.527493274828448 -365,7.0,27.0,-1.4439790613954469,4.540814658476248 -365,8.0,5.0,0.0,4.915840805411357 -365,8.0,8.0,0.0,-18.706293706293707 -365,8.0,9.0,0.0,9.090909090909092 -365,8.0,10.0,0.0,4.807692307692308 -365,9.0,5.0,0.0,1.8561002591115965 -365,9.0,8.0,0.0,9.090909090909092 -365,9.0,9.0,13.462042814524237,-41.3837606675224 -365,9.0,16.0,-3.956039125715353,10.317447719844054 -365,9.0,19.0,-1.7848303152666305,3.98535828943083 -365,9.0,20.0,-5.101853820159654,10.98071411292983 -365,9.0,21.0,-2.619319553382597,5.400770303329455 -365,10.0,8.0,0.0,4.807692307692308 -365,10.0,10.0,0.0,-4.807692307692308 -365,11.0,3.0,0.0,4.191255364806866 -365,11.0,11.0,6.573961583776156,-24.424167659260668 -365,11.0,12.0,0.0,7.142857142857143 -365,11.0,13.0,-1.5265676088395577,3.1734252729654173 -365,11.0,14.0,-3.0953961826564296,6.097275864326261 -365,11.0,15.0,-1.9519977922801688,4.104359379111847 -365,12.0,11.0,0.0,7.142857142857143 -365,12.0,12.0,0.0,-7.142857142857143 -365,13.0,11.0,-1.5265676088395577,3.1734252729654173 -365,13.0,13.0,4.01751987283902,-5.424299332335067 -365,13.0,14.0,-2.4909522639994623,2.250874059369649 -365,14.0,11.0,-3.0953961826564296,6.097275864326261 -365,14.0,13.0,-2.4909522639994623,2.250874059369649 -365,14.0,14.0,7.397149597063095,-12.035568855326606 -365,14.0,17.0,-1.8108011504072024,3.687418931630696 -365,15.0,11.0,-1.9519977922801688,4.104359379111847 -365,15.0,15.0,3.271064728633931,-8.94513365126506 -365,15.0,16.0,-1.3190669363537617,4.8407742721532125 -365,16.0,9.0,-3.956039125715353,10.317447719844054 -365,16.0,15.0,-1.3190669363537617,4.8407742721532125 -365,16.0,16.0,5.275106062069114,-15.158221991997266 -365,17.0,14.0,-1.8108011504072024,3.687418931630696 -365,17.0,17.0,4.886487584415919,-9.906177730909668 -365,17.0,18.0,-3.0756864340087167,6.218758799278971 -365,18.0,17.0,-3.0756864340087167,6.218758799278971 -365,18.0,18.0,8.958039375185187,-17.98346468163191 -365,18.0,19.0,-5.88235294117647,11.76470588235294 -365,19.0,9.0,-1.7848303152666305,3.98535828943083 -365,19.0,18.0,-5.88235294117647,11.76470588235294 -365,19.0,19.0,7.6671832564431,-15.75006417178377 -365,20.0,9.0,-5.101853820159654,10.98071411292983 -365,20.0,20.0,21.876495189895888,-45.10843276170355 -365,20.0,21.0,-16.774641369736234,34.127718648773715 -365,21.0,9.0,-2.619319553382597,5.400770303329455 -365,21.0,20.0,-16.774641369736234,34.127718648773715 -365,21.0,21.0,21.93449907537439,-43.48289181517921 -365,21.0,23.0,-2.5405381522555563,3.95440286307604 -365,22.0,22.0,1.4614056064833263,-2.989238740534077 -365,22.0,23.0,-1.4614056064833263,2.989238740534077 -365,23.0,21.0,-2.5405381522555563,3.95440286307604 -365,23.0,22.0,-1.4614056064833263,2.989238740534077 -365,23.0,23.0,5.311836702613133,-9.188263657315172 -365,23.0,24.0,-1.3098929438742493,2.287622053705056 -365,24.0,23.0,-1.3098929438742493,2.287622053705056 -365,24.0,24.0,2.526423063323735,-4.104766100052558 -365,24.0,25.0,-1.2165301194494855,1.8171440463475024 -365,25.0,24.0,-1.2165301194494855,1.8171440463475024 -365,25.0,25.0,1.2165301194494855,-1.8171440463475024 -365,26.0,26.0,1.6829894537803372,-5.700229860408058 -365,26.0,27.0,0.0,2.608731947574922 -365,26.0,28.0,-0.99553355095268,1.881005840357816 -365,26.0,29.0,-0.6874559028276572,1.293971494797717 -365,27.0,5.0,-4.362844058012917,15.463571542897856 -365,27.0,7.0,-1.4439790613954469,4.540814658476248 -365,27.0,26.0,0.0,2.608731947574922 -365,27.0,27.0,5.806823119408364,-22.67145722159613 -365,28.0,26.0,-0.99553355095268,1.881005840357816 -365,28.0,28.0,1.9075867579849564,-3.604364401207048 -365,28.0,29.0,-0.9120532070322764,1.7233585608492326 -365,29.0,26.0,-0.6874559028276572,1.293971494797717 -365,29.0,28.0,-0.9120532070322764,1.7233585608492326 -365,29.0,29.0,1.5995091098599337,-3.0173300556469496 -366,0.0,0.0,6.765516048652632,-21.23160167089863 -366,0.0,1.0,-5.224646179885656,15.646726840803398 -366,0.0,2.0,-1.5408698687669766,5.631674830095234 -366,1.0,0.0,-5.224646179885656,15.646726840803398 -366,1.0,1.0,9.75228216552403,-30.648662892676068 -366,1.0,3.0,-1.7055303166990268,5.1973792282565086 -366,1.0,4.0,-1.1359607881738778,4.772479328281356 -366,1.0,5.0,-1.6861448807654689,5.116477495334806 -366,2.0,0.0,-1.5408698687669766,5.631674830095234 -366,2.0,2.0,9.736318911079088,-29.13794745915803 -366,2.0,3.0,-8.19544904231211,23.5308726290628 -366,3.0,1.0,-1.7055303166990268,5.1973792282565086 -366,3.0,2.0,-8.19544904231211,23.5308726290628 -366,3.0,3.0,16.314103089185693,-55.509410535254254 -366,3.0,5.0,-6.413123730174556,22.31120356548123 -366,3.0,11.0,0.0,4.191255364806866 -366,4.0,1.0,-1.1359607881738778,4.772479328281356 -366,4.0,4.0,4.089980824135861,-12.190647245055052 -366,4.0,6.0,-2.954020035961983,7.449267916773697 -366,5.0,1.0,-1.6861448807654689,5.116477495334806 -366,5.0,3.0,-6.413123730174556,22.31120356548123 -366,5.0,5.0,22.341631269034565,-82.8291478657789 -366,5.0,6.0,-3.590210423980992,11.02611441072814 -366,5.0,7.0,-6.289308176100628,22.0125786163522 -366,5.0,8.0,0.0,4.915840805411357 -366,5.0,9.0,0.0,1.8561002591115965 -366,5.0,27.0,-4.362844058012917,15.463571542897856 -366,6.0,4.0,-2.954020035961983,7.449267916773697 -366,6.0,5.0,-3.590210423980992,11.02611441072814 -366,6.0,6.0,6.544230459942975,-18.45668232750184 -366,7.0,5.0,-6.289308176100628,22.0125786163522 -366,7.0,7.0,7.733287237496075,-26.527493274828448 -366,7.0,27.0,-1.4439790613954469,4.540814658476248 -366,8.0,5.0,0.0,4.915840805411357 -366,8.0,8.0,0.0,-18.706293706293707 -366,8.0,9.0,0.0,9.090909090909092 -366,8.0,10.0,0.0,4.807692307692308 -366,9.0,5.0,0.0,1.8561002591115965 -366,9.0,8.0,0.0,9.090909090909092 -366,9.0,9.0,13.462042814524237,-41.3837606675224 -366,9.0,16.0,-3.956039125715353,10.317447719844054 -366,9.0,19.0,-1.7848303152666305,3.98535828943083 -366,9.0,20.0,-5.101853820159654,10.98071411292983 -366,9.0,21.0,-2.619319553382597,5.400770303329455 -366,10.0,8.0,0.0,4.807692307692308 -366,10.0,10.0,0.0,-4.807692307692308 -366,11.0,3.0,0.0,4.191255364806866 -366,11.0,11.0,6.573961583776156,-24.424167659260668 -366,11.0,12.0,0.0,7.142857142857143 -366,11.0,13.0,-1.5265676088395577,3.1734252729654173 -366,11.0,14.0,-3.0953961826564296,6.097275864326261 -366,11.0,15.0,-1.9519977922801688,4.104359379111847 -366,12.0,11.0,0.0,7.142857142857143 -366,12.0,12.0,0.0,-7.142857142857143 -366,13.0,11.0,-1.5265676088395577,3.1734252729654173 -366,13.0,13.0,4.01751987283902,-5.424299332335067 -366,13.0,14.0,-2.4909522639994623,2.250874059369649 -366,14.0,11.0,-3.0953961826564296,6.097275864326261 -366,14.0,13.0,-2.4909522639994623,2.250874059369649 -366,14.0,14.0,9.365498545964757,-16.01163373210796 -366,14.0,17.0,-1.8108011504072024,3.687418931630696 -366,14.0,22.0,-1.9683489489016612,3.976064876781356 -366,15.0,11.0,-1.9519977922801688,4.104359379111847 -366,15.0,15.0,3.271064728633931,-8.94513365126506 -366,15.0,16.0,-1.3190669363537617,4.8407742721532125 -366,16.0,9.0,-3.956039125715353,10.317447719844054 -366,16.0,15.0,-1.3190669363537617,4.8407742721532125 -366,16.0,16.0,5.275106062069114,-15.158221991997266 -366,17.0,14.0,-1.8108011504072024,3.687418931630696 -366,17.0,17.0,4.886487584415919,-9.906177730909668 -366,17.0,18.0,-3.0756864340087167,6.218758799278971 -366,18.0,17.0,-3.0756864340087167,6.218758799278971 -366,18.0,18.0,8.958039375185187,-17.98346468163191 -366,18.0,19.0,-5.88235294117647,11.76470588235294 -366,19.0,9.0,-1.7848303152666305,3.98535828943083 -366,19.0,18.0,-5.88235294117647,11.76470588235294 -366,19.0,19.0,7.6671832564431,-15.75006417178377 -366,20.0,9.0,-5.101853820159654,10.98071411292983 -366,20.0,20.0,21.876495189895888,-45.10843276170355 -366,20.0,21.0,-16.774641369736234,34.127718648773715 -366,21.0,9.0,-2.619319553382597,5.400770303329455 -366,21.0,20.0,-16.774641369736234,34.127718648773715 -366,21.0,21.0,21.93449907537439,-43.48289181517921 -366,21.0,23.0,-2.5405381522555563,3.95440286307604 -366,22.0,14.0,-1.9683489489016612,3.976064876781356 -366,22.0,22.0,3.429754555384988,-6.965303617315433 -366,22.0,23.0,-1.4614056064833263,2.989238740534077 -366,23.0,21.0,-2.5405381522555563,3.95440286307604 -366,23.0,22.0,-1.4614056064833263,2.989238740534077 -366,23.0,23.0,5.311836702613133,-9.188263657315172 -366,23.0,24.0,-1.3098929438742493,2.287622053705056 -366,24.0,23.0,-1.3098929438742493,2.287622053705056 -366,24.0,24.0,4.495715080321987,-7.864978761969621 -366,24.0,25.0,-1.2165301194494855,1.8171440463475024 -366,24.0,26.0,-1.9692920169982515,3.760212661917064 -366,25.0,24.0,-1.2165301194494855,1.8171440463475024 -366,25.0,25.0,1.2165301194494855,-1.8171440463475024 -366,26.0,24.0,-1.9692920169982515,3.760212661917064 -366,26.0,26.0,3.652281470778589,-9.46044252232512 -366,26.0,27.0,0.0,2.608731947574922 -366,26.0,28.0,-0.99553355095268,1.881005840357816 -366,26.0,29.0,-0.6874559028276572,1.293971494797717 -366,27.0,5.0,-4.362844058012917,15.463571542897856 -366,27.0,7.0,-1.4439790613954469,4.540814658476248 -366,27.0,26.0,0.0,2.608731947574922 -366,27.0,27.0,5.806823119408364,-22.67145722159613 -366,28.0,26.0,-0.99553355095268,1.881005840357816 -366,28.0,28.0,1.9075867579849564,-3.604364401207048 -366,28.0,29.0,-0.9120532070322764,1.7233585608492326 -366,29.0,26.0,-0.6874559028276572,1.293971494797717 -366,29.0,28.0,-0.9120532070322764,1.7233585608492326 -366,29.0,29.0,1.5995091098599337,-3.0173300556469496 -367,0.0,0.0,6.765516048652632,-21.23160167089863 -367,0.0,1.0,-5.224646179885656,15.646726840803398 -367,0.0,2.0,-1.5408698687669766,5.631674830095234 -367,1.0,0.0,-5.224646179885656,15.646726840803398 -367,1.0,1.0,9.75228216552403,-30.648662892676068 -367,1.0,3.0,-1.7055303166990268,5.1973792282565086 -367,1.0,4.0,-1.1359607881738778,4.772479328281356 -367,1.0,5.0,-1.6861448807654689,5.116477495334806 -367,2.0,0.0,-1.5408698687669766,5.631674830095234 -367,2.0,2.0,9.736318911079088,-29.13794745915803 -367,2.0,3.0,-8.19544904231211,23.5308726290628 -367,3.0,1.0,-1.7055303166990268,5.1973792282565086 -367,3.0,2.0,-8.19544904231211,23.5308726290628 -367,3.0,3.0,16.314103089185693,-55.509410535254254 -367,3.0,5.0,-6.413123730174556,22.31120356548123 -367,3.0,11.0,0.0,4.191255364806866 -367,4.0,1.0,-1.1359607881738778,4.772479328281356 -367,4.0,4.0,4.089980824135861,-12.190647245055052 -367,4.0,6.0,-2.954020035961983,7.449267916773697 -367,5.0,1.0,-1.6861448807654689,5.116477495334806 -367,5.0,3.0,-6.413123730174556,22.31120356548123 -367,5.0,5.0,16.052323092933932,-60.8210692494267 -367,5.0,6.0,-3.590210423980992,11.02611441072814 -367,5.0,8.0,0.0,4.915840805411357 -367,5.0,9.0,0.0,1.8561002591115965 -367,5.0,27.0,-4.362844058012917,15.463571542897856 -367,6.0,4.0,-2.954020035961983,7.449267916773697 -367,6.0,5.0,-3.590210423980992,11.02611441072814 -367,6.0,6.0,6.544230459942975,-18.45668232750184 -367,7.0,7.0,1.4439790613954469,-4.519414658476248 -367,7.0,27.0,-1.4439790613954469,4.540814658476248 -367,8.0,5.0,0.0,4.915840805411357 -367,8.0,8.0,0.0,-18.706293706293707 -367,8.0,9.0,0.0,9.090909090909092 -367,8.0,10.0,0.0,4.807692307692308 -367,9.0,5.0,0.0,1.8561002591115965 -367,9.0,8.0,0.0,9.090909090909092 -367,9.0,9.0,13.462042814524237,-41.3837606675224 -367,9.0,16.0,-3.956039125715353,10.317447719844054 -367,9.0,19.0,-1.7848303152666305,3.98535828943083 -367,9.0,20.0,-5.101853820159654,10.98071411292983 -367,9.0,21.0,-2.619319553382597,5.400770303329455 -367,10.0,8.0,0.0,4.807692307692308 -367,10.0,10.0,0.0,-4.807692307692308 -367,11.0,3.0,0.0,4.191255364806866 -367,11.0,11.0,6.573961583776156,-24.424167659260668 -367,11.0,12.0,0.0,7.142857142857143 -367,11.0,13.0,-1.5265676088395577,3.1734252729654173 -367,11.0,14.0,-3.0953961826564296,6.097275864326261 -367,11.0,15.0,-1.9519977922801688,4.104359379111847 -367,12.0,11.0,0.0,7.142857142857143 -367,12.0,12.0,0.0,-7.142857142857143 -367,13.0,11.0,-1.5265676088395577,3.1734252729654173 -367,13.0,13.0,4.01751987283902,-5.424299332335067 -367,13.0,14.0,-2.4909522639994623,2.250874059369649 -367,14.0,11.0,-3.0953961826564296,6.097275864326261 -367,14.0,13.0,-2.4909522639994623,2.250874059369649 -367,14.0,14.0,9.365498545964757,-16.01163373210796 -367,14.0,17.0,-1.8108011504072024,3.687418931630696 -367,14.0,22.0,-1.9683489489016612,3.976064876781356 -367,15.0,11.0,-1.9519977922801688,4.104359379111847 -367,15.0,15.0,3.271064728633931,-8.94513365126506 -367,15.0,16.0,-1.3190669363537617,4.8407742721532125 -367,16.0,9.0,-3.956039125715353,10.317447719844054 -367,16.0,15.0,-1.3190669363537617,4.8407742721532125 -367,16.0,16.0,5.275106062069114,-15.158221991997266 -367,17.0,14.0,-1.8108011504072024,3.687418931630696 -367,17.0,17.0,4.886487584415919,-9.906177730909668 -367,17.0,18.0,-3.0756864340087167,6.218758799278971 -367,18.0,17.0,-3.0756864340087167,6.218758799278971 -367,18.0,18.0,8.958039375185187,-17.98346468163191 -367,18.0,19.0,-5.88235294117647,11.76470588235294 -367,19.0,9.0,-1.7848303152666305,3.98535828943083 -367,19.0,18.0,-5.88235294117647,11.76470588235294 -367,19.0,19.0,7.6671832564431,-15.75006417178377 -367,20.0,9.0,-5.101853820159654,10.98071411292983 -367,20.0,20.0,21.876495189895888,-45.10843276170355 -367,20.0,21.0,-16.774641369736234,34.127718648773715 -367,21.0,9.0,-2.619319553382597,5.400770303329455 -367,21.0,20.0,-16.774641369736234,34.127718648773715 -367,21.0,21.0,21.93449907537439,-43.48289181517921 -367,21.0,23.0,-2.5405381522555563,3.95440286307604 -367,22.0,14.0,-1.9683489489016612,3.976064876781356 -367,22.0,22.0,3.429754555384988,-6.965303617315433 -367,22.0,23.0,-1.4614056064833263,2.989238740534077 -367,23.0,21.0,-2.5405381522555563,3.95440286307604 -367,23.0,22.0,-1.4614056064833263,2.989238740534077 -367,23.0,23.0,5.311836702613133,-9.188263657315172 -367,23.0,24.0,-1.3098929438742493,2.287622053705056 -367,24.0,23.0,-1.3098929438742493,2.287622053705056 -367,24.0,24.0,4.495715080321987,-7.864978761969621 -367,24.0,25.0,-1.2165301194494855,1.8171440463475024 -367,24.0,26.0,-1.9692920169982515,3.760212661917064 -367,25.0,24.0,-1.2165301194494855,1.8171440463475024 -367,25.0,25.0,1.2165301194494855,-1.8171440463475024 -367,26.0,24.0,-1.9692920169982515,3.760212661917064 -367,26.0,26.0,3.652281470778589,-9.46044252232512 -367,26.0,27.0,0.0,2.608731947574922 -367,26.0,28.0,-0.99553355095268,1.881005840357816 -367,26.0,29.0,-0.6874559028276572,1.293971494797717 -367,27.0,5.0,-4.362844058012917,15.463571542897856 -367,27.0,7.0,-1.4439790613954469,4.540814658476248 -367,27.0,26.0,0.0,2.608731947574922 -367,27.0,27.0,5.806823119408364,-22.67145722159613 -367,28.0,26.0,-0.99553355095268,1.881005840357816 -367,28.0,28.0,1.9075867579849564,-3.604364401207048 -367,28.0,29.0,-0.9120532070322764,1.7233585608492326 -367,29.0,26.0,-0.6874559028276572,1.293971494797717 -367,29.0,28.0,-0.9120532070322764,1.7233585608492326 -367,29.0,29.0,1.5995091098599337,-3.0173300556469496 -368,0.0,0.0,6.765516048652632,-21.23160167089863 -368,0.0,1.0,-5.224646179885656,15.646726840803398 -368,0.0,2.0,-1.5408698687669766,5.631674830095234 -368,1.0,0.0,-5.224646179885656,15.646726840803398 -368,1.0,1.0,8.066137284758561,-25.55088539734126 -368,1.0,3.0,-1.7055303166990268,5.1973792282565086 -368,1.0,4.0,-1.1359607881738778,4.772479328281356 -368,2.0,0.0,-1.5408698687669766,5.631674830095234 -368,2.0,2.0,9.736318911079088,-29.13794745915803 -368,2.0,3.0,-8.19544904231211,23.5308726290628 -368,3.0,1.0,-1.7055303166990268,5.1973792282565086 -368,3.0,2.0,-8.19544904231211,23.5308726290628 -368,3.0,3.0,16.314103089185693,-55.509410535254254 -368,3.0,5.0,-6.413123730174556,22.31120356548123 -368,3.0,11.0,0.0,4.191255364806866 -368,4.0,1.0,-1.1359607881738778,4.772479328281356 -368,4.0,4.0,4.089980824135861,-12.190647245055052 -368,4.0,6.0,-2.954020035961983,7.449267916773697 -368,5.0,3.0,-6.413123730174556,22.31120356548123 -368,5.0,5.0,20.655486388269097,-77.7313703704441 -368,5.0,6.0,-3.590210423980992,11.02611441072814 -368,5.0,7.0,-6.289308176100628,22.0125786163522 -368,5.0,8.0,0.0,4.915840805411357 -368,5.0,9.0,0.0,1.8561002591115965 -368,5.0,27.0,-4.362844058012917,15.463571542897856 -368,6.0,4.0,-2.954020035961983,7.449267916773697 -368,6.0,5.0,-3.590210423980992,11.02611441072814 -368,6.0,6.0,6.544230459942975,-18.45668232750184 -368,7.0,5.0,-6.289308176100628,22.0125786163522 -368,7.0,7.0,7.733287237496075,-26.527493274828448 -368,7.0,27.0,-1.4439790613954469,4.540814658476248 -368,8.0,5.0,0.0,4.915840805411357 -368,8.0,8.0,0.0,-18.706293706293707 -368,8.0,9.0,0.0,9.090909090909092 -368,8.0,10.0,0.0,4.807692307692308 -368,9.0,5.0,0.0,1.8561002591115965 -368,9.0,8.0,0.0,9.090909090909092 -368,9.0,9.0,13.462042814524237,-41.3837606675224 -368,9.0,16.0,-3.956039125715353,10.317447719844054 -368,9.0,19.0,-1.7848303152666305,3.98535828943083 -368,9.0,20.0,-5.101853820159654,10.98071411292983 -368,9.0,21.0,-2.619319553382597,5.400770303329455 -368,10.0,8.0,0.0,4.807692307692308 -368,10.0,10.0,0.0,-4.807692307692308 -368,11.0,3.0,0.0,4.191255364806866 -368,11.0,11.0,6.573961583776156,-24.424167659260668 -368,11.0,12.0,0.0,7.142857142857143 -368,11.0,13.0,-1.5265676088395577,3.1734252729654173 -368,11.0,14.0,-3.0953961826564296,6.097275864326261 -368,11.0,15.0,-1.9519977922801688,4.104359379111847 -368,12.0,11.0,0.0,7.142857142857143 -368,12.0,12.0,0.0,-7.142857142857143 -368,13.0,11.0,-1.5265676088395577,3.1734252729654173 -368,13.0,13.0,4.01751987283902,-5.424299332335067 -368,13.0,14.0,-2.4909522639994623,2.250874059369649 -368,14.0,11.0,-3.0953961826564296,6.097275864326261 -368,14.0,13.0,-2.4909522639994623,2.250874059369649 -368,14.0,14.0,9.365498545964757,-16.01163373210796 -368,14.0,17.0,-1.8108011504072024,3.687418931630696 -368,14.0,22.0,-1.9683489489016612,3.976064876781356 -368,15.0,11.0,-1.9519977922801688,4.104359379111847 -368,15.0,15.0,3.271064728633931,-8.94513365126506 -368,15.0,16.0,-1.3190669363537617,4.8407742721532125 -368,16.0,9.0,-3.956039125715353,10.317447719844054 -368,16.0,15.0,-1.3190669363537617,4.8407742721532125 -368,16.0,16.0,5.275106062069114,-15.158221991997266 -368,17.0,14.0,-1.8108011504072024,3.687418931630696 -368,17.0,17.0,4.886487584415919,-9.906177730909668 -368,17.0,18.0,-3.0756864340087167,6.218758799278971 -368,18.0,17.0,-3.0756864340087167,6.218758799278971 -368,18.0,18.0,8.958039375185187,-17.98346468163191 -368,18.0,19.0,-5.88235294117647,11.76470588235294 -368,19.0,9.0,-1.7848303152666305,3.98535828943083 -368,19.0,18.0,-5.88235294117647,11.76470588235294 -368,19.0,19.0,7.6671832564431,-15.75006417178377 -368,20.0,9.0,-5.101853820159654,10.98071411292983 -368,20.0,20.0,21.876495189895888,-45.10843276170355 -368,20.0,21.0,-16.774641369736234,34.127718648773715 -368,21.0,9.0,-2.619319553382597,5.400770303329455 -368,21.0,20.0,-16.774641369736234,34.127718648773715 -368,21.0,21.0,21.93449907537439,-43.48289181517921 -368,21.0,23.0,-2.5405381522555563,3.95440286307604 -368,22.0,14.0,-1.9683489489016612,3.976064876781356 -368,22.0,22.0,3.429754555384988,-6.965303617315433 -368,22.0,23.0,-1.4614056064833263,2.989238740534077 -368,23.0,21.0,-2.5405381522555563,3.95440286307604 -368,23.0,22.0,-1.4614056064833263,2.989238740534077 -368,23.0,23.0,5.311836702613133,-9.188263657315172 -368,23.0,24.0,-1.3098929438742493,2.287622053705056 -368,24.0,23.0,-1.3098929438742493,2.287622053705056 -368,24.0,24.0,4.495715080321987,-7.864978761969621 -368,24.0,25.0,-1.2165301194494855,1.8171440463475024 -368,24.0,26.0,-1.9692920169982515,3.760212661917064 -368,25.0,24.0,-1.2165301194494855,1.8171440463475024 -368,25.0,25.0,1.2165301194494855,-1.8171440463475024 -368,26.0,24.0,-1.9692920169982515,3.760212661917064 -368,26.0,26.0,3.652281470778589,-9.46044252232512 -368,26.0,27.0,0.0,2.608731947574922 -368,26.0,28.0,-0.99553355095268,1.881005840357816 -368,26.0,29.0,-0.6874559028276572,1.293971494797717 -368,27.0,5.0,-4.362844058012917,15.463571542897856 -368,27.0,7.0,-1.4439790613954469,4.540814658476248 -368,27.0,26.0,0.0,2.608731947574922 -368,27.0,27.0,5.806823119408364,-22.67145722159613 -368,28.0,26.0,-0.99553355095268,1.881005840357816 -368,28.0,28.0,1.9075867579849564,-3.604364401207048 -368,28.0,29.0,-0.9120532070322764,1.7233585608492326 -368,29.0,26.0,-0.6874559028276572,1.293971494797717 -368,29.0,28.0,-0.9120532070322764,1.7233585608492326 -368,29.0,29.0,1.5995091098599337,-3.0173300556469496 -369,0.0,0.0,6.765516048652632,-21.23160167089863 -369,0.0,1.0,-5.224646179885656,15.646726840803398 -369,0.0,2.0,-1.5408698687669766,5.631674830095234 -369,1.0,0.0,-5.224646179885656,15.646726840803398 -369,1.0,1.0,9.75228216552403,-30.648662892676068 -369,1.0,3.0,-1.7055303166990268,5.1973792282565086 -369,1.0,4.0,-1.1359607881738778,4.772479328281356 -369,1.0,5.0,-1.6861448807654689,5.116477495334806 -369,2.0,0.0,-1.5408698687669766,5.631674830095234 -369,2.0,2.0,9.736318911079088,-29.13794745915803 -369,2.0,3.0,-8.19544904231211,23.5308726290628 -369,3.0,1.0,-1.7055303166990268,5.1973792282565086 -369,3.0,2.0,-8.19544904231211,23.5308726290628 -369,3.0,3.0,16.314103089185693,-55.509410535254254 -369,3.0,5.0,-6.413123730174556,22.31120356548123 -369,3.0,11.0,0.0,4.191255364806866 -369,4.0,1.0,-1.1359607881738778,4.772479328281356 -369,4.0,4.0,4.089980824135861,-12.190647245055052 -369,4.0,6.0,-2.954020035961983,7.449267916773697 -369,5.0,1.0,-1.6861448807654689,5.116477495334806 -369,5.0,3.0,-6.413123730174556,22.31120356548123 -369,5.0,5.0,22.341631269034565,-82.8291478657789 -369,5.0,6.0,-3.590210423980992,11.02611441072814 -369,5.0,7.0,-6.289308176100628,22.0125786163522 -369,5.0,8.0,0.0,4.915840805411357 -369,5.0,9.0,0.0,1.8561002591115965 -369,5.0,27.0,-4.362844058012917,15.463571542897856 -369,6.0,4.0,-2.954020035961983,7.449267916773697 -369,6.0,5.0,-3.590210423980992,11.02611441072814 -369,6.0,6.0,6.544230459942975,-18.45668232750184 -369,7.0,5.0,-6.289308176100628,22.0125786163522 -369,7.0,7.0,7.733287237496075,-26.527493274828448 -369,7.0,27.0,-1.4439790613954469,4.540814658476248 -369,8.0,5.0,0.0,4.915840805411357 -369,8.0,8.0,0.0,-18.706293706293707 -369,8.0,9.0,0.0,9.090909090909092 -369,8.0,10.0,0.0,4.807692307692308 -369,9.0,5.0,0.0,1.8561002591115965 -369,9.0,8.0,0.0,9.090909090909092 -369,9.0,9.0,13.462042814524237,-41.3837606675224 -369,9.0,16.0,-3.956039125715353,10.317447719844054 -369,9.0,19.0,-1.7848303152666305,3.98535828943083 -369,9.0,20.0,-5.101853820159654,10.98071411292983 -369,9.0,21.0,-2.619319553382597,5.400770303329455 -369,10.0,8.0,0.0,4.807692307692308 -369,10.0,10.0,0.0,-4.807692307692308 -369,11.0,3.0,0.0,4.191255364806866 -369,11.0,11.0,6.573961583776156,-24.424167659260668 -369,11.0,12.0,0.0,7.142857142857143 -369,11.0,13.0,-1.5265676088395577,3.1734252729654173 -369,11.0,14.0,-3.0953961826564296,6.097275864326261 -369,11.0,15.0,-1.9519977922801688,4.104359379111847 -369,12.0,11.0,0.0,7.142857142857143 -369,12.0,12.0,0.0,-7.142857142857143 -369,13.0,11.0,-1.5265676088395577,3.1734252729654173 -369,13.0,13.0,4.01751987283902,-5.424299332335067 -369,13.0,14.0,-2.4909522639994623,2.250874059369649 -369,14.0,11.0,-3.0953961826564296,6.097275864326261 -369,14.0,13.0,-2.4909522639994623,2.250874059369649 -369,14.0,14.0,9.365498545964757,-16.01163373210796 -369,14.0,17.0,-1.8108011504072024,3.687418931630696 -369,14.0,22.0,-1.9683489489016612,3.976064876781356 -369,15.0,11.0,-1.9519977922801688,4.104359379111847 -369,15.0,15.0,3.271064728633931,-8.94513365126506 -369,15.0,16.0,-1.3190669363537617,4.8407742721532125 -369,16.0,9.0,-3.956039125715353,10.317447719844054 -369,16.0,15.0,-1.3190669363537617,4.8407742721532125 -369,16.0,16.0,5.275106062069114,-15.158221991997266 -369,17.0,14.0,-1.8108011504072024,3.687418931630696 -369,17.0,17.0,4.886487584415919,-9.906177730909668 -369,17.0,18.0,-3.0756864340087167,6.218758799278971 -369,18.0,17.0,-3.0756864340087167,6.218758799278971 -369,18.0,18.0,8.958039375185187,-17.98346468163191 -369,18.0,19.0,-5.88235294117647,11.76470588235294 -369,19.0,9.0,-1.7848303152666305,3.98535828943083 -369,19.0,18.0,-5.88235294117647,11.76470588235294 -369,19.0,19.0,7.6671832564431,-15.75006417178377 -369,20.0,9.0,-5.101853820159654,10.98071411292983 -369,20.0,20.0,21.876495189895888,-45.10843276170355 -369,20.0,21.0,-16.774641369736234,34.127718648773715 -369,21.0,9.0,-2.619319553382597,5.400770303329455 -369,21.0,20.0,-16.774641369736234,34.127718648773715 -369,21.0,21.0,21.93449907537439,-43.48289181517921 -369,21.0,23.0,-2.5405381522555563,3.95440286307604 -369,22.0,14.0,-1.9683489489016612,3.976064876781356 -369,22.0,22.0,3.429754555384988,-6.965303617315433 -369,22.0,23.0,-1.4614056064833263,2.989238740534077 -369,23.0,21.0,-2.5405381522555563,3.95440286307604 -369,23.0,22.0,-1.4614056064833263,2.989238740534077 -369,23.0,23.0,5.311836702613133,-9.188263657315172 -369,23.0,24.0,-1.3098929438742493,2.287622053705056 -369,24.0,23.0,-1.3098929438742493,2.287622053705056 -369,24.0,24.0,4.495715080321987,-7.864978761969621 -369,24.0,25.0,-1.2165301194494855,1.8171440463475024 -369,24.0,26.0,-1.9692920169982515,3.760212661917064 -369,25.0,24.0,-1.2165301194494855,1.8171440463475024 -369,25.0,25.0,1.2165301194494855,-1.8171440463475024 -369,26.0,24.0,-1.9692920169982515,3.760212661917064 -369,26.0,26.0,3.652281470778589,-9.46044252232512 -369,26.0,27.0,0.0,2.608731947574922 -369,26.0,28.0,-0.99553355095268,1.881005840357816 -369,26.0,29.0,-0.6874559028276572,1.293971494797717 -369,27.0,5.0,-4.362844058012917,15.463571542897856 -369,27.0,7.0,-1.4439790613954469,4.540814658476248 -369,27.0,26.0,0.0,2.608731947574922 -369,27.0,27.0,5.806823119408364,-22.67145722159613 -369,28.0,26.0,-0.99553355095268,1.881005840357816 -369,28.0,28.0,1.9075867579849564,-3.604364401207048 -369,28.0,29.0,-0.9120532070322764,1.7233585608492326 -369,29.0,26.0,-0.6874559028276572,1.293971494797717 -369,29.0,28.0,-0.9120532070322764,1.7233585608492326 -369,29.0,29.0,1.5995091098599337,-3.0173300556469496 -370,0.0,0.0,6.765516048652632,-21.23160167089863 -370,0.0,1.0,-5.224646179885656,15.646726840803398 -370,0.0,2.0,-1.5408698687669766,5.631674830095234 -370,1.0,0.0,-5.224646179885656,15.646726840803398 -370,1.0,1.0,8.046751848825002,-25.46968366441956 -370,1.0,4.0,-1.1359607881738778,4.772479328281356 -370,1.0,5.0,-1.6861448807654689,5.116477495334806 -370,2.0,0.0,-1.5408698687669766,5.631674830095234 -370,2.0,2.0,9.736318911079088,-29.13794745915803 -370,2.0,3.0,-8.19544904231211,23.5308726290628 -370,3.0,2.0,-8.19544904231211,23.5308726290628 -370,3.0,3.0,14.608572772486664,-50.33043130699775 -370,3.0,5.0,-6.413123730174556,22.31120356548123 -370,3.0,11.0,0.0,4.191255364806866 -370,4.0,1.0,-1.1359607881738778,4.772479328281356 -370,4.0,4.0,4.089980824135861,-12.190647245055052 -370,4.0,6.0,-2.954020035961983,7.449267916773697 -370,5.0,1.0,-1.6861448807654689,5.116477495334806 -370,5.0,3.0,-6.413123730174556,22.31120356548123 -370,5.0,5.0,22.341631269034565,-82.8291478657789 -370,5.0,6.0,-3.590210423980992,11.02611441072814 -370,5.0,7.0,-6.289308176100628,22.0125786163522 -370,5.0,8.0,0.0,4.915840805411357 -370,5.0,9.0,0.0,1.8561002591115965 -370,5.0,27.0,-4.362844058012917,15.463571542897856 -370,6.0,4.0,-2.954020035961983,7.449267916773697 -370,6.0,5.0,-3.590210423980992,11.02611441072814 -370,6.0,6.0,6.544230459942975,-18.45668232750184 -370,7.0,5.0,-6.289308176100628,22.0125786163522 -370,7.0,7.0,7.733287237496075,-26.527493274828448 -370,7.0,27.0,-1.4439790613954469,4.540814658476248 -370,8.0,5.0,0.0,4.915840805411357 -370,8.0,8.0,0.0,-18.706293706293707 -370,8.0,9.0,0.0,9.090909090909092 -370,8.0,10.0,0.0,4.807692307692308 -370,9.0,5.0,0.0,1.8561002591115965 -370,9.0,8.0,0.0,9.090909090909092 -370,9.0,9.0,11.677212499257603,-37.39840237809157 -370,9.0,16.0,-3.956039125715353,10.317447719844054 -370,9.0,20.0,-5.101853820159654,10.98071411292983 -370,9.0,21.0,-2.619319553382597,5.400770303329455 -370,10.0,8.0,0.0,4.807692307692308 -370,10.0,10.0,0.0,-4.807692307692308 -370,11.0,3.0,0.0,4.191255364806866 -370,11.0,11.0,5.047393974936599,-21.25074238629525 -370,11.0,12.0,0.0,7.142857142857143 -370,11.0,14.0,-3.0953961826564296,6.097275864326261 -370,11.0,15.0,-1.9519977922801688,4.104359379111847 -370,12.0,11.0,0.0,7.142857142857143 -370,12.0,12.0,0.0,-7.142857142857143 -370,13.0,13.0,2.4909522639994623,-2.250874059369649 -370,13.0,14.0,-2.4909522639994623,2.250874059369649 -370,14.0,11.0,-3.0953961826564296,6.097275864326261 -370,14.0,13.0,-2.4909522639994623,2.250874059369649 -370,14.0,14.0,9.365498545964757,-16.01163373210796 -370,14.0,17.0,-1.8108011504072024,3.687418931630696 -370,14.0,22.0,-1.9683489489016612,3.976064876781356 -370,15.0,11.0,-1.9519977922801688,4.104359379111847 -370,15.0,15.0,3.271064728633931,-8.94513365126506 -370,15.0,16.0,-1.3190669363537617,4.8407742721532125 -370,16.0,9.0,-3.956039125715353,10.317447719844054 -370,16.0,15.0,-1.3190669363537617,4.8407742721532125 -370,16.0,16.0,5.275106062069114,-15.158221991997266 -370,17.0,14.0,-1.8108011504072024,3.687418931630696 -370,17.0,17.0,4.886487584415919,-9.906177730909668 -370,17.0,18.0,-3.0756864340087167,6.218758799278971 -370,18.0,17.0,-3.0756864340087167,6.218758799278971 -370,18.0,18.0,8.958039375185187,-17.98346468163191 -370,18.0,19.0,-5.88235294117647,11.76470588235294 -370,19.0,18.0,-5.88235294117647,11.76470588235294 -370,19.0,19.0,5.88235294117647,-11.76470588235294 -370,20.0,9.0,-5.101853820159654,10.98071411292983 -370,20.0,20.0,21.876495189895888,-45.10843276170355 -370,20.0,21.0,-16.774641369736234,34.127718648773715 -370,21.0,9.0,-2.619319553382597,5.400770303329455 -370,21.0,20.0,-16.774641369736234,34.127718648773715 -370,21.0,21.0,21.93449907537439,-43.48289181517921 -370,21.0,23.0,-2.5405381522555563,3.95440286307604 -370,22.0,14.0,-1.9683489489016612,3.976064876781356 -370,22.0,22.0,3.429754555384988,-6.965303617315433 -370,22.0,23.0,-1.4614056064833263,2.989238740534077 -370,23.0,21.0,-2.5405381522555563,3.95440286307604 -370,23.0,22.0,-1.4614056064833263,2.989238740534077 -370,23.0,23.0,5.311836702613133,-9.188263657315172 -370,23.0,24.0,-1.3098929438742493,2.287622053705056 -370,24.0,23.0,-1.3098929438742493,2.287622053705056 -370,24.0,24.0,4.495715080321987,-7.864978761969621 -370,24.0,25.0,-1.2165301194494855,1.8171440463475024 -370,24.0,26.0,-1.9692920169982515,3.760212661917064 -370,25.0,24.0,-1.2165301194494855,1.8171440463475024 -370,25.0,25.0,1.2165301194494855,-1.8171440463475024 -370,26.0,24.0,-1.9692920169982515,3.760212661917064 -370,26.0,26.0,3.652281470778589,-9.46044252232512 -370,26.0,27.0,0.0,2.608731947574922 -370,26.0,28.0,-0.99553355095268,1.881005840357816 -370,26.0,29.0,-0.6874559028276572,1.293971494797717 -370,27.0,5.0,-4.362844058012917,15.463571542897856 -370,27.0,7.0,-1.4439790613954469,4.540814658476248 -370,27.0,26.0,0.0,2.608731947574922 -370,27.0,27.0,5.806823119408364,-22.67145722159613 -370,28.0,26.0,-0.99553355095268,1.881005840357816 -370,28.0,28.0,1.9075867579849564,-3.604364401207048 -370,28.0,29.0,-0.9120532070322764,1.7233585608492326 -370,29.0,26.0,-0.6874559028276572,1.293971494797717 -370,29.0,28.0,-0.9120532070322764,1.7233585608492326 -370,29.0,29.0,1.5995091098599337,-3.0173300556469496 -371,0.0,0.0,6.765516048652632,-21.23160167089863 -371,0.0,1.0,-5.224646179885656,15.646726840803398 -371,0.0,2.0,-1.5408698687669766,5.631674830095234 -371,1.0,0.0,-5.224646179885656,15.646726840803398 -371,1.0,1.0,8.61632137735015,-25.897083564394716 -371,1.0,3.0,-1.7055303166990268,5.1973792282565086 -371,1.0,5.0,-1.6861448807654689,5.116477495334806 -371,2.0,0.0,-1.5408698687669766,5.631674830095234 -371,2.0,2.0,9.736318911079088,-29.13794745915803 -371,2.0,3.0,-8.19544904231211,23.5308726290628 -371,3.0,1.0,-1.7055303166990268,5.1973792282565086 -371,3.0,2.0,-8.19544904231211,23.5308726290628 -371,3.0,3.0,16.314103089185693,-55.509410535254254 -371,3.0,5.0,-6.413123730174556,22.31120356548123 -371,3.0,11.0,0.0,4.191255364806866 -371,4.0,4.0,2.954020035961983,-7.439067916773697 -371,4.0,6.0,-2.954020035961983,7.449267916773697 -371,5.0,1.0,-1.6861448807654689,5.116477495334806 -371,5.0,3.0,-6.413123730174556,22.31120356548123 -371,5.0,5.0,22.341631269034565,-82.8291478657789 -371,5.0,6.0,-3.590210423980992,11.02611441072814 -371,5.0,7.0,-6.289308176100628,22.0125786163522 -371,5.0,8.0,0.0,4.915840805411357 -371,5.0,9.0,0.0,1.8561002591115965 -371,5.0,27.0,-4.362844058012917,15.463571542897856 -371,6.0,4.0,-2.954020035961983,7.449267916773697 -371,6.0,5.0,-3.590210423980992,11.02611441072814 -371,6.0,6.0,6.544230459942975,-18.45668232750184 -371,7.0,5.0,-6.289308176100628,22.0125786163522 -371,7.0,7.0,7.733287237496075,-26.527493274828448 -371,7.0,27.0,-1.4439790613954469,4.540814658476248 -371,8.0,5.0,0.0,4.915840805411357 -371,8.0,8.0,0.0,-18.706293706293707 -371,8.0,9.0,0.0,9.090909090909092 -371,8.0,10.0,0.0,4.807692307692308 -371,9.0,5.0,0.0,1.8561002591115965 -371,9.0,8.0,0.0,9.090909090909092 -371,9.0,9.0,13.462042814524237,-41.3837606675224 -371,9.0,16.0,-3.956039125715353,10.317447719844054 -371,9.0,19.0,-1.7848303152666305,3.98535828943083 -371,9.0,20.0,-5.101853820159654,10.98071411292983 -371,9.0,21.0,-2.619319553382597,5.400770303329455 -371,10.0,8.0,0.0,4.807692307692308 -371,10.0,10.0,0.0,-4.807692307692308 -371,11.0,3.0,0.0,4.191255364806866 -371,11.0,11.0,4.621963791495987,-20.31980828014882 -371,11.0,12.0,0.0,7.142857142857143 -371,11.0,13.0,-1.5265676088395577,3.1734252729654173 -371,11.0,14.0,-3.0953961826564296,6.097275864326261 -371,12.0,11.0,0.0,7.142857142857143 -371,12.0,12.0,0.0,-7.142857142857143 -371,13.0,11.0,-1.5265676088395577,3.1734252729654173 -371,13.0,13.0,4.01751987283902,-5.424299332335067 -371,13.0,14.0,-2.4909522639994623,2.250874059369649 -371,14.0,11.0,-3.0953961826564296,6.097275864326261 -371,14.0,13.0,-2.4909522639994623,2.250874059369649 -371,14.0,14.0,9.365498545964757,-16.01163373210796 -371,14.0,17.0,-1.8108011504072024,3.687418931630696 -371,14.0,22.0,-1.9683489489016612,3.976064876781356 -371,15.0,15.0,1.3190669363537617,-4.8407742721532125 -371,15.0,16.0,-1.3190669363537617,4.8407742721532125 -371,16.0,9.0,-3.956039125715353,10.317447719844054 -371,16.0,15.0,-1.3190669363537617,4.8407742721532125 -371,16.0,16.0,5.275106062069114,-15.158221991997266 -371,17.0,14.0,-1.8108011504072024,3.687418931630696 -371,17.0,17.0,4.886487584415919,-9.906177730909668 -371,17.0,18.0,-3.0756864340087167,6.218758799278971 -371,18.0,17.0,-3.0756864340087167,6.218758799278971 -371,18.0,18.0,8.958039375185187,-17.98346468163191 -371,18.0,19.0,-5.88235294117647,11.76470588235294 -371,19.0,9.0,-1.7848303152666305,3.98535828943083 -371,19.0,18.0,-5.88235294117647,11.76470588235294 -371,19.0,19.0,7.6671832564431,-15.75006417178377 -371,20.0,9.0,-5.101853820159654,10.98071411292983 -371,20.0,20.0,21.876495189895888,-45.10843276170355 -371,20.0,21.0,-16.774641369736234,34.127718648773715 -371,21.0,9.0,-2.619319553382597,5.400770303329455 -371,21.0,20.0,-16.774641369736234,34.127718648773715 -371,21.0,21.0,21.93449907537439,-43.48289181517921 -371,21.0,23.0,-2.5405381522555563,3.95440286307604 -371,22.0,14.0,-1.9683489489016612,3.976064876781356 -371,22.0,22.0,3.429754555384988,-6.965303617315433 -371,22.0,23.0,-1.4614056064833263,2.989238740534077 -371,23.0,21.0,-2.5405381522555563,3.95440286307604 -371,23.0,22.0,-1.4614056064833263,2.989238740534077 -371,23.0,23.0,5.311836702613133,-9.188263657315172 -371,23.0,24.0,-1.3098929438742493,2.287622053705056 -371,24.0,23.0,-1.3098929438742493,2.287622053705056 -371,24.0,24.0,4.495715080321987,-7.864978761969621 -371,24.0,25.0,-1.2165301194494855,1.8171440463475024 -371,24.0,26.0,-1.9692920169982515,3.760212661917064 -371,25.0,24.0,-1.2165301194494855,1.8171440463475024 -371,25.0,25.0,1.2165301194494855,-1.8171440463475024 -371,26.0,24.0,-1.9692920169982515,3.760212661917064 -371,26.0,26.0,3.652281470778589,-9.46044252232512 -371,26.0,27.0,0.0,2.608731947574922 -371,26.0,28.0,-0.99553355095268,1.881005840357816 -371,26.0,29.0,-0.6874559028276572,1.293971494797717 -371,27.0,5.0,-4.362844058012917,15.463571542897856 -371,27.0,7.0,-1.4439790613954469,4.540814658476248 -371,27.0,26.0,0.0,2.608731947574922 -371,27.0,27.0,5.806823119408364,-22.67145722159613 -371,28.0,26.0,-0.99553355095268,1.881005840357816 -371,28.0,28.0,1.9075867579849564,-3.604364401207048 -371,28.0,29.0,-0.9120532070322764,1.7233585608492326 -371,29.0,26.0,-0.6874559028276572,1.293971494797717 -371,29.0,28.0,-0.9120532070322764,1.7233585608492326 -371,29.0,29.0,1.5995091098599337,-3.0173300556469496 -372,0.0,0.0,6.765516048652632,-21.23160167089863 -372,0.0,1.0,-5.224646179885656,15.646726840803398 -372,0.0,2.0,-1.5408698687669766,5.631674830095234 -372,1.0,0.0,-5.224646179885656,15.646726840803398 -372,1.0,1.0,8.046751848825002,-25.46968366441956 -372,1.0,4.0,-1.1359607881738778,4.772479328281356 -372,1.0,5.0,-1.6861448807654689,5.116477495334806 -372,2.0,0.0,-1.5408698687669766,5.631674830095234 -372,2.0,2.0,9.736318911079088,-29.13794745915803 -372,2.0,3.0,-8.19544904231211,23.5308726290628 -372,3.0,2.0,-8.19544904231211,23.5308726290628 -372,3.0,3.0,14.608572772486664,-50.33043130699775 -372,3.0,5.0,-6.413123730174556,22.31120356548123 -372,3.0,11.0,0.0,4.191255364806866 -372,4.0,1.0,-1.1359607881738778,4.772479328281356 -372,4.0,4.0,4.089980824135861,-12.190647245055052 -372,4.0,6.0,-2.954020035961983,7.449267916773697 -372,5.0,1.0,-1.6861448807654689,5.116477495334806 -372,5.0,3.0,-6.413123730174556,22.31120356548123 -372,5.0,5.0,22.341631269034565,-82.8291478657789 -372,5.0,6.0,-3.590210423980992,11.02611441072814 -372,5.0,7.0,-6.289308176100628,22.0125786163522 -372,5.0,8.0,0.0,4.915840805411357 -372,5.0,9.0,0.0,1.8561002591115965 -372,5.0,27.0,-4.362844058012917,15.463571542897856 -372,6.0,4.0,-2.954020035961983,7.449267916773697 -372,6.0,5.0,-3.590210423980992,11.02611441072814 -372,6.0,6.0,6.544230459942975,-18.45668232750184 -372,7.0,5.0,-6.289308176100628,22.0125786163522 -372,7.0,7.0,7.733287237496075,-26.527493274828448 -372,7.0,27.0,-1.4439790613954469,4.540814658476248 -372,8.0,5.0,0.0,4.915840805411357 -372,8.0,8.0,0.0,-18.706293706293707 -372,8.0,9.0,0.0,9.090909090909092 -372,8.0,10.0,0.0,4.807692307692308 -372,9.0,5.0,0.0,1.8561002591115965 -372,9.0,8.0,0.0,9.090909090909092 -372,9.0,9.0,13.462042814524237,-41.3837606675224 -372,9.0,16.0,-3.956039125715353,10.317447719844054 -372,9.0,19.0,-1.7848303152666305,3.98535828943083 -372,9.0,20.0,-5.101853820159654,10.98071411292983 -372,9.0,21.0,-2.619319553382597,5.400770303329455 -372,10.0,8.0,0.0,4.807692307692308 -372,10.0,10.0,0.0,-4.807692307692308 -372,11.0,3.0,0.0,4.191255364806866 -372,11.0,11.0,6.573961583776156,-24.424167659260668 -372,11.0,12.0,0.0,7.142857142857143 -372,11.0,13.0,-1.5265676088395577,3.1734252729654173 -372,11.0,14.0,-3.0953961826564296,6.097275864326261 -372,11.0,15.0,-1.9519977922801688,4.104359379111847 -372,12.0,11.0,0.0,7.142857142857143 -372,12.0,12.0,0.0,-7.142857142857143 -372,13.0,11.0,-1.5265676088395577,3.1734252729654173 -372,13.0,13.0,4.01751987283902,-5.424299332335067 -372,13.0,14.0,-2.4909522639994623,2.250874059369649 -372,14.0,11.0,-3.0953961826564296,6.097275864326261 -372,14.0,13.0,-2.4909522639994623,2.250874059369649 -372,14.0,14.0,9.365498545964757,-16.01163373210796 -372,14.0,17.0,-1.8108011504072024,3.687418931630696 -372,14.0,22.0,-1.9683489489016612,3.976064876781356 -372,15.0,11.0,-1.9519977922801688,4.104359379111847 -372,15.0,15.0,3.271064728633931,-8.94513365126506 -372,15.0,16.0,-1.3190669363537617,4.8407742721532125 -372,16.0,9.0,-3.956039125715353,10.317447719844054 -372,16.0,15.0,-1.3190669363537617,4.8407742721532125 -372,16.0,16.0,5.275106062069114,-15.158221991997266 -372,17.0,14.0,-1.8108011504072024,3.687418931630696 -372,17.0,17.0,4.886487584415919,-9.906177730909668 -372,17.0,18.0,-3.0756864340087167,6.218758799278971 -372,18.0,17.0,-3.0756864340087167,6.218758799278971 -372,18.0,18.0,3.0756864340087167,-6.218758799278971 -372,19.0,9.0,-1.7848303152666305,3.98535828943083 -372,19.0,19.0,1.7848303152666305,-3.98535828943083 -372,20.0,9.0,-5.101853820159654,10.98071411292983 -372,20.0,20.0,21.876495189895888,-45.10843276170355 -372,20.0,21.0,-16.774641369736234,34.127718648773715 -372,21.0,9.0,-2.619319553382597,5.400770303329455 -372,21.0,20.0,-16.774641369736234,34.127718648773715 -372,21.0,21.0,21.93449907537439,-43.48289181517921 -372,21.0,23.0,-2.5405381522555563,3.95440286307604 -372,22.0,14.0,-1.9683489489016612,3.976064876781356 -372,22.0,22.0,3.429754555384988,-6.965303617315433 -372,22.0,23.0,-1.4614056064833263,2.989238740534077 -372,23.0,21.0,-2.5405381522555563,3.95440286307604 -372,23.0,22.0,-1.4614056064833263,2.989238740534077 -372,23.0,23.0,5.311836702613133,-9.188263657315172 -372,23.0,24.0,-1.3098929438742493,2.287622053705056 -372,24.0,23.0,-1.3098929438742493,2.287622053705056 -372,24.0,24.0,4.495715080321987,-7.864978761969621 -372,24.0,25.0,-1.2165301194494855,1.8171440463475024 -372,24.0,26.0,-1.9692920169982515,3.760212661917064 -372,25.0,24.0,-1.2165301194494855,1.8171440463475024 -372,25.0,25.0,1.2165301194494855,-1.8171440463475024 -372,26.0,24.0,-1.9692920169982515,3.760212661917064 -372,26.0,26.0,3.652281470778589,-9.46044252232512 -372,26.0,27.0,0.0,2.608731947574922 -372,26.0,28.0,-0.99553355095268,1.881005840357816 -372,26.0,29.0,-0.6874559028276572,1.293971494797717 -372,27.0,5.0,-4.362844058012917,15.463571542897856 -372,27.0,7.0,-1.4439790613954469,4.540814658476248 -372,27.0,26.0,0.0,2.608731947574922 -372,27.0,27.0,5.806823119408364,-22.67145722159613 -372,28.0,26.0,-0.99553355095268,1.881005840357816 -372,28.0,28.0,1.9075867579849564,-3.604364401207048 -372,28.0,29.0,-0.9120532070322764,1.7233585608492326 -372,29.0,26.0,-0.6874559028276572,1.293971494797717 -372,29.0,28.0,-0.9120532070322764,1.7233585608492326 -372,29.0,29.0,1.5995091098599337,-3.0173300556469496 -373,0.0,0.0,6.765516048652632,-21.23160167089863 -373,0.0,1.0,-5.224646179885656,15.646726840803398 -373,0.0,2.0,-1.5408698687669766,5.631674830095234 -373,1.0,0.0,-5.224646179885656,15.646726840803398 -373,1.0,1.0,9.75228216552403,-30.648662892676068 -373,1.0,3.0,-1.7055303166990268,5.1973792282565086 -373,1.0,4.0,-1.1359607881738778,4.772479328281356 -373,1.0,5.0,-1.6861448807654689,5.116477495334806 -373,2.0,0.0,-1.5408698687669766,5.631674830095234 -373,2.0,2.0,9.736318911079088,-29.13794745915803 -373,2.0,3.0,-8.19544904231211,23.5308726290628 -373,3.0,1.0,-1.7055303166990268,5.1973792282565086 -373,3.0,2.0,-8.19544904231211,23.5308726290628 -373,3.0,3.0,16.314103089185693,-55.509410535254254 -373,3.0,5.0,-6.413123730174556,22.31120356548123 -373,3.0,11.0,0.0,4.191255364806866 -373,4.0,1.0,-1.1359607881738778,4.772479328281356 -373,4.0,4.0,4.089980824135861,-12.190647245055052 -373,4.0,6.0,-2.954020035961983,7.449267916773697 -373,5.0,1.0,-1.6861448807654689,5.116477495334806 -373,5.0,3.0,-6.413123730174556,22.31120356548123 -373,5.0,5.0,22.341631269034565,-82.8291478657789 -373,5.0,6.0,-3.590210423980992,11.02611441072814 -373,5.0,7.0,-6.289308176100628,22.0125786163522 -373,5.0,8.0,0.0,4.915840805411357 -373,5.0,9.0,0.0,1.8561002591115965 -373,5.0,27.0,-4.362844058012917,15.463571542897856 -373,6.0,4.0,-2.954020035961983,7.449267916773697 -373,6.0,5.0,-3.590210423980992,11.02611441072814 -373,6.0,6.0,6.544230459942975,-18.45668232750184 -373,7.0,5.0,-6.289308176100628,22.0125786163522 -373,7.0,7.0,7.733287237496075,-26.527493274828448 -373,7.0,27.0,-1.4439790613954469,4.540814658476248 -373,8.0,5.0,0.0,4.915840805411357 -373,8.0,8.0,0.0,-18.706293706293707 -373,8.0,9.0,0.0,9.090909090909092 -373,8.0,10.0,0.0,4.807692307692308 -373,9.0,5.0,0.0,1.8561002591115965 -373,9.0,8.0,0.0,9.090909090909092 -373,9.0,9.0,13.462042814524237,-41.3837606675224 -373,9.0,16.0,-3.956039125715353,10.317447719844054 -373,9.0,19.0,-1.7848303152666305,3.98535828943083 -373,9.0,20.0,-5.101853820159654,10.98071411292983 -373,9.0,21.0,-2.619319553382597,5.400770303329455 -373,10.0,8.0,0.0,4.807692307692308 -373,10.0,10.0,0.0,-4.807692307692308 -373,11.0,3.0,0.0,4.191255364806866 -373,11.0,11.0,6.573961583776156,-24.424167659260668 -373,11.0,12.0,0.0,7.142857142857143 -373,11.0,13.0,-1.5265676088395577,3.1734252729654173 -373,11.0,14.0,-3.0953961826564296,6.097275864326261 -373,11.0,15.0,-1.9519977922801688,4.104359379111847 -373,12.0,11.0,0.0,7.142857142857143 -373,12.0,12.0,0.0,-7.142857142857143 -373,13.0,11.0,-1.5265676088395577,3.1734252729654173 -373,13.0,13.0,4.01751987283902,-5.424299332335067 -373,13.0,14.0,-2.4909522639994623,2.250874059369649 -373,14.0,11.0,-3.0953961826564296,6.097275864326261 -373,14.0,13.0,-2.4909522639994623,2.250874059369649 -373,14.0,14.0,9.365498545964757,-16.01163373210796 -373,14.0,17.0,-1.8108011504072024,3.687418931630696 -373,14.0,22.0,-1.9683489489016612,3.976064876781356 -373,15.0,11.0,-1.9519977922801688,4.104359379111847 -373,15.0,15.0,3.271064728633931,-8.94513365126506 -373,15.0,16.0,-1.3190669363537617,4.8407742721532125 -373,16.0,9.0,-3.956039125715353,10.317447719844054 -373,16.0,15.0,-1.3190669363537617,4.8407742721532125 -373,16.0,16.0,5.275106062069114,-15.158221991997266 -373,17.0,14.0,-1.8108011504072024,3.687418931630696 -373,17.0,17.0,4.886487584415919,-9.906177730909668 -373,17.0,18.0,-3.0756864340087167,6.218758799278971 -373,18.0,17.0,-3.0756864340087167,6.218758799278971 -373,18.0,18.0,8.958039375185187,-17.98346468163191 -373,18.0,19.0,-5.88235294117647,11.76470588235294 -373,19.0,9.0,-1.7848303152666305,3.98535828943083 -373,19.0,18.0,-5.88235294117647,11.76470588235294 -373,19.0,19.0,7.6671832564431,-15.75006417178377 -373,20.0,9.0,-5.101853820159654,10.98071411292983 -373,20.0,20.0,21.876495189895888,-45.10843276170355 -373,20.0,21.0,-16.774641369736234,34.127718648773715 -373,21.0,9.0,-2.619319553382597,5.400770303329455 -373,21.0,20.0,-16.774641369736234,34.127718648773715 -373,21.0,21.0,21.93449907537439,-43.48289181517921 -373,21.0,23.0,-2.5405381522555563,3.95440286307604 -373,22.0,14.0,-1.9683489489016612,3.976064876781356 -373,22.0,22.0,3.429754555384988,-6.965303617315433 -373,22.0,23.0,-1.4614056064833263,2.989238740534077 -373,23.0,21.0,-2.5405381522555563,3.95440286307604 -373,23.0,22.0,-1.4614056064833263,2.989238740534077 -373,23.0,23.0,5.311836702613133,-9.188263657315172 -373,23.0,24.0,-1.3098929438742493,2.287622053705056 -373,24.0,23.0,-1.3098929438742493,2.287622053705056 -373,24.0,24.0,4.495715080321987,-7.864978761969621 -373,24.0,25.0,-1.2165301194494855,1.8171440463475024 -373,24.0,26.0,-1.9692920169982515,3.760212661917064 -373,25.0,24.0,-1.2165301194494855,1.8171440463475024 -373,25.0,25.0,1.2165301194494855,-1.8171440463475024 -373,26.0,24.0,-1.9692920169982515,3.760212661917064 -373,26.0,26.0,3.652281470778589,-9.46044252232512 -373,26.0,27.0,0.0,2.608731947574922 -373,26.0,28.0,-0.99553355095268,1.881005840357816 -373,26.0,29.0,-0.6874559028276572,1.293971494797717 -373,27.0,5.0,-4.362844058012917,15.463571542897856 -373,27.0,7.0,-1.4439790613954469,4.540814658476248 -373,27.0,26.0,0.0,2.608731947574922 -373,27.0,27.0,5.806823119408364,-22.67145722159613 -373,28.0,26.0,-0.99553355095268,1.881005840357816 -373,28.0,28.0,1.9075867579849564,-3.604364401207048 -373,28.0,29.0,-0.9120532070322764,1.7233585608492326 -373,29.0,26.0,-0.6874559028276572,1.293971494797717 -373,29.0,28.0,-0.9120532070322764,1.7233585608492326 -373,29.0,29.0,1.5995091098599337,-3.0173300556469496 -374,0.0,0.0,6.765516048652632,-21.23160167089863 -374,0.0,1.0,-5.224646179885656,15.646726840803398 -374,0.0,2.0,-1.5408698687669766,5.631674830095234 -374,1.0,0.0,-5.224646179885656,15.646726840803398 -374,1.0,1.0,8.61632137735015,-25.897083564394716 -374,1.0,3.0,-1.7055303166990268,5.1973792282565086 -374,1.0,5.0,-1.6861448807654689,5.116477495334806 -374,2.0,0.0,-1.5408698687669766,5.631674830095234 -374,2.0,2.0,9.736318911079088,-29.13794745915803 -374,2.0,3.0,-8.19544904231211,23.5308726290628 -374,3.0,1.0,-1.7055303166990268,5.1973792282565086 -374,3.0,2.0,-8.19544904231211,23.5308726290628 -374,3.0,3.0,16.314103089185693,-55.509410535254254 -374,3.0,5.0,-6.413123730174556,22.31120356548123 -374,3.0,11.0,0.0,4.191255364806866 -374,4.0,4.0,2.954020035961983,-7.439067916773697 -374,4.0,6.0,-2.954020035961983,7.449267916773697 -374,5.0,1.0,-1.6861448807654689,5.116477495334806 -374,5.0,3.0,-6.413123730174556,22.31120356548123 -374,5.0,5.0,22.341631269034565,-82.8291478657789 -374,5.0,6.0,-3.590210423980992,11.02611441072814 -374,5.0,7.0,-6.289308176100628,22.0125786163522 -374,5.0,8.0,0.0,4.915840805411357 -374,5.0,9.0,0.0,1.8561002591115965 -374,5.0,27.0,-4.362844058012917,15.463571542897856 -374,6.0,4.0,-2.954020035961983,7.449267916773697 -374,6.0,5.0,-3.590210423980992,11.02611441072814 -374,6.0,6.0,6.544230459942975,-18.45668232750184 -374,7.0,5.0,-6.289308176100628,22.0125786163522 -374,7.0,7.0,7.733287237496075,-26.527493274828448 -374,7.0,27.0,-1.4439790613954469,4.540814658476248 -374,8.0,5.0,0.0,4.915840805411357 -374,8.0,8.0,0.0,-18.706293706293707 -374,8.0,9.0,0.0,9.090909090909092 -374,8.0,10.0,0.0,4.807692307692308 -374,9.0,5.0,0.0,1.8561002591115965 -374,9.0,8.0,0.0,9.090909090909092 -374,9.0,9.0,8.36018899436458,-30.40304655459257 -374,9.0,16.0,-3.956039125715353,10.317447719844054 -374,9.0,19.0,-1.7848303152666305,3.98535828943083 -374,9.0,21.0,-2.619319553382597,5.400770303329455 -374,10.0,8.0,0.0,4.807692307692308 -374,10.0,10.0,0.0,-4.807692307692308 -374,11.0,3.0,0.0,4.191255364806866 -374,11.0,11.0,6.573961583776156,-24.424167659260668 -374,11.0,12.0,0.0,7.142857142857143 -374,11.0,13.0,-1.5265676088395577,3.1734252729654173 -374,11.0,14.0,-3.0953961826564296,6.097275864326261 -374,11.0,15.0,-1.9519977922801688,4.104359379111847 -374,12.0,11.0,0.0,7.142857142857143 -374,12.0,12.0,0.0,-7.142857142857143 -374,13.0,11.0,-1.5265676088395577,3.1734252729654173 -374,13.0,13.0,4.01751987283902,-5.424299332335067 -374,13.0,14.0,-2.4909522639994623,2.250874059369649 -374,14.0,11.0,-3.0953961826564296,6.097275864326261 -374,14.0,13.0,-2.4909522639994623,2.250874059369649 -374,14.0,14.0,9.365498545964757,-16.01163373210796 -374,14.0,17.0,-1.8108011504072024,3.687418931630696 -374,14.0,22.0,-1.9683489489016612,3.976064876781356 -374,15.0,11.0,-1.9519977922801688,4.104359379111847 -374,15.0,15.0,3.271064728633931,-8.94513365126506 -374,15.0,16.0,-1.3190669363537617,4.8407742721532125 -374,16.0,9.0,-3.956039125715353,10.317447719844054 -374,16.0,15.0,-1.3190669363537617,4.8407742721532125 -374,16.0,16.0,5.275106062069114,-15.158221991997266 -374,17.0,14.0,-1.8108011504072024,3.687418931630696 -374,17.0,17.0,4.886487584415919,-9.906177730909668 -374,17.0,18.0,-3.0756864340087167,6.218758799278971 -374,18.0,17.0,-3.0756864340087167,6.218758799278971 -374,18.0,18.0,8.958039375185187,-17.98346468163191 -374,18.0,19.0,-5.88235294117647,11.76470588235294 -374,19.0,9.0,-1.7848303152666305,3.98535828943083 -374,19.0,18.0,-5.88235294117647,11.76470588235294 -374,19.0,19.0,7.6671832564431,-15.75006417178377 -374,20.0,20.0,16.774641369736234,-34.127718648773715 -374,20.0,21.0,-16.774641369736234,34.127718648773715 -374,21.0,9.0,-2.619319553382597,5.400770303329455 -374,21.0,20.0,-16.774641369736234,34.127718648773715 -374,21.0,21.0,21.93449907537439,-43.48289181517921 -374,21.0,23.0,-2.5405381522555563,3.95440286307604 -374,22.0,14.0,-1.9683489489016612,3.976064876781356 -374,22.0,22.0,3.429754555384988,-6.965303617315433 -374,22.0,23.0,-1.4614056064833263,2.989238740534077 -374,23.0,21.0,-2.5405381522555563,3.95440286307604 -374,23.0,22.0,-1.4614056064833263,2.989238740534077 -374,23.0,23.0,5.311836702613133,-9.188263657315172 -374,23.0,24.0,-1.3098929438742493,2.287622053705056 -374,24.0,23.0,-1.3098929438742493,2.287622053705056 -374,24.0,24.0,4.495715080321987,-7.864978761969621 -374,24.0,25.0,-1.2165301194494855,1.8171440463475024 -374,24.0,26.0,-1.9692920169982515,3.760212661917064 -374,25.0,24.0,-1.2165301194494855,1.8171440463475024 -374,25.0,25.0,1.2165301194494855,-1.8171440463475024 -374,26.0,24.0,-1.9692920169982515,3.760212661917064 -374,26.0,26.0,3.652281470778589,-9.46044252232512 -374,26.0,27.0,0.0,2.608731947574922 -374,26.0,28.0,-0.99553355095268,1.881005840357816 -374,26.0,29.0,-0.6874559028276572,1.293971494797717 -374,27.0,5.0,-4.362844058012917,15.463571542897856 -374,27.0,7.0,-1.4439790613954469,4.540814658476248 -374,27.0,26.0,0.0,2.608731947574922 -374,27.0,27.0,5.806823119408364,-22.67145722159613 -374,28.0,26.0,-0.99553355095268,1.881005840357816 -374,28.0,28.0,0.99553355095268,-1.881005840357816 -374,29.0,26.0,-0.6874559028276572,1.293971494797717 -374,29.0,29.0,0.6874559028276572,-1.293971494797717 -375,0.0,0.0,1.5408698687669766,-5.611274830095233 -375,0.0,2.0,-1.5408698687669766,5.631674830095234 -375,1.0,1.0,3.391675197464496,-10.276756723591316 -375,1.0,3.0,-1.7055303166990268,5.1973792282565086 -375,1.0,5.0,-1.6861448807654689,5.116477495334806 -375,2.0,0.0,-1.5408698687669766,5.631674830095234 -375,2.0,2.0,9.736318911079088,-29.13794745915803 -375,2.0,3.0,-8.19544904231211,23.5308726290628 -375,3.0,1.0,-1.7055303166990268,5.1973792282565086 -375,3.0,2.0,-8.19544904231211,23.5308726290628 -375,3.0,3.0,16.314103089185693,-55.509410535254254 -375,3.0,5.0,-6.413123730174556,22.31120356548123 -375,3.0,11.0,0.0,4.191255364806866 -375,4.0,4.0,2.954020035961983,-7.439067916773697 -375,4.0,6.0,-2.954020035961983,7.449267916773697 -375,5.0,1.0,-1.6861448807654689,5.116477495334806 -375,5.0,3.0,-6.413123730174556,22.31120356548123 -375,5.0,5.0,22.341631269034565,-82.8291478657789 -375,5.0,6.0,-3.590210423980992,11.02611441072814 -375,5.0,7.0,-6.289308176100628,22.0125786163522 -375,5.0,8.0,0.0,4.915840805411357 -375,5.0,9.0,0.0,1.8561002591115965 -375,5.0,27.0,-4.362844058012917,15.463571542897856 -375,6.0,4.0,-2.954020035961983,7.449267916773697 -375,6.0,5.0,-3.590210423980992,11.02611441072814 -375,6.0,6.0,6.544230459942975,-18.45668232750184 -375,7.0,5.0,-6.289308176100628,22.0125786163522 -375,7.0,7.0,7.733287237496075,-26.527493274828448 -375,7.0,27.0,-1.4439790613954469,4.540814658476248 -375,8.0,5.0,0.0,4.915840805411357 -375,8.0,8.0,0.0,-18.706293706293707 -375,8.0,9.0,0.0,9.090909090909092 -375,8.0,10.0,0.0,4.807692307692308 -375,9.0,5.0,0.0,1.8561002591115965 -375,9.0,8.0,0.0,9.090909090909092 -375,9.0,9.0,13.462042814524237,-41.3837606675224 -375,9.0,16.0,-3.956039125715353,10.317447719844054 -375,9.0,19.0,-1.7848303152666305,3.98535828943083 -375,9.0,20.0,-5.101853820159654,10.98071411292983 -375,9.0,21.0,-2.619319553382597,5.400770303329455 -375,10.0,8.0,0.0,4.807692307692308 -375,10.0,10.0,0.0,-4.807692307692308 -375,11.0,3.0,0.0,4.191255364806866 -375,11.0,11.0,6.573961583776156,-24.424167659260668 -375,11.0,12.0,0.0,7.142857142857143 -375,11.0,13.0,-1.5265676088395577,3.1734252729654173 -375,11.0,14.0,-3.0953961826564296,6.097275864326261 -375,11.0,15.0,-1.9519977922801688,4.104359379111847 -375,12.0,11.0,0.0,7.142857142857143 -375,12.0,12.0,0.0,-7.142857142857143 -375,13.0,11.0,-1.5265676088395577,3.1734252729654173 -375,13.0,13.0,4.01751987283902,-5.424299332335067 -375,13.0,14.0,-2.4909522639994623,2.250874059369649 -375,14.0,11.0,-3.0953961826564296,6.097275864326261 -375,14.0,13.0,-2.4909522639994623,2.250874059369649 -375,14.0,14.0,9.365498545964757,-16.01163373210796 -375,14.0,17.0,-1.8108011504072024,3.687418931630696 -375,14.0,22.0,-1.9683489489016612,3.976064876781356 -375,15.0,11.0,-1.9519977922801688,4.104359379111847 -375,15.0,15.0,3.271064728633931,-8.94513365126506 -375,15.0,16.0,-1.3190669363537617,4.8407742721532125 -375,16.0,9.0,-3.956039125715353,10.317447719844054 -375,16.0,15.0,-1.3190669363537617,4.8407742721532125 -375,16.0,16.0,5.275106062069114,-15.158221991997266 -375,17.0,14.0,-1.8108011504072024,3.687418931630696 -375,17.0,17.0,4.886487584415919,-9.906177730909668 -375,17.0,18.0,-3.0756864340087167,6.218758799278971 -375,18.0,17.0,-3.0756864340087167,6.218758799278971 -375,18.0,18.0,8.958039375185187,-17.98346468163191 -375,18.0,19.0,-5.88235294117647,11.76470588235294 -375,19.0,9.0,-1.7848303152666305,3.98535828943083 -375,19.0,18.0,-5.88235294117647,11.76470588235294 -375,19.0,19.0,7.6671832564431,-15.75006417178377 -375,20.0,9.0,-5.101853820159654,10.98071411292983 -375,20.0,20.0,21.876495189895888,-45.10843276170355 -375,20.0,21.0,-16.774641369736234,34.127718648773715 -375,21.0,9.0,-2.619319553382597,5.400770303329455 -375,21.0,20.0,-16.774641369736234,34.127718648773715 -375,21.0,21.0,21.93449907537439,-43.48289181517921 -375,21.0,23.0,-2.5405381522555563,3.95440286307604 -375,22.0,14.0,-1.9683489489016612,3.976064876781356 -375,22.0,22.0,3.429754555384988,-6.965303617315433 -375,22.0,23.0,-1.4614056064833263,2.989238740534077 -375,23.0,21.0,-2.5405381522555563,3.95440286307604 -375,23.0,22.0,-1.4614056064833263,2.989238740534077 -375,23.0,23.0,5.311836702613133,-9.188263657315172 -375,23.0,24.0,-1.3098929438742493,2.287622053705056 -375,24.0,23.0,-1.3098929438742493,2.287622053705056 -375,24.0,24.0,4.495715080321987,-7.864978761969621 -375,24.0,25.0,-1.2165301194494855,1.8171440463475024 -375,24.0,26.0,-1.9692920169982515,3.760212661917064 -375,25.0,24.0,-1.2165301194494855,1.8171440463475024 -375,25.0,25.0,1.2165301194494855,-1.8171440463475024 -375,26.0,24.0,-1.9692920169982515,3.760212661917064 -375,26.0,26.0,3.652281470778589,-9.46044252232512 -375,26.0,27.0,0.0,2.608731947574922 -375,26.0,28.0,-0.99553355095268,1.881005840357816 -375,26.0,29.0,-0.6874559028276572,1.293971494797717 -375,27.0,5.0,-4.362844058012917,15.463571542897856 -375,27.0,7.0,-1.4439790613954469,4.540814658476248 -375,27.0,26.0,0.0,2.608731947574922 -375,27.0,27.0,5.806823119408364,-22.67145722159613 -375,28.0,26.0,-0.99553355095268,1.881005840357816 -375,28.0,28.0,1.9075867579849564,-3.604364401207048 -375,28.0,29.0,-0.9120532070322764,1.7233585608492326 -375,29.0,26.0,-0.6874559028276572,1.293971494797717 -375,29.0,28.0,-0.9120532070322764,1.7233585608492326 -375,29.0,29.0,1.5995091098599337,-3.0173300556469496 -376,0.0,0.0,6.765516048652632,-21.23160167089863 -376,0.0,1.0,-5.224646179885656,15.646726840803398 -376,0.0,2.0,-1.5408698687669766,5.631674830095234 -376,1.0,0.0,-5.224646179885656,15.646726840803398 -376,1.0,1.0,9.75228216552403,-30.648662892676068 -376,1.0,3.0,-1.7055303166990268,5.1973792282565086 -376,1.0,4.0,-1.1359607881738778,4.772479328281356 -376,1.0,5.0,-1.6861448807654689,5.116477495334806 -376,2.0,0.0,-1.5408698687669766,5.631674830095234 -376,2.0,2.0,9.736318911079088,-29.13794745915803 -376,2.0,3.0,-8.19544904231211,23.5308726290628 -376,3.0,1.0,-1.7055303166990268,5.1973792282565086 -376,3.0,2.0,-8.19544904231211,23.5308726290628 -376,3.0,3.0,9.900979359011137,-28.705651857319307 -376,4.0,1.0,-1.1359607881738778,4.772479328281356 -376,4.0,4.0,4.089980824135861,-12.190647245055052 -376,4.0,6.0,-2.954020035961983,7.449267916773697 -376,5.0,1.0,-1.6861448807654689,5.116477495334806 -376,5.0,5.0,15.928507538860009,-60.52244430029767 -376,5.0,6.0,-3.590210423980992,11.02611441072814 -376,5.0,7.0,-6.289308176100628,22.0125786163522 -376,5.0,8.0,0.0,4.915840805411357 -376,5.0,9.0,0.0,1.8561002591115965 -376,5.0,27.0,-4.362844058012917,15.463571542897856 -376,6.0,4.0,-2.954020035961983,7.449267916773697 -376,6.0,5.0,-3.590210423980992,11.02611441072814 -376,6.0,6.0,6.544230459942975,-18.45668232750184 -376,7.0,5.0,-6.289308176100628,22.0125786163522 -376,7.0,7.0,6.289308176100628,-22.0080786163522 -376,8.0,5.0,0.0,4.915840805411357 -376,8.0,8.0,0.0,-18.706293706293707 -376,8.0,9.0,0.0,9.090909090909092 -376,8.0,10.0,0.0,4.807692307692308 -376,9.0,5.0,0.0,1.8561002591115965 -376,9.0,8.0,0.0,9.090909090909092 -376,9.0,9.0,13.462042814524237,-41.3837606675224 -376,9.0,16.0,-3.956039125715353,10.317447719844054 -376,9.0,19.0,-1.7848303152666305,3.98535828943083 -376,9.0,20.0,-5.101853820159654,10.98071411292983 -376,9.0,21.0,-2.619319553382597,5.400770303329455 -376,10.0,8.0,0.0,4.807692307692308 -376,10.0,10.0,0.0,-4.807692307692308 -376,11.0,11.0,6.573961583776156,-20.517917659260668 -376,11.0,12.0,0.0,7.142857142857143 -376,11.0,13.0,-1.5265676088395577,3.1734252729654173 -376,11.0,14.0,-3.0953961826564296,6.097275864326261 -376,11.0,15.0,-1.9519977922801688,4.104359379111847 -376,12.0,11.0,0.0,7.142857142857143 -376,12.0,12.0,0.0,-7.142857142857143 -376,13.0,11.0,-1.5265676088395577,3.1734252729654173 -376,13.0,13.0,4.01751987283902,-5.424299332335067 -376,13.0,14.0,-2.4909522639994623,2.250874059369649 -376,14.0,11.0,-3.0953961826564296,6.097275864326261 -376,14.0,13.0,-2.4909522639994623,2.250874059369649 -376,14.0,14.0,7.397149597063095,-12.035568855326606 -376,14.0,17.0,-1.8108011504072024,3.687418931630696 -376,15.0,11.0,-1.9519977922801688,4.104359379111847 -376,15.0,15.0,3.271064728633931,-8.94513365126506 -376,15.0,16.0,-1.3190669363537617,4.8407742721532125 -376,16.0,9.0,-3.956039125715353,10.317447719844054 -376,16.0,15.0,-1.3190669363537617,4.8407742721532125 -376,16.0,16.0,5.275106062069114,-15.158221991997266 -376,17.0,14.0,-1.8108011504072024,3.687418931630696 -376,17.0,17.0,4.886487584415919,-9.906177730909668 -376,17.0,18.0,-3.0756864340087167,6.218758799278971 -376,18.0,17.0,-3.0756864340087167,6.218758799278971 -376,18.0,18.0,8.958039375185187,-17.98346468163191 -376,18.0,19.0,-5.88235294117647,11.76470588235294 -376,19.0,9.0,-1.7848303152666305,3.98535828943083 -376,19.0,18.0,-5.88235294117647,11.76470588235294 -376,19.0,19.0,7.6671832564431,-15.75006417178377 -376,20.0,9.0,-5.101853820159654,10.98071411292983 -376,20.0,20.0,21.876495189895888,-45.10843276170355 -376,20.0,21.0,-16.774641369736234,34.127718648773715 -376,21.0,9.0,-2.619319553382597,5.400770303329455 -376,21.0,20.0,-16.774641369736234,34.127718648773715 -376,21.0,21.0,21.93449907537439,-43.48289181517921 -376,21.0,23.0,-2.5405381522555563,3.95440286307604 -376,22.0,22.0,1.4614056064833263,-2.989238740534077 -376,22.0,23.0,-1.4614056064833263,2.989238740534077 -376,23.0,21.0,-2.5405381522555563,3.95440286307604 -376,23.0,22.0,-1.4614056064833263,2.989238740534077 -376,23.0,23.0,5.311836702613133,-9.188263657315172 -376,23.0,24.0,-1.3098929438742493,2.287622053705056 -376,24.0,23.0,-1.3098929438742493,2.287622053705056 -376,24.0,24.0,2.526423063323735,-4.104766100052558 -376,24.0,25.0,-1.2165301194494855,1.8171440463475024 -376,25.0,24.0,-1.2165301194494855,1.8171440463475024 -376,25.0,25.0,1.2165301194494855,-1.8171440463475024 -376,26.0,26.0,1.6829894537803372,-5.700229860408058 -376,26.0,27.0,0.0,2.608731947574922 -376,26.0,28.0,-0.99553355095268,1.881005840357816 -376,26.0,29.0,-0.6874559028276572,1.293971494797717 -376,27.0,5.0,-4.362844058012917,15.463571542897856 -376,27.0,26.0,0.0,2.608731947574922 -376,27.0,27.0,4.362844058012917,-18.15204256311988 -376,28.0,26.0,-0.99553355095268,1.881005840357816 -376,28.0,28.0,1.9075867579849564,-3.604364401207048 -376,28.0,29.0,-0.9120532070322764,1.7233585608492326 -376,29.0,26.0,-0.6874559028276572,1.293971494797717 -376,29.0,28.0,-0.9120532070322764,1.7233585608492326 -376,29.0,29.0,1.5995091098599337,-3.0173300556469496 -377,0.0,0.0,5.224646179885656,-15.620326840803395 -377,0.0,1.0,-5.224646179885656,15.646726840803398 -377,1.0,0.0,-5.224646179885656,15.646726840803398 -377,1.0,1.0,8.61632137735015,-25.897083564394716 -377,1.0,3.0,-1.7055303166990268,5.1973792282565086 -377,1.0,5.0,-1.6861448807654689,5.116477495334806 -377,2.0,2.0,8.19544904231211,-23.5266726290628 -377,2.0,3.0,-8.19544904231211,23.5308726290628 -377,3.0,1.0,-1.7055303166990268,5.1973792282565086 -377,3.0,2.0,-8.19544904231211,23.5308726290628 -377,3.0,3.0,16.314103089185693,-55.509410535254254 -377,3.0,5.0,-6.413123730174556,22.31120356548123 -377,3.0,11.0,0.0,4.191255364806866 -377,4.0,4.0,2.954020035961983,-7.439067916773697 -377,4.0,6.0,-2.954020035961983,7.449267916773697 -377,5.0,1.0,-1.6861448807654689,5.116477495334806 -377,5.0,3.0,-6.413123730174556,22.31120356548123 -377,5.0,5.0,22.341631269034565,-82.8291478657789 -377,5.0,6.0,-3.590210423980992,11.02611441072814 -377,5.0,7.0,-6.289308176100628,22.0125786163522 -377,5.0,8.0,0.0,4.915840805411357 -377,5.0,9.0,0.0,1.8561002591115965 -377,5.0,27.0,-4.362844058012917,15.463571542897856 -377,6.0,4.0,-2.954020035961983,7.449267916773697 -377,6.0,5.0,-3.590210423980992,11.02611441072814 -377,6.0,6.0,6.544230459942975,-18.45668232750184 -377,7.0,5.0,-6.289308176100628,22.0125786163522 -377,7.0,7.0,7.733287237496075,-26.527493274828448 -377,7.0,27.0,-1.4439790613954469,4.540814658476248 -377,8.0,5.0,0.0,4.915840805411357 -377,8.0,8.0,0.0,-18.706293706293707 -377,8.0,9.0,0.0,9.090909090909092 -377,8.0,10.0,0.0,4.807692307692308 -377,9.0,5.0,0.0,1.8561002591115965 -377,9.0,8.0,0.0,9.090909090909092 -377,9.0,9.0,9.506003688808882,-31.06631294767834 -377,9.0,19.0,-1.7848303152666305,3.98535828943083 -377,9.0,20.0,-5.101853820159654,10.98071411292983 -377,9.0,21.0,-2.619319553382597,5.400770303329455 -377,10.0,8.0,0.0,4.807692307692308 -377,10.0,10.0,0.0,-4.807692307692308 -377,11.0,3.0,0.0,4.191255364806866 -377,11.0,11.0,6.573961583776156,-24.424167659260668 -377,11.0,12.0,0.0,7.142857142857143 -377,11.0,13.0,-1.5265676088395577,3.1734252729654173 -377,11.0,14.0,-3.0953961826564296,6.097275864326261 -377,11.0,15.0,-1.9519977922801688,4.104359379111847 -377,12.0,11.0,0.0,7.142857142857143 -377,12.0,12.0,0.0,-7.142857142857143 -377,13.0,11.0,-1.5265676088395577,3.1734252729654173 -377,13.0,13.0,4.01751987283902,-5.424299332335067 -377,13.0,14.0,-2.4909522639994623,2.250874059369649 -377,14.0,11.0,-3.0953961826564296,6.097275864326261 -377,14.0,13.0,-2.4909522639994623,2.250874059369649 -377,14.0,14.0,9.365498545964757,-16.01163373210796 -377,14.0,17.0,-1.8108011504072024,3.687418931630696 -377,14.0,22.0,-1.9683489489016612,3.976064876781356 -377,15.0,11.0,-1.9519977922801688,4.104359379111847 -377,15.0,15.0,3.271064728633931,-8.94513365126506 -377,15.0,16.0,-1.3190669363537617,4.8407742721532125 -377,16.0,15.0,-1.3190669363537617,4.8407742721532125 -377,16.0,16.0,1.3190669363537617,-4.8407742721532125 -377,17.0,14.0,-1.8108011504072024,3.687418931630696 -377,17.0,17.0,4.886487584415919,-9.906177730909668 -377,17.0,18.0,-3.0756864340087167,6.218758799278971 -377,18.0,17.0,-3.0756864340087167,6.218758799278971 -377,18.0,18.0,8.958039375185187,-17.98346468163191 -377,18.0,19.0,-5.88235294117647,11.76470588235294 -377,19.0,9.0,-1.7848303152666305,3.98535828943083 -377,19.0,18.0,-5.88235294117647,11.76470588235294 -377,19.0,19.0,7.6671832564431,-15.75006417178377 -377,20.0,9.0,-5.101853820159654,10.98071411292983 -377,20.0,20.0,21.876495189895888,-45.10843276170355 -377,20.0,21.0,-16.774641369736234,34.127718648773715 -377,21.0,9.0,-2.619319553382597,5.400770303329455 -377,21.0,20.0,-16.774641369736234,34.127718648773715 -377,21.0,21.0,21.93449907537439,-43.48289181517921 -377,21.0,23.0,-2.5405381522555563,3.95440286307604 -377,22.0,14.0,-1.9683489489016612,3.976064876781356 -377,22.0,22.0,3.429754555384988,-6.965303617315433 -377,22.0,23.0,-1.4614056064833263,2.989238740534077 -377,23.0,21.0,-2.5405381522555563,3.95440286307604 -377,23.0,22.0,-1.4614056064833263,2.989238740534077 -377,23.0,23.0,5.311836702613133,-9.188263657315172 -377,23.0,24.0,-1.3098929438742493,2.287622053705056 -377,24.0,23.0,-1.3098929438742493,2.287622053705056 -377,24.0,24.0,4.495715080321987,-7.864978761969621 -377,24.0,25.0,-1.2165301194494855,1.8171440463475024 -377,24.0,26.0,-1.9692920169982515,3.760212661917064 -377,25.0,24.0,-1.2165301194494855,1.8171440463475024 -377,25.0,25.0,1.2165301194494855,-1.8171440463475024 -377,26.0,24.0,-1.9692920169982515,3.760212661917064 -377,26.0,26.0,3.652281470778589,-9.46044252232512 -377,26.0,27.0,0.0,2.608731947574922 -377,26.0,28.0,-0.99553355095268,1.881005840357816 -377,26.0,29.0,-0.6874559028276572,1.293971494797717 -377,27.0,5.0,-4.362844058012917,15.463571542897856 -377,27.0,7.0,-1.4439790613954469,4.540814658476248 -377,27.0,26.0,0.0,2.608731947574922 -377,27.0,27.0,5.806823119408364,-22.67145722159613 -377,28.0,26.0,-0.99553355095268,1.881005840357816 -377,28.0,28.0,1.9075867579849564,-3.604364401207048 -377,28.0,29.0,-0.9120532070322764,1.7233585608492326 -377,29.0,26.0,-0.6874559028276572,1.293971494797717 -377,29.0,28.0,-0.9120532070322764,1.7233585608492326 -377,29.0,29.0,1.5995091098599337,-3.0173300556469496 -378,0.0,0.0,6.765516048652632,-21.23160167089863 -378,0.0,1.0,-5.224646179885656,15.646726840803398 -378,0.0,2.0,-1.5408698687669766,5.631674830095234 -378,1.0,0.0,-5.224646179885656,15.646726840803398 -378,1.0,1.0,9.75228216552403,-30.648662892676068 -378,1.0,3.0,-1.7055303166990268,5.1973792282565086 -378,1.0,4.0,-1.1359607881738778,4.772479328281356 -378,1.0,5.0,-1.6861448807654689,5.116477495334806 -378,2.0,0.0,-1.5408698687669766,5.631674830095234 -378,2.0,2.0,9.736318911079088,-29.13794745915803 -378,2.0,3.0,-8.19544904231211,23.5308726290628 -378,3.0,1.0,-1.7055303166990268,5.1973792282565086 -378,3.0,2.0,-8.19544904231211,23.5308726290628 -378,3.0,3.0,16.314103089185693,-55.509410535254254 -378,3.0,5.0,-6.413123730174556,22.31120356548123 -378,3.0,11.0,0.0,4.191255364806866 -378,4.0,1.0,-1.1359607881738778,4.772479328281356 -378,4.0,4.0,4.089980824135861,-12.190647245055052 -378,4.0,6.0,-2.954020035961983,7.449267916773697 -378,5.0,1.0,-1.6861448807654689,5.116477495334806 -378,5.0,3.0,-6.413123730174556,22.31120356548123 -378,5.0,5.0,22.341631269034565,-82.8291478657789 -378,5.0,6.0,-3.590210423980992,11.02611441072814 -378,5.0,7.0,-6.289308176100628,22.0125786163522 -378,5.0,8.0,0.0,4.915840805411357 -378,5.0,9.0,0.0,1.8561002591115965 -378,5.0,27.0,-4.362844058012917,15.463571542897856 -378,6.0,4.0,-2.954020035961983,7.449267916773697 -378,6.0,5.0,-3.590210423980992,11.02611441072814 -378,6.0,6.0,6.544230459942975,-18.45668232750184 -378,7.0,5.0,-6.289308176100628,22.0125786163522 -378,7.0,7.0,7.733287237496075,-26.527493274828448 -378,7.0,27.0,-1.4439790613954469,4.540814658476248 -378,8.0,5.0,0.0,4.915840805411357 -378,8.0,8.0,0.0,-18.706293706293707 -378,8.0,9.0,0.0,9.090909090909092 -378,8.0,10.0,0.0,4.807692307692308 -378,9.0,5.0,0.0,1.8561002591115965 -378,9.0,8.0,0.0,9.090909090909092 -378,9.0,9.0,10.842723261141638,-35.98299036419294 -378,9.0,16.0,-3.956039125715353,10.317447719844054 -378,9.0,19.0,-1.7848303152666305,3.98535828943083 -378,9.0,20.0,-5.101853820159654,10.98071411292983 -378,10.0,8.0,0.0,4.807692307692308 -378,10.0,10.0,0.0,-4.807692307692308 -378,11.0,3.0,0.0,4.191255364806866 -378,11.0,11.0,6.573961583776156,-24.424167659260668 -378,11.0,12.0,0.0,7.142857142857143 -378,11.0,13.0,-1.5265676088395577,3.1734252729654173 -378,11.0,14.0,-3.0953961826564296,6.097275864326261 -378,11.0,15.0,-1.9519977922801688,4.104359379111847 -378,12.0,11.0,0.0,7.142857142857143 -378,12.0,12.0,0.0,-7.142857142857143 -378,13.0,11.0,-1.5265676088395577,3.1734252729654173 -378,13.0,13.0,4.01751987283902,-5.424299332335067 -378,13.0,14.0,-2.4909522639994623,2.250874059369649 -378,14.0,11.0,-3.0953961826564296,6.097275864326261 -378,14.0,13.0,-2.4909522639994623,2.250874059369649 -378,14.0,14.0,9.365498545964757,-16.01163373210796 -378,14.0,17.0,-1.8108011504072024,3.687418931630696 -378,14.0,22.0,-1.9683489489016612,3.976064876781356 -378,15.0,11.0,-1.9519977922801688,4.104359379111847 -378,15.0,15.0,3.271064728633931,-8.94513365126506 -378,15.0,16.0,-1.3190669363537617,4.8407742721532125 -378,16.0,9.0,-3.956039125715353,10.317447719844054 -378,16.0,15.0,-1.3190669363537617,4.8407742721532125 -378,16.0,16.0,5.275106062069114,-15.158221991997266 -378,17.0,14.0,-1.8108011504072024,3.687418931630696 -378,17.0,17.0,4.886487584415919,-9.906177730909668 -378,17.0,18.0,-3.0756864340087167,6.218758799278971 -378,18.0,17.0,-3.0756864340087167,6.218758799278971 -378,18.0,18.0,8.958039375185187,-17.98346468163191 -378,18.0,19.0,-5.88235294117647,11.76470588235294 -378,19.0,9.0,-1.7848303152666305,3.98535828943083 -378,19.0,18.0,-5.88235294117647,11.76470588235294 -378,19.0,19.0,7.6671832564431,-15.75006417178377 -378,20.0,9.0,-5.101853820159654,10.98071411292983 -378,20.0,20.0,21.876495189895888,-45.10843276170355 -378,20.0,21.0,-16.774641369736234,34.127718648773715 -378,21.0,20.0,-16.774641369736234,34.127718648773715 -378,21.0,21.0,19.31517952199179,-38.08212151184976 -378,21.0,23.0,-2.5405381522555563,3.95440286307604 -378,22.0,14.0,-1.9683489489016612,3.976064876781356 -378,22.0,22.0,3.429754555384988,-6.965303617315433 -378,22.0,23.0,-1.4614056064833263,2.989238740534077 -378,23.0,21.0,-2.5405381522555563,3.95440286307604 -378,23.0,22.0,-1.4614056064833263,2.989238740534077 -378,23.0,23.0,5.311836702613133,-9.188263657315172 -378,23.0,24.0,-1.3098929438742493,2.287622053705056 -378,24.0,23.0,-1.3098929438742493,2.287622053705056 -378,24.0,24.0,4.495715080321987,-7.864978761969621 -378,24.0,25.0,-1.2165301194494855,1.8171440463475024 -378,24.0,26.0,-1.9692920169982515,3.760212661917064 -378,25.0,24.0,-1.2165301194494855,1.8171440463475024 -378,25.0,25.0,1.2165301194494855,-1.8171440463475024 -378,26.0,24.0,-1.9692920169982515,3.760212661917064 -378,26.0,26.0,3.652281470778589,-9.46044252232512 -378,26.0,27.0,0.0,2.608731947574922 -378,26.0,28.0,-0.99553355095268,1.881005840357816 -378,26.0,29.0,-0.6874559028276572,1.293971494797717 -378,27.0,5.0,-4.362844058012917,15.463571542897856 -378,27.0,7.0,-1.4439790613954469,4.540814658476248 -378,27.0,26.0,0.0,2.608731947574922 -378,27.0,27.0,5.806823119408364,-22.67145722159613 -378,28.0,26.0,-0.99553355095268,1.881005840357816 -378,28.0,28.0,1.9075867579849564,-3.604364401207048 -378,28.0,29.0,-0.9120532070322764,1.7233585608492326 -378,29.0,26.0,-0.6874559028276572,1.293971494797717 -378,29.0,28.0,-0.9120532070322764,1.7233585608492326 -378,29.0,29.0,1.5995091098599337,-3.0173300556469496 -379,0.0,0.0,6.765516048652632,-21.23160167089863 -379,0.0,1.0,-5.224646179885656,15.646726840803398 -379,0.0,2.0,-1.5408698687669766,5.631674830095234 -379,1.0,0.0,-5.224646179885656,15.646726840803398 -379,1.0,1.0,9.75228216552403,-30.648662892676068 -379,1.0,3.0,-1.7055303166990268,5.1973792282565086 -379,1.0,4.0,-1.1359607881738778,4.772479328281356 -379,1.0,5.0,-1.6861448807654689,5.116477495334806 -379,2.0,0.0,-1.5408698687669766,5.631674830095234 -379,2.0,2.0,9.736318911079088,-29.13794745915803 -379,2.0,3.0,-8.19544904231211,23.5308726290628 -379,3.0,1.0,-1.7055303166990268,5.1973792282565086 -379,3.0,2.0,-8.19544904231211,23.5308726290628 -379,3.0,3.0,16.314103089185693,-55.509410535254254 -379,3.0,5.0,-6.413123730174556,22.31120356548123 -379,3.0,11.0,0.0,4.191255364806866 -379,4.0,1.0,-1.1359607881738778,4.772479328281356 -379,4.0,4.0,4.089980824135861,-12.190647245055052 -379,4.0,6.0,-2.954020035961983,7.449267916773697 -379,5.0,1.0,-1.6861448807654689,5.116477495334806 -379,5.0,3.0,-6.413123730174556,22.31120356548123 -379,5.0,5.0,22.341631269034565,-82.8291478657789 -379,5.0,6.0,-3.590210423980992,11.02611441072814 -379,5.0,7.0,-6.289308176100628,22.0125786163522 -379,5.0,8.0,0.0,4.915840805411357 -379,5.0,9.0,0.0,1.8561002591115965 -379,5.0,27.0,-4.362844058012917,15.463571542897856 -379,6.0,4.0,-2.954020035961983,7.449267916773697 -379,6.0,5.0,-3.590210423980992,11.02611441072814 -379,6.0,6.0,6.544230459942975,-18.45668232750184 -379,7.0,5.0,-6.289308176100628,22.0125786163522 -379,7.0,7.0,7.733287237496075,-26.527493274828448 -379,7.0,27.0,-1.4439790613954469,4.540814658476248 -379,8.0,5.0,0.0,4.915840805411357 -379,8.0,8.0,0.0,-18.706293706293707 -379,8.0,9.0,0.0,9.090909090909092 -379,8.0,10.0,0.0,4.807692307692308 -379,9.0,5.0,0.0,1.8561002591115965 -379,9.0,8.0,0.0,9.090909090909092 -379,9.0,9.0,13.462042814524237,-41.3837606675224 -379,9.0,16.0,-3.956039125715353,10.317447719844054 -379,9.0,19.0,-1.7848303152666305,3.98535828943083 -379,9.0,20.0,-5.101853820159654,10.98071411292983 -379,9.0,21.0,-2.619319553382597,5.400770303329455 -379,10.0,8.0,0.0,4.807692307692308 -379,10.0,10.0,0.0,-4.807692307692308 -379,11.0,3.0,0.0,4.191255364806866 -379,11.0,11.0,3.0953961826564296,-17.146383007183402 -379,11.0,12.0,0.0,7.142857142857143 -379,11.0,14.0,-3.0953961826564296,6.097275864326261 -379,12.0,11.0,0.0,7.142857142857143 -379,12.0,12.0,0.0,-7.142857142857143 -379,13.0,13.0,2.4909522639994623,-2.250874059369649 -379,13.0,14.0,-2.4909522639994623,2.250874059369649 -379,14.0,11.0,-3.0953961826564296,6.097275864326261 -379,14.0,13.0,-2.4909522639994623,2.250874059369649 -379,14.0,14.0,9.365498545964757,-16.01163373210796 -379,14.0,17.0,-1.8108011504072024,3.687418931630696 -379,14.0,22.0,-1.9683489489016612,3.976064876781356 -379,15.0,15.0,1.3190669363537617,-4.8407742721532125 -379,15.0,16.0,-1.3190669363537617,4.8407742721532125 -379,16.0,9.0,-3.956039125715353,10.317447719844054 -379,16.0,15.0,-1.3190669363537617,4.8407742721532125 -379,16.0,16.0,5.275106062069114,-15.158221991997266 -379,17.0,14.0,-1.8108011504072024,3.687418931630696 -379,17.0,17.0,4.886487584415919,-9.906177730909668 -379,17.0,18.0,-3.0756864340087167,6.218758799278971 -379,18.0,17.0,-3.0756864340087167,6.218758799278971 -379,18.0,18.0,8.958039375185187,-17.98346468163191 -379,18.0,19.0,-5.88235294117647,11.76470588235294 -379,19.0,9.0,-1.7848303152666305,3.98535828943083 -379,19.0,18.0,-5.88235294117647,11.76470588235294 -379,19.0,19.0,7.6671832564431,-15.75006417178377 -379,20.0,9.0,-5.101853820159654,10.98071411292983 -379,20.0,20.0,21.876495189895888,-45.10843276170355 -379,20.0,21.0,-16.774641369736234,34.127718648773715 -379,21.0,9.0,-2.619319553382597,5.400770303329455 -379,21.0,20.0,-16.774641369736234,34.127718648773715 -379,21.0,21.0,21.93449907537439,-43.48289181517921 -379,21.0,23.0,-2.5405381522555563,3.95440286307604 -379,22.0,14.0,-1.9683489489016612,3.976064876781356 -379,22.0,22.0,3.429754555384988,-6.965303617315433 -379,22.0,23.0,-1.4614056064833263,2.989238740534077 -379,23.0,21.0,-2.5405381522555563,3.95440286307604 -379,23.0,22.0,-1.4614056064833263,2.989238740534077 -379,23.0,23.0,5.311836702613133,-9.188263657315172 -379,23.0,24.0,-1.3098929438742493,2.287622053705056 -379,24.0,23.0,-1.3098929438742493,2.287622053705056 -379,24.0,24.0,4.495715080321987,-7.864978761969621 -379,24.0,25.0,-1.2165301194494855,1.8171440463475024 -379,24.0,26.0,-1.9692920169982515,3.760212661917064 -379,25.0,24.0,-1.2165301194494855,1.8171440463475024 -379,25.0,25.0,1.2165301194494855,-1.8171440463475024 -379,26.0,24.0,-1.9692920169982515,3.760212661917064 -379,26.0,26.0,3.652281470778589,-9.46044252232512 -379,26.0,27.0,0.0,2.608731947574922 -379,26.0,28.0,-0.99553355095268,1.881005840357816 -379,26.0,29.0,-0.6874559028276572,1.293971494797717 -379,27.0,5.0,-4.362844058012917,15.463571542897856 -379,27.0,7.0,-1.4439790613954469,4.540814658476248 -379,27.0,26.0,0.0,2.608731947574922 -379,27.0,27.0,5.806823119408364,-22.67145722159613 -379,28.0,26.0,-0.99553355095268,1.881005840357816 -379,28.0,28.0,1.9075867579849564,-3.604364401207048 -379,28.0,29.0,-0.9120532070322764,1.7233585608492326 -379,29.0,26.0,-0.6874559028276572,1.293971494797717 -379,29.0,28.0,-0.9120532070322764,1.7233585608492326 -379,29.0,29.0,1.5995091098599337,-3.0173300556469496 -380,0.0,0.0,6.765516048652632,-21.23160167089863 -380,0.0,1.0,-5.224646179885656,15.646726840803398 -380,0.0,2.0,-1.5408698687669766,5.631674830095234 -380,1.0,0.0,-5.224646179885656,15.646726840803398 -380,1.0,1.0,9.75228216552403,-30.648662892676068 -380,1.0,3.0,-1.7055303166990268,5.1973792282565086 -380,1.0,4.0,-1.1359607881738778,4.772479328281356 -380,1.0,5.0,-1.6861448807654689,5.116477495334806 -380,2.0,0.0,-1.5408698687669766,5.631674830095234 -380,2.0,2.0,9.736318911079088,-29.13794745915803 -380,2.0,3.0,-8.19544904231211,23.5308726290628 -380,3.0,1.0,-1.7055303166990268,5.1973792282565086 -380,3.0,2.0,-8.19544904231211,23.5308726290628 -380,3.0,3.0,16.314103089185693,-55.509410535254254 -380,3.0,5.0,-6.413123730174556,22.31120356548123 -380,3.0,11.0,0.0,4.191255364806866 -380,4.0,1.0,-1.1359607881738778,4.772479328281356 -380,4.0,4.0,4.089980824135861,-12.190647245055052 -380,4.0,6.0,-2.954020035961983,7.449267916773697 -380,5.0,1.0,-1.6861448807654689,5.116477495334806 -380,5.0,3.0,-6.413123730174556,22.31120356548123 -380,5.0,5.0,22.341631269034565,-82.8291478657789 -380,5.0,6.0,-3.590210423980992,11.02611441072814 -380,5.0,7.0,-6.289308176100628,22.0125786163522 -380,5.0,8.0,0.0,4.915840805411357 -380,5.0,9.0,0.0,1.8561002591115965 -380,5.0,27.0,-4.362844058012917,15.463571542897856 -380,6.0,4.0,-2.954020035961983,7.449267916773697 -380,6.0,5.0,-3.590210423980992,11.02611441072814 -380,6.0,6.0,6.544230459942975,-18.45668232750184 -380,7.0,5.0,-6.289308176100628,22.0125786163522 -380,7.0,7.0,7.733287237496075,-26.527493274828448 -380,7.0,27.0,-1.4439790613954469,4.540814658476248 -380,8.0,5.0,0.0,4.915840805411357 -380,8.0,8.0,0.0,-18.706293706293707 -380,8.0,9.0,0.0,9.090909090909092 -380,8.0,10.0,0.0,4.807692307692308 -380,9.0,5.0,0.0,1.8561002591115965 -380,9.0,8.0,0.0,9.090909090909092 -380,9.0,9.0,13.462042814524237,-41.3837606675224 -380,9.0,16.0,-3.956039125715353,10.317447719844054 -380,9.0,19.0,-1.7848303152666305,3.98535828943083 -380,9.0,20.0,-5.101853820159654,10.98071411292983 -380,9.0,21.0,-2.619319553382597,5.400770303329455 -380,10.0,8.0,0.0,4.807692307692308 -380,10.0,10.0,0.0,-4.807692307692308 -380,11.0,3.0,0.0,4.191255364806866 -380,11.0,11.0,6.573961583776156,-24.424167659260668 -380,11.0,12.0,0.0,7.142857142857143 -380,11.0,13.0,-1.5265676088395577,3.1734252729654173 -380,11.0,14.0,-3.0953961826564296,6.097275864326261 -380,11.0,15.0,-1.9519977922801688,4.104359379111847 -380,12.0,11.0,0.0,7.142857142857143 -380,12.0,12.0,0.0,-7.142857142857143 -380,13.0,11.0,-1.5265676088395577,3.1734252729654173 -380,13.0,13.0,4.01751987283902,-5.424299332335067 -380,13.0,14.0,-2.4909522639994623,2.250874059369649 -380,14.0,11.0,-3.0953961826564296,6.097275864326261 -380,14.0,13.0,-2.4909522639994623,2.250874059369649 -380,14.0,14.0,9.365498545964757,-16.01163373210796 -380,14.0,17.0,-1.8108011504072024,3.687418931630696 -380,14.0,22.0,-1.9683489489016612,3.976064876781356 -380,15.0,11.0,-1.9519977922801688,4.104359379111847 -380,15.0,15.0,3.271064728633931,-8.94513365126506 -380,15.0,16.0,-1.3190669363537617,4.8407742721532125 -380,16.0,9.0,-3.956039125715353,10.317447719844054 -380,16.0,15.0,-1.3190669363537617,4.8407742721532125 -380,16.0,16.0,5.275106062069114,-15.158221991997266 -380,17.0,14.0,-1.8108011504072024,3.687418931630696 -380,17.0,17.0,4.886487584415919,-9.906177730909668 -380,17.0,18.0,-3.0756864340087167,6.218758799278971 -380,18.0,17.0,-3.0756864340087167,6.218758799278971 -380,18.0,18.0,8.958039375185187,-17.98346468163191 -380,18.0,19.0,-5.88235294117647,11.76470588235294 -380,19.0,9.0,-1.7848303152666305,3.98535828943083 -380,19.0,18.0,-5.88235294117647,11.76470588235294 -380,19.0,19.0,7.6671832564431,-15.75006417178377 -380,20.0,9.0,-5.101853820159654,10.98071411292983 -380,20.0,20.0,21.876495189895888,-45.10843276170355 -380,20.0,21.0,-16.774641369736234,34.127718648773715 -380,21.0,9.0,-2.619319553382597,5.400770303329455 -380,21.0,20.0,-16.774641369736234,34.127718648773715 -380,21.0,21.0,21.93449907537439,-43.48289181517921 -380,21.0,23.0,-2.5405381522555563,3.95440286307604 -380,22.0,14.0,-1.9683489489016612,3.976064876781356 -380,22.0,22.0,3.429754555384988,-6.965303617315433 -380,22.0,23.0,-1.4614056064833263,2.989238740534077 -380,23.0,21.0,-2.5405381522555563,3.95440286307604 -380,23.0,22.0,-1.4614056064833263,2.989238740534077 -380,23.0,23.0,5.311836702613133,-9.188263657315172 -380,23.0,24.0,-1.3098929438742493,2.287622053705056 -380,24.0,23.0,-1.3098929438742493,2.287622053705056 -380,24.0,24.0,4.495715080321987,-7.864978761969621 -380,24.0,25.0,-1.2165301194494855,1.8171440463475024 -380,24.0,26.0,-1.9692920169982515,3.760212661917064 -380,25.0,24.0,-1.2165301194494855,1.8171440463475024 -380,25.0,25.0,1.2165301194494855,-1.8171440463475024 -380,26.0,24.0,-1.9692920169982515,3.760212661917064 -380,26.0,26.0,3.652281470778589,-9.46044252232512 -380,26.0,27.0,0.0,2.608731947574922 -380,26.0,28.0,-0.99553355095268,1.881005840357816 -380,26.0,29.0,-0.6874559028276572,1.293971494797717 -380,27.0,5.0,-4.362844058012917,15.463571542897856 -380,27.0,7.0,-1.4439790613954469,4.540814658476248 -380,27.0,26.0,0.0,2.608731947574922 -380,27.0,27.0,5.806823119408364,-22.67145722159613 -380,28.0,26.0,-0.99553355095268,1.881005840357816 -380,28.0,28.0,1.9075867579849564,-3.604364401207048 -380,28.0,29.0,-0.9120532070322764,1.7233585608492326 -380,29.0,26.0,-0.6874559028276572,1.293971494797717 -380,29.0,28.0,-0.9120532070322764,1.7233585608492326 -380,29.0,29.0,1.5995091098599337,-3.0173300556469496 -381,0.0,0.0,6.765516048652632,-21.23160167089863 -381,0.0,1.0,-5.224646179885656,15.646726840803398 -381,0.0,2.0,-1.5408698687669766,5.631674830095234 -381,1.0,0.0,-5.224646179885656,15.646726840803398 -381,1.0,1.0,9.75228216552403,-30.648662892676068 -381,1.0,3.0,-1.7055303166990268,5.1973792282565086 -381,1.0,4.0,-1.1359607881738778,4.772479328281356 -381,1.0,5.0,-1.6861448807654689,5.116477495334806 -381,2.0,0.0,-1.5408698687669766,5.631674830095234 -381,2.0,2.0,9.736318911079088,-29.13794745915803 -381,2.0,3.0,-8.19544904231211,23.5308726290628 -381,3.0,1.0,-1.7055303166990268,5.1973792282565086 -381,3.0,2.0,-8.19544904231211,23.5308726290628 -381,3.0,3.0,16.314103089185693,-55.509410535254254 -381,3.0,5.0,-6.413123730174556,22.31120356548123 -381,3.0,11.0,0.0,4.191255364806866 -381,4.0,1.0,-1.1359607881738778,4.772479328281356 -381,4.0,4.0,4.089980824135861,-12.190647245055052 -381,4.0,6.0,-2.954020035961983,7.449267916773697 -381,5.0,1.0,-1.6861448807654689,5.116477495334806 -381,5.0,3.0,-6.413123730174556,22.31120356548123 -381,5.0,5.0,22.341631269034565,-82.8291478657789 -381,5.0,6.0,-3.590210423980992,11.02611441072814 -381,5.0,7.0,-6.289308176100628,22.0125786163522 -381,5.0,8.0,0.0,4.915840805411357 -381,5.0,9.0,0.0,1.8561002591115965 -381,5.0,27.0,-4.362844058012917,15.463571542897856 -381,6.0,4.0,-2.954020035961983,7.449267916773697 -381,6.0,5.0,-3.590210423980992,11.02611441072814 -381,6.0,6.0,6.544230459942975,-18.45668232750184 -381,7.0,5.0,-6.289308176100628,22.0125786163522 -381,7.0,7.0,7.733287237496075,-26.527493274828448 -381,7.0,27.0,-1.4439790613954469,4.540814658476248 -381,8.0,5.0,0.0,4.915840805411357 -381,8.0,8.0,0.0,-18.706293706293707 -381,8.0,9.0,0.0,9.090909090909092 -381,8.0,10.0,0.0,4.807692307692308 -381,9.0,5.0,0.0,1.8561002591115965 -381,9.0,8.0,0.0,9.090909090909092 -381,9.0,9.0,13.462042814524237,-41.3837606675224 -381,9.0,16.0,-3.956039125715353,10.317447719844054 -381,9.0,19.0,-1.7848303152666305,3.98535828943083 -381,9.0,20.0,-5.101853820159654,10.98071411292983 -381,9.0,21.0,-2.619319553382597,5.400770303329455 -381,10.0,8.0,0.0,4.807692307692308 -381,10.0,10.0,0.0,-4.807692307692308 -381,11.0,3.0,0.0,4.191255364806866 -381,11.0,11.0,6.573961583776156,-24.424167659260668 -381,11.0,12.0,0.0,7.142857142857143 -381,11.0,13.0,-1.5265676088395577,3.1734252729654173 -381,11.0,14.0,-3.0953961826564296,6.097275864326261 -381,11.0,15.0,-1.9519977922801688,4.104359379111847 -381,12.0,11.0,0.0,7.142857142857143 -381,12.0,12.0,0.0,-7.142857142857143 -381,13.0,11.0,-1.5265676088395577,3.1734252729654173 -381,13.0,13.0,4.01751987283902,-5.424299332335067 -381,13.0,14.0,-2.4909522639994623,2.250874059369649 -381,14.0,11.0,-3.0953961826564296,6.097275864326261 -381,14.0,13.0,-2.4909522639994623,2.250874059369649 -381,14.0,14.0,9.365498545964757,-16.01163373210796 -381,14.0,17.0,-1.8108011504072024,3.687418931630696 -381,14.0,22.0,-1.9683489489016612,3.976064876781356 -381,15.0,11.0,-1.9519977922801688,4.104359379111847 -381,15.0,15.0,3.271064728633931,-8.94513365126506 -381,15.0,16.0,-1.3190669363537617,4.8407742721532125 -381,16.0,9.0,-3.956039125715353,10.317447719844054 -381,16.0,15.0,-1.3190669363537617,4.8407742721532125 -381,16.0,16.0,5.275106062069114,-15.158221991997266 -381,17.0,14.0,-1.8108011504072024,3.687418931630696 -381,17.0,17.0,4.886487584415919,-9.906177730909668 -381,17.0,18.0,-3.0756864340087167,6.218758799278971 -381,18.0,17.0,-3.0756864340087167,6.218758799278971 -381,18.0,18.0,8.958039375185187,-17.98346468163191 -381,18.0,19.0,-5.88235294117647,11.76470588235294 -381,19.0,9.0,-1.7848303152666305,3.98535828943083 -381,19.0,18.0,-5.88235294117647,11.76470588235294 -381,19.0,19.0,7.6671832564431,-15.75006417178377 -381,20.0,9.0,-5.101853820159654,10.98071411292983 -381,20.0,20.0,21.876495189895888,-45.10843276170355 -381,20.0,21.0,-16.774641369736234,34.127718648773715 -381,21.0,9.0,-2.619319553382597,5.400770303329455 -381,21.0,20.0,-16.774641369736234,34.127718648773715 -381,21.0,21.0,21.93449907537439,-43.48289181517921 -381,21.0,23.0,-2.5405381522555563,3.95440286307604 -381,22.0,14.0,-1.9683489489016612,3.976064876781356 -381,22.0,22.0,3.429754555384988,-6.965303617315433 -381,22.0,23.0,-1.4614056064833263,2.989238740534077 -381,23.0,21.0,-2.5405381522555563,3.95440286307604 -381,23.0,22.0,-1.4614056064833263,2.989238740534077 -381,23.0,23.0,5.311836702613133,-9.188263657315172 -381,23.0,24.0,-1.3098929438742493,2.287622053705056 -381,24.0,23.0,-1.3098929438742493,2.287622053705056 -381,24.0,24.0,4.495715080321987,-7.864978761969621 -381,24.0,25.0,-1.2165301194494855,1.8171440463475024 -381,24.0,26.0,-1.9692920169982515,3.760212661917064 -381,25.0,24.0,-1.2165301194494855,1.8171440463475024 -381,25.0,25.0,1.2165301194494855,-1.8171440463475024 -381,26.0,24.0,-1.9692920169982515,3.760212661917064 -381,26.0,26.0,3.652281470778589,-9.46044252232512 -381,26.0,27.0,0.0,2.608731947574922 -381,26.0,28.0,-0.99553355095268,1.881005840357816 -381,26.0,29.0,-0.6874559028276572,1.293971494797717 -381,27.0,5.0,-4.362844058012917,15.463571542897856 -381,27.0,7.0,-1.4439790613954469,4.540814658476248 -381,27.0,26.0,0.0,2.608731947574922 -381,27.0,27.0,5.806823119408364,-22.67145722159613 -381,28.0,26.0,-0.99553355095268,1.881005840357816 -381,28.0,28.0,1.9075867579849564,-3.604364401207048 -381,28.0,29.0,-0.9120532070322764,1.7233585608492326 -381,29.0,26.0,-0.6874559028276572,1.293971494797717 -381,29.0,28.0,-0.9120532070322764,1.7233585608492326 -381,29.0,29.0,1.5995091098599337,-3.0173300556469496 -382,0.0,0.0,6.765516048652632,-21.23160167089863 -382,0.0,1.0,-5.224646179885656,15.646726840803398 -382,0.0,2.0,-1.5408698687669766,5.631674830095234 -382,1.0,0.0,-5.224646179885656,15.646726840803398 -382,1.0,1.0,9.75228216552403,-30.648662892676068 -382,1.0,3.0,-1.7055303166990268,5.1973792282565086 -382,1.0,4.0,-1.1359607881738778,4.772479328281356 -382,1.0,5.0,-1.6861448807654689,5.116477495334806 -382,2.0,0.0,-1.5408698687669766,5.631674830095234 -382,2.0,2.0,9.736318911079088,-29.13794745915803 -382,2.0,3.0,-8.19544904231211,23.5308726290628 -382,3.0,1.0,-1.7055303166990268,5.1973792282565086 -382,3.0,2.0,-8.19544904231211,23.5308726290628 -382,3.0,3.0,16.314103089185693,-55.509410535254254 -382,3.0,5.0,-6.413123730174556,22.31120356548123 -382,3.0,11.0,0.0,4.191255364806866 -382,4.0,1.0,-1.1359607881738778,4.772479328281356 -382,4.0,4.0,4.089980824135861,-12.190647245055052 -382,4.0,6.0,-2.954020035961983,7.449267916773697 -382,5.0,1.0,-1.6861448807654689,5.116477495334806 -382,5.0,3.0,-6.413123730174556,22.31120356548123 -382,5.0,5.0,22.341631269034565,-82.8291478657789 -382,5.0,6.0,-3.590210423980992,11.02611441072814 -382,5.0,7.0,-6.289308176100628,22.0125786163522 -382,5.0,8.0,0.0,4.915840805411357 -382,5.0,9.0,0.0,1.8561002591115965 -382,5.0,27.0,-4.362844058012917,15.463571542897856 -382,6.0,4.0,-2.954020035961983,7.449267916773697 -382,6.0,5.0,-3.590210423980992,11.02611441072814 -382,6.0,6.0,6.544230459942975,-18.45668232750184 -382,7.0,5.0,-6.289308176100628,22.0125786163522 -382,7.0,7.0,7.733287237496075,-26.527493274828448 -382,7.0,27.0,-1.4439790613954469,4.540814658476248 -382,8.0,5.0,0.0,4.915840805411357 -382,8.0,8.0,0.0,-18.706293706293707 -382,8.0,9.0,0.0,9.090909090909092 -382,8.0,10.0,0.0,4.807692307692308 -382,9.0,5.0,0.0,1.8561002591115965 -382,9.0,8.0,0.0,9.090909090909092 -382,9.0,9.0,13.462042814524237,-41.3837606675224 -382,9.0,16.0,-3.956039125715353,10.317447719844054 -382,9.0,19.0,-1.7848303152666305,3.98535828943083 -382,9.0,20.0,-5.101853820159654,10.98071411292983 -382,9.0,21.0,-2.619319553382597,5.400770303329455 -382,10.0,8.0,0.0,4.807692307692308 -382,10.0,10.0,0.0,-4.807692307692308 -382,11.0,3.0,0.0,4.191255364806866 -382,11.0,11.0,6.573961583776156,-24.424167659260668 -382,11.0,12.0,0.0,7.142857142857143 -382,11.0,13.0,-1.5265676088395577,3.1734252729654173 -382,11.0,14.0,-3.0953961826564296,6.097275864326261 -382,11.0,15.0,-1.9519977922801688,4.104359379111847 -382,12.0,11.0,0.0,7.142857142857143 -382,12.0,12.0,0.0,-7.142857142857143 -382,13.0,11.0,-1.5265676088395577,3.1734252729654173 -382,13.0,13.0,4.01751987283902,-5.424299332335067 -382,13.0,14.0,-2.4909522639994623,2.250874059369649 -382,14.0,11.0,-3.0953961826564296,6.097275864326261 -382,14.0,13.0,-2.4909522639994623,2.250874059369649 -382,14.0,14.0,9.365498545964757,-16.01163373210796 -382,14.0,17.0,-1.8108011504072024,3.687418931630696 -382,14.0,22.0,-1.9683489489016612,3.976064876781356 -382,15.0,11.0,-1.9519977922801688,4.104359379111847 -382,15.0,15.0,3.271064728633931,-8.94513365126506 -382,15.0,16.0,-1.3190669363537617,4.8407742721532125 -382,16.0,9.0,-3.956039125715353,10.317447719844054 -382,16.0,15.0,-1.3190669363537617,4.8407742721532125 -382,16.0,16.0,5.275106062069114,-15.158221991997266 -382,17.0,14.0,-1.8108011504072024,3.687418931630696 -382,17.0,17.0,4.886487584415919,-9.906177730909668 -382,17.0,18.0,-3.0756864340087167,6.218758799278971 -382,18.0,17.0,-3.0756864340087167,6.218758799278971 -382,18.0,18.0,8.958039375185187,-17.98346468163191 -382,18.0,19.0,-5.88235294117647,11.76470588235294 -382,19.0,9.0,-1.7848303152666305,3.98535828943083 -382,19.0,18.0,-5.88235294117647,11.76470588235294 -382,19.0,19.0,7.6671832564431,-15.75006417178377 -382,20.0,9.0,-5.101853820159654,10.98071411292983 -382,20.0,20.0,21.876495189895888,-45.10843276170355 -382,20.0,21.0,-16.774641369736234,34.127718648773715 -382,21.0,9.0,-2.619319553382597,5.400770303329455 -382,21.0,20.0,-16.774641369736234,34.127718648773715 -382,21.0,21.0,21.93449907537439,-43.48289181517921 -382,21.0,23.0,-2.5405381522555563,3.95440286307604 -382,22.0,14.0,-1.9683489489016612,3.976064876781356 -382,22.0,22.0,3.429754555384988,-6.965303617315433 -382,22.0,23.0,-1.4614056064833263,2.989238740534077 -382,23.0,21.0,-2.5405381522555563,3.95440286307604 -382,23.0,22.0,-1.4614056064833263,2.989238740534077 -382,23.0,23.0,5.311836702613133,-9.188263657315172 -382,23.0,24.0,-1.3098929438742493,2.287622053705056 -382,24.0,23.0,-1.3098929438742493,2.287622053705056 -382,24.0,24.0,4.495715080321987,-7.864978761969621 -382,24.0,25.0,-1.2165301194494855,1.8171440463475024 -382,24.0,26.0,-1.9692920169982515,3.760212661917064 -382,25.0,24.0,-1.2165301194494855,1.8171440463475024 -382,25.0,25.0,1.2165301194494855,-1.8171440463475024 -382,26.0,24.0,-1.9692920169982515,3.760212661917064 -382,26.0,26.0,3.652281470778589,-9.46044252232512 -382,26.0,27.0,0.0,2.608731947574922 -382,26.0,28.0,-0.99553355095268,1.881005840357816 -382,26.0,29.0,-0.6874559028276572,1.293971494797717 -382,27.0,5.0,-4.362844058012917,15.463571542897856 -382,27.0,7.0,-1.4439790613954469,4.540814658476248 -382,27.0,26.0,0.0,2.608731947574922 -382,27.0,27.0,5.806823119408364,-22.67145722159613 -382,28.0,26.0,-0.99553355095268,1.881005840357816 -382,28.0,28.0,1.9075867579849564,-3.604364401207048 -382,28.0,29.0,-0.9120532070322764,1.7233585608492326 -382,29.0,26.0,-0.6874559028276572,1.293971494797717 -382,29.0,28.0,-0.9120532070322764,1.7233585608492326 -382,29.0,29.0,1.5995091098599337,-3.0173300556469496 -383,0.0,0.0,6.765516048652632,-21.23160167089863 -383,0.0,1.0,-5.224646179885656,15.646726840803398 -383,0.0,2.0,-1.5408698687669766,5.631674830095234 -383,1.0,0.0,-5.224646179885656,15.646726840803398 -383,1.0,1.0,9.75228216552403,-30.648662892676068 -383,1.0,3.0,-1.7055303166990268,5.1973792282565086 -383,1.0,4.0,-1.1359607881738778,4.772479328281356 -383,1.0,5.0,-1.6861448807654689,5.116477495334806 -383,2.0,0.0,-1.5408698687669766,5.631674830095234 -383,2.0,2.0,9.736318911079088,-29.13794745915803 -383,2.0,3.0,-8.19544904231211,23.5308726290628 -383,3.0,1.0,-1.7055303166990268,5.1973792282565086 -383,3.0,2.0,-8.19544904231211,23.5308726290628 -383,3.0,3.0,16.314103089185693,-55.509410535254254 -383,3.0,5.0,-6.413123730174556,22.31120356548123 -383,3.0,11.0,0.0,4.191255364806866 -383,4.0,1.0,-1.1359607881738778,4.772479328281356 -383,4.0,4.0,4.089980824135861,-12.190647245055052 -383,4.0,6.0,-2.954020035961983,7.449267916773697 -383,5.0,1.0,-1.6861448807654689,5.116477495334806 -383,5.0,3.0,-6.413123730174556,22.31120356548123 -383,5.0,5.0,22.341631269034565,-77.80272577435625 -383,5.0,6.0,-3.590210423980992,11.02611441072814 -383,5.0,7.0,-6.289308176100628,22.0125786163522 -383,5.0,9.0,0.0,1.8561002591115965 -383,5.0,27.0,-4.362844058012917,15.463571542897856 -383,6.0,4.0,-2.954020035961983,7.449267916773697 -383,6.0,5.0,-3.590210423980992,11.02611441072814 -383,6.0,6.0,6.544230459942975,-18.45668232750184 -383,7.0,5.0,-6.289308176100628,22.0125786163522 -383,7.0,7.0,7.733287237496075,-26.527493274828448 -383,7.0,27.0,-1.4439790613954469,4.540814658476248 -383,8.0,8.0,0.0,-13.8986013986014 -383,8.0,9.0,0.0,9.090909090909092 -383,8.0,10.0,0.0,4.807692307692308 -383,9.0,5.0,0.0,1.8561002591115965 -383,9.0,8.0,0.0,9.090909090909092 -383,9.0,9.0,13.462042814524237,-41.3837606675224 -383,9.0,16.0,-3.956039125715353,10.317447719844054 -383,9.0,19.0,-1.7848303152666305,3.98535828943083 -383,9.0,20.0,-5.101853820159654,10.98071411292983 -383,9.0,21.0,-2.619319553382597,5.400770303329455 -383,10.0,8.0,0.0,4.807692307692308 -383,10.0,10.0,0.0,-4.807692307692308 -383,11.0,3.0,0.0,4.191255364806866 -383,11.0,11.0,6.573961583776156,-24.424167659260668 -383,11.0,12.0,0.0,7.142857142857143 -383,11.0,13.0,-1.5265676088395577,3.1734252729654173 -383,11.0,14.0,-3.0953961826564296,6.097275864326261 -383,11.0,15.0,-1.9519977922801688,4.104359379111847 -383,12.0,11.0,0.0,7.142857142857143 -383,12.0,12.0,0.0,-7.142857142857143 -383,13.0,11.0,-1.5265676088395577,3.1734252729654173 -383,13.0,13.0,4.01751987283902,-5.424299332335067 -383,13.0,14.0,-2.4909522639994623,2.250874059369649 -383,14.0,11.0,-3.0953961826564296,6.097275864326261 -383,14.0,13.0,-2.4909522639994623,2.250874059369649 -383,14.0,14.0,9.365498545964757,-16.01163373210796 -383,14.0,17.0,-1.8108011504072024,3.687418931630696 -383,14.0,22.0,-1.9683489489016612,3.976064876781356 -383,15.0,11.0,-1.9519977922801688,4.104359379111847 -383,15.0,15.0,3.271064728633931,-8.94513365126506 -383,15.0,16.0,-1.3190669363537617,4.8407742721532125 -383,16.0,9.0,-3.956039125715353,10.317447719844054 -383,16.0,15.0,-1.3190669363537617,4.8407742721532125 -383,16.0,16.0,5.275106062069114,-15.158221991997266 -383,17.0,14.0,-1.8108011504072024,3.687418931630696 -383,17.0,17.0,4.886487584415919,-9.906177730909668 -383,17.0,18.0,-3.0756864340087167,6.218758799278971 -383,18.0,17.0,-3.0756864340087167,6.218758799278971 -383,18.0,18.0,3.0756864340087167,-6.218758799278971 -383,19.0,9.0,-1.7848303152666305,3.98535828943083 -383,19.0,19.0,1.7848303152666305,-3.98535828943083 -383,20.0,9.0,-5.101853820159654,10.98071411292983 -383,20.0,20.0,21.876495189895888,-45.10843276170355 -383,20.0,21.0,-16.774641369736234,34.127718648773715 -383,21.0,9.0,-2.619319553382597,5.400770303329455 -383,21.0,20.0,-16.774641369736234,34.127718648773715 -383,21.0,21.0,21.93449907537439,-43.48289181517921 -383,21.0,23.0,-2.5405381522555563,3.95440286307604 -383,22.0,14.0,-1.9683489489016612,3.976064876781356 -383,22.0,22.0,3.429754555384988,-6.965303617315433 -383,22.0,23.0,-1.4614056064833263,2.989238740534077 -383,23.0,21.0,-2.5405381522555563,3.95440286307604 -383,23.0,22.0,-1.4614056064833263,2.989238740534077 -383,23.0,23.0,5.311836702613133,-9.188263657315172 -383,23.0,24.0,-1.3098929438742493,2.287622053705056 -383,24.0,23.0,-1.3098929438742493,2.287622053705056 -383,24.0,24.0,4.495715080321987,-7.864978761969621 -383,24.0,25.0,-1.2165301194494855,1.8171440463475024 -383,24.0,26.0,-1.9692920169982515,3.760212661917064 -383,25.0,24.0,-1.2165301194494855,1.8171440463475024 -383,25.0,25.0,1.2165301194494855,-1.8171440463475024 -383,26.0,24.0,-1.9692920169982515,3.760212661917064 -383,26.0,26.0,3.652281470778589,-9.46044252232512 -383,26.0,27.0,0.0,2.608731947574922 -383,26.0,28.0,-0.99553355095268,1.881005840357816 -383,26.0,29.0,-0.6874559028276572,1.293971494797717 -383,27.0,5.0,-4.362844058012917,15.463571542897856 -383,27.0,7.0,-1.4439790613954469,4.540814658476248 -383,27.0,26.0,0.0,2.608731947574922 -383,27.0,27.0,5.806823119408364,-22.67145722159613 -383,28.0,26.0,-0.99553355095268,1.881005840357816 -383,28.0,28.0,1.9075867579849564,-3.604364401207048 -383,28.0,29.0,-0.9120532070322764,1.7233585608492326 -383,29.0,26.0,-0.6874559028276572,1.293971494797717 -383,29.0,28.0,-0.9120532070322764,1.7233585608492326 -383,29.0,29.0,1.5995091098599337,-3.0173300556469496 -384,0.0,0.0,6.765516048652632,-21.23160167089863 -384,0.0,1.0,-5.224646179885656,15.646726840803398 -384,0.0,2.0,-1.5408698687669766,5.631674830095234 -384,1.0,0.0,-5.224646179885656,15.646726840803398 -384,1.0,1.0,8.61632137735015,-25.897083564394716 -384,1.0,3.0,-1.7055303166990268,5.1973792282565086 -384,1.0,5.0,-1.6861448807654689,5.116477495334806 -384,2.0,0.0,-1.5408698687669766,5.631674830095234 -384,2.0,2.0,9.736318911079088,-29.13794745915803 -384,2.0,3.0,-8.19544904231211,23.5308726290628 -384,3.0,1.0,-1.7055303166990268,5.1973792282565086 -384,3.0,2.0,-8.19544904231211,23.5308726290628 -384,3.0,3.0,16.314103089185693,-55.509410535254254 -384,3.0,5.0,-6.413123730174556,22.31120356548123 -384,3.0,11.0,0.0,4.191255364806866 -384,4.0,4.0,2.954020035961983,-7.439067916773697 -384,4.0,6.0,-2.954020035961983,7.449267916773697 -384,5.0,1.0,-1.6861448807654689,5.116477495334806 -384,5.0,3.0,-6.413123730174556,22.31120356548123 -384,5.0,5.0,22.341631269034565,-82.8291478657789 -384,5.0,6.0,-3.590210423980992,11.02611441072814 -384,5.0,7.0,-6.289308176100628,22.0125786163522 -384,5.0,8.0,0.0,4.915840805411357 -384,5.0,9.0,0.0,1.8561002591115965 -384,5.0,27.0,-4.362844058012917,15.463571542897856 -384,6.0,4.0,-2.954020035961983,7.449267916773697 -384,6.0,5.0,-3.590210423980992,11.02611441072814 -384,6.0,6.0,6.544230459942975,-18.45668232750184 -384,7.0,5.0,-6.289308176100628,22.0125786163522 -384,7.0,7.0,7.733287237496075,-26.527493274828448 -384,7.0,27.0,-1.4439790613954469,4.540814658476248 -384,8.0,5.0,0.0,4.915840805411357 -384,8.0,8.0,0.0,-18.706293706293707 -384,8.0,9.0,0.0,9.090909090909092 -384,8.0,10.0,0.0,4.807692307692308 -384,9.0,5.0,0.0,1.8561002591115965 -384,9.0,8.0,0.0,9.090909090909092 -384,9.0,9.0,13.462042814524237,-41.3837606675224 -384,9.0,16.0,-3.956039125715353,10.317447719844054 -384,9.0,19.0,-1.7848303152666305,3.98535828943083 -384,9.0,20.0,-5.101853820159654,10.98071411292983 -384,9.0,21.0,-2.619319553382597,5.400770303329455 -384,10.0,8.0,0.0,4.807692307692308 -384,10.0,10.0,0.0,-4.807692307692308 -384,11.0,3.0,0.0,4.191255364806866 -384,11.0,11.0,1.5265676088395577,-14.22253241582256 -384,11.0,12.0,0.0,7.142857142857143 -384,11.0,13.0,-1.5265676088395577,3.1734252729654173 -384,12.0,11.0,0.0,7.142857142857143 -384,12.0,12.0,0.0,-7.142857142857143 -384,13.0,11.0,-1.5265676088395577,3.1734252729654173 -384,13.0,13.0,4.01751987283902,-5.424299332335067 -384,13.0,14.0,-2.4909522639994623,2.250874059369649 -384,14.0,13.0,-2.4909522639994623,2.250874059369649 -384,14.0,14.0,6.270102363308326,-9.9143578677817 -384,14.0,17.0,-1.8108011504072024,3.687418931630696 -384,14.0,22.0,-1.9683489489016612,3.976064876781356 -384,15.0,15.0,1.3190669363537617,-4.8407742721532125 -384,15.0,16.0,-1.3190669363537617,4.8407742721532125 -384,16.0,9.0,-3.956039125715353,10.317447719844054 -384,16.0,15.0,-1.3190669363537617,4.8407742721532125 -384,16.0,16.0,5.275106062069114,-15.158221991997266 -384,17.0,14.0,-1.8108011504072024,3.687418931630696 -384,17.0,17.0,4.886487584415919,-9.906177730909668 -384,17.0,18.0,-3.0756864340087167,6.218758799278971 -384,18.0,17.0,-3.0756864340087167,6.218758799278971 -384,18.0,18.0,8.958039375185187,-17.98346468163191 -384,18.0,19.0,-5.88235294117647,11.76470588235294 -384,19.0,9.0,-1.7848303152666305,3.98535828943083 -384,19.0,18.0,-5.88235294117647,11.76470588235294 -384,19.0,19.0,7.6671832564431,-15.75006417178377 -384,20.0,9.0,-5.101853820159654,10.98071411292983 -384,20.0,20.0,21.876495189895888,-45.10843276170355 -384,20.0,21.0,-16.774641369736234,34.127718648773715 -384,21.0,9.0,-2.619319553382597,5.400770303329455 -384,21.0,20.0,-16.774641369736234,34.127718648773715 -384,21.0,21.0,21.93449907537439,-43.48289181517921 -384,21.0,23.0,-2.5405381522555563,3.95440286307604 -384,22.0,14.0,-1.9683489489016612,3.976064876781356 -384,22.0,22.0,3.429754555384988,-6.965303617315433 -384,22.0,23.0,-1.4614056064833263,2.989238740534077 -384,23.0,21.0,-2.5405381522555563,3.95440286307604 -384,23.0,22.0,-1.4614056064833263,2.989238740534077 -384,23.0,23.0,5.311836702613133,-9.188263657315172 -384,23.0,24.0,-1.3098929438742493,2.287622053705056 -384,24.0,23.0,-1.3098929438742493,2.287622053705056 -384,24.0,24.0,4.495715080321987,-7.864978761969621 -384,24.0,25.0,-1.2165301194494855,1.8171440463475024 -384,24.0,26.0,-1.9692920169982515,3.760212661917064 -384,25.0,24.0,-1.2165301194494855,1.8171440463475024 -384,25.0,25.0,1.2165301194494855,-1.8171440463475024 -384,26.0,24.0,-1.9692920169982515,3.760212661917064 -384,26.0,26.0,3.652281470778589,-9.46044252232512 -384,26.0,27.0,0.0,2.608731947574922 -384,26.0,28.0,-0.99553355095268,1.881005840357816 -384,26.0,29.0,-0.6874559028276572,1.293971494797717 -384,27.0,5.0,-4.362844058012917,15.463571542897856 -384,27.0,7.0,-1.4439790613954469,4.540814658476248 -384,27.0,26.0,0.0,2.608731947574922 -384,27.0,27.0,5.806823119408364,-22.67145722159613 -384,28.0,26.0,-0.99553355095268,1.881005840357816 -384,28.0,28.0,1.9075867579849564,-3.604364401207048 -384,28.0,29.0,-0.9120532070322764,1.7233585608492326 -384,29.0,26.0,-0.6874559028276572,1.293971494797717 -384,29.0,28.0,-0.9120532070322764,1.7233585608492326 -384,29.0,29.0,1.5995091098599337,-3.0173300556469496 -385,0.0,0.0,6.765516048652632,-21.23160167089863 -385,0.0,1.0,-5.224646179885656,15.646726840803398 -385,0.0,2.0,-1.5408698687669766,5.631674830095234 -385,1.0,0.0,-5.224646179885656,15.646726840803398 -385,1.0,1.0,9.75228216552403,-30.648662892676068 -385,1.0,3.0,-1.7055303166990268,5.1973792282565086 -385,1.0,4.0,-1.1359607881738778,4.772479328281356 -385,1.0,5.0,-1.6861448807654689,5.116477495334806 -385,2.0,0.0,-1.5408698687669766,5.631674830095234 -385,2.0,2.0,9.736318911079088,-29.13794745915803 -385,2.0,3.0,-8.19544904231211,23.5308726290628 -385,3.0,1.0,-1.7055303166990268,5.1973792282565086 -385,3.0,2.0,-8.19544904231211,23.5308726290628 -385,3.0,3.0,16.314103089185693,-55.509410535254254 -385,3.0,5.0,-6.413123730174556,22.31120356548123 -385,3.0,11.0,0.0,4.191255364806866 -385,4.0,1.0,-1.1359607881738778,4.772479328281356 -385,4.0,4.0,4.089980824135861,-12.190647245055052 -385,4.0,6.0,-2.954020035961983,7.449267916773697 -385,5.0,1.0,-1.6861448807654689,5.116477495334806 -385,5.0,3.0,-6.413123730174556,22.31120356548123 -385,5.0,5.0,16.052323092933932,-58.905589105864685 -385,5.0,6.0,-3.590210423980992,11.02611441072814 -385,5.0,8.0,0.0,4.915840805411357 -385,5.0,27.0,-4.362844058012917,15.463571542897856 -385,6.0,4.0,-2.954020035961983,7.449267916773697 -385,6.0,5.0,-3.590210423980992,11.02611441072814 -385,6.0,6.0,6.544230459942975,-18.45668232750184 -385,7.0,7.0,1.4439790613954469,-4.519414658476248 -385,7.0,27.0,-1.4439790613954469,4.540814658476248 -385,8.0,5.0,0.0,4.915840805411357 -385,8.0,8.0,0.0,-18.706293706293707 -385,8.0,9.0,0.0,9.090909090909092 -385,8.0,10.0,0.0,4.807692307692308 -385,9.0,8.0,0.0,9.090909090909092 -385,9.0,9.0,9.506003688808882,-29.267751796599203 -385,9.0,19.0,-1.7848303152666305,3.98535828943083 -385,9.0,20.0,-5.101853820159654,10.98071411292983 -385,9.0,21.0,-2.619319553382597,5.400770303329455 -385,10.0,8.0,0.0,4.807692307692308 -385,10.0,10.0,0.0,-4.807692307692308 -385,11.0,3.0,0.0,4.191255364806866 -385,11.0,11.0,6.573961583776156,-24.424167659260668 -385,11.0,12.0,0.0,7.142857142857143 -385,11.0,13.0,-1.5265676088395577,3.1734252729654173 -385,11.0,14.0,-3.0953961826564296,6.097275864326261 -385,11.0,15.0,-1.9519977922801688,4.104359379111847 -385,12.0,11.0,0.0,7.142857142857143 -385,12.0,12.0,0.0,-7.142857142857143 -385,13.0,11.0,-1.5265676088395577,3.1734252729654173 -385,13.0,13.0,1.5265676088395577,-3.1734252729654173 -385,14.0,11.0,-3.0953961826564296,6.097275864326261 -385,14.0,14.0,6.874546281965293,-13.760759672738311 -385,14.0,17.0,-1.8108011504072024,3.687418931630696 -385,14.0,22.0,-1.9683489489016612,3.976064876781356 -385,15.0,11.0,-1.9519977922801688,4.104359379111847 -385,15.0,15.0,3.271064728633931,-8.94513365126506 -385,15.0,16.0,-1.3190669363537617,4.8407742721532125 -385,16.0,15.0,-1.3190669363537617,4.8407742721532125 -385,16.0,16.0,1.3190669363537617,-4.8407742721532125 -385,17.0,14.0,-1.8108011504072024,3.687418931630696 -385,17.0,17.0,4.886487584415919,-9.906177730909668 -385,17.0,18.0,-3.0756864340087167,6.218758799278971 -385,18.0,17.0,-3.0756864340087167,6.218758799278971 -385,18.0,18.0,8.958039375185187,-17.98346468163191 -385,18.0,19.0,-5.88235294117647,11.76470588235294 -385,19.0,9.0,-1.7848303152666305,3.98535828943083 -385,19.0,18.0,-5.88235294117647,11.76470588235294 -385,19.0,19.0,7.6671832564431,-15.75006417178377 -385,20.0,9.0,-5.101853820159654,10.98071411292983 -385,20.0,20.0,21.876495189895888,-45.10843276170355 -385,20.0,21.0,-16.774641369736234,34.127718648773715 -385,21.0,9.0,-2.619319553382597,5.400770303329455 -385,21.0,20.0,-16.774641369736234,34.127718648773715 -385,21.0,21.0,19.393960923118836,-39.52848895210317 -385,22.0,14.0,-1.9683489489016612,3.976064876781356 -385,22.0,22.0,3.429754555384988,-6.965303617315433 -385,22.0,23.0,-1.4614056064833263,2.989238740534077 -385,23.0,22.0,-1.4614056064833263,2.989238740534077 -385,23.0,23.0,2.771298550357576,-5.233860794239132 -385,23.0,24.0,-1.3098929438742493,2.287622053705056 -385,24.0,23.0,-1.3098929438742493,2.287622053705056 -385,24.0,24.0,4.495715080321987,-7.864978761969621 -385,24.0,25.0,-1.2165301194494855,1.8171440463475024 -385,24.0,26.0,-1.9692920169982515,3.760212661917064 -385,25.0,24.0,-1.2165301194494855,1.8171440463475024 -385,25.0,25.0,1.2165301194494855,-1.8171440463475024 -385,26.0,24.0,-1.9692920169982515,3.760212661917064 -385,26.0,26.0,2.9648255679509314,-8.166471027527404 -385,26.0,27.0,0.0,2.608731947574922 -385,26.0,28.0,-0.99553355095268,1.881005840357816 -385,27.0,5.0,-4.362844058012917,15.463571542897856 -385,27.0,7.0,-1.4439790613954469,4.540814658476248 -385,27.0,26.0,0.0,2.608731947574922 -385,27.0,27.0,5.806823119408364,-22.67145722159613 -385,28.0,26.0,-0.99553355095268,1.881005840357816 -385,28.0,28.0,1.9075867579849564,-3.604364401207048 -385,28.0,29.0,-0.9120532070322764,1.7233585608492326 -385,29.0,28.0,-0.9120532070322764,1.7233585608492326 -385,29.0,29.0,0.9120532070322764,-1.7233585608492326 -386,0.0,0.0,6.765516048652632,-21.23160167089863 -386,0.0,1.0,-5.224646179885656,15.646726840803398 -386,0.0,2.0,-1.5408698687669766,5.631674830095234 -386,1.0,0.0,-5.224646179885656,15.646726840803398 -386,1.0,1.0,9.75228216552403,-30.648662892676068 -386,1.0,3.0,-1.7055303166990268,5.1973792282565086 -386,1.0,4.0,-1.1359607881738778,4.772479328281356 -386,1.0,5.0,-1.6861448807654689,5.116477495334806 -386,2.0,0.0,-1.5408698687669766,5.631674830095234 -386,2.0,2.0,9.736318911079088,-29.13794745915803 -386,2.0,3.0,-8.19544904231211,23.5308726290628 -386,3.0,1.0,-1.7055303166990268,5.1973792282565086 -386,3.0,2.0,-8.19544904231211,23.5308726290628 -386,3.0,3.0,16.314103089185693,-55.509410535254254 -386,3.0,5.0,-6.413123730174556,22.31120356548123 -386,3.0,11.0,0.0,4.191255364806866 -386,4.0,1.0,-1.1359607881738778,4.772479328281356 -386,4.0,4.0,4.089980824135861,-12.190647245055052 -386,4.0,6.0,-2.954020035961983,7.449267916773697 -386,5.0,1.0,-1.6861448807654689,5.116477495334806 -386,5.0,3.0,-6.413123730174556,22.31120356548123 -386,5.0,5.0,22.341631269034565,-82.8291478657789 -386,5.0,6.0,-3.590210423980992,11.02611441072814 -386,5.0,7.0,-6.289308176100628,22.0125786163522 -386,5.0,8.0,0.0,4.915840805411357 -386,5.0,9.0,0.0,1.8561002591115965 -386,5.0,27.0,-4.362844058012917,15.463571542897856 -386,6.0,4.0,-2.954020035961983,7.449267916773697 -386,6.0,5.0,-3.590210423980992,11.02611441072814 -386,6.0,6.0,6.544230459942975,-18.45668232750184 -386,7.0,5.0,-6.289308176100628,22.0125786163522 -386,7.0,7.0,7.733287237496075,-26.527493274828448 -386,7.0,27.0,-1.4439790613954469,4.540814658476248 -386,8.0,5.0,0.0,4.915840805411357 -386,8.0,8.0,0.0,-18.706293706293707 -386,8.0,9.0,0.0,9.090909090909092 -386,8.0,10.0,0.0,4.807692307692308 -386,9.0,5.0,0.0,1.8561002591115965 -386,9.0,8.0,0.0,9.090909090909092 -386,9.0,9.0,13.462042814524237,-41.3837606675224 -386,9.0,16.0,-3.956039125715353,10.317447719844054 -386,9.0,19.0,-1.7848303152666305,3.98535828943083 -386,9.0,20.0,-5.101853820159654,10.98071411292983 -386,9.0,21.0,-2.619319553382597,5.400770303329455 -386,10.0,8.0,0.0,4.807692307692308 -386,10.0,10.0,0.0,-4.807692307692308 -386,11.0,3.0,0.0,4.191255364806866 -386,11.0,11.0,6.573961583776156,-24.424167659260668 -386,11.0,12.0,0.0,7.142857142857143 -386,11.0,13.0,-1.5265676088395577,3.1734252729654173 -386,11.0,14.0,-3.0953961826564296,6.097275864326261 -386,11.0,15.0,-1.9519977922801688,4.104359379111847 -386,12.0,11.0,0.0,7.142857142857143 -386,12.0,12.0,0.0,-7.142857142857143 -386,13.0,11.0,-1.5265676088395577,3.1734252729654173 -386,13.0,13.0,4.01751987283902,-5.424299332335067 -386,13.0,14.0,-2.4909522639994623,2.250874059369649 -386,14.0,11.0,-3.0953961826564296,6.097275864326261 -386,14.0,13.0,-2.4909522639994623,2.250874059369649 -386,14.0,14.0,9.365498545964757,-16.01163373210796 -386,14.0,17.0,-1.8108011504072024,3.687418931630696 -386,14.0,22.0,-1.9683489489016612,3.976064876781356 -386,15.0,11.0,-1.9519977922801688,4.104359379111847 -386,15.0,15.0,3.271064728633931,-8.94513365126506 -386,15.0,16.0,-1.3190669363537617,4.8407742721532125 -386,16.0,9.0,-3.956039125715353,10.317447719844054 -386,16.0,15.0,-1.3190669363537617,4.8407742721532125 -386,16.0,16.0,5.275106062069114,-15.158221991997266 -386,17.0,14.0,-1.8108011504072024,3.687418931630696 -386,17.0,17.0,4.886487584415919,-9.906177730909668 -386,17.0,18.0,-3.0756864340087167,6.218758799278971 -386,18.0,17.0,-3.0756864340087167,6.218758799278971 -386,18.0,18.0,8.958039375185187,-17.98346468163191 -386,18.0,19.0,-5.88235294117647,11.76470588235294 -386,19.0,9.0,-1.7848303152666305,3.98535828943083 -386,19.0,18.0,-5.88235294117647,11.76470588235294 -386,19.0,19.0,7.6671832564431,-15.75006417178377 -386,20.0,9.0,-5.101853820159654,10.98071411292983 -386,20.0,20.0,21.876495189895888,-45.10843276170355 -386,20.0,21.0,-16.774641369736234,34.127718648773715 -386,21.0,9.0,-2.619319553382597,5.400770303329455 -386,21.0,20.0,-16.774641369736234,34.127718648773715 -386,21.0,21.0,21.93449907537439,-43.48289181517921 -386,21.0,23.0,-2.5405381522555563,3.95440286307604 -386,22.0,14.0,-1.9683489489016612,3.976064876781356 -386,22.0,22.0,3.429754555384988,-6.965303617315433 -386,22.0,23.0,-1.4614056064833263,2.989238740534077 -386,23.0,21.0,-2.5405381522555563,3.95440286307604 -386,23.0,22.0,-1.4614056064833263,2.989238740534077 -386,23.0,23.0,5.311836702613133,-9.188263657315172 -386,23.0,24.0,-1.3098929438742493,2.287622053705056 -386,24.0,23.0,-1.3098929438742493,2.287622053705056 -386,24.0,24.0,4.495715080321987,-7.864978761969621 -386,24.0,25.0,-1.2165301194494855,1.8171440463475024 -386,24.0,26.0,-1.9692920169982515,3.760212661917064 -386,25.0,24.0,-1.2165301194494855,1.8171440463475024 -386,25.0,25.0,1.2165301194494855,-1.8171440463475024 -386,26.0,24.0,-1.9692920169982515,3.760212661917064 -386,26.0,26.0,3.652281470778589,-9.46044252232512 -386,26.0,27.0,0.0,2.608731947574922 -386,26.0,28.0,-0.99553355095268,1.881005840357816 -386,26.0,29.0,-0.6874559028276572,1.293971494797717 -386,27.0,5.0,-4.362844058012917,15.463571542897856 -386,27.0,7.0,-1.4439790613954469,4.540814658476248 -386,27.0,26.0,0.0,2.608731947574922 -386,27.0,27.0,5.806823119408364,-22.67145722159613 -386,28.0,26.0,-0.99553355095268,1.881005840357816 -386,28.0,28.0,1.9075867579849564,-3.604364401207048 -386,28.0,29.0,-0.9120532070322764,1.7233585608492326 -386,29.0,26.0,-0.6874559028276572,1.293971494797717 -386,29.0,28.0,-0.9120532070322764,1.7233585608492326 -386,29.0,29.0,1.5995091098599337,-3.0173300556469496 -387,0.0,0.0,5.224646179885656,-15.620326840803395 -387,0.0,1.0,-5.224646179885656,15.646726840803398 -387,1.0,0.0,-5.224646179885656,15.646726840803398 -387,1.0,1.0,9.75228216552403,-30.648662892676068 -387,1.0,3.0,-1.7055303166990268,5.1973792282565086 -387,1.0,4.0,-1.1359607881738778,4.772479328281356 -387,1.0,5.0,-1.6861448807654689,5.116477495334806 -387,2.0,2.0,8.19544904231211,-23.5266726290628 -387,2.0,3.0,-8.19544904231211,23.5308726290628 -387,3.0,1.0,-1.7055303166990268,5.1973792282565086 -387,3.0,2.0,-8.19544904231211,23.5308726290628 -387,3.0,3.0,16.314103089185693,-55.509410535254254 -387,3.0,5.0,-6.413123730174556,22.31120356548123 -387,3.0,11.0,0.0,4.191255364806866 -387,4.0,1.0,-1.1359607881738778,4.772479328281356 -387,4.0,4.0,4.089980824135861,-12.190647245055052 -387,4.0,6.0,-2.954020035961983,7.449267916773697 -387,5.0,1.0,-1.6861448807654689,5.116477495334806 -387,5.0,3.0,-6.413123730174556,22.31120356548123 -387,5.0,5.0,22.341631269034565,-82.8291478657789 -387,5.0,6.0,-3.590210423980992,11.02611441072814 -387,5.0,7.0,-6.289308176100628,22.0125786163522 -387,5.0,8.0,0.0,4.915840805411357 -387,5.0,9.0,0.0,1.8561002591115965 -387,5.0,27.0,-4.362844058012917,15.463571542897856 -387,6.0,4.0,-2.954020035961983,7.449267916773697 -387,6.0,5.0,-3.590210423980992,11.02611441072814 -387,6.0,6.0,6.544230459942975,-18.45668232750184 -387,7.0,5.0,-6.289308176100628,22.0125786163522 -387,7.0,7.0,7.733287237496075,-26.527493274828448 -387,7.0,27.0,-1.4439790613954469,4.540814658476248 -387,8.0,5.0,0.0,4.915840805411357 -387,8.0,8.0,0.0,-18.706293706293707 -387,8.0,9.0,0.0,9.090909090909092 -387,8.0,10.0,0.0,4.807692307692308 -387,9.0,5.0,0.0,1.8561002591115965 -387,9.0,8.0,0.0,9.090909090909092 -387,9.0,9.0,13.462042814524237,-41.3837606675224 -387,9.0,16.0,-3.956039125715353,10.317447719844054 -387,9.0,19.0,-1.7848303152666305,3.98535828943083 -387,9.0,20.0,-5.101853820159654,10.98071411292983 -387,9.0,21.0,-2.619319553382597,5.400770303329455 -387,10.0,8.0,0.0,4.807692307692308 -387,10.0,10.0,0.0,-4.807692307692308 -387,11.0,3.0,0.0,4.191255364806866 -387,11.0,11.0,6.573961583776156,-24.424167659260668 -387,11.0,12.0,0.0,7.142857142857143 -387,11.0,13.0,-1.5265676088395577,3.1734252729654173 -387,11.0,14.0,-3.0953961826564296,6.097275864326261 -387,11.0,15.0,-1.9519977922801688,4.104359379111847 -387,12.0,11.0,0.0,7.142857142857143 -387,12.0,12.0,0.0,-7.142857142857143 -387,13.0,11.0,-1.5265676088395577,3.1734252729654173 -387,13.0,13.0,4.01751987283902,-5.424299332335067 -387,13.0,14.0,-2.4909522639994623,2.250874059369649 -387,14.0,11.0,-3.0953961826564296,6.097275864326261 -387,14.0,13.0,-2.4909522639994623,2.250874059369649 -387,14.0,14.0,7.554697395557554,-12.324214800477266 -387,14.0,22.0,-1.9683489489016612,3.976064876781356 -387,15.0,11.0,-1.9519977922801688,4.104359379111847 -387,15.0,15.0,3.271064728633931,-8.94513365126506 -387,15.0,16.0,-1.3190669363537617,4.8407742721532125 -387,16.0,9.0,-3.956039125715353,10.317447719844054 -387,16.0,15.0,-1.3190669363537617,4.8407742721532125 -387,16.0,16.0,5.275106062069114,-15.158221991997266 -387,17.0,17.0,3.0756864340087167,-6.218758799278971 -387,17.0,18.0,-3.0756864340087167,6.218758799278971 -387,18.0,17.0,-3.0756864340087167,6.218758799278971 -387,18.0,18.0,8.958039375185187,-17.98346468163191 -387,18.0,19.0,-5.88235294117647,11.76470588235294 -387,19.0,9.0,-1.7848303152666305,3.98535828943083 -387,19.0,18.0,-5.88235294117647,11.76470588235294 -387,19.0,19.0,7.6671832564431,-15.75006417178377 -387,20.0,9.0,-5.101853820159654,10.98071411292983 -387,20.0,20.0,21.876495189895888,-45.10843276170355 -387,20.0,21.0,-16.774641369736234,34.127718648773715 -387,21.0,9.0,-2.619319553382597,5.400770303329455 -387,21.0,20.0,-16.774641369736234,34.127718648773715 -387,21.0,21.0,21.93449907537439,-43.48289181517921 -387,21.0,23.0,-2.5405381522555563,3.95440286307604 -387,22.0,14.0,-1.9683489489016612,3.976064876781356 -387,22.0,22.0,3.429754555384988,-6.965303617315433 -387,22.0,23.0,-1.4614056064833263,2.989238740534077 -387,23.0,21.0,-2.5405381522555563,3.95440286307604 -387,23.0,22.0,-1.4614056064833263,2.989238740534077 -387,23.0,23.0,5.311836702613133,-9.188263657315172 -387,23.0,24.0,-1.3098929438742493,2.287622053705056 -387,24.0,23.0,-1.3098929438742493,2.287622053705056 -387,24.0,24.0,4.495715080321987,-7.864978761969621 -387,24.0,25.0,-1.2165301194494855,1.8171440463475024 -387,24.0,26.0,-1.9692920169982515,3.760212661917064 -387,25.0,24.0,-1.2165301194494855,1.8171440463475024 -387,25.0,25.0,1.2165301194494855,-1.8171440463475024 -387,26.0,24.0,-1.9692920169982515,3.760212661917064 -387,26.0,26.0,3.652281470778589,-9.46044252232512 -387,26.0,27.0,0.0,2.608731947574922 -387,26.0,28.0,-0.99553355095268,1.881005840357816 -387,26.0,29.0,-0.6874559028276572,1.293971494797717 -387,27.0,5.0,-4.362844058012917,15.463571542897856 -387,27.0,7.0,-1.4439790613954469,4.540814658476248 -387,27.0,26.0,0.0,2.608731947574922 -387,27.0,27.0,5.806823119408364,-22.67145722159613 -387,28.0,26.0,-0.99553355095268,1.881005840357816 -387,28.0,28.0,1.9075867579849564,-3.604364401207048 -387,28.0,29.0,-0.9120532070322764,1.7233585608492326 -387,29.0,26.0,-0.6874559028276572,1.293971494797717 -387,29.0,28.0,-0.9120532070322764,1.7233585608492326 -387,29.0,29.0,1.5995091098599337,-3.0173300556469496 -388,0.0,0.0,6.765516048652632,-21.23160167089863 -388,0.0,1.0,-5.224646179885656,15.646726840803398 -388,0.0,2.0,-1.5408698687669766,5.631674830095234 -388,1.0,0.0,-5.224646179885656,15.646726840803398 -388,1.0,1.0,9.75228216552403,-30.648662892676068 -388,1.0,3.0,-1.7055303166990268,5.1973792282565086 -388,1.0,4.0,-1.1359607881738778,4.772479328281356 -388,1.0,5.0,-1.6861448807654689,5.116477495334806 -388,2.0,0.0,-1.5408698687669766,5.631674830095234 -388,2.0,2.0,9.736318911079088,-29.13794745915803 -388,2.0,3.0,-8.19544904231211,23.5308726290628 -388,3.0,1.0,-1.7055303166990268,5.1973792282565086 -388,3.0,2.0,-8.19544904231211,23.5308726290628 -388,3.0,3.0,16.314103089185693,-55.509410535254254 -388,3.0,5.0,-6.413123730174556,22.31120356548123 -388,3.0,11.0,0.0,4.191255364806866 -388,4.0,1.0,-1.1359607881738778,4.772479328281356 -388,4.0,4.0,4.089980824135861,-12.190647245055052 -388,4.0,6.0,-2.954020035961983,7.449267916773697 -388,5.0,1.0,-1.6861448807654689,5.116477495334806 -388,5.0,3.0,-6.413123730174556,22.31120356548123 -388,5.0,5.0,22.341631269034565,-82.8291478657789 -388,5.0,6.0,-3.590210423980992,11.02611441072814 -388,5.0,7.0,-6.289308176100628,22.0125786163522 -388,5.0,8.0,0.0,4.915840805411357 -388,5.0,9.0,0.0,1.8561002591115965 -388,5.0,27.0,-4.362844058012917,15.463571542897856 -388,6.0,4.0,-2.954020035961983,7.449267916773697 -388,6.0,5.0,-3.590210423980992,11.02611441072814 -388,6.0,6.0,6.544230459942975,-18.45668232750184 -388,7.0,5.0,-6.289308176100628,22.0125786163522 -388,7.0,7.0,7.733287237496075,-26.527493274828448 -388,7.0,27.0,-1.4439790613954469,4.540814658476248 -388,8.0,5.0,0.0,4.915840805411357 -388,8.0,8.0,0.0,-18.706293706293707 -388,8.0,9.0,0.0,9.090909090909092 -388,8.0,10.0,0.0,4.807692307692308 -388,9.0,5.0,0.0,1.8561002591115965 -388,9.0,8.0,0.0,9.090909090909092 -388,9.0,9.0,13.462042814524237,-41.3837606675224 -388,9.0,16.0,-3.956039125715353,10.317447719844054 -388,9.0,19.0,-1.7848303152666305,3.98535828943083 -388,9.0,20.0,-5.101853820159654,10.98071411292983 -388,9.0,21.0,-2.619319553382597,5.400770303329455 -388,10.0,8.0,0.0,4.807692307692308 -388,10.0,10.0,0.0,-4.807692307692308 -388,11.0,3.0,0.0,4.191255364806866 -388,11.0,11.0,6.573961583776156,-24.424167659260668 -388,11.0,12.0,0.0,7.142857142857143 -388,11.0,13.0,-1.5265676088395577,3.1734252729654173 -388,11.0,14.0,-3.0953961826564296,6.097275864326261 -388,11.0,15.0,-1.9519977922801688,4.104359379111847 -388,12.0,11.0,0.0,7.142857142857143 -388,12.0,12.0,0.0,-7.142857142857143 -388,13.0,11.0,-1.5265676088395577,3.1734252729654173 -388,13.0,13.0,4.01751987283902,-5.424299332335067 -388,13.0,14.0,-2.4909522639994623,2.250874059369649 -388,14.0,11.0,-3.0953961826564296,6.097275864326261 -388,14.0,13.0,-2.4909522639994623,2.250874059369649 -388,14.0,14.0,9.365498545964757,-16.01163373210796 -388,14.0,17.0,-1.8108011504072024,3.687418931630696 -388,14.0,22.0,-1.9683489489016612,3.976064876781356 -388,15.0,11.0,-1.9519977922801688,4.104359379111847 -388,15.0,15.0,3.271064728633931,-8.94513365126506 -388,15.0,16.0,-1.3190669363537617,4.8407742721532125 -388,16.0,9.0,-3.956039125715353,10.317447719844054 -388,16.0,15.0,-1.3190669363537617,4.8407742721532125 -388,16.0,16.0,5.275106062069114,-15.158221991997266 -388,17.0,14.0,-1.8108011504072024,3.687418931630696 -388,17.0,17.0,4.886487584415919,-9.906177730909668 -388,17.0,18.0,-3.0756864340087167,6.218758799278971 -388,18.0,17.0,-3.0756864340087167,6.218758799278971 -388,18.0,18.0,8.958039375185187,-17.98346468163191 -388,18.0,19.0,-5.88235294117647,11.76470588235294 -388,19.0,9.0,-1.7848303152666305,3.98535828943083 -388,19.0,18.0,-5.88235294117647,11.76470588235294 -388,19.0,19.0,7.6671832564431,-15.75006417178377 -388,20.0,9.0,-5.101853820159654,10.98071411292983 -388,20.0,20.0,21.876495189895888,-45.10843276170355 -388,20.0,21.0,-16.774641369736234,34.127718648773715 -388,21.0,9.0,-2.619319553382597,5.400770303329455 -388,21.0,20.0,-16.774641369736234,34.127718648773715 -388,21.0,21.0,21.93449907537439,-43.48289181517921 -388,21.0,23.0,-2.5405381522555563,3.95440286307604 -388,22.0,14.0,-1.9683489489016612,3.976064876781356 -388,22.0,22.0,3.429754555384988,-6.965303617315433 -388,22.0,23.0,-1.4614056064833263,2.989238740534077 -388,23.0,21.0,-2.5405381522555563,3.95440286307604 -388,23.0,22.0,-1.4614056064833263,2.989238740534077 -388,23.0,23.0,5.311836702613133,-9.188263657315172 -388,23.0,24.0,-1.3098929438742493,2.287622053705056 -388,24.0,23.0,-1.3098929438742493,2.287622053705056 -388,24.0,24.0,4.495715080321987,-7.864978761969621 -388,24.0,25.0,-1.2165301194494855,1.8171440463475024 -388,24.0,26.0,-1.9692920169982515,3.760212661917064 -388,25.0,24.0,-1.2165301194494855,1.8171440463475024 -388,25.0,25.0,1.2165301194494855,-1.8171440463475024 -388,26.0,24.0,-1.9692920169982515,3.760212661917064 -388,26.0,26.0,3.652281470778589,-9.46044252232512 -388,26.0,27.0,0.0,2.608731947574922 -388,26.0,28.0,-0.99553355095268,1.881005840357816 -388,26.0,29.0,-0.6874559028276572,1.293971494797717 -388,27.0,5.0,-4.362844058012917,15.463571542897856 -388,27.0,7.0,-1.4439790613954469,4.540814658476248 -388,27.0,26.0,0.0,2.608731947574922 -388,27.0,27.0,5.806823119408364,-22.67145722159613 -388,28.0,26.0,-0.99553355095268,1.881005840357816 -388,28.0,28.0,1.9075867579849564,-3.604364401207048 -388,28.0,29.0,-0.9120532070322764,1.7233585608492326 -388,29.0,26.0,-0.6874559028276572,1.293971494797717 -388,29.0,28.0,-0.9120532070322764,1.7233585608492326 -388,29.0,29.0,1.5995091098599337,-3.0173300556469496 -389,0.0,0.0,6.765516048652632,-21.23160167089863 -389,0.0,1.0,-5.224646179885656,15.646726840803398 -389,0.0,2.0,-1.5408698687669766,5.631674830095234 -389,1.0,0.0,-5.224646179885656,15.646726840803398 -389,1.0,1.0,9.75228216552403,-30.648662892676068 -389,1.0,3.0,-1.7055303166990268,5.1973792282565086 -389,1.0,4.0,-1.1359607881738778,4.772479328281356 -389,1.0,5.0,-1.6861448807654689,5.116477495334806 -389,2.0,0.0,-1.5408698687669766,5.631674830095234 -389,2.0,2.0,9.736318911079088,-29.13794745915803 -389,2.0,3.0,-8.19544904231211,23.5308726290628 -389,3.0,1.0,-1.7055303166990268,5.1973792282565086 -389,3.0,2.0,-8.19544904231211,23.5308726290628 -389,3.0,3.0,16.314103089185693,-55.509410535254254 -389,3.0,5.0,-6.413123730174556,22.31120356548123 -389,3.0,11.0,0.0,4.191255364806866 -389,4.0,1.0,-1.1359607881738778,4.772479328281356 -389,4.0,4.0,4.089980824135861,-12.190647245055052 -389,4.0,6.0,-2.954020035961983,7.449267916773697 -389,5.0,1.0,-1.6861448807654689,5.116477495334806 -389,5.0,3.0,-6.413123730174556,22.31120356548123 -389,5.0,5.0,22.341631269034565,-82.8291478657789 -389,5.0,6.0,-3.590210423980992,11.02611441072814 -389,5.0,7.0,-6.289308176100628,22.0125786163522 -389,5.0,8.0,0.0,4.915840805411357 -389,5.0,9.0,0.0,1.8561002591115965 -389,5.0,27.0,-4.362844058012917,15.463571542897856 -389,6.0,4.0,-2.954020035961983,7.449267916773697 -389,6.0,5.0,-3.590210423980992,11.02611441072814 -389,6.0,6.0,6.544230459942975,-18.45668232750184 -389,7.0,5.0,-6.289308176100628,22.0125786163522 -389,7.0,7.0,7.733287237496075,-26.527493274828448 -389,7.0,27.0,-1.4439790613954469,4.540814658476248 -389,8.0,5.0,0.0,4.915840805411357 -389,8.0,8.0,0.0,-18.706293706293707 -389,8.0,9.0,0.0,9.090909090909092 -389,8.0,10.0,0.0,4.807692307692308 -389,9.0,5.0,0.0,1.8561002591115965 -389,9.0,8.0,0.0,9.090909090909092 -389,9.0,9.0,13.462042814524237,-41.3837606675224 -389,9.0,16.0,-3.956039125715353,10.317447719844054 -389,9.0,19.0,-1.7848303152666305,3.98535828943083 -389,9.0,20.0,-5.101853820159654,10.98071411292983 -389,9.0,21.0,-2.619319553382597,5.400770303329455 -389,10.0,8.0,0.0,4.807692307692308 -389,10.0,10.0,0.0,-4.807692307692308 -389,11.0,3.0,0.0,4.191255364806866 -389,11.0,11.0,6.573961583776156,-24.424167659260668 -389,11.0,12.0,0.0,7.142857142857143 -389,11.0,13.0,-1.5265676088395577,3.1734252729654173 -389,11.0,14.0,-3.0953961826564296,6.097275864326261 -389,11.0,15.0,-1.9519977922801688,4.104359379111847 -389,12.0,11.0,0.0,7.142857142857143 -389,12.0,12.0,0.0,-7.142857142857143 -389,13.0,11.0,-1.5265676088395577,3.1734252729654173 -389,13.0,13.0,4.01751987283902,-5.424299332335067 -389,13.0,14.0,-2.4909522639994623,2.250874059369649 -389,14.0,11.0,-3.0953961826564296,6.097275864326261 -389,14.0,13.0,-2.4909522639994623,2.250874059369649 -389,14.0,14.0,9.365498545964757,-16.01163373210796 -389,14.0,17.0,-1.8108011504072024,3.687418931630696 -389,14.0,22.0,-1.9683489489016612,3.976064876781356 -389,15.0,11.0,-1.9519977922801688,4.104359379111847 -389,15.0,15.0,3.271064728633931,-8.94513365126506 -389,15.0,16.0,-1.3190669363537617,4.8407742721532125 -389,16.0,9.0,-3.956039125715353,10.317447719844054 -389,16.0,15.0,-1.3190669363537617,4.8407742721532125 -389,16.0,16.0,5.275106062069114,-15.158221991997266 -389,17.0,14.0,-1.8108011504072024,3.687418931630696 -389,17.0,17.0,4.886487584415919,-9.906177730909668 -389,17.0,18.0,-3.0756864340087167,6.218758799278971 -389,18.0,17.0,-3.0756864340087167,6.218758799278971 -389,18.0,18.0,8.958039375185187,-17.98346468163191 -389,18.0,19.0,-5.88235294117647,11.76470588235294 -389,19.0,9.0,-1.7848303152666305,3.98535828943083 -389,19.0,18.0,-5.88235294117647,11.76470588235294 -389,19.0,19.0,7.6671832564431,-15.75006417178377 -389,20.0,9.0,-5.101853820159654,10.98071411292983 -389,20.0,20.0,21.876495189895888,-45.10843276170355 -389,20.0,21.0,-16.774641369736234,34.127718648773715 -389,21.0,9.0,-2.619319553382597,5.400770303329455 -389,21.0,20.0,-16.774641369736234,34.127718648773715 -389,21.0,21.0,21.93449907537439,-43.48289181517921 -389,21.0,23.0,-2.5405381522555563,3.95440286307604 -389,22.0,14.0,-1.9683489489016612,3.976064876781356 -389,22.0,22.0,3.429754555384988,-6.965303617315433 -389,22.0,23.0,-1.4614056064833263,2.989238740534077 -389,23.0,21.0,-2.5405381522555563,3.95440286307604 -389,23.0,22.0,-1.4614056064833263,2.989238740534077 -389,23.0,23.0,5.311836702613133,-9.188263657315172 -389,23.0,24.0,-1.3098929438742493,2.287622053705056 -389,24.0,23.0,-1.3098929438742493,2.287622053705056 -389,24.0,24.0,4.495715080321987,-7.864978761969621 -389,24.0,25.0,-1.2165301194494855,1.8171440463475024 -389,24.0,26.0,-1.9692920169982515,3.760212661917064 -389,25.0,24.0,-1.2165301194494855,1.8171440463475024 -389,25.0,25.0,1.2165301194494855,-1.8171440463475024 -389,26.0,24.0,-1.9692920169982515,3.760212661917064 -389,26.0,26.0,2.9648255679509314,-8.166471027527404 -389,26.0,27.0,0.0,2.608731947574922 -389,26.0,28.0,-0.99553355095268,1.881005840357816 -389,27.0,5.0,-4.362844058012917,15.463571542897856 -389,27.0,7.0,-1.4439790613954469,4.540814658476248 -389,27.0,26.0,0.0,2.608731947574922 -389,27.0,27.0,5.806823119408364,-22.67145722159613 -389,28.0,26.0,-0.99553355095268,1.881005840357816 -389,28.0,28.0,1.9075867579849564,-3.604364401207048 -389,28.0,29.0,-0.9120532070322764,1.7233585608492326 -389,29.0,28.0,-0.9120532070322764,1.7233585608492326 -389,29.0,29.0,0.9120532070322764,-1.7233585608492326 -390,0.0,0.0,6.765516048652632,-21.23160167089863 -390,0.0,1.0,-5.224646179885656,15.646726840803398 -390,0.0,2.0,-1.5408698687669766,5.631674830095234 -390,1.0,0.0,-5.224646179885656,15.646726840803398 -390,1.0,1.0,9.75228216552403,-30.648662892676068 -390,1.0,3.0,-1.7055303166990268,5.1973792282565086 -390,1.0,4.0,-1.1359607881738778,4.772479328281356 -390,1.0,5.0,-1.6861448807654689,5.116477495334806 -390,2.0,0.0,-1.5408698687669766,5.631674830095234 -390,2.0,2.0,9.736318911079088,-29.13794745915803 -390,2.0,3.0,-8.19544904231211,23.5308726290628 -390,3.0,1.0,-1.7055303166990268,5.1973792282565086 -390,3.0,2.0,-8.19544904231211,23.5308726290628 -390,3.0,3.0,16.314103089185693,-55.509410535254254 -390,3.0,5.0,-6.413123730174556,22.31120356548123 -390,3.0,11.0,0.0,4.191255364806866 -390,4.0,1.0,-1.1359607881738778,4.772479328281356 -390,4.0,4.0,4.089980824135861,-12.190647245055052 -390,4.0,6.0,-2.954020035961983,7.449267916773697 -390,5.0,1.0,-1.6861448807654689,5.116477495334806 -390,5.0,3.0,-6.413123730174556,22.31120356548123 -390,5.0,5.0,22.341631269034565,-77.80272577435625 -390,5.0,6.0,-3.590210423980992,11.02611441072814 -390,5.0,7.0,-6.289308176100628,22.0125786163522 -390,5.0,9.0,0.0,1.8561002591115965 -390,5.0,27.0,-4.362844058012917,15.463571542897856 -390,6.0,4.0,-2.954020035961983,7.449267916773697 -390,6.0,5.0,-3.590210423980992,11.02611441072814 -390,6.0,6.0,6.544230459942975,-18.45668232750184 -390,7.0,5.0,-6.289308176100628,22.0125786163522 -390,7.0,7.0,7.733287237496075,-26.527493274828448 -390,7.0,27.0,-1.4439790613954469,4.540814658476248 -390,8.0,8.0,0.0,-13.8986013986014 -390,8.0,9.0,0.0,9.090909090909092 -390,8.0,10.0,0.0,4.807692307692308 -390,9.0,5.0,0.0,1.8561002591115965 -390,9.0,8.0,0.0,9.090909090909092 -390,9.0,9.0,6.886684135426284,-25.66554264434889 -390,9.0,19.0,-1.7848303152666305,3.98535828943083 -390,9.0,20.0,-5.101853820159654,10.98071411292983 -390,10.0,8.0,0.0,4.807692307692308 -390,10.0,10.0,0.0,-4.807692307692308 -390,11.0,3.0,0.0,4.191255364806866 -390,11.0,11.0,6.573961583776156,-24.424167659260668 -390,11.0,12.0,0.0,7.142857142857143 -390,11.0,13.0,-1.5265676088395577,3.1734252729654173 -390,11.0,14.0,-3.0953961826564296,6.097275864326261 -390,11.0,15.0,-1.9519977922801688,4.104359379111847 -390,12.0,11.0,0.0,7.142857142857143 -390,12.0,12.0,0.0,-7.142857142857143 -390,13.0,11.0,-1.5265676088395577,3.1734252729654173 -390,13.0,13.0,4.01751987283902,-5.424299332335067 -390,13.0,14.0,-2.4909522639994623,2.250874059369649 -390,14.0,11.0,-3.0953961826564296,6.097275864326261 -390,14.0,13.0,-2.4909522639994623,2.250874059369649 -390,14.0,14.0,9.365498545964757,-16.01163373210796 -390,14.0,17.0,-1.8108011504072024,3.687418931630696 -390,14.0,22.0,-1.9683489489016612,3.976064876781356 -390,15.0,11.0,-1.9519977922801688,4.104359379111847 -390,15.0,15.0,3.271064728633931,-8.94513365126506 -390,15.0,16.0,-1.3190669363537617,4.8407742721532125 -390,16.0,15.0,-1.3190669363537617,4.8407742721532125 -390,16.0,16.0,1.3190669363537617,-4.8407742721532125 -390,17.0,14.0,-1.8108011504072024,3.687418931630696 -390,17.0,17.0,4.886487584415919,-9.906177730909668 -390,17.0,18.0,-3.0756864340087167,6.218758799278971 -390,18.0,17.0,-3.0756864340087167,6.218758799278971 -390,18.0,18.0,8.958039375185187,-17.98346468163191 -390,18.0,19.0,-5.88235294117647,11.76470588235294 -390,19.0,9.0,-1.7848303152666305,3.98535828943083 -390,19.0,18.0,-5.88235294117647,11.76470588235294 -390,19.0,19.0,7.6671832564431,-15.75006417178377 -390,20.0,9.0,-5.101853820159654,10.98071411292983 -390,20.0,20.0,21.876495189895888,-45.10843276170355 -390,20.0,21.0,-16.774641369736234,34.127718648773715 -390,21.0,20.0,-16.774641369736234,34.127718648773715 -390,21.0,21.0,19.31517952199179,-38.08212151184976 -390,21.0,23.0,-2.5405381522555563,3.95440286307604 -390,22.0,14.0,-1.9683489489016612,3.976064876781356 -390,22.0,22.0,3.429754555384988,-6.965303617315433 -390,22.0,23.0,-1.4614056064833263,2.989238740534077 -390,23.0,21.0,-2.5405381522555563,3.95440286307604 -390,23.0,22.0,-1.4614056064833263,2.989238740534077 -390,23.0,23.0,5.311836702613133,-9.188263657315172 -390,23.0,24.0,-1.3098929438742493,2.287622053705056 -390,24.0,23.0,-1.3098929438742493,2.287622053705056 -390,24.0,24.0,4.495715080321987,-7.864978761969621 -390,24.0,25.0,-1.2165301194494855,1.8171440463475024 -390,24.0,26.0,-1.9692920169982515,3.760212661917064 -390,25.0,24.0,-1.2165301194494855,1.8171440463475024 -390,25.0,25.0,1.2165301194494855,-1.8171440463475024 -390,26.0,24.0,-1.9692920169982515,3.760212661917064 -390,26.0,26.0,2.9648255679509314,-8.166471027527404 -390,26.0,27.0,0.0,2.608731947574922 -390,26.0,28.0,-0.99553355095268,1.881005840357816 -390,27.0,5.0,-4.362844058012917,15.463571542897856 -390,27.0,7.0,-1.4439790613954469,4.540814658476248 -390,27.0,26.0,0.0,2.608731947574922 -390,27.0,27.0,5.806823119408364,-22.67145722159613 -390,28.0,26.0,-0.99553355095268,1.881005840357816 -390,28.0,28.0,1.9075867579849564,-3.604364401207048 -390,28.0,29.0,-0.9120532070322764,1.7233585608492326 -390,29.0,28.0,-0.9120532070322764,1.7233585608492326 -390,29.0,29.0,0.9120532070322764,-1.7233585608492326 -391,0.0,0.0,6.765516048652632,-21.23160167089863 -391,0.0,1.0,-5.224646179885656,15.646726840803398 -391,0.0,2.0,-1.5408698687669766,5.631674830095234 -391,1.0,0.0,-5.224646179885656,15.646726840803398 -391,1.0,1.0,6.930176496584682,-20.799306069059902 -391,1.0,3.0,-1.7055303166990268,5.1973792282565086 -391,2.0,0.0,-1.5408698687669766,5.631674830095234 -391,2.0,2.0,9.736318911079088,-29.13794745915803 -391,2.0,3.0,-8.19544904231211,23.5308726290628 -391,3.0,1.0,-1.7055303166990268,5.1973792282565086 -391,3.0,2.0,-8.19544904231211,23.5308726290628 -391,3.0,3.0,16.314103089185693,-55.509410535254254 -391,3.0,5.0,-6.413123730174556,22.31120356548123 -391,3.0,11.0,0.0,4.191255364806866 -391,4.0,4.0,2.954020035961983,-7.439067916773697 -391,4.0,6.0,-2.954020035961983,7.449267916773697 -391,5.0,3.0,-6.413123730174556,22.31120356548123 -391,5.0,5.0,20.655486388269097,-75.81589022688208 -391,5.0,6.0,-3.590210423980992,11.02611441072814 -391,5.0,7.0,-6.289308176100628,22.0125786163522 -391,5.0,8.0,0.0,4.915840805411357 -391,5.0,27.0,-4.362844058012917,15.463571542897856 -391,6.0,4.0,-2.954020035961983,7.449267916773697 -391,6.0,5.0,-3.590210423980992,11.02611441072814 -391,6.0,6.0,6.544230459942975,-18.45668232750184 -391,7.0,5.0,-6.289308176100628,22.0125786163522 -391,7.0,7.0,7.733287237496075,-26.527493274828448 -391,7.0,27.0,-1.4439790613954469,4.540814658476248 -391,8.0,5.0,0.0,4.915840805411357 -391,8.0,8.0,0.0,-18.706293706293707 -391,8.0,9.0,0.0,9.090909090909092 -391,8.0,10.0,0.0,4.807692307692308 -391,9.0,8.0,0.0,9.090909090909092 -391,9.0,9.0,13.462042814524237,-39.58519951644326 -391,9.0,16.0,-3.956039125715353,10.317447719844054 -391,9.0,19.0,-1.7848303152666305,3.98535828943083 -391,9.0,20.0,-5.101853820159654,10.98071411292983 -391,9.0,21.0,-2.619319553382597,5.400770303329455 -391,10.0,8.0,0.0,4.807692307692308 -391,10.0,10.0,0.0,-4.807692307692308 -391,11.0,3.0,0.0,4.191255364806866 -391,11.0,11.0,6.573961583776156,-24.424167659260668 -391,11.0,12.0,0.0,7.142857142857143 -391,11.0,13.0,-1.5265676088395577,3.1734252729654173 -391,11.0,14.0,-3.0953961826564296,6.097275864326261 -391,11.0,15.0,-1.9519977922801688,4.104359379111847 -391,12.0,11.0,0.0,7.142857142857143 -391,12.0,12.0,0.0,-7.142857142857143 -391,13.0,11.0,-1.5265676088395577,3.1734252729654173 -391,13.0,13.0,4.01751987283902,-5.424299332335067 -391,13.0,14.0,-2.4909522639994623,2.250874059369649 -391,14.0,11.0,-3.0953961826564296,6.097275864326261 -391,14.0,13.0,-2.4909522639994623,2.250874059369649 -391,14.0,14.0,9.365498545964757,-16.01163373210796 -391,14.0,17.0,-1.8108011504072024,3.687418931630696 -391,14.0,22.0,-1.9683489489016612,3.976064876781356 -391,15.0,11.0,-1.9519977922801688,4.104359379111847 -391,15.0,15.0,3.271064728633931,-8.94513365126506 -391,15.0,16.0,-1.3190669363537617,4.8407742721532125 -391,16.0,9.0,-3.956039125715353,10.317447719844054 -391,16.0,15.0,-1.3190669363537617,4.8407742721532125 -391,16.0,16.0,5.275106062069114,-15.158221991997266 -391,17.0,14.0,-1.8108011504072024,3.687418931630696 -391,17.0,17.0,1.8108011504072024,-3.687418931630696 -391,18.0,18.0,5.88235294117647,-11.76470588235294 -391,18.0,19.0,-5.88235294117647,11.76470588235294 -391,19.0,9.0,-1.7848303152666305,3.98535828943083 -391,19.0,18.0,-5.88235294117647,11.76470588235294 -391,19.0,19.0,7.6671832564431,-15.75006417178377 -391,20.0,9.0,-5.101853820159654,10.98071411292983 -391,20.0,20.0,5.101853820159654,-10.98071411292983 -391,21.0,9.0,-2.619319553382597,5.400770303329455 -391,21.0,21.0,5.159857705638154,-9.355173166405494 -391,21.0,23.0,-2.5405381522555563,3.95440286307604 -391,22.0,14.0,-1.9683489489016612,3.976064876781356 -391,22.0,22.0,3.429754555384988,-6.965303617315433 -391,22.0,23.0,-1.4614056064833263,2.989238740534077 -391,23.0,21.0,-2.5405381522555563,3.95440286307604 -391,23.0,22.0,-1.4614056064833263,2.989238740534077 -391,23.0,23.0,5.311836702613133,-9.188263657315172 -391,23.0,24.0,-1.3098929438742493,2.287622053705056 -391,24.0,23.0,-1.3098929438742493,2.287622053705056 -391,24.0,24.0,4.495715080321987,-7.864978761969621 -391,24.0,25.0,-1.2165301194494855,1.8171440463475024 -391,24.0,26.0,-1.9692920169982515,3.760212661917064 -391,25.0,24.0,-1.2165301194494855,1.8171440463475024 -391,25.0,25.0,1.2165301194494855,-1.8171440463475024 -391,26.0,24.0,-1.9692920169982515,3.760212661917064 -391,26.0,26.0,3.652281470778589,-9.46044252232512 -391,26.0,27.0,0.0,2.608731947574922 -391,26.0,28.0,-0.99553355095268,1.881005840357816 -391,26.0,29.0,-0.6874559028276572,1.293971494797717 -391,27.0,5.0,-4.362844058012917,15.463571542897856 -391,27.0,7.0,-1.4439790613954469,4.540814658476248 -391,27.0,26.0,0.0,2.608731947574922 -391,27.0,27.0,5.806823119408364,-22.67145722159613 -391,28.0,26.0,-0.99553355095268,1.881005840357816 -391,28.0,28.0,1.9075867579849564,-3.604364401207048 -391,28.0,29.0,-0.9120532070322764,1.7233585608492326 -391,29.0,26.0,-0.6874559028276572,1.293971494797717 -391,29.0,28.0,-0.9120532070322764,1.7233585608492326 -391,29.0,29.0,1.5995091098599337,-3.0173300556469496 -392,0.0,0.0,6.765516048652632,-21.23160167089863 -392,0.0,1.0,-5.224646179885656,15.646726840803398 -392,0.0,2.0,-1.5408698687669766,5.631674830095234 -392,1.0,0.0,-5.224646179885656,15.646726840803398 -392,1.0,1.0,8.046751848825002,-25.46968366441956 -392,1.0,4.0,-1.1359607881738778,4.772479328281356 -392,1.0,5.0,-1.6861448807654689,5.116477495334806 -392,2.0,0.0,-1.5408698687669766,5.631674830095234 -392,2.0,2.0,9.736318911079088,-29.13794745915803 -392,2.0,3.0,-8.19544904231211,23.5308726290628 -392,3.0,2.0,-8.19544904231211,23.5308726290628 -392,3.0,3.0,14.608572772486664,-50.33043130699775 -392,3.0,5.0,-6.413123730174556,22.31120356548123 -392,3.0,11.0,0.0,4.191255364806866 -392,4.0,1.0,-1.1359607881738778,4.772479328281356 -392,4.0,4.0,4.089980824135861,-12.190647245055052 -392,4.0,6.0,-2.954020035961983,7.449267916773697 -392,5.0,1.0,-1.6861448807654689,5.116477495334806 -392,5.0,3.0,-6.413123730174556,22.31120356548123 -392,5.0,5.0,22.341631269034565,-82.8291478657789 -392,5.0,6.0,-3.590210423980992,11.02611441072814 -392,5.0,7.0,-6.289308176100628,22.0125786163522 -392,5.0,8.0,0.0,4.915840805411357 -392,5.0,9.0,0.0,1.8561002591115965 -392,5.0,27.0,-4.362844058012917,15.463571542897856 -392,6.0,4.0,-2.954020035961983,7.449267916773697 -392,6.0,5.0,-3.590210423980992,11.02611441072814 -392,6.0,6.0,6.544230459942975,-18.45668232750184 -392,7.0,5.0,-6.289308176100628,22.0125786163522 -392,7.0,7.0,6.289308176100628,-22.0080786163522 -392,8.0,5.0,0.0,4.915840805411357 -392,8.0,8.0,0.0,-18.706293706293707 -392,8.0,9.0,0.0,9.090909090909092 -392,8.0,10.0,0.0,4.807692307692308 -392,9.0,5.0,0.0,1.8561002591115965 -392,9.0,8.0,0.0,9.090909090909092 -392,9.0,9.0,13.462042814524237,-41.3837606675224 -392,9.0,16.0,-3.956039125715353,10.317447719844054 -392,9.0,19.0,-1.7848303152666305,3.98535828943083 -392,9.0,20.0,-5.101853820159654,10.98071411292983 -392,9.0,21.0,-2.619319553382597,5.400770303329455 -392,10.0,8.0,0.0,4.807692307692308 -392,10.0,10.0,0.0,-4.807692307692308 -392,11.0,3.0,0.0,4.191255364806866 -392,11.0,11.0,6.573961583776156,-24.424167659260668 -392,11.0,12.0,0.0,7.142857142857143 -392,11.0,13.0,-1.5265676088395577,3.1734252729654173 -392,11.0,14.0,-3.0953961826564296,6.097275864326261 -392,11.0,15.0,-1.9519977922801688,4.104359379111847 -392,12.0,11.0,0.0,7.142857142857143 -392,12.0,12.0,0.0,-7.142857142857143 -392,13.0,11.0,-1.5265676088395577,3.1734252729654173 -392,13.0,13.0,4.01751987283902,-5.424299332335067 -392,13.0,14.0,-2.4909522639994623,2.250874059369649 -392,14.0,11.0,-3.0953961826564296,6.097275864326261 -392,14.0,13.0,-2.4909522639994623,2.250874059369649 -392,14.0,14.0,9.365498545964757,-16.01163373210796 -392,14.0,17.0,-1.8108011504072024,3.687418931630696 -392,14.0,22.0,-1.9683489489016612,3.976064876781356 -392,15.0,11.0,-1.9519977922801688,4.104359379111847 -392,15.0,15.0,1.9519977922801688,-4.104359379111847 -392,16.0,9.0,-3.956039125715353,10.317447719844054 -392,16.0,16.0,3.956039125715353,-10.317447719844054 -392,17.0,14.0,-1.8108011504072024,3.687418931630696 -392,17.0,17.0,4.886487584415919,-9.906177730909668 -392,17.0,18.0,-3.0756864340087167,6.218758799278971 -392,18.0,17.0,-3.0756864340087167,6.218758799278971 -392,18.0,18.0,3.0756864340087167,-6.218758799278971 -392,19.0,9.0,-1.7848303152666305,3.98535828943083 -392,19.0,19.0,1.7848303152666305,-3.98535828943083 -392,20.0,9.0,-5.101853820159654,10.98071411292983 -392,20.0,20.0,21.876495189895888,-45.10843276170355 -392,20.0,21.0,-16.774641369736234,34.127718648773715 -392,21.0,9.0,-2.619319553382597,5.400770303329455 -392,21.0,20.0,-16.774641369736234,34.127718648773715 -392,21.0,21.0,21.93449907537439,-43.48289181517921 -392,21.0,23.0,-2.5405381522555563,3.95440286307604 -392,22.0,14.0,-1.9683489489016612,3.976064876781356 -392,22.0,22.0,3.429754555384988,-6.965303617315433 -392,22.0,23.0,-1.4614056064833263,2.989238740534077 -392,23.0,21.0,-2.5405381522555563,3.95440286307604 -392,23.0,22.0,-1.4614056064833263,2.989238740534077 -392,23.0,23.0,5.311836702613133,-9.188263657315172 -392,23.0,24.0,-1.3098929438742493,2.287622053705056 -392,24.0,23.0,-1.3098929438742493,2.287622053705056 -392,24.0,24.0,2.526423063323735,-4.104766100052558 -392,24.0,25.0,-1.2165301194494855,1.8171440463475024 -392,25.0,24.0,-1.2165301194494855,1.8171440463475024 -392,25.0,25.0,1.2165301194494855,-1.8171440463475024 -392,26.0,26.0,1.6829894537803372,-5.700229860408058 -392,26.0,27.0,0.0,2.608731947574922 -392,26.0,28.0,-0.99553355095268,1.881005840357816 -392,26.0,29.0,-0.6874559028276572,1.293971494797717 -392,27.0,5.0,-4.362844058012917,15.463571542897856 -392,27.0,26.0,0.0,2.608731947574922 -392,27.0,27.0,4.362844058012917,-18.15204256311988 -392,28.0,26.0,-0.99553355095268,1.881005840357816 -392,28.0,28.0,1.9075867579849564,-3.604364401207048 -392,28.0,29.0,-0.9120532070322764,1.7233585608492326 -392,29.0,26.0,-0.6874559028276572,1.293971494797717 -392,29.0,28.0,-0.9120532070322764,1.7233585608492326 -392,29.0,29.0,1.5995091098599337,-3.0173300556469496 -393,0.0,0.0,6.765516048652632,-21.23160167089863 -393,0.0,1.0,-5.224646179885656,15.646726840803398 -393,0.0,2.0,-1.5408698687669766,5.631674830095234 -393,1.0,0.0,-5.224646179885656,15.646726840803398 -393,1.0,1.0,9.75228216552403,-30.648662892676068 -393,1.0,3.0,-1.7055303166990268,5.1973792282565086 -393,1.0,4.0,-1.1359607881738778,4.772479328281356 -393,1.0,5.0,-1.6861448807654689,5.116477495334806 -393,2.0,0.0,-1.5408698687669766,5.631674830095234 -393,2.0,2.0,9.736318911079088,-29.13794745915803 -393,2.0,3.0,-8.19544904231211,23.5308726290628 -393,3.0,1.0,-1.7055303166990268,5.1973792282565086 -393,3.0,2.0,-8.19544904231211,23.5308726290628 -393,3.0,3.0,16.314103089185693,-55.509410535254254 -393,3.0,5.0,-6.413123730174556,22.31120356548123 -393,3.0,11.0,0.0,4.191255364806866 -393,4.0,1.0,-1.1359607881738778,4.772479328281356 -393,4.0,4.0,4.089980824135861,-12.190647245055052 -393,4.0,6.0,-2.954020035961983,7.449267916773697 -393,5.0,1.0,-1.6861448807654689,5.116477495334806 -393,5.0,3.0,-6.413123730174556,22.31120356548123 -393,5.0,5.0,22.341631269034565,-82.8291478657789 -393,5.0,6.0,-3.590210423980992,11.02611441072814 -393,5.0,7.0,-6.289308176100628,22.0125786163522 -393,5.0,8.0,0.0,4.915840805411357 -393,5.0,9.0,0.0,1.8561002591115965 -393,5.0,27.0,-4.362844058012917,15.463571542897856 -393,6.0,4.0,-2.954020035961983,7.449267916773697 -393,6.0,5.0,-3.590210423980992,11.02611441072814 -393,6.0,6.0,6.544230459942975,-18.45668232750184 -393,7.0,5.0,-6.289308176100628,22.0125786163522 -393,7.0,7.0,7.733287237496075,-26.527493274828448 -393,7.0,27.0,-1.4439790613954469,4.540814658476248 -393,8.0,5.0,0.0,4.915840805411357 -393,8.0,8.0,0.0,-18.706293706293707 -393,8.0,9.0,0.0,9.090909090909092 -393,8.0,10.0,0.0,4.807692307692308 -393,9.0,5.0,0.0,1.8561002591115965 -393,9.0,8.0,0.0,9.090909090909092 -393,9.0,9.0,13.462042814524237,-41.3837606675224 -393,9.0,16.0,-3.956039125715353,10.317447719844054 -393,9.0,19.0,-1.7848303152666305,3.98535828943083 -393,9.0,20.0,-5.101853820159654,10.98071411292983 -393,9.0,21.0,-2.619319553382597,5.400770303329455 -393,10.0,8.0,0.0,4.807692307692308 -393,10.0,10.0,0.0,-4.807692307692308 -393,11.0,3.0,0.0,4.191255364806866 -393,11.0,11.0,6.573961583776156,-24.424167659260668 -393,11.0,12.0,0.0,7.142857142857143 -393,11.0,13.0,-1.5265676088395577,3.1734252729654173 -393,11.0,14.0,-3.0953961826564296,6.097275864326261 -393,11.0,15.0,-1.9519977922801688,4.104359379111847 -393,12.0,11.0,0.0,7.142857142857143 -393,12.0,12.0,0.0,-7.142857142857143 -393,13.0,11.0,-1.5265676088395577,3.1734252729654173 -393,13.0,13.0,4.01751987283902,-5.424299332335067 -393,13.0,14.0,-2.4909522639994623,2.250874059369649 -393,14.0,11.0,-3.0953961826564296,6.097275864326261 -393,14.0,13.0,-2.4909522639994623,2.250874059369649 -393,14.0,14.0,9.365498545964757,-16.01163373210796 -393,14.0,17.0,-1.8108011504072024,3.687418931630696 -393,14.0,22.0,-1.9683489489016612,3.976064876781356 -393,15.0,11.0,-1.9519977922801688,4.104359379111847 -393,15.0,15.0,3.271064728633931,-8.94513365126506 -393,15.0,16.0,-1.3190669363537617,4.8407742721532125 -393,16.0,9.0,-3.956039125715353,10.317447719844054 -393,16.0,15.0,-1.3190669363537617,4.8407742721532125 -393,16.0,16.0,5.275106062069114,-15.158221991997266 -393,17.0,14.0,-1.8108011504072024,3.687418931630696 -393,17.0,17.0,4.886487584415919,-9.906177730909668 -393,17.0,18.0,-3.0756864340087167,6.218758799278971 -393,18.0,17.0,-3.0756864340087167,6.218758799278971 -393,18.0,18.0,8.958039375185187,-17.98346468163191 -393,18.0,19.0,-5.88235294117647,11.76470588235294 -393,19.0,9.0,-1.7848303152666305,3.98535828943083 -393,19.0,18.0,-5.88235294117647,11.76470588235294 -393,19.0,19.0,7.6671832564431,-15.75006417178377 -393,20.0,9.0,-5.101853820159654,10.98071411292983 -393,20.0,20.0,21.876495189895888,-45.10843276170355 -393,20.0,21.0,-16.774641369736234,34.127718648773715 -393,21.0,9.0,-2.619319553382597,5.400770303329455 -393,21.0,20.0,-16.774641369736234,34.127718648773715 -393,21.0,21.0,21.93449907537439,-43.48289181517921 -393,21.0,23.0,-2.5405381522555563,3.95440286307604 -393,22.0,14.0,-1.9683489489016612,3.976064876781356 -393,22.0,22.0,3.429754555384988,-6.965303617315433 -393,22.0,23.0,-1.4614056064833263,2.989238740534077 -393,23.0,21.0,-2.5405381522555563,3.95440286307604 -393,23.0,22.0,-1.4614056064833263,2.989238740534077 -393,23.0,23.0,5.311836702613133,-9.188263657315172 -393,23.0,24.0,-1.3098929438742493,2.287622053705056 -393,24.0,23.0,-1.3098929438742493,2.287622053705056 -393,24.0,24.0,4.495715080321987,-7.864978761969621 -393,24.0,25.0,-1.2165301194494855,1.8171440463475024 -393,24.0,26.0,-1.9692920169982515,3.760212661917064 -393,25.0,24.0,-1.2165301194494855,1.8171440463475024 -393,25.0,25.0,1.2165301194494855,-1.8171440463475024 -393,26.0,24.0,-1.9692920169982515,3.760212661917064 -393,26.0,26.0,3.652281470778589,-9.46044252232512 -393,26.0,27.0,0.0,2.608731947574922 -393,26.0,28.0,-0.99553355095268,1.881005840357816 -393,26.0,29.0,-0.6874559028276572,1.293971494797717 -393,27.0,5.0,-4.362844058012917,15.463571542897856 -393,27.0,7.0,-1.4439790613954469,4.540814658476248 -393,27.0,26.0,0.0,2.608731947574922 -393,27.0,27.0,5.806823119408364,-22.67145722159613 -393,28.0,26.0,-0.99553355095268,1.881005840357816 -393,28.0,28.0,1.9075867579849564,-3.604364401207048 -393,28.0,29.0,-0.9120532070322764,1.7233585608492326 -393,29.0,26.0,-0.6874559028276572,1.293971494797717 -393,29.0,28.0,-0.9120532070322764,1.7233585608492326 -393,29.0,29.0,1.5995091098599337,-3.0173300556469496 -394,0.0,0.0,6.765516048652632,-21.23160167089863 -394,0.0,1.0,-5.224646179885656,15.646726840803398 -394,0.0,2.0,-1.5408698687669766,5.631674830095234 -394,1.0,0.0,-5.224646179885656,15.646726840803398 -394,1.0,1.0,8.61632137735015,-25.897083564394716 -394,1.0,3.0,-1.7055303166990268,5.1973792282565086 -394,1.0,5.0,-1.6861448807654689,5.116477495334806 -394,2.0,0.0,-1.5408698687669766,5.631674830095234 -394,2.0,2.0,9.736318911079088,-29.13794745915803 -394,2.0,3.0,-8.19544904231211,23.5308726290628 -394,3.0,1.0,-1.7055303166990268,5.1973792282565086 -394,3.0,2.0,-8.19544904231211,23.5308726290628 -394,3.0,3.0,16.314103089185693,-55.509410535254254 -394,3.0,5.0,-6.413123730174556,22.31120356548123 -394,3.0,11.0,0.0,4.191255364806866 -394,4.0,4.0,2.954020035961983,-7.439067916773697 -394,4.0,6.0,-2.954020035961983,7.449267916773697 -394,5.0,1.0,-1.6861448807654689,5.116477495334806 -394,5.0,3.0,-6.413123730174556,22.31120356548123 -394,5.0,5.0,22.341631269034565,-82.8291478657789 -394,5.0,6.0,-3.590210423980992,11.02611441072814 -394,5.0,7.0,-6.289308176100628,22.0125786163522 -394,5.0,8.0,0.0,4.915840805411357 -394,5.0,9.0,0.0,1.8561002591115965 -394,5.0,27.0,-4.362844058012917,15.463571542897856 -394,6.0,4.0,-2.954020035961983,7.449267916773697 -394,6.0,5.0,-3.590210423980992,11.02611441072814 -394,6.0,6.0,6.544230459942975,-18.45668232750184 -394,7.0,5.0,-6.289308176100628,22.0125786163522 -394,7.0,7.0,7.733287237496075,-26.527493274828448 -394,7.0,27.0,-1.4439790613954469,4.540814658476248 -394,8.0,5.0,0.0,4.915840805411357 -394,8.0,8.0,0.0,-18.706293706293707 -394,8.0,9.0,0.0,9.090909090909092 -394,8.0,10.0,0.0,4.807692307692308 -394,9.0,5.0,0.0,1.8561002591115965 -394,9.0,8.0,0.0,9.090909090909092 -394,9.0,9.0,13.462042814524237,-41.3837606675224 -394,9.0,16.0,-3.956039125715353,10.317447719844054 -394,9.0,19.0,-1.7848303152666305,3.98535828943083 -394,9.0,20.0,-5.101853820159654,10.98071411292983 -394,9.0,21.0,-2.619319553382597,5.400770303329455 -394,10.0,8.0,0.0,4.807692307692308 -394,10.0,10.0,0.0,-4.807692307692308 -394,11.0,3.0,0.0,4.191255364806866 -394,11.0,11.0,6.573961583776156,-24.424167659260668 -394,11.0,12.0,0.0,7.142857142857143 -394,11.0,13.0,-1.5265676088395577,3.1734252729654173 -394,11.0,14.0,-3.0953961826564296,6.097275864326261 -394,11.0,15.0,-1.9519977922801688,4.104359379111847 -394,12.0,11.0,0.0,7.142857142857143 -394,12.0,12.0,0.0,-7.142857142857143 -394,13.0,11.0,-1.5265676088395577,3.1734252729654173 -394,13.0,13.0,4.01751987283902,-5.424299332335067 -394,13.0,14.0,-2.4909522639994623,2.250874059369649 -394,14.0,11.0,-3.0953961826564296,6.097275864326261 -394,14.0,13.0,-2.4909522639994623,2.250874059369649 -394,14.0,14.0,9.365498545964757,-16.01163373210796 -394,14.0,17.0,-1.8108011504072024,3.687418931630696 -394,14.0,22.0,-1.9683489489016612,3.976064876781356 -394,15.0,11.0,-1.9519977922801688,4.104359379111847 -394,15.0,15.0,3.271064728633931,-8.94513365126506 -394,15.0,16.0,-1.3190669363537617,4.8407742721532125 -394,16.0,9.0,-3.956039125715353,10.317447719844054 -394,16.0,15.0,-1.3190669363537617,4.8407742721532125 -394,16.0,16.0,5.275106062069114,-15.158221991997266 -394,17.0,14.0,-1.8108011504072024,3.687418931630696 -394,17.0,17.0,4.886487584415919,-9.906177730909668 -394,17.0,18.0,-3.0756864340087167,6.218758799278971 -394,18.0,17.0,-3.0756864340087167,6.218758799278971 -394,18.0,18.0,8.958039375185187,-17.98346468163191 -394,18.0,19.0,-5.88235294117647,11.76470588235294 -394,19.0,9.0,-1.7848303152666305,3.98535828943083 -394,19.0,18.0,-5.88235294117647,11.76470588235294 -394,19.0,19.0,7.6671832564431,-15.75006417178377 -394,20.0,9.0,-5.101853820159654,10.98071411292983 -394,20.0,20.0,5.101853820159654,-10.98071411292983 -394,21.0,9.0,-2.619319553382597,5.400770303329455 -394,21.0,21.0,5.159857705638154,-9.355173166405494 -394,21.0,23.0,-2.5405381522555563,3.95440286307604 -394,22.0,14.0,-1.9683489489016612,3.976064876781356 -394,22.0,22.0,3.429754555384988,-6.965303617315433 -394,22.0,23.0,-1.4614056064833263,2.989238740534077 -394,23.0,21.0,-2.5405381522555563,3.95440286307604 -394,23.0,22.0,-1.4614056064833263,2.989238740534077 -394,23.0,23.0,5.311836702613133,-9.188263657315172 -394,23.0,24.0,-1.3098929438742493,2.287622053705056 -394,24.0,23.0,-1.3098929438742493,2.287622053705056 -394,24.0,24.0,4.495715080321987,-7.864978761969621 -394,24.0,25.0,-1.2165301194494855,1.8171440463475024 -394,24.0,26.0,-1.9692920169982515,3.760212661917064 -394,25.0,24.0,-1.2165301194494855,1.8171440463475024 -394,25.0,25.0,1.2165301194494855,-1.8171440463475024 -394,26.0,24.0,-1.9692920169982515,3.760212661917064 -394,26.0,26.0,3.652281470778589,-9.46044252232512 -394,26.0,27.0,0.0,2.608731947574922 -394,26.0,28.0,-0.99553355095268,1.881005840357816 -394,26.0,29.0,-0.6874559028276572,1.293971494797717 -394,27.0,5.0,-4.362844058012917,15.463571542897856 -394,27.0,7.0,-1.4439790613954469,4.540814658476248 -394,27.0,26.0,0.0,2.608731947574922 -394,27.0,27.0,5.806823119408364,-22.67145722159613 -394,28.0,26.0,-0.99553355095268,1.881005840357816 -394,28.0,28.0,1.9075867579849564,-3.604364401207048 -394,28.0,29.0,-0.9120532070322764,1.7233585608492326 -394,29.0,26.0,-0.6874559028276572,1.293971494797717 -394,29.0,28.0,-0.9120532070322764,1.7233585608492326 -394,29.0,29.0,1.5995091098599337,-3.0173300556469496 -395,0.0,0.0,6.765516048652632,-21.23160167089863 -395,0.0,1.0,-5.224646179885656,15.646726840803398 -395,0.0,2.0,-1.5408698687669766,5.631674830095234 -395,1.0,0.0,-5.224646179885656,15.646726840803398 -395,1.0,1.0,9.75228216552403,-30.648662892676068 -395,1.0,3.0,-1.7055303166990268,5.1973792282565086 -395,1.0,4.0,-1.1359607881738778,4.772479328281356 -395,1.0,5.0,-1.6861448807654689,5.116477495334806 -395,2.0,0.0,-1.5408698687669766,5.631674830095234 -395,2.0,2.0,9.736318911079088,-29.13794745915803 -395,2.0,3.0,-8.19544904231211,23.5308726290628 -395,3.0,1.0,-1.7055303166990268,5.1973792282565086 -395,3.0,2.0,-8.19544904231211,23.5308726290628 -395,3.0,3.0,16.314103089185693,-55.509410535254254 -395,3.0,5.0,-6.413123730174556,22.31120356548123 -395,3.0,11.0,0.0,4.191255364806866 -395,4.0,1.0,-1.1359607881738778,4.772479328281356 -395,4.0,4.0,4.089980824135861,-12.190647245055052 -395,4.0,6.0,-2.954020035961983,7.449267916773697 -395,5.0,1.0,-1.6861448807654689,5.116477495334806 -395,5.0,3.0,-6.413123730174556,22.31120356548123 -395,5.0,5.0,22.341631269034565,-82.8291478657789 -395,5.0,6.0,-3.590210423980992,11.02611441072814 -395,5.0,7.0,-6.289308176100628,22.0125786163522 -395,5.0,8.0,0.0,4.915840805411357 -395,5.0,9.0,0.0,1.8561002591115965 -395,5.0,27.0,-4.362844058012917,15.463571542897856 -395,6.0,4.0,-2.954020035961983,7.449267916773697 -395,6.0,5.0,-3.590210423980992,11.02611441072814 -395,6.0,6.0,6.544230459942975,-18.45668232750184 -395,7.0,5.0,-6.289308176100628,22.0125786163522 -395,7.0,7.0,7.733287237496075,-26.527493274828448 -395,7.0,27.0,-1.4439790613954469,4.540814658476248 -395,8.0,5.0,0.0,4.915840805411357 -395,8.0,8.0,0.0,-18.706293706293707 -395,8.0,9.0,0.0,9.090909090909092 -395,8.0,10.0,0.0,4.807692307692308 -395,9.0,5.0,0.0,1.8561002591115965 -395,9.0,8.0,0.0,9.090909090909092 -395,9.0,9.0,13.462042814524237,-41.3837606675224 -395,9.0,16.0,-3.956039125715353,10.317447719844054 -395,9.0,19.0,-1.7848303152666305,3.98535828943083 -395,9.0,20.0,-5.101853820159654,10.98071411292983 -395,9.0,21.0,-2.619319553382597,5.400770303329455 -395,10.0,8.0,0.0,4.807692307692308 -395,10.0,10.0,0.0,-4.807692307692308 -395,11.0,3.0,0.0,4.191255364806866 -395,11.0,11.0,6.573961583776156,-24.424167659260668 -395,11.0,12.0,0.0,7.142857142857143 -395,11.0,13.0,-1.5265676088395577,3.1734252729654173 -395,11.0,14.0,-3.0953961826564296,6.097275864326261 -395,11.0,15.0,-1.9519977922801688,4.104359379111847 -395,12.0,11.0,0.0,7.142857142857143 -395,12.0,12.0,0.0,-7.142857142857143 -395,13.0,11.0,-1.5265676088395577,3.1734252729654173 -395,13.0,13.0,4.01751987283902,-5.424299332335067 -395,13.0,14.0,-2.4909522639994623,2.250874059369649 -395,14.0,11.0,-3.0953961826564296,6.097275864326261 -395,14.0,13.0,-2.4909522639994623,2.250874059369649 -395,14.0,14.0,9.365498545964757,-16.01163373210796 -395,14.0,17.0,-1.8108011504072024,3.687418931630696 -395,14.0,22.0,-1.9683489489016612,3.976064876781356 -395,15.0,11.0,-1.9519977922801688,4.104359379111847 -395,15.0,15.0,3.271064728633931,-8.94513365126506 -395,15.0,16.0,-1.3190669363537617,4.8407742721532125 -395,16.0,9.0,-3.956039125715353,10.317447719844054 -395,16.0,15.0,-1.3190669363537617,4.8407742721532125 -395,16.0,16.0,5.275106062069114,-15.158221991997266 -395,17.0,14.0,-1.8108011504072024,3.687418931630696 -395,17.0,17.0,4.886487584415919,-9.906177730909668 -395,17.0,18.0,-3.0756864340087167,6.218758799278971 -395,18.0,17.0,-3.0756864340087167,6.218758799278971 -395,18.0,18.0,8.958039375185187,-17.98346468163191 -395,18.0,19.0,-5.88235294117647,11.76470588235294 -395,19.0,9.0,-1.7848303152666305,3.98535828943083 -395,19.0,18.0,-5.88235294117647,11.76470588235294 -395,19.0,19.0,7.6671832564431,-15.75006417178377 -395,20.0,9.0,-5.101853820159654,10.98071411292983 -395,20.0,20.0,21.876495189895888,-45.10843276170355 -395,20.0,21.0,-16.774641369736234,34.127718648773715 -395,21.0,9.0,-2.619319553382597,5.400770303329455 -395,21.0,20.0,-16.774641369736234,34.127718648773715 -395,21.0,21.0,21.93449907537439,-43.48289181517921 -395,21.0,23.0,-2.5405381522555563,3.95440286307604 -395,22.0,14.0,-1.9683489489016612,3.976064876781356 -395,22.0,22.0,3.429754555384988,-6.965303617315433 -395,22.0,23.0,-1.4614056064833263,2.989238740534077 -395,23.0,21.0,-2.5405381522555563,3.95440286307604 -395,23.0,22.0,-1.4614056064833263,2.989238740534077 -395,23.0,23.0,5.311836702613133,-9.188263657315172 -395,23.0,24.0,-1.3098929438742493,2.287622053705056 -395,24.0,23.0,-1.3098929438742493,2.287622053705056 -395,24.0,24.0,4.495715080321987,-7.864978761969621 -395,24.0,25.0,-1.2165301194494855,1.8171440463475024 -395,24.0,26.0,-1.9692920169982515,3.760212661917064 -395,25.0,24.0,-1.2165301194494855,1.8171440463475024 -395,25.0,25.0,1.2165301194494855,-1.8171440463475024 -395,26.0,24.0,-1.9692920169982515,3.760212661917064 -395,26.0,26.0,3.652281470778589,-9.46044252232512 -395,26.0,27.0,0.0,2.608731947574922 -395,26.0,28.0,-0.99553355095268,1.881005840357816 -395,26.0,29.0,-0.6874559028276572,1.293971494797717 -395,27.0,5.0,-4.362844058012917,15.463571542897856 -395,27.0,7.0,-1.4439790613954469,4.540814658476248 -395,27.0,26.0,0.0,2.608731947574922 -395,27.0,27.0,5.806823119408364,-22.67145722159613 -395,28.0,26.0,-0.99553355095268,1.881005840357816 -395,28.0,28.0,1.9075867579849564,-3.604364401207048 -395,28.0,29.0,-0.9120532070322764,1.7233585608492326 -395,29.0,26.0,-0.6874559028276572,1.293971494797717 -395,29.0,28.0,-0.9120532070322764,1.7233585608492326 -395,29.0,29.0,1.5995091098599337,-3.0173300556469496 -396,0.0,0.0,6.765516048652632,-21.23160167089863 -396,0.0,1.0,-5.224646179885656,15.646726840803398 -396,0.0,2.0,-1.5408698687669766,5.631674830095234 -396,1.0,0.0,-5.224646179885656,15.646726840803398 -396,1.0,1.0,9.75228216552403,-30.648662892676068 -396,1.0,3.0,-1.7055303166990268,5.1973792282565086 -396,1.0,4.0,-1.1359607881738778,4.772479328281356 -396,1.0,5.0,-1.6861448807654689,5.116477495334806 -396,2.0,0.0,-1.5408698687669766,5.631674830095234 -396,2.0,2.0,9.736318911079088,-29.13794745915803 -396,2.0,3.0,-8.19544904231211,23.5308726290628 -396,3.0,1.0,-1.7055303166990268,5.1973792282565086 -396,3.0,2.0,-8.19544904231211,23.5308726290628 -396,3.0,3.0,16.314103089185693,-55.509410535254254 -396,3.0,5.0,-6.413123730174556,22.31120356548123 -396,3.0,11.0,0.0,4.191255364806866 -396,4.0,1.0,-1.1359607881738778,4.772479328281356 -396,4.0,4.0,4.089980824135861,-12.190647245055052 -396,4.0,6.0,-2.954020035961983,7.449267916773697 -396,5.0,1.0,-1.6861448807654689,5.116477495334806 -396,5.0,3.0,-6.413123730174556,22.31120356548123 -396,5.0,5.0,22.341631269034565,-77.80272577435625 -396,5.0,6.0,-3.590210423980992,11.02611441072814 -396,5.0,7.0,-6.289308176100628,22.0125786163522 -396,5.0,9.0,0.0,1.8561002591115965 -396,5.0,27.0,-4.362844058012917,15.463571542897856 -396,6.0,4.0,-2.954020035961983,7.449267916773697 -396,6.0,5.0,-3.590210423980992,11.02611441072814 -396,6.0,6.0,6.544230459942975,-18.45668232750184 -396,7.0,5.0,-6.289308176100628,22.0125786163522 -396,7.0,7.0,7.733287237496075,-26.527493274828448 -396,7.0,27.0,-1.4439790613954469,4.540814658476248 -396,8.0,8.0,0.0,-13.8986013986014 -396,8.0,9.0,0.0,9.090909090909092 -396,8.0,10.0,0.0,4.807692307692308 -396,9.0,5.0,0.0,1.8561002591115965 -396,9.0,8.0,0.0,9.090909090909092 -396,9.0,9.0,13.462042814524237,-41.3837606675224 -396,9.0,16.0,-3.956039125715353,10.317447719844054 -396,9.0,19.0,-1.7848303152666305,3.98535828943083 -396,9.0,20.0,-5.101853820159654,10.98071411292983 -396,9.0,21.0,-2.619319553382597,5.400770303329455 -396,10.0,8.0,0.0,4.807692307692308 -396,10.0,10.0,0.0,-4.807692307692308 -396,11.0,3.0,0.0,4.191255364806866 -396,11.0,11.0,6.573961583776156,-24.424167659260668 -396,11.0,12.0,0.0,7.142857142857143 -396,11.0,13.0,-1.5265676088395577,3.1734252729654173 -396,11.0,14.0,-3.0953961826564296,6.097275864326261 -396,11.0,15.0,-1.9519977922801688,4.104359379111847 -396,12.0,11.0,0.0,7.142857142857143 -396,12.0,12.0,0.0,-7.142857142857143 -396,13.0,11.0,-1.5265676088395577,3.1734252729654173 -396,13.0,13.0,4.01751987283902,-5.424299332335067 -396,13.0,14.0,-2.4909522639994623,2.250874059369649 -396,14.0,11.0,-3.0953961826564296,6.097275864326261 -396,14.0,13.0,-2.4909522639994623,2.250874059369649 -396,14.0,14.0,9.365498545964757,-16.01163373210796 -396,14.0,17.0,-1.8108011504072024,3.687418931630696 -396,14.0,22.0,-1.9683489489016612,3.976064876781356 -396,15.0,11.0,-1.9519977922801688,4.104359379111847 -396,15.0,15.0,3.271064728633931,-8.94513365126506 -396,15.0,16.0,-1.3190669363537617,4.8407742721532125 -396,16.0,9.0,-3.956039125715353,10.317447719844054 -396,16.0,15.0,-1.3190669363537617,4.8407742721532125 -396,16.0,16.0,5.275106062069114,-15.158221991997266 -396,17.0,14.0,-1.8108011504072024,3.687418931630696 -396,17.0,17.0,4.886487584415919,-9.906177730909668 -396,17.0,18.0,-3.0756864340087167,6.218758799278971 -396,18.0,17.0,-3.0756864340087167,6.218758799278971 -396,18.0,18.0,8.958039375185187,-17.98346468163191 -396,18.0,19.0,-5.88235294117647,11.76470588235294 -396,19.0,9.0,-1.7848303152666305,3.98535828943083 -396,19.0,18.0,-5.88235294117647,11.76470588235294 -396,19.0,19.0,7.6671832564431,-15.75006417178377 -396,20.0,9.0,-5.101853820159654,10.98071411292983 -396,20.0,20.0,21.876495189895888,-45.10843276170355 -396,20.0,21.0,-16.774641369736234,34.127718648773715 -396,21.0,9.0,-2.619319553382597,5.400770303329455 -396,21.0,20.0,-16.774641369736234,34.127718648773715 -396,21.0,21.0,21.93449907537439,-43.48289181517921 -396,21.0,23.0,-2.5405381522555563,3.95440286307604 -396,22.0,14.0,-1.9683489489016612,3.976064876781356 -396,22.0,22.0,3.429754555384988,-6.965303617315433 -396,22.0,23.0,-1.4614056064833263,2.989238740534077 -396,23.0,21.0,-2.5405381522555563,3.95440286307604 -396,23.0,22.0,-1.4614056064833263,2.989238740534077 -396,23.0,23.0,5.311836702613133,-9.188263657315172 -396,23.0,24.0,-1.3098929438742493,2.287622053705056 -396,24.0,23.0,-1.3098929438742493,2.287622053705056 -396,24.0,24.0,4.495715080321987,-7.864978761969621 -396,24.0,25.0,-1.2165301194494855,1.8171440463475024 -396,24.0,26.0,-1.9692920169982515,3.760212661917064 -396,25.0,24.0,-1.2165301194494855,1.8171440463475024 -396,25.0,25.0,1.2165301194494855,-1.8171440463475024 -396,26.0,24.0,-1.9692920169982515,3.760212661917064 -396,26.0,26.0,3.652281470778589,-9.46044252232512 -396,26.0,27.0,0.0,2.608731947574922 -396,26.0,28.0,-0.99553355095268,1.881005840357816 -396,26.0,29.0,-0.6874559028276572,1.293971494797717 -396,27.0,5.0,-4.362844058012917,15.463571542897856 -396,27.0,7.0,-1.4439790613954469,4.540814658476248 -396,27.0,26.0,0.0,2.608731947574922 -396,27.0,27.0,5.806823119408364,-22.67145722159613 -396,28.0,26.0,-0.99553355095268,1.881005840357816 -396,28.0,28.0,1.9075867579849564,-3.604364401207048 -396,28.0,29.0,-0.9120532070322764,1.7233585608492326 -396,29.0,26.0,-0.6874559028276572,1.293971494797717 -396,29.0,28.0,-0.9120532070322764,1.7233585608492326 -396,29.0,29.0,1.5995091098599337,-3.0173300556469496 -397,0.0,0.0,6.765516048652632,-21.23160167089863 -397,0.0,1.0,-5.224646179885656,15.646726840803398 -397,0.0,2.0,-1.5408698687669766,5.631674830095234 -397,1.0,0.0,-5.224646179885656,15.646726840803398 -397,1.0,1.0,9.75228216552403,-30.648662892676068 -397,1.0,3.0,-1.7055303166990268,5.1973792282565086 -397,1.0,4.0,-1.1359607881738778,4.772479328281356 -397,1.0,5.0,-1.6861448807654689,5.116477495334806 -397,2.0,0.0,-1.5408698687669766,5.631674830095234 -397,2.0,2.0,9.736318911079088,-29.13794745915803 -397,2.0,3.0,-8.19544904231211,23.5308726290628 -397,3.0,1.0,-1.7055303166990268,5.1973792282565086 -397,3.0,2.0,-8.19544904231211,23.5308726290628 -397,3.0,3.0,16.314103089185693,-55.509410535254254 -397,3.0,5.0,-6.413123730174556,22.31120356548123 -397,3.0,11.0,0.0,4.191255364806866 -397,4.0,1.0,-1.1359607881738778,4.772479328281356 -397,4.0,4.0,4.089980824135861,-12.190647245055052 -397,4.0,6.0,-2.954020035961983,7.449267916773697 -397,5.0,1.0,-1.6861448807654689,5.116477495334806 -397,5.0,3.0,-6.413123730174556,22.31120356548123 -397,5.0,5.0,22.341631269034565,-82.8291478657789 -397,5.0,6.0,-3.590210423980992,11.02611441072814 -397,5.0,7.0,-6.289308176100628,22.0125786163522 -397,5.0,8.0,0.0,4.915840805411357 -397,5.0,9.0,0.0,1.8561002591115965 -397,5.0,27.0,-4.362844058012917,15.463571542897856 -397,6.0,4.0,-2.954020035961983,7.449267916773697 -397,6.0,5.0,-3.590210423980992,11.02611441072814 -397,6.0,6.0,6.544230459942975,-18.45668232750184 -397,7.0,5.0,-6.289308176100628,22.0125786163522 -397,7.0,7.0,7.733287237496075,-26.527493274828448 -397,7.0,27.0,-1.4439790613954469,4.540814658476248 -397,8.0,5.0,0.0,4.915840805411357 -397,8.0,8.0,0.0,-18.706293706293707 -397,8.0,9.0,0.0,9.090909090909092 -397,8.0,10.0,0.0,4.807692307692308 -397,9.0,5.0,0.0,1.8561002591115965 -397,9.0,8.0,0.0,9.090909090909092 -397,9.0,9.0,13.462042814524237,-41.3837606675224 -397,9.0,16.0,-3.956039125715353,10.317447719844054 -397,9.0,19.0,-1.7848303152666305,3.98535828943083 -397,9.0,20.0,-5.101853820159654,10.98071411292983 -397,9.0,21.0,-2.619319553382597,5.400770303329455 -397,10.0,8.0,0.0,4.807692307692308 -397,10.0,10.0,0.0,-4.807692307692308 -397,11.0,3.0,0.0,4.191255364806866 -397,11.0,11.0,6.573961583776156,-24.424167659260668 -397,11.0,12.0,0.0,7.142857142857143 -397,11.0,13.0,-1.5265676088395577,3.1734252729654173 -397,11.0,14.0,-3.0953961826564296,6.097275864326261 -397,11.0,15.0,-1.9519977922801688,4.104359379111847 -397,12.0,11.0,0.0,7.142857142857143 -397,12.0,12.0,0.0,-7.142857142857143 -397,13.0,11.0,-1.5265676088395577,3.1734252729654173 -397,13.0,13.0,4.01751987283902,-5.424299332335067 -397,13.0,14.0,-2.4909522639994623,2.250874059369649 -397,14.0,11.0,-3.0953961826564296,6.097275864326261 -397,14.0,13.0,-2.4909522639994623,2.250874059369649 -397,14.0,14.0,9.365498545964757,-16.01163373210796 -397,14.0,17.0,-1.8108011504072024,3.687418931630696 -397,14.0,22.0,-1.9683489489016612,3.976064876781356 -397,15.0,11.0,-1.9519977922801688,4.104359379111847 -397,15.0,15.0,3.271064728633931,-8.94513365126506 -397,15.0,16.0,-1.3190669363537617,4.8407742721532125 -397,16.0,9.0,-3.956039125715353,10.317447719844054 -397,16.0,15.0,-1.3190669363537617,4.8407742721532125 -397,16.0,16.0,5.275106062069114,-15.158221991997266 -397,17.0,14.0,-1.8108011504072024,3.687418931630696 -397,17.0,17.0,4.886487584415919,-9.906177730909668 -397,17.0,18.0,-3.0756864340087167,6.218758799278971 -397,18.0,17.0,-3.0756864340087167,6.218758799278971 -397,18.0,18.0,8.958039375185187,-17.98346468163191 -397,18.0,19.0,-5.88235294117647,11.76470588235294 -397,19.0,9.0,-1.7848303152666305,3.98535828943083 -397,19.0,18.0,-5.88235294117647,11.76470588235294 -397,19.0,19.0,7.6671832564431,-15.75006417178377 -397,20.0,9.0,-5.101853820159654,10.98071411292983 -397,20.0,20.0,21.876495189895888,-45.10843276170355 -397,20.0,21.0,-16.774641369736234,34.127718648773715 -397,21.0,9.0,-2.619319553382597,5.400770303329455 -397,21.0,20.0,-16.774641369736234,34.127718648773715 -397,21.0,21.0,21.93449907537439,-43.48289181517921 -397,21.0,23.0,-2.5405381522555563,3.95440286307604 -397,22.0,14.0,-1.9683489489016612,3.976064876781356 -397,22.0,22.0,3.429754555384988,-6.965303617315433 -397,22.0,23.0,-1.4614056064833263,2.989238740534077 -397,23.0,21.0,-2.5405381522555563,3.95440286307604 -397,23.0,22.0,-1.4614056064833263,2.989238740534077 -397,23.0,23.0,5.311836702613133,-9.188263657315172 -397,23.0,24.0,-1.3098929438742493,2.287622053705056 -397,24.0,23.0,-1.3098929438742493,2.287622053705056 -397,24.0,24.0,4.495715080321987,-7.864978761969621 -397,24.0,25.0,-1.2165301194494855,1.8171440463475024 -397,24.0,26.0,-1.9692920169982515,3.760212661917064 -397,25.0,24.0,-1.2165301194494855,1.8171440463475024 -397,25.0,25.0,1.2165301194494855,-1.8171440463475024 -397,26.0,24.0,-1.9692920169982515,3.760212661917064 -397,26.0,26.0,3.652281470778589,-9.46044252232512 -397,26.0,27.0,0.0,2.608731947574922 -397,26.0,28.0,-0.99553355095268,1.881005840357816 -397,26.0,29.0,-0.6874559028276572,1.293971494797717 -397,27.0,5.0,-4.362844058012917,15.463571542897856 -397,27.0,7.0,-1.4439790613954469,4.540814658476248 -397,27.0,26.0,0.0,2.608731947574922 -397,27.0,27.0,5.806823119408364,-22.67145722159613 -397,28.0,26.0,-0.99553355095268,1.881005840357816 -397,28.0,28.0,1.9075867579849564,-3.604364401207048 -397,28.0,29.0,-0.9120532070322764,1.7233585608492326 -397,29.0,26.0,-0.6874559028276572,1.293971494797717 -397,29.0,28.0,-0.9120532070322764,1.7233585608492326 -397,29.0,29.0,1.5995091098599337,-3.0173300556469496 -398,0.0,0.0,6.765516048652632,-21.23160167089863 -398,0.0,1.0,-5.224646179885656,15.646726840803398 -398,0.0,2.0,-1.5408698687669766,5.631674830095234 -398,1.0,0.0,-5.224646179885656,15.646726840803398 -398,1.0,1.0,9.75228216552403,-30.648662892676068 -398,1.0,3.0,-1.7055303166990268,5.1973792282565086 -398,1.0,4.0,-1.1359607881738778,4.772479328281356 -398,1.0,5.0,-1.6861448807654689,5.116477495334806 -398,2.0,0.0,-1.5408698687669766,5.631674830095234 -398,2.0,2.0,9.736318911079088,-29.13794745915803 -398,2.0,3.0,-8.19544904231211,23.5308726290628 -398,3.0,1.0,-1.7055303166990268,5.1973792282565086 -398,3.0,2.0,-8.19544904231211,23.5308726290628 -398,3.0,3.0,16.314103089185693,-55.509410535254254 -398,3.0,5.0,-6.413123730174556,22.31120356548123 -398,3.0,11.0,0.0,4.191255364806866 -398,4.0,1.0,-1.1359607881738778,4.772479328281356 -398,4.0,4.0,4.089980824135861,-12.190647245055052 -398,4.0,6.0,-2.954020035961983,7.449267916773697 -398,5.0,1.0,-1.6861448807654689,5.116477495334806 -398,5.0,3.0,-6.413123730174556,22.31120356548123 -398,5.0,5.0,17.978787211021647,-67.37207632288106 -398,5.0,6.0,-3.590210423980992,11.02611441072814 -398,5.0,7.0,-6.289308176100628,22.0125786163522 -398,5.0,8.0,0.0,4.915840805411357 -398,5.0,9.0,0.0,1.8561002591115965 -398,6.0,4.0,-2.954020035961983,7.449267916773697 -398,6.0,5.0,-3.590210423980992,11.02611441072814 -398,6.0,6.0,6.544230459942975,-18.45668232750184 -398,7.0,5.0,-6.289308176100628,22.0125786163522 -398,7.0,7.0,7.733287237496075,-26.527493274828448 -398,7.0,27.0,-1.4439790613954469,4.540814658476248 -398,8.0,5.0,0.0,4.915840805411357 -398,8.0,8.0,0.0,-18.706293706293707 -398,8.0,9.0,0.0,9.090909090909092 -398,8.0,10.0,0.0,4.807692307692308 -398,9.0,5.0,0.0,1.8561002591115965 -398,9.0,8.0,0.0,9.090909090909092 -398,9.0,9.0,13.462042814524237,-41.3837606675224 -398,9.0,16.0,-3.956039125715353,10.317447719844054 -398,9.0,19.0,-1.7848303152666305,3.98535828943083 -398,9.0,20.0,-5.101853820159654,10.98071411292983 -398,9.0,21.0,-2.619319553382597,5.400770303329455 -398,10.0,8.0,0.0,4.807692307692308 -398,10.0,10.0,0.0,-4.807692307692308 -398,11.0,3.0,0.0,4.191255364806866 -398,11.0,11.0,6.573961583776156,-24.424167659260668 -398,11.0,12.0,0.0,7.142857142857143 -398,11.0,13.0,-1.5265676088395577,3.1734252729654173 -398,11.0,14.0,-3.0953961826564296,6.097275864326261 -398,11.0,15.0,-1.9519977922801688,4.104359379111847 -398,12.0,11.0,0.0,7.142857142857143 -398,12.0,12.0,0.0,-7.142857142857143 -398,13.0,11.0,-1.5265676088395577,3.1734252729654173 -398,13.0,13.0,1.5265676088395577,-3.1734252729654173 -398,14.0,11.0,-3.0953961826564296,6.097275864326261 -398,14.0,14.0,6.874546281965293,-13.760759672738311 -398,14.0,17.0,-1.8108011504072024,3.687418931630696 -398,14.0,22.0,-1.9683489489016612,3.976064876781356 -398,15.0,11.0,-1.9519977922801688,4.104359379111847 -398,15.0,15.0,3.271064728633931,-8.94513365126506 -398,15.0,16.0,-1.3190669363537617,4.8407742721532125 -398,16.0,9.0,-3.956039125715353,10.317447719844054 -398,16.0,15.0,-1.3190669363537617,4.8407742721532125 -398,16.0,16.0,5.275106062069114,-15.158221991997266 -398,17.0,14.0,-1.8108011504072024,3.687418931630696 -398,17.0,17.0,4.886487584415919,-9.906177730909668 -398,17.0,18.0,-3.0756864340087167,6.218758799278971 -398,18.0,17.0,-3.0756864340087167,6.218758799278971 -398,18.0,18.0,8.958039375185187,-17.98346468163191 -398,18.0,19.0,-5.88235294117647,11.76470588235294 -398,19.0,9.0,-1.7848303152666305,3.98535828943083 -398,19.0,18.0,-5.88235294117647,11.76470588235294 -398,19.0,19.0,7.6671832564431,-15.75006417178377 -398,20.0,9.0,-5.101853820159654,10.98071411292983 -398,20.0,20.0,21.876495189895888,-45.10843276170355 -398,20.0,21.0,-16.774641369736234,34.127718648773715 -398,21.0,9.0,-2.619319553382597,5.400770303329455 -398,21.0,20.0,-16.774641369736234,34.127718648773715 -398,21.0,21.0,21.93449907537439,-43.48289181517921 -398,21.0,23.0,-2.5405381522555563,3.95440286307604 -398,22.0,14.0,-1.9683489489016612,3.976064876781356 -398,22.0,22.0,3.429754555384988,-6.965303617315433 -398,22.0,23.0,-1.4614056064833263,2.989238740534077 -398,23.0,21.0,-2.5405381522555563,3.95440286307604 -398,23.0,22.0,-1.4614056064833263,2.989238740534077 -398,23.0,23.0,5.311836702613133,-9.188263657315172 -398,23.0,24.0,-1.3098929438742493,2.287622053705056 -398,24.0,23.0,-1.3098929438742493,2.287622053705056 -398,24.0,24.0,4.495715080321987,-7.864978761969621 -398,24.0,25.0,-1.2165301194494855,1.8171440463475024 -398,24.0,26.0,-1.9692920169982515,3.760212661917064 -398,25.0,24.0,-1.2165301194494855,1.8171440463475024 -398,25.0,25.0,1.2165301194494855,-1.8171440463475024 -398,26.0,24.0,-1.9692920169982515,3.760212661917064 -398,26.0,26.0,3.652281470778589,-9.46044252232512 -398,26.0,27.0,0.0,2.608731947574922 -398,26.0,28.0,-0.99553355095268,1.881005840357816 -398,26.0,29.0,-0.6874559028276572,1.293971494797717 -398,27.0,7.0,-1.4439790613954469,4.540814658476248 -398,27.0,26.0,0.0,2.608731947574922 -398,27.0,27.0,1.4439790613954469,-7.214385678698274 -398,28.0,26.0,-0.99553355095268,1.881005840357816 -398,28.0,28.0,1.9075867579849564,-3.604364401207048 -398,28.0,29.0,-0.9120532070322764,1.7233585608492326 -398,29.0,26.0,-0.6874559028276572,1.293971494797717 -398,29.0,28.0,-0.9120532070322764,1.7233585608492326 -398,29.0,29.0,1.5995091098599337,-3.0173300556469496 -399,0.0,0.0,6.765516048652632,-21.23160167089863 -399,0.0,1.0,-5.224646179885656,15.646726840803398 -399,0.0,2.0,-1.5408698687669766,5.631674830095234 -399,1.0,0.0,-5.224646179885656,15.646726840803398 -399,1.0,1.0,9.75228216552403,-30.648662892676068 -399,1.0,3.0,-1.7055303166990268,5.1973792282565086 -399,1.0,4.0,-1.1359607881738778,4.772479328281356 -399,1.0,5.0,-1.6861448807654689,5.116477495334806 -399,2.0,0.0,-1.5408698687669766,5.631674830095234 -399,2.0,2.0,9.736318911079088,-29.13794745915803 -399,2.0,3.0,-8.19544904231211,23.5308726290628 -399,3.0,1.0,-1.7055303166990268,5.1973792282565086 -399,3.0,2.0,-8.19544904231211,23.5308726290628 -399,3.0,3.0,16.314103089185693,-55.509410535254254 -399,3.0,5.0,-6.413123730174556,22.31120356548123 -399,3.0,11.0,0.0,4.191255364806866 -399,4.0,1.0,-1.1359607881738778,4.772479328281356 -399,4.0,4.0,4.089980824135861,-12.190647245055052 -399,4.0,6.0,-2.954020035961983,7.449267916773697 -399,5.0,1.0,-1.6861448807654689,5.116477495334806 -399,5.0,3.0,-6.413123730174556,22.31120356548123 -399,5.0,5.0,22.341631269034565,-82.8291478657789 -399,5.0,6.0,-3.590210423980992,11.02611441072814 -399,5.0,7.0,-6.289308176100628,22.0125786163522 -399,5.0,8.0,0.0,4.915840805411357 -399,5.0,9.0,0.0,1.8561002591115965 -399,5.0,27.0,-4.362844058012917,15.463571542897856 -399,6.0,4.0,-2.954020035961983,7.449267916773697 -399,6.0,5.0,-3.590210423980992,11.02611441072814 -399,6.0,6.0,6.544230459942975,-18.45668232750184 -399,7.0,5.0,-6.289308176100628,22.0125786163522 -399,7.0,7.0,7.733287237496075,-26.527493274828448 -399,7.0,27.0,-1.4439790613954469,4.540814658476248 -399,8.0,5.0,0.0,4.915840805411357 -399,8.0,8.0,0.0,-18.706293706293707 -399,8.0,9.0,0.0,9.090909090909092 -399,8.0,10.0,0.0,4.807692307692308 -399,9.0,5.0,0.0,1.8561002591115965 -399,9.0,8.0,0.0,9.090909090909092 -399,9.0,9.0,13.462042814524237,-41.3837606675224 -399,9.0,16.0,-3.956039125715353,10.317447719844054 -399,9.0,19.0,-1.7848303152666305,3.98535828943083 -399,9.0,20.0,-5.101853820159654,10.98071411292983 -399,9.0,21.0,-2.619319553382597,5.400770303329455 -399,10.0,8.0,0.0,4.807692307692308 -399,10.0,10.0,0.0,-4.807692307692308 -399,11.0,3.0,0.0,4.191255364806866 -399,11.0,11.0,6.573961583776156,-24.424167659260668 -399,11.0,12.0,0.0,7.142857142857143 -399,11.0,13.0,-1.5265676088395577,3.1734252729654173 -399,11.0,14.0,-3.0953961826564296,6.097275864326261 -399,11.0,15.0,-1.9519977922801688,4.104359379111847 -399,12.0,11.0,0.0,7.142857142857143 -399,12.0,12.0,0.0,-7.142857142857143 -399,13.0,11.0,-1.5265676088395577,3.1734252729654173 -399,13.0,13.0,4.01751987283902,-5.424299332335067 -399,13.0,14.0,-2.4909522639994623,2.250874059369649 -399,14.0,11.0,-3.0953961826564296,6.097275864326261 -399,14.0,13.0,-2.4909522639994623,2.250874059369649 -399,14.0,14.0,9.365498545964757,-16.01163373210796 -399,14.0,17.0,-1.8108011504072024,3.687418931630696 -399,14.0,22.0,-1.9683489489016612,3.976064876781356 -399,15.0,11.0,-1.9519977922801688,4.104359379111847 -399,15.0,15.0,3.271064728633931,-8.94513365126506 -399,15.0,16.0,-1.3190669363537617,4.8407742721532125 -399,16.0,9.0,-3.956039125715353,10.317447719844054 -399,16.0,15.0,-1.3190669363537617,4.8407742721532125 -399,16.0,16.0,5.275106062069114,-15.158221991997266 -399,17.0,14.0,-1.8108011504072024,3.687418931630696 -399,17.0,17.0,4.886487584415919,-9.906177730909668 -399,17.0,18.0,-3.0756864340087167,6.218758799278971 -399,18.0,17.0,-3.0756864340087167,6.218758799278971 -399,18.0,18.0,8.958039375185187,-17.98346468163191 -399,18.0,19.0,-5.88235294117647,11.76470588235294 -399,19.0,9.0,-1.7848303152666305,3.98535828943083 -399,19.0,18.0,-5.88235294117647,11.76470588235294 -399,19.0,19.0,7.6671832564431,-15.75006417178377 -399,20.0,9.0,-5.101853820159654,10.98071411292983 -399,20.0,20.0,21.876495189895888,-45.10843276170355 -399,20.0,21.0,-16.774641369736234,34.127718648773715 -399,21.0,9.0,-2.619319553382597,5.400770303329455 -399,21.0,20.0,-16.774641369736234,34.127718648773715 -399,21.0,21.0,21.93449907537439,-43.48289181517921 -399,21.0,23.0,-2.5405381522555563,3.95440286307604 -399,22.0,14.0,-1.9683489489016612,3.976064876781356 -399,22.0,22.0,3.429754555384988,-6.965303617315433 -399,22.0,23.0,-1.4614056064833263,2.989238740534077 -399,23.0,21.0,-2.5405381522555563,3.95440286307604 -399,23.0,22.0,-1.4614056064833263,2.989238740534077 -399,23.0,23.0,5.311836702613133,-9.188263657315172 -399,23.0,24.0,-1.3098929438742493,2.287622053705056 -399,24.0,23.0,-1.3098929438742493,2.287622053705056 -399,24.0,24.0,4.495715080321987,-7.864978761969621 -399,24.0,25.0,-1.2165301194494855,1.8171440463475024 -399,24.0,26.0,-1.9692920169982515,3.760212661917064 -399,25.0,24.0,-1.2165301194494855,1.8171440463475024 -399,25.0,25.0,1.2165301194494855,-1.8171440463475024 -399,26.0,24.0,-1.9692920169982515,3.760212661917064 -399,26.0,26.0,3.652281470778589,-9.46044252232512 -399,26.0,27.0,0.0,2.608731947574922 -399,26.0,28.0,-0.99553355095268,1.881005840357816 -399,26.0,29.0,-0.6874559028276572,1.293971494797717 -399,27.0,5.0,-4.362844058012917,15.463571542897856 -399,27.0,7.0,-1.4439790613954469,4.540814658476248 -399,27.0,26.0,0.0,2.608731947574922 -399,27.0,27.0,5.806823119408364,-22.67145722159613 -399,28.0,26.0,-0.99553355095268,1.881005840357816 -399,28.0,28.0,1.9075867579849564,-3.604364401207048 -399,28.0,29.0,-0.9120532070322764,1.7233585608492326 -399,29.0,26.0,-0.6874559028276572,1.293971494797717 -399,29.0,28.0,-0.9120532070322764,1.7233585608492326 -399,29.0,29.0,1.5995091098599337,-3.0173300556469496 -400,0.0,0.0,6.765516048652632,-21.23160167089863 -400,0.0,1.0,-5.224646179885656,15.646726840803398 -400,0.0,2.0,-1.5408698687669766,5.631674830095234 -400,1.0,0.0,-5.224646179885656,15.646726840803398 -400,1.0,1.0,9.75228216552403,-30.648662892676068 -400,1.0,3.0,-1.7055303166990268,5.1973792282565086 -400,1.0,4.0,-1.1359607881738778,4.772479328281356 -400,1.0,5.0,-1.6861448807654689,5.116477495334806 -400,2.0,0.0,-1.5408698687669766,5.631674830095234 -400,2.0,2.0,9.736318911079088,-29.13794745915803 -400,2.0,3.0,-8.19544904231211,23.5308726290628 -400,3.0,1.0,-1.7055303166990268,5.1973792282565086 -400,3.0,2.0,-8.19544904231211,23.5308726290628 -400,3.0,3.0,16.314103089185693,-55.509410535254254 -400,3.0,5.0,-6.413123730174556,22.31120356548123 -400,3.0,11.0,0.0,4.191255364806866 -400,4.0,1.0,-1.1359607881738778,4.772479328281356 -400,4.0,4.0,1.1359607881738778,-4.751579328281355 -400,5.0,1.0,-1.6861448807654689,5.116477495334806 -400,5.0,3.0,-6.413123730174556,22.31120356548123 -400,5.0,5.0,22.341631269034565,-82.8291478657789 -400,5.0,6.0,-3.590210423980992,11.02611441072814 -400,5.0,7.0,-6.289308176100628,22.0125786163522 -400,5.0,8.0,0.0,4.915840805411357 -400,5.0,9.0,0.0,1.8561002591115965 -400,5.0,27.0,-4.362844058012917,15.463571542897856 -400,6.0,5.0,-3.590210423980992,11.02611441072814 -400,6.0,6.0,3.590210423980992,-11.01761441072814 -400,7.0,5.0,-6.289308176100628,22.0125786163522 -400,7.0,7.0,7.733287237496075,-26.527493274828448 -400,7.0,27.0,-1.4439790613954469,4.540814658476248 -400,8.0,5.0,0.0,4.915840805411357 -400,8.0,8.0,0.0,-18.706293706293707 -400,8.0,9.0,0.0,9.090909090909092 -400,8.0,10.0,0.0,4.807692307692308 -400,9.0,5.0,0.0,1.8561002591115965 -400,9.0,8.0,0.0,9.090909090909092 -400,9.0,9.0,13.462042814524237,-41.3837606675224 -400,9.0,16.0,-3.956039125715353,10.317447719844054 -400,9.0,19.0,-1.7848303152666305,3.98535828943083 -400,9.0,20.0,-5.101853820159654,10.98071411292983 -400,9.0,21.0,-2.619319553382597,5.400770303329455 -400,10.0,8.0,0.0,4.807692307692308 -400,10.0,10.0,0.0,-4.807692307692308 -400,11.0,3.0,0.0,4.191255364806866 -400,11.0,11.0,6.573961583776156,-24.424167659260668 -400,11.0,12.0,0.0,7.142857142857143 -400,11.0,13.0,-1.5265676088395577,3.1734252729654173 -400,11.0,14.0,-3.0953961826564296,6.097275864326261 -400,11.0,15.0,-1.9519977922801688,4.104359379111847 -400,12.0,11.0,0.0,7.142857142857143 -400,12.0,12.0,0.0,-7.142857142857143 -400,13.0,11.0,-1.5265676088395577,3.1734252729654173 -400,13.0,13.0,4.01751987283902,-5.424299332335067 -400,13.0,14.0,-2.4909522639994623,2.250874059369649 -400,14.0,11.0,-3.0953961826564296,6.097275864326261 -400,14.0,13.0,-2.4909522639994623,2.250874059369649 -400,14.0,14.0,9.365498545964757,-16.01163373210796 -400,14.0,17.0,-1.8108011504072024,3.687418931630696 -400,14.0,22.0,-1.9683489489016612,3.976064876781356 -400,15.0,11.0,-1.9519977922801688,4.104359379111847 -400,15.0,15.0,3.271064728633931,-8.94513365126506 -400,15.0,16.0,-1.3190669363537617,4.8407742721532125 -400,16.0,9.0,-3.956039125715353,10.317447719844054 -400,16.0,15.0,-1.3190669363537617,4.8407742721532125 -400,16.0,16.0,5.275106062069114,-15.158221991997266 -400,17.0,14.0,-1.8108011504072024,3.687418931630696 -400,17.0,17.0,4.886487584415919,-9.906177730909668 -400,17.0,18.0,-3.0756864340087167,6.218758799278971 -400,18.0,17.0,-3.0756864340087167,6.218758799278971 -400,18.0,18.0,3.0756864340087167,-6.218758799278971 -400,19.0,9.0,-1.7848303152666305,3.98535828943083 -400,19.0,19.0,1.7848303152666305,-3.98535828943083 -400,20.0,9.0,-5.101853820159654,10.98071411292983 -400,20.0,20.0,21.876495189895888,-45.10843276170355 -400,20.0,21.0,-16.774641369736234,34.127718648773715 -400,21.0,9.0,-2.619319553382597,5.400770303329455 -400,21.0,20.0,-16.774641369736234,34.127718648773715 -400,21.0,21.0,21.93449907537439,-43.48289181517921 -400,21.0,23.0,-2.5405381522555563,3.95440286307604 -400,22.0,14.0,-1.9683489489016612,3.976064876781356 -400,22.0,22.0,3.429754555384988,-6.965303617315433 -400,22.0,23.0,-1.4614056064833263,2.989238740534077 -400,23.0,21.0,-2.5405381522555563,3.95440286307604 -400,23.0,22.0,-1.4614056064833263,2.989238740534077 -400,23.0,23.0,5.311836702613133,-9.188263657315172 -400,23.0,24.0,-1.3098929438742493,2.287622053705056 -400,24.0,23.0,-1.3098929438742493,2.287622053705056 -400,24.0,24.0,4.495715080321987,-7.864978761969621 -400,24.0,25.0,-1.2165301194494855,1.8171440463475024 -400,24.0,26.0,-1.9692920169982515,3.760212661917064 -400,25.0,24.0,-1.2165301194494855,1.8171440463475024 -400,25.0,25.0,1.2165301194494855,-1.8171440463475024 -400,26.0,24.0,-1.9692920169982515,3.760212661917064 -400,26.0,26.0,3.652281470778589,-9.46044252232512 -400,26.0,27.0,0.0,2.608731947574922 -400,26.0,28.0,-0.99553355095268,1.881005840357816 -400,26.0,29.0,-0.6874559028276572,1.293971494797717 -400,27.0,5.0,-4.362844058012917,15.463571542897856 -400,27.0,7.0,-1.4439790613954469,4.540814658476248 -400,27.0,26.0,0.0,2.608731947574922 -400,27.0,27.0,5.806823119408364,-22.67145722159613 -400,28.0,26.0,-0.99553355095268,1.881005840357816 -400,28.0,28.0,1.9075867579849564,-3.604364401207048 -400,28.0,29.0,-0.9120532070322764,1.7233585608492326 -400,29.0,26.0,-0.6874559028276572,1.293971494797717 -400,29.0,28.0,-0.9120532070322764,1.7233585608492326 -400,29.0,29.0,1.5995091098599337,-3.0173300556469496 -401,0.0,0.0,6.765516048652632,-21.23160167089863 -401,0.0,1.0,-5.224646179885656,15.646726840803398 -401,0.0,2.0,-1.5408698687669766,5.631674830095234 -401,1.0,0.0,-5.224646179885656,15.646726840803398 -401,1.0,1.0,8.066137284758561,-25.55088539734126 -401,1.0,3.0,-1.7055303166990268,5.1973792282565086 -401,1.0,4.0,-1.1359607881738778,4.772479328281356 -401,2.0,0.0,-1.5408698687669766,5.631674830095234 -401,2.0,2.0,9.736318911079088,-29.13794745915803 -401,2.0,3.0,-8.19544904231211,23.5308726290628 -401,3.0,1.0,-1.7055303166990268,5.1973792282565086 -401,3.0,2.0,-8.19544904231211,23.5308726290628 -401,3.0,3.0,16.314103089185693,-55.509410535254254 -401,3.0,5.0,-6.413123730174556,22.31120356548123 -401,3.0,11.0,0.0,4.191255364806866 -401,4.0,1.0,-1.1359607881738778,4.772479328281356 -401,4.0,4.0,4.089980824135861,-12.190647245055052 -401,4.0,6.0,-2.954020035961983,7.449267916773697 -401,5.0,3.0,-6.413123730174556,22.31120356548123 -401,5.0,5.0,17.0652759642881,-66.71375595971597 -401,5.0,7.0,-6.289308176100628,22.0125786163522 -401,5.0,8.0,0.0,4.915840805411357 -401,5.0,9.0,0.0,1.8561002591115965 -401,5.0,27.0,-4.362844058012917,15.463571542897856 -401,6.0,4.0,-2.954020035961983,7.449267916773697 -401,6.0,6.0,2.954020035961983,-7.439067916773697 -401,7.0,5.0,-6.289308176100628,22.0125786163522 -401,7.0,7.0,7.733287237496075,-26.527493274828448 -401,7.0,27.0,-1.4439790613954469,4.540814658476248 -401,8.0,5.0,0.0,4.915840805411357 -401,8.0,8.0,0.0,-18.706293706293707 -401,8.0,9.0,0.0,9.090909090909092 -401,8.0,10.0,0.0,4.807692307692308 -401,9.0,5.0,0.0,1.8561002591115965 -401,9.0,8.0,0.0,9.090909090909092 -401,9.0,9.0,10.842723261141638,-35.98299036419294 -401,9.0,16.0,-3.956039125715353,10.317447719844054 -401,9.0,19.0,-1.7848303152666305,3.98535828943083 -401,9.0,20.0,-5.101853820159654,10.98071411292983 -401,10.0,8.0,0.0,4.807692307692308 -401,10.0,10.0,0.0,-4.807692307692308 -401,11.0,3.0,0.0,4.191255364806866 -401,11.0,11.0,6.573961583776156,-24.424167659260668 -401,11.0,12.0,0.0,7.142857142857143 -401,11.0,13.0,-1.5265676088395577,3.1734252729654173 -401,11.0,14.0,-3.0953961826564296,6.097275864326261 -401,11.0,15.0,-1.9519977922801688,4.104359379111847 -401,12.0,11.0,0.0,7.142857142857143 -401,12.0,12.0,0.0,-7.142857142857143 -401,13.0,11.0,-1.5265676088395577,3.1734252729654173 -401,13.0,13.0,4.01751987283902,-5.424299332335067 -401,13.0,14.0,-2.4909522639994623,2.250874059369649 -401,14.0,11.0,-3.0953961826564296,6.097275864326261 -401,14.0,13.0,-2.4909522639994623,2.250874059369649 -401,14.0,14.0,9.365498545964757,-16.01163373210796 -401,14.0,17.0,-1.8108011504072024,3.687418931630696 -401,14.0,22.0,-1.9683489489016612,3.976064876781356 -401,15.0,11.0,-1.9519977922801688,4.104359379111847 -401,15.0,15.0,3.271064728633931,-8.94513365126506 -401,15.0,16.0,-1.3190669363537617,4.8407742721532125 -401,16.0,9.0,-3.956039125715353,10.317447719844054 -401,16.0,15.0,-1.3190669363537617,4.8407742721532125 -401,16.0,16.0,5.275106062069114,-15.158221991997266 -401,17.0,14.0,-1.8108011504072024,3.687418931630696 -401,17.0,17.0,4.886487584415919,-9.906177730909668 -401,17.0,18.0,-3.0756864340087167,6.218758799278971 -401,18.0,17.0,-3.0756864340087167,6.218758799278971 -401,18.0,18.0,8.958039375185187,-17.98346468163191 -401,18.0,19.0,-5.88235294117647,11.76470588235294 -401,19.0,9.0,-1.7848303152666305,3.98535828943083 -401,19.0,18.0,-5.88235294117647,11.76470588235294 -401,19.0,19.0,7.6671832564431,-15.75006417178377 -401,20.0,9.0,-5.101853820159654,10.98071411292983 -401,20.0,20.0,21.876495189895888,-45.10843276170355 -401,20.0,21.0,-16.774641369736234,34.127718648773715 -401,21.0,20.0,-16.774641369736234,34.127718648773715 -401,21.0,21.0,19.31517952199179,-38.08212151184976 -401,21.0,23.0,-2.5405381522555563,3.95440286307604 -401,22.0,14.0,-1.9683489489016612,3.976064876781356 -401,22.0,22.0,3.429754555384988,-6.965303617315433 -401,22.0,23.0,-1.4614056064833263,2.989238740534077 -401,23.0,21.0,-2.5405381522555563,3.95440286307604 -401,23.0,22.0,-1.4614056064833263,2.989238740534077 -401,23.0,23.0,5.311836702613133,-9.188263657315172 -401,23.0,24.0,-1.3098929438742493,2.287622053705056 -401,24.0,23.0,-1.3098929438742493,2.287622053705056 -401,24.0,24.0,4.495715080321987,-7.864978761969621 -401,24.0,25.0,-1.2165301194494855,1.8171440463475024 -401,24.0,26.0,-1.9692920169982515,3.760212661917064 -401,25.0,24.0,-1.2165301194494855,1.8171440463475024 -401,25.0,25.0,1.2165301194494855,-1.8171440463475024 -401,26.0,24.0,-1.9692920169982515,3.760212661917064 -401,26.0,26.0,3.652281470778589,-9.46044252232512 -401,26.0,27.0,0.0,2.608731947574922 -401,26.0,28.0,-0.99553355095268,1.881005840357816 -401,26.0,29.0,-0.6874559028276572,1.293971494797717 -401,27.0,5.0,-4.362844058012917,15.463571542897856 -401,27.0,7.0,-1.4439790613954469,4.540814658476248 -401,27.0,26.0,0.0,2.608731947574922 -401,27.0,27.0,5.806823119408364,-22.67145722159613 -401,28.0,26.0,-0.99553355095268,1.881005840357816 -401,28.0,28.0,1.9075867579849564,-3.604364401207048 -401,28.0,29.0,-0.9120532070322764,1.7233585608492326 -401,29.0,26.0,-0.6874559028276572,1.293971494797717 -401,29.0,28.0,-0.9120532070322764,1.7233585608492326 -401,29.0,29.0,1.5995091098599337,-3.0173300556469496 -402,0.0,0.0,6.765516048652632,-21.23160167089863 -402,0.0,1.0,-5.224646179885656,15.646726840803398 -402,0.0,2.0,-1.5408698687669766,5.631674830095234 -402,1.0,0.0,-5.224646179885656,15.646726840803398 -402,1.0,1.0,9.75228216552403,-30.648662892676068 -402,1.0,3.0,-1.7055303166990268,5.1973792282565086 -402,1.0,4.0,-1.1359607881738778,4.772479328281356 -402,1.0,5.0,-1.6861448807654689,5.116477495334806 -402,2.0,0.0,-1.5408698687669766,5.631674830095234 -402,2.0,2.0,9.736318911079088,-29.13794745915803 -402,2.0,3.0,-8.19544904231211,23.5308726290628 -402,3.0,1.0,-1.7055303166990268,5.1973792282565086 -402,3.0,2.0,-8.19544904231211,23.5308726290628 -402,3.0,3.0,9.900979359011137,-33.202706969773025 -402,3.0,11.0,0.0,4.191255364806866 -402,4.0,1.0,-1.1359607881738778,4.772479328281356 -402,4.0,4.0,4.089980824135861,-12.190647245055052 -402,4.0,6.0,-2.954020035961983,7.449267916773697 -402,5.0,1.0,-1.6861448807654689,5.116477495334806 -402,5.0,5.0,15.928507538860009,-60.52244430029767 -402,5.0,6.0,-3.590210423980992,11.02611441072814 -402,5.0,7.0,-6.289308176100628,22.0125786163522 -402,5.0,8.0,0.0,4.915840805411357 -402,5.0,9.0,0.0,1.8561002591115965 -402,5.0,27.0,-4.362844058012917,15.463571542897856 -402,6.0,4.0,-2.954020035961983,7.449267916773697 -402,6.0,5.0,-3.590210423980992,11.02611441072814 -402,6.0,6.0,6.544230459942975,-18.45668232750184 -402,7.0,5.0,-6.289308176100628,22.0125786163522 -402,7.0,7.0,7.733287237496075,-26.527493274828448 -402,7.0,27.0,-1.4439790613954469,4.540814658476248 -402,8.0,5.0,0.0,4.915840805411357 -402,8.0,8.0,0.0,-18.706293706293707 -402,8.0,9.0,0.0,9.090909090909092 -402,8.0,10.0,0.0,4.807692307692308 -402,9.0,5.0,0.0,1.8561002591115965 -402,9.0,8.0,0.0,9.090909090909092 -402,9.0,9.0,13.462042814524237,-41.3837606675224 -402,9.0,16.0,-3.956039125715353,10.317447719844054 -402,9.0,19.0,-1.7848303152666305,3.98535828943083 -402,9.0,20.0,-5.101853820159654,10.98071411292983 -402,9.0,21.0,-2.619319553382597,5.400770303329455 -402,10.0,8.0,0.0,4.807692307692308 -402,10.0,10.0,0.0,-4.807692307692308 -402,11.0,3.0,0.0,4.191255364806866 -402,11.0,11.0,6.573961583776156,-24.424167659260668 -402,11.0,12.0,0.0,7.142857142857143 -402,11.0,13.0,-1.5265676088395577,3.1734252729654173 -402,11.0,14.0,-3.0953961826564296,6.097275864326261 -402,11.0,15.0,-1.9519977922801688,4.104359379111847 -402,12.0,11.0,0.0,7.142857142857143 -402,12.0,12.0,0.0,-7.142857142857143 -402,13.0,11.0,-1.5265676088395577,3.1734252729654173 -402,13.0,13.0,4.01751987283902,-5.424299332335067 -402,13.0,14.0,-2.4909522639994623,2.250874059369649 -402,14.0,11.0,-3.0953961826564296,6.097275864326261 -402,14.0,13.0,-2.4909522639994623,2.250874059369649 -402,14.0,14.0,9.365498545964757,-16.01163373210796 -402,14.0,17.0,-1.8108011504072024,3.687418931630696 -402,14.0,22.0,-1.9683489489016612,3.976064876781356 -402,15.0,11.0,-1.9519977922801688,4.104359379111847 -402,15.0,15.0,3.271064728633931,-8.94513365126506 -402,15.0,16.0,-1.3190669363537617,4.8407742721532125 -402,16.0,9.0,-3.956039125715353,10.317447719844054 -402,16.0,15.0,-1.3190669363537617,4.8407742721532125 -402,16.0,16.0,5.275106062069114,-15.158221991997266 -402,17.0,14.0,-1.8108011504072024,3.687418931630696 -402,17.0,17.0,4.886487584415919,-9.906177730909668 -402,17.0,18.0,-3.0756864340087167,6.218758799278971 -402,18.0,17.0,-3.0756864340087167,6.218758799278971 -402,18.0,18.0,8.958039375185187,-17.98346468163191 -402,18.0,19.0,-5.88235294117647,11.76470588235294 -402,19.0,9.0,-1.7848303152666305,3.98535828943083 -402,19.0,18.0,-5.88235294117647,11.76470588235294 -402,19.0,19.0,7.6671832564431,-15.75006417178377 -402,20.0,9.0,-5.101853820159654,10.98071411292983 -402,20.0,20.0,21.876495189895888,-45.10843276170355 -402,20.0,21.0,-16.774641369736234,34.127718648773715 -402,21.0,9.0,-2.619319553382597,5.400770303329455 -402,21.0,20.0,-16.774641369736234,34.127718648773715 -402,21.0,21.0,21.93449907537439,-43.48289181517921 -402,21.0,23.0,-2.5405381522555563,3.95440286307604 -402,22.0,14.0,-1.9683489489016612,3.976064876781356 -402,22.0,22.0,3.429754555384988,-6.965303617315433 -402,22.0,23.0,-1.4614056064833263,2.989238740534077 -402,23.0,21.0,-2.5405381522555563,3.95440286307604 -402,23.0,22.0,-1.4614056064833263,2.989238740534077 -402,23.0,23.0,5.311836702613133,-9.188263657315172 -402,23.0,24.0,-1.3098929438742493,2.287622053705056 -402,24.0,23.0,-1.3098929438742493,2.287622053705056 -402,24.0,24.0,4.495715080321987,-7.864978761969621 -402,24.0,25.0,-1.2165301194494855,1.8171440463475024 -402,24.0,26.0,-1.9692920169982515,3.760212661917064 -402,25.0,24.0,-1.2165301194494855,1.8171440463475024 -402,25.0,25.0,1.2165301194494855,-1.8171440463475024 -402,26.0,24.0,-1.9692920169982515,3.760212661917064 -402,26.0,26.0,3.652281470778589,-9.46044252232512 -402,26.0,27.0,0.0,2.608731947574922 -402,26.0,28.0,-0.99553355095268,1.881005840357816 -402,26.0,29.0,-0.6874559028276572,1.293971494797717 -402,27.0,5.0,-4.362844058012917,15.463571542897856 -402,27.0,7.0,-1.4439790613954469,4.540814658476248 -402,27.0,26.0,0.0,2.608731947574922 -402,27.0,27.0,5.806823119408364,-22.67145722159613 -402,28.0,26.0,-0.99553355095268,1.881005840357816 -402,28.0,28.0,1.9075867579849564,-3.604364401207048 -402,28.0,29.0,-0.9120532070322764,1.7233585608492326 -402,29.0,26.0,-0.6874559028276572,1.293971494797717 -402,29.0,28.0,-0.9120532070322764,1.7233585608492326 -402,29.0,29.0,1.5995091098599337,-3.0173300556469496 -403,0.0,0.0,6.765516048652632,-21.23160167089863 -403,0.0,1.0,-5.224646179885656,15.646726840803398 -403,0.0,2.0,-1.5408698687669766,5.631674830095234 -403,1.0,0.0,-5.224646179885656,15.646726840803398 -403,1.0,1.0,9.75228216552403,-30.648662892676068 -403,1.0,3.0,-1.7055303166990268,5.1973792282565086 -403,1.0,4.0,-1.1359607881738778,4.772479328281356 -403,1.0,5.0,-1.6861448807654689,5.116477495334806 -403,2.0,0.0,-1.5408698687669766,5.631674830095234 -403,2.0,2.0,9.736318911079088,-29.13794745915803 -403,2.0,3.0,-8.19544904231211,23.5308726290628 -403,3.0,1.0,-1.7055303166990268,5.1973792282565086 -403,3.0,2.0,-8.19544904231211,23.5308726290628 -403,3.0,3.0,16.314103089185693,-55.509410535254254 -403,3.0,5.0,-6.413123730174556,22.31120356548123 -403,3.0,11.0,0.0,4.191255364806866 -403,4.0,1.0,-1.1359607881738778,4.772479328281356 -403,4.0,4.0,4.089980824135861,-12.190647245055052 -403,4.0,6.0,-2.954020035961983,7.449267916773697 -403,5.0,1.0,-1.6861448807654689,5.116477495334806 -403,5.0,3.0,-6.413123730174556,22.31120356548123 -403,5.0,5.0,22.341631269034565,-82.8291478657789 -403,5.0,6.0,-3.590210423980992,11.02611441072814 -403,5.0,7.0,-6.289308176100628,22.0125786163522 -403,5.0,8.0,0.0,4.915840805411357 -403,5.0,9.0,0.0,1.8561002591115965 -403,5.0,27.0,-4.362844058012917,15.463571542897856 -403,6.0,4.0,-2.954020035961983,7.449267916773697 -403,6.0,5.0,-3.590210423980992,11.02611441072814 -403,6.0,6.0,6.544230459942975,-18.45668232750184 -403,7.0,5.0,-6.289308176100628,22.0125786163522 -403,7.0,7.0,7.733287237496075,-26.527493274828448 -403,7.0,27.0,-1.4439790613954469,4.540814658476248 -403,8.0,5.0,0.0,4.915840805411357 -403,8.0,8.0,0.0,-9.615384615384617 -403,8.0,10.0,0.0,4.807692307692308 -403,9.0,5.0,0.0,1.8561002591115965 -403,9.0,9.0,13.462042814524237,-32.29285157661331 -403,9.0,16.0,-3.956039125715353,10.317447719844054 -403,9.0,19.0,-1.7848303152666305,3.98535828943083 -403,9.0,20.0,-5.101853820159654,10.98071411292983 -403,9.0,21.0,-2.619319553382597,5.400770303329455 -403,10.0,8.0,0.0,4.807692307692308 -403,10.0,10.0,0.0,-4.807692307692308 -403,11.0,3.0,0.0,4.191255364806866 -403,11.0,11.0,6.573961583776156,-24.424167659260668 -403,11.0,12.0,0.0,7.142857142857143 -403,11.0,13.0,-1.5265676088395577,3.1734252729654173 -403,11.0,14.0,-3.0953961826564296,6.097275864326261 -403,11.0,15.0,-1.9519977922801688,4.104359379111847 -403,12.0,11.0,0.0,7.142857142857143 -403,12.0,12.0,0.0,-7.142857142857143 -403,13.0,11.0,-1.5265676088395577,3.1734252729654173 -403,13.0,13.0,4.01751987283902,-5.424299332335067 -403,13.0,14.0,-2.4909522639994623,2.250874059369649 -403,14.0,11.0,-3.0953961826564296,6.097275864326261 -403,14.0,13.0,-2.4909522639994623,2.250874059369649 -403,14.0,14.0,9.365498545964757,-16.01163373210796 -403,14.0,17.0,-1.8108011504072024,3.687418931630696 -403,14.0,22.0,-1.9683489489016612,3.976064876781356 -403,15.0,11.0,-1.9519977922801688,4.104359379111847 -403,15.0,15.0,3.271064728633931,-8.94513365126506 -403,15.0,16.0,-1.3190669363537617,4.8407742721532125 -403,16.0,9.0,-3.956039125715353,10.317447719844054 -403,16.0,15.0,-1.3190669363537617,4.8407742721532125 -403,16.0,16.0,5.275106062069114,-15.158221991997266 -403,17.0,14.0,-1.8108011504072024,3.687418931630696 -403,17.0,17.0,4.886487584415919,-9.906177730909668 -403,17.0,18.0,-3.0756864340087167,6.218758799278971 -403,18.0,17.0,-3.0756864340087167,6.218758799278971 -403,18.0,18.0,8.958039375185187,-17.98346468163191 -403,18.0,19.0,-5.88235294117647,11.76470588235294 -403,19.0,9.0,-1.7848303152666305,3.98535828943083 -403,19.0,18.0,-5.88235294117647,11.76470588235294 -403,19.0,19.0,7.6671832564431,-15.75006417178377 -403,20.0,9.0,-5.101853820159654,10.98071411292983 -403,20.0,20.0,21.876495189895888,-45.10843276170355 -403,20.0,21.0,-16.774641369736234,34.127718648773715 -403,21.0,9.0,-2.619319553382597,5.400770303329455 -403,21.0,20.0,-16.774641369736234,34.127718648773715 -403,21.0,21.0,21.93449907537439,-43.48289181517921 -403,21.0,23.0,-2.5405381522555563,3.95440286307604 -403,22.0,14.0,-1.9683489489016612,3.976064876781356 -403,22.0,22.0,3.429754555384988,-6.965303617315433 -403,22.0,23.0,-1.4614056064833263,2.989238740534077 -403,23.0,21.0,-2.5405381522555563,3.95440286307604 -403,23.0,22.0,-1.4614056064833263,2.989238740534077 -403,23.0,23.0,5.311836702613133,-9.188263657315172 -403,23.0,24.0,-1.3098929438742493,2.287622053705056 -403,24.0,23.0,-1.3098929438742493,2.287622053705056 -403,24.0,24.0,4.495715080321987,-7.864978761969621 -403,24.0,25.0,-1.2165301194494855,1.8171440463475024 -403,24.0,26.0,-1.9692920169982515,3.760212661917064 -403,25.0,24.0,-1.2165301194494855,1.8171440463475024 -403,25.0,25.0,1.2165301194494855,-1.8171440463475024 -403,26.0,24.0,-1.9692920169982515,3.760212661917064 -403,26.0,26.0,3.652281470778589,-9.46044252232512 -403,26.0,27.0,0.0,2.608731947574922 -403,26.0,28.0,-0.99553355095268,1.881005840357816 -403,26.0,29.0,-0.6874559028276572,1.293971494797717 -403,27.0,5.0,-4.362844058012917,15.463571542897856 -403,27.0,7.0,-1.4439790613954469,4.540814658476248 -403,27.0,26.0,0.0,2.608731947574922 -403,27.0,27.0,5.806823119408364,-22.67145722159613 -403,28.0,26.0,-0.99553355095268,1.881005840357816 -403,28.0,28.0,1.9075867579849564,-3.604364401207048 -403,28.0,29.0,-0.9120532070322764,1.7233585608492326 -403,29.0,26.0,-0.6874559028276572,1.293971494797717 -403,29.0,28.0,-0.9120532070322764,1.7233585608492326 -403,29.0,29.0,1.5995091098599337,-3.0173300556469496 -404,0.0,0.0,6.765516048652632,-21.23160167089863 -404,0.0,1.0,-5.224646179885656,15.646726840803398 -404,0.0,2.0,-1.5408698687669766,5.631674830095234 -404,1.0,0.0,-5.224646179885656,15.646726840803398 -404,1.0,1.0,8.046751848825002,-25.46968366441956 -404,1.0,4.0,-1.1359607881738778,4.772479328281356 -404,1.0,5.0,-1.6861448807654689,5.116477495334806 -404,2.0,0.0,-1.5408698687669766,5.631674830095234 -404,2.0,2.0,9.736318911079088,-29.13794745915803 -404,2.0,3.0,-8.19544904231211,23.5308726290628 -404,3.0,2.0,-8.19544904231211,23.5308726290628 -404,3.0,3.0,14.608572772486664,-50.33043130699775 -404,3.0,5.0,-6.413123730174556,22.31120356548123 -404,3.0,11.0,0.0,4.191255364806866 -404,4.0,1.0,-1.1359607881738778,4.772479328281356 -404,4.0,4.0,4.089980824135861,-12.190647245055052 -404,4.0,6.0,-2.954020035961983,7.449267916773697 -404,5.0,1.0,-1.6861448807654689,5.116477495334806 -404,5.0,3.0,-6.413123730174556,22.31120356548123 -404,5.0,5.0,22.341631269034565,-82.8291478657789 -404,5.0,6.0,-3.590210423980992,11.02611441072814 -404,5.0,7.0,-6.289308176100628,22.0125786163522 -404,5.0,8.0,0.0,4.915840805411357 -404,5.0,9.0,0.0,1.8561002591115965 -404,5.0,27.0,-4.362844058012917,15.463571542897856 -404,6.0,4.0,-2.954020035961983,7.449267916773697 -404,6.0,5.0,-3.590210423980992,11.02611441072814 -404,6.0,6.0,6.544230459942975,-18.45668232750184 -404,7.0,5.0,-6.289308176100628,22.0125786163522 -404,7.0,7.0,7.733287237496075,-26.527493274828448 -404,7.0,27.0,-1.4439790613954469,4.540814658476248 -404,8.0,5.0,0.0,4.915840805411357 -404,8.0,8.0,0.0,-18.706293706293707 -404,8.0,9.0,0.0,9.090909090909092 -404,8.0,10.0,0.0,4.807692307692308 -404,9.0,5.0,0.0,1.8561002591115965 -404,9.0,8.0,0.0,9.090909090909092 -404,9.0,9.0,10.842723261141638,-35.98299036419294 -404,9.0,16.0,-3.956039125715353,10.317447719844054 -404,9.0,19.0,-1.7848303152666305,3.98535828943083 -404,9.0,20.0,-5.101853820159654,10.98071411292983 -404,10.0,8.0,0.0,4.807692307692308 -404,10.0,10.0,0.0,-4.807692307692308 -404,11.0,3.0,0.0,4.191255364806866 -404,11.0,11.0,6.573961583776156,-24.424167659260668 -404,11.0,12.0,0.0,7.142857142857143 -404,11.0,13.0,-1.5265676088395577,3.1734252729654173 -404,11.0,14.0,-3.0953961826564296,6.097275864326261 -404,11.0,15.0,-1.9519977922801688,4.104359379111847 -404,12.0,11.0,0.0,7.142857142857143 -404,12.0,12.0,0.0,-7.142857142857143 -404,13.0,11.0,-1.5265676088395577,3.1734252729654173 -404,13.0,13.0,4.01751987283902,-5.424299332335067 -404,13.0,14.0,-2.4909522639994623,2.250874059369649 -404,14.0,11.0,-3.0953961826564296,6.097275864326261 -404,14.0,13.0,-2.4909522639994623,2.250874059369649 -404,14.0,14.0,7.554697395557554,-12.324214800477266 -404,14.0,22.0,-1.9683489489016612,3.976064876781356 -404,15.0,11.0,-1.9519977922801688,4.104359379111847 -404,15.0,15.0,3.271064728633931,-8.94513365126506 -404,15.0,16.0,-1.3190669363537617,4.8407742721532125 -404,16.0,9.0,-3.956039125715353,10.317447719844054 -404,16.0,15.0,-1.3190669363537617,4.8407742721532125 -404,16.0,16.0,5.275106062069114,-15.158221991997266 -404,17.0,17.0,3.0756864340087167,-6.218758799278971 -404,17.0,18.0,-3.0756864340087167,6.218758799278971 -404,18.0,17.0,-3.0756864340087167,6.218758799278971 -404,18.0,18.0,8.958039375185187,-17.98346468163191 -404,18.0,19.0,-5.88235294117647,11.76470588235294 -404,19.0,9.0,-1.7848303152666305,3.98535828943083 -404,19.0,18.0,-5.88235294117647,11.76470588235294 -404,19.0,19.0,7.6671832564431,-15.75006417178377 -404,20.0,9.0,-5.101853820159654,10.98071411292983 -404,20.0,20.0,21.876495189895888,-45.10843276170355 -404,20.0,21.0,-16.774641369736234,34.127718648773715 -404,21.0,20.0,-16.774641369736234,34.127718648773715 -404,21.0,21.0,19.31517952199179,-38.08212151184976 -404,21.0,23.0,-2.5405381522555563,3.95440286307604 -404,22.0,14.0,-1.9683489489016612,3.976064876781356 -404,22.0,22.0,3.429754555384988,-6.965303617315433 -404,22.0,23.0,-1.4614056064833263,2.989238740534077 -404,23.0,21.0,-2.5405381522555563,3.95440286307604 -404,23.0,22.0,-1.4614056064833263,2.989238740534077 -404,23.0,23.0,5.311836702613133,-9.188263657315172 -404,23.0,24.0,-1.3098929438742493,2.287622053705056 -404,24.0,23.0,-1.3098929438742493,2.287622053705056 -404,24.0,24.0,2.526423063323735,-4.104766100052558 -404,24.0,25.0,-1.2165301194494855,1.8171440463475024 -404,25.0,24.0,-1.2165301194494855,1.8171440463475024 -404,25.0,25.0,1.2165301194494855,-1.8171440463475024 -404,26.0,26.0,1.6829894537803372,-5.700229860408058 -404,26.0,27.0,0.0,2.608731947574922 -404,26.0,28.0,-0.99553355095268,1.881005840357816 -404,26.0,29.0,-0.6874559028276572,1.293971494797717 -404,27.0,5.0,-4.362844058012917,15.463571542897856 -404,27.0,7.0,-1.4439790613954469,4.540814658476248 -404,27.0,26.0,0.0,2.608731947574922 -404,27.0,27.0,5.806823119408364,-22.67145722159613 -404,28.0,26.0,-0.99553355095268,1.881005840357816 -404,28.0,28.0,1.9075867579849564,-3.604364401207048 -404,28.0,29.0,-0.9120532070322764,1.7233585608492326 -404,29.0,26.0,-0.6874559028276572,1.293971494797717 -404,29.0,28.0,-0.9120532070322764,1.7233585608492326 -404,29.0,29.0,1.5995091098599337,-3.0173300556469496 -405,0.0,0.0,6.765516048652632,-21.23160167089863 -405,0.0,1.0,-5.224646179885656,15.646726840803398 -405,0.0,2.0,-1.5408698687669766,5.631674830095234 -405,1.0,0.0,-5.224646179885656,15.646726840803398 -405,1.0,1.0,9.75228216552403,-30.648662892676068 -405,1.0,3.0,-1.7055303166990268,5.1973792282565086 -405,1.0,4.0,-1.1359607881738778,4.772479328281356 -405,1.0,5.0,-1.6861448807654689,5.116477495334806 -405,2.0,0.0,-1.5408698687669766,5.631674830095234 -405,2.0,2.0,9.736318911079088,-29.13794745915803 -405,2.0,3.0,-8.19544904231211,23.5308726290628 -405,3.0,1.0,-1.7055303166990268,5.1973792282565086 -405,3.0,2.0,-8.19544904231211,23.5308726290628 -405,3.0,3.0,16.314103089185693,-55.509410535254254 -405,3.0,5.0,-6.413123730174556,22.31120356548123 -405,3.0,11.0,0.0,4.191255364806866 -405,4.0,1.0,-1.1359607881738778,4.772479328281356 -405,4.0,4.0,4.089980824135861,-12.190647245055052 -405,4.0,6.0,-2.954020035961983,7.449267916773697 -405,5.0,1.0,-1.6861448807654689,5.116477495334806 -405,5.0,3.0,-6.413123730174556,22.31120356548123 -405,5.0,5.0,22.341631269034565,-82.8291478657789 -405,5.0,6.0,-3.590210423980992,11.02611441072814 -405,5.0,7.0,-6.289308176100628,22.0125786163522 -405,5.0,8.0,0.0,4.915840805411357 -405,5.0,9.0,0.0,1.8561002591115965 -405,5.0,27.0,-4.362844058012917,15.463571542897856 -405,6.0,4.0,-2.954020035961983,7.449267916773697 -405,6.0,5.0,-3.590210423980992,11.02611441072814 -405,6.0,6.0,6.544230459942975,-18.45668232750184 -405,7.0,5.0,-6.289308176100628,22.0125786163522 -405,7.0,7.0,7.733287237496075,-26.527493274828448 -405,7.0,27.0,-1.4439790613954469,4.540814658476248 -405,8.0,5.0,0.0,4.915840805411357 -405,8.0,8.0,0.0,-18.706293706293707 -405,8.0,9.0,0.0,9.090909090909092 -405,8.0,10.0,0.0,4.807692307692308 -405,9.0,5.0,0.0,1.8561002591115965 -405,9.0,8.0,0.0,9.090909090909092 -405,9.0,9.0,13.462042814524237,-41.3837606675224 -405,9.0,16.0,-3.956039125715353,10.317447719844054 -405,9.0,19.0,-1.7848303152666305,3.98535828943083 -405,9.0,20.0,-5.101853820159654,10.98071411292983 -405,9.0,21.0,-2.619319553382597,5.400770303329455 -405,10.0,8.0,0.0,4.807692307692308 -405,10.0,10.0,0.0,-4.807692307692308 -405,11.0,3.0,0.0,4.191255364806866 -405,11.0,11.0,6.573961583776156,-24.424167659260668 -405,11.0,12.0,0.0,7.142857142857143 -405,11.0,13.0,-1.5265676088395577,3.1734252729654173 -405,11.0,14.0,-3.0953961826564296,6.097275864326261 -405,11.0,15.0,-1.9519977922801688,4.104359379111847 -405,12.0,11.0,0.0,7.142857142857143 -405,12.0,12.0,0.0,-7.142857142857143 -405,13.0,11.0,-1.5265676088395577,3.1734252729654173 -405,13.0,13.0,4.01751987283902,-5.424299332335067 -405,13.0,14.0,-2.4909522639994623,2.250874059369649 -405,14.0,11.0,-3.0953961826564296,6.097275864326261 -405,14.0,13.0,-2.4909522639994623,2.250874059369649 -405,14.0,14.0,9.365498545964757,-16.01163373210796 -405,14.0,17.0,-1.8108011504072024,3.687418931630696 -405,14.0,22.0,-1.9683489489016612,3.976064876781356 -405,15.0,11.0,-1.9519977922801688,4.104359379111847 -405,15.0,15.0,3.271064728633931,-8.94513365126506 -405,15.0,16.0,-1.3190669363537617,4.8407742721532125 -405,16.0,9.0,-3.956039125715353,10.317447719844054 -405,16.0,15.0,-1.3190669363537617,4.8407742721532125 -405,16.0,16.0,5.275106062069114,-15.158221991997266 -405,17.0,14.0,-1.8108011504072024,3.687418931630696 -405,17.0,17.0,4.886487584415919,-9.906177730909668 -405,17.0,18.0,-3.0756864340087167,6.218758799278971 -405,18.0,17.0,-3.0756864340087167,6.218758799278971 -405,18.0,18.0,8.958039375185187,-17.98346468163191 -405,18.0,19.0,-5.88235294117647,11.76470588235294 -405,19.0,9.0,-1.7848303152666305,3.98535828943083 -405,19.0,18.0,-5.88235294117647,11.76470588235294 -405,19.0,19.0,7.6671832564431,-15.75006417178377 -405,20.0,9.0,-5.101853820159654,10.98071411292983 -405,20.0,20.0,21.876495189895888,-45.10843276170355 -405,20.0,21.0,-16.774641369736234,34.127718648773715 -405,21.0,9.0,-2.619319553382597,5.400770303329455 -405,21.0,20.0,-16.774641369736234,34.127718648773715 -405,21.0,21.0,21.93449907537439,-43.48289181517921 -405,21.0,23.0,-2.5405381522555563,3.95440286307604 -405,22.0,14.0,-1.9683489489016612,3.976064876781356 -405,22.0,22.0,3.429754555384988,-6.965303617315433 -405,22.0,23.0,-1.4614056064833263,2.989238740534077 -405,23.0,21.0,-2.5405381522555563,3.95440286307604 -405,23.0,22.0,-1.4614056064833263,2.989238740534077 -405,23.0,23.0,5.311836702613133,-9.188263657315172 -405,23.0,24.0,-1.3098929438742493,2.287622053705056 -405,24.0,23.0,-1.3098929438742493,2.287622053705056 -405,24.0,24.0,2.526423063323735,-4.104766100052558 -405,24.0,25.0,-1.2165301194494855,1.8171440463475024 -405,25.0,24.0,-1.2165301194494855,1.8171440463475024 -405,25.0,25.0,1.2165301194494855,-1.8171440463475024 -405,26.0,26.0,1.6829894537803372,-5.700229860408058 -405,26.0,27.0,0.0,2.608731947574922 -405,26.0,28.0,-0.99553355095268,1.881005840357816 -405,26.0,29.0,-0.6874559028276572,1.293971494797717 -405,27.0,5.0,-4.362844058012917,15.463571542897856 -405,27.0,7.0,-1.4439790613954469,4.540814658476248 -405,27.0,26.0,0.0,2.608731947574922 -405,27.0,27.0,5.806823119408364,-22.67145722159613 -405,28.0,26.0,-0.99553355095268,1.881005840357816 -405,28.0,28.0,1.9075867579849564,-3.604364401207048 -405,28.0,29.0,-0.9120532070322764,1.7233585608492326 -405,29.0,26.0,-0.6874559028276572,1.293971494797717 -405,29.0,28.0,-0.9120532070322764,1.7233585608492326 -405,29.0,29.0,1.5995091098599337,-3.0173300556469496 -406,0.0,0.0,6.765516048652632,-21.23160167089863 -406,0.0,1.0,-5.224646179885656,15.646726840803398 -406,0.0,2.0,-1.5408698687669766,5.631674830095234 -406,1.0,0.0,-5.224646179885656,15.646726840803398 -406,1.0,1.0,9.75228216552403,-30.648662892676068 -406,1.0,3.0,-1.7055303166990268,5.1973792282565086 -406,1.0,4.0,-1.1359607881738778,4.772479328281356 -406,1.0,5.0,-1.6861448807654689,5.116477495334806 -406,2.0,0.0,-1.5408698687669766,5.631674830095234 -406,2.0,2.0,9.736318911079088,-29.13794745915803 -406,2.0,3.0,-8.19544904231211,23.5308726290628 -406,3.0,1.0,-1.7055303166990268,5.1973792282565086 -406,3.0,2.0,-8.19544904231211,23.5308726290628 -406,3.0,3.0,16.314103089185693,-55.509410535254254 -406,3.0,5.0,-6.413123730174556,22.31120356548123 -406,3.0,11.0,0.0,4.191255364806866 -406,4.0,1.0,-1.1359607881738778,4.772479328281356 -406,4.0,4.0,4.089980824135861,-12.190647245055052 -406,4.0,6.0,-2.954020035961983,7.449267916773697 -406,5.0,1.0,-1.6861448807654689,5.116477495334806 -406,5.0,3.0,-6.413123730174556,22.31120356548123 -406,5.0,5.0,17.978787211021647,-67.37207632288106 -406,5.0,6.0,-3.590210423980992,11.02611441072814 -406,5.0,7.0,-6.289308176100628,22.0125786163522 -406,5.0,8.0,0.0,4.915840805411357 -406,5.0,9.0,0.0,1.8561002591115965 -406,6.0,4.0,-2.954020035961983,7.449267916773697 -406,6.0,5.0,-3.590210423980992,11.02611441072814 -406,6.0,6.0,6.544230459942975,-18.45668232750184 -406,7.0,5.0,-6.289308176100628,22.0125786163522 -406,7.0,7.0,7.733287237496075,-26.527493274828448 -406,7.0,27.0,-1.4439790613954469,4.540814658476248 -406,8.0,5.0,0.0,4.915840805411357 -406,8.0,8.0,0.0,-18.706293706293707 -406,8.0,9.0,0.0,9.090909090909092 -406,8.0,10.0,0.0,4.807692307692308 -406,9.0,5.0,0.0,1.8561002591115965 -406,9.0,8.0,0.0,9.090909090909092 -406,9.0,9.0,13.462042814524237,-41.3837606675224 -406,9.0,16.0,-3.956039125715353,10.317447719844054 -406,9.0,19.0,-1.7848303152666305,3.98535828943083 -406,9.0,20.0,-5.101853820159654,10.98071411292983 -406,9.0,21.0,-2.619319553382597,5.400770303329455 -406,10.0,8.0,0.0,4.807692307692308 -406,10.0,10.0,0.0,-4.807692307692308 -406,11.0,3.0,0.0,4.191255364806866 -406,11.0,11.0,4.621963791495987,-20.31980828014882 -406,11.0,12.0,0.0,7.142857142857143 -406,11.0,13.0,-1.5265676088395577,3.1734252729654173 -406,11.0,14.0,-3.0953961826564296,6.097275864326261 -406,12.0,11.0,0.0,7.142857142857143 -406,12.0,12.0,0.0,-7.142857142857143 -406,13.0,11.0,-1.5265676088395577,3.1734252729654173 -406,13.0,13.0,4.01751987283902,-5.424299332335067 -406,13.0,14.0,-2.4909522639994623,2.250874059369649 -406,14.0,11.0,-3.0953961826564296,6.097275864326261 -406,14.0,13.0,-2.4909522639994623,2.250874059369649 -406,14.0,14.0,9.365498545964757,-16.01163373210796 -406,14.0,17.0,-1.8108011504072024,3.687418931630696 -406,14.0,22.0,-1.9683489489016612,3.976064876781356 -406,15.0,15.0,1.3190669363537617,-4.8407742721532125 -406,15.0,16.0,-1.3190669363537617,4.8407742721532125 -406,16.0,9.0,-3.956039125715353,10.317447719844054 -406,16.0,15.0,-1.3190669363537617,4.8407742721532125 -406,16.0,16.0,5.275106062069114,-15.158221991997266 -406,17.0,14.0,-1.8108011504072024,3.687418931630696 -406,17.0,17.0,4.886487584415919,-9.906177730909668 -406,17.0,18.0,-3.0756864340087167,6.218758799278971 -406,18.0,17.0,-3.0756864340087167,6.218758799278971 -406,18.0,18.0,8.958039375185187,-17.98346468163191 -406,18.0,19.0,-5.88235294117647,11.76470588235294 -406,19.0,9.0,-1.7848303152666305,3.98535828943083 -406,19.0,18.0,-5.88235294117647,11.76470588235294 -406,19.0,19.0,7.6671832564431,-15.75006417178377 -406,20.0,9.0,-5.101853820159654,10.98071411292983 -406,20.0,20.0,21.876495189895888,-45.10843276170355 -406,20.0,21.0,-16.774641369736234,34.127718648773715 -406,21.0,9.0,-2.619319553382597,5.400770303329455 -406,21.0,20.0,-16.774641369736234,34.127718648773715 -406,21.0,21.0,21.93449907537439,-43.48289181517921 -406,21.0,23.0,-2.5405381522555563,3.95440286307604 -406,22.0,14.0,-1.9683489489016612,3.976064876781356 -406,22.0,22.0,3.429754555384988,-6.965303617315433 -406,22.0,23.0,-1.4614056064833263,2.989238740534077 -406,23.0,21.0,-2.5405381522555563,3.95440286307604 -406,23.0,22.0,-1.4614056064833263,2.989238740534077 -406,23.0,23.0,5.311836702613133,-9.188263657315172 -406,23.0,24.0,-1.3098929438742493,2.287622053705056 -406,24.0,23.0,-1.3098929438742493,2.287622053705056 -406,24.0,24.0,4.495715080321987,-7.864978761969621 -406,24.0,25.0,-1.2165301194494855,1.8171440463475024 -406,24.0,26.0,-1.9692920169982515,3.760212661917064 -406,25.0,24.0,-1.2165301194494855,1.8171440463475024 -406,25.0,25.0,1.2165301194494855,-1.8171440463475024 -406,26.0,24.0,-1.9692920169982515,3.760212661917064 -406,26.0,26.0,3.652281470778589,-9.46044252232512 -406,26.0,27.0,0.0,2.608731947574922 -406,26.0,28.0,-0.99553355095268,1.881005840357816 -406,26.0,29.0,-0.6874559028276572,1.293971494797717 -406,27.0,7.0,-1.4439790613954469,4.540814658476248 -406,27.0,26.0,0.0,2.608731947574922 -406,27.0,27.0,1.4439790613954469,-7.214385678698274 -406,28.0,26.0,-0.99553355095268,1.881005840357816 -406,28.0,28.0,1.9075867579849564,-3.604364401207048 -406,28.0,29.0,-0.9120532070322764,1.7233585608492326 -406,29.0,26.0,-0.6874559028276572,1.293971494797717 -406,29.0,28.0,-0.9120532070322764,1.7233585608492326 -406,29.0,29.0,1.5995091098599337,-3.0173300556469496 -407,0.0,0.0,6.765516048652632,-21.23160167089863 -407,0.0,1.0,-5.224646179885656,15.646726840803398 -407,0.0,2.0,-1.5408698687669766,5.631674830095234 -407,1.0,0.0,-5.224646179885656,15.646726840803398 -407,1.0,1.0,9.75228216552403,-30.648662892676068 -407,1.0,3.0,-1.7055303166990268,5.1973792282565086 -407,1.0,4.0,-1.1359607881738778,4.772479328281356 -407,1.0,5.0,-1.6861448807654689,5.116477495334806 -407,2.0,0.0,-1.5408698687669766,5.631674830095234 -407,2.0,2.0,9.736318911079088,-29.13794745915803 -407,2.0,3.0,-8.19544904231211,23.5308726290628 -407,3.0,1.0,-1.7055303166990268,5.1973792282565086 -407,3.0,2.0,-8.19544904231211,23.5308726290628 -407,3.0,3.0,16.314103089185693,-55.509410535254254 -407,3.0,5.0,-6.413123730174556,22.31120356548123 -407,3.0,11.0,0.0,4.191255364806866 -407,4.0,1.0,-1.1359607881738778,4.772479328281356 -407,4.0,4.0,4.089980824135861,-12.190647245055052 -407,4.0,6.0,-2.954020035961983,7.449267916773697 -407,5.0,1.0,-1.6861448807654689,5.116477495334806 -407,5.0,3.0,-6.413123730174556,22.31120356548123 -407,5.0,5.0,22.341631269034565,-82.8291478657789 -407,5.0,6.0,-3.590210423980992,11.02611441072814 -407,5.0,7.0,-6.289308176100628,22.0125786163522 -407,5.0,8.0,0.0,4.915840805411357 -407,5.0,9.0,0.0,1.8561002591115965 -407,5.0,27.0,-4.362844058012917,15.463571542897856 -407,6.0,4.0,-2.954020035961983,7.449267916773697 -407,6.0,5.0,-3.590210423980992,11.02611441072814 -407,6.0,6.0,6.544230459942975,-18.45668232750184 -407,7.0,5.0,-6.289308176100628,22.0125786163522 -407,7.0,7.0,7.733287237496075,-26.527493274828448 -407,7.0,27.0,-1.4439790613954469,4.540814658476248 -407,8.0,5.0,0.0,4.915840805411357 -407,8.0,8.0,0.0,-18.706293706293707 -407,8.0,9.0,0.0,9.090909090909092 -407,8.0,10.0,0.0,4.807692307692308 -407,9.0,5.0,0.0,1.8561002591115965 -407,9.0,8.0,0.0,9.090909090909092 -407,9.0,9.0,13.462042814524237,-41.3837606675224 -407,9.0,16.0,-3.956039125715353,10.317447719844054 -407,9.0,19.0,-1.7848303152666305,3.98535828943083 -407,9.0,20.0,-5.101853820159654,10.98071411292983 -407,9.0,21.0,-2.619319553382597,5.400770303329455 -407,10.0,8.0,0.0,4.807692307692308 -407,10.0,10.0,0.0,-4.807692307692308 -407,11.0,3.0,0.0,4.191255364806866 -407,11.0,11.0,4.621963791495987,-20.31980828014882 -407,11.0,12.0,0.0,7.142857142857143 -407,11.0,13.0,-1.5265676088395577,3.1734252729654173 -407,11.0,14.0,-3.0953961826564296,6.097275864326261 -407,12.0,11.0,0.0,7.142857142857143 -407,12.0,12.0,0.0,-7.142857142857143 -407,13.0,11.0,-1.5265676088395577,3.1734252729654173 -407,13.0,13.0,4.01751987283902,-5.424299332335067 -407,13.0,14.0,-2.4909522639994623,2.250874059369649 -407,14.0,11.0,-3.0953961826564296,6.097275864326261 -407,14.0,13.0,-2.4909522639994623,2.250874059369649 -407,14.0,14.0,9.365498545964757,-16.01163373210796 -407,14.0,17.0,-1.8108011504072024,3.687418931630696 -407,14.0,22.0,-1.9683489489016612,3.976064876781356 -407,15.0,15.0,1.3190669363537617,-4.8407742721532125 -407,15.0,16.0,-1.3190669363537617,4.8407742721532125 -407,16.0,9.0,-3.956039125715353,10.317447719844054 -407,16.0,15.0,-1.3190669363537617,4.8407742721532125 -407,16.0,16.0,5.275106062069114,-15.158221991997266 -407,17.0,14.0,-1.8108011504072024,3.687418931630696 -407,17.0,17.0,4.886487584415919,-9.906177730909668 -407,17.0,18.0,-3.0756864340087167,6.218758799278971 -407,18.0,17.0,-3.0756864340087167,6.218758799278971 -407,18.0,18.0,8.958039375185187,-17.98346468163191 -407,18.0,19.0,-5.88235294117647,11.76470588235294 -407,19.0,9.0,-1.7848303152666305,3.98535828943083 -407,19.0,18.0,-5.88235294117647,11.76470588235294 -407,19.0,19.0,7.6671832564431,-15.75006417178377 -407,20.0,9.0,-5.101853820159654,10.98071411292983 -407,20.0,20.0,5.101853820159654,-10.98071411292983 -407,21.0,9.0,-2.619319553382597,5.400770303329455 -407,21.0,21.0,5.159857705638154,-9.355173166405494 -407,21.0,23.0,-2.5405381522555563,3.95440286307604 -407,22.0,14.0,-1.9683489489016612,3.976064876781356 -407,22.0,22.0,3.429754555384988,-6.965303617315433 -407,22.0,23.0,-1.4614056064833263,2.989238740534077 -407,23.0,21.0,-2.5405381522555563,3.95440286307604 -407,23.0,22.0,-1.4614056064833263,2.989238740534077 -407,23.0,23.0,4.001943758738883,-6.900641603610116 -407,24.0,24.0,3.185822136447737,-5.577356708264566 -407,24.0,25.0,-1.2165301194494855,1.8171440463475024 -407,24.0,26.0,-1.9692920169982515,3.760212661917064 -407,25.0,24.0,-1.2165301194494855,1.8171440463475024 -407,25.0,25.0,1.2165301194494855,-1.8171440463475024 -407,26.0,24.0,-1.9692920169982515,3.760212661917064 -407,26.0,26.0,3.652281470778589,-9.46044252232512 -407,26.0,27.0,0.0,2.608731947574922 -407,26.0,28.0,-0.99553355095268,1.881005840357816 -407,26.0,29.0,-0.6874559028276572,1.293971494797717 -407,27.0,5.0,-4.362844058012917,15.463571542897856 -407,27.0,7.0,-1.4439790613954469,4.540814658476248 -407,27.0,26.0,0.0,2.608731947574922 -407,27.0,27.0,5.806823119408364,-22.67145722159613 -407,28.0,26.0,-0.99553355095268,1.881005840357816 -407,28.0,28.0,1.9075867579849564,-3.604364401207048 -407,28.0,29.0,-0.9120532070322764,1.7233585608492326 -407,29.0,26.0,-0.6874559028276572,1.293971494797717 -407,29.0,28.0,-0.9120532070322764,1.7233585608492326 -407,29.0,29.0,1.5995091098599337,-3.0173300556469496 -408,0.0,0.0,6.765516048652632,-21.23160167089863 -408,0.0,1.0,-5.224646179885656,15.646726840803398 -408,0.0,2.0,-1.5408698687669766,5.631674830095234 -408,1.0,0.0,-5.224646179885656,15.646726840803398 -408,1.0,1.0,9.75228216552403,-30.648662892676068 -408,1.0,3.0,-1.7055303166990268,5.1973792282565086 -408,1.0,4.0,-1.1359607881738778,4.772479328281356 -408,1.0,5.0,-1.6861448807654689,5.116477495334806 -408,2.0,0.0,-1.5408698687669766,5.631674830095234 -408,2.0,2.0,9.736318911079088,-29.13794745915803 -408,2.0,3.0,-8.19544904231211,23.5308726290628 -408,3.0,1.0,-1.7055303166990268,5.1973792282565086 -408,3.0,2.0,-8.19544904231211,23.5308726290628 -408,3.0,3.0,16.314103089185693,-55.509410535254254 -408,3.0,5.0,-6.413123730174556,22.31120356548123 -408,3.0,11.0,0.0,4.191255364806866 -408,4.0,1.0,-1.1359607881738778,4.772479328281356 -408,4.0,4.0,4.089980824135861,-12.190647245055052 -408,4.0,6.0,-2.954020035961983,7.449267916773697 -408,5.0,1.0,-1.6861448807654689,5.116477495334806 -408,5.0,3.0,-6.413123730174556,22.31120356548123 -408,5.0,5.0,22.341631269034565,-82.8291478657789 -408,5.0,6.0,-3.590210423980992,11.02611441072814 -408,5.0,7.0,-6.289308176100628,22.0125786163522 -408,5.0,8.0,0.0,4.915840805411357 -408,5.0,9.0,0.0,1.8561002591115965 -408,5.0,27.0,-4.362844058012917,15.463571542897856 -408,6.0,4.0,-2.954020035961983,7.449267916773697 -408,6.0,5.0,-3.590210423980992,11.02611441072814 -408,6.0,6.0,6.544230459942975,-18.45668232750184 -408,7.0,5.0,-6.289308176100628,22.0125786163522 -408,7.0,7.0,7.733287237496075,-26.527493274828448 -408,7.0,27.0,-1.4439790613954469,4.540814658476248 -408,8.0,5.0,0.0,4.915840805411357 -408,8.0,8.0,0.0,-18.706293706293707 -408,8.0,9.0,0.0,9.090909090909092 -408,8.0,10.0,0.0,4.807692307692308 -408,9.0,5.0,0.0,1.8561002591115965 -408,9.0,8.0,0.0,9.090909090909092 -408,9.0,9.0,13.462042814524237,-41.3837606675224 -408,9.0,16.0,-3.956039125715353,10.317447719844054 -408,9.0,19.0,-1.7848303152666305,3.98535828943083 -408,9.0,20.0,-5.101853820159654,10.98071411292983 -408,9.0,21.0,-2.619319553382597,5.400770303329455 -408,10.0,8.0,0.0,4.807692307692308 -408,10.0,10.0,0.0,-4.807692307692308 -408,11.0,3.0,0.0,4.191255364806866 -408,11.0,11.0,6.573961583776156,-24.424167659260668 -408,11.0,12.0,0.0,7.142857142857143 -408,11.0,13.0,-1.5265676088395577,3.1734252729654173 -408,11.0,14.0,-3.0953961826564296,6.097275864326261 -408,11.0,15.0,-1.9519977922801688,4.104359379111847 -408,12.0,11.0,0.0,7.142857142857143 -408,12.0,12.0,0.0,-7.142857142857143 -408,13.0,11.0,-1.5265676088395577,3.1734252729654173 -408,13.0,13.0,4.01751987283902,-5.424299332335067 -408,13.0,14.0,-2.4909522639994623,2.250874059369649 -408,14.0,11.0,-3.0953961826564296,6.097275864326261 -408,14.0,13.0,-2.4909522639994623,2.250874059369649 -408,14.0,14.0,9.365498545964757,-16.01163373210796 -408,14.0,17.0,-1.8108011504072024,3.687418931630696 -408,14.0,22.0,-1.9683489489016612,3.976064876781356 -408,15.0,11.0,-1.9519977922801688,4.104359379111847 -408,15.0,15.0,3.271064728633931,-8.94513365126506 -408,15.0,16.0,-1.3190669363537617,4.8407742721532125 -408,16.0,9.0,-3.956039125715353,10.317447719844054 -408,16.0,15.0,-1.3190669363537617,4.8407742721532125 -408,16.0,16.0,5.275106062069114,-15.158221991997266 -408,17.0,14.0,-1.8108011504072024,3.687418931630696 -408,17.0,17.0,4.886487584415919,-9.906177730909668 -408,17.0,18.0,-3.0756864340087167,6.218758799278971 -408,18.0,17.0,-3.0756864340087167,6.218758799278971 -408,18.0,18.0,8.958039375185187,-17.98346468163191 -408,18.0,19.0,-5.88235294117647,11.76470588235294 -408,19.0,9.0,-1.7848303152666305,3.98535828943083 -408,19.0,18.0,-5.88235294117647,11.76470588235294 -408,19.0,19.0,7.6671832564431,-15.75006417178377 -408,20.0,9.0,-5.101853820159654,10.98071411292983 -408,20.0,20.0,21.876495189895888,-45.10843276170355 -408,20.0,21.0,-16.774641369736234,34.127718648773715 -408,21.0,9.0,-2.619319553382597,5.400770303329455 -408,21.0,20.0,-16.774641369736234,34.127718648773715 -408,21.0,21.0,21.93449907537439,-43.48289181517921 -408,21.0,23.0,-2.5405381522555563,3.95440286307604 -408,22.0,14.0,-1.9683489489016612,3.976064876781356 -408,22.0,22.0,3.429754555384988,-6.965303617315433 -408,22.0,23.0,-1.4614056064833263,2.989238740534077 -408,23.0,21.0,-2.5405381522555563,3.95440286307604 -408,23.0,22.0,-1.4614056064833263,2.989238740534077 -408,23.0,23.0,5.311836702613133,-9.188263657315172 -408,23.0,24.0,-1.3098929438742493,2.287622053705056 -408,24.0,23.0,-1.3098929438742493,2.287622053705056 -408,24.0,24.0,4.495715080321987,-7.864978761969621 -408,24.0,25.0,-1.2165301194494855,1.8171440463475024 -408,24.0,26.0,-1.9692920169982515,3.760212661917064 -408,25.0,24.0,-1.2165301194494855,1.8171440463475024 -408,25.0,25.0,1.2165301194494855,-1.8171440463475024 -408,26.0,24.0,-1.9692920169982515,3.760212661917064 -408,26.0,26.0,3.652281470778589,-9.46044252232512 -408,26.0,27.0,0.0,2.608731947574922 -408,26.0,28.0,-0.99553355095268,1.881005840357816 -408,26.0,29.0,-0.6874559028276572,1.293971494797717 -408,27.0,5.0,-4.362844058012917,15.463571542897856 -408,27.0,7.0,-1.4439790613954469,4.540814658476248 -408,27.0,26.0,0.0,2.608731947574922 -408,27.0,27.0,5.806823119408364,-22.67145722159613 -408,28.0,26.0,-0.99553355095268,1.881005840357816 -408,28.0,28.0,1.9075867579849564,-3.604364401207048 -408,28.0,29.0,-0.9120532070322764,1.7233585608492326 -408,29.0,26.0,-0.6874559028276572,1.293971494797717 -408,29.0,28.0,-0.9120532070322764,1.7233585608492326 -408,29.0,29.0,1.5995091098599337,-3.0173300556469496 -409,0.0,0.0,6.765516048652632,-21.23160167089863 -409,0.0,1.0,-5.224646179885656,15.646726840803398 -409,0.0,2.0,-1.5408698687669766,5.631674830095234 -409,1.0,0.0,-5.224646179885656,15.646726840803398 -409,1.0,1.0,8.61632137735015,-25.897083564394716 -409,1.0,3.0,-1.7055303166990268,5.1973792282565086 -409,1.0,5.0,-1.6861448807654689,5.116477495334806 -409,2.0,0.0,-1.5408698687669766,5.631674830095234 -409,2.0,2.0,9.736318911079088,-29.13794745915803 -409,2.0,3.0,-8.19544904231211,23.5308726290628 -409,3.0,1.0,-1.7055303166990268,5.1973792282565086 -409,3.0,2.0,-8.19544904231211,23.5308726290628 -409,3.0,3.0,16.314103089185693,-55.509410535254254 -409,3.0,5.0,-6.413123730174556,22.31120356548123 -409,3.0,11.0,0.0,4.191255364806866 -409,4.0,4.0,2.954020035961983,-7.439067916773697 -409,4.0,6.0,-2.954020035961983,7.449267916773697 -409,5.0,1.0,-1.6861448807654689,5.116477495334806 -409,5.0,3.0,-6.413123730174556,22.31120356548123 -409,5.0,5.0,22.341631269034565,-82.8291478657789 -409,5.0,6.0,-3.590210423980992,11.02611441072814 -409,5.0,7.0,-6.289308176100628,22.0125786163522 -409,5.0,8.0,0.0,4.915840805411357 -409,5.0,9.0,0.0,1.8561002591115965 -409,5.0,27.0,-4.362844058012917,15.463571542897856 -409,6.0,4.0,-2.954020035961983,7.449267916773697 -409,6.0,5.0,-3.590210423980992,11.02611441072814 -409,6.0,6.0,6.544230459942975,-18.45668232750184 -409,7.0,5.0,-6.289308176100628,22.0125786163522 -409,7.0,7.0,6.289308176100628,-22.0080786163522 -409,8.0,5.0,0.0,4.915840805411357 -409,8.0,8.0,0.0,-18.706293706293707 -409,8.0,9.0,0.0,9.090909090909092 -409,8.0,10.0,0.0,4.807692307692308 -409,9.0,5.0,0.0,1.8561002591115965 -409,9.0,8.0,0.0,9.090909090909092 -409,9.0,9.0,11.677212499257603,-37.39840237809157 -409,9.0,16.0,-3.956039125715353,10.317447719844054 -409,9.0,20.0,-5.101853820159654,10.98071411292983 -409,9.0,21.0,-2.619319553382597,5.400770303329455 -409,10.0,8.0,0.0,4.807692307692308 -409,10.0,10.0,0.0,-4.807692307692308 -409,11.0,3.0,0.0,4.191255364806866 -409,11.0,11.0,6.573961583776156,-24.424167659260668 -409,11.0,12.0,0.0,7.142857142857143 -409,11.0,13.0,-1.5265676088395577,3.1734252729654173 -409,11.0,14.0,-3.0953961826564296,6.097275864326261 -409,11.0,15.0,-1.9519977922801688,4.104359379111847 -409,12.0,11.0,0.0,7.142857142857143 -409,12.0,12.0,0.0,-7.142857142857143 -409,13.0,11.0,-1.5265676088395577,3.1734252729654173 -409,13.0,13.0,4.01751987283902,-5.424299332335067 -409,13.0,14.0,-2.4909522639994623,2.250874059369649 -409,14.0,11.0,-3.0953961826564296,6.097275864326261 -409,14.0,13.0,-2.4909522639994623,2.250874059369649 -409,14.0,14.0,9.365498545964757,-16.01163373210796 -409,14.0,17.0,-1.8108011504072024,3.687418931630696 -409,14.0,22.0,-1.9683489489016612,3.976064876781356 -409,15.0,11.0,-1.9519977922801688,4.104359379111847 -409,15.0,15.0,3.271064728633931,-8.94513365126506 -409,15.0,16.0,-1.3190669363537617,4.8407742721532125 -409,16.0,9.0,-3.956039125715353,10.317447719844054 -409,16.0,15.0,-1.3190669363537617,4.8407742721532125 -409,16.0,16.0,5.275106062069114,-15.158221991997266 -409,17.0,14.0,-1.8108011504072024,3.687418931630696 -409,17.0,17.0,4.886487584415919,-9.906177730909668 -409,17.0,18.0,-3.0756864340087167,6.218758799278971 -409,18.0,17.0,-3.0756864340087167,6.218758799278971 -409,18.0,18.0,8.958039375185187,-17.98346468163191 -409,18.0,19.0,-5.88235294117647,11.76470588235294 -409,19.0,18.0,-5.88235294117647,11.76470588235294 -409,19.0,19.0,5.88235294117647,-11.76470588235294 -409,20.0,9.0,-5.101853820159654,10.98071411292983 -409,20.0,20.0,21.876495189895888,-45.10843276170355 -409,20.0,21.0,-16.774641369736234,34.127718648773715 -409,21.0,9.0,-2.619319553382597,5.400770303329455 -409,21.0,20.0,-16.774641369736234,34.127718648773715 -409,21.0,21.0,21.93449907537439,-43.48289181517921 -409,21.0,23.0,-2.5405381522555563,3.95440286307604 -409,22.0,14.0,-1.9683489489016612,3.976064876781356 -409,22.0,22.0,3.429754555384988,-6.965303617315433 -409,22.0,23.0,-1.4614056064833263,2.989238740534077 -409,23.0,21.0,-2.5405381522555563,3.95440286307604 -409,23.0,22.0,-1.4614056064833263,2.989238740534077 -409,23.0,23.0,5.311836702613133,-9.188263657315172 -409,23.0,24.0,-1.3098929438742493,2.287622053705056 -409,24.0,23.0,-1.3098929438742493,2.287622053705056 -409,24.0,24.0,4.495715080321987,-7.864978761969621 -409,24.0,25.0,-1.2165301194494855,1.8171440463475024 -409,24.0,26.0,-1.9692920169982515,3.760212661917064 -409,25.0,24.0,-1.2165301194494855,1.8171440463475024 -409,25.0,25.0,1.2165301194494855,-1.8171440463475024 -409,26.0,24.0,-1.9692920169982515,3.760212661917064 -409,26.0,26.0,3.652281470778589,-9.46044252232512 -409,26.0,27.0,0.0,2.608731947574922 -409,26.0,28.0,-0.99553355095268,1.881005840357816 -409,26.0,29.0,-0.6874559028276572,1.293971494797717 -409,27.0,5.0,-4.362844058012917,15.463571542897856 -409,27.0,26.0,0.0,2.608731947574922 -409,27.0,27.0,4.362844058012917,-18.15204256311988 -409,28.0,26.0,-0.99553355095268,1.881005840357816 -409,28.0,28.0,1.9075867579849564,-3.604364401207048 -409,28.0,29.0,-0.9120532070322764,1.7233585608492326 -409,29.0,26.0,-0.6874559028276572,1.293971494797717 -409,29.0,28.0,-0.9120532070322764,1.7233585608492326 -409,29.0,29.0,1.5995091098599337,-3.0173300556469496 -410,0.0,0.0,6.765516048652632,-21.23160167089863 -410,0.0,1.0,-5.224646179885656,15.646726840803398 -410,0.0,2.0,-1.5408698687669766,5.631674830095234 -410,1.0,0.0,-5.224646179885656,15.646726840803398 -410,1.0,1.0,9.75228216552403,-30.648662892676068 -410,1.0,3.0,-1.7055303166990268,5.1973792282565086 -410,1.0,4.0,-1.1359607881738778,4.772479328281356 -410,1.0,5.0,-1.6861448807654689,5.116477495334806 -410,2.0,0.0,-1.5408698687669766,5.631674830095234 -410,2.0,2.0,9.736318911079088,-29.13794745915803 -410,2.0,3.0,-8.19544904231211,23.5308726290628 -410,3.0,1.0,-1.7055303166990268,5.1973792282565086 -410,3.0,2.0,-8.19544904231211,23.5308726290628 -410,3.0,3.0,16.314103089185693,-55.509410535254254 -410,3.0,5.0,-6.413123730174556,22.31120356548123 -410,3.0,11.0,0.0,4.191255364806866 -410,4.0,1.0,-1.1359607881738778,4.772479328281356 -410,4.0,4.0,4.089980824135861,-12.190647245055052 -410,4.0,6.0,-2.954020035961983,7.449267916773697 -410,5.0,1.0,-1.6861448807654689,5.116477495334806 -410,5.0,3.0,-6.413123730174556,22.31120356548123 -410,5.0,5.0,22.341631269034565,-82.8291478657789 -410,5.0,6.0,-3.590210423980992,11.02611441072814 -410,5.0,7.0,-6.289308176100628,22.0125786163522 -410,5.0,8.0,0.0,4.915840805411357 -410,5.0,9.0,0.0,1.8561002591115965 -410,5.0,27.0,-4.362844058012917,15.463571542897856 -410,6.0,4.0,-2.954020035961983,7.449267916773697 -410,6.0,5.0,-3.590210423980992,11.02611441072814 -410,6.0,6.0,6.544230459942975,-18.45668232750184 -410,7.0,5.0,-6.289308176100628,22.0125786163522 -410,7.0,7.0,7.733287237496075,-26.527493274828448 -410,7.0,27.0,-1.4439790613954469,4.540814658476248 -410,8.0,5.0,0.0,4.915840805411357 -410,8.0,8.0,0.0,-18.706293706293707 -410,8.0,9.0,0.0,9.090909090909092 -410,8.0,10.0,0.0,4.807692307692308 -410,9.0,5.0,0.0,1.8561002591115965 -410,9.0,8.0,0.0,9.090909090909092 -410,9.0,9.0,13.462042814524237,-41.3837606675224 -410,9.0,16.0,-3.956039125715353,10.317447719844054 -410,9.0,19.0,-1.7848303152666305,3.98535828943083 -410,9.0,20.0,-5.101853820159654,10.98071411292983 -410,9.0,21.0,-2.619319553382597,5.400770303329455 -410,10.0,8.0,0.0,4.807692307692308 -410,10.0,10.0,0.0,-4.807692307692308 -410,11.0,3.0,0.0,4.191255364806866 -410,11.0,11.0,6.573961583776156,-24.424167659260668 -410,11.0,12.0,0.0,7.142857142857143 -410,11.0,13.0,-1.5265676088395577,3.1734252729654173 -410,11.0,14.0,-3.0953961826564296,6.097275864326261 -410,11.0,15.0,-1.9519977922801688,4.104359379111847 -410,12.0,11.0,0.0,7.142857142857143 -410,12.0,12.0,0.0,-7.142857142857143 -410,13.0,11.0,-1.5265676088395577,3.1734252729654173 -410,13.0,13.0,1.5265676088395577,-3.1734252729654173 -410,14.0,11.0,-3.0953961826564296,6.097275864326261 -410,14.0,14.0,6.874546281965293,-13.760759672738311 -410,14.0,17.0,-1.8108011504072024,3.687418931630696 -410,14.0,22.0,-1.9683489489016612,3.976064876781356 -410,15.0,11.0,-1.9519977922801688,4.104359379111847 -410,15.0,15.0,3.271064728633931,-8.94513365126506 -410,15.0,16.0,-1.3190669363537617,4.8407742721532125 -410,16.0,9.0,-3.956039125715353,10.317447719844054 -410,16.0,15.0,-1.3190669363537617,4.8407742721532125 -410,16.0,16.0,5.275106062069114,-15.158221991997266 -410,17.0,14.0,-1.8108011504072024,3.687418931630696 -410,17.0,17.0,4.886487584415919,-9.906177730909668 -410,17.0,18.0,-3.0756864340087167,6.218758799278971 -410,18.0,17.0,-3.0756864340087167,6.218758799278971 -410,18.0,18.0,8.958039375185187,-17.98346468163191 -410,18.0,19.0,-5.88235294117647,11.76470588235294 -410,19.0,9.0,-1.7848303152666305,3.98535828943083 -410,19.0,18.0,-5.88235294117647,11.76470588235294 -410,19.0,19.0,7.6671832564431,-15.75006417178377 -410,20.0,9.0,-5.101853820159654,10.98071411292983 -410,20.0,20.0,21.876495189895888,-45.10843276170355 -410,20.0,21.0,-16.774641369736234,34.127718648773715 -410,21.0,9.0,-2.619319553382597,5.400770303329455 -410,21.0,20.0,-16.774641369736234,34.127718648773715 -410,21.0,21.0,21.93449907537439,-43.48289181517921 -410,21.0,23.0,-2.5405381522555563,3.95440286307604 -410,22.0,14.0,-1.9683489489016612,3.976064876781356 -410,22.0,22.0,3.429754555384988,-6.965303617315433 -410,22.0,23.0,-1.4614056064833263,2.989238740534077 -410,23.0,21.0,-2.5405381522555563,3.95440286307604 -410,23.0,22.0,-1.4614056064833263,2.989238740534077 -410,23.0,23.0,5.311836702613133,-9.188263657315172 -410,23.0,24.0,-1.3098929438742493,2.287622053705056 -410,24.0,23.0,-1.3098929438742493,2.287622053705056 -410,24.0,24.0,4.495715080321987,-7.864978761969621 -410,24.0,25.0,-1.2165301194494855,1.8171440463475024 -410,24.0,26.0,-1.9692920169982515,3.760212661917064 -410,25.0,24.0,-1.2165301194494855,1.8171440463475024 -410,25.0,25.0,1.2165301194494855,-1.8171440463475024 -410,26.0,24.0,-1.9692920169982515,3.760212661917064 -410,26.0,26.0,3.652281470778589,-9.46044252232512 -410,26.0,27.0,0.0,2.608731947574922 -410,26.0,28.0,-0.99553355095268,1.881005840357816 -410,26.0,29.0,-0.6874559028276572,1.293971494797717 -410,27.0,5.0,-4.362844058012917,15.463571542897856 -410,27.0,7.0,-1.4439790613954469,4.540814658476248 -410,27.0,26.0,0.0,2.608731947574922 -410,27.0,27.0,5.806823119408364,-22.67145722159613 -410,28.0,26.0,-0.99553355095268,1.881005840357816 -410,28.0,28.0,1.9075867579849564,-3.604364401207048 -410,28.0,29.0,-0.9120532070322764,1.7233585608492326 -410,29.0,26.0,-0.6874559028276572,1.293971494797717 -410,29.0,28.0,-0.9120532070322764,1.7233585608492326 -410,29.0,29.0,1.5995091098599337,-3.0173300556469496 -411,0.0,0.0,6.765516048652632,-21.23160167089863 -411,0.0,1.0,-5.224646179885656,15.646726840803398 -411,0.0,2.0,-1.5408698687669766,5.631674830095234 -411,1.0,0.0,-5.224646179885656,15.646726840803398 -411,1.0,1.0,9.75228216552403,-30.648662892676068 -411,1.0,3.0,-1.7055303166990268,5.1973792282565086 -411,1.0,4.0,-1.1359607881738778,4.772479328281356 -411,1.0,5.0,-1.6861448807654689,5.116477495334806 -411,2.0,0.0,-1.5408698687669766,5.631674830095234 -411,2.0,2.0,9.736318911079088,-29.13794745915803 -411,2.0,3.0,-8.19544904231211,23.5308726290628 -411,3.0,1.0,-1.7055303166990268,5.1973792282565086 -411,3.0,2.0,-8.19544904231211,23.5308726290628 -411,3.0,3.0,16.314103089185693,-55.509410535254254 -411,3.0,5.0,-6.413123730174556,22.31120356548123 -411,3.0,11.0,0.0,4.191255364806866 -411,4.0,1.0,-1.1359607881738778,4.772479328281356 -411,4.0,4.0,4.089980824135861,-12.190647245055052 -411,4.0,6.0,-2.954020035961983,7.449267916773697 -411,5.0,1.0,-1.6861448807654689,5.116477495334806 -411,5.0,3.0,-6.413123730174556,22.31120356548123 -411,5.0,5.0,18.75142084505357,-71.81153345505078 -411,5.0,7.0,-6.289308176100628,22.0125786163522 -411,5.0,8.0,0.0,4.915840805411357 -411,5.0,9.0,0.0,1.8561002591115965 -411,5.0,27.0,-4.362844058012917,15.463571542897856 -411,6.0,4.0,-2.954020035961983,7.449267916773697 -411,6.0,6.0,2.954020035961983,-7.439067916773697 -411,7.0,5.0,-6.289308176100628,22.0125786163522 -411,7.0,7.0,7.733287237496075,-26.527493274828448 -411,7.0,27.0,-1.4439790613954469,4.540814658476248 -411,8.0,5.0,0.0,4.915840805411357 -411,8.0,8.0,0.0,-18.706293706293707 -411,8.0,9.0,0.0,9.090909090909092 -411,8.0,10.0,0.0,4.807692307692308 -411,9.0,5.0,0.0,1.8561002591115965 -411,9.0,8.0,0.0,9.090909090909092 -411,9.0,9.0,13.462042814524237,-41.3837606675224 -411,9.0,16.0,-3.956039125715353,10.317447719844054 -411,9.0,19.0,-1.7848303152666305,3.98535828943083 -411,9.0,20.0,-5.101853820159654,10.98071411292983 -411,9.0,21.0,-2.619319553382597,5.400770303329455 -411,10.0,8.0,0.0,4.807692307692308 -411,10.0,10.0,0.0,-4.807692307692308 -411,11.0,3.0,0.0,4.191255364806866 -411,11.0,11.0,6.573961583776156,-24.424167659260668 -411,11.0,12.0,0.0,7.142857142857143 -411,11.0,13.0,-1.5265676088395577,3.1734252729654173 -411,11.0,14.0,-3.0953961826564296,6.097275864326261 -411,11.0,15.0,-1.9519977922801688,4.104359379111847 -411,12.0,11.0,0.0,7.142857142857143 -411,12.0,12.0,0.0,-7.142857142857143 -411,13.0,11.0,-1.5265676088395577,3.1734252729654173 -411,13.0,13.0,4.01751987283902,-5.424299332335067 -411,13.0,14.0,-2.4909522639994623,2.250874059369649 -411,14.0,11.0,-3.0953961826564296,6.097275864326261 -411,14.0,13.0,-2.4909522639994623,2.250874059369649 -411,14.0,14.0,9.365498545964757,-16.01163373210796 -411,14.0,17.0,-1.8108011504072024,3.687418931630696 -411,14.0,22.0,-1.9683489489016612,3.976064876781356 -411,15.0,11.0,-1.9519977922801688,4.104359379111847 -411,15.0,15.0,3.271064728633931,-8.94513365126506 -411,15.0,16.0,-1.3190669363537617,4.8407742721532125 -411,16.0,9.0,-3.956039125715353,10.317447719844054 -411,16.0,15.0,-1.3190669363537617,4.8407742721532125 -411,16.0,16.0,5.275106062069114,-15.158221991997266 -411,17.0,14.0,-1.8108011504072024,3.687418931630696 -411,17.0,17.0,4.886487584415919,-9.906177730909668 -411,17.0,18.0,-3.0756864340087167,6.218758799278971 -411,18.0,17.0,-3.0756864340087167,6.218758799278971 -411,18.0,18.0,8.958039375185187,-17.98346468163191 -411,18.0,19.0,-5.88235294117647,11.76470588235294 -411,19.0,9.0,-1.7848303152666305,3.98535828943083 -411,19.0,18.0,-5.88235294117647,11.76470588235294 -411,19.0,19.0,7.6671832564431,-15.75006417178377 -411,20.0,9.0,-5.101853820159654,10.98071411292983 -411,20.0,20.0,21.876495189895888,-45.10843276170355 -411,20.0,21.0,-16.774641369736234,34.127718648773715 -411,21.0,9.0,-2.619319553382597,5.400770303329455 -411,21.0,20.0,-16.774641369736234,34.127718648773715 -411,21.0,21.0,21.93449907537439,-43.48289181517921 -411,21.0,23.0,-2.5405381522555563,3.95440286307604 -411,22.0,14.0,-1.9683489489016612,3.976064876781356 -411,22.0,22.0,3.429754555384988,-6.965303617315433 -411,22.0,23.0,-1.4614056064833263,2.989238740534077 -411,23.0,21.0,-2.5405381522555563,3.95440286307604 -411,23.0,22.0,-1.4614056064833263,2.989238740534077 -411,23.0,23.0,5.311836702613133,-9.188263657315172 -411,23.0,24.0,-1.3098929438742493,2.287622053705056 -411,24.0,23.0,-1.3098929438742493,2.287622053705056 -411,24.0,24.0,4.495715080321987,-7.864978761969621 -411,24.0,25.0,-1.2165301194494855,1.8171440463475024 -411,24.0,26.0,-1.9692920169982515,3.760212661917064 -411,25.0,24.0,-1.2165301194494855,1.8171440463475024 -411,25.0,25.0,1.2165301194494855,-1.8171440463475024 -411,26.0,24.0,-1.9692920169982515,3.760212661917064 -411,26.0,26.0,3.652281470778589,-9.46044252232512 -411,26.0,27.0,0.0,2.608731947574922 -411,26.0,28.0,-0.99553355095268,1.881005840357816 -411,26.0,29.0,-0.6874559028276572,1.293971494797717 -411,27.0,5.0,-4.362844058012917,15.463571542897856 -411,27.0,7.0,-1.4439790613954469,4.540814658476248 -411,27.0,26.0,0.0,2.608731947574922 -411,27.0,27.0,5.806823119408364,-22.67145722159613 -411,28.0,26.0,-0.99553355095268,1.881005840357816 -411,28.0,28.0,1.9075867579849564,-3.604364401207048 -411,28.0,29.0,-0.9120532070322764,1.7233585608492326 -411,29.0,26.0,-0.6874559028276572,1.293971494797717 -411,29.0,28.0,-0.9120532070322764,1.7233585608492326 -411,29.0,29.0,1.5995091098599337,-3.0173300556469496 -412,0.0,0.0,6.765516048652632,-21.23160167089863 -412,0.0,1.0,-5.224646179885656,15.646726840803398 -412,0.0,2.0,-1.5408698687669766,5.631674830095234 -412,1.0,0.0,-5.224646179885656,15.646726840803398 -412,1.0,1.0,9.75228216552403,-30.648662892676068 -412,1.0,3.0,-1.7055303166990268,5.1973792282565086 -412,1.0,4.0,-1.1359607881738778,4.772479328281356 -412,1.0,5.0,-1.6861448807654689,5.116477495334806 -412,2.0,0.0,-1.5408698687669766,5.631674830095234 -412,2.0,2.0,9.736318911079088,-29.13794745915803 -412,2.0,3.0,-8.19544904231211,23.5308726290628 -412,3.0,1.0,-1.7055303166990268,5.1973792282565086 -412,3.0,2.0,-8.19544904231211,23.5308726290628 -412,3.0,3.0,16.314103089185693,-51.01235542280054 -412,3.0,5.0,-6.413123730174556,22.31120356548123 -412,4.0,1.0,-1.1359607881738778,4.772479328281356 -412,4.0,4.0,4.089980824135861,-12.190647245055052 -412,4.0,6.0,-2.954020035961983,7.449267916773697 -412,5.0,1.0,-1.6861448807654689,5.116477495334806 -412,5.0,3.0,-6.413123730174556,22.31120356548123 -412,5.0,5.0,22.341631269034565,-80.91366772221689 -412,5.0,6.0,-3.590210423980992,11.02611441072814 -412,5.0,7.0,-6.289308176100628,22.0125786163522 -412,5.0,8.0,0.0,4.915840805411357 -412,5.0,27.0,-4.362844058012917,15.463571542897856 -412,6.0,4.0,-2.954020035961983,7.449267916773697 -412,6.0,5.0,-3.590210423980992,11.02611441072814 -412,6.0,6.0,6.544230459942975,-18.45668232750184 -412,7.0,5.0,-6.289308176100628,22.0125786163522 -412,7.0,7.0,7.733287237496075,-26.527493274828448 -412,7.0,27.0,-1.4439790613954469,4.540814658476248 -412,8.0,5.0,0.0,4.915840805411357 -412,8.0,8.0,0.0,-18.706293706293707 -412,8.0,9.0,0.0,9.090909090909092 -412,8.0,10.0,0.0,4.807692307692308 -412,9.0,8.0,0.0,9.090909090909092 -412,9.0,9.0,13.462042814524237,-39.58519951644326 -412,9.0,16.0,-3.956039125715353,10.317447719844054 -412,9.0,19.0,-1.7848303152666305,3.98535828943083 -412,9.0,20.0,-5.101853820159654,10.98071411292983 -412,9.0,21.0,-2.619319553382597,5.400770303329455 -412,10.0,8.0,0.0,4.807692307692308 -412,10.0,10.0,0.0,-4.807692307692308 -412,11.0,11.0,3.478565401119727,-14.420641794934408 -412,11.0,12.0,0.0,7.142857142857143 -412,11.0,13.0,-1.5265676088395577,3.1734252729654173 -412,11.0,15.0,-1.9519977922801688,4.104359379111847 -412,12.0,11.0,0.0,7.142857142857143 -412,12.0,12.0,0.0,-7.142857142857143 -412,13.0,11.0,-1.5265676088395577,3.1734252729654173 -412,13.0,13.0,4.01751987283902,-5.424299332335067 -412,13.0,14.0,-2.4909522639994623,2.250874059369649 -412,14.0,13.0,-2.4909522639994623,2.250874059369649 -412,14.0,14.0,4.301753414406665,-5.9382929910003455 -412,14.0,17.0,-1.8108011504072024,3.687418931630696 -412,15.0,11.0,-1.9519977922801688,4.104359379111847 -412,15.0,15.0,3.271064728633931,-8.94513365126506 -412,15.0,16.0,-1.3190669363537617,4.8407742721532125 -412,16.0,9.0,-3.956039125715353,10.317447719844054 -412,16.0,15.0,-1.3190669363537617,4.8407742721532125 -412,16.0,16.0,5.275106062069114,-15.158221991997266 -412,17.0,14.0,-1.8108011504072024,3.687418931630696 -412,17.0,17.0,4.886487584415919,-9.906177730909668 -412,17.0,18.0,-3.0756864340087167,6.218758799278971 -412,18.0,17.0,-3.0756864340087167,6.218758799278971 -412,18.0,18.0,8.958039375185187,-17.98346468163191 -412,18.0,19.0,-5.88235294117647,11.76470588235294 -412,19.0,9.0,-1.7848303152666305,3.98535828943083 -412,19.0,18.0,-5.88235294117647,11.76470588235294 -412,19.0,19.0,7.6671832564431,-15.75006417178377 -412,20.0,9.0,-5.101853820159654,10.98071411292983 -412,20.0,20.0,21.876495189895888,-45.10843276170355 -412,20.0,21.0,-16.774641369736234,34.127718648773715 -412,21.0,9.0,-2.619319553382597,5.400770303329455 -412,21.0,20.0,-16.774641369736234,34.127718648773715 -412,21.0,21.0,21.93449907537439,-43.48289181517921 -412,21.0,23.0,-2.5405381522555563,3.95440286307604 -412,22.0,22.0,1.4614056064833263,-2.989238740534077 -412,22.0,23.0,-1.4614056064833263,2.989238740534077 -412,23.0,21.0,-2.5405381522555563,3.95440286307604 -412,23.0,22.0,-1.4614056064833263,2.989238740534077 -412,23.0,23.0,5.311836702613133,-9.188263657315172 -412,23.0,24.0,-1.3098929438742493,2.287622053705056 -412,24.0,23.0,-1.3098929438742493,2.287622053705056 -412,24.0,24.0,4.495715080321987,-7.864978761969621 -412,24.0,25.0,-1.2165301194494855,1.8171440463475024 -412,24.0,26.0,-1.9692920169982515,3.760212661917064 -412,25.0,24.0,-1.2165301194494855,1.8171440463475024 -412,25.0,25.0,1.2165301194494855,-1.8171440463475024 -412,26.0,24.0,-1.9692920169982515,3.760212661917064 -412,26.0,26.0,3.652281470778589,-9.46044252232512 -412,26.0,27.0,0.0,2.608731947574922 -412,26.0,28.0,-0.99553355095268,1.881005840357816 -412,26.0,29.0,-0.6874559028276572,1.293971494797717 -412,27.0,5.0,-4.362844058012917,15.463571542897856 -412,27.0,7.0,-1.4439790613954469,4.540814658476248 -412,27.0,26.0,0.0,2.608731947574922 -412,27.0,27.0,5.806823119408364,-22.67145722159613 -412,28.0,26.0,-0.99553355095268,1.881005840357816 -412,28.0,28.0,1.9075867579849564,-3.604364401207048 -412,28.0,29.0,-0.9120532070322764,1.7233585608492326 -412,29.0,26.0,-0.6874559028276572,1.293971494797717 -412,29.0,28.0,-0.9120532070322764,1.7233585608492326 -412,29.0,29.0,1.5995091098599337,-3.0173300556469496 -413,0.0,0.0,6.765516048652632,-21.23160167089863 -413,0.0,1.0,-5.224646179885656,15.646726840803398 -413,0.0,2.0,-1.5408698687669766,5.631674830095234 -413,1.0,0.0,-5.224646179885656,15.646726840803398 -413,1.0,1.0,9.75228216552403,-30.648662892676068 -413,1.0,3.0,-1.7055303166990268,5.1973792282565086 -413,1.0,4.0,-1.1359607881738778,4.772479328281356 -413,1.0,5.0,-1.6861448807654689,5.116477495334806 -413,2.0,0.0,-1.5408698687669766,5.631674830095234 -413,2.0,2.0,9.736318911079088,-29.13794745915803 -413,2.0,3.0,-8.19544904231211,23.5308726290628 -413,3.0,1.0,-1.7055303166990268,5.1973792282565086 -413,3.0,2.0,-8.19544904231211,23.5308726290628 -413,3.0,3.0,16.314103089185693,-55.509410535254254 -413,3.0,5.0,-6.413123730174556,22.31120356548123 -413,3.0,11.0,0.0,4.191255364806866 -413,4.0,1.0,-1.1359607881738778,4.772479328281356 -413,4.0,4.0,4.089980824135861,-12.190647245055052 -413,4.0,6.0,-2.954020035961983,7.449267916773697 -413,5.0,1.0,-1.6861448807654689,5.116477495334806 -413,5.0,3.0,-6.413123730174556,22.31120356548123 -413,5.0,5.0,22.341631269034565,-82.8291478657789 -413,5.0,6.0,-3.590210423980992,11.02611441072814 -413,5.0,7.0,-6.289308176100628,22.0125786163522 -413,5.0,8.0,0.0,4.915840805411357 -413,5.0,9.0,0.0,1.8561002591115965 -413,5.0,27.0,-4.362844058012917,15.463571542897856 -413,6.0,4.0,-2.954020035961983,7.449267916773697 -413,6.0,5.0,-3.590210423980992,11.02611441072814 -413,6.0,6.0,6.544230459942975,-18.45668232750184 -413,7.0,5.0,-6.289308176100628,22.0125786163522 -413,7.0,7.0,7.733287237496075,-26.527493274828448 -413,7.0,27.0,-1.4439790613954469,4.540814658476248 -413,8.0,5.0,0.0,4.915840805411357 -413,8.0,8.0,0.0,-18.706293706293707 -413,8.0,9.0,0.0,9.090909090909092 -413,8.0,10.0,0.0,4.807692307692308 -413,9.0,5.0,0.0,1.8561002591115965 -413,9.0,8.0,0.0,9.090909090909092 -413,9.0,9.0,8.36018899436458,-30.40304655459257 -413,9.0,16.0,-3.956039125715353,10.317447719844054 -413,9.0,19.0,-1.7848303152666305,3.98535828943083 -413,9.0,21.0,-2.619319553382597,5.400770303329455 -413,10.0,8.0,0.0,4.807692307692308 -413,10.0,10.0,0.0,-4.807692307692308 -413,11.0,3.0,0.0,4.191255364806866 -413,11.0,11.0,6.573961583776156,-24.424167659260668 -413,11.0,12.0,0.0,7.142857142857143 -413,11.0,13.0,-1.5265676088395577,3.1734252729654173 -413,11.0,14.0,-3.0953961826564296,6.097275864326261 -413,11.0,15.0,-1.9519977922801688,4.104359379111847 -413,12.0,11.0,0.0,7.142857142857143 -413,12.0,12.0,0.0,-7.142857142857143 -413,13.0,11.0,-1.5265676088395577,3.1734252729654173 -413,13.0,13.0,4.01751987283902,-5.424299332335067 -413,13.0,14.0,-2.4909522639994623,2.250874059369649 -413,14.0,11.0,-3.0953961826564296,6.097275864326261 -413,14.0,13.0,-2.4909522639994623,2.250874059369649 -413,14.0,14.0,9.365498545964757,-16.01163373210796 -413,14.0,17.0,-1.8108011504072024,3.687418931630696 -413,14.0,22.0,-1.9683489489016612,3.976064876781356 -413,15.0,11.0,-1.9519977922801688,4.104359379111847 -413,15.0,15.0,3.271064728633931,-8.94513365126506 -413,15.0,16.0,-1.3190669363537617,4.8407742721532125 -413,16.0,9.0,-3.956039125715353,10.317447719844054 -413,16.0,15.0,-1.3190669363537617,4.8407742721532125 -413,16.0,16.0,5.275106062069114,-15.158221991997266 -413,17.0,14.0,-1.8108011504072024,3.687418931630696 -413,17.0,17.0,4.886487584415919,-9.906177730909668 -413,17.0,18.0,-3.0756864340087167,6.218758799278971 -413,18.0,17.0,-3.0756864340087167,6.218758799278971 -413,18.0,18.0,8.958039375185187,-17.98346468163191 -413,18.0,19.0,-5.88235294117647,11.76470588235294 -413,19.0,9.0,-1.7848303152666305,3.98535828943083 -413,19.0,18.0,-5.88235294117647,11.76470588235294 -413,19.0,19.0,7.6671832564431,-15.75006417178377 -413,20.0,20.0,16.774641369736234,-34.127718648773715 -413,20.0,21.0,-16.774641369736234,34.127718648773715 -413,21.0,9.0,-2.619319553382597,5.400770303329455 -413,21.0,20.0,-16.774641369736234,34.127718648773715 -413,21.0,21.0,21.93449907537439,-43.48289181517921 -413,21.0,23.0,-2.5405381522555563,3.95440286307604 -413,22.0,14.0,-1.9683489489016612,3.976064876781356 -413,22.0,22.0,3.429754555384988,-6.965303617315433 -413,22.0,23.0,-1.4614056064833263,2.989238740534077 -413,23.0,21.0,-2.5405381522555563,3.95440286307604 -413,23.0,22.0,-1.4614056064833263,2.989238740534077 -413,23.0,23.0,5.311836702613133,-9.188263657315172 -413,23.0,24.0,-1.3098929438742493,2.287622053705056 -413,24.0,23.0,-1.3098929438742493,2.287622053705056 -413,24.0,24.0,4.495715080321987,-7.864978761969621 -413,24.0,25.0,-1.2165301194494855,1.8171440463475024 -413,24.0,26.0,-1.9692920169982515,3.760212661917064 -413,25.0,24.0,-1.2165301194494855,1.8171440463475024 -413,25.0,25.0,1.2165301194494855,-1.8171440463475024 -413,26.0,24.0,-1.9692920169982515,3.760212661917064 -413,26.0,26.0,3.652281470778589,-9.46044252232512 -413,26.0,27.0,0.0,2.608731947574922 -413,26.0,28.0,-0.99553355095268,1.881005840357816 -413,26.0,29.0,-0.6874559028276572,1.293971494797717 -413,27.0,5.0,-4.362844058012917,15.463571542897856 -413,27.0,7.0,-1.4439790613954469,4.540814658476248 -413,27.0,26.0,0.0,2.608731947574922 -413,27.0,27.0,5.806823119408364,-22.67145722159613 -413,28.0,26.0,-0.99553355095268,1.881005840357816 -413,28.0,28.0,1.9075867579849564,-3.604364401207048 -413,28.0,29.0,-0.9120532070322764,1.7233585608492326 -413,29.0,26.0,-0.6874559028276572,1.293971494797717 -413,29.0,28.0,-0.9120532070322764,1.7233585608492326 -413,29.0,29.0,1.5995091098599337,-3.0173300556469496 -414,0.0,0.0,6.765516048652632,-21.23160167089863 -414,0.0,1.0,-5.224646179885656,15.646726840803398 -414,0.0,2.0,-1.5408698687669766,5.631674830095234 -414,1.0,0.0,-5.224646179885656,15.646726840803398 -414,1.0,1.0,9.75228216552403,-30.648662892676068 -414,1.0,3.0,-1.7055303166990268,5.1973792282565086 -414,1.0,4.0,-1.1359607881738778,4.772479328281356 -414,1.0,5.0,-1.6861448807654689,5.116477495334806 -414,2.0,0.0,-1.5408698687669766,5.631674830095234 -414,2.0,2.0,9.736318911079088,-29.13794745915803 -414,2.0,3.0,-8.19544904231211,23.5308726290628 -414,3.0,1.0,-1.7055303166990268,5.1973792282565086 -414,3.0,2.0,-8.19544904231211,23.5308726290628 -414,3.0,3.0,16.314103089185693,-55.509410535254254 -414,3.0,5.0,-6.413123730174556,22.31120356548123 -414,3.0,11.0,0.0,4.191255364806866 -414,4.0,1.0,-1.1359607881738778,4.772479328281356 -414,4.0,4.0,4.089980824135861,-12.190647245055052 -414,4.0,6.0,-2.954020035961983,7.449267916773697 -414,5.0,1.0,-1.6861448807654689,5.116477495334806 -414,5.0,3.0,-6.413123730174556,22.31120356548123 -414,5.0,5.0,22.341631269034565,-82.8291478657789 -414,5.0,6.0,-3.590210423980992,11.02611441072814 -414,5.0,7.0,-6.289308176100628,22.0125786163522 -414,5.0,8.0,0.0,4.915840805411357 -414,5.0,9.0,0.0,1.8561002591115965 -414,5.0,27.0,-4.362844058012917,15.463571542897856 -414,6.0,4.0,-2.954020035961983,7.449267916773697 -414,6.0,5.0,-3.590210423980992,11.02611441072814 -414,6.0,6.0,6.544230459942975,-18.45668232750184 -414,7.0,5.0,-6.289308176100628,22.0125786163522 -414,7.0,7.0,7.733287237496075,-26.527493274828448 -414,7.0,27.0,-1.4439790613954469,4.540814658476248 -414,8.0,5.0,0.0,4.915840805411357 -414,8.0,8.0,0.0,-18.706293706293707 -414,8.0,9.0,0.0,9.090909090909092 -414,8.0,10.0,0.0,4.807692307692308 -414,9.0,5.0,0.0,1.8561002591115965 -414,9.0,8.0,0.0,9.090909090909092 -414,9.0,9.0,13.462042814524237,-41.3837606675224 -414,9.0,16.0,-3.956039125715353,10.317447719844054 -414,9.0,19.0,-1.7848303152666305,3.98535828943083 -414,9.0,20.0,-5.101853820159654,10.98071411292983 -414,9.0,21.0,-2.619319553382597,5.400770303329455 -414,10.0,8.0,0.0,4.807692307692308 -414,10.0,10.0,0.0,-4.807692307692308 -414,11.0,3.0,0.0,4.191255364806866 -414,11.0,11.0,6.573961583776156,-24.424167659260668 -414,11.0,12.0,0.0,7.142857142857143 -414,11.0,13.0,-1.5265676088395577,3.1734252729654173 -414,11.0,14.0,-3.0953961826564296,6.097275864326261 -414,11.0,15.0,-1.9519977922801688,4.104359379111847 -414,12.0,11.0,0.0,7.142857142857143 -414,12.0,12.0,0.0,-7.142857142857143 -414,13.0,11.0,-1.5265676088395577,3.1734252729654173 -414,13.0,13.0,4.01751987283902,-5.424299332335067 -414,13.0,14.0,-2.4909522639994623,2.250874059369649 -414,14.0,11.0,-3.0953961826564296,6.097275864326261 -414,14.0,13.0,-2.4909522639994623,2.250874059369649 -414,14.0,14.0,9.365498545964757,-16.01163373210796 -414,14.0,17.0,-1.8108011504072024,3.687418931630696 -414,14.0,22.0,-1.9683489489016612,3.976064876781356 -414,15.0,11.0,-1.9519977922801688,4.104359379111847 -414,15.0,15.0,3.271064728633931,-8.94513365126506 -414,15.0,16.0,-1.3190669363537617,4.8407742721532125 -414,16.0,9.0,-3.956039125715353,10.317447719844054 -414,16.0,15.0,-1.3190669363537617,4.8407742721532125 -414,16.0,16.0,5.275106062069114,-15.158221991997266 -414,17.0,14.0,-1.8108011504072024,3.687418931630696 -414,17.0,17.0,4.886487584415919,-9.906177730909668 -414,17.0,18.0,-3.0756864340087167,6.218758799278971 -414,18.0,17.0,-3.0756864340087167,6.218758799278971 -414,18.0,18.0,8.958039375185187,-17.98346468163191 -414,18.0,19.0,-5.88235294117647,11.76470588235294 -414,19.0,9.0,-1.7848303152666305,3.98535828943083 -414,19.0,18.0,-5.88235294117647,11.76470588235294 -414,19.0,19.0,7.6671832564431,-15.75006417178377 -414,20.0,9.0,-5.101853820159654,10.98071411292983 -414,20.0,20.0,21.876495189895888,-45.10843276170355 -414,20.0,21.0,-16.774641369736234,34.127718648773715 -414,21.0,9.0,-2.619319553382597,5.400770303329455 -414,21.0,20.0,-16.774641369736234,34.127718648773715 -414,21.0,21.0,19.393960923118836,-39.52848895210317 -414,22.0,14.0,-1.9683489489016612,3.976064876781356 -414,22.0,22.0,3.429754555384988,-6.965303617315433 -414,22.0,23.0,-1.4614056064833263,2.989238740534077 -414,23.0,22.0,-1.4614056064833263,2.989238740534077 -414,23.0,23.0,2.771298550357576,-5.233860794239132 -414,23.0,24.0,-1.3098929438742493,2.287622053705056 -414,24.0,23.0,-1.3098929438742493,2.287622053705056 -414,24.0,24.0,4.495715080321987,-7.864978761969621 -414,24.0,25.0,-1.2165301194494855,1.8171440463475024 -414,24.0,26.0,-1.9692920169982515,3.760212661917064 -414,25.0,24.0,-1.2165301194494855,1.8171440463475024 -414,25.0,25.0,1.2165301194494855,-1.8171440463475024 -414,26.0,24.0,-1.9692920169982515,3.760212661917064 -414,26.0,26.0,3.652281470778589,-9.46044252232512 -414,26.0,27.0,0.0,2.608731947574922 -414,26.0,28.0,-0.99553355095268,1.881005840357816 -414,26.0,29.0,-0.6874559028276572,1.293971494797717 -414,27.0,5.0,-4.362844058012917,15.463571542897856 -414,27.0,7.0,-1.4439790613954469,4.540814658476248 -414,27.0,26.0,0.0,2.608731947574922 -414,27.0,27.0,5.806823119408364,-22.67145722159613 -414,28.0,26.0,-0.99553355095268,1.881005840357816 -414,28.0,28.0,1.9075867579849564,-3.604364401207048 -414,28.0,29.0,-0.9120532070322764,1.7233585608492326 -414,29.0,26.0,-0.6874559028276572,1.293971494797717 -414,29.0,28.0,-0.9120532070322764,1.7233585608492326 -414,29.0,29.0,1.5995091098599337,-3.0173300556469496 -415,0.0,0.0,6.765516048652632,-21.23160167089863 -415,0.0,1.0,-5.224646179885656,15.646726840803398 -415,0.0,2.0,-1.5408698687669766,5.631674830095234 -415,1.0,0.0,-5.224646179885656,15.646726840803398 -415,1.0,1.0,9.75228216552403,-30.648662892676068 -415,1.0,3.0,-1.7055303166990268,5.1973792282565086 -415,1.0,4.0,-1.1359607881738778,4.772479328281356 -415,1.0,5.0,-1.6861448807654689,5.116477495334806 -415,2.0,0.0,-1.5408698687669766,5.631674830095234 -415,2.0,2.0,9.736318911079088,-29.13794745915803 -415,2.0,3.0,-8.19544904231211,23.5308726290628 -415,3.0,1.0,-1.7055303166990268,5.1973792282565086 -415,3.0,2.0,-8.19544904231211,23.5308726290628 -415,3.0,3.0,16.314103089185693,-55.509410535254254 -415,3.0,5.0,-6.413123730174556,22.31120356548123 -415,3.0,11.0,0.0,4.191255364806866 -415,4.0,1.0,-1.1359607881738778,4.772479328281356 -415,4.0,4.0,4.089980824135861,-12.190647245055052 -415,4.0,6.0,-2.954020035961983,7.449267916773697 -415,5.0,1.0,-1.6861448807654689,5.116477495334806 -415,5.0,3.0,-6.413123730174556,22.31120356548123 -415,5.0,5.0,22.341631269034565,-82.8291478657789 -415,5.0,6.0,-3.590210423980992,11.02611441072814 -415,5.0,7.0,-6.289308176100628,22.0125786163522 -415,5.0,8.0,0.0,4.915840805411357 -415,5.0,9.0,0.0,1.8561002591115965 -415,5.0,27.0,-4.362844058012917,15.463571542897856 -415,6.0,4.0,-2.954020035961983,7.449267916773697 -415,6.0,5.0,-3.590210423980992,11.02611441072814 -415,6.0,6.0,6.544230459942975,-18.45668232750184 -415,7.0,5.0,-6.289308176100628,22.0125786163522 -415,7.0,7.0,7.733287237496075,-26.527493274828448 -415,7.0,27.0,-1.4439790613954469,4.540814658476248 -415,8.0,5.0,0.0,4.915840805411357 -415,8.0,8.0,0.0,-18.706293706293707 -415,8.0,9.0,0.0,9.090909090909092 -415,8.0,10.0,0.0,4.807692307692308 -415,9.0,5.0,0.0,1.8561002591115965 -415,9.0,8.0,0.0,9.090909090909092 -415,9.0,9.0,13.462042814524237,-41.3837606675224 -415,9.0,16.0,-3.956039125715353,10.317447719844054 -415,9.0,19.0,-1.7848303152666305,3.98535828943083 -415,9.0,20.0,-5.101853820159654,10.98071411292983 -415,9.0,21.0,-2.619319553382597,5.400770303329455 -415,10.0,8.0,0.0,4.807692307692308 -415,10.0,10.0,0.0,-4.807692307692308 -415,11.0,3.0,0.0,4.191255364806866 -415,11.0,11.0,6.573961583776156,-24.424167659260668 -415,11.0,12.0,0.0,7.142857142857143 -415,11.0,13.0,-1.5265676088395577,3.1734252729654173 -415,11.0,14.0,-3.0953961826564296,6.097275864326261 -415,11.0,15.0,-1.9519977922801688,4.104359379111847 -415,12.0,11.0,0.0,7.142857142857143 -415,12.0,12.0,0.0,-7.142857142857143 -415,13.0,11.0,-1.5265676088395577,3.1734252729654173 -415,13.0,13.0,4.01751987283902,-5.424299332335067 -415,13.0,14.0,-2.4909522639994623,2.250874059369649 -415,14.0,11.0,-3.0953961826564296,6.097275864326261 -415,14.0,13.0,-2.4909522639994623,2.250874059369649 -415,14.0,14.0,7.554697395557554,-12.324214800477266 -415,14.0,22.0,-1.9683489489016612,3.976064876781356 -415,15.0,11.0,-1.9519977922801688,4.104359379111847 -415,15.0,15.0,3.271064728633931,-8.94513365126506 -415,15.0,16.0,-1.3190669363537617,4.8407742721532125 -415,16.0,9.0,-3.956039125715353,10.317447719844054 -415,16.0,15.0,-1.3190669363537617,4.8407742721532125 -415,16.0,16.0,5.275106062069114,-15.158221991997266 -415,17.0,17.0,3.0756864340087167,-6.218758799278971 -415,17.0,18.0,-3.0756864340087167,6.218758799278971 -415,18.0,17.0,-3.0756864340087167,6.218758799278971 -415,18.0,18.0,8.958039375185187,-17.98346468163191 -415,18.0,19.0,-5.88235294117647,11.76470588235294 -415,19.0,9.0,-1.7848303152666305,3.98535828943083 -415,19.0,18.0,-5.88235294117647,11.76470588235294 -415,19.0,19.0,7.6671832564431,-15.75006417178377 -415,20.0,9.0,-5.101853820159654,10.98071411292983 -415,20.0,20.0,21.876495189895888,-45.10843276170355 -415,20.0,21.0,-16.774641369736234,34.127718648773715 -415,21.0,9.0,-2.619319553382597,5.400770303329455 -415,21.0,20.0,-16.774641369736234,34.127718648773715 -415,21.0,21.0,21.93449907537439,-43.48289181517921 -415,21.0,23.0,-2.5405381522555563,3.95440286307604 -415,22.0,14.0,-1.9683489489016612,3.976064876781356 -415,22.0,22.0,3.429754555384988,-6.965303617315433 -415,22.0,23.0,-1.4614056064833263,2.989238740534077 -415,23.0,21.0,-2.5405381522555563,3.95440286307604 -415,23.0,22.0,-1.4614056064833263,2.989238740534077 -415,23.0,23.0,5.311836702613133,-9.188263657315172 -415,23.0,24.0,-1.3098929438742493,2.287622053705056 -415,24.0,23.0,-1.3098929438742493,2.287622053705056 -415,24.0,24.0,4.495715080321987,-7.864978761969621 -415,24.0,25.0,-1.2165301194494855,1.8171440463475024 -415,24.0,26.0,-1.9692920169982515,3.760212661917064 -415,25.0,24.0,-1.2165301194494855,1.8171440463475024 -415,25.0,25.0,1.2165301194494855,-1.8171440463475024 -415,26.0,24.0,-1.9692920169982515,3.760212661917064 -415,26.0,26.0,2.656747919825909,-7.579436681967305 -415,26.0,27.0,0.0,2.608731947574922 -415,26.0,29.0,-0.6874559028276572,1.293971494797717 -415,27.0,5.0,-4.362844058012917,15.463571542897856 -415,27.0,7.0,-1.4439790613954469,4.540814658476248 -415,27.0,26.0,0.0,2.608731947574922 -415,27.0,27.0,5.806823119408364,-22.67145722159613 -415,28.0,28.0,0.9120532070322764,-1.7233585608492326 -415,28.0,29.0,-0.9120532070322764,1.7233585608492326 -415,29.0,26.0,-0.6874559028276572,1.293971494797717 -415,29.0,28.0,-0.9120532070322764,1.7233585608492326 -415,29.0,29.0,1.5995091098599337,-3.0173300556469496 -416,0.0,0.0,6.765516048652632,-21.23160167089863 -416,0.0,1.0,-5.224646179885656,15.646726840803398 -416,0.0,2.0,-1.5408698687669766,5.631674830095234 -416,1.0,0.0,-5.224646179885656,15.646726840803398 -416,1.0,1.0,9.75228216552403,-30.648662892676068 -416,1.0,3.0,-1.7055303166990268,5.1973792282565086 -416,1.0,4.0,-1.1359607881738778,4.772479328281356 -416,1.0,5.0,-1.6861448807654689,5.116477495334806 -416,2.0,0.0,-1.5408698687669766,5.631674830095234 -416,2.0,2.0,9.736318911079088,-29.13794745915803 -416,2.0,3.0,-8.19544904231211,23.5308726290628 -416,3.0,1.0,-1.7055303166990268,5.1973792282565086 -416,3.0,2.0,-8.19544904231211,23.5308726290628 -416,3.0,3.0,16.314103089185693,-55.509410535254254 -416,3.0,5.0,-6.413123730174556,22.31120356548123 -416,3.0,11.0,0.0,4.191255364806866 -416,4.0,1.0,-1.1359607881738778,4.772479328281356 -416,4.0,4.0,4.089980824135861,-12.190647245055052 -416,4.0,6.0,-2.954020035961983,7.449267916773697 -416,5.0,1.0,-1.6861448807654689,5.116477495334806 -416,5.0,3.0,-6.413123730174556,22.31120356548123 -416,5.0,5.0,22.341631269034565,-82.8291478657789 -416,5.0,6.0,-3.590210423980992,11.02611441072814 -416,5.0,7.0,-6.289308176100628,22.0125786163522 -416,5.0,8.0,0.0,4.915840805411357 -416,5.0,9.0,0.0,1.8561002591115965 -416,5.0,27.0,-4.362844058012917,15.463571542897856 -416,6.0,4.0,-2.954020035961983,7.449267916773697 -416,6.0,5.0,-3.590210423980992,11.02611441072814 -416,6.0,6.0,6.544230459942975,-18.45668232750184 -416,7.0,5.0,-6.289308176100628,22.0125786163522 -416,7.0,7.0,7.733287237496075,-26.527493274828448 -416,7.0,27.0,-1.4439790613954469,4.540814658476248 -416,8.0,5.0,0.0,4.915840805411357 -416,8.0,8.0,0.0,-18.706293706293707 -416,8.0,9.0,0.0,9.090909090909092 -416,8.0,10.0,0.0,4.807692307692308 -416,9.0,5.0,0.0,1.8561002591115965 -416,9.0,8.0,0.0,9.090909090909092 -416,9.0,9.0,13.462042814524237,-41.3837606675224 -416,9.0,16.0,-3.956039125715353,10.317447719844054 -416,9.0,19.0,-1.7848303152666305,3.98535828943083 -416,9.0,20.0,-5.101853820159654,10.98071411292983 -416,9.0,21.0,-2.619319553382597,5.400770303329455 -416,10.0,8.0,0.0,4.807692307692308 -416,10.0,10.0,0.0,-4.807692307692308 -416,11.0,3.0,0.0,4.191255364806866 -416,11.0,11.0,6.573961583776156,-24.424167659260668 -416,11.0,12.0,0.0,7.142857142857143 -416,11.0,13.0,-1.5265676088395577,3.1734252729654173 -416,11.0,14.0,-3.0953961826564296,6.097275864326261 -416,11.0,15.0,-1.9519977922801688,4.104359379111847 -416,12.0,11.0,0.0,7.142857142857143 -416,12.0,12.0,0.0,-7.142857142857143 -416,13.0,11.0,-1.5265676088395577,3.1734252729654173 -416,13.0,13.0,4.01751987283902,-5.424299332335067 -416,13.0,14.0,-2.4909522639994623,2.250874059369649 -416,14.0,11.0,-3.0953961826564296,6.097275864326261 -416,14.0,13.0,-2.4909522639994623,2.250874059369649 -416,14.0,14.0,9.365498545964757,-16.01163373210796 -416,14.0,17.0,-1.8108011504072024,3.687418931630696 -416,14.0,22.0,-1.9683489489016612,3.976064876781356 -416,15.0,11.0,-1.9519977922801688,4.104359379111847 -416,15.0,15.0,3.271064728633931,-8.94513365126506 -416,15.0,16.0,-1.3190669363537617,4.8407742721532125 -416,16.0,9.0,-3.956039125715353,10.317447719844054 -416,16.0,15.0,-1.3190669363537617,4.8407742721532125 -416,16.0,16.0,5.275106062069114,-15.158221991997266 -416,17.0,14.0,-1.8108011504072024,3.687418931630696 -416,17.0,17.0,4.886487584415919,-9.906177730909668 -416,17.0,18.0,-3.0756864340087167,6.218758799278971 -416,18.0,17.0,-3.0756864340087167,6.218758799278971 -416,18.0,18.0,8.958039375185187,-17.98346468163191 -416,18.0,19.0,-5.88235294117647,11.76470588235294 -416,19.0,9.0,-1.7848303152666305,3.98535828943083 -416,19.0,18.0,-5.88235294117647,11.76470588235294 -416,19.0,19.0,7.6671832564431,-15.75006417178377 -416,20.0,9.0,-5.101853820159654,10.98071411292983 -416,20.0,20.0,21.876495189895888,-45.10843276170355 -416,20.0,21.0,-16.774641369736234,34.127718648773715 -416,21.0,9.0,-2.619319553382597,5.400770303329455 -416,21.0,20.0,-16.774641369736234,34.127718648773715 -416,21.0,21.0,21.93449907537439,-43.48289181517921 -416,21.0,23.0,-2.5405381522555563,3.95440286307604 -416,22.0,14.0,-1.9683489489016612,3.976064876781356 -416,22.0,22.0,3.429754555384988,-6.965303617315433 -416,22.0,23.0,-1.4614056064833263,2.989238740534077 -416,23.0,21.0,-2.5405381522555563,3.95440286307604 -416,23.0,22.0,-1.4614056064833263,2.989238740534077 -416,23.0,23.0,5.311836702613133,-9.188263657315172 -416,23.0,24.0,-1.3098929438742493,2.287622053705056 -416,24.0,23.0,-1.3098929438742493,2.287622053705056 -416,24.0,24.0,4.495715080321987,-7.864978761969621 -416,24.0,25.0,-1.2165301194494855,1.8171440463475024 -416,24.0,26.0,-1.9692920169982515,3.760212661917064 -416,25.0,24.0,-1.2165301194494855,1.8171440463475024 -416,25.0,25.0,1.2165301194494855,-1.8171440463475024 -416,26.0,24.0,-1.9692920169982515,3.760212661917064 -416,26.0,26.0,3.652281470778589,-9.46044252232512 -416,26.0,27.0,0.0,2.608731947574922 -416,26.0,28.0,-0.99553355095268,1.881005840357816 -416,26.0,29.0,-0.6874559028276572,1.293971494797717 -416,27.0,5.0,-4.362844058012917,15.463571542897856 -416,27.0,7.0,-1.4439790613954469,4.540814658476248 -416,27.0,26.0,0.0,2.608731947574922 -416,27.0,27.0,5.806823119408364,-22.67145722159613 -416,28.0,26.0,-0.99553355095268,1.881005840357816 -416,28.0,28.0,1.9075867579849564,-3.604364401207048 -416,28.0,29.0,-0.9120532070322764,1.7233585608492326 -416,29.0,26.0,-0.6874559028276572,1.293971494797717 -416,29.0,28.0,-0.9120532070322764,1.7233585608492326 -416,29.0,29.0,1.5995091098599337,-3.0173300556469496 -417,0.0,0.0,6.765516048652632,-21.23160167089863 -417,0.0,1.0,-5.224646179885656,15.646726840803398 -417,0.0,2.0,-1.5408698687669766,5.631674830095234 -417,1.0,0.0,-5.224646179885656,15.646726840803398 -417,1.0,1.0,8.046751848825002,-25.46968366441956 -417,1.0,4.0,-1.1359607881738778,4.772479328281356 -417,1.0,5.0,-1.6861448807654689,5.116477495334806 -417,2.0,0.0,-1.5408698687669766,5.631674830095234 -417,2.0,2.0,9.736318911079088,-29.13794745915803 -417,2.0,3.0,-8.19544904231211,23.5308726290628 -417,3.0,2.0,-8.19544904231211,23.5308726290628 -417,3.0,3.0,14.608572772486664,-50.33043130699775 -417,3.0,5.0,-6.413123730174556,22.31120356548123 -417,3.0,11.0,0.0,4.191255364806866 -417,4.0,1.0,-1.1359607881738778,4.772479328281356 -417,4.0,4.0,4.089980824135861,-12.190647245055052 -417,4.0,6.0,-2.954020035961983,7.449267916773697 -417,5.0,1.0,-1.6861448807654689,5.116477495334806 -417,5.0,3.0,-6.413123730174556,22.31120356548123 -417,5.0,5.0,22.341631269034565,-82.8291478657789 -417,5.0,6.0,-3.590210423980992,11.02611441072814 -417,5.0,7.0,-6.289308176100628,22.0125786163522 -417,5.0,8.0,0.0,4.915840805411357 -417,5.0,9.0,0.0,1.8561002591115965 -417,5.0,27.0,-4.362844058012917,15.463571542897856 -417,6.0,4.0,-2.954020035961983,7.449267916773697 -417,6.0,5.0,-3.590210423980992,11.02611441072814 -417,6.0,6.0,6.544230459942975,-18.45668232750184 -417,7.0,5.0,-6.289308176100628,22.0125786163522 -417,7.0,7.0,7.733287237496075,-26.527493274828448 -417,7.0,27.0,-1.4439790613954469,4.540814658476248 -417,8.0,5.0,0.0,4.915840805411357 -417,8.0,8.0,0.0,-18.706293706293707 -417,8.0,9.0,0.0,9.090909090909092 -417,8.0,10.0,0.0,4.807692307692308 -417,9.0,5.0,0.0,1.8561002591115965 -417,9.0,8.0,0.0,9.090909090909092 -417,9.0,9.0,13.462042814524237,-41.3837606675224 -417,9.0,16.0,-3.956039125715353,10.317447719844054 -417,9.0,19.0,-1.7848303152666305,3.98535828943083 -417,9.0,20.0,-5.101853820159654,10.98071411292983 -417,9.0,21.0,-2.619319553382597,5.400770303329455 -417,10.0,8.0,0.0,4.807692307692308 -417,10.0,10.0,0.0,-4.807692307692308 -417,11.0,3.0,0.0,4.191255364806866 -417,11.0,11.0,6.573961583776156,-24.424167659260668 -417,11.0,12.0,0.0,7.142857142857143 -417,11.0,13.0,-1.5265676088395577,3.1734252729654173 -417,11.0,14.0,-3.0953961826564296,6.097275864326261 -417,11.0,15.0,-1.9519977922801688,4.104359379111847 -417,12.0,11.0,0.0,7.142857142857143 -417,12.0,12.0,0.0,-7.142857142857143 -417,13.0,11.0,-1.5265676088395577,3.1734252729654173 -417,13.0,13.0,4.01751987283902,-5.424299332335067 -417,13.0,14.0,-2.4909522639994623,2.250874059369649 -417,14.0,11.0,-3.0953961826564296,6.097275864326261 -417,14.0,13.0,-2.4909522639994623,2.250874059369649 -417,14.0,14.0,9.365498545964757,-16.01163373210796 -417,14.0,17.0,-1.8108011504072024,3.687418931630696 -417,14.0,22.0,-1.9683489489016612,3.976064876781356 -417,15.0,11.0,-1.9519977922801688,4.104359379111847 -417,15.0,15.0,3.271064728633931,-8.94513365126506 -417,15.0,16.0,-1.3190669363537617,4.8407742721532125 -417,16.0,9.0,-3.956039125715353,10.317447719844054 -417,16.0,15.0,-1.3190669363537617,4.8407742721532125 -417,16.0,16.0,5.275106062069114,-15.158221991997266 -417,17.0,14.0,-1.8108011504072024,3.687418931630696 -417,17.0,17.0,4.886487584415919,-9.906177730909668 -417,17.0,18.0,-3.0756864340087167,6.218758799278971 -417,18.0,17.0,-3.0756864340087167,6.218758799278971 -417,18.0,18.0,3.0756864340087167,-6.218758799278971 -417,19.0,9.0,-1.7848303152666305,3.98535828943083 -417,19.0,19.0,1.7848303152666305,-3.98535828943083 -417,20.0,9.0,-5.101853820159654,10.98071411292983 -417,20.0,20.0,21.876495189895888,-45.10843276170355 -417,20.0,21.0,-16.774641369736234,34.127718648773715 -417,21.0,9.0,-2.619319553382597,5.400770303329455 -417,21.0,20.0,-16.774641369736234,34.127718648773715 -417,21.0,21.0,21.93449907537439,-43.48289181517921 -417,21.0,23.0,-2.5405381522555563,3.95440286307604 -417,22.0,14.0,-1.9683489489016612,3.976064876781356 -417,22.0,22.0,3.429754555384988,-6.965303617315433 -417,22.0,23.0,-1.4614056064833263,2.989238740534077 -417,23.0,21.0,-2.5405381522555563,3.95440286307604 -417,23.0,22.0,-1.4614056064833263,2.989238740534077 -417,23.0,23.0,5.311836702613133,-9.188263657315172 -417,23.0,24.0,-1.3098929438742493,2.287622053705056 -417,24.0,23.0,-1.3098929438742493,2.287622053705056 -417,24.0,24.0,4.495715080321987,-7.864978761969621 -417,24.0,25.0,-1.2165301194494855,1.8171440463475024 -417,24.0,26.0,-1.9692920169982515,3.760212661917064 -417,25.0,24.0,-1.2165301194494855,1.8171440463475024 -417,25.0,25.0,1.2165301194494855,-1.8171440463475024 -417,26.0,24.0,-1.9692920169982515,3.760212661917064 -417,26.0,26.0,3.652281470778589,-9.46044252232512 -417,26.0,27.0,0.0,2.608731947574922 -417,26.0,28.0,-0.99553355095268,1.881005840357816 -417,26.0,29.0,-0.6874559028276572,1.293971494797717 -417,27.0,5.0,-4.362844058012917,15.463571542897856 -417,27.0,7.0,-1.4439790613954469,4.540814658476248 -417,27.0,26.0,0.0,2.608731947574922 -417,27.0,27.0,5.806823119408364,-22.67145722159613 -417,28.0,26.0,-0.99553355095268,1.881005840357816 -417,28.0,28.0,1.9075867579849564,-3.604364401207048 -417,28.0,29.0,-0.9120532070322764,1.7233585608492326 -417,29.0,26.0,-0.6874559028276572,1.293971494797717 -417,29.0,28.0,-0.9120532070322764,1.7233585608492326 -417,29.0,29.0,1.5995091098599337,-3.0173300556469496 -418,0.0,0.0,6.765516048652632,-21.23160167089863 -418,0.0,1.0,-5.224646179885656,15.646726840803398 -418,0.0,2.0,-1.5408698687669766,5.631674830095234 -418,1.0,0.0,-5.224646179885656,15.646726840803398 -418,1.0,1.0,9.75228216552403,-30.648662892676068 -418,1.0,3.0,-1.7055303166990268,5.1973792282565086 -418,1.0,4.0,-1.1359607881738778,4.772479328281356 -418,1.0,5.0,-1.6861448807654689,5.116477495334806 -418,2.0,0.0,-1.5408698687669766,5.631674830095234 -418,2.0,2.0,9.736318911079088,-29.13794745915803 -418,2.0,3.0,-8.19544904231211,23.5308726290628 -418,3.0,1.0,-1.7055303166990268,5.1973792282565086 -418,3.0,2.0,-8.19544904231211,23.5308726290628 -418,3.0,3.0,16.314103089185693,-55.509410535254254 -418,3.0,5.0,-6.413123730174556,22.31120356548123 -418,3.0,11.0,0.0,4.191255364806866 -418,4.0,1.0,-1.1359607881738778,4.772479328281356 -418,4.0,4.0,4.089980824135861,-12.190647245055052 -418,4.0,6.0,-2.954020035961983,7.449267916773697 -418,5.0,1.0,-1.6861448807654689,5.116477495334806 -418,5.0,3.0,-6.413123730174556,22.31120356548123 -418,5.0,5.0,22.341631269034565,-82.8291478657789 -418,5.0,6.0,-3.590210423980992,11.02611441072814 -418,5.0,7.0,-6.289308176100628,22.0125786163522 -418,5.0,8.0,0.0,4.915840805411357 -418,5.0,9.0,0.0,1.8561002591115965 -418,5.0,27.0,-4.362844058012917,15.463571542897856 -418,6.0,4.0,-2.954020035961983,7.449267916773697 -418,6.0,5.0,-3.590210423980992,11.02611441072814 -418,6.0,6.0,6.544230459942975,-18.45668232750184 -418,7.0,5.0,-6.289308176100628,22.0125786163522 -418,7.0,7.0,7.733287237496075,-26.527493274828448 -418,7.0,27.0,-1.4439790613954469,4.540814658476248 -418,8.0,5.0,0.0,4.915840805411357 -418,8.0,8.0,0.0,-18.706293706293707 -418,8.0,9.0,0.0,9.090909090909092 -418,8.0,10.0,0.0,4.807692307692308 -418,9.0,5.0,0.0,1.8561002591115965 -418,9.0,8.0,0.0,9.090909090909092 -418,9.0,9.0,13.462042814524237,-41.3837606675224 -418,9.0,16.0,-3.956039125715353,10.317447719844054 -418,9.0,19.0,-1.7848303152666305,3.98535828943083 -418,9.0,20.0,-5.101853820159654,10.98071411292983 -418,9.0,21.0,-2.619319553382597,5.400770303329455 -418,10.0,8.0,0.0,4.807692307692308 -418,10.0,10.0,0.0,-4.807692307692308 -418,11.0,3.0,0.0,4.191255364806866 -418,11.0,11.0,6.573961583776156,-24.424167659260668 -418,11.0,12.0,0.0,7.142857142857143 -418,11.0,13.0,-1.5265676088395577,3.1734252729654173 -418,11.0,14.0,-3.0953961826564296,6.097275864326261 -418,11.0,15.0,-1.9519977922801688,4.104359379111847 -418,12.0,11.0,0.0,7.142857142857143 -418,12.0,12.0,0.0,-7.142857142857143 -418,13.0,11.0,-1.5265676088395577,3.1734252729654173 -418,13.0,13.0,4.01751987283902,-5.424299332335067 -418,13.0,14.0,-2.4909522639994623,2.250874059369649 -418,14.0,11.0,-3.0953961826564296,6.097275864326261 -418,14.0,13.0,-2.4909522639994623,2.250874059369649 -418,14.0,14.0,9.365498545964757,-16.01163373210796 -418,14.0,17.0,-1.8108011504072024,3.687418931630696 -418,14.0,22.0,-1.9683489489016612,3.976064876781356 -418,15.0,11.0,-1.9519977922801688,4.104359379111847 -418,15.0,15.0,3.271064728633931,-8.94513365126506 -418,15.0,16.0,-1.3190669363537617,4.8407742721532125 -418,16.0,9.0,-3.956039125715353,10.317447719844054 -418,16.0,15.0,-1.3190669363537617,4.8407742721532125 -418,16.0,16.0,5.275106062069114,-15.158221991997266 -418,17.0,14.0,-1.8108011504072024,3.687418931630696 -418,17.0,17.0,4.886487584415919,-9.906177730909668 -418,17.0,18.0,-3.0756864340087167,6.218758799278971 -418,18.0,17.0,-3.0756864340087167,6.218758799278971 -418,18.0,18.0,8.958039375185187,-17.98346468163191 -418,18.0,19.0,-5.88235294117647,11.76470588235294 -418,19.0,9.0,-1.7848303152666305,3.98535828943083 -418,19.0,18.0,-5.88235294117647,11.76470588235294 -418,19.0,19.0,7.6671832564431,-15.75006417178377 -418,20.0,9.0,-5.101853820159654,10.98071411292983 -418,20.0,20.0,21.876495189895888,-45.10843276170355 -418,20.0,21.0,-16.774641369736234,34.127718648773715 -418,21.0,9.0,-2.619319553382597,5.400770303329455 -418,21.0,20.0,-16.774641369736234,34.127718648773715 -418,21.0,21.0,21.93449907537439,-43.48289181517921 -418,21.0,23.0,-2.5405381522555563,3.95440286307604 -418,22.0,14.0,-1.9683489489016612,3.976064876781356 -418,22.0,22.0,3.429754555384988,-6.965303617315433 -418,22.0,23.0,-1.4614056064833263,2.989238740534077 -418,23.0,21.0,-2.5405381522555563,3.95440286307604 -418,23.0,22.0,-1.4614056064833263,2.989238740534077 -418,23.0,23.0,5.311836702613133,-9.188263657315172 -418,23.0,24.0,-1.3098929438742493,2.287622053705056 -418,24.0,23.0,-1.3098929438742493,2.287622053705056 -418,24.0,24.0,4.495715080321987,-7.864978761969621 -418,24.0,25.0,-1.2165301194494855,1.8171440463475024 -418,24.0,26.0,-1.9692920169982515,3.760212661917064 -418,25.0,24.0,-1.2165301194494855,1.8171440463475024 -418,25.0,25.0,1.2165301194494855,-1.8171440463475024 -418,26.0,24.0,-1.9692920169982515,3.760212661917064 -418,26.0,26.0,3.652281470778589,-9.46044252232512 -418,26.0,27.0,0.0,2.608731947574922 -418,26.0,28.0,-0.99553355095268,1.881005840357816 -418,26.0,29.0,-0.6874559028276572,1.293971494797717 -418,27.0,5.0,-4.362844058012917,15.463571542897856 -418,27.0,7.0,-1.4439790613954469,4.540814658476248 -418,27.0,26.0,0.0,2.608731947574922 -418,27.0,27.0,5.806823119408364,-22.67145722159613 -418,28.0,26.0,-0.99553355095268,1.881005840357816 -418,28.0,28.0,1.9075867579849564,-3.604364401207048 -418,28.0,29.0,-0.9120532070322764,1.7233585608492326 -418,29.0,26.0,-0.6874559028276572,1.293971494797717 -418,29.0,28.0,-0.9120532070322764,1.7233585608492326 -418,29.0,29.0,1.5995091098599337,-3.0173300556469496 -419,0.0,0.0,6.765516048652632,-21.23160167089863 -419,0.0,1.0,-5.224646179885656,15.646726840803398 -419,0.0,2.0,-1.5408698687669766,5.631674830095234 -419,1.0,0.0,-5.224646179885656,15.646726840803398 -419,1.0,1.0,9.75228216552403,-30.648662892676068 -419,1.0,3.0,-1.7055303166990268,5.1973792282565086 -419,1.0,4.0,-1.1359607881738778,4.772479328281356 -419,1.0,5.0,-1.6861448807654689,5.116477495334806 -419,2.0,0.0,-1.5408698687669766,5.631674830095234 -419,2.0,2.0,9.736318911079088,-29.13794745915803 -419,2.0,3.0,-8.19544904231211,23.5308726290628 -419,3.0,1.0,-1.7055303166990268,5.1973792282565086 -419,3.0,2.0,-8.19544904231211,23.5308726290628 -419,3.0,3.0,16.314103089185693,-55.509410535254254 -419,3.0,5.0,-6.413123730174556,22.31120356548123 -419,3.0,11.0,0.0,4.191255364806866 -419,4.0,1.0,-1.1359607881738778,4.772479328281356 -419,4.0,4.0,4.089980824135861,-12.190647245055052 -419,4.0,6.0,-2.954020035961983,7.449267916773697 -419,5.0,1.0,-1.6861448807654689,5.116477495334806 -419,5.0,3.0,-6.413123730174556,22.31120356548123 -419,5.0,5.0,22.341631269034565,-82.8291478657789 -419,5.0,6.0,-3.590210423980992,11.02611441072814 -419,5.0,7.0,-6.289308176100628,22.0125786163522 -419,5.0,8.0,0.0,4.915840805411357 -419,5.0,9.0,0.0,1.8561002591115965 -419,5.0,27.0,-4.362844058012917,15.463571542897856 -419,6.0,4.0,-2.954020035961983,7.449267916773697 -419,6.0,5.0,-3.590210423980992,11.02611441072814 -419,6.0,6.0,6.544230459942975,-18.45668232750184 -419,7.0,5.0,-6.289308176100628,22.0125786163522 -419,7.0,7.0,7.733287237496075,-26.527493274828448 -419,7.0,27.0,-1.4439790613954469,4.540814658476248 -419,8.0,5.0,0.0,4.915840805411357 -419,8.0,8.0,0.0,-18.706293706293707 -419,8.0,9.0,0.0,9.090909090909092 -419,8.0,10.0,0.0,4.807692307692308 -419,9.0,5.0,0.0,1.8561002591115965 -419,9.0,8.0,0.0,9.090909090909092 -419,9.0,9.0,13.462042814524237,-41.3837606675224 -419,9.0,16.0,-3.956039125715353,10.317447719844054 -419,9.0,19.0,-1.7848303152666305,3.98535828943083 -419,9.0,20.0,-5.101853820159654,10.98071411292983 -419,9.0,21.0,-2.619319553382597,5.400770303329455 -419,10.0,8.0,0.0,4.807692307692308 -419,10.0,10.0,0.0,-4.807692307692308 -419,11.0,3.0,0.0,4.191255364806866 -419,11.0,11.0,6.573961583776156,-24.424167659260668 -419,11.0,12.0,0.0,7.142857142857143 -419,11.0,13.0,-1.5265676088395577,3.1734252729654173 -419,11.0,14.0,-3.0953961826564296,6.097275864326261 -419,11.0,15.0,-1.9519977922801688,4.104359379111847 -419,12.0,11.0,0.0,7.142857142857143 -419,12.0,12.0,0.0,-7.142857142857143 -419,13.0,11.0,-1.5265676088395577,3.1734252729654173 -419,13.0,13.0,4.01751987283902,-5.424299332335067 -419,13.0,14.0,-2.4909522639994623,2.250874059369649 -419,14.0,11.0,-3.0953961826564296,6.097275864326261 -419,14.0,13.0,-2.4909522639994623,2.250874059369649 -419,14.0,14.0,9.365498545964757,-16.01163373210796 -419,14.0,17.0,-1.8108011504072024,3.687418931630696 -419,14.0,22.0,-1.9683489489016612,3.976064876781356 -419,15.0,11.0,-1.9519977922801688,4.104359379111847 -419,15.0,15.0,3.271064728633931,-8.94513365126506 -419,15.0,16.0,-1.3190669363537617,4.8407742721532125 -419,16.0,9.0,-3.956039125715353,10.317447719844054 -419,16.0,15.0,-1.3190669363537617,4.8407742721532125 -419,16.0,16.0,5.275106062069114,-15.158221991997266 -419,17.0,14.0,-1.8108011504072024,3.687418931630696 -419,17.0,17.0,4.886487584415919,-9.906177730909668 -419,17.0,18.0,-3.0756864340087167,6.218758799278971 -419,18.0,17.0,-3.0756864340087167,6.218758799278971 -419,18.0,18.0,8.958039375185187,-17.98346468163191 -419,18.0,19.0,-5.88235294117647,11.76470588235294 -419,19.0,9.0,-1.7848303152666305,3.98535828943083 -419,19.0,18.0,-5.88235294117647,11.76470588235294 -419,19.0,19.0,7.6671832564431,-15.75006417178377 -419,20.0,9.0,-5.101853820159654,10.98071411292983 -419,20.0,20.0,21.876495189895888,-45.10843276170355 -419,20.0,21.0,-16.774641369736234,34.127718648773715 -419,21.0,9.0,-2.619319553382597,5.400770303329455 -419,21.0,20.0,-16.774641369736234,34.127718648773715 -419,21.0,21.0,21.93449907537439,-43.48289181517921 -419,21.0,23.0,-2.5405381522555563,3.95440286307604 -419,22.0,14.0,-1.9683489489016612,3.976064876781356 -419,22.0,22.0,3.429754555384988,-6.965303617315433 -419,22.0,23.0,-1.4614056064833263,2.989238740534077 -419,23.0,21.0,-2.5405381522555563,3.95440286307604 -419,23.0,22.0,-1.4614056064833263,2.989238740534077 -419,23.0,23.0,5.311836702613133,-9.188263657315172 -419,23.0,24.0,-1.3098929438742493,2.287622053705056 -419,24.0,23.0,-1.3098929438742493,2.287622053705056 -419,24.0,24.0,4.495715080321987,-7.864978761969621 -419,24.0,25.0,-1.2165301194494855,1.8171440463475024 -419,24.0,26.0,-1.9692920169982515,3.760212661917064 -419,25.0,24.0,-1.2165301194494855,1.8171440463475024 -419,25.0,25.0,1.2165301194494855,-1.8171440463475024 -419,26.0,24.0,-1.9692920169982515,3.760212661917064 -419,26.0,26.0,3.652281470778589,-9.46044252232512 -419,26.0,27.0,0.0,2.608731947574922 -419,26.0,28.0,-0.99553355095268,1.881005840357816 -419,26.0,29.0,-0.6874559028276572,1.293971494797717 -419,27.0,5.0,-4.362844058012917,15.463571542897856 -419,27.0,7.0,-1.4439790613954469,4.540814658476248 -419,27.0,26.0,0.0,2.608731947574922 -419,27.0,27.0,5.806823119408364,-22.67145722159613 -419,28.0,26.0,-0.99553355095268,1.881005840357816 -419,28.0,28.0,1.9075867579849564,-3.604364401207048 -419,28.0,29.0,-0.9120532070322764,1.7233585608492326 -419,29.0,26.0,-0.6874559028276572,1.293971494797717 -419,29.0,28.0,-0.9120532070322764,1.7233585608492326 -419,29.0,29.0,1.5995091098599337,-3.0173300556469496 -420,0.0,0.0,6.765516048652632,-21.23160167089863 -420,0.0,1.0,-5.224646179885656,15.646726840803398 -420,0.0,2.0,-1.5408698687669766,5.631674830095234 -420,1.0,0.0,-5.224646179885656,15.646726840803398 -420,1.0,1.0,9.75228216552403,-30.648662892676068 -420,1.0,3.0,-1.7055303166990268,5.1973792282565086 -420,1.0,4.0,-1.1359607881738778,4.772479328281356 -420,1.0,5.0,-1.6861448807654689,5.116477495334806 -420,2.0,0.0,-1.5408698687669766,5.631674830095234 -420,2.0,2.0,9.736318911079088,-29.13794745915803 -420,2.0,3.0,-8.19544904231211,23.5308726290628 -420,3.0,1.0,-1.7055303166990268,5.1973792282565086 -420,3.0,2.0,-8.19544904231211,23.5308726290628 -420,3.0,3.0,16.314103089185693,-55.509410535254254 -420,3.0,5.0,-6.413123730174556,22.31120356548123 -420,3.0,11.0,0.0,4.191255364806866 -420,4.0,1.0,-1.1359607881738778,4.772479328281356 -420,4.0,4.0,4.089980824135861,-12.190647245055052 -420,4.0,6.0,-2.954020035961983,7.449267916773697 -420,5.0,1.0,-1.6861448807654689,5.116477495334806 -420,5.0,3.0,-6.413123730174556,22.31120356548123 -420,5.0,5.0,22.341631269034565,-82.8291478657789 -420,5.0,6.0,-3.590210423980992,11.02611441072814 -420,5.0,7.0,-6.289308176100628,22.0125786163522 -420,5.0,8.0,0.0,4.915840805411357 -420,5.0,9.0,0.0,1.8561002591115965 -420,5.0,27.0,-4.362844058012917,15.463571542897856 -420,6.0,4.0,-2.954020035961983,7.449267916773697 -420,6.0,5.0,-3.590210423980992,11.02611441072814 -420,6.0,6.0,6.544230459942975,-18.45668232750184 -420,7.0,5.0,-6.289308176100628,22.0125786163522 -420,7.0,7.0,7.733287237496075,-26.527493274828448 -420,7.0,27.0,-1.4439790613954469,4.540814658476248 -420,8.0,5.0,0.0,4.915840805411357 -420,8.0,8.0,0.0,-18.706293706293707 -420,8.0,9.0,0.0,9.090909090909092 -420,8.0,10.0,0.0,4.807692307692308 -420,9.0,5.0,0.0,1.8561002591115965 -420,9.0,8.0,0.0,9.090909090909092 -420,9.0,9.0,13.462042814524237,-41.3837606675224 -420,9.0,16.0,-3.956039125715353,10.317447719844054 -420,9.0,19.0,-1.7848303152666305,3.98535828943083 -420,9.0,20.0,-5.101853820159654,10.98071411292983 -420,9.0,21.0,-2.619319553382597,5.400770303329455 -420,10.0,8.0,0.0,4.807692307692308 -420,10.0,10.0,0.0,-4.807692307692308 -420,11.0,3.0,0.0,4.191255364806866 -420,11.0,11.0,4.621963791495987,-20.31980828014882 -420,11.0,12.0,0.0,7.142857142857143 -420,11.0,13.0,-1.5265676088395577,3.1734252729654173 -420,11.0,14.0,-3.0953961826564296,6.097275864326261 -420,12.0,11.0,0.0,7.142857142857143 -420,12.0,12.0,0.0,-7.142857142857143 -420,13.0,11.0,-1.5265676088395577,3.1734252729654173 -420,13.0,13.0,4.01751987283902,-5.424299332335067 -420,13.0,14.0,-2.4909522639994623,2.250874059369649 -420,14.0,11.0,-3.0953961826564296,6.097275864326261 -420,14.0,13.0,-2.4909522639994623,2.250874059369649 -420,14.0,14.0,9.365498545964757,-16.01163373210796 -420,14.0,17.0,-1.8108011504072024,3.687418931630696 -420,14.0,22.0,-1.9683489489016612,3.976064876781356 -420,15.0,15.0,1.3190669363537617,-4.8407742721532125 -420,15.0,16.0,-1.3190669363537617,4.8407742721532125 -420,16.0,9.0,-3.956039125715353,10.317447719844054 -420,16.0,15.0,-1.3190669363537617,4.8407742721532125 -420,16.0,16.0,5.275106062069114,-15.158221991997266 -420,17.0,14.0,-1.8108011504072024,3.687418931630696 -420,17.0,17.0,4.886487584415919,-9.906177730909668 -420,17.0,18.0,-3.0756864340087167,6.218758799278971 -420,18.0,17.0,-3.0756864340087167,6.218758799278971 -420,18.0,18.0,8.958039375185187,-17.98346468163191 -420,18.0,19.0,-5.88235294117647,11.76470588235294 -420,19.0,9.0,-1.7848303152666305,3.98535828943083 -420,19.0,18.0,-5.88235294117647,11.76470588235294 -420,19.0,19.0,7.6671832564431,-15.75006417178377 -420,20.0,9.0,-5.101853820159654,10.98071411292983 -420,20.0,20.0,5.101853820159654,-10.98071411292983 -420,21.0,9.0,-2.619319553382597,5.400770303329455 -420,21.0,21.0,5.159857705638154,-9.355173166405494 -420,21.0,23.0,-2.5405381522555563,3.95440286307604 -420,22.0,14.0,-1.9683489489016612,3.976064876781356 -420,22.0,22.0,3.429754555384988,-6.965303617315433 -420,22.0,23.0,-1.4614056064833263,2.989238740534077 -420,23.0,21.0,-2.5405381522555563,3.95440286307604 -420,23.0,22.0,-1.4614056064833263,2.989238740534077 -420,23.0,23.0,4.001943758738883,-6.900641603610116 -420,24.0,24.0,3.185822136447737,-5.577356708264566 -420,24.0,25.0,-1.2165301194494855,1.8171440463475024 -420,24.0,26.0,-1.9692920169982515,3.760212661917064 -420,25.0,24.0,-1.2165301194494855,1.8171440463475024 -420,25.0,25.0,1.2165301194494855,-1.8171440463475024 -420,26.0,24.0,-1.9692920169982515,3.760212661917064 -420,26.0,26.0,3.652281470778589,-9.46044252232512 -420,26.0,27.0,0.0,2.608731947574922 -420,26.0,28.0,-0.99553355095268,1.881005840357816 -420,26.0,29.0,-0.6874559028276572,1.293971494797717 -420,27.0,5.0,-4.362844058012917,15.463571542897856 -420,27.0,7.0,-1.4439790613954469,4.540814658476248 -420,27.0,26.0,0.0,2.608731947574922 -420,27.0,27.0,5.806823119408364,-22.67145722159613 -420,28.0,26.0,-0.99553355095268,1.881005840357816 -420,28.0,28.0,1.9075867579849564,-3.604364401207048 -420,28.0,29.0,-0.9120532070322764,1.7233585608492326 -420,29.0,26.0,-0.6874559028276572,1.293971494797717 -420,29.0,28.0,-0.9120532070322764,1.7233585608492326 -420,29.0,29.0,1.5995091098599337,-3.0173300556469496 -421,0.0,0.0,6.765516048652632,-21.23160167089863 -421,0.0,1.0,-5.224646179885656,15.646726840803398 -421,0.0,2.0,-1.5408698687669766,5.631674830095234 -421,1.0,0.0,-5.224646179885656,15.646726840803398 -421,1.0,1.0,9.75228216552403,-30.648662892676068 -421,1.0,3.0,-1.7055303166990268,5.1973792282565086 -421,1.0,4.0,-1.1359607881738778,4.772479328281356 -421,1.0,5.0,-1.6861448807654689,5.116477495334806 -421,2.0,0.0,-1.5408698687669766,5.631674830095234 -421,2.0,2.0,9.736318911079088,-29.13794745915803 -421,2.0,3.0,-8.19544904231211,23.5308726290628 -421,3.0,1.0,-1.7055303166990268,5.1973792282565086 -421,3.0,2.0,-8.19544904231211,23.5308726290628 -421,3.0,3.0,16.314103089185693,-55.509410535254254 -421,3.0,5.0,-6.413123730174556,22.31120356548123 -421,3.0,11.0,0.0,4.191255364806866 -421,4.0,1.0,-1.1359607881738778,4.772479328281356 -421,4.0,4.0,4.089980824135861,-12.190647245055052 -421,4.0,6.0,-2.954020035961983,7.449267916773697 -421,5.0,1.0,-1.6861448807654689,5.116477495334806 -421,5.0,3.0,-6.413123730174556,22.31120356548123 -421,5.0,5.0,22.341631269034565,-82.8291478657789 -421,5.0,6.0,-3.590210423980992,11.02611441072814 -421,5.0,7.0,-6.289308176100628,22.0125786163522 -421,5.0,8.0,0.0,4.915840805411357 -421,5.0,9.0,0.0,1.8561002591115965 -421,5.0,27.0,-4.362844058012917,15.463571542897856 -421,6.0,4.0,-2.954020035961983,7.449267916773697 -421,6.0,5.0,-3.590210423980992,11.02611441072814 -421,6.0,6.0,6.544230459942975,-18.45668232750184 -421,7.0,5.0,-6.289308176100628,22.0125786163522 -421,7.0,7.0,7.733287237496075,-26.527493274828448 -421,7.0,27.0,-1.4439790613954469,4.540814658476248 -421,8.0,5.0,0.0,4.915840805411357 -421,8.0,8.0,0.0,-18.706293706293707 -421,8.0,9.0,0.0,9.090909090909092 -421,8.0,10.0,0.0,4.807692307692308 -421,9.0,5.0,0.0,1.8561002591115965 -421,9.0,8.0,0.0,9.090909090909092 -421,9.0,9.0,13.462042814524237,-41.3837606675224 -421,9.0,16.0,-3.956039125715353,10.317447719844054 -421,9.0,19.0,-1.7848303152666305,3.98535828943083 -421,9.0,20.0,-5.101853820159654,10.98071411292983 -421,9.0,21.0,-2.619319553382597,5.400770303329455 -421,10.0,8.0,0.0,4.807692307692308 -421,10.0,10.0,0.0,-4.807692307692308 -421,11.0,3.0,0.0,4.191255364806866 -421,11.0,11.0,6.573961583776156,-24.424167659260668 -421,11.0,12.0,0.0,7.142857142857143 -421,11.0,13.0,-1.5265676088395577,3.1734252729654173 -421,11.0,14.0,-3.0953961826564296,6.097275864326261 -421,11.0,15.0,-1.9519977922801688,4.104359379111847 -421,12.0,11.0,0.0,7.142857142857143 -421,12.0,12.0,0.0,-7.142857142857143 -421,13.0,11.0,-1.5265676088395577,3.1734252729654173 -421,13.0,13.0,4.01751987283902,-5.424299332335067 -421,13.0,14.0,-2.4909522639994623,2.250874059369649 -421,14.0,11.0,-3.0953961826564296,6.097275864326261 -421,14.0,13.0,-2.4909522639994623,2.250874059369649 -421,14.0,14.0,9.365498545964757,-16.01163373210796 -421,14.0,17.0,-1.8108011504072024,3.687418931630696 -421,14.0,22.0,-1.9683489489016612,3.976064876781356 -421,15.0,11.0,-1.9519977922801688,4.104359379111847 -421,15.0,15.0,3.271064728633931,-8.94513365126506 -421,15.0,16.0,-1.3190669363537617,4.8407742721532125 -421,16.0,9.0,-3.956039125715353,10.317447719844054 -421,16.0,15.0,-1.3190669363537617,4.8407742721532125 -421,16.0,16.0,5.275106062069114,-15.158221991997266 -421,17.0,14.0,-1.8108011504072024,3.687418931630696 -421,17.0,17.0,1.8108011504072024,-3.687418931630696 -421,18.0,18.0,5.88235294117647,-11.76470588235294 -421,18.0,19.0,-5.88235294117647,11.76470588235294 -421,19.0,9.0,-1.7848303152666305,3.98535828943083 -421,19.0,18.0,-5.88235294117647,11.76470588235294 -421,19.0,19.0,7.6671832564431,-15.75006417178377 -421,20.0,9.0,-5.101853820159654,10.98071411292983 -421,20.0,20.0,21.876495189895888,-45.10843276170355 -421,20.0,21.0,-16.774641369736234,34.127718648773715 -421,21.0,9.0,-2.619319553382597,5.400770303329455 -421,21.0,20.0,-16.774641369736234,34.127718648773715 -421,21.0,21.0,21.93449907537439,-43.48289181517921 -421,21.0,23.0,-2.5405381522555563,3.95440286307604 -421,22.0,14.0,-1.9683489489016612,3.976064876781356 -421,22.0,22.0,3.429754555384988,-6.965303617315433 -421,22.0,23.0,-1.4614056064833263,2.989238740534077 -421,23.0,21.0,-2.5405381522555563,3.95440286307604 -421,23.0,22.0,-1.4614056064833263,2.989238740534077 -421,23.0,23.0,5.311836702613133,-9.188263657315172 -421,23.0,24.0,-1.3098929438742493,2.287622053705056 -421,24.0,23.0,-1.3098929438742493,2.287622053705056 -421,24.0,24.0,4.495715080321987,-7.864978761969621 -421,24.0,25.0,-1.2165301194494855,1.8171440463475024 -421,24.0,26.0,-1.9692920169982515,3.760212661917064 -421,25.0,24.0,-1.2165301194494855,1.8171440463475024 -421,25.0,25.0,1.2165301194494855,-1.8171440463475024 -421,26.0,24.0,-1.9692920169982515,3.760212661917064 -421,26.0,26.0,3.652281470778589,-9.46044252232512 -421,26.0,27.0,0.0,2.608731947574922 -421,26.0,28.0,-0.99553355095268,1.881005840357816 -421,26.0,29.0,-0.6874559028276572,1.293971494797717 -421,27.0,5.0,-4.362844058012917,15.463571542897856 -421,27.0,7.0,-1.4439790613954469,4.540814658476248 -421,27.0,26.0,0.0,2.608731947574922 -421,27.0,27.0,5.806823119408364,-22.67145722159613 -421,28.0,26.0,-0.99553355095268,1.881005840357816 -421,28.0,28.0,1.9075867579849564,-3.604364401207048 -421,28.0,29.0,-0.9120532070322764,1.7233585608492326 -421,29.0,26.0,-0.6874559028276572,1.293971494797717 -421,29.0,28.0,-0.9120532070322764,1.7233585608492326 -421,29.0,29.0,1.5995091098599337,-3.0173300556469496 -422,0.0,0.0,6.765516048652632,-21.23160167089863 -422,0.0,1.0,-5.224646179885656,15.646726840803398 -422,0.0,2.0,-1.5408698687669766,5.631674830095234 -422,1.0,0.0,-5.224646179885656,15.646726840803398 -422,1.0,1.0,6.360606968059534,-20.371906169084752 -422,1.0,4.0,-1.1359607881738778,4.772479328281356 -422,2.0,0.0,-1.5408698687669766,5.631674830095234 -422,2.0,2.0,9.736318911079088,-29.13794745915803 -422,2.0,3.0,-8.19544904231211,23.5308726290628 -422,3.0,2.0,-8.19544904231211,23.5308726290628 -422,3.0,3.0,14.608572772486664,-50.33043130699775 -422,3.0,5.0,-6.413123730174556,22.31120356548123 -422,3.0,11.0,0.0,4.191255364806866 -422,4.0,1.0,-1.1359607881738778,4.772479328281356 -422,4.0,4.0,4.089980824135861,-12.190647245055052 -422,4.0,6.0,-2.954020035961983,7.449267916773697 -422,5.0,3.0,-6.413123730174556,22.31120356548123 -422,5.0,5.0,20.655486388269097,-77.7313703704441 -422,5.0,6.0,-3.590210423980992,11.02611441072814 -422,5.0,7.0,-6.289308176100628,22.0125786163522 -422,5.0,8.0,0.0,4.915840805411357 -422,5.0,9.0,0.0,1.8561002591115965 -422,5.0,27.0,-4.362844058012917,15.463571542897856 -422,6.0,4.0,-2.954020035961983,7.449267916773697 -422,6.0,5.0,-3.590210423980992,11.02611441072814 -422,6.0,6.0,6.544230459942975,-18.45668232750184 -422,7.0,5.0,-6.289308176100628,22.0125786163522 -422,7.0,7.0,6.289308176100628,-22.0080786163522 -422,8.0,5.0,0.0,4.915840805411357 -422,8.0,8.0,0.0,-18.706293706293707 -422,8.0,9.0,0.0,9.090909090909092 -422,8.0,10.0,0.0,4.807692307692308 -422,9.0,5.0,0.0,1.8561002591115965 -422,9.0,8.0,0.0,9.090909090909092 -422,9.0,9.0,13.462042814524237,-41.3837606675224 -422,9.0,16.0,-3.956039125715353,10.317447719844054 -422,9.0,19.0,-1.7848303152666305,3.98535828943083 -422,9.0,20.0,-5.101853820159654,10.98071411292983 -422,9.0,21.0,-2.619319553382597,5.400770303329455 -422,10.0,8.0,0.0,4.807692307692308 -422,10.0,10.0,0.0,-4.807692307692308 -422,11.0,3.0,0.0,4.191255364806866 -422,11.0,11.0,6.573961583776156,-24.424167659260668 -422,11.0,12.0,0.0,7.142857142857143 -422,11.0,13.0,-1.5265676088395577,3.1734252729654173 -422,11.0,14.0,-3.0953961826564296,6.097275864326261 -422,11.0,15.0,-1.9519977922801688,4.104359379111847 -422,12.0,11.0,0.0,7.142857142857143 -422,12.0,12.0,0.0,-7.142857142857143 -422,13.0,11.0,-1.5265676088395577,3.1734252729654173 -422,13.0,13.0,4.01751987283902,-5.424299332335067 -422,13.0,14.0,-2.4909522639994623,2.250874059369649 -422,14.0,11.0,-3.0953961826564296,6.097275864326261 -422,14.0,13.0,-2.4909522639994623,2.250874059369649 -422,14.0,14.0,9.365498545964757,-16.01163373210796 -422,14.0,17.0,-1.8108011504072024,3.687418931630696 -422,14.0,22.0,-1.9683489489016612,3.976064876781356 -422,15.0,11.0,-1.9519977922801688,4.104359379111847 -422,15.0,15.0,3.271064728633931,-8.94513365126506 -422,15.0,16.0,-1.3190669363537617,4.8407742721532125 -422,16.0,9.0,-3.956039125715353,10.317447719844054 -422,16.0,15.0,-1.3190669363537617,4.8407742721532125 -422,16.0,16.0,5.275106062069114,-15.158221991997266 -422,17.0,14.0,-1.8108011504072024,3.687418931630696 -422,17.0,17.0,4.886487584415919,-9.906177730909668 -422,17.0,18.0,-3.0756864340087167,6.218758799278971 -422,18.0,17.0,-3.0756864340087167,6.218758799278971 -422,18.0,18.0,8.958039375185187,-17.98346468163191 -422,18.0,19.0,-5.88235294117647,11.76470588235294 -422,19.0,9.0,-1.7848303152666305,3.98535828943083 -422,19.0,18.0,-5.88235294117647,11.76470588235294 -422,19.0,19.0,7.6671832564431,-15.75006417178377 -422,20.0,9.0,-5.101853820159654,10.98071411292983 -422,20.0,20.0,21.876495189895888,-45.10843276170355 -422,20.0,21.0,-16.774641369736234,34.127718648773715 -422,21.0,9.0,-2.619319553382597,5.400770303329455 -422,21.0,20.0,-16.774641369736234,34.127718648773715 -422,21.0,21.0,21.93449907537439,-43.48289181517921 -422,21.0,23.0,-2.5405381522555563,3.95440286307604 -422,22.0,14.0,-1.9683489489016612,3.976064876781356 -422,22.0,22.0,3.429754555384988,-6.965303617315433 -422,22.0,23.0,-1.4614056064833263,2.989238740534077 -422,23.0,21.0,-2.5405381522555563,3.95440286307604 -422,23.0,22.0,-1.4614056064833263,2.989238740534077 -422,23.0,23.0,5.311836702613133,-9.188263657315172 -422,23.0,24.0,-1.3098929438742493,2.287622053705056 -422,24.0,23.0,-1.3098929438742493,2.287622053705056 -422,24.0,24.0,4.495715080321987,-7.864978761969621 -422,24.0,25.0,-1.2165301194494855,1.8171440463475024 -422,24.0,26.0,-1.9692920169982515,3.760212661917064 -422,25.0,24.0,-1.2165301194494855,1.8171440463475024 -422,25.0,25.0,1.2165301194494855,-1.8171440463475024 -422,26.0,24.0,-1.9692920169982515,3.760212661917064 -422,26.0,26.0,3.652281470778589,-9.46044252232512 -422,26.0,27.0,0.0,2.608731947574922 -422,26.0,28.0,-0.99553355095268,1.881005840357816 -422,26.0,29.0,-0.6874559028276572,1.293971494797717 -422,27.0,5.0,-4.362844058012917,15.463571542897856 -422,27.0,26.0,0.0,2.608731947574922 -422,27.0,27.0,4.362844058012917,-18.15204256311988 -422,28.0,26.0,-0.99553355095268,1.881005840357816 -422,28.0,28.0,1.9075867579849564,-3.604364401207048 -422,28.0,29.0,-0.9120532070322764,1.7233585608492326 -422,29.0,26.0,-0.6874559028276572,1.293971494797717 -422,29.0,28.0,-0.9120532070322764,1.7233585608492326 -422,29.0,29.0,1.5995091098599337,-3.0173300556469496 -423,0.0,0.0,5.224646179885656,-15.620326840803395 -423,0.0,1.0,-5.224646179885656,15.646726840803398 -423,1.0,0.0,-5.224646179885656,15.646726840803398 -423,1.0,1.0,9.75228216552403,-30.648662892676068 -423,1.0,3.0,-1.7055303166990268,5.1973792282565086 -423,1.0,4.0,-1.1359607881738778,4.772479328281356 -423,1.0,5.0,-1.6861448807654689,5.116477495334806 -423,2.0,2.0,8.19544904231211,-23.5266726290628 -423,2.0,3.0,-8.19544904231211,23.5308726290628 -423,3.0,1.0,-1.7055303166990268,5.1973792282565086 -423,3.0,2.0,-8.19544904231211,23.5308726290628 -423,3.0,3.0,16.314103089185693,-55.509410535254254 -423,3.0,5.0,-6.413123730174556,22.31120356548123 -423,3.0,11.0,0.0,4.191255364806866 -423,4.0,1.0,-1.1359607881738778,4.772479328281356 -423,4.0,4.0,4.089980824135861,-12.190647245055052 -423,4.0,6.0,-2.954020035961983,7.449267916773697 -423,5.0,1.0,-1.6861448807654689,5.116477495334806 -423,5.0,3.0,-6.413123730174556,22.31120356548123 -423,5.0,5.0,22.341631269034565,-82.8291478657789 -423,5.0,6.0,-3.590210423980992,11.02611441072814 -423,5.0,7.0,-6.289308176100628,22.0125786163522 -423,5.0,8.0,0.0,4.915840805411357 -423,5.0,9.0,0.0,1.8561002591115965 -423,5.0,27.0,-4.362844058012917,15.463571542897856 -423,6.0,4.0,-2.954020035961983,7.449267916773697 -423,6.0,5.0,-3.590210423980992,11.02611441072814 -423,6.0,6.0,6.544230459942975,-18.45668232750184 -423,7.0,5.0,-6.289308176100628,22.0125786163522 -423,7.0,7.0,6.289308176100628,-22.0080786163522 -423,8.0,5.0,0.0,4.915840805411357 -423,8.0,8.0,0.0,-18.706293706293707 -423,8.0,9.0,0.0,9.090909090909092 -423,8.0,10.0,0.0,4.807692307692308 -423,9.0,5.0,0.0,1.8561002591115965 -423,9.0,8.0,0.0,9.090909090909092 -423,9.0,9.0,13.462042814524237,-41.3837606675224 -423,9.0,16.0,-3.956039125715353,10.317447719844054 -423,9.0,19.0,-1.7848303152666305,3.98535828943083 -423,9.0,20.0,-5.101853820159654,10.98071411292983 -423,9.0,21.0,-2.619319553382597,5.400770303329455 -423,10.0,8.0,0.0,4.807692307692308 -423,10.0,10.0,0.0,-4.807692307692308 -423,11.0,3.0,0.0,4.191255364806866 -423,11.0,11.0,6.573961583776156,-24.424167659260668 -423,11.0,12.0,0.0,7.142857142857143 -423,11.0,13.0,-1.5265676088395577,3.1734252729654173 -423,11.0,14.0,-3.0953961826564296,6.097275864326261 -423,11.0,15.0,-1.9519977922801688,4.104359379111847 -423,12.0,11.0,0.0,7.142857142857143 -423,12.0,12.0,0.0,-7.142857142857143 -423,13.0,11.0,-1.5265676088395577,3.1734252729654173 -423,13.0,13.0,4.01751987283902,-5.424299332335067 -423,13.0,14.0,-2.4909522639994623,2.250874059369649 -423,14.0,11.0,-3.0953961826564296,6.097275864326261 -423,14.0,13.0,-2.4909522639994623,2.250874059369649 -423,14.0,14.0,9.365498545964757,-16.01163373210796 -423,14.0,17.0,-1.8108011504072024,3.687418931630696 -423,14.0,22.0,-1.9683489489016612,3.976064876781356 -423,15.0,11.0,-1.9519977922801688,4.104359379111847 -423,15.0,15.0,3.271064728633931,-8.94513365126506 -423,15.0,16.0,-1.3190669363537617,4.8407742721532125 -423,16.0,9.0,-3.956039125715353,10.317447719844054 -423,16.0,15.0,-1.3190669363537617,4.8407742721532125 -423,16.0,16.0,5.275106062069114,-15.158221991997266 -423,17.0,14.0,-1.8108011504072024,3.687418931630696 -423,17.0,17.0,4.886487584415919,-9.906177730909668 -423,17.0,18.0,-3.0756864340087167,6.218758799278971 -423,18.0,17.0,-3.0756864340087167,6.218758799278971 -423,18.0,18.0,8.958039375185187,-17.98346468163191 -423,18.0,19.0,-5.88235294117647,11.76470588235294 -423,19.0,9.0,-1.7848303152666305,3.98535828943083 -423,19.0,18.0,-5.88235294117647,11.76470588235294 -423,19.0,19.0,7.6671832564431,-15.75006417178377 -423,20.0,9.0,-5.101853820159654,10.98071411292983 -423,20.0,20.0,21.876495189895888,-45.10843276170355 -423,20.0,21.0,-16.774641369736234,34.127718648773715 -423,21.0,9.0,-2.619319553382597,5.400770303329455 -423,21.0,20.0,-16.774641369736234,34.127718648773715 -423,21.0,21.0,19.393960923118836,-39.52848895210317 -423,22.0,14.0,-1.9683489489016612,3.976064876781356 -423,22.0,22.0,3.429754555384988,-6.965303617315433 -423,22.0,23.0,-1.4614056064833263,2.989238740534077 -423,23.0,22.0,-1.4614056064833263,2.989238740534077 -423,23.0,23.0,1.4614056064833263,-2.946238740534077 -423,24.0,24.0,3.185822136447737,-5.577356708264566 -423,24.0,25.0,-1.2165301194494855,1.8171440463475024 -423,24.0,26.0,-1.9692920169982515,3.760212661917064 -423,25.0,24.0,-1.2165301194494855,1.8171440463475024 -423,25.0,25.0,1.2165301194494855,-1.8171440463475024 -423,26.0,24.0,-1.9692920169982515,3.760212661917064 -423,26.0,26.0,3.652281470778589,-9.46044252232512 -423,26.0,27.0,0.0,2.608731947574922 -423,26.0,28.0,-0.99553355095268,1.881005840357816 -423,26.0,29.0,-0.6874559028276572,1.293971494797717 -423,27.0,5.0,-4.362844058012917,15.463571542897856 -423,27.0,26.0,0.0,2.608731947574922 -423,27.0,27.0,4.362844058012917,-18.15204256311988 -423,28.0,26.0,-0.99553355095268,1.881005840357816 -423,28.0,28.0,1.9075867579849564,-3.604364401207048 -423,28.0,29.0,-0.9120532070322764,1.7233585608492326 -423,29.0,26.0,-0.6874559028276572,1.293971494797717 -423,29.0,28.0,-0.9120532070322764,1.7233585608492326 -423,29.0,29.0,1.5995091098599337,-3.0173300556469496 -424,0.0,0.0,6.765516048652632,-21.23160167089863 -424,0.0,1.0,-5.224646179885656,15.646726840803398 -424,0.0,2.0,-1.5408698687669766,5.631674830095234 -424,1.0,0.0,-5.224646179885656,15.646726840803398 -424,1.0,1.0,9.75228216552403,-30.648662892676068 -424,1.0,3.0,-1.7055303166990268,5.1973792282565086 -424,1.0,4.0,-1.1359607881738778,4.772479328281356 -424,1.0,5.0,-1.6861448807654689,5.116477495334806 -424,2.0,0.0,-1.5408698687669766,5.631674830095234 -424,2.0,2.0,9.736318911079088,-29.13794745915803 -424,2.0,3.0,-8.19544904231211,23.5308726290628 -424,3.0,1.0,-1.7055303166990268,5.1973792282565086 -424,3.0,2.0,-8.19544904231211,23.5308726290628 -424,3.0,3.0,16.314103089185693,-55.509410535254254 -424,3.0,5.0,-6.413123730174556,22.31120356548123 -424,3.0,11.0,0.0,4.191255364806866 -424,4.0,1.0,-1.1359607881738778,4.772479328281356 -424,4.0,4.0,4.089980824135861,-12.190647245055052 -424,4.0,6.0,-2.954020035961983,7.449267916773697 -424,5.0,1.0,-1.6861448807654689,5.116477495334806 -424,5.0,3.0,-6.413123730174556,22.31120356548123 -424,5.0,5.0,18.75142084505357,-71.81153345505078 -424,5.0,7.0,-6.289308176100628,22.0125786163522 -424,5.0,8.0,0.0,4.915840805411357 -424,5.0,9.0,0.0,1.8561002591115965 -424,5.0,27.0,-4.362844058012917,15.463571542897856 -424,6.0,4.0,-2.954020035961983,7.449267916773697 -424,6.0,6.0,2.954020035961983,-7.439067916773697 -424,7.0,5.0,-6.289308176100628,22.0125786163522 -424,7.0,7.0,7.733287237496075,-26.527493274828448 -424,7.0,27.0,-1.4439790613954469,4.540814658476248 -424,8.0,5.0,0.0,4.915840805411357 -424,8.0,8.0,0.0,-18.706293706293707 -424,8.0,9.0,0.0,9.090909090909092 -424,8.0,10.0,0.0,4.807692307692308 -424,9.0,5.0,0.0,1.8561002591115965 -424,9.0,8.0,0.0,9.090909090909092 -424,9.0,9.0,13.462042814524237,-41.3837606675224 -424,9.0,16.0,-3.956039125715353,10.317447719844054 -424,9.0,19.0,-1.7848303152666305,3.98535828943083 -424,9.0,20.0,-5.101853820159654,10.98071411292983 -424,9.0,21.0,-2.619319553382597,5.400770303329455 -424,10.0,8.0,0.0,4.807692307692308 -424,10.0,10.0,0.0,-4.807692307692308 -424,11.0,3.0,0.0,4.191255364806866 -424,11.0,11.0,6.573961583776156,-24.424167659260668 -424,11.0,12.0,0.0,7.142857142857143 -424,11.0,13.0,-1.5265676088395577,3.1734252729654173 -424,11.0,14.0,-3.0953961826564296,6.097275864326261 -424,11.0,15.0,-1.9519977922801688,4.104359379111847 -424,12.0,11.0,0.0,7.142857142857143 -424,12.0,12.0,0.0,-7.142857142857143 -424,13.0,11.0,-1.5265676088395577,3.1734252729654173 -424,13.0,13.0,4.01751987283902,-5.424299332335067 -424,13.0,14.0,-2.4909522639994623,2.250874059369649 -424,14.0,11.0,-3.0953961826564296,6.097275864326261 -424,14.0,13.0,-2.4909522639994623,2.250874059369649 -424,14.0,14.0,9.365498545964757,-16.01163373210796 -424,14.0,17.0,-1.8108011504072024,3.687418931630696 -424,14.0,22.0,-1.9683489489016612,3.976064876781356 -424,15.0,11.0,-1.9519977922801688,4.104359379111847 -424,15.0,15.0,1.9519977922801688,-4.104359379111847 -424,16.0,9.0,-3.956039125715353,10.317447719844054 -424,16.0,16.0,3.956039125715353,-10.317447719844054 -424,17.0,14.0,-1.8108011504072024,3.687418931630696 -424,17.0,17.0,4.886487584415919,-9.906177730909668 -424,17.0,18.0,-3.0756864340087167,6.218758799278971 -424,18.0,17.0,-3.0756864340087167,6.218758799278971 -424,18.0,18.0,3.0756864340087167,-6.218758799278971 -424,19.0,9.0,-1.7848303152666305,3.98535828943083 -424,19.0,19.0,1.7848303152666305,-3.98535828943083 -424,20.0,9.0,-5.101853820159654,10.98071411292983 -424,20.0,20.0,21.876495189895888,-45.10843276170355 -424,20.0,21.0,-16.774641369736234,34.127718648773715 -424,21.0,9.0,-2.619319553382597,5.400770303329455 -424,21.0,20.0,-16.774641369736234,34.127718648773715 -424,21.0,21.0,21.93449907537439,-43.48289181517921 -424,21.0,23.0,-2.5405381522555563,3.95440286307604 -424,22.0,14.0,-1.9683489489016612,3.976064876781356 -424,22.0,22.0,3.429754555384988,-6.965303617315433 -424,22.0,23.0,-1.4614056064833263,2.989238740534077 -424,23.0,21.0,-2.5405381522555563,3.95440286307604 -424,23.0,22.0,-1.4614056064833263,2.989238740534077 -424,23.0,23.0,5.311836702613133,-9.188263657315172 -424,23.0,24.0,-1.3098929438742493,2.287622053705056 -424,24.0,23.0,-1.3098929438742493,2.287622053705056 -424,24.0,24.0,4.495715080321987,-7.864978761969621 -424,24.0,25.0,-1.2165301194494855,1.8171440463475024 -424,24.0,26.0,-1.9692920169982515,3.760212661917064 -424,25.0,24.0,-1.2165301194494855,1.8171440463475024 -424,25.0,25.0,1.2165301194494855,-1.8171440463475024 -424,26.0,24.0,-1.9692920169982515,3.760212661917064 -424,26.0,26.0,3.652281470778589,-9.46044252232512 -424,26.0,27.0,0.0,2.608731947574922 -424,26.0,28.0,-0.99553355095268,1.881005840357816 -424,26.0,29.0,-0.6874559028276572,1.293971494797717 -424,27.0,5.0,-4.362844058012917,15.463571542897856 -424,27.0,7.0,-1.4439790613954469,4.540814658476248 -424,27.0,26.0,0.0,2.608731947574922 -424,27.0,27.0,5.806823119408364,-22.67145722159613 -424,28.0,26.0,-0.99553355095268,1.881005840357816 -424,28.0,28.0,0.99553355095268,-1.881005840357816 -424,29.0,26.0,-0.6874559028276572,1.293971494797717 -424,29.0,29.0,0.6874559028276572,-1.293971494797717 -425,0.0,0.0,6.765516048652632,-21.23160167089863 -425,0.0,1.0,-5.224646179885656,15.646726840803398 -425,0.0,2.0,-1.5408698687669766,5.631674830095234 -425,1.0,0.0,-5.224646179885656,15.646726840803398 -425,1.0,1.0,9.75228216552403,-30.648662892676068 -425,1.0,3.0,-1.7055303166990268,5.1973792282565086 -425,1.0,4.0,-1.1359607881738778,4.772479328281356 -425,1.0,5.0,-1.6861448807654689,5.116477495334806 -425,2.0,0.0,-1.5408698687669766,5.631674830095234 -425,2.0,2.0,9.736318911079088,-29.13794745915803 -425,2.0,3.0,-8.19544904231211,23.5308726290628 -425,3.0,1.0,-1.7055303166990268,5.1973792282565086 -425,3.0,2.0,-8.19544904231211,23.5308726290628 -425,3.0,3.0,16.314103089185693,-55.509410535254254 -425,3.0,5.0,-6.413123730174556,22.31120356548123 -425,3.0,11.0,0.0,4.191255364806866 -425,4.0,1.0,-1.1359607881738778,4.772479328281356 -425,4.0,4.0,4.089980824135861,-12.190647245055052 -425,4.0,6.0,-2.954020035961983,7.449267916773697 -425,5.0,1.0,-1.6861448807654689,5.116477495334806 -425,5.0,3.0,-6.413123730174556,22.31120356548123 -425,5.0,5.0,17.978787211021647,-67.37207632288106 -425,5.0,6.0,-3.590210423980992,11.02611441072814 -425,5.0,7.0,-6.289308176100628,22.0125786163522 -425,5.0,8.0,0.0,4.915840805411357 -425,5.0,9.0,0.0,1.8561002591115965 -425,6.0,4.0,-2.954020035961983,7.449267916773697 -425,6.0,5.0,-3.590210423980992,11.02611441072814 -425,6.0,6.0,6.544230459942975,-18.45668232750184 -425,7.0,5.0,-6.289308176100628,22.0125786163522 -425,7.0,7.0,7.733287237496075,-26.527493274828448 -425,7.0,27.0,-1.4439790613954469,4.540814658476248 -425,8.0,5.0,0.0,4.915840805411357 -425,8.0,8.0,0.0,-18.706293706293707 -425,8.0,9.0,0.0,9.090909090909092 -425,8.0,10.0,0.0,4.807692307692308 -425,9.0,5.0,0.0,1.8561002591115965 -425,9.0,8.0,0.0,9.090909090909092 -425,9.0,9.0,13.462042814524237,-41.3837606675224 -425,9.0,16.0,-3.956039125715353,10.317447719844054 -425,9.0,19.0,-1.7848303152666305,3.98535828943083 -425,9.0,20.0,-5.101853820159654,10.98071411292983 -425,9.0,21.0,-2.619319553382597,5.400770303329455 -425,10.0,8.0,0.0,4.807692307692308 -425,10.0,10.0,0.0,-4.807692307692308 -425,11.0,3.0,0.0,4.191255364806866 -425,11.0,11.0,6.573961583776156,-24.424167659260668 -425,11.0,12.0,0.0,7.142857142857143 -425,11.0,13.0,-1.5265676088395577,3.1734252729654173 -425,11.0,14.0,-3.0953961826564296,6.097275864326261 -425,11.0,15.0,-1.9519977922801688,4.104359379111847 -425,12.0,11.0,0.0,7.142857142857143 -425,12.0,12.0,0.0,-7.142857142857143 -425,13.0,11.0,-1.5265676088395577,3.1734252729654173 -425,13.0,13.0,4.01751987283902,-5.424299332335067 -425,13.0,14.0,-2.4909522639994623,2.250874059369649 -425,14.0,11.0,-3.0953961826564296,6.097275864326261 -425,14.0,13.0,-2.4909522639994623,2.250874059369649 -425,14.0,14.0,9.365498545964757,-16.01163373210796 -425,14.0,17.0,-1.8108011504072024,3.687418931630696 -425,14.0,22.0,-1.9683489489016612,3.976064876781356 -425,15.0,11.0,-1.9519977922801688,4.104359379111847 -425,15.0,15.0,3.271064728633931,-8.94513365126506 -425,15.0,16.0,-1.3190669363537617,4.8407742721532125 -425,16.0,9.0,-3.956039125715353,10.317447719844054 -425,16.0,15.0,-1.3190669363537617,4.8407742721532125 -425,16.0,16.0,5.275106062069114,-15.158221991997266 -425,17.0,14.0,-1.8108011504072024,3.687418931630696 -425,17.0,17.0,4.886487584415919,-9.906177730909668 -425,17.0,18.0,-3.0756864340087167,6.218758799278971 -425,18.0,17.0,-3.0756864340087167,6.218758799278971 -425,18.0,18.0,8.958039375185187,-17.98346468163191 -425,18.0,19.0,-5.88235294117647,11.76470588235294 -425,19.0,9.0,-1.7848303152666305,3.98535828943083 -425,19.0,18.0,-5.88235294117647,11.76470588235294 -425,19.0,19.0,7.6671832564431,-15.75006417178377 -425,20.0,9.0,-5.101853820159654,10.98071411292983 -425,20.0,20.0,21.876495189895888,-45.10843276170355 -425,20.0,21.0,-16.774641369736234,34.127718648773715 -425,21.0,9.0,-2.619319553382597,5.400770303329455 -425,21.0,20.0,-16.774641369736234,34.127718648773715 -425,21.0,21.0,21.93449907537439,-43.48289181517921 -425,21.0,23.0,-2.5405381522555563,3.95440286307604 -425,22.0,14.0,-1.9683489489016612,3.976064876781356 -425,22.0,22.0,3.429754555384988,-6.965303617315433 -425,22.0,23.0,-1.4614056064833263,2.989238740534077 -425,23.0,21.0,-2.5405381522555563,3.95440286307604 -425,23.0,22.0,-1.4614056064833263,2.989238740534077 -425,23.0,23.0,5.311836702613133,-9.188263657315172 -425,23.0,24.0,-1.3098929438742493,2.287622053705056 -425,24.0,23.0,-1.3098929438742493,2.287622053705056 -425,24.0,24.0,4.495715080321987,-7.864978761969621 -425,24.0,25.0,-1.2165301194494855,1.8171440463475024 -425,24.0,26.0,-1.9692920169982515,3.760212661917064 -425,25.0,24.0,-1.2165301194494855,1.8171440463475024 -425,25.0,25.0,1.2165301194494855,-1.8171440463475024 -425,26.0,24.0,-1.9692920169982515,3.760212661917064 -425,26.0,26.0,3.652281470778589,-9.46044252232512 -425,26.0,27.0,0.0,2.608731947574922 -425,26.0,28.0,-0.99553355095268,1.881005840357816 -425,26.0,29.0,-0.6874559028276572,1.293971494797717 -425,27.0,7.0,-1.4439790613954469,4.540814658476248 -425,27.0,26.0,0.0,2.608731947574922 -425,27.0,27.0,1.4439790613954469,-7.214385678698274 -425,28.0,26.0,-0.99553355095268,1.881005840357816 -425,28.0,28.0,1.9075867579849564,-3.604364401207048 -425,28.0,29.0,-0.9120532070322764,1.7233585608492326 -425,29.0,26.0,-0.6874559028276572,1.293971494797717 -425,29.0,28.0,-0.9120532070322764,1.7233585608492326 -425,29.0,29.0,1.5995091098599337,-3.0173300556469496 -426,0.0,0.0,6.765516048652632,-21.23160167089863 -426,0.0,1.0,-5.224646179885656,15.646726840803398 -426,0.0,2.0,-1.5408698687669766,5.631674830095234 -426,1.0,0.0,-5.224646179885656,15.646726840803398 -426,1.0,1.0,9.75228216552403,-30.648662892676068 -426,1.0,3.0,-1.7055303166990268,5.1973792282565086 -426,1.0,4.0,-1.1359607881738778,4.772479328281356 -426,1.0,5.0,-1.6861448807654689,5.116477495334806 -426,2.0,0.0,-1.5408698687669766,5.631674830095234 -426,2.0,2.0,9.736318911079088,-29.13794745915803 -426,2.0,3.0,-8.19544904231211,23.5308726290628 -426,3.0,1.0,-1.7055303166990268,5.1973792282565086 -426,3.0,2.0,-8.19544904231211,23.5308726290628 -426,3.0,3.0,16.314103089185693,-55.509410535254254 -426,3.0,5.0,-6.413123730174556,22.31120356548123 -426,3.0,11.0,0.0,4.191255364806866 -426,4.0,1.0,-1.1359607881738778,4.772479328281356 -426,4.0,4.0,4.089980824135861,-12.190647245055052 -426,4.0,6.0,-2.954020035961983,7.449267916773697 -426,5.0,1.0,-1.6861448807654689,5.116477495334806 -426,5.0,3.0,-6.413123730174556,22.31120356548123 -426,5.0,5.0,22.341631269034565,-82.8291478657789 -426,5.0,6.0,-3.590210423980992,11.02611441072814 -426,5.0,7.0,-6.289308176100628,22.0125786163522 -426,5.0,8.0,0.0,4.915840805411357 -426,5.0,9.0,0.0,1.8561002591115965 -426,5.0,27.0,-4.362844058012917,15.463571542897856 -426,6.0,4.0,-2.954020035961983,7.449267916773697 -426,6.0,5.0,-3.590210423980992,11.02611441072814 -426,6.0,6.0,6.544230459942975,-18.45668232750184 -426,7.0,5.0,-6.289308176100628,22.0125786163522 -426,7.0,7.0,6.289308176100628,-22.0080786163522 -426,8.0,5.0,0.0,4.915840805411357 -426,8.0,8.0,0.0,-18.706293706293707 -426,8.0,9.0,0.0,9.090909090909092 -426,8.0,10.0,0.0,4.807692307692308 -426,9.0,5.0,0.0,1.8561002591115965 -426,9.0,8.0,0.0,9.090909090909092 -426,9.0,9.0,13.462042814524237,-41.3837606675224 -426,9.0,16.0,-3.956039125715353,10.317447719844054 -426,9.0,19.0,-1.7848303152666305,3.98535828943083 -426,9.0,20.0,-5.101853820159654,10.98071411292983 -426,9.0,21.0,-2.619319553382597,5.400770303329455 -426,10.0,8.0,0.0,4.807692307692308 -426,10.0,10.0,0.0,-4.807692307692308 -426,11.0,3.0,0.0,4.191255364806866 -426,11.0,11.0,5.047393974936599,-21.25074238629525 -426,11.0,12.0,0.0,7.142857142857143 -426,11.0,14.0,-3.0953961826564296,6.097275864326261 -426,11.0,15.0,-1.9519977922801688,4.104359379111847 -426,12.0,11.0,0.0,7.142857142857143 -426,12.0,12.0,0.0,-7.142857142857143 -426,13.0,13.0,2.4909522639994623,-2.250874059369649 -426,13.0,14.0,-2.4909522639994623,2.250874059369649 -426,14.0,11.0,-3.0953961826564296,6.097275864326261 -426,14.0,13.0,-2.4909522639994623,2.250874059369649 -426,14.0,14.0,9.365498545964757,-16.01163373210796 -426,14.0,17.0,-1.8108011504072024,3.687418931630696 -426,14.0,22.0,-1.9683489489016612,3.976064876781356 -426,15.0,11.0,-1.9519977922801688,4.104359379111847 -426,15.0,15.0,3.271064728633931,-8.94513365126506 -426,15.0,16.0,-1.3190669363537617,4.8407742721532125 -426,16.0,9.0,-3.956039125715353,10.317447719844054 -426,16.0,15.0,-1.3190669363537617,4.8407742721532125 -426,16.0,16.0,5.275106062069114,-15.158221991997266 -426,17.0,14.0,-1.8108011504072024,3.687418931630696 -426,17.0,17.0,4.886487584415919,-9.906177730909668 -426,17.0,18.0,-3.0756864340087167,6.218758799278971 -426,18.0,17.0,-3.0756864340087167,6.218758799278971 -426,18.0,18.0,8.958039375185187,-17.98346468163191 -426,18.0,19.0,-5.88235294117647,11.76470588235294 -426,19.0,9.0,-1.7848303152666305,3.98535828943083 -426,19.0,18.0,-5.88235294117647,11.76470588235294 -426,19.0,19.0,7.6671832564431,-15.75006417178377 -426,20.0,9.0,-5.101853820159654,10.98071411292983 -426,20.0,20.0,21.876495189895888,-45.10843276170355 -426,20.0,21.0,-16.774641369736234,34.127718648773715 -426,21.0,9.0,-2.619319553382597,5.400770303329455 -426,21.0,20.0,-16.774641369736234,34.127718648773715 -426,21.0,21.0,21.93449907537439,-43.48289181517921 -426,21.0,23.0,-2.5405381522555563,3.95440286307604 -426,22.0,14.0,-1.9683489489016612,3.976064876781356 -426,22.0,22.0,3.429754555384988,-6.965303617315433 -426,22.0,23.0,-1.4614056064833263,2.989238740534077 -426,23.0,21.0,-2.5405381522555563,3.95440286307604 -426,23.0,22.0,-1.4614056064833263,2.989238740534077 -426,23.0,23.0,5.311836702613133,-9.188263657315172 -426,23.0,24.0,-1.3098929438742493,2.287622053705056 -426,24.0,23.0,-1.3098929438742493,2.287622053705056 -426,24.0,24.0,4.495715080321987,-7.864978761969621 -426,24.0,25.0,-1.2165301194494855,1.8171440463475024 -426,24.0,26.0,-1.9692920169982515,3.760212661917064 -426,25.0,24.0,-1.2165301194494855,1.8171440463475024 -426,25.0,25.0,1.2165301194494855,-1.8171440463475024 -426,26.0,24.0,-1.9692920169982515,3.760212661917064 -426,26.0,26.0,3.652281470778589,-9.46044252232512 -426,26.0,27.0,0.0,2.608731947574922 -426,26.0,28.0,-0.99553355095268,1.881005840357816 -426,26.0,29.0,-0.6874559028276572,1.293971494797717 -426,27.0,5.0,-4.362844058012917,15.463571542897856 -426,27.0,26.0,0.0,2.608731947574922 -426,27.0,27.0,4.362844058012917,-18.15204256311988 -426,28.0,26.0,-0.99553355095268,1.881005840357816 -426,28.0,28.0,1.9075867579849564,-3.604364401207048 -426,28.0,29.0,-0.9120532070322764,1.7233585608492326 -426,29.0,26.0,-0.6874559028276572,1.293971494797717 -426,29.0,28.0,-0.9120532070322764,1.7233585608492326 -426,29.0,29.0,1.5995091098599337,-3.0173300556469496 -427,0.0,0.0,6.765516048652632,-21.23160167089863 -427,0.0,1.0,-5.224646179885656,15.646726840803398 -427,0.0,2.0,-1.5408698687669766,5.631674830095234 -427,1.0,0.0,-5.224646179885656,15.646726840803398 -427,1.0,1.0,9.75228216552403,-30.648662892676068 -427,1.0,3.0,-1.7055303166990268,5.1973792282565086 -427,1.0,4.0,-1.1359607881738778,4.772479328281356 -427,1.0,5.0,-1.6861448807654689,5.116477495334806 -427,2.0,0.0,-1.5408698687669766,5.631674830095234 -427,2.0,2.0,9.736318911079088,-29.13794745915803 -427,2.0,3.0,-8.19544904231211,23.5308726290628 -427,3.0,1.0,-1.7055303166990268,5.1973792282565086 -427,3.0,2.0,-8.19544904231211,23.5308726290628 -427,3.0,3.0,16.314103089185693,-55.509410535254254 -427,3.0,5.0,-6.413123730174556,22.31120356548123 -427,3.0,11.0,0.0,4.191255364806866 -427,4.0,1.0,-1.1359607881738778,4.772479328281356 -427,4.0,4.0,4.089980824135861,-12.190647245055052 -427,4.0,6.0,-2.954020035961983,7.449267916773697 -427,5.0,1.0,-1.6861448807654689,5.116477495334806 -427,5.0,3.0,-6.413123730174556,22.31120356548123 -427,5.0,5.0,22.341631269034565,-82.8291478657789 -427,5.0,6.0,-3.590210423980992,11.02611441072814 -427,5.0,7.0,-6.289308176100628,22.0125786163522 -427,5.0,8.0,0.0,4.915840805411357 -427,5.0,9.0,0.0,1.8561002591115965 -427,5.0,27.0,-4.362844058012917,15.463571542897856 -427,6.0,4.0,-2.954020035961983,7.449267916773697 -427,6.0,5.0,-3.590210423980992,11.02611441072814 -427,6.0,6.0,6.544230459942975,-18.45668232750184 -427,7.0,5.0,-6.289308176100628,22.0125786163522 -427,7.0,7.0,7.733287237496075,-26.527493274828448 -427,7.0,27.0,-1.4439790613954469,4.540814658476248 -427,8.0,5.0,0.0,4.915840805411357 -427,8.0,8.0,0.0,-18.706293706293707 -427,8.0,9.0,0.0,9.090909090909092 -427,8.0,10.0,0.0,4.807692307692308 -427,9.0,5.0,0.0,1.8561002591115965 -427,9.0,8.0,0.0,9.090909090909092 -427,9.0,9.0,13.462042814524237,-41.3837606675224 -427,9.0,16.0,-3.956039125715353,10.317447719844054 -427,9.0,19.0,-1.7848303152666305,3.98535828943083 -427,9.0,20.0,-5.101853820159654,10.98071411292983 -427,9.0,21.0,-2.619319553382597,5.400770303329455 -427,10.0,8.0,0.0,4.807692307692308 -427,10.0,10.0,0.0,-4.807692307692308 -427,11.0,3.0,0.0,4.191255364806866 -427,11.0,11.0,6.573961583776156,-24.424167659260668 -427,11.0,12.0,0.0,7.142857142857143 -427,11.0,13.0,-1.5265676088395577,3.1734252729654173 -427,11.0,14.0,-3.0953961826564296,6.097275864326261 -427,11.0,15.0,-1.9519977922801688,4.104359379111847 -427,12.0,11.0,0.0,7.142857142857143 -427,12.0,12.0,0.0,-7.142857142857143 -427,13.0,11.0,-1.5265676088395577,3.1734252729654173 -427,13.0,13.0,4.01751987283902,-5.424299332335067 -427,13.0,14.0,-2.4909522639994623,2.250874059369649 -427,14.0,11.0,-3.0953961826564296,6.097275864326261 -427,14.0,13.0,-2.4909522639994623,2.250874059369649 -427,14.0,14.0,9.365498545964757,-16.01163373210796 -427,14.0,17.0,-1.8108011504072024,3.687418931630696 -427,14.0,22.0,-1.9683489489016612,3.976064876781356 -427,15.0,11.0,-1.9519977922801688,4.104359379111847 -427,15.0,15.0,3.271064728633931,-8.94513365126506 -427,15.0,16.0,-1.3190669363537617,4.8407742721532125 -427,16.0,9.0,-3.956039125715353,10.317447719844054 -427,16.0,15.0,-1.3190669363537617,4.8407742721532125 -427,16.0,16.0,5.275106062069114,-15.158221991997266 -427,17.0,14.0,-1.8108011504072024,3.687418931630696 -427,17.0,17.0,4.886487584415919,-9.906177730909668 -427,17.0,18.0,-3.0756864340087167,6.218758799278971 -427,18.0,17.0,-3.0756864340087167,6.218758799278971 -427,18.0,18.0,8.958039375185187,-17.98346468163191 -427,18.0,19.0,-5.88235294117647,11.76470588235294 -427,19.0,9.0,-1.7848303152666305,3.98535828943083 -427,19.0,18.0,-5.88235294117647,11.76470588235294 -427,19.0,19.0,7.6671832564431,-15.75006417178377 -427,20.0,9.0,-5.101853820159654,10.98071411292983 -427,20.0,20.0,21.876495189895888,-45.10843276170355 -427,20.0,21.0,-16.774641369736234,34.127718648773715 -427,21.0,9.0,-2.619319553382597,5.400770303329455 -427,21.0,20.0,-16.774641369736234,34.127718648773715 -427,21.0,21.0,21.93449907537439,-43.48289181517921 -427,21.0,23.0,-2.5405381522555563,3.95440286307604 -427,22.0,14.0,-1.9683489489016612,3.976064876781356 -427,22.0,22.0,3.429754555384988,-6.965303617315433 -427,22.0,23.0,-1.4614056064833263,2.989238740534077 -427,23.0,21.0,-2.5405381522555563,3.95440286307604 -427,23.0,22.0,-1.4614056064833263,2.989238740534077 -427,23.0,23.0,5.311836702613133,-9.188263657315172 -427,23.0,24.0,-1.3098929438742493,2.287622053705056 -427,24.0,23.0,-1.3098929438742493,2.287622053705056 -427,24.0,24.0,4.495715080321987,-7.864978761969621 -427,24.0,25.0,-1.2165301194494855,1.8171440463475024 -427,24.0,26.0,-1.9692920169982515,3.760212661917064 -427,25.0,24.0,-1.2165301194494855,1.8171440463475024 -427,25.0,25.0,1.2165301194494855,-1.8171440463475024 -427,26.0,24.0,-1.9692920169982515,3.760212661917064 -427,26.0,26.0,3.652281470778589,-9.46044252232512 -427,26.0,27.0,0.0,2.608731947574922 -427,26.0,28.0,-0.99553355095268,1.881005840357816 -427,26.0,29.0,-0.6874559028276572,1.293971494797717 -427,27.0,5.0,-4.362844058012917,15.463571542897856 -427,27.0,7.0,-1.4439790613954469,4.540814658476248 -427,27.0,26.0,0.0,2.608731947574922 -427,27.0,27.0,5.806823119408364,-22.67145722159613 -427,28.0,26.0,-0.99553355095268,1.881005840357816 -427,28.0,28.0,1.9075867579849564,-3.604364401207048 -427,28.0,29.0,-0.9120532070322764,1.7233585608492326 -427,29.0,26.0,-0.6874559028276572,1.293971494797717 -427,29.0,28.0,-0.9120532070322764,1.7233585608492326 -427,29.0,29.0,1.5995091098599337,-3.0173300556469496 -428,0.0,0.0,6.765516048652632,-21.23160167089863 -428,0.0,1.0,-5.224646179885656,15.646726840803398 -428,0.0,2.0,-1.5408698687669766,5.631674830095234 -428,1.0,0.0,-5.224646179885656,15.646726840803398 -428,1.0,1.0,9.75228216552403,-30.648662892676068 -428,1.0,3.0,-1.7055303166990268,5.1973792282565086 -428,1.0,4.0,-1.1359607881738778,4.772479328281356 -428,1.0,5.0,-1.6861448807654689,5.116477495334806 -428,2.0,0.0,-1.5408698687669766,5.631674830095234 -428,2.0,2.0,9.736318911079088,-29.13794745915803 -428,2.0,3.0,-8.19544904231211,23.5308726290628 -428,3.0,1.0,-1.7055303166990268,5.1973792282565086 -428,3.0,2.0,-8.19544904231211,23.5308726290628 -428,3.0,3.0,16.314103089185693,-55.509410535254254 -428,3.0,5.0,-6.413123730174556,22.31120356548123 -428,3.0,11.0,0.0,4.191255364806866 -428,4.0,1.0,-1.1359607881738778,4.772479328281356 -428,4.0,4.0,4.089980824135861,-12.190647245055052 -428,4.0,6.0,-2.954020035961983,7.449267916773697 -428,5.0,1.0,-1.6861448807654689,5.116477495334806 -428,5.0,3.0,-6.413123730174556,22.31120356548123 -428,5.0,5.0,22.341631269034565,-82.8291478657789 -428,5.0,6.0,-3.590210423980992,11.02611441072814 -428,5.0,7.0,-6.289308176100628,22.0125786163522 -428,5.0,8.0,0.0,4.915840805411357 -428,5.0,9.0,0.0,1.8561002591115965 -428,5.0,27.0,-4.362844058012917,15.463571542897856 -428,6.0,4.0,-2.954020035961983,7.449267916773697 -428,6.0,5.0,-3.590210423980992,11.02611441072814 -428,6.0,6.0,6.544230459942975,-18.45668232750184 -428,7.0,5.0,-6.289308176100628,22.0125786163522 -428,7.0,7.0,7.733287237496075,-26.527493274828448 -428,7.0,27.0,-1.4439790613954469,4.540814658476248 -428,8.0,5.0,0.0,4.915840805411357 -428,8.0,8.0,0.0,-18.706293706293707 -428,8.0,9.0,0.0,9.090909090909092 -428,8.0,10.0,0.0,4.807692307692308 -428,9.0,5.0,0.0,1.8561002591115965 -428,9.0,8.0,0.0,9.090909090909092 -428,9.0,9.0,13.462042814524237,-41.3837606675224 -428,9.0,16.0,-3.956039125715353,10.317447719844054 -428,9.0,19.0,-1.7848303152666305,3.98535828943083 -428,9.0,20.0,-5.101853820159654,10.98071411292983 -428,9.0,21.0,-2.619319553382597,5.400770303329455 -428,10.0,8.0,0.0,4.807692307692308 -428,10.0,10.0,0.0,-4.807692307692308 -428,11.0,3.0,0.0,4.191255364806866 -428,11.0,11.0,6.573961583776156,-24.424167659260668 -428,11.0,12.0,0.0,7.142857142857143 -428,11.0,13.0,-1.5265676088395577,3.1734252729654173 -428,11.0,14.0,-3.0953961826564296,6.097275864326261 -428,11.0,15.0,-1.9519977922801688,4.104359379111847 -428,12.0,11.0,0.0,7.142857142857143 -428,12.0,12.0,0.0,-7.142857142857143 -428,13.0,11.0,-1.5265676088395577,3.1734252729654173 -428,13.0,13.0,4.01751987283902,-5.424299332335067 -428,13.0,14.0,-2.4909522639994623,2.250874059369649 -428,14.0,11.0,-3.0953961826564296,6.097275864326261 -428,14.0,13.0,-2.4909522639994623,2.250874059369649 -428,14.0,14.0,9.365498545964757,-16.01163373210796 -428,14.0,17.0,-1.8108011504072024,3.687418931630696 -428,14.0,22.0,-1.9683489489016612,3.976064876781356 -428,15.0,11.0,-1.9519977922801688,4.104359379111847 -428,15.0,15.0,3.271064728633931,-8.94513365126506 -428,15.0,16.0,-1.3190669363537617,4.8407742721532125 -428,16.0,9.0,-3.956039125715353,10.317447719844054 -428,16.0,15.0,-1.3190669363537617,4.8407742721532125 -428,16.0,16.0,5.275106062069114,-15.158221991997266 -428,17.0,14.0,-1.8108011504072024,3.687418931630696 -428,17.0,17.0,4.886487584415919,-9.906177730909668 -428,17.0,18.0,-3.0756864340087167,6.218758799278971 -428,18.0,17.0,-3.0756864340087167,6.218758799278971 -428,18.0,18.0,8.958039375185187,-17.98346468163191 -428,18.0,19.0,-5.88235294117647,11.76470588235294 -428,19.0,9.0,-1.7848303152666305,3.98535828943083 -428,19.0,18.0,-5.88235294117647,11.76470588235294 -428,19.0,19.0,7.6671832564431,-15.75006417178377 -428,20.0,9.0,-5.101853820159654,10.98071411292983 -428,20.0,20.0,5.101853820159654,-10.98071411292983 -428,21.0,9.0,-2.619319553382597,5.400770303329455 -428,21.0,21.0,5.159857705638154,-9.355173166405494 -428,21.0,23.0,-2.5405381522555563,3.95440286307604 -428,22.0,14.0,-1.9683489489016612,3.976064876781356 -428,22.0,22.0,3.429754555384988,-6.965303617315433 -428,22.0,23.0,-1.4614056064833263,2.989238740534077 -428,23.0,21.0,-2.5405381522555563,3.95440286307604 -428,23.0,22.0,-1.4614056064833263,2.989238740534077 -428,23.0,23.0,5.311836702613133,-9.188263657315172 -428,23.0,24.0,-1.3098929438742493,2.287622053705056 -428,24.0,23.0,-1.3098929438742493,2.287622053705056 -428,24.0,24.0,4.495715080321987,-7.864978761969621 -428,24.0,25.0,-1.2165301194494855,1.8171440463475024 -428,24.0,26.0,-1.9692920169982515,3.760212661917064 -428,25.0,24.0,-1.2165301194494855,1.8171440463475024 -428,25.0,25.0,1.2165301194494855,-1.8171440463475024 -428,26.0,24.0,-1.9692920169982515,3.760212661917064 -428,26.0,26.0,2.656747919825909,-7.579436681967305 -428,26.0,27.0,0.0,2.608731947574922 -428,26.0,29.0,-0.6874559028276572,1.293971494797717 -428,27.0,5.0,-4.362844058012917,15.463571542897856 -428,27.0,7.0,-1.4439790613954469,4.540814658476248 -428,27.0,26.0,0.0,2.608731947574922 -428,27.0,27.0,5.806823119408364,-22.67145722159613 -428,28.0,28.0,0.9120532070322764,-1.7233585608492326 -428,28.0,29.0,-0.9120532070322764,1.7233585608492326 -428,29.0,26.0,-0.6874559028276572,1.293971494797717 -428,29.0,28.0,-0.9120532070322764,1.7233585608492326 -428,29.0,29.0,1.5995091098599337,-3.0173300556469496 -429,0.0,0.0,6.765516048652632,-21.23160167089863 -429,0.0,1.0,-5.224646179885656,15.646726840803398 -429,0.0,2.0,-1.5408698687669766,5.631674830095234 -429,1.0,0.0,-5.224646179885656,15.646726840803398 -429,1.0,1.0,8.046751848825002,-25.46968366441956 -429,1.0,4.0,-1.1359607881738778,4.772479328281356 -429,1.0,5.0,-1.6861448807654689,5.116477495334806 -429,2.0,0.0,-1.5408698687669766,5.631674830095234 -429,2.0,2.0,9.736318911079088,-29.13794745915803 -429,2.0,3.0,-8.19544904231211,23.5308726290628 -429,3.0,2.0,-8.19544904231211,23.5308726290628 -429,3.0,3.0,14.608572772486664,-50.33043130699775 -429,3.0,5.0,-6.413123730174556,22.31120356548123 -429,3.0,11.0,0.0,4.191255364806866 -429,4.0,1.0,-1.1359607881738778,4.772479328281356 -429,4.0,4.0,1.1359607881738778,-4.751579328281355 -429,5.0,1.0,-1.6861448807654689,5.116477495334806 -429,5.0,3.0,-6.413123730174556,22.31120356548123 -429,5.0,5.0,22.341631269034565,-82.8291478657789 -429,5.0,6.0,-3.590210423980992,11.02611441072814 -429,5.0,7.0,-6.289308176100628,22.0125786163522 -429,5.0,8.0,0.0,4.915840805411357 -429,5.0,9.0,0.0,1.8561002591115965 -429,5.0,27.0,-4.362844058012917,15.463571542897856 -429,6.0,5.0,-3.590210423980992,11.02611441072814 -429,6.0,6.0,3.590210423980992,-11.01761441072814 -429,7.0,5.0,-6.289308176100628,22.0125786163522 -429,7.0,7.0,7.733287237496075,-26.527493274828448 -429,7.0,27.0,-1.4439790613954469,4.540814658476248 -429,8.0,5.0,0.0,4.915840805411357 -429,8.0,8.0,0.0,-18.706293706293707 -429,8.0,9.0,0.0,9.090909090909092 -429,8.0,10.0,0.0,4.807692307692308 -429,9.0,5.0,0.0,1.8561002591115965 -429,9.0,8.0,0.0,9.090909090909092 -429,9.0,9.0,13.462042814524237,-41.3837606675224 -429,9.0,16.0,-3.956039125715353,10.317447719844054 -429,9.0,19.0,-1.7848303152666305,3.98535828943083 -429,9.0,20.0,-5.101853820159654,10.98071411292983 -429,9.0,21.0,-2.619319553382597,5.400770303329455 -429,10.0,8.0,0.0,4.807692307692308 -429,10.0,10.0,0.0,-4.807692307692308 -429,11.0,3.0,0.0,4.191255364806866 -429,11.0,11.0,3.0953961826564296,-17.146383007183402 -429,11.0,12.0,0.0,7.142857142857143 -429,11.0,14.0,-3.0953961826564296,6.097275864326261 -429,12.0,11.0,0.0,7.142857142857143 -429,12.0,12.0,0.0,-7.142857142857143 -429,13.0,13.0,2.4909522639994623,-2.250874059369649 -429,13.0,14.0,-2.4909522639994623,2.250874059369649 -429,14.0,11.0,-3.0953961826564296,6.097275864326261 -429,14.0,13.0,-2.4909522639994623,2.250874059369649 -429,14.0,14.0,9.365498545964757,-16.01163373210796 -429,14.0,17.0,-1.8108011504072024,3.687418931630696 -429,14.0,22.0,-1.9683489489016612,3.976064876781356 -429,15.0,15.0,1.3190669363537617,-4.8407742721532125 -429,15.0,16.0,-1.3190669363537617,4.8407742721532125 -429,16.0,9.0,-3.956039125715353,10.317447719844054 -429,16.0,15.0,-1.3190669363537617,4.8407742721532125 -429,16.0,16.0,5.275106062069114,-15.158221991997266 -429,17.0,14.0,-1.8108011504072024,3.687418931630696 -429,17.0,17.0,4.886487584415919,-9.906177730909668 -429,17.0,18.0,-3.0756864340087167,6.218758799278971 -429,18.0,17.0,-3.0756864340087167,6.218758799278971 -429,18.0,18.0,8.958039375185187,-17.98346468163191 -429,18.0,19.0,-5.88235294117647,11.76470588235294 -429,19.0,9.0,-1.7848303152666305,3.98535828943083 -429,19.0,18.0,-5.88235294117647,11.76470588235294 -429,19.0,19.0,7.6671832564431,-15.75006417178377 -429,20.0,9.0,-5.101853820159654,10.98071411292983 -429,20.0,20.0,21.876495189895888,-45.10843276170355 -429,20.0,21.0,-16.774641369736234,34.127718648773715 -429,21.0,9.0,-2.619319553382597,5.400770303329455 -429,21.0,20.0,-16.774641369736234,34.127718648773715 -429,21.0,21.0,21.93449907537439,-43.48289181517921 -429,21.0,23.0,-2.5405381522555563,3.95440286307604 -429,22.0,14.0,-1.9683489489016612,3.976064876781356 -429,22.0,22.0,3.429754555384988,-6.965303617315433 -429,22.0,23.0,-1.4614056064833263,2.989238740534077 -429,23.0,21.0,-2.5405381522555563,3.95440286307604 -429,23.0,22.0,-1.4614056064833263,2.989238740534077 -429,23.0,23.0,5.311836702613133,-9.188263657315172 -429,23.0,24.0,-1.3098929438742493,2.287622053705056 -429,24.0,23.0,-1.3098929438742493,2.287622053705056 -429,24.0,24.0,4.495715080321987,-7.864978761969621 -429,24.0,25.0,-1.2165301194494855,1.8171440463475024 -429,24.0,26.0,-1.9692920169982515,3.760212661917064 -429,25.0,24.0,-1.2165301194494855,1.8171440463475024 -429,25.0,25.0,1.2165301194494855,-1.8171440463475024 -429,26.0,24.0,-1.9692920169982515,3.760212661917064 -429,26.0,26.0,3.652281470778589,-9.46044252232512 -429,26.0,27.0,0.0,2.608731947574922 -429,26.0,28.0,-0.99553355095268,1.881005840357816 -429,26.0,29.0,-0.6874559028276572,1.293971494797717 -429,27.0,5.0,-4.362844058012917,15.463571542897856 -429,27.0,7.0,-1.4439790613954469,4.540814658476248 -429,27.0,26.0,0.0,2.608731947574922 -429,27.0,27.0,5.806823119408364,-22.67145722159613 -429,28.0,26.0,-0.99553355095268,1.881005840357816 -429,28.0,28.0,1.9075867579849564,-3.604364401207048 -429,28.0,29.0,-0.9120532070322764,1.7233585608492326 -429,29.0,26.0,-0.6874559028276572,1.293971494797717 -429,29.0,28.0,-0.9120532070322764,1.7233585608492326 -429,29.0,29.0,1.5995091098599337,-3.0173300556469496 -430,0.0,0.0,5.224646179885656,-15.620326840803395 -430,0.0,1.0,-5.224646179885656,15.646726840803398 -430,1.0,0.0,-5.224646179885656,15.646726840803398 -430,1.0,1.0,9.75228216552403,-30.648662892676068 -430,1.0,3.0,-1.7055303166990268,5.1973792282565086 -430,1.0,4.0,-1.1359607881738778,4.772479328281356 -430,1.0,5.0,-1.6861448807654689,5.116477495334806 -430,2.0,2.0,8.19544904231211,-23.5266726290628 -430,2.0,3.0,-8.19544904231211,23.5308726290628 -430,3.0,1.0,-1.7055303166990268,5.1973792282565086 -430,3.0,2.0,-8.19544904231211,23.5308726290628 -430,3.0,3.0,16.314103089185693,-55.509410535254254 -430,3.0,5.0,-6.413123730174556,22.31120356548123 -430,3.0,11.0,0.0,4.191255364806866 -430,4.0,1.0,-1.1359607881738778,4.772479328281356 -430,4.0,4.0,4.089980824135861,-12.190647245055052 -430,4.0,6.0,-2.954020035961983,7.449267916773697 -430,5.0,1.0,-1.6861448807654689,5.116477495334806 -430,5.0,3.0,-6.413123730174556,22.31120356548123 -430,5.0,5.0,18.75142084505357,-71.81153345505078 -430,5.0,7.0,-6.289308176100628,22.0125786163522 -430,5.0,8.0,0.0,4.915840805411357 -430,5.0,9.0,0.0,1.8561002591115965 -430,5.0,27.0,-4.362844058012917,15.463571542897856 -430,6.0,4.0,-2.954020035961983,7.449267916773697 -430,6.0,6.0,2.954020035961983,-7.439067916773697 -430,7.0,5.0,-6.289308176100628,22.0125786163522 -430,7.0,7.0,7.733287237496075,-26.527493274828448 -430,7.0,27.0,-1.4439790613954469,4.540814658476248 -430,8.0,5.0,0.0,4.915840805411357 -430,8.0,8.0,0.0,-18.706293706293707 -430,8.0,9.0,0.0,9.090909090909092 -430,8.0,10.0,0.0,4.807692307692308 -430,9.0,5.0,0.0,1.8561002591115965 -430,9.0,8.0,0.0,9.090909090909092 -430,9.0,9.0,13.462042814524237,-41.3837606675224 -430,9.0,16.0,-3.956039125715353,10.317447719844054 -430,9.0,19.0,-1.7848303152666305,3.98535828943083 -430,9.0,20.0,-5.101853820159654,10.98071411292983 -430,9.0,21.0,-2.619319553382597,5.400770303329455 -430,10.0,8.0,0.0,4.807692307692308 -430,10.0,10.0,0.0,-4.807692307692308 -430,11.0,3.0,0.0,4.191255364806866 -430,11.0,11.0,6.573961583776156,-24.424167659260668 -430,11.0,12.0,0.0,7.142857142857143 -430,11.0,13.0,-1.5265676088395577,3.1734252729654173 -430,11.0,14.0,-3.0953961826564296,6.097275864326261 -430,11.0,15.0,-1.9519977922801688,4.104359379111847 -430,12.0,11.0,0.0,7.142857142857143 -430,12.0,12.0,0.0,-7.142857142857143 -430,13.0,11.0,-1.5265676088395577,3.1734252729654173 -430,13.0,13.0,4.01751987283902,-5.424299332335067 -430,13.0,14.0,-2.4909522639994623,2.250874059369649 -430,14.0,11.0,-3.0953961826564296,6.097275864326261 -430,14.0,13.0,-2.4909522639994623,2.250874059369649 -430,14.0,14.0,7.554697395557554,-12.324214800477266 -430,14.0,22.0,-1.9683489489016612,3.976064876781356 -430,15.0,11.0,-1.9519977922801688,4.104359379111847 -430,15.0,15.0,3.271064728633931,-8.94513365126506 -430,15.0,16.0,-1.3190669363537617,4.8407742721532125 -430,16.0,9.0,-3.956039125715353,10.317447719844054 -430,16.0,15.0,-1.3190669363537617,4.8407742721532125 -430,16.0,16.0,5.275106062069114,-15.158221991997266 -430,17.0,17.0,3.0756864340087167,-6.218758799278971 -430,17.0,18.0,-3.0756864340087167,6.218758799278971 -430,18.0,17.0,-3.0756864340087167,6.218758799278971 -430,18.0,18.0,8.958039375185187,-17.98346468163191 -430,18.0,19.0,-5.88235294117647,11.76470588235294 -430,19.0,9.0,-1.7848303152666305,3.98535828943083 -430,19.0,18.0,-5.88235294117647,11.76470588235294 -430,19.0,19.0,7.6671832564431,-15.75006417178377 -430,20.0,9.0,-5.101853820159654,10.98071411292983 -430,20.0,20.0,21.876495189895888,-45.10843276170355 -430,20.0,21.0,-16.774641369736234,34.127718648773715 -430,21.0,9.0,-2.619319553382597,5.400770303329455 -430,21.0,20.0,-16.774641369736234,34.127718648773715 -430,21.0,21.0,21.93449907537439,-43.48289181517921 -430,21.0,23.0,-2.5405381522555563,3.95440286307604 -430,22.0,14.0,-1.9683489489016612,3.976064876781356 -430,22.0,22.0,3.429754555384988,-6.965303617315433 -430,22.0,23.0,-1.4614056064833263,2.989238740534077 -430,23.0,21.0,-2.5405381522555563,3.95440286307604 -430,23.0,22.0,-1.4614056064833263,2.989238740534077 -430,23.0,23.0,5.311836702613133,-9.188263657315172 -430,23.0,24.0,-1.3098929438742493,2.287622053705056 -430,24.0,23.0,-1.3098929438742493,2.287622053705056 -430,24.0,24.0,4.495715080321987,-7.864978761969621 -430,24.0,25.0,-1.2165301194494855,1.8171440463475024 -430,24.0,26.0,-1.9692920169982515,3.760212661917064 -430,25.0,24.0,-1.2165301194494855,1.8171440463475024 -430,25.0,25.0,1.2165301194494855,-1.8171440463475024 -430,26.0,24.0,-1.9692920169982515,3.760212661917064 -430,26.0,26.0,3.652281470778589,-9.46044252232512 -430,26.0,27.0,0.0,2.608731947574922 -430,26.0,28.0,-0.99553355095268,1.881005840357816 -430,26.0,29.0,-0.6874559028276572,1.293971494797717 -430,27.0,5.0,-4.362844058012917,15.463571542897856 -430,27.0,7.0,-1.4439790613954469,4.540814658476248 -430,27.0,26.0,0.0,2.608731947574922 -430,27.0,27.0,5.806823119408364,-22.67145722159613 -430,28.0,26.0,-0.99553355095268,1.881005840357816 -430,28.0,28.0,1.9075867579849564,-3.604364401207048 -430,28.0,29.0,-0.9120532070322764,1.7233585608492326 -430,29.0,26.0,-0.6874559028276572,1.293971494797717 -430,29.0,28.0,-0.9120532070322764,1.7233585608492326 -430,29.0,29.0,1.5995091098599337,-3.0173300556469496 -431,0.0,0.0,1.5408698687669766,-5.611274830095233 -431,0.0,2.0,-1.5408698687669766,5.631674830095234 -431,1.0,1.0,4.527635985638374,-15.028336051872673 -431,1.0,3.0,-1.7055303166990268,5.1973792282565086 -431,1.0,4.0,-1.1359607881738778,4.772479328281356 -431,1.0,5.0,-1.6861448807654689,5.116477495334806 -431,2.0,0.0,-1.5408698687669766,5.631674830095234 -431,2.0,2.0,9.736318911079088,-29.13794745915803 -431,2.0,3.0,-8.19544904231211,23.5308726290628 -431,3.0,1.0,-1.7055303166990268,5.1973792282565086 -431,3.0,2.0,-8.19544904231211,23.5308726290628 -431,3.0,3.0,16.314103089185693,-55.509410535254254 -431,3.0,5.0,-6.413123730174556,22.31120356548123 -431,3.0,11.0,0.0,4.191255364806866 -431,4.0,1.0,-1.1359607881738778,4.772479328281356 -431,4.0,4.0,4.089980824135861,-12.190647245055052 -431,4.0,6.0,-2.954020035961983,7.449267916773697 -431,5.0,1.0,-1.6861448807654689,5.116477495334806 -431,5.0,3.0,-6.413123730174556,22.31120356548123 -431,5.0,5.0,22.341631269034565,-82.8291478657789 -431,5.0,6.0,-3.590210423980992,11.02611441072814 -431,5.0,7.0,-6.289308176100628,22.0125786163522 -431,5.0,8.0,0.0,4.915840805411357 -431,5.0,9.0,0.0,1.8561002591115965 -431,5.0,27.0,-4.362844058012917,15.463571542897856 -431,6.0,4.0,-2.954020035961983,7.449267916773697 -431,6.0,5.0,-3.590210423980992,11.02611441072814 -431,6.0,6.0,6.544230459942975,-18.45668232750184 -431,7.0,5.0,-6.289308176100628,22.0125786163522 -431,7.0,7.0,7.733287237496075,-26.527493274828448 -431,7.0,27.0,-1.4439790613954469,4.540814658476248 -431,8.0,5.0,0.0,4.915840805411357 -431,8.0,8.0,0.0,-18.706293706293707 -431,8.0,9.0,0.0,9.090909090909092 -431,8.0,10.0,0.0,4.807692307692308 -431,9.0,5.0,0.0,1.8561002591115965 -431,9.0,8.0,0.0,9.090909090909092 -431,9.0,9.0,13.462042814524237,-41.3837606675224 -431,9.0,16.0,-3.956039125715353,10.317447719844054 -431,9.0,19.0,-1.7848303152666305,3.98535828943083 -431,9.0,20.0,-5.101853820159654,10.98071411292983 -431,9.0,21.0,-2.619319553382597,5.400770303329455 -431,10.0,8.0,0.0,4.807692307692308 -431,10.0,10.0,0.0,-4.807692307692308 -431,11.0,3.0,0.0,4.191255364806866 -431,11.0,11.0,6.573961583776156,-24.424167659260668 -431,11.0,12.0,0.0,7.142857142857143 -431,11.0,13.0,-1.5265676088395577,3.1734252729654173 -431,11.0,14.0,-3.0953961826564296,6.097275864326261 -431,11.0,15.0,-1.9519977922801688,4.104359379111847 -431,12.0,11.0,0.0,7.142857142857143 -431,12.0,12.0,0.0,-7.142857142857143 -431,13.0,11.0,-1.5265676088395577,3.1734252729654173 -431,13.0,13.0,4.01751987283902,-5.424299332335067 -431,13.0,14.0,-2.4909522639994623,2.250874059369649 -431,14.0,11.0,-3.0953961826564296,6.097275864326261 -431,14.0,13.0,-2.4909522639994623,2.250874059369649 -431,14.0,14.0,9.365498545964757,-16.01163373210796 -431,14.0,17.0,-1.8108011504072024,3.687418931630696 -431,14.0,22.0,-1.9683489489016612,3.976064876781356 -431,15.0,11.0,-1.9519977922801688,4.104359379111847 -431,15.0,15.0,3.271064728633931,-8.94513365126506 -431,15.0,16.0,-1.3190669363537617,4.8407742721532125 -431,16.0,9.0,-3.956039125715353,10.317447719844054 -431,16.0,15.0,-1.3190669363537617,4.8407742721532125 -431,16.0,16.0,5.275106062069114,-15.158221991997266 -431,17.0,14.0,-1.8108011504072024,3.687418931630696 -431,17.0,17.0,4.886487584415919,-9.906177730909668 -431,17.0,18.0,-3.0756864340087167,6.218758799278971 -431,18.0,17.0,-3.0756864340087167,6.218758799278971 -431,18.0,18.0,8.958039375185187,-17.98346468163191 -431,18.0,19.0,-5.88235294117647,11.76470588235294 -431,19.0,9.0,-1.7848303152666305,3.98535828943083 -431,19.0,18.0,-5.88235294117647,11.76470588235294 -431,19.0,19.0,7.6671832564431,-15.75006417178377 -431,20.0,9.0,-5.101853820159654,10.98071411292983 -431,20.0,20.0,5.101853820159654,-10.98071411292983 -431,21.0,9.0,-2.619319553382597,5.400770303329455 -431,21.0,21.0,5.159857705638154,-9.355173166405494 -431,21.0,23.0,-2.5405381522555563,3.95440286307604 -431,22.0,14.0,-1.9683489489016612,3.976064876781356 -431,22.0,22.0,3.429754555384988,-6.965303617315433 -431,22.0,23.0,-1.4614056064833263,2.989238740534077 -431,23.0,21.0,-2.5405381522555563,3.95440286307604 -431,23.0,22.0,-1.4614056064833263,2.989238740534077 -431,23.0,23.0,5.311836702613133,-9.188263657315172 -431,23.0,24.0,-1.3098929438742493,2.287622053705056 -431,24.0,23.0,-1.3098929438742493,2.287622053705056 -431,24.0,24.0,4.495715080321987,-7.864978761969621 -431,24.0,25.0,-1.2165301194494855,1.8171440463475024 -431,24.0,26.0,-1.9692920169982515,3.760212661917064 -431,25.0,24.0,-1.2165301194494855,1.8171440463475024 -431,25.0,25.0,1.2165301194494855,-1.8171440463475024 -431,26.0,24.0,-1.9692920169982515,3.760212661917064 -431,26.0,26.0,3.652281470778589,-9.46044252232512 -431,26.0,27.0,0.0,2.608731947574922 -431,26.0,28.0,-0.99553355095268,1.881005840357816 -431,26.0,29.0,-0.6874559028276572,1.293971494797717 -431,27.0,5.0,-4.362844058012917,15.463571542897856 -431,27.0,7.0,-1.4439790613954469,4.540814658476248 -431,27.0,26.0,0.0,2.608731947574922 -431,27.0,27.0,5.806823119408364,-22.67145722159613 -431,28.0,26.0,-0.99553355095268,1.881005840357816 -431,28.0,28.0,1.9075867579849564,-3.604364401207048 -431,28.0,29.0,-0.9120532070322764,1.7233585608492326 -431,29.0,26.0,-0.6874559028276572,1.293971494797717 -431,29.0,28.0,-0.9120532070322764,1.7233585608492326 -431,29.0,29.0,1.5995091098599337,-3.0173300556469496 -432,0.0,0.0,6.765516048652632,-21.23160167089863 -432,0.0,1.0,-5.224646179885656,15.646726840803398 -432,0.0,2.0,-1.5408698687669766,5.631674830095234 -432,1.0,0.0,-5.224646179885656,15.646726840803398 -432,1.0,1.0,9.75228216552403,-30.648662892676068 -432,1.0,3.0,-1.7055303166990268,5.1973792282565086 -432,1.0,4.0,-1.1359607881738778,4.772479328281356 -432,1.0,5.0,-1.6861448807654689,5.116477495334806 -432,2.0,0.0,-1.5408698687669766,5.631674830095234 -432,2.0,2.0,1.5408698687669766,-5.611274830095233 -432,3.0,1.0,-1.7055303166990268,5.1973792282565086 -432,3.0,3.0,8.118654046873583,-31.982737906191456 -432,3.0,5.0,-6.413123730174556,22.31120356548123 -432,3.0,11.0,0.0,4.191255364806866 -432,4.0,1.0,-1.1359607881738778,4.772479328281356 -432,4.0,4.0,4.089980824135861,-12.190647245055052 -432,4.0,6.0,-2.954020035961983,7.449267916773697 -432,5.0,1.0,-1.6861448807654689,5.116477495334806 -432,5.0,3.0,-6.413123730174556,22.31120356548123 -432,5.0,5.0,22.341631269034565,-82.8291478657789 -432,5.0,6.0,-3.590210423980992,11.02611441072814 -432,5.0,7.0,-6.289308176100628,22.0125786163522 -432,5.0,8.0,0.0,4.915840805411357 -432,5.0,9.0,0.0,1.8561002591115965 -432,5.0,27.0,-4.362844058012917,15.463571542897856 -432,6.0,4.0,-2.954020035961983,7.449267916773697 -432,6.0,5.0,-3.590210423980992,11.02611441072814 -432,6.0,6.0,6.544230459942975,-18.45668232750184 -432,7.0,5.0,-6.289308176100628,22.0125786163522 -432,7.0,7.0,7.733287237496075,-26.527493274828448 -432,7.0,27.0,-1.4439790613954469,4.540814658476248 -432,8.0,5.0,0.0,4.915840805411357 -432,8.0,8.0,0.0,-18.706293706293707 -432,8.0,9.0,0.0,9.090909090909092 -432,8.0,10.0,0.0,4.807692307692308 -432,9.0,5.0,0.0,1.8561002591115965 -432,9.0,8.0,0.0,9.090909090909092 -432,9.0,9.0,13.462042814524237,-41.3837606675224 -432,9.0,16.0,-3.956039125715353,10.317447719844054 -432,9.0,19.0,-1.7848303152666305,3.98535828943083 -432,9.0,20.0,-5.101853820159654,10.98071411292983 -432,9.0,21.0,-2.619319553382597,5.400770303329455 -432,10.0,8.0,0.0,4.807692307692308 -432,10.0,10.0,0.0,-4.807692307692308 -432,11.0,3.0,0.0,4.191255364806866 -432,11.0,11.0,6.573961583776156,-24.424167659260668 -432,11.0,12.0,0.0,7.142857142857143 -432,11.0,13.0,-1.5265676088395577,3.1734252729654173 -432,11.0,14.0,-3.0953961826564296,6.097275864326261 -432,11.0,15.0,-1.9519977922801688,4.104359379111847 -432,12.0,11.0,0.0,7.142857142857143 -432,12.0,12.0,0.0,-7.142857142857143 -432,13.0,11.0,-1.5265676088395577,3.1734252729654173 -432,13.0,13.0,4.01751987283902,-5.424299332335067 -432,13.0,14.0,-2.4909522639994623,2.250874059369649 -432,14.0,11.0,-3.0953961826564296,6.097275864326261 -432,14.0,13.0,-2.4909522639994623,2.250874059369649 -432,14.0,14.0,9.365498545964757,-16.01163373210796 -432,14.0,17.0,-1.8108011504072024,3.687418931630696 -432,14.0,22.0,-1.9683489489016612,3.976064876781356 -432,15.0,11.0,-1.9519977922801688,4.104359379111847 -432,15.0,15.0,3.271064728633931,-8.94513365126506 -432,15.0,16.0,-1.3190669363537617,4.8407742721532125 -432,16.0,9.0,-3.956039125715353,10.317447719844054 -432,16.0,15.0,-1.3190669363537617,4.8407742721532125 -432,16.0,16.0,5.275106062069114,-15.158221991997266 -432,17.0,14.0,-1.8108011504072024,3.687418931630696 -432,17.0,17.0,4.886487584415919,-9.906177730909668 -432,17.0,18.0,-3.0756864340087167,6.218758799278971 -432,18.0,17.0,-3.0756864340087167,6.218758799278971 -432,18.0,18.0,8.958039375185187,-17.98346468163191 -432,18.0,19.0,-5.88235294117647,11.76470588235294 -432,19.0,9.0,-1.7848303152666305,3.98535828943083 -432,19.0,18.0,-5.88235294117647,11.76470588235294 -432,19.0,19.0,7.6671832564431,-15.75006417178377 -432,20.0,9.0,-5.101853820159654,10.98071411292983 -432,20.0,20.0,21.876495189895888,-45.10843276170355 -432,20.0,21.0,-16.774641369736234,34.127718648773715 -432,21.0,9.0,-2.619319553382597,5.400770303329455 -432,21.0,20.0,-16.774641369736234,34.127718648773715 -432,21.0,21.0,21.93449907537439,-43.48289181517921 -432,21.0,23.0,-2.5405381522555563,3.95440286307604 -432,22.0,14.0,-1.9683489489016612,3.976064876781356 -432,22.0,22.0,3.429754555384988,-6.965303617315433 -432,22.0,23.0,-1.4614056064833263,2.989238740534077 -432,23.0,21.0,-2.5405381522555563,3.95440286307604 -432,23.0,22.0,-1.4614056064833263,2.989238740534077 -432,23.0,23.0,5.311836702613133,-9.188263657315172 -432,23.0,24.0,-1.3098929438742493,2.287622053705056 -432,24.0,23.0,-1.3098929438742493,2.287622053705056 -432,24.0,24.0,4.495715080321987,-7.864978761969621 -432,24.0,25.0,-1.2165301194494855,1.8171440463475024 -432,24.0,26.0,-1.9692920169982515,3.760212661917064 -432,25.0,24.0,-1.2165301194494855,1.8171440463475024 -432,25.0,25.0,1.2165301194494855,-1.8171440463475024 -432,26.0,24.0,-1.9692920169982515,3.760212661917064 -432,26.0,26.0,3.652281470778589,-9.46044252232512 -432,26.0,27.0,0.0,2.608731947574922 -432,26.0,28.0,-0.99553355095268,1.881005840357816 -432,26.0,29.0,-0.6874559028276572,1.293971494797717 -432,27.0,5.0,-4.362844058012917,15.463571542897856 -432,27.0,7.0,-1.4439790613954469,4.540814658476248 -432,27.0,26.0,0.0,2.608731947574922 -432,27.0,27.0,5.806823119408364,-22.67145722159613 -432,28.0,26.0,-0.99553355095268,1.881005840357816 -432,28.0,28.0,1.9075867579849564,-3.604364401207048 -432,28.0,29.0,-0.9120532070322764,1.7233585608492326 -432,29.0,26.0,-0.6874559028276572,1.293971494797717 -432,29.0,28.0,-0.9120532070322764,1.7233585608492326 -432,29.0,29.0,1.5995091098599337,-3.0173300556469496 -433,0.0,0.0,6.765516048652632,-21.23160167089863 -433,0.0,1.0,-5.224646179885656,15.646726840803398 -433,0.0,2.0,-1.5408698687669766,5.631674830095234 -433,1.0,0.0,-5.224646179885656,15.646726840803398 -433,1.0,1.0,9.75228216552403,-30.648662892676068 -433,1.0,3.0,-1.7055303166990268,5.1973792282565086 -433,1.0,4.0,-1.1359607881738778,4.772479328281356 -433,1.0,5.0,-1.6861448807654689,5.116477495334806 -433,2.0,0.0,-1.5408698687669766,5.631674830095234 -433,2.0,2.0,9.736318911079088,-29.13794745915803 -433,2.0,3.0,-8.19544904231211,23.5308726290628 -433,3.0,1.0,-1.7055303166990268,5.1973792282565086 -433,3.0,2.0,-8.19544904231211,23.5308726290628 -433,3.0,3.0,16.314103089185693,-55.509410535254254 -433,3.0,5.0,-6.413123730174556,22.31120356548123 -433,3.0,11.0,0.0,4.191255364806866 -433,4.0,1.0,-1.1359607881738778,4.772479328281356 -433,4.0,4.0,4.089980824135861,-12.190647245055052 -433,4.0,6.0,-2.954020035961983,7.449267916773697 -433,5.0,1.0,-1.6861448807654689,5.116477495334806 -433,5.0,3.0,-6.413123730174556,22.31120356548123 -433,5.0,5.0,16.052323092933932,-60.8210692494267 -433,5.0,6.0,-3.590210423980992,11.02611441072814 -433,5.0,8.0,0.0,4.915840805411357 -433,5.0,9.0,0.0,1.8561002591115965 -433,5.0,27.0,-4.362844058012917,15.463571542897856 -433,6.0,4.0,-2.954020035961983,7.449267916773697 -433,6.0,5.0,-3.590210423980992,11.02611441072814 -433,6.0,6.0,6.544230459942975,-18.45668232750184 -433,7.0,7.0,1.4439790613954469,-4.519414658476248 -433,7.0,27.0,-1.4439790613954469,4.540814658476248 -433,8.0,5.0,0.0,4.915840805411357 -433,8.0,8.0,0.0,-18.706293706293707 -433,8.0,9.0,0.0,9.090909090909092 -433,8.0,10.0,0.0,4.807692307692308 -433,9.0,5.0,0.0,1.8561002591115965 -433,9.0,8.0,0.0,9.090909090909092 -433,9.0,9.0,13.462042814524237,-41.3837606675224 -433,9.0,16.0,-3.956039125715353,10.317447719844054 -433,9.0,19.0,-1.7848303152666305,3.98535828943083 -433,9.0,20.0,-5.101853820159654,10.98071411292983 -433,9.0,21.0,-2.619319553382597,5.400770303329455 -433,10.0,8.0,0.0,4.807692307692308 -433,10.0,10.0,0.0,-4.807692307692308 -433,11.0,3.0,0.0,4.191255364806866 -433,11.0,11.0,6.573961583776156,-24.424167659260668 -433,11.0,12.0,0.0,7.142857142857143 -433,11.0,13.0,-1.5265676088395577,3.1734252729654173 -433,11.0,14.0,-3.0953961826564296,6.097275864326261 -433,11.0,15.0,-1.9519977922801688,4.104359379111847 -433,12.0,11.0,0.0,7.142857142857143 -433,12.0,12.0,0.0,-7.142857142857143 -433,13.0,11.0,-1.5265676088395577,3.1734252729654173 -433,13.0,13.0,4.01751987283902,-5.424299332335067 -433,13.0,14.0,-2.4909522639994623,2.250874059369649 -433,14.0,11.0,-3.0953961826564296,6.097275864326261 -433,14.0,13.0,-2.4909522639994623,2.250874059369649 -433,14.0,14.0,9.365498545964757,-16.01163373210796 -433,14.0,17.0,-1.8108011504072024,3.687418931630696 -433,14.0,22.0,-1.9683489489016612,3.976064876781356 -433,15.0,11.0,-1.9519977922801688,4.104359379111847 -433,15.0,15.0,3.271064728633931,-8.94513365126506 -433,15.0,16.0,-1.3190669363537617,4.8407742721532125 -433,16.0,9.0,-3.956039125715353,10.317447719844054 -433,16.0,15.0,-1.3190669363537617,4.8407742721532125 -433,16.0,16.0,5.275106062069114,-15.158221991997266 -433,17.0,14.0,-1.8108011504072024,3.687418931630696 -433,17.0,17.0,4.886487584415919,-9.906177730909668 -433,17.0,18.0,-3.0756864340087167,6.218758799278971 -433,18.0,17.0,-3.0756864340087167,6.218758799278971 -433,18.0,18.0,8.958039375185187,-17.98346468163191 -433,18.0,19.0,-5.88235294117647,11.76470588235294 -433,19.0,9.0,-1.7848303152666305,3.98535828943083 -433,19.0,18.0,-5.88235294117647,11.76470588235294 -433,19.0,19.0,7.6671832564431,-15.75006417178377 -433,20.0,9.0,-5.101853820159654,10.98071411292983 -433,20.0,20.0,21.876495189895888,-45.10843276170355 -433,20.0,21.0,-16.774641369736234,34.127718648773715 -433,21.0,9.0,-2.619319553382597,5.400770303329455 -433,21.0,20.0,-16.774641369736234,34.127718648773715 -433,21.0,21.0,21.93449907537439,-43.48289181517921 -433,21.0,23.0,-2.5405381522555563,3.95440286307604 -433,22.0,14.0,-1.9683489489016612,3.976064876781356 -433,22.0,22.0,3.429754555384988,-6.965303617315433 -433,22.0,23.0,-1.4614056064833263,2.989238740534077 -433,23.0,21.0,-2.5405381522555563,3.95440286307604 -433,23.0,22.0,-1.4614056064833263,2.989238740534077 -433,23.0,23.0,5.311836702613133,-9.188263657315172 -433,23.0,24.0,-1.3098929438742493,2.287622053705056 -433,24.0,23.0,-1.3098929438742493,2.287622053705056 -433,24.0,24.0,4.495715080321987,-7.864978761969621 -433,24.0,25.0,-1.2165301194494855,1.8171440463475024 -433,24.0,26.0,-1.9692920169982515,3.760212661917064 -433,25.0,24.0,-1.2165301194494855,1.8171440463475024 -433,25.0,25.0,1.2165301194494855,-1.8171440463475024 -433,26.0,24.0,-1.9692920169982515,3.760212661917064 -433,26.0,26.0,3.652281470778589,-9.46044252232512 -433,26.0,27.0,0.0,2.608731947574922 -433,26.0,28.0,-0.99553355095268,1.881005840357816 -433,26.0,29.0,-0.6874559028276572,1.293971494797717 -433,27.0,5.0,-4.362844058012917,15.463571542897856 -433,27.0,7.0,-1.4439790613954469,4.540814658476248 -433,27.0,26.0,0.0,2.608731947574922 -433,27.0,27.0,5.806823119408364,-22.67145722159613 -433,28.0,26.0,-0.99553355095268,1.881005840357816 -433,28.0,28.0,1.9075867579849564,-3.604364401207048 -433,28.0,29.0,-0.9120532070322764,1.7233585608492326 -433,29.0,26.0,-0.6874559028276572,1.293971494797717 -433,29.0,28.0,-0.9120532070322764,1.7233585608492326 -433,29.0,29.0,1.5995091098599337,-3.0173300556469496 -434,0.0,0.0,6.765516048652632,-21.23160167089863 -434,0.0,1.0,-5.224646179885656,15.646726840803398 -434,0.0,2.0,-1.5408698687669766,5.631674830095234 -434,1.0,0.0,-5.224646179885656,15.646726840803398 -434,1.0,1.0,9.75228216552403,-30.648662892676068 -434,1.0,3.0,-1.7055303166990268,5.1973792282565086 -434,1.0,4.0,-1.1359607881738778,4.772479328281356 -434,1.0,5.0,-1.6861448807654689,5.116477495334806 -434,2.0,0.0,-1.5408698687669766,5.631674830095234 -434,2.0,2.0,9.736318911079088,-29.13794745915803 -434,2.0,3.0,-8.19544904231211,23.5308726290628 -434,3.0,1.0,-1.7055303166990268,5.1973792282565086 -434,3.0,2.0,-8.19544904231211,23.5308726290628 -434,3.0,3.0,16.314103089185693,-55.509410535254254 -434,3.0,5.0,-6.413123730174556,22.31120356548123 -434,3.0,11.0,0.0,4.191255364806866 -434,4.0,1.0,-1.1359607881738778,4.772479328281356 -434,4.0,4.0,4.089980824135861,-12.190647245055052 -434,4.0,6.0,-2.954020035961983,7.449267916773697 -434,5.0,1.0,-1.6861448807654689,5.116477495334806 -434,5.0,3.0,-6.413123730174556,22.31120356548123 -434,5.0,5.0,22.341631269034565,-82.8291478657789 -434,5.0,6.0,-3.590210423980992,11.02611441072814 -434,5.0,7.0,-6.289308176100628,22.0125786163522 -434,5.0,8.0,0.0,4.915840805411357 -434,5.0,9.0,0.0,1.8561002591115965 -434,5.0,27.0,-4.362844058012917,15.463571542897856 -434,6.0,4.0,-2.954020035961983,7.449267916773697 -434,6.0,5.0,-3.590210423980992,11.02611441072814 -434,6.0,6.0,6.544230459942975,-18.45668232750184 -434,7.0,5.0,-6.289308176100628,22.0125786163522 -434,7.0,7.0,7.733287237496075,-26.527493274828448 -434,7.0,27.0,-1.4439790613954469,4.540814658476248 -434,8.0,5.0,0.0,4.915840805411357 -434,8.0,8.0,0.0,-9.615384615384617 -434,8.0,10.0,0.0,4.807692307692308 -434,9.0,5.0,0.0,1.8561002591115965 -434,9.0,9.0,13.462042814524237,-32.29285157661331 -434,9.0,16.0,-3.956039125715353,10.317447719844054 -434,9.0,19.0,-1.7848303152666305,3.98535828943083 -434,9.0,20.0,-5.101853820159654,10.98071411292983 -434,9.0,21.0,-2.619319553382597,5.400770303329455 -434,10.0,8.0,0.0,4.807692307692308 -434,10.0,10.0,0.0,-4.807692307692308 -434,11.0,3.0,0.0,4.191255364806866 -434,11.0,11.0,6.573961583776156,-24.424167659260668 -434,11.0,12.0,0.0,7.142857142857143 -434,11.0,13.0,-1.5265676088395577,3.1734252729654173 -434,11.0,14.0,-3.0953961826564296,6.097275864326261 -434,11.0,15.0,-1.9519977922801688,4.104359379111847 -434,12.0,11.0,0.0,7.142857142857143 -434,12.0,12.0,0.0,-7.142857142857143 -434,13.0,11.0,-1.5265676088395577,3.1734252729654173 -434,13.0,13.0,4.01751987283902,-5.424299332335067 -434,13.0,14.0,-2.4909522639994623,2.250874059369649 -434,14.0,11.0,-3.0953961826564296,6.097275864326261 -434,14.0,13.0,-2.4909522639994623,2.250874059369649 -434,14.0,14.0,9.365498545964757,-16.01163373210796 -434,14.0,17.0,-1.8108011504072024,3.687418931630696 -434,14.0,22.0,-1.9683489489016612,3.976064876781356 -434,15.0,11.0,-1.9519977922801688,4.104359379111847 -434,15.0,15.0,3.271064728633931,-8.94513365126506 -434,15.0,16.0,-1.3190669363537617,4.8407742721532125 -434,16.0,9.0,-3.956039125715353,10.317447719844054 -434,16.0,15.0,-1.3190669363537617,4.8407742721532125 -434,16.0,16.0,5.275106062069114,-15.158221991997266 -434,17.0,14.0,-1.8108011504072024,3.687418931630696 -434,17.0,17.0,4.886487584415919,-9.906177730909668 -434,17.0,18.0,-3.0756864340087167,6.218758799278971 -434,18.0,17.0,-3.0756864340087167,6.218758799278971 -434,18.0,18.0,8.958039375185187,-17.98346468163191 -434,18.0,19.0,-5.88235294117647,11.76470588235294 -434,19.0,9.0,-1.7848303152666305,3.98535828943083 -434,19.0,18.0,-5.88235294117647,11.76470588235294 -434,19.0,19.0,7.6671832564431,-15.75006417178377 -434,20.0,9.0,-5.101853820159654,10.98071411292983 -434,20.0,20.0,21.876495189895888,-45.10843276170355 -434,20.0,21.0,-16.774641369736234,34.127718648773715 -434,21.0,9.0,-2.619319553382597,5.400770303329455 -434,21.0,20.0,-16.774641369736234,34.127718648773715 -434,21.0,21.0,21.93449907537439,-43.48289181517921 -434,21.0,23.0,-2.5405381522555563,3.95440286307604 -434,22.0,14.0,-1.9683489489016612,3.976064876781356 -434,22.0,22.0,3.429754555384988,-6.965303617315433 -434,22.0,23.0,-1.4614056064833263,2.989238740534077 -434,23.0,21.0,-2.5405381522555563,3.95440286307604 -434,23.0,22.0,-1.4614056064833263,2.989238740534077 -434,23.0,23.0,5.311836702613133,-9.188263657315172 -434,23.0,24.0,-1.3098929438742493,2.287622053705056 -434,24.0,23.0,-1.3098929438742493,2.287622053705056 -434,24.0,24.0,4.495715080321987,-7.864978761969621 -434,24.0,25.0,-1.2165301194494855,1.8171440463475024 -434,24.0,26.0,-1.9692920169982515,3.760212661917064 -434,25.0,24.0,-1.2165301194494855,1.8171440463475024 -434,25.0,25.0,1.2165301194494855,-1.8171440463475024 -434,26.0,24.0,-1.9692920169982515,3.760212661917064 -434,26.0,26.0,3.652281470778589,-9.46044252232512 -434,26.0,27.0,0.0,2.608731947574922 -434,26.0,28.0,-0.99553355095268,1.881005840357816 -434,26.0,29.0,-0.6874559028276572,1.293971494797717 -434,27.0,5.0,-4.362844058012917,15.463571542897856 -434,27.0,7.0,-1.4439790613954469,4.540814658476248 -434,27.0,26.0,0.0,2.608731947574922 -434,27.0,27.0,5.806823119408364,-22.67145722159613 -434,28.0,26.0,-0.99553355095268,1.881005840357816 -434,28.0,28.0,1.9075867579849564,-3.604364401207048 -434,28.0,29.0,-0.9120532070322764,1.7233585608492326 -434,29.0,26.0,-0.6874559028276572,1.293971494797717 -434,29.0,28.0,-0.9120532070322764,1.7233585608492326 -434,29.0,29.0,1.5995091098599337,-3.0173300556469496 -435,0.0,0.0,6.765516048652632,-21.23160167089863 -435,0.0,1.0,-5.224646179885656,15.646726840803398 -435,0.0,2.0,-1.5408698687669766,5.631674830095234 -435,1.0,0.0,-5.224646179885656,15.646726840803398 -435,1.0,1.0,9.75228216552403,-30.648662892676068 -435,1.0,3.0,-1.7055303166990268,5.1973792282565086 -435,1.0,4.0,-1.1359607881738778,4.772479328281356 -435,1.0,5.0,-1.6861448807654689,5.116477495334806 -435,2.0,0.0,-1.5408698687669766,5.631674830095234 -435,2.0,2.0,9.736318911079088,-29.13794745915803 -435,2.0,3.0,-8.19544904231211,23.5308726290628 -435,3.0,1.0,-1.7055303166990268,5.1973792282565086 -435,3.0,2.0,-8.19544904231211,23.5308726290628 -435,3.0,3.0,16.314103089185693,-51.01235542280054 -435,3.0,5.0,-6.413123730174556,22.31120356548123 -435,4.0,1.0,-1.1359607881738778,4.772479328281356 -435,4.0,4.0,4.089980824135861,-12.190647245055052 -435,4.0,6.0,-2.954020035961983,7.449267916773697 -435,5.0,1.0,-1.6861448807654689,5.116477495334806 -435,5.0,3.0,-6.413123730174556,22.31120356548123 -435,5.0,5.0,17.978787211021647,-67.37207632288106 -435,5.0,6.0,-3.590210423980992,11.02611441072814 -435,5.0,7.0,-6.289308176100628,22.0125786163522 -435,5.0,8.0,0.0,4.915840805411357 -435,5.0,9.0,0.0,1.8561002591115965 -435,6.0,4.0,-2.954020035961983,7.449267916773697 -435,6.0,5.0,-3.590210423980992,11.02611441072814 -435,6.0,6.0,6.544230459942975,-18.45668232750184 -435,7.0,5.0,-6.289308176100628,22.0125786163522 -435,7.0,7.0,7.733287237496075,-26.527493274828448 -435,7.0,27.0,-1.4439790613954469,4.540814658476248 -435,8.0,5.0,0.0,4.915840805411357 -435,8.0,8.0,0.0,-18.706293706293707 -435,8.0,9.0,0.0,9.090909090909092 -435,8.0,10.0,0.0,4.807692307692308 -435,9.0,5.0,0.0,1.8561002591115965 -435,9.0,8.0,0.0,9.090909090909092 -435,9.0,9.0,13.462042814524237,-41.3837606675224 -435,9.0,16.0,-3.956039125715353,10.317447719844054 -435,9.0,19.0,-1.7848303152666305,3.98535828943083 -435,9.0,20.0,-5.101853820159654,10.98071411292983 -435,9.0,21.0,-2.619319553382597,5.400770303329455 -435,10.0,8.0,0.0,4.807692307692308 -435,10.0,10.0,0.0,-4.807692307692308 -435,11.0,11.0,6.573961583776156,-20.517917659260668 -435,11.0,12.0,0.0,7.142857142857143 -435,11.0,13.0,-1.5265676088395577,3.1734252729654173 -435,11.0,14.0,-3.0953961826564296,6.097275864326261 -435,11.0,15.0,-1.9519977922801688,4.104359379111847 -435,12.0,11.0,0.0,7.142857142857143 -435,12.0,12.0,0.0,-7.142857142857143 -435,13.0,11.0,-1.5265676088395577,3.1734252729654173 -435,13.0,13.0,4.01751987283902,-5.424299332335067 -435,13.0,14.0,-2.4909522639994623,2.250874059369649 -435,14.0,11.0,-3.0953961826564296,6.097275864326261 -435,14.0,13.0,-2.4909522639994623,2.250874059369649 -435,14.0,14.0,7.397149597063095,-12.035568855326606 -435,14.0,17.0,-1.8108011504072024,3.687418931630696 -435,15.0,11.0,-1.9519977922801688,4.104359379111847 -435,15.0,15.0,3.271064728633931,-8.94513365126506 -435,15.0,16.0,-1.3190669363537617,4.8407742721532125 -435,16.0,9.0,-3.956039125715353,10.317447719844054 -435,16.0,15.0,-1.3190669363537617,4.8407742721532125 -435,16.0,16.0,5.275106062069114,-15.158221991997266 -435,17.0,14.0,-1.8108011504072024,3.687418931630696 -435,17.0,17.0,4.886487584415919,-9.906177730909668 -435,17.0,18.0,-3.0756864340087167,6.218758799278971 -435,18.0,17.0,-3.0756864340087167,6.218758799278971 -435,18.0,18.0,3.0756864340087167,-6.218758799278971 -435,19.0,9.0,-1.7848303152666305,3.98535828943083 -435,19.0,19.0,1.7848303152666305,-3.98535828943083 -435,20.0,9.0,-5.101853820159654,10.98071411292983 -435,20.0,20.0,21.876495189895888,-45.10843276170355 -435,20.0,21.0,-16.774641369736234,34.127718648773715 -435,21.0,9.0,-2.619319553382597,5.400770303329455 -435,21.0,20.0,-16.774641369736234,34.127718648773715 -435,21.0,21.0,21.93449907537439,-43.48289181517921 -435,21.0,23.0,-2.5405381522555563,3.95440286307604 -435,22.0,22.0,1.4614056064833263,-2.989238740534077 -435,22.0,23.0,-1.4614056064833263,2.989238740534077 -435,23.0,21.0,-2.5405381522555563,3.95440286307604 -435,23.0,22.0,-1.4614056064833263,2.989238740534077 -435,23.0,23.0,5.311836702613133,-9.188263657315172 -435,23.0,24.0,-1.3098929438742493,2.287622053705056 -435,24.0,23.0,-1.3098929438742493,2.287622053705056 -435,24.0,24.0,2.526423063323735,-4.104766100052558 -435,24.0,25.0,-1.2165301194494855,1.8171440463475024 -435,25.0,24.0,-1.2165301194494855,1.8171440463475024 -435,25.0,25.0,1.2165301194494855,-1.8171440463475024 -435,26.0,26.0,0.6874559028276572,-3.8192240200502416 -435,26.0,27.0,0.0,2.608731947574922 -435,26.0,29.0,-0.6874559028276572,1.293971494797717 -435,27.0,7.0,-1.4439790613954469,4.540814658476248 -435,27.0,26.0,0.0,2.608731947574922 -435,27.0,27.0,1.4439790613954469,-7.214385678698274 -435,28.0,28.0,0.9120532070322764,-1.7233585608492326 -435,28.0,29.0,-0.9120532070322764,1.7233585608492326 -435,29.0,26.0,-0.6874559028276572,1.293971494797717 -435,29.0,28.0,-0.9120532070322764,1.7233585608492326 -435,29.0,29.0,1.5995091098599337,-3.0173300556469496 -436,0.0,0.0,6.765516048652632,-21.23160167089863 -436,0.0,1.0,-5.224646179885656,15.646726840803398 -436,0.0,2.0,-1.5408698687669766,5.631674830095234 -436,1.0,0.0,-5.224646179885656,15.646726840803398 -436,1.0,1.0,9.75228216552403,-30.648662892676068 -436,1.0,3.0,-1.7055303166990268,5.1973792282565086 -436,1.0,4.0,-1.1359607881738778,4.772479328281356 -436,1.0,5.0,-1.6861448807654689,5.116477495334806 -436,2.0,0.0,-1.5408698687669766,5.631674830095234 -436,2.0,2.0,9.736318911079088,-29.13794745915803 -436,2.0,3.0,-8.19544904231211,23.5308726290628 -436,3.0,1.0,-1.7055303166990268,5.1973792282565086 -436,3.0,2.0,-8.19544904231211,23.5308726290628 -436,3.0,3.0,16.314103089185693,-55.509410535254254 -436,3.0,5.0,-6.413123730174556,22.31120356548123 -436,3.0,11.0,0.0,4.191255364806866 -436,4.0,1.0,-1.1359607881738778,4.772479328281356 -436,4.0,4.0,4.089980824135861,-12.190647245055052 -436,4.0,6.0,-2.954020035961983,7.449267916773697 -436,5.0,1.0,-1.6861448807654689,5.116477495334806 -436,5.0,3.0,-6.413123730174556,22.31120356548123 -436,5.0,5.0,22.341631269034565,-82.8291478657789 -436,5.0,6.0,-3.590210423980992,11.02611441072814 -436,5.0,7.0,-6.289308176100628,22.0125786163522 -436,5.0,8.0,0.0,4.915840805411357 -436,5.0,9.0,0.0,1.8561002591115965 -436,5.0,27.0,-4.362844058012917,15.463571542897856 -436,6.0,4.0,-2.954020035961983,7.449267916773697 -436,6.0,5.0,-3.590210423980992,11.02611441072814 -436,6.0,6.0,6.544230459942975,-18.45668232750184 -436,7.0,5.0,-6.289308176100628,22.0125786163522 -436,7.0,7.0,7.733287237496075,-26.527493274828448 -436,7.0,27.0,-1.4439790613954469,4.540814658476248 -436,8.0,5.0,0.0,4.915840805411357 -436,8.0,8.0,0.0,-18.706293706293707 -436,8.0,9.0,0.0,9.090909090909092 -436,8.0,10.0,0.0,4.807692307692308 -436,9.0,5.0,0.0,1.8561002591115965 -436,9.0,8.0,0.0,9.090909090909092 -436,9.0,9.0,13.462042814524237,-41.3837606675224 -436,9.0,16.0,-3.956039125715353,10.317447719844054 -436,9.0,19.0,-1.7848303152666305,3.98535828943083 -436,9.0,20.0,-5.101853820159654,10.98071411292983 -436,9.0,21.0,-2.619319553382597,5.400770303329455 -436,10.0,8.0,0.0,4.807692307692308 -436,10.0,10.0,0.0,-4.807692307692308 -436,11.0,3.0,0.0,4.191255364806866 -436,11.0,11.0,6.573961583776156,-24.424167659260668 -436,11.0,12.0,0.0,7.142857142857143 -436,11.0,13.0,-1.5265676088395577,3.1734252729654173 -436,11.0,14.0,-3.0953961826564296,6.097275864326261 -436,11.0,15.0,-1.9519977922801688,4.104359379111847 -436,12.0,11.0,0.0,7.142857142857143 -436,12.0,12.0,0.0,-7.142857142857143 -436,13.0,11.0,-1.5265676088395577,3.1734252729654173 -436,13.0,13.0,4.01751987283902,-5.424299332335067 -436,13.0,14.0,-2.4909522639994623,2.250874059369649 -436,14.0,11.0,-3.0953961826564296,6.097275864326261 -436,14.0,13.0,-2.4909522639994623,2.250874059369649 -436,14.0,14.0,9.365498545964757,-16.01163373210796 -436,14.0,17.0,-1.8108011504072024,3.687418931630696 -436,14.0,22.0,-1.9683489489016612,3.976064876781356 -436,15.0,11.0,-1.9519977922801688,4.104359379111847 -436,15.0,15.0,3.271064728633931,-8.94513365126506 -436,15.0,16.0,-1.3190669363537617,4.8407742721532125 -436,16.0,9.0,-3.956039125715353,10.317447719844054 -436,16.0,15.0,-1.3190669363537617,4.8407742721532125 -436,16.0,16.0,5.275106062069114,-15.158221991997266 -436,17.0,14.0,-1.8108011504072024,3.687418931630696 -436,17.0,17.0,4.886487584415919,-9.906177730909668 -436,17.0,18.0,-3.0756864340087167,6.218758799278971 -436,18.0,17.0,-3.0756864340087167,6.218758799278971 -436,18.0,18.0,8.958039375185187,-17.98346468163191 -436,18.0,19.0,-5.88235294117647,11.76470588235294 -436,19.0,9.0,-1.7848303152666305,3.98535828943083 -436,19.0,18.0,-5.88235294117647,11.76470588235294 -436,19.0,19.0,7.6671832564431,-15.75006417178377 -436,20.0,9.0,-5.101853820159654,10.98071411292983 -436,20.0,20.0,21.876495189895888,-45.10843276170355 -436,20.0,21.0,-16.774641369736234,34.127718648773715 -436,21.0,9.0,-2.619319553382597,5.400770303329455 -436,21.0,20.0,-16.774641369736234,34.127718648773715 -436,21.0,21.0,21.93449907537439,-43.48289181517921 -436,21.0,23.0,-2.5405381522555563,3.95440286307604 -436,22.0,14.0,-1.9683489489016612,3.976064876781356 -436,22.0,22.0,3.429754555384988,-6.965303617315433 -436,22.0,23.0,-1.4614056064833263,2.989238740534077 -436,23.0,21.0,-2.5405381522555563,3.95440286307604 -436,23.0,22.0,-1.4614056064833263,2.989238740534077 -436,23.0,23.0,5.311836702613133,-9.188263657315172 -436,23.0,24.0,-1.3098929438742493,2.287622053705056 -436,24.0,23.0,-1.3098929438742493,2.287622053705056 -436,24.0,24.0,4.495715080321987,-7.864978761969621 -436,24.0,25.0,-1.2165301194494855,1.8171440463475024 -436,24.0,26.0,-1.9692920169982515,3.760212661917064 -436,25.0,24.0,-1.2165301194494855,1.8171440463475024 -436,25.0,25.0,1.2165301194494855,-1.8171440463475024 -436,26.0,24.0,-1.9692920169982515,3.760212661917064 -436,26.0,26.0,3.652281470778589,-9.46044252232512 -436,26.0,27.0,0.0,2.608731947574922 -436,26.0,28.0,-0.99553355095268,1.881005840357816 -436,26.0,29.0,-0.6874559028276572,1.293971494797717 -436,27.0,5.0,-4.362844058012917,15.463571542897856 -436,27.0,7.0,-1.4439790613954469,4.540814658476248 -436,27.0,26.0,0.0,2.608731947574922 -436,27.0,27.0,5.806823119408364,-22.67145722159613 -436,28.0,26.0,-0.99553355095268,1.881005840357816 -436,28.0,28.0,1.9075867579849564,-3.604364401207048 -436,28.0,29.0,-0.9120532070322764,1.7233585608492326 -436,29.0,26.0,-0.6874559028276572,1.293971494797717 -436,29.0,28.0,-0.9120532070322764,1.7233585608492326 -436,29.0,29.0,1.5995091098599337,-3.0173300556469496 -437,0.0,0.0,6.765516048652632,-21.23160167089863 -437,0.0,1.0,-5.224646179885656,15.646726840803398 -437,0.0,2.0,-1.5408698687669766,5.631674830095234 -437,1.0,0.0,-5.224646179885656,15.646726840803398 -437,1.0,1.0,9.75228216552403,-30.648662892676068 -437,1.0,3.0,-1.7055303166990268,5.1973792282565086 -437,1.0,4.0,-1.1359607881738778,4.772479328281356 -437,1.0,5.0,-1.6861448807654689,5.116477495334806 -437,2.0,0.0,-1.5408698687669766,5.631674830095234 -437,2.0,2.0,9.736318911079088,-29.13794745915803 -437,2.0,3.0,-8.19544904231211,23.5308726290628 -437,3.0,1.0,-1.7055303166990268,5.1973792282565086 -437,3.0,2.0,-8.19544904231211,23.5308726290628 -437,3.0,3.0,16.314103089185693,-55.509410535254254 -437,3.0,5.0,-6.413123730174556,22.31120356548123 -437,3.0,11.0,0.0,4.191255364806866 -437,4.0,1.0,-1.1359607881738778,4.772479328281356 -437,4.0,4.0,4.089980824135861,-12.190647245055052 -437,4.0,6.0,-2.954020035961983,7.449267916773697 -437,5.0,1.0,-1.6861448807654689,5.116477495334806 -437,5.0,3.0,-6.413123730174556,22.31120356548123 -437,5.0,5.0,22.341631269034565,-82.8291478657789 -437,5.0,6.0,-3.590210423980992,11.02611441072814 -437,5.0,7.0,-6.289308176100628,22.0125786163522 -437,5.0,8.0,0.0,4.915840805411357 -437,5.0,9.0,0.0,1.8561002591115965 -437,5.0,27.0,-4.362844058012917,15.463571542897856 -437,6.0,4.0,-2.954020035961983,7.449267916773697 -437,6.0,5.0,-3.590210423980992,11.02611441072814 -437,6.0,6.0,6.544230459942975,-18.45668232750184 -437,7.0,5.0,-6.289308176100628,22.0125786163522 -437,7.0,7.0,7.733287237496075,-26.527493274828448 -437,7.0,27.0,-1.4439790613954469,4.540814658476248 -437,8.0,5.0,0.0,4.915840805411357 -437,8.0,8.0,0.0,-18.706293706293707 -437,8.0,9.0,0.0,9.090909090909092 -437,8.0,10.0,0.0,4.807692307692308 -437,9.0,5.0,0.0,1.8561002591115965 -437,9.0,8.0,0.0,9.090909090909092 -437,9.0,9.0,13.462042814524237,-41.3837606675224 -437,9.0,16.0,-3.956039125715353,10.317447719844054 -437,9.0,19.0,-1.7848303152666305,3.98535828943083 -437,9.0,20.0,-5.101853820159654,10.98071411292983 -437,9.0,21.0,-2.619319553382597,5.400770303329455 -437,10.0,8.0,0.0,4.807692307692308 -437,10.0,10.0,0.0,-4.807692307692308 -437,11.0,3.0,0.0,4.191255364806866 -437,11.0,11.0,3.478565401119727,-18.326891794934408 -437,11.0,12.0,0.0,7.142857142857143 -437,11.0,13.0,-1.5265676088395577,3.1734252729654173 -437,11.0,15.0,-1.9519977922801688,4.104359379111847 -437,12.0,11.0,0.0,7.142857142857143 -437,12.0,12.0,0.0,-7.142857142857143 -437,13.0,11.0,-1.5265676088395577,3.1734252729654173 -437,13.0,13.0,4.01751987283902,-5.424299332335067 -437,13.0,14.0,-2.4909522639994623,2.250874059369649 -437,14.0,13.0,-2.4909522639994623,2.250874059369649 -437,14.0,14.0,6.270102363308326,-9.9143578677817 -437,14.0,17.0,-1.8108011504072024,3.687418931630696 -437,14.0,22.0,-1.9683489489016612,3.976064876781356 -437,15.0,11.0,-1.9519977922801688,4.104359379111847 -437,15.0,15.0,3.271064728633931,-8.94513365126506 -437,15.0,16.0,-1.3190669363537617,4.8407742721532125 -437,16.0,9.0,-3.956039125715353,10.317447719844054 -437,16.0,15.0,-1.3190669363537617,4.8407742721532125 -437,16.0,16.0,5.275106062069114,-15.158221991997266 -437,17.0,14.0,-1.8108011504072024,3.687418931630696 -437,17.0,17.0,4.886487584415919,-9.906177730909668 -437,17.0,18.0,-3.0756864340087167,6.218758799278971 -437,18.0,17.0,-3.0756864340087167,6.218758799278971 -437,18.0,18.0,8.958039375185187,-17.98346468163191 -437,18.0,19.0,-5.88235294117647,11.76470588235294 -437,19.0,9.0,-1.7848303152666305,3.98535828943083 -437,19.0,18.0,-5.88235294117647,11.76470588235294 -437,19.0,19.0,7.6671832564431,-15.75006417178377 -437,20.0,9.0,-5.101853820159654,10.98071411292983 -437,20.0,20.0,21.876495189895888,-45.10843276170355 -437,20.0,21.0,-16.774641369736234,34.127718648773715 -437,21.0,9.0,-2.619319553382597,5.400770303329455 -437,21.0,20.0,-16.774641369736234,34.127718648773715 -437,21.0,21.0,21.93449907537439,-43.48289181517921 -437,21.0,23.0,-2.5405381522555563,3.95440286307604 -437,22.0,14.0,-1.9683489489016612,3.976064876781356 -437,22.0,22.0,3.429754555384988,-6.965303617315433 -437,22.0,23.0,-1.4614056064833263,2.989238740534077 -437,23.0,21.0,-2.5405381522555563,3.95440286307604 -437,23.0,22.0,-1.4614056064833263,2.989238740534077 -437,23.0,23.0,5.311836702613133,-9.188263657315172 -437,23.0,24.0,-1.3098929438742493,2.287622053705056 -437,24.0,23.0,-1.3098929438742493,2.287622053705056 -437,24.0,24.0,4.495715080321987,-7.864978761969621 -437,24.0,25.0,-1.2165301194494855,1.8171440463475024 -437,24.0,26.0,-1.9692920169982515,3.760212661917064 -437,25.0,24.0,-1.2165301194494855,1.8171440463475024 -437,25.0,25.0,1.2165301194494855,-1.8171440463475024 -437,26.0,24.0,-1.9692920169982515,3.760212661917064 -437,26.0,26.0,3.652281470778589,-9.46044252232512 -437,26.0,27.0,0.0,2.608731947574922 -437,26.0,28.0,-0.99553355095268,1.881005840357816 -437,26.0,29.0,-0.6874559028276572,1.293971494797717 -437,27.0,5.0,-4.362844058012917,15.463571542897856 -437,27.0,7.0,-1.4439790613954469,4.540814658476248 -437,27.0,26.0,0.0,2.608731947574922 -437,27.0,27.0,5.806823119408364,-22.67145722159613 -437,28.0,26.0,-0.99553355095268,1.881005840357816 -437,28.0,28.0,1.9075867579849564,-3.604364401207048 -437,28.0,29.0,-0.9120532070322764,1.7233585608492326 -437,29.0,26.0,-0.6874559028276572,1.293971494797717 -437,29.0,28.0,-0.9120532070322764,1.7233585608492326 -437,29.0,29.0,1.5995091098599337,-3.0173300556469496 -438,0.0,0.0,6.765516048652632,-21.23160167089863 -438,0.0,1.0,-5.224646179885656,15.646726840803398 -438,0.0,2.0,-1.5408698687669766,5.631674830095234 -438,1.0,0.0,-5.224646179885656,15.646726840803398 -438,1.0,1.0,9.75228216552403,-30.648662892676068 -438,1.0,3.0,-1.7055303166990268,5.1973792282565086 -438,1.0,4.0,-1.1359607881738778,4.772479328281356 -438,1.0,5.0,-1.6861448807654689,5.116477495334806 -438,2.0,0.0,-1.5408698687669766,5.631674830095234 -438,2.0,2.0,9.736318911079088,-29.13794745915803 -438,2.0,3.0,-8.19544904231211,23.5308726290628 -438,3.0,1.0,-1.7055303166990268,5.1973792282565086 -438,3.0,2.0,-8.19544904231211,23.5308726290628 -438,3.0,3.0,16.314103089185693,-55.509410535254254 -438,3.0,5.0,-6.413123730174556,22.31120356548123 -438,3.0,11.0,0.0,4.191255364806866 -438,4.0,1.0,-1.1359607881738778,4.772479328281356 -438,4.0,4.0,4.089980824135861,-12.190647245055052 -438,4.0,6.0,-2.954020035961983,7.449267916773697 -438,5.0,1.0,-1.6861448807654689,5.116477495334806 -438,5.0,3.0,-6.413123730174556,22.31120356548123 -438,5.0,5.0,22.341631269034565,-82.8291478657789 -438,5.0,6.0,-3.590210423980992,11.02611441072814 -438,5.0,7.0,-6.289308176100628,22.0125786163522 -438,5.0,8.0,0.0,4.915840805411357 -438,5.0,9.0,0.0,1.8561002591115965 -438,5.0,27.0,-4.362844058012917,15.463571542897856 -438,6.0,4.0,-2.954020035961983,7.449267916773697 -438,6.0,5.0,-3.590210423980992,11.02611441072814 -438,6.0,6.0,6.544230459942975,-18.45668232750184 -438,7.0,5.0,-6.289308176100628,22.0125786163522 -438,7.0,7.0,7.733287237496075,-26.527493274828448 -438,7.0,27.0,-1.4439790613954469,4.540814658476248 -438,8.0,5.0,0.0,4.915840805411357 -438,8.0,8.0,0.0,-18.706293706293707 -438,8.0,9.0,0.0,9.090909090909092 -438,8.0,10.0,0.0,4.807692307692308 -438,9.0,5.0,0.0,1.8561002591115965 -438,9.0,8.0,0.0,9.090909090909092 -438,9.0,9.0,9.506003688808882,-31.06631294767834 -438,9.0,19.0,-1.7848303152666305,3.98535828943083 -438,9.0,20.0,-5.101853820159654,10.98071411292983 -438,9.0,21.0,-2.619319553382597,5.400770303329455 -438,10.0,8.0,0.0,4.807692307692308 -438,10.0,10.0,0.0,-4.807692307692308 -438,11.0,3.0,0.0,4.191255364806866 -438,11.0,11.0,6.573961583776156,-24.424167659260668 -438,11.0,12.0,0.0,7.142857142857143 -438,11.0,13.0,-1.5265676088395577,3.1734252729654173 -438,11.0,14.0,-3.0953961826564296,6.097275864326261 -438,11.0,15.0,-1.9519977922801688,4.104359379111847 -438,12.0,11.0,0.0,7.142857142857143 -438,12.0,12.0,0.0,-7.142857142857143 -438,13.0,11.0,-1.5265676088395577,3.1734252729654173 -438,13.0,13.0,4.01751987283902,-5.424299332335067 -438,13.0,14.0,-2.4909522639994623,2.250874059369649 -438,14.0,11.0,-3.0953961826564296,6.097275864326261 -438,14.0,13.0,-2.4909522639994623,2.250874059369649 -438,14.0,14.0,9.365498545964757,-16.01163373210796 -438,14.0,17.0,-1.8108011504072024,3.687418931630696 -438,14.0,22.0,-1.9683489489016612,3.976064876781356 -438,15.0,11.0,-1.9519977922801688,4.104359379111847 -438,15.0,15.0,3.271064728633931,-8.94513365126506 -438,15.0,16.0,-1.3190669363537617,4.8407742721532125 -438,16.0,15.0,-1.3190669363537617,4.8407742721532125 -438,16.0,16.0,1.3190669363537617,-4.8407742721532125 -438,17.0,14.0,-1.8108011504072024,3.687418931630696 -438,17.0,17.0,4.886487584415919,-9.906177730909668 -438,17.0,18.0,-3.0756864340087167,6.218758799278971 -438,18.0,17.0,-3.0756864340087167,6.218758799278971 -438,18.0,18.0,8.958039375185187,-17.98346468163191 -438,18.0,19.0,-5.88235294117647,11.76470588235294 -438,19.0,9.0,-1.7848303152666305,3.98535828943083 -438,19.0,18.0,-5.88235294117647,11.76470588235294 -438,19.0,19.0,7.6671832564431,-15.75006417178377 -438,20.0,9.0,-5.101853820159654,10.98071411292983 -438,20.0,20.0,21.876495189895888,-45.10843276170355 -438,20.0,21.0,-16.774641369736234,34.127718648773715 -438,21.0,9.0,-2.619319553382597,5.400770303329455 -438,21.0,20.0,-16.774641369736234,34.127718648773715 -438,21.0,21.0,21.93449907537439,-43.48289181517921 -438,21.0,23.0,-2.5405381522555563,3.95440286307604 -438,22.0,14.0,-1.9683489489016612,3.976064876781356 -438,22.0,22.0,3.429754555384988,-6.965303617315433 -438,22.0,23.0,-1.4614056064833263,2.989238740534077 -438,23.0,21.0,-2.5405381522555563,3.95440286307604 -438,23.0,22.0,-1.4614056064833263,2.989238740534077 -438,23.0,23.0,5.311836702613133,-9.188263657315172 -438,23.0,24.0,-1.3098929438742493,2.287622053705056 -438,24.0,23.0,-1.3098929438742493,2.287622053705056 -438,24.0,24.0,4.495715080321987,-7.864978761969621 -438,24.0,25.0,-1.2165301194494855,1.8171440463475024 -438,24.0,26.0,-1.9692920169982515,3.760212661917064 -438,25.0,24.0,-1.2165301194494855,1.8171440463475024 -438,25.0,25.0,1.2165301194494855,-1.8171440463475024 -438,26.0,24.0,-1.9692920169982515,3.760212661917064 -438,26.0,26.0,3.652281470778589,-9.46044252232512 -438,26.0,27.0,0.0,2.608731947574922 -438,26.0,28.0,-0.99553355095268,1.881005840357816 -438,26.0,29.0,-0.6874559028276572,1.293971494797717 -438,27.0,5.0,-4.362844058012917,15.463571542897856 -438,27.0,7.0,-1.4439790613954469,4.540814658476248 -438,27.0,26.0,0.0,2.608731947574922 -438,27.0,27.0,5.806823119408364,-22.67145722159613 -438,28.0,26.0,-0.99553355095268,1.881005840357816 -438,28.0,28.0,1.9075867579849564,-3.604364401207048 -438,28.0,29.0,-0.9120532070322764,1.7233585608492326 -438,29.0,26.0,-0.6874559028276572,1.293971494797717 -438,29.0,28.0,-0.9120532070322764,1.7233585608492326 -438,29.0,29.0,1.5995091098599337,-3.0173300556469496 -439,0.0,0.0,6.765516048652632,-21.23160167089863 -439,0.0,1.0,-5.224646179885656,15.646726840803398 -439,0.0,2.0,-1.5408698687669766,5.631674830095234 -439,1.0,0.0,-5.224646179885656,15.646726840803398 -439,1.0,1.0,9.75228216552403,-30.648662892676068 -439,1.0,3.0,-1.7055303166990268,5.1973792282565086 -439,1.0,4.0,-1.1359607881738778,4.772479328281356 -439,1.0,5.0,-1.6861448807654689,5.116477495334806 -439,2.0,0.0,-1.5408698687669766,5.631674830095234 -439,2.0,2.0,9.736318911079088,-29.13794745915803 -439,2.0,3.0,-8.19544904231211,23.5308726290628 -439,3.0,1.0,-1.7055303166990268,5.1973792282565086 -439,3.0,2.0,-8.19544904231211,23.5308726290628 -439,3.0,3.0,16.314103089185693,-55.509410535254254 -439,3.0,5.0,-6.413123730174556,22.31120356548123 -439,3.0,11.0,0.0,4.191255364806866 -439,4.0,1.0,-1.1359607881738778,4.772479328281356 -439,4.0,4.0,4.089980824135861,-12.190647245055052 -439,4.0,6.0,-2.954020035961983,7.449267916773697 -439,5.0,1.0,-1.6861448807654689,5.116477495334806 -439,5.0,3.0,-6.413123730174556,22.31120356548123 -439,5.0,5.0,22.341631269034565,-82.8291478657789 -439,5.0,6.0,-3.590210423980992,11.02611441072814 -439,5.0,7.0,-6.289308176100628,22.0125786163522 -439,5.0,8.0,0.0,4.915840805411357 -439,5.0,9.0,0.0,1.8561002591115965 -439,5.0,27.0,-4.362844058012917,15.463571542897856 -439,6.0,4.0,-2.954020035961983,7.449267916773697 -439,6.0,5.0,-3.590210423980992,11.02611441072814 -439,6.0,6.0,6.544230459942975,-18.45668232750184 -439,7.0,5.0,-6.289308176100628,22.0125786163522 -439,7.0,7.0,7.733287237496075,-26.527493274828448 -439,7.0,27.0,-1.4439790613954469,4.540814658476248 -439,8.0,5.0,0.0,4.915840805411357 -439,8.0,8.0,0.0,-18.706293706293707 -439,8.0,9.0,0.0,9.090909090909092 -439,8.0,10.0,0.0,4.807692307692308 -439,9.0,5.0,0.0,1.8561002591115965 -439,9.0,8.0,0.0,9.090909090909092 -439,9.0,9.0,13.462042814524237,-41.3837606675224 -439,9.0,16.0,-3.956039125715353,10.317447719844054 -439,9.0,19.0,-1.7848303152666305,3.98535828943083 -439,9.0,20.0,-5.101853820159654,10.98071411292983 -439,9.0,21.0,-2.619319553382597,5.400770303329455 -439,10.0,8.0,0.0,4.807692307692308 -439,10.0,10.0,0.0,-4.807692307692308 -439,11.0,3.0,0.0,4.191255364806866 -439,11.0,11.0,5.047393974936599,-21.25074238629525 -439,11.0,12.0,0.0,7.142857142857143 -439,11.0,14.0,-3.0953961826564296,6.097275864326261 -439,11.0,15.0,-1.9519977922801688,4.104359379111847 -439,12.0,11.0,0.0,7.142857142857143 -439,12.0,12.0,0.0,-7.142857142857143 -439,13.0,13.0,2.4909522639994623,-2.250874059369649 -439,13.0,14.0,-2.4909522639994623,2.250874059369649 -439,14.0,11.0,-3.0953961826564296,6.097275864326261 -439,14.0,13.0,-2.4909522639994623,2.250874059369649 -439,14.0,14.0,9.365498545964757,-16.01163373210796 -439,14.0,17.0,-1.8108011504072024,3.687418931630696 -439,14.0,22.0,-1.9683489489016612,3.976064876781356 -439,15.0,11.0,-1.9519977922801688,4.104359379111847 -439,15.0,15.0,3.271064728633931,-8.94513365126506 -439,15.0,16.0,-1.3190669363537617,4.8407742721532125 -439,16.0,9.0,-3.956039125715353,10.317447719844054 -439,16.0,15.0,-1.3190669363537617,4.8407742721532125 -439,16.0,16.0,5.275106062069114,-15.158221991997266 -439,17.0,14.0,-1.8108011504072024,3.687418931630696 -439,17.0,17.0,4.886487584415919,-9.906177730909668 -439,17.0,18.0,-3.0756864340087167,6.218758799278971 -439,18.0,17.0,-3.0756864340087167,6.218758799278971 -439,18.0,18.0,8.958039375185187,-17.98346468163191 -439,18.0,19.0,-5.88235294117647,11.76470588235294 -439,19.0,9.0,-1.7848303152666305,3.98535828943083 -439,19.0,18.0,-5.88235294117647,11.76470588235294 -439,19.0,19.0,7.6671832564431,-15.75006417178377 -439,20.0,9.0,-5.101853820159654,10.98071411292983 -439,20.0,20.0,21.876495189895888,-45.10843276170355 -439,20.0,21.0,-16.774641369736234,34.127718648773715 -439,21.0,9.0,-2.619319553382597,5.400770303329455 -439,21.0,20.0,-16.774641369736234,34.127718648773715 -439,21.0,21.0,21.93449907537439,-43.48289181517921 -439,21.0,23.0,-2.5405381522555563,3.95440286307604 -439,22.0,14.0,-1.9683489489016612,3.976064876781356 -439,22.0,22.0,3.429754555384988,-6.965303617315433 -439,22.0,23.0,-1.4614056064833263,2.989238740534077 -439,23.0,21.0,-2.5405381522555563,3.95440286307604 -439,23.0,22.0,-1.4614056064833263,2.989238740534077 -439,23.0,23.0,5.311836702613133,-9.188263657315172 -439,23.0,24.0,-1.3098929438742493,2.287622053705056 -439,24.0,23.0,-1.3098929438742493,2.287622053705056 -439,24.0,24.0,4.495715080321987,-7.864978761969621 -439,24.0,25.0,-1.2165301194494855,1.8171440463475024 -439,24.0,26.0,-1.9692920169982515,3.760212661917064 -439,25.0,24.0,-1.2165301194494855,1.8171440463475024 -439,25.0,25.0,1.2165301194494855,-1.8171440463475024 -439,26.0,24.0,-1.9692920169982515,3.760212661917064 -439,26.0,26.0,3.652281470778589,-9.46044252232512 -439,26.0,27.0,0.0,2.608731947574922 -439,26.0,28.0,-0.99553355095268,1.881005840357816 -439,26.0,29.0,-0.6874559028276572,1.293971494797717 -439,27.0,5.0,-4.362844058012917,15.463571542897856 -439,27.0,7.0,-1.4439790613954469,4.540814658476248 -439,27.0,26.0,0.0,2.608731947574922 -439,27.0,27.0,5.806823119408364,-22.67145722159613 -439,28.0,26.0,-0.99553355095268,1.881005840357816 -439,28.0,28.0,1.9075867579849564,-3.604364401207048 -439,28.0,29.0,-0.9120532070322764,1.7233585608492326 -439,29.0,26.0,-0.6874559028276572,1.293971494797717 -439,29.0,28.0,-0.9120532070322764,1.7233585608492326 -439,29.0,29.0,1.5995091098599337,-3.0173300556469496 -440,0.0,0.0,6.765516048652632,-21.23160167089863 -440,0.0,1.0,-5.224646179885656,15.646726840803398 -440,0.0,2.0,-1.5408698687669766,5.631674830095234 -440,1.0,0.0,-5.224646179885656,15.646726840803398 -440,1.0,1.0,9.75228216552403,-30.648662892676068 -440,1.0,3.0,-1.7055303166990268,5.1973792282565086 -440,1.0,4.0,-1.1359607881738778,4.772479328281356 -440,1.0,5.0,-1.6861448807654689,5.116477495334806 -440,2.0,0.0,-1.5408698687669766,5.631674830095234 -440,2.0,2.0,9.736318911079088,-29.13794745915803 -440,2.0,3.0,-8.19544904231211,23.5308726290628 -440,3.0,1.0,-1.7055303166990268,5.1973792282565086 -440,3.0,2.0,-8.19544904231211,23.5308726290628 -440,3.0,3.0,16.314103089185693,-55.509410535254254 -440,3.0,5.0,-6.413123730174556,22.31120356548123 -440,3.0,11.0,0.0,4.191255364806866 -440,4.0,1.0,-1.1359607881738778,4.772479328281356 -440,4.0,4.0,4.089980824135861,-12.190647245055052 -440,4.0,6.0,-2.954020035961983,7.449267916773697 -440,5.0,1.0,-1.6861448807654689,5.116477495334806 -440,5.0,3.0,-6.413123730174556,22.31120356548123 -440,5.0,5.0,22.341631269034565,-82.8291478657789 -440,5.0,6.0,-3.590210423980992,11.02611441072814 -440,5.0,7.0,-6.289308176100628,22.0125786163522 -440,5.0,8.0,0.0,4.915840805411357 -440,5.0,9.0,0.0,1.8561002591115965 -440,5.0,27.0,-4.362844058012917,15.463571542897856 -440,6.0,4.0,-2.954020035961983,7.449267916773697 -440,6.0,5.0,-3.590210423980992,11.02611441072814 -440,6.0,6.0,6.544230459942975,-18.45668232750184 -440,7.0,5.0,-6.289308176100628,22.0125786163522 -440,7.0,7.0,7.733287237496075,-26.527493274828448 -440,7.0,27.0,-1.4439790613954469,4.540814658476248 -440,8.0,5.0,0.0,4.915840805411357 -440,8.0,8.0,0.0,-18.706293706293707 -440,8.0,9.0,0.0,9.090909090909092 -440,8.0,10.0,0.0,4.807692307692308 -440,9.0,5.0,0.0,1.8561002591115965 -440,9.0,8.0,0.0,9.090909090909092 -440,9.0,9.0,13.462042814524237,-41.3837606675224 -440,9.0,16.0,-3.956039125715353,10.317447719844054 -440,9.0,19.0,-1.7848303152666305,3.98535828943083 -440,9.0,20.0,-5.101853820159654,10.98071411292983 -440,9.0,21.0,-2.619319553382597,5.400770303329455 -440,10.0,8.0,0.0,4.807692307692308 -440,10.0,10.0,0.0,-4.807692307692308 -440,11.0,3.0,0.0,4.191255364806866 -440,11.0,11.0,6.573961583776156,-24.424167659260668 -440,11.0,12.0,0.0,7.142857142857143 -440,11.0,13.0,-1.5265676088395577,3.1734252729654173 -440,11.0,14.0,-3.0953961826564296,6.097275864326261 -440,11.0,15.0,-1.9519977922801688,4.104359379111847 -440,12.0,11.0,0.0,7.142857142857143 -440,12.0,12.0,0.0,-7.142857142857143 -440,13.0,11.0,-1.5265676088395577,3.1734252729654173 -440,13.0,13.0,4.01751987283902,-5.424299332335067 -440,13.0,14.0,-2.4909522639994623,2.250874059369649 -440,14.0,11.0,-3.0953961826564296,6.097275864326261 -440,14.0,13.0,-2.4909522639994623,2.250874059369649 -440,14.0,14.0,9.365498545964757,-16.01163373210796 -440,14.0,17.0,-1.8108011504072024,3.687418931630696 -440,14.0,22.0,-1.9683489489016612,3.976064876781356 -440,15.0,11.0,-1.9519977922801688,4.104359379111847 -440,15.0,15.0,3.271064728633931,-8.94513365126506 -440,15.0,16.0,-1.3190669363537617,4.8407742721532125 -440,16.0,9.0,-3.956039125715353,10.317447719844054 -440,16.0,15.0,-1.3190669363537617,4.8407742721532125 -440,16.0,16.0,5.275106062069114,-15.158221991997266 -440,17.0,14.0,-1.8108011504072024,3.687418931630696 -440,17.0,17.0,4.886487584415919,-9.906177730909668 -440,17.0,18.0,-3.0756864340087167,6.218758799278971 -440,18.0,17.0,-3.0756864340087167,6.218758799278971 -440,18.0,18.0,8.958039375185187,-17.98346468163191 -440,18.0,19.0,-5.88235294117647,11.76470588235294 -440,19.0,9.0,-1.7848303152666305,3.98535828943083 -440,19.0,18.0,-5.88235294117647,11.76470588235294 -440,19.0,19.0,7.6671832564431,-15.75006417178377 -440,20.0,9.0,-5.101853820159654,10.98071411292983 -440,20.0,20.0,21.876495189895888,-45.10843276170355 -440,20.0,21.0,-16.774641369736234,34.127718648773715 -440,21.0,9.0,-2.619319553382597,5.400770303329455 -440,21.0,20.0,-16.774641369736234,34.127718648773715 -440,21.0,21.0,21.93449907537439,-43.48289181517921 -440,21.0,23.0,-2.5405381522555563,3.95440286307604 -440,22.0,14.0,-1.9683489489016612,3.976064876781356 -440,22.0,22.0,3.429754555384988,-6.965303617315433 -440,22.0,23.0,-1.4614056064833263,2.989238740534077 -440,23.0,21.0,-2.5405381522555563,3.95440286307604 -440,23.0,22.0,-1.4614056064833263,2.989238740534077 -440,23.0,23.0,5.311836702613133,-9.188263657315172 -440,23.0,24.0,-1.3098929438742493,2.287622053705056 -440,24.0,23.0,-1.3098929438742493,2.287622053705056 -440,24.0,24.0,4.495715080321987,-7.864978761969621 -440,24.0,25.0,-1.2165301194494855,1.8171440463475024 -440,24.0,26.0,-1.9692920169982515,3.760212661917064 -440,25.0,24.0,-1.2165301194494855,1.8171440463475024 -440,25.0,25.0,1.2165301194494855,-1.8171440463475024 -440,26.0,24.0,-1.9692920169982515,3.760212661917064 -440,26.0,26.0,3.652281470778589,-9.46044252232512 -440,26.0,27.0,0.0,2.608731947574922 -440,26.0,28.0,-0.99553355095268,1.881005840357816 -440,26.0,29.0,-0.6874559028276572,1.293971494797717 -440,27.0,5.0,-4.362844058012917,15.463571542897856 -440,27.0,7.0,-1.4439790613954469,4.540814658476248 -440,27.0,26.0,0.0,2.608731947574922 -440,27.0,27.0,5.806823119408364,-22.67145722159613 -440,28.0,26.0,-0.99553355095268,1.881005840357816 -440,28.0,28.0,1.9075867579849564,-3.604364401207048 -440,28.0,29.0,-0.9120532070322764,1.7233585608492326 -440,29.0,26.0,-0.6874559028276572,1.293971494797717 -440,29.0,28.0,-0.9120532070322764,1.7233585608492326 -440,29.0,29.0,1.5995091098599337,-3.0173300556469496 -441,0.0,0.0,6.765516048652632,-21.23160167089863 -441,0.0,1.0,-5.224646179885656,15.646726840803398 -441,0.0,2.0,-1.5408698687669766,5.631674830095234 -441,1.0,0.0,-5.224646179885656,15.646726840803398 -441,1.0,1.0,9.75228216552403,-30.648662892676068 -441,1.0,3.0,-1.7055303166990268,5.1973792282565086 -441,1.0,4.0,-1.1359607881738778,4.772479328281356 -441,1.0,5.0,-1.6861448807654689,5.116477495334806 -441,2.0,0.0,-1.5408698687669766,5.631674830095234 -441,2.0,2.0,9.736318911079088,-29.13794745915803 -441,2.0,3.0,-8.19544904231211,23.5308726290628 -441,3.0,1.0,-1.7055303166990268,5.1973792282565086 -441,3.0,2.0,-8.19544904231211,23.5308726290628 -441,3.0,3.0,16.314103089185693,-55.509410535254254 -441,3.0,5.0,-6.413123730174556,22.31120356548123 -441,3.0,11.0,0.0,4.191255364806866 -441,4.0,1.0,-1.1359607881738778,4.772479328281356 -441,4.0,4.0,4.089980824135861,-12.190647245055052 -441,4.0,6.0,-2.954020035961983,7.449267916773697 -441,5.0,1.0,-1.6861448807654689,5.116477495334806 -441,5.0,3.0,-6.413123730174556,22.31120356548123 -441,5.0,5.0,22.341631269034565,-82.8291478657789 -441,5.0,6.0,-3.590210423980992,11.02611441072814 -441,5.0,7.0,-6.289308176100628,22.0125786163522 -441,5.0,8.0,0.0,4.915840805411357 -441,5.0,9.0,0.0,1.8561002591115965 -441,5.0,27.0,-4.362844058012917,15.463571542897856 -441,6.0,4.0,-2.954020035961983,7.449267916773697 -441,6.0,5.0,-3.590210423980992,11.02611441072814 -441,6.0,6.0,6.544230459942975,-18.45668232750184 -441,7.0,5.0,-6.289308176100628,22.0125786163522 -441,7.0,7.0,7.733287237496075,-26.527493274828448 -441,7.0,27.0,-1.4439790613954469,4.540814658476248 -441,8.0,5.0,0.0,4.915840805411357 -441,8.0,8.0,0.0,-18.706293706293707 -441,8.0,9.0,0.0,9.090909090909092 -441,8.0,10.0,0.0,4.807692307692308 -441,9.0,5.0,0.0,1.8561002591115965 -441,9.0,8.0,0.0,9.090909090909092 -441,9.0,9.0,13.462042814524237,-41.3837606675224 -441,9.0,16.0,-3.956039125715353,10.317447719844054 -441,9.0,19.0,-1.7848303152666305,3.98535828943083 -441,9.0,20.0,-5.101853820159654,10.98071411292983 -441,9.0,21.0,-2.619319553382597,5.400770303329455 -441,10.0,8.0,0.0,4.807692307692308 -441,10.0,10.0,0.0,-4.807692307692308 -441,11.0,3.0,0.0,4.191255364806866 -441,11.0,11.0,6.573961583776156,-24.424167659260668 -441,11.0,12.0,0.0,7.142857142857143 -441,11.0,13.0,-1.5265676088395577,3.1734252729654173 -441,11.0,14.0,-3.0953961826564296,6.097275864326261 -441,11.0,15.0,-1.9519977922801688,4.104359379111847 -441,12.0,11.0,0.0,7.142857142857143 -441,12.0,12.0,0.0,-7.142857142857143 -441,13.0,11.0,-1.5265676088395577,3.1734252729654173 -441,13.0,13.0,4.01751987283902,-5.424299332335067 -441,13.0,14.0,-2.4909522639994623,2.250874059369649 -441,14.0,11.0,-3.0953961826564296,6.097275864326261 -441,14.0,13.0,-2.4909522639994623,2.250874059369649 -441,14.0,14.0,9.365498545964757,-16.01163373210796 -441,14.0,17.0,-1.8108011504072024,3.687418931630696 -441,14.0,22.0,-1.9683489489016612,3.976064876781356 -441,15.0,11.0,-1.9519977922801688,4.104359379111847 -441,15.0,15.0,3.271064728633931,-8.94513365126506 -441,15.0,16.0,-1.3190669363537617,4.8407742721532125 -441,16.0,9.0,-3.956039125715353,10.317447719844054 -441,16.0,15.0,-1.3190669363537617,4.8407742721532125 -441,16.0,16.0,5.275106062069114,-15.158221991997266 -441,17.0,14.0,-1.8108011504072024,3.687418931630696 -441,17.0,17.0,4.886487584415919,-9.906177730909668 -441,17.0,18.0,-3.0756864340087167,6.218758799278971 -441,18.0,17.0,-3.0756864340087167,6.218758799278971 -441,18.0,18.0,8.958039375185187,-17.98346468163191 -441,18.0,19.0,-5.88235294117647,11.76470588235294 -441,19.0,9.0,-1.7848303152666305,3.98535828943083 -441,19.0,18.0,-5.88235294117647,11.76470588235294 -441,19.0,19.0,7.6671832564431,-15.75006417178377 -441,20.0,9.0,-5.101853820159654,10.98071411292983 -441,20.0,20.0,21.876495189895888,-45.10843276170355 -441,20.0,21.0,-16.774641369736234,34.127718648773715 -441,21.0,9.0,-2.619319553382597,5.400770303329455 -441,21.0,20.0,-16.774641369736234,34.127718648773715 -441,21.0,21.0,21.93449907537439,-43.48289181517921 -441,21.0,23.0,-2.5405381522555563,3.95440286307604 -441,22.0,14.0,-1.9683489489016612,3.976064876781356 -441,22.0,22.0,3.429754555384988,-6.965303617315433 -441,22.0,23.0,-1.4614056064833263,2.989238740534077 -441,23.0,21.0,-2.5405381522555563,3.95440286307604 -441,23.0,22.0,-1.4614056064833263,2.989238740534077 -441,23.0,23.0,5.311836702613133,-9.188263657315172 -441,23.0,24.0,-1.3098929438742493,2.287622053705056 -441,24.0,23.0,-1.3098929438742493,2.287622053705056 -441,24.0,24.0,4.495715080321987,-7.864978761969621 -441,24.0,25.0,-1.2165301194494855,1.8171440463475024 -441,24.0,26.0,-1.9692920169982515,3.760212661917064 -441,25.0,24.0,-1.2165301194494855,1.8171440463475024 -441,25.0,25.0,1.2165301194494855,-1.8171440463475024 -441,26.0,24.0,-1.9692920169982515,3.760212661917064 -441,26.0,26.0,3.652281470778589,-9.46044252232512 -441,26.0,27.0,0.0,2.608731947574922 -441,26.0,28.0,-0.99553355095268,1.881005840357816 -441,26.0,29.0,-0.6874559028276572,1.293971494797717 -441,27.0,5.0,-4.362844058012917,15.463571542897856 -441,27.0,7.0,-1.4439790613954469,4.540814658476248 -441,27.0,26.0,0.0,2.608731947574922 -441,27.0,27.0,5.806823119408364,-22.67145722159613 -441,28.0,26.0,-0.99553355095268,1.881005840357816 -441,28.0,28.0,1.9075867579849564,-3.604364401207048 -441,28.0,29.0,-0.9120532070322764,1.7233585608492326 -441,29.0,26.0,-0.6874559028276572,1.293971494797717 -441,29.0,28.0,-0.9120532070322764,1.7233585608492326 -441,29.0,29.0,1.5995091098599337,-3.0173300556469496 -442,0.0,0.0,6.765516048652632,-21.23160167089863 -442,0.0,1.0,-5.224646179885656,15.646726840803398 -442,0.0,2.0,-1.5408698687669766,5.631674830095234 -442,1.0,0.0,-5.224646179885656,15.646726840803398 -442,1.0,1.0,8.046751848825002,-25.46968366441956 -442,1.0,4.0,-1.1359607881738778,4.772479328281356 -442,1.0,5.0,-1.6861448807654689,5.116477495334806 -442,2.0,0.0,-1.5408698687669766,5.631674830095234 -442,2.0,2.0,9.736318911079088,-29.13794745915803 -442,2.0,3.0,-8.19544904231211,23.5308726290628 -442,3.0,2.0,-8.19544904231211,23.5308726290628 -442,3.0,3.0,14.608572772486664,-50.33043130699775 -442,3.0,5.0,-6.413123730174556,22.31120356548123 -442,3.0,11.0,0.0,4.191255364806866 -442,4.0,1.0,-1.1359607881738778,4.772479328281356 -442,4.0,4.0,4.089980824135861,-12.190647245055052 -442,4.0,6.0,-2.954020035961983,7.449267916773697 -442,5.0,1.0,-1.6861448807654689,5.116477495334806 -442,5.0,3.0,-6.413123730174556,22.31120356548123 -442,5.0,5.0,22.341631269034565,-82.8291478657789 -442,5.0,6.0,-3.590210423980992,11.02611441072814 -442,5.0,7.0,-6.289308176100628,22.0125786163522 -442,5.0,8.0,0.0,4.915840805411357 -442,5.0,9.0,0.0,1.8561002591115965 -442,5.0,27.0,-4.362844058012917,15.463571542897856 -442,6.0,4.0,-2.954020035961983,7.449267916773697 -442,6.0,5.0,-3.590210423980992,11.02611441072814 -442,6.0,6.0,6.544230459942975,-18.45668232750184 -442,7.0,5.0,-6.289308176100628,22.0125786163522 -442,7.0,7.0,7.733287237496075,-26.527493274828448 -442,7.0,27.0,-1.4439790613954469,4.540814658476248 -442,8.0,5.0,0.0,4.915840805411357 -442,8.0,8.0,0.0,-18.706293706293707 -442,8.0,9.0,0.0,9.090909090909092 -442,8.0,10.0,0.0,4.807692307692308 -442,9.0,5.0,0.0,1.8561002591115965 -442,9.0,8.0,0.0,9.090909090909092 -442,9.0,9.0,13.462042814524237,-41.3837606675224 -442,9.0,16.0,-3.956039125715353,10.317447719844054 -442,9.0,19.0,-1.7848303152666305,3.98535828943083 -442,9.0,20.0,-5.101853820159654,10.98071411292983 -442,9.0,21.0,-2.619319553382597,5.400770303329455 -442,10.0,8.0,0.0,4.807692307692308 -442,10.0,10.0,0.0,-4.807692307692308 -442,11.0,3.0,0.0,4.191255364806866 -442,11.0,11.0,6.573961583776156,-24.424167659260668 -442,11.0,12.0,0.0,7.142857142857143 -442,11.0,13.0,-1.5265676088395577,3.1734252729654173 -442,11.0,14.0,-3.0953961826564296,6.097275864326261 -442,11.0,15.0,-1.9519977922801688,4.104359379111847 -442,12.0,11.0,0.0,7.142857142857143 -442,12.0,12.0,0.0,-7.142857142857143 -442,13.0,11.0,-1.5265676088395577,3.1734252729654173 -442,13.0,13.0,4.01751987283902,-5.424299332335067 -442,13.0,14.0,-2.4909522639994623,2.250874059369649 -442,14.0,11.0,-3.0953961826564296,6.097275864326261 -442,14.0,13.0,-2.4909522639994623,2.250874059369649 -442,14.0,14.0,9.365498545964757,-16.01163373210796 -442,14.0,17.0,-1.8108011504072024,3.687418931630696 -442,14.0,22.0,-1.9683489489016612,3.976064876781356 -442,15.0,11.0,-1.9519977922801688,4.104359379111847 -442,15.0,15.0,3.271064728633931,-8.94513365126506 -442,15.0,16.0,-1.3190669363537617,4.8407742721532125 -442,16.0,9.0,-3.956039125715353,10.317447719844054 -442,16.0,15.0,-1.3190669363537617,4.8407742721532125 -442,16.0,16.0,5.275106062069114,-15.158221991997266 -442,17.0,14.0,-1.8108011504072024,3.687418931630696 -442,17.0,17.0,4.886487584415919,-9.906177730909668 -442,17.0,18.0,-3.0756864340087167,6.218758799278971 -442,18.0,17.0,-3.0756864340087167,6.218758799278971 -442,18.0,18.0,8.958039375185187,-17.98346468163191 -442,18.0,19.0,-5.88235294117647,11.76470588235294 -442,19.0,9.0,-1.7848303152666305,3.98535828943083 -442,19.0,18.0,-5.88235294117647,11.76470588235294 -442,19.0,19.0,7.6671832564431,-15.75006417178377 -442,20.0,9.0,-5.101853820159654,10.98071411292983 -442,20.0,20.0,21.876495189895888,-45.10843276170355 -442,20.0,21.0,-16.774641369736234,34.127718648773715 -442,21.0,9.0,-2.619319553382597,5.400770303329455 -442,21.0,20.0,-16.774641369736234,34.127718648773715 -442,21.0,21.0,21.93449907537439,-43.48289181517921 -442,21.0,23.0,-2.5405381522555563,3.95440286307604 -442,22.0,14.0,-1.9683489489016612,3.976064876781356 -442,22.0,22.0,3.429754555384988,-6.965303617315433 -442,22.0,23.0,-1.4614056064833263,2.989238740534077 -442,23.0,21.0,-2.5405381522555563,3.95440286307604 -442,23.0,22.0,-1.4614056064833263,2.989238740534077 -442,23.0,23.0,5.311836702613133,-9.188263657315172 -442,23.0,24.0,-1.3098929438742493,2.287622053705056 -442,24.0,23.0,-1.3098929438742493,2.287622053705056 -442,24.0,24.0,4.495715080321987,-7.864978761969621 -442,24.0,25.0,-1.2165301194494855,1.8171440463475024 -442,24.0,26.0,-1.9692920169982515,3.760212661917064 -442,25.0,24.0,-1.2165301194494855,1.8171440463475024 -442,25.0,25.0,1.2165301194494855,-1.8171440463475024 -442,26.0,24.0,-1.9692920169982515,3.760212661917064 -442,26.0,26.0,3.652281470778589,-9.46044252232512 -442,26.0,27.0,0.0,2.608731947574922 -442,26.0,28.0,-0.99553355095268,1.881005840357816 -442,26.0,29.0,-0.6874559028276572,1.293971494797717 -442,27.0,5.0,-4.362844058012917,15.463571542897856 -442,27.0,7.0,-1.4439790613954469,4.540814658476248 -442,27.0,26.0,0.0,2.608731947574922 -442,27.0,27.0,5.806823119408364,-22.67145722159613 -442,28.0,26.0,-0.99553355095268,1.881005840357816 -442,28.0,28.0,1.9075867579849564,-3.604364401207048 -442,28.0,29.0,-0.9120532070322764,1.7233585608492326 -442,29.0,26.0,-0.6874559028276572,1.293971494797717 -442,29.0,28.0,-0.9120532070322764,1.7233585608492326 -442,29.0,29.0,1.5995091098599337,-3.0173300556469496 -443,0.0,0.0,6.765516048652632,-21.23160167089863 -443,0.0,1.0,-5.224646179885656,15.646726840803398 -443,0.0,2.0,-1.5408698687669766,5.631674830095234 -443,1.0,0.0,-5.224646179885656,15.646726840803398 -443,1.0,1.0,9.75228216552403,-30.648662892676068 -443,1.0,3.0,-1.7055303166990268,5.1973792282565086 -443,1.0,4.0,-1.1359607881738778,4.772479328281356 -443,1.0,5.0,-1.6861448807654689,5.116477495334806 -443,2.0,0.0,-1.5408698687669766,5.631674830095234 -443,2.0,2.0,9.736318911079088,-29.13794745915803 -443,2.0,3.0,-8.19544904231211,23.5308726290628 -443,3.0,1.0,-1.7055303166990268,5.1973792282565086 -443,3.0,2.0,-8.19544904231211,23.5308726290628 -443,3.0,3.0,16.314103089185693,-55.509410535254254 -443,3.0,5.0,-6.413123730174556,22.31120356548123 -443,3.0,11.0,0.0,4.191255364806866 -443,4.0,1.0,-1.1359607881738778,4.772479328281356 -443,4.0,4.0,4.089980824135861,-12.190647245055052 -443,4.0,6.0,-2.954020035961983,7.449267916773697 -443,5.0,1.0,-1.6861448807654689,5.116477495334806 -443,5.0,3.0,-6.413123730174556,22.31120356548123 -443,5.0,5.0,22.341631269034565,-82.8291478657789 -443,5.0,6.0,-3.590210423980992,11.02611441072814 -443,5.0,7.0,-6.289308176100628,22.0125786163522 -443,5.0,8.0,0.0,4.915840805411357 -443,5.0,9.0,0.0,1.8561002591115965 -443,5.0,27.0,-4.362844058012917,15.463571542897856 -443,6.0,4.0,-2.954020035961983,7.449267916773697 -443,6.0,5.0,-3.590210423980992,11.02611441072814 -443,6.0,6.0,6.544230459942975,-18.45668232750184 -443,7.0,5.0,-6.289308176100628,22.0125786163522 -443,7.0,7.0,7.733287237496075,-26.527493274828448 -443,7.0,27.0,-1.4439790613954469,4.540814658476248 -443,8.0,5.0,0.0,4.915840805411357 -443,8.0,8.0,0.0,-18.706293706293707 -443,8.0,9.0,0.0,9.090909090909092 -443,8.0,10.0,0.0,4.807692307692308 -443,9.0,5.0,0.0,1.8561002591115965 -443,9.0,8.0,0.0,9.090909090909092 -443,9.0,9.0,13.462042814524237,-41.3837606675224 -443,9.0,16.0,-3.956039125715353,10.317447719844054 -443,9.0,19.0,-1.7848303152666305,3.98535828943083 -443,9.0,20.0,-5.101853820159654,10.98071411292983 -443,9.0,21.0,-2.619319553382597,5.400770303329455 -443,10.0,8.0,0.0,4.807692307692308 -443,10.0,10.0,0.0,-4.807692307692308 -443,11.0,3.0,0.0,4.191255364806866 -443,11.0,11.0,6.573961583776156,-24.424167659260668 -443,11.0,12.0,0.0,7.142857142857143 -443,11.0,13.0,-1.5265676088395577,3.1734252729654173 -443,11.0,14.0,-3.0953961826564296,6.097275864326261 -443,11.0,15.0,-1.9519977922801688,4.104359379111847 -443,12.0,11.0,0.0,7.142857142857143 -443,12.0,12.0,0.0,-7.142857142857143 -443,13.0,11.0,-1.5265676088395577,3.1734252729654173 -443,13.0,13.0,4.01751987283902,-5.424299332335067 -443,13.0,14.0,-2.4909522639994623,2.250874059369649 -443,14.0,11.0,-3.0953961826564296,6.097275864326261 -443,14.0,13.0,-2.4909522639994623,2.250874059369649 -443,14.0,14.0,9.365498545964757,-16.01163373210796 -443,14.0,17.0,-1.8108011504072024,3.687418931630696 -443,14.0,22.0,-1.9683489489016612,3.976064876781356 -443,15.0,11.0,-1.9519977922801688,4.104359379111847 -443,15.0,15.0,3.271064728633931,-8.94513365126506 -443,15.0,16.0,-1.3190669363537617,4.8407742721532125 -443,16.0,9.0,-3.956039125715353,10.317447719844054 -443,16.0,15.0,-1.3190669363537617,4.8407742721532125 -443,16.0,16.0,5.275106062069114,-15.158221991997266 -443,17.0,14.0,-1.8108011504072024,3.687418931630696 -443,17.0,17.0,4.886487584415919,-9.906177730909668 -443,17.0,18.0,-3.0756864340087167,6.218758799278971 -443,18.0,17.0,-3.0756864340087167,6.218758799278971 -443,18.0,18.0,8.958039375185187,-17.98346468163191 -443,18.0,19.0,-5.88235294117647,11.76470588235294 -443,19.0,9.0,-1.7848303152666305,3.98535828943083 -443,19.0,18.0,-5.88235294117647,11.76470588235294 -443,19.0,19.0,7.6671832564431,-15.75006417178377 -443,20.0,9.0,-5.101853820159654,10.98071411292983 -443,20.0,20.0,21.876495189895888,-45.10843276170355 -443,20.0,21.0,-16.774641369736234,34.127718648773715 -443,21.0,9.0,-2.619319553382597,5.400770303329455 -443,21.0,20.0,-16.774641369736234,34.127718648773715 -443,21.0,21.0,21.93449907537439,-43.48289181517921 -443,21.0,23.0,-2.5405381522555563,3.95440286307604 -443,22.0,14.0,-1.9683489489016612,3.976064876781356 -443,22.0,22.0,3.429754555384988,-6.965303617315433 -443,22.0,23.0,-1.4614056064833263,2.989238740534077 -443,23.0,21.0,-2.5405381522555563,3.95440286307604 -443,23.0,22.0,-1.4614056064833263,2.989238740534077 -443,23.0,23.0,5.311836702613133,-9.188263657315172 -443,23.0,24.0,-1.3098929438742493,2.287622053705056 -443,24.0,23.0,-1.3098929438742493,2.287622053705056 -443,24.0,24.0,4.495715080321987,-7.864978761969621 -443,24.0,25.0,-1.2165301194494855,1.8171440463475024 -443,24.0,26.0,-1.9692920169982515,3.760212661917064 -443,25.0,24.0,-1.2165301194494855,1.8171440463475024 -443,25.0,25.0,1.2165301194494855,-1.8171440463475024 -443,26.0,24.0,-1.9692920169982515,3.760212661917064 -443,26.0,26.0,3.652281470778589,-9.46044252232512 -443,26.0,27.0,0.0,2.608731947574922 -443,26.0,28.0,-0.99553355095268,1.881005840357816 -443,26.0,29.0,-0.6874559028276572,1.293971494797717 -443,27.0,5.0,-4.362844058012917,15.463571542897856 -443,27.0,7.0,-1.4439790613954469,4.540814658476248 -443,27.0,26.0,0.0,2.608731947574922 -443,27.0,27.0,5.806823119408364,-22.67145722159613 -443,28.0,26.0,-0.99553355095268,1.881005840357816 -443,28.0,28.0,1.9075867579849564,-3.604364401207048 -443,28.0,29.0,-0.9120532070322764,1.7233585608492326 -443,29.0,26.0,-0.6874559028276572,1.293971494797717 -443,29.0,28.0,-0.9120532070322764,1.7233585608492326 -443,29.0,29.0,1.5995091098599337,-3.0173300556469496 -444,0.0,0.0,6.765516048652632,-21.23160167089863 -444,0.0,1.0,-5.224646179885656,15.646726840803398 -444,0.0,2.0,-1.5408698687669766,5.631674830095234 -444,1.0,0.0,-5.224646179885656,15.646726840803398 -444,1.0,1.0,9.75228216552403,-30.648662892676068 -444,1.0,3.0,-1.7055303166990268,5.1973792282565086 -444,1.0,4.0,-1.1359607881738778,4.772479328281356 -444,1.0,5.0,-1.6861448807654689,5.116477495334806 -444,2.0,0.0,-1.5408698687669766,5.631674830095234 -444,2.0,2.0,9.736318911079088,-29.13794745915803 -444,2.0,3.0,-8.19544904231211,23.5308726290628 -444,3.0,1.0,-1.7055303166990268,5.1973792282565086 -444,3.0,2.0,-8.19544904231211,23.5308726290628 -444,3.0,3.0,16.314103089185693,-55.509410535254254 -444,3.0,5.0,-6.413123730174556,22.31120356548123 -444,3.0,11.0,0.0,4.191255364806866 -444,4.0,1.0,-1.1359607881738778,4.772479328281356 -444,4.0,4.0,4.089980824135861,-12.190647245055052 -444,4.0,6.0,-2.954020035961983,7.449267916773697 -444,5.0,1.0,-1.6861448807654689,5.116477495334806 -444,5.0,3.0,-6.413123730174556,22.31120356548123 -444,5.0,5.0,22.341631269034565,-82.8291478657789 -444,5.0,6.0,-3.590210423980992,11.02611441072814 -444,5.0,7.0,-6.289308176100628,22.0125786163522 -444,5.0,8.0,0.0,4.915840805411357 -444,5.0,9.0,0.0,1.8561002591115965 -444,5.0,27.0,-4.362844058012917,15.463571542897856 -444,6.0,4.0,-2.954020035961983,7.449267916773697 -444,6.0,5.0,-3.590210423980992,11.02611441072814 -444,6.0,6.0,6.544230459942975,-18.45668232750184 -444,7.0,5.0,-6.289308176100628,22.0125786163522 -444,7.0,7.0,7.733287237496075,-26.527493274828448 -444,7.0,27.0,-1.4439790613954469,4.540814658476248 -444,8.0,5.0,0.0,4.915840805411357 -444,8.0,8.0,0.0,-18.706293706293707 -444,8.0,9.0,0.0,9.090909090909092 -444,8.0,10.0,0.0,4.807692307692308 -444,9.0,5.0,0.0,1.8561002591115965 -444,9.0,8.0,0.0,9.090909090909092 -444,9.0,9.0,13.462042814524237,-41.3837606675224 -444,9.0,16.0,-3.956039125715353,10.317447719844054 -444,9.0,19.0,-1.7848303152666305,3.98535828943083 -444,9.0,20.0,-5.101853820159654,10.98071411292983 -444,9.0,21.0,-2.619319553382597,5.400770303329455 -444,10.0,8.0,0.0,4.807692307692308 -444,10.0,10.0,0.0,-4.807692307692308 -444,11.0,3.0,0.0,4.191255364806866 -444,11.0,11.0,6.573961583776156,-24.424167659260668 -444,11.0,12.0,0.0,7.142857142857143 -444,11.0,13.0,-1.5265676088395577,3.1734252729654173 -444,11.0,14.0,-3.0953961826564296,6.097275864326261 -444,11.0,15.0,-1.9519977922801688,4.104359379111847 -444,12.0,11.0,0.0,7.142857142857143 -444,12.0,12.0,0.0,-7.142857142857143 -444,13.0,11.0,-1.5265676088395577,3.1734252729654173 -444,13.0,13.0,4.01751987283902,-5.424299332335067 -444,13.0,14.0,-2.4909522639994623,2.250874059369649 -444,14.0,11.0,-3.0953961826564296,6.097275864326261 -444,14.0,13.0,-2.4909522639994623,2.250874059369649 -444,14.0,14.0,9.365498545964757,-16.01163373210796 -444,14.0,17.0,-1.8108011504072024,3.687418931630696 -444,14.0,22.0,-1.9683489489016612,3.976064876781356 -444,15.0,11.0,-1.9519977922801688,4.104359379111847 -444,15.0,15.0,3.271064728633931,-8.94513365126506 -444,15.0,16.0,-1.3190669363537617,4.8407742721532125 -444,16.0,9.0,-3.956039125715353,10.317447719844054 -444,16.0,15.0,-1.3190669363537617,4.8407742721532125 -444,16.0,16.0,5.275106062069114,-15.158221991997266 -444,17.0,14.0,-1.8108011504072024,3.687418931630696 -444,17.0,17.0,4.886487584415919,-9.906177730909668 -444,17.0,18.0,-3.0756864340087167,6.218758799278971 -444,18.0,17.0,-3.0756864340087167,6.218758799278971 -444,18.0,18.0,8.958039375185187,-17.98346468163191 -444,18.0,19.0,-5.88235294117647,11.76470588235294 -444,19.0,9.0,-1.7848303152666305,3.98535828943083 -444,19.0,18.0,-5.88235294117647,11.76470588235294 -444,19.0,19.0,7.6671832564431,-15.75006417178377 -444,20.0,9.0,-5.101853820159654,10.98071411292983 -444,20.0,20.0,21.876495189895888,-45.10843276170355 -444,20.0,21.0,-16.774641369736234,34.127718648773715 -444,21.0,9.0,-2.619319553382597,5.400770303329455 -444,21.0,20.0,-16.774641369736234,34.127718648773715 -444,21.0,21.0,21.93449907537439,-43.48289181517921 -444,21.0,23.0,-2.5405381522555563,3.95440286307604 -444,22.0,14.0,-1.9683489489016612,3.976064876781356 -444,22.0,22.0,3.429754555384988,-6.965303617315433 -444,22.0,23.0,-1.4614056064833263,2.989238740534077 -444,23.0,21.0,-2.5405381522555563,3.95440286307604 -444,23.0,22.0,-1.4614056064833263,2.989238740534077 -444,23.0,23.0,5.311836702613133,-9.188263657315172 -444,23.0,24.0,-1.3098929438742493,2.287622053705056 -444,24.0,23.0,-1.3098929438742493,2.287622053705056 -444,24.0,24.0,4.495715080321987,-7.864978761969621 -444,24.0,25.0,-1.2165301194494855,1.8171440463475024 -444,24.0,26.0,-1.9692920169982515,3.760212661917064 -444,25.0,24.0,-1.2165301194494855,1.8171440463475024 -444,25.0,25.0,1.2165301194494855,-1.8171440463475024 -444,26.0,24.0,-1.9692920169982515,3.760212661917064 -444,26.0,26.0,3.652281470778589,-9.46044252232512 -444,26.0,27.0,0.0,2.608731947574922 -444,26.0,28.0,-0.99553355095268,1.881005840357816 -444,26.0,29.0,-0.6874559028276572,1.293971494797717 -444,27.0,5.0,-4.362844058012917,15.463571542897856 -444,27.0,7.0,-1.4439790613954469,4.540814658476248 -444,27.0,26.0,0.0,2.608731947574922 -444,27.0,27.0,5.806823119408364,-22.67145722159613 -444,28.0,26.0,-0.99553355095268,1.881005840357816 -444,28.0,28.0,1.9075867579849564,-3.604364401207048 -444,28.0,29.0,-0.9120532070322764,1.7233585608492326 -444,29.0,26.0,-0.6874559028276572,1.293971494797717 -444,29.0,28.0,-0.9120532070322764,1.7233585608492326 -444,29.0,29.0,1.5995091098599337,-3.0173300556469496 -445,0.0,0.0,6.765516048652632,-21.23160167089863 -445,0.0,1.0,-5.224646179885656,15.646726840803398 -445,0.0,2.0,-1.5408698687669766,5.631674830095234 -445,1.0,0.0,-5.224646179885656,15.646726840803398 -445,1.0,1.0,9.75228216552403,-30.648662892676068 -445,1.0,3.0,-1.7055303166990268,5.1973792282565086 -445,1.0,4.0,-1.1359607881738778,4.772479328281356 -445,1.0,5.0,-1.6861448807654689,5.116477495334806 -445,2.0,0.0,-1.5408698687669766,5.631674830095234 -445,2.0,2.0,9.736318911079088,-29.13794745915803 -445,2.0,3.0,-8.19544904231211,23.5308726290628 -445,3.0,1.0,-1.7055303166990268,5.1973792282565086 -445,3.0,2.0,-8.19544904231211,23.5308726290628 -445,3.0,3.0,16.314103089185693,-55.509410535254254 -445,3.0,5.0,-6.413123730174556,22.31120356548123 -445,3.0,11.0,0.0,4.191255364806866 -445,4.0,1.0,-1.1359607881738778,4.772479328281356 -445,4.0,4.0,4.089980824135861,-12.190647245055052 -445,4.0,6.0,-2.954020035961983,7.449267916773697 -445,5.0,1.0,-1.6861448807654689,5.116477495334806 -445,5.0,3.0,-6.413123730174556,22.31120356548123 -445,5.0,5.0,22.341631269034565,-82.8291478657789 -445,5.0,6.0,-3.590210423980992,11.02611441072814 -445,5.0,7.0,-6.289308176100628,22.0125786163522 -445,5.0,8.0,0.0,4.915840805411357 -445,5.0,9.0,0.0,1.8561002591115965 -445,5.0,27.0,-4.362844058012917,15.463571542897856 -445,6.0,4.0,-2.954020035961983,7.449267916773697 -445,6.0,5.0,-3.590210423980992,11.02611441072814 -445,6.0,6.0,6.544230459942975,-18.45668232750184 -445,7.0,5.0,-6.289308176100628,22.0125786163522 -445,7.0,7.0,7.733287237496075,-26.527493274828448 -445,7.0,27.0,-1.4439790613954469,4.540814658476248 -445,8.0,5.0,0.0,4.915840805411357 -445,8.0,8.0,0.0,-18.706293706293707 -445,8.0,9.0,0.0,9.090909090909092 -445,8.0,10.0,0.0,4.807692307692308 -445,9.0,5.0,0.0,1.8561002591115965 -445,9.0,8.0,0.0,9.090909090909092 -445,9.0,9.0,13.462042814524237,-41.3837606675224 -445,9.0,16.0,-3.956039125715353,10.317447719844054 -445,9.0,19.0,-1.7848303152666305,3.98535828943083 -445,9.0,20.0,-5.101853820159654,10.98071411292983 -445,9.0,21.0,-2.619319553382597,5.400770303329455 -445,10.0,8.0,0.0,4.807692307692308 -445,10.0,10.0,0.0,-4.807692307692308 -445,11.0,3.0,0.0,4.191255364806866 -445,11.0,11.0,6.573961583776156,-24.424167659260668 -445,11.0,12.0,0.0,7.142857142857143 -445,11.0,13.0,-1.5265676088395577,3.1734252729654173 -445,11.0,14.0,-3.0953961826564296,6.097275864326261 -445,11.0,15.0,-1.9519977922801688,4.104359379111847 -445,12.0,11.0,0.0,7.142857142857143 -445,12.0,12.0,0.0,-7.142857142857143 -445,13.0,11.0,-1.5265676088395577,3.1734252729654173 -445,13.0,13.0,4.01751987283902,-5.424299332335067 -445,13.0,14.0,-2.4909522639994623,2.250874059369649 -445,14.0,11.0,-3.0953961826564296,6.097275864326261 -445,14.0,13.0,-2.4909522639994623,2.250874059369649 -445,14.0,14.0,9.365498545964757,-16.01163373210796 -445,14.0,17.0,-1.8108011504072024,3.687418931630696 -445,14.0,22.0,-1.9683489489016612,3.976064876781356 -445,15.0,11.0,-1.9519977922801688,4.104359379111847 -445,15.0,15.0,3.271064728633931,-8.94513365126506 -445,15.0,16.0,-1.3190669363537617,4.8407742721532125 -445,16.0,9.0,-3.956039125715353,10.317447719844054 -445,16.0,15.0,-1.3190669363537617,4.8407742721532125 -445,16.0,16.0,5.275106062069114,-15.158221991997266 -445,17.0,14.0,-1.8108011504072024,3.687418931630696 -445,17.0,17.0,4.886487584415919,-9.906177730909668 -445,17.0,18.0,-3.0756864340087167,6.218758799278971 -445,18.0,17.0,-3.0756864340087167,6.218758799278971 -445,18.0,18.0,8.958039375185187,-17.98346468163191 -445,18.0,19.0,-5.88235294117647,11.76470588235294 -445,19.0,9.0,-1.7848303152666305,3.98535828943083 -445,19.0,18.0,-5.88235294117647,11.76470588235294 -445,19.0,19.0,7.6671832564431,-15.75006417178377 -445,20.0,9.0,-5.101853820159654,10.98071411292983 -445,20.0,20.0,21.876495189895888,-45.10843276170355 -445,20.0,21.0,-16.774641369736234,34.127718648773715 -445,21.0,9.0,-2.619319553382597,5.400770303329455 -445,21.0,20.0,-16.774641369736234,34.127718648773715 -445,21.0,21.0,21.93449907537439,-43.48289181517921 -445,21.0,23.0,-2.5405381522555563,3.95440286307604 -445,22.0,14.0,-1.9683489489016612,3.976064876781356 -445,22.0,22.0,3.429754555384988,-6.965303617315433 -445,22.0,23.0,-1.4614056064833263,2.989238740534077 -445,23.0,21.0,-2.5405381522555563,3.95440286307604 -445,23.0,22.0,-1.4614056064833263,2.989238740534077 -445,23.0,23.0,5.311836702613133,-9.188263657315172 -445,23.0,24.0,-1.3098929438742493,2.287622053705056 -445,24.0,23.0,-1.3098929438742493,2.287622053705056 -445,24.0,24.0,4.495715080321987,-7.864978761969621 -445,24.0,25.0,-1.2165301194494855,1.8171440463475024 -445,24.0,26.0,-1.9692920169982515,3.760212661917064 -445,25.0,24.0,-1.2165301194494855,1.8171440463475024 -445,25.0,25.0,1.2165301194494855,-1.8171440463475024 -445,26.0,24.0,-1.9692920169982515,3.760212661917064 -445,26.0,26.0,3.652281470778589,-9.46044252232512 -445,26.0,27.0,0.0,2.608731947574922 -445,26.0,28.0,-0.99553355095268,1.881005840357816 -445,26.0,29.0,-0.6874559028276572,1.293971494797717 -445,27.0,5.0,-4.362844058012917,15.463571542897856 -445,27.0,7.0,-1.4439790613954469,4.540814658476248 -445,27.0,26.0,0.0,2.608731947574922 -445,27.0,27.0,5.806823119408364,-22.67145722159613 -445,28.0,26.0,-0.99553355095268,1.881005840357816 -445,28.0,28.0,1.9075867579849564,-3.604364401207048 -445,28.0,29.0,-0.9120532070322764,1.7233585608492326 -445,29.0,26.0,-0.6874559028276572,1.293971494797717 -445,29.0,28.0,-0.9120532070322764,1.7233585608492326 -445,29.0,29.0,1.5995091098599337,-3.0173300556469496 -446,0.0,0.0,6.765516048652632,-21.23160167089863 -446,0.0,1.0,-5.224646179885656,15.646726840803398 -446,0.0,2.0,-1.5408698687669766,5.631674830095234 -446,1.0,0.0,-5.224646179885656,15.646726840803398 -446,1.0,1.0,9.75228216552403,-30.648662892676068 -446,1.0,3.0,-1.7055303166990268,5.1973792282565086 -446,1.0,4.0,-1.1359607881738778,4.772479328281356 -446,1.0,5.0,-1.6861448807654689,5.116477495334806 -446,2.0,0.0,-1.5408698687669766,5.631674830095234 -446,2.0,2.0,9.736318911079088,-29.13794745915803 -446,2.0,3.0,-8.19544904231211,23.5308726290628 -446,3.0,1.0,-1.7055303166990268,5.1973792282565086 -446,3.0,2.0,-8.19544904231211,23.5308726290628 -446,3.0,3.0,16.314103089185693,-55.509410535254254 -446,3.0,5.0,-6.413123730174556,22.31120356548123 -446,3.0,11.0,0.0,4.191255364806866 -446,4.0,1.0,-1.1359607881738778,4.772479328281356 -446,4.0,4.0,4.089980824135861,-12.190647245055052 -446,4.0,6.0,-2.954020035961983,7.449267916773697 -446,5.0,1.0,-1.6861448807654689,5.116477495334806 -446,5.0,3.0,-6.413123730174556,22.31120356548123 -446,5.0,5.0,22.341631269034565,-77.80272577435625 -446,5.0,6.0,-3.590210423980992,11.02611441072814 -446,5.0,7.0,-6.289308176100628,22.0125786163522 -446,5.0,9.0,0.0,1.8561002591115965 -446,5.0,27.0,-4.362844058012917,15.463571542897856 -446,6.0,4.0,-2.954020035961983,7.449267916773697 -446,6.0,5.0,-3.590210423980992,11.02611441072814 -446,6.0,6.0,6.544230459942975,-18.45668232750184 -446,7.0,5.0,-6.289308176100628,22.0125786163522 -446,7.0,7.0,6.289308176100628,-22.0080786163522 -446,8.0,8.0,0.0,-13.8986013986014 -446,8.0,9.0,0.0,9.090909090909092 -446,8.0,10.0,0.0,4.807692307692308 -446,9.0,5.0,0.0,1.8561002591115965 -446,9.0,8.0,0.0,9.090909090909092 -446,9.0,9.0,13.462042814524237,-41.3837606675224 -446,9.0,16.0,-3.956039125715353,10.317447719844054 -446,9.0,19.0,-1.7848303152666305,3.98535828943083 -446,9.0,20.0,-5.101853820159654,10.98071411292983 -446,9.0,21.0,-2.619319553382597,5.400770303329455 -446,10.0,8.0,0.0,4.807692307692308 -446,10.0,10.0,0.0,-4.807692307692308 -446,11.0,3.0,0.0,4.191255364806866 -446,11.0,11.0,6.573961583776156,-24.424167659260668 -446,11.0,12.0,0.0,7.142857142857143 -446,11.0,13.0,-1.5265676088395577,3.1734252729654173 -446,11.0,14.0,-3.0953961826564296,6.097275864326261 -446,11.0,15.0,-1.9519977922801688,4.104359379111847 -446,12.0,11.0,0.0,7.142857142857143 -446,12.0,12.0,0.0,-7.142857142857143 -446,13.0,11.0,-1.5265676088395577,3.1734252729654173 -446,13.0,13.0,4.01751987283902,-5.424299332335067 -446,13.0,14.0,-2.4909522639994623,2.250874059369649 -446,14.0,11.0,-3.0953961826564296,6.097275864326261 -446,14.0,13.0,-2.4909522639994623,2.250874059369649 -446,14.0,14.0,9.365498545964757,-16.01163373210796 -446,14.0,17.0,-1.8108011504072024,3.687418931630696 -446,14.0,22.0,-1.9683489489016612,3.976064876781356 -446,15.0,11.0,-1.9519977922801688,4.104359379111847 -446,15.0,15.0,3.271064728633931,-8.94513365126506 -446,15.0,16.0,-1.3190669363537617,4.8407742721532125 -446,16.0,9.0,-3.956039125715353,10.317447719844054 -446,16.0,15.0,-1.3190669363537617,4.8407742721532125 -446,16.0,16.0,5.275106062069114,-15.158221991997266 -446,17.0,14.0,-1.8108011504072024,3.687418931630696 -446,17.0,17.0,1.8108011504072024,-3.687418931630696 -446,18.0,18.0,5.88235294117647,-11.76470588235294 -446,18.0,19.0,-5.88235294117647,11.76470588235294 -446,19.0,9.0,-1.7848303152666305,3.98535828943083 -446,19.0,18.0,-5.88235294117647,11.76470588235294 -446,19.0,19.0,7.6671832564431,-15.75006417178377 -446,20.0,9.0,-5.101853820159654,10.98071411292983 -446,20.0,20.0,21.876495189895888,-45.10843276170355 -446,20.0,21.0,-16.774641369736234,34.127718648773715 -446,21.0,9.0,-2.619319553382597,5.400770303329455 -446,21.0,20.0,-16.774641369736234,34.127718648773715 -446,21.0,21.0,21.93449907537439,-43.48289181517921 -446,21.0,23.0,-2.5405381522555563,3.95440286307604 -446,22.0,14.0,-1.9683489489016612,3.976064876781356 -446,22.0,22.0,3.429754555384988,-6.965303617315433 -446,22.0,23.0,-1.4614056064833263,2.989238740534077 -446,23.0,21.0,-2.5405381522555563,3.95440286307604 -446,23.0,22.0,-1.4614056064833263,2.989238740534077 -446,23.0,23.0,5.311836702613133,-9.188263657315172 -446,23.0,24.0,-1.3098929438742493,2.287622053705056 -446,24.0,23.0,-1.3098929438742493,2.287622053705056 -446,24.0,24.0,4.495715080321987,-7.864978761969621 -446,24.0,25.0,-1.2165301194494855,1.8171440463475024 -446,24.0,26.0,-1.9692920169982515,3.760212661917064 -446,25.0,24.0,-1.2165301194494855,1.8171440463475024 -446,25.0,25.0,1.2165301194494855,-1.8171440463475024 -446,26.0,24.0,-1.9692920169982515,3.760212661917064 -446,26.0,26.0,2.9648255679509314,-8.166471027527404 -446,26.0,27.0,0.0,2.608731947574922 -446,26.0,28.0,-0.99553355095268,1.881005840357816 -446,27.0,5.0,-4.362844058012917,15.463571542897856 -446,27.0,26.0,0.0,2.608731947574922 -446,27.0,27.0,4.362844058012917,-18.15204256311988 -446,28.0,26.0,-0.99553355095268,1.881005840357816 -446,28.0,28.0,1.9075867579849564,-3.604364401207048 -446,28.0,29.0,-0.9120532070322764,1.7233585608492326 -446,29.0,28.0,-0.9120532070322764,1.7233585608492326 -446,29.0,29.0,0.9120532070322764,-1.7233585608492326 -447,0.0,0.0,6.765516048652632,-21.23160167089863 -447,0.0,1.0,-5.224646179885656,15.646726840803398 -447,0.0,2.0,-1.5408698687669766,5.631674830095234 -447,1.0,0.0,-5.224646179885656,15.646726840803398 -447,1.0,1.0,9.75228216552403,-30.648662892676068 -447,1.0,3.0,-1.7055303166990268,5.1973792282565086 -447,1.0,4.0,-1.1359607881738778,4.772479328281356 -447,1.0,5.0,-1.6861448807654689,5.116477495334806 -447,2.0,0.0,-1.5408698687669766,5.631674830095234 -447,2.0,2.0,9.736318911079088,-29.13794745915803 -447,2.0,3.0,-8.19544904231211,23.5308726290628 -447,3.0,1.0,-1.7055303166990268,5.1973792282565086 -447,3.0,2.0,-8.19544904231211,23.5308726290628 -447,3.0,3.0,16.314103089185693,-55.509410535254254 -447,3.0,5.0,-6.413123730174556,22.31120356548123 -447,3.0,11.0,0.0,4.191255364806866 -447,4.0,1.0,-1.1359607881738778,4.772479328281356 -447,4.0,4.0,1.1359607881738778,-4.751579328281355 -447,5.0,1.0,-1.6861448807654689,5.116477495334806 -447,5.0,3.0,-6.413123730174556,22.31120356548123 -447,5.0,5.0,22.341631269034565,-82.8291478657789 -447,5.0,6.0,-3.590210423980992,11.02611441072814 -447,5.0,7.0,-6.289308176100628,22.0125786163522 -447,5.0,8.0,0.0,4.915840805411357 -447,5.0,9.0,0.0,1.8561002591115965 -447,5.0,27.0,-4.362844058012917,15.463571542897856 -447,6.0,5.0,-3.590210423980992,11.02611441072814 -447,6.0,6.0,3.590210423980992,-11.01761441072814 -447,7.0,5.0,-6.289308176100628,22.0125786163522 -447,7.0,7.0,7.733287237496075,-26.527493274828448 -447,7.0,27.0,-1.4439790613954469,4.540814658476248 -447,8.0,5.0,0.0,4.915840805411357 -447,8.0,8.0,0.0,-18.706293706293707 -447,8.0,9.0,0.0,9.090909090909092 -447,8.0,10.0,0.0,4.807692307692308 -447,9.0,5.0,0.0,1.8561002591115965 -447,9.0,8.0,0.0,9.090909090909092 -447,9.0,9.0,13.462042814524237,-41.3837606675224 -447,9.0,16.0,-3.956039125715353,10.317447719844054 -447,9.0,19.0,-1.7848303152666305,3.98535828943083 -447,9.0,20.0,-5.101853820159654,10.98071411292983 -447,9.0,21.0,-2.619319553382597,5.400770303329455 -447,10.0,8.0,0.0,4.807692307692308 -447,10.0,10.0,0.0,-4.807692307692308 -447,11.0,3.0,0.0,4.191255364806866 -447,11.0,11.0,3.478565401119727,-18.326891794934408 -447,11.0,12.0,0.0,7.142857142857143 -447,11.0,13.0,-1.5265676088395577,3.1734252729654173 -447,11.0,15.0,-1.9519977922801688,4.104359379111847 -447,12.0,11.0,0.0,7.142857142857143 -447,12.0,12.0,0.0,-7.142857142857143 -447,13.0,11.0,-1.5265676088395577,3.1734252729654173 -447,13.0,13.0,4.01751987283902,-5.424299332335067 -447,13.0,14.0,-2.4909522639994623,2.250874059369649 -447,14.0,13.0,-2.4909522639994623,2.250874059369649 -447,14.0,14.0,6.270102363308326,-9.9143578677817 -447,14.0,17.0,-1.8108011504072024,3.687418931630696 -447,14.0,22.0,-1.9683489489016612,3.976064876781356 -447,15.0,11.0,-1.9519977922801688,4.104359379111847 -447,15.0,15.0,3.271064728633931,-8.94513365126506 -447,15.0,16.0,-1.3190669363537617,4.8407742721532125 -447,16.0,9.0,-3.956039125715353,10.317447719844054 -447,16.0,15.0,-1.3190669363537617,4.8407742721532125 -447,16.0,16.0,5.275106062069114,-15.158221991997266 -447,17.0,14.0,-1.8108011504072024,3.687418931630696 -447,17.0,17.0,4.886487584415919,-9.906177730909668 -447,17.0,18.0,-3.0756864340087167,6.218758799278971 -447,18.0,17.0,-3.0756864340087167,6.218758799278971 -447,18.0,18.0,8.958039375185187,-17.98346468163191 -447,18.0,19.0,-5.88235294117647,11.76470588235294 -447,19.0,9.0,-1.7848303152666305,3.98535828943083 -447,19.0,18.0,-5.88235294117647,11.76470588235294 -447,19.0,19.0,7.6671832564431,-15.75006417178377 -447,20.0,9.0,-5.101853820159654,10.98071411292983 -447,20.0,20.0,21.876495189895888,-45.10843276170355 -447,20.0,21.0,-16.774641369736234,34.127718648773715 -447,21.0,9.0,-2.619319553382597,5.400770303329455 -447,21.0,20.0,-16.774641369736234,34.127718648773715 -447,21.0,21.0,21.93449907537439,-43.48289181517921 -447,21.0,23.0,-2.5405381522555563,3.95440286307604 -447,22.0,14.0,-1.9683489489016612,3.976064876781356 -447,22.0,22.0,1.9683489489016612,-3.976064876781356 -447,23.0,21.0,-2.5405381522555563,3.95440286307604 -447,23.0,23.0,3.850431096129806,-6.199024916781094 -447,23.0,24.0,-1.3098929438742493,2.287622053705056 -447,24.0,23.0,-1.3098929438742493,2.287622053705056 -447,24.0,24.0,4.495715080321987,-7.864978761969621 -447,24.0,25.0,-1.2165301194494855,1.8171440463475024 -447,24.0,26.0,-1.9692920169982515,3.760212661917064 -447,25.0,24.0,-1.2165301194494855,1.8171440463475024 -447,25.0,25.0,1.2165301194494855,-1.8171440463475024 -447,26.0,24.0,-1.9692920169982515,3.760212661917064 -447,26.0,26.0,3.652281470778589,-9.46044252232512 -447,26.0,27.0,0.0,2.608731947574922 -447,26.0,28.0,-0.99553355095268,1.881005840357816 -447,26.0,29.0,-0.6874559028276572,1.293971494797717 -447,27.0,5.0,-4.362844058012917,15.463571542897856 -447,27.0,7.0,-1.4439790613954469,4.540814658476248 -447,27.0,26.0,0.0,2.608731947574922 -447,27.0,27.0,5.806823119408364,-22.67145722159613 -447,28.0,26.0,-0.99553355095268,1.881005840357816 -447,28.0,28.0,1.9075867579849564,-3.604364401207048 -447,28.0,29.0,-0.9120532070322764,1.7233585608492326 -447,29.0,26.0,-0.6874559028276572,1.293971494797717 -447,29.0,28.0,-0.9120532070322764,1.7233585608492326 -447,29.0,29.0,1.5995091098599337,-3.0173300556469496 -448,0.0,0.0,6.765516048652632,-21.23160167089863 -448,0.0,1.0,-5.224646179885656,15.646726840803398 -448,0.0,2.0,-1.5408698687669766,5.631674830095234 -448,1.0,0.0,-5.224646179885656,15.646726840803398 -448,1.0,1.0,9.75228216552403,-30.648662892676068 -448,1.0,3.0,-1.7055303166990268,5.1973792282565086 -448,1.0,4.0,-1.1359607881738778,4.772479328281356 -448,1.0,5.0,-1.6861448807654689,5.116477495334806 -448,2.0,0.0,-1.5408698687669766,5.631674830095234 -448,2.0,2.0,9.736318911079088,-29.13794745915803 -448,2.0,3.0,-8.19544904231211,23.5308726290628 -448,3.0,1.0,-1.7055303166990268,5.1973792282565086 -448,3.0,2.0,-8.19544904231211,23.5308726290628 -448,3.0,3.0,16.314103089185693,-55.509410535254254 -448,3.0,5.0,-6.413123730174556,22.31120356548123 -448,3.0,11.0,0.0,4.191255364806866 -448,4.0,1.0,-1.1359607881738778,4.772479328281356 -448,4.0,4.0,4.089980824135861,-12.190647245055052 -448,4.0,6.0,-2.954020035961983,7.449267916773697 -448,5.0,1.0,-1.6861448807654689,5.116477495334806 -448,5.0,3.0,-6.413123730174556,22.31120356548123 -448,5.0,5.0,22.341631269034565,-82.8291478657789 -448,5.0,6.0,-3.590210423980992,11.02611441072814 -448,5.0,7.0,-6.289308176100628,22.0125786163522 -448,5.0,8.0,0.0,4.915840805411357 -448,5.0,9.0,0.0,1.8561002591115965 -448,5.0,27.0,-4.362844058012917,15.463571542897856 -448,6.0,4.0,-2.954020035961983,7.449267916773697 -448,6.0,5.0,-3.590210423980992,11.02611441072814 -448,6.0,6.0,6.544230459942975,-18.45668232750184 -448,7.0,5.0,-6.289308176100628,22.0125786163522 -448,7.0,7.0,7.733287237496075,-26.527493274828448 -448,7.0,27.0,-1.4439790613954469,4.540814658476248 -448,8.0,5.0,0.0,4.915840805411357 -448,8.0,8.0,0.0,-18.706293706293707 -448,8.0,9.0,0.0,9.090909090909092 -448,8.0,10.0,0.0,4.807692307692308 -448,9.0,5.0,0.0,1.8561002591115965 -448,9.0,8.0,0.0,9.090909090909092 -448,9.0,9.0,13.462042814524237,-41.3837606675224 -448,9.0,16.0,-3.956039125715353,10.317447719844054 -448,9.0,19.0,-1.7848303152666305,3.98535828943083 -448,9.0,20.0,-5.101853820159654,10.98071411292983 -448,9.0,21.0,-2.619319553382597,5.400770303329455 -448,10.0,8.0,0.0,4.807692307692308 -448,10.0,10.0,0.0,-4.807692307692308 -448,11.0,3.0,0.0,4.191255364806866 -448,11.0,11.0,6.573961583776156,-24.424167659260668 -448,11.0,12.0,0.0,7.142857142857143 -448,11.0,13.0,-1.5265676088395577,3.1734252729654173 -448,11.0,14.0,-3.0953961826564296,6.097275864326261 -448,11.0,15.0,-1.9519977922801688,4.104359379111847 -448,12.0,11.0,0.0,7.142857142857143 -448,12.0,12.0,0.0,-7.142857142857143 -448,13.0,11.0,-1.5265676088395577,3.1734252729654173 -448,13.0,13.0,4.01751987283902,-5.424299332335067 -448,13.0,14.0,-2.4909522639994623,2.250874059369649 -448,14.0,11.0,-3.0953961826564296,6.097275864326261 -448,14.0,13.0,-2.4909522639994623,2.250874059369649 -448,14.0,14.0,9.365498545964757,-16.01163373210796 -448,14.0,17.0,-1.8108011504072024,3.687418931630696 -448,14.0,22.0,-1.9683489489016612,3.976064876781356 -448,15.0,11.0,-1.9519977922801688,4.104359379111847 -448,15.0,15.0,3.271064728633931,-8.94513365126506 -448,15.0,16.0,-1.3190669363537617,4.8407742721532125 -448,16.0,9.0,-3.956039125715353,10.317447719844054 -448,16.0,15.0,-1.3190669363537617,4.8407742721532125 -448,16.0,16.0,5.275106062069114,-15.158221991997266 -448,17.0,14.0,-1.8108011504072024,3.687418931630696 -448,17.0,17.0,4.886487584415919,-9.906177730909668 -448,17.0,18.0,-3.0756864340087167,6.218758799278971 -448,18.0,17.0,-3.0756864340087167,6.218758799278971 -448,18.0,18.0,8.958039375185187,-17.98346468163191 -448,18.0,19.0,-5.88235294117647,11.76470588235294 -448,19.0,9.0,-1.7848303152666305,3.98535828943083 -448,19.0,18.0,-5.88235294117647,11.76470588235294 -448,19.0,19.0,7.6671832564431,-15.75006417178377 -448,20.0,9.0,-5.101853820159654,10.98071411292983 -448,20.0,20.0,21.876495189895888,-45.10843276170355 -448,20.0,21.0,-16.774641369736234,34.127718648773715 -448,21.0,9.0,-2.619319553382597,5.400770303329455 -448,21.0,20.0,-16.774641369736234,34.127718648773715 -448,21.0,21.0,21.93449907537439,-43.48289181517921 -448,21.0,23.0,-2.5405381522555563,3.95440286307604 -448,22.0,14.0,-1.9683489489016612,3.976064876781356 -448,22.0,22.0,3.429754555384988,-6.965303617315433 -448,22.0,23.0,-1.4614056064833263,2.989238740534077 -448,23.0,21.0,-2.5405381522555563,3.95440286307604 -448,23.0,22.0,-1.4614056064833263,2.989238740534077 -448,23.0,23.0,5.311836702613133,-9.188263657315172 -448,23.0,24.0,-1.3098929438742493,2.287622053705056 -448,24.0,23.0,-1.3098929438742493,2.287622053705056 -448,24.0,24.0,2.526423063323735,-4.104766100052558 -448,24.0,25.0,-1.2165301194494855,1.8171440463475024 -448,25.0,24.0,-1.2165301194494855,1.8171440463475024 -448,25.0,25.0,1.2165301194494855,-1.8171440463475024 -448,26.0,26.0,1.6829894537803372,-5.700229860408058 -448,26.0,27.0,0.0,2.608731947574922 -448,26.0,28.0,-0.99553355095268,1.881005840357816 -448,26.0,29.0,-0.6874559028276572,1.293971494797717 -448,27.0,5.0,-4.362844058012917,15.463571542897856 -448,27.0,7.0,-1.4439790613954469,4.540814658476248 -448,27.0,26.0,0.0,2.608731947574922 -448,27.0,27.0,5.806823119408364,-22.67145722159613 -448,28.0,26.0,-0.99553355095268,1.881005840357816 -448,28.0,28.0,1.9075867579849564,-3.604364401207048 -448,28.0,29.0,-0.9120532070322764,1.7233585608492326 -448,29.0,26.0,-0.6874559028276572,1.293971494797717 -448,29.0,28.0,-0.9120532070322764,1.7233585608492326 -448,29.0,29.0,1.5995091098599337,-3.0173300556469496 -449,0.0,0.0,6.765516048652632,-21.23160167089863 -449,0.0,1.0,-5.224646179885656,15.646726840803398 -449,0.0,2.0,-1.5408698687669766,5.631674830095234 -449,1.0,0.0,-5.224646179885656,15.646726840803398 -449,1.0,1.0,9.75228216552403,-30.648662892676068 -449,1.0,3.0,-1.7055303166990268,5.1973792282565086 -449,1.0,4.0,-1.1359607881738778,4.772479328281356 -449,1.0,5.0,-1.6861448807654689,5.116477495334806 -449,2.0,0.0,-1.5408698687669766,5.631674830095234 -449,2.0,2.0,9.736318911079088,-29.13794745915803 -449,2.0,3.0,-8.19544904231211,23.5308726290628 -449,3.0,1.0,-1.7055303166990268,5.1973792282565086 -449,3.0,2.0,-8.19544904231211,23.5308726290628 -449,3.0,3.0,16.314103089185693,-55.509410535254254 -449,3.0,5.0,-6.413123730174556,22.31120356548123 -449,3.0,11.0,0.0,4.191255364806866 -449,4.0,1.0,-1.1359607881738778,4.772479328281356 -449,4.0,4.0,4.089980824135861,-12.190647245055052 -449,4.0,6.0,-2.954020035961983,7.449267916773697 -449,5.0,1.0,-1.6861448807654689,5.116477495334806 -449,5.0,3.0,-6.413123730174556,22.31120356548123 -449,5.0,5.0,22.341631269034565,-82.8291478657789 -449,5.0,6.0,-3.590210423980992,11.02611441072814 -449,5.0,7.0,-6.289308176100628,22.0125786163522 -449,5.0,8.0,0.0,4.915840805411357 -449,5.0,9.0,0.0,1.8561002591115965 -449,5.0,27.0,-4.362844058012917,15.463571542897856 -449,6.0,4.0,-2.954020035961983,7.449267916773697 -449,6.0,5.0,-3.590210423980992,11.02611441072814 -449,6.0,6.0,6.544230459942975,-18.45668232750184 -449,7.0,5.0,-6.289308176100628,22.0125786163522 -449,7.0,7.0,7.733287237496075,-26.527493274828448 -449,7.0,27.0,-1.4439790613954469,4.540814658476248 -449,8.0,5.0,0.0,4.915840805411357 -449,8.0,8.0,0.0,-18.706293706293707 -449,8.0,9.0,0.0,9.090909090909092 -449,8.0,10.0,0.0,4.807692307692308 -449,9.0,5.0,0.0,1.8561002591115965 -449,9.0,8.0,0.0,9.090909090909092 -449,9.0,9.0,13.462042814524237,-41.3837606675224 -449,9.0,16.0,-3.956039125715353,10.317447719844054 -449,9.0,19.0,-1.7848303152666305,3.98535828943083 -449,9.0,20.0,-5.101853820159654,10.98071411292983 -449,9.0,21.0,-2.619319553382597,5.400770303329455 -449,10.0,8.0,0.0,4.807692307692308 -449,10.0,10.0,0.0,-4.807692307692308 -449,11.0,3.0,0.0,4.191255364806866 -449,11.0,11.0,6.573961583776156,-24.424167659260668 -449,11.0,12.0,0.0,7.142857142857143 -449,11.0,13.0,-1.5265676088395577,3.1734252729654173 -449,11.0,14.0,-3.0953961826564296,6.097275864326261 -449,11.0,15.0,-1.9519977922801688,4.104359379111847 -449,12.0,11.0,0.0,7.142857142857143 -449,12.0,12.0,0.0,-7.142857142857143 -449,13.0,11.0,-1.5265676088395577,3.1734252729654173 -449,13.0,13.0,4.01751987283902,-5.424299332335067 -449,13.0,14.0,-2.4909522639994623,2.250874059369649 -449,14.0,11.0,-3.0953961826564296,6.097275864326261 -449,14.0,13.0,-2.4909522639994623,2.250874059369649 -449,14.0,14.0,9.365498545964757,-16.01163373210796 -449,14.0,17.0,-1.8108011504072024,3.687418931630696 -449,14.0,22.0,-1.9683489489016612,3.976064876781356 -449,15.0,11.0,-1.9519977922801688,4.104359379111847 -449,15.0,15.0,3.271064728633931,-8.94513365126506 -449,15.0,16.0,-1.3190669363537617,4.8407742721532125 -449,16.0,9.0,-3.956039125715353,10.317447719844054 -449,16.0,15.0,-1.3190669363537617,4.8407742721532125 -449,16.0,16.0,5.275106062069114,-15.158221991997266 -449,17.0,14.0,-1.8108011504072024,3.687418931630696 -449,17.0,17.0,4.886487584415919,-9.906177730909668 -449,17.0,18.0,-3.0756864340087167,6.218758799278971 -449,18.0,17.0,-3.0756864340087167,6.218758799278971 -449,18.0,18.0,8.958039375185187,-17.98346468163191 -449,18.0,19.0,-5.88235294117647,11.76470588235294 -449,19.0,9.0,-1.7848303152666305,3.98535828943083 -449,19.0,18.0,-5.88235294117647,11.76470588235294 -449,19.0,19.0,7.6671832564431,-15.75006417178377 -449,20.0,9.0,-5.101853820159654,10.98071411292983 -449,20.0,20.0,21.876495189895888,-45.10843276170355 -449,20.0,21.0,-16.774641369736234,34.127718648773715 -449,21.0,9.0,-2.619319553382597,5.400770303329455 -449,21.0,20.0,-16.774641369736234,34.127718648773715 -449,21.0,21.0,21.93449907537439,-43.48289181517921 -449,21.0,23.0,-2.5405381522555563,3.95440286307604 -449,22.0,14.0,-1.9683489489016612,3.976064876781356 -449,22.0,22.0,3.429754555384988,-6.965303617315433 -449,22.0,23.0,-1.4614056064833263,2.989238740534077 -449,23.0,21.0,-2.5405381522555563,3.95440286307604 -449,23.0,22.0,-1.4614056064833263,2.989238740534077 -449,23.0,23.0,5.311836702613133,-9.188263657315172 -449,23.0,24.0,-1.3098929438742493,2.287622053705056 -449,24.0,23.0,-1.3098929438742493,2.287622053705056 -449,24.0,24.0,4.495715080321987,-7.864978761969621 -449,24.0,25.0,-1.2165301194494855,1.8171440463475024 -449,24.0,26.0,-1.9692920169982515,3.760212661917064 -449,25.0,24.0,-1.2165301194494855,1.8171440463475024 -449,25.0,25.0,1.2165301194494855,-1.8171440463475024 -449,26.0,24.0,-1.9692920169982515,3.760212661917064 -449,26.0,26.0,3.652281470778589,-9.46044252232512 -449,26.0,27.0,0.0,2.608731947574922 -449,26.0,28.0,-0.99553355095268,1.881005840357816 -449,26.0,29.0,-0.6874559028276572,1.293971494797717 -449,27.0,5.0,-4.362844058012917,15.463571542897856 -449,27.0,7.0,-1.4439790613954469,4.540814658476248 -449,27.0,26.0,0.0,2.608731947574922 -449,27.0,27.0,5.806823119408364,-22.67145722159613 -449,28.0,26.0,-0.99553355095268,1.881005840357816 -449,28.0,28.0,1.9075867579849564,-3.604364401207048 -449,28.0,29.0,-0.9120532070322764,1.7233585608492326 -449,29.0,26.0,-0.6874559028276572,1.293971494797717 -449,29.0,28.0,-0.9120532070322764,1.7233585608492326 -449,29.0,29.0,1.5995091098599337,-3.0173300556469496 -450,0.0,0.0,6.765516048652632,-21.23160167089863 -450,0.0,1.0,-5.224646179885656,15.646726840803398 -450,0.0,2.0,-1.5408698687669766,5.631674830095234 -450,1.0,0.0,-5.224646179885656,15.646726840803398 -450,1.0,1.0,9.75228216552403,-30.648662892676068 -450,1.0,3.0,-1.7055303166990268,5.1973792282565086 -450,1.0,4.0,-1.1359607881738778,4.772479328281356 -450,1.0,5.0,-1.6861448807654689,5.116477495334806 -450,2.0,0.0,-1.5408698687669766,5.631674830095234 -450,2.0,2.0,9.736318911079088,-29.13794745915803 -450,2.0,3.0,-8.19544904231211,23.5308726290628 -450,3.0,1.0,-1.7055303166990268,5.1973792282565086 -450,3.0,2.0,-8.19544904231211,23.5308726290628 -450,3.0,3.0,16.314103089185693,-55.509410535254254 -450,3.0,5.0,-6.413123730174556,22.31120356548123 -450,3.0,11.0,0.0,4.191255364806866 -450,4.0,1.0,-1.1359607881738778,4.772479328281356 -450,4.0,4.0,4.089980824135861,-12.190647245055052 -450,4.0,6.0,-2.954020035961983,7.449267916773697 -450,5.0,1.0,-1.6861448807654689,5.116477495334806 -450,5.0,3.0,-6.413123730174556,22.31120356548123 -450,5.0,5.0,22.341631269034565,-82.8291478657789 -450,5.0,6.0,-3.590210423980992,11.02611441072814 -450,5.0,7.0,-6.289308176100628,22.0125786163522 -450,5.0,8.0,0.0,4.915840805411357 -450,5.0,9.0,0.0,1.8561002591115965 -450,5.0,27.0,-4.362844058012917,15.463571542897856 -450,6.0,4.0,-2.954020035961983,7.449267916773697 -450,6.0,5.0,-3.590210423980992,11.02611441072814 -450,6.0,6.0,6.544230459942975,-18.45668232750184 -450,7.0,5.0,-6.289308176100628,22.0125786163522 -450,7.0,7.0,7.733287237496075,-26.527493274828448 -450,7.0,27.0,-1.4439790613954469,4.540814658476248 -450,8.0,5.0,0.0,4.915840805411357 -450,8.0,8.0,0.0,-18.706293706293707 -450,8.0,9.0,0.0,9.090909090909092 -450,8.0,10.0,0.0,4.807692307692308 -450,9.0,5.0,0.0,1.8561002591115965 -450,9.0,8.0,0.0,9.090909090909092 -450,9.0,9.0,13.462042814524237,-41.3837606675224 -450,9.0,16.0,-3.956039125715353,10.317447719844054 -450,9.0,19.0,-1.7848303152666305,3.98535828943083 -450,9.0,20.0,-5.101853820159654,10.98071411292983 -450,9.0,21.0,-2.619319553382597,5.400770303329455 -450,10.0,8.0,0.0,4.807692307692308 -450,10.0,10.0,0.0,-4.807692307692308 -450,11.0,3.0,0.0,4.191255364806866 -450,11.0,11.0,6.573961583776156,-24.424167659260668 -450,11.0,12.0,0.0,7.142857142857143 -450,11.0,13.0,-1.5265676088395577,3.1734252729654173 -450,11.0,14.0,-3.0953961826564296,6.097275864326261 -450,11.0,15.0,-1.9519977922801688,4.104359379111847 -450,12.0,11.0,0.0,7.142857142857143 -450,12.0,12.0,0.0,-7.142857142857143 -450,13.0,11.0,-1.5265676088395577,3.1734252729654173 -450,13.0,13.0,4.01751987283902,-5.424299332335067 -450,13.0,14.0,-2.4909522639994623,2.250874059369649 -450,14.0,11.0,-3.0953961826564296,6.097275864326261 -450,14.0,13.0,-2.4909522639994623,2.250874059369649 -450,14.0,14.0,9.365498545964757,-16.01163373210796 -450,14.0,17.0,-1.8108011504072024,3.687418931630696 -450,14.0,22.0,-1.9683489489016612,3.976064876781356 -450,15.0,11.0,-1.9519977922801688,4.104359379111847 -450,15.0,15.0,3.271064728633931,-8.94513365126506 -450,15.0,16.0,-1.3190669363537617,4.8407742721532125 -450,16.0,9.0,-3.956039125715353,10.317447719844054 -450,16.0,15.0,-1.3190669363537617,4.8407742721532125 -450,16.0,16.0,5.275106062069114,-15.158221991997266 -450,17.0,14.0,-1.8108011504072024,3.687418931630696 -450,17.0,17.0,4.886487584415919,-9.906177730909668 -450,17.0,18.0,-3.0756864340087167,6.218758799278971 -450,18.0,17.0,-3.0756864340087167,6.218758799278971 -450,18.0,18.0,8.958039375185187,-17.98346468163191 -450,18.0,19.0,-5.88235294117647,11.76470588235294 -450,19.0,9.0,-1.7848303152666305,3.98535828943083 -450,19.0,18.0,-5.88235294117647,11.76470588235294 -450,19.0,19.0,7.6671832564431,-15.75006417178377 -450,20.0,9.0,-5.101853820159654,10.98071411292983 -450,20.0,20.0,21.876495189895888,-45.10843276170355 -450,20.0,21.0,-16.774641369736234,34.127718648773715 -450,21.0,9.0,-2.619319553382597,5.400770303329455 -450,21.0,20.0,-16.774641369736234,34.127718648773715 -450,21.0,21.0,21.93449907537439,-43.48289181517921 -450,21.0,23.0,-2.5405381522555563,3.95440286307604 -450,22.0,14.0,-1.9683489489016612,3.976064876781356 -450,22.0,22.0,3.429754555384988,-6.965303617315433 -450,22.0,23.0,-1.4614056064833263,2.989238740534077 -450,23.0,21.0,-2.5405381522555563,3.95440286307604 -450,23.0,22.0,-1.4614056064833263,2.989238740534077 -450,23.0,23.0,5.311836702613133,-9.188263657315172 -450,23.0,24.0,-1.3098929438742493,2.287622053705056 -450,24.0,23.0,-1.3098929438742493,2.287622053705056 -450,24.0,24.0,4.495715080321987,-7.864978761969621 -450,24.0,25.0,-1.2165301194494855,1.8171440463475024 -450,24.0,26.0,-1.9692920169982515,3.760212661917064 -450,25.0,24.0,-1.2165301194494855,1.8171440463475024 -450,25.0,25.0,1.2165301194494855,-1.8171440463475024 -450,26.0,24.0,-1.9692920169982515,3.760212661917064 -450,26.0,26.0,3.652281470778589,-9.46044252232512 -450,26.0,27.0,0.0,2.608731947574922 -450,26.0,28.0,-0.99553355095268,1.881005840357816 -450,26.0,29.0,-0.6874559028276572,1.293971494797717 -450,27.0,5.0,-4.362844058012917,15.463571542897856 -450,27.0,7.0,-1.4439790613954469,4.540814658476248 -450,27.0,26.0,0.0,2.608731947574922 -450,27.0,27.0,5.806823119408364,-22.67145722159613 -450,28.0,26.0,-0.99553355095268,1.881005840357816 -450,28.0,28.0,1.9075867579849564,-3.604364401207048 -450,28.0,29.0,-0.9120532070322764,1.7233585608492326 -450,29.0,26.0,-0.6874559028276572,1.293971494797717 -450,29.0,28.0,-0.9120532070322764,1.7233585608492326 -450,29.0,29.0,1.5995091098599337,-3.0173300556469496 -451,0.0,0.0,6.765516048652632,-21.23160167089863 -451,0.0,1.0,-5.224646179885656,15.646726840803398 -451,0.0,2.0,-1.5408698687669766,5.631674830095234 -451,1.0,0.0,-5.224646179885656,15.646726840803398 -451,1.0,1.0,6.360606968059534,-20.371906169084752 -451,1.0,4.0,-1.1359607881738778,4.772479328281356 -451,2.0,0.0,-1.5408698687669766,5.631674830095234 -451,2.0,2.0,9.736318911079088,-29.13794745915803 -451,2.0,3.0,-8.19544904231211,23.5308726290628 -451,3.0,2.0,-8.19544904231211,23.5308726290628 -451,3.0,3.0,14.608572772486664,-50.33043130699775 -451,3.0,5.0,-6.413123730174556,22.31120356548123 -451,3.0,11.0,0.0,4.191255364806866 -451,4.0,1.0,-1.1359607881738778,4.772479328281356 -451,4.0,4.0,4.089980824135861,-12.190647245055052 -451,4.0,6.0,-2.954020035961983,7.449267916773697 -451,5.0,3.0,-6.413123730174556,22.31120356548123 -451,5.0,5.0,20.655486388269097,-72.70494827902144 -451,5.0,6.0,-3.590210423980992,11.02611441072814 -451,5.0,7.0,-6.289308176100628,22.0125786163522 -451,5.0,9.0,0.0,1.8561002591115965 -451,5.0,27.0,-4.362844058012917,15.463571542897856 -451,6.0,4.0,-2.954020035961983,7.449267916773697 -451,6.0,5.0,-3.590210423980992,11.02611441072814 -451,6.0,6.0,6.544230459942975,-18.45668232750184 -451,7.0,5.0,-6.289308176100628,22.0125786163522 -451,7.0,7.0,7.733287237496075,-26.527493274828448 -451,7.0,27.0,-1.4439790613954469,4.540814658476248 -451,8.0,8.0,0.0,-13.8986013986014 -451,8.0,9.0,0.0,9.090909090909092 -451,8.0,10.0,0.0,4.807692307692308 -451,9.0,5.0,0.0,1.8561002591115965 -451,9.0,8.0,0.0,9.090909090909092 -451,9.0,9.0,10.842723261141638,-35.98299036419294 -451,9.0,16.0,-3.956039125715353,10.317447719844054 -451,9.0,19.0,-1.7848303152666305,3.98535828943083 -451,9.0,20.0,-5.101853820159654,10.98071411292983 -451,10.0,8.0,0.0,4.807692307692308 -451,10.0,10.0,0.0,-4.807692307692308 -451,11.0,3.0,0.0,4.191255364806866 -451,11.0,11.0,6.573961583776156,-24.424167659260668 -451,11.0,12.0,0.0,7.142857142857143 -451,11.0,13.0,-1.5265676088395577,3.1734252729654173 -451,11.0,14.0,-3.0953961826564296,6.097275864326261 -451,11.0,15.0,-1.9519977922801688,4.104359379111847 -451,12.0,11.0,0.0,7.142857142857143 -451,12.0,12.0,0.0,-7.142857142857143 -451,13.0,11.0,-1.5265676088395577,3.1734252729654173 -451,13.0,13.0,4.01751987283902,-5.424299332335067 -451,13.0,14.0,-2.4909522639994623,2.250874059369649 -451,14.0,11.0,-3.0953961826564296,6.097275864326261 -451,14.0,13.0,-2.4909522639994623,2.250874059369649 -451,14.0,14.0,9.365498545964757,-16.01163373210796 -451,14.0,17.0,-1.8108011504072024,3.687418931630696 -451,14.0,22.0,-1.9683489489016612,3.976064876781356 -451,15.0,11.0,-1.9519977922801688,4.104359379111847 -451,15.0,15.0,3.271064728633931,-8.94513365126506 -451,15.0,16.0,-1.3190669363537617,4.8407742721532125 -451,16.0,9.0,-3.956039125715353,10.317447719844054 -451,16.0,15.0,-1.3190669363537617,4.8407742721532125 -451,16.0,16.0,5.275106062069114,-15.158221991997266 -451,17.0,14.0,-1.8108011504072024,3.687418931630696 -451,17.0,17.0,4.886487584415919,-9.906177730909668 -451,17.0,18.0,-3.0756864340087167,6.218758799278971 -451,18.0,17.0,-3.0756864340087167,6.218758799278971 -451,18.0,18.0,8.958039375185187,-17.98346468163191 -451,18.0,19.0,-5.88235294117647,11.76470588235294 -451,19.0,9.0,-1.7848303152666305,3.98535828943083 -451,19.0,18.0,-5.88235294117647,11.76470588235294 -451,19.0,19.0,7.6671832564431,-15.75006417178377 -451,20.0,9.0,-5.101853820159654,10.98071411292983 -451,20.0,20.0,21.876495189895888,-45.10843276170355 -451,20.0,21.0,-16.774641369736234,34.127718648773715 -451,21.0,20.0,-16.774641369736234,34.127718648773715 -451,21.0,21.0,19.31517952199179,-38.08212151184976 -451,21.0,23.0,-2.5405381522555563,3.95440286307604 -451,22.0,14.0,-1.9683489489016612,3.976064876781356 -451,22.0,22.0,1.9683489489016612,-3.976064876781356 -451,23.0,21.0,-2.5405381522555563,3.95440286307604 -451,23.0,23.0,3.850431096129806,-6.199024916781094 -451,23.0,24.0,-1.3098929438742493,2.287622053705056 -451,24.0,23.0,-1.3098929438742493,2.287622053705056 -451,24.0,24.0,4.495715080321987,-7.864978761969621 -451,24.0,25.0,-1.2165301194494855,1.8171440463475024 -451,24.0,26.0,-1.9692920169982515,3.760212661917064 -451,25.0,24.0,-1.2165301194494855,1.8171440463475024 -451,25.0,25.0,1.2165301194494855,-1.8171440463475024 -451,26.0,24.0,-1.9692920169982515,3.760212661917064 -451,26.0,26.0,3.652281470778589,-9.46044252232512 -451,26.0,27.0,0.0,2.608731947574922 -451,26.0,28.0,-0.99553355095268,1.881005840357816 -451,26.0,29.0,-0.6874559028276572,1.293971494797717 -451,27.0,5.0,-4.362844058012917,15.463571542897856 -451,27.0,7.0,-1.4439790613954469,4.540814658476248 -451,27.0,26.0,0.0,2.608731947574922 -451,27.0,27.0,5.806823119408364,-22.67145722159613 -451,28.0,26.0,-0.99553355095268,1.881005840357816 -451,28.0,28.0,1.9075867579849564,-3.604364401207048 -451,28.0,29.0,-0.9120532070322764,1.7233585608492326 -451,29.0,26.0,-0.6874559028276572,1.293971494797717 -451,29.0,28.0,-0.9120532070322764,1.7233585608492326 -451,29.0,29.0,1.5995091098599337,-3.0173300556469496 -452,0.0,0.0,6.765516048652632,-21.23160167089863 -452,0.0,1.0,-5.224646179885656,15.646726840803398 -452,0.0,2.0,-1.5408698687669766,5.631674830095234 -452,1.0,0.0,-5.224646179885656,15.646726840803398 -452,1.0,1.0,9.75228216552403,-30.648662892676068 -452,1.0,3.0,-1.7055303166990268,5.1973792282565086 -452,1.0,4.0,-1.1359607881738778,4.772479328281356 -452,1.0,5.0,-1.6861448807654689,5.116477495334806 -452,2.0,0.0,-1.5408698687669766,5.631674830095234 -452,2.0,2.0,9.736318911079088,-29.13794745915803 -452,2.0,3.0,-8.19544904231211,23.5308726290628 -452,3.0,1.0,-1.7055303166990268,5.1973792282565086 -452,3.0,2.0,-8.19544904231211,23.5308726290628 -452,3.0,3.0,16.314103089185693,-55.509410535254254 -452,3.0,5.0,-6.413123730174556,22.31120356548123 -452,3.0,11.0,0.0,4.191255364806866 -452,4.0,1.0,-1.1359607881738778,4.772479328281356 -452,4.0,4.0,4.089980824135861,-12.190647245055052 -452,4.0,6.0,-2.954020035961983,7.449267916773697 -452,5.0,1.0,-1.6861448807654689,5.116477495334806 -452,5.0,3.0,-6.413123730174556,22.31120356548123 -452,5.0,5.0,22.341631269034565,-82.8291478657789 -452,5.0,6.0,-3.590210423980992,11.02611441072814 -452,5.0,7.0,-6.289308176100628,22.0125786163522 -452,5.0,8.0,0.0,4.915840805411357 -452,5.0,9.0,0.0,1.8561002591115965 -452,5.0,27.0,-4.362844058012917,15.463571542897856 -452,6.0,4.0,-2.954020035961983,7.449267916773697 -452,6.0,5.0,-3.590210423980992,11.02611441072814 -452,6.0,6.0,6.544230459942975,-18.45668232750184 -452,7.0,5.0,-6.289308176100628,22.0125786163522 -452,7.0,7.0,7.733287237496075,-26.527493274828448 -452,7.0,27.0,-1.4439790613954469,4.540814658476248 -452,8.0,5.0,0.0,4.915840805411357 -452,8.0,8.0,0.0,-18.706293706293707 -452,8.0,9.0,0.0,9.090909090909092 -452,8.0,10.0,0.0,4.807692307692308 -452,9.0,5.0,0.0,1.8561002591115965 -452,9.0,8.0,0.0,9.090909090909092 -452,9.0,9.0,13.462042814524237,-41.3837606675224 -452,9.0,16.0,-3.956039125715353,10.317447719844054 -452,9.0,19.0,-1.7848303152666305,3.98535828943083 -452,9.0,20.0,-5.101853820159654,10.98071411292983 -452,9.0,21.0,-2.619319553382597,5.400770303329455 -452,10.0,8.0,0.0,4.807692307692308 -452,10.0,10.0,0.0,-4.807692307692308 -452,11.0,3.0,0.0,4.191255364806866 -452,11.0,11.0,6.573961583776156,-24.424167659260668 -452,11.0,12.0,0.0,7.142857142857143 -452,11.0,13.0,-1.5265676088395577,3.1734252729654173 -452,11.0,14.0,-3.0953961826564296,6.097275864326261 -452,11.0,15.0,-1.9519977922801688,4.104359379111847 -452,12.0,11.0,0.0,7.142857142857143 -452,12.0,12.0,0.0,-7.142857142857143 -452,13.0,11.0,-1.5265676088395577,3.1734252729654173 -452,13.0,13.0,4.01751987283902,-5.424299332335067 -452,13.0,14.0,-2.4909522639994623,2.250874059369649 -452,14.0,11.0,-3.0953961826564296,6.097275864326261 -452,14.0,13.0,-2.4909522639994623,2.250874059369649 -452,14.0,14.0,9.365498545964757,-16.01163373210796 -452,14.0,17.0,-1.8108011504072024,3.687418931630696 -452,14.0,22.0,-1.9683489489016612,3.976064876781356 -452,15.0,11.0,-1.9519977922801688,4.104359379111847 -452,15.0,15.0,3.271064728633931,-8.94513365126506 -452,15.0,16.0,-1.3190669363537617,4.8407742721532125 -452,16.0,9.0,-3.956039125715353,10.317447719844054 -452,16.0,15.0,-1.3190669363537617,4.8407742721532125 -452,16.0,16.0,5.275106062069114,-15.158221991997266 -452,17.0,14.0,-1.8108011504072024,3.687418931630696 -452,17.0,17.0,4.886487584415919,-9.906177730909668 -452,17.0,18.0,-3.0756864340087167,6.218758799278971 -452,18.0,17.0,-3.0756864340087167,6.218758799278971 -452,18.0,18.0,8.958039375185187,-17.98346468163191 -452,18.0,19.0,-5.88235294117647,11.76470588235294 -452,19.0,9.0,-1.7848303152666305,3.98535828943083 -452,19.0,18.0,-5.88235294117647,11.76470588235294 -452,19.0,19.0,7.6671832564431,-15.75006417178377 -452,20.0,9.0,-5.101853820159654,10.98071411292983 -452,20.0,20.0,21.876495189895888,-45.10843276170355 -452,20.0,21.0,-16.774641369736234,34.127718648773715 -452,21.0,9.0,-2.619319553382597,5.400770303329455 -452,21.0,20.0,-16.774641369736234,34.127718648773715 -452,21.0,21.0,21.93449907537439,-43.48289181517921 -452,21.0,23.0,-2.5405381522555563,3.95440286307604 -452,22.0,14.0,-1.9683489489016612,3.976064876781356 -452,22.0,22.0,3.429754555384988,-6.965303617315433 -452,22.0,23.0,-1.4614056064833263,2.989238740534077 -452,23.0,21.0,-2.5405381522555563,3.95440286307604 -452,23.0,22.0,-1.4614056064833263,2.989238740534077 -452,23.0,23.0,5.311836702613133,-9.188263657315172 -452,23.0,24.0,-1.3098929438742493,2.287622053705056 -452,24.0,23.0,-1.3098929438742493,2.287622053705056 -452,24.0,24.0,4.495715080321987,-7.864978761969621 -452,24.0,25.0,-1.2165301194494855,1.8171440463475024 -452,24.0,26.0,-1.9692920169982515,3.760212661917064 -452,25.0,24.0,-1.2165301194494855,1.8171440463475024 -452,25.0,25.0,1.2165301194494855,-1.8171440463475024 -452,26.0,24.0,-1.9692920169982515,3.760212661917064 -452,26.0,26.0,3.652281470778589,-9.46044252232512 -452,26.0,27.0,0.0,2.608731947574922 -452,26.0,28.0,-0.99553355095268,1.881005840357816 -452,26.0,29.0,-0.6874559028276572,1.293971494797717 -452,27.0,5.0,-4.362844058012917,15.463571542897856 -452,27.0,7.0,-1.4439790613954469,4.540814658476248 -452,27.0,26.0,0.0,2.608731947574922 -452,27.0,27.0,5.806823119408364,-22.67145722159613 -452,28.0,26.0,-0.99553355095268,1.881005840357816 -452,28.0,28.0,1.9075867579849564,-3.604364401207048 -452,28.0,29.0,-0.9120532070322764,1.7233585608492326 -452,29.0,26.0,-0.6874559028276572,1.293971494797717 -452,29.0,28.0,-0.9120532070322764,1.7233585608492326 -452,29.0,29.0,1.5995091098599337,-3.0173300556469496 -453,0.0,0.0,6.765516048652632,-21.23160167089863 -453,0.0,1.0,-5.224646179885656,15.646726840803398 -453,0.0,2.0,-1.5408698687669766,5.631674830095234 -453,1.0,0.0,-5.224646179885656,15.646726840803398 -453,1.0,1.0,9.75228216552403,-30.648662892676068 -453,1.0,3.0,-1.7055303166990268,5.1973792282565086 -453,1.0,4.0,-1.1359607881738778,4.772479328281356 -453,1.0,5.0,-1.6861448807654689,5.116477495334806 -453,2.0,0.0,-1.5408698687669766,5.631674830095234 -453,2.0,2.0,9.736318911079088,-29.13794745915803 -453,2.0,3.0,-8.19544904231211,23.5308726290628 -453,3.0,1.0,-1.7055303166990268,5.1973792282565086 -453,3.0,2.0,-8.19544904231211,23.5308726290628 -453,3.0,3.0,16.314103089185693,-55.509410535254254 -453,3.0,5.0,-6.413123730174556,22.31120356548123 -453,3.0,11.0,0.0,4.191255364806866 -453,4.0,1.0,-1.1359607881738778,4.772479328281356 -453,4.0,4.0,4.089980824135861,-12.190647245055052 -453,4.0,6.0,-2.954020035961983,7.449267916773697 -453,5.0,1.0,-1.6861448807654689,5.116477495334806 -453,5.0,3.0,-6.413123730174556,22.31120356548123 -453,5.0,5.0,22.341631269034565,-82.8291478657789 -453,5.0,6.0,-3.590210423980992,11.02611441072814 -453,5.0,7.0,-6.289308176100628,22.0125786163522 -453,5.0,8.0,0.0,4.915840805411357 -453,5.0,9.0,0.0,1.8561002591115965 -453,5.0,27.0,-4.362844058012917,15.463571542897856 -453,6.0,4.0,-2.954020035961983,7.449267916773697 -453,6.0,5.0,-3.590210423980992,11.02611441072814 -453,6.0,6.0,6.544230459942975,-18.45668232750184 -453,7.0,5.0,-6.289308176100628,22.0125786163522 -453,7.0,7.0,7.733287237496075,-26.527493274828448 -453,7.0,27.0,-1.4439790613954469,4.540814658476248 -453,8.0,5.0,0.0,4.915840805411357 -453,8.0,8.0,0.0,-18.706293706293707 -453,8.0,9.0,0.0,9.090909090909092 -453,8.0,10.0,0.0,4.807692307692308 -453,9.0,5.0,0.0,1.8561002591115965 -453,9.0,8.0,0.0,9.090909090909092 -453,9.0,9.0,13.462042814524237,-41.3837606675224 -453,9.0,16.0,-3.956039125715353,10.317447719844054 -453,9.0,19.0,-1.7848303152666305,3.98535828943083 -453,9.0,20.0,-5.101853820159654,10.98071411292983 -453,9.0,21.0,-2.619319553382597,5.400770303329455 -453,10.0,8.0,0.0,4.807692307692308 -453,10.0,10.0,0.0,-4.807692307692308 -453,11.0,3.0,0.0,4.191255364806866 -453,11.0,11.0,6.573961583776156,-24.424167659260668 -453,11.0,12.0,0.0,7.142857142857143 -453,11.0,13.0,-1.5265676088395577,3.1734252729654173 -453,11.0,14.0,-3.0953961826564296,6.097275864326261 -453,11.0,15.0,-1.9519977922801688,4.104359379111847 -453,12.0,11.0,0.0,7.142857142857143 -453,12.0,12.0,0.0,-7.142857142857143 -453,13.0,11.0,-1.5265676088395577,3.1734252729654173 -453,13.0,13.0,4.01751987283902,-5.424299332335067 -453,13.0,14.0,-2.4909522639994623,2.250874059369649 -453,14.0,11.0,-3.0953961826564296,6.097275864326261 -453,14.0,13.0,-2.4909522639994623,2.250874059369649 -453,14.0,14.0,9.365498545964757,-16.01163373210796 -453,14.0,17.0,-1.8108011504072024,3.687418931630696 -453,14.0,22.0,-1.9683489489016612,3.976064876781356 -453,15.0,11.0,-1.9519977922801688,4.104359379111847 -453,15.0,15.0,3.271064728633931,-8.94513365126506 -453,15.0,16.0,-1.3190669363537617,4.8407742721532125 -453,16.0,9.0,-3.956039125715353,10.317447719844054 -453,16.0,15.0,-1.3190669363537617,4.8407742721532125 -453,16.0,16.0,5.275106062069114,-15.158221991997266 -453,17.0,14.0,-1.8108011504072024,3.687418931630696 -453,17.0,17.0,4.886487584415919,-9.906177730909668 -453,17.0,18.0,-3.0756864340087167,6.218758799278971 -453,18.0,17.0,-3.0756864340087167,6.218758799278971 -453,18.0,18.0,8.958039375185187,-17.98346468163191 -453,18.0,19.0,-5.88235294117647,11.76470588235294 -453,19.0,9.0,-1.7848303152666305,3.98535828943083 -453,19.0,18.0,-5.88235294117647,11.76470588235294 -453,19.0,19.0,7.6671832564431,-15.75006417178377 -453,20.0,9.0,-5.101853820159654,10.98071411292983 -453,20.0,20.0,21.876495189895888,-45.10843276170355 -453,20.0,21.0,-16.774641369736234,34.127718648773715 -453,21.0,9.0,-2.619319553382597,5.400770303329455 -453,21.0,20.0,-16.774641369736234,34.127718648773715 -453,21.0,21.0,21.93449907537439,-43.48289181517921 -453,21.0,23.0,-2.5405381522555563,3.95440286307604 -453,22.0,14.0,-1.9683489489016612,3.976064876781356 -453,22.0,22.0,3.429754555384988,-6.965303617315433 -453,22.0,23.0,-1.4614056064833263,2.989238740534077 -453,23.0,21.0,-2.5405381522555563,3.95440286307604 -453,23.0,22.0,-1.4614056064833263,2.989238740534077 -453,23.0,23.0,5.311836702613133,-9.188263657315172 -453,23.0,24.0,-1.3098929438742493,2.287622053705056 -453,24.0,23.0,-1.3098929438742493,2.287622053705056 -453,24.0,24.0,4.495715080321987,-7.864978761969621 -453,24.0,25.0,-1.2165301194494855,1.8171440463475024 -453,24.0,26.0,-1.9692920169982515,3.760212661917064 -453,25.0,24.0,-1.2165301194494855,1.8171440463475024 -453,25.0,25.0,1.2165301194494855,-1.8171440463475024 -453,26.0,24.0,-1.9692920169982515,3.760212661917064 -453,26.0,26.0,3.652281470778589,-9.46044252232512 -453,26.0,27.0,0.0,2.608731947574922 -453,26.0,28.0,-0.99553355095268,1.881005840357816 -453,26.0,29.0,-0.6874559028276572,1.293971494797717 -453,27.0,5.0,-4.362844058012917,15.463571542897856 -453,27.0,7.0,-1.4439790613954469,4.540814658476248 -453,27.0,26.0,0.0,2.608731947574922 -453,27.0,27.0,5.806823119408364,-22.67145722159613 -453,28.0,26.0,-0.99553355095268,1.881005840357816 -453,28.0,28.0,1.9075867579849564,-3.604364401207048 -453,28.0,29.0,-0.9120532070322764,1.7233585608492326 -453,29.0,26.0,-0.6874559028276572,1.293971494797717 -453,29.0,28.0,-0.9120532070322764,1.7233585608492326 -453,29.0,29.0,1.5995091098599337,-3.0173300556469496 -454,0.0,0.0,6.765516048652632,-21.23160167089863 -454,0.0,1.0,-5.224646179885656,15.646726840803398 -454,0.0,2.0,-1.5408698687669766,5.631674830095234 -454,1.0,0.0,-5.224646179885656,15.646726840803398 -454,1.0,1.0,9.75228216552403,-30.648662892676068 -454,1.0,3.0,-1.7055303166990268,5.1973792282565086 -454,1.0,4.0,-1.1359607881738778,4.772479328281356 -454,1.0,5.0,-1.6861448807654689,5.116477495334806 -454,2.0,0.0,-1.5408698687669766,5.631674830095234 -454,2.0,2.0,9.736318911079088,-29.13794745915803 -454,2.0,3.0,-8.19544904231211,23.5308726290628 -454,3.0,1.0,-1.7055303166990268,5.1973792282565086 -454,3.0,2.0,-8.19544904231211,23.5308726290628 -454,3.0,3.0,16.314103089185693,-55.509410535254254 -454,3.0,5.0,-6.413123730174556,22.31120356548123 -454,3.0,11.0,0.0,4.191255364806866 -454,4.0,1.0,-1.1359607881738778,4.772479328281356 -454,4.0,4.0,4.089980824135861,-12.190647245055052 -454,4.0,6.0,-2.954020035961983,7.449267916773697 -454,5.0,1.0,-1.6861448807654689,5.116477495334806 -454,5.0,3.0,-6.413123730174556,22.31120356548123 -454,5.0,5.0,22.341631269034565,-82.8291478657789 -454,5.0,6.0,-3.590210423980992,11.02611441072814 -454,5.0,7.0,-6.289308176100628,22.0125786163522 -454,5.0,8.0,0.0,4.915840805411357 -454,5.0,9.0,0.0,1.8561002591115965 -454,5.0,27.0,-4.362844058012917,15.463571542897856 -454,6.0,4.0,-2.954020035961983,7.449267916773697 -454,6.0,5.0,-3.590210423980992,11.02611441072814 -454,6.0,6.0,6.544230459942975,-18.45668232750184 -454,7.0,5.0,-6.289308176100628,22.0125786163522 -454,7.0,7.0,6.289308176100628,-22.0080786163522 -454,8.0,5.0,0.0,4.915840805411357 -454,8.0,8.0,0.0,-18.706293706293707 -454,8.0,9.0,0.0,9.090909090909092 -454,8.0,10.0,0.0,4.807692307692308 -454,9.0,5.0,0.0,1.8561002591115965 -454,9.0,8.0,0.0,9.090909090909092 -454,9.0,9.0,13.462042814524237,-41.3837606675224 -454,9.0,16.0,-3.956039125715353,10.317447719844054 -454,9.0,19.0,-1.7848303152666305,3.98535828943083 -454,9.0,20.0,-5.101853820159654,10.98071411292983 -454,9.0,21.0,-2.619319553382597,5.400770303329455 -454,10.0,8.0,0.0,4.807692307692308 -454,10.0,10.0,0.0,-4.807692307692308 -454,11.0,3.0,0.0,4.191255364806866 -454,11.0,11.0,6.573961583776156,-24.424167659260668 -454,11.0,12.0,0.0,7.142857142857143 -454,11.0,13.0,-1.5265676088395577,3.1734252729654173 -454,11.0,14.0,-3.0953961826564296,6.097275864326261 -454,11.0,15.0,-1.9519977922801688,4.104359379111847 -454,12.0,11.0,0.0,7.142857142857143 -454,12.0,12.0,0.0,-7.142857142857143 -454,13.0,11.0,-1.5265676088395577,3.1734252729654173 -454,13.0,13.0,4.01751987283902,-5.424299332335067 -454,13.0,14.0,-2.4909522639994623,2.250874059369649 -454,14.0,11.0,-3.0953961826564296,6.097275864326261 -454,14.0,13.0,-2.4909522639994623,2.250874059369649 -454,14.0,14.0,9.365498545964757,-16.01163373210796 -454,14.0,17.0,-1.8108011504072024,3.687418931630696 -454,14.0,22.0,-1.9683489489016612,3.976064876781356 -454,15.0,11.0,-1.9519977922801688,4.104359379111847 -454,15.0,15.0,3.271064728633931,-8.94513365126506 -454,15.0,16.0,-1.3190669363537617,4.8407742721532125 -454,16.0,9.0,-3.956039125715353,10.317447719844054 -454,16.0,15.0,-1.3190669363537617,4.8407742721532125 -454,16.0,16.0,5.275106062069114,-15.158221991997266 -454,17.0,14.0,-1.8108011504072024,3.687418931630696 -454,17.0,17.0,4.886487584415919,-9.906177730909668 -454,17.0,18.0,-3.0756864340087167,6.218758799278971 -454,18.0,17.0,-3.0756864340087167,6.218758799278971 -454,18.0,18.0,8.958039375185187,-17.98346468163191 -454,18.0,19.0,-5.88235294117647,11.76470588235294 -454,19.0,9.0,-1.7848303152666305,3.98535828943083 -454,19.0,18.0,-5.88235294117647,11.76470588235294 -454,19.0,19.0,7.6671832564431,-15.75006417178377 -454,20.0,9.0,-5.101853820159654,10.98071411292983 -454,20.0,20.0,21.876495189895888,-45.10843276170355 -454,20.0,21.0,-16.774641369736234,34.127718648773715 -454,21.0,9.0,-2.619319553382597,5.400770303329455 -454,21.0,20.0,-16.774641369736234,34.127718648773715 -454,21.0,21.0,21.93449907537439,-43.48289181517921 -454,21.0,23.0,-2.5405381522555563,3.95440286307604 -454,22.0,14.0,-1.9683489489016612,3.976064876781356 -454,22.0,22.0,3.429754555384988,-6.965303617315433 -454,22.0,23.0,-1.4614056064833263,2.989238740534077 -454,23.0,21.0,-2.5405381522555563,3.95440286307604 -454,23.0,22.0,-1.4614056064833263,2.989238740534077 -454,23.0,23.0,5.311836702613133,-9.188263657315172 -454,23.0,24.0,-1.3098929438742493,2.287622053705056 -454,24.0,23.0,-1.3098929438742493,2.287622053705056 -454,24.0,24.0,4.495715080321987,-7.864978761969621 -454,24.0,25.0,-1.2165301194494855,1.8171440463475024 -454,24.0,26.0,-1.9692920169982515,3.760212661917064 -454,25.0,24.0,-1.2165301194494855,1.8171440463475024 -454,25.0,25.0,1.2165301194494855,-1.8171440463475024 -454,26.0,24.0,-1.9692920169982515,3.760212661917064 -454,26.0,26.0,3.652281470778589,-9.46044252232512 -454,26.0,27.0,0.0,2.608731947574922 -454,26.0,28.0,-0.99553355095268,1.881005840357816 -454,26.0,29.0,-0.6874559028276572,1.293971494797717 -454,27.0,5.0,-4.362844058012917,15.463571542897856 -454,27.0,26.0,0.0,2.608731947574922 -454,27.0,27.0,4.362844058012917,-18.15204256311988 -454,28.0,26.0,-0.99553355095268,1.881005840357816 -454,28.0,28.0,1.9075867579849564,-3.604364401207048 -454,28.0,29.0,-0.9120532070322764,1.7233585608492326 -454,29.0,26.0,-0.6874559028276572,1.293971494797717 -454,29.0,28.0,-0.9120532070322764,1.7233585608492326 -454,29.0,29.0,1.5995091098599337,-3.0173300556469496 -455,0.0,0.0,6.765516048652632,-21.23160167089863 -455,0.0,1.0,-5.224646179885656,15.646726840803398 -455,0.0,2.0,-1.5408698687669766,5.631674830095234 -455,1.0,0.0,-5.224646179885656,15.646726840803398 -455,1.0,1.0,9.75228216552403,-30.648662892676068 -455,1.0,3.0,-1.7055303166990268,5.1973792282565086 -455,1.0,4.0,-1.1359607881738778,4.772479328281356 -455,1.0,5.0,-1.6861448807654689,5.116477495334806 -455,2.0,0.0,-1.5408698687669766,5.631674830095234 -455,2.0,2.0,9.736318911079088,-29.13794745915803 -455,2.0,3.0,-8.19544904231211,23.5308726290628 -455,3.0,1.0,-1.7055303166990268,5.1973792282565086 -455,3.0,2.0,-8.19544904231211,23.5308726290628 -455,3.0,3.0,16.314103089185693,-55.509410535254254 -455,3.0,5.0,-6.413123730174556,22.31120356548123 -455,3.0,11.0,0.0,4.191255364806866 -455,4.0,1.0,-1.1359607881738778,4.772479328281356 -455,4.0,4.0,4.089980824135861,-12.190647245055052 -455,4.0,6.0,-2.954020035961983,7.449267916773697 -455,5.0,1.0,-1.6861448807654689,5.116477495334806 -455,5.0,3.0,-6.413123730174556,22.31120356548123 -455,5.0,5.0,22.341631269034565,-82.8291478657789 -455,5.0,6.0,-3.590210423980992,11.02611441072814 -455,5.0,7.0,-6.289308176100628,22.0125786163522 -455,5.0,8.0,0.0,4.915840805411357 -455,5.0,9.0,0.0,1.8561002591115965 -455,5.0,27.0,-4.362844058012917,15.463571542897856 -455,6.0,4.0,-2.954020035961983,7.449267916773697 -455,6.0,5.0,-3.590210423980992,11.02611441072814 -455,6.0,6.0,6.544230459942975,-18.45668232750184 -455,7.0,5.0,-6.289308176100628,22.0125786163522 -455,7.0,7.0,7.733287237496075,-26.527493274828448 -455,7.0,27.0,-1.4439790613954469,4.540814658476248 -455,8.0,5.0,0.0,4.915840805411357 -455,8.0,8.0,0.0,-18.706293706293707 -455,8.0,9.0,0.0,9.090909090909092 -455,8.0,10.0,0.0,4.807692307692308 -455,9.0,5.0,0.0,1.8561002591115965 -455,9.0,8.0,0.0,9.090909090909092 -455,9.0,9.0,13.462042814524237,-41.3837606675224 -455,9.0,16.0,-3.956039125715353,10.317447719844054 -455,9.0,19.0,-1.7848303152666305,3.98535828943083 -455,9.0,20.0,-5.101853820159654,10.98071411292983 -455,9.0,21.0,-2.619319553382597,5.400770303329455 -455,10.0,8.0,0.0,4.807692307692308 -455,10.0,10.0,0.0,-4.807692307692308 -455,11.0,3.0,0.0,4.191255364806866 -455,11.0,11.0,6.573961583776156,-24.424167659260668 -455,11.0,12.0,0.0,7.142857142857143 -455,11.0,13.0,-1.5265676088395577,3.1734252729654173 -455,11.0,14.0,-3.0953961826564296,6.097275864326261 -455,11.0,15.0,-1.9519977922801688,4.104359379111847 -455,12.0,11.0,0.0,7.142857142857143 -455,12.0,12.0,0.0,-7.142857142857143 -455,13.0,11.0,-1.5265676088395577,3.1734252729654173 -455,13.0,13.0,4.01751987283902,-5.424299332335067 -455,13.0,14.0,-2.4909522639994623,2.250874059369649 -455,14.0,11.0,-3.0953961826564296,6.097275864326261 -455,14.0,13.0,-2.4909522639994623,2.250874059369649 -455,14.0,14.0,9.365498545964757,-16.01163373210796 -455,14.0,17.0,-1.8108011504072024,3.687418931630696 -455,14.0,22.0,-1.9683489489016612,3.976064876781356 -455,15.0,11.0,-1.9519977922801688,4.104359379111847 -455,15.0,15.0,3.271064728633931,-8.94513365126506 -455,15.0,16.0,-1.3190669363537617,4.8407742721532125 -455,16.0,9.0,-3.956039125715353,10.317447719844054 -455,16.0,15.0,-1.3190669363537617,4.8407742721532125 -455,16.0,16.0,5.275106062069114,-15.158221991997266 -455,17.0,14.0,-1.8108011504072024,3.687418931630696 -455,17.0,17.0,4.886487584415919,-9.906177730909668 -455,17.0,18.0,-3.0756864340087167,6.218758799278971 -455,18.0,17.0,-3.0756864340087167,6.218758799278971 -455,18.0,18.0,8.958039375185187,-17.98346468163191 -455,18.0,19.0,-5.88235294117647,11.76470588235294 -455,19.0,9.0,-1.7848303152666305,3.98535828943083 -455,19.0,18.0,-5.88235294117647,11.76470588235294 -455,19.0,19.0,7.6671832564431,-15.75006417178377 -455,20.0,9.0,-5.101853820159654,10.98071411292983 -455,20.0,20.0,21.876495189895888,-45.10843276170355 -455,20.0,21.0,-16.774641369736234,34.127718648773715 -455,21.0,9.0,-2.619319553382597,5.400770303329455 -455,21.0,20.0,-16.774641369736234,34.127718648773715 -455,21.0,21.0,21.93449907537439,-43.48289181517921 -455,21.0,23.0,-2.5405381522555563,3.95440286307604 -455,22.0,14.0,-1.9683489489016612,3.976064876781356 -455,22.0,22.0,3.429754555384988,-6.965303617315433 -455,22.0,23.0,-1.4614056064833263,2.989238740534077 -455,23.0,21.0,-2.5405381522555563,3.95440286307604 -455,23.0,22.0,-1.4614056064833263,2.989238740534077 -455,23.0,23.0,5.311836702613133,-9.188263657315172 -455,23.0,24.0,-1.3098929438742493,2.287622053705056 -455,24.0,23.0,-1.3098929438742493,2.287622053705056 -455,24.0,24.0,4.495715080321987,-7.864978761969621 -455,24.0,25.0,-1.2165301194494855,1.8171440463475024 -455,24.0,26.0,-1.9692920169982515,3.760212661917064 -455,25.0,24.0,-1.2165301194494855,1.8171440463475024 -455,25.0,25.0,1.2165301194494855,-1.8171440463475024 -455,26.0,24.0,-1.9692920169982515,3.760212661917064 -455,26.0,26.0,3.652281470778589,-9.46044252232512 -455,26.0,27.0,0.0,2.608731947574922 -455,26.0,28.0,-0.99553355095268,1.881005840357816 -455,26.0,29.0,-0.6874559028276572,1.293971494797717 -455,27.0,5.0,-4.362844058012917,15.463571542897856 -455,27.0,7.0,-1.4439790613954469,4.540814658476248 -455,27.0,26.0,0.0,2.608731947574922 -455,27.0,27.0,5.806823119408364,-22.67145722159613 -455,28.0,26.0,-0.99553355095268,1.881005840357816 -455,28.0,28.0,1.9075867579849564,-3.604364401207048 -455,28.0,29.0,-0.9120532070322764,1.7233585608492326 -455,29.0,26.0,-0.6874559028276572,1.293971494797717 -455,29.0,28.0,-0.9120532070322764,1.7233585608492326 -455,29.0,29.0,1.5995091098599337,-3.0173300556469496 -456,0.0,0.0,6.765516048652632,-21.23160167089863 -456,0.0,1.0,-5.224646179885656,15.646726840803398 -456,0.0,2.0,-1.5408698687669766,5.631674830095234 -456,1.0,0.0,-5.224646179885656,15.646726840803398 -456,1.0,1.0,9.75228216552403,-30.648662892676068 -456,1.0,3.0,-1.7055303166990268,5.1973792282565086 -456,1.0,4.0,-1.1359607881738778,4.772479328281356 -456,1.0,5.0,-1.6861448807654689,5.116477495334806 -456,2.0,0.0,-1.5408698687669766,5.631674830095234 -456,2.0,2.0,9.736318911079088,-29.13794745915803 -456,2.0,3.0,-8.19544904231211,23.5308726290628 -456,3.0,1.0,-1.7055303166990268,5.1973792282565086 -456,3.0,2.0,-8.19544904231211,23.5308726290628 -456,3.0,3.0,16.314103089185693,-55.509410535254254 -456,3.0,5.0,-6.413123730174556,22.31120356548123 -456,3.0,11.0,0.0,4.191255364806866 -456,4.0,1.0,-1.1359607881738778,4.772479328281356 -456,4.0,4.0,4.089980824135861,-12.190647245055052 -456,4.0,6.0,-2.954020035961983,7.449267916773697 -456,5.0,1.0,-1.6861448807654689,5.116477495334806 -456,5.0,3.0,-6.413123730174556,22.31120356548123 -456,5.0,5.0,22.341631269034565,-82.8291478657789 -456,5.0,6.0,-3.590210423980992,11.02611441072814 -456,5.0,7.0,-6.289308176100628,22.0125786163522 -456,5.0,8.0,0.0,4.915840805411357 -456,5.0,9.0,0.0,1.8561002591115965 -456,5.0,27.0,-4.362844058012917,15.463571542897856 -456,6.0,4.0,-2.954020035961983,7.449267916773697 -456,6.0,5.0,-3.590210423980992,11.02611441072814 -456,6.0,6.0,6.544230459942975,-18.45668232750184 -456,7.0,5.0,-6.289308176100628,22.0125786163522 -456,7.0,7.0,7.733287237496075,-26.527493274828448 -456,7.0,27.0,-1.4439790613954469,4.540814658476248 -456,8.0,5.0,0.0,4.915840805411357 -456,8.0,8.0,0.0,-18.706293706293707 -456,8.0,9.0,0.0,9.090909090909092 -456,8.0,10.0,0.0,4.807692307692308 -456,9.0,5.0,0.0,1.8561002591115965 -456,9.0,8.0,0.0,9.090909090909092 -456,9.0,9.0,10.842723261141638,-35.98299036419294 -456,9.0,16.0,-3.956039125715353,10.317447719844054 -456,9.0,19.0,-1.7848303152666305,3.98535828943083 -456,9.0,20.0,-5.101853820159654,10.98071411292983 -456,10.0,8.0,0.0,4.807692307692308 -456,10.0,10.0,0.0,-4.807692307692308 -456,11.0,3.0,0.0,4.191255364806866 -456,11.0,11.0,3.478565401119727,-18.326891794934408 -456,11.0,12.0,0.0,7.142857142857143 -456,11.0,13.0,-1.5265676088395577,3.1734252729654173 -456,11.0,15.0,-1.9519977922801688,4.104359379111847 -456,12.0,11.0,0.0,7.142857142857143 -456,12.0,12.0,0.0,-7.142857142857143 -456,13.0,11.0,-1.5265676088395577,3.1734252729654173 -456,13.0,13.0,4.01751987283902,-5.424299332335067 -456,13.0,14.0,-2.4909522639994623,2.250874059369649 -456,14.0,13.0,-2.4909522639994623,2.250874059369649 -456,14.0,14.0,6.270102363308326,-9.9143578677817 -456,14.0,17.0,-1.8108011504072024,3.687418931630696 -456,14.0,22.0,-1.9683489489016612,3.976064876781356 -456,15.0,11.0,-1.9519977922801688,4.104359379111847 -456,15.0,15.0,3.271064728633931,-8.94513365126506 -456,15.0,16.0,-1.3190669363537617,4.8407742721532125 -456,16.0,9.0,-3.956039125715353,10.317447719844054 -456,16.0,15.0,-1.3190669363537617,4.8407742721532125 -456,16.0,16.0,5.275106062069114,-15.158221991997266 -456,17.0,14.0,-1.8108011504072024,3.687418931630696 -456,17.0,17.0,4.886487584415919,-9.906177730909668 -456,17.0,18.0,-3.0756864340087167,6.218758799278971 -456,18.0,17.0,-3.0756864340087167,6.218758799278971 -456,18.0,18.0,8.958039375185187,-17.98346468163191 -456,18.0,19.0,-5.88235294117647,11.76470588235294 -456,19.0,9.0,-1.7848303152666305,3.98535828943083 -456,19.0,18.0,-5.88235294117647,11.76470588235294 -456,19.0,19.0,7.6671832564431,-15.75006417178377 -456,20.0,9.0,-5.101853820159654,10.98071411292983 -456,20.0,20.0,21.876495189895888,-45.10843276170355 -456,20.0,21.0,-16.774641369736234,34.127718648773715 -456,21.0,20.0,-16.774641369736234,34.127718648773715 -456,21.0,21.0,19.31517952199179,-38.08212151184976 -456,21.0,23.0,-2.5405381522555563,3.95440286307604 -456,22.0,14.0,-1.9683489489016612,3.976064876781356 -456,22.0,22.0,3.429754555384988,-6.965303617315433 -456,22.0,23.0,-1.4614056064833263,2.989238740534077 -456,23.0,21.0,-2.5405381522555563,3.95440286307604 -456,23.0,22.0,-1.4614056064833263,2.989238740534077 -456,23.0,23.0,5.311836702613133,-9.188263657315172 -456,23.0,24.0,-1.3098929438742493,2.287622053705056 -456,24.0,23.0,-1.3098929438742493,2.287622053705056 -456,24.0,24.0,4.495715080321987,-7.864978761969621 -456,24.0,25.0,-1.2165301194494855,1.8171440463475024 -456,24.0,26.0,-1.9692920169982515,3.760212661917064 -456,25.0,24.0,-1.2165301194494855,1.8171440463475024 -456,25.0,25.0,1.2165301194494855,-1.8171440463475024 -456,26.0,24.0,-1.9692920169982515,3.760212661917064 -456,26.0,26.0,3.652281470778589,-9.46044252232512 -456,26.0,27.0,0.0,2.608731947574922 -456,26.0,28.0,-0.99553355095268,1.881005840357816 -456,26.0,29.0,-0.6874559028276572,1.293971494797717 -456,27.0,5.0,-4.362844058012917,15.463571542897856 -456,27.0,7.0,-1.4439790613954469,4.540814658476248 -456,27.0,26.0,0.0,2.608731947574922 -456,27.0,27.0,5.806823119408364,-22.67145722159613 -456,28.0,26.0,-0.99553355095268,1.881005840357816 -456,28.0,28.0,1.9075867579849564,-3.604364401207048 -456,28.0,29.0,-0.9120532070322764,1.7233585608492326 -456,29.0,26.0,-0.6874559028276572,1.293971494797717 -456,29.0,28.0,-0.9120532070322764,1.7233585608492326 -456,29.0,29.0,1.5995091098599337,-3.0173300556469496 -457,0.0,0.0,6.765516048652632,-21.23160167089863 -457,0.0,1.0,-5.224646179885656,15.646726840803398 -457,0.0,2.0,-1.5408698687669766,5.631674830095234 -457,1.0,0.0,-5.224646179885656,15.646726840803398 -457,1.0,1.0,9.75228216552403,-30.648662892676068 -457,1.0,3.0,-1.7055303166990268,5.1973792282565086 -457,1.0,4.0,-1.1359607881738778,4.772479328281356 -457,1.0,5.0,-1.6861448807654689,5.116477495334806 -457,2.0,0.0,-1.5408698687669766,5.631674830095234 -457,2.0,2.0,9.736318911079088,-29.13794745915803 -457,2.0,3.0,-8.19544904231211,23.5308726290628 -457,3.0,1.0,-1.7055303166990268,5.1973792282565086 -457,3.0,2.0,-8.19544904231211,23.5308726290628 -457,3.0,3.0,16.314103089185693,-55.509410535254254 -457,3.0,5.0,-6.413123730174556,22.31120356548123 -457,3.0,11.0,0.0,4.191255364806866 -457,4.0,1.0,-1.1359607881738778,4.772479328281356 -457,4.0,4.0,4.089980824135861,-12.190647245055052 -457,4.0,6.0,-2.954020035961983,7.449267916773697 -457,5.0,1.0,-1.6861448807654689,5.116477495334806 -457,5.0,3.0,-6.413123730174556,22.31120356548123 -457,5.0,5.0,22.341631269034565,-82.8291478657789 -457,5.0,6.0,-3.590210423980992,11.02611441072814 -457,5.0,7.0,-6.289308176100628,22.0125786163522 -457,5.0,8.0,0.0,4.915840805411357 -457,5.0,9.0,0.0,1.8561002591115965 -457,5.0,27.0,-4.362844058012917,15.463571542897856 -457,6.0,4.0,-2.954020035961983,7.449267916773697 -457,6.0,5.0,-3.590210423980992,11.02611441072814 -457,6.0,6.0,6.544230459942975,-18.45668232750184 -457,7.0,5.0,-6.289308176100628,22.0125786163522 -457,7.0,7.0,7.733287237496075,-26.527493274828448 -457,7.0,27.0,-1.4439790613954469,4.540814658476248 -457,8.0,5.0,0.0,4.915840805411357 -457,8.0,8.0,0.0,-18.706293706293707 -457,8.0,9.0,0.0,9.090909090909092 -457,8.0,10.0,0.0,4.807692307692308 -457,9.0,5.0,0.0,1.8561002591115965 -457,9.0,8.0,0.0,9.090909090909092 -457,9.0,9.0,13.462042814524237,-41.3837606675224 -457,9.0,16.0,-3.956039125715353,10.317447719844054 -457,9.0,19.0,-1.7848303152666305,3.98535828943083 -457,9.0,20.0,-5.101853820159654,10.98071411292983 -457,9.0,21.0,-2.619319553382597,5.400770303329455 -457,10.0,8.0,0.0,4.807692307692308 -457,10.0,10.0,0.0,-4.807692307692308 -457,11.0,3.0,0.0,4.191255364806866 -457,11.0,11.0,6.573961583776156,-24.424167659260668 -457,11.0,12.0,0.0,7.142857142857143 -457,11.0,13.0,-1.5265676088395577,3.1734252729654173 -457,11.0,14.0,-3.0953961826564296,6.097275864326261 -457,11.0,15.0,-1.9519977922801688,4.104359379111847 -457,12.0,11.0,0.0,7.142857142857143 -457,12.0,12.0,0.0,-7.142857142857143 -457,13.0,11.0,-1.5265676088395577,3.1734252729654173 -457,13.0,13.0,4.01751987283902,-5.424299332335067 -457,13.0,14.0,-2.4909522639994623,2.250874059369649 -457,14.0,11.0,-3.0953961826564296,6.097275864326261 -457,14.0,13.0,-2.4909522639994623,2.250874059369649 -457,14.0,14.0,9.365498545964757,-16.01163373210796 -457,14.0,17.0,-1.8108011504072024,3.687418931630696 -457,14.0,22.0,-1.9683489489016612,3.976064876781356 -457,15.0,11.0,-1.9519977922801688,4.104359379111847 -457,15.0,15.0,3.271064728633931,-8.94513365126506 -457,15.0,16.0,-1.3190669363537617,4.8407742721532125 -457,16.0,9.0,-3.956039125715353,10.317447719844054 -457,16.0,15.0,-1.3190669363537617,4.8407742721532125 -457,16.0,16.0,5.275106062069114,-15.158221991997266 -457,17.0,14.0,-1.8108011504072024,3.687418931630696 -457,17.0,17.0,4.886487584415919,-9.906177730909668 -457,17.0,18.0,-3.0756864340087167,6.218758799278971 -457,18.0,17.0,-3.0756864340087167,6.218758799278971 -457,18.0,18.0,8.958039375185187,-17.98346468163191 -457,18.0,19.0,-5.88235294117647,11.76470588235294 -457,19.0,9.0,-1.7848303152666305,3.98535828943083 -457,19.0,18.0,-5.88235294117647,11.76470588235294 -457,19.0,19.0,7.6671832564431,-15.75006417178377 -457,20.0,9.0,-5.101853820159654,10.98071411292983 -457,20.0,20.0,21.876495189895888,-45.10843276170355 -457,20.0,21.0,-16.774641369736234,34.127718648773715 -457,21.0,9.0,-2.619319553382597,5.400770303329455 -457,21.0,20.0,-16.774641369736234,34.127718648773715 -457,21.0,21.0,21.93449907537439,-43.48289181517921 -457,21.0,23.0,-2.5405381522555563,3.95440286307604 -457,22.0,14.0,-1.9683489489016612,3.976064876781356 -457,22.0,22.0,3.429754555384988,-6.965303617315433 -457,22.0,23.0,-1.4614056064833263,2.989238740534077 -457,23.0,21.0,-2.5405381522555563,3.95440286307604 -457,23.0,22.0,-1.4614056064833263,2.989238740534077 -457,23.0,23.0,5.311836702613133,-9.188263657315172 -457,23.0,24.0,-1.3098929438742493,2.287622053705056 -457,24.0,23.0,-1.3098929438742493,2.287622053705056 -457,24.0,24.0,4.495715080321987,-7.864978761969621 -457,24.0,25.0,-1.2165301194494855,1.8171440463475024 -457,24.0,26.0,-1.9692920169982515,3.760212661917064 -457,25.0,24.0,-1.2165301194494855,1.8171440463475024 -457,25.0,25.0,1.2165301194494855,-1.8171440463475024 -457,26.0,24.0,-1.9692920169982515,3.760212661917064 -457,26.0,26.0,3.652281470778589,-9.46044252232512 -457,26.0,27.0,0.0,2.608731947574922 -457,26.0,28.0,-0.99553355095268,1.881005840357816 -457,26.0,29.0,-0.6874559028276572,1.293971494797717 -457,27.0,5.0,-4.362844058012917,15.463571542897856 -457,27.0,7.0,-1.4439790613954469,4.540814658476248 -457,27.0,26.0,0.0,2.608731947574922 -457,27.0,27.0,5.806823119408364,-22.67145722159613 -457,28.0,26.0,-0.99553355095268,1.881005840357816 -457,28.0,28.0,1.9075867579849564,-3.604364401207048 -457,28.0,29.0,-0.9120532070322764,1.7233585608492326 -457,29.0,26.0,-0.6874559028276572,1.293971494797717 -457,29.0,28.0,-0.9120532070322764,1.7233585608492326 -457,29.0,29.0,1.5995091098599337,-3.0173300556469496 -458,0.0,0.0,6.765516048652632,-21.23160167089863 -458,0.0,1.0,-5.224646179885656,15.646726840803398 -458,0.0,2.0,-1.5408698687669766,5.631674830095234 -458,1.0,0.0,-5.224646179885656,15.646726840803398 -458,1.0,1.0,9.75228216552403,-30.648662892676068 -458,1.0,3.0,-1.7055303166990268,5.1973792282565086 -458,1.0,4.0,-1.1359607881738778,4.772479328281356 -458,1.0,5.0,-1.6861448807654689,5.116477495334806 -458,2.0,0.0,-1.5408698687669766,5.631674830095234 -458,2.0,2.0,9.736318911079088,-29.13794745915803 -458,2.0,3.0,-8.19544904231211,23.5308726290628 -458,3.0,1.0,-1.7055303166990268,5.1973792282565086 -458,3.0,2.0,-8.19544904231211,23.5308726290628 -458,3.0,3.0,16.314103089185693,-55.509410535254254 -458,3.0,5.0,-6.413123730174556,22.31120356548123 -458,3.0,11.0,0.0,4.191255364806866 -458,4.0,1.0,-1.1359607881738778,4.772479328281356 -458,4.0,4.0,4.089980824135861,-12.190647245055052 -458,4.0,6.0,-2.954020035961983,7.449267916773697 -458,5.0,1.0,-1.6861448807654689,5.116477495334806 -458,5.0,3.0,-6.413123730174556,22.31120356548123 -458,5.0,5.0,22.341631269034565,-82.8291478657789 -458,5.0,6.0,-3.590210423980992,11.02611441072814 -458,5.0,7.0,-6.289308176100628,22.0125786163522 -458,5.0,8.0,0.0,4.915840805411357 -458,5.0,9.0,0.0,1.8561002591115965 -458,5.0,27.0,-4.362844058012917,15.463571542897856 -458,6.0,4.0,-2.954020035961983,7.449267916773697 -458,6.0,5.0,-3.590210423980992,11.02611441072814 -458,6.0,6.0,6.544230459942975,-18.45668232750184 -458,7.0,5.0,-6.289308176100628,22.0125786163522 -458,7.0,7.0,7.733287237496075,-26.527493274828448 -458,7.0,27.0,-1.4439790613954469,4.540814658476248 -458,8.0,5.0,0.0,4.915840805411357 -458,8.0,8.0,0.0,-18.706293706293707 -458,8.0,9.0,0.0,9.090909090909092 -458,8.0,10.0,0.0,4.807692307692308 -458,9.0,5.0,0.0,1.8561002591115965 -458,9.0,8.0,0.0,9.090909090909092 -458,9.0,9.0,13.462042814524237,-41.3837606675224 -458,9.0,16.0,-3.956039125715353,10.317447719844054 -458,9.0,19.0,-1.7848303152666305,3.98535828943083 -458,9.0,20.0,-5.101853820159654,10.98071411292983 -458,9.0,21.0,-2.619319553382597,5.400770303329455 -458,10.0,8.0,0.0,4.807692307692308 -458,10.0,10.0,0.0,-4.807692307692308 -458,11.0,3.0,0.0,4.191255364806866 -458,11.0,11.0,4.621963791495987,-20.31980828014882 -458,11.0,12.0,0.0,7.142857142857143 -458,11.0,13.0,-1.5265676088395577,3.1734252729654173 -458,11.0,14.0,-3.0953961826564296,6.097275864326261 -458,12.0,11.0,0.0,7.142857142857143 -458,12.0,12.0,0.0,-7.142857142857143 -458,13.0,11.0,-1.5265676088395577,3.1734252729654173 -458,13.0,13.0,4.01751987283902,-5.424299332335067 -458,13.0,14.0,-2.4909522639994623,2.250874059369649 -458,14.0,11.0,-3.0953961826564296,6.097275864326261 -458,14.0,13.0,-2.4909522639994623,2.250874059369649 -458,14.0,14.0,9.365498545964757,-16.01163373210796 -458,14.0,17.0,-1.8108011504072024,3.687418931630696 -458,14.0,22.0,-1.9683489489016612,3.976064876781356 -458,15.0,15.0,1.3190669363537617,-4.8407742721532125 -458,15.0,16.0,-1.3190669363537617,4.8407742721532125 -458,16.0,9.0,-3.956039125715353,10.317447719844054 -458,16.0,15.0,-1.3190669363537617,4.8407742721532125 -458,16.0,16.0,5.275106062069114,-15.158221991997266 -458,17.0,14.0,-1.8108011504072024,3.687418931630696 -458,17.0,17.0,4.886487584415919,-9.906177730909668 -458,17.0,18.0,-3.0756864340087167,6.218758799278971 -458,18.0,17.0,-3.0756864340087167,6.218758799278971 -458,18.0,18.0,8.958039375185187,-17.98346468163191 -458,18.0,19.0,-5.88235294117647,11.76470588235294 -458,19.0,9.0,-1.7848303152666305,3.98535828943083 -458,19.0,18.0,-5.88235294117647,11.76470588235294 -458,19.0,19.0,7.6671832564431,-15.75006417178377 -458,20.0,9.0,-5.101853820159654,10.98071411292983 -458,20.0,20.0,21.876495189895888,-45.10843276170355 -458,20.0,21.0,-16.774641369736234,34.127718648773715 -458,21.0,9.0,-2.619319553382597,5.400770303329455 -458,21.0,20.0,-16.774641369736234,34.127718648773715 -458,21.0,21.0,21.93449907537439,-43.48289181517921 -458,21.0,23.0,-2.5405381522555563,3.95440286307604 -458,22.0,14.0,-1.9683489489016612,3.976064876781356 -458,22.0,22.0,3.429754555384988,-6.965303617315433 -458,22.0,23.0,-1.4614056064833263,2.989238740534077 -458,23.0,21.0,-2.5405381522555563,3.95440286307604 -458,23.0,22.0,-1.4614056064833263,2.989238740534077 -458,23.0,23.0,4.001943758738883,-6.900641603610116 -458,24.0,24.0,3.185822136447737,-5.577356708264566 -458,24.0,25.0,-1.2165301194494855,1.8171440463475024 -458,24.0,26.0,-1.9692920169982515,3.760212661917064 -458,25.0,24.0,-1.2165301194494855,1.8171440463475024 -458,25.0,25.0,1.2165301194494855,-1.8171440463475024 -458,26.0,24.0,-1.9692920169982515,3.760212661917064 -458,26.0,26.0,3.652281470778589,-9.46044252232512 -458,26.0,27.0,0.0,2.608731947574922 -458,26.0,28.0,-0.99553355095268,1.881005840357816 -458,26.0,29.0,-0.6874559028276572,1.293971494797717 -458,27.0,5.0,-4.362844058012917,15.463571542897856 -458,27.0,7.0,-1.4439790613954469,4.540814658476248 -458,27.0,26.0,0.0,2.608731947574922 -458,27.0,27.0,5.806823119408364,-22.67145722159613 -458,28.0,26.0,-0.99553355095268,1.881005840357816 -458,28.0,28.0,1.9075867579849564,-3.604364401207048 -458,28.0,29.0,-0.9120532070322764,1.7233585608492326 -458,29.0,26.0,-0.6874559028276572,1.293971494797717 -458,29.0,28.0,-0.9120532070322764,1.7233585608492326 -458,29.0,29.0,1.5995091098599337,-3.0173300556469496 -459,0.0,0.0,6.765516048652632,-21.23160167089863 -459,0.0,1.0,-5.224646179885656,15.646726840803398 -459,0.0,2.0,-1.5408698687669766,5.631674830095234 -459,1.0,0.0,-5.224646179885656,15.646726840803398 -459,1.0,1.0,9.75228216552403,-30.648662892676068 -459,1.0,3.0,-1.7055303166990268,5.1973792282565086 -459,1.0,4.0,-1.1359607881738778,4.772479328281356 -459,1.0,5.0,-1.6861448807654689,5.116477495334806 -459,2.0,0.0,-1.5408698687669766,5.631674830095234 -459,2.0,2.0,9.736318911079088,-29.13794745915803 -459,2.0,3.0,-8.19544904231211,23.5308726290628 -459,3.0,1.0,-1.7055303166990268,5.1973792282565086 -459,3.0,2.0,-8.19544904231211,23.5308726290628 -459,3.0,3.0,16.314103089185693,-55.509410535254254 -459,3.0,5.0,-6.413123730174556,22.31120356548123 -459,3.0,11.0,0.0,4.191255364806866 -459,4.0,1.0,-1.1359607881738778,4.772479328281356 -459,4.0,4.0,4.089980824135861,-12.190647245055052 -459,4.0,6.0,-2.954020035961983,7.449267916773697 -459,5.0,1.0,-1.6861448807654689,5.116477495334806 -459,5.0,3.0,-6.413123730174556,22.31120356548123 -459,5.0,5.0,22.341631269034565,-82.8291478657789 -459,5.0,6.0,-3.590210423980992,11.02611441072814 -459,5.0,7.0,-6.289308176100628,22.0125786163522 -459,5.0,8.0,0.0,4.915840805411357 -459,5.0,9.0,0.0,1.8561002591115965 -459,5.0,27.0,-4.362844058012917,15.463571542897856 -459,6.0,4.0,-2.954020035961983,7.449267916773697 -459,6.0,5.0,-3.590210423980992,11.02611441072814 -459,6.0,6.0,6.544230459942975,-18.45668232750184 -459,7.0,5.0,-6.289308176100628,22.0125786163522 -459,7.0,7.0,7.733287237496075,-26.527493274828448 -459,7.0,27.0,-1.4439790613954469,4.540814658476248 -459,8.0,5.0,0.0,4.915840805411357 -459,8.0,8.0,0.0,-18.706293706293707 -459,8.0,9.0,0.0,9.090909090909092 -459,8.0,10.0,0.0,4.807692307692308 -459,9.0,5.0,0.0,1.8561002591115965 -459,9.0,8.0,0.0,9.090909090909092 -459,9.0,9.0,13.462042814524237,-41.3837606675224 -459,9.0,16.0,-3.956039125715353,10.317447719844054 -459,9.0,19.0,-1.7848303152666305,3.98535828943083 -459,9.0,20.0,-5.101853820159654,10.98071411292983 -459,9.0,21.0,-2.619319553382597,5.400770303329455 -459,10.0,8.0,0.0,4.807692307692308 -459,10.0,10.0,0.0,-4.807692307692308 -459,11.0,3.0,0.0,4.191255364806866 -459,11.0,11.0,6.573961583776156,-24.424167659260668 -459,11.0,12.0,0.0,7.142857142857143 -459,11.0,13.0,-1.5265676088395577,3.1734252729654173 -459,11.0,14.0,-3.0953961826564296,6.097275864326261 -459,11.0,15.0,-1.9519977922801688,4.104359379111847 -459,12.0,11.0,0.0,7.142857142857143 -459,12.0,12.0,0.0,-7.142857142857143 -459,13.0,11.0,-1.5265676088395577,3.1734252729654173 -459,13.0,13.0,4.01751987283902,-5.424299332335067 -459,13.0,14.0,-2.4909522639994623,2.250874059369649 -459,14.0,11.0,-3.0953961826564296,6.097275864326261 -459,14.0,13.0,-2.4909522639994623,2.250874059369649 -459,14.0,14.0,9.365498545964757,-16.01163373210796 -459,14.0,17.0,-1.8108011504072024,3.687418931630696 -459,14.0,22.0,-1.9683489489016612,3.976064876781356 -459,15.0,11.0,-1.9519977922801688,4.104359379111847 -459,15.0,15.0,3.271064728633931,-8.94513365126506 -459,15.0,16.0,-1.3190669363537617,4.8407742721532125 -459,16.0,9.0,-3.956039125715353,10.317447719844054 -459,16.0,15.0,-1.3190669363537617,4.8407742721532125 -459,16.0,16.0,5.275106062069114,-15.158221991997266 -459,17.0,14.0,-1.8108011504072024,3.687418931630696 -459,17.0,17.0,4.886487584415919,-9.906177730909668 -459,17.0,18.0,-3.0756864340087167,6.218758799278971 -459,18.0,17.0,-3.0756864340087167,6.218758799278971 -459,18.0,18.0,8.958039375185187,-17.98346468163191 -459,18.0,19.0,-5.88235294117647,11.76470588235294 -459,19.0,9.0,-1.7848303152666305,3.98535828943083 -459,19.0,18.0,-5.88235294117647,11.76470588235294 -459,19.0,19.0,7.6671832564431,-15.75006417178377 -459,20.0,9.0,-5.101853820159654,10.98071411292983 -459,20.0,20.0,21.876495189895888,-45.10843276170355 -459,20.0,21.0,-16.774641369736234,34.127718648773715 -459,21.0,9.0,-2.619319553382597,5.400770303329455 -459,21.0,20.0,-16.774641369736234,34.127718648773715 -459,21.0,21.0,21.93449907537439,-43.48289181517921 -459,21.0,23.0,-2.5405381522555563,3.95440286307604 -459,22.0,14.0,-1.9683489489016612,3.976064876781356 -459,22.0,22.0,3.429754555384988,-6.965303617315433 -459,22.0,23.0,-1.4614056064833263,2.989238740534077 -459,23.0,21.0,-2.5405381522555563,3.95440286307604 -459,23.0,22.0,-1.4614056064833263,2.989238740534077 -459,23.0,23.0,5.311836702613133,-9.188263657315172 -459,23.0,24.0,-1.3098929438742493,2.287622053705056 -459,24.0,23.0,-1.3098929438742493,2.287622053705056 -459,24.0,24.0,4.495715080321987,-7.864978761969621 -459,24.0,25.0,-1.2165301194494855,1.8171440463475024 -459,24.0,26.0,-1.9692920169982515,3.760212661917064 -459,25.0,24.0,-1.2165301194494855,1.8171440463475024 -459,25.0,25.0,1.2165301194494855,-1.8171440463475024 -459,26.0,24.0,-1.9692920169982515,3.760212661917064 -459,26.0,26.0,3.652281470778589,-9.46044252232512 -459,26.0,27.0,0.0,2.608731947574922 -459,26.0,28.0,-0.99553355095268,1.881005840357816 -459,26.0,29.0,-0.6874559028276572,1.293971494797717 -459,27.0,5.0,-4.362844058012917,15.463571542897856 -459,27.0,7.0,-1.4439790613954469,4.540814658476248 -459,27.0,26.0,0.0,2.608731947574922 -459,27.0,27.0,5.806823119408364,-22.67145722159613 -459,28.0,26.0,-0.99553355095268,1.881005840357816 -459,28.0,28.0,1.9075867579849564,-3.604364401207048 -459,28.0,29.0,-0.9120532070322764,1.7233585608492326 -459,29.0,26.0,-0.6874559028276572,1.293971494797717 -459,29.0,28.0,-0.9120532070322764,1.7233585608492326 -459,29.0,29.0,1.5995091098599337,-3.0173300556469496 -460,0.0,0.0,6.765516048652632,-21.23160167089863 -460,0.0,1.0,-5.224646179885656,15.646726840803398 -460,0.0,2.0,-1.5408698687669766,5.631674830095234 -460,1.0,0.0,-5.224646179885656,15.646726840803398 -460,1.0,1.0,9.75228216552403,-30.648662892676068 -460,1.0,3.0,-1.7055303166990268,5.1973792282565086 -460,1.0,4.0,-1.1359607881738778,4.772479328281356 -460,1.0,5.0,-1.6861448807654689,5.116477495334806 -460,2.0,0.0,-1.5408698687669766,5.631674830095234 -460,2.0,2.0,1.5408698687669766,-5.611274830095233 -460,3.0,1.0,-1.7055303166990268,5.1973792282565086 -460,3.0,3.0,8.118654046873583,-31.982737906191456 -460,3.0,5.0,-6.413123730174556,22.31120356548123 -460,3.0,11.0,0.0,4.191255364806866 -460,4.0,1.0,-1.1359607881738778,4.772479328281356 -460,4.0,4.0,4.089980824135861,-12.190647245055052 -460,4.0,6.0,-2.954020035961983,7.449267916773697 -460,5.0,1.0,-1.6861448807654689,5.116477495334806 -460,5.0,3.0,-6.413123730174556,22.31120356548123 -460,5.0,5.0,22.341631269034565,-80.91366772221689 -460,5.0,6.0,-3.590210423980992,11.02611441072814 -460,5.0,7.0,-6.289308176100628,22.0125786163522 -460,5.0,8.0,0.0,4.915840805411357 -460,5.0,27.0,-4.362844058012917,15.463571542897856 -460,6.0,4.0,-2.954020035961983,7.449267916773697 -460,6.0,5.0,-3.590210423980992,11.02611441072814 -460,6.0,6.0,6.544230459942975,-18.45668232750184 -460,7.0,5.0,-6.289308176100628,22.0125786163522 -460,7.0,7.0,7.733287237496075,-26.527493274828448 -460,7.0,27.0,-1.4439790613954469,4.540814658476248 -460,8.0,5.0,0.0,4.915840805411357 -460,8.0,8.0,0.0,-18.706293706293707 -460,8.0,9.0,0.0,9.090909090909092 -460,8.0,10.0,0.0,4.807692307692308 -460,9.0,8.0,0.0,9.090909090909092 -460,9.0,9.0,10.842723261141638,-34.18442921311381 -460,9.0,16.0,-3.956039125715353,10.317447719844054 -460,9.0,19.0,-1.7848303152666305,3.98535828943083 -460,9.0,20.0,-5.101853820159654,10.98071411292983 -460,10.0,8.0,0.0,4.807692307692308 -460,10.0,10.0,0.0,-4.807692307692308 -460,11.0,3.0,0.0,4.191255364806866 -460,11.0,11.0,6.573961583776156,-24.424167659260668 -460,11.0,12.0,0.0,7.142857142857143 -460,11.0,13.0,-1.5265676088395577,3.1734252729654173 -460,11.0,14.0,-3.0953961826564296,6.097275864326261 -460,11.0,15.0,-1.9519977922801688,4.104359379111847 -460,12.0,11.0,0.0,7.142857142857143 -460,12.0,12.0,0.0,-7.142857142857143 -460,13.0,11.0,-1.5265676088395577,3.1734252729654173 -460,13.0,13.0,4.01751987283902,-5.424299332335067 -460,13.0,14.0,-2.4909522639994623,2.250874059369649 -460,14.0,11.0,-3.0953961826564296,6.097275864326261 -460,14.0,13.0,-2.4909522639994623,2.250874059369649 -460,14.0,14.0,9.365498545964757,-16.01163373210796 -460,14.0,17.0,-1.8108011504072024,3.687418931630696 -460,14.0,22.0,-1.9683489489016612,3.976064876781356 -460,15.0,11.0,-1.9519977922801688,4.104359379111847 -460,15.0,15.0,3.271064728633931,-8.94513365126506 -460,15.0,16.0,-1.3190669363537617,4.8407742721532125 -460,16.0,9.0,-3.956039125715353,10.317447719844054 -460,16.0,15.0,-1.3190669363537617,4.8407742721532125 -460,16.0,16.0,5.275106062069114,-15.158221991997266 -460,17.0,14.0,-1.8108011504072024,3.687418931630696 -460,17.0,17.0,4.886487584415919,-9.906177730909668 -460,17.0,18.0,-3.0756864340087167,6.218758799278971 -460,18.0,17.0,-3.0756864340087167,6.218758799278971 -460,18.0,18.0,8.958039375185187,-17.98346468163191 -460,18.0,19.0,-5.88235294117647,11.76470588235294 -460,19.0,9.0,-1.7848303152666305,3.98535828943083 -460,19.0,18.0,-5.88235294117647,11.76470588235294 -460,19.0,19.0,7.6671832564431,-15.75006417178377 -460,20.0,9.0,-5.101853820159654,10.98071411292983 -460,20.0,20.0,21.876495189895888,-45.10843276170355 -460,20.0,21.0,-16.774641369736234,34.127718648773715 -460,21.0,20.0,-16.774641369736234,34.127718648773715 -460,21.0,21.0,19.31517952199179,-38.08212151184976 -460,21.0,23.0,-2.5405381522555563,3.95440286307604 -460,22.0,14.0,-1.9683489489016612,3.976064876781356 -460,22.0,22.0,3.429754555384988,-6.965303617315433 -460,22.0,23.0,-1.4614056064833263,2.989238740534077 -460,23.0,21.0,-2.5405381522555563,3.95440286307604 -460,23.0,22.0,-1.4614056064833263,2.989238740534077 -460,23.0,23.0,5.311836702613133,-9.188263657315172 -460,23.0,24.0,-1.3098929438742493,2.287622053705056 -460,24.0,23.0,-1.3098929438742493,2.287622053705056 -460,24.0,24.0,2.526423063323735,-4.104766100052558 -460,24.0,25.0,-1.2165301194494855,1.8171440463475024 -460,25.0,24.0,-1.2165301194494855,1.8171440463475024 -460,25.0,25.0,1.2165301194494855,-1.8171440463475024 -460,26.0,26.0,1.6829894537803372,-5.700229860408058 -460,26.0,27.0,0.0,2.608731947574922 -460,26.0,28.0,-0.99553355095268,1.881005840357816 -460,26.0,29.0,-0.6874559028276572,1.293971494797717 -460,27.0,5.0,-4.362844058012917,15.463571542897856 -460,27.0,7.0,-1.4439790613954469,4.540814658476248 -460,27.0,26.0,0.0,2.608731947574922 -460,27.0,27.0,5.806823119408364,-22.67145722159613 -460,28.0,26.0,-0.99553355095268,1.881005840357816 -460,28.0,28.0,1.9075867579849564,-3.604364401207048 -460,28.0,29.0,-0.9120532070322764,1.7233585608492326 -460,29.0,26.0,-0.6874559028276572,1.293971494797717 -460,29.0,28.0,-0.9120532070322764,1.7233585608492326 -460,29.0,29.0,1.5995091098599337,-3.0173300556469496 -461,0.0,0.0,6.765516048652632,-21.23160167089863 -461,0.0,1.0,-5.224646179885656,15.646726840803398 -461,0.0,2.0,-1.5408698687669766,5.631674830095234 -461,1.0,0.0,-5.224646179885656,15.646726840803398 -461,1.0,1.0,9.75228216552403,-30.648662892676068 -461,1.0,3.0,-1.7055303166990268,5.1973792282565086 -461,1.0,4.0,-1.1359607881738778,4.772479328281356 -461,1.0,5.0,-1.6861448807654689,5.116477495334806 -461,2.0,0.0,-1.5408698687669766,5.631674830095234 -461,2.0,2.0,9.736318911079088,-29.13794745915803 -461,2.0,3.0,-8.19544904231211,23.5308726290628 -461,3.0,1.0,-1.7055303166990268,5.1973792282565086 -461,3.0,2.0,-8.19544904231211,23.5308726290628 -461,3.0,3.0,16.314103089185693,-55.509410535254254 -461,3.0,5.0,-6.413123730174556,22.31120356548123 -461,3.0,11.0,0.0,4.191255364806866 -461,4.0,1.0,-1.1359607881738778,4.772479328281356 -461,4.0,4.0,1.1359607881738778,-4.751579328281355 -461,5.0,1.0,-1.6861448807654689,5.116477495334806 -461,5.0,3.0,-6.413123730174556,22.31120356548123 -461,5.0,5.0,22.341631269034565,-82.8291478657789 -461,5.0,6.0,-3.590210423980992,11.02611441072814 -461,5.0,7.0,-6.289308176100628,22.0125786163522 -461,5.0,8.0,0.0,4.915840805411357 -461,5.0,9.0,0.0,1.8561002591115965 -461,5.0,27.0,-4.362844058012917,15.463571542897856 -461,6.0,5.0,-3.590210423980992,11.02611441072814 -461,6.0,6.0,3.590210423980992,-11.01761441072814 -461,7.0,5.0,-6.289308176100628,22.0125786163522 -461,7.0,7.0,6.289308176100628,-22.0080786163522 -461,8.0,5.0,0.0,4.915840805411357 -461,8.0,8.0,0.0,-18.706293706293707 -461,8.0,9.0,0.0,9.090909090909092 -461,8.0,10.0,0.0,4.807692307692308 -461,9.0,5.0,0.0,1.8561002591115965 -461,9.0,8.0,0.0,9.090909090909092 -461,9.0,9.0,13.462042814524237,-41.3837606675224 -461,9.0,16.0,-3.956039125715353,10.317447719844054 -461,9.0,19.0,-1.7848303152666305,3.98535828943083 -461,9.0,20.0,-5.101853820159654,10.98071411292983 -461,9.0,21.0,-2.619319553382597,5.400770303329455 -461,10.0,8.0,0.0,4.807692307692308 -461,10.0,10.0,0.0,-4.807692307692308 -461,11.0,3.0,0.0,4.191255364806866 -461,11.0,11.0,4.621963791495987,-20.31980828014882 -461,11.0,12.0,0.0,7.142857142857143 -461,11.0,13.0,-1.5265676088395577,3.1734252729654173 -461,11.0,14.0,-3.0953961826564296,6.097275864326261 -461,12.0,11.0,0.0,7.142857142857143 -461,12.0,12.0,0.0,-7.142857142857143 -461,13.0,11.0,-1.5265676088395577,3.1734252729654173 -461,13.0,13.0,1.5265676088395577,-3.1734252729654173 -461,14.0,11.0,-3.0953961826564296,6.097275864326261 -461,14.0,14.0,6.874546281965293,-13.760759672738311 -461,14.0,17.0,-1.8108011504072024,3.687418931630696 -461,14.0,22.0,-1.9683489489016612,3.976064876781356 -461,15.0,15.0,1.3190669363537617,-4.8407742721532125 -461,15.0,16.0,-1.3190669363537617,4.8407742721532125 -461,16.0,9.0,-3.956039125715353,10.317447719844054 -461,16.0,15.0,-1.3190669363537617,4.8407742721532125 -461,16.0,16.0,5.275106062069114,-15.158221991997266 -461,17.0,14.0,-1.8108011504072024,3.687418931630696 -461,17.0,17.0,4.886487584415919,-9.906177730909668 -461,17.0,18.0,-3.0756864340087167,6.218758799278971 -461,18.0,17.0,-3.0756864340087167,6.218758799278971 -461,18.0,18.0,8.958039375185187,-17.98346468163191 -461,18.0,19.0,-5.88235294117647,11.76470588235294 -461,19.0,9.0,-1.7848303152666305,3.98535828943083 -461,19.0,18.0,-5.88235294117647,11.76470588235294 -461,19.0,19.0,7.6671832564431,-15.75006417178377 -461,20.0,9.0,-5.101853820159654,10.98071411292983 -461,20.0,20.0,21.876495189895888,-45.10843276170355 -461,20.0,21.0,-16.774641369736234,34.127718648773715 -461,21.0,9.0,-2.619319553382597,5.400770303329455 -461,21.0,20.0,-16.774641369736234,34.127718648773715 -461,21.0,21.0,21.93449907537439,-43.48289181517921 -461,21.0,23.0,-2.5405381522555563,3.95440286307604 -461,22.0,14.0,-1.9683489489016612,3.976064876781356 -461,22.0,22.0,3.429754555384988,-6.965303617315433 -461,22.0,23.0,-1.4614056064833263,2.989238740534077 -461,23.0,21.0,-2.5405381522555563,3.95440286307604 -461,23.0,22.0,-1.4614056064833263,2.989238740534077 -461,23.0,23.0,5.311836702613133,-9.188263657315172 -461,23.0,24.0,-1.3098929438742493,2.287622053705056 -461,24.0,23.0,-1.3098929438742493,2.287622053705056 -461,24.0,24.0,4.495715080321987,-7.864978761969621 -461,24.0,25.0,-1.2165301194494855,1.8171440463475024 -461,24.0,26.0,-1.9692920169982515,3.760212661917064 -461,25.0,24.0,-1.2165301194494855,1.8171440463475024 -461,25.0,25.0,1.2165301194494855,-1.8171440463475024 -461,26.0,24.0,-1.9692920169982515,3.760212661917064 -461,26.0,26.0,3.652281470778589,-9.46044252232512 -461,26.0,27.0,0.0,2.608731947574922 -461,26.0,28.0,-0.99553355095268,1.881005840357816 -461,26.0,29.0,-0.6874559028276572,1.293971494797717 -461,27.0,5.0,-4.362844058012917,15.463571542897856 -461,27.0,26.0,0.0,2.608731947574922 -461,27.0,27.0,4.362844058012917,-18.15204256311988 -461,28.0,26.0,-0.99553355095268,1.881005840357816 -461,28.0,28.0,0.99553355095268,-1.881005840357816 -461,29.0,26.0,-0.6874559028276572,1.293971494797717 -461,29.0,29.0,0.6874559028276572,-1.293971494797717 -462,0.0,0.0,6.765516048652632,-21.23160167089863 -462,0.0,1.0,-5.224646179885656,15.646726840803398 -462,0.0,2.0,-1.5408698687669766,5.631674830095234 -462,1.0,0.0,-5.224646179885656,15.646726840803398 -462,1.0,1.0,9.75228216552403,-30.648662892676068 -462,1.0,3.0,-1.7055303166990268,5.1973792282565086 -462,1.0,4.0,-1.1359607881738778,4.772479328281356 -462,1.0,5.0,-1.6861448807654689,5.116477495334806 -462,2.0,0.0,-1.5408698687669766,5.631674830095234 -462,2.0,2.0,9.736318911079088,-29.13794745915803 -462,2.0,3.0,-8.19544904231211,23.5308726290628 -462,3.0,1.0,-1.7055303166990268,5.1973792282565086 -462,3.0,2.0,-8.19544904231211,23.5308726290628 -462,3.0,3.0,16.314103089185693,-55.509410535254254 -462,3.0,5.0,-6.413123730174556,22.31120356548123 -462,3.0,11.0,0.0,4.191255364806866 -462,4.0,1.0,-1.1359607881738778,4.772479328281356 -462,4.0,4.0,4.089980824135861,-12.190647245055052 -462,4.0,6.0,-2.954020035961983,7.449267916773697 -462,5.0,1.0,-1.6861448807654689,5.116477495334806 -462,5.0,3.0,-6.413123730174556,22.31120356548123 -462,5.0,5.0,22.341631269034565,-82.8291478657789 -462,5.0,6.0,-3.590210423980992,11.02611441072814 -462,5.0,7.0,-6.289308176100628,22.0125786163522 -462,5.0,8.0,0.0,4.915840805411357 -462,5.0,9.0,0.0,1.8561002591115965 -462,5.0,27.0,-4.362844058012917,15.463571542897856 -462,6.0,4.0,-2.954020035961983,7.449267916773697 -462,6.0,5.0,-3.590210423980992,11.02611441072814 -462,6.0,6.0,6.544230459942975,-18.45668232750184 -462,7.0,5.0,-6.289308176100628,22.0125786163522 -462,7.0,7.0,7.733287237496075,-26.527493274828448 -462,7.0,27.0,-1.4439790613954469,4.540814658476248 -462,8.0,5.0,0.0,4.915840805411357 -462,8.0,8.0,0.0,-18.706293706293707 -462,8.0,9.0,0.0,9.090909090909092 -462,8.0,10.0,0.0,4.807692307692308 -462,9.0,5.0,0.0,1.8561002591115965 -462,9.0,8.0,0.0,9.090909090909092 -462,9.0,9.0,13.462042814524237,-41.3837606675224 -462,9.0,16.0,-3.956039125715353,10.317447719844054 -462,9.0,19.0,-1.7848303152666305,3.98535828943083 -462,9.0,20.0,-5.101853820159654,10.98071411292983 -462,9.0,21.0,-2.619319553382597,5.400770303329455 -462,10.0,8.0,0.0,4.807692307692308 -462,10.0,10.0,0.0,-4.807692307692308 -462,11.0,3.0,0.0,4.191255364806866 -462,11.0,11.0,6.573961583776156,-24.424167659260668 -462,11.0,12.0,0.0,7.142857142857143 -462,11.0,13.0,-1.5265676088395577,3.1734252729654173 -462,11.0,14.0,-3.0953961826564296,6.097275864326261 -462,11.0,15.0,-1.9519977922801688,4.104359379111847 -462,12.0,11.0,0.0,7.142857142857143 -462,12.0,12.0,0.0,-7.142857142857143 -462,13.0,11.0,-1.5265676088395577,3.1734252729654173 -462,13.0,13.0,4.01751987283902,-5.424299332335067 -462,13.0,14.0,-2.4909522639994623,2.250874059369649 -462,14.0,11.0,-3.0953961826564296,6.097275864326261 -462,14.0,13.0,-2.4909522639994623,2.250874059369649 -462,14.0,14.0,9.365498545964757,-16.01163373210796 -462,14.0,17.0,-1.8108011504072024,3.687418931630696 -462,14.0,22.0,-1.9683489489016612,3.976064876781356 -462,15.0,11.0,-1.9519977922801688,4.104359379111847 -462,15.0,15.0,3.271064728633931,-8.94513365126506 -462,15.0,16.0,-1.3190669363537617,4.8407742721532125 -462,16.0,9.0,-3.956039125715353,10.317447719844054 -462,16.0,15.0,-1.3190669363537617,4.8407742721532125 -462,16.0,16.0,5.275106062069114,-15.158221991997266 -462,17.0,14.0,-1.8108011504072024,3.687418931630696 -462,17.0,17.0,4.886487584415919,-9.906177730909668 -462,17.0,18.0,-3.0756864340087167,6.218758799278971 -462,18.0,17.0,-3.0756864340087167,6.218758799278971 -462,18.0,18.0,8.958039375185187,-17.98346468163191 -462,18.0,19.0,-5.88235294117647,11.76470588235294 -462,19.0,9.0,-1.7848303152666305,3.98535828943083 -462,19.0,18.0,-5.88235294117647,11.76470588235294 -462,19.0,19.0,7.6671832564431,-15.75006417178377 -462,20.0,9.0,-5.101853820159654,10.98071411292983 -462,20.0,20.0,21.876495189895888,-45.10843276170355 -462,20.0,21.0,-16.774641369736234,34.127718648773715 -462,21.0,9.0,-2.619319553382597,5.400770303329455 -462,21.0,20.0,-16.774641369736234,34.127718648773715 -462,21.0,21.0,21.93449907537439,-43.48289181517921 -462,21.0,23.0,-2.5405381522555563,3.95440286307604 -462,22.0,14.0,-1.9683489489016612,3.976064876781356 -462,22.0,22.0,3.429754555384988,-6.965303617315433 -462,22.0,23.0,-1.4614056064833263,2.989238740534077 -462,23.0,21.0,-2.5405381522555563,3.95440286307604 -462,23.0,22.0,-1.4614056064833263,2.989238740534077 -462,23.0,23.0,5.311836702613133,-9.188263657315172 -462,23.0,24.0,-1.3098929438742493,2.287622053705056 -462,24.0,23.0,-1.3098929438742493,2.287622053705056 -462,24.0,24.0,4.495715080321987,-7.864978761969621 -462,24.0,25.0,-1.2165301194494855,1.8171440463475024 -462,24.0,26.0,-1.9692920169982515,3.760212661917064 -462,25.0,24.0,-1.2165301194494855,1.8171440463475024 -462,25.0,25.0,1.2165301194494855,-1.8171440463475024 -462,26.0,24.0,-1.9692920169982515,3.760212661917064 -462,26.0,26.0,3.652281470778589,-9.46044252232512 -462,26.0,27.0,0.0,2.608731947574922 -462,26.0,28.0,-0.99553355095268,1.881005840357816 -462,26.0,29.0,-0.6874559028276572,1.293971494797717 -462,27.0,5.0,-4.362844058012917,15.463571542897856 -462,27.0,7.0,-1.4439790613954469,4.540814658476248 -462,27.0,26.0,0.0,2.608731947574922 -462,27.0,27.0,5.806823119408364,-22.67145722159613 -462,28.0,26.0,-0.99553355095268,1.881005840357816 -462,28.0,28.0,1.9075867579849564,-3.604364401207048 -462,28.0,29.0,-0.9120532070322764,1.7233585608492326 -462,29.0,26.0,-0.6874559028276572,1.293971494797717 -462,29.0,28.0,-0.9120532070322764,1.7233585608492326 -462,29.0,29.0,1.5995091098599337,-3.0173300556469496 -463,0.0,0.0,6.765516048652632,-21.23160167089863 -463,0.0,1.0,-5.224646179885656,15.646726840803398 -463,0.0,2.0,-1.5408698687669766,5.631674830095234 -463,1.0,0.0,-5.224646179885656,15.646726840803398 -463,1.0,1.0,9.75228216552403,-30.648662892676068 -463,1.0,3.0,-1.7055303166990268,5.1973792282565086 -463,1.0,4.0,-1.1359607881738778,4.772479328281356 -463,1.0,5.0,-1.6861448807654689,5.116477495334806 -463,2.0,0.0,-1.5408698687669766,5.631674830095234 -463,2.0,2.0,9.736318911079088,-29.13794745915803 -463,2.0,3.0,-8.19544904231211,23.5308726290628 -463,3.0,1.0,-1.7055303166990268,5.1973792282565086 -463,3.0,2.0,-8.19544904231211,23.5308726290628 -463,3.0,3.0,16.314103089185693,-55.509410535254254 -463,3.0,5.0,-6.413123730174556,22.31120356548123 -463,3.0,11.0,0.0,4.191255364806866 -463,4.0,1.0,-1.1359607881738778,4.772479328281356 -463,4.0,4.0,4.089980824135861,-12.190647245055052 -463,4.0,6.0,-2.954020035961983,7.449267916773697 -463,5.0,1.0,-1.6861448807654689,5.116477495334806 -463,5.0,3.0,-6.413123730174556,22.31120356548123 -463,5.0,5.0,18.75142084505357,-71.81153345505078 -463,5.0,7.0,-6.289308176100628,22.0125786163522 -463,5.0,8.0,0.0,4.915840805411357 -463,5.0,9.0,0.0,1.8561002591115965 -463,5.0,27.0,-4.362844058012917,15.463571542897856 -463,6.0,4.0,-2.954020035961983,7.449267916773697 -463,6.0,6.0,2.954020035961983,-7.439067916773697 -463,7.0,5.0,-6.289308176100628,22.0125786163522 -463,7.0,7.0,7.733287237496075,-26.527493274828448 -463,7.0,27.0,-1.4439790613954469,4.540814658476248 -463,8.0,5.0,0.0,4.915840805411357 -463,8.0,8.0,0.0,-18.706293706293707 -463,8.0,9.0,0.0,9.090909090909092 -463,8.0,10.0,0.0,4.807692307692308 -463,9.0,5.0,0.0,1.8561002591115965 -463,9.0,8.0,0.0,9.090909090909092 -463,9.0,9.0,13.462042814524237,-41.3837606675224 -463,9.0,16.0,-3.956039125715353,10.317447719844054 -463,9.0,19.0,-1.7848303152666305,3.98535828943083 -463,9.0,20.0,-5.101853820159654,10.98071411292983 -463,9.0,21.0,-2.619319553382597,5.400770303329455 -463,10.0,8.0,0.0,4.807692307692308 -463,10.0,10.0,0.0,-4.807692307692308 -463,11.0,3.0,0.0,4.191255364806866 -463,11.0,11.0,6.573961583776156,-24.424167659260668 -463,11.0,12.0,0.0,7.142857142857143 -463,11.0,13.0,-1.5265676088395577,3.1734252729654173 -463,11.0,14.0,-3.0953961826564296,6.097275864326261 -463,11.0,15.0,-1.9519977922801688,4.104359379111847 -463,12.0,11.0,0.0,7.142857142857143 -463,12.0,12.0,0.0,-7.142857142857143 -463,13.0,11.0,-1.5265676088395577,3.1734252729654173 -463,13.0,13.0,4.01751987283902,-5.424299332335067 -463,13.0,14.0,-2.4909522639994623,2.250874059369649 -463,14.0,11.0,-3.0953961826564296,6.097275864326261 -463,14.0,13.0,-2.4909522639994623,2.250874059369649 -463,14.0,14.0,9.365498545964757,-16.01163373210796 -463,14.0,17.0,-1.8108011504072024,3.687418931630696 -463,14.0,22.0,-1.9683489489016612,3.976064876781356 -463,15.0,11.0,-1.9519977922801688,4.104359379111847 -463,15.0,15.0,3.271064728633931,-8.94513365126506 -463,15.0,16.0,-1.3190669363537617,4.8407742721532125 -463,16.0,9.0,-3.956039125715353,10.317447719844054 -463,16.0,15.0,-1.3190669363537617,4.8407742721532125 -463,16.0,16.0,5.275106062069114,-15.158221991997266 -463,17.0,14.0,-1.8108011504072024,3.687418931630696 -463,17.0,17.0,4.886487584415919,-9.906177730909668 -463,17.0,18.0,-3.0756864340087167,6.218758799278971 -463,18.0,17.0,-3.0756864340087167,6.218758799278971 -463,18.0,18.0,8.958039375185187,-17.98346468163191 -463,18.0,19.0,-5.88235294117647,11.76470588235294 -463,19.0,9.0,-1.7848303152666305,3.98535828943083 -463,19.0,18.0,-5.88235294117647,11.76470588235294 -463,19.0,19.0,7.6671832564431,-15.75006417178377 -463,20.0,9.0,-5.101853820159654,10.98071411292983 -463,20.0,20.0,21.876495189895888,-45.10843276170355 -463,20.0,21.0,-16.774641369736234,34.127718648773715 -463,21.0,9.0,-2.619319553382597,5.400770303329455 -463,21.0,20.0,-16.774641369736234,34.127718648773715 -463,21.0,21.0,21.93449907537439,-43.48289181517921 -463,21.0,23.0,-2.5405381522555563,3.95440286307604 -463,22.0,14.0,-1.9683489489016612,3.976064876781356 -463,22.0,22.0,3.429754555384988,-6.965303617315433 -463,22.0,23.0,-1.4614056064833263,2.989238740534077 -463,23.0,21.0,-2.5405381522555563,3.95440286307604 -463,23.0,22.0,-1.4614056064833263,2.989238740534077 -463,23.0,23.0,5.311836702613133,-9.188263657315172 -463,23.0,24.0,-1.3098929438742493,2.287622053705056 -463,24.0,23.0,-1.3098929438742493,2.287622053705056 -463,24.0,24.0,4.495715080321987,-7.864978761969621 -463,24.0,25.0,-1.2165301194494855,1.8171440463475024 -463,24.0,26.0,-1.9692920169982515,3.760212661917064 -463,25.0,24.0,-1.2165301194494855,1.8171440463475024 -463,25.0,25.0,1.2165301194494855,-1.8171440463475024 -463,26.0,24.0,-1.9692920169982515,3.760212661917064 -463,26.0,26.0,3.652281470778589,-9.46044252232512 -463,26.0,27.0,0.0,2.608731947574922 -463,26.0,28.0,-0.99553355095268,1.881005840357816 -463,26.0,29.0,-0.6874559028276572,1.293971494797717 -463,27.0,5.0,-4.362844058012917,15.463571542897856 -463,27.0,7.0,-1.4439790613954469,4.540814658476248 -463,27.0,26.0,0.0,2.608731947574922 -463,27.0,27.0,5.806823119408364,-22.67145722159613 -463,28.0,26.0,-0.99553355095268,1.881005840357816 -463,28.0,28.0,1.9075867579849564,-3.604364401207048 -463,28.0,29.0,-0.9120532070322764,1.7233585608492326 -463,29.0,26.0,-0.6874559028276572,1.293971494797717 -463,29.0,28.0,-0.9120532070322764,1.7233585608492326 -463,29.0,29.0,1.5995091098599337,-3.0173300556469496 -464,0.0,0.0,6.765516048652632,-21.23160167089863 -464,0.0,1.0,-5.224646179885656,15.646726840803398 -464,0.0,2.0,-1.5408698687669766,5.631674830095234 -464,1.0,0.0,-5.224646179885656,15.646726840803398 -464,1.0,1.0,9.75228216552403,-30.648662892676068 -464,1.0,3.0,-1.7055303166990268,5.1973792282565086 -464,1.0,4.0,-1.1359607881738778,4.772479328281356 -464,1.0,5.0,-1.6861448807654689,5.116477495334806 -464,2.0,0.0,-1.5408698687669766,5.631674830095234 -464,2.0,2.0,9.736318911079088,-29.13794745915803 -464,2.0,3.0,-8.19544904231211,23.5308726290628 -464,3.0,1.0,-1.7055303166990268,5.1973792282565086 -464,3.0,2.0,-8.19544904231211,23.5308726290628 -464,3.0,3.0,16.314103089185693,-55.509410535254254 -464,3.0,5.0,-6.413123730174556,22.31120356548123 -464,3.0,11.0,0.0,4.191255364806866 -464,4.0,1.0,-1.1359607881738778,4.772479328281356 -464,4.0,4.0,4.089980824135861,-12.190647245055052 -464,4.0,6.0,-2.954020035961983,7.449267916773697 -464,5.0,1.0,-1.6861448807654689,5.116477495334806 -464,5.0,3.0,-6.413123730174556,22.31120356548123 -464,5.0,5.0,16.052323092933932,-55.79464715800405 -464,5.0,6.0,-3.590210423980992,11.02611441072814 -464,5.0,9.0,0.0,1.8561002591115965 -464,5.0,27.0,-4.362844058012917,15.463571542897856 -464,6.0,4.0,-2.954020035961983,7.449267916773697 -464,6.0,5.0,-3.590210423980992,11.02611441072814 -464,6.0,6.0,6.544230459942975,-18.45668232750184 -464,7.0,7.0,1.4439790613954469,-4.519414658476248 -464,7.0,27.0,-1.4439790613954469,4.540814658476248 -464,8.0,8.0,0.0,-13.8986013986014 -464,8.0,9.0,0.0,9.090909090909092 -464,8.0,10.0,0.0,4.807692307692308 -464,9.0,5.0,0.0,1.8561002591115965 -464,9.0,8.0,0.0,9.090909090909092 -464,9.0,9.0,13.462042814524237,-41.3837606675224 -464,9.0,16.0,-3.956039125715353,10.317447719844054 -464,9.0,19.0,-1.7848303152666305,3.98535828943083 -464,9.0,20.0,-5.101853820159654,10.98071411292983 -464,9.0,21.0,-2.619319553382597,5.400770303329455 -464,10.0,8.0,0.0,4.807692307692308 -464,10.0,10.0,0.0,-4.807692307692308 -464,11.0,3.0,0.0,4.191255364806866 -464,11.0,11.0,3.478565401119727,-18.326891794934408 -464,11.0,12.0,0.0,7.142857142857143 -464,11.0,13.0,-1.5265676088395577,3.1734252729654173 -464,11.0,15.0,-1.9519977922801688,4.104359379111847 -464,12.0,11.0,0.0,7.142857142857143 -464,12.0,12.0,0.0,-7.142857142857143 -464,13.0,11.0,-1.5265676088395577,3.1734252729654173 -464,13.0,13.0,4.01751987283902,-5.424299332335067 -464,13.0,14.0,-2.4909522639994623,2.250874059369649 -464,14.0,13.0,-2.4909522639994623,2.250874059369649 -464,14.0,14.0,4.459301212901124,-6.226938936151004 -464,14.0,22.0,-1.9683489489016612,3.976064876781356 -464,15.0,11.0,-1.9519977922801688,4.104359379111847 -464,15.0,15.0,3.271064728633931,-8.94513365126506 -464,15.0,16.0,-1.3190669363537617,4.8407742721532125 -464,16.0,9.0,-3.956039125715353,10.317447719844054 -464,16.0,15.0,-1.3190669363537617,4.8407742721532125 -464,16.0,16.0,5.275106062069114,-15.158221991997266 -464,17.0,17.0,3.0756864340087167,-6.218758799278971 -464,17.0,18.0,-3.0756864340087167,6.218758799278971 -464,18.0,17.0,-3.0756864340087167,6.218758799278971 -464,18.0,18.0,8.958039375185187,-17.98346468163191 -464,18.0,19.0,-5.88235294117647,11.76470588235294 -464,19.0,9.0,-1.7848303152666305,3.98535828943083 -464,19.0,18.0,-5.88235294117647,11.76470588235294 -464,19.0,19.0,7.6671832564431,-15.75006417178377 -464,20.0,9.0,-5.101853820159654,10.98071411292983 -464,20.0,20.0,21.876495189895888,-45.10843276170355 -464,20.0,21.0,-16.774641369736234,34.127718648773715 -464,21.0,9.0,-2.619319553382597,5.400770303329455 -464,21.0,20.0,-16.774641369736234,34.127718648773715 -464,21.0,21.0,21.93449907537439,-43.48289181517921 -464,21.0,23.0,-2.5405381522555563,3.95440286307604 -464,22.0,14.0,-1.9683489489016612,3.976064876781356 -464,22.0,22.0,3.429754555384988,-6.965303617315433 -464,22.0,23.0,-1.4614056064833263,2.989238740534077 -464,23.0,21.0,-2.5405381522555563,3.95440286307604 -464,23.0,22.0,-1.4614056064833263,2.989238740534077 -464,23.0,23.0,5.311836702613133,-9.188263657315172 -464,23.0,24.0,-1.3098929438742493,2.287622053705056 -464,24.0,23.0,-1.3098929438742493,2.287622053705056 -464,24.0,24.0,4.495715080321987,-7.864978761969621 -464,24.0,25.0,-1.2165301194494855,1.8171440463475024 -464,24.0,26.0,-1.9692920169982515,3.760212661917064 -464,25.0,24.0,-1.2165301194494855,1.8171440463475024 -464,25.0,25.0,1.2165301194494855,-1.8171440463475024 -464,26.0,24.0,-1.9692920169982515,3.760212661917064 -464,26.0,26.0,3.652281470778589,-9.46044252232512 -464,26.0,27.0,0.0,2.608731947574922 -464,26.0,28.0,-0.99553355095268,1.881005840357816 -464,26.0,29.0,-0.6874559028276572,1.293971494797717 -464,27.0,5.0,-4.362844058012917,15.463571542897856 -464,27.0,7.0,-1.4439790613954469,4.540814658476248 -464,27.0,26.0,0.0,2.608731947574922 -464,27.0,27.0,5.806823119408364,-22.67145722159613 -464,28.0,26.0,-0.99553355095268,1.881005840357816 -464,28.0,28.0,1.9075867579849564,-3.604364401207048 -464,28.0,29.0,-0.9120532070322764,1.7233585608492326 -464,29.0,26.0,-0.6874559028276572,1.293971494797717 -464,29.0,28.0,-0.9120532070322764,1.7233585608492326 -464,29.0,29.0,1.5995091098599337,-3.0173300556469496 -465,0.0,0.0,6.765516048652632,-21.23160167089863 -465,0.0,1.0,-5.224646179885656,15.646726840803398 -465,0.0,2.0,-1.5408698687669766,5.631674830095234 -465,1.0,0.0,-5.224646179885656,15.646726840803398 -465,1.0,1.0,9.75228216552403,-30.648662892676068 -465,1.0,3.0,-1.7055303166990268,5.1973792282565086 -465,1.0,4.0,-1.1359607881738778,4.772479328281356 -465,1.0,5.0,-1.6861448807654689,5.116477495334806 -465,2.0,0.0,-1.5408698687669766,5.631674830095234 -465,2.0,2.0,9.736318911079088,-29.13794745915803 -465,2.0,3.0,-8.19544904231211,23.5308726290628 -465,3.0,1.0,-1.7055303166990268,5.1973792282565086 -465,3.0,2.0,-8.19544904231211,23.5308726290628 -465,3.0,3.0,16.314103089185693,-55.509410535254254 -465,3.0,5.0,-6.413123730174556,22.31120356548123 -465,3.0,11.0,0.0,4.191255364806866 -465,4.0,1.0,-1.1359607881738778,4.772479328281356 -465,4.0,4.0,4.089980824135861,-12.190647245055052 -465,4.0,6.0,-2.954020035961983,7.449267916773697 -465,5.0,1.0,-1.6861448807654689,5.116477495334806 -465,5.0,3.0,-6.413123730174556,22.31120356548123 -465,5.0,5.0,22.341631269034565,-82.8291478657789 -465,5.0,6.0,-3.590210423980992,11.02611441072814 -465,5.0,7.0,-6.289308176100628,22.0125786163522 -465,5.0,8.0,0.0,4.915840805411357 -465,5.0,9.0,0.0,1.8561002591115965 -465,5.0,27.0,-4.362844058012917,15.463571542897856 -465,6.0,4.0,-2.954020035961983,7.449267916773697 -465,6.0,5.0,-3.590210423980992,11.02611441072814 -465,6.0,6.0,6.544230459942975,-18.45668232750184 -465,7.0,5.0,-6.289308176100628,22.0125786163522 -465,7.0,7.0,7.733287237496075,-26.527493274828448 -465,7.0,27.0,-1.4439790613954469,4.540814658476248 -465,8.0,5.0,0.0,4.915840805411357 -465,8.0,8.0,0.0,-18.706293706293707 -465,8.0,9.0,0.0,9.090909090909092 -465,8.0,10.0,0.0,4.807692307692308 -465,9.0,5.0,0.0,1.8561002591115965 -465,9.0,8.0,0.0,9.090909090909092 -465,9.0,9.0,13.462042814524237,-41.3837606675224 -465,9.0,16.0,-3.956039125715353,10.317447719844054 -465,9.0,19.0,-1.7848303152666305,3.98535828943083 -465,9.0,20.0,-5.101853820159654,10.98071411292983 -465,9.0,21.0,-2.619319553382597,5.400770303329455 -465,10.0,8.0,0.0,4.807692307692308 -465,10.0,10.0,0.0,-4.807692307692308 -465,11.0,3.0,0.0,4.191255364806866 -465,11.0,11.0,6.573961583776156,-24.424167659260668 -465,11.0,12.0,0.0,7.142857142857143 -465,11.0,13.0,-1.5265676088395577,3.1734252729654173 -465,11.0,14.0,-3.0953961826564296,6.097275864326261 -465,11.0,15.0,-1.9519977922801688,4.104359379111847 -465,12.0,11.0,0.0,7.142857142857143 -465,12.0,12.0,0.0,-7.142857142857143 -465,13.0,11.0,-1.5265676088395577,3.1734252729654173 -465,13.0,13.0,4.01751987283902,-5.424299332335067 -465,13.0,14.0,-2.4909522639994623,2.250874059369649 -465,14.0,11.0,-3.0953961826564296,6.097275864326261 -465,14.0,13.0,-2.4909522639994623,2.250874059369649 -465,14.0,14.0,9.365498545964757,-16.01163373210796 -465,14.0,17.0,-1.8108011504072024,3.687418931630696 -465,14.0,22.0,-1.9683489489016612,3.976064876781356 -465,15.0,11.0,-1.9519977922801688,4.104359379111847 -465,15.0,15.0,3.271064728633931,-8.94513365126506 -465,15.0,16.0,-1.3190669363537617,4.8407742721532125 -465,16.0,9.0,-3.956039125715353,10.317447719844054 -465,16.0,15.0,-1.3190669363537617,4.8407742721532125 -465,16.0,16.0,5.275106062069114,-15.158221991997266 -465,17.0,14.0,-1.8108011504072024,3.687418931630696 -465,17.0,17.0,4.886487584415919,-9.906177730909668 -465,17.0,18.0,-3.0756864340087167,6.218758799278971 -465,18.0,17.0,-3.0756864340087167,6.218758799278971 -465,18.0,18.0,3.0756864340087167,-6.218758799278971 -465,19.0,9.0,-1.7848303152666305,3.98535828943083 -465,19.0,19.0,1.7848303152666305,-3.98535828943083 -465,20.0,9.0,-5.101853820159654,10.98071411292983 -465,20.0,20.0,21.876495189895888,-45.10843276170355 -465,20.0,21.0,-16.774641369736234,34.127718648773715 -465,21.0,9.0,-2.619319553382597,5.400770303329455 -465,21.0,20.0,-16.774641369736234,34.127718648773715 -465,21.0,21.0,21.93449907537439,-43.48289181517921 -465,21.0,23.0,-2.5405381522555563,3.95440286307604 -465,22.0,14.0,-1.9683489489016612,3.976064876781356 -465,22.0,22.0,3.429754555384988,-6.965303617315433 -465,22.0,23.0,-1.4614056064833263,2.989238740534077 -465,23.0,21.0,-2.5405381522555563,3.95440286307604 -465,23.0,22.0,-1.4614056064833263,2.989238740534077 -465,23.0,23.0,5.311836702613133,-9.188263657315172 -465,23.0,24.0,-1.3098929438742493,2.287622053705056 -465,24.0,23.0,-1.3098929438742493,2.287622053705056 -465,24.0,24.0,4.495715080321987,-7.864978761969621 -465,24.0,25.0,-1.2165301194494855,1.8171440463475024 -465,24.0,26.0,-1.9692920169982515,3.760212661917064 -465,25.0,24.0,-1.2165301194494855,1.8171440463475024 -465,25.0,25.0,1.2165301194494855,-1.8171440463475024 -465,26.0,24.0,-1.9692920169982515,3.760212661917064 -465,26.0,26.0,3.652281470778589,-9.46044252232512 -465,26.0,27.0,0.0,2.608731947574922 -465,26.0,28.0,-0.99553355095268,1.881005840357816 -465,26.0,29.0,-0.6874559028276572,1.293971494797717 -465,27.0,5.0,-4.362844058012917,15.463571542897856 -465,27.0,7.0,-1.4439790613954469,4.540814658476248 -465,27.0,26.0,0.0,2.608731947574922 -465,27.0,27.0,5.806823119408364,-22.67145722159613 -465,28.0,26.0,-0.99553355095268,1.881005840357816 -465,28.0,28.0,1.9075867579849564,-3.604364401207048 -465,28.0,29.0,-0.9120532070322764,1.7233585608492326 -465,29.0,26.0,-0.6874559028276572,1.293971494797717 -465,29.0,28.0,-0.9120532070322764,1.7233585608492326 -465,29.0,29.0,1.5995091098599337,-3.0173300556469496 -466,0.0,0.0,5.224646179885656,-15.620326840803395 -466,0.0,1.0,-5.224646179885656,15.646726840803398 -466,1.0,0.0,-5.224646179885656,15.646726840803398 -466,1.0,1.0,9.75228216552403,-30.648662892676068 -466,1.0,3.0,-1.7055303166990268,5.1973792282565086 -466,1.0,4.0,-1.1359607881738778,4.772479328281356 -466,1.0,5.0,-1.6861448807654689,5.116477495334806 -466,2.0,2.0,8.19544904231211,-23.5266726290628 -466,2.0,3.0,-8.19544904231211,23.5308726290628 -466,3.0,1.0,-1.7055303166990268,5.1973792282565086 -466,3.0,2.0,-8.19544904231211,23.5308726290628 -466,3.0,3.0,16.314103089185693,-55.509410535254254 -466,3.0,5.0,-6.413123730174556,22.31120356548123 -466,3.0,11.0,0.0,4.191255364806866 -466,4.0,1.0,-1.1359607881738778,4.772479328281356 -466,4.0,4.0,4.089980824135861,-12.190647245055052 -466,4.0,6.0,-2.954020035961983,7.449267916773697 -466,5.0,1.0,-1.6861448807654689,5.116477495334806 -466,5.0,3.0,-6.413123730174556,22.31120356548123 -466,5.0,5.0,22.341631269034565,-77.80272577435625 -466,5.0,6.0,-3.590210423980992,11.02611441072814 -466,5.0,7.0,-6.289308176100628,22.0125786163522 -466,5.0,9.0,0.0,1.8561002591115965 -466,5.0,27.0,-4.362844058012917,15.463571542897856 -466,6.0,4.0,-2.954020035961983,7.449267916773697 -466,6.0,5.0,-3.590210423980992,11.02611441072814 -466,6.0,6.0,6.544230459942975,-18.45668232750184 -466,7.0,5.0,-6.289308176100628,22.0125786163522 -466,7.0,7.0,6.289308176100628,-22.0080786163522 -466,8.0,8.0,0.0,-13.8986013986014 -466,8.0,9.0,0.0,9.090909090909092 -466,8.0,10.0,0.0,4.807692307692308 -466,9.0,5.0,0.0,1.8561002591115965 -466,9.0,8.0,0.0,9.090909090909092 -466,9.0,9.0,9.506003688808882,-31.06631294767834 -466,9.0,19.0,-1.7848303152666305,3.98535828943083 -466,9.0,20.0,-5.101853820159654,10.98071411292983 -466,9.0,21.0,-2.619319553382597,5.400770303329455 -466,10.0,8.0,0.0,4.807692307692308 -466,10.0,10.0,0.0,-4.807692307692308 -466,11.0,3.0,0.0,4.191255364806866 -466,11.0,11.0,6.573961583776156,-24.424167659260668 -466,11.0,12.0,0.0,7.142857142857143 -466,11.0,13.0,-1.5265676088395577,3.1734252729654173 -466,11.0,14.0,-3.0953961826564296,6.097275864326261 -466,11.0,15.0,-1.9519977922801688,4.104359379111847 -466,12.0,11.0,0.0,7.142857142857143 -466,12.0,12.0,0.0,-7.142857142857143 -466,13.0,11.0,-1.5265676088395577,3.1734252729654173 -466,13.0,13.0,4.01751987283902,-5.424299332335067 -466,13.0,14.0,-2.4909522639994623,2.250874059369649 -466,14.0,11.0,-3.0953961826564296,6.097275864326261 -466,14.0,13.0,-2.4909522639994623,2.250874059369649 -466,14.0,14.0,9.365498545964757,-16.01163373210796 -466,14.0,17.0,-1.8108011504072024,3.687418931630696 -466,14.0,22.0,-1.9683489489016612,3.976064876781356 -466,15.0,11.0,-1.9519977922801688,4.104359379111847 -466,15.0,15.0,3.271064728633931,-8.94513365126506 -466,15.0,16.0,-1.3190669363537617,4.8407742721532125 -466,16.0,15.0,-1.3190669363537617,4.8407742721532125 -466,16.0,16.0,1.3190669363537617,-4.8407742721532125 -466,17.0,14.0,-1.8108011504072024,3.687418931630696 -466,17.0,17.0,4.886487584415919,-9.906177730909668 -466,17.0,18.0,-3.0756864340087167,6.218758799278971 -466,18.0,17.0,-3.0756864340087167,6.218758799278971 -466,18.0,18.0,8.958039375185187,-17.98346468163191 -466,18.0,19.0,-5.88235294117647,11.76470588235294 -466,19.0,9.0,-1.7848303152666305,3.98535828943083 -466,19.0,18.0,-5.88235294117647,11.76470588235294 -466,19.0,19.0,7.6671832564431,-15.75006417178377 -466,20.0,9.0,-5.101853820159654,10.98071411292983 -466,20.0,20.0,21.876495189895888,-45.10843276170355 -466,20.0,21.0,-16.774641369736234,34.127718648773715 -466,21.0,9.0,-2.619319553382597,5.400770303329455 -466,21.0,20.0,-16.774641369736234,34.127718648773715 -466,21.0,21.0,21.93449907537439,-43.48289181517921 -466,21.0,23.0,-2.5405381522555563,3.95440286307604 -466,22.0,14.0,-1.9683489489016612,3.976064876781356 -466,22.0,22.0,3.429754555384988,-6.965303617315433 -466,22.0,23.0,-1.4614056064833263,2.989238740534077 -466,23.0,21.0,-2.5405381522555563,3.95440286307604 -466,23.0,22.0,-1.4614056064833263,2.989238740534077 -466,23.0,23.0,5.311836702613133,-9.188263657315172 -466,23.0,24.0,-1.3098929438742493,2.287622053705056 -466,24.0,23.0,-1.3098929438742493,2.287622053705056 -466,24.0,24.0,4.495715080321987,-7.864978761969621 -466,24.0,25.0,-1.2165301194494855,1.8171440463475024 -466,24.0,26.0,-1.9692920169982515,3.760212661917064 -466,25.0,24.0,-1.2165301194494855,1.8171440463475024 -466,25.0,25.0,1.2165301194494855,-1.8171440463475024 -466,26.0,24.0,-1.9692920169982515,3.760212661917064 -466,26.0,26.0,3.652281470778589,-9.46044252232512 -466,26.0,27.0,0.0,2.608731947574922 -466,26.0,28.0,-0.99553355095268,1.881005840357816 -466,26.0,29.0,-0.6874559028276572,1.293971494797717 -466,27.0,5.0,-4.362844058012917,15.463571542897856 -466,27.0,26.0,0.0,2.608731947574922 -466,27.0,27.0,4.362844058012917,-18.15204256311988 -466,28.0,26.0,-0.99553355095268,1.881005840357816 -466,28.0,28.0,0.99553355095268,-1.881005840357816 -466,29.0,26.0,-0.6874559028276572,1.293971494797717 -466,29.0,29.0,0.6874559028276572,-1.293971494797717 -467,0.0,0.0,6.765516048652632,-21.23160167089863 -467,0.0,1.0,-5.224646179885656,15.646726840803398 -467,0.0,2.0,-1.5408698687669766,5.631674830095234 -467,1.0,0.0,-5.224646179885656,15.646726840803398 -467,1.0,1.0,9.75228216552403,-30.648662892676068 -467,1.0,3.0,-1.7055303166990268,5.1973792282565086 -467,1.0,4.0,-1.1359607881738778,4.772479328281356 -467,1.0,5.0,-1.6861448807654689,5.116477495334806 -467,2.0,0.0,-1.5408698687669766,5.631674830095234 -467,2.0,2.0,9.736318911079088,-29.13794745915803 -467,2.0,3.0,-8.19544904231211,23.5308726290628 -467,3.0,1.0,-1.7055303166990268,5.1973792282565086 -467,3.0,2.0,-8.19544904231211,23.5308726290628 -467,3.0,3.0,16.314103089185693,-55.509410535254254 -467,3.0,5.0,-6.413123730174556,22.31120356548123 -467,3.0,11.0,0.0,4.191255364806866 -467,4.0,1.0,-1.1359607881738778,4.772479328281356 -467,4.0,4.0,4.089980824135861,-12.190647245055052 -467,4.0,6.0,-2.954020035961983,7.449267916773697 -467,5.0,1.0,-1.6861448807654689,5.116477495334806 -467,5.0,3.0,-6.413123730174556,22.31120356548123 -467,5.0,5.0,22.341631269034565,-80.91366772221689 -467,5.0,6.0,-3.590210423980992,11.02611441072814 -467,5.0,7.0,-6.289308176100628,22.0125786163522 -467,5.0,8.0,0.0,4.915840805411357 -467,5.0,27.0,-4.362844058012917,15.463571542897856 -467,6.0,4.0,-2.954020035961983,7.449267916773697 -467,6.0,5.0,-3.590210423980992,11.02611441072814 -467,6.0,6.0,6.544230459942975,-18.45668232750184 -467,7.0,5.0,-6.289308176100628,22.0125786163522 -467,7.0,7.0,7.733287237496075,-26.527493274828448 -467,7.0,27.0,-1.4439790613954469,4.540814658476248 -467,8.0,5.0,0.0,4.915840805411357 -467,8.0,8.0,0.0,-18.706293706293707 -467,8.0,9.0,0.0,9.090909090909092 -467,8.0,10.0,0.0,4.807692307692308 -467,9.0,8.0,0.0,9.090909090909092 -467,9.0,9.0,8.36018899436458,-28.604485403513436 -467,9.0,16.0,-3.956039125715353,10.317447719844054 -467,9.0,19.0,-1.7848303152666305,3.98535828943083 -467,9.0,21.0,-2.619319553382597,5.400770303329455 -467,10.0,8.0,0.0,4.807692307692308 -467,10.0,10.0,0.0,-4.807692307692308 -467,11.0,3.0,0.0,4.191255364806866 -467,11.0,11.0,6.573961583776156,-24.424167659260668 -467,11.0,12.0,0.0,7.142857142857143 -467,11.0,13.0,-1.5265676088395577,3.1734252729654173 -467,11.0,14.0,-3.0953961826564296,6.097275864326261 -467,11.0,15.0,-1.9519977922801688,4.104359379111847 -467,12.0,11.0,0.0,7.142857142857143 -467,12.0,12.0,0.0,-7.142857142857143 -467,13.0,11.0,-1.5265676088395577,3.1734252729654173 -467,13.0,13.0,4.01751987283902,-5.424299332335067 -467,13.0,14.0,-2.4909522639994623,2.250874059369649 -467,14.0,11.0,-3.0953961826564296,6.097275864326261 -467,14.0,13.0,-2.4909522639994623,2.250874059369649 -467,14.0,14.0,7.397149597063095,-12.035568855326606 -467,14.0,17.0,-1.8108011504072024,3.687418931630696 -467,15.0,11.0,-1.9519977922801688,4.104359379111847 -467,15.0,15.0,3.271064728633931,-8.94513365126506 -467,15.0,16.0,-1.3190669363537617,4.8407742721532125 -467,16.0,9.0,-3.956039125715353,10.317447719844054 -467,16.0,15.0,-1.3190669363537617,4.8407742721532125 -467,16.0,16.0,5.275106062069114,-15.158221991997266 -467,17.0,14.0,-1.8108011504072024,3.687418931630696 -467,17.0,17.0,4.886487584415919,-9.906177730909668 -467,17.0,18.0,-3.0756864340087167,6.218758799278971 -467,18.0,17.0,-3.0756864340087167,6.218758799278971 -467,18.0,18.0,8.958039375185187,-17.98346468163191 -467,18.0,19.0,-5.88235294117647,11.76470588235294 -467,19.0,9.0,-1.7848303152666305,3.98535828943083 -467,19.0,18.0,-5.88235294117647,11.76470588235294 -467,19.0,19.0,7.6671832564431,-15.75006417178377 -467,20.0,20.0,16.774641369736234,-34.127718648773715 -467,20.0,21.0,-16.774641369736234,34.127718648773715 -467,21.0,9.0,-2.619319553382597,5.400770303329455 -467,21.0,20.0,-16.774641369736234,34.127718648773715 -467,21.0,21.0,21.93449907537439,-43.48289181517921 -467,21.0,23.0,-2.5405381522555563,3.95440286307604 -467,22.0,22.0,1.4614056064833263,-2.989238740534077 -467,22.0,23.0,-1.4614056064833263,2.989238740534077 -467,23.0,21.0,-2.5405381522555563,3.95440286307604 -467,23.0,22.0,-1.4614056064833263,2.989238740534077 -467,23.0,23.0,5.311836702613133,-9.188263657315172 -467,23.0,24.0,-1.3098929438742493,2.287622053705056 -467,24.0,23.0,-1.3098929438742493,2.287622053705056 -467,24.0,24.0,4.495715080321987,-7.864978761969621 -467,24.0,25.0,-1.2165301194494855,1.8171440463475024 -467,24.0,26.0,-1.9692920169982515,3.760212661917064 -467,25.0,24.0,-1.2165301194494855,1.8171440463475024 -467,25.0,25.0,1.2165301194494855,-1.8171440463475024 -467,26.0,24.0,-1.9692920169982515,3.760212661917064 -467,26.0,26.0,3.652281470778589,-9.46044252232512 -467,26.0,27.0,0.0,2.608731947574922 -467,26.0,28.0,-0.99553355095268,1.881005840357816 -467,26.0,29.0,-0.6874559028276572,1.293971494797717 -467,27.0,5.0,-4.362844058012917,15.463571542897856 -467,27.0,7.0,-1.4439790613954469,4.540814658476248 -467,27.0,26.0,0.0,2.608731947574922 -467,27.0,27.0,5.806823119408364,-22.67145722159613 -467,28.0,26.0,-0.99553355095268,1.881005840357816 -467,28.0,28.0,1.9075867579849564,-3.604364401207048 -467,28.0,29.0,-0.9120532070322764,1.7233585608492326 -467,29.0,26.0,-0.6874559028276572,1.293971494797717 -467,29.0,28.0,-0.9120532070322764,1.7233585608492326 -467,29.0,29.0,1.5995091098599337,-3.0173300556469496 -468,0.0,0.0,6.765516048652632,-21.23160167089863 -468,0.0,1.0,-5.224646179885656,15.646726840803398 -468,0.0,2.0,-1.5408698687669766,5.631674830095234 -468,1.0,0.0,-5.224646179885656,15.646726840803398 -468,1.0,1.0,9.75228216552403,-30.648662892676068 -468,1.0,3.0,-1.7055303166990268,5.1973792282565086 -468,1.0,4.0,-1.1359607881738778,4.772479328281356 -468,1.0,5.0,-1.6861448807654689,5.116477495334806 -468,2.0,0.0,-1.5408698687669766,5.631674830095234 -468,2.0,2.0,9.736318911079088,-29.13794745915803 -468,2.0,3.0,-8.19544904231211,23.5308726290628 -468,3.0,1.0,-1.7055303166990268,5.1973792282565086 -468,3.0,2.0,-8.19544904231211,23.5308726290628 -468,3.0,3.0,16.314103089185693,-55.509410535254254 -468,3.0,5.0,-6.413123730174556,22.31120356548123 -468,3.0,11.0,0.0,4.191255364806866 -468,4.0,1.0,-1.1359607881738778,4.772479328281356 -468,4.0,4.0,4.089980824135861,-12.190647245055052 -468,4.0,6.0,-2.954020035961983,7.449267916773697 -468,5.0,1.0,-1.6861448807654689,5.116477495334806 -468,5.0,3.0,-6.413123730174556,22.31120356548123 -468,5.0,5.0,16.052323092933932,-60.8210692494267 -468,5.0,6.0,-3.590210423980992,11.02611441072814 -468,5.0,8.0,0.0,4.915840805411357 -468,5.0,9.0,0.0,1.8561002591115965 -468,5.0,27.0,-4.362844058012917,15.463571542897856 -468,6.0,4.0,-2.954020035961983,7.449267916773697 -468,6.0,5.0,-3.590210423980992,11.02611441072814 -468,6.0,6.0,6.544230459942975,-18.45668232750184 -468,7.0,7.0,1.4439790613954469,-4.519414658476248 -468,7.0,27.0,-1.4439790613954469,4.540814658476248 -468,8.0,5.0,0.0,4.915840805411357 -468,8.0,8.0,0.0,-18.706293706293707 -468,8.0,9.0,0.0,9.090909090909092 -468,8.0,10.0,0.0,4.807692307692308 -468,9.0,5.0,0.0,1.8561002591115965 -468,9.0,8.0,0.0,9.090909090909092 -468,9.0,9.0,13.462042814524237,-41.3837606675224 -468,9.0,16.0,-3.956039125715353,10.317447719844054 -468,9.0,19.0,-1.7848303152666305,3.98535828943083 -468,9.0,20.0,-5.101853820159654,10.98071411292983 -468,9.0,21.0,-2.619319553382597,5.400770303329455 -468,10.0,8.0,0.0,4.807692307692308 -468,10.0,10.0,0.0,-4.807692307692308 -468,11.0,3.0,0.0,4.191255364806866 -468,11.0,11.0,5.047393974936599,-21.25074238629525 -468,11.0,12.0,0.0,7.142857142857143 -468,11.0,14.0,-3.0953961826564296,6.097275864326261 -468,11.0,15.0,-1.9519977922801688,4.104359379111847 -468,12.0,11.0,0.0,7.142857142857143 -468,12.0,12.0,0.0,-7.142857142857143 -468,13.0,13.0,2.4909522639994623,-2.250874059369649 -468,13.0,14.0,-2.4909522639994623,2.250874059369649 -468,14.0,11.0,-3.0953961826564296,6.097275864326261 -468,14.0,13.0,-2.4909522639994623,2.250874059369649 -468,14.0,14.0,7.397149597063095,-12.035568855326606 -468,14.0,17.0,-1.8108011504072024,3.687418931630696 -468,15.0,11.0,-1.9519977922801688,4.104359379111847 -468,15.0,15.0,3.271064728633931,-8.94513365126506 -468,15.0,16.0,-1.3190669363537617,4.8407742721532125 -468,16.0,9.0,-3.956039125715353,10.317447719844054 -468,16.0,15.0,-1.3190669363537617,4.8407742721532125 -468,16.0,16.0,5.275106062069114,-15.158221991997266 -468,17.0,14.0,-1.8108011504072024,3.687418931630696 -468,17.0,17.0,4.886487584415919,-9.906177730909668 -468,17.0,18.0,-3.0756864340087167,6.218758799278971 -468,18.0,17.0,-3.0756864340087167,6.218758799278971 -468,18.0,18.0,8.958039375185187,-17.98346468163191 -468,18.0,19.0,-5.88235294117647,11.76470588235294 -468,19.0,9.0,-1.7848303152666305,3.98535828943083 -468,19.0,18.0,-5.88235294117647,11.76470588235294 -468,19.0,19.0,7.6671832564431,-15.75006417178377 -468,20.0,9.0,-5.101853820159654,10.98071411292983 -468,20.0,20.0,21.876495189895888,-45.10843276170355 -468,20.0,21.0,-16.774641369736234,34.127718648773715 -468,21.0,9.0,-2.619319553382597,5.400770303329455 -468,21.0,20.0,-16.774641369736234,34.127718648773715 -468,21.0,21.0,21.93449907537439,-43.48289181517921 -468,21.0,23.0,-2.5405381522555563,3.95440286307604 -468,22.0,22.0,1.4614056064833263,-2.989238740534077 -468,22.0,23.0,-1.4614056064833263,2.989238740534077 -468,23.0,21.0,-2.5405381522555563,3.95440286307604 -468,23.0,22.0,-1.4614056064833263,2.989238740534077 -468,23.0,23.0,5.311836702613133,-9.188263657315172 -468,23.0,24.0,-1.3098929438742493,2.287622053705056 -468,24.0,23.0,-1.3098929438742493,2.287622053705056 -468,24.0,24.0,4.495715080321987,-7.864978761969621 -468,24.0,25.0,-1.2165301194494855,1.8171440463475024 -468,24.0,26.0,-1.9692920169982515,3.760212661917064 -468,25.0,24.0,-1.2165301194494855,1.8171440463475024 -468,25.0,25.0,1.2165301194494855,-1.8171440463475024 -468,26.0,24.0,-1.9692920169982515,3.760212661917064 -468,26.0,26.0,3.652281470778589,-9.46044252232512 -468,26.0,27.0,0.0,2.608731947574922 -468,26.0,28.0,-0.99553355095268,1.881005840357816 -468,26.0,29.0,-0.6874559028276572,1.293971494797717 -468,27.0,5.0,-4.362844058012917,15.463571542897856 -468,27.0,7.0,-1.4439790613954469,4.540814658476248 -468,27.0,26.0,0.0,2.608731947574922 -468,27.0,27.0,5.806823119408364,-22.67145722159613 -468,28.0,26.0,-0.99553355095268,1.881005840357816 -468,28.0,28.0,1.9075867579849564,-3.604364401207048 -468,28.0,29.0,-0.9120532070322764,1.7233585608492326 -468,29.0,26.0,-0.6874559028276572,1.293971494797717 -468,29.0,28.0,-0.9120532070322764,1.7233585608492326 -468,29.0,29.0,1.5995091098599337,-3.0173300556469496 -469,0.0,0.0,6.765516048652632,-21.23160167089863 -469,0.0,1.0,-5.224646179885656,15.646726840803398 -469,0.0,2.0,-1.5408698687669766,5.631674830095234 -469,1.0,0.0,-5.224646179885656,15.646726840803398 -469,1.0,1.0,9.75228216552403,-30.648662892676068 -469,1.0,3.0,-1.7055303166990268,5.1973792282565086 -469,1.0,4.0,-1.1359607881738778,4.772479328281356 -469,1.0,5.0,-1.6861448807654689,5.116477495334806 -469,2.0,0.0,-1.5408698687669766,5.631674830095234 -469,2.0,2.0,9.736318911079088,-29.13794745915803 -469,2.0,3.0,-8.19544904231211,23.5308726290628 -469,3.0,1.0,-1.7055303166990268,5.1973792282565086 -469,3.0,2.0,-8.19544904231211,23.5308726290628 -469,3.0,3.0,16.314103089185693,-55.509410535254254 -469,3.0,5.0,-6.413123730174556,22.31120356548123 -469,3.0,11.0,0.0,4.191255364806866 -469,4.0,1.0,-1.1359607881738778,4.772479328281356 -469,4.0,4.0,4.089980824135861,-12.190647245055052 -469,4.0,6.0,-2.954020035961983,7.449267916773697 -469,5.0,1.0,-1.6861448807654689,5.116477495334806 -469,5.0,3.0,-6.413123730174556,22.31120356548123 -469,5.0,5.0,22.341631269034565,-82.8291478657789 -469,5.0,6.0,-3.590210423980992,11.02611441072814 -469,5.0,7.0,-6.289308176100628,22.0125786163522 -469,5.0,8.0,0.0,4.915840805411357 -469,5.0,9.0,0.0,1.8561002591115965 -469,5.0,27.0,-4.362844058012917,15.463571542897856 -469,6.0,4.0,-2.954020035961983,7.449267916773697 -469,6.0,5.0,-3.590210423980992,11.02611441072814 -469,6.0,6.0,6.544230459942975,-18.45668232750184 -469,7.0,5.0,-6.289308176100628,22.0125786163522 -469,7.0,7.0,7.733287237496075,-26.527493274828448 -469,7.0,27.0,-1.4439790613954469,4.540814658476248 -469,8.0,5.0,0.0,4.915840805411357 -469,8.0,8.0,0.0,-18.706293706293707 -469,8.0,9.0,0.0,9.090909090909092 -469,8.0,10.0,0.0,4.807692307692308 -469,9.0,5.0,0.0,1.8561002591115965 -469,9.0,8.0,0.0,9.090909090909092 -469,9.0,9.0,10.842723261141638,-35.98299036419294 -469,9.0,16.0,-3.956039125715353,10.317447719844054 -469,9.0,19.0,-1.7848303152666305,3.98535828943083 -469,9.0,20.0,-5.101853820159654,10.98071411292983 -469,10.0,8.0,0.0,4.807692307692308 -469,10.0,10.0,0.0,-4.807692307692308 -469,11.0,3.0,0.0,4.191255364806866 -469,11.0,11.0,6.573961583776156,-24.424167659260668 -469,11.0,12.0,0.0,7.142857142857143 -469,11.0,13.0,-1.5265676088395577,3.1734252729654173 -469,11.0,14.0,-3.0953961826564296,6.097275864326261 -469,11.0,15.0,-1.9519977922801688,4.104359379111847 -469,12.0,11.0,0.0,7.142857142857143 -469,12.0,12.0,0.0,-7.142857142857143 -469,13.0,11.0,-1.5265676088395577,3.1734252729654173 -469,13.0,13.0,4.01751987283902,-5.424299332335067 -469,13.0,14.0,-2.4909522639994623,2.250874059369649 -469,14.0,11.0,-3.0953961826564296,6.097275864326261 -469,14.0,13.0,-2.4909522639994623,2.250874059369649 -469,14.0,14.0,9.365498545964757,-16.01163373210796 -469,14.0,17.0,-1.8108011504072024,3.687418931630696 -469,14.0,22.0,-1.9683489489016612,3.976064876781356 -469,15.0,11.0,-1.9519977922801688,4.104359379111847 -469,15.0,15.0,3.271064728633931,-8.94513365126506 -469,15.0,16.0,-1.3190669363537617,4.8407742721532125 -469,16.0,9.0,-3.956039125715353,10.317447719844054 -469,16.0,15.0,-1.3190669363537617,4.8407742721532125 -469,16.0,16.0,5.275106062069114,-15.158221991997266 -469,17.0,14.0,-1.8108011504072024,3.687418931630696 -469,17.0,17.0,4.886487584415919,-9.906177730909668 -469,17.0,18.0,-3.0756864340087167,6.218758799278971 -469,18.0,17.0,-3.0756864340087167,6.218758799278971 -469,18.0,18.0,8.958039375185187,-17.98346468163191 -469,18.0,19.0,-5.88235294117647,11.76470588235294 -469,19.0,9.0,-1.7848303152666305,3.98535828943083 -469,19.0,18.0,-5.88235294117647,11.76470588235294 -469,19.0,19.0,7.6671832564431,-15.75006417178377 -469,20.0,9.0,-5.101853820159654,10.98071411292983 -469,20.0,20.0,21.876495189895888,-45.10843276170355 -469,20.0,21.0,-16.774641369736234,34.127718648773715 -469,21.0,20.0,-16.774641369736234,34.127718648773715 -469,21.0,21.0,19.31517952199179,-38.08212151184976 -469,21.0,23.0,-2.5405381522555563,3.95440286307604 -469,22.0,14.0,-1.9683489489016612,3.976064876781356 -469,22.0,22.0,3.429754555384988,-6.965303617315433 -469,22.0,23.0,-1.4614056064833263,2.989238740534077 -469,23.0,21.0,-2.5405381522555563,3.95440286307604 -469,23.0,22.0,-1.4614056064833263,2.989238740534077 -469,23.0,23.0,5.311836702613133,-9.188263657315172 -469,23.0,24.0,-1.3098929438742493,2.287622053705056 -469,24.0,23.0,-1.3098929438742493,2.287622053705056 -469,24.0,24.0,4.495715080321987,-7.864978761969621 -469,24.0,25.0,-1.2165301194494855,1.8171440463475024 -469,24.0,26.0,-1.9692920169982515,3.760212661917064 -469,25.0,24.0,-1.2165301194494855,1.8171440463475024 -469,25.0,25.0,1.2165301194494855,-1.8171440463475024 -469,26.0,24.0,-1.9692920169982515,3.760212661917064 -469,26.0,26.0,2.9648255679509314,-8.166471027527404 -469,26.0,27.0,0.0,2.608731947574922 -469,26.0,28.0,-0.99553355095268,1.881005840357816 -469,27.0,5.0,-4.362844058012917,15.463571542897856 -469,27.0,7.0,-1.4439790613954469,4.540814658476248 -469,27.0,26.0,0.0,2.608731947574922 -469,27.0,27.0,5.806823119408364,-22.67145722159613 -469,28.0,26.0,-0.99553355095268,1.881005840357816 -469,28.0,28.0,1.9075867579849564,-3.604364401207048 -469,28.0,29.0,-0.9120532070322764,1.7233585608492326 -469,29.0,28.0,-0.9120532070322764,1.7233585608492326 -469,29.0,29.0,0.9120532070322764,-1.7233585608492326 -470,0.0,0.0,6.765516048652632,-21.23160167089863 -470,0.0,1.0,-5.224646179885656,15.646726840803398 -470,0.0,2.0,-1.5408698687669766,5.631674830095234 -470,1.0,0.0,-5.224646179885656,15.646726840803398 -470,1.0,1.0,9.75228216552403,-30.648662892676068 -470,1.0,3.0,-1.7055303166990268,5.1973792282565086 -470,1.0,4.0,-1.1359607881738778,4.772479328281356 -470,1.0,5.0,-1.6861448807654689,5.116477495334806 -470,2.0,0.0,-1.5408698687669766,5.631674830095234 -470,2.0,2.0,9.736318911079088,-29.13794745915803 -470,2.0,3.0,-8.19544904231211,23.5308726290628 -470,3.0,1.0,-1.7055303166990268,5.1973792282565086 -470,3.0,2.0,-8.19544904231211,23.5308726290628 -470,3.0,3.0,16.314103089185693,-55.509410535254254 -470,3.0,5.0,-6.413123730174556,22.31120356548123 -470,3.0,11.0,0.0,4.191255364806866 -470,4.0,1.0,-1.1359607881738778,4.772479328281356 -470,4.0,4.0,4.089980824135861,-12.190647245055052 -470,4.0,6.0,-2.954020035961983,7.449267916773697 -470,5.0,1.0,-1.6861448807654689,5.116477495334806 -470,5.0,3.0,-6.413123730174556,22.31120356548123 -470,5.0,5.0,16.052323092933932,-60.8210692494267 -470,5.0,6.0,-3.590210423980992,11.02611441072814 -470,5.0,8.0,0.0,4.915840805411357 -470,5.0,9.0,0.0,1.8561002591115965 -470,5.0,27.0,-4.362844058012917,15.463571542897856 -470,6.0,4.0,-2.954020035961983,7.449267916773697 -470,6.0,5.0,-3.590210423980992,11.02611441072814 -470,6.0,6.0,6.544230459942975,-18.45668232750184 -470,7.0,7.0,1.4439790613954469,-4.519414658476248 -470,7.0,27.0,-1.4439790613954469,4.540814658476248 -470,8.0,5.0,0.0,4.915840805411357 -470,8.0,8.0,0.0,-18.706293706293707 -470,8.0,9.0,0.0,9.090909090909092 -470,8.0,10.0,0.0,4.807692307692308 -470,9.0,5.0,0.0,1.8561002591115965 -470,9.0,8.0,0.0,9.090909090909092 -470,9.0,9.0,11.677212499257603,-37.39840237809157 -470,9.0,16.0,-3.956039125715353,10.317447719844054 -470,9.0,20.0,-5.101853820159654,10.98071411292983 -470,9.0,21.0,-2.619319553382597,5.400770303329455 -470,10.0,8.0,0.0,4.807692307692308 -470,10.0,10.0,0.0,-4.807692307692308 -470,11.0,3.0,0.0,4.191255364806866 -470,11.0,11.0,6.573961583776156,-24.424167659260668 -470,11.0,12.0,0.0,7.142857142857143 -470,11.0,13.0,-1.5265676088395577,3.1734252729654173 -470,11.0,14.0,-3.0953961826564296,6.097275864326261 -470,11.0,15.0,-1.9519977922801688,4.104359379111847 -470,12.0,11.0,0.0,7.142857142857143 -470,12.0,12.0,0.0,-7.142857142857143 -470,13.0,11.0,-1.5265676088395577,3.1734252729654173 -470,13.0,13.0,4.01751987283902,-5.424299332335067 -470,13.0,14.0,-2.4909522639994623,2.250874059369649 -470,14.0,11.0,-3.0953961826564296,6.097275864326261 -470,14.0,13.0,-2.4909522639994623,2.250874059369649 -470,14.0,14.0,7.397149597063095,-12.035568855326606 -470,14.0,17.0,-1.8108011504072024,3.687418931630696 -470,15.0,11.0,-1.9519977922801688,4.104359379111847 -470,15.0,15.0,3.271064728633931,-8.94513365126506 -470,15.0,16.0,-1.3190669363537617,4.8407742721532125 -470,16.0,9.0,-3.956039125715353,10.317447719844054 -470,16.0,15.0,-1.3190669363537617,4.8407742721532125 -470,16.0,16.0,5.275106062069114,-15.158221991997266 -470,17.0,14.0,-1.8108011504072024,3.687418931630696 -470,17.0,17.0,4.886487584415919,-9.906177730909668 -470,17.0,18.0,-3.0756864340087167,6.218758799278971 -470,18.0,17.0,-3.0756864340087167,6.218758799278971 -470,18.0,18.0,8.958039375185187,-17.98346468163191 -470,18.0,19.0,-5.88235294117647,11.76470588235294 -470,19.0,18.0,-5.88235294117647,11.76470588235294 -470,19.0,19.0,5.88235294117647,-11.76470588235294 -470,20.0,9.0,-5.101853820159654,10.98071411292983 -470,20.0,20.0,21.876495189895888,-45.10843276170355 -470,20.0,21.0,-16.774641369736234,34.127718648773715 -470,21.0,9.0,-2.619319553382597,5.400770303329455 -470,21.0,20.0,-16.774641369736234,34.127718648773715 -470,21.0,21.0,21.93449907537439,-43.48289181517921 -470,21.0,23.0,-2.5405381522555563,3.95440286307604 -470,22.0,22.0,1.4614056064833263,-2.989238740534077 -470,22.0,23.0,-1.4614056064833263,2.989238740534077 -470,23.0,21.0,-2.5405381522555563,3.95440286307604 -470,23.0,22.0,-1.4614056064833263,2.989238740534077 -470,23.0,23.0,5.311836702613133,-9.188263657315172 -470,23.0,24.0,-1.3098929438742493,2.287622053705056 -470,24.0,23.0,-1.3098929438742493,2.287622053705056 -470,24.0,24.0,4.495715080321987,-7.864978761969621 -470,24.0,25.0,-1.2165301194494855,1.8171440463475024 -470,24.0,26.0,-1.9692920169982515,3.760212661917064 -470,25.0,24.0,-1.2165301194494855,1.8171440463475024 -470,25.0,25.0,1.2165301194494855,-1.8171440463475024 -470,26.0,24.0,-1.9692920169982515,3.760212661917064 -470,26.0,26.0,3.652281470778589,-9.46044252232512 -470,26.0,27.0,0.0,2.608731947574922 -470,26.0,28.0,-0.99553355095268,1.881005840357816 -470,26.0,29.0,-0.6874559028276572,1.293971494797717 -470,27.0,5.0,-4.362844058012917,15.463571542897856 -470,27.0,7.0,-1.4439790613954469,4.540814658476248 -470,27.0,26.0,0.0,2.608731947574922 -470,27.0,27.0,5.806823119408364,-22.67145722159613 -470,28.0,26.0,-0.99553355095268,1.881005840357816 -470,28.0,28.0,1.9075867579849564,-3.604364401207048 -470,28.0,29.0,-0.9120532070322764,1.7233585608492326 -470,29.0,26.0,-0.6874559028276572,1.293971494797717 -470,29.0,28.0,-0.9120532070322764,1.7233585608492326 -470,29.0,29.0,1.5995091098599337,-3.0173300556469496 -471,0.0,0.0,6.765516048652632,-21.23160167089863 -471,0.0,1.0,-5.224646179885656,15.646726840803398 -471,0.0,2.0,-1.5408698687669766,5.631674830095234 -471,1.0,0.0,-5.224646179885656,15.646726840803398 -471,1.0,1.0,9.75228216552403,-30.648662892676068 -471,1.0,3.0,-1.7055303166990268,5.1973792282565086 -471,1.0,4.0,-1.1359607881738778,4.772479328281356 -471,1.0,5.0,-1.6861448807654689,5.116477495334806 -471,2.0,0.0,-1.5408698687669766,5.631674830095234 -471,2.0,2.0,9.736318911079088,-29.13794745915803 -471,2.0,3.0,-8.19544904231211,23.5308726290628 -471,3.0,1.0,-1.7055303166990268,5.1973792282565086 -471,3.0,2.0,-8.19544904231211,23.5308726290628 -471,3.0,3.0,16.314103089185693,-55.509410535254254 -471,3.0,5.0,-6.413123730174556,22.31120356548123 -471,3.0,11.0,0.0,4.191255364806866 -471,4.0,1.0,-1.1359607881738778,4.772479328281356 -471,4.0,4.0,4.089980824135861,-12.190647245055052 -471,4.0,6.0,-2.954020035961983,7.449267916773697 -471,5.0,1.0,-1.6861448807654689,5.116477495334806 -471,5.0,3.0,-6.413123730174556,22.31120356548123 -471,5.0,5.0,22.341631269034565,-82.8291478657789 -471,5.0,6.0,-3.590210423980992,11.02611441072814 -471,5.0,7.0,-6.289308176100628,22.0125786163522 -471,5.0,8.0,0.0,4.915840805411357 -471,5.0,9.0,0.0,1.8561002591115965 -471,5.0,27.0,-4.362844058012917,15.463571542897856 -471,6.0,4.0,-2.954020035961983,7.449267916773697 -471,6.0,5.0,-3.590210423980992,11.02611441072814 -471,6.0,6.0,6.544230459942975,-18.45668232750184 -471,7.0,5.0,-6.289308176100628,22.0125786163522 -471,7.0,7.0,7.733287237496075,-26.527493274828448 -471,7.0,27.0,-1.4439790613954469,4.540814658476248 -471,8.0,5.0,0.0,4.915840805411357 -471,8.0,8.0,0.0,-18.706293706293707 -471,8.0,9.0,0.0,9.090909090909092 -471,8.0,10.0,0.0,4.807692307692308 -471,9.0,5.0,0.0,1.8561002591115965 -471,9.0,8.0,0.0,9.090909090909092 -471,9.0,9.0,13.462042814524237,-41.3837606675224 -471,9.0,16.0,-3.956039125715353,10.317447719844054 -471,9.0,19.0,-1.7848303152666305,3.98535828943083 -471,9.0,20.0,-5.101853820159654,10.98071411292983 -471,9.0,21.0,-2.619319553382597,5.400770303329455 -471,10.0,8.0,0.0,4.807692307692308 -471,10.0,10.0,0.0,-4.807692307692308 -471,11.0,3.0,0.0,4.191255364806866 -471,11.0,11.0,6.573961583776156,-24.424167659260668 -471,11.0,12.0,0.0,7.142857142857143 -471,11.0,13.0,-1.5265676088395577,3.1734252729654173 -471,11.0,14.0,-3.0953961826564296,6.097275864326261 -471,11.0,15.0,-1.9519977922801688,4.104359379111847 -471,12.0,11.0,0.0,7.142857142857143 -471,12.0,12.0,0.0,-7.142857142857143 -471,13.0,11.0,-1.5265676088395577,3.1734252729654173 -471,13.0,13.0,4.01751987283902,-5.424299332335067 -471,13.0,14.0,-2.4909522639994623,2.250874059369649 -471,14.0,11.0,-3.0953961826564296,6.097275864326261 -471,14.0,13.0,-2.4909522639994623,2.250874059369649 -471,14.0,14.0,9.365498545964757,-16.01163373210796 -471,14.0,17.0,-1.8108011504072024,3.687418931630696 -471,14.0,22.0,-1.9683489489016612,3.976064876781356 -471,15.0,11.0,-1.9519977922801688,4.104359379111847 -471,15.0,15.0,3.271064728633931,-8.94513365126506 -471,15.0,16.0,-1.3190669363537617,4.8407742721532125 -471,16.0,9.0,-3.956039125715353,10.317447719844054 -471,16.0,15.0,-1.3190669363537617,4.8407742721532125 -471,16.0,16.0,5.275106062069114,-15.158221991997266 -471,17.0,14.0,-1.8108011504072024,3.687418931630696 -471,17.0,17.0,4.886487584415919,-9.906177730909668 -471,17.0,18.0,-3.0756864340087167,6.218758799278971 -471,18.0,17.0,-3.0756864340087167,6.218758799278971 -471,18.0,18.0,8.958039375185187,-17.98346468163191 -471,18.0,19.0,-5.88235294117647,11.76470588235294 -471,19.0,9.0,-1.7848303152666305,3.98535828943083 -471,19.0,18.0,-5.88235294117647,11.76470588235294 -471,19.0,19.0,7.6671832564431,-15.75006417178377 -471,20.0,9.0,-5.101853820159654,10.98071411292983 -471,20.0,20.0,21.876495189895888,-45.10843276170355 -471,20.0,21.0,-16.774641369736234,34.127718648773715 -471,21.0,9.0,-2.619319553382597,5.400770303329455 -471,21.0,20.0,-16.774641369736234,34.127718648773715 -471,21.0,21.0,21.93449907537439,-43.48289181517921 -471,21.0,23.0,-2.5405381522555563,3.95440286307604 -471,22.0,14.0,-1.9683489489016612,3.976064876781356 -471,22.0,22.0,3.429754555384988,-6.965303617315433 -471,22.0,23.0,-1.4614056064833263,2.989238740534077 -471,23.0,21.0,-2.5405381522555563,3.95440286307604 -471,23.0,22.0,-1.4614056064833263,2.989238740534077 -471,23.0,23.0,5.311836702613133,-9.188263657315172 -471,23.0,24.0,-1.3098929438742493,2.287622053705056 -471,24.0,23.0,-1.3098929438742493,2.287622053705056 -471,24.0,24.0,4.495715080321987,-7.864978761969621 -471,24.0,25.0,-1.2165301194494855,1.8171440463475024 -471,24.0,26.0,-1.9692920169982515,3.760212661917064 -471,25.0,24.0,-1.2165301194494855,1.8171440463475024 -471,25.0,25.0,1.2165301194494855,-1.8171440463475024 -471,26.0,24.0,-1.9692920169982515,3.760212661917064 -471,26.0,26.0,3.652281470778589,-9.46044252232512 -471,26.0,27.0,0.0,2.608731947574922 -471,26.0,28.0,-0.99553355095268,1.881005840357816 -471,26.0,29.0,-0.6874559028276572,1.293971494797717 -471,27.0,5.0,-4.362844058012917,15.463571542897856 -471,27.0,7.0,-1.4439790613954469,4.540814658476248 -471,27.0,26.0,0.0,2.608731947574922 -471,27.0,27.0,5.806823119408364,-22.67145722159613 -471,28.0,26.0,-0.99553355095268,1.881005840357816 -471,28.0,28.0,1.9075867579849564,-3.604364401207048 -471,28.0,29.0,-0.9120532070322764,1.7233585608492326 -471,29.0,26.0,-0.6874559028276572,1.293971494797717 -471,29.0,28.0,-0.9120532070322764,1.7233585608492326 -471,29.0,29.0,1.5995091098599337,-3.0173300556469496 -472,0.0,0.0,6.765516048652632,-21.23160167089863 -472,0.0,1.0,-5.224646179885656,15.646726840803398 -472,0.0,2.0,-1.5408698687669766,5.631674830095234 -472,1.0,0.0,-5.224646179885656,15.646726840803398 -472,1.0,1.0,9.75228216552403,-30.648662892676068 -472,1.0,3.0,-1.7055303166990268,5.1973792282565086 -472,1.0,4.0,-1.1359607881738778,4.772479328281356 -472,1.0,5.0,-1.6861448807654689,5.116477495334806 -472,2.0,0.0,-1.5408698687669766,5.631674830095234 -472,2.0,2.0,9.736318911079088,-29.13794745915803 -472,2.0,3.0,-8.19544904231211,23.5308726290628 -472,3.0,1.0,-1.7055303166990268,5.1973792282565086 -472,3.0,2.0,-8.19544904231211,23.5308726290628 -472,3.0,3.0,16.314103089185693,-55.509410535254254 -472,3.0,5.0,-6.413123730174556,22.31120356548123 -472,3.0,11.0,0.0,4.191255364806866 -472,4.0,1.0,-1.1359607881738778,4.772479328281356 -472,4.0,4.0,4.089980824135861,-12.190647245055052 -472,4.0,6.0,-2.954020035961983,7.449267916773697 -472,5.0,1.0,-1.6861448807654689,5.116477495334806 -472,5.0,3.0,-6.413123730174556,22.31120356548123 -472,5.0,5.0,22.341631269034565,-77.80272577435625 -472,5.0,6.0,-3.590210423980992,11.02611441072814 -472,5.0,7.0,-6.289308176100628,22.0125786163522 -472,5.0,9.0,0.0,1.8561002591115965 -472,5.0,27.0,-4.362844058012917,15.463571542897856 -472,6.0,4.0,-2.954020035961983,7.449267916773697 -472,6.0,5.0,-3.590210423980992,11.02611441072814 -472,6.0,6.0,6.544230459942975,-18.45668232750184 -472,7.0,5.0,-6.289308176100628,22.0125786163522 -472,7.0,7.0,6.289308176100628,-22.0080786163522 -472,8.0,8.0,0.0,-13.8986013986014 -472,8.0,9.0,0.0,9.090909090909092 -472,8.0,10.0,0.0,4.807692307692308 -472,9.0,5.0,0.0,1.8561002591115965 -472,9.0,8.0,0.0,9.090909090909092 -472,9.0,9.0,13.462042814524237,-41.3837606675224 -472,9.0,16.0,-3.956039125715353,10.317447719844054 -472,9.0,19.0,-1.7848303152666305,3.98535828943083 -472,9.0,20.0,-5.101853820159654,10.98071411292983 -472,9.0,21.0,-2.619319553382597,5.400770303329455 -472,10.0,8.0,0.0,4.807692307692308 -472,10.0,10.0,0.0,-4.807692307692308 -472,11.0,3.0,0.0,4.191255364806866 -472,11.0,11.0,6.573961583776156,-24.424167659260668 -472,11.0,12.0,0.0,7.142857142857143 -472,11.0,13.0,-1.5265676088395577,3.1734252729654173 -472,11.0,14.0,-3.0953961826564296,6.097275864326261 -472,11.0,15.0,-1.9519977922801688,4.104359379111847 -472,12.0,11.0,0.0,7.142857142857143 -472,12.0,12.0,0.0,-7.142857142857143 -472,13.0,11.0,-1.5265676088395577,3.1734252729654173 -472,13.0,13.0,4.01751987283902,-5.424299332335067 -472,13.0,14.0,-2.4909522639994623,2.250874059369649 -472,14.0,11.0,-3.0953961826564296,6.097275864326261 -472,14.0,13.0,-2.4909522639994623,2.250874059369649 -472,14.0,14.0,9.365498545964757,-16.01163373210796 -472,14.0,17.0,-1.8108011504072024,3.687418931630696 -472,14.0,22.0,-1.9683489489016612,3.976064876781356 -472,15.0,11.0,-1.9519977922801688,4.104359379111847 -472,15.0,15.0,3.271064728633931,-8.94513365126506 -472,15.0,16.0,-1.3190669363537617,4.8407742721532125 -472,16.0,9.0,-3.956039125715353,10.317447719844054 -472,16.0,15.0,-1.3190669363537617,4.8407742721532125 -472,16.0,16.0,5.275106062069114,-15.158221991997266 -472,17.0,14.0,-1.8108011504072024,3.687418931630696 -472,17.0,17.0,4.886487584415919,-9.906177730909668 -472,17.0,18.0,-3.0756864340087167,6.218758799278971 -472,18.0,17.0,-3.0756864340087167,6.218758799278971 -472,18.0,18.0,8.958039375185187,-17.98346468163191 -472,18.0,19.0,-5.88235294117647,11.76470588235294 -472,19.0,9.0,-1.7848303152666305,3.98535828943083 -472,19.0,18.0,-5.88235294117647,11.76470588235294 -472,19.0,19.0,7.6671832564431,-15.75006417178377 -472,20.0,9.0,-5.101853820159654,10.98071411292983 -472,20.0,20.0,5.101853820159654,-10.98071411292983 -472,21.0,9.0,-2.619319553382597,5.400770303329455 -472,21.0,21.0,5.159857705638154,-9.355173166405494 -472,21.0,23.0,-2.5405381522555563,3.95440286307604 -472,22.0,14.0,-1.9683489489016612,3.976064876781356 -472,22.0,22.0,3.429754555384988,-6.965303617315433 -472,22.0,23.0,-1.4614056064833263,2.989238740534077 -472,23.0,21.0,-2.5405381522555563,3.95440286307604 -472,23.0,22.0,-1.4614056064833263,2.989238740534077 -472,23.0,23.0,5.311836702613133,-9.188263657315172 -472,23.0,24.0,-1.3098929438742493,2.287622053705056 -472,24.0,23.0,-1.3098929438742493,2.287622053705056 -472,24.0,24.0,4.495715080321987,-7.864978761969621 -472,24.0,25.0,-1.2165301194494855,1.8171440463475024 -472,24.0,26.0,-1.9692920169982515,3.760212661917064 -472,25.0,24.0,-1.2165301194494855,1.8171440463475024 -472,25.0,25.0,1.2165301194494855,-1.8171440463475024 -472,26.0,24.0,-1.9692920169982515,3.760212661917064 -472,26.0,26.0,3.652281470778589,-9.46044252232512 -472,26.0,27.0,0.0,2.608731947574922 -472,26.0,28.0,-0.99553355095268,1.881005840357816 -472,26.0,29.0,-0.6874559028276572,1.293971494797717 -472,27.0,5.0,-4.362844058012917,15.463571542897856 -472,27.0,26.0,0.0,2.608731947574922 -472,27.0,27.0,4.362844058012917,-18.15204256311988 -472,28.0,26.0,-0.99553355095268,1.881005840357816 -472,28.0,28.0,1.9075867579849564,-3.604364401207048 -472,28.0,29.0,-0.9120532070322764,1.7233585608492326 -472,29.0,26.0,-0.6874559028276572,1.293971494797717 -472,29.0,28.0,-0.9120532070322764,1.7233585608492326 -472,29.0,29.0,1.5995091098599337,-3.0173300556469496 -473,0.0,0.0,6.765516048652632,-21.23160167089863 -473,0.0,1.0,-5.224646179885656,15.646726840803398 -473,0.0,2.0,-1.5408698687669766,5.631674830095234 -473,1.0,0.0,-5.224646179885656,15.646726840803398 -473,1.0,1.0,9.75228216552403,-30.648662892676068 -473,1.0,3.0,-1.7055303166990268,5.1973792282565086 -473,1.0,4.0,-1.1359607881738778,4.772479328281356 -473,1.0,5.0,-1.6861448807654689,5.116477495334806 -473,2.0,0.0,-1.5408698687669766,5.631674830095234 -473,2.0,2.0,9.736318911079088,-29.13794745915803 -473,2.0,3.0,-8.19544904231211,23.5308726290628 -473,3.0,1.0,-1.7055303166990268,5.1973792282565086 -473,3.0,2.0,-8.19544904231211,23.5308726290628 -473,3.0,3.0,16.314103089185693,-55.509410535254254 -473,3.0,5.0,-6.413123730174556,22.31120356548123 -473,3.0,11.0,0.0,4.191255364806866 -473,4.0,1.0,-1.1359607881738778,4.772479328281356 -473,4.0,4.0,4.089980824135861,-12.190647245055052 -473,4.0,6.0,-2.954020035961983,7.449267916773697 -473,5.0,1.0,-1.6861448807654689,5.116477495334806 -473,5.0,3.0,-6.413123730174556,22.31120356548123 -473,5.0,5.0,16.052323092933932,-60.8210692494267 -473,5.0,6.0,-3.590210423980992,11.02611441072814 -473,5.0,8.0,0.0,4.915840805411357 -473,5.0,9.0,0.0,1.8561002591115965 -473,5.0,27.0,-4.362844058012917,15.463571542897856 -473,6.0,4.0,-2.954020035961983,7.449267916773697 -473,6.0,5.0,-3.590210423980992,11.02611441072814 -473,6.0,6.0,6.544230459942975,-18.45668232750184 -473,7.0,7.0,1.4439790613954469,-4.519414658476248 -473,7.0,27.0,-1.4439790613954469,4.540814658476248 -473,8.0,5.0,0.0,4.915840805411357 -473,8.0,8.0,0.0,-18.706293706293707 -473,8.0,9.0,0.0,9.090909090909092 -473,8.0,10.0,0.0,4.807692307692308 -473,9.0,5.0,0.0,1.8561002591115965 -473,9.0,8.0,0.0,9.090909090909092 -473,9.0,9.0,13.462042814524237,-41.3837606675224 -473,9.0,16.0,-3.956039125715353,10.317447719844054 -473,9.0,19.0,-1.7848303152666305,3.98535828943083 -473,9.0,20.0,-5.101853820159654,10.98071411292983 -473,9.0,21.0,-2.619319553382597,5.400770303329455 -473,10.0,8.0,0.0,4.807692307692308 -473,10.0,10.0,0.0,-4.807692307692308 -473,11.0,3.0,0.0,4.191255364806866 -473,11.0,11.0,6.573961583776156,-24.424167659260668 -473,11.0,12.0,0.0,7.142857142857143 -473,11.0,13.0,-1.5265676088395577,3.1734252729654173 -473,11.0,14.0,-3.0953961826564296,6.097275864326261 -473,11.0,15.0,-1.9519977922801688,4.104359379111847 -473,12.0,11.0,0.0,7.142857142857143 -473,12.0,12.0,0.0,-7.142857142857143 -473,13.0,11.0,-1.5265676088395577,3.1734252729654173 -473,13.0,13.0,4.01751987283902,-5.424299332335067 -473,13.0,14.0,-2.4909522639994623,2.250874059369649 -473,14.0,11.0,-3.0953961826564296,6.097275864326261 -473,14.0,13.0,-2.4909522639994623,2.250874059369649 -473,14.0,14.0,9.365498545964757,-16.01163373210796 -473,14.0,17.0,-1.8108011504072024,3.687418931630696 -473,14.0,22.0,-1.9683489489016612,3.976064876781356 -473,15.0,11.0,-1.9519977922801688,4.104359379111847 -473,15.0,15.0,3.271064728633931,-8.94513365126506 -473,15.0,16.0,-1.3190669363537617,4.8407742721532125 -473,16.0,9.0,-3.956039125715353,10.317447719844054 -473,16.0,15.0,-1.3190669363537617,4.8407742721532125 -473,16.0,16.0,5.275106062069114,-15.158221991997266 -473,17.0,14.0,-1.8108011504072024,3.687418931630696 -473,17.0,17.0,4.886487584415919,-9.906177730909668 -473,17.0,18.0,-3.0756864340087167,6.218758799278971 -473,18.0,17.0,-3.0756864340087167,6.218758799278971 -473,18.0,18.0,8.958039375185187,-17.98346468163191 -473,18.0,19.0,-5.88235294117647,11.76470588235294 -473,19.0,9.0,-1.7848303152666305,3.98535828943083 -473,19.0,18.0,-5.88235294117647,11.76470588235294 -473,19.0,19.0,7.6671832564431,-15.75006417178377 -473,20.0,9.0,-5.101853820159654,10.98071411292983 -473,20.0,20.0,21.876495189895888,-45.10843276170355 -473,20.0,21.0,-16.774641369736234,34.127718648773715 -473,21.0,9.0,-2.619319553382597,5.400770303329455 -473,21.0,20.0,-16.774641369736234,34.127718648773715 -473,21.0,21.0,21.93449907537439,-43.48289181517921 -473,21.0,23.0,-2.5405381522555563,3.95440286307604 -473,22.0,14.0,-1.9683489489016612,3.976064876781356 -473,22.0,22.0,3.429754555384988,-6.965303617315433 -473,22.0,23.0,-1.4614056064833263,2.989238740534077 -473,23.0,21.0,-2.5405381522555563,3.95440286307604 -473,23.0,22.0,-1.4614056064833263,2.989238740534077 -473,23.0,23.0,5.311836702613133,-9.188263657315172 -473,23.0,24.0,-1.3098929438742493,2.287622053705056 -473,24.0,23.0,-1.3098929438742493,2.287622053705056 -473,24.0,24.0,4.495715080321987,-7.864978761969621 -473,24.0,25.0,-1.2165301194494855,1.8171440463475024 -473,24.0,26.0,-1.9692920169982515,3.760212661917064 -473,25.0,24.0,-1.2165301194494855,1.8171440463475024 -473,25.0,25.0,1.2165301194494855,-1.8171440463475024 -473,26.0,24.0,-1.9692920169982515,3.760212661917064 -473,26.0,26.0,3.652281470778589,-9.46044252232512 -473,26.0,27.0,0.0,2.608731947574922 -473,26.0,28.0,-0.99553355095268,1.881005840357816 -473,26.0,29.0,-0.6874559028276572,1.293971494797717 -473,27.0,5.0,-4.362844058012917,15.463571542897856 -473,27.0,7.0,-1.4439790613954469,4.540814658476248 -473,27.0,26.0,0.0,2.608731947574922 -473,27.0,27.0,5.806823119408364,-22.67145722159613 -473,28.0,26.0,-0.99553355095268,1.881005840357816 -473,28.0,28.0,1.9075867579849564,-3.604364401207048 -473,28.0,29.0,-0.9120532070322764,1.7233585608492326 -473,29.0,26.0,-0.6874559028276572,1.293971494797717 -473,29.0,28.0,-0.9120532070322764,1.7233585608492326 -473,29.0,29.0,1.5995091098599337,-3.0173300556469496 -474,0.0,0.0,6.765516048652632,-21.23160167089863 -474,0.0,1.0,-5.224646179885656,15.646726840803398 -474,0.0,2.0,-1.5408698687669766,5.631674830095234 -474,1.0,0.0,-5.224646179885656,15.646726840803398 -474,1.0,1.0,9.75228216552403,-30.648662892676068 -474,1.0,3.0,-1.7055303166990268,5.1973792282565086 -474,1.0,4.0,-1.1359607881738778,4.772479328281356 -474,1.0,5.0,-1.6861448807654689,5.116477495334806 -474,2.0,0.0,-1.5408698687669766,5.631674830095234 -474,2.0,2.0,9.736318911079088,-29.13794745915803 -474,2.0,3.0,-8.19544904231211,23.5308726290628 -474,3.0,1.0,-1.7055303166990268,5.1973792282565086 -474,3.0,2.0,-8.19544904231211,23.5308726290628 -474,3.0,3.0,16.314103089185693,-55.509410535254254 -474,3.0,5.0,-6.413123730174556,22.31120356548123 -474,3.0,11.0,0.0,4.191255364806866 -474,4.0,1.0,-1.1359607881738778,4.772479328281356 -474,4.0,4.0,4.089980824135861,-12.190647245055052 -474,4.0,6.0,-2.954020035961983,7.449267916773697 -474,5.0,1.0,-1.6861448807654689,5.116477495334806 -474,5.0,3.0,-6.413123730174556,22.31120356548123 -474,5.0,5.0,22.341631269034565,-82.8291478657789 -474,5.0,6.0,-3.590210423980992,11.02611441072814 -474,5.0,7.0,-6.289308176100628,22.0125786163522 -474,5.0,8.0,0.0,4.915840805411357 -474,5.0,9.0,0.0,1.8561002591115965 -474,5.0,27.0,-4.362844058012917,15.463571542897856 -474,6.0,4.0,-2.954020035961983,7.449267916773697 -474,6.0,5.0,-3.590210423980992,11.02611441072814 -474,6.0,6.0,6.544230459942975,-18.45668232750184 -474,7.0,5.0,-6.289308176100628,22.0125786163522 -474,7.0,7.0,7.733287237496075,-26.527493274828448 -474,7.0,27.0,-1.4439790613954469,4.540814658476248 -474,8.0,5.0,0.0,4.915840805411357 -474,8.0,8.0,0.0,-18.706293706293707 -474,8.0,9.0,0.0,9.090909090909092 -474,8.0,10.0,0.0,4.807692307692308 -474,9.0,5.0,0.0,1.8561002591115965 -474,9.0,8.0,0.0,9.090909090909092 -474,9.0,9.0,9.506003688808882,-31.06631294767834 -474,9.0,19.0,-1.7848303152666305,3.98535828943083 -474,9.0,20.0,-5.101853820159654,10.98071411292983 -474,9.0,21.0,-2.619319553382597,5.400770303329455 -474,10.0,8.0,0.0,4.807692307692308 -474,10.0,10.0,0.0,-4.807692307692308 -474,11.0,3.0,0.0,4.191255364806866 -474,11.0,11.0,6.573961583776156,-24.424167659260668 -474,11.0,12.0,0.0,7.142857142857143 -474,11.0,13.0,-1.5265676088395577,3.1734252729654173 -474,11.0,14.0,-3.0953961826564296,6.097275864326261 -474,11.0,15.0,-1.9519977922801688,4.104359379111847 -474,12.0,11.0,0.0,7.142857142857143 -474,12.0,12.0,0.0,-7.142857142857143 -474,13.0,11.0,-1.5265676088395577,3.1734252729654173 -474,13.0,13.0,4.01751987283902,-5.424299332335067 -474,13.0,14.0,-2.4909522639994623,2.250874059369649 -474,14.0,11.0,-3.0953961826564296,6.097275864326261 -474,14.0,13.0,-2.4909522639994623,2.250874059369649 -474,14.0,14.0,9.365498545964757,-16.01163373210796 -474,14.0,17.0,-1.8108011504072024,3.687418931630696 -474,14.0,22.0,-1.9683489489016612,3.976064876781356 -474,15.0,11.0,-1.9519977922801688,4.104359379111847 -474,15.0,15.0,3.271064728633931,-8.94513365126506 -474,15.0,16.0,-1.3190669363537617,4.8407742721532125 -474,16.0,15.0,-1.3190669363537617,4.8407742721532125 -474,16.0,16.0,1.3190669363537617,-4.8407742721532125 -474,17.0,14.0,-1.8108011504072024,3.687418931630696 -474,17.0,17.0,4.886487584415919,-9.906177730909668 -474,17.0,18.0,-3.0756864340087167,6.218758799278971 -474,18.0,17.0,-3.0756864340087167,6.218758799278971 -474,18.0,18.0,8.958039375185187,-17.98346468163191 -474,18.0,19.0,-5.88235294117647,11.76470588235294 -474,19.0,9.0,-1.7848303152666305,3.98535828943083 -474,19.0,18.0,-5.88235294117647,11.76470588235294 -474,19.0,19.0,7.6671832564431,-15.75006417178377 -474,20.0,9.0,-5.101853820159654,10.98071411292983 -474,20.0,20.0,21.876495189895888,-45.10843276170355 -474,20.0,21.0,-16.774641369736234,34.127718648773715 -474,21.0,9.0,-2.619319553382597,5.400770303329455 -474,21.0,20.0,-16.774641369736234,34.127718648773715 -474,21.0,21.0,21.93449907537439,-43.48289181517921 -474,21.0,23.0,-2.5405381522555563,3.95440286307604 -474,22.0,14.0,-1.9683489489016612,3.976064876781356 -474,22.0,22.0,3.429754555384988,-6.965303617315433 -474,22.0,23.0,-1.4614056064833263,2.989238740534077 -474,23.0,21.0,-2.5405381522555563,3.95440286307604 -474,23.0,22.0,-1.4614056064833263,2.989238740534077 -474,23.0,23.0,5.311836702613133,-9.188263657315172 -474,23.0,24.0,-1.3098929438742493,2.287622053705056 -474,24.0,23.0,-1.3098929438742493,2.287622053705056 -474,24.0,24.0,4.495715080321987,-7.864978761969621 -474,24.0,25.0,-1.2165301194494855,1.8171440463475024 -474,24.0,26.0,-1.9692920169982515,3.760212661917064 -474,25.0,24.0,-1.2165301194494855,1.8171440463475024 -474,25.0,25.0,1.2165301194494855,-1.8171440463475024 -474,26.0,24.0,-1.9692920169982515,3.760212661917064 -474,26.0,26.0,3.652281470778589,-9.46044252232512 -474,26.0,27.0,0.0,2.608731947574922 -474,26.0,28.0,-0.99553355095268,1.881005840357816 -474,26.0,29.0,-0.6874559028276572,1.293971494797717 -474,27.0,5.0,-4.362844058012917,15.463571542897856 -474,27.0,7.0,-1.4439790613954469,4.540814658476248 -474,27.0,26.0,0.0,2.608731947574922 -474,27.0,27.0,5.806823119408364,-22.67145722159613 -474,28.0,26.0,-0.99553355095268,1.881005840357816 -474,28.0,28.0,1.9075867579849564,-3.604364401207048 -474,28.0,29.0,-0.9120532070322764,1.7233585608492326 -474,29.0,26.0,-0.6874559028276572,1.293971494797717 -474,29.0,28.0,-0.9120532070322764,1.7233585608492326 -474,29.0,29.0,1.5995091098599337,-3.0173300556469496 -475,0.0,0.0,6.765516048652632,-21.23160167089863 -475,0.0,1.0,-5.224646179885656,15.646726840803398 -475,0.0,2.0,-1.5408698687669766,5.631674830095234 -475,1.0,0.0,-5.224646179885656,15.646726840803398 -475,1.0,1.0,9.75228216552403,-30.648662892676068 -475,1.0,3.0,-1.7055303166990268,5.1973792282565086 -475,1.0,4.0,-1.1359607881738778,4.772479328281356 -475,1.0,5.0,-1.6861448807654689,5.116477495334806 -475,2.0,0.0,-1.5408698687669766,5.631674830095234 -475,2.0,2.0,9.736318911079088,-29.13794745915803 -475,2.0,3.0,-8.19544904231211,23.5308726290628 -475,3.0,1.0,-1.7055303166990268,5.1973792282565086 -475,3.0,2.0,-8.19544904231211,23.5308726290628 -475,3.0,3.0,16.314103089185693,-55.509410535254254 -475,3.0,5.0,-6.413123730174556,22.31120356548123 -475,3.0,11.0,0.0,4.191255364806866 -475,4.0,1.0,-1.1359607881738778,4.772479328281356 -475,4.0,4.0,4.089980824135861,-12.190647245055052 -475,4.0,6.0,-2.954020035961983,7.449267916773697 -475,5.0,1.0,-1.6861448807654689,5.116477495334806 -475,5.0,3.0,-6.413123730174556,22.31120356548123 -475,5.0,5.0,16.052323092933932,-60.8210692494267 -475,5.0,6.0,-3.590210423980992,11.02611441072814 -475,5.0,8.0,0.0,4.915840805411357 -475,5.0,9.0,0.0,1.8561002591115965 -475,5.0,27.0,-4.362844058012917,15.463571542897856 -475,6.0,4.0,-2.954020035961983,7.449267916773697 -475,6.0,5.0,-3.590210423980992,11.02611441072814 -475,6.0,6.0,6.544230459942975,-18.45668232750184 -475,7.0,7.0,1.4439790613954469,-4.519414658476248 -475,7.0,27.0,-1.4439790613954469,4.540814658476248 -475,8.0,5.0,0.0,4.915840805411357 -475,8.0,8.0,0.0,-18.706293706293707 -475,8.0,9.0,0.0,9.090909090909092 -475,8.0,10.0,0.0,4.807692307692308 -475,9.0,5.0,0.0,1.8561002591115965 -475,9.0,8.0,0.0,9.090909090909092 -475,9.0,9.0,13.462042814524237,-41.3837606675224 -475,9.0,16.0,-3.956039125715353,10.317447719844054 -475,9.0,19.0,-1.7848303152666305,3.98535828943083 -475,9.0,20.0,-5.101853820159654,10.98071411292983 -475,9.0,21.0,-2.619319553382597,5.400770303329455 -475,10.0,8.0,0.0,4.807692307692308 -475,10.0,10.0,0.0,-4.807692307692308 -475,11.0,3.0,0.0,4.191255364806866 -475,11.0,11.0,3.478565401119727,-18.326891794934408 -475,11.0,12.0,0.0,7.142857142857143 -475,11.0,13.0,-1.5265676088395577,3.1734252729654173 -475,11.0,15.0,-1.9519977922801688,4.104359379111847 -475,12.0,11.0,0.0,7.142857142857143 -475,12.0,12.0,0.0,-7.142857142857143 -475,13.0,11.0,-1.5265676088395577,3.1734252729654173 -475,13.0,13.0,4.01751987283902,-5.424299332335067 -475,13.0,14.0,-2.4909522639994623,2.250874059369649 -475,14.0,13.0,-2.4909522639994623,2.250874059369649 -475,14.0,14.0,6.270102363308326,-9.9143578677817 -475,14.0,17.0,-1.8108011504072024,3.687418931630696 -475,14.0,22.0,-1.9683489489016612,3.976064876781356 -475,15.0,11.0,-1.9519977922801688,4.104359379111847 -475,15.0,15.0,3.271064728633931,-8.94513365126506 -475,15.0,16.0,-1.3190669363537617,4.8407742721532125 -475,16.0,9.0,-3.956039125715353,10.317447719844054 -475,16.0,15.0,-1.3190669363537617,4.8407742721532125 -475,16.0,16.0,5.275106062069114,-15.158221991997266 -475,17.0,14.0,-1.8108011504072024,3.687418931630696 -475,17.0,17.0,4.886487584415919,-9.906177730909668 -475,17.0,18.0,-3.0756864340087167,6.218758799278971 -475,18.0,17.0,-3.0756864340087167,6.218758799278971 -475,18.0,18.0,8.958039375185187,-17.98346468163191 -475,18.0,19.0,-5.88235294117647,11.76470588235294 -475,19.0,9.0,-1.7848303152666305,3.98535828943083 -475,19.0,18.0,-5.88235294117647,11.76470588235294 -475,19.0,19.0,7.6671832564431,-15.75006417178377 -475,20.0,9.0,-5.101853820159654,10.98071411292983 -475,20.0,20.0,21.876495189895888,-45.10843276170355 -475,20.0,21.0,-16.774641369736234,34.127718648773715 -475,21.0,9.0,-2.619319553382597,5.400770303329455 -475,21.0,20.0,-16.774641369736234,34.127718648773715 -475,21.0,21.0,19.393960923118836,-39.52848895210317 -475,22.0,14.0,-1.9683489489016612,3.976064876781356 -475,22.0,22.0,3.429754555384988,-6.965303617315433 -475,22.0,23.0,-1.4614056064833263,2.989238740534077 -475,23.0,22.0,-1.4614056064833263,2.989238740534077 -475,23.0,23.0,2.771298550357576,-5.233860794239132 -475,23.0,24.0,-1.3098929438742493,2.287622053705056 -475,24.0,23.0,-1.3098929438742493,2.287622053705056 -475,24.0,24.0,4.495715080321987,-7.864978761969621 -475,24.0,25.0,-1.2165301194494855,1.8171440463475024 -475,24.0,26.0,-1.9692920169982515,3.760212661917064 -475,25.0,24.0,-1.2165301194494855,1.8171440463475024 -475,25.0,25.0,1.2165301194494855,-1.8171440463475024 -475,26.0,24.0,-1.9692920169982515,3.760212661917064 -475,26.0,26.0,3.652281470778589,-9.46044252232512 -475,26.0,27.0,0.0,2.608731947574922 -475,26.0,28.0,-0.99553355095268,1.881005840357816 -475,26.0,29.0,-0.6874559028276572,1.293971494797717 -475,27.0,5.0,-4.362844058012917,15.463571542897856 -475,27.0,7.0,-1.4439790613954469,4.540814658476248 -475,27.0,26.0,0.0,2.608731947574922 -475,27.0,27.0,5.806823119408364,-22.67145722159613 -475,28.0,26.0,-0.99553355095268,1.881005840357816 -475,28.0,28.0,1.9075867579849564,-3.604364401207048 -475,28.0,29.0,-0.9120532070322764,1.7233585608492326 -475,29.0,26.0,-0.6874559028276572,1.293971494797717 -475,29.0,28.0,-0.9120532070322764,1.7233585608492326 -475,29.0,29.0,1.5995091098599337,-3.0173300556469496 -476,0.0,0.0,1.5408698687669766,-5.611274830095233 -476,0.0,2.0,-1.5408698687669766,5.631674830095234 -476,1.0,1.0,2.841491104872905,-9.930558556537864 -476,1.0,3.0,-1.7055303166990268,5.1973792282565086 -476,1.0,4.0,-1.1359607881738778,4.772479328281356 -476,2.0,0.0,-1.5408698687669766,5.631674830095234 -476,2.0,2.0,9.736318911079088,-29.13794745915803 -476,2.0,3.0,-8.19544904231211,23.5308726290628 -476,3.0,1.0,-1.7055303166990268,5.1973792282565086 -476,3.0,2.0,-8.19544904231211,23.5308726290628 -476,3.0,3.0,16.314103089185693,-55.509410535254254 -476,3.0,5.0,-6.413123730174556,22.31120356548123 -476,3.0,11.0,0.0,4.191255364806866 -476,4.0,1.0,-1.1359607881738778,4.772479328281356 -476,4.0,4.0,4.089980824135861,-12.190647245055052 -476,4.0,6.0,-2.954020035961983,7.449267916773697 -476,5.0,3.0,-6.413123730174556,22.31120356548123 -476,5.0,5.0,20.655486388269097,-77.7313703704441 -476,5.0,6.0,-3.590210423980992,11.02611441072814 -476,5.0,7.0,-6.289308176100628,22.0125786163522 -476,5.0,8.0,0.0,4.915840805411357 -476,5.0,9.0,0.0,1.8561002591115965 -476,5.0,27.0,-4.362844058012917,15.463571542897856 -476,6.0,4.0,-2.954020035961983,7.449267916773697 -476,6.0,5.0,-3.590210423980992,11.02611441072814 -476,6.0,6.0,6.544230459942975,-18.45668232750184 -476,7.0,5.0,-6.289308176100628,22.0125786163522 -476,7.0,7.0,7.733287237496075,-26.527493274828448 -476,7.0,27.0,-1.4439790613954469,4.540814658476248 -476,8.0,5.0,0.0,4.915840805411357 -476,8.0,8.0,0.0,-18.706293706293707 -476,8.0,9.0,0.0,9.090909090909092 -476,8.0,10.0,0.0,4.807692307692308 -476,9.0,5.0,0.0,1.8561002591115965 -476,9.0,8.0,0.0,9.090909090909092 -476,9.0,9.0,13.462042814524237,-41.3837606675224 -476,9.0,16.0,-3.956039125715353,10.317447719844054 -476,9.0,19.0,-1.7848303152666305,3.98535828943083 -476,9.0,20.0,-5.101853820159654,10.98071411292983 -476,9.0,21.0,-2.619319553382597,5.400770303329455 -476,10.0,8.0,0.0,4.807692307692308 -476,10.0,10.0,0.0,-4.807692307692308 -476,11.0,3.0,0.0,4.191255364806866 -476,11.0,11.0,6.573961583776156,-24.424167659260668 -476,11.0,12.0,0.0,7.142857142857143 -476,11.0,13.0,-1.5265676088395577,3.1734252729654173 -476,11.0,14.0,-3.0953961826564296,6.097275864326261 -476,11.0,15.0,-1.9519977922801688,4.104359379111847 -476,12.0,11.0,0.0,7.142857142857143 -476,12.0,12.0,0.0,-7.142857142857143 -476,13.0,11.0,-1.5265676088395577,3.1734252729654173 -476,13.0,13.0,4.01751987283902,-5.424299332335067 -476,13.0,14.0,-2.4909522639994623,2.250874059369649 -476,14.0,11.0,-3.0953961826564296,6.097275864326261 -476,14.0,13.0,-2.4909522639994623,2.250874059369649 -476,14.0,14.0,7.554697395557554,-12.324214800477266 -476,14.0,22.0,-1.9683489489016612,3.976064876781356 -476,15.0,11.0,-1.9519977922801688,4.104359379111847 -476,15.0,15.0,3.271064728633931,-8.94513365126506 -476,15.0,16.0,-1.3190669363537617,4.8407742721532125 -476,16.0,9.0,-3.956039125715353,10.317447719844054 -476,16.0,15.0,-1.3190669363537617,4.8407742721532125 -476,16.0,16.0,5.275106062069114,-15.158221991997266 -476,17.0,17.0,3.0756864340087167,-6.218758799278971 -476,17.0,18.0,-3.0756864340087167,6.218758799278971 -476,18.0,17.0,-3.0756864340087167,6.218758799278971 -476,18.0,18.0,8.958039375185187,-17.98346468163191 -476,18.0,19.0,-5.88235294117647,11.76470588235294 -476,19.0,9.0,-1.7848303152666305,3.98535828943083 -476,19.0,18.0,-5.88235294117647,11.76470588235294 -476,19.0,19.0,7.6671832564431,-15.75006417178377 -476,20.0,9.0,-5.101853820159654,10.98071411292983 -476,20.0,20.0,21.876495189895888,-45.10843276170355 -476,20.0,21.0,-16.774641369736234,34.127718648773715 -476,21.0,9.0,-2.619319553382597,5.400770303329455 -476,21.0,20.0,-16.774641369736234,34.127718648773715 -476,21.0,21.0,21.93449907537439,-43.48289181517921 -476,21.0,23.0,-2.5405381522555563,3.95440286307604 -476,22.0,14.0,-1.9683489489016612,3.976064876781356 -476,22.0,22.0,3.429754555384988,-6.965303617315433 -476,22.0,23.0,-1.4614056064833263,2.989238740534077 -476,23.0,21.0,-2.5405381522555563,3.95440286307604 -476,23.0,22.0,-1.4614056064833263,2.989238740534077 -476,23.0,23.0,5.311836702613133,-9.188263657315172 -476,23.0,24.0,-1.3098929438742493,2.287622053705056 -476,24.0,23.0,-1.3098929438742493,2.287622053705056 -476,24.0,24.0,4.495715080321987,-7.864978761969621 -476,24.0,25.0,-1.2165301194494855,1.8171440463475024 -476,24.0,26.0,-1.9692920169982515,3.760212661917064 -476,25.0,24.0,-1.2165301194494855,1.8171440463475024 -476,25.0,25.0,1.2165301194494855,-1.8171440463475024 -476,26.0,24.0,-1.9692920169982515,3.760212661917064 -476,26.0,26.0,3.652281470778589,-9.46044252232512 -476,26.0,27.0,0.0,2.608731947574922 -476,26.0,28.0,-0.99553355095268,1.881005840357816 -476,26.0,29.0,-0.6874559028276572,1.293971494797717 -476,27.0,5.0,-4.362844058012917,15.463571542897856 -476,27.0,7.0,-1.4439790613954469,4.540814658476248 -476,27.0,26.0,0.0,2.608731947574922 -476,27.0,27.0,5.806823119408364,-22.67145722159613 -476,28.0,26.0,-0.99553355095268,1.881005840357816 -476,28.0,28.0,1.9075867579849564,-3.604364401207048 -476,28.0,29.0,-0.9120532070322764,1.7233585608492326 -476,29.0,26.0,-0.6874559028276572,1.293971494797717 -476,29.0,28.0,-0.9120532070322764,1.7233585608492326 -476,29.0,29.0,1.5995091098599337,-3.0173300556469496 -477,0.0,0.0,6.765516048652632,-21.23160167089863 -477,0.0,1.0,-5.224646179885656,15.646726840803398 -477,0.0,2.0,-1.5408698687669766,5.631674830095234 -477,1.0,0.0,-5.224646179885656,15.646726840803398 -477,1.0,1.0,9.75228216552403,-30.648662892676068 -477,1.0,3.0,-1.7055303166990268,5.1973792282565086 -477,1.0,4.0,-1.1359607881738778,4.772479328281356 -477,1.0,5.0,-1.6861448807654689,5.116477495334806 -477,2.0,0.0,-1.5408698687669766,5.631674830095234 -477,2.0,2.0,9.736318911079088,-29.13794745915803 -477,2.0,3.0,-8.19544904231211,23.5308726290628 -477,3.0,1.0,-1.7055303166990268,5.1973792282565086 -477,3.0,2.0,-8.19544904231211,23.5308726290628 -477,3.0,3.0,16.314103089185693,-55.509410535254254 -477,3.0,5.0,-6.413123730174556,22.31120356548123 -477,3.0,11.0,0.0,4.191255364806866 -477,4.0,1.0,-1.1359607881738778,4.772479328281356 -477,4.0,4.0,4.089980824135861,-12.190647245055052 -477,4.0,6.0,-2.954020035961983,7.449267916773697 -477,5.0,1.0,-1.6861448807654689,5.116477495334806 -477,5.0,3.0,-6.413123730174556,22.31120356548123 -477,5.0,5.0,22.341631269034565,-82.8291478657789 -477,5.0,6.0,-3.590210423980992,11.02611441072814 -477,5.0,7.0,-6.289308176100628,22.0125786163522 -477,5.0,8.0,0.0,4.915840805411357 -477,5.0,9.0,0.0,1.8561002591115965 -477,5.0,27.0,-4.362844058012917,15.463571542897856 -477,6.0,4.0,-2.954020035961983,7.449267916773697 -477,6.0,5.0,-3.590210423980992,11.02611441072814 -477,6.0,6.0,6.544230459942975,-18.45668232750184 -477,7.0,5.0,-6.289308176100628,22.0125786163522 -477,7.0,7.0,7.733287237496075,-26.527493274828448 -477,7.0,27.0,-1.4439790613954469,4.540814658476248 -477,8.0,5.0,0.0,4.915840805411357 -477,8.0,8.0,0.0,-18.706293706293707 -477,8.0,9.0,0.0,9.090909090909092 -477,8.0,10.0,0.0,4.807692307692308 -477,9.0,5.0,0.0,1.8561002591115965 -477,9.0,8.0,0.0,9.090909090909092 -477,9.0,9.0,13.462042814524237,-41.3837606675224 -477,9.0,16.0,-3.956039125715353,10.317447719844054 -477,9.0,19.0,-1.7848303152666305,3.98535828943083 -477,9.0,20.0,-5.101853820159654,10.98071411292983 -477,9.0,21.0,-2.619319553382597,5.400770303329455 -477,10.0,8.0,0.0,4.807692307692308 -477,10.0,10.0,0.0,-4.807692307692308 -477,11.0,3.0,0.0,4.191255364806866 -477,11.0,11.0,6.573961583776156,-24.424167659260668 -477,11.0,12.0,0.0,7.142857142857143 -477,11.0,13.0,-1.5265676088395577,3.1734252729654173 -477,11.0,14.0,-3.0953961826564296,6.097275864326261 -477,11.0,15.0,-1.9519977922801688,4.104359379111847 -477,12.0,11.0,0.0,7.142857142857143 -477,12.0,12.0,0.0,-7.142857142857143 -477,13.0,11.0,-1.5265676088395577,3.1734252729654173 -477,13.0,13.0,4.01751987283902,-5.424299332335067 -477,13.0,14.0,-2.4909522639994623,2.250874059369649 -477,14.0,11.0,-3.0953961826564296,6.097275864326261 -477,14.0,13.0,-2.4909522639994623,2.250874059369649 -477,14.0,14.0,9.365498545964757,-16.01163373210796 -477,14.0,17.0,-1.8108011504072024,3.687418931630696 -477,14.0,22.0,-1.9683489489016612,3.976064876781356 -477,15.0,11.0,-1.9519977922801688,4.104359379111847 -477,15.0,15.0,3.271064728633931,-8.94513365126506 -477,15.0,16.0,-1.3190669363537617,4.8407742721532125 -477,16.0,9.0,-3.956039125715353,10.317447719844054 -477,16.0,15.0,-1.3190669363537617,4.8407742721532125 -477,16.0,16.0,5.275106062069114,-15.158221991997266 -477,17.0,14.0,-1.8108011504072024,3.687418931630696 -477,17.0,17.0,4.886487584415919,-9.906177730909668 -477,17.0,18.0,-3.0756864340087167,6.218758799278971 -477,18.0,17.0,-3.0756864340087167,6.218758799278971 -477,18.0,18.0,8.958039375185187,-17.98346468163191 -477,18.0,19.0,-5.88235294117647,11.76470588235294 -477,19.0,9.0,-1.7848303152666305,3.98535828943083 -477,19.0,18.0,-5.88235294117647,11.76470588235294 -477,19.0,19.0,7.6671832564431,-15.75006417178377 -477,20.0,9.0,-5.101853820159654,10.98071411292983 -477,20.0,20.0,21.876495189895888,-45.10843276170355 -477,20.0,21.0,-16.774641369736234,34.127718648773715 -477,21.0,9.0,-2.619319553382597,5.400770303329455 -477,21.0,20.0,-16.774641369736234,34.127718648773715 -477,21.0,21.0,21.93449907537439,-43.48289181517921 -477,21.0,23.0,-2.5405381522555563,3.95440286307604 -477,22.0,14.0,-1.9683489489016612,3.976064876781356 -477,22.0,22.0,3.429754555384988,-6.965303617315433 -477,22.0,23.0,-1.4614056064833263,2.989238740534077 -477,23.0,21.0,-2.5405381522555563,3.95440286307604 -477,23.0,22.0,-1.4614056064833263,2.989238740534077 -477,23.0,23.0,5.311836702613133,-9.188263657315172 -477,23.0,24.0,-1.3098929438742493,2.287622053705056 -477,24.0,23.0,-1.3098929438742493,2.287622053705056 -477,24.0,24.0,4.495715080321987,-7.864978761969621 -477,24.0,25.0,-1.2165301194494855,1.8171440463475024 -477,24.0,26.0,-1.9692920169982515,3.760212661917064 -477,25.0,24.0,-1.2165301194494855,1.8171440463475024 -477,25.0,25.0,1.2165301194494855,-1.8171440463475024 -477,26.0,24.0,-1.9692920169982515,3.760212661917064 -477,26.0,26.0,3.652281470778589,-9.46044252232512 -477,26.0,27.0,0.0,2.608731947574922 -477,26.0,28.0,-0.99553355095268,1.881005840357816 -477,26.0,29.0,-0.6874559028276572,1.293971494797717 -477,27.0,5.0,-4.362844058012917,15.463571542897856 -477,27.0,7.0,-1.4439790613954469,4.540814658476248 -477,27.0,26.0,0.0,2.608731947574922 -477,27.0,27.0,5.806823119408364,-22.67145722159613 -477,28.0,26.0,-0.99553355095268,1.881005840357816 -477,28.0,28.0,1.9075867579849564,-3.604364401207048 -477,28.0,29.0,-0.9120532070322764,1.7233585608492326 -477,29.0,26.0,-0.6874559028276572,1.293971494797717 -477,29.0,28.0,-0.9120532070322764,1.7233585608492326 -477,29.0,29.0,1.5995091098599337,-3.0173300556469496 -478,0.0,0.0,6.765516048652632,-21.23160167089863 -478,0.0,1.0,-5.224646179885656,15.646726840803398 -478,0.0,2.0,-1.5408698687669766,5.631674830095234 -478,1.0,0.0,-5.224646179885656,15.646726840803398 -478,1.0,1.0,9.75228216552403,-30.648662892676068 -478,1.0,3.0,-1.7055303166990268,5.1973792282565086 -478,1.0,4.0,-1.1359607881738778,4.772479328281356 -478,1.0,5.0,-1.6861448807654689,5.116477495334806 -478,2.0,0.0,-1.5408698687669766,5.631674830095234 -478,2.0,2.0,9.736318911079088,-29.13794745915803 -478,2.0,3.0,-8.19544904231211,23.5308726290628 -478,3.0,1.0,-1.7055303166990268,5.1973792282565086 -478,3.0,2.0,-8.19544904231211,23.5308726290628 -478,3.0,3.0,16.314103089185693,-55.509410535254254 -478,3.0,5.0,-6.413123730174556,22.31120356548123 -478,3.0,11.0,0.0,4.191255364806866 -478,4.0,1.0,-1.1359607881738778,4.772479328281356 -478,4.0,4.0,4.089980824135861,-12.190647245055052 -478,4.0,6.0,-2.954020035961983,7.449267916773697 -478,5.0,1.0,-1.6861448807654689,5.116477495334806 -478,5.0,3.0,-6.413123730174556,22.31120356548123 -478,5.0,5.0,22.341631269034565,-82.8291478657789 -478,5.0,6.0,-3.590210423980992,11.02611441072814 -478,5.0,7.0,-6.289308176100628,22.0125786163522 -478,5.0,8.0,0.0,4.915840805411357 -478,5.0,9.0,0.0,1.8561002591115965 -478,5.0,27.0,-4.362844058012917,15.463571542897856 -478,6.0,4.0,-2.954020035961983,7.449267916773697 -478,6.0,5.0,-3.590210423980992,11.02611441072814 -478,6.0,6.0,6.544230459942975,-18.45668232750184 -478,7.0,5.0,-6.289308176100628,22.0125786163522 -478,7.0,7.0,7.733287237496075,-26.527493274828448 -478,7.0,27.0,-1.4439790613954469,4.540814658476248 -478,8.0,5.0,0.0,4.915840805411357 -478,8.0,8.0,0.0,-18.706293706293707 -478,8.0,9.0,0.0,9.090909090909092 -478,8.0,10.0,0.0,4.807692307692308 -478,9.0,5.0,0.0,1.8561002591115965 -478,9.0,8.0,0.0,9.090909090909092 -478,9.0,9.0,13.462042814524237,-41.3837606675224 -478,9.0,16.0,-3.956039125715353,10.317447719844054 -478,9.0,19.0,-1.7848303152666305,3.98535828943083 -478,9.0,20.0,-5.101853820159654,10.98071411292983 -478,9.0,21.0,-2.619319553382597,5.400770303329455 -478,10.0,8.0,0.0,4.807692307692308 -478,10.0,10.0,0.0,-4.807692307692308 -478,11.0,3.0,0.0,4.191255364806866 -478,11.0,11.0,6.573961583776156,-24.424167659260668 -478,11.0,12.0,0.0,7.142857142857143 -478,11.0,13.0,-1.5265676088395577,3.1734252729654173 -478,11.0,14.0,-3.0953961826564296,6.097275864326261 -478,11.0,15.0,-1.9519977922801688,4.104359379111847 -478,12.0,11.0,0.0,7.142857142857143 -478,12.0,12.0,0.0,-7.142857142857143 -478,13.0,11.0,-1.5265676088395577,3.1734252729654173 -478,13.0,13.0,4.01751987283902,-5.424299332335067 -478,13.0,14.0,-2.4909522639994623,2.250874059369649 -478,14.0,11.0,-3.0953961826564296,6.097275864326261 -478,14.0,13.0,-2.4909522639994623,2.250874059369649 -478,14.0,14.0,9.365498545964757,-16.01163373210796 -478,14.0,17.0,-1.8108011504072024,3.687418931630696 -478,14.0,22.0,-1.9683489489016612,3.976064876781356 -478,15.0,11.0,-1.9519977922801688,4.104359379111847 -478,15.0,15.0,3.271064728633931,-8.94513365126506 -478,15.0,16.0,-1.3190669363537617,4.8407742721532125 -478,16.0,9.0,-3.956039125715353,10.317447719844054 -478,16.0,15.0,-1.3190669363537617,4.8407742721532125 -478,16.0,16.0,5.275106062069114,-15.158221991997266 -478,17.0,14.0,-1.8108011504072024,3.687418931630696 -478,17.0,17.0,4.886487584415919,-9.906177730909668 -478,17.0,18.0,-3.0756864340087167,6.218758799278971 -478,18.0,17.0,-3.0756864340087167,6.218758799278971 -478,18.0,18.0,8.958039375185187,-17.98346468163191 -478,18.0,19.0,-5.88235294117647,11.76470588235294 -478,19.0,9.0,-1.7848303152666305,3.98535828943083 -478,19.0,18.0,-5.88235294117647,11.76470588235294 -478,19.0,19.0,7.6671832564431,-15.75006417178377 -478,20.0,9.0,-5.101853820159654,10.98071411292983 -478,20.0,20.0,21.876495189895888,-45.10843276170355 -478,20.0,21.0,-16.774641369736234,34.127718648773715 -478,21.0,9.0,-2.619319553382597,5.400770303329455 -478,21.0,20.0,-16.774641369736234,34.127718648773715 -478,21.0,21.0,21.93449907537439,-43.48289181517921 -478,21.0,23.0,-2.5405381522555563,3.95440286307604 -478,22.0,14.0,-1.9683489489016612,3.976064876781356 -478,22.0,22.0,3.429754555384988,-6.965303617315433 -478,22.0,23.0,-1.4614056064833263,2.989238740534077 -478,23.0,21.0,-2.5405381522555563,3.95440286307604 -478,23.0,22.0,-1.4614056064833263,2.989238740534077 -478,23.0,23.0,5.311836702613133,-9.188263657315172 -478,23.0,24.0,-1.3098929438742493,2.287622053705056 -478,24.0,23.0,-1.3098929438742493,2.287622053705056 -478,24.0,24.0,4.495715080321987,-7.864978761969621 -478,24.0,25.0,-1.2165301194494855,1.8171440463475024 -478,24.0,26.0,-1.9692920169982515,3.760212661917064 -478,25.0,24.0,-1.2165301194494855,1.8171440463475024 -478,25.0,25.0,1.2165301194494855,-1.8171440463475024 -478,26.0,24.0,-1.9692920169982515,3.760212661917064 -478,26.0,26.0,3.652281470778589,-9.46044252232512 -478,26.0,27.0,0.0,2.608731947574922 -478,26.0,28.0,-0.99553355095268,1.881005840357816 -478,26.0,29.0,-0.6874559028276572,1.293971494797717 -478,27.0,5.0,-4.362844058012917,15.463571542897856 -478,27.0,7.0,-1.4439790613954469,4.540814658476248 -478,27.0,26.0,0.0,2.608731947574922 -478,27.0,27.0,5.806823119408364,-22.67145722159613 -478,28.0,26.0,-0.99553355095268,1.881005840357816 -478,28.0,28.0,1.9075867579849564,-3.604364401207048 -478,28.0,29.0,-0.9120532070322764,1.7233585608492326 -478,29.0,26.0,-0.6874559028276572,1.293971494797717 -478,29.0,28.0,-0.9120532070322764,1.7233585608492326 -478,29.0,29.0,1.5995091098599337,-3.0173300556469496 -479,0.0,0.0,6.765516048652632,-21.23160167089863 -479,0.0,1.0,-5.224646179885656,15.646726840803398 -479,0.0,2.0,-1.5408698687669766,5.631674830095234 -479,1.0,0.0,-5.224646179885656,15.646726840803398 -479,1.0,1.0,9.75228216552403,-30.648662892676068 -479,1.0,3.0,-1.7055303166990268,5.1973792282565086 -479,1.0,4.0,-1.1359607881738778,4.772479328281356 -479,1.0,5.0,-1.6861448807654689,5.116477495334806 -479,2.0,0.0,-1.5408698687669766,5.631674830095234 -479,2.0,2.0,9.736318911079088,-29.13794745915803 -479,2.0,3.0,-8.19544904231211,23.5308726290628 -479,3.0,1.0,-1.7055303166990268,5.1973792282565086 -479,3.0,2.0,-8.19544904231211,23.5308726290628 -479,3.0,3.0,16.314103089185693,-55.509410535254254 -479,3.0,5.0,-6.413123730174556,22.31120356548123 -479,3.0,11.0,0.0,4.191255364806866 -479,4.0,1.0,-1.1359607881738778,4.772479328281356 -479,4.0,4.0,1.1359607881738778,-4.751579328281355 -479,5.0,1.0,-1.6861448807654689,5.116477495334806 -479,5.0,3.0,-6.413123730174556,22.31120356548123 -479,5.0,5.0,22.341631269034565,-82.8291478657789 -479,5.0,6.0,-3.590210423980992,11.02611441072814 -479,5.0,7.0,-6.289308176100628,22.0125786163522 -479,5.0,8.0,0.0,4.915840805411357 -479,5.0,9.0,0.0,1.8561002591115965 -479,5.0,27.0,-4.362844058012917,15.463571542897856 -479,6.0,5.0,-3.590210423980992,11.02611441072814 -479,6.0,6.0,3.590210423980992,-11.01761441072814 -479,7.0,5.0,-6.289308176100628,22.0125786163522 -479,7.0,7.0,7.733287237496075,-26.527493274828448 -479,7.0,27.0,-1.4439790613954469,4.540814658476248 -479,8.0,5.0,0.0,4.915840805411357 -479,8.0,8.0,0.0,-9.615384615384617 -479,8.0,10.0,0.0,4.807692307692308 -479,9.0,5.0,0.0,1.8561002591115965 -479,9.0,9.0,13.462042814524237,-32.29285157661331 -479,9.0,16.0,-3.956039125715353,10.317447719844054 -479,9.0,19.0,-1.7848303152666305,3.98535828943083 -479,9.0,20.0,-5.101853820159654,10.98071411292983 -479,9.0,21.0,-2.619319553382597,5.400770303329455 -479,10.0,8.0,0.0,4.807692307692308 -479,10.0,10.0,0.0,-4.807692307692308 -479,11.0,3.0,0.0,4.191255364806866 -479,11.0,11.0,6.573961583776156,-24.424167659260668 -479,11.0,12.0,0.0,7.142857142857143 -479,11.0,13.0,-1.5265676088395577,3.1734252729654173 -479,11.0,14.0,-3.0953961826564296,6.097275864326261 -479,11.0,15.0,-1.9519977922801688,4.104359379111847 -479,12.0,11.0,0.0,7.142857142857143 -479,12.0,12.0,0.0,-7.142857142857143 -479,13.0,11.0,-1.5265676088395577,3.1734252729654173 -479,13.0,13.0,4.01751987283902,-5.424299332335067 -479,13.0,14.0,-2.4909522639994623,2.250874059369649 -479,14.0,11.0,-3.0953961826564296,6.097275864326261 -479,14.0,13.0,-2.4909522639994623,2.250874059369649 -479,14.0,14.0,9.365498545964757,-16.01163373210796 -479,14.0,17.0,-1.8108011504072024,3.687418931630696 -479,14.0,22.0,-1.9683489489016612,3.976064876781356 -479,15.0,11.0,-1.9519977922801688,4.104359379111847 -479,15.0,15.0,1.9519977922801688,-4.104359379111847 -479,16.0,9.0,-3.956039125715353,10.317447719844054 -479,16.0,16.0,3.956039125715353,-10.317447719844054 -479,17.0,14.0,-1.8108011504072024,3.687418931630696 -479,17.0,17.0,4.886487584415919,-9.906177730909668 -479,17.0,18.0,-3.0756864340087167,6.218758799278971 -479,18.0,17.0,-3.0756864340087167,6.218758799278971 -479,18.0,18.0,8.958039375185187,-17.98346468163191 -479,18.0,19.0,-5.88235294117647,11.76470588235294 -479,19.0,9.0,-1.7848303152666305,3.98535828943083 -479,19.0,18.0,-5.88235294117647,11.76470588235294 -479,19.0,19.0,7.6671832564431,-15.75006417178377 -479,20.0,9.0,-5.101853820159654,10.98071411292983 -479,20.0,20.0,21.876495189895888,-45.10843276170355 -479,20.0,21.0,-16.774641369736234,34.127718648773715 -479,21.0,9.0,-2.619319553382597,5.400770303329455 -479,21.0,20.0,-16.774641369736234,34.127718648773715 -479,21.0,21.0,21.93449907537439,-43.48289181517921 -479,21.0,23.0,-2.5405381522555563,3.95440286307604 -479,22.0,14.0,-1.9683489489016612,3.976064876781356 -479,22.0,22.0,3.429754555384988,-6.965303617315433 -479,22.0,23.0,-1.4614056064833263,2.989238740534077 -479,23.0,21.0,-2.5405381522555563,3.95440286307604 -479,23.0,22.0,-1.4614056064833263,2.989238740534077 -479,23.0,23.0,5.311836702613133,-9.188263657315172 -479,23.0,24.0,-1.3098929438742493,2.287622053705056 -479,24.0,23.0,-1.3098929438742493,2.287622053705056 -479,24.0,24.0,4.495715080321987,-7.864978761969621 -479,24.0,25.0,-1.2165301194494855,1.8171440463475024 -479,24.0,26.0,-1.9692920169982515,3.760212661917064 -479,25.0,24.0,-1.2165301194494855,1.8171440463475024 -479,25.0,25.0,1.2165301194494855,-1.8171440463475024 -479,26.0,24.0,-1.9692920169982515,3.760212661917064 -479,26.0,26.0,3.652281470778589,-9.46044252232512 -479,26.0,27.0,0.0,2.608731947574922 -479,26.0,28.0,-0.99553355095268,1.881005840357816 -479,26.0,29.0,-0.6874559028276572,1.293971494797717 -479,27.0,5.0,-4.362844058012917,15.463571542897856 -479,27.0,7.0,-1.4439790613954469,4.540814658476248 -479,27.0,26.0,0.0,2.608731947574922 -479,27.0,27.0,5.806823119408364,-22.67145722159613 -479,28.0,26.0,-0.99553355095268,1.881005840357816 -479,28.0,28.0,1.9075867579849564,-3.604364401207048 -479,28.0,29.0,-0.9120532070322764,1.7233585608492326 -479,29.0,26.0,-0.6874559028276572,1.293971494797717 -479,29.0,28.0,-0.9120532070322764,1.7233585608492326 -479,29.0,29.0,1.5995091098599337,-3.0173300556469496 -480,0.0,0.0,6.765516048652632,-21.23160167089863 -480,0.0,1.0,-5.224646179885656,15.646726840803398 -480,0.0,2.0,-1.5408698687669766,5.631674830095234 -480,1.0,0.0,-5.224646179885656,15.646726840803398 -480,1.0,1.0,8.066137284758561,-25.55088539734126 -480,1.0,3.0,-1.7055303166990268,5.1973792282565086 -480,1.0,4.0,-1.1359607881738778,4.772479328281356 -480,2.0,0.0,-1.5408698687669766,5.631674830095234 -480,2.0,2.0,9.736318911079088,-29.13794745915803 -480,2.0,3.0,-8.19544904231211,23.5308726290628 -480,3.0,1.0,-1.7055303166990268,5.1973792282565086 -480,3.0,2.0,-8.19544904231211,23.5308726290628 -480,3.0,3.0,16.314103089185693,-55.509410535254254 -480,3.0,5.0,-6.413123730174556,22.31120356548123 -480,3.0,11.0,0.0,4.191255364806866 -480,4.0,1.0,-1.1359607881738778,4.772479328281356 -480,4.0,4.0,4.089980824135861,-12.190647245055052 -480,4.0,6.0,-2.954020035961983,7.449267916773697 -480,5.0,3.0,-6.413123730174556,22.31120356548123 -480,5.0,5.0,20.655486388269097,-77.7313703704441 -480,5.0,6.0,-3.590210423980992,11.02611441072814 -480,5.0,7.0,-6.289308176100628,22.0125786163522 -480,5.0,8.0,0.0,4.915840805411357 -480,5.0,9.0,0.0,1.8561002591115965 -480,5.0,27.0,-4.362844058012917,15.463571542897856 -480,6.0,4.0,-2.954020035961983,7.449267916773697 -480,6.0,5.0,-3.590210423980992,11.02611441072814 -480,6.0,6.0,6.544230459942975,-18.45668232750184 -480,7.0,5.0,-6.289308176100628,22.0125786163522 -480,7.0,7.0,7.733287237496075,-26.527493274828448 -480,7.0,27.0,-1.4439790613954469,4.540814658476248 -480,8.0,5.0,0.0,4.915840805411357 -480,8.0,8.0,0.0,-18.706293706293707 -480,8.0,9.0,0.0,9.090909090909092 -480,8.0,10.0,0.0,4.807692307692308 -480,9.0,5.0,0.0,1.8561002591115965 -480,9.0,8.0,0.0,9.090909090909092 -480,9.0,9.0,9.506003688808882,-31.06631294767834 -480,9.0,19.0,-1.7848303152666305,3.98535828943083 -480,9.0,20.0,-5.101853820159654,10.98071411292983 -480,9.0,21.0,-2.619319553382597,5.400770303329455 -480,10.0,8.0,0.0,4.807692307692308 -480,10.0,10.0,0.0,-4.807692307692308 -480,11.0,3.0,0.0,4.191255364806866 -480,11.0,11.0,6.573961583776156,-24.424167659260668 -480,11.0,12.0,0.0,7.142857142857143 -480,11.0,13.0,-1.5265676088395577,3.1734252729654173 -480,11.0,14.0,-3.0953961826564296,6.097275864326261 -480,11.0,15.0,-1.9519977922801688,4.104359379111847 -480,12.0,11.0,0.0,7.142857142857143 -480,12.0,12.0,0.0,-7.142857142857143 -480,13.0,11.0,-1.5265676088395577,3.1734252729654173 -480,13.0,13.0,4.01751987283902,-5.424299332335067 -480,13.0,14.0,-2.4909522639994623,2.250874059369649 -480,14.0,11.0,-3.0953961826564296,6.097275864326261 -480,14.0,13.0,-2.4909522639994623,2.250874059369649 -480,14.0,14.0,7.397149597063095,-12.035568855326606 -480,14.0,17.0,-1.8108011504072024,3.687418931630696 -480,15.0,11.0,-1.9519977922801688,4.104359379111847 -480,15.0,15.0,3.271064728633931,-8.94513365126506 -480,15.0,16.0,-1.3190669363537617,4.8407742721532125 -480,16.0,15.0,-1.3190669363537617,4.8407742721532125 -480,16.0,16.0,1.3190669363537617,-4.8407742721532125 -480,17.0,14.0,-1.8108011504072024,3.687418931630696 -480,17.0,17.0,4.886487584415919,-9.906177730909668 -480,17.0,18.0,-3.0756864340087167,6.218758799278971 -480,18.0,17.0,-3.0756864340087167,6.218758799278971 -480,18.0,18.0,8.958039375185187,-17.98346468163191 -480,18.0,19.0,-5.88235294117647,11.76470588235294 -480,19.0,9.0,-1.7848303152666305,3.98535828943083 -480,19.0,18.0,-5.88235294117647,11.76470588235294 -480,19.0,19.0,7.6671832564431,-15.75006417178377 -480,20.0,9.0,-5.101853820159654,10.98071411292983 -480,20.0,20.0,21.876495189895888,-45.10843276170355 -480,20.0,21.0,-16.774641369736234,34.127718648773715 -480,21.0,9.0,-2.619319553382597,5.400770303329455 -480,21.0,20.0,-16.774641369736234,34.127718648773715 -480,21.0,21.0,21.93449907537439,-43.48289181517921 -480,21.0,23.0,-2.5405381522555563,3.95440286307604 -480,22.0,22.0,1.4614056064833263,-2.989238740534077 -480,22.0,23.0,-1.4614056064833263,2.989238740534077 -480,23.0,21.0,-2.5405381522555563,3.95440286307604 -480,23.0,22.0,-1.4614056064833263,2.989238740534077 -480,23.0,23.0,5.311836702613133,-9.188263657315172 -480,23.0,24.0,-1.3098929438742493,2.287622053705056 -480,24.0,23.0,-1.3098929438742493,2.287622053705056 -480,24.0,24.0,4.495715080321987,-7.864978761969621 -480,24.0,25.0,-1.2165301194494855,1.8171440463475024 -480,24.0,26.0,-1.9692920169982515,3.760212661917064 -480,25.0,24.0,-1.2165301194494855,1.8171440463475024 -480,25.0,25.0,1.2165301194494855,-1.8171440463475024 -480,26.0,24.0,-1.9692920169982515,3.760212661917064 -480,26.0,26.0,3.652281470778589,-9.46044252232512 -480,26.0,27.0,0.0,2.608731947574922 -480,26.0,28.0,-0.99553355095268,1.881005840357816 -480,26.0,29.0,-0.6874559028276572,1.293971494797717 -480,27.0,5.0,-4.362844058012917,15.463571542897856 -480,27.0,7.0,-1.4439790613954469,4.540814658476248 -480,27.0,26.0,0.0,2.608731947574922 -480,27.0,27.0,5.806823119408364,-22.67145722159613 -480,28.0,26.0,-0.99553355095268,1.881005840357816 -480,28.0,28.0,1.9075867579849564,-3.604364401207048 -480,28.0,29.0,-0.9120532070322764,1.7233585608492326 -480,29.0,26.0,-0.6874559028276572,1.293971494797717 -480,29.0,28.0,-0.9120532070322764,1.7233585608492326 -480,29.0,29.0,1.5995091098599337,-3.0173300556469496 -481,0.0,0.0,6.765516048652632,-21.23160167089863 -481,0.0,1.0,-5.224646179885656,15.646726840803398 -481,0.0,2.0,-1.5408698687669766,5.631674830095234 -481,1.0,0.0,-5.224646179885656,15.646726840803398 -481,1.0,1.0,9.75228216552403,-30.648662892676068 -481,1.0,3.0,-1.7055303166990268,5.1973792282565086 -481,1.0,4.0,-1.1359607881738778,4.772479328281356 -481,1.0,5.0,-1.6861448807654689,5.116477495334806 -481,2.0,0.0,-1.5408698687669766,5.631674830095234 -481,2.0,2.0,9.736318911079088,-29.13794745915803 -481,2.0,3.0,-8.19544904231211,23.5308726290628 -481,3.0,1.0,-1.7055303166990268,5.1973792282565086 -481,3.0,2.0,-8.19544904231211,23.5308726290628 -481,3.0,3.0,16.314103089185693,-55.509410535254254 -481,3.0,5.0,-6.413123730174556,22.31120356548123 -481,3.0,11.0,0.0,4.191255364806866 -481,4.0,1.0,-1.1359607881738778,4.772479328281356 -481,4.0,4.0,4.089980824135861,-12.190647245055052 -481,4.0,6.0,-2.954020035961983,7.449267916773697 -481,5.0,1.0,-1.6861448807654689,5.116477495334806 -481,5.0,3.0,-6.413123730174556,22.31120356548123 -481,5.0,5.0,22.341631269034565,-82.8291478657789 -481,5.0,6.0,-3.590210423980992,11.02611441072814 -481,5.0,7.0,-6.289308176100628,22.0125786163522 -481,5.0,8.0,0.0,4.915840805411357 -481,5.0,9.0,0.0,1.8561002591115965 -481,5.0,27.0,-4.362844058012917,15.463571542897856 -481,6.0,4.0,-2.954020035961983,7.449267916773697 -481,6.0,5.0,-3.590210423980992,11.02611441072814 -481,6.0,6.0,6.544230459942975,-18.45668232750184 -481,7.0,5.0,-6.289308176100628,22.0125786163522 -481,7.0,7.0,7.733287237496075,-26.527493274828448 -481,7.0,27.0,-1.4439790613954469,4.540814658476248 -481,8.0,5.0,0.0,4.915840805411357 -481,8.0,8.0,0.0,-18.706293706293707 -481,8.0,9.0,0.0,9.090909090909092 -481,8.0,10.0,0.0,4.807692307692308 -481,9.0,5.0,0.0,1.8561002591115965 -481,9.0,8.0,0.0,9.090909090909092 -481,9.0,9.0,13.462042814524237,-41.3837606675224 -481,9.0,16.0,-3.956039125715353,10.317447719844054 -481,9.0,19.0,-1.7848303152666305,3.98535828943083 -481,9.0,20.0,-5.101853820159654,10.98071411292983 -481,9.0,21.0,-2.619319553382597,5.400770303329455 -481,10.0,8.0,0.0,4.807692307692308 -481,10.0,10.0,0.0,-4.807692307692308 -481,11.0,3.0,0.0,4.191255364806866 -481,11.0,11.0,6.573961583776156,-24.424167659260668 -481,11.0,12.0,0.0,7.142857142857143 -481,11.0,13.0,-1.5265676088395577,3.1734252729654173 -481,11.0,14.0,-3.0953961826564296,6.097275864326261 -481,11.0,15.0,-1.9519977922801688,4.104359379111847 -481,12.0,11.0,0.0,7.142857142857143 -481,12.0,12.0,0.0,-7.142857142857143 -481,13.0,11.0,-1.5265676088395577,3.1734252729654173 -481,13.0,13.0,4.01751987283902,-5.424299332335067 -481,13.0,14.0,-2.4909522639994623,2.250874059369649 -481,14.0,11.0,-3.0953961826564296,6.097275864326261 -481,14.0,13.0,-2.4909522639994623,2.250874059369649 -481,14.0,14.0,9.365498545964757,-16.01163373210796 -481,14.0,17.0,-1.8108011504072024,3.687418931630696 -481,14.0,22.0,-1.9683489489016612,3.976064876781356 -481,15.0,11.0,-1.9519977922801688,4.104359379111847 -481,15.0,15.0,3.271064728633931,-8.94513365126506 -481,15.0,16.0,-1.3190669363537617,4.8407742721532125 -481,16.0,9.0,-3.956039125715353,10.317447719844054 -481,16.0,15.0,-1.3190669363537617,4.8407742721532125 -481,16.0,16.0,5.275106062069114,-15.158221991997266 -481,17.0,14.0,-1.8108011504072024,3.687418931630696 -481,17.0,17.0,1.8108011504072024,-3.687418931630696 -481,18.0,18.0,5.88235294117647,-11.76470588235294 -481,18.0,19.0,-5.88235294117647,11.76470588235294 -481,19.0,9.0,-1.7848303152666305,3.98535828943083 -481,19.0,18.0,-5.88235294117647,11.76470588235294 -481,19.0,19.0,7.6671832564431,-15.75006417178377 -481,20.0,9.0,-5.101853820159654,10.98071411292983 -481,20.0,20.0,21.876495189895888,-45.10843276170355 -481,20.0,21.0,-16.774641369736234,34.127718648773715 -481,21.0,9.0,-2.619319553382597,5.400770303329455 -481,21.0,20.0,-16.774641369736234,34.127718648773715 -481,21.0,21.0,21.93449907537439,-43.48289181517921 -481,21.0,23.0,-2.5405381522555563,3.95440286307604 -481,22.0,14.0,-1.9683489489016612,3.976064876781356 -481,22.0,22.0,3.429754555384988,-6.965303617315433 -481,22.0,23.0,-1.4614056064833263,2.989238740534077 -481,23.0,21.0,-2.5405381522555563,3.95440286307604 -481,23.0,22.0,-1.4614056064833263,2.989238740534077 -481,23.0,23.0,5.311836702613133,-9.188263657315172 -481,23.0,24.0,-1.3098929438742493,2.287622053705056 -481,24.0,23.0,-1.3098929438742493,2.287622053705056 -481,24.0,24.0,4.495715080321987,-7.864978761969621 -481,24.0,25.0,-1.2165301194494855,1.8171440463475024 -481,24.0,26.0,-1.9692920169982515,3.760212661917064 -481,25.0,24.0,-1.2165301194494855,1.8171440463475024 -481,25.0,25.0,1.2165301194494855,-1.8171440463475024 -481,26.0,24.0,-1.9692920169982515,3.760212661917064 -481,26.0,26.0,3.652281470778589,-9.46044252232512 -481,26.0,27.0,0.0,2.608731947574922 -481,26.0,28.0,-0.99553355095268,1.881005840357816 -481,26.0,29.0,-0.6874559028276572,1.293971494797717 -481,27.0,5.0,-4.362844058012917,15.463571542897856 -481,27.0,7.0,-1.4439790613954469,4.540814658476248 -481,27.0,26.0,0.0,2.608731947574922 -481,27.0,27.0,5.806823119408364,-22.67145722159613 -481,28.0,26.0,-0.99553355095268,1.881005840357816 -481,28.0,28.0,1.9075867579849564,-3.604364401207048 -481,28.0,29.0,-0.9120532070322764,1.7233585608492326 -481,29.0,26.0,-0.6874559028276572,1.293971494797717 -481,29.0,28.0,-0.9120532070322764,1.7233585608492326 -481,29.0,29.0,1.5995091098599337,-3.0173300556469496 -482,0.0,0.0,6.765516048652632,-21.23160167089863 -482,0.0,1.0,-5.224646179885656,15.646726840803398 -482,0.0,2.0,-1.5408698687669766,5.631674830095234 -482,1.0,0.0,-5.224646179885656,15.646726840803398 -482,1.0,1.0,9.75228216552403,-30.648662892676068 -482,1.0,3.0,-1.7055303166990268,5.1973792282565086 -482,1.0,4.0,-1.1359607881738778,4.772479328281356 -482,1.0,5.0,-1.6861448807654689,5.116477495334806 -482,2.0,0.0,-1.5408698687669766,5.631674830095234 -482,2.0,2.0,9.736318911079088,-29.13794745915803 -482,2.0,3.0,-8.19544904231211,23.5308726290628 -482,3.0,1.0,-1.7055303166990268,5.1973792282565086 -482,3.0,2.0,-8.19544904231211,23.5308726290628 -482,3.0,3.0,16.314103089185693,-55.509410535254254 -482,3.0,5.0,-6.413123730174556,22.31120356548123 -482,3.0,11.0,0.0,4.191255364806866 -482,4.0,1.0,-1.1359607881738778,4.772479328281356 -482,4.0,4.0,4.089980824135861,-12.190647245055052 -482,4.0,6.0,-2.954020035961983,7.449267916773697 -482,5.0,1.0,-1.6861448807654689,5.116477495334806 -482,5.0,3.0,-6.413123730174556,22.31120356548123 -482,5.0,5.0,22.341631269034565,-82.8291478657789 -482,5.0,6.0,-3.590210423980992,11.02611441072814 -482,5.0,7.0,-6.289308176100628,22.0125786163522 -482,5.0,8.0,0.0,4.915840805411357 -482,5.0,9.0,0.0,1.8561002591115965 -482,5.0,27.0,-4.362844058012917,15.463571542897856 -482,6.0,4.0,-2.954020035961983,7.449267916773697 -482,6.0,5.0,-3.590210423980992,11.02611441072814 -482,6.0,6.0,6.544230459942975,-18.45668232750184 -482,7.0,5.0,-6.289308176100628,22.0125786163522 -482,7.0,7.0,7.733287237496075,-26.527493274828448 -482,7.0,27.0,-1.4439790613954469,4.540814658476248 -482,8.0,5.0,0.0,4.915840805411357 -482,8.0,8.0,0.0,-18.706293706293707 -482,8.0,9.0,0.0,9.090909090909092 -482,8.0,10.0,0.0,4.807692307692308 -482,9.0,5.0,0.0,1.8561002591115965 -482,9.0,8.0,0.0,9.090909090909092 -482,9.0,9.0,13.462042814524237,-41.3837606675224 -482,9.0,16.0,-3.956039125715353,10.317447719844054 -482,9.0,19.0,-1.7848303152666305,3.98535828943083 -482,9.0,20.0,-5.101853820159654,10.98071411292983 -482,9.0,21.0,-2.619319553382597,5.400770303329455 -482,10.0,8.0,0.0,4.807692307692308 -482,10.0,10.0,0.0,-4.807692307692308 -482,11.0,3.0,0.0,4.191255364806866 -482,11.0,11.0,6.573961583776156,-24.424167659260668 -482,11.0,12.0,0.0,7.142857142857143 -482,11.0,13.0,-1.5265676088395577,3.1734252729654173 -482,11.0,14.0,-3.0953961826564296,6.097275864326261 -482,11.0,15.0,-1.9519977922801688,4.104359379111847 -482,12.0,11.0,0.0,7.142857142857143 -482,12.0,12.0,0.0,-7.142857142857143 -482,13.0,11.0,-1.5265676088395577,3.1734252729654173 -482,13.0,13.0,4.01751987283902,-5.424299332335067 -482,13.0,14.0,-2.4909522639994623,2.250874059369649 -482,14.0,11.0,-3.0953961826564296,6.097275864326261 -482,14.0,13.0,-2.4909522639994623,2.250874059369649 -482,14.0,14.0,9.365498545964757,-16.01163373210796 -482,14.0,17.0,-1.8108011504072024,3.687418931630696 -482,14.0,22.0,-1.9683489489016612,3.976064876781356 -482,15.0,11.0,-1.9519977922801688,4.104359379111847 -482,15.0,15.0,3.271064728633931,-8.94513365126506 -482,15.0,16.0,-1.3190669363537617,4.8407742721532125 -482,16.0,9.0,-3.956039125715353,10.317447719844054 -482,16.0,15.0,-1.3190669363537617,4.8407742721532125 -482,16.0,16.0,5.275106062069114,-15.158221991997266 -482,17.0,14.0,-1.8108011504072024,3.687418931630696 -482,17.0,17.0,4.886487584415919,-9.906177730909668 -482,17.0,18.0,-3.0756864340087167,6.218758799278971 -482,18.0,17.0,-3.0756864340087167,6.218758799278971 -482,18.0,18.0,8.958039375185187,-17.98346468163191 -482,18.0,19.0,-5.88235294117647,11.76470588235294 -482,19.0,9.0,-1.7848303152666305,3.98535828943083 -482,19.0,18.0,-5.88235294117647,11.76470588235294 -482,19.0,19.0,7.6671832564431,-15.75006417178377 -482,20.0,9.0,-5.101853820159654,10.98071411292983 -482,20.0,20.0,21.876495189895888,-45.10843276170355 -482,20.0,21.0,-16.774641369736234,34.127718648773715 -482,21.0,9.0,-2.619319553382597,5.400770303329455 -482,21.0,20.0,-16.774641369736234,34.127718648773715 -482,21.0,21.0,21.93449907537439,-43.48289181517921 -482,21.0,23.0,-2.5405381522555563,3.95440286307604 -482,22.0,14.0,-1.9683489489016612,3.976064876781356 -482,22.0,22.0,3.429754555384988,-6.965303617315433 -482,22.0,23.0,-1.4614056064833263,2.989238740534077 -482,23.0,21.0,-2.5405381522555563,3.95440286307604 -482,23.0,22.0,-1.4614056064833263,2.989238740534077 -482,23.0,23.0,5.311836702613133,-9.188263657315172 -482,23.0,24.0,-1.3098929438742493,2.287622053705056 -482,24.0,23.0,-1.3098929438742493,2.287622053705056 -482,24.0,24.0,4.495715080321987,-7.864978761969621 -482,24.0,25.0,-1.2165301194494855,1.8171440463475024 -482,24.0,26.0,-1.9692920169982515,3.760212661917064 -482,25.0,24.0,-1.2165301194494855,1.8171440463475024 -482,25.0,25.0,1.2165301194494855,-1.8171440463475024 -482,26.0,24.0,-1.9692920169982515,3.760212661917064 -482,26.0,26.0,3.652281470778589,-9.46044252232512 -482,26.0,27.0,0.0,2.608731947574922 -482,26.0,28.0,-0.99553355095268,1.881005840357816 -482,26.0,29.0,-0.6874559028276572,1.293971494797717 -482,27.0,5.0,-4.362844058012917,15.463571542897856 -482,27.0,7.0,-1.4439790613954469,4.540814658476248 -482,27.0,26.0,0.0,2.608731947574922 -482,27.0,27.0,5.806823119408364,-22.67145722159613 -482,28.0,26.0,-0.99553355095268,1.881005840357816 -482,28.0,28.0,1.9075867579849564,-3.604364401207048 -482,28.0,29.0,-0.9120532070322764,1.7233585608492326 -482,29.0,26.0,-0.6874559028276572,1.293971494797717 -482,29.0,28.0,-0.9120532070322764,1.7233585608492326 -482,29.0,29.0,1.5995091098599337,-3.0173300556469496 -483,0.0,0.0,1.5408698687669766,-5.611274830095233 -483,0.0,2.0,-1.5408698687669766,5.631674830095234 -483,1.0,1.0,2.8221056689393467,-9.849356823616162 -483,1.0,4.0,-1.1359607881738778,4.772479328281356 -483,1.0,5.0,-1.6861448807654689,5.116477495334806 -483,2.0,0.0,-1.5408698687669766,5.631674830095234 -483,2.0,2.0,9.736318911079088,-29.13794745915803 -483,2.0,3.0,-8.19544904231211,23.5308726290628 -483,3.0,2.0,-8.19544904231211,23.5308726290628 -483,3.0,3.0,14.608572772486664,-50.33043130699775 -483,3.0,5.0,-6.413123730174556,22.31120356548123 -483,3.0,11.0,0.0,4.191255364806866 -483,4.0,1.0,-1.1359607881738778,4.772479328281356 -483,4.0,4.0,4.089980824135861,-12.190647245055052 -483,4.0,6.0,-2.954020035961983,7.449267916773697 -483,5.0,1.0,-1.6861448807654689,5.116477495334806 -483,5.0,3.0,-6.413123730174556,22.31120356548123 -483,5.0,5.0,22.341631269034565,-80.91366772221689 -483,5.0,6.0,-3.590210423980992,11.02611441072814 -483,5.0,7.0,-6.289308176100628,22.0125786163522 -483,5.0,8.0,0.0,4.915840805411357 -483,5.0,27.0,-4.362844058012917,15.463571542897856 -483,6.0,4.0,-2.954020035961983,7.449267916773697 -483,6.0,5.0,-3.590210423980992,11.02611441072814 -483,6.0,6.0,6.544230459942975,-18.45668232750184 -483,7.0,5.0,-6.289308176100628,22.0125786163522 -483,7.0,7.0,7.733287237496075,-26.527493274828448 -483,7.0,27.0,-1.4439790613954469,4.540814658476248 -483,8.0,5.0,0.0,4.915840805411357 -483,8.0,8.0,0.0,-18.706293706293707 -483,8.0,9.0,0.0,9.090909090909092 -483,8.0,10.0,0.0,4.807692307692308 -483,9.0,8.0,0.0,9.090909090909092 -483,9.0,9.0,10.842723261141638,-34.18442921311381 -483,9.0,16.0,-3.956039125715353,10.317447719844054 -483,9.0,19.0,-1.7848303152666305,3.98535828943083 -483,9.0,20.0,-5.101853820159654,10.98071411292983 -483,10.0,8.0,0.0,4.807692307692308 -483,10.0,10.0,0.0,-4.807692307692308 -483,11.0,3.0,0.0,4.191255364806866 -483,11.0,11.0,6.573961583776156,-24.424167659260668 -483,11.0,12.0,0.0,7.142857142857143 -483,11.0,13.0,-1.5265676088395577,3.1734252729654173 -483,11.0,14.0,-3.0953961826564296,6.097275864326261 -483,11.0,15.0,-1.9519977922801688,4.104359379111847 -483,12.0,11.0,0.0,7.142857142857143 -483,12.0,12.0,0.0,-7.142857142857143 -483,13.0,11.0,-1.5265676088395577,3.1734252729654173 -483,13.0,13.0,4.01751987283902,-5.424299332335067 -483,13.0,14.0,-2.4909522639994623,2.250874059369649 -483,14.0,11.0,-3.0953961826564296,6.097275864326261 -483,14.0,13.0,-2.4909522639994623,2.250874059369649 -483,14.0,14.0,9.365498545964757,-16.01163373210796 -483,14.0,17.0,-1.8108011504072024,3.687418931630696 -483,14.0,22.0,-1.9683489489016612,3.976064876781356 -483,15.0,11.0,-1.9519977922801688,4.104359379111847 -483,15.0,15.0,3.271064728633931,-8.94513365126506 -483,15.0,16.0,-1.3190669363537617,4.8407742721532125 -483,16.0,9.0,-3.956039125715353,10.317447719844054 -483,16.0,15.0,-1.3190669363537617,4.8407742721532125 -483,16.0,16.0,5.275106062069114,-15.158221991997266 -483,17.0,14.0,-1.8108011504072024,3.687418931630696 -483,17.0,17.0,4.886487584415919,-9.906177730909668 -483,17.0,18.0,-3.0756864340087167,6.218758799278971 -483,18.0,17.0,-3.0756864340087167,6.218758799278971 -483,18.0,18.0,3.0756864340087167,-6.218758799278971 -483,19.0,9.0,-1.7848303152666305,3.98535828943083 -483,19.0,19.0,1.7848303152666305,-3.98535828943083 -483,20.0,9.0,-5.101853820159654,10.98071411292983 -483,20.0,20.0,21.876495189895888,-45.10843276170355 -483,20.0,21.0,-16.774641369736234,34.127718648773715 -483,21.0,20.0,-16.774641369736234,34.127718648773715 -483,21.0,21.0,19.31517952199179,-38.08212151184976 -483,21.0,23.0,-2.5405381522555563,3.95440286307604 -483,22.0,14.0,-1.9683489489016612,3.976064876781356 -483,22.0,22.0,3.429754555384988,-6.965303617315433 -483,22.0,23.0,-1.4614056064833263,2.989238740534077 -483,23.0,21.0,-2.5405381522555563,3.95440286307604 -483,23.0,22.0,-1.4614056064833263,2.989238740534077 -483,23.0,23.0,5.311836702613133,-9.188263657315172 -483,23.0,24.0,-1.3098929438742493,2.287622053705056 -483,24.0,23.0,-1.3098929438742493,2.287622053705056 -483,24.0,24.0,4.495715080321987,-7.864978761969621 -483,24.0,25.0,-1.2165301194494855,1.8171440463475024 -483,24.0,26.0,-1.9692920169982515,3.760212661917064 -483,25.0,24.0,-1.2165301194494855,1.8171440463475024 -483,25.0,25.0,1.2165301194494855,-1.8171440463475024 -483,26.0,24.0,-1.9692920169982515,3.760212661917064 -483,26.0,26.0,3.652281470778589,-9.46044252232512 -483,26.0,27.0,0.0,2.608731947574922 -483,26.0,28.0,-0.99553355095268,1.881005840357816 -483,26.0,29.0,-0.6874559028276572,1.293971494797717 -483,27.0,5.0,-4.362844058012917,15.463571542897856 -483,27.0,7.0,-1.4439790613954469,4.540814658476248 -483,27.0,26.0,0.0,2.608731947574922 -483,27.0,27.0,5.806823119408364,-22.67145722159613 -483,28.0,26.0,-0.99553355095268,1.881005840357816 -483,28.0,28.0,1.9075867579849564,-3.604364401207048 -483,28.0,29.0,-0.9120532070322764,1.7233585608492326 -483,29.0,26.0,-0.6874559028276572,1.293971494797717 -483,29.0,28.0,-0.9120532070322764,1.7233585608492326 -483,29.0,29.0,1.5995091098599337,-3.0173300556469496 -484,0.0,0.0,6.765516048652632,-21.23160167089863 -484,0.0,1.0,-5.224646179885656,15.646726840803398 -484,0.0,2.0,-1.5408698687669766,5.631674830095234 -484,1.0,0.0,-5.224646179885656,15.646726840803398 -484,1.0,1.0,9.75228216552403,-30.648662892676068 -484,1.0,3.0,-1.7055303166990268,5.1973792282565086 -484,1.0,4.0,-1.1359607881738778,4.772479328281356 -484,1.0,5.0,-1.6861448807654689,5.116477495334806 -484,2.0,0.0,-1.5408698687669766,5.631674830095234 -484,2.0,2.0,9.736318911079088,-29.13794745915803 -484,2.0,3.0,-8.19544904231211,23.5308726290628 -484,3.0,1.0,-1.7055303166990268,5.1973792282565086 -484,3.0,2.0,-8.19544904231211,23.5308726290628 -484,3.0,3.0,16.314103089185693,-55.509410535254254 -484,3.0,5.0,-6.413123730174556,22.31120356548123 -484,3.0,11.0,0.0,4.191255364806866 -484,4.0,1.0,-1.1359607881738778,4.772479328281356 -484,4.0,4.0,4.089980824135861,-12.190647245055052 -484,4.0,6.0,-2.954020035961983,7.449267916773697 -484,5.0,1.0,-1.6861448807654689,5.116477495334806 -484,5.0,3.0,-6.413123730174556,22.31120356548123 -484,5.0,5.0,22.341631269034565,-82.8291478657789 -484,5.0,6.0,-3.590210423980992,11.02611441072814 -484,5.0,7.0,-6.289308176100628,22.0125786163522 -484,5.0,8.0,0.0,4.915840805411357 -484,5.0,9.0,0.0,1.8561002591115965 -484,5.0,27.0,-4.362844058012917,15.463571542897856 -484,6.0,4.0,-2.954020035961983,7.449267916773697 -484,6.0,5.0,-3.590210423980992,11.02611441072814 -484,6.0,6.0,6.544230459942975,-18.45668232750184 -484,7.0,5.0,-6.289308176100628,22.0125786163522 -484,7.0,7.0,7.733287237496075,-26.527493274828448 -484,7.0,27.0,-1.4439790613954469,4.540814658476248 -484,8.0,5.0,0.0,4.915840805411357 -484,8.0,8.0,0.0,-18.706293706293707 -484,8.0,9.0,0.0,9.090909090909092 -484,8.0,10.0,0.0,4.807692307692308 -484,9.0,5.0,0.0,1.8561002591115965 -484,9.0,8.0,0.0,9.090909090909092 -484,9.0,9.0,13.462042814524237,-41.3837606675224 -484,9.0,16.0,-3.956039125715353,10.317447719844054 -484,9.0,19.0,-1.7848303152666305,3.98535828943083 -484,9.0,20.0,-5.101853820159654,10.98071411292983 -484,9.0,21.0,-2.619319553382597,5.400770303329455 -484,10.0,8.0,0.0,4.807692307692308 -484,10.0,10.0,0.0,-4.807692307692308 -484,11.0,3.0,0.0,4.191255364806866 -484,11.0,11.0,6.573961583776156,-24.424167659260668 -484,11.0,12.0,0.0,7.142857142857143 -484,11.0,13.0,-1.5265676088395577,3.1734252729654173 -484,11.0,14.0,-3.0953961826564296,6.097275864326261 -484,11.0,15.0,-1.9519977922801688,4.104359379111847 -484,12.0,11.0,0.0,7.142857142857143 -484,12.0,12.0,0.0,-7.142857142857143 -484,13.0,11.0,-1.5265676088395577,3.1734252729654173 -484,13.0,13.0,4.01751987283902,-5.424299332335067 -484,13.0,14.0,-2.4909522639994623,2.250874059369649 -484,14.0,11.0,-3.0953961826564296,6.097275864326261 -484,14.0,13.0,-2.4909522639994623,2.250874059369649 -484,14.0,14.0,9.365498545964757,-16.01163373210796 -484,14.0,17.0,-1.8108011504072024,3.687418931630696 -484,14.0,22.0,-1.9683489489016612,3.976064876781356 -484,15.0,11.0,-1.9519977922801688,4.104359379111847 -484,15.0,15.0,3.271064728633931,-8.94513365126506 -484,15.0,16.0,-1.3190669363537617,4.8407742721532125 -484,16.0,9.0,-3.956039125715353,10.317447719844054 -484,16.0,15.0,-1.3190669363537617,4.8407742721532125 -484,16.0,16.0,5.275106062069114,-15.158221991997266 -484,17.0,14.0,-1.8108011504072024,3.687418931630696 -484,17.0,17.0,4.886487584415919,-9.906177730909668 -484,17.0,18.0,-3.0756864340087167,6.218758799278971 -484,18.0,17.0,-3.0756864340087167,6.218758799278971 -484,18.0,18.0,8.958039375185187,-17.98346468163191 -484,18.0,19.0,-5.88235294117647,11.76470588235294 -484,19.0,9.0,-1.7848303152666305,3.98535828943083 -484,19.0,18.0,-5.88235294117647,11.76470588235294 -484,19.0,19.0,7.6671832564431,-15.75006417178377 -484,20.0,9.0,-5.101853820159654,10.98071411292983 -484,20.0,20.0,21.876495189895888,-45.10843276170355 -484,20.0,21.0,-16.774641369736234,34.127718648773715 -484,21.0,9.0,-2.619319553382597,5.400770303329455 -484,21.0,20.0,-16.774641369736234,34.127718648773715 -484,21.0,21.0,21.93449907537439,-43.48289181517921 -484,21.0,23.0,-2.5405381522555563,3.95440286307604 -484,22.0,14.0,-1.9683489489016612,3.976064876781356 -484,22.0,22.0,3.429754555384988,-6.965303617315433 -484,22.0,23.0,-1.4614056064833263,2.989238740534077 -484,23.0,21.0,-2.5405381522555563,3.95440286307604 -484,23.0,22.0,-1.4614056064833263,2.989238740534077 -484,23.0,23.0,5.311836702613133,-9.188263657315172 -484,23.0,24.0,-1.3098929438742493,2.287622053705056 -484,24.0,23.0,-1.3098929438742493,2.287622053705056 -484,24.0,24.0,4.495715080321987,-7.864978761969621 -484,24.0,25.0,-1.2165301194494855,1.8171440463475024 -484,24.0,26.0,-1.9692920169982515,3.760212661917064 -484,25.0,24.0,-1.2165301194494855,1.8171440463475024 -484,25.0,25.0,1.2165301194494855,-1.8171440463475024 -484,26.0,24.0,-1.9692920169982515,3.760212661917064 -484,26.0,26.0,3.652281470778589,-9.46044252232512 -484,26.0,27.0,0.0,2.608731947574922 -484,26.0,28.0,-0.99553355095268,1.881005840357816 -484,26.0,29.0,-0.6874559028276572,1.293971494797717 -484,27.0,5.0,-4.362844058012917,15.463571542897856 -484,27.0,7.0,-1.4439790613954469,4.540814658476248 -484,27.0,26.0,0.0,2.608731947574922 -484,27.0,27.0,5.806823119408364,-22.67145722159613 -484,28.0,26.0,-0.99553355095268,1.881005840357816 -484,28.0,28.0,1.9075867579849564,-3.604364401207048 -484,28.0,29.0,-0.9120532070322764,1.7233585608492326 -484,29.0,26.0,-0.6874559028276572,1.293971494797717 -484,29.0,28.0,-0.9120532070322764,1.7233585608492326 -484,29.0,29.0,1.5995091098599337,-3.0173300556469496 -485,0.0,0.0,5.224646179885656,-15.620326840803395 -485,0.0,1.0,-5.224646179885656,15.646726840803398 -485,1.0,0.0,-5.224646179885656,15.646726840803398 -485,1.0,1.0,9.75228216552403,-30.648662892676068 -485,1.0,3.0,-1.7055303166990268,5.1973792282565086 -485,1.0,4.0,-1.1359607881738778,4.772479328281356 -485,1.0,5.0,-1.6861448807654689,5.116477495334806 -485,2.0,2.0,8.19544904231211,-23.5266726290628 -485,2.0,3.0,-8.19544904231211,23.5308726290628 -485,3.0,1.0,-1.7055303166990268,5.1973792282565086 -485,3.0,2.0,-8.19544904231211,23.5308726290628 -485,3.0,3.0,16.314103089185693,-55.509410535254254 -485,3.0,5.0,-6.413123730174556,22.31120356548123 -485,3.0,11.0,0.0,4.191255364806866 -485,4.0,1.0,-1.1359607881738778,4.772479328281356 -485,4.0,4.0,1.1359607881738778,-4.751579328281355 -485,5.0,1.0,-1.6861448807654689,5.116477495334806 -485,5.0,3.0,-6.413123730174556,22.31120356548123 -485,5.0,5.0,22.341631269034565,-82.8291478657789 -485,5.0,6.0,-3.590210423980992,11.02611441072814 -485,5.0,7.0,-6.289308176100628,22.0125786163522 -485,5.0,8.0,0.0,4.915840805411357 -485,5.0,9.0,0.0,1.8561002591115965 -485,5.0,27.0,-4.362844058012917,15.463571542897856 -485,6.0,5.0,-3.590210423980992,11.02611441072814 -485,6.0,6.0,3.590210423980992,-11.01761441072814 -485,7.0,5.0,-6.289308176100628,22.0125786163522 -485,7.0,7.0,7.733287237496075,-26.527493274828448 -485,7.0,27.0,-1.4439790613954469,4.540814658476248 -485,8.0,5.0,0.0,4.915840805411357 -485,8.0,8.0,0.0,-18.706293706293707 -485,8.0,9.0,0.0,9.090909090909092 -485,8.0,10.0,0.0,4.807692307692308 -485,9.0,5.0,0.0,1.8561002591115965 -485,9.0,8.0,0.0,9.090909090909092 -485,9.0,9.0,13.462042814524237,-41.3837606675224 -485,9.0,16.0,-3.956039125715353,10.317447719844054 -485,9.0,19.0,-1.7848303152666305,3.98535828943083 -485,9.0,20.0,-5.101853820159654,10.98071411292983 -485,9.0,21.0,-2.619319553382597,5.400770303329455 -485,10.0,8.0,0.0,4.807692307692308 -485,10.0,10.0,0.0,-4.807692307692308 -485,11.0,3.0,0.0,4.191255364806866 -485,11.0,11.0,6.573961583776156,-24.424167659260668 -485,11.0,12.0,0.0,7.142857142857143 -485,11.0,13.0,-1.5265676088395577,3.1734252729654173 -485,11.0,14.0,-3.0953961826564296,6.097275864326261 -485,11.0,15.0,-1.9519977922801688,4.104359379111847 -485,12.0,11.0,0.0,7.142857142857143 -485,12.0,12.0,0.0,-7.142857142857143 -485,13.0,11.0,-1.5265676088395577,3.1734252729654173 -485,13.0,13.0,4.01751987283902,-5.424299332335067 -485,13.0,14.0,-2.4909522639994623,2.250874059369649 -485,14.0,11.0,-3.0953961826564296,6.097275864326261 -485,14.0,13.0,-2.4909522639994623,2.250874059369649 -485,14.0,14.0,9.365498545964757,-16.01163373210796 -485,14.0,17.0,-1.8108011504072024,3.687418931630696 -485,14.0,22.0,-1.9683489489016612,3.976064876781356 -485,15.0,11.0,-1.9519977922801688,4.104359379111847 -485,15.0,15.0,3.271064728633931,-8.94513365126506 -485,15.0,16.0,-1.3190669363537617,4.8407742721532125 -485,16.0,9.0,-3.956039125715353,10.317447719844054 -485,16.0,15.0,-1.3190669363537617,4.8407742721532125 -485,16.0,16.0,5.275106062069114,-15.158221991997266 -485,17.0,14.0,-1.8108011504072024,3.687418931630696 -485,17.0,17.0,4.886487584415919,-9.906177730909668 -485,17.0,18.0,-3.0756864340087167,6.218758799278971 -485,18.0,17.0,-3.0756864340087167,6.218758799278971 -485,18.0,18.0,3.0756864340087167,-6.218758799278971 -485,19.0,9.0,-1.7848303152666305,3.98535828943083 -485,19.0,19.0,1.7848303152666305,-3.98535828943083 -485,20.0,9.0,-5.101853820159654,10.98071411292983 -485,20.0,20.0,21.876495189895888,-45.10843276170355 -485,20.0,21.0,-16.774641369736234,34.127718648773715 -485,21.0,9.0,-2.619319553382597,5.400770303329455 -485,21.0,20.0,-16.774641369736234,34.127718648773715 -485,21.0,21.0,21.93449907537439,-43.48289181517921 -485,21.0,23.0,-2.5405381522555563,3.95440286307604 -485,22.0,14.0,-1.9683489489016612,3.976064876781356 -485,22.0,22.0,3.429754555384988,-6.965303617315433 -485,22.0,23.0,-1.4614056064833263,2.989238740534077 -485,23.0,21.0,-2.5405381522555563,3.95440286307604 -485,23.0,22.0,-1.4614056064833263,2.989238740534077 -485,23.0,23.0,5.311836702613133,-9.188263657315172 -485,23.0,24.0,-1.3098929438742493,2.287622053705056 -485,24.0,23.0,-1.3098929438742493,2.287622053705056 -485,24.0,24.0,4.495715080321987,-7.864978761969621 -485,24.0,25.0,-1.2165301194494855,1.8171440463475024 -485,24.0,26.0,-1.9692920169982515,3.760212661917064 -485,25.0,24.0,-1.2165301194494855,1.8171440463475024 -485,25.0,25.0,1.2165301194494855,-1.8171440463475024 -485,26.0,24.0,-1.9692920169982515,3.760212661917064 -485,26.0,26.0,3.652281470778589,-9.46044252232512 -485,26.0,27.0,0.0,2.608731947574922 -485,26.0,28.0,-0.99553355095268,1.881005840357816 -485,26.0,29.0,-0.6874559028276572,1.293971494797717 -485,27.0,5.0,-4.362844058012917,15.463571542897856 -485,27.0,7.0,-1.4439790613954469,4.540814658476248 -485,27.0,26.0,0.0,2.608731947574922 -485,27.0,27.0,5.806823119408364,-22.67145722159613 -485,28.0,26.0,-0.99553355095268,1.881005840357816 -485,28.0,28.0,1.9075867579849564,-3.604364401207048 -485,28.0,29.0,-0.9120532070322764,1.7233585608492326 -485,29.0,26.0,-0.6874559028276572,1.293971494797717 -485,29.0,28.0,-0.9120532070322764,1.7233585608492326 -485,29.0,29.0,1.5995091098599337,-3.0173300556469496 -486,0.0,0.0,6.765516048652632,-21.23160167089863 -486,0.0,1.0,-5.224646179885656,15.646726840803398 -486,0.0,2.0,-1.5408698687669766,5.631674830095234 -486,1.0,0.0,-5.224646179885656,15.646726840803398 -486,1.0,1.0,9.75228216552403,-30.648662892676068 -486,1.0,3.0,-1.7055303166990268,5.1973792282565086 -486,1.0,4.0,-1.1359607881738778,4.772479328281356 -486,1.0,5.0,-1.6861448807654689,5.116477495334806 -486,2.0,0.0,-1.5408698687669766,5.631674830095234 -486,2.0,2.0,9.736318911079088,-29.13794745915803 -486,2.0,3.0,-8.19544904231211,23.5308726290628 -486,3.0,1.0,-1.7055303166990268,5.1973792282565086 -486,3.0,2.0,-8.19544904231211,23.5308726290628 -486,3.0,3.0,16.314103089185693,-55.509410535254254 -486,3.0,5.0,-6.413123730174556,22.31120356548123 -486,3.0,11.0,0.0,4.191255364806866 -486,4.0,1.0,-1.1359607881738778,4.772479328281356 -486,4.0,4.0,4.089980824135861,-12.190647245055052 -486,4.0,6.0,-2.954020035961983,7.449267916773697 -486,5.0,1.0,-1.6861448807654689,5.116477495334806 -486,5.0,3.0,-6.413123730174556,22.31120356548123 -486,5.0,5.0,22.341631269034565,-82.8291478657789 -486,5.0,6.0,-3.590210423980992,11.02611441072814 -486,5.0,7.0,-6.289308176100628,22.0125786163522 -486,5.0,8.0,0.0,4.915840805411357 -486,5.0,9.0,0.0,1.8561002591115965 -486,5.0,27.0,-4.362844058012917,15.463571542897856 -486,6.0,4.0,-2.954020035961983,7.449267916773697 -486,6.0,5.0,-3.590210423980992,11.02611441072814 -486,6.0,6.0,6.544230459942975,-18.45668232750184 -486,7.0,5.0,-6.289308176100628,22.0125786163522 -486,7.0,7.0,7.733287237496075,-26.527493274828448 -486,7.0,27.0,-1.4439790613954469,4.540814658476248 -486,8.0,5.0,0.0,4.915840805411357 -486,8.0,8.0,0.0,-18.706293706293707 -486,8.0,9.0,0.0,9.090909090909092 -486,8.0,10.0,0.0,4.807692307692308 -486,9.0,5.0,0.0,1.8561002591115965 -486,9.0,8.0,0.0,9.090909090909092 -486,9.0,9.0,13.462042814524237,-41.3837606675224 -486,9.0,16.0,-3.956039125715353,10.317447719844054 -486,9.0,19.0,-1.7848303152666305,3.98535828943083 -486,9.0,20.0,-5.101853820159654,10.98071411292983 -486,9.0,21.0,-2.619319553382597,5.400770303329455 -486,10.0,8.0,0.0,4.807692307692308 -486,10.0,10.0,0.0,-4.807692307692308 -486,11.0,3.0,0.0,4.191255364806866 -486,11.0,11.0,6.573961583776156,-24.424167659260668 -486,11.0,12.0,0.0,7.142857142857143 -486,11.0,13.0,-1.5265676088395577,3.1734252729654173 -486,11.0,14.0,-3.0953961826564296,6.097275864326261 -486,11.0,15.0,-1.9519977922801688,4.104359379111847 -486,12.0,11.0,0.0,7.142857142857143 -486,12.0,12.0,0.0,-7.142857142857143 -486,13.0,11.0,-1.5265676088395577,3.1734252729654173 -486,13.0,13.0,1.5265676088395577,-3.1734252729654173 -486,14.0,11.0,-3.0953961826564296,6.097275864326261 -486,14.0,14.0,5.063745131558092,-10.073340741107616 -486,14.0,22.0,-1.9683489489016612,3.976064876781356 -486,15.0,11.0,-1.9519977922801688,4.104359379111847 -486,15.0,15.0,3.271064728633931,-8.94513365126506 -486,15.0,16.0,-1.3190669363537617,4.8407742721532125 -486,16.0,9.0,-3.956039125715353,10.317447719844054 -486,16.0,15.0,-1.3190669363537617,4.8407742721532125 -486,16.0,16.0,5.275106062069114,-15.158221991997266 -486,17.0,17.0,3.0756864340087167,-6.218758799278971 -486,17.0,18.0,-3.0756864340087167,6.218758799278971 -486,18.0,17.0,-3.0756864340087167,6.218758799278971 -486,18.0,18.0,8.958039375185187,-17.98346468163191 -486,18.0,19.0,-5.88235294117647,11.76470588235294 -486,19.0,9.0,-1.7848303152666305,3.98535828943083 -486,19.0,18.0,-5.88235294117647,11.76470588235294 -486,19.0,19.0,7.6671832564431,-15.75006417178377 -486,20.0,9.0,-5.101853820159654,10.98071411292983 -486,20.0,20.0,21.876495189895888,-45.10843276170355 -486,20.0,21.0,-16.774641369736234,34.127718648773715 -486,21.0,9.0,-2.619319553382597,5.400770303329455 -486,21.0,20.0,-16.774641369736234,34.127718648773715 -486,21.0,21.0,19.393960923118836,-39.52848895210317 -486,22.0,14.0,-1.9683489489016612,3.976064876781356 -486,22.0,22.0,3.429754555384988,-6.965303617315433 -486,22.0,23.0,-1.4614056064833263,2.989238740534077 -486,23.0,22.0,-1.4614056064833263,2.989238740534077 -486,23.0,23.0,2.771298550357576,-5.233860794239132 -486,23.0,24.0,-1.3098929438742493,2.287622053705056 -486,24.0,23.0,-1.3098929438742493,2.287622053705056 -486,24.0,24.0,4.495715080321987,-7.864978761969621 -486,24.0,25.0,-1.2165301194494855,1.8171440463475024 -486,24.0,26.0,-1.9692920169982515,3.760212661917064 -486,25.0,24.0,-1.2165301194494855,1.8171440463475024 -486,25.0,25.0,1.2165301194494855,-1.8171440463475024 -486,26.0,24.0,-1.9692920169982515,3.760212661917064 -486,26.0,26.0,3.652281470778589,-9.46044252232512 -486,26.0,27.0,0.0,2.608731947574922 -486,26.0,28.0,-0.99553355095268,1.881005840357816 -486,26.0,29.0,-0.6874559028276572,1.293971494797717 -486,27.0,5.0,-4.362844058012917,15.463571542897856 -486,27.0,7.0,-1.4439790613954469,4.540814658476248 -486,27.0,26.0,0.0,2.608731947574922 -486,27.0,27.0,5.806823119408364,-22.67145722159613 -486,28.0,26.0,-0.99553355095268,1.881005840357816 -486,28.0,28.0,1.9075867579849564,-3.604364401207048 -486,28.0,29.0,-0.9120532070322764,1.7233585608492326 -486,29.0,26.0,-0.6874559028276572,1.293971494797717 -486,29.0,28.0,-0.9120532070322764,1.7233585608492326 -486,29.0,29.0,1.5995091098599337,-3.0173300556469496 -487,0.0,0.0,6.765516048652632,-21.23160167089863 -487,0.0,1.0,-5.224646179885656,15.646726840803398 -487,0.0,2.0,-1.5408698687669766,5.631674830095234 -487,1.0,0.0,-5.224646179885656,15.646726840803398 -487,1.0,1.0,9.75228216552403,-30.648662892676068 -487,1.0,3.0,-1.7055303166990268,5.1973792282565086 -487,1.0,4.0,-1.1359607881738778,4.772479328281356 -487,1.0,5.0,-1.6861448807654689,5.116477495334806 -487,2.0,0.0,-1.5408698687669766,5.631674830095234 -487,2.0,2.0,9.736318911079088,-29.13794745915803 -487,2.0,3.0,-8.19544904231211,23.5308726290628 -487,3.0,1.0,-1.7055303166990268,5.1973792282565086 -487,3.0,2.0,-8.19544904231211,23.5308726290628 -487,3.0,3.0,16.314103089185693,-55.509410535254254 -487,3.0,5.0,-6.413123730174556,22.31120356548123 -487,3.0,11.0,0.0,4.191255364806866 -487,4.0,1.0,-1.1359607881738778,4.772479328281356 -487,4.0,4.0,4.089980824135861,-12.190647245055052 -487,4.0,6.0,-2.954020035961983,7.449267916773697 -487,5.0,1.0,-1.6861448807654689,5.116477495334806 -487,5.0,3.0,-6.413123730174556,22.31120356548123 -487,5.0,5.0,22.341631269034565,-82.8291478657789 -487,5.0,6.0,-3.590210423980992,11.02611441072814 -487,5.0,7.0,-6.289308176100628,22.0125786163522 -487,5.0,8.0,0.0,4.915840805411357 -487,5.0,9.0,0.0,1.8561002591115965 -487,5.0,27.0,-4.362844058012917,15.463571542897856 -487,6.0,4.0,-2.954020035961983,7.449267916773697 -487,6.0,5.0,-3.590210423980992,11.02611441072814 -487,6.0,6.0,6.544230459942975,-18.45668232750184 -487,7.0,5.0,-6.289308176100628,22.0125786163522 -487,7.0,7.0,7.733287237496075,-26.527493274828448 -487,7.0,27.0,-1.4439790613954469,4.540814658476248 -487,8.0,5.0,0.0,4.915840805411357 -487,8.0,8.0,0.0,-18.706293706293707 -487,8.0,9.0,0.0,9.090909090909092 -487,8.0,10.0,0.0,4.807692307692308 -487,9.0,5.0,0.0,1.8561002591115965 -487,9.0,8.0,0.0,9.090909090909092 -487,9.0,9.0,13.462042814524237,-41.3837606675224 -487,9.0,16.0,-3.956039125715353,10.317447719844054 -487,9.0,19.0,-1.7848303152666305,3.98535828943083 -487,9.0,20.0,-5.101853820159654,10.98071411292983 -487,9.0,21.0,-2.619319553382597,5.400770303329455 -487,10.0,8.0,0.0,4.807692307692308 -487,10.0,10.0,0.0,-4.807692307692308 -487,11.0,3.0,0.0,4.191255364806866 -487,11.0,11.0,6.573961583776156,-24.424167659260668 -487,11.0,12.0,0.0,7.142857142857143 -487,11.0,13.0,-1.5265676088395577,3.1734252729654173 -487,11.0,14.0,-3.0953961826564296,6.097275864326261 -487,11.0,15.0,-1.9519977922801688,4.104359379111847 -487,12.0,11.0,0.0,7.142857142857143 -487,12.0,12.0,0.0,-7.142857142857143 -487,13.0,11.0,-1.5265676088395577,3.1734252729654173 -487,13.0,13.0,4.01751987283902,-5.424299332335067 -487,13.0,14.0,-2.4909522639994623,2.250874059369649 -487,14.0,11.0,-3.0953961826564296,6.097275864326261 -487,14.0,13.0,-2.4909522639994623,2.250874059369649 -487,14.0,14.0,9.365498545964757,-16.01163373210796 -487,14.0,17.0,-1.8108011504072024,3.687418931630696 -487,14.0,22.0,-1.9683489489016612,3.976064876781356 -487,15.0,11.0,-1.9519977922801688,4.104359379111847 -487,15.0,15.0,3.271064728633931,-8.94513365126506 -487,15.0,16.0,-1.3190669363537617,4.8407742721532125 -487,16.0,9.0,-3.956039125715353,10.317447719844054 -487,16.0,15.0,-1.3190669363537617,4.8407742721532125 -487,16.0,16.0,5.275106062069114,-15.158221991997266 -487,17.0,14.0,-1.8108011504072024,3.687418931630696 -487,17.0,17.0,4.886487584415919,-9.906177730909668 -487,17.0,18.0,-3.0756864340087167,6.218758799278971 -487,18.0,17.0,-3.0756864340087167,6.218758799278971 -487,18.0,18.0,8.958039375185187,-17.98346468163191 -487,18.0,19.0,-5.88235294117647,11.76470588235294 -487,19.0,9.0,-1.7848303152666305,3.98535828943083 -487,19.0,18.0,-5.88235294117647,11.76470588235294 -487,19.0,19.0,7.6671832564431,-15.75006417178377 -487,20.0,9.0,-5.101853820159654,10.98071411292983 -487,20.0,20.0,21.876495189895888,-45.10843276170355 -487,20.0,21.0,-16.774641369736234,34.127718648773715 -487,21.0,9.0,-2.619319553382597,5.400770303329455 -487,21.0,20.0,-16.774641369736234,34.127718648773715 -487,21.0,21.0,21.93449907537439,-43.48289181517921 -487,21.0,23.0,-2.5405381522555563,3.95440286307604 -487,22.0,14.0,-1.9683489489016612,3.976064876781356 -487,22.0,22.0,3.429754555384988,-6.965303617315433 -487,22.0,23.0,-1.4614056064833263,2.989238740534077 -487,23.0,21.0,-2.5405381522555563,3.95440286307604 -487,23.0,22.0,-1.4614056064833263,2.989238740534077 -487,23.0,23.0,5.311836702613133,-9.188263657315172 -487,23.0,24.0,-1.3098929438742493,2.287622053705056 -487,24.0,23.0,-1.3098929438742493,2.287622053705056 -487,24.0,24.0,4.495715080321987,-7.864978761969621 -487,24.0,25.0,-1.2165301194494855,1.8171440463475024 -487,24.0,26.0,-1.9692920169982515,3.760212661917064 -487,25.0,24.0,-1.2165301194494855,1.8171440463475024 -487,25.0,25.0,1.2165301194494855,-1.8171440463475024 -487,26.0,24.0,-1.9692920169982515,3.760212661917064 -487,26.0,26.0,3.652281470778589,-9.46044252232512 -487,26.0,27.0,0.0,2.608731947574922 -487,26.0,28.0,-0.99553355095268,1.881005840357816 -487,26.0,29.0,-0.6874559028276572,1.293971494797717 -487,27.0,5.0,-4.362844058012917,15.463571542897856 -487,27.0,7.0,-1.4439790613954469,4.540814658476248 -487,27.0,26.0,0.0,2.608731947574922 -487,27.0,27.0,5.806823119408364,-22.67145722159613 -487,28.0,26.0,-0.99553355095268,1.881005840357816 -487,28.0,28.0,1.9075867579849564,-3.604364401207048 -487,28.0,29.0,-0.9120532070322764,1.7233585608492326 -487,29.0,26.0,-0.6874559028276572,1.293971494797717 -487,29.0,28.0,-0.9120532070322764,1.7233585608492326 -487,29.0,29.0,1.5995091098599337,-3.0173300556469496 -488,0.0,0.0,6.765516048652632,-21.23160167089863 -488,0.0,1.0,-5.224646179885656,15.646726840803398 -488,0.0,2.0,-1.5408698687669766,5.631674830095234 -488,1.0,0.0,-5.224646179885656,15.646726840803398 -488,1.0,1.0,8.066137284758561,-25.55088539734126 -488,1.0,3.0,-1.7055303166990268,5.1973792282565086 -488,1.0,4.0,-1.1359607881738778,4.772479328281356 -488,2.0,0.0,-1.5408698687669766,5.631674830095234 -488,2.0,2.0,9.736318911079088,-29.13794745915803 -488,2.0,3.0,-8.19544904231211,23.5308726290628 -488,3.0,1.0,-1.7055303166990268,5.1973792282565086 -488,3.0,2.0,-8.19544904231211,23.5308726290628 -488,3.0,3.0,16.314103089185693,-55.509410535254254 -488,3.0,5.0,-6.413123730174556,22.31120356548123 -488,3.0,11.0,0.0,4.191255364806866 -488,4.0,1.0,-1.1359607881738778,4.772479328281356 -488,4.0,4.0,4.089980824135861,-12.190647245055052 -488,4.0,6.0,-2.954020035961983,7.449267916773697 -488,5.0,3.0,-6.413123730174556,22.31120356548123 -488,5.0,5.0,20.655486388269097,-77.7313703704441 -488,5.0,6.0,-3.590210423980992,11.02611441072814 -488,5.0,7.0,-6.289308176100628,22.0125786163522 -488,5.0,8.0,0.0,4.915840805411357 -488,5.0,9.0,0.0,1.8561002591115965 -488,5.0,27.0,-4.362844058012917,15.463571542897856 -488,6.0,4.0,-2.954020035961983,7.449267916773697 -488,6.0,5.0,-3.590210423980992,11.02611441072814 -488,6.0,6.0,6.544230459942975,-18.45668232750184 -488,7.0,5.0,-6.289308176100628,22.0125786163522 -488,7.0,7.0,6.289308176100628,-22.0080786163522 -488,8.0,5.0,0.0,4.915840805411357 -488,8.0,8.0,0.0,-18.706293706293707 -488,8.0,9.0,0.0,9.090909090909092 -488,8.0,10.0,0.0,4.807692307692308 -488,9.0,5.0,0.0,1.8561002591115965 -488,9.0,8.0,0.0,9.090909090909092 -488,9.0,9.0,13.462042814524237,-41.3837606675224 -488,9.0,16.0,-3.956039125715353,10.317447719844054 -488,9.0,19.0,-1.7848303152666305,3.98535828943083 -488,9.0,20.0,-5.101853820159654,10.98071411292983 -488,9.0,21.0,-2.619319553382597,5.400770303329455 -488,10.0,8.0,0.0,4.807692307692308 -488,10.0,10.0,0.0,-4.807692307692308 -488,11.0,3.0,0.0,4.191255364806866 -488,11.0,11.0,6.573961583776156,-24.424167659260668 -488,11.0,12.0,0.0,7.142857142857143 -488,11.0,13.0,-1.5265676088395577,3.1734252729654173 -488,11.0,14.0,-3.0953961826564296,6.097275864326261 -488,11.0,15.0,-1.9519977922801688,4.104359379111847 -488,12.0,11.0,0.0,7.142857142857143 -488,12.0,12.0,0.0,-7.142857142857143 -488,13.0,11.0,-1.5265676088395577,3.1734252729654173 -488,13.0,13.0,4.01751987283902,-5.424299332335067 -488,13.0,14.0,-2.4909522639994623,2.250874059369649 -488,14.0,11.0,-3.0953961826564296,6.097275864326261 -488,14.0,13.0,-2.4909522639994623,2.250874059369649 -488,14.0,14.0,7.397149597063095,-12.035568855326606 -488,14.0,17.0,-1.8108011504072024,3.687418931630696 -488,15.0,11.0,-1.9519977922801688,4.104359379111847 -488,15.0,15.0,3.271064728633931,-8.94513365126506 -488,15.0,16.0,-1.3190669363537617,4.8407742721532125 -488,16.0,9.0,-3.956039125715353,10.317447719844054 -488,16.0,15.0,-1.3190669363537617,4.8407742721532125 -488,16.0,16.0,5.275106062069114,-15.158221991997266 -488,17.0,14.0,-1.8108011504072024,3.687418931630696 -488,17.0,17.0,4.886487584415919,-9.906177730909668 -488,17.0,18.0,-3.0756864340087167,6.218758799278971 -488,18.0,17.0,-3.0756864340087167,6.218758799278971 -488,18.0,18.0,8.958039375185187,-17.98346468163191 -488,18.0,19.0,-5.88235294117647,11.76470588235294 -488,19.0,9.0,-1.7848303152666305,3.98535828943083 -488,19.0,18.0,-5.88235294117647,11.76470588235294 -488,19.0,19.0,7.6671832564431,-15.75006417178377 -488,20.0,9.0,-5.101853820159654,10.98071411292983 -488,20.0,20.0,21.876495189895888,-45.10843276170355 -488,20.0,21.0,-16.774641369736234,34.127718648773715 -488,21.0,9.0,-2.619319553382597,5.400770303329455 -488,21.0,20.0,-16.774641369736234,34.127718648773715 -488,21.0,21.0,21.93449907537439,-43.48289181517921 -488,21.0,23.0,-2.5405381522555563,3.95440286307604 -488,22.0,22.0,1.4614056064833263,-2.989238740534077 -488,22.0,23.0,-1.4614056064833263,2.989238740534077 -488,23.0,21.0,-2.5405381522555563,3.95440286307604 -488,23.0,22.0,-1.4614056064833263,2.989238740534077 -488,23.0,23.0,5.311836702613133,-9.188263657315172 -488,23.0,24.0,-1.3098929438742493,2.287622053705056 -488,24.0,23.0,-1.3098929438742493,2.287622053705056 -488,24.0,24.0,4.495715080321987,-7.864978761969621 -488,24.0,25.0,-1.2165301194494855,1.8171440463475024 -488,24.0,26.0,-1.9692920169982515,3.760212661917064 -488,25.0,24.0,-1.2165301194494855,1.8171440463475024 -488,25.0,25.0,1.2165301194494855,-1.8171440463475024 -488,26.0,24.0,-1.9692920169982515,3.760212661917064 -488,26.0,26.0,3.652281470778589,-9.46044252232512 -488,26.0,27.0,0.0,2.608731947574922 -488,26.0,28.0,-0.99553355095268,1.881005840357816 -488,26.0,29.0,-0.6874559028276572,1.293971494797717 -488,27.0,5.0,-4.362844058012917,15.463571542897856 -488,27.0,26.0,0.0,2.608731947574922 -488,27.0,27.0,4.362844058012917,-18.15204256311988 -488,28.0,26.0,-0.99553355095268,1.881005840357816 -488,28.0,28.0,1.9075867579849564,-3.604364401207048 -488,28.0,29.0,-0.9120532070322764,1.7233585608492326 -488,29.0,26.0,-0.6874559028276572,1.293971494797717 -488,29.0,28.0,-0.9120532070322764,1.7233585608492326 -488,29.0,29.0,1.5995091098599337,-3.0173300556469496 -489,0.0,0.0,6.765516048652632,-21.23160167089863 -489,0.0,1.0,-5.224646179885656,15.646726840803398 -489,0.0,2.0,-1.5408698687669766,5.631674830095234 -489,1.0,0.0,-5.224646179885656,15.646726840803398 -489,1.0,1.0,8.046751848825002,-25.46968366441956 -489,1.0,4.0,-1.1359607881738778,4.772479328281356 -489,1.0,5.0,-1.6861448807654689,5.116477495334806 -489,2.0,0.0,-1.5408698687669766,5.631674830095234 -489,2.0,2.0,9.736318911079088,-29.13794745915803 -489,2.0,3.0,-8.19544904231211,23.5308726290628 -489,3.0,2.0,-8.19544904231211,23.5308726290628 -489,3.0,3.0,14.608572772486664,-50.33043130699775 -489,3.0,5.0,-6.413123730174556,22.31120356548123 -489,3.0,11.0,0.0,4.191255364806866 -489,4.0,1.0,-1.1359607881738778,4.772479328281356 -489,4.0,4.0,4.089980824135861,-12.190647245055052 -489,4.0,6.0,-2.954020035961983,7.449267916773697 -489,5.0,1.0,-1.6861448807654689,5.116477495334806 -489,5.0,3.0,-6.413123730174556,22.31120356548123 -489,5.0,5.0,17.978787211021647,-65.45659617931904 -489,5.0,6.0,-3.590210423980992,11.02611441072814 -489,5.0,7.0,-6.289308176100628,22.0125786163522 -489,5.0,8.0,0.0,4.915840805411357 -489,6.0,4.0,-2.954020035961983,7.449267916773697 -489,6.0,5.0,-3.590210423980992,11.02611441072814 -489,6.0,6.0,6.544230459942975,-18.45668232750184 -489,7.0,5.0,-6.289308176100628,22.0125786163522 -489,7.0,7.0,7.733287237496075,-26.527493274828448 -489,7.0,27.0,-1.4439790613954469,4.540814658476248 -489,8.0,5.0,0.0,4.915840805411357 -489,8.0,8.0,0.0,-18.706293706293707 -489,8.0,9.0,0.0,9.090909090909092 -489,8.0,10.0,0.0,4.807692307692308 -489,9.0,8.0,0.0,9.090909090909092 -489,9.0,9.0,8.36018899436458,-28.604485403513436 -489,9.0,16.0,-3.956039125715353,10.317447719844054 -489,9.0,19.0,-1.7848303152666305,3.98535828943083 -489,9.0,21.0,-2.619319553382597,5.400770303329455 -489,10.0,8.0,0.0,4.807692307692308 -489,10.0,10.0,0.0,-4.807692307692308 -489,11.0,3.0,0.0,4.191255364806866 -489,11.0,11.0,6.573961583776156,-24.424167659260668 -489,11.0,12.0,0.0,7.142857142857143 -489,11.0,13.0,-1.5265676088395577,3.1734252729654173 -489,11.0,14.0,-3.0953961826564296,6.097275864326261 -489,11.0,15.0,-1.9519977922801688,4.104359379111847 -489,12.0,11.0,0.0,7.142857142857143 -489,12.0,12.0,0.0,-7.142857142857143 -489,13.0,11.0,-1.5265676088395577,3.1734252729654173 -489,13.0,13.0,1.5265676088395577,-3.1734252729654173 -489,14.0,11.0,-3.0953961826564296,6.097275864326261 -489,14.0,14.0,5.063745131558092,-10.073340741107616 -489,14.0,22.0,-1.9683489489016612,3.976064876781356 -489,15.0,11.0,-1.9519977922801688,4.104359379111847 -489,15.0,15.0,3.271064728633931,-8.94513365126506 -489,15.0,16.0,-1.3190669363537617,4.8407742721532125 -489,16.0,9.0,-3.956039125715353,10.317447719844054 -489,16.0,15.0,-1.3190669363537617,4.8407742721532125 -489,16.0,16.0,5.275106062069114,-15.158221991997266 -489,17.0,17.0,3.0756864340087167,-6.218758799278971 -489,17.0,18.0,-3.0756864340087167,6.218758799278971 -489,18.0,17.0,-3.0756864340087167,6.218758799278971 -489,18.0,18.0,8.958039375185187,-17.98346468163191 -489,18.0,19.0,-5.88235294117647,11.76470588235294 -489,19.0,9.0,-1.7848303152666305,3.98535828943083 -489,19.0,18.0,-5.88235294117647,11.76470588235294 -489,19.0,19.0,7.6671832564431,-15.75006417178377 -489,20.0,20.0,16.774641369736234,-34.127718648773715 -489,20.0,21.0,-16.774641369736234,34.127718648773715 -489,21.0,9.0,-2.619319553382597,5.400770303329455 -489,21.0,20.0,-16.774641369736234,34.127718648773715 -489,21.0,21.0,21.93449907537439,-43.48289181517921 -489,21.0,23.0,-2.5405381522555563,3.95440286307604 -489,22.0,14.0,-1.9683489489016612,3.976064876781356 -489,22.0,22.0,3.429754555384988,-6.965303617315433 -489,22.0,23.0,-1.4614056064833263,2.989238740534077 -489,23.0,21.0,-2.5405381522555563,3.95440286307604 -489,23.0,22.0,-1.4614056064833263,2.989238740534077 -489,23.0,23.0,5.311836702613133,-9.188263657315172 -489,23.0,24.0,-1.3098929438742493,2.287622053705056 -489,24.0,23.0,-1.3098929438742493,2.287622053705056 -489,24.0,24.0,4.495715080321987,-7.864978761969621 -489,24.0,25.0,-1.2165301194494855,1.8171440463475024 -489,24.0,26.0,-1.9692920169982515,3.760212661917064 -489,25.0,24.0,-1.2165301194494855,1.8171440463475024 -489,25.0,25.0,1.2165301194494855,-1.8171440463475024 -489,26.0,24.0,-1.9692920169982515,3.760212661917064 -489,26.0,26.0,3.652281470778589,-9.46044252232512 -489,26.0,27.0,0.0,2.608731947574922 -489,26.0,28.0,-0.99553355095268,1.881005840357816 -489,26.0,29.0,-0.6874559028276572,1.293971494797717 -489,27.0,7.0,-1.4439790613954469,4.540814658476248 -489,27.0,26.0,0.0,2.608731947574922 -489,27.0,27.0,1.4439790613954469,-7.214385678698274 -489,28.0,26.0,-0.99553355095268,1.881005840357816 -489,28.0,28.0,1.9075867579849564,-3.604364401207048 -489,28.0,29.0,-0.9120532070322764,1.7233585608492326 -489,29.0,26.0,-0.6874559028276572,1.293971494797717 -489,29.0,28.0,-0.9120532070322764,1.7233585608492326 -489,29.0,29.0,1.5995091098599337,-3.0173300556469496 -490,0.0,0.0,6.765516048652632,-21.23160167089863 -490,0.0,1.0,-5.224646179885656,15.646726840803398 -490,0.0,2.0,-1.5408698687669766,5.631674830095234 -490,1.0,0.0,-5.224646179885656,15.646726840803398 -490,1.0,1.0,8.066137284758561,-25.55088539734126 -490,1.0,3.0,-1.7055303166990268,5.1973792282565086 -490,1.0,4.0,-1.1359607881738778,4.772479328281356 -490,2.0,0.0,-1.5408698687669766,5.631674830095234 -490,2.0,2.0,9.736318911079088,-29.13794745915803 -490,2.0,3.0,-8.19544904231211,23.5308726290628 -490,3.0,1.0,-1.7055303166990268,5.1973792282565086 -490,3.0,2.0,-8.19544904231211,23.5308726290628 -490,3.0,3.0,16.314103089185693,-55.509410535254254 -490,3.0,5.0,-6.413123730174556,22.31120356548123 -490,3.0,11.0,0.0,4.191255364806866 -490,4.0,1.0,-1.1359607881738778,4.772479328281356 -490,4.0,4.0,4.089980824135861,-12.190647245055052 -490,4.0,6.0,-2.954020035961983,7.449267916773697 -490,5.0,3.0,-6.413123730174556,22.31120356548123 -490,5.0,5.0,14.366178212168466,-50.69686966266924 -490,5.0,6.0,-3.590210423980992,11.02611441072814 -490,5.0,9.0,0.0,1.8561002591115965 -490,5.0,27.0,-4.362844058012917,15.463571542897856 -490,6.0,4.0,-2.954020035961983,7.449267916773697 -490,6.0,5.0,-3.590210423980992,11.02611441072814 -490,6.0,6.0,6.544230459942975,-18.45668232750184 -490,7.0,7.0,1.4439790613954469,-4.519414658476248 -490,7.0,27.0,-1.4439790613954469,4.540814658476248 -490,8.0,8.0,0.0,-13.8986013986014 -490,8.0,9.0,0.0,9.090909090909092 -490,8.0,10.0,0.0,4.807692307692308 -490,9.0,5.0,0.0,1.8561002591115965 -490,9.0,8.0,0.0,9.090909090909092 -490,9.0,9.0,13.462042814524237,-41.3837606675224 -490,9.0,16.0,-3.956039125715353,10.317447719844054 -490,9.0,19.0,-1.7848303152666305,3.98535828943083 -490,9.0,20.0,-5.101853820159654,10.98071411292983 -490,9.0,21.0,-2.619319553382597,5.400770303329455 -490,10.0,8.0,0.0,4.807692307692308 -490,10.0,10.0,0.0,-4.807692307692308 -490,11.0,3.0,0.0,4.191255364806866 -490,11.0,11.0,6.573961583776156,-24.424167659260668 -490,11.0,12.0,0.0,7.142857142857143 -490,11.0,13.0,-1.5265676088395577,3.1734252729654173 -490,11.0,14.0,-3.0953961826564296,6.097275864326261 -490,11.0,15.0,-1.9519977922801688,4.104359379111847 -490,12.0,11.0,0.0,7.142857142857143 -490,12.0,12.0,0.0,-7.142857142857143 -490,13.0,11.0,-1.5265676088395577,3.1734252729654173 -490,13.0,13.0,1.5265676088395577,-3.1734252729654173 -490,14.0,11.0,-3.0953961826564296,6.097275864326261 -490,14.0,14.0,6.874546281965293,-13.760759672738311 -490,14.0,17.0,-1.8108011504072024,3.687418931630696 -490,14.0,22.0,-1.9683489489016612,3.976064876781356 -490,15.0,11.0,-1.9519977922801688,4.104359379111847 -490,15.0,15.0,3.271064728633931,-8.94513365126506 -490,15.0,16.0,-1.3190669363537617,4.8407742721532125 -490,16.0,9.0,-3.956039125715353,10.317447719844054 -490,16.0,15.0,-1.3190669363537617,4.8407742721532125 -490,16.0,16.0,5.275106062069114,-15.158221991997266 -490,17.0,14.0,-1.8108011504072024,3.687418931630696 -490,17.0,17.0,4.886487584415919,-9.906177730909668 -490,17.0,18.0,-3.0756864340087167,6.218758799278971 -490,18.0,17.0,-3.0756864340087167,6.218758799278971 -490,18.0,18.0,8.958039375185187,-17.98346468163191 -490,18.0,19.0,-5.88235294117647,11.76470588235294 -490,19.0,9.0,-1.7848303152666305,3.98535828943083 -490,19.0,18.0,-5.88235294117647,11.76470588235294 -490,19.0,19.0,7.6671832564431,-15.75006417178377 -490,20.0,9.0,-5.101853820159654,10.98071411292983 -490,20.0,20.0,21.876495189895888,-45.10843276170355 -490,20.0,21.0,-16.774641369736234,34.127718648773715 -490,21.0,9.0,-2.619319553382597,5.400770303329455 -490,21.0,20.0,-16.774641369736234,34.127718648773715 -490,21.0,21.0,19.393960923118836,-39.52848895210317 -490,22.0,14.0,-1.9683489489016612,3.976064876781356 -490,22.0,22.0,3.429754555384988,-6.965303617315433 -490,22.0,23.0,-1.4614056064833263,2.989238740534077 -490,23.0,22.0,-1.4614056064833263,2.989238740534077 -490,23.0,23.0,2.771298550357576,-5.233860794239132 -490,23.0,24.0,-1.3098929438742493,2.287622053705056 -490,24.0,23.0,-1.3098929438742493,2.287622053705056 -490,24.0,24.0,2.526423063323735,-4.104766100052558 -490,24.0,25.0,-1.2165301194494855,1.8171440463475024 -490,25.0,24.0,-1.2165301194494855,1.8171440463475024 -490,25.0,25.0,1.2165301194494855,-1.8171440463475024 -490,26.0,26.0,1.6829894537803372,-5.700229860408058 -490,26.0,27.0,0.0,2.608731947574922 -490,26.0,28.0,-0.99553355095268,1.881005840357816 -490,26.0,29.0,-0.6874559028276572,1.293971494797717 -490,27.0,5.0,-4.362844058012917,15.463571542897856 -490,27.0,7.0,-1.4439790613954469,4.540814658476248 -490,27.0,26.0,0.0,2.608731947574922 -490,27.0,27.0,5.806823119408364,-22.67145722159613 -490,28.0,26.0,-0.99553355095268,1.881005840357816 -490,28.0,28.0,1.9075867579849564,-3.604364401207048 -490,28.0,29.0,-0.9120532070322764,1.7233585608492326 -490,29.0,26.0,-0.6874559028276572,1.293971494797717 -490,29.0,28.0,-0.9120532070322764,1.7233585608492326 -490,29.0,29.0,1.5995091098599337,-3.0173300556469496 -491,0.0,0.0,6.765516048652632,-21.23160167089863 -491,0.0,1.0,-5.224646179885656,15.646726840803398 -491,0.0,2.0,-1.5408698687669766,5.631674830095234 -491,1.0,0.0,-5.224646179885656,15.646726840803398 -491,1.0,1.0,9.75228216552403,-30.648662892676068 -491,1.0,3.0,-1.7055303166990268,5.1973792282565086 -491,1.0,4.0,-1.1359607881738778,4.772479328281356 -491,1.0,5.0,-1.6861448807654689,5.116477495334806 -491,2.0,0.0,-1.5408698687669766,5.631674830095234 -491,2.0,2.0,9.736318911079088,-29.13794745915803 -491,2.0,3.0,-8.19544904231211,23.5308726290628 -491,3.0,1.0,-1.7055303166990268,5.1973792282565086 -491,3.0,2.0,-8.19544904231211,23.5308726290628 -491,3.0,3.0,16.314103089185693,-55.509410535254254 -491,3.0,5.0,-6.413123730174556,22.31120356548123 -491,3.0,11.0,0.0,4.191255364806866 -491,4.0,1.0,-1.1359607881738778,4.772479328281356 -491,4.0,4.0,4.089980824135861,-12.190647245055052 -491,4.0,6.0,-2.954020035961983,7.449267916773697 -491,5.0,1.0,-1.6861448807654689,5.116477495334806 -491,5.0,3.0,-6.413123730174556,22.31120356548123 -491,5.0,5.0,22.341631269034565,-82.8291478657789 -491,5.0,6.0,-3.590210423980992,11.02611441072814 -491,5.0,7.0,-6.289308176100628,22.0125786163522 -491,5.0,8.0,0.0,4.915840805411357 -491,5.0,9.0,0.0,1.8561002591115965 -491,5.0,27.0,-4.362844058012917,15.463571542897856 -491,6.0,4.0,-2.954020035961983,7.449267916773697 -491,6.0,5.0,-3.590210423980992,11.02611441072814 -491,6.0,6.0,6.544230459942975,-18.45668232750184 -491,7.0,5.0,-6.289308176100628,22.0125786163522 -491,7.0,7.0,7.733287237496075,-26.527493274828448 -491,7.0,27.0,-1.4439790613954469,4.540814658476248 -491,8.0,5.0,0.0,4.915840805411357 -491,8.0,8.0,0.0,-18.706293706293707 -491,8.0,9.0,0.0,9.090909090909092 -491,8.0,10.0,0.0,4.807692307692308 -491,9.0,5.0,0.0,1.8561002591115965 -491,9.0,8.0,0.0,9.090909090909092 -491,9.0,9.0,8.36018899436458,-30.40304655459257 -491,9.0,16.0,-3.956039125715353,10.317447719844054 -491,9.0,19.0,-1.7848303152666305,3.98535828943083 -491,9.0,21.0,-2.619319553382597,5.400770303329455 -491,10.0,8.0,0.0,4.807692307692308 -491,10.0,10.0,0.0,-4.807692307692308 -491,11.0,3.0,0.0,4.191255364806866 -491,11.0,11.0,6.573961583776156,-24.424167659260668 -491,11.0,12.0,0.0,7.142857142857143 -491,11.0,13.0,-1.5265676088395577,3.1734252729654173 -491,11.0,14.0,-3.0953961826564296,6.097275864326261 -491,11.0,15.0,-1.9519977922801688,4.104359379111847 -491,12.0,11.0,0.0,7.142857142857143 -491,12.0,12.0,0.0,-7.142857142857143 -491,13.0,11.0,-1.5265676088395577,3.1734252729654173 -491,13.0,13.0,4.01751987283902,-5.424299332335067 -491,13.0,14.0,-2.4909522639994623,2.250874059369649 -491,14.0,11.0,-3.0953961826564296,6.097275864326261 -491,14.0,13.0,-2.4909522639994623,2.250874059369649 -491,14.0,14.0,9.365498545964757,-16.01163373210796 -491,14.0,17.0,-1.8108011504072024,3.687418931630696 -491,14.0,22.0,-1.9683489489016612,3.976064876781356 -491,15.0,11.0,-1.9519977922801688,4.104359379111847 -491,15.0,15.0,3.271064728633931,-8.94513365126506 -491,15.0,16.0,-1.3190669363537617,4.8407742721532125 -491,16.0,9.0,-3.956039125715353,10.317447719844054 -491,16.0,15.0,-1.3190669363537617,4.8407742721532125 -491,16.0,16.0,5.275106062069114,-15.158221991997266 -491,17.0,14.0,-1.8108011504072024,3.687418931630696 -491,17.0,17.0,1.8108011504072024,-3.687418931630696 -491,18.0,18.0,5.88235294117647,-11.76470588235294 -491,18.0,19.0,-5.88235294117647,11.76470588235294 -491,19.0,9.0,-1.7848303152666305,3.98535828943083 -491,19.0,18.0,-5.88235294117647,11.76470588235294 -491,19.0,19.0,7.6671832564431,-15.75006417178377 -491,20.0,20.0,16.774641369736234,-34.127718648773715 -491,20.0,21.0,-16.774641369736234,34.127718648773715 -491,21.0,9.0,-2.619319553382597,5.400770303329455 -491,21.0,20.0,-16.774641369736234,34.127718648773715 -491,21.0,21.0,21.93449907537439,-43.48289181517921 -491,21.0,23.0,-2.5405381522555563,3.95440286307604 -491,22.0,14.0,-1.9683489489016612,3.976064876781356 -491,22.0,22.0,3.429754555384988,-6.965303617315433 -491,22.0,23.0,-1.4614056064833263,2.989238740534077 -491,23.0,21.0,-2.5405381522555563,3.95440286307604 -491,23.0,22.0,-1.4614056064833263,2.989238740534077 -491,23.0,23.0,5.311836702613133,-9.188263657315172 -491,23.0,24.0,-1.3098929438742493,2.287622053705056 -491,24.0,23.0,-1.3098929438742493,2.287622053705056 -491,24.0,24.0,4.495715080321987,-7.864978761969621 -491,24.0,25.0,-1.2165301194494855,1.8171440463475024 -491,24.0,26.0,-1.9692920169982515,3.760212661917064 -491,25.0,24.0,-1.2165301194494855,1.8171440463475024 -491,25.0,25.0,1.2165301194494855,-1.8171440463475024 -491,26.0,24.0,-1.9692920169982515,3.760212661917064 -491,26.0,26.0,2.9648255679509314,-8.166471027527404 -491,26.0,27.0,0.0,2.608731947574922 -491,26.0,28.0,-0.99553355095268,1.881005840357816 -491,27.0,5.0,-4.362844058012917,15.463571542897856 -491,27.0,7.0,-1.4439790613954469,4.540814658476248 -491,27.0,26.0,0.0,2.608731947574922 -491,27.0,27.0,5.806823119408364,-22.67145722159613 -491,28.0,26.0,-0.99553355095268,1.881005840357816 -491,28.0,28.0,1.9075867579849564,-3.604364401207048 -491,28.0,29.0,-0.9120532070322764,1.7233585608492326 -491,29.0,28.0,-0.9120532070322764,1.7233585608492326 -491,29.0,29.0,0.9120532070322764,-1.7233585608492326 -492,0.0,0.0,1.5408698687669766,-5.611274830095233 -492,0.0,2.0,-1.5408698687669766,5.631674830095234 -492,1.0,1.0,4.527635985638374,-15.028336051872673 -492,1.0,3.0,-1.7055303166990268,5.1973792282565086 -492,1.0,4.0,-1.1359607881738778,4.772479328281356 -492,1.0,5.0,-1.6861448807654689,5.116477495334806 -492,2.0,0.0,-1.5408698687669766,5.631674830095234 -492,2.0,2.0,9.736318911079088,-29.13794745915803 -492,2.0,3.0,-8.19544904231211,23.5308726290628 -492,3.0,1.0,-1.7055303166990268,5.1973792282565086 -492,3.0,2.0,-8.19544904231211,23.5308726290628 -492,3.0,3.0,16.314103089185693,-55.509410535254254 -492,3.0,5.0,-6.413123730174556,22.31120356548123 -492,3.0,11.0,0.0,4.191255364806866 -492,4.0,1.0,-1.1359607881738778,4.772479328281356 -492,4.0,4.0,4.089980824135861,-12.190647245055052 -492,4.0,6.0,-2.954020035961983,7.449267916773697 -492,5.0,1.0,-1.6861448807654689,5.116477495334806 -492,5.0,3.0,-6.413123730174556,22.31120356548123 -492,5.0,5.0,22.341631269034565,-82.8291478657789 -492,5.0,6.0,-3.590210423980992,11.02611441072814 -492,5.0,7.0,-6.289308176100628,22.0125786163522 -492,5.0,8.0,0.0,4.915840805411357 -492,5.0,9.0,0.0,1.8561002591115965 -492,5.0,27.0,-4.362844058012917,15.463571542897856 -492,6.0,4.0,-2.954020035961983,7.449267916773697 -492,6.0,5.0,-3.590210423980992,11.02611441072814 -492,6.0,6.0,6.544230459942975,-18.45668232750184 -492,7.0,5.0,-6.289308176100628,22.0125786163522 -492,7.0,7.0,7.733287237496075,-26.527493274828448 -492,7.0,27.0,-1.4439790613954469,4.540814658476248 -492,8.0,5.0,0.0,4.915840805411357 -492,8.0,8.0,0.0,-18.706293706293707 -492,8.0,9.0,0.0,9.090909090909092 -492,8.0,10.0,0.0,4.807692307692308 -492,9.0,5.0,0.0,1.8561002591115965 -492,9.0,8.0,0.0,9.090909090909092 -492,9.0,9.0,13.462042814524237,-41.3837606675224 -492,9.0,16.0,-3.956039125715353,10.317447719844054 -492,9.0,19.0,-1.7848303152666305,3.98535828943083 -492,9.0,20.0,-5.101853820159654,10.98071411292983 -492,9.0,21.0,-2.619319553382597,5.400770303329455 -492,10.0,8.0,0.0,4.807692307692308 -492,10.0,10.0,0.0,-4.807692307692308 -492,11.0,3.0,0.0,4.191255364806866 -492,11.0,11.0,3.478565401119727,-18.326891794934408 -492,11.0,12.0,0.0,7.142857142857143 -492,11.0,13.0,-1.5265676088395577,3.1734252729654173 -492,11.0,15.0,-1.9519977922801688,4.104359379111847 -492,12.0,11.0,0.0,7.142857142857143 -492,12.0,12.0,0.0,-7.142857142857143 -492,13.0,11.0,-1.5265676088395577,3.1734252729654173 -492,13.0,13.0,4.01751987283902,-5.424299332335067 -492,13.0,14.0,-2.4909522639994623,2.250874059369649 -492,14.0,13.0,-2.4909522639994623,2.250874059369649 -492,14.0,14.0,6.270102363308326,-9.9143578677817 -492,14.0,17.0,-1.8108011504072024,3.687418931630696 -492,14.0,22.0,-1.9683489489016612,3.976064876781356 -492,15.0,11.0,-1.9519977922801688,4.104359379111847 -492,15.0,15.0,3.271064728633931,-8.94513365126506 -492,15.0,16.0,-1.3190669363537617,4.8407742721532125 -492,16.0,9.0,-3.956039125715353,10.317447719844054 -492,16.0,15.0,-1.3190669363537617,4.8407742721532125 -492,16.0,16.0,5.275106062069114,-15.158221991997266 -492,17.0,14.0,-1.8108011504072024,3.687418931630696 -492,17.0,17.0,4.886487584415919,-9.906177730909668 -492,17.0,18.0,-3.0756864340087167,6.218758799278971 -492,18.0,17.0,-3.0756864340087167,6.218758799278971 -492,18.0,18.0,8.958039375185187,-17.98346468163191 -492,18.0,19.0,-5.88235294117647,11.76470588235294 -492,19.0,9.0,-1.7848303152666305,3.98535828943083 -492,19.0,18.0,-5.88235294117647,11.76470588235294 -492,19.0,19.0,7.6671832564431,-15.75006417178377 -492,20.0,9.0,-5.101853820159654,10.98071411292983 -492,20.0,20.0,21.876495189895888,-45.10843276170355 -492,20.0,21.0,-16.774641369736234,34.127718648773715 -492,21.0,9.0,-2.619319553382597,5.400770303329455 -492,21.0,20.0,-16.774641369736234,34.127718648773715 -492,21.0,21.0,21.93449907537439,-43.48289181517921 -492,21.0,23.0,-2.5405381522555563,3.95440286307604 -492,22.0,14.0,-1.9683489489016612,3.976064876781356 -492,22.0,22.0,3.429754555384988,-6.965303617315433 -492,22.0,23.0,-1.4614056064833263,2.989238740534077 -492,23.0,21.0,-2.5405381522555563,3.95440286307604 -492,23.0,22.0,-1.4614056064833263,2.989238740534077 -492,23.0,23.0,5.311836702613133,-9.188263657315172 -492,23.0,24.0,-1.3098929438742493,2.287622053705056 -492,24.0,23.0,-1.3098929438742493,2.287622053705056 -492,24.0,24.0,4.495715080321987,-7.864978761969621 -492,24.0,25.0,-1.2165301194494855,1.8171440463475024 -492,24.0,26.0,-1.9692920169982515,3.760212661917064 -492,25.0,24.0,-1.2165301194494855,1.8171440463475024 -492,25.0,25.0,1.2165301194494855,-1.8171440463475024 -492,26.0,24.0,-1.9692920169982515,3.760212661917064 -492,26.0,26.0,3.652281470778589,-9.46044252232512 -492,26.0,27.0,0.0,2.608731947574922 -492,26.0,28.0,-0.99553355095268,1.881005840357816 -492,26.0,29.0,-0.6874559028276572,1.293971494797717 -492,27.0,5.0,-4.362844058012917,15.463571542897856 -492,27.0,7.0,-1.4439790613954469,4.540814658476248 -492,27.0,26.0,0.0,2.608731947574922 -492,27.0,27.0,5.806823119408364,-22.67145722159613 -492,28.0,26.0,-0.99553355095268,1.881005840357816 -492,28.0,28.0,1.9075867579849564,-3.604364401207048 -492,28.0,29.0,-0.9120532070322764,1.7233585608492326 -492,29.0,26.0,-0.6874559028276572,1.293971494797717 -492,29.0,28.0,-0.9120532070322764,1.7233585608492326 -492,29.0,29.0,1.5995091098599337,-3.0173300556469496 -493,0.0,0.0,6.765516048652632,-21.23160167089863 -493,0.0,1.0,-5.224646179885656,15.646726840803398 -493,0.0,2.0,-1.5408698687669766,5.631674830095234 -493,1.0,0.0,-5.224646179885656,15.646726840803398 -493,1.0,1.0,8.046751848825002,-25.46968366441956 -493,1.0,4.0,-1.1359607881738778,4.772479328281356 -493,1.0,5.0,-1.6861448807654689,5.116477495334806 -493,2.0,0.0,-1.5408698687669766,5.631674830095234 -493,2.0,2.0,9.736318911079088,-29.13794745915803 -493,2.0,3.0,-8.19544904231211,23.5308726290628 -493,3.0,2.0,-8.19544904231211,23.5308726290628 -493,3.0,3.0,14.608572772486664,-50.33043130699775 -493,3.0,5.0,-6.413123730174556,22.31120356548123 -493,3.0,11.0,0.0,4.191255364806866 -493,4.0,1.0,-1.1359607881738778,4.772479328281356 -493,4.0,4.0,4.089980824135861,-12.190647245055052 -493,4.0,6.0,-2.954020035961983,7.449267916773697 -493,5.0,1.0,-1.6861448807654689,5.116477495334806 -493,5.0,3.0,-6.413123730174556,22.31120356548123 -493,5.0,5.0,22.341631269034565,-82.8291478657789 -493,5.0,6.0,-3.590210423980992,11.02611441072814 -493,5.0,7.0,-6.289308176100628,22.0125786163522 -493,5.0,8.0,0.0,4.915840805411357 -493,5.0,9.0,0.0,1.8561002591115965 -493,5.0,27.0,-4.362844058012917,15.463571542897856 -493,6.0,4.0,-2.954020035961983,7.449267916773697 -493,6.0,5.0,-3.590210423980992,11.02611441072814 -493,6.0,6.0,6.544230459942975,-18.45668232750184 -493,7.0,5.0,-6.289308176100628,22.0125786163522 -493,7.0,7.0,7.733287237496075,-26.527493274828448 -493,7.0,27.0,-1.4439790613954469,4.540814658476248 -493,8.0,5.0,0.0,4.915840805411357 -493,8.0,8.0,0.0,-18.706293706293707 -493,8.0,9.0,0.0,9.090909090909092 -493,8.0,10.0,0.0,4.807692307692308 -493,9.0,5.0,0.0,1.8561002591115965 -493,9.0,8.0,0.0,9.090909090909092 -493,9.0,9.0,9.506003688808882,-31.06631294767834 -493,9.0,19.0,-1.7848303152666305,3.98535828943083 -493,9.0,20.0,-5.101853820159654,10.98071411292983 -493,9.0,21.0,-2.619319553382597,5.400770303329455 -493,10.0,8.0,0.0,4.807692307692308 -493,10.0,10.0,0.0,-4.807692307692308 -493,11.0,3.0,0.0,4.191255364806866 -493,11.0,11.0,6.573961583776156,-24.424167659260668 -493,11.0,12.0,0.0,7.142857142857143 -493,11.0,13.0,-1.5265676088395577,3.1734252729654173 -493,11.0,14.0,-3.0953961826564296,6.097275864326261 -493,11.0,15.0,-1.9519977922801688,4.104359379111847 -493,12.0,11.0,0.0,7.142857142857143 -493,12.0,12.0,0.0,-7.142857142857143 -493,13.0,11.0,-1.5265676088395577,3.1734252729654173 -493,13.0,13.0,4.01751987283902,-5.424299332335067 -493,13.0,14.0,-2.4909522639994623,2.250874059369649 -493,14.0,11.0,-3.0953961826564296,6.097275864326261 -493,14.0,13.0,-2.4909522639994623,2.250874059369649 -493,14.0,14.0,7.397149597063095,-12.035568855326606 -493,14.0,17.0,-1.8108011504072024,3.687418931630696 -493,15.0,11.0,-1.9519977922801688,4.104359379111847 -493,15.0,15.0,3.271064728633931,-8.94513365126506 -493,15.0,16.0,-1.3190669363537617,4.8407742721532125 -493,16.0,15.0,-1.3190669363537617,4.8407742721532125 -493,16.0,16.0,1.3190669363537617,-4.8407742721532125 -493,17.0,14.0,-1.8108011504072024,3.687418931630696 -493,17.0,17.0,4.886487584415919,-9.906177730909668 -493,17.0,18.0,-3.0756864340087167,6.218758799278971 -493,18.0,17.0,-3.0756864340087167,6.218758799278971 -493,18.0,18.0,3.0756864340087167,-6.218758799278971 -493,19.0,9.0,-1.7848303152666305,3.98535828943083 -493,19.0,19.0,1.7848303152666305,-3.98535828943083 -493,20.0,9.0,-5.101853820159654,10.98071411292983 -493,20.0,20.0,21.876495189895888,-45.10843276170355 -493,20.0,21.0,-16.774641369736234,34.127718648773715 -493,21.0,9.0,-2.619319553382597,5.400770303329455 -493,21.0,20.0,-16.774641369736234,34.127718648773715 -493,21.0,21.0,21.93449907537439,-43.48289181517921 -493,21.0,23.0,-2.5405381522555563,3.95440286307604 -493,22.0,22.0,1.4614056064833263,-2.989238740534077 -493,22.0,23.0,-1.4614056064833263,2.989238740534077 -493,23.0,21.0,-2.5405381522555563,3.95440286307604 -493,23.0,22.0,-1.4614056064833263,2.989238740534077 -493,23.0,23.0,5.311836702613133,-9.188263657315172 -493,23.0,24.0,-1.3098929438742493,2.287622053705056 -493,24.0,23.0,-1.3098929438742493,2.287622053705056 -493,24.0,24.0,4.495715080321987,-7.864978761969621 -493,24.0,25.0,-1.2165301194494855,1.8171440463475024 -493,24.0,26.0,-1.9692920169982515,3.760212661917064 -493,25.0,24.0,-1.2165301194494855,1.8171440463475024 -493,25.0,25.0,1.2165301194494855,-1.8171440463475024 -493,26.0,24.0,-1.9692920169982515,3.760212661917064 -493,26.0,26.0,3.652281470778589,-9.46044252232512 -493,26.0,27.0,0.0,2.608731947574922 -493,26.0,28.0,-0.99553355095268,1.881005840357816 -493,26.0,29.0,-0.6874559028276572,1.293971494797717 -493,27.0,5.0,-4.362844058012917,15.463571542897856 -493,27.0,7.0,-1.4439790613954469,4.540814658476248 -493,27.0,26.0,0.0,2.608731947574922 -493,27.0,27.0,5.806823119408364,-22.67145722159613 -493,28.0,26.0,-0.99553355095268,1.881005840357816 -493,28.0,28.0,1.9075867579849564,-3.604364401207048 -493,28.0,29.0,-0.9120532070322764,1.7233585608492326 -493,29.0,26.0,-0.6874559028276572,1.293971494797717 -493,29.0,28.0,-0.9120532070322764,1.7233585608492326 -493,29.0,29.0,1.5995091098599337,-3.0173300556469496 -494,0.0,0.0,6.765516048652632,-21.23160167089863 -494,0.0,1.0,-5.224646179885656,15.646726840803398 -494,0.0,2.0,-1.5408698687669766,5.631674830095234 -494,1.0,0.0,-5.224646179885656,15.646726840803398 -494,1.0,1.0,9.75228216552403,-30.648662892676068 -494,1.0,3.0,-1.7055303166990268,5.1973792282565086 -494,1.0,4.0,-1.1359607881738778,4.772479328281356 -494,1.0,5.0,-1.6861448807654689,5.116477495334806 -494,2.0,0.0,-1.5408698687669766,5.631674830095234 -494,2.0,2.0,9.736318911079088,-29.13794745915803 -494,2.0,3.0,-8.19544904231211,23.5308726290628 -494,3.0,1.0,-1.7055303166990268,5.1973792282565086 -494,3.0,2.0,-8.19544904231211,23.5308726290628 -494,3.0,3.0,16.314103089185693,-55.509410535254254 -494,3.0,5.0,-6.413123730174556,22.31120356548123 -494,3.0,11.0,0.0,4.191255364806866 -494,4.0,1.0,-1.1359607881738778,4.772479328281356 -494,4.0,4.0,4.089980824135861,-12.190647245055052 -494,4.0,6.0,-2.954020035961983,7.449267916773697 -494,5.0,1.0,-1.6861448807654689,5.116477495334806 -494,5.0,3.0,-6.413123730174556,22.31120356548123 -494,5.0,5.0,22.341631269034565,-82.8291478657789 -494,5.0,6.0,-3.590210423980992,11.02611441072814 -494,5.0,7.0,-6.289308176100628,22.0125786163522 -494,5.0,8.0,0.0,4.915840805411357 -494,5.0,9.0,0.0,1.8561002591115965 -494,5.0,27.0,-4.362844058012917,15.463571542897856 -494,6.0,4.0,-2.954020035961983,7.449267916773697 -494,6.0,5.0,-3.590210423980992,11.02611441072814 -494,6.0,6.0,6.544230459942975,-18.45668232750184 -494,7.0,5.0,-6.289308176100628,22.0125786163522 -494,7.0,7.0,7.733287237496075,-26.527493274828448 -494,7.0,27.0,-1.4439790613954469,4.540814658476248 -494,8.0,5.0,0.0,4.915840805411357 -494,8.0,8.0,0.0,-18.706293706293707 -494,8.0,9.0,0.0,9.090909090909092 -494,8.0,10.0,0.0,4.807692307692308 -494,9.0,5.0,0.0,1.8561002591115965 -494,9.0,8.0,0.0,9.090909090909092 -494,9.0,9.0,13.462042814524237,-41.3837606675224 -494,9.0,16.0,-3.956039125715353,10.317447719844054 -494,9.0,19.0,-1.7848303152666305,3.98535828943083 -494,9.0,20.0,-5.101853820159654,10.98071411292983 -494,9.0,21.0,-2.619319553382597,5.400770303329455 -494,10.0,8.0,0.0,4.807692307692308 -494,10.0,10.0,0.0,-4.807692307692308 -494,11.0,3.0,0.0,4.191255364806866 -494,11.0,11.0,1.9519977922801688,-15.15346652196899 -494,11.0,12.0,0.0,7.142857142857143 -494,11.0,15.0,-1.9519977922801688,4.104359379111847 -494,12.0,11.0,0.0,7.142857142857143 -494,12.0,12.0,0.0,-7.142857142857143 -494,13.0,13.0,2.4909522639994623,-2.250874059369649 -494,13.0,14.0,-2.4909522639994623,2.250874059369649 -494,14.0,13.0,-2.4909522639994623,2.250874059369649 -494,14.0,14.0,6.270102363308326,-9.9143578677817 -494,14.0,17.0,-1.8108011504072024,3.687418931630696 -494,14.0,22.0,-1.9683489489016612,3.976064876781356 -494,15.0,11.0,-1.9519977922801688,4.104359379111847 -494,15.0,15.0,3.271064728633931,-8.94513365126506 -494,15.0,16.0,-1.3190669363537617,4.8407742721532125 -494,16.0,9.0,-3.956039125715353,10.317447719844054 -494,16.0,15.0,-1.3190669363537617,4.8407742721532125 -494,16.0,16.0,5.275106062069114,-15.158221991997266 -494,17.0,14.0,-1.8108011504072024,3.687418931630696 -494,17.0,17.0,4.886487584415919,-9.906177730909668 -494,17.0,18.0,-3.0756864340087167,6.218758799278971 -494,18.0,17.0,-3.0756864340087167,6.218758799278971 -494,18.0,18.0,8.958039375185187,-17.98346468163191 -494,18.0,19.0,-5.88235294117647,11.76470588235294 -494,19.0,9.0,-1.7848303152666305,3.98535828943083 -494,19.0,18.0,-5.88235294117647,11.76470588235294 -494,19.0,19.0,7.6671832564431,-15.75006417178377 -494,20.0,9.0,-5.101853820159654,10.98071411292983 -494,20.0,20.0,21.876495189895888,-45.10843276170355 -494,20.0,21.0,-16.774641369736234,34.127718648773715 -494,21.0,9.0,-2.619319553382597,5.400770303329455 -494,21.0,20.0,-16.774641369736234,34.127718648773715 -494,21.0,21.0,21.93449907537439,-43.48289181517921 -494,21.0,23.0,-2.5405381522555563,3.95440286307604 -494,22.0,14.0,-1.9683489489016612,3.976064876781356 -494,22.0,22.0,3.429754555384988,-6.965303617315433 -494,22.0,23.0,-1.4614056064833263,2.989238740534077 -494,23.0,21.0,-2.5405381522555563,3.95440286307604 -494,23.0,22.0,-1.4614056064833263,2.989238740534077 -494,23.0,23.0,5.311836702613133,-9.188263657315172 -494,23.0,24.0,-1.3098929438742493,2.287622053705056 -494,24.0,23.0,-1.3098929438742493,2.287622053705056 -494,24.0,24.0,4.495715080321987,-7.864978761969621 -494,24.0,25.0,-1.2165301194494855,1.8171440463475024 -494,24.0,26.0,-1.9692920169982515,3.760212661917064 -494,25.0,24.0,-1.2165301194494855,1.8171440463475024 -494,25.0,25.0,1.2165301194494855,-1.8171440463475024 -494,26.0,24.0,-1.9692920169982515,3.760212661917064 -494,26.0,26.0,3.652281470778589,-9.46044252232512 -494,26.0,27.0,0.0,2.608731947574922 -494,26.0,28.0,-0.99553355095268,1.881005840357816 -494,26.0,29.0,-0.6874559028276572,1.293971494797717 -494,27.0,5.0,-4.362844058012917,15.463571542897856 -494,27.0,7.0,-1.4439790613954469,4.540814658476248 -494,27.0,26.0,0.0,2.608731947574922 -494,27.0,27.0,5.806823119408364,-22.67145722159613 -494,28.0,26.0,-0.99553355095268,1.881005840357816 -494,28.0,28.0,1.9075867579849564,-3.604364401207048 -494,28.0,29.0,-0.9120532070322764,1.7233585608492326 -494,29.0,26.0,-0.6874559028276572,1.293971494797717 -494,29.0,28.0,-0.9120532070322764,1.7233585608492326 -494,29.0,29.0,1.5995091098599337,-3.0173300556469496 -495,0.0,0.0,6.765516048652632,-21.23160167089863 -495,0.0,1.0,-5.224646179885656,15.646726840803398 -495,0.0,2.0,-1.5408698687669766,5.631674830095234 -495,1.0,0.0,-5.224646179885656,15.646726840803398 -495,1.0,1.0,9.75228216552403,-30.648662892676068 -495,1.0,3.0,-1.7055303166990268,5.1973792282565086 -495,1.0,4.0,-1.1359607881738778,4.772479328281356 -495,1.0,5.0,-1.6861448807654689,5.116477495334806 -495,2.0,0.0,-1.5408698687669766,5.631674830095234 -495,2.0,2.0,9.736318911079088,-29.13794745915803 -495,2.0,3.0,-8.19544904231211,23.5308726290628 -495,3.0,1.0,-1.7055303166990268,5.1973792282565086 -495,3.0,2.0,-8.19544904231211,23.5308726290628 -495,3.0,3.0,16.314103089185693,-55.509410535254254 -495,3.0,5.0,-6.413123730174556,22.31120356548123 -495,3.0,11.0,0.0,4.191255364806866 -495,4.0,1.0,-1.1359607881738778,4.772479328281356 -495,4.0,4.0,4.089980824135861,-12.190647245055052 -495,4.0,6.0,-2.954020035961983,7.449267916773697 -495,5.0,1.0,-1.6861448807654689,5.116477495334806 -495,5.0,3.0,-6.413123730174556,22.31120356548123 -495,5.0,5.0,22.341631269034565,-82.8291478657789 -495,5.0,6.0,-3.590210423980992,11.02611441072814 -495,5.0,7.0,-6.289308176100628,22.0125786163522 -495,5.0,8.0,0.0,4.915840805411357 -495,5.0,9.0,0.0,1.8561002591115965 -495,5.0,27.0,-4.362844058012917,15.463571542897856 -495,6.0,4.0,-2.954020035961983,7.449267916773697 -495,6.0,5.0,-3.590210423980992,11.02611441072814 -495,6.0,6.0,6.544230459942975,-18.45668232750184 -495,7.0,5.0,-6.289308176100628,22.0125786163522 -495,7.0,7.0,7.733287237496075,-26.527493274828448 -495,7.0,27.0,-1.4439790613954469,4.540814658476248 -495,8.0,5.0,0.0,4.915840805411357 -495,8.0,8.0,0.0,-18.706293706293707 -495,8.0,9.0,0.0,9.090909090909092 -495,8.0,10.0,0.0,4.807692307692308 -495,9.0,5.0,0.0,1.8561002591115965 -495,9.0,8.0,0.0,9.090909090909092 -495,9.0,9.0,13.462042814524237,-41.3837606675224 -495,9.0,16.0,-3.956039125715353,10.317447719844054 -495,9.0,19.0,-1.7848303152666305,3.98535828943083 -495,9.0,20.0,-5.101853820159654,10.98071411292983 -495,9.0,21.0,-2.619319553382597,5.400770303329455 -495,10.0,8.0,0.0,4.807692307692308 -495,10.0,10.0,0.0,-4.807692307692308 -495,11.0,3.0,0.0,4.191255364806866 -495,11.0,11.0,6.573961583776156,-24.424167659260668 -495,11.0,12.0,0.0,7.142857142857143 -495,11.0,13.0,-1.5265676088395577,3.1734252729654173 -495,11.0,14.0,-3.0953961826564296,6.097275864326261 -495,11.0,15.0,-1.9519977922801688,4.104359379111847 -495,12.0,11.0,0.0,7.142857142857143 -495,12.0,12.0,0.0,-7.142857142857143 -495,13.0,11.0,-1.5265676088395577,3.1734252729654173 -495,13.0,13.0,4.01751987283902,-5.424299332335067 -495,13.0,14.0,-2.4909522639994623,2.250874059369649 -495,14.0,11.0,-3.0953961826564296,6.097275864326261 -495,14.0,13.0,-2.4909522639994623,2.250874059369649 -495,14.0,14.0,9.365498545964757,-16.01163373210796 -495,14.0,17.0,-1.8108011504072024,3.687418931630696 -495,14.0,22.0,-1.9683489489016612,3.976064876781356 -495,15.0,11.0,-1.9519977922801688,4.104359379111847 -495,15.0,15.0,3.271064728633931,-8.94513365126506 -495,15.0,16.0,-1.3190669363537617,4.8407742721532125 -495,16.0,9.0,-3.956039125715353,10.317447719844054 -495,16.0,15.0,-1.3190669363537617,4.8407742721532125 -495,16.0,16.0,5.275106062069114,-15.158221991997266 -495,17.0,14.0,-1.8108011504072024,3.687418931630696 -495,17.0,17.0,4.886487584415919,-9.906177730909668 -495,17.0,18.0,-3.0756864340087167,6.218758799278971 -495,18.0,17.0,-3.0756864340087167,6.218758799278971 -495,18.0,18.0,8.958039375185187,-17.98346468163191 -495,18.0,19.0,-5.88235294117647,11.76470588235294 -495,19.0,9.0,-1.7848303152666305,3.98535828943083 -495,19.0,18.0,-5.88235294117647,11.76470588235294 -495,19.0,19.0,7.6671832564431,-15.75006417178377 -495,20.0,9.0,-5.101853820159654,10.98071411292983 -495,20.0,20.0,21.876495189895888,-45.10843276170355 -495,20.0,21.0,-16.774641369736234,34.127718648773715 -495,21.0,9.0,-2.619319553382597,5.400770303329455 -495,21.0,20.0,-16.774641369736234,34.127718648773715 -495,21.0,21.0,21.93449907537439,-43.48289181517921 -495,21.0,23.0,-2.5405381522555563,3.95440286307604 -495,22.0,14.0,-1.9683489489016612,3.976064876781356 -495,22.0,22.0,3.429754555384988,-6.965303617315433 -495,22.0,23.0,-1.4614056064833263,2.989238740534077 -495,23.0,21.0,-2.5405381522555563,3.95440286307604 -495,23.0,22.0,-1.4614056064833263,2.989238740534077 -495,23.0,23.0,5.311836702613133,-9.188263657315172 -495,23.0,24.0,-1.3098929438742493,2.287622053705056 -495,24.0,23.0,-1.3098929438742493,2.287622053705056 -495,24.0,24.0,4.495715080321987,-7.864978761969621 -495,24.0,25.0,-1.2165301194494855,1.8171440463475024 -495,24.0,26.0,-1.9692920169982515,3.760212661917064 -495,25.0,24.0,-1.2165301194494855,1.8171440463475024 -495,25.0,25.0,1.2165301194494855,-1.8171440463475024 -495,26.0,24.0,-1.9692920169982515,3.760212661917064 -495,26.0,26.0,3.652281470778589,-9.46044252232512 -495,26.0,27.0,0.0,2.608731947574922 -495,26.0,28.0,-0.99553355095268,1.881005840357816 -495,26.0,29.0,-0.6874559028276572,1.293971494797717 -495,27.0,5.0,-4.362844058012917,15.463571542897856 -495,27.0,7.0,-1.4439790613954469,4.540814658476248 -495,27.0,26.0,0.0,2.608731947574922 -495,27.0,27.0,5.806823119408364,-22.67145722159613 -495,28.0,26.0,-0.99553355095268,1.881005840357816 -495,28.0,28.0,1.9075867579849564,-3.604364401207048 -495,28.0,29.0,-0.9120532070322764,1.7233585608492326 -495,29.0,26.0,-0.6874559028276572,1.293971494797717 -495,29.0,28.0,-0.9120532070322764,1.7233585608492326 -495,29.0,29.0,1.5995091098599337,-3.0173300556469496 -496,0.0,0.0,6.765516048652632,-21.23160167089863 -496,0.0,1.0,-5.224646179885656,15.646726840803398 -496,0.0,2.0,-1.5408698687669766,5.631674830095234 -496,1.0,0.0,-5.224646179885656,15.646726840803398 -496,1.0,1.0,9.75228216552403,-30.648662892676068 -496,1.0,3.0,-1.7055303166990268,5.1973792282565086 -496,1.0,4.0,-1.1359607881738778,4.772479328281356 -496,1.0,5.0,-1.6861448807654689,5.116477495334806 -496,2.0,0.0,-1.5408698687669766,5.631674830095234 -496,2.0,2.0,9.736318911079088,-29.13794745915803 -496,2.0,3.0,-8.19544904231211,23.5308726290628 -496,3.0,1.0,-1.7055303166990268,5.1973792282565086 -496,3.0,2.0,-8.19544904231211,23.5308726290628 -496,3.0,3.0,16.314103089185693,-55.509410535254254 -496,3.0,5.0,-6.413123730174556,22.31120356548123 -496,3.0,11.0,0.0,4.191255364806866 -496,4.0,1.0,-1.1359607881738778,4.772479328281356 -496,4.0,4.0,4.089980824135861,-12.190647245055052 -496,4.0,6.0,-2.954020035961983,7.449267916773697 -496,5.0,1.0,-1.6861448807654689,5.116477495334806 -496,5.0,3.0,-6.413123730174556,22.31120356548123 -496,5.0,5.0,22.341631269034565,-82.8291478657789 -496,5.0,6.0,-3.590210423980992,11.02611441072814 -496,5.0,7.0,-6.289308176100628,22.0125786163522 -496,5.0,8.0,0.0,4.915840805411357 -496,5.0,9.0,0.0,1.8561002591115965 -496,5.0,27.0,-4.362844058012917,15.463571542897856 -496,6.0,4.0,-2.954020035961983,7.449267916773697 -496,6.0,5.0,-3.590210423980992,11.02611441072814 -496,6.0,6.0,6.544230459942975,-18.45668232750184 -496,7.0,5.0,-6.289308176100628,22.0125786163522 -496,7.0,7.0,7.733287237496075,-26.527493274828448 -496,7.0,27.0,-1.4439790613954469,4.540814658476248 -496,8.0,5.0,0.0,4.915840805411357 -496,8.0,8.0,0.0,-18.706293706293707 -496,8.0,9.0,0.0,9.090909090909092 -496,8.0,10.0,0.0,4.807692307692308 -496,9.0,5.0,0.0,1.8561002591115965 -496,9.0,8.0,0.0,9.090909090909092 -496,9.0,9.0,13.462042814524237,-41.3837606675224 -496,9.0,16.0,-3.956039125715353,10.317447719844054 -496,9.0,19.0,-1.7848303152666305,3.98535828943083 -496,9.0,20.0,-5.101853820159654,10.98071411292983 -496,9.0,21.0,-2.619319553382597,5.400770303329455 -496,10.0,8.0,0.0,4.807692307692308 -496,10.0,10.0,0.0,-4.807692307692308 -496,11.0,3.0,0.0,4.191255364806866 -496,11.0,11.0,6.573961583776156,-24.424167659260668 -496,11.0,12.0,0.0,7.142857142857143 -496,11.0,13.0,-1.5265676088395577,3.1734252729654173 -496,11.0,14.0,-3.0953961826564296,6.097275864326261 -496,11.0,15.0,-1.9519977922801688,4.104359379111847 -496,12.0,11.0,0.0,7.142857142857143 -496,12.0,12.0,0.0,-7.142857142857143 -496,13.0,11.0,-1.5265676088395577,3.1734252729654173 -496,13.0,13.0,4.01751987283902,-5.424299332335067 -496,13.0,14.0,-2.4909522639994623,2.250874059369649 -496,14.0,11.0,-3.0953961826564296,6.097275864326261 -496,14.0,13.0,-2.4909522639994623,2.250874059369649 -496,14.0,14.0,9.365498545964757,-16.01163373210796 -496,14.0,17.0,-1.8108011504072024,3.687418931630696 -496,14.0,22.0,-1.9683489489016612,3.976064876781356 -496,15.0,11.0,-1.9519977922801688,4.104359379111847 -496,15.0,15.0,3.271064728633931,-8.94513365126506 -496,15.0,16.0,-1.3190669363537617,4.8407742721532125 -496,16.0,9.0,-3.956039125715353,10.317447719844054 -496,16.0,15.0,-1.3190669363537617,4.8407742721532125 -496,16.0,16.0,5.275106062069114,-15.158221991997266 -496,17.0,14.0,-1.8108011504072024,3.687418931630696 -496,17.0,17.0,4.886487584415919,-9.906177730909668 -496,17.0,18.0,-3.0756864340087167,6.218758799278971 -496,18.0,17.0,-3.0756864340087167,6.218758799278971 -496,18.0,18.0,8.958039375185187,-17.98346468163191 -496,18.0,19.0,-5.88235294117647,11.76470588235294 -496,19.0,9.0,-1.7848303152666305,3.98535828943083 -496,19.0,18.0,-5.88235294117647,11.76470588235294 -496,19.0,19.0,7.6671832564431,-15.75006417178377 -496,20.0,9.0,-5.101853820159654,10.98071411292983 -496,20.0,20.0,21.876495189895888,-45.10843276170355 -496,20.0,21.0,-16.774641369736234,34.127718648773715 -496,21.0,9.0,-2.619319553382597,5.400770303329455 -496,21.0,20.0,-16.774641369736234,34.127718648773715 -496,21.0,21.0,21.93449907537439,-43.48289181517921 -496,21.0,23.0,-2.5405381522555563,3.95440286307604 -496,22.0,14.0,-1.9683489489016612,3.976064876781356 -496,22.0,22.0,3.429754555384988,-6.965303617315433 -496,22.0,23.0,-1.4614056064833263,2.989238740534077 -496,23.0,21.0,-2.5405381522555563,3.95440286307604 -496,23.0,22.0,-1.4614056064833263,2.989238740534077 -496,23.0,23.0,5.311836702613133,-9.188263657315172 -496,23.0,24.0,-1.3098929438742493,2.287622053705056 -496,24.0,23.0,-1.3098929438742493,2.287622053705056 -496,24.0,24.0,4.495715080321987,-7.864978761969621 -496,24.0,25.0,-1.2165301194494855,1.8171440463475024 -496,24.0,26.0,-1.9692920169982515,3.760212661917064 -496,25.0,24.0,-1.2165301194494855,1.8171440463475024 -496,25.0,25.0,1.2165301194494855,-1.8171440463475024 -496,26.0,24.0,-1.9692920169982515,3.760212661917064 -496,26.0,26.0,3.652281470778589,-9.46044252232512 -496,26.0,27.0,0.0,2.608731947574922 -496,26.0,28.0,-0.99553355095268,1.881005840357816 -496,26.0,29.0,-0.6874559028276572,1.293971494797717 -496,27.0,5.0,-4.362844058012917,15.463571542897856 -496,27.0,7.0,-1.4439790613954469,4.540814658476248 -496,27.0,26.0,0.0,2.608731947574922 -496,27.0,27.0,5.806823119408364,-22.67145722159613 -496,28.0,26.0,-0.99553355095268,1.881005840357816 -496,28.0,28.0,1.9075867579849564,-3.604364401207048 -496,28.0,29.0,-0.9120532070322764,1.7233585608492326 -496,29.0,26.0,-0.6874559028276572,1.293971494797717 -496,29.0,28.0,-0.9120532070322764,1.7233585608492326 -496,29.0,29.0,1.5995091098599337,-3.0173300556469496 -497,0.0,0.0,6.765516048652632,-21.23160167089863 -497,0.0,1.0,-5.224646179885656,15.646726840803398 -497,0.0,2.0,-1.5408698687669766,5.631674830095234 -497,1.0,0.0,-5.224646179885656,15.646726840803398 -497,1.0,1.0,9.75228216552403,-30.648662892676068 -497,1.0,3.0,-1.7055303166990268,5.1973792282565086 -497,1.0,4.0,-1.1359607881738778,4.772479328281356 -497,1.0,5.0,-1.6861448807654689,5.116477495334806 -497,2.0,0.0,-1.5408698687669766,5.631674830095234 -497,2.0,2.0,9.736318911079088,-29.13794745915803 -497,2.0,3.0,-8.19544904231211,23.5308726290628 -497,3.0,1.0,-1.7055303166990268,5.1973792282565086 -497,3.0,2.0,-8.19544904231211,23.5308726290628 -497,3.0,3.0,16.314103089185693,-55.509410535254254 -497,3.0,5.0,-6.413123730174556,22.31120356548123 -497,3.0,11.0,0.0,4.191255364806866 -497,4.0,1.0,-1.1359607881738778,4.772479328281356 -497,4.0,4.0,4.089980824135861,-12.190647245055052 -497,4.0,6.0,-2.954020035961983,7.449267916773697 -497,5.0,1.0,-1.6861448807654689,5.116477495334806 -497,5.0,3.0,-6.413123730174556,22.31120356548123 -497,5.0,5.0,22.341631269034565,-77.80272577435625 -497,5.0,6.0,-3.590210423980992,11.02611441072814 -497,5.0,7.0,-6.289308176100628,22.0125786163522 -497,5.0,9.0,0.0,1.8561002591115965 -497,5.0,27.0,-4.362844058012917,15.463571542897856 -497,6.0,4.0,-2.954020035961983,7.449267916773697 -497,6.0,5.0,-3.590210423980992,11.02611441072814 -497,6.0,6.0,6.544230459942975,-18.45668232750184 -497,7.0,5.0,-6.289308176100628,22.0125786163522 -497,7.0,7.0,7.733287237496075,-26.527493274828448 -497,7.0,27.0,-1.4439790613954469,4.540814658476248 -497,8.0,8.0,0.0,-13.8986013986014 -497,8.0,9.0,0.0,9.090909090909092 -497,8.0,10.0,0.0,4.807692307692308 -497,9.0,5.0,0.0,1.8561002591115965 -497,9.0,8.0,0.0,9.090909090909092 -497,9.0,9.0,13.462042814524237,-41.3837606675224 -497,9.0,16.0,-3.956039125715353,10.317447719844054 -497,9.0,19.0,-1.7848303152666305,3.98535828943083 -497,9.0,20.0,-5.101853820159654,10.98071411292983 -497,9.0,21.0,-2.619319553382597,5.400770303329455 -497,10.0,8.0,0.0,4.807692307692308 -497,10.0,10.0,0.0,-4.807692307692308 -497,11.0,3.0,0.0,4.191255364806866 -497,11.0,11.0,6.573961583776156,-24.424167659260668 -497,11.0,12.0,0.0,7.142857142857143 -497,11.0,13.0,-1.5265676088395577,3.1734252729654173 -497,11.0,14.0,-3.0953961826564296,6.097275864326261 -497,11.0,15.0,-1.9519977922801688,4.104359379111847 -497,12.0,11.0,0.0,7.142857142857143 -497,12.0,12.0,0.0,-7.142857142857143 -497,13.0,11.0,-1.5265676088395577,3.1734252729654173 -497,13.0,13.0,4.01751987283902,-5.424299332335067 -497,13.0,14.0,-2.4909522639994623,2.250874059369649 -497,14.0,11.0,-3.0953961826564296,6.097275864326261 -497,14.0,13.0,-2.4909522639994623,2.250874059369649 -497,14.0,14.0,9.365498545964757,-16.01163373210796 -497,14.0,17.0,-1.8108011504072024,3.687418931630696 -497,14.0,22.0,-1.9683489489016612,3.976064876781356 -497,15.0,11.0,-1.9519977922801688,4.104359379111847 -497,15.0,15.0,3.271064728633931,-8.94513365126506 -497,15.0,16.0,-1.3190669363537617,4.8407742721532125 -497,16.0,9.0,-3.956039125715353,10.317447719844054 -497,16.0,15.0,-1.3190669363537617,4.8407742721532125 -497,16.0,16.0,5.275106062069114,-15.158221991997266 -497,17.0,14.0,-1.8108011504072024,3.687418931630696 -497,17.0,17.0,4.886487584415919,-9.906177730909668 -497,17.0,18.0,-3.0756864340087167,6.218758799278971 -497,18.0,17.0,-3.0756864340087167,6.218758799278971 -497,18.0,18.0,8.958039375185187,-17.98346468163191 -497,18.0,19.0,-5.88235294117647,11.76470588235294 -497,19.0,9.0,-1.7848303152666305,3.98535828943083 -497,19.0,18.0,-5.88235294117647,11.76470588235294 -497,19.0,19.0,7.6671832564431,-15.75006417178377 -497,20.0,9.0,-5.101853820159654,10.98071411292983 -497,20.0,20.0,21.876495189895888,-45.10843276170355 -497,20.0,21.0,-16.774641369736234,34.127718648773715 -497,21.0,9.0,-2.619319553382597,5.400770303329455 -497,21.0,20.0,-16.774641369736234,34.127718648773715 -497,21.0,21.0,21.93449907537439,-43.48289181517921 -497,21.0,23.0,-2.5405381522555563,3.95440286307604 -497,22.0,14.0,-1.9683489489016612,3.976064876781356 -497,22.0,22.0,3.429754555384988,-6.965303617315433 -497,22.0,23.0,-1.4614056064833263,2.989238740534077 -497,23.0,21.0,-2.5405381522555563,3.95440286307604 -497,23.0,22.0,-1.4614056064833263,2.989238740534077 -497,23.0,23.0,5.311836702613133,-9.188263657315172 -497,23.0,24.0,-1.3098929438742493,2.287622053705056 -497,24.0,23.0,-1.3098929438742493,2.287622053705056 -497,24.0,24.0,2.526423063323735,-4.104766100052558 -497,24.0,25.0,-1.2165301194494855,1.8171440463475024 -497,25.0,24.0,-1.2165301194494855,1.8171440463475024 -497,25.0,25.0,1.2165301194494855,-1.8171440463475024 -497,26.0,26.0,1.6829894537803372,-5.700229860408058 -497,26.0,27.0,0.0,2.608731947574922 -497,26.0,28.0,-0.99553355095268,1.881005840357816 -497,26.0,29.0,-0.6874559028276572,1.293971494797717 -497,27.0,5.0,-4.362844058012917,15.463571542897856 -497,27.0,7.0,-1.4439790613954469,4.540814658476248 -497,27.0,26.0,0.0,2.608731947574922 -497,27.0,27.0,5.806823119408364,-22.67145722159613 -497,28.0,26.0,-0.99553355095268,1.881005840357816 -497,28.0,28.0,1.9075867579849564,-3.604364401207048 -497,28.0,29.0,-0.9120532070322764,1.7233585608492326 -497,29.0,26.0,-0.6874559028276572,1.293971494797717 -497,29.0,28.0,-0.9120532070322764,1.7233585608492326 -497,29.0,29.0,1.5995091098599337,-3.0173300556469496 -498,0.0,0.0,5.224646179885656,-15.620326840803395 -498,0.0,1.0,-5.224646179885656,15.646726840803398 -498,1.0,0.0,-5.224646179885656,15.646726840803398 -498,1.0,1.0,9.75228216552403,-30.648662892676068 -498,1.0,3.0,-1.7055303166990268,5.1973792282565086 -498,1.0,4.0,-1.1359607881738778,4.772479328281356 -498,1.0,5.0,-1.6861448807654689,5.116477495334806 -498,2.0,2.0,8.19544904231211,-23.5266726290628 -498,2.0,3.0,-8.19544904231211,23.5308726290628 -498,3.0,1.0,-1.7055303166990268,5.1973792282565086 -498,3.0,2.0,-8.19544904231211,23.5308726290628 -498,3.0,3.0,16.314103089185693,-55.509410535254254 -498,3.0,5.0,-6.413123730174556,22.31120356548123 -498,3.0,11.0,0.0,4.191255364806866 -498,4.0,1.0,-1.1359607881738778,4.772479328281356 -498,4.0,4.0,4.089980824135861,-12.190647245055052 -498,4.0,6.0,-2.954020035961983,7.449267916773697 -498,5.0,1.0,-1.6861448807654689,5.116477495334806 -498,5.0,3.0,-6.413123730174556,22.31120356548123 -498,5.0,5.0,22.341631269034565,-82.8291478657789 -498,5.0,6.0,-3.590210423980992,11.02611441072814 -498,5.0,7.0,-6.289308176100628,22.0125786163522 -498,5.0,8.0,0.0,4.915840805411357 -498,5.0,9.0,0.0,1.8561002591115965 -498,5.0,27.0,-4.362844058012917,15.463571542897856 -498,6.0,4.0,-2.954020035961983,7.449267916773697 -498,6.0,5.0,-3.590210423980992,11.02611441072814 -498,6.0,6.0,6.544230459942975,-18.45668232750184 -498,7.0,5.0,-6.289308176100628,22.0125786163522 -498,7.0,7.0,7.733287237496075,-26.527493274828448 -498,7.0,27.0,-1.4439790613954469,4.540814658476248 -498,8.0,5.0,0.0,4.915840805411357 -498,8.0,8.0,0.0,-18.706293706293707 -498,8.0,9.0,0.0,9.090909090909092 -498,8.0,10.0,0.0,4.807692307692308 -498,9.0,5.0,0.0,1.8561002591115965 -498,9.0,8.0,0.0,9.090909090909092 -498,9.0,9.0,13.462042814524237,-41.3837606675224 -498,9.0,16.0,-3.956039125715353,10.317447719844054 -498,9.0,19.0,-1.7848303152666305,3.98535828943083 -498,9.0,20.0,-5.101853820159654,10.98071411292983 -498,9.0,21.0,-2.619319553382597,5.400770303329455 -498,10.0,8.0,0.0,4.807692307692308 -498,10.0,10.0,0.0,-4.807692307692308 -498,11.0,3.0,0.0,4.191255364806866 -498,11.0,11.0,6.573961583776156,-24.424167659260668 -498,11.0,12.0,0.0,7.142857142857143 -498,11.0,13.0,-1.5265676088395577,3.1734252729654173 -498,11.0,14.0,-3.0953961826564296,6.097275864326261 -498,11.0,15.0,-1.9519977922801688,4.104359379111847 -498,12.0,11.0,0.0,7.142857142857143 -498,12.0,12.0,0.0,-7.142857142857143 -498,13.0,11.0,-1.5265676088395577,3.1734252729654173 -498,13.0,13.0,4.01751987283902,-5.424299332335067 -498,13.0,14.0,-2.4909522639994623,2.250874059369649 -498,14.0,11.0,-3.0953961826564296,6.097275864326261 -498,14.0,13.0,-2.4909522639994623,2.250874059369649 -498,14.0,14.0,9.365498545964757,-16.01163373210796 -498,14.0,17.0,-1.8108011504072024,3.687418931630696 -498,14.0,22.0,-1.9683489489016612,3.976064876781356 -498,15.0,11.0,-1.9519977922801688,4.104359379111847 -498,15.0,15.0,3.271064728633931,-8.94513365126506 -498,15.0,16.0,-1.3190669363537617,4.8407742721532125 -498,16.0,9.0,-3.956039125715353,10.317447719844054 -498,16.0,15.0,-1.3190669363537617,4.8407742721532125 -498,16.0,16.0,5.275106062069114,-15.158221991997266 -498,17.0,14.0,-1.8108011504072024,3.687418931630696 -498,17.0,17.0,4.886487584415919,-9.906177730909668 -498,17.0,18.0,-3.0756864340087167,6.218758799278971 -498,18.0,17.0,-3.0756864340087167,6.218758799278971 -498,18.0,18.0,8.958039375185187,-17.98346468163191 -498,18.0,19.0,-5.88235294117647,11.76470588235294 -498,19.0,9.0,-1.7848303152666305,3.98535828943083 -498,19.0,18.0,-5.88235294117647,11.76470588235294 -498,19.0,19.0,7.6671832564431,-15.75006417178377 -498,20.0,9.0,-5.101853820159654,10.98071411292983 -498,20.0,20.0,21.876495189895888,-45.10843276170355 -498,20.0,21.0,-16.774641369736234,34.127718648773715 -498,21.0,9.0,-2.619319553382597,5.400770303329455 -498,21.0,20.0,-16.774641369736234,34.127718648773715 -498,21.0,21.0,21.93449907537439,-43.48289181517921 -498,21.0,23.0,-2.5405381522555563,3.95440286307604 -498,22.0,14.0,-1.9683489489016612,3.976064876781356 -498,22.0,22.0,3.429754555384988,-6.965303617315433 -498,22.0,23.0,-1.4614056064833263,2.989238740534077 -498,23.0,21.0,-2.5405381522555563,3.95440286307604 -498,23.0,22.0,-1.4614056064833263,2.989238740534077 -498,23.0,23.0,5.311836702613133,-9.188263657315172 -498,23.0,24.0,-1.3098929438742493,2.287622053705056 -498,24.0,23.0,-1.3098929438742493,2.287622053705056 -498,24.0,24.0,4.495715080321987,-7.864978761969621 -498,24.0,25.0,-1.2165301194494855,1.8171440463475024 -498,24.0,26.0,-1.9692920169982515,3.760212661917064 -498,25.0,24.0,-1.2165301194494855,1.8171440463475024 -498,25.0,25.0,1.2165301194494855,-1.8171440463475024 -498,26.0,24.0,-1.9692920169982515,3.760212661917064 -498,26.0,26.0,3.652281470778589,-9.46044252232512 -498,26.0,27.0,0.0,2.608731947574922 -498,26.0,28.0,-0.99553355095268,1.881005840357816 -498,26.0,29.0,-0.6874559028276572,1.293971494797717 -498,27.0,5.0,-4.362844058012917,15.463571542897856 -498,27.0,7.0,-1.4439790613954469,4.540814658476248 -498,27.0,26.0,0.0,2.608731947574922 -498,27.0,27.0,5.806823119408364,-22.67145722159613 -498,28.0,26.0,-0.99553355095268,1.881005840357816 -498,28.0,28.0,1.9075867579849564,-3.604364401207048 -498,28.0,29.0,-0.9120532070322764,1.7233585608492326 -498,29.0,26.0,-0.6874559028276572,1.293971494797717 -498,29.0,28.0,-0.9120532070322764,1.7233585608492326 -498,29.0,29.0,1.5995091098599337,-3.0173300556469496 -499,0.0,0.0,6.765516048652632,-21.23160167089863 -499,0.0,1.0,-5.224646179885656,15.646726840803398 -499,0.0,2.0,-1.5408698687669766,5.631674830095234 -499,1.0,0.0,-5.224646179885656,15.646726840803398 -499,1.0,1.0,9.75228216552403,-30.648662892676068 -499,1.0,3.0,-1.7055303166990268,5.1973792282565086 -499,1.0,4.0,-1.1359607881738778,4.772479328281356 -499,1.0,5.0,-1.6861448807654689,5.116477495334806 -499,2.0,0.0,-1.5408698687669766,5.631674830095234 -499,2.0,2.0,9.736318911079088,-29.13794745915803 -499,2.0,3.0,-8.19544904231211,23.5308726290628 -499,3.0,1.0,-1.7055303166990268,5.1973792282565086 -499,3.0,2.0,-8.19544904231211,23.5308726290628 -499,3.0,3.0,16.314103089185693,-55.509410535254254 -499,3.0,5.0,-6.413123730174556,22.31120356548123 -499,3.0,11.0,0.0,4.191255364806866 -499,4.0,1.0,-1.1359607881738778,4.772479328281356 -499,4.0,4.0,4.089980824135861,-12.190647245055052 -499,4.0,6.0,-2.954020035961983,7.449267916773697 -499,5.0,1.0,-1.6861448807654689,5.116477495334806 -499,5.0,3.0,-6.413123730174556,22.31120356548123 -499,5.0,5.0,22.341631269034565,-82.8291478657789 -499,5.0,6.0,-3.590210423980992,11.02611441072814 -499,5.0,7.0,-6.289308176100628,22.0125786163522 -499,5.0,8.0,0.0,4.915840805411357 -499,5.0,9.0,0.0,1.8561002591115965 -499,5.0,27.0,-4.362844058012917,15.463571542897856 -499,6.0,4.0,-2.954020035961983,7.449267916773697 -499,6.0,5.0,-3.590210423980992,11.02611441072814 -499,6.0,6.0,6.544230459942975,-18.45668232750184 -499,7.0,5.0,-6.289308176100628,22.0125786163522 -499,7.0,7.0,7.733287237496075,-26.527493274828448 -499,7.0,27.0,-1.4439790613954469,4.540814658476248 -499,8.0,5.0,0.0,4.915840805411357 -499,8.0,8.0,0.0,-18.706293706293707 -499,8.0,9.0,0.0,9.090909090909092 -499,8.0,10.0,0.0,4.807692307692308 -499,9.0,5.0,0.0,1.8561002591115965 -499,9.0,8.0,0.0,9.090909090909092 -499,9.0,9.0,13.462042814524237,-41.3837606675224 -499,9.0,16.0,-3.956039125715353,10.317447719844054 -499,9.0,19.0,-1.7848303152666305,3.98535828943083 -499,9.0,20.0,-5.101853820159654,10.98071411292983 -499,9.0,21.0,-2.619319553382597,5.400770303329455 -499,10.0,8.0,0.0,4.807692307692308 -499,10.0,10.0,0.0,-4.807692307692308 -499,11.0,3.0,0.0,4.191255364806866 -499,11.0,11.0,6.573961583776156,-24.424167659260668 -499,11.0,12.0,0.0,7.142857142857143 -499,11.0,13.0,-1.5265676088395577,3.1734252729654173 -499,11.0,14.0,-3.0953961826564296,6.097275864326261 -499,11.0,15.0,-1.9519977922801688,4.104359379111847 -499,12.0,11.0,0.0,7.142857142857143 -499,12.0,12.0,0.0,-7.142857142857143 -499,13.0,11.0,-1.5265676088395577,3.1734252729654173 -499,13.0,13.0,4.01751987283902,-5.424299332335067 -499,13.0,14.0,-2.4909522639994623,2.250874059369649 -499,14.0,11.0,-3.0953961826564296,6.097275864326261 -499,14.0,13.0,-2.4909522639994623,2.250874059369649 -499,14.0,14.0,9.365498545964757,-16.01163373210796 -499,14.0,17.0,-1.8108011504072024,3.687418931630696 -499,14.0,22.0,-1.9683489489016612,3.976064876781356 -499,15.0,11.0,-1.9519977922801688,4.104359379111847 -499,15.0,15.0,3.271064728633931,-8.94513365126506 -499,15.0,16.0,-1.3190669363537617,4.8407742721532125 -499,16.0,9.0,-3.956039125715353,10.317447719844054 -499,16.0,15.0,-1.3190669363537617,4.8407742721532125 -499,16.0,16.0,5.275106062069114,-15.158221991997266 -499,17.0,14.0,-1.8108011504072024,3.687418931630696 -499,17.0,17.0,4.886487584415919,-9.906177730909668 -499,17.0,18.0,-3.0756864340087167,6.218758799278971 -499,18.0,17.0,-3.0756864340087167,6.218758799278971 -499,18.0,18.0,8.958039375185187,-17.98346468163191 -499,18.0,19.0,-5.88235294117647,11.76470588235294 -499,19.0,9.0,-1.7848303152666305,3.98535828943083 -499,19.0,18.0,-5.88235294117647,11.76470588235294 -499,19.0,19.0,7.6671832564431,-15.75006417178377 -499,20.0,9.0,-5.101853820159654,10.98071411292983 -499,20.0,20.0,21.876495189895888,-45.10843276170355 -499,20.0,21.0,-16.774641369736234,34.127718648773715 -499,21.0,9.0,-2.619319553382597,5.400770303329455 -499,21.0,20.0,-16.774641369736234,34.127718648773715 -499,21.0,21.0,21.93449907537439,-43.48289181517921 -499,21.0,23.0,-2.5405381522555563,3.95440286307604 -499,22.0,14.0,-1.9683489489016612,3.976064876781356 -499,22.0,22.0,3.429754555384988,-6.965303617315433 -499,22.0,23.0,-1.4614056064833263,2.989238740534077 -499,23.0,21.0,-2.5405381522555563,3.95440286307604 -499,23.0,22.0,-1.4614056064833263,2.989238740534077 -499,23.0,23.0,5.311836702613133,-9.188263657315172 -499,23.0,24.0,-1.3098929438742493,2.287622053705056 -499,24.0,23.0,-1.3098929438742493,2.287622053705056 -499,24.0,24.0,4.495715080321987,-7.864978761969621 -499,24.0,25.0,-1.2165301194494855,1.8171440463475024 -499,24.0,26.0,-1.9692920169982515,3.760212661917064 -499,25.0,24.0,-1.2165301194494855,1.8171440463475024 -499,25.0,25.0,1.2165301194494855,-1.8171440463475024 -499,26.0,24.0,-1.9692920169982515,3.760212661917064 -499,26.0,26.0,3.652281470778589,-9.46044252232512 -499,26.0,27.0,0.0,2.608731947574922 -499,26.0,28.0,-0.99553355095268,1.881005840357816 -499,26.0,29.0,-0.6874559028276572,1.293971494797717 -499,27.0,5.0,-4.362844058012917,15.463571542897856 -499,27.0,7.0,-1.4439790613954469,4.540814658476248 -499,27.0,26.0,0.0,2.608731947574922 -499,27.0,27.0,5.806823119408364,-22.67145722159613 -499,28.0,26.0,-0.99553355095268,1.881005840357816 -499,28.0,28.0,1.9075867579849564,-3.604364401207048 -499,28.0,29.0,-0.9120532070322764,1.7233585608492326 -499,29.0,26.0,-0.6874559028276572,1.293971494797717 -499,29.0,28.0,-0.9120532070322764,1.7233585608492326 -499,29.0,29.0,1.5995091098599337,-3.0173300556469496 -500,0.0,0.0,6.765516048652632,-21.23160167089863 -500,0.0,1.0,-5.224646179885656,15.646726840803398 -500,0.0,2.0,-1.5408698687669766,5.631674830095234 -500,1.0,0.0,-5.224646179885656,15.646726840803398 -500,1.0,1.0,9.75228216552403,-30.648662892676068 -500,1.0,3.0,-1.7055303166990268,5.1973792282565086 -500,1.0,4.0,-1.1359607881738778,4.772479328281356 -500,1.0,5.0,-1.6861448807654689,5.116477495334806 -500,2.0,0.0,-1.5408698687669766,5.631674830095234 -500,2.0,2.0,9.736318911079088,-29.13794745915803 -500,2.0,3.0,-8.19544904231211,23.5308726290628 -500,3.0,1.0,-1.7055303166990268,5.1973792282565086 -500,3.0,2.0,-8.19544904231211,23.5308726290628 -500,3.0,3.0,16.314103089185693,-55.509410535254254 -500,3.0,5.0,-6.413123730174556,22.31120356548123 -500,3.0,11.0,0.0,4.191255364806866 -500,4.0,1.0,-1.1359607881738778,4.772479328281356 -500,4.0,4.0,4.089980824135861,-12.190647245055052 -500,4.0,6.0,-2.954020035961983,7.449267916773697 -500,5.0,1.0,-1.6861448807654689,5.116477495334806 -500,5.0,3.0,-6.413123730174556,22.31120356548123 -500,5.0,5.0,22.341631269034565,-82.8291478657789 -500,5.0,6.0,-3.590210423980992,11.02611441072814 -500,5.0,7.0,-6.289308176100628,22.0125786163522 -500,5.0,8.0,0.0,4.915840805411357 -500,5.0,9.0,0.0,1.8561002591115965 -500,5.0,27.0,-4.362844058012917,15.463571542897856 -500,6.0,4.0,-2.954020035961983,7.449267916773697 -500,6.0,5.0,-3.590210423980992,11.02611441072814 -500,6.0,6.0,6.544230459942975,-18.45668232750184 -500,7.0,5.0,-6.289308176100628,22.0125786163522 -500,7.0,7.0,7.733287237496075,-26.527493274828448 -500,7.0,27.0,-1.4439790613954469,4.540814658476248 -500,8.0,5.0,0.0,4.915840805411357 -500,8.0,8.0,0.0,-18.706293706293707 -500,8.0,9.0,0.0,9.090909090909092 -500,8.0,10.0,0.0,4.807692307692308 -500,9.0,5.0,0.0,1.8561002591115965 -500,9.0,8.0,0.0,9.090909090909092 -500,9.0,9.0,13.462042814524237,-41.3837606675224 -500,9.0,16.0,-3.956039125715353,10.317447719844054 -500,9.0,19.0,-1.7848303152666305,3.98535828943083 -500,9.0,20.0,-5.101853820159654,10.98071411292983 -500,9.0,21.0,-2.619319553382597,5.400770303329455 -500,10.0,8.0,0.0,4.807692307692308 -500,10.0,10.0,0.0,-4.807692307692308 -500,11.0,3.0,0.0,4.191255364806866 -500,11.0,11.0,6.573961583776156,-24.424167659260668 -500,11.0,12.0,0.0,7.142857142857143 -500,11.0,13.0,-1.5265676088395577,3.1734252729654173 -500,11.0,14.0,-3.0953961826564296,6.097275864326261 -500,11.0,15.0,-1.9519977922801688,4.104359379111847 -500,12.0,11.0,0.0,7.142857142857143 -500,12.0,12.0,0.0,-7.142857142857143 -500,13.0,11.0,-1.5265676088395577,3.1734252729654173 -500,13.0,13.0,4.01751987283902,-5.424299332335067 -500,13.0,14.0,-2.4909522639994623,2.250874059369649 -500,14.0,11.0,-3.0953961826564296,6.097275864326261 -500,14.0,13.0,-2.4909522639994623,2.250874059369649 -500,14.0,14.0,9.365498545964757,-16.01163373210796 -500,14.0,17.0,-1.8108011504072024,3.687418931630696 -500,14.0,22.0,-1.9683489489016612,3.976064876781356 -500,15.0,11.0,-1.9519977922801688,4.104359379111847 -500,15.0,15.0,3.271064728633931,-8.94513365126506 -500,15.0,16.0,-1.3190669363537617,4.8407742721532125 -500,16.0,9.0,-3.956039125715353,10.317447719844054 -500,16.0,15.0,-1.3190669363537617,4.8407742721532125 -500,16.0,16.0,5.275106062069114,-15.158221991997266 -500,17.0,14.0,-1.8108011504072024,3.687418931630696 -500,17.0,17.0,4.886487584415919,-9.906177730909668 -500,17.0,18.0,-3.0756864340087167,6.218758799278971 -500,18.0,17.0,-3.0756864340087167,6.218758799278971 -500,18.0,18.0,8.958039375185187,-17.98346468163191 -500,18.0,19.0,-5.88235294117647,11.76470588235294 -500,19.0,9.0,-1.7848303152666305,3.98535828943083 -500,19.0,18.0,-5.88235294117647,11.76470588235294 -500,19.0,19.0,7.6671832564431,-15.75006417178377 -500,20.0,9.0,-5.101853820159654,10.98071411292983 -500,20.0,20.0,21.876495189895888,-45.10843276170355 -500,20.0,21.0,-16.774641369736234,34.127718648773715 -500,21.0,9.0,-2.619319553382597,5.400770303329455 -500,21.0,20.0,-16.774641369736234,34.127718648773715 -500,21.0,21.0,21.93449907537439,-43.48289181517921 -500,21.0,23.0,-2.5405381522555563,3.95440286307604 -500,22.0,14.0,-1.9683489489016612,3.976064876781356 -500,22.0,22.0,3.429754555384988,-6.965303617315433 -500,22.0,23.0,-1.4614056064833263,2.989238740534077 -500,23.0,21.0,-2.5405381522555563,3.95440286307604 -500,23.0,22.0,-1.4614056064833263,2.989238740534077 -500,23.0,23.0,5.311836702613133,-9.188263657315172 -500,23.0,24.0,-1.3098929438742493,2.287622053705056 -500,24.0,23.0,-1.3098929438742493,2.287622053705056 -500,24.0,24.0,4.495715080321987,-7.864978761969621 -500,24.0,25.0,-1.2165301194494855,1.8171440463475024 -500,24.0,26.0,-1.9692920169982515,3.760212661917064 -500,25.0,24.0,-1.2165301194494855,1.8171440463475024 -500,25.0,25.0,1.2165301194494855,-1.8171440463475024 -500,26.0,24.0,-1.9692920169982515,3.760212661917064 -500,26.0,26.0,3.652281470778589,-9.46044252232512 -500,26.0,27.0,0.0,2.608731947574922 -500,26.0,28.0,-0.99553355095268,1.881005840357816 -500,26.0,29.0,-0.6874559028276572,1.293971494797717 -500,27.0,5.0,-4.362844058012917,15.463571542897856 -500,27.0,7.0,-1.4439790613954469,4.540814658476248 -500,27.0,26.0,0.0,2.608731947574922 -500,27.0,27.0,5.806823119408364,-22.67145722159613 -500,28.0,26.0,-0.99553355095268,1.881005840357816 -500,28.0,28.0,1.9075867579849564,-3.604364401207048 -500,28.0,29.0,-0.9120532070322764,1.7233585608492326 -500,29.0,26.0,-0.6874559028276572,1.293971494797717 -500,29.0,28.0,-0.9120532070322764,1.7233585608492326 -500,29.0,29.0,1.5995091098599337,-3.0173300556469496 -501,0.0,0.0,6.765516048652632,-21.23160167089863 -501,0.0,1.0,-5.224646179885656,15.646726840803398 -501,0.0,2.0,-1.5408698687669766,5.631674830095234 -501,1.0,0.0,-5.224646179885656,15.646726840803398 -501,1.0,1.0,9.75228216552403,-30.648662892676068 -501,1.0,3.0,-1.7055303166990268,5.1973792282565086 -501,1.0,4.0,-1.1359607881738778,4.772479328281356 -501,1.0,5.0,-1.6861448807654689,5.116477495334806 -501,2.0,0.0,-1.5408698687669766,5.631674830095234 -501,2.0,2.0,1.5408698687669766,-5.611274830095233 -501,3.0,1.0,-1.7055303166990268,5.1973792282565086 -501,3.0,3.0,1.7055303166990268,-5.178979228256509 -501,4.0,1.0,-1.1359607881738778,4.772479328281356 -501,4.0,4.0,4.089980824135861,-12.190647245055052 -501,4.0,6.0,-2.954020035961983,7.449267916773697 -501,5.0,1.0,-1.6861448807654689,5.116477495334806 -501,5.0,5.0,11.565663480847087,-45.06537275739982 -501,5.0,6.0,-3.590210423980992,11.02611441072814 -501,5.0,7.0,-6.289308176100628,22.0125786163522 -501,5.0,8.0,0.0,4.915840805411357 -501,5.0,9.0,0.0,1.8561002591115965 -501,6.0,4.0,-2.954020035961983,7.449267916773697 -501,6.0,5.0,-3.590210423980992,11.02611441072814 -501,6.0,6.0,6.544230459942975,-18.45668232750184 -501,7.0,5.0,-6.289308176100628,22.0125786163522 -501,7.0,7.0,7.733287237496075,-26.527493274828448 -501,7.0,27.0,-1.4439790613954469,4.540814658476248 -501,8.0,5.0,0.0,4.915840805411357 -501,8.0,8.0,0.0,-18.706293706293707 -501,8.0,9.0,0.0,9.090909090909092 -501,8.0,10.0,0.0,4.807692307692308 -501,9.0,5.0,0.0,1.8561002591115965 -501,9.0,8.0,0.0,9.090909090909092 -501,9.0,9.0,13.462042814524237,-41.3837606675224 -501,9.0,16.0,-3.956039125715353,10.317447719844054 -501,9.0,19.0,-1.7848303152666305,3.98535828943083 -501,9.0,20.0,-5.101853820159654,10.98071411292983 -501,9.0,21.0,-2.619319553382597,5.400770303329455 -501,10.0,8.0,0.0,4.807692307692308 -501,10.0,10.0,0.0,-4.807692307692308 -501,11.0,11.0,6.573961583776156,-20.517917659260668 -501,11.0,12.0,0.0,7.142857142857143 -501,11.0,13.0,-1.5265676088395577,3.1734252729654173 -501,11.0,14.0,-3.0953961826564296,6.097275864326261 -501,11.0,15.0,-1.9519977922801688,4.104359379111847 -501,12.0,11.0,0.0,7.142857142857143 -501,12.0,12.0,0.0,-7.142857142857143 -501,13.0,11.0,-1.5265676088395577,3.1734252729654173 -501,13.0,13.0,4.01751987283902,-5.424299332335067 -501,13.0,14.0,-2.4909522639994623,2.250874059369649 -501,14.0,11.0,-3.0953961826564296,6.097275864326261 -501,14.0,13.0,-2.4909522639994623,2.250874059369649 -501,14.0,14.0,7.554697395557554,-12.324214800477266 -501,14.0,22.0,-1.9683489489016612,3.976064876781356 -501,15.0,11.0,-1.9519977922801688,4.104359379111847 -501,15.0,15.0,3.271064728633931,-8.94513365126506 -501,15.0,16.0,-1.3190669363537617,4.8407742721532125 -501,16.0,9.0,-3.956039125715353,10.317447719844054 -501,16.0,15.0,-1.3190669363537617,4.8407742721532125 -501,16.0,16.0,5.275106062069114,-15.158221991997266 -501,17.0,17.0,3.0756864340087167,-6.218758799278971 -501,17.0,18.0,-3.0756864340087167,6.218758799278971 -501,18.0,17.0,-3.0756864340087167,6.218758799278971 -501,18.0,18.0,8.958039375185187,-17.98346468163191 -501,18.0,19.0,-5.88235294117647,11.76470588235294 -501,19.0,9.0,-1.7848303152666305,3.98535828943083 -501,19.0,18.0,-5.88235294117647,11.76470588235294 -501,19.0,19.0,7.6671832564431,-15.75006417178377 -501,20.0,9.0,-5.101853820159654,10.98071411292983 -501,20.0,20.0,21.876495189895888,-45.10843276170355 -501,20.0,21.0,-16.774641369736234,34.127718648773715 -501,21.0,9.0,-2.619319553382597,5.400770303329455 -501,21.0,20.0,-16.774641369736234,34.127718648773715 -501,21.0,21.0,21.93449907537439,-43.48289181517921 -501,21.0,23.0,-2.5405381522555563,3.95440286307604 -501,22.0,14.0,-1.9683489489016612,3.976064876781356 -501,22.0,22.0,3.429754555384988,-6.965303617315433 -501,22.0,23.0,-1.4614056064833263,2.989238740534077 -501,23.0,21.0,-2.5405381522555563,3.95440286307604 -501,23.0,22.0,-1.4614056064833263,2.989238740534077 -501,23.0,23.0,5.311836702613133,-9.188263657315172 -501,23.0,24.0,-1.3098929438742493,2.287622053705056 -501,24.0,23.0,-1.3098929438742493,2.287622053705056 -501,24.0,24.0,2.526423063323735,-4.104766100052558 -501,24.0,25.0,-1.2165301194494855,1.8171440463475024 -501,25.0,24.0,-1.2165301194494855,1.8171440463475024 -501,25.0,25.0,1.2165301194494855,-1.8171440463475024 -501,26.0,26.0,1.6829894537803372,-5.700229860408058 -501,26.0,27.0,0.0,2.608731947574922 -501,26.0,28.0,-0.99553355095268,1.881005840357816 -501,26.0,29.0,-0.6874559028276572,1.293971494797717 -501,27.0,7.0,-1.4439790613954469,4.540814658476248 -501,27.0,26.0,0.0,2.608731947574922 -501,27.0,27.0,1.4439790613954469,-7.214385678698274 -501,28.0,26.0,-0.99553355095268,1.881005840357816 -501,28.0,28.0,1.9075867579849564,-3.604364401207048 -501,28.0,29.0,-0.9120532070322764,1.7233585608492326 -501,29.0,26.0,-0.6874559028276572,1.293971494797717 -501,29.0,28.0,-0.9120532070322764,1.7233585608492326 -501,29.0,29.0,1.5995091098599337,-3.0173300556469496 -502,0.0,0.0,6.765516048652632,-21.23160167089863 -502,0.0,1.0,-5.224646179885656,15.646726840803398 -502,0.0,2.0,-1.5408698687669766,5.631674830095234 -502,1.0,0.0,-5.224646179885656,15.646726840803398 -502,1.0,1.0,9.75228216552403,-30.648662892676068 -502,1.0,3.0,-1.7055303166990268,5.1973792282565086 -502,1.0,4.0,-1.1359607881738778,4.772479328281356 -502,1.0,5.0,-1.6861448807654689,5.116477495334806 -502,2.0,0.0,-1.5408698687669766,5.631674830095234 -502,2.0,2.0,9.736318911079088,-29.13794745915803 -502,2.0,3.0,-8.19544904231211,23.5308726290628 -502,3.0,1.0,-1.7055303166990268,5.1973792282565086 -502,3.0,2.0,-8.19544904231211,23.5308726290628 -502,3.0,3.0,16.314103089185693,-55.509410535254254 -502,3.0,5.0,-6.413123730174556,22.31120356548123 -502,3.0,11.0,0.0,4.191255364806866 -502,4.0,1.0,-1.1359607881738778,4.772479328281356 -502,4.0,4.0,4.089980824135861,-12.190647245055052 -502,4.0,6.0,-2.954020035961983,7.449267916773697 -502,5.0,1.0,-1.6861448807654689,5.116477495334806 -502,5.0,3.0,-6.413123730174556,22.31120356548123 -502,5.0,5.0,22.341631269034565,-77.80272577435625 -502,5.0,6.0,-3.590210423980992,11.02611441072814 -502,5.0,7.0,-6.289308176100628,22.0125786163522 -502,5.0,9.0,0.0,1.8561002591115965 -502,5.0,27.0,-4.362844058012917,15.463571542897856 -502,6.0,4.0,-2.954020035961983,7.449267916773697 -502,6.0,5.0,-3.590210423980992,11.02611441072814 -502,6.0,6.0,6.544230459942975,-18.45668232750184 -502,7.0,5.0,-6.289308176100628,22.0125786163522 -502,7.0,7.0,7.733287237496075,-26.527493274828448 -502,7.0,27.0,-1.4439790613954469,4.540814658476248 -502,8.0,8.0,0.0,-13.8986013986014 -502,8.0,9.0,0.0,9.090909090909092 -502,8.0,10.0,0.0,4.807692307692308 -502,9.0,5.0,0.0,1.8561002591115965 -502,9.0,8.0,0.0,9.090909090909092 -502,9.0,9.0,11.677212499257603,-37.39840237809157 -502,9.0,16.0,-3.956039125715353,10.317447719844054 -502,9.0,20.0,-5.101853820159654,10.98071411292983 -502,9.0,21.0,-2.619319553382597,5.400770303329455 -502,10.0,8.0,0.0,4.807692307692308 -502,10.0,10.0,0.0,-4.807692307692308 -502,11.0,3.0,0.0,4.191255364806866 -502,11.0,11.0,6.573961583776156,-24.424167659260668 -502,11.0,12.0,0.0,7.142857142857143 -502,11.0,13.0,-1.5265676088395577,3.1734252729654173 -502,11.0,14.0,-3.0953961826564296,6.097275864326261 -502,11.0,15.0,-1.9519977922801688,4.104359379111847 -502,12.0,11.0,0.0,7.142857142857143 -502,12.0,12.0,0.0,-7.142857142857143 -502,13.0,11.0,-1.5265676088395577,3.1734252729654173 -502,13.0,13.0,4.01751987283902,-5.424299332335067 -502,13.0,14.0,-2.4909522639994623,2.250874059369649 -502,14.0,11.0,-3.0953961826564296,6.097275864326261 -502,14.0,13.0,-2.4909522639994623,2.250874059369649 -502,14.0,14.0,9.365498545964757,-16.01163373210796 -502,14.0,17.0,-1.8108011504072024,3.687418931630696 -502,14.0,22.0,-1.9683489489016612,3.976064876781356 -502,15.0,11.0,-1.9519977922801688,4.104359379111847 -502,15.0,15.0,3.271064728633931,-8.94513365126506 -502,15.0,16.0,-1.3190669363537617,4.8407742721532125 -502,16.0,9.0,-3.956039125715353,10.317447719844054 -502,16.0,15.0,-1.3190669363537617,4.8407742721532125 -502,16.0,16.0,5.275106062069114,-15.158221991997266 -502,17.0,14.0,-1.8108011504072024,3.687418931630696 -502,17.0,17.0,4.886487584415919,-9.906177730909668 -502,17.0,18.0,-3.0756864340087167,6.218758799278971 -502,18.0,17.0,-3.0756864340087167,6.218758799278971 -502,18.0,18.0,8.958039375185187,-17.98346468163191 -502,18.0,19.0,-5.88235294117647,11.76470588235294 -502,19.0,18.0,-5.88235294117647,11.76470588235294 -502,19.0,19.0,5.88235294117647,-11.76470588235294 -502,20.0,9.0,-5.101853820159654,10.98071411292983 -502,20.0,20.0,21.876495189895888,-45.10843276170355 -502,20.0,21.0,-16.774641369736234,34.127718648773715 -502,21.0,9.0,-2.619319553382597,5.400770303329455 -502,21.0,20.0,-16.774641369736234,34.127718648773715 -502,21.0,21.0,21.93449907537439,-43.48289181517921 -502,21.0,23.0,-2.5405381522555563,3.95440286307604 -502,22.0,14.0,-1.9683489489016612,3.976064876781356 -502,22.0,22.0,3.429754555384988,-6.965303617315433 -502,22.0,23.0,-1.4614056064833263,2.989238740534077 -502,23.0,21.0,-2.5405381522555563,3.95440286307604 -502,23.0,22.0,-1.4614056064833263,2.989238740534077 -502,23.0,23.0,5.311836702613133,-9.188263657315172 -502,23.0,24.0,-1.3098929438742493,2.287622053705056 -502,24.0,23.0,-1.3098929438742493,2.287622053705056 -502,24.0,24.0,4.495715080321987,-7.864978761969621 -502,24.0,25.0,-1.2165301194494855,1.8171440463475024 -502,24.0,26.0,-1.9692920169982515,3.760212661917064 -502,25.0,24.0,-1.2165301194494855,1.8171440463475024 -502,25.0,25.0,1.2165301194494855,-1.8171440463475024 -502,26.0,24.0,-1.9692920169982515,3.760212661917064 -502,26.0,26.0,3.652281470778589,-9.46044252232512 -502,26.0,27.0,0.0,2.608731947574922 -502,26.0,28.0,-0.99553355095268,1.881005840357816 -502,26.0,29.0,-0.6874559028276572,1.293971494797717 -502,27.0,5.0,-4.362844058012917,15.463571542897856 -502,27.0,7.0,-1.4439790613954469,4.540814658476248 -502,27.0,26.0,0.0,2.608731947574922 -502,27.0,27.0,5.806823119408364,-22.67145722159613 -502,28.0,26.0,-0.99553355095268,1.881005840357816 -502,28.0,28.0,0.99553355095268,-1.881005840357816 -502,29.0,26.0,-0.6874559028276572,1.293971494797717 -502,29.0,29.0,0.6874559028276572,-1.293971494797717 -503,0.0,0.0,6.765516048652632,-21.23160167089863 -503,0.0,1.0,-5.224646179885656,15.646726840803398 -503,0.0,2.0,-1.5408698687669766,5.631674830095234 -503,1.0,0.0,-5.224646179885656,15.646726840803398 -503,1.0,1.0,9.75228216552403,-30.648662892676068 -503,1.0,3.0,-1.7055303166990268,5.1973792282565086 -503,1.0,4.0,-1.1359607881738778,4.772479328281356 -503,1.0,5.0,-1.6861448807654689,5.116477495334806 -503,2.0,0.0,-1.5408698687669766,5.631674830095234 -503,2.0,2.0,9.736318911079088,-29.13794745915803 -503,2.0,3.0,-8.19544904231211,23.5308726290628 -503,3.0,1.0,-1.7055303166990268,5.1973792282565086 -503,3.0,2.0,-8.19544904231211,23.5308726290628 -503,3.0,3.0,16.314103089185693,-55.509410535254254 -503,3.0,5.0,-6.413123730174556,22.31120356548123 -503,3.0,11.0,0.0,4.191255364806866 -503,4.0,1.0,-1.1359607881738778,4.772479328281356 -503,4.0,4.0,4.089980824135861,-12.190647245055052 -503,4.0,6.0,-2.954020035961983,7.449267916773697 -503,5.0,1.0,-1.6861448807654689,5.116477495334806 -503,5.0,3.0,-6.413123730174556,22.31120356548123 -503,5.0,5.0,22.341631269034565,-77.80272577435625 -503,5.0,6.0,-3.590210423980992,11.02611441072814 -503,5.0,7.0,-6.289308176100628,22.0125786163522 -503,5.0,9.0,0.0,1.8561002591115965 -503,5.0,27.0,-4.362844058012917,15.463571542897856 -503,6.0,4.0,-2.954020035961983,7.449267916773697 -503,6.0,5.0,-3.590210423980992,11.02611441072814 -503,6.0,6.0,6.544230459942975,-18.45668232750184 -503,7.0,5.0,-6.289308176100628,22.0125786163522 -503,7.0,7.0,6.289308176100628,-22.0080786163522 -503,8.0,8.0,0.0,-13.8986013986014 -503,8.0,9.0,0.0,9.090909090909092 -503,8.0,10.0,0.0,4.807692307692308 -503,9.0,5.0,0.0,1.8561002591115965 -503,9.0,8.0,0.0,9.090909090909092 -503,9.0,9.0,13.462042814524237,-41.3837606675224 -503,9.0,16.0,-3.956039125715353,10.317447719844054 -503,9.0,19.0,-1.7848303152666305,3.98535828943083 -503,9.0,20.0,-5.101853820159654,10.98071411292983 -503,9.0,21.0,-2.619319553382597,5.400770303329455 -503,10.0,8.0,0.0,4.807692307692308 -503,10.0,10.0,0.0,-4.807692307692308 -503,11.0,3.0,0.0,4.191255364806866 -503,11.0,11.0,5.047393974936599,-21.25074238629525 -503,11.0,12.0,0.0,7.142857142857143 -503,11.0,14.0,-3.0953961826564296,6.097275864326261 -503,11.0,15.0,-1.9519977922801688,4.104359379111847 -503,12.0,11.0,0.0,7.142857142857143 -503,12.0,12.0,0.0,-7.142857142857143 -503,13.0,13.0,2.4909522639994623,-2.250874059369649 -503,13.0,14.0,-2.4909522639994623,2.250874059369649 -503,14.0,11.0,-3.0953961826564296,6.097275864326261 -503,14.0,13.0,-2.4909522639994623,2.250874059369649 -503,14.0,14.0,9.365498545964757,-16.01163373210796 -503,14.0,17.0,-1.8108011504072024,3.687418931630696 -503,14.0,22.0,-1.9683489489016612,3.976064876781356 -503,15.0,11.0,-1.9519977922801688,4.104359379111847 -503,15.0,15.0,3.271064728633931,-8.94513365126506 -503,15.0,16.0,-1.3190669363537617,4.8407742721532125 -503,16.0,9.0,-3.956039125715353,10.317447719844054 -503,16.0,15.0,-1.3190669363537617,4.8407742721532125 -503,16.0,16.0,5.275106062069114,-15.158221991997266 -503,17.0,14.0,-1.8108011504072024,3.687418931630696 -503,17.0,17.0,4.886487584415919,-9.906177730909668 -503,17.0,18.0,-3.0756864340087167,6.218758799278971 -503,18.0,17.0,-3.0756864340087167,6.218758799278971 -503,18.0,18.0,8.958039375185187,-17.98346468163191 -503,18.0,19.0,-5.88235294117647,11.76470588235294 -503,19.0,9.0,-1.7848303152666305,3.98535828943083 -503,19.0,18.0,-5.88235294117647,11.76470588235294 -503,19.0,19.0,7.6671832564431,-15.75006417178377 -503,20.0,9.0,-5.101853820159654,10.98071411292983 -503,20.0,20.0,21.876495189895888,-45.10843276170355 -503,20.0,21.0,-16.774641369736234,34.127718648773715 -503,21.0,9.0,-2.619319553382597,5.400770303329455 -503,21.0,20.0,-16.774641369736234,34.127718648773715 -503,21.0,21.0,19.393960923118836,-39.52848895210317 -503,22.0,14.0,-1.9683489489016612,3.976064876781356 -503,22.0,22.0,3.429754555384988,-6.965303617315433 -503,22.0,23.0,-1.4614056064833263,2.989238740534077 -503,23.0,22.0,-1.4614056064833263,2.989238740534077 -503,23.0,23.0,2.771298550357576,-5.233860794239132 -503,23.0,24.0,-1.3098929438742493,2.287622053705056 -503,24.0,23.0,-1.3098929438742493,2.287622053705056 -503,24.0,24.0,4.495715080321987,-7.864978761969621 -503,24.0,25.0,-1.2165301194494855,1.8171440463475024 -503,24.0,26.0,-1.9692920169982515,3.760212661917064 -503,25.0,24.0,-1.2165301194494855,1.8171440463475024 -503,25.0,25.0,1.2165301194494855,-1.8171440463475024 -503,26.0,24.0,-1.9692920169982515,3.760212661917064 -503,26.0,26.0,3.652281470778589,-9.46044252232512 -503,26.0,27.0,0.0,2.608731947574922 -503,26.0,28.0,-0.99553355095268,1.881005840357816 -503,26.0,29.0,-0.6874559028276572,1.293971494797717 -503,27.0,5.0,-4.362844058012917,15.463571542897856 -503,27.0,26.0,0.0,2.608731947574922 -503,27.0,27.0,4.362844058012917,-18.15204256311988 -503,28.0,26.0,-0.99553355095268,1.881005840357816 -503,28.0,28.0,1.9075867579849564,-3.604364401207048 -503,28.0,29.0,-0.9120532070322764,1.7233585608492326 -503,29.0,26.0,-0.6874559028276572,1.293971494797717 -503,29.0,28.0,-0.9120532070322764,1.7233585608492326 -503,29.0,29.0,1.5995091098599337,-3.0173300556469496 -504,0.0,0.0,6.765516048652632,-21.23160167089863 -504,0.0,1.0,-5.224646179885656,15.646726840803398 -504,0.0,2.0,-1.5408698687669766,5.631674830095234 -504,1.0,0.0,-5.224646179885656,15.646726840803398 -504,1.0,1.0,9.75228216552403,-30.648662892676068 -504,1.0,3.0,-1.7055303166990268,5.1973792282565086 -504,1.0,4.0,-1.1359607881738778,4.772479328281356 -504,1.0,5.0,-1.6861448807654689,5.116477495334806 -504,2.0,0.0,-1.5408698687669766,5.631674830095234 -504,2.0,2.0,9.736318911079088,-29.13794745915803 -504,2.0,3.0,-8.19544904231211,23.5308726290628 -504,3.0,1.0,-1.7055303166990268,5.1973792282565086 -504,3.0,2.0,-8.19544904231211,23.5308726290628 -504,3.0,3.0,16.314103089185693,-55.509410535254254 -504,3.0,5.0,-6.413123730174556,22.31120356548123 -504,3.0,11.0,0.0,4.191255364806866 -504,4.0,1.0,-1.1359607881738778,4.772479328281356 -504,4.0,4.0,4.089980824135861,-12.190647245055052 -504,4.0,6.0,-2.954020035961983,7.449267916773697 -504,5.0,1.0,-1.6861448807654689,5.116477495334806 -504,5.0,3.0,-6.413123730174556,22.31120356548123 -504,5.0,5.0,22.341631269034565,-82.8291478657789 -504,5.0,6.0,-3.590210423980992,11.02611441072814 -504,5.0,7.0,-6.289308176100628,22.0125786163522 -504,5.0,8.0,0.0,4.915840805411357 -504,5.0,9.0,0.0,1.8561002591115965 -504,5.0,27.0,-4.362844058012917,15.463571542897856 -504,6.0,4.0,-2.954020035961983,7.449267916773697 -504,6.0,5.0,-3.590210423980992,11.02611441072814 -504,6.0,6.0,6.544230459942975,-18.45668232750184 -504,7.0,5.0,-6.289308176100628,22.0125786163522 -504,7.0,7.0,7.733287237496075,-26.527493274828448 -504,7.0,27.0,-1.4439790613954469,4.540814658476248 -504,8.0,5.0,0.0,4.915840805411357 -504,8.0,8.0,0.0,-18.706293706293707 -504,8.0,9.0,0.0,9.090909090909092 -504,8.0,10.0,0.0,4.807692307692308 -504,9.0,5.0,0.0,1.8561002591115965 -504,9.0,8.0,0.0,9.090909090909092 -504,9.0,9.0,13.462042814524237,-41.3837606675224 -504,9.0,16.0,-3.956039125715353,10.317447719844054 -504,9.0,19.0,-1.7848303152666305,3.98535828943083 -504,9.0,20.0,-5.101853820159654,10.98071411292983 -504,9.0,21.0,-2.619319553382597,5.400770303329455 -504,10.0,8.0,0.0,4.807692307692308 -504,10.0,10.0,0.0,-4.807692307692308 -504,11.0,3.0,0.0,4.191255364806866 -504,11.0,11.0,6.573961583776156,-24.424167659260668 -504,11.0,12.0,0.0,7.142857142857143 -504,11.0,13.0,-1.5265676088395577,3.1734252729654173 -504,11.0,14.0,-3.0953961826564296,6.097275864326261 -504,11.0,15.0,-1.9519977922801688,4.104359379111847 -504,12.0,11.0,0.0,7.142857142857143 -504,12.0,12.0,0.0,-7.142857142857143 -504,13.0,11.0,-1.5265676088395577,3.1734252729654173 -504,13.0,13.0,4.01751987283902,-5.424299332335067 -504,13.0,14.0,-2.4909522639994623,2.250874059369649 -504,14.0,11.0,-3.0953961826564296,6.097275864326261 -504,14.0,13.0,-2.4909522639994623,2.250874059369649 -504,14.0,14.0,9.365498545964757,-16.01163373210796 -504,14.0,17.0,-1.8108011504072024,3.687418931630696 -504,14.0,22.0,-1.9683489489016612,3.976064876781356 -504,15.0,11.0,-1.9519977922801688,4.104359379111847 -504,15.0,15.0,3.271064728633931,-8.94513365126506 -504,15.0,16.0,-1.3190669363537617,4.8407742721532125 -504,16.0,9.0,-3.956039125715353,10.317447719844054 -504,16.0,15.0,-1.3190669363537617,4.8407742721532125 -504,16.0,16.0,5.275106062069114,-15.158221991997266 -504,17.0,14.0,-1.8108011504072024,3.687418931630696 -504,17.0,17.0,4.886487584415919,-9.906177730909668 -504,17.0,18.0,-3.0756864340087167,6.218758799278971 -504,18.0,17.0,-3.0756864340087167,6.218758799278971 -504,18.0,18.0,8.958039375185187,-17.98346468163191 -504,18.0,19.0,-5.88235294117647,11.76470588235294 -504,19.0,9.0,-1.7848303152666305,3.98535828943083 -504,19.0,18.0,-5.88235294117647,11.76470588235294 -504,19.0,19.0,7.6671832564431,-15.75006417178377 -504,20.0,9.0,-5.101853820159654,10.98071411292983 -504,20.0,20.0,21.876495189895888,-45.10843276170355 -504,20.0,21.0,-16.774641369736234,34.127718648773715 -504,21.0,9.0,-2.619319553382597,5.400770303329455 -504,21.0,20.0,-16.774641369736234,34.127718648773715 -504,21.0,21.0,21.93449907537439,-43.48289181517921 -504,21.0,23.0,-2.5405381522555563,3.95440286307604 -504,22.0,14.0,-1.9683489489016612,3.976064876781356 -504,22.0,22.0,3.429754555384988,-6.965303617315433 -504,22.0,23.0,-1.4614056064833263,2.989238740534077 -504,23.0,21.0,-2.5405381522555563,3.95440286307604 -504,23.0,22.0,-1.4614056064833263,2.989238740534077 -504,23.0,23.0,5.311836702613133,-9.188263657315172 -504,23.0,24.0,-1.3098929438742493,2.287622053705056 -504,24.0,23.0,-1.3098929438742493,2.287622053705056 -504,24.0,24.0,4.495715080321987,-7.864978761969621 -504,24.0,25.0,-1.2165301194494855,1.8171440463475024 -504,24.0,26.0,-1.9692920169982515,3.760212661917064 -504,25.0,24.0,-1.2165301194494855,1.8171440463475024 -504,25.0,25.0,1.2165301194494855,-1.8171440463475024 -504,26.0,24.0,-1.9692920169982515,3.760212661917064 -504,26.0,26.0,3.652281470778589,-9.46044252232512 -504,26.0,27.0,0.0,2.608731947574922 -504,26.0,28.0,-0.99553355095268,1.881005840357816 -504,26.0,29.0,-0.6874559028276572,1.293971494797717 -504,27.0,5.0,-4.362844058012917,15.463571542897856 -504,27.0,7.0,-1.4439790613954469,4.540814658476248 -504,27.0,26.0,0.0,2.608731947574922 -504,27.0,27.0,5.806823119408364,-22.67145722159613 -504,28.0,26.0,-0.99553355095268,1.881005840357816 -504,28.0,28.0,1.9075867579849564,-3.604364401207048 -504,28.0,29.0,-0.9120532070322764,1.7233585608492326 -504,29.0,26.0,-0.6874559028276572,1.293971494797717 -504,29.0,28.0,-0.9120532070322764,1.7233585608492326 -504,29.0,29.0,1.5995091098599337,-3.0173300556469496 -505,0.0,0.0,6.765516048652632,-21.23160167089863 -505,0.0,1.0,-5.224646179885656,15.646726840803398 -505,0.0,2.0,-1.5408698687669766,5.631674830095234 -505,1.0,0.0,-5.224646179885656,15.646726840803398 -505,1.0,1.0,9.75228216552403,-30.648662892676068 -505,1.0,3.0,-1.7055303166990268,5.1973792282565086 -505,1.0,4.0,-1.1359607881738778,4.772479328281356 -505,1.0,5.0,-1.6861448807654689,5.116477495334806 -505,2.0,0.0,-1.5408698687669766,5.631674830095234 -505,2.0,2.0,9.736318911079088,-29.13794745915803 -505,2.0,3.0,-8.19544904231211,23.5308726290628 -505,3.0,1.0,-1.7055303166990268,5.1973792282565086 -505,3.0,2.0,-8.19544904231211,23.5308726290628 -505,3.0,3.0,16.314103089185693,-55.509410535254254 -505,3.0,5.0,-6.413123730174556,22.31120356548123 -505,3.0,11.0,0.0,4.191255364806866 -505,4.0,1.0,-1.1359607881738778,4.772479328281356 -505,4.0,4.0,4.089980824135861,-12.190647245055052 -505,4.0,6.0,-2.954020035961983,7.449267916773697 -505,5.0,1.0,-1.6861448807654689,5.116477495334806 -505,5.0,3.0,-6.413123730174556,22.31120356548123 -505,5.0,5.0,22.341631269034565,-82.8291478657789 -505,5.0,6.0,-3.590210423980992,11.02611441072814 -505,5.0,7.0,-6.289308176100628,22.0125786163522 -505,5.0,8.0,0.0,4.915840805411357 -505,5.0,9.0,0.0,1.8561002591115965 -505,5.0,27.0,-4.362844058012917,15.463571542897856 -505,6.0,4.0,-2.954020035961983,7.449267916773697 -505,6.0,5.0,-3.590210423980992,11.02611441072814 -505,6.0,6.0,6.544230459942975,-18.45668232750184 -505,7.0,5.0,-6.289308176100628,22.0125786163522 -505,7.0,7.0,7.733287237496075,-26.527493274828448 -505,7.0,27.0,-1.4439790613954469,4.540814658476248 -505,8.0,5.0,0.0,4.915840805411357 -505,8.0,8.0,0.0,-18.706293706293707 -505,8.0,9.0,0.0,9.090909090909092 -505,8.0,10.0,0.0,4.807692307692308 -505,9.0,5.0,0.0,1.8561002591115965 -505,9.0,8.0,0.0,9.090909090909092 -505,9.0,9.0,13.462042814524237,-41.3837606675224 -505,9.0,16.0,-3.956039125715353,10.317447719844054 -505,9.0,19.0,-1.7848303152666305,3.98535828943083 -505,9.0,20.0,-5.101853820159654,10.98071411292983 -505,9.0,21.0,-2.619319553382597,5.400770303329455 -505,10.0,8.0,0.0,4.807692307692308 -505,10.0,10.0,0.0,-4.807692307692308 -505,11.0,3.0,0.0,4.191255364806866 -505,11.0,11.0,3.478565401119727,-18.326891794934408 -505,11.0,12.0,0.0,7.142857142857143 -505,11.0,13.0,-1.5265676088395577,3.1734252729654173 -505,11.0,15.0,-1.9519977922801688,4.104359379111847 -505,12.0,11.0,0.0,7.142857142857143 -505,12.0,12.0,0.0,-7.142857142857143 -505,13.0,11.0,-1.5265676088395577,3.1734252729654173 -505,13.0,13.0,4.01751987283902,-5.424299332335067 -505,13.0,14.0,-2.4909522639994623,2.250874059369649 -505,14.0,13.0,-2.4909522639994623,2.250874059369649 -505,14.0,14.0,6.270102363308326,-9.9143578677817 -505,14.0,17.0,-1.8108011504072024,3.687418931630696 -505,14.0,22.0,-1.9683489489016612,3.976064876781356 -505,15.0,11.0,-1.9519977922801688,4.104359379111847 -505,15.0,15.0,3.271064728633931,-8.94513365126506 -505,15.0,16.0,-1.3190669363537617,4.8407742721532125 -505,16.0,9.0,-3.956039125715353,10.317447719844054 -505,16.0,15.0,-1.3190669363537617,4.8407742721532125 -505,16.0,16.0,5.275106062069114,-15.158221991997266 -505,17.0,14.0,-1.8108011504072024,3.687418931630696 -505,17.0,17.0,4.886487584415919,-9.906177730909668 -505,17.0,18.0,-3.0756864340087167,6.218758799278971 -505,18.0,17.0,-3.0756864340087167,6.218758799278971 -505,18.0,18.0,8.958039375185187,-17.98346468163191 -505,18.0,19.0,-5.88235294117647,11.76470588235294 -505,19.0,9.0,-1.7848303152666305,3.98535828943083 -505,19.0,18.0,-5.88235294117647,11.76470588235294 -505,19.0,19.0,7.6671832564431,-15.75006417178377 -505,20.0,9.0,-5.101853820159654,10.98071411292983 -505,20.0,20.0,21.876495189895888,-45.10843276170355 -505,20.0,21.0,-16.774641369736234,34.127718648773715 -505,21.0,9.0,-2.619319553382597,5.400770303329455 -505,21.0,20.0,-16.774641369736234,34.127718648773715 -505,21.0,21.0,21.93449907537439,-43.48289181517921 -505,21.0,23.0,-2.5405381522555563,3.95440286307604 -505,22.0,14.0,-1.9683489489016612,3.976064876781356 -505,22.0,22.0,3.429754555384988,-6.965303617315433 -505,22.0,23.0,-1.4614056064833263,2.989238740534077 -505,23.0,21.0,-2.5405381522555563,3.95440286307604 -505,23.0,22.0,-1.4614056064833263,2.989238740534077 -505,23.0,23.0,5.311836702613133,-9.188263657315172 -505,23.0,24.0,-1.3098929438742493,2.287622053705056 -505,24.0,23.0,-1.3098929438742493,2.287622053705056 -505,24.0,24.0,4.495715080321987,-7.864978761969621 -505,24.0,25.0,-1.2165301194494855,1.8171440463475024 -505,24.0,26.0,-1.9692920169982515,3.760212661917064 -505,25.0,24.0,-1.2165301194494855,1.8171440463475024 -505,25.0,25.0,1.2165301194494855,-1.8171440463475024 -505,26.0,24.0,-1.9692920169982515,3.760212661917064 -505,26.0,26.0,3.652281470778589,-9.46044252232512 -505,26.0,27.0,0.0,2.608731947574922 -505,26.0,28.0,-0.99553355095268,1.881005840357816 -505,26.0,29.0,-0.6874559028276572,1.293971494797717 -505,27.0,5.0,-4.362844058012917,15.463571542897856 -505,27.0,7.0,-1.4439790613954469,4.540814658476248 -505,27.0,26.0,0.0,2.608731947574922 -505,27.0,27.0,5.806823119408364,-22.67145722159613 -505,28.0,26.0,-0.99553355095268,1.881005840357816 -505,28.0,28.0,1.9075867579849564,-3.604364401207048 -505,28.0,29.0,-0.9120532070322764,1.7233585608492326 -505,29.0,26.0,-0.6874559028276572,1.293971494797717 -505,29.0,28.0,-0.9120532070322764,1.7233585608492326 -505,29.0,29.0,1.5995091098599337,-3.0173300556469496 -506,0.0,0.0,6.765516048652632,-21.23160167089863 -506,0.0,1.0,-5.224646179885656,15.646726840803398 -506,0.0,2.0,-1.5408698687669766,5.631674830095234 -506,1.0,0.0,-5.224646179885656,15.646726840803398 -506,1.0,1.0,8.046751848825002,-25.46968366441956 -506,1.0,4.0,-1.1359607881738778,4.772479328281356 -506,1.0,5.0,-1.6861448807654689,5.116477495334806 -506,2.0,0.0,-1.5408698687669766,5.631674830095234 -506,2.0,2.0,9.736318911079088,-29.13794745915803 -506,2.0,3.0,-8.19544904231211,23.5308726290628 -506,3.0,2.0,-8.19544904231211,23.5308726290628 -506,3.0,3.0,14.608572772486664,-50.33043130699775 -506,3.0,5.0,-6.413123730174556,22.31120356548123 -506,3.0,11.0,0.0,4.191255364806866 -506,4.0,1.0,-1.1359607881738778,4.772479328281356 -506,4.0,4.0,4.089980824135861,-12.190647245055052 -506,4.0,6.0,-2.954020035961983,7.449267916773697 -506,5.0,1.0,-1.6861448807654689,5.116477495334806 -506,5.0,3.0,-6.413123730174556,22.31120356548123 -506,5.0,5.0,22.341631269034565,-82.8291478657789 -506,5.0,6.0,-3.590210423980992,11.02611441072814 -506,5.0,7.0,-6.289308176100628,22.0125786163522 -506,5.0,8.0,0.0,4.915840805411357 -506,5.0,9.0,0.0,1.8561002591115965 -506,5.0,27.0,-4.362844058012917,15.463571542897856 -506,6.0,4.0,-2.954020035961983,7.449267916773697 -506,6.0,5.0,-3.590210423980992,11.02611441072814 -506,6.0,6.0,6.544230459942975,-18.45668232750184 -506,7.0,5.0,-6.289308176100628,22.0125786163522 -506,7.0,7.0,7.733287237496075,-26.527493274828448 -506,7.0,27.0,-1.4439790613954469,4.540814658476248 -506,8.0,5.0,0.0,4.915840805411357 -506,8.0,8.0,0.0,-18.706293706293707 -506,8.0,9.0,0.0,9.090909090909092 -506,8.0,10.0,0.0,4.807692307692308 -506,9.0,5.0,0.0,1.8561002591115965 -506,9.0,8.0,0.0,9.090909090909092 -506,9.0,9.0,13.462042814524237,-41.3837606675224 -506,9.0,16.0,-3.956039125715353,10.317447719844054 -506,9.0,19.0,-1.7848303152666305,3.98535828943083 -506,9.0,20.0,-5.101853820159654,10.98071411292983 -506,9.0,21.0,-2.619319553382597,5.400770303329455 -506,10.0,8.0,0.0,4.807692307692308 -506,10.0,10.0,0.0,-4.807692307692308 -506,11.0,3.0,0.0,4.191255364806866 -506,11.0,11.0,6.573961583776156,-24.424167659260668 -506,11.0,12.0,0.0,7.142857142857143 -506,11.0,13.0,-1.5265676088395577,3.1734252729654173 -506,11.0,14.0,-3.0953961826564296,6.097275864326261 -506,11.0,15.0,-1.9519977922801688,4.104359379111847 -506,12.0,11.0,0.0,7.142857142857143 -506,12.0,12.0,0.0,-7.142857142857143 -506,13.0,11.0,-1.5265676088395577,3.1734252729654173 -506,13.0,13.0,4.01751987283902,-5.424299332335067 -506,13.0,14.0,-2.4909522639994623,2.250874059369649 -506,14.0,11.0,-3.0953961826564296,6.097275864326261 -506,14.0,13.0,-2.4909522639994623,2.250874059369649 -506,14.0,14.0,9.365498545964757,-16.01163373210796 -506,14.0,17.0,-1.8108011504072024,3.687418931630696 -506,14.0,22.0,-1.9683489489016612,3.976064876781356 -506,15.0,11.0,-1.9519977922801688,4.104359379111847 -506,15.0,15.0,1.9519977922801688,-4.104359379111847 -506,16.0,9.0,-3.956039125715353,10.317447719844054 -506,16.0,16.0,3.956039125715353,-10.317447719844054 -506,17.0,14.0,-1.8108011504072024,3.687418931630696 -506,17.0,17.0,4.886487584415919,-9.906177730909668 -506,17.0,18.0,-3.0756864340087167,6.218758799278971 -506,18.0,17.0,-3.0756864340087167,6.218758799278971 -506,18.0,18.0,3.0756864340087167,-6.218758799278971 -506,19.0,9.0,-1.7848303152666305,3.98535828943083 -506,19.0,19.0,1.7848303152666305,-3.98535828943083 -506,20.0,9.0,-5.101853820159654,10.98071411292983 -506,20.0,20.0,21.876495189895888,-45.10843276170355 -506,20.0,21.0,-16.774641369736234,34.127718648773715 -506,21.0,9.0,-2.619319553382597,5.400770303329455 -506,21.0,20.0,-16.774641369736234,34.127718648773715 -506,21.0,21.0,21.93449907537439,-43.48289181517921 -506,21.0,23.0,-2.5405381522555563,3.95440286307604 -506,22.0,14.0,-1.9683489489016612,3.976064876781356 -506,22.0,22.0,3.429754555384988,-6.965303617315433 -506,22.0,23.0,-1.4614056064833263,2.989238740534077 -506,23.0,21.0,-2.5405381522555563,3.95440286307604 -506,23.0,22.0,-1.4614056064833263,2.989238740534077 -506,23.0,23.0,5.311836702613133,-9.188263657315172 -506,23.0,24.0,-1.3098929438742493,2.287622053705056 -506,24.0,23.0,-1.3098929438742493,2.287622053705056 -506,24.0,24.0,4.495715080321987,-7.864978761969621 -506,24.0,25.0,-1.2165301194494855,1.8171440463475024 -506,24.0,26.0,-1.9692920169982515,3.760212661917064 -506,25.0,24.0,-1.2165301194494855,1.8171440463475024 -506,25.0,25.0,1.2165301194494855,-1.8171440463475024 -506,26.0,24.0,-1.9692920169982515,3.760212661917064 -506,26.0,26.0,3.652281470778589,-9.46044252232512 -506,26.0,27.0,0.0,2.608731947574922 -506,26.0,28.0,-0.99553355095268,1.881005840357816 -506,26.0,29.0,-0.6874559028276572,1.293971494797717 -506,27.0,5.0,-4.362844058012917,15.463571542897856 -506,27.0,7.0,-1.4439790613954469,4.540814658476248 -506,27.0,26.0,0.0,2.608731947574922 -506,27.0,27.0,5.806823119408364,-22.67145722159613 -506,28.0,26.0,-0.99553355095268,1.881005840357816 -506,28.0,28.0,1.9075867579849564,-3.604364401207048 -506,28.0,29.0,-0.9120532070322764,1.7233585608492326 -506,29.0,26.0,-0.6874559028276572,1.293971494797717 -506,29.0,28.0,-0.9120532070322764,1.7233585608492326 -506,29.0,29.0,1.5995091098599337,-3.0173300556469496 -507,0.0,0.0,6.765516048652632,-21.23160167089863 -507,0.0,1.0,-5.224646179885656,15.646726840803398 -507,0.0,2.0,-1.5408698687669766,5.631674830095234 -507,1.0,0.0,-5.224646179885656,15.646726840803398 -507,1.0,1.0,9.75228216552403,-30.648662892676068 -507,1.0,3.0,-1.7055303166990268,5.1973792282565086 -507,1.0,4.0,-1.1359607881738778,4.772479328281356 -507,1.0,5.0,-1.6861448807654689,5.116477495334806 -507,2.0,0.0,-1.5408698687669766,5.631674830095234 -507,2.0,2.0,9.736318911079088,-29.13794745915803 -507,2.0,3.0,-8.19544904231211,23.5308726290628 -507,3.0,1.0,-1.7055303166990268,5.1973792282565086 -507,3.0,2.0,-8.19544904231211,23.5308726290628 -507,3.0,3.0,16.314103089185693,-55.509410535254254 -507,3.0,5.0,-6.413123730174556,22.31120356548123 -507,3.0,11.0,0.0,4.191255364806866 -507,4.0,1.0,-1.1359607881738778,4.772479328281356 -507,4.0,4.0,4.089980824135861,-12.190647245055052 -507,4.0,6.0,-2.954020035961983,7.449267916773697 -507,5.0,1.0,-1.6861448807654689,5.116477495334806 -507,5.0,3.0,-6.413123730174556,22.31120356548123 -507,5.0,5.0,22.341631269034565,-82.8291478657789 -507,5.0,6.0,-3.590210423980992,11.02611441072814 -507,5.0,7.0,-6.289308176100628,22.0125786163522 -507,5.0,8.0,0.0,4.915840805411357 -507,5.0,9.0,0.0,1.8561002591115965 -507,5.0,27.0,-4.362844058012917,15.463571542897856 -507,6.0,4.0,-2.954020035961983,7.449267916773697 -507,6.0,5.0,-3.590210423980992,11.02611441072814 -507,6.0,6.0,6.544230459942975,-18.45668232750184 -507,7.0,5.0,-6.289308176100628,22.0125786163522 -507,7.0,7.0,7.733287237496075,-26.527493274828448 -507,7.0,27.0,-1.4439790613954469,4.540814658476248 -507,8.0,5.0,0.0,4.915840805411357 -507,8.0,8.0,0.0,-18.706293706293707 -507,8.0,9.0,0.0,9.090909090909092 -507,8.0,10.0,0.0,4.807692307692308 -507,9.0,5.0,0.0,1.8561002591115965 -507,9.0,8.0,0.0,9.090909090909092 -507,9.0,9.0,13.462042814524237,-41.3837606675224 -507,9.0,16.0,-3.956039125715353,10.317447719844054 -507,9.0,19.0,-1.7848303152666305,3.98535828943083 -507,9.0,20.0,-5.101853820159654,10.98071411292983 -507,9.0,21.0,-2.619319553382597,5.400770303329455 -507,10.0,8.0,0.0,4.807692307692308 -507,10.0,10.0,0.0,-4.807692307692308 -507,11.0,3.0,0.0,4.191255364806866 -507,11.0,11.0,6.573961583776156,-24.424167659260668 -507,11.0,12.0,0.0,7.142857142857143 -507,11.0,13.0,-1.5265676088395577,3.1734252729654173 -507,11.0,14.0,-3.0953961826564296,6.097275864326261 -507,11.0,15.0,-1.9519977922801688,4.104359379111847 -507,12.0,11.0,0.0,7.142857142857143 -507,12.0,12.0,0.0,-7.142857142857143 -507,13.0,11.0,-1.5265676088395577,3.1734252729654173 -507,13.0,13.0,4.01751987283902,-5.424299332335067 -507,13.0,14.0,-2.4909522639994623,2.250874059369649 -507,14.0,11.0,-3.0953961826564296,6.097275864326261 -507,14.0,13.0,-2.4909522639994623,2.250874059369649 -507,14.0,14.0,9.365498545964757,-16.01163373210796 -507,14.0,17.0,-1.8108011504072024,3.687418931630696 -507,14.0,22.0,-1.9683489489016612,3.976064876781356 -507,15.0,11.0,-1.9519977922801688,4.104359379111847 -507,15.0,15.0,3.271064728633931,-8.94513365126506 -507,15.0,16.0,-1.3190669363537617,4.8407742721532125 -507,16.0,9.0,-3.956039125715353,10.317447719844054 -507,16.0,15.0,-1.3190669363537617,4.8407742721532125 -507,16.0,16.0,5.275106062069114,-15.158221991997266 -507,17.0,14.0,-1.8108011504072024,3.687418931630696 -507,17.0,17.0,4.886487584415919,-9.906177730909668 -507,17.0,18.0,-3.0756864340087167,6.218758799278971 -507,18.0,17.0,-3.0756864340087167,6.218758799278971 -507,18.0,18.0,8.958039375185187,-17.98346468163191 -507,18.0,19.0,-5.88235294117647,11.76470588235294 -507,19.0,9.0,-1.7848303152666305,3.98535828943083 -507,19.0,18.0,-5.88235294117647,11.76470588235294 -507,19.0,19.0,7.6671832564431,-15.75006417178377 -507,20.0,9.0,-5.101853820159654,10.98071411292983 -507,20.0,20.0,21.876495189895888,-45.10843276170355 -507,20.0,21.0,-16.774641369736234,34.127718648773715 -507,21.0,9.0,-2.619319553382597,5.400770303329455 -507,21.0,20.0,-16.774641369736234,34.127718648773715 -507,21.0,21.0,21.93449907537439,-43.48289181517921 -507,21.0,23.0,-2.5405381522555563,3.95440286307604 -507,22.0,14.0,-1.9683489489016612,3.976064876781356 -507,22.0,22.0,3.429754555384988,-6.965303617315433 -507,22.0,23.0,-1.4614056064833263,2.989238740534077 -507,23.0,21.0,-2.5405381522555563,3.95440286307604 -507,23.0,22.0,-1.4614056064833263,2.989238740534077 -507,23.0,23.0,5.311836702613133,-9.188263657315172 -507,23.0,24.0,-1.3098929438742493,2.287622053705056 -507,24.0,23.0,-1.3098929438742493,2.287622053705056 -507,24.0,24.0,4.495715080321987,-7.864978761969621 -507,24.0,25.0,-1.2165301194494855,1.8171440463475024 -507,24.0,26.0,-1.9692920169982515,3.760212661917064 -507,25.0,24.0,-1.2165301194494855,1.8171440463475024 -507,25.0,25.0,1.2165301194494855,-1.8171440463475024 -507,26.0,24.0,-1.9692920169982515,3.760212661917064 -507,26.0,26.0,3.652281470778589,-9.46044252232512 -507,26.0,27.0,0.0,2.608731947574922 -507,26.0,28.0,-0.99553355095268,1.881005840357816 -507,26.0,29.0,-0.6874559028276572,1.293971494797717 -507,27.0,5.0,-4.362844058012917,15.463571542897856 -507,27.0,7.0,-1.4439790613954469,4.540814658476248 -507,27.0,26.0,0.0,2.608731947574922 -507,27.0,27.0,5.806823119408364,-22.67145722159613 -507,28.0,26.0,-0.99553355095268,1.881005840357816 -507,28.0,28.0,1.9075867579849564,-3.604364401207048 -507,28.0,29.0,-0.9120532070322764,1.7233585608492326 -507,29.0,26.0,-0.6874559028276572,1.293971494797717 -507,29.0,28.0,-0.9120532070322764,1.7233585608492326 -507,29.0,29.0,1.5995091098599337,-3.0173300556469496 -508,0.0,0.0,6.765516048652632,-21.23160167089863 -508,0.0,1.0,-5.224646179885656,15.646726840803398 -508,0.0,2.0,-1.5408698687669766,5.631674830095234 -508,1.0,0.0,-5.224646179885656,15.646726840803398 -508,1.0,1.0,9.75228216552403,-30.648662892676068 -508,1.0,3.0,-1.7055303166990268,5.1973792282565086 -508,1.0,4.0,-1.1359607881738778,4.772479328281356 -508,1.0,5.0,-1.6861448807654689,5.116477495334806 -508,2.0,0.0,-1.5408698687669766,5.631674830095234 -508,2.0,2.0,9.736318911079088,-29.13794745915803 -508,2.0,3.0,-8.19544904231211,23.5308726290628 -508,3.0,1.0,-1.7055303166990268,5.1973792282565086 -508,3.0,2.0,-8.19544904231211,23.5308726290628 -508,3.0,3.0,16.314103089185693,-55.509410535254254 -508,3.0,5.0,-6.413123730174556,22.31120356548123 -508,3.0,11.0,0.0,4.191255364806866 -508,4.0,1.0,-1.1359607881738778,4.772479328281356 -508,4.0,4.0,4.089980824135861,-12.190647245055052 -508,4.0,6.0,-2.954020035961983,7.449267916773697 -508,5.0,1.0,-1.6861448807654689,5.116477495334806 -508,5.0,3.0,-6.413123730174556,22.31120356548123 -508,5.0,5.0,16.052323092933932,-60.8210692494267 -508,5.0,6.0,-3.590210423980992,11.02611441072814 -508,5.0,8.0,0.0,4.915840805411357 -508,5.0,9.0,0.0,1.8561002591115965 -508,5.0,27.0,-4.362844058012917,15.463571542897856 -508,6.0,4.0,-2.954020035961983,7.449267916773697 -508,6.0,5.0,-3.590210423980992,11.02611441072814 -508,6.0,6.0,6.544230459942975,-18.45668232750184 -508,7.0,7.0,1.4439790613954469,-4.519414658476248 -508,7.0,27.0,-1.4439790613954469,4.540814658476248 -508,8.0,5.0,0.0,4.915840805411357 -508,8.0,8.0,0.0,-18.706293706293707 -508,8.0,9.0,0.0,9.090909090909092 -508,8.0,10.0,0.0,4.807692307692308 -508,9.0,5.0,0.0,1.8561002591115965 -508,9.0,8.0,0.0,9.090909090909092 -508,9.0,9.0,13.462042814524237,-41.3837606675224 -508,9.0,16.0,-3.956039125715353,10.317447719844054 -508,9.0,19.0,-1.7848303152666305,3.98535828943083 -508,9.0,20.0,-5.101853820159654,10.98071411292983 -508,9.0,21.0,-2.619319553382597,5.400770303329455 -508,10.0,8.0,0.0,4.807692307692308 -508,10.0,10.0,0.0,-4.807692307692308 -508,11.0,3.0,0.0,4.191255364806866 -508,11.0,11.0,6.573961583776156,-24.424167659260668 -508,11.0,12.0,0.0,7.142857142857143 -508,11.0,13.0,-1.5265676088395577,3.1734252729654173 -508,11.0,14.0,-3.0953961826564296,6.097275864326261 -508,11.0,15.0,-1.9519977922801688,4.104359379111847 -508,12.0,11.0,0.0,7.142857142857143 -508,12.0,12.0,0.0,-7.142857142857143 -508,13.0,11.0,-1.5265676088395577,3.1734252729654173 -508,13.0,13.0,4.01751987283902,-5.424299332335067 -508,13.0,14.0,-2.4909522639994623,2.250874059369649 -508,14.0,11.0,-3.0953961826564296,6.097275864326261 -508,14.0,13.0,-2.4909522639994623,2.250874059369649 -508,14.0,14.0,9.365498545964757,-16.01163373210796 -508,14.0,17.0,-1.8108011504072024,3.687418931630696 -508,14.0,22.0,-1.9683489489016612,3.976064876781356 -508,15.0,11.0,-1.9519977922801688,4.104359379111847 -508,15.0,15.0,3.271064728633931,-8.94513365126506 -508,15.0,16.0,-1.3190669363537617,4.8407742721532125 -508,16.0,9.0,-3.956039125715353,10.317447719844054 -508,16.0,15.0,-1.3190669363537617,4.8407742721532125 -508,16.0,16.0,5.275106062069114,-15.158221991997266 -508,17.0,14.0,-1.8108011504072024,3.687418931630696 -508,17.0,17.0,4.886487584415919,-9.906177730909668 -508,17.0,18.0,-3.0756864340087167,6.218758799278971 -508,18.0,17.0,-3.0756864340087167,6.218758799278971 -508,18.0,18.0,3.0756864340087167,-6.218758799278971 -508,19.0,9.0,-1.7848303152666305,3.98535828943083 -508,19.0,19.0,1.7848303152666305,-3.98535828943083 -508,20.0,9.0,-5.101853820159654,10.98071411292983 -508,20.0,20.0,21.876495189895888,-45.10843276170355 -508,20.0,21.0,-16.774641369736234,34.127718648773715 -508,21.0,9.0,-2.619319553382597,5.400770303329455 -508,21.0,20.0,-16.774641369736234,34.127718648773715 -508,21.0,21.0,21.93449907537439,-43.48289181517921 -508,21.0,23.0,-2.5405381522555563,3.95440286307604 -508,22.0,14.0,-1.9683489489016612,3.976064876781356 -508,22.0,22.0,3.429754555384988,-6.965303617315433 -508,22.0,23.0,-1.4614056064833263,2.989238740534077 -508,23.0,21.0,-2.5405381522555563,3.95440286307604 -508,23.0,22.0,-1.4614056064833263,2.989238740534077 -508,23.0,23.0,5.311836702613133,-9.188263657315172 -508,23.0,24.0,-1.3098929438742493,2.287622053705056 -508,24.0,23.0,-1.3098929438742493,2.287622053705056 -508,24.0,24.0,4.495715080321987,-7.864978761969621 -508,24.0,25.0,-1.2165301194494855,1.8171440463475024 -508,24.0,26.0,-1.9692920169982515,3.760212661917064 -508,25.0,24.0,-1.2165301194494855,1.8171440463475024 -508,25.0,25.0,1.2165301194494855,-1.8171440463475024 -508,26.0,24.0,-1.9692920169982515,3.760212661917064 -508,26.0,26.0,3.652281470778589,-9.46044252232512 -508,26.0,27.0,0.0,2.608731947574922 -508,26.0,28.0,-0.99553355095268,1.881005840357816 -508,26.0,29.0,-0.6874559028276572,1.293971494797717 -508,27.0,5.0,-4.362844058012917,15.463571542897856 -508,27.0,7.0,-1.4439790613954469,4.540814658476248 -508,27.0,26.0,0.0,2.608731947574922 -508,27.0,27.0,5.806823119408364,-22.67145722159613 -508,28.0,26.0,-0.99553355095268,1.881005840357816 -508,28.0,28.0,1.9075867579849564,-3.604364401207048 -508,28.0,29.0,-0.9120532070322764,1.7233585608492326 -508,29.0,26.0,-0.6874559028276572,1.293971494797717 -508,29.0,28.0,-0.9120532070322764,1.7233585608492326 -508,29.0,29.0,1.5995091098599337,-3.0173300556469496 -509,0.0,0.0,6.765516048652632,-21.23160167089863 -509,0.0,1.0,-5.224646179885656,15.646726840803398 -509,0.0,2.0,-1.5408698687669766,5.631674830095234 -509,1.0,0.0,-5.224646179885656,15.646726840803398 -509,1.0,1.0,9.75228216552403,-30.648662892676068 -509,1.0,3.0,-1.7055303166990268,5.1973792282565086 -509,1.0,4.0,-1.1359607881738778,4.772479328281356 -509,1.0,5.0,-1.6861448807654689,5.116477495334806 -509,2.0,0.0,-1.5408698687669766,5.631674830095234 -509,2.0,2.0,9.736318911079088,-29.13794745915803 -509,2.0,3.0,-8.19544904231211,23.5308726290628 -509,3.0,1.0,-1.7055303166990268,5.1973792282565086 -509,3.0,2.0,-8.19544904231211,23.5308726290628 -509,3.0,3.0,16.314103089185693,-55.509410535254254 -509,3.0,5.0,-6.413123730174556,22.31120356548123 -509,3.0,11.0,0.0,4.191255364806866 -509,4.0,1.0,-1.1359607881738778,4.772479328281356 -509,4.0,4.0,4.089980824135861,-12.190647245055052 -509,4.0,6.0,-2.954020035961983,7.449267916773697 -509,5.0,1.0,-1.6861448807654689,5.116477495334806 -509,5.0,3.0,-6.413123730174556,22.31120356548123 -509,5.0,5.0,22.341631269034565,-82.8291478657789 -509,5.0,6.0,-3.590210423980992,11.02611441072814 -509,5.0,7.0,-6.289308176100628,22.0125786163522 -509,5.0,8.0,0.0,4.915840805411357 -509,5.0,9.0,0.0,1.8561002591115965 -509,5.0,27.0,-4.362844058012917,15.463571542897856 -509,6.0,4.0,-2.954020035961983,7.449267916773697 -509,6.0,5.0,-3.590210423980992,11.02611441072814 -509,6.0,6.0,6.544230459942975,-18.45668232750184 -509,7.0,5.0,-6.289308176100628,22.0125786163522 -509,7.0,7.0,7.733287237496075,-26.527493274828448 -509,7.0,27.0,-1.4439790613954469,4.540814658476248 -509,8.0,5.0,0.0,4.915840805411357 -509,8.0,8.0,0.0,-18.706293706293707 -509,8.0,9.0,0.0,9.090909090909092 -509,8.0,10.0,0.0,4.807692307692308 -509,9.0,5.0,0.0,1.8561002591115965 -509,9.0,8.0,0.0,9.090909090909092 -509,9.0,9.0,13.462042814524237,-41.3837606675224 -509,9.0,16.0,-3.956039125715353,10.317447719844054 -509,9.0,19.0,-1.7848303152666305,3.98535828943083 -509,9.0,20.0,-5.101853820159654,10.98071411292983 -509,9.0,21.0,-2.619319553382597,5.400770303329455 -509,10.0,8.0,0.0,4.807692307692308 -509,10.0,10.0,0.0,-4.807692307692308 -509,11.0,3.0,0.0,4.191255364806866 -509,11.0,11.0,6.573961583776156,-24.424167659260668 -509,11.0,12.0,0.0,7.142857142857143 -509,11.0,13.0,-1.5265676088395577,3.1734252729654173 -509,11.0,14.0,-3.0953961826564296,6.097275864326261 -509,11.0,15.0,-1.9519977922801688,4.104359379111847 -509,12.0,11.0,0.0,7.142857142857143 -509,12.0,12.0,0.0,-7.142857142857143 -509,13.0,11.0,-1.5265676088395577,3.1734252729654173 -509,13.0,13.0,4.01751987283902,-5.424299332335067 -509,13.0,14.0,-2.4909522639994623,2.250874059369649 -509,14.0,11.0,-3.0953961826564296,6.097275864326261 -509,14.0,13.0,-2.4909522639994623,2.250874059369649 -509,14.0,14.0,9.365498545964757,-16.01163373210796 -509,14.0,17.0,-1.8108011504072024,3.687418931630696 -509,14.0,22.0,-1.9683489489016612,3.976064876781356 -509,15.0,11.0,-1.9519977922801688,4.104359379111847 -509,15.0,15.0,3.271064728633931,-8.94513365126506 -509,15.0,16.0,-1.3190669363537617,4.8407742721532125 -509,16.0,9.0,-3.956039125715353,10.317447719844054 -509,16.0,15.0,-1.3190669363537617,4.8407742721532125 -509,16.0,16.0,5.275106062069114,-15.158221991997266 -509,17.0,14.0,-1.8108011504072024,3.687418931630696 -509,17.0,17.0,4.886487584415919,-9.906177730909668 -509,17.0,18.0,-3.0756864340087167,6.218758799278971 -509,18.0,17.0,-3.0756864340087167,6.218758799278971 -509,18.0,18.0,8.958039375185187,-17.98346468163191 -509,18.0,19.0,-5.88235294117647,11.76470588235294 -509,19.0,9.0,-1.7848303152666305,3.98535828943083 -509,19.0,18.0,-5.88235294117647,11.76470588235294 -509,19.0,19.0,7.6671832564431,-15.75006417178377 -509,20.0,9.0,-5.101853820159654,10.98071411292983 -509,20.0,20.0,21.876495189895888,-45.10843276170355 -509,20.0,21.0,-16.774641369736234,34.127718648773715 -509,21.0,9.0,-2.619319553382597,5.400770303329455 -509,21.0,20.0,-16.774641369736234,34.127718648773715 -509,21.0,21.0,21.93449907537439,-43.48289181517921 -509,21.0,23.0,-2.5405381522555563,3.95440286307604 -509,22.0,14.0,-1.9683489489016612,3.976064876781356 -509,22.0,22.0,3.429754555384988,-6.965303617315433 -509,22.0,23.0,-1.4614056064833263,2.989238740534077 -509,23.0,21.0,-2.5405381522555563,3.95440286307604 -509,23.0,22.0,-1.4614056064833263,2.989238740534077 -509,23.0,23.0,5.311836702613133,-9.188263657315172 -509,23.0,24.0,-1.3098929438742493,2.287622053705056 -509,24.0,23.0,-1.3098929438742493,2.287622053705056 -509,24.0,24.0,4.495715080321987,-7.864978761969621 -509,24.0,25.0,-1.2165301194494855,1.8171440463475024 -509,24.0,26.0,-1.9692920169982515,3.760212661917064 -509,25.0,24.0,-1.2165301194494855,1.8171440463475024 -509,25.0,25.0,1.2165301194494855,-1.8171440463475024 -509,26.0,24.0,-1.9692920169982515,3.760212661917064 -509,26.0,26.0,3.652281470778589,-9.46044252232512 -509,26.0,27.0,0.0,2.608731947574922 -509,26.0,28.0,-0.99553355095268,1.881005840357816 -509,26.0,29.0,-0.6874559028276572,1.293971494797717 -509,27.0,5.0,-4.362844058012917,15.463571542897856 -509,27.0,7.0,-1.4439790613954469,4.540814658476248 -509,27.0,26.0,0.0,2.608731947574922 -509,27.0,27.0,5.806823119408364,-22.67145722159613 -509,28.0,26.0,-0.99553355095268,1.881005840357816 -509,28.0,28.0,1.9075867579849564,-3.604364401207048 -509,28.0,29.0,-0.9120532070322764,1.7233585608492326 -509,29.0,26.0,-0.6874559028276572,1.293971494797717 -509,29.0,28.0,-0.9120532070322764,1.7233585608492326 -509,29.0,29.0,1.5995091098599337,-3.0173300556469496 -510,0.0,0.0,6.765516048652632,-21.23160167089863 -510,0.0,1.0,-5.224646179885656,15.646726840803398 -510,0.0,2.0,-1.5408698687669766,5.631674830095234 -510,1.0,0.0,-5.224646179885656,15.646726840803398 -510,1.0,1.0,9.75228216552403,-30.648662892676068 -510,1.0,3.0,-1.7055303166990268,5.1973792282565086 -510,1.0,4.0,-1.1359607881738778,4.772479328281356 -510,1.0,5.0,-1.6861448807654689,5.116477495334806 -510,2.0,0.0,-1.5408698687669766,5.631674830095234 -510,2.0,2.0,9.736318911079088,-29.13794745915803 -510,2.0,3.0,-8.19544904231211,23.5308726290628 -510,3.0,1.0,-1.7055303166990268,5.1973792282565086 -510,3.0,2.0,-8.19544904231211,23.5308726290628 -510,3.0,3.0,16.314103089185693,-55.509410535254254 -510,3.0,5.0,-6.413123730174556,22.31120356548123 -510,3.0,11.0,0.0,4.191255364806866 -510,4.0,1.0,-1.1359607881738778,4.772479328281356 -510,4.0,4.0,4.089980824135861,-12.190647245055052 -510,4.0,6.0,-2.954020035961983,7.449267916773697 -510,5.0,1.0,-1.6861448807654689,5.116477495334806 -510,5.0,3.0,-6.413123730174556,22.31120356548123 -510,5.0,5.0,22.341631269034565,-82.8291478657789 -510,5.0,6.0,-3.590210423980992,11.02611441072814 -510,5.0,7.0,-6.289308176100628,22.0125786163522 -510,5.0,8.0,0.0,4.915840805411357 -510,5.0,9.0,0.0,1.8561002591115965 -510,5.0,27.0,-4.362844058012917,15.463571542897856 -510,6.0,4.0,-2.954020035961983,7.449267916773697 -510,6.0,5.0,-3.590210423980992,11.02611441072814 -510,6.0,6.0,6.544230459942975,-18.45668232750184 -510,7.0,5.0,-6.289308176100628,22.0125786163522 -510,7.0,7.0,7.733287237496075,-26.527493274828448 -510,7.0,27.0,-1.4439790613954469,4.540814658476248 -510,8.0,5.0,0.0,4.915840805411357 -510,8.0,8.0,0.0,-18.706293706293707 -510,8.0,9.0,0.0,9.090909090909092 -510,8.0,10.0,0.0,4.807692307692308 -510,9.0,5.0,0.0,1.8561002591115965 -510,9.0,8.0,0.0,9.090909090909092 -510,9.0,9.0,13.462042814524237,-41.3837606675224 -510,9.0,16.0,-3.956039125715353,10.317447719844054 -510,9.0,19.0,-1.7848303152666305,3.98535828943083 -510,9.0,20.0,-5.101853820159654,10.98071411292983 -510,9.0,21.0,-2.619319553382597,5.400770303329455 -510,10.0,8.0,0.0,4.807692307692308 -510,10.0,10.0,0.0,-4.807692307692308 -510,11.0,3.0,0.0,4.191255364806866 -510,11.0,11.0,6.573961583776156,-24.424167659260668 -510,11.0,12.0,0.0,7.142857142857143 -510,11.0,13.0,-1.5265676088395577,3.1734252729654173 -510,11.0,14.0,-3.0953961826564296,6.097275864326261 -510,11.0,15.0,-1.9519977922801688,4.104359379111847 -510,12.0,11.0,0.0,7.142857142857143 -510,12.0,12.0,0.0,-7.142857142857143 -510,13.0,11.0,-1.5265676088395577,3.1734252729654173 -510,13.0,13.0,4.01751987283902,-5.424299332335067 -510,13.0,14.0,-2.4909522639994623,2.250874059369649 -510,14.0,11.0,-3.0953961826564296,6.097275864326261 -510,14.0,13.0,-2.4909522639994623,2.250874059369649 -510,14.0,14.0,9.365498545964757,-16.01163373210796 -510,14.0,17.0,-1.8108011504072024,3.687418931630696 -510,14.0,22.0,-1.9683489489016612,3.976064876781356 -510,15.0,11.0,-1.9519977922801688,4.104359379111847 -510,15.0,15.0,3.271064728633931,-8.94513365126506 -510,15.0,16.0,-1.3190669363537617,4.8407742721532125 -510,16.0,9.0,-3.956039125715353,10.317447719844054 -510,16.0,15.0,-1.3190669363537617,4.8407742721532125 -510,16.0,16.0,5.275106062069114,-15.158221991997266 -510,17.0,14.0,-1.8108011504072024,3.687418931630696 -510,17.0,17.0,4.886487584415919,-9.906177730909668 -510,17.0,18.0,-3.0756864340087167,6.218758799278971 -510,18.0,17.0,-3.0756864340087167,6.218758799278971 -510,18.0,18.0,8.958039375185187,-17.98346468163191 -510,18.0,19.0,-5.88235294117647,11.76470588235294 -510,19.0,9.0,-1.7848303152666305,3.98535828943083 -510,19.0,18.0,-5.88235294117647,11.76470588235294 -510,19.0,19.0,7.6671832564431,-15.75006417178377 -510,20.0,9.0,-5.101853820159654,10.98071411292983 -510,20.0,20.0,21.876495189895888,-45.10843276170355 -510,20.0,21.0,-16.774641369736234,34.127718648773715 -510,21.0,9.0,-2.619319553382597,5.400770303329455 -510,21.0,20.0,-16.774641369736234,34.127718648773715 -510,21.0,21.0,21.93449907537439,-43.48289181517921 -510,21.0,23.0,-2.5405381522555563,3.95440286307604 -510,22.0,14.0,-1.9683489489016612,3.976064876781356 -510,22.0,22.0,3.429754555384988,-6.965303617315433 -510,22.0,23.0,-1.4614056064833263,2.989238740534077 -510,23.0,21.0,-2.5405381522555563,3.95440286307604 -510,23.0,22.0,-1.4614056064833263,2.989238740534077 -510,23.0,23.0,5.311836702613133,-9.188263657315172 -510,23.0,24.0,-1.3098929438742493,2.287622053705056 -510,24.0,23.0,-1.3098929438742493,2.287622053705056 -510,24.0,24.0,4.495715080321987,-7.864978761969621 -510,24.0,25.0,-1.2165301194494855,1.8171440463475024 -510,24.0,26.0,-1.9692920169982515,3.760212661917064 -510,25.0,24.0,-1.2165301194494855,1.8171440463475024 -510,25.0,25.0,1.2165301194494855,-1.8171440463475024 -510,26.0,24.0,-1.9692920169982515,3.760212661917064 -510,26.0,26.0,3.652281470778589,-9.46044252232512 -510,26.0,27.0,0.0,2.608731947574922 -510,26.0,28.0,-0.99553355095268,1.881005840357816 -510,26.0,29.0,-0.6874559028276572,1.293971494797717 -510,27.0,5.0,-4.362844058012917,15.463571542897856 -510,27.0,7.0,-1.4439790613954469,4.540814658476248 -510,27.0,26.0,0.0,2.608731947574922 -510,27.0,27.0,5.806823119408364,-22.67145722159613 -510,28.0,26.0,-0.99553355095268,1.881005840357816 -510,28.0,28.0,1.9075867579849564,-3.604364401207048 -510,28.0,29.0,-0.9120532070322764,1.7233585608492326 -510,29.0,26.0,-0.6874559028276572,1.293971494797717 -510,29.0,28.0,-0.9120532070322764,1.7233585608492326 -510,29.0,29.0,1.5995091098599337,-3.0173300556469496 -511,0.0,0.0,6.765516048652632,-21.23160167089863 -511,0.0,1.0,-5.224646179885656,15.646726840803398 -511,0.0,2.0,-1.5408698687669766,5.631674830095234 -511,1.0,0.0,-5.224646179885656,15.646726840803398 -511,1.0,1.0,9.75228216552403,-30.648662892676068 -511,1.0,3.0,-1.7055303166990268,5.1973792282565086 -511,1.0,4.0,-1.1359607881738778,4.772479328281356 -511,1.0,5.0,-1.6861448807654689,5.116477495334806 -511,2.0,0.0,-1.5408698687669766,5.631674830095234 -511,2.0,2.0,9.736318911079088,-29.13794745915803 -511,2.0,3.0,-8.19544904231211,23.5308726290628 -511,3.0,1.0,-1.7055303166990268,5.1973792282565086 -511,3.0,2.0,-8.19544904231211,23.5308726290628 -511,3.0,3.0,16.314103089185693,-55.509410535254254 -511,3.0,5.0,-6.413123730174556,22.31120356548123 -511,3.0,11.0,0.0,4.191255364806866 -511,4.0,1.0,-1.1359607881738778,4.772479328281356 -511,4.0,4.0,4.089980824135861,-12.190647245055052 -511,4.0,6.0,-2.954020035961983,7.449267916773697 -511,5.0,1.0,-1.6861448807654689,5.116477495334806 -511,5.0,3.0,-6.413123730174556,22.31120356548123 -511,5.0,5.0,16.052323092933932,-60.8210692494267 -511,5.0,6.0,-3.590210423980992,11.02611441072814 -511,5.0,8.0,0.0,4.915840805411357 -511,5.0,9.0,0.0,1.8561002591115965 -511,5.0,27.0,-4.362844058012917,15.463571542897856 -511,6.0,4.0,-2.954020035961983,7.449267916773697 -511,6.0,5.0,-3.590210423980992,11.02611441072814 -511,6.0,6.0,6.544230459942975,-18.45668232750184 -511,7.0,7.0,1.4439790613954469,-4.519414658476248 -511,7.0,27.0,-1.4439790613954469,4.540814658476248 -511,8.0,5.0,0.0,4.915840805411357 -511,8.0,8.0,0.0,-18.706293706293707 -511,8.0,9.0,0.0,9.090909090909092 -511,8.0,10.0,0.0,4.807692307692308 -511,9.0,5.0,0.0,1.8561002591115965 -511,9.0,8.0,0.0,9.090909090909092 -511,9.0,9.0,13.462042814524237,-41.3837606675224 -511,9.0,16.0,-3.956039125715353,10.317447719844054 -511,9.0,19.0,-1.7848303152666305,3.98535828943083 -511,9.0,20.0,-5.101853820159654,10.98071411292983 -511,9.0,21.0,-2.619319553382597,5.400770303329455 -511,10.0,8.0,0.0,4.807692307692308 -511,10.0,10.0,0.0,-4.807692307692308 -511,11.0,3.0,0.0,4.191255364806866 -511,11.0,11.0,6.573961583776156,-24.424167659260668 -511,11.0,12.0,0.0,7.142857142857143 -511,11.0,13.0,-1.5265676088395577,3.1734252729654173 -511,11.0,14.0,-3.0953961826564296,6.097275864326261 -511,11.0,15.0,-1.9519977922801688,4.104359379111847 -511,12.0,11.0,0.0,7.142857142857143 -511,12.0,12.0,0.0,-7.142857142857143 -511,13.0,11.0,-1.5265676088395577,3.1734252729654173 -511,13.0,13.0,4.01751987283902,-5.424299332335067 -511,13.0,14.0,-2.4909522639994623,2.250874059369649 -511,14.0,11.0,-3.0953961826564296,6.097275864326261 -511,14.0,13.0,-2.4909522639994623,2.250874059369649 -511,14.0,14.0,9.365498545964757,-16.01163373210796 -511,14.0,17.0,-1.8108011504072024,3.687418931630696 -511,14.0,22.0,-1.9683489489016612,3.976064876781356 -511,15.0,11.0,-1.9519977922801688,4.104359379111847 -511,15.0,15.0,3.271064728633931,-8.94513365126506 -511,15.0,16.0,-1.3190669363537617,4.8407742721532125 -511,16.0,9.0,-3.956039125715353,10.317447719844054 -511,16.0,15.0,-1.3190669363537617,4.8407742721532125 -511,16.0,16.0,5.275106062069114,-15.158221991997266 -511,17.0,14.0,-1.8108011504072024,3.687418931630696 -511,17.0,17.0,4.886487584415919,-9.906177730909668 -511,17.0,18.0,-3.0756864340087167,6.218758799278971 -511,18.0,17.0,-3.0756864340087167,6.218758799278971 -511,18.0,18.0,8.958039375185187,-17.98346468163191 -511,18.0,19.0,-5.88235294117647,11.76470588235294 -511,19.0,9.0,-1.7848303152666305,3.98535828943083 -511,19.0,18.0,-5.88235294117647,11.76470588235294 -511,19.0,19.0,7.6671832564431,-15.75006417178377 -511,20.0,9.0,-5.101853820159654,10.98071411292983 -511,20.0,20.0,21.876495189895888,-45.10843276170355 -511,20.0,21.0,-16.774641369736234,34.127718648773715 -511,21.0,9.0,-2.619319553382597,5.400770303329455 -511,21.0,20.0,-16.774641369736234,34.127718648773715 -511,21.0,21.0,21.93449907537439,-43.48289181517921 -511,21.0,23.0,-2.5405381522555563,3.95440286307604 -511,22.0,14.0,-1.9683489489016612,3.976064876781356 -511,22.0,22.0,3.429754555384988,-6.965303617315433 -511,22.0,23.0,-1.4614056064833263,2.989238740534077 -511,23.0,21.0,-2.5405381522555563,3.95440286307604 -511,23.0,22.0,-1.4614056064833263,2.989238740534077 -511,23.0,23.0,5.311836702613133,-9.188263657315172 -511,23.0,24.0,-1.3098929438742493,2.287622053705056 -511,24.0,23.0,-1.3098929438742493,2.287622053705056 -511,24.0,24.0,2.526423063323735,-4.104766100052558 -511,24.0,25.0,-1.2165301194494855,1.8171440463475024 -511,25.0,24.0,-1.2165301194494855,1.8171440463475024 -511,25.0,25.0,1.2165301194494855,-1.8171440463475024 -511,26.0,26.0,1.6829894537803372,-5.700229860408058 -511,26.0,27.0,0.0,2.608731947574922 -511,26.0,28.0,-0.99553355095268,1.881005840357816 -511,26.0,29.0,-0.6874559028276572,1.293971494797717 -511,27.0,5.0,-4.362844058012917,15.463571542897856 -511,27.0,7.0,-1.4439790613954469,4.540814658476248 -511,27.0,26.0,0.0,2.608731947574922 -511,27.0,27.0,5.806823119408364,-22.67145722159613 -511,28.0,26.0,-0.99553355095268,1.881005840357816 -511,28.0,28.0,0.99553355095268,-1.881005840357816 -511,29.0,26.0,-0.6874559028276572,1.293971494797717 -511,29.0,29.0,0.6874559028276572,-1.293971494797717 -512,0.0,0.0,5.224646179885656,-15.620326840803395 -512,0.0,1.0,-5.224646179885656,15.646726840803398 -512,1.0,0.0,-5.224646179885656,15.646726840803398 -512,1.0,1.0,9.75228216552403,-30.648662892676068 -512,1.0,3.0,-1.7055303166990268,5.1973792282565086 -512,1.0,4.0,-1.1359607881738778,4.772479328281356 -512,1.0,5.0,-1.6861448807654689,5.116477495334806 -512,2.0,2.0,8.19544904231211,-23.5266726290628 -512,2.0,3.0,-8.19544904231211,23.5308726290628 -512,3.0,1.0,-1.7055303166990268,5.1973792282565086 -512,3.0,2.0,-8.19544904231211,23.5308726290628 -512,3.0,3.0,16.314103089185693,-55.509410535254254 -512,3.0,5.0,-6.413123730174556,22.31120356548123 -512,3.0,11.0,0.0,4.191255364806866 -512,4.0,1.0,-1.1359607881738778,4.772479328281356 -512,4.0,4.0,4.089980824135861,-12.190647245055052 -512,4.0,6.0,-2.954020035961983,7.449267916773697 -512,5.0,1.0,-1.6861448807654689,5.116477495334806 -512,5.0,3.0,-6.413123730174556,22.31120356548123 -512,5.0,5.0,22.341631269034565,-82.8291478657789 -512,5.0,6.0,-3.590210423980992,11.02611441072814 -512,5.0,7.0,-6.289308176100628,22.0125786163522 -512,5.0,8.0,0.0,4.915840805411357 -512,5.0,9.0,0.0,1.8561002591115965 -512,5.0,27.0,-4.362844058012917,15.463571542897856 -512,6.0,4.0,-2.954020035961983,7.449267916773697 -512,6.0,5.0,-3.590210423980992,11.02611441072814 -512,6.0,6.0,6.544230459942975,-18.45668232750184 -512,7.0,5.0,-6.289308176100628,22.0125786163522 -512,7.0,7.0,7.733287237496075,-26.527493274828448 -512,7.0,27.0,-1.4439790613954469,4.540814658476248 -512,8.0,5.0,0.0,4.915840805411357 -512,8.0,8.0,0.0,-18.706293706293707 -512,8.0,9.0,0.0,9.090909090909092 -512,8.0,10.0,0.0,4.807692307692308 -512,9.0,5.0,0.0,1.8561002591115965 -512,9.0,8.0,0.0,9.090909090909092 -512,9.0,9.0,13.462042814524237,-41.3837606675224 -512,9.0,16.0,-3.956039125715353,10.317447719844054 -512,9.0,19.0,-1.7848303152666305,3.98535828943083 -512,9.0,20.0,-5.101853820159654,10.98071411292983 -512,9.0,21.0,-2.619319553382597,5.400770303329455 -512,10.0,8.0,0.0,4.807692307692308 -512,10.0,10.0,0.0,-4.807692307692308 -512,11.0,3.0,0.0,4.191255364806866 -512,11.0,11.0,6.573961583776156,-24.424167659260668 -512,11.0,12.0,0.0,7.142857142857143 -512,11.0,13.0,-1.5265676088395577,3.1734252729654173 -512,11.0,14.0,-3.0953961826564296,6.097275864326261 -512,11.0,15.0,-1.9519977922801688,4.104359379111847 -512,12.0,11.0,0.0,7.142857142857143 -512,12.0,12.0,0.0,-7.142857142857143 -512,13.0,11.0,-1.5265676088395577,3.1734252729654173 -512,13.0,13.0,4.01751987283902,-5.424299332335067 -512,13.0,14.0,-2.4909522639994623,2.250874059369649 -512,14.0,11.0,-3.0953961826564296,6.097275864326261 -512,14.0,13.0,-2.4909522639994623,2.250874059369649 -512,14.0,14.0,9.365498545964757,-16.01163373210796 -512,14.0,17.0,-1.8108011504072024,3.687418931630696 -512,14.0,22.0,-1.9683489489016612,3.976064876781356 -512,15.0,11.0,-1.9519977922801688,4.104359379111847 -512,15.0,15.0,3.271064728633931,-8.94513365126506 -512,15.0,16.0,-1.3190669363537617,4.8407742721532125 -512,16.0,9.0,-3.956039125715353,10.317447719844054 -512,16.0,15.0,-1.3190669363537617,4.8407742721532125 -512,16.0,16.0,5.275106062069114,-15.158221991997266 -512,17.0,14.0,-1.8108011504072024,3.687418931630696 -512,17.0,17.0,4.886487584415919,-9.906177730909668 -512,17.0,18.0,-3.0756864340087167,6.218758799278971 -512,18.0,17.0,-3.0756864340087167,6.218758799278971 -512,18.0,18.0,8.958039375185187,-17.98346468163191 -512,18.0,19.0,-5.88235294117647,11.76470588235294 -512,19.0,9.0,-1.7848303152666305,3.98535828943083 -512,19.0,18.0,-5.88235294117647,11.76470588235294 -512,19.0,19.0,7.6671832564431,-15.75006417178377 -512,20.0,9.0,-5.101853820159654,10.98071411292983 -512,20.0,20.0,21.876495189895888,-45.10843276170355 -512,20.0,21.0,-16.774641369736234,34.127718648773715 -512,21.0,9.0,-2.619319553382597,5.400770303329455 -512,21.0,20.0,-16.774641369736234,34.127718648773715 -512,21.0,21.0,21.93449907537439,-43.48289181517921 -512,21.0,23.0,-2.5405381522555563,3.95440286307604 -512,22.0,14.0,-1.9683489489016612,3.976064876781356 -512,22.0,22.0,3.429754555384988,-6.965303617315433 -512,22.0,23.0,-1.4614056064833263,2.989238740534077 -512,23.0,21.0,-2.5405381522555563,3.95440286307604 -512,23.0,22.0,-1.4614056064833263,2.989238740534077 -512,23.0,23.0,5.311836702613133,-9.188263657315172 -512,23.0,24.0,-1.3098929438742493,2.287622053705056 -512,24.0,23.0,-1.3098929438742493,2.287622053705056 -512,24.0,24.0,4.495715080321987,-7.864978761969621 -512,24.0,25.0,-1.2165301194494855,1.8171440463475024 -512,24.0,26.0,-1.9692920169982515,3.760212661917064 -512,25.0,24.0,-1.2165301194494855,1.8171440463475024 -512,25.0,25.0,1.2165301194494855,-1.8171440463475024 -512,26.0,24.0,-1.9692920169982515,3.760212661917064 -512,26.0,26.0,3.652281470778589,-9.46044252232512 -512,26.0,27.0,0.0,2.608731947574922 -512,26.0,28.0,-0.99553355095268,1.881005840357816 -512,26.0,29.0,-0.6874559028276572,1.293971494797717 -512,27.0,5.0,-4.362844058012917,15.463571542897856 -512,27.0,7.0,-1.4439790613954469,4.540814658476248 -512,27.0,26.0,0.0,2.608731947574922 -512,27.0,27.0,5.806823119408364,-22.67145722159613 -512,28.0,26.0,-0.99553355095268,1.881005840357816 -512,28.0,28.0,1.9075867579849564,-3.604364401207048 -512,28.0,29.0,-0.9120532070322764,1.7233585608492326 -512,29.0,26.0,-0.6874559028276572,1.293971494797717 -512,29.0,28.0,-0.9120532070322764,1.7233585608492326 -512,29.0,29.0,1.5995091098599337,-3.0173300556469496 -513,0.0,0.0,6.765516048652632,-21.23160167089863 -513,0.0,1.0,-5.224646179885656,15.646726840803398 -513,0.0,2.0,-1.5408698687669766,5.631674830095234 -513,1.0,0.0,-5.224646179885656,15.646726840803398 -513,1.0,1.0,9.75228216552403,-30.648662892676068 -513,1.0,3.0,-1.7055303166990268,5.1973792282565086 -513,1.0,4.0,-1.1359607881738778,4.772479328281356 -513,1.0,5.0,-1.6861448807654689,5.116477495334806 -513,2.0,0.0,-1.5408698687669766,5.631674830095234 -513,2.0,2.0,9.736318911079088,-29.13794745915803 -513,2.0,3.0,-8.19544904231211,23.5308726290628 -513,3.0,1.0,-1.7055303166990268,5.1973792282565086 -513,3.0,2.0,-8.19544904231211,23.5308726290628 -513,3.0,3.0,16.314103089185693,-55.509410535254254 -513,3.0,5.0,-6.413123730174556,22.31120356548123 -513,3.0,11.0,0.0,4.191255364806866 -513,4.0,1.0,-1.1359607881738778,4.772479328281356 -513,4.0,4.0,4.089980824135861,-12.190647245055052 -513,4.0,6.0,-2.954020035961983,7.449267916773697 -513,5.0,1.0,-1.6861448807654689,5.116477495334806 -513,5.0,3.0,-6.413123730174556,22.31120356548123 -513,5.0,5.0,22.341631269034565,-82.8291478657789 -513,5.0,6.0,-3.590210423980992,11.02611441072814 -513,5.0,7.0,-6.289308176100628,22.0125786163522 -513,5.0,8.0,0.0,4.915840805411357 -513,5.0,9.0,0.0,1.8561002591115965 -513,5.0,27.0,-4.362844058012917,15.463571542897856 -513,6.0,4.0,-2.954020035961983,7.449267916773697 -513,6.0,5.0,-3.590210423980992,11.02611441072814 -513,6.0,6.0,6.544230459942975,-18.45668232750184 -513,7.0,5.0,-6.289308176100628,22.0125786163522 -513,7.0,7.0,7.733287237496075,-26.527493274828448 -513,7.0,27.0,-1.4439790613954469,4.540814658476248 -513,8.0,5.0,0.0,4.915840805411357 -513,8.0,8.0,0.0,-18.706293706293707 -513,8.0,9.0,0.0,9.090909090909092 -513,8.0,10.0,0.0,4.807692307692308 -513,9.0,5.0,0.0,1.8561002591115965 -513,9.0,8.0,0.0,9.090909090909092 -513,9.0,9.0,13.462042814524237,-41.3837606675224 -513,9.0,16.0,-3.956039125715353,10.317447719844054 -513,9.0,19.0,-1.7848303152666305,3.98535828943083 -513,9.0,20.0,-5.101853820159654,10.98071411292983 -513,9.0,21.0,-2.619319553382597,5.400770303329455 -513,10.0,8.0,0.0,4.807692307692308 -513,10.0,10.0,0.0,-4.807692307692308 -513,11.0,3.0,0.0,4.191255364806866 -513,11.0,11.0,6.573961583776156,-24.424167659260668 -513,11.0,12.0,0.0,7.142857142857143 -513,11.0,13.0,-1.5265676088395577,3.1734252729654173 -513,11.0,14.0,-3.0953961826564296,6.097275864326261 -513,11.0,15.0,-1.9519977922801688,4.104359379111847 -513,12.0,11.0,0.0,7.142857142857143 -513,12.0,12.0,0.0,-7.142857142857143 -513,13.0,11.0,-1.5265676088395577,3.1734252729654173 -513,13.0,13.0,4.01751987283902,-5.424299332335067 -513,13.0,14.0,-2.4909522639994623,2.250874059369649 -513,14.0,11.0,-3.0953961826564296,6.097275864326261 -513,14.0,13.0,-2.4909522639994623,2.250874059369649 -513,14.0,14.0,9.365498545964757,-16.01163373210796 -513,14.0,17.0,-1.8108011504072024,3.687418931630696 -513,14.0,22.0,-1.9683489489016612,3.976064876781356 -513,15.0,11.0,-1.9519977922801688,4.104359379111847 -513,15.0,15.0,3.271064728633931,-8.94513365126506 -513,15.0,16.0,-1.3190669363537617,4.8407742721532125 -513,16.0,9.0,-3.956039125715353,10.317447719844054 -513,16.0,15.0,-1.3190669363537617,4.8407742721532125 -513,16.0,16.0,5.275106062069114,-15.158221991997266 -513,17.0,14.0,-1.8108011504072024,3.687418931630696 -513,17.0,17.0,4.886487584415919,-9.906177730909668 -513,17.0,18.0,-3.0756864340087167,6.218758799278971 -513,18.0,17.0,-3.0756864340087167,6.218758799278971 -513,18.0,18.0,8.958039375185187,-17.98346468163191 -513,18.0,19.0,-5.88235294117647,11.76470588235294 -513,19.0,9.0,-1.7848303152666305,3.98535828943083 -513,19.0,18.0,-5.88235294117647,11.76470588235294 -513,19.0,19.0,7.6671832564431,-15.75006417178377 -513,20.0,9.0,-5.101853820159654,10.98071411292983 -513,20.0,20.0,21.876495189895888,-45.10843276170355 -513,20.0,21.0,-16.774641369736234,34.127718648773715 -513,21.0,9.0,-2.619319553382597,5.400770303329455 -513,21.0,20.0,-16.774641369736234,34.127718648773715 -513,21.0,21.0,21.93449907537439,-43.48289181517921 -513,21.0,23.0,-2.5405381522555563,3.95440286307604 -513,22.0,14.0,-1.9683489489016612,3.976064876781356 -513,22.0,22.0,3.429754555384988,-6.965303617315433 -513,22.0,23.0,-1.4614056064833263,2.989238740534077 -513,23.0,21.0,-2.5405381522555563,3.95440286307604 -513,23.0,22.0,-1.4614056064833263,2.989238740534077 -513,23.0,23.0,5.311836702613133,-9.188263657315172 -513,23.0,24.0,-1.3098929438742493,2.287622053705056 -513,24.0,23.0,-1.3098929438742493,2.287622053705056 -513,24.0,24.0,4.495715080321987,-7.864978761969621 -513,24.0,25.0,-1.2165301194494855,1.8171440463475024 -513,24.0,26.0,-1.9692920169982515,3.760212661917064 -513,25.0,24.0,-1.2165301194494855,1.8171440463475024 -513,25.0,25.0,1.2165301194494855,-1.8171440463475024 -513,26.0,24.0,-1.9692920169982515,3.760212661917064 -513,26.0,26.0,3.652281470778589,-9.46044252232512 -513,26.0,27.0,0.0,2.608731947574922 -513,26.0,28.0,-0.99553355095268,1.881005840357816 -513,26.0,29.0,-0.6874559028276572,1.293971494797717 -513,27.0,5.0,-4.362844058012917,15.463571542897856 -513,27.0,7.0,-1.4439790613954469,4.540814658476248 -513,27.0,26.0,0.0,2.608731947574922 -513,27.0,27.0,5.806823119408364,-22.67145722159613 -513,28.0,26.0,-0.99553355095268,1.881005840357816 -513,28.0,28.0,1.9075867579849564,-3.604364401207048 -513,28.0,29.0,-0.9120532070322764,1.7233585608492326 -513,29.0,26.0,-0.6874559028276572,1.293971494797717 -513,29.0,28.0,-0.9120532070322764,1.7233585608492326 -513,29.0,29.0,1.5995091098599337,-3.0173300556469496 -514,0.0,0.0,6.765516048652632,-21.23160167089863 -514,0.0,1.0,-5.224646179885656,15.646726840803398 -514,0.0,2.0,-1.5408698687669766,5.631674830095234 -514,1.0,0.0,-5.224646179885656,15.646726840803398 -514,1.0,1.0,9.75228216552403,-30.648662892676068 -514,1.0,3.0,-1.7055303166990268,5.1973792282565086 -514,1.0,4.0,-1.1359607881738778,4.772479328281356 -514,1.0,5.0,-1.6861448807654689,5.116477495334806 -514,2.0,0.0,-1.5408698687669766,5.631674830095234 -514,2.0,2.0,9.736318911079088,-29.13794745915803 -514,2.0,3.0,-8.19544904231211,23.5308726290628 -514,3.0,1.0,-1.7055303166990268,5.1973792282565086 -514,3.0,2.0,-8.19544904231211,23.5308726290628 -514,3.0,3.0,16.314103089185693,-55.509410535254254 -514,3.0,5.0,-6.413123730174556,22.31120356548123 -514,3.0,11.0,0.0,4.191255364806866 -514,4.0,1.0,-1.1359607881738778,4.772479328281356 -514,4.0,4.0,4.089980824135861,-12.190647245055052 -514,4.0,6.0,-2.954020035961983,7.449267916773697 -514,5.0,1.0,-1.6861448807654689,5.116477495334806 -514,5.0,3.0,-6.413123730174556,22.31120356548123 -514,5.0,5.0,22.341631269034565,-82.8291478657789 -514,5.0,6.0,-3.590210423980992,11.02611441072814 -514,5.0,7.0,-6.289308176100628,22.0125786163522 -514,5.0,8.0,0.0,4.915840805411357 -514,5.0,9.0,0.0,1.8561002591115965 -514,5.0,27.0,-4.362844058012917,15.463571542897856 -514,6.0,4.0,-2.954020035961983,7.449267916773697 -514,6.0,5.0,-3.590210423980992,11.02611441072814 -514,6.0,6.0,6.544230459942975,-18.45668232750184 -514,7.0,5.0,-6.289308176100628,22.0125786163522 -514,7.0,7.0,7.733287237496075,-26.527493274828448 -514,7.0,27.0,-1.4439790613954469,4.540814658476248 -514,8.0,5.0,0.0,4.915840805411357 -514,8.0,8.0,0.0,-18.706293706293707 -514,8.0,9.0,0.0,9.090909090909092 -514,8.0,10.0,0.0,4.807692307692308 -514,9.0,5.0,0.0,1.8561002591115965 -514,9.0,8.0,0.0,9.090909090909092 -514,9.0,9.0,13.462042814524237,-41.3837606675224 -514,9.0,16.0,-3.956039125715353,10.317447719844054 -514,9.0,19.0,-1.7848303152666305,3.98535828943083 -514,9.0,20.0,-5.101853820159654,10.98071411292983 -514,9.0,21.0,-2.619319553382597,5.400770303329455 -514,10.0,8.0,0.0,4.807692307692308 -514,10.0,10.0,0.0,-4.807692307692308 -514,11.0,3.0,0.0,4.191255364806866 -514,11.0,11.0,6.573961583776156,-24.424167659260668 -514,11.0,12.0,0.0,7.142857142857143 -514,11.0,13.0,-1.5265676088395577,3.1734252729654173 -514,11.0,14.0,-3.0953961826564296,6.097275864326261 -514,11.0,15.0,-1.9519977922801688,4.104359379111847 -514,12.0,11.0,0.0,7.142857142857143 -514,12.0,12.0,0.0,-7.142857142857143 -514,13.0,11.0,-1.5265676088395577,3.1734252729654173 -514,13.0,13.0,4.01751987283902,-5.424299332335067 -514,13.0,14.0,-2.4909522639994623,2.250874059369649 -514,14.0,11.0,-3.0953961826564296,6.097275864326261 -514,14.0,13.0,-2.4909522639994623,2.250874059369649 -514,14.0,14.0,9.365498545964757,-16.01163373210796 -514,14.0,17.0,-1.8108011504072024,3.687418931630696 -514,14.0,22.0,-1.9683489489016612,3.976064876781356 -514,15.0,11.0,-1.9519977922801688,4.104359379111847 -514,15.0,15.0,3.271064728633931,-8.94513365126506 -514,15.0,16.0,-1.3190669363537617,4.8407742721532125 -514,16.0,9.0,-3.956039125715353,10.317447719844054 -514,16.0,15.0,-1.3190669363537617,4.8407742721532125 -514,16.0,16.0,5.275106062069114,-15.158221991997266 -514,17.0,14.0,-1.8108011504072024,3.687418931630696 -514,17.0,17.0,4.886487584415919,-9.906177730909668 -514,17.0,18.0,-3.0756864340087167,6.218758799278971 -514,18.0,17.0,-3.0756864340087167,6.218758799278971 -514,18.0,18.0,8.958039375185187,-17.98346468163191 -514,18.0,19.0,-5.88235294117647,11.76470588235294 -514,19.0,9.0,-1.7848303152666305,3.98535828943083 -514,19.0,18.0,-5.88235294117647,11.76470588235294 -514,19.0,19.0,7.6671832564431,-15.75006417178377 -514,20.0,9.0,-5.101853820159654,10.98071411292983 -514,20.0,20.0,21.876495189895888,-45.10843276170355 -514,20.0,21.0,-16.774641369736234,34.127718648773715 -514,21.0,9.0,-2.619319553382597,5.400770303329455 -514,21.0,20.0,-16.774641369736234,34.127718648773715 -514,21.0,21.0,21.93449907537439,-43.48289181517921 -514,21.0,23.0,-2.5405381522555563,3.95440286307604 -514,22.0,14.0,-1.9683489489016612,3.976064876781356 -514,22.0,22.0,3.429754555384988,-6.965303617315433 -514,22.0,23.0,-1.4614056064833263,2.989238740534077 -514,23.0,21.0,-2.5405381522555563,3.95440286307604 -514,23.0,22.0,-1.4614056064833263,2.989238740534077 -514,23.0,23.0,5.311836702613133,-9.188263657315172 -514,23.0,24.0,-1.3098929438742493,2.287622053705056 -514,24.0,23.0,-1.3098929438742493,2.287622053705056 -514,24.0,24.0,4.495715080321987,-7.864978761969621 -514,24.0,25.0,-1.2165301194494855,1.8171440463475024 -514,24.0,26.0,-1.9692920169982515,3.760212661917064 -514,25.0,24.0,-1.2165301194494855,1.8171440463475024 -514,25.0,25.0,1.2165301194494855,-1.8171440463475024 -514,26.0,24.0,-1.9692920169982515,3.760212661917064 -514,26.0,26.0,3.652281470778589,-9.46044252232512 -514,26.0,27.0,0.0,2.608731947574922 -514,26.0,28.0,-0.99553355095268,1.881005840357816 -514,26.0,29.0,-0.6874559028276572,1.293971494797717 -514,27.0,5.0,-4.362844058012917,15.463571542897856 -514,27.0,7.0,-1.4439790613954469,4.540814658476248 -514,27.0,26.0,0.0,2.608731947574922 -514,27.0,27.0,5.806823119408364,-22.67145722159613 -514,28.0,26.0,-0.99553355095268,1.881005840357816 -514,28.0,28.0,1.9075867579849564,-3.604364401207048 -514,28.0,29.0,-0.9120532070322764,1.7233585608492326 -514,29.0,26.0,-0.6874559028276572,1.293971494797717 -514,29.0,28.0,-0.9120532070322764,1.7233585608492326 -514,29.0,29.0,1.5995091098599337,-3.0173300556469496 -515,0.0,0.0,6.765516048652632,-21.23160167089863 -515,0.0,1.0,-5.224646179885656,15.646726840803398 -515,0.0,2.0,-1.5408698687669766,5.631674830095234 -515,1.0,0.0,-5.224646179885656,15.646726840803398 -515,1.0,1.0,9.75228216552403,-30.648662892676068 -515,1.0,3.0,-1.7055303166990268,5.1973792282565086 -515,1.0,4.0,-1.1359607881738778,4.772479328281356 -515,1.0,5.0,-1.6861448807654689,5.116477495334806 -515,2.0,0.0,-1.5408698687669766,5.631674830095234 -515,2.0,2.0,9.736318911079088,-29.13794745915803 -515,2.0,3.0,-8.19544904231211,23.5308726290628 -515,3.0,1.0,-1.7055303166990268,5.1973792282565086 -515,3.0,2.0,-8.19544904231211,23.5308726290628 -515,3.0,3.0,16.314103089185693,-55.509410535254254 -515,3.0,5.0,-6.413123730174556,22.31120356548123 -515,3.0,11.0,0.0,4.191255364806866 -515,4.0,1.0,-1.1359607881738778,4.772479328281356 -515,4.0,4.0,4.089980824135861,-12.190647245055052 -515,4.0,6.0,-2.954020035961983,7.449267916773697 -515,5.0,1.0,-1.6861448807654689,5.116477495334806 -515,5.0,3.0,-6.413123730174556,22.31120356548123 -515,5.0,5.0,22.341631269034565,-80.91366772221689 -515,5.0,6.0,-3.590210423980992,11.02611441072814 -515,5.0,7.0,-6.289308176100628,22.0125786163522 -515,5.0,8.0,0.0,4.915840805411357 -515,5.0,27.0,-4.362844058012917,15.463571542897856 -515,6.0,4.0,-2.954020035961983,7.449267916773697 -515,6.0,5.0,-3.590210423980992,11.02611441072814 -515,6.0,6.0,6.544230459942975,-18.45668232750184 -515,7.0,5.0,-6.289308176100628,22.0125786163522 -515,7.0,7.0,7.733287237496075,-26.527493274828448 -515,7.0,27.0,-1.4439790613954469,4.540814658476248 -515,8.0,5.0,0.0,4.915840805411357 -515,8.0,8.0,0.0,-18.706293706293707 -515,8.0,9.0,0.0,9.090909090909092 -515,8.0,10.0,0.0,4.807692307692308 -515,9.0,8.0,0.0,9.090909090909092 -515,9.0,9.0,13.462042814524237,-39.58519951644326 -515,9.0,16.0,-3.956039125715353,10.317447719844054 -515,9.0,19.0,-1.7848303152666305,3.98535828943083 -515,9.0,20.0,-5.101853820159654,10.98071411292983 -515,9.0,21.0,-2.619319553382597,5.400770303329455 -515,10.0,8.0,0.0,4.807692307692308 -515,10.0,10.0,0.0,-4.807692307692308 -515,11.0,3.0,0.0,4.191255364806866 -515,11.0,11.0,6.573961583776156,-24.424167659260668 -515,11.0,12.0,0.0,7.142857142857143 -515,11.0,13.0,-1.5265676088395577,3.1734252729654173 -515,11.0,14.0,-3.0953961826564296,6.097275864326261 -515,11.0,15.0,-1.9519977922801688,4.104359379111847 -515,12.0,11.0,0.0,7.142857142857143 -515,12.0,12.0,0.0,-7.142857142857143 -515,13.0,11.0,-1.5265676088395577,3.1734252729654173 -515,13.0,13.0,4.01751987283902,-5.424299332335067 -515,13.0,14.0,-2.4909522639994623,2.250874059369649 -515,14.0,11.0,-3.0953961826564296,6.097275864326261 -515,14.0,13.0,-2.4909522639994623,2.250874059369649 -515,14.0,14.0,9.365498545964757,-16.01163373210796 -515,14.0,17.0,-1.8108011504072024,3.687418931630696 -515,14.0,22.0,-1.9683489489016612,3.976064876781356 -515,15.0,11.0,-1.9519977922801688,4.104359379111847 -515,15.0,15.0,3.271064728633931,-8.94513365126506 -515,15.0,16.0,-1.3190669363537617,4.8407742721532125 -515,16.0,9.0,-3.956039125715353,10.317447719844054 -515,16.0,15.0,-1.3190669363537617,4.8407742721532125 -515,16.0,16.0,5.275106062069114,-15.158221991997266 -515,17.0,14.0,-1.8108011504072024,3.687418931630696 -515,17.0,17.0,4.886487584415919,-9.906177730909668 -515,17.0,18.0,-3.0756864340087167,6.218758799278971 -515,18.0,17.0,-3.0756864340087167,6.218758799278971 -515,18.0,18.0,8.958039375185187,-17.98346468163191 -515,18.0,19.0,-5.88235294117647,11.76470588235294 -515,19.0,9.0,-1.7848303152666305,3.98535828943083 -515,19.0,18.0,-5.88235294117647,11.76470588235294 -515,19.0,19.0,7.6671832564431,-15.75006417178377 -515,20.0,9.0,-5.101853820159654,10.98071411292983 -515,20.0,20.0,21.876495189895888,-45.10843276170355 -515,20.0,21.0,-16.774641369736234,34.127718648773715 -515,21.0,9.0,-2.619319553382597,5.400770303329455 -515,21.0,20.0,-16.774641369736234,34.127718648773715 -515,21.0,21.0,21.93449907537439,-43.48289181517921 -515,21.0,23.0,-2.5405381522555563,3.95440286307604 -515,22.0,14.0,-1.9683489489016612,3.976064876781356 -515,22.0,22.0,3.429754555384988,-6.965303617315433 -515,22.0,23.0,-1.4614056064833263,2.989238740534077 -515,23.0,21.0,-2.5405381522555563,3.95440286307604 -515,23.0,22.0,-1.4614056064833263,2.989238740534077 -515,23.0,23.0,5.311836702613133,-9.188263657315172 -515,23.0,24.0,-1.3098929438742493,2.287622053705056 -515,24.0,23.0,-1.3098929438742493,2.287622053705056 -515,24.0,24.0,4.495715080321987,-7.864978761969621 -515,24.0,25.0,-1.2165301194494855,1.8171440463475024 -515,24.0,26.0,-1.9692920169982515,3.760212661917064 -515,25.0,24.0,-1.2165301194494855,1.8171440463475024 -515,25.0,25.0,1.2165301194494855,-1.8171440463475024 -515,26.0,24.0,-1.9692920169982515,3.760212661917064 -515,26.0,26.0,3.652281470778589,-9.46044252232512 -515,26.0,27.0,0.0,2.608731947574922 -515,26.0,28.0,-0.99553355095268,1.881005840357816 -515,26.0,29.0,-0.6874559028276572,1.293971494797717 -515,27.0,5.0,-4.362844058012917,15.463571542897856 -515,27.0,7.0,-1.4439790613954469,4.540814658476248 -515,27.0,26.0,0.0,2.608731947574922 -515,27.0,27.0,5.806823119408364,-22.67145722159613 -515,28.0,26.0,-0.99553355095268,1.881005840357816 -515,28.0,28.0,0.99553355095268,-1.881005840357816 -515,29.0,26.0,-0.6874559028276572,1.293971494797717 -515,29.0,29.0,0.6874559028276572,-1.293971494797717 -516,0.0,0.0,6.765516048652632,-21.23160167089863 -516,0.0,1.0,-5.224646179885656,15.646726840803398 -516,0.0,2.0,-1.5408698687669766,5.631674830095234 -516,1.0,0.0,-5.224646179885656,15.646726840803398 -516,1.0,1.0,9.75228216552403,-30.648662892676068 -516,1.0,3.0,-1.7055303166990268,5.1973792282565086 -516,1.0,4.0,-1.1359607881738778,4.772479328281356 -516,1.0,5.0,-1.6861448807654689,5.116477495334806 -516,2.0,0.0,-1.5408698687669766,5.631674830095234 -516,2.0,2.0,9.736318911079088,-29.13794745915803 -516,2.0,3.0,-8.19544904231211,23.5308726290628 -516,3.0,1.0,-1.7055303166990268,5.1973792282565086 -516,3.0,2.0,-8.19544904231211,23.5308726290628 -516,3.0,3.0,16.314103089185693,-55.509410535254254 -516,3.0,5.0,-6.413123730174556,22.31120356548123 -516,3.0,11.0,0.0,4.191255364806866 -516,4.0,1.0,-1.1359607881738778,4.772479328281356 -516,4.0,4.0,4.089980824135861,-12.190647245055052 -516,4.0,6.0,-2.954020035961983,7.449267916773697 -516,5.0,1.0,-1.6861448807654689,5.116477495334806 -516,5.0,3.0,-6.413123730174556,22.31120356548123 -516,5.0,5.0,22.341631269034565,-82.8291478657789 -516,5.0,6.0,-3.590210423980992,11.02611441072814 -516,5.0,7.0,-6.289308176100628,22.0125786163522 -516,5.0,8.0,0.0,4.915840805411357 -516,5.0,9.0,0.0,1.8561002591115965 -516,5.0,27.0,-4.362844058012917,15.463571542897856 -516,6.0,4.0,-2.954020035961983,7.449267916773697 -516,6.0,5.0,-3.590210423980992,11.02611441072814 -516,6.0,6.0,6.544230459942975,-18.45668232750184 -516,7.0,5.0,-6.289308176100628,22.0125786163522 -516,7.0,7.0,7.733287237496075,-26.527493274828448 -516,7.0,27.0,-1.4439790613954469,4.540814658476248 -516,8.0,5.0,0.0,4.915840805411357 -516,8.0,8.0,0.0,-18.706293706293707 -516,8.0,9.0,0.0,9.090909090909092 -516,8.0,10.0,0.0,4.807692307692308 -516,9.0,5.0,0.0,1.8561002591115965 -516,9.0,8.0,0.0,9.090909090909092 -516,9.0,9.0,13.462042814524237,-41.3837606675224 -516,9.0,16.0,-3.956039125715353,10.317447719844054 -516,9.0,19.0,-1.7848303152666305,3.98535828943083 -516,9.0,20.0,-5.101853820159654,10.98071411292983 -516,9.0,21.0,-2.619319553382597,5.400770303329455 -516,10.0,8.0,0.0,4.807692307692308 -516,10.0,10.0,0.0,-4.807692307692308 -516,11.0,3.0,0.0,4.191255364806866 -516,11.0,11.0,6.573961583776156,-24.424167659260668 -516,11.0,12.0,0.0,7.142857142857143 -516,11.0,13.0,-1.5265676088395577,3.1734252729654173 -516,11.0,14.0,-3.0953961826564296,6.097275864326261 -516,11.0,15.0,-1.9519977922801688,4.104359379111847 -516,12.0,11.0,0.0,7.142857142857143 -516,12.0,12.0,0.0,-7.142857142857143 -516,13.0,11.0,-1.5265676088395577,3.1734252729654173 -516,13.0,13.0,4.01751987283902,-5.424299332335067 -516,13.0,14.0,-2.4909522639994623,2.250874059369649 -516,14.0,11.0,-3.0953961826564296,6.097275864326261 -516,14.0,13.0,-2.4909522639994623,2.250874059369649 -516,14.0,14.0,9.365498545964757,-16.01163373210796 -516,14.0,17.0,-1.8108011504072024,3.687418931630696 -516,14.0,22.0,-1.9683489489016612,3.976064876781356 -516,15.0,11.0,-1.9519977922801688,4.104359379111847 -516,15.0,15.0,3.271064728633931,-8.94513365126506 -516,15.0,16.0,-1.3190669363537617,4.8407742721532125 -516,16.0,9.0,-3.956039125715353,10.317447719844054 -516,16.0,15.0,-1.3190669363537617,4.8407742721532125 -516,16.0,16.0,5.275106062069114,-15.158221991997266 -516,17.0,14.0,-1.8108011504072024,3.687418931630696 -516,17.0,17.0,4.886487584415919,-9.906177730909668 -516,17.0,18.0,-3.0756864340087167,6.218758799278971 -516,18.0,17.0,-3.0756864340087167,6.218758799278971 -516,18.0,18.0,8.958039375185187,-17.98346468163191 -516,18.0,19.0,-5.88235294117647,11.76470588235294 -516,19.0,9.0,-1.7848303152666305,3.98535828943083 -516,19.0,18.0,-5.88235294117647,11.76470588235294 -516,19.0,19.0,7.6671832564431,-15.75006417178377 -516,20.0,9.0,-5.101853820159654,10.98071411292983 -516,20.0,20.0,21.876495189895888,-45.10843276170355 -516,20.0,21.0,-16.774641369736234,34.127718648773715 -516,21.0,9.0,-2.619319553382597,5.400770303329455 -516,21.0,20.0,-16.774641369736234,34.127718648773715 -516,21.0,21.0,21.93449907537439,-43.48289181517921 -516,21.0,23.0,-2.5405381522555563,3.95440286307604 -516,22.0,14.0,-1.9683489489016612,3.976064876781356 -516,22.0,22.0,3.429754555384988,-6.965303617315433 -516,22.0,23.0,-1.4614056064833263,2.989238740534077 -516,23.0,21.0,-2.5405381522555563,3.95440286307604 -516,23.0,22.0,-1.4614056064833263,2.989238740534077 -516,23.0,23.0,5.311836702613133,-9.188263657315172 -516,23.0,24.0,-1.3098929438742493,2.287622053705056 -516,24.0,23.0,-1.3098929438742493,2.287622053705056 -516,24.0,24.0,4.495715080321987,-7.864978761969621 -516,24.0,25.0,-1.2165301194494855,1.8171440463475024 -516,24.0,26.0,-1.9692920169982515,3.760212661917064 -516,25.0,24.0,-1.2165301194494855,1.8171440463475024 -516,25.0,25.0,1.2165301194494855,-1.8171440463475024 -516,26.0,24.0,-1.9692920169982515,3.760212661917064 -516,26.0,26.0,3.652281470778589,-9.46044252232512 -516,26.0,27.0,0.0,2.608731947574922 -516,26.0,28.0,-0.99553355095268,1.881005840357816 -516,26.0,29.0,-0.6874559028276572,1.293971494797717 -516,27.0,5.0,-4.362844058012917,15.463571542897856 -516,27.0,7.0,-1.4439790613954469,4.540814658476248 -516,27.0,26.0,0.0,2.608731947574922 -516,27.0,27.0,5.806823119408364,-22.67145722159613 -516,28.0,26.0,-0.99553355095268,1.881005840357816 -516,28.0,28.0,0.99553355095268,-1.881005840357816 -516,29.0,26.0,-0.6874559028276572,1.293971494797717 -516,29.0,29.0,0.6874559028276572,-1.293971494797717 -517,0.0,0.0,6.765516048652632,-21.23160167089863 -517,0.0,1.0,-5.224646179885656,15.646726840803398 -517,0.0,2.0,-1.5408698687669766,5.631674830095234 -517,1.0,0.0,-5.224646179885656,15.646726840803398 -517,1.0,1.0,8.066137284758561,-25.55088539734126 -517,1.0,3.0,-1.7055303166990268,5.1973792282565086 -517,1.0,4.0,-1.1359607881738778,4.772479328281356 -517,2.0,0.0,-1.5408698687669766,5.631674830095234 -517,2.0,2.0,1.5408698687669766,-5.611274830095233 -517,3.0,1.0,-1.7055303166990268,5.1973792282565086 -517,3.0,3.0,8.118654046873583,-31.982737906191456 -517,3.0,5.0,-6.413123730174556,22.31120356548123 -517,3.0,11.0,0.0,4.191255364806866 -517,4.0,1.0,-1.1359607881738778,4.772479328281356 -517,4.0,4.0,4.089980824135861,-12.190647245055052 -517,4.0,6.0,-2.954020035961983,7.449267916773697 -517,5.0,3.0,-6.413123730174556,22.31120356548123 -517,5.0,5.0,20.655486388269097,-77.7313703704441 -517,5.0,6.0,-3.590210423980992,11.02611441072814 -517,5.0,7.0,-6.289308176100628,22.0125786163522 -517,5.0,8.0,0.0,4.915840805411357 -517,5.0,9.0,0.0,1.8561002591115965 -517,5.0,27.0,-4.362844058012917,15.463571542897856 -517,6.0,4.0,-2.954020035961983,7.449267916773697 -517,6.0,5.0,-3.590210423980992,11.02611441072814 -517,6.0,6.0,6.544230459942975,-18.45668232750184 -517,7.0,5.0,-6.289308176100628,22.0125786163522 -517,7.0,7.0,7.733287237496075,-26.527493274828448 -517,7.0,27.0,-1.4439790613954469,4.540814658476248 -517,8.0,5.0,0.0,4.915840805411357 -517,8.0,8.0,0.0,-18.706293706293707 -517,8.0,9.0,0.0,9.090909090909092 -517,8.0,10.0,0.0,4.807692307692308 -517,9.0,5.0,0.0,1.8561002591115965 -517,9.0,8.0,0.0,9.090909090909092 -517,9.0,9.0,13.462042814524237,-41.3837606675224 -517,9.0,16.0,-3.956039125715353,10.317447719844054 -517,9.0,19.0,-1.7848303152666305,3.98535828943083 -517,9.0,20.0,-5.101853820159654,10.98071411292983 -517,9.0,21.0,-2.619319553382597,5.400770303329455 -517,10.0,8.0,0.0,4.807692307692308 -517,10.0,10.0,0.0,-4.807692307692308 -517,11.0,3.0,0.0,4.191255364806866 -517,11.0,11.0,6.573961583776156,-24.424167659260668 -517,11.0,12.0,0.0,7.142857142857143 -517,11.0,13.0,-1.5265676088395577,3.1734252729654173 -517,11.0,14.0,-3.0953961826564296,6.097275864326261 -517,11.0,15.0,-1.9519977922801688,4.104359379111847 -517,12.0,11.0,0.0,7.142857142857143 -517,12.0,12.0,0.0,-7.142857142857143 -517,13.0,11.0,-1.5265676088395577,3.1734252729654173 -517,13.0,13.0,4.01751987283902,-5.424299332335067 -517,13.0,14.0,-2.4909522639994623,2.250874059369649 -517,14.0,11.0,-3.0953961826564296,6.097275864326261 -517,14.0,13.0,-2.4909522639994623,2.250874059369649 -517,14.0,14.0,9.365498545964757,-16.01163373210796 -517,14.0,17.0,-1.8108011504072024,3.687418931630696 -517,14.0,22.0,-1.9683489489016612,3.976064876781356 -517,15.0,11.0,-1.9519977922801688,4.104359379111847 -517,15.0,15.0,3.271064728633931,-8.94513365126506 -517,15.0,16.0,-1.3190669363537617,4.8407742721532125 -517,16.0,9.0,-3.956039125715353,10.317447719844054 -517,16.0,15.0,-1.3190669363537617,4.8407742721532125 -517,16.0,16.0,5.275106062069114,-15.158221991997266 -517,17.0,14.0,-1.8108011504072024,3.687418931630696 -517,17.0,17.0,4.886487584415919,-9.906177730909668 -517,17.0,18.0,-3.0756864340087167,6.218758799278971 -517,18.0,17.0,-3.0756864340087167,6.218758799278971 -517,18.0,18.0,8.958039375185187,-17.98346468163191 -517,18.0,19.0,-5.88235294117647,11.76470588235294 -517,19.0,9.0,-1.7848303152666305,3.98535828943083 -517,19.0,18.0,-5.88235294117647,11.76470588235294 -517,19.0,19.0,7.6671832564431,-15.75006417178377 -517,20.0,9.0,-5.101853820159654,10.98071411292983 -517,20.0,20.0,21.876495189895888,-45.10843276170355 -517,20.0,21.0,-16.774641369736234,34.127718648773715 -517,21.0,9.0,-2.619319553382597,5.400770303329455 -517,21.0,20.0,-16.774641369736234,34.127718648773715 -517,21.0,21.0,21.93449907537439,-43.48289181517921 -517,21.0,23.0,-2.5405381522555563,3.95440286307604 -517,22.0,14.0,-1.9683489489016612,3.976064876781356 -517,22.0,22.0,3.429754555384988,-6.965303617315433 -517,22.0,23.0,-1.4614056064833263,2.989238740534077 -517,23.0,21.0,-2.5405381522555563,3.95440286307604 -517,23.0,22.0,-1.4614056064833263,2.989238740534077 -517,23.0,23.0,5.311836702613133,-9.188263657315172 -517,23.0,24.0,-1.3098929438742493,2.287622053705056 -517,24.0,23.0,-1.3098929438742493,2.287622053705056 -517,24.0,24.0,4.495715080321987,-7.864978761969621 -517,24.0,25.0,-1.2165301194494855,1.8171440463475024 -517,24.0,26.0,-1.9692920169982515,3.760212661917064 -517,25.0,24.0,-1.2165301194494855,1.8171440463475024 -517,25.0,25.0,1.2165301194494855,-1.8171440463475024 -517,26.0,24.0,-1.9692920169982515,3.760212661917064 -517,26.0,26.0,3.652281470778589,-9.46044252232512 -517,26.0,27.0,0.0,2.608731947574922 -517,26.0,28.0,-0.99553355095268,1.881005840357816 -517,26.0,29.0,-0.6874559028276572,1.293971494797717 -517,27.0,5.0,-4.362844058012917,15.463571542897856 -517,27.0,7.0,-1.4439790613954469,4.540814658476248 -517,27.0,26.0,0.0,2.608731947574922 -517,27.0,27.0,5.806823119408364,-22.67145722159613 -517,28.0,26.0,-0.99553355095268,1.881005840357816 -517,28.0,28.0,1.9075867579849564,-3.604364401207048 -517,28.0,29.0,-0.9120532070322764,1.7233585608492326 -517,29.0,26.0,-0.6874559028276572,1.293971494797717 -517,29.0,28.0,-0.9120532070322764,1.7233585608492326 -517,29.0,29.0,1.5995091098599337,-3.0173300556469496 -518,0.0,0.0,5.224646179885656,-15.620326840803395 -518,0.0,1.0,-5.224646179885656,15.646726840803398 -518,1.0,0.0,-5.224646179885656,15.646726840803398 -518,1.0,1.0,8.066137284758561,-25.55088539734126 -518,1.0,3.0,-1.7055303166990268,5.1973792282565086 -518,1.0,4.0,-1.1359607881738778,4.772479328281356 -518,2.0,2.0,8.19544904231211,-23.5266726290628 -518,2.0,3.0,-8.19544904231211,23.5308726290628 -518,3.0,1.0,-1.7055303166990268,5.1973792282565086 -518,3.0,2.0,-8.19544904231211,23.5308726290628 -518,3.0,3.0,16.314103089185693,-55.509410535254254 -518,3.0,5.0,-6.413123730174556,22.31120356548123 -518,3.0,11.0,0.0,4.191255364806866 -518,4.0,1.0,-1.1359607881738778,4.772479328281356 -518,4.0,4.0,4.089980824135861,-12.190647245055052 -518,4.0,6.0,-2.954020035961983,7.449267916773697 -518,5.0,3.0,-6.413123730174556,22.31120356548123 -518,5.0,5.0,20.655486388269097,-77.7313703704441 -518,5.0,6.0,-3.590210423980992,11.02611441072814 -518,5.0,7.0,-6.289308176100628,22.0125786163522 -518,5.0,8.0,0.0,4.915840805411357 -518,5.0,9.0,0.0,1.8561002591115965 -518,5.0,27.0,-4.362844058012917,15.463571542897856 -518,6.0,4.0,-2.954020035961983,7.449267916773697 -518,6.0,5.0,-3.590210423980992,11.02611441072814 -518,6.0,6.0,6.544230459942975,-18.45668232750184 -518,7.0,5.0,-6.289308176100628,22.0125786163522 -518,7.0,7.0,7.733287237496075,-26.527493274828448 -518,7.0,27.0,-1.4439790613954469,4.540814658476248 -518,8.0,5.0,0.0,4.915840805411357 -518,8.0,8.0,0.0,-18.706293706293707 -518,8.0,9.0,0.0,9.090909090909092 -518,8.0,10.0,0.0,4.807692307692308 -518,9.0,5.0,0.0,1.8561002591115965 -518,9.0,8.0,0.0,9.090909090909092 -518,9.0,9.0,13.462042814524237,-41.3837606675224 -518,9.0,16.0,-3.956039125715353,10.317447719844054 -518,9.0,19.0,-1.7848303152666305,3.98535828943083 -518,9.0,20.0,-5.101853820159654,10.98071411292983 -518,9.0,21.0,-2.619319553382597,5.400770303329455 -518,10.0,8.0,0.0,4.807692307692308 -518,10.0,10.0,0.0,-4.807692307692308 -518,11.0,3.0,0.0,4.191255364806866 -518,11.0,11.0,6.573961583776156,-24.424167659260668 -518,11.0,12.0,0.0,7.142857142857143 -518,11.0,13.0,-1.5265676088395577,3.1734252729654173 -518,11.0,14.0,-3.0953961826564296,6.097275864326261 -518,11.0,15.0,-1.9519977922801688,4.104359379111847 -518,12.0,11.0,0.0,7.142857142857143 -518,12.0,12.0,0.0,-7.142857142857143 -518,13.0,11.0,-1.5265676088395577,3.1734252729654173 -518,13.0,13.0,4.01751987283902,-5.424299332335067 -518,13.0,14.0,-2.4909522639994623,2.250874059369649 -518,14.0,11.0,-3.0953961826564296,6.097275864326261 -518,14.0,13.0,-2.4909522639994623,2.250874059369649 -518,14.0,14.0,9.365498545964757,-16.01163373210796 -518,14.0,17.0,-1.8108011504072024,3.687418931630696 -518,14.0,22.0,-1.9683489489016612,3.976064876781356 -518,15.0,11.0,-1.9519977922801688,4.104359379111847 -518,15.0,15.0,3.271064728633931,-8.94513365126506 -518,15.0,16.0,-1.3190669363537617,4.8407742721532125 -518,16.0,9.0,-3.956039125715353,10.317447719844054 -518,16.0,15.0,-1.3190669363537617,4.8407742721532125 -518,16.0,16.0,5.275106062069114,-15.158221991997266 -518,17.0,14.0,-1.8108011504072024,3.687418931630696 -518,17.0,17.0,4.886487584415919,-9.906177730909668 -518,17.0,18.0,-3.0756864340087167,6.218758799278971 -518,18.0,17.0,-3.0756864340087167,6.218758799278971 -518,18.0,18.0,8.958039375185187,-17.98346468163191 -518,18.0,19.0,-5.88235294117647,11.76470588235294 -518,19.0,9.0,-1.7848303152666305,3.98535828943083 -518,19.0,18.0,-5.88235294117647,11.76470588235294 -518,19.0,19.0,7.6671832564431,-15.75006417178377 -518,20.0,9.0,-5.101853820159654,10.98071411292983 -518,20.0,20.0,21.876495189895888,-45.10843276170355 -518,20.0,21.0,-16.774641369736234,34.127718648773715 -518,21.0,9.0,-2.619319553382597,5.400770303329455 -518,21.0,20.0,-16.774641369736234,34.127718648773715 -518,21.0,21.0,21.93449907537439,-43.48289181517921 -518,21.0,23.0,-2.5405381522555563,3.95440286307604 -518,22.0,14.0,-1.9683489489016612,3.976064876781356 -518,22.0,22.0,3.429754555384988,-6.965303617315433 -518,22.0,23.0,-1.4614056064833263,2.989238740534077 -518,23.0,21.0,-2.5405381522555563,3.95440286307604 -518,23.0,22.0,-1.4614056064833263,2.989238740534077 -518,23.0,23.0,5.311836702613133,-9.188263657315172 -518,23.0,24.0,-1.3098929438742493,2.287622053705056 -518,24.0,23.0,-1.3098929438742493,2.287622053705056 -518,24.0,24.0,4.495715080321987,-7.864978761969621 -518,24.0,25.0,-1.2165301194494855,1.8171440463475024 -518,24.0,26.0,-1.9692920169982515,3.760212661917064 -518,25.0,24.0,-1.2165301194494855,1.8171440463475024 -518,25.0,25.0,1.2165301194494855,-1.8171440463475024 -518,26.0,24.0,-1.9692920169982515,3.760212661917064 -518,26.0,26.0,3.652281470778589,-9.46044252232512 -518,26.0,27.0,0.0,2.608731947574922 -518,26.0,28.0,-0.99553355095268,1.881005840357816 -518,26.0,29.0,-0.6874559028276572,1.293971494797717 -518,27.0,5.0,-4.362844058012917,15.463571542897856 -518,27.0,7.0,-1.4439790613954469,4.540814658476248 -518,27.0,26.0,0.0,2.608731947574922 -518,27.0,27.0,5.806823119408364,-22.67145722159613 -518,28.0,26.0,-0.99553355095268,1.881005840357816 -518,28.0,28.0,1.9075867579849564,-3.604364401207048 -518,28.0,29.0,-0.9120532070322764,1.7233585608492326 -518,29.0,26.0,-0.6874559028276572,1.293971494797717 -518,29.0,28.0,-0.9120532070322764,1.7233585608492326 -518,29.0,29.0,1.5995091098599337,-3.0173300556469496 -519,0.0,0.0,6.765516048652632,-21.23160167089863 -519,0.0,1.0,-5.224646179885656,15.646726840803398 -519,0.0,2.0,-1.5408698687669766,5.631674830095234 -519,1.0,0.0,-5.224646179885656,15.646726840803398 -519,1.0,1.0,9.75228216552403,-30.648662892676068 -519,1.0,3.0,-1.7055303166990268,5.1973792282565086 -519,1.0,4.0,-1.1359607881738778,4.772479328281356 -519,1.0,5.0,-1.6861448807654689,5.116477495334806 -519,2.0,0.0,-1.5408698687669766,5.631674830095234 -519,2.0,2.0,9.736318911079088,-29.13794745915803 -519,2.0,3.0,-8.19544904231211,23.5308726290628 -519,3.0,1.0,-1.7055303166990268,5.1973792282565086 -519,3.0,2.0,-8.19544904231211,23.5308726290628 -519,3.0,3.0,16.314103089185693,-55.509410535254254 -519,3.0,5.0,-6.413123730174556,22.31120356548123 -519,3.0,11.0,0.0,4.191255364806866 -519,4.0,1.0,-1.1359607881738778,4.772479328281356 -519,4.0,4.0,4.089980824135861,-12.190647245055052 -519,4.0,6.0,-2.954020035961983,7.449267916773697 -519,5.0,1.0,-1.6861448807654689,5.116477495334806 -519,5.0,3.0,-6.413123730174556,22.31120356548123 -519,5.0,5.0,16.052323092933932,-60.8210692494267 -519,5.0,6.0,-3.590210423980992,11.02611441072814 -519,5.0,8.0,0.0,4.915840805411357 -519,5.0,9.0,0.0,1.8561002591115965 -519,5.0,27.0,-4.362844058012917,15.463571542897856 -519,6.0,4.0,-2.954020035961983,7.449267916773697 -519,6.0,5.0,-3.590210423980992,11.02611441072814 -519,6.0,6.0,6.544230459942975,-18.45668232750184 -519,7.0,7.0,1.4439790613954469,-4.519414658476248 -519,7.0,27.0,-1.4439790613954469,4.540814658476248 -519,8.0,5.0,0.0,4.915840805411357 -519,8.0,8.0,0.0,-18.706293706293707 -519,8.0,9.0,0.0,9.090909090909092 -519,8.0,10.0,0.0,4.807692307692308 -519,9.0,5.0,0.0,1.8561002591115965 -519,9.0,8.0,0.0,9.090909090909092 -519,9.0,9.0,11.677212499257603,-37.39840237809157 -519,9.0,16.0,-3.956039125715353,10.317447719844054 -519,9.0,20.0,-5.101853820159654,10.98071411292983 -519,9.0,21.0,-2.619319553382597,5.400770303329455 -519,10.0,8.0,0.0,4.807692307692308 -519,10.0,10.0,0.0,-4.807692307692308 -519,11.0,3.0,0.0,4.191255364806866 -519,11.0,11.0,3.0953961826564296,-17.146383007183402 -519,11.0,12.0,0.0,7.142857142857143 -519,11.0,14.0,-3.0953961826564296,6.097275864326261 -519,12.0,11.0,0.0,7.142857142857143 -519,12.0,12.0,0.0,-7.142857142857143 -519,13.0,13.0,2.4909522639994623,-2.250874059369649 -519,13.0,14.0,-2.4909522639994623,2.250874059369649 -519,14.0,11.0,-3.0953961826564296,6.097275864326261 -519,14.0,13.0,-2.4909522639994623,2.250874059369649 -519,14.0,14.0,9.365498545964757,-16.01163373210796 -519,14.0,17.0,-1.8108011504072024,3.687418931630696 -519,14.0,22.0,-1.9683489489016612,3.976064876781356 -519,15.0,15.0,1.3190669363537617,-4.8407742721532125 -519,15.0,16.0,-1.3190669363537617,4.8407742721532125 -519,16.0,9.0,-3.956039125715353,10.317447719844054 -519,16.0,15.0,-1.3190669363537617,4.8407742721532125 -519,16.0,16.0,5.275106062069114,-15.158221991997266 -519,17.0,14.0,-1.8108011504072024,3.687418931630696 -519,17.0,17.0,4.886487584415919,-9.906177730909668 -519,17.0,18.0,-3.0756864340087167,6.218758799278971 -519,18.0,17.0,-3.0756864340087167,6.218758799278971 -519,18.0,18.0,8.958039375185187,-17.98346468163191 -519,18.0,19.0,-5.88235294117647,11.76470588235294 -519,19.0,18.0,-5.88235294117647,11.76470588235294 -519,19.0,19.0,5.88235294117647,-11.76470588235294 -519,20.0,9.0,-5.101853820159654,10.98071411292983 -519,20.0,20.0,5.101853820159654,-10.98071411292983 -519,21.0,9.0,-2.619319553382597,5.400770303329455 -519,21.0,21.0,5.159857705638154,-9.355173166405494 -519,21.0,23.0,-2.5405381522555563,3.95440286307604 -519,22.0,14.0,-1.9683489489016612,3.976064876781356 -519,22.0,22.0,3.429754555384988,-6.965303617315433 -519,22.0,23.0,-1.4614056064833263,2.989238740534077 -519,23.0,21.0,-2.5405381522555563,3.95440286307604 -519,23.0,22.0,-1.4614056064833263,2.989238740534077 -519,23.0,23.0,5.311836702613133,-9.188263657315172 -519,23.0,24.0,-1.3098929438742493,2.287622053705056 -519,24.0,23.0,-1.3098929438742493,2.287622053705056 -519,24.0,24.0,4.495715080321987,-7.864978761969621 -519,24.0,25.0,-1.2165301194494855,1.8171440463475024 -519,24.0,26.0,-1.9692920169982515,3.760212661917064 -519,25.0,24.0,-1.2165301194494855,1.8171440463475024 -519,25.0,25.0,1.2165301194494855,-1.8171440463475024 -519,26.0,24.0,-1.9692920169982515,3.760212661917064 -519,26.0,26.0,3.652281470778589,-9.46044252232512 -519,26.0,27.0,0.0,2.608731947574922 -519,26.0,28.0,-0.99553355095268,1.881005840357816 -519,26.0,29.0,-0.6874559028276572,1.293971494797717 -519,27.0,5.0,-4.362844058012917,15.463571542897856 -519,27.0,7.0,-1.4439790613954469,4.540814658476248 -519,27.0,26.0,0.0,2.608731947574922 -519,27.0,27.0,5.806823119408364,-22.67145722159613 -519,28.0,26.0,-0.99553355095268,1.881005840357816 -519,28.0,28.0,1.9075867579849564,-3.604364401207048 -519,28.0,29.0,-0.9120532070322764,1.7233585608492326 -519,29.0,26.0,-0.6874559028276572,1.293971494797717 -519,29.0,28.0,-0.9120532070322764,1.7233585608492326 -519,29.0,29.0,1.5995091098599337,-3.0173300556469496 -520,0.0,0.0,6.765516048652632,-21.23160167089863 -520,0.0,1.0,-5.224646179885656,15.646726840803398 -520,0.0,2.0,-1.5408698687669766,5.631674830095234 -520,1.0,0.0,-5.224646179885656,15.646726840803398 -520,1.0,1.0,9.75228216552403,-30.648662892676068 -520,1.0,3.0,-1.7055303166990268,5.1973792282565086 -520,1.0,4.0,-1.1359607881738778,4.772479328281356 -520,1.0,5.0,-1.6861448807654689,5.116477495334806 -520,2.0,0.0,-1.5408698687669766,5.631674830095234 -520,2.0,2.0,9.736318911079088,-29.13794745915803 -520,2.0,3.0,-8.19544904231211,23.5308726290628 -520,3.0,1.0,-1.7055303166990268,5.1973792282565086 -520,3.0,2.0,-8.19544904231211,23.5308726290628 -520,3.0,3.0,16.314103089185693,-55.509410535254254 -520,3.0,5.0,-6.413123730174556,22.31120356548123 -520,3.0,11.0,0.0,4.191255364806866 -520,4.0,1.0,-1.1359607881738778,4.772479328281356 -520,4.0,4.0,4.089980824135861,-12.190647245055052 -520,4.0,6.0,-2.954020035961983,7.449267916773697 -520,5.0,1.0,-1.6861448807654689,5.116477495334806 -520,5.0,3.0,-6.413123730174556,22.31120356548123 -520,5.0,5.0,22.341631269034565,-82.8291478657789 -520,5.0,6.0,-3.590210423980992,11.02611441072814 -520,5.0,7.0,-6.289308176100628,22.0125786163522 -520,5.0,8.0,0.0,4.915840805411357 -520,5.0,9.0,0.0,1.8561002591115965 -520,5.0,27.0,-4.362844058012917,15.463571542897856 -520,6.0,4.0,-2.954020035961983,7.449267916773697 -520,6.0,5.0,-3.590210423980992,11.02611441072814 -520,6.0,6.0,6.544230459942975,-18.45668232750184 -520,7.0,5.0,-6.289308176100628,22.0125786163522 -520,7.0,7.0,7.733287237496075,-26.527493274828448 -520,7.0,27.0,-1.4439790613954469,4.540814658476248 -520,8.0,5.0,0.0,4.915840805411357 -520,8.0,8.0,0.0,-18.706293706293707 -520,8.0,9.0,0.0,9.090909090909092 -520,8.0,10.0,0.0,4.807692307692308 -520,9.0,5.0,0.0,1.8561002591115965 -520,9.0,8.0,0.0,9.090909090909092 -520,9.0,9.0,13.462042814524237,-41.3837606675224 -520,9.0,16.0,-3.956039125715353,10.317447719844054 -520,9.0,19.0,-1.7848303152666305,3.98535828943083 -520,9.0,20.0,-5.101853820159654,10.98071411292983 -520,9.0,21.0,-2.619319553382597,5.400770303329455 -520,10.0,8.0,0.0,4.807692307692308 -520,10.0,10.0,0.0,-4.807692307692308 -520,11.0,3.0,0.0,4.191255364806866 -520,11.0,11.0,6.573961583776156,-24.424167659260668 -520,11.0,12.0,0.0,7.142857142857143 -520,11.0,13.0,-1.5265676088395577,3.1734252729654173 -520,11.0,14.0,-3.0953961826564296,6.097275864326261 -520,11.0,15.0,-1.9519977922801688,4.104359379111847 -520,12.0,11.0,0.0,7.142857142857143 -520,12.0,12.0,0.0,-7.142857142857143 -520,13.0,11.0,-1.5265676088395577,3.1734252729654173 -520,13.0,13.0,4.01751987283902,-5.424299332335067 -520,13.0,14.0,-2.4909522639994623,2.250874059369649 -520,14.0,11.0,-3.0953961826564296,6.097275864326261 -520,14.0,13.0,-2.4909522639994623,2.250874059369649 -520,14.0,14.0,9.365498545964757,-16.01163373210796 -520,14.0,17.0,-1.8108011504072024,3.687418931630696 -520,14.0,22.0,-1.9683489489016612,3.976064876781356 -520,15.0,11.0,-1.9519977922801688,4.104359379111847 -520,15.0,15.0,3.271064728633931,-8.94513365126506 -520,15.0,16.0,-1.3190669363537617,4.8407742721532125 -520,16.0,9.0,-3.956039125715353,10.317447719844054 -520,16.0,15.0,-1.3190669363537617,4.8407742721532125 -520,16.0,16.0,5.275106062069114,-15.158221991997266 -520,17.0,14.0,-1.8108011504072024,3.687418931630696 -520,17.0,17.0,4.886487584415919,-9.906177730909668 -520,17.0,18.0,-3.0756864340087167,6.218758799278971 -520,18.0,17.0,-3.0756864340087167,6.218758799278971 -520,18.0,18.0,8.958039375185187,-17.98346468163191 -520,18.0,19.0,-5.88235294117647,11.76470588235294 -520,19.0,9.0,-1.7848303152666305,3.98535828943083 -520,19.0,18.0,-5.88235294117647,11.76470588235294 -520,19.0,19.0,7.6671832564431,-15.75006417178377 -520,20.0,9.0,-5.101853820159654,10.98071411292983 -520,20.0,20.0,21.876495189895888,-45.10843276170355 -520,20.0,21.0,-16.774641369736234,34.127718648773715 -520,21.0,9.0,-2.619319553382597,5.400770303329455 -520,21.0,20.0,-16.774641369736234,34.127718648773715 -520,21.0,21.0,21.93449907537439,-43.48289181517921 -520,21.0,23.0,-2.5405381522555563,3.95440286307604 -520,22.0,14.0,-1.9683489489016612,3.976064876781356 -520,22.0,22.0,3.429754555384988,-6.965303617315433 -520,22.0,23.0,-1.4614056064833263,2.989238740534077 -520,23.0,21.0,-2.5405381522555563,3.95440286307604 -520,23.0,22.0,-1.4614056064833263,2.989238740534077 -520,23.0,23.0,5.311836702613133,-9.188263657315172 -520,23.0,24.0,-1.3098929438742493,2.287622053705056 -520,24.0,23.0,-1.3098929438742493,2.287622053705056 -520,24.0,24.0,4.495715080321987,-7.864978761969621 -520,24.0,25.0,-1.2165301194494855,1.8171440463475024 -520,24.0,26.0,-1.9692920169982515,3.760212661917064 -520,25.0,24.0,-1.2165301194494855,1.8171440463475024 -520,25.0,25.0,1.2165301194494855,-1.8171440463475024 -520,26.0,24.0,-1.9692920169982515,3.760212661917064 -520,26.0,26.0,3.652281470778589,-9.46044252232512 -520,26.0,27.0,0.0,2.608731947574922 -520,26.0,28.0,-0.99553355095268,1.881005840357816 -520,26.0,29.0,-0.6874559028276572,1.293971494797717 -520,27.0,5.0,-4.362844058012917,15.463571542897856 -520,27.0,7.0,-1.4439790613954469,4.540814658476248 -520,27.0,26.0,0.0,2.608731947574922 -520,27.0,27.0,5.806823119408364,-22.67145722159613 -520,28.0,26.0,-0.99553355095268,1.881005840357816 -520,28.0,28.0,1.9075867579849564,-3.604364401207048 -520,28.0,29.0,-0.9120532070322764,1.7233585608492326 -520,29.0,26.0,-0.6874559028276572,1.293971494797717 -520,29.0,28.0,-0.9120532070322764,1.7233585608492326 -520,29.0,29.0,1.5995091098599337,-3.0173300556469496 -521,0.0,0.0,6.765516048652632,-21.23160167089863 -521,0.0,1.0,-5.224646179885656,15.646726840803398 -521,0.0,2.0,-1.5408698687669766,5.631674830095234 -521,1.0,0.0,-5.224646179885656,15.646726840803398 -521,1.0,1.0,9.75228216552403,-30.648662892676068 -521,1.0,3.0,-1.7055303166990268,5.1973792282565086 -521,1.0,4.0,-1.1359607881738778,4.772479328281356 -521,1.0,5.0,-1.6861448807654689,5.116477495334806 -521,2.0,0.0,-1.5408698687669766,5.631674830095234 -521,2.0,2.0,9.736318911079088,-29.13794745915803 -521,2.0,3.0,-8.19544904231211,23.5308726290628 -521,3.0,1.0,-1.7055303166990268,5.1973792282565086 -521,3.0,2.0,-8.19544904231211,23.5308726290628 -521,3.0,3.0,16.314103089185693,-55.509410535254254 -521,3.0,5.0,-6.413123730174556,22.31120356548123 -521,3.0,11.0,0.0,4.191255364806866 -521,4.0,1.0,-1.1359607881738778,4.772479328281356 -521,4.0,4.0,4.089980824135861,-12.190647245055052 -521,4.0,6.0,-2.954020035961983,7.449267916773697 -521,5.0,1.0,-1.6861448807654689,5.116477495334806 -521,5.0,3.0,-6.413123730174556,22.31120356548123 -521,5.0,5.0,22.341631269034565,-82.8291478657789 -521,5.0,6.0,-3.590210423980992,11.02611441072814 -521,5.0,7.0,-6.289308176100628,22.0125786163522 -521,5.0,8.0,0.0,4.915840805411357 -521,5.0,9.0,0.0,1.8561002591115965 -521,5.0,27.0,-4.362844058012917,15.463571542897856 -521,6.0,4.0,-2.954020035961983,7.449267916773697 -521,6.0,5.0,-3.590210423980992,11.02611441072814 -521,6.0,6.0,6.544230459942975,-18.45668232750184 -521,7.0,5.0,-6.289308176100628,22.0125786163522 -521,7.0,7.0,7.733287237496075,-26.527493274828448 -521,7.0,27.0,-1.4439790613954469,4.540814658476248 -521,8.0,5.0,0.0,4.915840805411357 -521,8.0,8.0,0.0,-18.706293706293707 -521,8.0,9.0,0.0,9.090909090909092 -521,8.0,10.0,0.0,4.807692307692308 -521,9.0,5.0,0.0,1.8561002591115965 -521,9.0,8.0,0.0,9.090909090909092 -521,9.0,9.0,13.462042814524237,-41.3837606675224 -521,9.0,16.0,-3.956039125715353,10.317447719844054 -521,9.0,19.0,-1.7848303152666305,3.98535828943083 -521,9.0,20.0,-5.101853820159654,10.98071411292983 -521,9.0,21.0,-2.619319553382597,5.400770303329455 -521,10.0,8.0,0.0,4.807692307692308 -521,10.0,10.0,0.0,-4.807692307692308 -521,11.0,3.0,0.0,4.191255364806866 -521,11.0,11.0,6.573961583776156,-24.424167659260668 -521,11.0,12.0,0.0,7.142857142857143 -521,11.0,13.0,-1.5265676088395577,3.1734252729654173 -521,11.0,14.0,-3.0953961826564296,6.097275864326261 -521,11.0,15.0,-1.9519977922801688,4.104359379111847 -521,12.0,11.0,0.0,7.142857142857143 -521,12.0,12.0,0.0,-7.142857142857143 -521,13.0,11.0,-1.5265676088395577,3.1734252729654173 -521,13.0,13.0,4.01751987283902,-5.424299332335067 -521,13.0,14.0,-2.4909522639994623,2.250874059369649 -521,14.0,11.0,-3.0953961826564296,6.097275864326261 -521,14.0,13.0,-2.4909522639994623,2.250874059369649 -521,14.0,14.0,9.365498545964757,-16.01163373210796 -521,14.0,17.0,-1.8108011504072024,3.687418931630696 -521,14.0,22.0,-1.9683489489016612,3.976064876781356 -521,15.0,11.0,-1.9519977922801688,4.104359379111847 -521,15.0,15.0,3.271064728633931,-8.94513365126506 -521,15.0,16.0,-1.3190669363537617,4.8407742721532125 -521,16.0,9.0,-3.956039125715353,10.317447719844054 -521,16.0,15.0,-1.3190669363537617,4.8407742721532125 -521,16.0,16.0,5.275106062069114,-15.158221991997266 -521,17.0,14.0,-1.8108011504072024,3.687418931630696 -521,17.0,17.0,4.886487584415919,-9.906177730909668 -521,17.0,18.0,-3.0756864340087167,6.218758799278971 -521,18.0,17.0,-3.0756864340087167,6.218758799278971 -521,18.0,18.0,8.958039375185187,-17.98346468163191 -521,18.0,19.0,-5.88235294117647,11.76470588235294 -521,19.0,9.0,-1.7848303152666305,3.98535828943083 -521,19.0,18.0,-5.88235294117647,11.76470588235294 -521,19.0,19.0,7.6671832564431,-15.75006417178377 -521,20.0,9.0,-5.101853820159654,10.98071411292983 -521,20.0,20.0,21.876495189895888,-45.10843276170355 -521,20.0,21.0,-16.774641369736234,34.127718648773715 -521,21.0,9.0,-2.619319553382597,5.400770303329455 -521,21.0,20.0,-16.774641369736234,34.127718648773715 -521,21.0,21.0,21.93449907537439,-43.48289181517921 -521,21.0,23.0,-2.5405381522555563,3.95440286307604 -521,22.0,14.0,-1.9683489489016612,3.976064876781356 -521,22.0,22.0,3.429754555384988,-6.965303617315433 -521,22.0,23.0,-1.4614056064833263,2.989238740534077 -521,23.0,21.0,-2.5405381522555563,3.95440286307604 -521,23.0,22.0,-1.4614056064833263,2.989238740534077 -521,23.0,23.0,5.311836702613133,-9.188263657315172 -521,23.0,24.0,-1.3098929438742493,2.287622053705056 -521,24.0,23.0,-1.3098929438742493,2.287622053705056 -521,24.0,24.0,4.495715080321987,-7.864978761969621 -521,24.0,25.0,-1.2165301194494855,1.8171440463475024 -521,24.0,26.0,-1.9692920169982515,3.760212661917064 -521,25.0,24.0,-1.2165301194494855,1.8171440463475024 -521,25.0,25.0,1.2165301194494855,-1.8171440463475024 -521,26.0,24.0,-1.9692920169982515,3.760212661917064 -521,26.0,26.0,3.652281470778589,-9.46044252232512 -521,26.0,27.0,0.0,2.608731947574922 -521,26.0,28.0,-0.99553355095268,1.881005840357816 -521,26.0,29.0,-0.6874559028276572,1.293971494797717 -521,27.0,5.0,-4.362844058012917,15.463571542897856 -521,27.0,7.0,-1.4439790613954469,4.540814658476248 -521,27.0,26.0,0.0,2.608731947574922 -521,27.0,27.0,5.806823119408364,-22.67145722159613 -521,28.0,26.0,-0.99553355095268,1.881005840357816 -521,28.0,28.0,1.9075867579849564,-3.604364401207048 -521,28.0,29.0,-0.9120532070322764,1.7233585608492326 -521,29.0,26.0,-0.6874559028276572,1.293971494797717 -521,29.0,28.0,-0.9120532070322764,1.7233585608492326 -521,29.0,29.0,1.5995091098599337,-3.0173300556469496 -522,0.0,0.0,6.765516048652632,-21.23160167089863 -522,0.0,1.0,-5.224646179885656,15.646726840803398 -522,0.0,2.0,-1.5408698687669766,5.631674830095234 -522,1.0,0.0,-5.224646179885656,15.646726840803398 -522,1.0,1.0,9.75228216552403,-30.648662892676068 -522,1.0,3.0,-1.7055303166990268,5.1973792282565086 -522,1.0,4.0,-1.1359607881738778,4.772479328281356 -522,1.0,5.0,-1.6861448807654689,5.116477495334806 -522,2.0,0.0,-1.5408698687669766,5.631674830095234 -522,2.0,2.0,9.736318911079088,-29.13794745915803 -522,2.0,3.0,-8.19544904231211,23.5308726290628 -522,3.0,1.0,-1.7055303166990268,5.1973792282565086 -522,3.0,2.0,-8.19544904231211,23.5308726290628 -522,3.0,3.0,16.314103089185693,-55.509410535254254 -522,3.0,5.0,-6.413123730174556,22.31120356548123 -522,3.0,11.0,0.0,4.191255364806866 -522,4.0,1.0,-1.1359607881738778,4.772479328281356 -522,4.0,4.0,4.089980824135861,-12.190647245055052 -522,4.0,6.0,-2.954020035961983,7.449267916773697 -522,5.0,1.0,-1.6861448807654689,5.116477495334806 -522,5.0,3.0,-6.413123730174556,22.31120356548123 -522,5.0,5.0,22.341631269034565,-77.80272577435625 -522,5.0,6.0,-3.590210423980992,11.02611441072814 -522,5.0,7.0,-6.289308176100628,22.0125786163522 -522,5.0,9.0,0.0,1.8561002591115965 -522,5.0,27.0,-4.362844058012917,15.463571542897856 -522,6.0,4.0,-2.954020035961983,7.449267916773697 -522,6.0,5.0,-3.590210423980992,11.02611441072814 -522,6.0,6.0,6.544230459942975,-18.45668232750184 -522,7.0,5.0,-6.289308176100628,22.0125786163522 -522,7.0,7.0,7.733287237496075,-26.527493274828448 -522,7.0,27.0,-1.4439790613954469,4.540814658476248 -522,8.0,8.0,0.0,-13.8986013986014 -522,8.0,9.0,0.0,9.090909090909092 -522,8.0,10.0,0.0,4.807692307692308 -522,9.0,5.0,0.0,1.8561002591115965 -522,9.0,8.0,0.0,9.090909090909092 -522,9.0,9.0,11.677212499257603,-37.39840237809157 -522,9.0,16.0,-3.956039125715353,10.317447719844054 -522,9.0,20.0,-5.101853820159654,10.98071411292983 -522,9.0,21.0,-2.619319553382597,5.400770303329455 -522,10.0,8.0,0.0,4.807692307692308 -522,10.0,10.0,0.0,-4.807692307692308 -522,11.0,3.0,0.0,4.191255364806866 -522,11.0,11.0,6.573961583776156,-24.424167659260668 -522,11.0,12.0,0.0,7.142857142857143 -522,11.0,13.0,-1.5265676088395577,3.1734252729654173 -522,11.0,14.0,-3.0953961826564296,6.097275864326261 -522,11.0,15.0,-1.9519977922801688,4.104359379111847 -522,12.0,11.0,0.0,7.142857142857143 -522,12.0,12.0,0.0,-7.142857142857143 -522,13.0,11.0,-1.5265676088395577,3.1734252729654173 -522,13.0,13.0,4.01751987283902,-5.424299332335067 -522,13.0,14.0,-2.4909522639994623,2.250874059369649 -522,14.0,11.0,-3.0953961826564296,6.097275864326261 -522,14.0,13.0,-2.4909522639994623,2.250874059369649 -522,14.0,14.0,9.365498545964757,-16.01163373210796 -522,14.0,17.0,-1.8108011504072024,3.687418931630696 -522,14.0,22.0,-1.9683489489016612,3.976064876781356 -522,15.0,11.0,-1.9519977922801688,4.104359379111847 -522,15.0,15.0,3.271064728633931,-8.94513365126506 -522,15.0,16.0,-1.3190669363537617,4.8407742721532125 -522,16.0,9.0,-3.956039125715353,10.317447719844054 -522,16.0,15.0,-1.3190669363537617,4.8407742721532125 -522,16.0,16.0,5.275106062069114,-15.158221991997266 -522,17.0,14.0,-1.8108011504072024,3.687418931630696 -522,17.0,17.0,4.886487584415919,-9.906177730909668 -522,17.0,18.0,-3.0756864340087167,6.218758799278971 -522,18.0,17.0,-3.0756864340087167,6.218758799278971 -522,18.0,18.0,8.958039375185187,-17.98346468163191 -522,18.0,19.0,-5.88235294117647,11.76470588235294 -522,19.0,18.0,-5.88235294117647,11.76470588235294 -522,19.0,19.0,5.88235294117647,-11.76470588235294 -522,20.0,9.0,-5.101853820159654,10.98071411292983 -522,20.0,20.0,21.876495189895888,-45.10843276170355 -522,20.0,21.0,-16.774641369736234,34.127718648773715 -522,21.0,9.0,-2.619319553382597,5.400770303329455 -522,21.0,20.0,-16.774641369736234,34.127718648773715 -522,21.0,21.0,21.93449907537439,-43.48289181517921 -522,21.0,23.0,-2.5405381522555563,3.95440286307604 -522,22.0,14.0,-1.9683489489016612,3.976064876781356 -522,22.0,22.0,3.429754555384988,-6.965303617315433 -522,22.0,23.0,-1.4614056064833263,2.989238740534077 -522,23.0,21.0,-2.5405381522555563,3.95440286307604 -522,23.0,22.0,-1.4614056064833263,2.989238740534077 -522,23.0,23.0,5.311836702613133,-9.188263657315172 -522,23.0,24.0,-1.3098929438742493,2.287622053705056 -522,24.0,23.0,-1.3098929438742493,2.287622053705056 -522,24.0,24.0,4.495715080321987,-7.864978761969621 -522,24.0,25.0,-1.2165301194494855,1.8171440463475024 -522,24.0,26.0,-1.9692920169982515,3.760212661917064 -522,25.0,24.0,-1.2165301194494855,1.8171440463475024 -522,25.0,25.0,1.2165301194494855,-1.8171440463475024 -522,26.0,24.0,-1.9692920169982515,3.760212661917064 -522,26.0,26.0,3.652281470778589,-9.46044252232512 -522,26.0,27.0,0.0,2.608731947574922 -522,26.0,28.0,-0.99553355095268,1.881005840357816 -522,26.0,29.0,-0.6874559028276572,1.293971494797717 -522,27.0,5.0,-4.362844058012917,15.463571542897856 -522,27.0,7.0,-1.4439790613954469,4.540814658476248 -522,27.0,26.0,0.0,2.608731947574922 -522,27.0,27.0,5.806823119408364,-22.67145722159613 -522,28.0,26.0,-0.99553355095268,1.881005840357816 -522,28.0,28.0,1.9075867579849564,-3.604364401207048 -522,28.0,29.0,-0.9120532070322764,1.7233585608492326 -522,29.0,26.0,-0.6874559028276572,1.293971494797717 -522,29.0,28.0,-0.9120532070322764,1.7233585608492326 -522,29.0,29.0,1.5995091098599337,-3.0173300556469496 -523,0.0,0.0,6.765516048652632,-21.23160167089863 -523,0.0,1.0,-5.224646179885656,15.646726840803398 -523,0.0,2.0,-1.5408698687669766,5.631674830095234 -523,1.0,0.0,-5.224646179885656,15.646726840803398 -523,1.0,1.0,9.75228216552403,-30.648662892676068 -523,1.0,3.0,-1.7055303166990268,5.1973792282565086 -523,1.0,4.0,-1.1359607881738778,4.772479328281356 -523,1.0,5.0,-1.6861448807654689,5.116477495334806 -523,2.0,0.0,-1.5408698687669766,5.631674830095234 -523,2.0,2.0,9.736318911079088,-29.13794745915803 -523,2.0,3.0,-8.19544904231211,23.5308726290628 -523,3.0,1.0,-1.7055303166990268,5.1973792282565086 -523,3.0,2.0,-8.19544904231211,23.5308726290628 -523,3.0,3.0,9.900979359011137,-28.705651857319307 -523,4.0,1.0,-1.1359607881738778,4.772479328281356 -523,4.0,4.0,4.089980824135861,-12.190647245055052 -523,4.0,6.0,-2.954020035961983,7.449267916773697 -523,5.0,1.0,-1.6861448807654689,5.116477495334806 -523,5.0,5.0,12.338297114879014,-49.50482988956954 -523,5.0,7.0,-6.289308176100628,22.0125786163522 -523,5.0,8.0,0.0,4.915840805411357 -523,5.0,9.0,0.0,1.8561002591115965 -523,5.0,27.0,-4.362844058012917,15.463571542897856 -523,6.0,4.0,-2.954020035961983,7.449267916773697 -523,6.0,6.0,2.954020035961983,-7.439067916773697 -523,7.0,5.0,-6.289308176100628,22.0125786163522 -523,7.0,7.0,7.733287237496075,-26.527493274828448 -523,7.0,27.0,-1.4439790613954469,4.540814658476248 -523,8.0,5.0,0.0,4.915840805411357 -523,8.0,8.0,0.0,-18.706293706293707 -523,8.0,9.0,0.0,9.090909090909092 -523,8.0,10.0,0.0,4.807692307692308 -523,9.0,5.0,0.0,1.8561002591115965 -523,9.0,8.0,0.0,9.090909090909092 -523,9.0,9.0,8.36018899436458,-30.40304655459257 -523,9.0,16.0,-3.956039125715353,10.317447719844054 -523,9.0,19.0,-1.7848303152666305,3.98535828943083 -523,9.0,21.0,-2.619319553382597,5.400770303329455 -523,10.0,8.0,0.0,4.807692307692308 -523,10.0,10.0,0.0,-4.807692307692308 -523,11.0,11.0,6.573961583776156,-20.517917659260668 -523,11.0,12.0,0.0,7.142857142857143 -523,11.0,13.0,-1.5265676088395577,3.1734252729654173 -523,11.0,14.0,-3.0953961826564296,6.097275864326261 -523,11.0,15.0,-1.9519977922801688,4.104359379111847 -523,12.0,11.0,0.0,7.142857142857143 -523,12.0,12.0,0.0,-7.142857142857143 -523,13.0,11.0,-1.5265676088395577,3.1734252729654173 -523,13.0,13.0,4.01751987283902,-5.424299332335067 -523,13.0,14.0,-2.4909522639994623,2.250874059369649 -523,14.0,11.0,-3.0953961826564296,6.097275864326261 -523,14.0,13.0,-2.4909522639994623,2.250874059369649 -523,14.0,14.0,9.365498545964757,-16.01163373210796 -523,14.0,17.0,-1.8108011504072024,3.687418931630696 -523,14.0,22.0,-1.9683489489016612,3.976064876781356 -523,15.0,11.0,-1.9519977922801688,4.104359379111847 -523,15.0,15.0,3.271064728633931,-8.94513365126506 -523,15.0,16.0,-1.3190669363537617,4.8407742721532125 -523,16.0,9.0,-3.956039125715353,10.317447719844054 -523,16.0,15.0,-1.3190669363537617,4.8407742721532125 -523,16.0,16.0,5.275106062069114,-15.158221991997266 -523,17.0,14.0,-1.8108011504072024,3.687418931630696 -523,17.0,17.0,4.886487584415919,-9.906177730909668 -523,17.0,18.0,-3.0756864340087167,6.218758799278971 -523,18.0,17.0,-3.0756864340087167,6.218758799278971 -523,18.0,18.0,8.958039375185187,-17.98346468163191 -523,18.0,19.0,-5.88235294117647,11.76470588235294 -523,19.0,9.0,-1.7848303152666305,3.98535828943083 -523,19.0,18.0,-5.88235294117647,11.76470588235294 -523,19.0,19.0,7.6671832564431,-15.75006417178377 -523,20.0,20.0,16.774641369736234,-34.127718648773715 -523,20.0,21.0,-16.774641369736234,34.127718648773715 -523,21.0,9.0,-2.619319553382597,5.400770303329455 -523,21.0,20.0,-16.774641369736234,34.127718648773715 -523,21.0,21.0,21.93449907537439,-43.48289181517921 -523,21.0,23.0,-2.5405381522555563,3.95440286307604 -523,22.0,14.0,-1.9683489489016612,3.976064876781356 -523,22.0,22.0,3.429754555384988,-6.965303617315433 -523,22.0,23.0,-1.4614056064833263,2.989238740534077 -523,23.0,21.0,-2.5405381522555563,3.95440286307604 -523,23.0,22.0,-1.4614056064833263,2.989238740534077 -523,23.0,23.0,5.311836702613133,-9.188263657315172 -523,23.0,24.0,-1.3098929438742493,2.287622053705056 -523,24.0,23.0,-1.3098929438742493,2.287622053705056 -523,24.0,24.0,4.495715080321987,-7.864978761969621 -523,24.0,25.0,-1.2165301194494855,1.8171440463475024 -523,24.0,26.0,-1.9692920169982515,3.760212661917064 -523,25.0,24.0,-1.2165301194494855,1.8171440463475024 -523,25.0,25.0,1.2165301194494855,-1.8171440463475024 -523,26.0,24.0,-1.9692920169982515,3.760212661917064 -523,26.0,26.0,3.652281470778589,-9.46044252232512 -523,26.0,27.0,0.0,2.608731947574922 -523,26.0,28.0,-0.99553355095268,1.881005840357816 -523,26.0,29.0,-0.6874559028276572,1.293971494797717 -523,27.0,5.0,-4.362844058012917,15.463571542897856 -523,27.0,7.0,-1.4439790613954469,4.540814658476248 -523,27.0,26.0,0.0,2.608731947574922 -523,27.0,27.0,5.806823119408364,-22.67145722159613 -523,28.0,26.0,-0.99553355095268,1.881005840357816 -523,28.0,28.0,1.9075867579849564,-3.604364401207048 -523,28.0,29.0,-0.9120532070322764,1.7233585608492326 -523,29.0,26.0,-0.6874559028276572,1.293971494797717 -523,29.0,28.0,-0.9120532070322764,1.7233585608492326 -523,29.0,29.0,1.5995091098599337,-3.0173300556469496 -524,0.0,0.0,6.765516048652632,-21.23160167089863 -524,0.0,1.0,-5.224646179885656,15.646726840803398 -524,0.0,2.0,-1.5408698687669766,5.631674830095234 -524,1.0,0.0,-5.224646179885656,15.646726840803398 -524,1.0,1.0,9.75228216552403,-30.648662892676068 -524,1.0,3.0,-1.7055303166990268,5.1973792282565086 -524,1.0,4.0,-1.1359607881738778,4.772479328281356 -524,1.0,5.0,-1.6861448807654689,5.116477495334806 -524,2.0,0.0,-1.5408698687669766,5.631674830095234 -524,2.0,2.0,9.736318911079088,-29.13794745915803 -524,2.0,3.0,-8.19544904231211,23.5308726290628 -524,3.0,1.0,-1.7055303166990268,5.1973792282565086 -524,3.0,2.0,-8.19544904231211,23.5308726290628 -524,3.0,3.0,16.314103089185693,-55.509410535254254 -524,3.0,5.0,-6.413123730174556,22.31120356548123 -524,3.0,11.0,0.0,4.191255364806866 -524,4.0,1.0,-1.1359607881738778,4.772479328281356 -524,4.0,4.0,4.089980824135861,-12.190647245055052 -524,4.0,6.0,-2.954020035961983,7.449267916773697 -524,5.0,1.0,-1.6861448807654689,5.116477495334806 -524,5.0,3.0,-6.413123730174556,22.31120356548123 -524,5.0,5.0,22.341631269034565,-82.8291478657789 -524,5.0,6.0,-3.590210423980992,11.02611441072814 -524,5.0,7.0,-6.289308176100628,22.0125786163522 -524,5.0,8.0,0.0,4.915840805411357 -524,5.0,9.0,0.0,1.8561002591115965 -524,5.0,27.0,-4.362844058012917,15.463571542897856 -524,6.0,4.0,-2.954020035961983,7.449267916773697 -524,6.0,5.0,-3.590210423980992,11.02611441072814 -524,6.0,6.0,6.544230459942975,-18.45668232750184 -524,7.0,5.0,-6.289308176100628,22.0125786163522 -524,7.0,7.0,7.733287237496075,-26.527493274828448 -524,7.0,27.0,-1.4439790613954469,4.540814658476248 -524,8.0,5.0,0.0,4.915840805411357 -524,8.0,8.0,0.0,-18.706293706293707 -524,8.0,9.0,0.0,9.090909090909092 -524,8.0,10.0,0.0,4.807692307692308 -524,9.0,5.0,0.0,1.8561002591115965 -524,9.0,8.0,0.0,9.090909090909092 -524,9.0,9.0,13.462042814524237,-41.3837606675224 -524,9.0,16.0,-3.956039125715353,10.317447719844054 -524,9.0,19.0,-1.7848303152666305,3.98535828943083 -524,9.0,20.0,-5.101853820159654,10.98071411292983 -524,9.0,21.0,-2.619319553382597,5.400770303329455 -524,10.0,8.0,0.0,4.807692307692308 -524,10.0,10.0,0.0,-4.807692307692308 -524,11.0,3.0,0.0,4.191255364806866 -524,11.0,11.0,3.0953961826564296,-17.146383007183402 -524,11.0,12.0,0.0,7.142857142857143 -524,11.0,14.0,-3.0953961826564296,6.097275864326261 -524,12.0,11.0,0.0,7.142857142857143 -524,12.0,12.0,0.0,-7.142857142857143 -524,13.0,13.0,2.4909522639994623,-2.250874059369649 -524,13.0,14.0,-2.4909522639994623,2.250874059369649 -524,14.0,11.0,-3.0953961826564296,6.097275864326261 -524,14.0,13.0,-2.4909522639994623,2.250874059369649 -524,14.0,14.0,9.365498545964757,-16.01163373210796 -524,14.0,17.0,-1.8108011504072024,3.687418931630696 -524,14.0,22.0,-1.9683489489016612,3.976064876781356 -524,15.0,15.0,1.3190669363537617,-4.8407742721532125 -524,15.0,16.0,-1.3190669363537617,4.8407742721532125 -524,16.0,9.0,-3.956039125715353,10.317447719844054 -524,16.0,15.0,-1.3190669363537617,4.8407742721532125 -524,16.0,16.0,5.275106062069114,-15.158221991997266 -524,17.0,14.0,-1.8108011504072024,3.687418931630696 -524,17.0,17.0,4.886487584415919,-9.906177730909668 -524,17.0,18.0,-3.0756864340087167,6.218758799278971 -524,18.0,17.0,-3.0756864340087167,6.218758799278971 -524,18.0,18.0,8.958039375185187,-17.98346468163191 -524,18.0,19.0,-5.88235294117647,11.76470588235294 -524,19.0,9.0,-1.7848303152666305,3.98535828943083 -524,19.0,18.0,-5.88235294117647,11.76470588235294 -524,19.0,19.0,7.6671832564431,-15.75006417178377 -524,20.0,9.0,-5.101853820159654,10.98071411292983 -524,20.0,20.0,21.876495189895888,-45.10843276170355 -524,20.0,21.0,-16.774641369736234,34.127718648773715 -524,21.0,9.0,-2.619319553382597,5.400770303329455 -524,21.0,20.0,-16.774641369736234,34.127718648773715 -524,21.0,21.0,21.93449907537439,-43.48289181517921 -524,21.0,23.0,-2.5405381522555563,3.95440286307604 -524,22.0,14.0,-1.9683489489016612,3.976064876781356 -524,22.0,22.0,3.429754555384988,-6.965303617315433 -524,22.0,23.0,-1.4614056064833263,2.989238740534077 -524,23.0,21.0,-2.5405381522555563,3.95440286307604 -524,23.0,22.0,-1.4614056064833263,2.989238740534077 -524,23.0,23.0,5.311836702613133,-9.188263657315172 -524,23.0,24.0,-1.3098929438742493,2.287622053705056 -524,24.0,23.0,-1.3098929438742493,2.287622053705056 -524,24.0,24.0,4.495715080321987,-7.864978761969621 -524,24.0,25.0,-1.2165301194494855,1.8171440463475024 -524,24.0,26.0,-1.9692920169982515,3.760212661917064 -524,25.0,24.0,-1.2165301194494855,1.8171440463475024 -524,25.0,25.0,1.2165301194494855,-1.8171440463475024 -524,26.0,24.0,-1.9692920169982515,3.760212661917064 -524,26.0,26.0,3.652281470778589,-9.46044252232512 -524,26.0,27.0,0.0,2.608731947574922 -524,26.0,28.0,-0.99553355095268,1.881005840357816 -524,26.0,29.0,-0.6874559028276572,1.293971494797717 -524,27.0,5.0,-4.362844058012917,15.463571542897856 -524,27.0,7.0,-1.4439790613954469,4.540814658476248 -524,27.0,26.0,0.0,2.608731947574922 -524,27.0,27.0,5.806823119408364,-22.67145722159613 -524,28.0,26.0,-0.99553355095268,1.881005840357816 -524,28.0,28.0,1.9075867579849564,-3.604364401207048 -524,28.0,29.0,-0.9120532070322764,1.7233585608492326 -524,29.0,26.0,-0.6874559028276572,1.293971494797717 -524,29.0,28.0,-0.9120532070322764,1.7233585608492326 -524,29.0,29.0,1.5995091098599337,-3.0173300556469496 -525,0.0,0.0,6.765516048652632,-21.23160167089863 -525,0.0,1.0,-5.224646179885656,15.646726840803398 -525,0.0,2.0,-1.5408698687669766,5.631674830095234 -525,1.0,0.0,-5.224646179885656,15.646726840803398 -525,1.0,1.0,9.75228216552403,-30.648662892676068 -525,1.0,3.0,-1.7055303166990268,5.1973792282565086 -525,1.0,4.0,-1.1359607881738778,4.772479328281356 -525,1.0,5.0,-1.6861448807654689,5.116477495334806 -525,2.0,0.0,-1.5408698687669766,5.631674830095234 -525,2.0,2.0,9.736318911079088,-29.13794745915803 -525,2.0,3.0,-8.19544904231211,23.5308726290628 -525,3.0,1.0,-1.7055303166990268,5.1973792282565086 -525,3.0,2.0,-8.19544904231211,23.5308726290628 -525,3.0,3.0,9.900979359011137,-33.202706969773025 -525,3.0,11.0,0.0,4.191255364806866 -525,4.0,1.0,-1.1359607881738778,4.772479328281356 -525,4.0,4.0,4.089980824135861,-12.190647245055052 -525,4.0,6.0,-2.954020035961983,7.449267916773697 -525,5.0,1.0,-1.6861448807654689,5.116477495334806 -525,5.0,5.0,15.928507538860009,-58.60696415673565 -525,5.0,6.0,-3.590210423980992,11.02611441072814 -525,5.0,7.0,-6.289308176100628,22.0125786163522 -525,5.0,8.0,0.0,4.915840805411357 -525,5.0,27.0,-4.362844058012917,15.463571542897856 -525,6.0,4.0,-2.954020035961983,7.449267916773697 -525,6.0,5.0,-3.590210423980992,11.02611441072814 -525,6.0,6.0,6.544230459942975,-18.45668232750184 -525,7.0,5.0,-6.289308176100628,22.0125786163522 -525,7.0,7.0,7.733287237496075,-26.527493274828448 -525,7.0,27.0,-1.4439790613954469,4.540814658476248 -525,8.0,5.0,0.0,4.915840805411357 -525,8.0,8.0,0.0,-18.706293706293707 -525,8.0,9.0,0.0,9.090909090909092 -525,8.0,10.0,0.0,4.807692307692308 -525,9.0,8.0,0.0,9.090909090909092 -525,9.0,9.0,11.677212499257603,-35.59984122701243 -525,9.0,16.0,-3.956039125715353,10.317447719844054 -525,9.0,20.0,-5.101853820159654,10.98071411292983 -525,9.0,21.0,-2.619319553382597,5.400770303329455 -525,10.0,8.0,0.0,4.807692307692308 -525,10.0,10.0,0.0,-4.807692307692308 -525,11.0,3.0,0.0,4.191255364806866 -525,11.0,11.0,5.047393974936599,-21.25074238629525 -525,11.0,12.0,0.0,7.142857142857143 -525,11.0,14.0,-3.0953961826564296,6.097275864326261 -525,11.0,15.0,-1.9519977922801688,4.104359379111847 -525,12.0,11.0,0.0,7.142857142857143 -525,12.0,12.0,0.0,-7.142857142857143 -525,13.0,13.0,2.4909522639994623,-2.250874059369649 -525,13.0,14.0,-2.4909522639994623,2.250874059369649 -525,14.0,11.0,-3.0953961826564296,6.097275864326261 -525,14.0,13.0,-2.4909522639994623,2.250874059369649 -525,14.0,14.0,9.365498545964757,-16.01163373210796 -525,14.0,17.0,-1.8108011504072024,3.687418931630696 -525,14.0,22.0,-1.9683489489016612,3.976064876781356 -525,15.0,11.0,-1.9519977922801688,4.104359379111847 -525,15.0,15.0,3.271064728633931,-8.94513365126506 -525,15.0,16.0,-1.3190669363537617,4.8407742721532125 -525,16.0,9.0,-3.956039125715353,10.317447719844054 -525,16.0,15.0,-1.3190669363537617,4.8407742721532125 -525,16.0,16.0,5.275106062069114,-15.158221991997266 -525,17.0,14.0,-1.8108011504072024,3.687418931630696 -525,17.0,17.0,4.886487584415919,-9.906177730909668 -525,17.0,18.0,-3.0756864340087167,6.218758799278971 -525,18.0,17.0,-3.0756864340087167,6.218758799278971 -525,18.0,18.0,8.958039375185187,-17.98346468163191 -525,18.0,19.0,-5.88235294117647,11.76470588235294 -525,19.0,18.0,-5.88235294117647,11.76470588235294 -525,19.0,19.0,5.88235294117647,-11.76470588235294 -525,20.0,9.0,-5.101853820159654,10.98071411292983 -525,20.0,20.0,21.876495189895888,-45.10843276170355 -525,20.0,21.0,-16.774641369736234,34.127718648773715 -525,21.0,9.0,-2.619319553382597,5.400770303329455 -525,21.0,20.0,-16.774641369736234,34.127718648773715 -525,21.0,21.0,21.93449907537439,-43.48289181517921 -525,21.0,23.0,-2.5405381522555563,3.95440286307604 -525,22.0,14.0,-1.9683489489016612,3.976064876781356 -525,22.0,22.0,3.429754555384988,-6.965303617315433 -525,22.0,23.0,-1.4614056064833263,2.989238740534077 -525,23.0,21.0,-2.5405381522555563,3.95440286307604 -525,23.0,22.0,-1.4614056064833263,2.989238740534077 -525,23.0,23.0,5.311836702613133,-9.188263657315172 -525,23.0,24.0,-1.3098929438742493,2.287622053705056 -525,24.0,23.0,-1.3098929438742493,2.287622053705056 -525,24.0,24.0,4.495715080321987,-7.864978761969621 -525,24.0,25.0,-1.2165301194494855,1.8171440463475024 -525,24.0,26.0,-1.9692920169982515,3.760212661917064 -525,25.0,24.0,-1.2165301194494855,1.8171440463475024 -525,25.0,25.0,1.2165301194494855,-1.8171440463475024 -525,26.0,24.0,-1.9692920169982515,3.760212661917064 -525,26.0,26.0,3.652281470778589,-9.46044252232512 -525,26.0,27.0,0.0,2.608731947574922 -525,26.0,28.0,-0.99553355095268,1.881005840357816 -525,26.0,29.0,-0.6874559028276572,1.293971494797717 -525,27.0,5.0,-4.362844058012917,15.463571542897856 -525,27.0,7.0,-1.4439790613954469,4.540814658476248 -525,27.0,26.0,0.0,2.608731947574922 -525,27.0,27.0,5.806823119408364,-22.67145722159613 -525,28.0,26.0,-0.99553355095268,1.881005840357816 -525,28.0,28.0,1.9075867579849564,-3.604364401207048 -525,28.0,29.0,-0.9120532070322764,1.7233585608492326 -525,29.0,26.0,-0.6874559028276572,1.293971494797717 -525,29.0,28.0,-0.9120532070322764,1.7233585608492326 -525,29.0,29.0,1.5995091098599337,-3.0173300556469496 -526,0.0,0.0,6.765516048652632,-21.23160167089863 -526,0.0,1.0,-5.224646179885656,15.646726840803398 -526,0.0,2.0,-1.5408698687669766,5.631674830095234 -526,1.0,0.0,-5.224646179885656,15.646726840803398 -526,1.0,1.0,9.75228216552403,-30.648662892676068 -526,1.0,3.0,-1.7055303166990268,5.1973792282565086 -526,1.0,4.0,-1.1359607881738778,4.772479328281356 -526,1.0,5.0,-1.6861448807654689,5.116477495334806 -526,2.0,0.0,-1.5408698687669766,5.631674830095234 -526,2.0,2.0,9.736318911079088,-29.13794745915803 -526,2.0,3.0,-8.19544904231211,23.5308726290628 -526,3.0,1.0,-1.7055303166990268,5.1973792282565086 -526,3.0,2.0,-8.19544904231211,23.5308726290628 -526,3.0,3.0,16.314103089185693,-55.509410535254254 -526,3.0,5.0,-6.413123730174556,22.31120356548123 -526,3.0,11.0,0.0,4.191255364806866 -526,4.0,1.0,-1.1359607881738778,4.772479328281356 -526,4.0,4.0,4.089980824135861,-12.190647245055052 -526,4.0,6.0,-2.954020035961983,7.449267916773697 -526,5.0,1.0,-1.6861448807654689,5.116477495334806 -526,5.0,3.0,-6.413123730174556,22.31120356548123 -526,5.0,5.0,22.341631269034565,-82.8291478657789 -526,5.0,6.0,-3.590210423980992,11.02611441072814 -526,5.0,7.0,-6.289308176100628,22.0125786163522 -526,5.0,8.0,0.0,4.915840805411357 -526,5.0,9.0,0.0,1.8561002591115965 -526,5.0,27.0,-4.362844058012917,15.463571542897856 -526,6.0,4.0,-2.954020035961983,7.449267916773697 -526,6.0,5.0,-3.590210423980992,11.02611441072814 -526,6.0,6.0,6.544230459942975,-18.45668232750184 -526,7.0,5.0,-6.289308176100628,22.0125786163522 -526,7.0,7.0,7.733287237496075,-26.527493274828448 -526,7.0,27.0,-1.4439790613954469,4.540814658476248 -526,8.0,5.0,0.0,4.915840805411357 -526,8.0,8.0,0.0,-18.706293706293707 -526,8.0,9.0,0.0,9.090909090909092 -526,8.0,10.0,0.0,4.807692307692308 -526,9.0,5.0,0.0,1.8561002591115965 -526,9.0,8.0,0.0,9.090909090909092 -526,9.0,9.0,13.462042814524237,-41.3837606675224 -526,9.0,16.0,-3.956039125715353,10.317447719844054 -526,9.0,19.0,-1.7848303152666305,3.98535828943083 -526,9.0,20.0,-5.101853820159654,10.98071411292983 -526,9.0,21.0,-2.619319553382597,5.400770303329455 -526,10.0,8.0,0.0,4.807692307692308 -526,10.0,10.0,0.0,-4.807692307692308 -526,11.0,3.0,0.0,4.191255364806866 -526,11.0,11.0,6.573961583776156,-24.424167659260668 -526,11.0,12.0,0.0,7.142857142857143 -526,11.0,13.0,-1.5265676088395577,3.1734252729654173 -526,11.0,14.0,-3.0953961826564296,6.097275864326261 -526,11.0,15.0,-1.9519977922801688,4.104359379111847 -526,12.0,11.0,0.0,7.142857142857143 -526,12.0,12.0,0.0,-7.142857142857143 -526,13.0,11.0,-1.5265676088395577,3.1734252729654173 -526,13.0,13.0,4.01751987283902,-5.424299332335067 -526,13.0,14.0,-2.4909522639994623,2.250874059369649 -526,14.0,11.0,-3.0953961826564296,6.097275864326261 -526,14.0,13.0,-2.4909522639994623,2.250874059369649 -526,14.0,14.0,9.365498545964757,-16.01163373210796 -526,14.0,17.0,-1.8108011504072024,3.687418931630696 -526,14.0,22.0,-1.9683489489016612,3.976064876781356 -526,15.0,11.0,-1.9519977922801688,4.104359379111847 -526,15.0,15.0,3.271064728633931,-8.94513365126506 -526,15.0,16.0,-1.3190669363537617,4.8407742721532125 -526,16.0,9.0,-3.956039125715353,10.317447719844054 -526,16.0,15.0,-1.3190669363537617,4.8407742721532125 -526,16.0,16.0,5.275106062069114,-15.158221991997266 -526,17.0,14.0,-1.8108011504072024,3.687418931630696 -526,17.0,17.0,4.886487584415919,-9.906177730909668 -526,17.0,18.0,-3.0756864340087167,6.218758799278971 -526,18.0,17.0,-3.0756864340087167,6.218758799278971 -526,18.0,18.0,8.958039375185187,-17.98346468163191 -526,18.0,19.0,-5.88235294117647,11.76470588235294 -526,19.0,9.0,-1.7848303152666305,3.98535828943083 -526,19.0,18.0,-5.88235294117647,11.76470588235294 -526,19.0,19.0,7.6671832564431,-15.75006417178377 -526,20.0,9.0,-5.101853820159654,10.98071411292983 -526,20.0,20.0,21.876495189895888,-45.10843276170355 -526,20.0,21.0,-16.774641369736234,34.127718648773715 -526,21.0,9.0,-2.619319553382597,5.400770303329455 -526,21.0,20.0,-16.774641369736234,34.127718648773715 -526,21.0,21.0,21.93449907537439,-43.48289181517921 -526,21.0,23.0,-2.5405381522555563,3.95440286307604 -526,22.0,14.0,-1.9683489489016612,3.976064876781356 -526,22.0,22.0,3.429754555384988,-6.965303617315433 -526,22.0,23.0,-1.4614056064833263,2.989238740534077 -526,23.0,21.0,-2.5405381522555563,3.95440286307604 -526,23.0,22.0,-1.4614056064833263,2.989238740534077 -526,23.0,23.0,5.311836702613133,-9.188263657315172 -526,23.0,24.0,-1.3098929438742493,2.287622053705056 -526,24.0,23.0,-1.3098929438742493,2.287622053705056 -526,24.0,24.0,4.495715080321987,-7.864978761969621 -526,24.0,25.0,-1.2165301194494855,1.8171440463475024 -526,24.0,26.0,-1.9692920169982515,3.760212661917064 -526,25.0,24.0,-1.2165301194494855,1.8171440463475024 -526,25.0,25.0,1.2165301194494855,-1.8171440463475024 -526,26.0,24.0,-1.9692920169982515,3.760212661917064 -526,26.0,26.0,2.656747919825909,-7.579436681967305 -526,26.0,27.0,0.0,2.608731947574922 -526,26.0,29.0,-0.6874559028276572,1.293971494797717 -526,27.0,5.0,-4.362844058012917,15.463571542897856 -526,27.0,7.0,-1.4439790613954469,4.540814658476248 -526,27.0,26.0,0.0,2.608731947574922 -526,27.0,27.0,5.806823119408364,-22.67145722159613 -526,28.0,28.0,0.9120532070322764,-1.7233585608492326 -526,28.0,29.0,-0.9120532070322764,1.7233585608492326 -526,29.0,26.0,-0.6874559028276572,1.293971494797717 -526,29.0,28.0,-0.9120532070322764,1.7233585608492326 -526,29.0,29.0,1.5995091098599337,-3.0173300556469496 -527,0.0,0.0,6.765516048652632,-21.23160167089863 -527,0.0,1.0,-5.224646179885656,15.646726840803398 -527,0.0,2.0,-1.5408698687669766,5.631674830095234 -527,1.0,0.0,-5.224646179885656,15.646726840803398 -527,1.0,1.0,9.75228216552403,-30.648662892676068 -527,1.0,3.0,-1.7055303166990268,5.1973792282565086 -527,1.0,4.0,-1.1359607881738778,4.772479328281356 -527,1.0,5.0,-1.6861448807654689,5.116477495334806 -527,2.0,0.0,-1.5408698687669766,5.631674830095234 -527,2.0,2.0,9.736318911079088,-29.13794745915803 -527,2.0,3.0,-8.19544904231211,23.5308726290628 -527,3.0,1.0,-1.7055303166990268,5.1973792282565086 -527,3.0,2.0,-8.19544904231211,23.5308726290628 -527,3.0,3.0,16.314103089185693,-55.509410535254254 -527,3.0,5.0,-6.413123730174556,22.31120356548123 -527,3.0,11.0,0.0,4.191255364806866 -527,4.0,1.0,-1.1359607881738778,4.772479328281356 -527,4.0,4.0,4.089980824135861,-12.190647245055052 -527,4.0,6.0,-2.954020035961983,7.449267916773697 -527,5.0,1.0,-1.6861448807654689,5.116477495334806 -527,5.0,3.0,-6.413123730174556,22.31120356548123 -527,5.0,5.0,22.341631269034565,-82.8291478657789 -527,5.0,6.0,-3.590210423980992,11.02611441072814 -527,5.0,7.0,-6.289308176100628,22.0125786163522 -527,5.0,8.0,0.0,4.915840805411357 -527,5.0,9.0,0.0,1.8561002591115965 -527,5.0,27.0,-4.362844058012917,15.463571542897856 -527,6.0,4.0,-2.954020035961983,7.449267916773697 -527,6.0,5.0,-3.590210423980992,11.02611441072814 -527,6.0,6.0,6.544230459942975,-18.45668232750184 -527,7.0,5.0,-6.289308176100628,22.0125786163522 -527,7.0,7.0,7.733287237496075,-26.527493274828448 -527,7.0,27.0,-1.4439790613954469,4.540814658476248 -527,8.0,5.0,0.0,4.915840805411357 -527,8.0,8.0,0.0,-18.706293706293707 -527,8.0,9.0,0.0,9.090909090909092 -527,8.0,10.0,0.0,4.807692307692308 -527,9.0,5.0,0.0,1.8561002591115965 -527,9.0,8.0,0.0,9.090909090909092 -527,9.0,9.0,13.462042814524237,-41.3837606675224 -527,9.0,16.0,-3.956039125715353,10.317447719844054 -527,9.0,19.0,-1.7848303152666305,3.98535828943083 -527,9.0,20.0,-5.101853820159654,10.98071411292983 -527,9.0,21.0,-2.619319553382597,5.400770303329455 -527,10.0,8.0,0.0,4.807692307692308 -527,10.0,10.0,0.0,-4.807692307692308 -527,11.0,3.0,0.0,4.191255364806866 -527,11.0,11.0,6.573961583776156,-24.424167659260668 -527,11.0,12.0,0.0,7.142857142857143 -527,11.0,13.0,-1.5265676088395577,3.1734252729654173 -527,11.0,14.0,-3.0953961826564296,6.097275864326261 -527,11.0,15.0,-1.9519977922801688,4.104359379111847 -527,12.0,11.0,0.0,7.142857142857143 -527,12.0,12.0,0.0,-7.142857142857143 -527,13.0,11.0,-1.5265676088395577,3.1734252729654173 -527,13.0,13.0,4.01751987283902,-5.424299332335067 -527,13.0,14.0,-2.4909522639994623,2.250874059369649 -527,14.0,11.0,-3.0953961826564296,6.097275864326261 -527,14.0,13.0,-2.4909522639994623,2.250874059369649 -527,14.0,14.0,9.365498545964757,-16.01163373210796 -527,14.0,17.0,-1.8108011504072024,3.687418931630696 -527,14.0,22.0,-1.9683489489016612,3.976064876781356 -527,15.0,11.0,-1.9519977922801688,4.104359379111847 -527,15.0,15.0,3.271064728633931,-8.94513365126506 -527,15.0,16.0,-1.3190669363537617,4.8407742721532125 -527,16.0,9.0,-3.956039125715353,10.317447719844054 -527,16.0,15.0,-1.3190669363537617,4.8407742721532125 -527,16.0,16.0,5.275106062069114,-15.158221991997266 -527,17.0,14.0,-1.8108011504072024,3.687418931630696 -527,17.0,17.0,4.886487584415919,-9.906177730909668 -527,17.0,18.0,-3.0756864340087167,6.218758799278971 -527,18.0,17.0,-3.0756864340087167,6.218758799278971 -527,18.0,18.0,8.958039375185187,-17.98346468163191 -527,18.0,19.0,-5.88235294117647,11.76470588235294 -527,19.0,9.0,-1.7848303152666305,3.98535828943083 -527,19.0,18.0,-5.88235294117647,11.76470588235294 -527,19.0,19.0,7.6671832564431,-15.75006417178377 -527,20.0,9.0,-5.101853820159654,10.98071411292983 -527,20.0,20.0,21.876495189895888,-45.10843276170355 -527,20.0,21.0,-16.774641369736234,34.127718648773715 -527,21.0,9.0,-2.619319553382597,5.400770303329455 -527,21.0,20.0,-16.774641369736234,34.127718648773715 -527,21.0,21.0,21.93449907537439,-43.48289181517921 -527,21.0,23.0,-2.5405381522555563,3.95440286307604 -527,22.0,14.0,-1.9683489489016612,3.976064876781356 -527,22.0,22.0,3.429754555384988,-6.965303617315433 -527,22.0,23.0,-1.4614056064833263,2.989238740534077 -527,23.0,21.0,-2.5405381522555563,3.95440286307604 -527,23.0,22.0,-1.4614056064833263,2.989238740534077 -527,23.0,23.0,5.311836702613133,-9.188263657315172 -527,23.0,24.0,-1.3098929438742493,2.287622053705056 -527,24.0,23.0,-1.3098929438742493,2.287622053705056 -527,24.0,24.0,4.495715080321987,-7.864978761969621 -527,24.0,25.0,-1.2165301194494855,1.8171440463475024 -527,24.0,26.0,-1.9692920169982515,3.760212661917064 -527,25.0,24.0,-1.2165301194494855,1.8171440463475024 -527,25.0,25.0,1.2165301194494855,-1.8171440463475024 -527,26.0,24.0,-1.9692920169982515,3.760212661917064 -527,26.0,26.0,2.9648255679509314,-8.166471027527404 -527,26.0,27.0,0.0,2.608731947574922 -527,26.0,28.0,-0.99553355095268,1.881005840357816 -527,27.0,5.0,-4.362844058012917,15.463571542897856 -527,27.0,7.0,-1.4439790613954469,4.540814658476248 -527,27.0,26.0,0.0,2.608731947574922 -527,27.0,27.0,5.806823119408364,-22.67145722159613 -527,28.0,26.0,-0.99553355095268,1.881005840357816 -527,28.0,28.0,1.9075867579849564,-3.604364401207048 -527,28.0,29.0,-0.9120532070322764,1.7233585608492326 -527,29.0,28.0,-0.9120532070322764,1.7233585608492326 -527,29.0,29.0,0.9120532070322764,-1.7233585608492326 -528,0.0,0.0,6.765516048652632,-21.23160167089863 -528,0.0,1.0,-5.224646179885656,15.646726840803398 -528,0.0,2.0,-1.5408698687669766,5.631674830095234 -528,1.0,0.0,-5.224646179885656,15.646726840803398 -528,1.0,1.0,9.75228216552403,-30.648662892676068 -528,1.0,3.0,-1.7055303166990268,5.1973792282565086 -528,1.0,4.0,-1.1359607881738778,4.772479328281356 -528,1.0,5.0,-1.6861448807654689,5.116477495334806 -528,2.0,0.0,-1.5408698687669766,5.631674830095234 -528,2.0,2.0,9.736318911079088,-29.13794745915803 -528,2.0,3.0,-8.19544904231211,23.5308726290628 -528,3.0,1.0,-1.7055303166990268,5.1973792282565086 -528,3.0,2.0,-8.19544904231211,23.5308726290628 -528,3.0,3.0,16.314103089185693,-55.509410535254254 -528,3.0,5.0,-6.413123730174556,22.31120356548123 -528,3.0,11.0,0.0,4.191255364806866 -528,4.0,1.0,-1.1359607881738778,4.772479328281356 -528,4.0,4.0,4.089980824135861,-12.190647245055052 -528,4.0,6.0,-2.954020035961983,7.449267916773697 -528,5.0,1.0,-1.6861448807654689,5.116477495334806 -528,5.0,3.0,-6.413123730174556,22.31120356548123 -528,5.0,5.0,22.341631269034565,-82.8291478657789 -528,5.0,6.0,-3.590210423980992,11.02611441072814 -528,5.0,7.0,-6.289308176100628,22.0125786163522 -528,5.0,8.0,0.0,4.915840805411357 -528,5.0,9.0,0.0,1.8561002591115965 -528,5.0,27.0,-4.362844058012917,15.463571542897856 -528,6.0,4.0,-2.954020035961983,7.449267916773697 -528,6.0,5.0,-3.590210423980992,11.02611441072814 -528,6.0,6.0,6.544230459942975,-18.45668232750184 -528,7.0,5.0,-6.289308176100628,22.0125786163522 -528,7.0,7.0,7.733287237496075,-26.527493274828448 -528,7.0,27.0,-1.4439790613954469,4.540814658476248 -528,8.0,5.0,0.0,4.915840805411357 -528,8.0,8.0,0.0,-18.706293706293707 -528,8.0,9.0,0.0,9.090909090909092 -528,8.0,10.0,0.0,4.807692307692308 -528,9.0,5.0,0.0,1.8561002591115965 -528,9.0,8.0,0.0,9.090909090909092 -528,9.0,9.0,13.462042814524237,-41.3837606675224 -528,9.0,16.0,-3.956039125715353,10.317447719844054 -528,9.0,19.0,-1.7848303152666305,3.98535828943083 -528,9.0,20.0,-5.101853820159654,10.98071411292983 -528,9.0,21.0,-2.619319553382597,5.400770303329455 -528,10.0,8.0,0.0,4.807692307692308 -528,10.0,10.0,0.0,-4.807692307692308 -528,11.0,3.0,0.0,4.191255364806866 -528,11.0,11.0,6.573961583776156,-24.424167659260668 -528,11.0,12.0,0.0,7.142857142857143 -528,11.0,13.0,-1.5265676088395577,3.1734252729654173 -528,11.0,14.0,-3.0953961826564296,6.097275864326261 -528,11.0,15.0,-1.9519977922801688,4.104359379111847 -528,12.0,11.0,0.0,7.142857142857143 -528,12.0,12.0,0.0,-7.142857142857143 -528,13.0,11.0,-1.5265676088395577,3.1734252729654173 -528,13.0,13.0,4.01751987283902,-5.424299332335067 -528,13.0,14.0,-2.4909522639994623,2.250874059369649 -528,14.0,11.0,-3.0953961826564296,6.097275864326261 -528,14.0,13.0,-2.4909522639994623,2.250874059369649 -528,14.0,14.0,9.365498545964757,-16.01163373210796 -528,14.0,17.0,-1.8108011504072024,3.687418931630696 -528,14.0,22.0,-1.9683489489016612,3.976064876781356 -528,15.0,11.0,-1.9519977922801688,4.104359379111847 -528,15.0,15.0,3.271064728633931,-8.94513365126506 -528,15.0,16.0,-1.3190669363537617,4.8407742721532125 -528,16.0,9.0,-3.956039125715353,10.317447719844054 -528,16.0,15.0,-1.3190669363537617,4.8407742721532125 -528,16.0,16.0,5.275106062069114,-15.158221991997266 -528,17.0,14.0,-1.8108011504072024,3.687418931630696 -528,17.0,17.0,4.886487584415919,-9.906177730909668 -528,17.0,18.0,-3.0756864340087167,6.218758799278971 -528,18.0,17.0,-3.0756864340087167,6.218758799278971 -528,18.0,18.0,8.958039375185187,-17.98346468163191 -528,18.0,19.0,-5.88235294117647,11.76470588235294 -528,19.0,9.0,-1.7848303152666305,3.98535828943083 -528,19.0,18.0,-5.88235294117647,11.76470588235294 -528,19.0,19.0,7.6671832564431,-15.75006417178377 -528,20.0,9.0,-5.101853820159654,10.98071411292983 -528,20.0,20.0,21.876495189895888,-45.10843276170355 -528,20.0,21.0,-16.774641369736234,34.127718648773715 -528,21.0,9.0,-2.619319553382597,5.400770303329455 -528,21.0,20.0,-16.774641369736234,34.127718648773715 -528,21.0,21.0,21.93449907537439,-43.48289181517921 -528,21.0,23.0,-2.5405381522555563,3.95440286307604 -528,22.0,14.0,-1.9683489489016612,3.976064876781356 -528,22.0,22.0,3.429754555384988,-6.965303617315433 -528,22.0,23.0,-1.4614056064833263,2.989238740534077 -528,23.0,21.0,-2.5405381522555563,3.95440286307604 -528,23.0,22.0,-1.4614056064833263,2.989238740534077 -528,23.0,23.0,5.311836702613133,-9.188263657315172 -528,23.0,24.0,-1.3098929438742493,2.287622053705056 -528,24.0,23.0,-1.3098929438742493,2.287622053705056 -528,24.0,24.0,4.495715080321987,-7.864978761969621 -528,24.0,25.0,-1.2165301194494855,1.8171440463475024 -528,24.0,26.0,-1.9692920169982515,3.760212661917064 -528,25.0,24.0,-1.2165301194494855,1.8171440463475024 -528,25.0,25.0,1.2165301194494855,-1.8171440463475024 -528,26.0,24.0,-1.9692920169982515,3.760212661917064 -528,26.0,26.0,3.652281470778589,-9.46044252232512 -528,26.0,27.0,0.0,2.608731947574922 -528,26.0,28.0,-0.99553355095268,1.881005840357816 -528,26.0,29.0,-0.6874559028276572,1.293971494797717 -528,27.0,5.0,-4.362844058012917,15.463571542897856 -528,27.0,7.0,-1.4439790613954469,4.540814658476248 -528,27.0,26.0,0.0,2.608731947574922 -528,27.0,27.0,5.806823119408364,-22.67145722159613 -528,28.0,26.0,-0.99553355095268,1.881005840357816 -528,28.0,28.0,1.9075867579849564,-3.604364401207048 -528,28.0,29.0,-0.9120532070322764,1.7233585608492326 -528,29.0,26.0,-0.6874559028276572,1.293971494797717 -528,29.0,28.0,-0.9120532070322764,1.7233585608492326 -528,29.0,29.0,1.5995091098599337,-3.0173300556469496 -529,0.0,0.0,5.224646179885656,-15.620326840803395 -529,0.0,1.0,-5.224646179885656,15.646726840803398 -529,1.0,0.0,-5.224646179885656,15.646726840803398 -529,1.0,1.0,9.75228216552403,-30.648662892676068 -529,1.0,3.0,-1.7055303166990268,5.1973792282565086 -529,1.0,4.0,-1.1359607881738778,4.772479328281356 -529,1.0,5.0,-1.6861448807654689,5.116477495334806 -529,2.0,2.0,8.19544904231211,-23.5266726290628 -529,2.0,3.0,-8.19544904231211,23.5308726290628 -529,3.0,1.0,-1.7055303166990268,5.1973792282565086 -529,3.0,2.0,-8.19544904231211,23.5308726290628 -529,3.0,3.0,16.314103089185693,-55.509410535254254 -529,3.0,5.0,-6.413123730174556,22.31120356548123 -529,3.0,11.0,0.0,4.191255364806866 -529,4.0,1.0,-1.1359607881738778,4.772479328281356 -529,4.0,4.0,4.089980824135861,-12.190647245055052 -529,4.0,6.0,-2.954020035961983,7.449267916773697 -529,5.0,1.0,-1.6861448807654689,5.116477495334806 -529,5.0,3.0,-6.413123730174556,22.31120356548123 -529,5.0,5.0,22.341631269034565,-82.8291478657789 -529,5.0,6.0,-3.590210423980992,11.02611441072814 -529,5.0,7.0,-6.289308176100628,22.0125786163522 -529,5.0,8.0,0.0,4.915840805411357 -529,5.0,9.0,0.0,1.8561002591115965 -529,5.0,27.0,-4.362844058012917,15.463571542897856 -529,6.0,4.0,-2.954020035961983,7.449267916773697 -529,6.0,5.0,-3.590210423980992,11.02611441072814 -529,6.0,6.0,6.544230459942975,-18.45668232750184 -529,7.0,5.0,-6.289308176100628,22.0125786163522 -529,7.0,7.0,7.733287237496075,-26.527493274828448 -529,7.0,27.0,-1.4439790613954469,4.540814658476248 -529,8.0,5.0,0.0,4.915840805411357 -529,8.0,8.0,0.0,-9.615384615384617 -529,8.0,10.0,0.0,4.807692307692308 -529,9.0,5.0,0.0,1.8561002591115965 -529,9.0,9.0,10.842723261141638,-26.89208127328385 -529,9.0,16.0,-3.956039125715353,10.317447719844054 -529,9.0,19.0,-1.7848303152666305,3.98535828943083 -529,9.0,20.0,-5.101853820159654,10.98071411292983 -529,10.0,8.0,0.0,4.807692307692308 -529,10.0,10.0,0.0,-4.807692307692308 -529,11.0,3.0,0.0,4.191255364806866 -529,11.0,11.0,3.478565401119727,-18.326891794934408 -529,11.0,12.0,0.0,7.142857142857143 -529,11.0,13.0,-1.5265676088395577,3.1734252729654173 -529,11.0,15.0,-1.9519977922801688,4.104359379111847 -529,12.0,11.0,0.0,7.142857142857143 -529,12.0,12.0,0.0,-7.142857142857143 -529,13.0,11.0,-1.5265676088395577,3.1734252729654173 -529,13.0,13.0,4.01751987283902,-5.424299332335067 -529,13.0,14.0,-2.4909522639994623,2.250874059369649 -529,14.0,13.0,-2.4909522639994623,2.250874059369649 -529,14.0,14.0,6.270102363308326,-9.9143578677817 -529,14.0,17.0,-1.8108011504072024,3.687418931630696 -529,14.0,22.0,-1.9683489489016612,3.976064876781356 -529,15.0,11.0,-1.9519977922801688,4.104359379111847 -529,15.0,15.0,3.271064728633931,-8.94513365126506 -529,15.0,16.0,-1.3190669363537617,4.8407742721532125 -529,16.0,9.0,-3.956039125715353,10.317447719844054 -529,16.0,15.0,-1.3190669363537617,4.8407742721532125 -529,16.0,16.0,5.275106062069114,-15.158221991997266 -529,17.0,14.0,-1.8108011504072024,3.687418931630696 -529,17.0,17.0,4.886487584415919,-9.906177730909668 -529,17.0,18.0,-3.0756864340087167,6.218758799278971 -529,18.0,17.0,-3.0756864340087167,6.218758799278971 -529,18.0,18.0,8.958039375185187,-17.98346468163191 -529,18.0,19.0,-5.88235294117647,11.76470588235294 -529,19.0,9.0,-1.7848303152666305,3.98535828943083 -529,19.0,18.0,-5.88235294117647,11.76470588235294 -529,19.0,19.0,7.6671832564431,-15.75006417178377 -529,20.0,9.0,-5.101853820159654,10.98071411292983 -529,20.0,20.0,21.876495189895888,-45.10843276170355 -529,20.0,21.0,-16.774641369736234,34.127718648773715 -529,21.0,20.0,-16.774641369736234,34.127718648773715 -529,21.0,21.0,19.31517952199179,-38.08212151184976 -529,21.0,23.0,-2.5405381522555563,3.95440286307604 -529,22.0,14.0,-1.9683489489016612,3.976064876781356 -529,22.0,22.0,3.429754555384988,-6.965303617315433 -529,22.0,23.0,-1.4614056064833263,2.989238740534077 -529,23.0,21.0,-2.5405381522555563,3.95440286307604 -529,23.0,22.0,-1.4614056064833263,2.989238740534077 -529,23.0,23.0,5.311836702613133,-9.188263657315172 -529,23.0,24.0,-1.3098929438742493,2.287622053705056 -529,24.0,23.0,-1.3098929438742493,2.287622053705056 -529,24.0,24.0,4.495715080321987,-7.864978761969621 -529,24.0,25.0,-1.2165301194494855,1.8171440463475024 -529,24.0,26.0,-1.9692920169982515,3.760212661917064 -529,25.0,24.0,-1.2165301194494855,1.8171440463475024 -529,25.0,25.0,1.2165301194494855,-1.8171440463475024 -529,26.0,24.0,-1.9692920169982515,3.760212661917064 -529,26.0,26.0,3.652281470778589,-9.46044252232512 -529,26.0,27.0,0.0,2.608731947574922 -529,26.0,28.0,-0.99553355095268,1.881005840357816 -529,26.0,29.0,-0.6874559028276572,1.293971494797717 -529,27.0,5.0,-4.362844058012917,15.463571542897856 -529,27.0,7.0,-1.4439790613954469,4.540814658476248 -529,27.0,26.0,0.0,2.608731947574922 -529,27.0,27.0,5.806823119408364,-22.67145722159613 -529,28.0,26.0,-0.99553355095268,1.881005840357816 -529,28.0,28.0,1.9075867579849564,-3.604364401207048 -529,28.0,29.0,-0.9120532070322764,1.7233585608492326 -529,29.0,26.0,-0.6874559028276572,1.293971494797717 -529,29.0,28.0,-0.9120532070322764,1.7233585608492326 -529,29.0,29.0,1.5995091098599337,-3.0173300556469496 -530,0.0,0.0,5.224646179885656,-15.620326840803395 -530,0.0,1.0,-5.224646179885656,15.646726840803398 -530,1.0,0.0,-5.224646179885656,15.646726840803398 -530,1.0,1.0,9.75228216552403,-30.648662892676068 -530,1.0,3.0,-1.7055303166990268,5.1973792282565086 -530,1.0,4.0,-1.1359607881738778,4.772479328281356 -530,1.0,5.0,-1.6861448807654689,5.116477495334806 -530,2.0,2.0,8.19544904231211,-23.5266726290628 -530,2.0,3.0,-8.19544904231211,23.5308726290628 -530,3.0,1.0,-1.7055303166990268,5.1973792282565086 -530,3.0,2.0,-8.19544904231211,23.5308726290628 -530,3.0,3.0,16.314103089185693,-55.509410535254254 -530,3.0,5.0,-6.413123730174556,22.31120356548123 -530,3.0,11.0,0.0,4.191255364806866 -530,4.0,1.0,-1.1359607881738778,4.772479328281356 -530,4.0,4.0,4.089980824135861,-12.190647245055052 -530,4.0,6.0,-2.954020035961983,7.449267916773697 -530,5.0,1.0,-1.6861448807654689,5.116477495334806 -530,5.0,3.0,-6.413123730174556,22.31120356548123 -530,5.0,5.0,22.341631269034565,-82.8291478657789 -530,5.0,6.0,-3.590210423980992,11.02611441072814 -530,5.0,7.0,-6.289308176100628,22.0125786163522 -530,5.0,8.0,0.0,4.915840805411357 -530,5.0,9.0,0.0,1.8561002591115965 -530,5.0,27.0,-4.362844058012917,15.463571542897856 -530,6.0,4.0,-2.954020035961983,7.449267916773697 -530,6.0,5.0,-3.590210423980992,11.02611441072814 -530,6.0,6.0,6.544230459942975,-18.45668232750184 -530,7.0,5.0,-6.289308176100628,22.0125786163522 -530,7.0,7.0,7.733287237496075,-26.527493274828448 -530,7.0,27.0,-1.4439790613954469,4.540814658476248 -530,8.0,5.0,0.0,4.915840805411357 -530,8.0,8.0,0.0,-18.706293706293707 -530,8.0,9.0,0.0,9.090909090909092 -530,8.0,10.0,0.0,4.807692307692308 -530,9.0,5.0,0.0,1.8561002591115965 -530,9.0,8.0,0.0,9.090909090909092 -530,9.0,9.0,4.404149868649228,-20.085598834748517 -530,9.0,19.0,-1.7848303152666305,3.98535828943083 -530,9.0,21.0,-2.619319553382597,5.400770303329455 -530,10.0,8.0,0.0,4.807692307692308 -530,10.0,10.0,0.0,-4.807692307692308 -530,11.0,3.0,0.0,4.191255364806866 -530,11.0,11.0,6.573961583776156,-24.424167659260668 -530,11.0,12.0,0.0,7.142857142857143 -530,11.0,13.0,-1.5265676088395577,3.1734252729654173 -530,11.0,14.0,-3.0953961826564296,6.097275864326261 -530,11.0,15.0,-1.9519977922801688,4.104359379111847 -530,12.0,11.0,0.0,7.142857142857143 -530,12.0,12.0,0.0,-7.142857142857143 -530,13.0,11.0,-1.5265676088395577,3.1734252729654173 -530,13.0,13.0,4.01751987283902,-5.424299332335067 -530,13.0,14.0,-2.4909522639994623,2.250874059369649 -530,14.0,11.0,-3.0953961826564296,6.097275864326261 -530,14.0,13.0,-2.4909522639994623,2.250874059369649 -530,14.0,14.0,9.365498545964757,-16.01163373210796 -530,14.0,17.0,-1.8108011504072024,3.687418931630696 -530,14.0,22.0,-1.9683489489016612,3.976064876781356 -530,15.0,11.0,-1.9519977922801688,4.104359379111847 -530,15.0,15.0,3.271064728633931,-8.94513365126506 -530,15.0,16.0,-1.3190669363537617,4.8407742721532125 -530,16.0,15.0,-1.3190669363537617,4.8407742721532125 -530,16.0,16.0,1.3190669363537617,-4.8407742721532125 -530,17.0,14.0,-1.8108011504072024,3.687418931630696 -530,17.0,17.0,4.886487584415919,-9.906177730909668 -530,17.0,18.0,-3.0756864340087167,6.218758799278971 -530,18.0,17.0,-3.0756864340087167,6.218758799278971 -530,18.0,18.0,8.958039375185187,-17.98346468163191 -530,18.0,19.0,-5.88235294117647,11.76470588235294 -530,19.0,9.0,-1.7848303152666305,3.98535828943083 -530,19.0,18.0,-5.88235294117647,11.76470588235294 -530,19.0,19.0,7.6671832564431,-15.75006417178377 -530,20.0,20.0,16.774641369736234,-34.127718648773715 -530,20.0,21.0,-16.774641369736234,34.127718648773715 -530,21.0,9.0,-2.619319553382597,5.400770303329455 -530,21.0,20.0,-16.774641369736234,34.127718648773715 -530,21.0,21.0,21.93449907537439,-43.48289181517921 -530,21.0,23.0,-2.5405381522555563,3.95440286307604 -530,22.0,14.0,-1.9683489489016612,3.976064876781356 -530,22.0,22.0,3.429754555384988,-6.965303617315433 -530,22.0,23.0,-1.4614056064833263,2.989238740534077 -530,23.0,21.0,-2.5405381522555563,3.95440286307604 -530,23.0,22.0,-1.4614056064833263,2.989238740534077 -530,23.0,23.0,5.311836702613133,-9.188263657315172 -530,23.0,24.0,-1.3098929438742493,2.287622053705056 -530,24.0,23.0,-1.3098929438742493,2.287622053705056 -530,24.0,24.0,4.495715080321987,-7.864978761969621 -530,24.0,25.0,-1.2165301194494855,1.8171440463475024 -530,24.0,26.0,-1.9692920169982515,3.760212661917064 -530,25.0,24.0,-1.2165301194494855,1.8171440463475024 -530,25.0,25.0,1.2165301194494855,-1.8171440463475024 -530,26.0,24.0,-1.9692920169982515,3.760212661917064 -530,26.0,26.0,3.652281470778589,-9.46044252232512 -530,26.0,27.0,0.0,2.608731947574922 -530,26.0,28.0,-0.99553355095268,1.881005840357816 -530,26.0,29.0,-0.6874559028276572,1.293971494797717 -530,27.0,5.0,-4.362844058012917,15.463571542897856 -530,27.0,7.0,-1.4439790613954469,4.540814658476248 -530,27.0,26.0,0.0,2.608731947574922 -530,27.0,27.0,5.806823119408364,-22.67145722159613 -530,28.0,26.0,-0.99553355095268,1.881005840357816 -530,28.0,28.0,1.9075867579849564,-3.604364401207048 -530,28.0,29.0,-0.9120532070322764,1.7233585608492326 -530,29.0,26.0,-0.6874559028276572,1.293971494797717 -530,29.0,28.0,-0.9120532070322764,1.7233585608492326 -530,29.0,29.0,1.5995091098599337,-3.0173300556469496 -531,0.0,0.0,6.765516048652632,-21.23160167089863 -531,0.0,1.0,-5.224646179885656,15.646726840803398 -531,0.0,2.0,-1.5408698687669766,5.631674830095234 -531,1.0,0.0,-5.224646179885656,15.646726840803398 -531,1.0,1.0,9.75228216552403,-30.648662892676068 -531,1.0,3.0,-1.7055303166990268,5.1973792282565086 -531,1.0,4.0,-1.1359607881738778,4.772479328281356 -531,1.0,5.0,-1.6861448807654689,5.116477495334806 -531,2.0,0.0,-1.5408698687669766,5.631674830095234 -531,2.0,2.0,9.736318911079088,-29.13794745915803 -531,2.0,3.0,-8.19544904231211,23.5308726290628 -531,3.0,1.0,-1.7055303166990268,5.1973792282565086 -531,3.0,2.0,-8.19544904231211,23.5308726290628 -531,3.0,3.0,16.314103089185693,-55.509410535254254 -531,3.0,5.0,-6.413123730174556,22.31120356548123 -531,3.0,11.0,0.0,4.191255364806866 -531,4.0,1.0,-1.1359607881738778,4.772479328281356 -531,4.0,4.0,4.089980824135861,-12.190647245055052 -531,4.0,6.0,-2.954020035961983,7.449267916773697 -531,5.0,1.0,-1.6861448807654689,5.116477495334806 -531,5.0,3.0,-6.413123730174556,22.31120356548123 -531,5.0,5.0,22.341631269034565,-82.8291478657789 -531,5.0,6.0,-3.590210423980992,11.02611441072814 -531,5.0,7.0,-6.289308176100628,22.0125786163522 -531,5.0,8.0,0.0,4.915840805411357 -531,5.0,9.0,0.0,1.8561002591115965 -531,5.0,27.0,-4.362844058012917,15.463571542897856 -531,6.0,4.0,-2.954020035961983,7.449267916773697 -531,6.0,5.0,-3.590210423980992,11.02611441072814 -531,6.0,6.0,6.544230459942975,-18.45668232750184 -531,7.0,5.0,-6.289308176100628,22.0125786163522 -531,7.0,7.0,7.733287237496075,-26.527493274828448 -531,7.0,27.0,-1.4439790613954469,4.540814658476248 -531,8.0,5.0,0.0,4.915840805411357 -531,8.0,8.0,0.0,-18.706293706293707 -531,8.0,9.0,0.0,9.090909090909092 -531,8.0,10.0,0.0,4.807692307692308 -531,9.0,5.0,0.0,1.8561002591115965 -531,9.0,8.0,0.0,9.090909090909092 -531,9.0,9.0,13.462042814524237,-41.3837606675224 -531,9.0,16.0,-3.956039125715353,10.317447719844054 -531,9.0,19.0,-1.7848303152666305,3.98535828943083 -531,9.0,20.0,-5.101853820159654,10.98071411292983 -531,9.0,21.0,-2.619319553382597,5.400770303329455 -531,10.0,8.0,0.0,4.807692307692308 -531,10.0,10.0,0.0,-4.807692307692308 -531,11.0,3.0,0.0,4.191255364806866 -531,11.0,11.0,6.573961583776156,-24.424167659260668 -531,11.0,12.0,0.0,7.142857142857143 -531,11.0,13.0,-1.5265676088395577,3.1734252729654173 -531,11.0,14.0,-3.0953961826564296,6.097275864326261 -531,11.0,15.0,-1.9519977922801688,4.104359379111847 -531,12.0,11.0,0.0,7.142857142857143 -531,12.0,12.0,0.0,-7.142857142857143 -531,13.0,11.0,-1.5265676088395577,3.1734252729654173 -531,13.0,13.0,4.01751987283902,-5.424299332335067 -531,13.0,14.0,-2.4909522639994623,2.250874059369649 -531,14.0,11.0,-3.0953961826564296,6.097275864326261 -531,14.0,13.0,-2.4909522639994623,2.250874059369649 -531,14.0,14.0,9.365498545964757,-16.01163373210796 -531,14.0,17.0,-1.8108011504072024,3.687418931630696 -531,14.0,22.0,-1.9683489489016612,3.976064876781356 -531,15.0,11.0,-1.9519977922801688,4.104359379111847 -531,15.0,15.0,3.271064728633931,-8.94513365126506 -531,15.0,16.0,-1.3190669363537617,4.8407742721532125 -531,16.0,9.0,-3.956039125715353,10.317447719844054 -531,16.0,15.0,-1.3190669363537617,4.8407742721532125 -531,16.0,16.0,5.275106062069114,-15.158221991997266 -531,17.0,14.0,-1.8108011504072024,3.687418931630696 -531,17.0,17.0,4.886487584415919,-9.906177730909668 -531,17.0,18.0,-3.0756864340087167,6.218758799278971 -531,18.0,17.0,-3.0756864340087167,6.218758799278971 -531,18.0,18.0,8.958039375185187,-17.98346468163191 -531,18.0,19.0,-5.88235294117647,11.76470588235294 -531,19.0,9.0,-1.7848303152666305,3.98535828943083 -531,19.0,18.0,-5.88235294117647,11.76470588235294 -531,19.0,19.0,7.6671832564431,-15.75006417178377 -531,20.0,9.0,-5.101853820159654,10.98071411292983 -531,20.0,20.0,21.876495189895888,-45.10843276170355 -531,20.0,21.0,-16.774641369736234,34.127718648773715 -531,21.0,9.0,-2.619319553382597,5.400770303329455 -531,21.0,20.0,-16.774641369736234,34.127718648773715 -531,21.0,21.0,21.93449907537439,-43.48289181517921 -531,21.0,23.0,-2.5405381522555563,3.95440286307604 -531,22.0,14.0,-1.9683489489016612,3.976064876781356 -531,22.0,22.0,3.429754555384988,-6.965303617315433 -531,22.0,23.0,-1.4614056064833263,2.989238740534077 -531,23.0,21.0,-2.5405381522555563,3.95440286307604 -531,23.0,22.0,-1.4614056064833263,2.989238740534077 -531,23.0,23.0,4.001943758738883,-6.900641603610116 -531,24.0,24.0,3.185822136447737,-5.577356708264566 -531,24.0,25.0,-1.2165301194494855,1.8171440463475024 -531,24.0,26.0,-1.9692920169982515,3.760212661917064 -531,25.0,24.0,-1.2165301194494855,1.8171440463475024 -531,25.0,25.0,1.2165301194494855,-1.8171440463475024 -531,26.0,24.0,-1.9692920169982515,3.760212661917064 -531,26.0,26.0,3.652281470778589,-9.46044252232512 -531,26.0,27.0,0.0,2.608731947574922 -531,26.0,28.0,-0.99553355095268,1.881005840357816 -531,26.0,29.0,-0.6874559028276572,1.293971494797717 -531,27.0,5.0,-4.362844058012917,15.463571542897856 -531,27.0,7.0,-1.4439790613954469,4.540814658476248 -531,27.0,26.0,0.0,2.608731947574922 -531,27.0,27.0,5.806823119408364,-22.67145722159613 -531,28.0,26.0,-0.99553355095268,1.881005840357816 -531,28.0,28.0,1.9075867579849564,-3.604364401207048 -531,28.0,29.0,-0.9120532070322764,1.7233585608492326 -531,29.0,26.0,-0.6874559028276572,1.293971494797717 -531,29.0,28.0,-0.9120532070322764,1.7233585608492326 -531,29.0,29.0,1.5995091098599337,-3.0173300556469496 -532,0.0,0.0,6.765516048652632,-21.23160167089863 -532,0.0,1.0,-5.224646179885656,15.646726840803398 -532,0.0,2.0,-1.5408698687669766,5.631674830095234 -532,1.0,0.0,-5.224646179885656,15.646726840803398 -532,1.0,1.0,9.75228216552403,-30.648662892676068 -532,1.0,3.0,-1.7055303166990268,5.1973792282565086 -532,1.0,4.0,-1.1359607881738778,4.772479328281356 -532,1.0,5.0,-1.6861448807654689,5.116477495334806 -532,2.0,0.0,-1.5408698687669766,5.631674830095234 -532,2.0,2.0,9.736318911079088,-29.13794745915803 -532,2.0,3.0,-8.19544904231211,23.5308726290628 -532,3.0,1.0,-1.7055303166990268,5.1973792282565086 -532,3.0,2.0,-8.19544904231211,23.5308726290628 -532,3.0,3.0,16.314103089185693,-55.509410535254254 -532,3.0,5.0,-6.413123730174556,22.31120356548123 -532,3.0,11.0,0.0,4.191255364806866 -532,4.0,1.0,-1.1359607881738778,4.772479328281356 -532,4.0,4.0,4.089980824135861,-12.190647245055052 -532,4.0,6.0,-2.954020035961983,7.449267916773697 -532,5.0,1.0,-1.6861448807654689,5.116477495334806 -532,5.0,3.0,-6.413123730174556,22.31120356548123 -532,5.0,5.0,22.341631269034565,-82.8291478657789 -532,5.0,6.0,-3.590210423980992,11.02611441072814 -532,5.0,7.0,-6.289308176100628,22.0125786163522 -532,5.0,8.0,0.0,4.915840805411357 -532,5.0,9.0,0.0,1.8561002591115965 -532,5.0,27.0,-4.362844058012917,15.463571542897856 -532,6.0,4.0,-2.954020035961983,7.449267916773697 -532,6.0,5.0,-3.590210423980992,11.02611441072814 -532,6.0,6.0,6.544230459942975,-18.45668232750184 -532,7.0,5.0,-6.289308176100628,22.0125786163522 -532,7.0,7.0,7.733287237496075,-26.527493274828448 -532,7.0,27.0,-1.4439790613954469,4.540814658476248 -532,8.0,5.0,0.0,4.915840805411357 -532,8.0,8.0,0.0,-18.706293706293707 -532,8.0,9.0,0.0,9.090909090909092 -532,8.0,10.0,0.0,4.807692307692308 -532,9.0,5.0,0.0,1.8561002591115965 -532,9.0,8.0,0.0,9.090909090909092 -532,9.0,9.0,13.462042814524237,-41.3837606675224 -532,9.0,16.0,-3.956039125715353,10.317447719844054 -532,9.0,19.0,-1.7848303152666305,3.98535828943083 -532,9.0,20.0,-5.101853820159654,10.98071411292983 -532,9.0,21.0,-2.619319553382597,5.400770303329455 -532,10.0,8.0,0.0,4.807692307692308 -532,10.0,10.0,0.0,-4.807692307692308 -532,11.0,3.0,0.0,4.191255364806866 -532,11.0,11.0,6.573961583776156,-24.424167659260668 -532,11.0,12.0,0.0,7.142857142857143 -532,11.0,13.0,-1.5265676088395577,3.1734252729654173 -532,11.0,14.0,-3.0953961826564296,6.097275864326261 -532,11.0,15.0,-1.9519977922801688,4.104359379111847 -532,12.0,11.0,0.0,7.142857142857143 -532,12.0,12.0,0.0,-7.142857142857143 -532,13.0,11.0,-1.5265676088395577,3.1734252729654173 -532,13.0,13.0,4.01751987283902,-5.424299332335067 -532,13.0,14.0,-2.4909522639994623,2.250874059369649 -532,14.0,11.0,-3.0953961826564296,6.097275864326261 -532,14.0,13.0,-2.4909522639994623,2.250874059369649 -532,14.0,14.0,9.365498545964757,-16.01163373210796 -532,14.0,17.0,-1.8108011504072024,3.687418931630696 -532,14.0,22.0,-1.9683489489016612,3.976064876781356 -532,15.0,11.0,-1.9519977922801688,4.104359379111847 -532,15.0,15.0,3.271064728633931,-8.94513365126506 -532,15.0,16.0,-1.3190669363537617,4.8407742721532125 -532,16.0,9.0,-3.956039125715353,10.317447719844054 -532,16.0,15.0,-1.3190669363537617,4.8407742721532125 -532,16.0,16.0,5.275106062069114,-15.158221991997266 -532,17.0,14.0,-1.8108011504072024,3.687418931630696 -532,17.0,17.0,4.886487584415919,-9.906177730909668 -532,17.0,18.0,-3.0756864340087167,6.218758799278971 -532,18.0,17.0,-3.0756864340087167,6.218758799278971 -532,18.0,18.0,8.958039375185187,-17.98346468163191 -532,18.0,19.0,-5.88235294117647,11.76470588235294 -532,19.0,9.0,-1.7848303152666305,3.98535828943083 -532,19.0,18.0,-5.88235294117647,11.76470588235294 -532,19.0,19.0,7.6671832564431,-15.75006417178377 -532,20.0,9.0,-5.101853820159654,10.98071411292983 -532,20.0,20.0,21.876495189895888,-45.10843276170355 -532,20.0,21.0,-16.774641369736234,34.127718648773715 -532,21.0,9.0,-2.619319553382597,5.400770303329455 -532,21.0,20.0,-16.774641369736234,34.127718648773715 -532,21.0,21.0,21.93449907537439,-43.48289181517921 -532,21.0,23.0,-2.5405381522555563,3.95440286307604 -532,22.0,14.0,-1.9683489489016612,3.976064876781356 -532,22.0,22.0,3.429754555384988,-6.965303617315433 -532,22.0,23.0,-1.4614056064833263,2.989238740534077 -532,23.0,21.0,-2.5405381522555563,3.95440286307604 -532,23.0,22.0,-1.4614056064833263,2.989238740534077 -532,23.0,23.0,5.311836702613133,-9.188263657315172 -532,23.0,24.0,-1.3098929438742493,2.287622053705056 -532,24.0,23.0,-1.3098929438742493,2.287622053705056 -532,24.0,24.0,4.495715080321987,-7.864978761969621 -532,24.0,25.0,-1.2165301194494855,1.8171440463475024 -532,24.0,26.0,-1.9692920169982515,3.760212661917064 -532,25.0,24.0,-1.2165301194494855,1.8171440463475024 -532,25.0,25.0,1.2165301194494855,-1.8171440463475024 -532,26.0,24.0,-1.9692920169982515,3.760212661917064 -532,26.0,26.0,2.656747919825909,-7.579436681967305 -532,26.0,27.0,0.0,2.608731947574922 -532,26.0,29.0,-0.6874559028276572,1.293971494797717 -532,27.0,5.0,-4.362844058012917,15.463571542897856 -532,27.0,7.0,-1.4439790613954469,4.540814658476248 -532,27.0,26.0,0.0,2.608731947574922 -532,27.0,27.0,5.806823119408364,-22.67145722159613 -532,28.0,28.0,0.9120532070322764,-1.7233585608492326 -532,28.0,29.0,-0.9120532070322764,1.7233585608492326 -532,29.0,26.0,-0.6874559028276572,1.293971494797717 -532,29.0,28.0,-0.9120532070322764,1.7233585608492326 -532,29.0,29.0,1.5995091098599337,-3.0173300556469496 -533,0.0,0.0,6.765516048652632,-21.23160167089863 -533,0.0,1.0,-5.224646179885656,15.646726840803398 -533,0.0,2.0,-1.5408698687669766,5.631674830095234 -533,1.0,0.0,-5.224646179885656,15.646726840803398 -533,1.0,1.0,8.61632137735015,-25.897083564394716 -533,1.0,3.0,-1.7055303166990268,5.1973792282565086 -533,1.0,5.0,-1.6861448807654689,5.116477495334806 -533,2.0,0.0,-1.5408698687669766,5.631674830095234 -533,2.0,2.0,9.736318911079088,-29.13794745915803 -533,2.0,3.0,-8.19544904231211,23.5308726290628 -533,3.0,1.0,-1.7055303166990268,5.1973792282565086 -533,3.0,2.0,-8.19544904231211,23.5308726290628 -533,3.0,3.0,16.314103089185693,-55.509410535254254 -533,3.0,5.0,-6.413123730174556,22.31120356548123 -533,3.0,11.0,0.0,4.191255364806866 -533,4.0,4.0,2.954020035961983,-7.439067916773697 -533,4.0,6.0,-2.954020035961983,7.449267916773697 -533,5.0,1.0,-1.6861448807654689,5.116477495334806 -533,5.0,3.0,-6.413123730174556,22.31120356548123 -533,5.0,5.0,22.341631269034565,-82.8291478657789 -533,5.0,6.0,-3.590210423980992,11.02611441072814 -533,5.0,7.0,-6.289308176100628,22.0125786163522 -533,5.0,8.0,0.0,4.915840805411357 -533,5.0,9.0,0.0,1.8561002591115965 -533,5.0,27.0,-4.362844058012917,15.463571542897856 -533,6.0,4.0,-2.954020035961983,7.449267916773697 -533,6.0,5.0,-3.590210423980992,11.02611441072814 -533,6.0,6.0,6.544230459942975,-18.45668232750184 -533,7.0,5.0,-6.289308176100628,22.0125786163522 -533,7.0,7.0,7.733287237496075,-26.527493274828448 -533,7.0,27.0,-1.4439790613954469,4.540814658476248 -533,8.0,5.0,0.0,4.915840805411357 -533,8.0,8.0,0.0,-18.706293706293707 -533,8.0,9.0,0.0,9.090909090909092 -533,8.0,10.0,0.0,4.807692307692308 -533,9.0,5.0,0.0,1.8561002591115965 -533,9.0,8.0,0.0,9.090909090909092 -533,9.0,9.0,13.462042814524237,-41.3837606675224 -533,9.0,16.0,-3.956039125715353,10.317447719844054 -533,9.0,19.0,-1.7848303152666305,3.98535828943083 -533,9.0,20.0,-5.101853820159654,10.98071411292983 -533,9.0,21.0,-2.619319553382597,5.400770303329455 -533,10.0,8.0,0.0,4.807692307692308 -533,10.0,10.0,0.0,-4.807692307692308 -533,11.0,3.0,0.0,4.191255364806866 -533,11.0,11.0,6.573961583776156,-24.424167659260668 -533,11.0,12.0,0.0,7.142857142857143 -533,11.0,13.0,-1.5265676088395577,3.1734252729654173 -533,11.0,14.0,-3.0953961826564296,6.097275864326261 -533,11.0,15.0,-1.9519977922801688,4.104359379111847 -533,12.0,11.0,0.0,7.142857142857143 -533,12.0,12.0,0.0,-7.142857142857143 -533,13.0,11.0,-1.5265676088395577,3.1734252729654173 -533,13.0,13.0,1.5265676088395577,-3.1734252729654173 -533,14.0,11.0,-3.0953961826564296,6.097275864326261 -533,14.0,14.0,6.874546281965293,-13.760759672738311 -533,14.0,17.0,-1.8108011504072024,3.687418931630696 -533,14.0,22.0,-1.9683489489016612,3.976064876781356 -533,15.0,11.0,-1.9519977922801688,4.104359379111847 -533,15.0,15.0,3.271064728633931,-8.94513365126506 -533,15.0,16.0,-1.3190669363537617,4.8407742721532125 -533,16.0,9.0,-3.956039125715353,10.317447719844054 -533,16.0,15.0,-1.3190669363537617,4.8407742721532125 -533,16.0,16.0,5.275106062069114,-15.158221991997266 -533,17.0,14.0,-1.8108011504072024,3.687418931630696 -533,17.0,17.0,4.886487584415919,-9.906177730909668 -533,17.0,18.0,-3.0756864340087167,6.218758799278971 -533,18.0,17.0,-3.0756864340087167,6.218758799278971 -533,18.0,18.0,8.958039375185187,-17.98346468163191 -533,18.0,19.0,-5.88235294117647,11.76470588235294 -533,19.0,9.0,-1.7848303152666305,3.98535828943083 -533,19.0,18.0,-5.88235294117647,11.76470588235294 -533,19.0,19.0,7.6671832564431,-15.75006417178377 -533,20.0,9.0,-5.101853820159654,10.98071411292983 -533,20.0,20.0,21.876495189895888,-45.10843276170355 -533,20.0,21.0,-16.774641369736234,34.127718648773715 -533,21.0,9.0,-2.619319553382597,5.400770303329455 -533,21.0,20.0,-16.774641369736234,34.127718648773715 -533,21.0,21.0,21.93449907537439,-43.48289181517921 -533,21.0,23.0,-2.5405381522555563,3.95440286307604 -533,22.0,14.0,-1.9683489489016612,3.976064876781356 -533,22.0,22.0,3.429754555384988,-6.965303617315433 -533,22.0,23.0,-1.4614056064833263,2.989238740534077 -533,23.0,21.0,-2.5405381522555563,3.95440286307604 -533,23.0,22.0,-1.4614056064833263,2.989238740534077 -533,23.0,23.0,5.311836702613133,-9.188263657315172 -533,23.0,24.0,-1.3098929438742493,2.287622053705056 -533,24.0,23.0,-1.3098929438742493,2.287622053705056 -533,24.0,24.0,4.495715080321987,-7.864978761969621 -533,24.0,25.0,-1.2165301194494855,1.8171440463475024 -533,24.0,26.0,-1.9692920169982515,3.760212661917064 -533,25.0,24.0,-1.2165301194494855,1.8171440463475024 -533,25.0,25.0,1.2165301194494855,-1.8171440463475024 -533,26.0,24.0,-1.9692920169982515,3.760212661917064 -533,26.0,26.0,3.652281470778589,-9.46044252232512 -533,26.0,27.0,0.0,2.608731947574922 -533,26.0,28.0,-0.99553355095268,1.881005840357816 -533,26.0,29.0,-0.6874559028276572,1.293971494797717 -533,27.0,5.0,-4.362844058012917,15.463571542897856 -533,27.0,7.0,-1.4439790613954469,4.540814658476248 -533,27.0,26.0,0.0,2.608731947574922 -533,27.0,27.0,5.806823119408364,-22.67145722159613 -533,28.0,26.0,-0.99553355095268,1.881005840357816 -533,28.0,28.0,1.9075867579849564,-3.604364401207048 -533,28.0,29.0,-0.9120532070322764,1.7233585608492326 -533,29.0,26.0,-0.6874559028276572,1.293971494797717 -533,29.0,28.0,-0.9120532070322764,1.7233585608492326 -533,29.0,29.0,1.5995091098599337,-3.0173300556469496 -534,0.0,0.0,6.765516048652632,-21.23160167089863 -534,0.0,1.0,-5.224646179885656,15.646726840803398 -534,0.0,2.0,-1.5408698687669766,5.631674830095234 -534,1.0,0.0,-5.224646179885656,15.646726840803398 -534,1.0,1.0,9.75228216552403,-30.648662892676068 -534,1.0,3.0,-1.7055303166990268,5.1973792282565086 -534,1.0,4.0,-1.1359607881738778,4.772479328281356 -534,1.0,5.0,-1.6861448807654689,5.116477495334806 -534,2.0,0.0,-1.5408698687669766,5.631674830095234 -534,2.0,2.0,9.736318911079088,-29.13794745915803 -534,2.0,3.0,-8.19544904231211,23.5308726290628 -534,3.0,1.0,-1.7055303166990268,5.1973792282565086 -534,3.0,2.0,-8.19544904231211,23.5308726290628 -534,3.0,3.0,16.314103089185693,-55.509410535254254 -534,3.0,5.0,-6.413123730174556,22.31120356548123 -534,3.0,11.0,0.0,4.191255364806866 -534,4.0,1.0,-1.1359607881738778,4.772479328281356 -534,4.0,4.0,4.089980824135861,-12.190647245055052 -534,4.0,6.0,-2.954020035961983,7.449267916773697 -534,5.0,1.0,-1.6861448807654689,5.116477495334806 -534,5.0,3.0,-6.413123730174556,22.31120356548123 -534,5.0,5.0,22.341631269034565,-82.8291478657789 -534,5.0,6.0,-3.590210423980992,11.02611441072814 -534,5.0,7.0,-6.289308176100628,22.0125786163522 -534,5.0,8.0,0.0,4.915840805411357 -534,5.0,9.0,0.0,1.8561002591115965 -534,5.0,27.0,-4.362844058012917,15.463571542897856 -534,6.0,4.0,-2.954020035961983,7.449267916773697 -534,6.0,5.0,-3.590210423980992,11.02611441072814 -534,6.0,6.0,6.544230459942975,-18.45668232750184 -534,7.0,5.0,-6.289308176100628,22.0125786163522 -534,7.0,7.0,7.733287237496075,-26.527493274828448 -534,7.0,27.0,-1.4439790613954469,4.540814658476248 -534,8.0,5.0,0.0,4.915840805411357 -534,8.0,8.0,0.0,-18.706293706293707 -534,8.0,9.0,0.0,9.090909090909092 -534,8.0,10.0,0.0,4.807692307692308 -534,9.0,5.0,0.0,1.8561002591115965 -534,9.0,8.0,0.0,9.090909090909092 -534,9.0,9.0,13.462042814524237,-41.3837606675224 -534,9.0,16.0,-3.956039125715353,10.317447719844054 -534,9.0,19.0,-1.7848303152666305,3.98535828943083 -534,9.0,20.0,-5.101853820159654,10.98071411292983 -534,9.0,21.0,-2.619319553382597,5.400770303329455 -534,10.0,8.0,0.0,4.807692307692308 -534,10.0,10.0,0.0,-4.807692307692308 -534,11.0,3.0,0.0,4.191255364806866 -534,11.0,11.0,6.573961583776156,-24.424167659260668 -534,11.0,12.0,0.0,7.142857142857143 -534,11.0,13.0,-1.5265676088395577,3.1734252729654173 -534,11.0,14.0,-3.0953961826564296,6.097275864326261 -534,11.0,15.0,-1.9519977922801688,4.104359379111847 -534,12.0,11.0,0.0,7.142857142857143 -534,12.0,12.0,0.0,-7.142857142857143 -534,13.0,11.0,-1.5265676088395577,3.1734252729654173 -534,13.0,13.0,4.01751987283902,-5.424299332335067 -534,13.0,14.0,-2.4909522639994623,2.250874059369649 -534,14.0,11.0,-3.0953961826564296,6.097275864326261 -534,14.0,13.0,-2.4909522639994623,2.250874059369649 -534,14.0,14.0,9.365498545964757,-16.01163373210796 -534,14.0,17.0,-1.8108011504072024,3.687418931630696 -534,14.0,22.0,-1.9683489489016612,3.976064876781356 -534,15.0,11.0,-1.9519977922801688,4.104359379111847 -534,15.0,15.0,3.271064728633931,-8.94513365126506 -534,15.0,16.0,-1.3190669363537617,4.8407742721532125 -534,16.0,9.0,-3.956039125715353,10.317447719844054 -534,16.0,15.0,-1.3190669363537617,4.8407742721532125 -534,16.0,16.0,5.275106062069114,-15.158221991997266 -534,17.0,14.0,-1.8108011504072024,3.687418931630696 -534,17.0,17.0,4.886487584415919,-9.906177730909668 -534,17.0,18.0,-3.0756864340087167,6.218758799278971 -534,18.0,17.0,-3.0756864340087167,6.218758799278971 -534,18.0,18.0,8.958039375185187,-17.98346468163191 -534,18.0,19.0,-5.88235294117647,11.76470588235294 -534,19.0,9.0,-1.7848303152666305,3.98535828943083 -534,19.0,18.0,-5.88235294117647,11.76470588235294 -534,19.0,19.0,7.6671832564431,-15.75006417178377 -534,20.0,9.0,-5.101853820159654,10.98071411292983 -534,20.0,20.0,21.876495189895888,-45.10843276170355 -534,20.0,21.0,-16.774641369736234,34.127718648773715 -534,21.0,9.0,-2.619319553382597,5.400770303329455 -534,21.0,20.0,-16.774641369736234,34.127718648773715 -534,21.0,21.0,21.93449907537439,-43.48289181517921 -534,21.0,23.0,-2.5405381522555563,3.95440286307604 -534,22.0,14.0,-1.9683489489016612,3.976064876781356 -534,22.0,22.0,3.429754555384988,-6.965303617315433 -534,22.0,23.0,-1.4614056064833263,2.989238740534077 -534,23.0,21.0,-2.5405381522555563,3.95440286307604 -534,23.0,22.0,-1.4614056064833263,2.989238740534077 -534,23.0,23.0,5.311836702613133,-9.188263657315172 -534,23.0,24.0,-1.3098929438742493,2.287622053705056 -534,24.0,23.0,-1.3098929438742493,2.287622053705056 -534,24.0,24.0,4.495715080321987,-7.864978761969621 -534,24.0,25.0,-1.2165301194494855,1.8171440463475024 -534,24.0,26.0,-1.9692920169982515,3.760212661917064 -534,25.0,24.0,-1.2165301194494855,1.8171440463475024 -534,25.0,25.0,1.2165301194494855,-1.8171440463475024 -534,26.0,24.0,-1.9692920169982515,3.760212661917064 -534,26.0,26.0,3.652281470778589,-9.46044252232512 -534,26.0,27.0,0.0,2.608731947574922 -534,26.0,28.0,-0.99553355095268,1.881005840357816 -534,26.0,29.0,-0.6874559028276572,1.293971494797717 -534,27.0,5.0,-4.362844058012917,15.463571542897856 -534,27.0,7.0,-1.4439790613954469,4.540814658476248 -534,27.0,26.0,0.0,2.608731947574922 -534,27.0,27.0,5.806823119408364,-22.67145722159613 -534,28.0,26.0,-0.99553355095268,1.881005840357816 -534,28.0,28.0,1.9075867579849564,-3.604364401207048 -534,28.0,29.0,-0.9120532070322764,1.7233585608492326 -534,29.0,26.0,-0.6874559028276572,1.293971494797717 -534,29.0,28.0,-0.9120532070322764,1.7233585608492326 -534,29.0,29.0,1.5995091098599337,-3.0173300556469496 -535,0.0,0.0,6.765516048652632,-21.23160167089863 -535,0.0,1.0,-5.224646179885656,15.646726840803398 -535,0.0,2.0,-1.5408698687669766,5.631674830095234 -535,1.0,0.0,-5.224646179885656,15.646726840803398 -535,1.0,1.0,9.75228216552403,-30.648662892676068 -535,1.0,3.0,-1.7055303166990268,5.1973792282565086 -535,1.0,4.0,-1.1359607881738778,4.772479328281356 -535,1.0,5.0,-1.6861448807654689,5.116477495334806 -535,2.0,0.0,-1.5408698687669766,5.631674830095234 -535,2.0,2.0,9.736318911079088,-29.13794745915803 -535,2.0,3.0,-8.19544904231211,23.5308726290628 -535,3.0,1.0,-1.7055303166990268,5.1973792282565086 -535,3.0,2.0,-8.19544904231211,23.5308726290628 -535,3.0,3.0,9.900979359011137,-33.202706969773025 -535,3.0,11.0,0.0,4.191255364806866 -535,4.0,1.0,-1.1359607881738778,4.772479328281356 -535,4.0,4.0,4.089980824135861,-12.190647245055052 -535,4.0,6.0,-2.954020035961983,7.449267916773697 -535,5.0,1.0,-1.6861448807654689,5.116477495334806 -535,5.0,5.0,12.338297114879014,-49.50482988956954 -535,5.0,7.0,-6.289308176100628,22.0125786163522 -535,5.0,8.0,0.0,4.915840805411357 -535,5.0,9.0,0.0,1.8561002591115965 -535,5.0,27.0,-4.362844058012917,15.463571542897856 -535,6.0,4.0,-2.954020035961983,7.449267916773697 -535,6.0,6.0,2.954020035961983,-7.439067916773697 -535,7.0,5.0,-6.289308176100628,22.0125786163522 -535,7.0,7.0,7.733287237496075,-26.527493274828448 -535,7.0,27.0,-1.4439790613954469,4.540814658476248 -535,8.0,5.0,0.0,4.915840805411357 -535,8.0,8.0,0.0,-18.706293706293707 -535,8.0,9.0,0.0,9.090909090909092 -535,8.0,10.0,0.0,4.807692307692308 -535,9.0,5.0,0.0,1.8561002591115965 -535,9.0,8.0,0.0,9.090909090909092 -535,9.0,9.0,9.506003688808882,-31.06631294767834 -535,9.0,19.0,-1.7848303152666305,3.98535828943083 -535,9.0,20.0,-5.101853820159654,10.98071411292983 -535,9.0,21.0,-2.619319553382597,5.400770303329455 -535,10.0,8.0,0.0,4.807692307692308 -535,10.0,10.0,0.0,-4.807692307692308 -535,11.0,3.0,0.0,4.191255364806866 -535,11.0,11.0,6.573961583776156,-24.424167659260668 -535,11.0,12.0,0.0,7.142857142857143 -535,11.0,13.0,-1.5265676088395577,3.1734252729654173 -535,11.0,14.0,-3.0953961826564296,6.097275864326261 -535,11.0,15.0,-1.9519977922801688,4.104359379111847 -535,12.0,11.0,0.0,7.142857142857143 -535,12.0,12.0,0.0,-7.142857142857143 -535,13.0,11.0,-1.5265676088395577,3.1734252729654173 -535,13.0,13.0,4.01751987283902,-5.424299332335067 -535,13.0,14.0,-2.4909522639994623,2.250874059369649 -535,14.0,11.0,-3.0953961826564296,6.097275864326261 -535,14.0,13.0,-2.4909522639994623,2.250874059369649 -535,14.0,14.0,9.365498545964757,-16.01163373210796 -535,14.0,17.0,-1.8108011504072024,3.687418931630696 -535,14.0,22.0,-1.9683489489016612,3.976064876781356 -535,15.0,11.0,-1.9519977922801688,4.104359379111847 -535,15.0,15.0,3.271064728633931,-8.94513365126506 -535,15.0,16.0,-1.3190669363537617,4.8407742721532125 -535,16.0,15.0,-1.3190669363537617,4.8407742721532125 -535,16.0,16.0,1.3190669363537617,-4.8407742721532125 -535,17.0,14.0,-1.8108011504072024,3.687418931630696 -535,17.0,17.0,1.8108011504072024,-3.687418931630696 -535,18.0,18.0,5.88235294117647,-11.76470588235294 -535,18.0,19.0,-5.88235294117647,11.76470588235294 -535,19.0,9.0,-1.7848303152666305,3.98535828943083 -535,19.0,18.0,-5.88235294117647,11.76470588235294 -535,19.0,19.0,7.6671832564431,-15.75006417178377 -535,20.0,9.0,-5.101853820159654,10.98071411292983 -535,20.0,20.0,21.876495189895888,-45.10843276170355 -535,20.0,21.0,-16.774641369736234,34.127718648773715 -535,21.0,9.0,-2.619319553382597,5.400770303329455 -535,21.0,20.0,-16.774641369736234,34.127718648773715 -535,21.0,21.0,19.393960923118836,-39.52848895210317 -535,22.0,14.0,-1.9683489489016612,3.976064876781356 -535,22.0,22.0,3.429754555384988,-6.965303617315433 -535,22.0,23.0,-1.4614056064833263,2.989238740534077 -535,23.0,22.0,-1.4614056064833263,2.989238740534077 -535,23.0,23.0,2.771298550357576,-5.233860794239132 -535,23.0,24.0,-1.3098929438742493,2.287622053705056 -535,24.0,23.0,-1.3098929438742493,2.287622053705056 -535,24.0,24.0,4.495715080321987,-7.864978761969621 -535,24.0,25.0,-1.2165301194494855,1.8171440463475024 -535,24.0,26.0,-1.9692920169982515,3.760212661917064 -535,25.0,24.0,-1.2165301194494855,1.8171440463475024 -535,25.0,25.0,1.2165301194494855,-1.8171440463475024 -535,26.0,24.0,-1.9692920169982515,3.760212661917064 -535,26.0,26.0,3.652281470778589,-9.46044252232512 -535,26.0,27.0,0.0,2.608731947574922 -535,26.0,28.0,-0.99553355095268,1.881005840357816 -535,26.0,29.0,-0.6874559028276572,1.293971494797717 -535,27.0,5.0,-4.362844058012917,15.463571542897856 -535,27.0,7.0,-1.4439790613954469,4.540814658476248 -535,27.0,26.0,0.0,2.608731947574922 -535,27.0,27.0,5.806823119408364,-22.67145722159613 -535,28.0,26.0,-0.99553355095268,1.881005840357816 -535,28.0,28.0,1.9075867579849564,-3.604364401207048 -535,28.0,29.0,-0.9120532070322764,1.7233585608492326 -535,29.0,26.0,-0.6874559028276572,1.293971494797717 -535,29.0,28.0,-0.9120532070322764,1.7233585608492326 -535,29.0,29.0,1.5995091098599337,-3.0173300556469496 -536,0.0,0.0,6.765516048652632,-21.23160167089863 -536,0.0,1.0,-5.224646179885656,15.646726840803398 -536,0.0,2.0,-1.5408698687669766,5.631674830095234 -536,1.0,0.0,-5.224646179885656,15.646726840803398 -536,1.0,1.0,9.75228216552403,-30.648662892676068 -536,1.0,3.0,-1.7055303166990268,5.1973792282565086 -536,1.0,4.0,-1.1359607881738778,4.772479328281356 -536,1.0,5.0,-1.6861448807654689,5.116477495334806 -536,2.0,0.0,-1.5408698687669766,5.631674830095234 -536,2.0,2.0,9.736318911079088,-29.13794745915803 -536,2.0,3.0,-8.19544904231211,23.5308726290628 -536,3.0,1.0,-1.7055303166990268,5.1973792282565086 -536,3.0,2.0,-8.19544904231211,23.5308726290628 -536,3.0,3.0,9.900979359011137,-33.202706969773025 -536,3.0,11.0,0.0,4.191255364806866 -536,4.0,1.0,-1.1359607881738778,4.772479328281356 -536,4.0,4.0,4.089980824135861,-12.190647245055052 -536,4.0,6.0,-2.954020035961983,7.449267916773697 -536,5.0,1.0,-1.6861448807654689,5.116477495334806 -536,5.0,5.0,15.928507538860009,-60.52244430029767 -536,5.0,6.0,-3.590210423980992,11.02611441072814 -536,5.0,7.0,-6.289308176100628,22.0125786163522 -536,5.0,8.0,0.0,4.915840805411357 -536,5.0,9.0,0.0,1.8561002591115965 -536,5.0,27.0,-4.362844058012917,15.463571542897856 -536,6.0,4.0,-2.954020035961983,7.449267916773697 -536,6.0,5.0,-3.590210423980992,11.02611441072814 -536,6.0,6.0,6.544230459942975,-18.45668232750184 -536,7.0,5.0,-6.289308176100628,22.0125786163522 -536,7.0,7.0,7.733287237496075,-26.527493274828448 -536,7.0,27.0,-1.4439790613954469,4.540814658476248 -536,8.0,5.0,0.0,4.915840805411357 -536,8.0,8.0,0.0,-18.706293706293707 -536,8.0,9.0,0.0,9.090909090909092 -536,8.0,10.0,0.0,4.807692307692308 -536,9.0,5.0,0.0,1.8561002591115965 -536,9.0,8.0,0.0,9.090909090909092 -536,9.0,9.0,11.677212499257603,-37.39840237809157 -536,9.0,16.0,-3.956039125715353,10.317447719844054 -536,9.0,20.0,-5.101853820159654,10.98071411292983 -536,9.0,21.0,-2.619319553382597,5.400770303329455 -536,10.0,8.0,0.0,4.807692307692308 -536,10.0,10.0,0.0,-4.807692307692308 -536,11.0,3.0,0.0,4.191255364806866 -536,11.0,11.0,6.573961583776156,-24.424167659260668 -536,11.0,12.0,0.0,7.142857142857143 -536,11.0,13.0,-1.5265676088395577,3.1734252729654173 -536,11.0,14.0,-3.0953961826564296,6.097275864326261 -536,11.0,15.0,-1.9519977922801688,4.104359379111847 -536,12.0,11.0,0.0,7.142857142857143 -536,12.0,12.0,0.0,-7.142857142857143 -536,13.0,11.0,-1.5265676088395577,3.1734252729654173 -536,13.0,13.0,1.5265676088395577,-3.1734252729654173 -536,14.0,11.0,-3.0953961826564296,6.097275864326261 -536,14.0,14.0,4.906197333063632,-9.784694795956955 -536,14.0,17.0,-1.8108011504072024,3.687418931630696 -536,15.0,11.0,-1.9519977922801688,4.104359379111847 -536,15.0,15.0,3.271064728633931,-8.94513365126506 -536,15.0,16.0,-1.3190669363537617,4.8407742721532125 -536,16.0,9.0,-3.956039125715353,10.317447719844054 -536,16.0,15.0,-1.3190669363537617,4.8407742721532125 -536,16.0,16.0,5.275106062069114,-15.158221991997266 -536,17.0,14.0,-1.8108011504072024,3.687418931630696 -536,17.0,17.0,4.886487584415919,-9.906177730909668 -536,17.0,18.0,-3.0756864340087167,6.218758799278971 -536,18.0,17.0,-3.0756864340087167,6.218758799278971 -536,18.0,18.0,8.958039375185187,-17.98346468163191 -536,18.0,19.0,-5.88235294117647,11.76470588235294 -536,19.0,18.0,-5.88235294117647,11.76470588235294 -536,19.0,19.0,5.88235294117647,-11.76470588235294 -536,20.0,9.0,-5.101853820159654,10.98071411292983 -536,20.0,20.0,21.876495189895888,-45.10843276170355 -536,20.0,21.0,-16.774641369736234,34.127718648773715 -536,21.0,9.0,-2.619319553382597,5.400770303329455 -536,21.0,20.0,-16.774641369736234,34.127718648773715 -536,21.0,21.0,21.93449907537439,-43.48289181517921 -536,21.0,23.0,-2.5405381522555563,3.95440286307604 -536,22.0,22.0,1.4614056064833263,-2.989238740534077 -536,22.0,23.0,-1.4614056064833263,2.989238740534077 -536,23.0,21.0,-2.5405381522555563,3.95440286307604 -536,23.0,22.0,-1.4614056064833263,2.989238740534077 -536,23.0,23.0,5.311836702613133,-9.188263657315172 -536,23.0,24.0,-1.3098929438742493,2.287622053705056 -536,24.0,23.0,-1.3098929438742493,2.287622053705056 -536,24.0,24.0,4.495715080321987,-7.864978761969621 -536,24.0,25.0,-1.2165301194494855,1.8171440463475024 -536,24.0,26.0,-1.9692920169982515,3.760212661917064 -536,25.0,24.0,-1.2165301194494855,1.8171440463475024 -536,25.0,25.0,1.2165301194494855,-1.8171440463475024 -536,26.0,24.0,-1.9692920169982515,3.760212661917064 -536,26.0,26.0,3.652281470778589,-9.46044252232512 -536,26.0,27.0,0.0,2.608731947574922 -536,26.0,28.0,-0.99553355095268,1.881005840357816 -536,26.0,29.0,-0.6874559028276572,1.293971494797717 -536,27.0,5.0,-4.362844058012917,15.463571542897856 -536,27.0,7.0,-1.4439790613954469,4.540814658476248 -536,27.0,26.0,0.0,2.608731947574922 -536,27.0,27.0,5.806823119408364,-22.67145722159613 -536,28.0,26.0,-0.99553355095268,1.881005840357816 -536,28.0,28.0,1.9075867579849564,-3.604364401207048 -536,28.0,29.0,-0.9120532070322764,1.7233585608492326 -536,29.0,26.0,-0.6874559028276572,1.293971494797717 -536,29.0,28.0,-0.9120532070322764,1.7233585608492326 -536,29.0,29.0,1.5995091098599337,-3.0173300556469496 -537,0.0,0.0,6.765516048652632,-21.23160167089863 -537,0.0,1.0,-5.224646179885656,15.646726840803398 -537,0.0,2.0,-1.5408698687669766,5.631674830095234 -537,1.0,0.0,-5.224646179885656,15.646726840803398 -537,1.0,1.0,9.75228216552403,-30.648662892676068 -537,1.0,3.0,-1.7055303166990268,5.1973792282565086 -537,1.0,4.0,-1.1359607881738778,4.772479328281356 -537,1.0,5.0,-1.6861448807654689,5.116477495334806 -537,2.0,0.0,-1.5408698687669766,5.631674830095234 -537,2.0,2.0,9.736318911079088,-29.13794745915803 -537,2.0,3.0,-8.19544904231211,23.5308726290628 -537,3.0,1.0,-1.7055303166990268,5.1973792282565086 -537,3.0,2.0,-8.19544904231211,23.5308726290628 -537,3.0,3.0,9.900979359011137,-33.202706969773025 -537,3.0,11.0,0.0,4.191255364806866 -537,4.0,1.0,-1.1359607881738778,4.772479328281356 -537,4.0,4.0,4.089980824135861,-12.190647245055052 -537,4.0,6.0,-2.954020035961983,7.449267916773697 -537,5.0,1.0,-1.6861448807654689,5.116477495334806 -537,5.0,5.0,12.338297114879014,-49.50482988956954 -537,5.0,7.0,-6.289308176100628,22.0125786163522 -537,5.0,8.0,0.0,4.915840805411357 -537,5.0,9.0,0.0,1.8561002591115965 -537,5.0,27.0,-4.362844058012917,15.463571542897856 -537,6.0,4.0,-2.954020035961983,7.449267916773697 -537,6.0,6.0,2.954020035961983,-7.439067916773697 -537,7.0,5.0,-6.289308176100628,22.0125786163522 -537,7.0,7.0,7.733287237496075,-26.527493274828448 -537,7.0,27.0,-1.4439790613954469,4.540814658476248 -537,8.0,5.0,0.0,4.915840805411357 -537,8.0,8.0,0.0,-18.706293706293707 -537,8.0,9.0,0.0,9.090909090909092 -537,8.0,10.0,0.0,4.807692307692308 -537,9.0,5.0,0.0,1.8561002591115965 -537,9.0,8.0,0.0,9.090909090909092 -537,9.0,9.0,13.462042814524237,-41.3837606675224 -537,9.0,16.0,-3.956039125715353,10.317447719844054 -537,9.0,19.0,-1.7848303152666305,3.98535828943083 -537,9.0,20.0,-5.101853820159654,10.98071411292983 -537,9.0,21.0,-2.619319553382597,5.400770303329455 -537,10.0,8.0,0.0,4.807692307692308 -537,10.0,10.0,0.0,-4.807692307692308 -537,11.0,3.0,0.0,4.191255364806866 -537,11.0,11.0,6.573961583776156,-24.424167659260668 -537,11.0,12.0,0.0,7.142857142857143 -537,11.0,13.0,-1.5265676088395577,3.1734252729654173 -537,11.0,14.0,-3.0953961826564296,6.097275864326261 -537,11.0,15.0,-1.9519977922801688,4.104359379111847 -537,12.0,11.0,0.0,7.142857142857143 -537,12.0,12.0,0.0,-7.142857142857143 -537,13.0,11.0,-1.5265676088395577,3.1734252729654173 -537,13.0,13.0,4.01751987283902,-5.424299332335067 -537,13.0,14.0,-2.4909522639994623,2.250874059369649 -537,14.0,11.0,-3.0953961826564296,6.097275864326261 -537,14.0,13.0,-2.4909522639994623,2.250874059369649 -537,14.0,14.0,9.365498545964757,-16.01163373210796 -537,14.0,17.0,-1.8108011504072024,3.687418931630696 -537,14.0,22.0,-1.9683489489016612,3.976064876781356 -537,15.0,11.0,-1.9519977922801688,4.104359379111847 -537,15.0,15.0,3.271064728633931,-8.94513365126506 -537,15.0,16.0,-1.3190669363537617,4.8407742721532125 -537,16.0,9.0,-3.956039125715353,10.317447719844054 -537,16.0,15.0,-1.3190669363537617,4.8407742721532125 -537,16.0,16.0,5.275106062069114,-15.158221991997266 -537,17.0,14.0,-1.8108011504072024,3.687418931630696 -537,17.0,17.0,4.886487584415919,-9.906177730909668 -537,17.0,18.0,-3.0756864340087167,6.218758799278971 -537,18.0,17.0,-3.0756864340087167,6.218758799278971 -537,18.0,18.0,8.958039375185187,-17.98346468163191 -537,18.0,19.0,-5.88235294117647,11.76470588235294 -537,19.0,9.0,-1.7848303152666305,3.98535828943083 -537,19.0,18.0,-5.88235294117647,11.76470588235294 -537,19.0,19.0,7.6671832564431,-15.75006417178377 -537,20.0,9.0,-5.101853820159654,10.98071411292983 -537,20.0,20.0,21.876495189895888,-45.10843276170355 -537,20.0,21.0,-16.774641369736234,34.127718648773715 -537,21.0,9.0,-2.619319553382597,5.400770303329455 -537,21.0,20.0,-16.774641369736234,34.127718648773715 -537,21.0,21.0,21.93449907537439,-43.48289181517921 -537,21.0,23.0,-2.5405381522555563,3.95440286307604 -537,22.0,14.0,-1.9683489489016612,3.976064876781356 -537,22.0,22.0,3.429754555384988,-6.965303617315433 -537,22.0,23.0,-1.4614056064833263,2.989238740534077 -537,23.0,21.0,-2.5405381522555563,3.95440286307604 -537,23.0,22.0,-1.4614056064833263,2.989238740534077 -537,23.0,23.0,5.311836702613133,-9.188263657315172 -537,23.0,24.0,-1.3098929438742493,2.287622053705056 -537,24.0,23.0,-1.3098929438742493,2.287622053705056 -537,24.0,24.0,4.495715080321987,-7.864978761969621 -537,24.0,25.0,-1.2165301194494855,1.8171440463475024 -537,24.0,26.0,-1.9692920169982515,3.760212661917064 -537,25.0,24.0,-1.2165301194494855,1.8171440463475024 -537,25.0,25.0,1.2165301194494855,-1.8171440463475024 -537,26.0,24.0,-1.9692920169982515,3.760212661917064 -537,26.0,26.0,3.652281470778589,-9.46044252232512 -537,26.0,27.0,0.0,2.608731947574922 -537,26.0,28.0,-0.99553355095268,1.881005840357816 -537,26.0,29.0,-0.6874559028276572,1.293971494797717 -537,27.0,5.0,-4.362844058012917,15.463571542897856 -537,27.0,7.0,-1.4439790613954469,4.540814658476248 -537,27.0,26.0,0.0,2.608731947574922 -537,27.0,27.0,5.806823119408364,-22.67145722159613 -537,28.0,26.0,-0.99553355095268,1.881005840357816 -537,28.0,28.0,1.9075867579849564,-3.604364401207048 -537,28.0,29.0,-0.9120532070322764,1.7233585608492326 -537,29.0,26.0,-0.6874559028276572,1.293971494797717 -537,29.0,28.0,-0.9120532070322764,1.7233585608492326 -537,29.0,29.0,1.5995091098599337,-3.0173300556469496 -538,0.0,0.0,1.5408698687669766,-5.611274830095233 -538,0.0,2.0,-1.5408698687669766,5.631674830095234 -538,1.0,1.0,3.391675197464496,-10.276756723591316 -538,1.0,3.0,-1.7055303166990268,5.1973792282565086 -538,1.0,5.0,-1.6861448807654689,5.116477495334806 -538,2.0,0.0,-1.5408698687669766,5.631674830095234 -538,2.0,2.0,9.736318911079088,-29.13794745915803 -538,2.0,3.0,-8.19544904231211,23.5308726290628 -538,3.0,1.0,-1.7055303166990268,5.1973792282565086 -538,3.0,2.0,-8.19544904231211,23.5308726290628 -538,3.0,3.0,16.314103089185693,-55.509410535254254 -538,3.0,5.0,-6.413123730174556,22.31120356548123 -538,3.0,11.0,0.0,4.191255364806866 -538,4.0,4.0,2.954020035961983,-7.439067916773697 -538,4.0,6.0,-2.954020035961983,7.449267916773697 -538,5.0,1.0,-1.6861448807654689,5.116477495334806 -538,5.0,3.0,-6.413123730174556,22.31120356548123 -538,5.0,5.0,22.341631269034565,-82.8291478657789 -538,5.0,6.0,-3.590210423980992,11.02611441072814 -538,5.0,7.0,-6.289308176100628,22.0125786163522 -538,5.0,8.0,0.0,4.915840805411357 -538,5.0,9.0,0.0,1.8561002591115965 -538,5.0,27.0,-4.362844058012917,15.463571542897856 -538,6.0,4.0,-2.954020035961983,7.449267916773697 -538,6.0,5.0,-3.590210423980992,11.02611441072814 -538,6.0,6.0,6.544230459942975,-18.45668232750184 -538,7.0,5.0,-6.289308176100628,22.0125786163522 -538,7.0,7.0,7.733287237496075,-26.527493274828448 -538,7.0,27.0,-1.4439790613954469,4.540814658476248 -538,8.0,5.0,0.0,4.915840805411357 -538,8.0,8.0,0.0,-18.706293706293707 -538,8.0,9.0,0.0,9.090909090909092 -538,8.0,10.0,0.0,4.807692307692308 -538,9.0,5.0,0.0,1.8561002591115965 -538,9.0,8.0,0.0,9.090909090909092 -538,9.0,9.0,13.462042814524237,-41.3837606675224 -538,9.0,16.0,-3.956039125715353,10.317447719844054 -538,9.0,19.0,-1.7848303152666305,3.98535828943083 -538,9.0,20.0,-5.101853820159654,10.98071411292983 -538,9.0,21.0,-2.619319553382597,5.400770303329455 -538,10.0,8.0,0.0,4.807692307692308 -538,10.0,10.0,0.0,-4.807692307692308 -538,11.0,3.0,0.0,4.191255364806866 -538,11.0,11.0,6.573961583776156,-24.424167659260668 -538,11.0,12.0,0.0,7.142857142857143 -538,11.0,13.0,-1.5265676088395577,3.1734252729654173 -538,11.0,14.0,-3.0953961826564296,6.097275864326261 -538,11.0,15.0,-1.9519977922801688,4.104359379111847 -538,12.0,11.0,0.0,7.142857142857143 -538,12.0,12.0,0.0,-7.142857142857143 -538,13.0,11.0,-1.5265676088395577,3.1734252729654173 -538,13.0,13.0,4.01751987283902,-5.424299332335067 -538,13.0,14.0,-2.4909522639994623,2.250874059369649 -538,14.0,11.0,-3.0953961826564296,6.097275864326261 -538,14.0,13.0,-2.4909522639994623,2.250874059369649 -538,14.0,14.0,9.365498545964757,-16.01163373210796 -538,14.0,17.0,-1.8108011504072024,3.687418931630696 -538,14.0,22.0,-1.9683489489016612,3.976064876781356 -538,15.0,11.0,-1.9519977922801688,4.104359379111847 -538,15.0,15.0,3.271064728633931,-8.94513365126506 -538,15.0,16.0,-1.3190669363537617,4.8407742721532125 -538,16.0,9.0,-3.956039125715353,10.317447719844054 -538,16.0,15.0,-1.3190669363537617,4.8407742721532125 -538,16.0,16.0,5.275106062069114,-15.158221991997266 -538,17.0,14.0,-1.8108011504072024,3.687418931630696 -538,17.0,17.0,4.886487584415919,-9.906177730909668 -538,17.0,18.0,-3.0756864340087167,6.218758799278971 -538,18.0,17.0,-3.0756864340087167,6.218758799278971 -538,18.0,18.0,8.958039375185187,-17.98346468163191 -538,18.0,19.0,-5.88235294117647,11.76470588235294 -538,19.0,9.0,-1.7848303152666305,3.98535828943083 -538,19.0,18.0,-5.88235294117647,11.76470588235294 -538,19.0,19.0,7.6671832564431,-15.75006417178377 -538,20.0,9.0,-5.101853820159654,10.98071411292983 -538,20.0,20.0,21.876495189895888,-45.10843276170355 -538,20.0,21.0,-16.774641369736234,34.127718648773715 -538,21.0,9.0,-2.619319553382597,5.400770303329455 -538,21.0,20.0,-16.774641369736234,34.127718648773715 -538,21.0,21.0,19.393960923118836,-39.52848895210317 -538,22.0,14.0,-1.9683489489016612,3.976064876781356 -538,22.0,22.0,3.429754555384988,-6.965303617315433 -538,22.0,23.0,-1.4614056064833263,2.989238740534077 -538,23.0,22.0,-1.4614056064833263,2.989238740534077 -538,23.0,23.0,2.771298550357576,-5.233860794239132 -538,23.0,24.0,-1.3098929438742493,2.287622053705056 -538,24.0,23.0,-1.3098929438742493,2.287622053705056 -538,24.0,24.0,4.495715080321987,-7.864978761969621 -538,24.0,25.0,-1.2165301194494855,1.8171440463475024 -538,24.0,26.0,-1.9692920169982515,3.760212661917064 -538,25.0,24.0,-1.2165301194494855,1.8171440463475024 -538,25.0,25.0,1.2165301194494855,-1.8171440463475024 -538,26.0,24.0,-1.9692920169982515,3.760212661917064 -538,26.0,26.0,3.652281470778589,-9.46044252232512 -538,26.0,27.0,0.0,2.608731947574922 -538,26.0,28.0,-0.99553355095268,1.881005840357816 -538,26.0,29.0,-0.6874559028276572,1.293971494797717 -538,27.0,5.0,-4.362844058012917,15.463571542897856 -538,27.0,7.0,-1.4439790613954469,4.540814658476248 -538,27.0,26.0,0.0,2.608731947574922 -538,27.0,27.0,5.806823119408364,-22.67145722159613 -538,28.0,26.0,-0.99553355095268,1.881005840357816 -538,28.0,28.0,1.9075867579849564,-3.604364401207048 -538,28.0,29.0,-0.9120532070322764,1.7233585608492326 -538,29.0,26.0,-0.6874559028276572,1.293971494797717 -538,29.0,28.0,-0.9120532070322764,1.7233585608492326 -538,29.0,29.0,1.5995091098599337,-3.0173300556469496 -539,0.0,0.0,6.765516048652632,-21.23160167089863 -539,0.0,1.0,-5.224646179885656,15.646726840803398 -539,0.0,2.0,-1.5408698687669766,5.631674830095234 -539,1.0,0.0,-5.224646179885656,15.646726840803398 -539,1.0,1.0,9.75228216552403,-30.648662892676068 -539,1.0,3.0,-1.7055303166990268,5.1973792282565086 -539,1.0,4.0,-1.1359607881738778,4.772479328281356 -539,1.0,5.0,-1.6861448807654689,5.116477495334806 -539,2.0,0.0,-1.5408698687669766,5.631674830095234 -539,2.0,2.0,9.736318911079088,-29.13794745915803 -539,2.0,3.0,-8.19544904231211,23.5308726290628 -539,3.0,1.0,-1.7055303166990268,5.1973792282565086 -539,3.0,2.0,-8.19544904231211,23.5308726290628 -539,3.0,3.0,9.900979359011137,-33.202706969773025 -539,3.0,11.0,0.0,4.191255364806866 -539,4.0,1.0,-1.1359607881738778,4.772479328281356 -539,4.0,4.0,4.089980824135861,-12.190647245055052 -539,4.0,6.0,-2.954020035961983,7.449267916773697 -539,5.0,1.0,-1.6861448807654689,5.116477495334806 -539,5.0,5.0,15.928507538860009,-60.52244430029767 -539,5.0,6.0,-3.590210423980992,11.02611441072814 -539,5.0,7.0,-6.289308176100628,22.0125786163522 -539,5.0,8.0,0.0,4.915840805411357 -539,5.0,9.0,0.0,1.8561002591115965 -539,5.0,27.0,-4.362844058012917,15.463571542897856 -539,6.0,4.0,-2.954020035961983,7.449267916773697 -539,6.0,5.0,-3.590210423980992,11.02611441072814 -539,6.0,6.0,6.544230459942975,-18.45668232750184 -539,7.0,5.0,-6.289308176100628,22.0125786163522 -539,7.0,7.0,7.733287237496075,-26.527493274828448 -539,7.0,27.0,-1.4439790613954469,4.540814658476248 -539,8.0,5.0,0.0,4.915840805411357 -539,8.0,8.0,0.0,-18.706293706293707 -539,8.0,9.0,0.0,9.090909090909092 -539,8.0,10.0,0.0,4.807692307692308 -539,9.0,5.0,0.0,1.8561002591115965 -539,9.0,8.0,0.0,9.090909090909092 -539,9.0,9.0,13.462042814524237,-41.3837606675224 -539,9.0,16.0,-3.956039125715353,10.317447719844054 -539,9.0,19.0,-1.7848303152666305,3.98535828943083 -539,9.0,20.0,-5.101853820159654,10.98071411292983 -539,9.0,21.0,-2.619319553382597,5.400770303329455 -539,10.0,8.0,0.0,4.807692307692308 -539,10.0,10.0,0.0,-4.807692307692308 -539,11.0,3.0,0.0,4.191255364806866 -539,11.0,11.0,6.573961583776156,-24.424167659260668 -539,11.0,12.0,0.0,7.142857142857143 -539,11.0,13.0,-1.5265676088395577,3.1734252729654173 -539,11.0,14.0,-3.0953961826564296,6.097275864326261 -539,11.0,15.0,-1.9519977922801688,4.104359379111847 -539,12.0,11.0,0.0,7.142857142857143 -539,12.0,12.0,0.0,-7.142857142857143 -539,13.0,11.0,-1.5265676088395577,3.1734252729654173 -539,13.0,13.0,4.01751987283902,-5.424299332335067 -539,13.0,14.0,-2.4909522639994623,2.250874059369649 -539,14.0,11.0,-3.0953961826564296,6.097275864326261 -539,14.0,13.0,-2.4909522639994623,2.250874059369649 -539,14.0,14.0,9.365498545964757,-16.01163373210796 -539,14.0,17.0,-1.8108011504072024,3.687418931630696 -539,14.0,22.0,-1.9683489489016612,3.976064876781356 -539,15.0,11.0,-1.9519977922801688,4.104359379111847 -539,15.0,15.0,3.271064728633931,-8.94513365126506 -539,15.0,16.0,-1.3190669363537617,4.8407742721532125 -539,16.0,9.0,-3.956039125715353,10.317447719844054 -539,16.0,15.0,-1.3190669363537617,4.8407742721532125 -539,16.0,16.0,5.275106062069114,-15.158221991997266 -539,17.0,14.0,-1.8108011504072024,3.687418931630696 -539,17.0,17.0,4.886487584415919,-9.906177730909668 -539,17.0,18.0,-3.0756864340087167,6.218758799278971 -539,18.0,17.0,-3.0756864340087167,6.218758799278971 -539,18.0,18.0,8.958039375185187,-17.98346468163191 -539,18.0,19.0,-5.88235294117647,11.76470588235294 -539,19.0,9.0,-1.7848303152666305,3.98535828943083 -539,19.0,18.0,-5.88235294117647,11.76470588235294 -539,19.0,19.0,7.6671832564431,-15.75006417178377 -539,20.0,9.0,-5.101853820159654,10.98071411292983 -539,20.0,20.0,21.876495189895888,-45.10843276170355 -539,20.0,21.0,-16.774641369736234,34.127718648773715 -539,21.0,9.0,-2.619319553382597,5.400770303329455 -539,21.0,20.0,-16.774641369736234,34.127718648773715 -539,21.0,21.0,21.93449907537439,-43.48289181517921 -539,21.0,23.0,-2.5405381522555563,3.95440286307604 -539,22.0,14.0,-1.9683489489016612,3.976064876781356 -539,22.0,22.0,3.429754555384988,-6.965303617315433 -539,22.0,23.0,-1.4614056064833263,2.989238740534077 -539,23.0,21.0,-2.5405381522555563,3.95440286307604 -539,23.0,22.0,-1.4614056064833263,2.989238740534077 -539,23.0,23.0,5.311836702613133,-9.188263657315172 -539,23.0,24.0,-1.3098929438742493,2.287622053705056 -539,24.0,23.0,-1.3098929438742493,2.287622053705056 -539,24.0,24.0,2.526423063323735,-4.104766100052558 -539,24.0,25.0,-1.2165301194494855,1.8171440463475024 -539,25.0,24.0,-1.2165301194494855,1.8171440463475024 -539,25.0,25.0,1.2165301194494855,-1.8171440463475024 -539,26.0,26.0,1.6829894537803372,-5.700229860408058 -539,26.0,27.0,0.0,2.608731947574922 -539,26.0,28.0,-0.99553355095268,1.881005840357816 -539,26.0,29.0,-0.6874559028276572,1.293971494797717 -539,27.0,5.0,-4.362844058012917,15.463571542897856 -539,27.0,7.0,-1.4439790613954469,4.540814658476248 -539,27.0,26.0,0.0,2.608731947574922 -539,27.0,27.0,5.806823119408364,-22.67145722159613 -539,28.0,26.0,-0.99553355095268,1.881005840357816 -539,28.0,28.0,1.9075867579849564,-3.604364401207048 -539,28.0,29.0,-0.9120532070322764,1.7233585608492326 -539,29.0,26.0,-0.6874559028276572,1.293971494797717 -539,29.0,28.0,-0.9120532070322764,1.7233585608492326 -539,29.0,29.0,1.5995091098599337,-3.0173300556469496 -540,0.0,0.0,6.765516048652632,-21.23160167089863 -540,0.0,1.0,-5.224646179885656,15.646726840803398 -540,0.0,2.0,-1.5408698687669766,5.631674830095234 -540,1.0,0.0,-5.224646179885656,15.646726840803398 -540,1.0,1.0,9.75228216552403,-30.648662892676068 -540,1.0,3.0,-1.7055303166990268,5.1973792282565086 -540,1.0,4.0,-1.1359607881738778,4.772479328281356 -540,1.0,5.0,-1.6861448807654689,5.116477495334806 -540,2.0,0.0,-1.5408698687669766,5.631674830095234 -540,2.0,2.0,9.736318911079088,-29.13794745915803 -540,2.0,3.0,-8.19544904231211,23.5308726290628 -540,3.0,1.0,-1.7055303166990268,5.1973792282565086 -540,3.0,2.0,-8.19544904231211,23.5308726290628 -540,3.0,3.0,16.314103089185693,-55.509410535254254 -540,3.0,5.0,-6.413123730174556,22.31120356548123 -540,3.0,11.0,0.0,4.191255364806866 -540,4.0,1.0,-1.1359607881738778,4.772479328281356 -540,4.0,4.0,4.089980824135861,-12.190647245055052 -540,4.0,6.0,-2.954020035961983,7.449267916773697 -540,5.0,1.0,-1.6861448807654689,5.116477495334806 -540,5.0,3.0,-6.413123730174556,22.31120356548123 -540,5.0,5.0,22.341631269034565,-82.8291478657789 -540,5.0,6.0,-3.590210423980992,11.02611441072814 -540,5.0,7.0,-6.289308176100628,22.0125786163522 -540,5.0,8.0,0.0,4.915840805411357 -540,5.0,9.0,0.0,1.8561002591115965 -540,5.0,27.0,-4.362844058012917,15.463571542897856 -540,6.0,4.0,-2.954020035961983,7.449267916773697 -540,6.0,5.0,-3.590210423980992,11.02611441072814 -540,6.0,6.0,6.544230459942975,-18.45668232750184 -540,7.0,5.0,-6.289308176100628,22.0125786163522 -540,7.0,7.0,7.733287237496075,-26.527493274828448 -540,7.0,27.0,-1.4439790613954469,4.540814658476248 -540,8.0,5.0,0.0,4.915840805411357 -540,8.0,8.0,0.0,-18.706293706293707 -540,8.0,9.0,0.0,9.090909090909092 -540,8.0,10.0,0.0,4.807692307692308 -540,9.0,5.0,0.0,1.8561002591115965 -540,9.0,8.0,0.0,9.090909090909092 -540,9.0,9.0,13.462042814524237,-41.3837606675224 -540,9.0,16.0,-3.956039125715353,10.317447719844054 -540,9.0,19.0,-1.7848303152666305,3.98535828943083 -540,9.0,20.0,-5.101853820159654,10.98071411292983 -540,9.0,21.0,-2.619319553382597,5.400770303329455 -540,10.0,8.0,0.0,4.807692307692308 -540,10.0,10.0,0.0,-4.807692307692308 -540,11.0,3.0,0.0,4.191255364806866 -540,11.0,11.0,6.573961583776156,-24.424167659260668 -540,11.0,12.0,0.0,7.142857142857143 -540,11.0,13.0,-1.5265676088395577,3.1734252729654173 -540,11.0,14.0,-3.0953961826564296,6.097275864326261 -540,11.0,15.0,-1.9519977922801688,4.104359379111847 -540,12.0,11.0,0.0,7.142857142857143 -540,12.0,12.0,0.0,-7.142857142857143 -540,13.0,11.0,-1.5265676088395577,3.1734252729654173 -540,13.0,13.0,4.01751987283902,-5.424299332335067 -540,13.0,14.0,-2.4909522639994623,2.250874059369649 -540,14.0,11.0,-3.0953961826564296,6.097275864326261 -540,14.0,13.0,-2.4909522639994623,2.250874059369649 -540,14.0,14.0,9.365498545964757,-16.01163373210796 -540,14.0,17.0,-1.8108011504072024,3.687418931630696 -540,14.0,22.0,-1.9683489489016612,3.976064876781356 -540,15.0,11.0,-1.9519977922801688,4.104359379111847 -540,15.0,15.0,3.271064728633931,-8.94513365126506 -540,15.0,16.0,-1.3190669363537617,4.8407742721532125 -540,16.0,9.0,-3.956039125715353,10.317447719844054 -540,16.0,15.0,-1.3190669363537617,4.8407742721532125 -540,16.0,16.0,5.275106062069114,-15.158221991997266 -540,17.0,14.0,-1.8108011504072024,3.687418931630696 -540,17.0,17.0,4.886487584415919,-9.906177730909668 -540,17.0,18.0,-3.0756864340087167,6.218758799278971 -540,18.0,17.0,-3.0756864340087167,6.218758799278971 -540,18.0,18.0,8.958039375185187,-17.98346468163191 -540,18.0,19.0,-5.88235294117647,11.76470588235294 -540,19.0,9.0,-1.7848303152666305,3.98535828943083 -540,19.0,18.0,-5.88235294117647,11.76470588235294 -540,19.0,19.0,7.6671832564431,-15.75006417178377 -540,20.0,9.0,-5.101853820159654,10.98071411292983 -540,20.0,20.0,21.876495189895888,-45.10843276170355 -540,20.0,21.0,-16.774641369736234,34.127718648773715 -540,21.0,9.0,-2.619319553382597,5.400770303329455 -540,21.0,20.0,-16.774641369736234,34.127718648773715 -540,21.0,21.0,21.93449907537439,-43.48289181517921 -540,21.0,23.0,-2.5405381522555563,3.95440286307604 -540,22.0,14.0,-1.9683489489016612,3.976064876781356 -540,22.0,22.0,3.429754555384988,-6.965303617315433 -540,22.0,23.0,-1.4614056064833263,2.989238740534077 -540,23.0,21.0,-2.5405381522555563,3.95440286307604 -540,23.0,22.0,-1.4614056064833263,2.989238740534077 -540,23.0,23.0,5.311836702613133,-9.188263657315172 -540,23.0,24.0,-1.3098929438742493,2.287622053705056 -540,24.0,23.0,-1.3098929438742493,2.287622053705056 -540,24.0,24.0,4.495715080321987,-7.864978761969621 -540,24.0,25.0,-1.2165301194494855,1.8171440463475024 -540,24.0,26.0,-1.9692920169982515,3.760212661917064 -540,25.0,24.0,-1.2165301194494855,1.8171440463475024 -540,25.0,25.0,1.2165301194494855,-1.8171440463475024 -540,26.0,24.0,-1.9692920169982515,3.760212661917064 -540,26.0,26.0,3.652281470778589,-9.46044252232512 -540,26.0,27.0,0.0,2.608731947574922 -540,26.0,28.0,-0.99553355095268,1.881005840357816 -540,26.0,29.0,-0.6874559028276572,1.293971494797717 -540,27.0,5.0,-4.362844058012917,15.463571542897856 -540,27.0,7.0,-1.4439790613954469,4.540814658476248 -540,27.0,26.0,0.0,2.608731947574922 -540,27.0,27.0,5.806823119408364,-22.67145722159613 -540,28.0,26.0,-0.99553355095268,1.881005840357816 -540,28.0,28.0,1.9075867579849564,-3.604364401207048 -540,28.0,29.0,-0.9120532070322764,1.7233585608492326 -540,29.0,26.0,-0.6874559028276572,1.293971494797717 -540,29.0,28.0,-0.9120532070322764,1.7233585608492326 -540,29.0,29.0,1.5995091098599337,-3.0173300556469496 -541,0.0,0.0,6.765516048652632,-21.23160167089863 -541,0.0,1.0,-5.224646179885656,15.646726840803398 -541,0.0,2.0,-1.5408698687669766,5.631674830095234 -541,1.0,0.0,-5.224646179885656,15.646726840803398 -541,1.0,1.0,9.75228216552403,-30.648662892676068 -541,1.0,3.0,-1.7055303166990268,5.1973792282565086 -541,1.0,4.0,-1.1359607881738778,4.772479328281356 -541,1.0,5.0,-1.6861448807654689,5.116477495334806 -541,2.0,0.0,-1.5408698687669766,5.631674830095234 -541,2.0,2.0,9.736318911079088,-29.13794745915803 -541,2.0,3.0,-8.19544904231211,23.5308726290628 -541,3.0,1.0,-1.7055303166990268,5.1973792282565086 -541,3.0,2.0,-8.19544904231211,23.5308726290628 -541,3.0,3.0,16.314103089185693,-55.509410535254254 -541,3.0,5.0,-6.413123730174556,22.31120356548123 -541,3.0,11.0,0.0,4.191255364806866 -541,4.0,1.0,-1.1359607881738778,4.772479328281356 -541,4.0,4.0,4.089980824135861,-12.190647245055052 -541,4.0,6.0,-2.954020035961983,7.449267916773697 -541,5.0,1.0,-1.6861448807654689,5.116477495334806 -541,5.0,3.0,-6.413123730174556,22.31120356548123 -541,5.0,5.0,22.341631269034565,-77.80272577435625 -541,5.0,6.0,-3.590210423980992,11.02611441072814 -541,5.0,7.0,-6.289308176100628,22.0125786163522 -541,5.0,9.0,0.0,1.8561002591115965 -541,5.0,27.0,-4.362844058012917,15.463571542897856 -541,6.0,4.0,-2.954020035961983,7.449267916773697 -541,6.0,5.0,-3.590210423980992,11.02611441072814 -541,6.0,6.0,6.544230459942975,-18.45668232750184 -541,7.0,5.0,-6.289308176100628,22.0125786163522 -541,7.0,7.0,7.733287237496075,-26.527493274828448 -541,7.0,27.0,-1.4439790613954469,4.540814658476248 -541,8.0,8.0,0.0,-13.8986013986014 -541,8.0,9.0,0.0,9.090909090909092 -541,8.0,10.0,0.0,4.807692307692308 -541,9.0,5.0,0.0,1.8561002591115965 -541,9.0,8.0,0.0,9.090909090909092 -541,9.0,9.0,13.462042814524237,-41.3837606675224 -541,9.0,16.0,-3.956039125715353,10.317447719844054 -541,9.0,19.0,-1.7848303152666305,3.98535828943083 -541,9.0,20.0,-5.101853820159654,10.98071411292983 -541,9.0,21.0,-2.619319553382597,5.400770303329455 -541,10.0,8.0,0.0,4.807692307692308 -541,10.0,10.0,0.0,-4.807692307692308 -541,11.0,3.0,0.0,4.191255364806866 -541,11.0,11.0,6.573961583776156,-24.424167659260668 -541,11.0,12.0,0.0,7.142857142857143 -541,11.0,13.0,-1.5265676088395577,3.1734252729654173 -541,11.0,14.0,-3.0953961826564296,6.097275864326261 -541,11.0,15.0,-1.9519977922801688,4.104359379111847 -541,12.0,11.0,0.0,7.142857142857143 -541,12.0,12.0,0.0,-7.142857142857143 -541,13.0,11.0,-1.5265676088395577,3.1734252729654173 -541,13.0,13.0,4.01751987283902,-5.424299332335067 -541,13.0,14.0,-2.4909522639994623,2.250874059369649 -541,14.0,11.0,-3.0953961826564296,6.097275864326261 -541,14.0,13.0,-2.4909522639994623,2.250874059369649 -541,14.0,14.0,9.365498545964757,-16.01163373210796 -541,14.0,17.0,-1.8108011504072024,3.687418931630696 -541,14.0,22.0,-1.9683489489016612,3.976064876781356 -541,15.0,11.0,-1.9519977922801688,4.104359379111847 -541,15.0,15.0,3.271064728633931,-8.94513365126506 -541,15.0,16.0,-1.3190669363537617,4.8407742721532125 -541,16.0,9.0,-3.956039125715353,10.317447719844054 -541,16.0,15.0,-1.3190669363537617,4.8407742721532125 -541,16.0,16.0,5.275106062069114,-15.158221991997266 -541,17.0,14.0,-1.8108011504072024,3.687418931630696 -541,17.0,17.0,4.886487584415919,-9.906177730909668 -541,17.0,18.0,-3.0756864340087167,6.218758799278971 -541,18.0,17.0,-3.0756864340087167,6.218758799278971 -541,18.0,18.0,8.958039375185187,-17.98346468163191 -541,18.0,19.0,-5.88235294117647,11.76470588235294 -541,19.0,9.0,-1.7848303152666305,3.98535828943083 -541,19.0,18.0,-5.88235294117647,11.76470588235294 -541,19.0,19.0,7.6671832564431,-15.75006417178377 -541,20.0,9.0,-5.101853820159654,10.98071411292983 -541,20.0,20.0,21.876495189895888,-45.10843276170355 -541,20.0,21.0,-16.774641369736234,34.127718648773715 -541,21.0,9.0,-2.619319553382597,5.400770303329455 -541,21.0,20.0,-16.774641369736234,34.127718648773715 -541,21.0,21.0,21.93449907537439,-43.48289181517921 -541,21.0,23.0,-2.5405381522555563,3.95440286307604 -541,22.0,14.0,-1.9683489489016612,3.976064876781356 -541,22.0,22.0,3.429754555384988,-6.965303617315433 -541,22.0,23.0,-1.4614056064833263,2.989238740534077 -541,23.0,21.0,-2.5405381522555563,3.95440286307604 -541,23.0,22.0,-1.4614056064833263,2.989238740534077 -541,23.0,23.0,5.311836702613133,-9.188263657315172 -541,23.0,24.0,-1.3098929438742493,2.287622053705056 -541,24.0,23.0,-1.3098929438742493,2.287622053705056 -541,24.0,24.0,4.495715080321987,-7.864978761969621 -541,24.0,25.0,-1.2165301194494855,1.8171440463475024 -541,24.0,26.0,-1.9692920169982515,3.760212661917064 -541,25.0,24.0,-1.2165301194494855,1.8171440463475024 -541,25.0,25.0,1.2165301194494855,-1.8171440463475024 -541,26.0,24.0,-1.9692920169982515,3.760212661917064 -541,26.0,26.0,3.652281470778589,-9.46044252232512 -541,26.0,27.0,0.0,2.608731947574922 -541,26.0,28.0,-0.99553355095268,1.881005840357816 -541,26.0,29.0,-0.6874559028276572,1.293971494797717 -541,27.0,5.0,-4.362844058012917,15.463571542897856 -541,27.0,7.0,-1.4439790613954469,4.540814658476248 -541,27.0,26.0,0.0,2.608731947574922 -541,27.0,27.0,5.806823119408364,-22.67145722159613 -541,28.0,26.0,-0.99553355095268,1.881005840357816 -541,28.0,28.0,1.9075867579849564,-3.604364401207048 -541,28.0,29.0,-0.9120532070322764,1.7233585608492326 -541,29.0,26.0,-0.6874559028276572,1.293971494797717 -541,29.0,28.0,-0.9120532070322764,1.7233585608492326 -541,29.0,29.0,1.5995091098599337,-3.0173300556469496 -542,0.0,0.0,6.765516048652632,-21.23160167089863 -542,0.0,1.0,-5.224646179885656,15.646726840803398 -542,0.0,2.0,-1.5408698687669766,5.631674830095234 -542,1.0,0.0,-5.224646179885656,15.646726840803398 -542,1.0,1.0,9.75228216552403,-30.648662892676068 -542,1.0,3.0,-1.7055303166990268,5.1973792282565086 -542,1.0,4.0,-1.1359607881738778,4.772479328281356 -542,1.0,5.0,-1.6861448807654689,5.116477495334806 -542,2.0,0.0,-1.5408698687669766,5.631674830095234 -542,2.0,2.0,9.736318911079088,-29.13794745915803 -542,2.0,3.0,-8.19544904231211,23.5308726290628 -542,3.0,1.0,-1.7055303166990268,5.1973792282565086 -542,3.0,2.0,-8.19544904231211,23.5308726290628 -542,3.0,3.0,16.314103089185693,-55.509410535254254 -542,3.0,5.0,-6.413123730174556,22.31120356548123 -542,3.0,11.0,0.0,4.191255364806866 -542,4.0,1.0,-1.1359607881738778,4.772479328281356 -542,4.0,4.0,4.089980824135861,-12.190647245055052 -542,4.0,6.0,-2.954020035961983,7.449267916773697 -542,5.0,1.0,-1.6861448807654689,5.116477495334806 -542,5.0,3.0,-6.413123730174556,22.31120356548123 -542,5.0,5.0,22.341631269034565,-82.8291478657789 -542,5.0,6.0,-3.590210423980992,11.02611441072814 -542,5.0,7.0,-6.289308176100628,22.0125786163522 -542,5.0,8.0,0.0,4.915840805411357 -542,5.0,9.0,0.0,1.8561002591115965 -542,5.0,27.0,-4.362844058012917,15.463571542897856 -542,6.0,4.0,-2.954020035961983,7.449267916773697 -542,6.0,5.0,-3.590210423980992,11.02611441072814 -542,6.0,6.0,6.544230459942975,-18.45668232750184 -542,7.0,5.0,-6.289308176100628,22.0125786163522 -542,7.0,7.0,7.733287237496075,-26.527493274828448 -542,7.0,27.0,-1.4439790613954469,4.540814658476248 -542,8.0,5.0,0.0,4.915840805411357 -542,8.0,8.0,0.0,-18.706293706293707 -542,8.0,9.0,0.0,9.090909090909092 -542,8.0,10.0,0.0,4.807692307692308 -542,9.0,5.0,0.0,1.8561002591115965 -542,9.0,8.0,0.0,9.090909090909092 -542,9.0,9.0,13.462042814524237,-41.3837606675224 -542,9.0,16.0,-3.956039125715353,10.317447719844054 -542,9.0,19.0,-1.7848303152666305,3.98535828943083 -542,9.0,20.0,-5.101853820159654,10.98071411292983 -542,9.0,21.0,-2.619319553382597,5.400770303329455 -542,10.0,8.0,0.0,4.807692307692308 -542,10.0,10.0,0.0,-4.807692307692308 -542,11.0,3.0,0.0,4.191255364806866 -542,11.0,11.0,6.573961583776156,-24.424167659260668 -542,11.0,12.0,0.0,7.142857142857143 -542,11.0,13.0,-1.5265676088395577,3.1734252729654173 -542,11.0,14.0,-3.0953961826564296,6.097275864326261 -542,11.0,15.0,-1.9519977922801688,4.104359379111847 -542,12.0,11.0,0.0,7.142857142857143 -542,12.0,12.0,0.0,-7.142857142857143 -542,13.0,11.0,-1.5265676088395577,3.1734252729654173 -542,13.0,13.0,4.01751987283902,-5.424299332335067 -542,13.0,14.0,-2.4909522639994623,2.250874059369649 -542,14.0,11.0,-3.0953961826564296,6.097275864326261 -542,14.0,13.0,-2.4909522639994623,2.250874059369649 -542,14.0,14.0,9.365498545964757,-16.01163373210796 -542,14.0,17.0,-1.8108011504072024,3.687418931630696 -542,14.0,22.0,-1.9683489489016612,3.976064876781356 -542,15.0,11.0,-1.9519977922801688,4.104359379111847 -542,15.0,15.0,3.271064728633931,-8.94513365126506 -542,15.0,16.0,-1.3190669363537617,4.8407742721532125 -542,16.0,9.0,-3.956039125715353,10.317447719844054 -542,16.0,15.0,-1.3190669363537617,4.8407742721532125 -542,16.0,16.0,5.275106062069114,-15.158221991997266 -542,17.0,14.0,-1.8108011504072024,3.687418931630696 -542,17.0,17.0,4.886487584415919,-9.906177730909668 -542,17.0,18.0,-3.0756864340087167,6.218758799278971 -542,18.0,17.0,-3.0756864340087167,6.218758799278971 -542,18.0,18.0,8.958039375185187,-17.98346468163191 -542,18.0,19.0,-5.88235294117647,11.76470588235294 -542,19.0,9.0,-1.7848303152666305,3.98535828943083 -542,19.0,18.0,-5.88235294117647,11.76470588235294 -542,19.0,19.0,7.6671832564431,-15.75006417178377 -542,20.0,9.0,-5.101853820159654,10.98071411292983 -542,20.0,20.0,5.101853820159654,-10.98071411292983 -542,21.0,9.0,-2.619319553382597,5.400770303329455 -542,21.0,21.0,5.159857705638154,-9.355173166405494 -542,21.0,23.0,-2.5405381522555563,3.95440286307604 -542,22.0,14.0,-1.9683489489016612,3.976064876781356 -542,22.0,22.0,3.429754555384988,-6.965303617315433 -542,22.0,23.0,-1.4614056064833263,2.989238740534077 -542,23.0,21.0,-2.5405381522555563,3.95440286307604 -542,23.0,22.0,-1.4614056064833263,2.989238740534077 -542,23.0,23.0,5.311836702613133,-9.188263657315172 -542,23.0,24.0,-1.3098929438742493,2.287622053705056 -542,24.0,23.0,-1.3098929438742493,2.287622053705056 -542,24.0,24.0,2.526423063323735,-4.104766100052558 -542,24.0,25.0,-1.2165301194494855,1.8171440463475024 -542,25.0,24.0,-1.2165301194494855,1.8171440463475024 -542,25.0,25.0,1.2165301194494855,-1.8171440463475024 -542,26.0,26.0,1.6829894537803372,-5.700229860408058 -542,26.0,27.0,0.0,2.608731947574922 -542,26.0,28.0,-0.99553355095268,1.881005840357816 -542,26.0,29.0,-0.6874559028276572,1.293971494797717 -542,27.0,5.0,-4.362844058012917,15.463571542897856 -542,27.0,7.0,-1.4439790613954469,4.540814658476248 -542,27.0,26.0,0.0,2.608731947574922 -542,27.0,27.0,5.806823119408364,-22.67145722159613 -542,28.0,26.0,-0.99553355095268,1.881005840357816 -542,28.0,28.0,1.9075867579849564,-3.604364401207048 -542,28.0,29.0,-0.9120532070322764,1.7233585608492326 -542,29.0,26.0,-0.6874559028276572,1.293971494797717 -542,29.0,28.0,-0.9120532070322764,1.7233585608492326 -542,29.0,29.0,1.5995091098599337,-3.0173300556469496 -543,0.0,0.0,5.224646179885656,-15.620326840803395 -543,0.0,1.0,-5.224646179885656,15.646726840803398 -543,1.0,0.0,-5.224646179885656,15.646726840803398 -543,1.0,1.0,9.75228216552403,-30.648662892676068 -543,1.0,3.0,-1.7055303166990268,5.1973792282565086 -543,1.0,4.0,-1.1359607881738778,4.772479328281356 -543,1.0,5.0,-1.6861448807654689,5.116477495334806 -543,2.0,2.0,8.19544904231211,-23.5266726290628 -543,2.0,3.0,-8.19544904231211,23.5308726290628 -543,3.0,1.0,-1.7055303166990268,5.1973792282565086 -543,3.0,2.0,-8.19544904231211,23.5308726290628 -543,3.0,3.0,16.314103089185693,-55.509410535254254 -543,3.0,5.0,-6.413123730174556,22.31120356548123 -543,3.0,11.0,0.0,4.191255364806866 -543,4.0,1.0,-1.1359607881738778,4.772479328281356 -543,4.0,4.0,4.089980824135861,-12.190647245055052 -543,4.0,6.0,-2.954020035961983,7.449267916773697 -543,5.0,1.0,-1.6861448807654689,5.116477495334806 -543,5.0,3.0,-6.413123730174556,22.31120356548123 -543,5.0,5.0,22.341631269034565,-82.8291478657789 -543,5.0,6.0,-3.590210423980992,11.02611441072814 -543,5.0,7.0,-6.289308176100628,22.0125786163522 -543,5.0,8.0,0.0,4.915840805411357 -543,5.0,9.0,0.0,1.8561002591115965 -543,5.0,27.0,-4.362844058012917,15.463571542897856 -543,6.0,4.0,-2.954020035961983,7.449267916773697 -543,6.0,5.0,-3.590210423980992,11.02611441072814 -543,6.0,6.0,6.544230459942975,-18.45668232750184 -543,7.0,5.0,-6.289308176100628,22.0125786163522 -543,7.0,7.0,7.733287237496075,-26.527493274828448 -543,7.0,27.0,-1.4439790613954469,4.540814658476248 -543,8.0,5.0,0.0,4.915840805411357 -543,8.0,8.0,0.0,-18.706293706293707 -543,8.0,9.0,0.0,9.090909090909092 -543,8.0,10.0,0.0,4.807692307692308 -543,9.0,5.0,0.0,1.8561002591115965 -543,9.0,8.0,0.0,9.090909090909092 -543,9.0,9.0,13.462042814524237,-41.3837606675224 -543,9.0,16.0,-3.956039125715353,10.317447719844054 -543,9.0,19.0,-1.7848303152666305,3.98535828943083 -543,9.0,20.0,-5.101853820159654,10.98071411292983 -543,9.0,21.0,-2.619319553382597,5.400770303329455 -543,10.0,8.0,0.0,4.807692307692308 -543,10.0,10.0,0.0,-4.807692307692308 -543,11.0,3.0,0.0,4.191255364806866 -543,11.0,11.0,6.573961583776156,-24.424167659260668 -543,11.0,12.0,0.0,7.142857142857143 -543,11.0,13.0,-1.5265676088395577,3.1734252729654173 -543,11.0,14.0,-3.0953961826564296,6.097275864326261 -543,11.0,15.0,-1.9519977922801688,4.104359379111847 -543,12.0,11.0,0.0,7.142857142857143 -543,12.0,12.0,0.0,-7.142857142857143 -543,13.0,11.0,-1.5265676088395577,3.1734252729654173 -543,13.0,13.0,4.01751987283902,-5.424299332335067 -543,13.0,14.0,-2.4909522639994623,2.250874059369649 -543,14.0,11.0,-3.0953961826564296,6.097275864326261 -543,14.0,13.0,-2.4909522639994623,2.250874059369649 -543,14.0,14.0,7.554697395557554,-12.324214800477266 -543,14.0,22.0,-1.9683489489016612,3.976064876781356 -543,15.0,11.0,-1.9519977922801688,4.104359379111847 -543,15.0,15.0,3.271064728633931,-8.94513365126506 -543,15.0,16.0,-1.3190669363537617,4.8407742721532125 -543,16.0,9.0,-3.956039125715353,10.317447719844054 -543,16.0,15.0,-1.3190669363537617,4.8407742721532125 -543,16.0,16.0,5.275106062069114,-15.158221991997266 -543,17.0,17.0,3.0756864340087167,-6.218758799278971 -543,17.0,18.0,-3.0756864340087167,6.218758799278971 -543,18.0,17.0,-3.0756864340087167,6.218758799278971 -543,18.0,18.0,8.958039375185187,-17.98346468163191 -543,18.0,19.0,-5.88235294117647,11.76470588235294 -543,19.0,9.0,-1.7848303152666305,3.98535828943083 -543,19.0,18.0,-5.88235294117647,11.76470588235294 -543,19.0,19.0,7.6671832564431,-15.75006417178377 -543,20.0,9.0,-5.101853820159654,10.98071411292983 -543,20.0,20.0,21.876495189895888,-45.10843276170355 -543,20.0,21.0,-16.774641369736234,34.127718648773715 -543,21.0,9.0,-2.619319553382597,5.400770303329455 -543,21.0,20.0,-16.774641369736234,34.127718648773715 -543,21.0,21.0,21.93449907537439,-43.48289181517921 -543,21.0,23.0,-2.5405381522555563,3.95440286307604 -543,22.0,14.0,-1.9683489489016612,3.976064876781356 -543,22.0,22.0,3.429754555384988,-6.965303617315433 -543,22.0,23.0,-1.4614056064833263,2.989238740534077 -543,23.0,21.0,-2.5405381522555563,3.95440286307604 -543,23.0,22.0,-1.4614056064833263,2.989238740534077 -543,23.0,23.0,5.311836702613133,-9.188263657315172 -543,23.0,24.0,-1.3098929438742493,2.287622053705056 -543,24.0,23.0,-1.3098929438742493,2.287622053705056 -543,24.0,24.0,4.495715080321987,-7.864978761969621 -543,24.0,25.0,-1.2165301194494855,1.8171440463475024 -543,24.0,26.0,-1.9692920169982515,3.760212661917064 -543,25.0,24.0,-1.2165301194494855,1.8171440463475024 -543,25.0,25.0,1.2165301194494855,-1.8171440463475024 -543,26.0,24.0,-1.9692920169982515,3.760212661917064 -543,26.0,26.0,3.652281470778589,-9.46044252232512 -543,26.0,27.0,0.0,2.608731947574922 -543,26.0,28.0,-0.99553355095268,1.881005840357816 -543,26.0,29.0,-0.6874559028276572,1.293971494797717 -543,27.0,5.0,-4.362844058012917,15.463571542897856 -543,27.0,7.0,-1.4439790613954469,4.540814658476248 -543,27.0,26.0,0.0,2.608731947574922 -543,27.0,27.0,5.806823119408364,-22.67145722159613 -543,28.0,26.0,-0.99553355095268,1.881005840357816 -543,28.0,28.0,1.9075867579849564,-3.604364401207048 -543,28.0,29.0,-0.9120532070322764,1.7233585608492326 -543,29.0,26.0,-0.6874559028276572,1.293971494797717 -543,29.0,28.0,-0.9120532070322764,1.7233585608492326 -543,29.0,29.0,1.5995091098599337,-3.0173300556469496 -544,0.0,0.0,6.765516048652632,-21.23160167089863 -544,0.0,1.0,-5.224646179885656,15.646726840803398 -544,0.0,2.0,-1.5408698687669766,5.631674830095234 -544,1.0,0.0,-5.224646179885656,15.646726840803398 -544,1.0,1.0,9.75228216552403,-30.648662892676068 -544,1.0,3.0,-1.7055303166990268,5.1973792282565086 -544,1.0,4.0,-1.1359607881738778,4.772479328281356 -544,1.0,5.0,-1.6861448807654689,5.116477495334806 -544,2.0,0.0,-1.5408698687669766,5.631674830095234 -544,2.0,2.0,9.736318911079088,-29.13794745915803 -544,2.0,3.0,-8.19544904231211,23.5308726290628 -544,3.0,1.0,-1.7055303166990268,5.1973792282565086 -544,3.0,2.0,-8.19544904231211,23.5308726290628 -544,3.0,3.0,16.314103089185693,-55.509410535254254 -544,3.0,5.0,-6.413123730174556,22.31120356548123 -544,3.0,11.0,0.0,4.191255364806866 -544,4.0,1.0,-1.1359607881738778,4.772479328281356 -544,4.0,4.0,4.089980824135861,-12.190647245055052 -544,4.0,6.0,-2.954020035961983,7.449267916773697 -544,5.0,1.0,-1.6861448807654689,5.116477495334806 -544,5.0,3.0,-6.413123730174556,22.31120356548123 -544,5.0,5.0,22.341631269034565,-82.8291478657789 -544,5.0,6.0,-3.590210423980992,11.02611441072814 -544,5.0,7.0,-6.289308176100628,22.0125786163522 -544,5.0,8.0,0.0,4.915840805411357 -544,5.0,9.0,0.0,1.8561002591115965 -544,5.0,27.0,-4.362844058012917,15.463571542897856 -544,6.0,4.0,-2.954020035961983,7.449267916773697 -544,6.0,5.0,-3.590210423980992,11.02611441072814 -544,6.0,6.0,6.544230459942975,-18.45668232750184 -544,7.0,5.0,-6.289308176100628,22.0125786163522 -544,7.0,7.0,7.733287237496075,-26.527493274828448 -544,7.0,27.0,-1.4439790613954469,4.540814658476248 -544,8.0,5.0,0.0,4.915840805411357 -544,8.0,8.0,0.0,-18.706293706293707 -544,8.0,9.0,0.0,9.090909090909092 -544,8.0,10.0,0.0,4.807692307692308 -544,9.0,5.0,0.0,1.8561002591115965 -544,9.0,8.0,0.0,9.090909090909092 -544,9.0,9.0,13.462042814524237,-41.3837606675224 -544,9.0,16.0,-3.956039125715353,10.317447719844054 -544,9.0,19.0,-1.7848303152666305,3.98535828943083 -544,9.0,20.0,-5.101853820159654,10.98071411292983 -544,9.0,21.0,-2.619319553382597,5.400770303329455 -544,10.0,8.0,0.0,4.807692307692308 -544,10.0,10.0,0.0,-4.807692307692308 -544,11.0,3.0,0.0,4.191255364806866 -544,11.0,11.0,6.573961583776156,-24.424167659260668 -544,11.0,12.0,0.0,7.142857142857143 -544,11.0,13.0,-1.5265676088395577,3.1734252729654173 -544,11.0,14.0,-3.0953961826564296,6.097275864326261 -544,11.0,15.0,-1.9519977922801688,4.104359379111847 -544,12.0,11.0,0.0,7.142857142857143 -544,12.0,12.0,0.0,-7.142857142857143 -544,13.0,11.0,-1.5265676088395577,3.1734252729654173 -544,13.0,13.0,4.01751987283902,-5.424299332335067 -544,13.0,14.0,-2.4909522639994623,2.250874059369649 -544,14.0,11.0,-3.0953961826564296,6.097275864326261 -544,14.0,13.0,-2.4909522639994623,2.250874059369649 -544,14.0,14.0,9.365498545964757,-16.01163373210796 -544,14.0,17.0,-1.8108011504072024,3.687418931630696 -544,14.0,22.0,-1.9683489489016612,3.976064876781356 -544,15.0,11.0,-1.9519977922801688,4.104359379111847 -544,15.0,15.0,3.271064728633931,-8.94513365126506 -544,15.0,16.0,-1.3190669363537617,4.8407742721532125 -544,16.0,9.0,-3.956039125715353,10.317447719844054 -544,16.0,15.0,-1.3190669363537617,4.8407742721532125 -544,16.0,16.0,5.275106062069114,-15.158221991997266 -544,17.0,14.0,-1.8108011504072024,3.687418931630696 -544,17.0,17.0,4.886487584415919,-9.906177730909668 -544,17.0,18.0,-3.0756864340087167,6.218758799278971 -544,18.0,17.0,-3.0756864340087167,6.218758799278971 -544,18.0,18.0,8.958039375185187,-17.98346468163191 -544,18.0,19.0,-5.88235294117647,11.76470588235294 -544,19.0,9.0,-1.7848303152666305,3.98535828943083 -544,19.0,18.0,-5.88235294117647,11.76470588235294 -544,19.0,19.0,7.6671832564431,-15.75006417178377 -544,20.0,9.0,-5.101853820159654,10.98071411292983 -544,20.0,20.0,21.876495189895888,-45.10843276170355 -544,20.0,21.0,-16.774641369736234,34.127718648773715 -544,21.0,9.0,-2.619319553382597,5.400770303329455 -544,21.0,20.0,-16.774641369736234,34.127718648773715 -544,21.0,21.0,21.93449907537439,-43.48289181517921 -544,21.0,23.0,-2.5405381522555563,3.95440286307604 -544,22.0,14.0,-1.9683489489016612,3.976064876781356 -544,22.0,22.0,3.429754555384988,-6.965303617315433 -544,22.0,23.0,-1.4614056064833263,2.989238740534077 -544,23.0,21.0,-2.5405381522555563,3.95440286307604 -544,23.0,22.0,-1.4614056064833263,2.989238740534077 -544,23.0,23.0,5.311836702613133,-9.188263657315172 -544,23.0,24.0,-1.3098929438742493,2.287622053705056 -544,24.0,23.0,-1.3098929438742493,2.287622053705056 -544,24.0,24.0,4.495715080321987,-7.864978761969621 -544,24.0,25.0,-1.2165301194494855,1.8171440463475024 -544,24.0,26.0,-1.9692920169982515,3.760212661917064 -544,25.0,24.0,-1.2165301194494855,1.8171440463475024 -544,25.0,25.0,1.2165301194494855,-1.8171440463475024 -544,26.0,24.0,-1.9692920169982515,3.760212661917064 -544,26.0,26.0,3.652281470778589,-9.46044252232512 -544,26.0,27.0,0.0,2.608731947574922 -544,26.0,28.0,-0.99553355095268,1.881005840357816 -544,26.0,29.0,-0.6874559028276572,1.293971494797717 -544,27.0,5.0,-4.362844058012917,15.463571542897856 -544,27.0,7.0,-1.4439790613954469,4.540814658476248 -544,27.0,26.0,0.0,2.608731947574922 -544,27.0,27.0,5.806823119408364,-22.67145722159613 -544,28.0,26.0,-0.99553355095268,1.881005840357816 -544,28.0,28.0,1.9075867579849564,-3.604364401207048 -544,28.0,29.0,-0.9120532070322764,1.7233585608492326 -544,29.0,26.0,-0.6874559028276572,1.293971494797717 -544,29.0,28.0,-0.9120532070322764,1.7233585608492326 -544,29.0,29.0,1.5995091098599337,-3.0173300556469496 -545,0.0,0.0,6.765516048652632,-21.23160167089863 -545,0.0,1.0,-5.224646179885656,15.646726840803398 -545,0.0,2.0,-1.5408698687669766,5.631674830095234 -545,1.0,0.0,-5.224646179885656,15.646726840803398 -545,1.0,1.0,9.75228216552403,-30.648662892676068 -545,1.0,3.0,-1.7055303166990268,5.1973792282565086 -545,1.0,4.0,-1.1359607881738778,4.772479328281356 -545,1.0,5.0,-1.6861448807654689,5.116477495334806 -545,2.0,0.0,-1.5408698687669766,5.631674830095234 -545,2.0,2.0,9.736318911079088,-29.13794745915803 -545,2.0,3.0,-8.19544904231211,23.5308726290628 -545,3.0,1.0,-1.7055303166990268,5.1973792282565086 -545,3.0,2.0,-8.19544904231211,23.5308726290628 -545,3.0,3.0,16.314103089185693,-55.509410535254254 -545,3.0,5.0,-6.413123730174556,22.31120356548123 -545,3.0,11.0,0.0,4.191255364806866 -545,4.0,1.0,-1.1359607881738778,4.772479328281356 -545,4.0,4.0,4.089980824135861,-12.190647245055052 -545,4.0,6.0,-2.954020035961983,7.449267916773697 -545,5.0,1.0,-1.6861448807654689,5.116477495334806 -545,5.0,3.0,-6.413123730174556,22.31120356548123 -545,5.0,5.0,22.341631269034565,-82.8291478657789 -545,5.0,6.0,-3.590210423980992,11.02611441072814 -545,5.0,7.0,-6.289308176100628,22.0125786163522 -545,5.0,8.0,0.0,4.915840805411357 -545,5.0,9.0,0.0,1.8561002591115965 -545,5.0,27.0,-4.362844058012917,15.463571542897856 -545,6.0,4.0,-2.954020035961983,7.449267916773697 -545,6.0,5.0,-3.590210423980992,11.02611441072814 -545,6.0,6.0,6.544230459942975,-18.45668232750184 -545,7.0,5.0,-6.289308176100628,22.0125786163522 -545,7.0,7.0,7.733287237496075,-26.527493274828448 -545,7.0,27.0,-1.4439790613954469,4.540814658476248 -545,8.0,5.0,0.0,4.915840805411357 -545,8.0,8.0,0.0,-18.706293706293707 -545,8.0,9.0,0.0,9.090909090909092 -545,8.0,10.0,0.0,4.807692307692308 -545,9.0,5.0,0.0,1.8561002591115965 -545,9.0,8.0,0.0,9.090909090909092 -545,9.0,9.0,11.677212499257603,-37.39840237809157 -545,9.0,16.0,-3.956039125715353,10.317447719844054 -545,9.0,20.0,-5.101853820159654,10.98071411292983 -545,9.0,21.0,-2.619319553382597,5.400770303329455 -545,10.0,8.0,0.0,4.807692307692308 -545,10.0,10.0,0.0,-4.807692307692308 -545,11.0,3.0,0.0,4.191255364806866 -545,11.0,11.0,6.573961583776156,-24.424167659260668 -545,11.0,12.0,0.0,7.142857142857143 -545,11.0,13.0,-1.5265676088395577,3.1734252729654173 -545,11.0,14.0,-3.0953961826564296,6.097275864326261 -545,11.0,15.0,-1.9519977922801688,4.104359379111847 -545,12.0,11.0,0.0,7.142857142857143 -545,12.0,12.0,0.0,-7.142857142857143 -545,13.0,11.0,-1.5265676088395577,3.1734252729654173 -545,13.0,13.0,4.01751987283902,-5.424299332335067 -545,13.0,14.0,-2.4909522639994623,2.250874059369649 -545,14.0,11.0,-3.0953961826564296,6.097275864326261 -545,14.0,13.0,-2.4909522639994623,2.250874059369649 -545,14.0,14.0,9.365498545964757,-16.01163373210796 -545,14.0,17.0,-1.8108011504072024,3.687418931630696 -545,14.0,22.0,-1.9683489489016612,3.976064876781356 -545,15.0,11.0,-1.9519977922801688,4.104359379111847 -545,15.0,15.0,3.271064728633931,-8.94513365126506 -545,15.0,16.0,-1.3190669363537617,4.8407742721532125 -545,16.0,9.0,-3.956039125715353,10.317447719844054 -545,16.0,15.0,-1.3190669363537617,4.8407742721532125 -545,16.0,16.0,5.275106062069114,-15.158221991997266 -545,17.0,14.0,-1.8108011504072024,3.687418931630696 -545,17.0,17.0,4.886487584415919,-9.906177730909668 -545,17.0,18.0,-3.0756864340087167,6.218758799278971 -545,18.0,17.0,-3.0756864340087167,6.218758799278971 -545,18.0,18.0,8.958039375185187,-17.98346468163191 -545,18.0,19.0,-5.88235294117647,11.76470588235294 -545,19.0,18.0,-5.88235294117647,11.76470588235294 -545,19.0,19.0,5.88235294117647,-11.76470588235294 -545,20.0,9.0,-5.101853820159654,10.98071411292983 -545,20.0,20.0,21.876495189895888,-45.10843276170355 -545,20.0,21.0,-16.774641369736234,34.127718648773715 -545,21.0,9.0,-2.619319553382597,5.400770303329455 -545,21.0,20.0,-16.774641369736234,34.127718648773715 -545,21.0,21.0,21.93449907537439,-43.48289181517921 -545,21.0,23.0,-2.5405381522555563,3.95440286307604 -545,22.0,14.0,-1.9683489489016612,3.976064876781356 -545,22.0,22.0,3.429754555384988,-6.965303617315433 -545,22.0,23.0,-1.4614056064833263,2.989238740534077 -545,23.0,21.0,-2.5405381522555563,3.95440286307604 -545,23.0,22.0,-1.4614056064833263,2.989238740534077 -545,23.0,23.0,5.311836702613133,-9.188263657315172 -545,23.0,24.0,-1.3098929438742493,2.287622053705056 -545,24.0,23.0,-1.3098929438742493,2.287622053705056 -545,24.0,24.0,4.495715080321987,-7.864978761969621 -545,24.0,25.0,-1.2165301194494855,1.8171440463475024 -545,24.0,26.0,-1.9692920169982515,3.760212661917064 -545,25.0,24.0,-1.2165301194494855,1.8171440463475024 -545,25.0,25.0,1.2165301194494855,-1.8171440463475024 -545,26.0,24.0,-1.9692920169982515,3.760212661917064 -545,26.0,26.0,3.652281470778589,-9.46044252232512 -545,26.0,27.0,0.0,2.608731947574922 -545,26.0,28.0,-0.99553355095268,1.881005840357816 -545,26.0,29.0,-0.6874559028276572,1.293971494797717 -545,27.0,5.0,-4.362844058012917,15.463571542897856 -545,27.0,7.0,-1.4439790613954469,4.540814658476248 -545,27.0,26.0,0.0,2.608731947574922 -545,27.0,27.0,5.806823119408364,-22.67145722159613 -545,28.0,26.0,-0.99553355095268,1.881005840357816 -545,28.0,28.0,1.9075867579849564,-3.604364401207048 -545,28.0,29.0,-0.9120532070322764,1.7233585608492326 -545,29.0,26.0,-0.6874559028276572,1.293971494797717 -545,29.0,28.0,-0.9120532070322764,1.7233585608492326 -545,29.0,29.0,1.5995091098599337,-3.0173300556469496 -546,0.0,0.0,6.765516048652632,-21.23160167089863 -546,0.0,1.0,-5.224646179885656,15.646726840803398 -546,0.0,2.0,-1.5408698687669766,5.631674830095234 -546,1.0,0.0,-5.224646179885656,15.646726840803398 -546,1.0,1.0,9.75228216552403,-30.648662892676068 -546,1.0,3.0,-1.7055303166990268,5.1973792282565086 -546,1.0,4.0,-1.1359607881738778,4.772479328281356 -546,1.0,5.0,-1.6861448807654689,5.116477495334806 -546,2.0,0.0,-1.5408698687669766,5.631674830095234 -546,2.0,2.0,9.736318911079088,-29.13794745915803 -546,2.0,3.0,-8.19544904231211,23.5308726290628 -546,3.0,1.0,-1.7055303166990268,5.1973792282565086 -546,3.0,2.0,-8.19544904231211,23.5308726290628 -546,3.0,3.0,16.314103089185693,-55.509410535254254 -546,3.0,5.0,-6.413123730174556,22.31120356548123 -546,3.0,11.0,0.0,4.191255364806866 -546,4.0,1.0,-1.1359607881738778,4.772479328281356 -546,4.0,4.0,4.089980824135861,-12.190647245055052 -546,4.0,6.0,-2.954020035961983,7.449267916773697 -546,5.0,1.0,-1.6861448807654689,5.116477495334806 -546,5.0,3.0,-6.413123730174556,22.31120356548123 -546,5.0,5.0,22.341631269034565,-82.8291478657789 -546,5.0,6.0,-3.590210423980992,11.02611441072814 -546,5.0,7.0,-6.289308176100628,22.0125786163522 -546,5.0,8.0,0.0,4.915840805411357 -546,5.0,9.0,0.0,1.8561002591115965 -546,5.0,27.0,-4.362844058012917,15.463571542897856 -546,6.0,4.0,-2.954020035961983,7.449267916773697 -546,6.0,5.0,-3.590210423980992,11.02611441072814 -546,6.0,6.0,6.544230459942975,-18.45668232750184 -546,7.0,5.0,-6.289308176100628,22.0125786163522 -546,7.0,7.0,7.733287237496075,-26.527493274828448 -546,7.0,27.0,-1.4439790613954469,4.540814658476248 -546,8.0,5.0,0.0,4.915840805411357 -546,8.0,8.0,0.0,-18.706293706293707 -546,8.0,9.0,0.0,9.090909090909092 -546,8.0,10.0,0.0,4.807692307692308 -546,9.0,5.0,0.0,1.8561002591115965 -546,9.0,8.0,0.0,9.090909090909092 -546,9.0,9.0,13.462042814524237,-41.3837606675224 -546,9.0,16.0,-3.956039125715353,10.317447719844054 -546,9.0,19.0,-1.7848303152666305,3.98535828943083 -546,9.0,20.0,-5.101853820159654,10.98071411292983 -546,9.0,21.0,-2.619319553382597,5.400770303329455 -546,10.0,8.0,0.0,4.807692307692308 -546,10.0,10.0,0.0,-4.807692307692308 -546,11.0,3.0,0.0,4.191255364806866 -546,11.0,11.0,6.573961583776156,-24.424167659260668 -546,11.0,12.0,0.0,7.142857142857143 -546,11.0,13.0,-1.5265676088395577,3.1734252729654173 -546,11.0,14.0,-3.0953961826564296,6.097275864326261 -546,11.0,15.0,-1.9519977922801688,4.104359379111847 -546,12.0,11.0,0.0,7.142857142857143 -546,12.0,12.0,0.0,-7.142857142857143 -546,13.0,11.0,-1.5265676088395577,3.1734252729654173 -546,13.0,13.0,4.01751987283902,-5.424299332335067 -546,13.0,14.0,-2.4909522639994623,2.250874059369649 -546,14.0,11.0,-3.0953961826564296,6.097275864326261 -546,14.0,13.0,-2.4909522639994623,2.250874059369649 -546,14.0,14.0,9.365498545964757,-16.01163373210796 -546,14.0,17.0,-1.8108011504072024,3.687418931630696 -546,14.0,22.0,-1.9683489489016612,3.976064876781356 -546,15.0,11.0,-1.9519977922801688,4.104359379111847 -546,15.0,15.0,3.271064728633931,-8.94513365126506 -546,15.0,16.0,-1.3190669363537617,4.8407742721532125 -546,16.0,9.0,-3.956039125715353,10.317447719844054 -546,16.0,15.0,-1.3190669363537617,4.8407742721532125 -546,16.0,16.0,5.275106062069114,-15.158221991997266 -546,17.0,14.0,-1.8108011504072024,3.687418931630696 -546,17.0,17.0,4.886487584415919,-9.906177730909668 -546,17.0,18.0,-3.0756864340087167,6.218758799278971 -546,18.0,17.0,-3.0756864340087167,6.218758799278971 -546,18.0,18.0,3.0756864340087167,-6.218758799278971 -546,19.0,9.0,-1.7848303152666305,3.98535828943083 -546,19.0,19.0,1.7848303152666305,-3.98535828943083 -546,20.0,9.0,-5.101853820159654,10.98071411292983 -546,20.0,20.0,21.876495189895888,-45.10843276170355 -546,20.0,21.0,-16.774641369736234,34.127718648773715 -546,21.0,9.0,-2.619319553382597,5.400770303329455 -546,21.0,20.0,-16.774641369736234,34.127718648773715 -546,21.0,21.0,21.93449907537439,-43.48289181517921 -546,21.0,23.0,-2.5405381522555563,3.95440286307604 -546,22.0,14.0,-1.9683489489016612,3.976064876781356 -546,22.0,22.0,3.429754555384988,-6.965303617315433 -546,22.0,23.0,-1.4614056064833263,2.989238740534077 -546,23.0,21.0,-2.5405381522555563,3.95440286307604 -546,23.0,22.0,-1.4614056064833263,2.989238740534077 -546,23.0,23.0,5.311836702613133,-9.188263657315172 -546,23.0,24.0,-1.3098929438742493,2.287622053705056 -546,24.0,23.0,-1.3098929438742493,2.287622053705056 -546,24.0,24.0,4.495715080321987,-7.864978761969621 -546,24.0,25.0,-1.2165301194494855,1.8171440463475024 -546,24.0,26.0,-1.9692920169982515,3.760212661917064 -546,25.0,24.0,-1.2165301194494855,1.8171440463475024 -546,25.0,25.0,1.2165301194494855,-1.8171440463475024 -546,26.0,24.0,-1.9692920169982515,3.760212661917064 -546,26.0,26.0,3.652281470778589,-9.46044252232512 -546,26.0,27.0,0.0,2.608731947574922 -546,26.0,28.0,-0.99553355095268,1.881005840357816 -546,26.0,29.0,-0.6874559028276572,1.293971494797717 -546,27.0,5.0,-4.362844058012917,15.463571542897856 -546,27.0,7.0,-1.4439790613954469,4.540814658476248 -546,27.0,26.0,0.0,2.608731947574922 -546,27.0,27.0,5.806823119408364,-22.67145722159613 -546,28.0,26.0,-0.99553355095268,1.881005840357816 -546,28.0,28.0,1.9075867579849564,-3.604364401207048 -546,28.0,29.0,-0.9120532070322764,1.7233585608492326 -546,29.0,26.0,-0.6874559028276572,1.293971494797717 -546,29.0,28.0,-0.9120532070322764,1.7233585608492326 -546,29.0,29.0,1.5995091098599337,-3.0173300556469496 -547,0.0,0.0,6.765516048652632,-21.23160167089863 -547,0.0,1.0,-5.224646179885656,15.646726840803398 -547,0.0,2.0,-1.5408698687669766,5.631674830095234 -547,1.0,0.0,-5.224646179885656,15.646726840803398 -547,1.0,1.0,8.61632137735015,-25.897083564394716 -547,1.0,3.0,-1.7055303166990268,5.1973792282565086 -547,1.0,5.0,-1.6861448807654689,5.116477495334806 -547,2.0,0.0,-1.5408698687669766,5.631674830095234 -547,2.0,2.0,9.736318911079088,-29.13794745915803 -547,2.0,3.0,-8.19544904231211,23.5308726290628 -547,3.0,1.0,-1.7055303166990268,5.1973792282565086 -547,3.0,2.0,-8.19544904231211,23.5308726290628 -547,3.0,3.0,16.314103089185693,-51.01235542280054 -547,3.0,5.0,-6.413123730174556,22.31120356548123 -547,4.0,4.0,2.954020035961983,-7.439067916773697 -547,4.0,6.0,-2.954020035961983,7.449267916773697 -547,5.0,1.0,-1.6861448807654689,5.116477495334806 -547,5.0,3.0,-6.413123730174556,22.31120356548123 -547,5.0,5.0,22.341631269034565,-82.8291478657789 -547,5.0,6.0,-3.590210423980992,11.02611441072814 -547,5.0,7.0,-6.289308176100628,22.0125786163522 -547,5.0,8.0,0.0,4.915840805411357 -547,5.0,9.0,0.0,1.8561002591115965 -547,5.0,27.0,-4.362844058012917,15.463571542897856 -547,6.0,4.0,-2.954020035961983,7.449267916773697 -547,6.0,5.0,-3.590210423980992,11.02611441072814 -547,6.0,6.0,6.544230459942975,-18.45668232750184 -547,7.0,5.0,-6.289308176100628,22.0125786163522 -547,7.0,7.0,7.733287237496075,-26.527493274828448 -547,7.0,27.0,-1.4439790613954469,4.540814658476248 -547,8.0,5.0,0.0,4.915840805411357 -547,8.0,8.0,0.0,-18.706293706293707 -547,8.0,9.0,0.0,9.090909090909092 -547,8.0,10.0,0.0,4.807692307692308 -547,9.0,5.0,0.0,1.8561002591115965 -547,9.0,8.0,0.0,9.090909090909092 -547,9.0,9.0,10.842723261141638,-35.98299036419294 -547,9.0,16.0,-3.956039125715353,10.317447719844054 -547,9.0,19.0,-1.7848303152666305,3.98535828943083 -547,9.0,20.0,-5.101853820159654,10.98071411292983 -547,10.0,8.0,0.0,4.807692307692308 -547,10.0,10.0,0.0,-4.807692307692308 -547,11.0,11.0,6.573961583776156,-20.517917659260668 -547,11.0,12.0,0.0,7.142857142857143 -547,11.0,13.0,-1.5265676088395577,3.1734252729654173 -547,11.0,14.0,-3.0953961826564296,6.097275864326261 -547,11.0,15.0,-1.9519977922801688,4.104359379111847 -547,12.0,11.0,0.0,7.142857142857143 -547,12.0,12.0,0.0,-7.142857142857143 -547,13.0,11.0,-1.5265676088395577,3.1734252729654173 -547,13.0,13.0,4.01751987283902,-5.424299332335067 -547,13.0,14.0,-2.4909522639994623,2.250874059369649 -547,14.0,11.0,-3.0953961826564296,6.097275864326261 -547,14.0,13.0,-2.4909522639994623,2.250874059369649 -547,14.0,14.0,9.365498545964757,-16.01163373210796 -547,14.0,17.0,-1.8108011504072024,3.687418931630696 -547,14.0,22.0,-1.9683489489016612,3.976064876781356 -547,15.0,11.0,-1.9519977922801688,4.104359379111847 -547,15.0,15.0,3.271064728633931,-8.94513365126506 -547,15.0,16.0,-1.3190669363537617,4.8407742721532125 -547,16.0,9.0,-3.956039125715353,10.317447719844054 -547,16.0,15.0,-1.3190669363537617,4.8407742721532125 -547,16.0,16.0,5.275106062069114,-15.158221991997266 -547,17.0,14.0,-1.8108011504072024,3.687418931630696 -547,17.0,17.0,4.886487584415919,-9.906177730909668 -547,17.0,18.0,-3.0756864340087167,6.218758799278971 -547,18.0,17.0,-3.0756864340087167,6.218758799278971 -547,18.0,18.0,8.958039375185187,-17.98346468163191 -547,18.0,19.0,-5.88235294117647,11.76470588235294 -547,19.0,9.0,-1.7848303152666305,3.98535828943083 -547,19.0,18.0,-5.88235294117647,11.76470588235294 -547,19.0,19.0,7.6671832564431,-15.75006417178377 -547,20.0,9.0,-5.101853820159654,10.98071411292983 -547,20.0,20.0,21.876495189895888,-45.10843276170355 -547,20.0,21.0,-16.774641369736234,34.127718648773715 -547,21.0,20.0,-16.774641369736234,34.127718648773715 -547,21.0,21.0,19.31517952199179,-38.08212151184976 -547,21.0,23.0,-2.5405381522555563,3.95440286307604 -547,22.0,14.0,-1.9683489489016612,3.976064876781356 -547,22.0,22.0,3.429754555384988,-6.965303617315433 -547,22.0,23.0,-1.4614056064833263,2.989238740534077 -547,23.0,21.0,-2.5405381522555563,3.95440286307604 -547,23.0,22.0,-1.4614056064833263,2.989238740534077 -547,23.0,23.0,5.311836702613133,-9.188263657315172 -547,23.0,24.0,-1.3098929438742493,2.287622053705056 -547,24.0,23.0,-1.3098929438742493,2.287622053705056 -547,24.0,24.0,4.495715080321987,-7.864978761969621 -547,24.0,25.0,-1.2165301194494855,1.8171440463475024 -547,24.0,26.0,-1.9692920169982515,3.760212661917064 -547,25.0,24.0,-1.2165301194494855,1.8171440463475024 -547,25.0,25.0,1.2165301194494855,-1.8171440463475024 -547,26.0,24.0,-1.9692920169982515,3.760212661917064 -547,26.0,26.0,3.652281470778589,-9.46044252232512 -547,26.0,27.0,0.0,2.608731947574922 -547,26.0,28.0,-0.99553355095268,1.881005840357816 -547,26.0,29.0,-0.6874559028276572,1.293971494797717 -547,27.0,5.0,-4.362844058012917,15.463571542897856 -547,27.0,7.0,-1.4439790613954469,4.540814658476248 -547,27.0,26.0,0.0,2.608731947574922 -547,27.0,27.0,5.806823119408364,-22.67145722159613 -547,28.0,26.0,-0.99553355095268,1.881005840357816 -547,28.0,28.0,1.9075867579849564,-3.604364401207048 -547,28.0,29.0,-0.9120532070322764,1.7233585608492326 -547,29.0,26.0,-0.6874559028276572,1.293971494797717 -547,29.0,28.0,-0.9120532070322764,1.7233585608492326 -547,29.0,29.0,1.5995091098599337,-3.0173300556469496 -548,0.0,0.0,6.765516048652632,-21.23160167089863 -548,0.0,1.0,-5.224646179885656,15.646726840803398 -548,0.0,2.0,-1.5408698687669766,5.631674830095234 -548,1.0,0.0,-5.224646179885656,15.646726840803398 -548,1.0,1.0,9.75228216552403,-30.648662892676068 -548,1.0,3.0,-1.7055303166990268,5.1973792282565086 -548,1.0,4.0,-1.1359607881738778,4.772479328281356 -548,1.0,5.0,-1.6861448807654689,5.116477495334806 -548,2.0,0.0,-1.5408698687669766,5.631674830095234 -548,2.0,2.0,9.736318911079088,-29.13794745915803 -548,2.0,3.0,-8.19544904231211,23.5308726290628 -548,3.0,1.0,-1.7055303166990268,5.1973792282565086 -548,3.0,2.0,-8.19544904231211,23.5308726290628 -548,3.0,3.0,16.314103089185693,-55.509410535254254 -548,3.0,5.0,-6.413123730174556,22.31120356548123 -548,3.0,11.0,0.0,4.191255364806866 -548,4.0,1.0,-1.1359607881738778,4.772479328281356 -548,4.0,4.0,1.1359607881738778,-4.751579328281355 -548,5.0,1.0,-1.6861448807654689,5.116477495334806 -548,5.0,3.0,-6.413123730174556,22.31120356548123 -548,5.0,5.0,22.341631269034565,-82.8291478657789 -548,5.0,6.0,-3.590210423980992,11.02611441072814 -548,5.0,7.0,-6.289308176100628,22.0125786163522 -548,5.0,8.0,0.0,4.915840805411357 -548,5.0,9.0,0.0,1.8561002591115965 -548,5.0,27.0,-4.362844058012917,15.463571542897856 -548,6.0,5.0,-3.590210423980992,11.02611441072814 -548,6.0,6.0,3.590210423980992,-11.01761441072814 -548,7.0,5.0,-6.289308176100628,22.0125786163522 -548,7.0,7.0,7.733287237496075,-26.527493274828448 -548,7.0,27.0,-1.4439790613954469,4.540814658476248 -548,8.0,5.0,0.0,4.915840805411357 -548,8.0,8.0,0.0,-18.706293706293707 -548,8.0,9.0,0.0,9.090909090909092 -548,8.0,10.0,0.0,4.807692307692308 -548,9.0,5.0,0.0,1.8561002591115965 -548,9.0,8.0,0.0,9.090909090909092 -548,9.0,9.0,13.462042814524237,-41.3837606675224 -548,9.0,16.0,-3.956039125715353,10.317447719844054 -548,9.0,19.0,-1.7848303152666305,3.98535828943083 -548,9.0,20.0,-5.101853820159654,10.98071411292983 -548,9.0,21.0,-2.619319553382597,5.400770303329455 -548,10.0,8.0,0.0,4.807692307692308 -548,10.0,10.0,0.0,-4.807692307692308 -548,11.0,3.0,0.0,4.191255364806866 -548,11.0,11.0,6.573961583776156,-24.424167659260668 -548,11.0,12.0,0.0,7.142857142857143 -548,11.0,13.0,-1.5265676088395577,3.1734252729654173 -548,11.0,14.0,-3.0953961826564296,6.097275864326261 -548,11.0,15.0,-1.9519977922801688,4.104359379111847 -548,12.0,11.0,0.0,7.142857142857143 -548,12.0,12.0,0.0,-7.142857142857143 -548,13.0,11.0,-1.5265676088395577,3.1734252729654173 -548,13.0,13.0,4.01751987283902,-5.424299332335067 -548,13.0,14.0,-2.4909522639994623,2.250874059369649 -548,14.0,11.0,-3.0953961826564296,6.097275864326261 -548,14.0,13.0,-2.4909522639994623,2.250874059369649 -548,14.0,14.0,9.365498545964757,-16.01163373210796 -548,14.0,17.0,-1.8108011504072024,3.687418931630696 -548,14.0,22.0,-1.9683489489016612,3.976064876781356 -548,15.0,11.0,-1.9519977922801688,4.104359379111847 -548,15.0,15.0,3.271064728633931,-8.94513365126506 -548,15.0,16.0,-1.3190669363537617,4.8407742721532125 -548,16.0,9.0,-3.956039125715353,10.317447719844054 -548,16.0,15.0,-1.3190669363537617,4.8407742721532125 -548,16.0,16.0,5.275106062069114,-15.158221991997266 -548,17.0,14.0,-1.8108011504072024,3.687418931630696 -548,17.0,17.0,4.886487584415919,-9.906177730909668 -548,17.0,18.0,-3.0756864340087167,6.218758799278971 -548,18.0,17.0,-3.0756864340087167,6.218758799278971 -548,18.0,18.0,8.958039375185187,-17.98346468163191 -548,18.0,19.0,-5.88235294117647,11.76470588235294 -548,19.0,9.0,-1.7848303152666305,3.98535828943083 -548,19.0,18.0,-5.88235294117647,11.76470588235294 -548,19.0,19.0,7.6671832564431,-15.75006417178377 -548,20.0,9.0,-5.101853820159654,10.98071411292983 -548,20.0,20.0,21.876495189895888,-45.10843276170355 -548,20.0,21.0,-16.774641369736234,34.127718648773715 -548,21.0,9.0,-2.619319553382597,5.400770303329455 -548,21.0,20.0,-16.774641369736234,34.127718648773715 -548,21.0,21.0,21.93449907537439,-43.48289181517921 -548,21.0,23.0,-2.5405381522555563,3.95440286307604 -548,22.0,14.0,-1.9683489489016612,3.976064876781356 -548,22.0,22.0,3.429754555384988,-6.965303617315433 -548,22.0,23.0,-1.4614056064833263,2.989238740534077 -548,23.0,21.0,-2.5405381522555563,3.95440286307604 -548,23.0,22.0,-1.4614056064833263,2.989238740534077 -548,23.0,23.0,5.311836702613133,-9.188263657315172 -548,23.0,24.0,-1.3098929438742493,2.287622053705056 -548,24.0,23.0,-1.3098929438742493,2.287622053705056 -548,24.0,24.0,4.495715080321987,-7.864978761969621 -548,24.0,25.0,-1.2165301194494855,1.8171440463475024 -548,24.0,26.0,-1.9692920169982515,3.760212661917064 -548,25.0,24.0,-1.2165301194494855,1.8171440463475024 -548,25.0,25.0,1.2165301194494855,-1.8171440463475024 -548,26.0,24.0,-1.9692920169982515,3.760212661917064 -548,26.0,26.0,3.652281470778589,-9.46044252232512 -548,26.0,27.0,0.0,2.608731947574922 -548,26.0,28.0,-0.99553355095268,1.881005840357816 -548,26.0,29.0,-0.6874559028276572,1.293971494797717 -548,27.0,5.0,-4.362844058012917,15.463571542897856 -548,27.0,7.0,-1.4439790613954469,4.540814658476248 -548,27.0,26.0,0.0,2.608731947574922 -548,27.0,27.0,5.806823119408364,-22.67145722159613 -548,28.0,26.0,-0.99553355095268,1.881005840357816 -548,28.0,28.0,1.9075867579849564,-3.604364401207048 -548,28.0,29.0,-0.9120532070322764,1.7233585608492326 -548,29.0,26.0,-0.6874559028276572,1.293971494797717 -548,29.0,28.0,-0.9120532070322764,1.7233585608492326 -548,29.0,29.0,1.5995091098599337,-3.0173300556469496 -549,0.0,0.0,6.765516048652632,-21.23160167089863 -549,0.0,1.0,-5.224646179885656,15.646726840803398 -549,0.0,2.0,-1.5408698687669766,5.631674830095234 -549,1.0,0.0,-5.224646179885656,15.646726840803398 -549,1.0,1.0,9.75228216552403,-30.648662892676068 -549,1.0,3.0,-1.7055303166990268,5.1973792282565086 -549,1.0,4.0,-1.1359607881738778,4.772479328281356 -549,1.0,5.0,-1.6861448807654689,5.116477495334806 -549,2.0,0.0,-1.5408698687669766,5.631674830095234 -549,2.0,2.0,9.736318911079088,-29.13794745915803 -549,2.0,3.0,-8.19544904231211,23.5308726290628 -549,3.0,1.0,-1.7055303166990268,5.1973792282565086 -549,3.0,2.0,-8.19544904231211,23.5308726290628 -549,3.0,3.0,16.314103089185693,-55.509410535254254 -549,3.0,5.0,-6.413123730174556,22.31120356548123 -549,3.0,11.0,0.0,4.191255364806866 -549,4.0,1.0,-1.1359607881738778,4.772479328281356 -549,4.0,4.0,4.089980824135861,-12.190647245055052 -549,4.0,6.0,-2.954020035961983,7.449267916773697 -549,5.0,1.0,-1.6861448807654689,5.116477495334806 -549,5.0,3.0,-6.413123730174556,22.31120356548123 -549,5.0,5.0,22.341631269034565,-82.8291478657789 -549,5.0,6.0,-3.590210423980992,11.02611441072814 -549,5.0,7.0,-6.289308176100628,22.0125786163522 -549,5.0,8.0,0.0,4.915840805411357 -549,5.0,9.0,0.0,1.8561002591115965 -549,5.0,27.0,-4.362844058012917,15.463571542897856 -549,6.0,4.0,-2.954020035961983,7.449267916773697 -549,6.0,5.0,-3.590210423980992,11.02611441072814 -549,6.0,6.0,6.544230459942975,-18.45668232750184 -549,7.0,5.0,-6.289308176100628,22.0125786163522 -549,7.0,7.0,7.733287237496075,-26.527493274828448 -549,7.0,27.0,-1.4439790613954469,4.540814658476248 -549,8.0,5.0,0.0,4.915840805411357 -549,8.0,8.0,0.0,-18.706293706293707 -549,8.0,9.0,0.0,9.090909090909092 -549,8.0,10.0,0.0,4.807692307692308 -549,9.0,5.0,0.0,1.8561002591115965 -549,9.0,8.0,0.0,9.090909090909092 -549,9.0,9.0,13.462042814524237,-41.3837606675224 -549,9.0,16.0,-3.956039125715353,10.317447719844054 -549,9.0,19.0,-1.7848303152666305,3.98535828943083 -549,9.0,20.0,-5.101853820159654,10.98071411292983 -549,9.0,21.0,-2.619319553382597,5.400770303329455 -549,10.0,8.0,0.0,4.807692307692308 -549,10.0,10.0,0.0,-4.807692307692308 -549,11.0,3.0,0.0,4.191255364806866 -549,11.0,11.0,6.573961583776156,-24.424167659260668 -549,11.0,12.0,0.0,7.142857142857143 -549,11.0,13.0,-1.5265676088395577,3.1734252729654173 -549,11.0,14.0,-3.0953961826564296,6.097275864326261 -549,11.0,15.0,-1.9519977922801688,4.104359379111847 -549,12.0,11.0,0.0,7.142857142857143 -549,12.0,12.0,0.0,-7.142857142857143 -549,13.0,11.0,-1.5265676088395577,3.1734252729654173 -549,13.0,13.0,4.01751987283902,-5.424299332335067 -549,13.0,14.0,-2.4909522639994623,2.250874059369649 -549,14.0,11.0,-3.0953961826564296,6.097275864326261 -549,14.0,13.0,-2.4909522639994623,2.250874059369649 -549,14.0,14.0,9.365498545964757,-16.01163373210796 -549,14.0,17.0,-1.8108011504072024,3.687418931630696 -549,14.0,22.0,-1.9683489489016612,3.976064876781356 -549,15.0,11.0,-1.9519977922801688,4.104359379111847 -549,15.0,15.0,3.271064728633931,-8.94513365126506 -549,15.0,16.0,-1.3190669363537617,4.8407742721532125 -549,16.0,9.0,-3.956039125715353,10.317447719844054 -549,16.0,15.0,-1.3190669363537617,4.8407742721532125 -549,16.0,16.0,5.275106062069114,-15.158221991997266 -549,17.0,14.0,-1.8108011504072024,3.687418931630696 -549,17.0,17.0,4.886487584415919,-9.906177730909668 -549,17.0,18.0,-3.0756864340087167,6.218758799278971 -549,18.0,17.0,-3.0756864340087167,6.218758799278971 -549,18.0,18.0,8.958039375185187,-17.98346468163191 -549,18.0,19.0,-5.88235294117647,11.76470588235294 -549,19.0,9.0,-1.7848303152666305,3.98535828943083 -549,19.0,18.0,-5.88235294117647,11.76470588235294 -549,19.0,19.0,7.6671832564431,-15.75006417178377 -549,20.0,9.0,-5.101853820159654,10.98071411292983 -549,20.0,20.0,21.876495189895888,-45.10843276170355 -549,20.0,21.0,-16.774641369736234,34.127718648773715 -549,21.0,9.0,-2.619319553382597,5.400770303329455 -549,21.0,20.0,-16.774641369736234,34.127718648773715 -549,21.0,21.0,21.93449907537439,-43.48289181517921 -549,21.0,23.0,-2.5405381522555563,3.95440286307604 -549,22.0,14.0,-1.9683489489016612,3.976064876781356 -549,22.0,22.0,3.429754555384988,-6.965303617315433 -549,22.0,23.0,-1.4614056064833263,2.989238740534077 -549,23.0,21.0,-2.5405381522555563,3.95440286307604 -549,23.0,22.0,-1.4614056064833263,2.989238740534077 -549,23.0,23.0,5.311836702613133,-9.188263657315172 -549,23.0,24.0,-1.3098929438742493,2.287622053705056 -549,24.0,23.0,-1.3098929438742493,2.287622053705056 -549,24.0,24.0,4.495715080321987,-7.864978761969621 -549,24.0,25.0,-1.2165301194494855,1.8171440463475024 -549,24.0,26.0,-1.9692920169982515,3.760212661917064 -549,25.0,24.0,-1.2165301194494855,1.8171440463475024 -549,25.0,25.0,1.2165301194494855,-1.8171440463475024 -549,26.0,24.0,-1.9692920169982515,3.760212661917064 -549,26.0,26.0,3.652281470778589,-9.46044252232512 -549,26.0,27.0,0.0,2.608731947574922 -549,26.0,28.0,-0.99553355095268,1.881005840357816 -549,26.0,29.0,-0.6874559028276572,1.293971494797717 -549,27.0,5.0,-4.362844058012917,15.463571542897856 -549,27.0,7.0,-1.4439790613954469,4.540814658476248 -549,27.0,26.0,0.0,2.608731947574922 -549,27.0,27.0,5.806823119408364,-22.67145722159613 -549,28.0,26.0,-0.99553355095268,1.881005840357816 -549,28.0,28.0,1.9075867579849564,-3.604364401207048 -549,28.0,29.0,-0.9120532070322764,1.7233585608492326 -549,29.0,26.0,-0.6874559028276572,1.293971494797717 -549,29.0,28.0,-0.9120532070322764,1.7233585608492326 -549,29.0,29.0,1.5995091098599337,-3.0173300556469496 -550,0.0,0.0,6.765516048652632,-21.23160167089863 -550,0.0,1.0,-5.224646179885656,15.646726840803398 -550,0.0,2.0,-1.5408698687669766,5.631674830095234 -550,1.0,0.0,-5.224646179885656,15.646726840803398 -550,1.0,1.0,6.910791060651125,-20.718104336138204 -550,1.0,5.0,-1.6861448807654689,5.116477495334806 -550,2.0,0.0,-1.5408698687669766,5.631674830095234 -550,2.0,2.0,9.736318911079088,-29.13794745915803 -550,2.0,3.0,-8.19544904231211,23.5308726290628 -550,3.0,2.0,-8.19544904231211,23.5308726290628 -550,3.0,3.0,14.608572772486664,-50.33043130699775 -550,3.0,5.0,-6.413123730174556,22.31120356548123 -550,3.0,11.0,0.0,4.191255364806866 -550,4.0,4.0,2.954020035961983,-7.439067916773697 -550,4.0,6.0,-2.954020035961983,7.449267916773697 -550,5.0,1.0,-1.6861448807654689,5.116477495334806 -550,5.0,3.0,-6.413123730174556,22.31120356548123 -550,5.0,5.0,22.341631269034565,-82.8291478657789 -550,5.0,6.0,-3.590210423980992,11.02611441072814 -550,5.0,7.0,-6.289308176100628,22.0125786163522 -550,5.0,8.0,0.0,4.915840805411357 -550,5.0,9.0,0.0,1.8561002591115965 -550,5.0,27.0,-4.362844058012917,15.463571542897856 -550,6.0,4.0,-2.954020035961983,7.449267916773697 -550,6.0,5.0,-3.590210423980992,11.02611441072814 -550,6.0,6.0,6.544230459942975,-18.45668232750184 -550,7.0,5.0,-6.289308176100628,22.0125786163522 -550,7.0,7.0,7.733287237496075,-26.527493274828448 -550,7.0,27.0,-1.4439790613954469,4.540814658476248 -550,8.0,5.0,0.0,4.915840805411357 -550,8.0,8.0,0.0,-18.706293706293707 -550,8.0,9.0,0.0,9.090909090909092 -550,8.0,10.0,0.0,4.807692307692308 -550,9.0,5.0,0.0,1.8561002591115965 -550,9.0,8.0,0.0,9.090909090909092 -550,9.0,9.0,13.462042814524237,-41.3837606675224 -550,9.0,16.0,-3.956039125715353,10.317447719844054 -550,9.0,19.0,-1.7848303152666305,3.98535828943083 -550,9.0,20.0,-5.101853820159654,10.98071411292983 -550,9.0,21.0,-2.619319553382597,5.400770303329455 -550,10.0,8.0,0.0,4.807692307692308 -550,10.0,10.0,0.0,-4.807692307692308 -550,11.0,3.0,0.0,4.191255364806866 -550,11.0,11.0,6.573961583776156,-24.424167659260668 -550,11.0,12.0,0.0,7.142857142857143 -550,11.0,13.0,-1.5265676088395577,3.1734252729654173 -550,11.0,14.0,-3.0953961826564296,6.097275864326261 -550,11.0,15.0,-1.9519977922801688,4.104359379111847 -550,12.0,11.0,0.0,7.142857142857143 -550,12.0,12.0,0.0,-7.142857142857143 -550,13.0,11.0,-1.5265676088395577,3.1734252729654173 -550,13.0,13.0,4.01751987283902,-5.424299332335067 -550,13.0,14.0,-2.4909522639994623,2.250874059369649 -550,14.0,11.0,-3.0953961826564296,6.097275864326261 -550,14.0,13.0,-2.4909522639994623,2.250874059369649 -550,14.0,14.0,9.365498545964757,-16.01163373210796 -550,14.0,17.0,-1.8108011504072024,3.687418931630696 -550,14.0,22.0,-1.9683489489016612,3.976064876781356 -550,15.0,11.0,-1.9519977922801688,4.104359379111847 -550,15.0,15.0,3.271064728633931,-8.94513365126506 -550,15.0,16.0,-1.3190669363537617,4.8407742721532125 -550,16.0,9.0,-3.956039125715353,10.317447719844054 -550,16.0,15.0,-1.3190669363537617,4.8407742721532125 -550,16.0,16.0,5.275106062069114,-15.158221991997266 -550,17.0,14.0,-1.8108011504072024,3.687418931630696 -550,17.0,17.0,4.886487584415919,-9.906177730909668 -550,17.0,18.0,-3.0756864340087167,6.218758799278971 -550,18.0,17.0,-3.0756864340087167,6.218758799278971 -550,18.0,18.0,8.958039375185187,-17.98346468163191 -550,18.0,19.0,-5.88235294117647,11.76470588235294 -550,19.0,9.0,-1.7848303152666305,3.98535828943083 -550,19.0,18.0,-5.88235294117647,11.76470588235294 -550,19.0,19.0,7.6671832564431,-15.75006417178377 -550,20.0,9.0,-5.101853820159654,10.98071411292983 -550,20.0,20.0,21.876495189895888,-45.10843276170355 -550,20.0,21.0,-16.774641369736234,34.127718648773715 -550,21.0,9.0,-2.619319553382597,5.400770303329455 -550,21.0,20.0,-16.774641369736234,34.127718648773715 -550,21.0,21.0,21.93449907537439,-43.48289181517921 -550,21.0,23.0,-2.5405381522555563,3.95440286307604 -550,22.0,14.0,-1.9683489489016612,3.976064876781356 -550,22.0,22.0,1.9683489489016612,-3.976064876781356 -550,23.0,21.0,-2.5405381522555563,3.95440286307604 -550,23.0,23.0,3.850431096129806,-6.199024916781094 -550,23.0,24.0,-1.3098929438742493,2.287622053705056 -550,24.0,23.0,-1.3098929438742493,2.287622053705056 -550,24.0,24.0,4.495715080321987,-7.864978761969621 -550,24.0,25.0,-1.2165301194494855,1.8171440463475024 -550,24.0,26.0,-1.9692920169982515,3.760212661917064 -550,25.0,24.0,-1.2165301194494855,1.8171440463475024 -550,25.0,25.0,1.2165301194494855,-1.8171440463475024 -550,26.0,24.0,-1.9692920169982515,3.760212661917064 -550,26.0,26.0,3.652281470778589,-9.46044252232512 -550,26.0,27.0,0.0,2.608731947574922 -550,26.0,28.0,-0.99553355095268,1.881005840357816 -550,26.0,29.0,-0.6874559028276572,1.293971494797717 -550,27.0,5.0,-4.362844058012917,15.463571542897856 -550,27.0,7.0,-1.4439790613954469,4.540814658476248 -550,27.0,26.0,0.0,2.608731947574922 -550,27.0,27.0,5.806823119408364,-22.67145722159613 -550,28.0,26.0,-0.99553355095268,1.881005840357816 -550,28.0,28.0,0.99553355095268,-1.881005840357816 -550,29.0,26.0,-0.6874559028276572,1.293971494797717 -550,29.0,29.0,0.6874559028276572,-1.293971494797717 -551,0.0,0.0,1.5408698687669766,-5.611274830095233 -551,0.0,2.0,-1.5408698687669766,5.631674830095234 -551,1.0,1.0,3.391675197464496,-10.276756723591316 -551,1.0,3.0,-1.7055303166990268,5.1973792282565086 -551,1.0,5.0,-1.6861448807654689,5.116477495334806 -551,2.0,0.0,-1.5408698687669766,5.631674830095234 -551,2.0,2.0,9.736318911079088,-29.13794745915803 -551,2.0,3.0,-8.19544904231211,23.5308726290628 -551,3.0,1.0,-1.7055303166990268,5.1973792282565086 -551,3.0,2.0,-8.19544904231211,23.5308726290628 -551,3.0,3.0,9.900979359011137,-33.202706969773025 -551,3.0,11.0,0.0,4.191255364806866 -551,4.0,4.0,2.954020035961983,-7.439067916773697 -551,4.0,6.0,-2.954020035961983,7.449267916773697 -551,5.0,1.0,-1.6861448807654689,5.116477495334806 -551,5.0,5.0,15.928507538860009,-60.52244430029767 -551,5.0,6.0,-3.590210423980992,11.02611441072814 -551,5.0,7.0,-6.289308176100628,22.0125786163522 -551,5.0,8.0,0.0,4.915840805411357 -551,5.0,9.0,0.0,1.8561002591115965 -551,5.0,27.0,-4.362844058012917,15.463571542897856 -551,6.0,4.0,-2.954020035961983,7.449267916773697 -551,6.0,5.0,-3.590210423980992,11.02611441072814 -551,6.0,6.0,6.544230459942975,-18.45668232750184 -551,7.0,5.0,-6.289308176100628,22.0125786163522 -551,7.0,7.0,7.733287237496075,-26.527493274828448 -551,7.0,27.0,-1.4439790613954469,4.540814658476248 -551,8.0,5.0,0.0,4.915840805411357 -551,8.0,8.0,0.0,-18.706293706293707 -551,8.0,9.0,0.0,9.090909090909092 -551,8.0,10.0,0.0,4.807692307692308 -551,9.0,5.0,0.0,1.8561002591115965 -551,9.0,8.0,0.0,9.090909090909092 -551,9.0,9.0,9.506003688808882,-31.06631294767834 -551,9.0,19.0,-1.7848303152666305,3.98535828943083 -551,9.0,20.0,-5.101853820159654,10.98071411292983 -551,9.0,21.0,-2.619319553382597,5.400770303329455 -551,10.0,8.0,0.0,4.807692307692308 -551,10.0,10.0,0.0,-4.807692307692308 -551,11.0,3.0,0.0,4.191255364806866 -551,11.0,11.0,6.573961583776156,-24.424167659260668 -551,11.0,12.0,0.0,7.142857142857143 -551,11.0,13.0,-1.5265676088395577,3.1734252729654173 -551,11.0,14.0,-3.0953961826564296,6.097275864326261 -551,11.0,15.0,-1.9519977922801688,4.104359379111847 -551,12.0,11.0,0.0,7.142857142857143 -551,12.0,12.0,0.0,-7.142857142857143 -551,13.0,11.0,-1.5265676088395577,3.1734252729654173 -551,13.0,13.0,4.01751987283902,-5.424299332335067 -551,13.0,14.0,-2.4909522639994623,2.250874059369649 -551,14.0,11.0,-3.0953961826564296,6.097275864326261 -551,14.0,13.0,-2.4909522639994623,2.250874059369649 -551,14.0,14.0,9.365498545964757,-16.01163373210796 -551,14.0,17.0,-1.8108011504072024,3.687418931630696 -551,14.0,22.0,-1.9683489489016612,3.976064876781356 -551,15.0,11.0,-1.9519977922801688,4.104359379111847 -551,15.0,15.0,3.271064728633931,-8.94513365126506 -551,15.0,16.0,-1.3190669363537617,4.8407742721532125 -551,16.0,15.0,-1.3190669363537617,4.8407742721532125 -551,16.0,16.0,1.3190669363537617,-4.8407742721532125 -551,17.0,14.0,-1.8108011504072024,3.687418931630696 -551,17.0,17.0,4.886487584415919,-9.906177730909668 -551,17.0,18.0,-3.0756864340087167,6.218758799278971 -551,18.0,17.0,-3.0756864340087167,6.218758799278971 -551,18.0,18.0,8.958039375185187,-17.98346468163191 -551,18.0,19.0,-5.88235294117647,11.76470588235294 -551,19.0,9.0,-1.7848303152666305,3.98535828943083 -551,19.0,18.0,-5.88235294117647,11.76470588235294 -551,19.0,19.0,7.6671832564431,-15.75006417178377 -551,20.0,9.0,-5.101853820159654,10.98071411292983 -551,20.0,20.0,21.876495189895888,-45.10843276170355 -551,20.0,21.0,-16.774641369736234,34.127718648773715 -551,21.0,9.0,-2.619319553382597,5.400770303329455 -551,21.0,20.0,-16.774641369736234,34.127718648773715 -551,21.0,21.0,21.93449907537439,-43.48289181517921 -551,21.0,23.0,-2.5405381522555563,3.95440286307604 -551,22.0,14.0,-1.9683489489016612,3.976064876781356 -551,22.0,22.0,3.429754555384988,-6.965303617315433 -551,22.0,23.0,-1.4614056064833263,2.989238740534077 -551,23.0,21.0,-2.5405381522555563,3.95440286307604 -551,23.0,22.0,-1.4614056064833263,2.989238740534077 -551,23.0,23.0,5.311836702613133,-9.188263657315172 -551,23.0,24.0,-1.3098929438742493,2.287622053705056 -551,24.0,23.0,-1.3098929438742493,2.287622053705056 -551,24.0,24.0,4.495715080321987,-7.864978761969621 -551,24.0,25.0,-1.2165301194494855,1.8171440463475024 -551,24.0,26.0,-1.9692920169982515,3.760212661917064 -551,25.0,24.0,-1.2165301194494855,1.8171440463475024 -551,25.0,25.0,1.2165301194494855,-1.8171440463475024 -551,26.0,24.0,-1.9692920169982515,3.760212661917064 -551,26.0,26.0,3.652281470778589,-9.46044252232512 -551,26.0,27.0,0.0,2.608731947574922 -551,26.0,28.0,-0.99553355095268,1.881005840357816 -551,26.0,29.0,-0.6874559028276572,1.293971494797717 -551,27.0,5.0,-4.362844058012917,15.463571542897856 -551,27.0,7.0,-1.4439790613954469,4.540814658476248 -551,27.0,26.0,0.0,2.608731947574922 -551,27.0,27.0,5.806823119408364,-22.67145722159613 -551,28.0,26.0,-0.99553355095268,1.881005840357816 -551,28.0,28.0,0.99553355095268,-1.881005840357816 -551,29.0,26.0,-0.6874559028276572,1.293971494797717 -551,29.0,29.0,0.6874559028276572,-1.293971494797717 -552,0.0,0.0,6.765516048652632,-21.23160167089863 -552,0.0,1.0,-5.224646179885656,15.646726840803398 -552,0.0,2.0,-1.5408698687669766,5.631674830095234 -552,1.0,0.0,-5.224646179885656,15.646726840803398 -552,1.0,1.0,9.75228216552403,-30.648662892676068 -552,1.0,3.0,-1.7055303166990268,5.1973792282565086 -552,1.0,4.0,-1.1359607881738778,4.772479328281356 -552,1.0,5.0,-1.6861448807654689,5.116477495334806 -552,2.0,0.0,-1.5408698687669766,5.631674830095234 -552,2.0,2.0,9.736318911079088,-29.13794745915803 -552,2.0,3.0,-8.19544904231211,23.5308726290628 -552,3.0,1.0,-1.7055303166990268,5.1973792282565086 -552,3.0,2.0,-8.19544904231211,23.5308726290628 -552,3.0,3.0,16.314103089185693,-55.509410535254254 -552,3.0,5.0,-6.413123730174556,22.31120356548123 -552,3.0,11.0,0.0,4.191255364806866 -552,4.0,1.0,-1.1359607881738778,4.772479328281356 -552,4.0,4.0,4.089980824135861,-12.190647245055052 -552,4.0,6.0,-2.954020035961983,7.449267916773697 -552,5.0,1.0,-1.6861448807654689,5.116477495334806 -552,5.0,3.0,-6.413123730174556,22.31120356548123 -552,5.0,5.0,22.341631269034565,-82.8291478657789 -552,5.0,6.0,-3.590210423980992,11.02611441072814 -552,5.0,7.0,-6.289308176100628,22.0125786163522 -552,5.0,8.0,0.0,4.915840805411357 -552,5.0,9.0,0.0,1.8561002591115965 -552,5.0,27.0,-4.362844058012917,15.463571542897856 -552,6.0,4.0,-2.954020035961983,7.449267916773697 -552,6.0,5.0,-3.590210423980992,11.02611441072814 -552,6.0,6.0,6.544230459942975,-18.45668232750184 -552,7.0,5.0,-6.289308176100628,22.0125786163522 -552,7.0,7.0,7.733287237496075,-26.527493274828448 -552,7.0,27.0,-1.4439790613954469,4.540814658476248 -552,8.0,5.0,0.0,4.915840805411357 -552,8.0,8.0,0.0,-18.706293706293707 -552,8.0,9.0,0.0,9.090909090909092 -552,8.0,10.0,0.0,4.807692307692308 -552,9.0,5.0,0.0,1.8561002591115965 -552,9.0,8.0,0.0,9.090909090909092 -552,9.0,9.0,13.462042814524237,-41.3837606675224 -552,9.0,16.0,-3.956039125715353,10.317447719844054 -552,9.0,19.0,-1.7848303152666305,3.98535828943083 -552,9.0,20.0,-5.101853820159654,10.98071411292983 -552,9.0,21.0,-2.619319553382597,5.400770303329455 -552,10.0,8.0,0.0,4.807692307692308 -552,10.0,10.0,0.0,-4.807692307692308 -552,11.0,3.0,0.0,4.191255364806866 -552,11.0,11.0,6.573961583776156,-24.424167659260668 -552,11.0,12.0,0.0,7.142857142857143 -552,11.0,13.0,-1.5265676088395577,3.1734252729654173 -552,11.0,14.0,-3.0953961826564296,6.097275864326261 -552,11.0,15.0,-1.9519977922801688,4.104359379111847 -552,12.0,11.0,0.0,7.142857142857143 -552,12.0,12.0,0.0,-7.142857142857143 -552,13.0,11.0,-1.5265676088395577,3.1734252729654173 -552,13.0,13.0,4.01751987283902,-5.424299332335067 -552,13.0,14.0,-2.4909522639994623,2.250874059369649 -552,14.0,11.0,-3.0953961826564296,6.097275864326261 -552,14.0,13.0,-2.4909522639994623,2.250874059369649 -552,14.0,14.0,9.365498545964757,-16.01163373210796 -552,14.0,17.0,-1.8108011504072024,3.687418931630696 -552,14.0,22.0,-1.9683489489016612,3.976064876781356 -552,15.0,11.0,-1.9519977922801688,4.104359379111847 -552,15.0,15.0,3.271064728633931,-8.94513365126506 -552,15.0,16.0,-1.3190669363537617,4.8407742721532125 -552,16.0,9.0,-3.956039125715353,10.317447719844054 -552,16.0,15.0,-1.3190669363537617,4.8407742721532125 -552,16.0,16.0,5.275106062069114,-15.158221991997266 -552,17.0,14.0,-1.8108011504072024,3.687418931630696 -552,17.0,17.0,4.886487584415919,-9.906177730909668 -552,17.0,18.0,-3.0756864340087167,6.218758799278971 -552,18.0,17.0,-3.0756864340087167,6.218758799278971 -552,18.0,18.0,8.958039375185187,-17.98346468163191 -552,18.0,19.0,-5.88235294117647,11.76470588235294 -552,19.0,9.0,-1.7848303152666305,3.98535828943083 -552,19.0,18.0,-5.88235294117647,11.76470588235294 -552,19.0,19.0,7.6671832564431,-15.75006417178377 -552,20.0,9.0,-5.101853820159654,10.98071411292983 -552,20.0,20.0,21.876495189895888,-45.10843276170355 -552,20.0,21.0,-16.774641369736234,34.127718648773715 -552,21.0,9.0,-2.619319553382597,5.400770303329455 -552,21.0,20.0,-16.774641369736234,34.127718648773715 -552,21.0,21.0,21.93449907537439,-43.48289181517921 -552,21.0,23.0,-2.5405381522555563,3.95440286307604 -552,22.0,14.0,-1.9683489489016612,3.976064876781356 -552,22.0,22.0,3.429754555384988,-6.965303617315433 -552,22.0,23.0,-1.4614056064833263,2.989238740534077 -552,23.0,21.0,-2.5405381522555563,3.95440286307604 -552,23.0,22.0,-1.4614056064833263,2.989238740534077 -552,23.0,23.0,5.311836702613133,-9.188263657315172 -552,23.0,24.0,-1.3098929438742493,2.287622053705056 -552,24.0,23.0,-1.3098929438742493,2.287622053705056 -552,24.0,24.0,4.495715080321987,-7.864978761969621 -552,24.0,25.0,-1.2165301194494855,1.8171440463475024 -552,24.0,26.0,-1.9692920169982515,3.760212661917064 -552,25.0,24.0,-1.2165301194494855,1.8171440463475024 -552,25.0,25.0,1.2165301194494855,-1.8171440463475024 -552,26.0,24.0,-1.9692920169982515,3.760212661917064 -552,26.0,26.0,3.652281470778589,-9.46044252232512 -552,26.0,27.0,0.0,2.608731947574922 -552,26.0,28.0,-0.99553355095268,1.881005840357816 -552,26.0,29.0,-0.6874559028276572,1.293971494797717 -552,27.0,5.0,-4.362844058012917,15.463571542897856 -552,27.0,7.0,-1.4439790613954469,4.540814658476248 -552,27.0,26.0,0.0,2.608731947574922 -552,27.0,27.0,5.806823119408364,-22.67145722159613 -552,28.0,26.0,-0.99553355095268,1.881005840357816 -552,28.0,28.0,1.9075867579849564,-3.604364401207048 -552,28.0,29.0,-0.9120532070322764,1.7233585608492326 -552,29.0,26.0,-0.6874559028276572,1.293971494797717 -552,29.0,28.0,-0.9120532070322764,1.7233585608492326 -552,29.0,29.0,1.5995091098599337,-3.0173300556469496 -553,0.0,0.0,6.765516048652632,-21.23160167089863 -553,0.0,1.0,-5.224646179885656,15.646726840803398 -553,0.0,2.0,-1.5408698687669766,5.631674830095234 -553,1.0,0.0,-5.224646179885656,15.646726840803398 -553,1.0,1.0,9.75228216552403,-30.648662892676068 -553,1.0,3.0,-1.7055303166990268,5.1973792282565086 -553,1.0,4.0,-1.1359607881738778,4.772479328281356 -553,1.0,5.0,-1.6861448807654689,5.116477495334806 -553,2.0,0.0,-1.5408698687669766,5.631674830095234 -553,2.0,2.0,9.736318911079088,-29.13794745915803 -553,2.0,3.0,-8.19544904231211,23.5308726290628 -553,3.0,1.0,-1.7055303166990268,5.1973792282565086 -553,3.0,2.0,-8.19544904231211,23.5308726290628 -553,3.0,3.0,16.314103089185693,-55.509410535254254 -553,3.0,5.0,-6.413123730174556,22.31120356548123 -553,3.0,11.0,0.0,4.191255364806866 -553,4.0,1.0,-1.1359607881738778,4.772479328281356 -553,4.0,4.0,4.089980824135861,-12.190647245055052 -553,4.0,6.0,-2.954020035961983,7.449267916773697 -553,5.0,1.0,-1.6861448807654689,5.116477495334806 -553,5.0,3.0,-6.413123730174556,22.31120356548123 -553,5.0,5.0,22.341631269034565,-82.8291478657789 -553,5.0,6.0,-3.590210423980992,11.02611441072814 -553,5.0,7.0,-6.289308176100628,22.0125786163522 -553,5.0,8.0,0.0,4.915840805411357 -553,5.0,9.0,0.0,1.8561002591115965 -553,5.0,27.0,-4.362844058012917,15.463571542897856 -553,6.0,4.0,-2.954020035961983,7.449267916773697 -553,6.0,5.0,-3.590210423980992,11.02611441072814 -553,6.0,6.0,6.544230459942975,-18.45668232750184 -553,7.0,5.0,-6.289308176100628,22.0125786163522 -553,7.0,7.0,7.733287237496075,-26.527493274828448 -553,7.0,27.0,-1.4439790613954469,4.540814658476248 -553,8.0,5.0,0.0,4.915840805411357 -553,8.0,8.0,0.0,-18.706293706293707 -553,8.0,9.0,0.0,9.090909090909092 -553,8.0,10.0,0.0,4.807692307692308 -553,9.0,5.0,0.0,1.8561002591115965 -553,9.0,8.0,0.0,9.090909090909092 -553,9.0,9.0,13.462042814524237,-41.3837606675224 -553,9.0,16.0,-3.956039125715353,10.317447719844054 -553,9.0,19.0,-1.7848303152666305,3.98535828943083 -553,9.0,20.0,-5.101853820159654,10.98071411292983 -553,9.0,21.0,-2.619319553382597,5.400770303329455 -553,10.0,8.0,0.0,4.807692307692308 -553,10.0,10.0,0.0,-4.807692307692308 -553,11.0,3.0,0.0,4.191255364806866 -553,11.0,11.0,6.573961583776156,-24.424167659260668 -553,11.0,12.0,0.0,7.142857142857143 -553,11.0,13.0,-1.5265676088395577,3.1734252729654173 -553,11.0,14.0,-3.0953961826564296,6.097275864326261 -553,11.0,15.0,-1.9519977922801688,4.104359379111847 -553,12.0,11.0,0.0,7.142857142857143 -553,12.0,12.0,0.0,-7.142857142857143 -553,13.0,11.0,-1.5265676088395577,3.1734252729654173 -553,13.0,13.0,4.01751987283902,-5.424299332335067 -553,13.0,14.0,-2.4909522639994623,2.250874059369649 -553,14.0,11.0,-3.0953961826564296,6.097275864326261 -553,14.0,13.0,-2.4909522639994623,2.250874059369649 -553,14.0,14.0,9.365498545964757,-16.01163373210796 -553,14.0,17.0,-1.8108011504072024,3.687418931630696 -553,14.0,22.0,-1.9683489489016612,3.976064876781356 -553,15.0,11.0,-1.9519977922801688,4.104359379111847 -553,15.0,15.0,3.271064728633931,-8.94513365126506 -553,15.0,16.0,-1.3190669363537617,4.8407742721532125 -553,16.0,9.0,-3.956039125715353,10.317447719844054 -553,16.0,15.0,-1.3190669363537617,4.8407742721532125 -553,16.0,16.0,5.275106062069114,-15.158221991997266 -553,17.0,14.0,-1.8108011504072024,3.687418931630696 -553,17.0,17.0,4.886487584415919,-9.906177730909668 -553,17.0,18.0,-3.0756864340087167,6.218758799278971 -553,18.0,17.0,-3.0756864340087167,6.218758799278971 -553,18.0,18.0,8.958039375185187,-17.98346468163191 -553,18.0,19.0,-5.88235294117647,11.76470588235294 -553,19.0,9.0,-1.7848303152666305,3.98535828943083 -553,19.0,18.0,-5.88235294117647,11.76470588235294 -553,19.0,19.0,7.6671832564431,-15.75006417178377 -553,20.0,9.0,-5.101853820159654,10.98071411292983 -553,20.0,20.0,21.876495189895888,-45.10843276170355 -553,20.0,21.0,-16.774641369736234,34.127718648773715 -553,21.0,9.0,-2.619319553382597,5.400770303329455 -553,21.0,20.0,-16.774641369736234,34.127718648773715 -553,21.0,21.0,21.93449907537439,-43.48289181517921 -553,21.0,23.0,-2.5405381522555563,3.95440286307604 -553,22.0,14.0,-1.9683489489016612,3.976064876781356 -553,22.0,22.0,3.429754555384988,-6.965303617315433 -553,22.0,23.0,-1.4614056064833263,2.989238740534077 -553,23.0,21.0,-2.5405381522555563,3.95440286307604 -553,23.0,22.0,-1.4614056064833263,2.989238740534077 -553,23.0,23.0,5.311836702613133,-9.188263657315172 -553,23.0,24.0,-1.3098929438742493,2.287622053705056 -553,24.0,23.0,-1.3098929438742493,2.287622053705056 -553,24.0,24.0,4.495715080321987,-7.864978761969621 -553,24.0,25.0,-1.2165301194494855,1.8171440463475024 -553,24.0,26.0,-1.9692920169982515,3.760212661917064 -553,25.0,24.0,-1.2165301194494855,1.8171440463475024 -553,25.0,25.0,1.2165301194494855,-1.8171440463475024 -553,26.0,24.0,-1.9692920169982515,3.760212661917064 -553,26.0,26.0,3.652281470778589,-9.46044252232512 -553,26.0,27.0,0.0,2.608731947574922 -553,26.0,28.0,-0.99553355095268,1.881005840357816 -553,26.0,29.0,-0.6874559028276572,1.293971494797717 -553,27.0,5.0,-4.362844058012917,15.463571542897856 -553,27.0,7.0,-1.4439790613954469,4.540814658476248 -553,27.0,26.0,0.0,2.608731947574922 -553,27.0,27.0,5.806823119408364,-22.67145722159613 -553,28.0,26.0,-0.99553355095268,1.881005840357816 -553,28.0,28.0,1.9075867579849564,-3.604364401207048 -553,28.0,29.0,-0.9120532070322764,1.7233585608492326 -553,29.0,26.0,-0.6874559028276572,1.293971494797717 -553,29.0,28.0,-0.9120532070322764,1.7233585608492326 -553,29.0,29.0,1.5995091098599337,-3.0173300556469496 -554,0.0,0.0,6.765516048652632,-21.23160167089863 -554,0.0,1.0,-5.224646179885656,15.646726840803398 -554,0.0,2.0,-1.5408698687669766,5.631674830095234 -554,1.0,0.0,-5.224646179885656,15.646726840803398 -554,1.0,1.0,9.75228216552403,-30.648662892676068 -554,1.0,3.0,-1.7055303166990268,5.1973792282565086 -554,1.0,4.0,-1.1359607881738778,4.772479328281356 -554,1.0,5.0,-1.6861448807654689,5.116477495334806 -554,2.0,0.0,-1.5408698687669766,5.631674830095234 -554,2.0,2.0,9.736318911079088,-29.13794745915803 -554,2.0,3.0,-8.19544904231211,23.5308726290628 -554,3.0,1.0,-1.7055303166990268,5.1973792282565086 -554,3.0,2.0,-8.19544904231211,23.5308726290628 -554,3.0,3.0,16.314103089185693,-55.509410535254254 -554,3.0,5.0,-6.413123730174556,22.31120356548123 -554,3.0,11.0,0.0,4.191255364806866 -554,4.0,1.0,-1.1359607881738778,4.772479328281356 -554,4.0,4.0,4.089980824135861,-12.190647245055052 -554,4.0,6.0,-2.954020035961983,7.449267916773697 -554,5.0,1.0,-1.6861448807654689,5.116477495334806 -554,5.0,3.0,-6.413123730174556,22.31120356548123 -554,5.0,5.0,22.341631269034565,-82.8291478657789 -554,5.0,6.0,-3.590210423980992,11.02611441072814 -554,5.0,7.0,-6.289308176100628,22.0125786163522 -554,5.0,8.0,0.0,4.915840805411357 -554,5.0,9.0,0.0,1.8561002591115965 -554,5.0,27.0,-4.362844058012917,15.463571542897856 -554,6.0,4.0,-2.954020035961983,7.449267916773697 -554,6.0,5.0,-3.590210423980992,11.02611441072814 -554,6.0,6.0,6.544230459942975,-18.45668232750184 -554,7.0,5.0,-6.289308176100628,22.0125786163522 -554,7.0,7.0,6.289308176100628,-22.0080786163522 -554,8.0,5.0,0.0,4.915840805411357 -554,8.0,8.0,0.0,-18.706293706293707 -554,8.0,9.0,0.0,9.090909090909092 -554,8.0,10.0,0.0,4.807692307692308 -554,9.0,5.0,0.0,1.8561002591115965 -554,9.0,8.0,0.0,9.090909090909092 -554,9.0,9.0,13.462042814524237,-41.3837606675224 -554,9.0,16.0,-3.956039125715353,10.317447719844054 -554,9.0,19.0,-1.7848303152666305,3.98535828943083 -554,9.0,20.0,-5.101853820159654,10.98071411292983 -554,9.0,21.0,-2.619319553382597,5.400770303329455 -554,10.0,8.0,0.0,4.807692307692308 -554,10.0,10.0,0.0,-4.807692307692308 -554,11.0,3.0,0.0,4.191255364806866 -554,11.0,11.0,6.573961583776156,-24.424167659260668 -554,11.0,12.0,0.0,7.142857142857143 -554,11.0,13.0,-1.5265676088395577,3.1734252729654173 -554,11.0,14.0,-3.0953961826564296,6.097275864326261 -554,11.0,15.0,-1.9519977922801688,4.104359379111847 -554,12.0,11.0,0.0,7.142857142857143 -554,12.0,12.0,0.0,-7.142857142857143 -554,13.0,11.0,-1.5265676088395577,3.1734252729654173 -554,13.0,13.0,4.01751987283902,-5.424299332335067 -554,13.0,14.0,-2.4909522639994623,2.250874059369649 -554,14.0,11.0,-3.0953961826564296,6.097275864326261 -554,14.0,13.0,-2.4909522639994623,2.250874059369649 -554,14.0,14.0,9.365498545964757,-16.01163373210796 -554,14.0,17.0,-1.8108011504072024,3.687418931630696 -554,14.0,22.0,-1.9683489489016612,3.976064876781356 -554,15.0,11.0,-1.9519977922801688,4.104359379111847 -554,15.0,15.0,3.271064728633931,-8.94513365126506 -554,15.0,16.0,-1.3190669363537617,4.8407742721532125 -554,16.0,9.0,-3.956039125715353,10.317447719844054 -554,16.0,15.0,-1.3190669363537617,4.8407742721532125 -554,16.0,16.0,5.275106062069114,-15.158221991997266 -554,17.0,14.0,-1.8108011504072024,3.687418931630696 -554,17.0,17.0,4.886487584415919,-9.906177730909668 -554,17.0,18.0,-3.0756864340087167,6.218758799278971 -554,18.0,17.0,-3.0756864340087167,6.218758799278971 -554,18.0,18.0,8.958039375185187,-17.98346468163191 -554,18.0,19.0,-5.88235294117647,11.76470588235294 -554,19.0,9.0,-1.7848303152666305,3.98535828943083 -554,19.0,18.0,-5.88235294117647,11.76470588235294 -554,19.0,19.0,7.6671832564431,-15.75006417178377 -554,20.0,9.0,-5.101853820159654,10.98071411292983 -554,20.0,20.0,21.876495189895888,-45.10843276170355 -554,20.0,21.0,-16.774641369736234,34.127718648773715 -554,21.0,9.0,-2.619319553382597,5.400770303329455 -554,21.0,20.0,-16.774641369736234,34.127718648773715 -554,21.0,21.0,21.93449907537439,-43.48289181517921 -554,21.0,23.0,-2.5405381522555563,3.95440286307604 -554,22.0,14.0,-1.9683489489016612,3.976064876781356 -554,22.0,22.0,3.429754555384988,-6.965303617315433 -554,22.0,23.0,-1.4614056064833263,2.989238740534077 -554,23.0,21.0,-2.5405381522555563,3.95440286307604 -554,23.0,22.0,-1.4614056064833263,2.989238740534077 -554,23.0,23.0,5.311836702613133,-9.188263657315172 -554,23.0,24.0,-1.3098929438742493,2.287622053705056 -554,24.0,23.0,-1.3098929438742493,2.287622053705056 -554,24.0,24.0,4.495715080321987,-7.864978761969621 -554,24.0,25.0,-1.2165301194494855,1.8171440463475024 -554,24.0,26.0,-1.9692920169982515,3.760212661917064 -554,25.0,24.0,-1.2165301194494855,1.8171440463475024 -554,25.0,25.0,1.2165301194494855,-1.8171440463475024 -554,26.0,24.0,-1.9692920169982515,3.760212661917064 -554,26.0,26.0,3.652281470778589,-9.46044252232512 -554,26.0,27.0,0.0,2.608731947574922 -554,26.0,28.0,-0.99553355095268,1.881005840357816 -554,26.0,29.0,-0.6874559028276572,1.293971494797717 -554,27.0,5.0,-4.362844058012917,15.463571542897856 -554,27.0,26.0,0.0,2.608731947574922 -554,27.0,27.0,4.362844058012917,-18.15204256311988 -554,28.0,26.0,-0.99553355095268,1.881005840357816 -554,28.0,28.0,1.9075867579849564,-3.604364401207048 -554,28.0,29.0,-0.9120532070322764,1.7233585608492326 -554,29.0,26.0,-0.6874559028276572,1.293971494797717 -554,29.0,28.0,-0.9120532070322764,1.7233585608492326 -554,29.0,29.0,1.5995091098599337,-3.0173300556469496 -555,0.0,0.0,6.765516048652632,-21.23160167089863 -555,0.0,1.0,-5.224646179885656,15.646726840803398 -555,0.0,2.0,-1.5408698687669766,5.631674830095234 -555,1.0,0.0,-5.224646179885656,15.646726840803398 -555,1.0,1.0,9.75228216552403,-30.648662892676068 -555,1.0,3.0,-1.7055303166990268,5.1973792282565086 -555,1.0,4.0,-1.1359607881738778,4.772479328281356 -555,1.0,5.0,-1.6861448807654689,5.116477495334806 -555,2.0,0.0,-1.5408698687669766,5.631674830095234 -555,2.0,2.0,9.736318911079088,-29.13794745915803 -555,2.0,3.0,-8.19544904231211,23.5308726290628 -555,3.0,1.0,-1.7055303166990268,5.1973792282565086 -555,3.0,2.0,-8.19544904231211,23.5308726290628 -555,3.0,3.0,16.314103089185693,-55.509410535254254 -555,3.0,5.0,-6.413123730174556,22.31120356548123 -555,3.0,11.0,0.0,4.191255364806866 -555,4.0,1.0,-1.1359607881738778,4.772479328281356 -555,4.0,4.0,4.089980824135861,-12.190647245055052 -555,4.0,6.0,-2.954020035961983,7.449267916773697 -555,5.0,1.0,-1.6861448807654689,5.116477495334806 -555,5.0,3.0,-6.413123730174556,22.31120356548123 -555,5.0,5.0,22.341631269034565,-82.8291478657789 -555,5.0,6.0,-3.590210423980992,11.02611441072814 -555,5.0,7.0,-6.289308176100628,22.0125786163522 -555,5.0,8.0,0.0,4.915840805411357 -555,5.0,9.0,0.0,1.8561002591115965 -555,5.0,27.0,-4.362844058012917,15.463571542897856 -555,6.0,4.0,-2.954020035961983,7.449267916773697 -555,6.0,5.0,-3.590210423980992,11.02611441072814 -555,6.0,6.0,6.544230459942975,-18.45668232750184 -555,7.0,5.0,-6.289308176100628,22.0125786163522 -555,7.0,7.0,7.733287237496075,-26.527493274828448 -555,7.0,27.0,-1.4439790613954469,4.540814658476248 -555,8.0,5.0,0.0,4.915840805411357 -555,8.0,8.0,0.0,-18.706293706293707 -555,8.0,9.0,0.0,9.090909090909092 -555,8.0,10.0,0.0,4.807692307692308 -555,9.0,5.0,0.0,1.8561002591115965 -555,9.0,8.0,0.0,9.090909090909092 -555,9.0,9.0,10.842723261141638,-35.98299036419294 -555,9.0,16.0,-3.956039125715353,10.317447719844054 -555,9.0,19.0,-1.7848303152666305,3.98535828943083 -555,9.0,20.0,-5.101853820159654,10.98071411292983 -555,10.0,8.0,0.0,4.807692307692308 -555,10.0,10.0,0.0,-4.807692307692308 -555,11.0,3.0,0.0,4.191255364806866 -555,11.0,11.0,5.047393974936599,-21.25074238629525 -555,11.0,12.0,0.0,7.142857142857143 -555,11.0,14.0,-3.0953961826564296,6.097275864326261 -555,11.0,15.0,-1.9519977922801688,4.104359379111847 -555,12.0,11.0,0.0,7.142857142857143 -555,12.0,12.0,0.0,-7.142857142857143 -555,13.0,13.0,2.4909522639994623,-2.250874059369649 -555,13.0,14.0,-2.4909522639994623,2.250874059369649 -555,14.0,11.0,-3.0953961826564296,6.097275864326261 -555,14.0,13.0,-2.4909522639994623,2.250874059369649 -555,14.0,14.0,9.365498545964757,-16.01163373210796 -555,14.0,17.0,-1.8108011504072024,3.687418931630696 -555,14.0,22.0,-1.9683489489016612,3.976064876781356 -555,15.0,11.0,-1.9519977922801688,4.104359379111847 -555,15.0,15.0,3.271064728633931,-8.94513365126506 -555,15.0,16.0,-1.3190669363537617,4.8407742721532125 -555,16.0,9.0,-3.956039125715353,10.317447719844054 -555,16.0,15.0,-1.3190669363537617,4.8407742721532125 -555,16.0,16.0,5.275106062069114,-15.158221991997266 -555,17.0,14.0,-1.8108011504072024,3.687418931630696 -555,17.0,17.0,4.886487584415919,-9.906177730909668 -555,17.0,18.0,-3.0756864340087167,6.218758799278971 -555,18.0,17.0,-3.0756864340087167,6.218758799278971 -555,18.0,18.0,8.958039375185187,-17.98346468163191 -555,18.0,19.0,-5.88235294117647,11.76470588235294 -555,19.0,9.0,-1.7848303152666305,3.98535828943083 -555,19.0,18.0,-5.88235294117647,11.76470588235294 -555,19.0,19.0,7.6671832564431,-15.75006417178377 -555,20.0,9.0,-5.101853820159654,10.98071411292983 -555,20.0,20.0,21.876495189895888,-45.10843276170355 -555,20.0,21.0,-16.774641369736234,34.127718648773715 -555,21.0,20.0,-16.774641369736234,34.127718648773715 -555,21.0,21.0,19.31517952199179,-38.08212151184976 -555,21.0,23.0,-2.5405381522555563,3.95440286307604 -555,22.0,14.0,-1.9683489489016612,3.976064876781356 -555,22.0,22.0,3.429754555384988,-6.965303617315433 -555,22.0,23.0,-1.4614056064833263,2.989238740534077 -555,23.0,21.0,-2.5405381522555563,3.95440286307604 -555,23.0,22.0,-1.4614056064833263,2.989238740534077 -555,23.0,23.0,5.311836702613133,-9.188263657315172 -555,23.0,24.0,-1.3098929438742493,2.287622053705056 -555,24.0,23.0,-1.3098929438742493,2.287622053705056 -555,24.0,24.0,4.495715080321987,-7.864978761969621 -555,24.0,25.0,-1.2165301194494855,1.8171440463475024 -555,24.0,26.0,-1.9692920169982515,3.760212661917064 -555,25.0,24.0,-1.2165301194494855,1.8171440463475024 -555,25.0,25.0,1.2165301194494855,-1.8171440463475024 -555,26.0,24.0,-1.9692920169982515,3.760212661917064 -555,26.0,26.0,3.652281470778589,-9.46044252232512 -555,26.0,27.0,0.0,2.608731947574922 -555,26.0,28.0,-0.99553355095268,1.881005840357816 -555,26.0,29.0,-0.6874559028276572,1.293971494797717 -555,27.0,5.0,-4.362844058012917,15.463571542897856 -555,27.0,7.0,-1.4439790613954469,4.540814658476248 -555,27.0,26.0,0.0,2.608731947574922 -555,27.0,27.0,5.806823119408364,-22.67145722159613 -555,28.0,26.0,-0.99553355095268,1.881005840357816 -555,28.0,28.0,1.9075867579849564,-3.604364401207048 -555,28.0,29.0,-0.9120532070322764,1.7233585608492326 -555,29.0,26.0,-0.6874559028276572,1.293971494797717 -555,29.0,28.0,-0.9120532070322764,1.7233585608492326 -555,29.0,29.0,1.5995091098599337,-3.0173300556469496 -556,0.0,0.0,1.5408698687669766,-5.611274830095233 -556,0.0,2.0,-1.5408698687669766,5.631674830095234 -556,1.0,1.0,1.7055303166990268,-5.178979228256509 -556,1.0,3.0,-1.7055303166990268,5.1973792282565086 -556,2.0,0.0,-1.5408698687669766,5.631674830095234 -556,2.0,2.0,9.736318911079088,-29.13794745915803 -556,2.0,3.0,-8.19544904231211,23.5308726290628 -556,3.0,1.0,-1.7055303166990268,5.1973792282565086 -556,3.0,2.0,-8.19544904231211,23.5308726290628 -556,3.0,3.0,16.314103089185693,-55.509410535254254 -556,3.0,5.0,-6.413123730174556,22.31120356548123 -556,3.0,11.0,0.0,4.191255364806866 -556,4.0,4.0,2.954020035961983,-7.439067916773697 -556,4.0,6.0,-2.954020035961983,7.449267916773697 -556,5.0,3.0,-6.413123730174556,22.31120356548123 -556,5.0,5.0,16.29264233025618,-62.27429882754625 -556,5.0,6.0,-3.590210423980992,11.02611441072814 -556,5.0,7.0,-6.289308176100628,22.0125786163522 -556,5.0,8.0,0.0,4.915840805411357 -556,5.0,9.0,0.0,1.8561002591115965 -556,6.0,4.0,-2.954020035961983,7.449267916773697 -556,6.0,5.0,-3.590210423980992,11.02611441072814 -556,6.0,6.0,6.544230459942975,-18.45668232750184 -556,7.0,5.0,-6.289308176100628,22.0125786163522 -556,7.0,7.0,7.733287237496075,-26.527493274828448 -556,7.0,27.0,-1.4439790613954469,4.540814658476248 -556,8.0,5.0,0.0,4.915840805411357 -556,8.0,8.0,0.0,-18.706293706293707 -556,8.0,9.0,0.0,9.090909090909092 -556,8.0,10.0,0.0,4.807692307692308 -556,9.0,5.0,0.0,1.8561002591115965 -556,9.0,8.0,0.0,9.090909090909092 -556,9.0,9.0,13.462042814524237,-41.3837606675224 -556,9.0,16.0,-3.956039125715353,10.317447719844054 -556,9.0,19.0,-1.7848303152666305,3.98535828943083 -556,9.0,20.0,-5.101853820159654,10.98071411292983 -556,9.0,21.0,-2.619319553382597,5.400770303329455 -556,10.0,8.0,0.0,4.807692307692308 -556,10.0,10.0,0.0,-4.807692307692308 -556,11.0,3.0,0.0,4.191255364806866 -556,11.0,11.0,4.621963791495987,-20.31980828014882 -556,11.0,12.0,0.0,7.142857142857143 -556,11.0,13.0,-1.5265676088395577,3.1734252729654173 -556,11.0,14.0,-3.0953961826564296,6.097275864326261 -556,12.0,11.0,0.0,7.142857142857143 -556,12.0,12.0,0.0,-7.142857142857143 -556,13.0,11.0,-1.5265676088395577,3.1734252729654173 -556,13.0,13.0,4.01751987283902,-5.424299332335067 -556,13.0,14.0,-2.4909522639994623,2.250874059369649 -556,14.0,11.0,-3.0953961826564296,6.097275864326261 -556,14.0,13.0,-2.4909522639994623,2.250874059369649 -556,14.0,14.0,9.365498545964757,-16.01163373210796 -556,14.0,17.0,-1.8108011504072024,3.687418931630696 -556,14.0,22.0,-1.9683489489016612,3.976064876781356 -556,15.0,15.0,1.3190669363537617,-4.8407742721532125 -556,15.0,16.0,-1.3190669363537617,4.8407742721532125 -556,16.0,9.0,-3.956039125715353,10.317447719844054 -556,16.0,15.0,-1.3190669363537617,4.8407742721532125 -556,16.0,16.0,5.275106062069114,-15.158221991997266 -556,17.0,14.0,-1.8108011504072024,3.687418931630696 -556,17.0,17.0,4.886487584415919,-9.906177730909668 -556,17.0,18.0,-3.0756864340087167,6.218758799278971 -556,18.0,17.0,-3.0756864340087167,6.218758799278971 -556,18.0,18.0,8.958039375185187,-17.98346468163191 -556,18.0,19.0,-5.88235294117647,11.76470588235294 -556,19.0,9.0,-1.7848303152666305,3.98535828943083 -556,19.0,18.0,-5.88235294117647,11.76470588235294 -556,19.0,19.0,7.6671832564431,-15.75006417178377 -556,20.0,9.0,-5.101853820159654,10.98071411292983 -556,20.0,20.0,21.876495189895888,-45.10843276170355 -556,20.0,21.0,-16.774641369736234,34.127718648773715 -556,21.0,9.0,-2.619319553382597,5.400770303329455 -556,21.0,20.0,-16.774641369736234,34.127718648773715 -556,21.0,21.0,21.93449907537439,-43.48289181517921 -556,21.0,23.0,-2.5405381522555563,3.95440286307604 -556,22.0,14.0,-1.9683489489016612,3.976064876781356 -556,22.0,22.0,3.429754555384988,-6.965303617315433 -556,22.0,23.0,-1.4614056064833263,2.989238740534077 -556,23.0,21.0,-2.5405381522555563,3.95440286307604 -556,23.0,22.0,-1.4614056064833263,2.989238740534077 -556,23.0,23.0,5.311836702613133,-9.188263657315172 -556,23.0,24.0,-1.3098929438742493,2.287622053705056 -556,24.0,23.0,-1.3098929438742493,2.287622053705056 -556,24.0,24.0,4.495715080321987,-7.864978761969621 -556,24.0,25.0,-1.2165301194494855,1.8171440463475024 -556,24.0,26.0,-1.9692920169982515,3.760212661917064 -556,25.0,24.0,-1.2165301194494855,1.8171440463475024 -556,25.0,25.0,1.2165301194494855,-1.8171440463475024 -556,26.0,24.0,-1.9692920169982515,3.760212661917064 -556,26.0,26.0,3.652281470778589,-9.46044252232512 -556,26.0,27.0,0.0,2.608731947574922 -556,26.0,28.0,-0.99553355095268,1.881005840357816 -556,26.0,29.0,-0.6874559028276572,1.293971494797717 -556,27.0,7.0,-1.4439790613954469,4.540814658476248 -556,27.0,26.0,0.0,2.608731947574922 -556,27.0,27.0,1.4439790613954469,-7.214385678698274 -556,28.0,26.0,-0.99553355095268,1.881005840357816 -556,28.0,28.0,1.9075867579849564,-3.604364401207048 -556,28.0,29.0,-0.9120532070322764,1.7233585608492326 -556,29.0,26.0,-0.6874559028276572,1.293971494797717 -556,29.0,28.0,-0.9120532070322764,1.7233585608492326 -556,29.0,29.0,1.5995091098599337,-3.0173300556469496 -557,0.0,0.0,6.765516048652632,-21.23160167089863 -557,0.0,1.0,-5.224646179885656,15.646726840803398 -557,0.0,2.0,-1.5408698687669766,5.631674830095234 -557,1.0,0.0,-5.224646179885656,15.646726840803398 -557,1.0,1.0,9.75228216552403,-30.648662892676068 -557,1.0,3.0,-1.7055303166990268,5.1973792282565086 -557,1.0,4.0,-1.1359607881738778,4.772479328281356 -557,1.0,5.0,-1.6861448807654689,5.116477495334806 -557,2.0,0.0,-1.5408698687669766,5.631674830095234 -557,2.0,2.0,9.736318911079088,-29.13794745915803 -557,2.0,3.0,-8.19544904231211,23.5308726290628 -557,3.0,1.0,-1.7055303166990268,5.1973792282565086 -557,3.0,2.0,-8.19544904231211,23.5308726290628 -557,3.0,3.0,16.314103089185693,-55.509410535254254 -557,3.0,5.0,-6.413123730174556,22.31120356548123 -557,3.0,11.0,0.0,4.191255364806866 -557,4.0,1.0,-1.1359607881738778,4.772479328281356 -557,4.0,4.0,4.089980824135861,-12.190647245055052 -557,4.0,6.0,-2.954020035961983,7.449267916773697 -557,5.0,1.0,-1.6861448807654689,5.116477495334806 -557,5.0,3.0,-6.413123730174556,22.31120356548123 -557,5.0,5.0,22.341631269034565,-77.80272577435625 -557,5.0,6.0,-3.590210423980992,11.02611441072814 -557,5.0,7.0,-6.289308176100628,22.0125786163522 -557,5.0,9.0,0.0,1.8561002591115965 -557,5.0,27.0,-4.362844058012917,15.463571542897856 -557,6.0,4.0,-2.954020035961983,7.449267916773697 -557,6.0,5.0,-3.590210423980992,11.02611441072814 -557,6.0,6.0,6.544230459942975,-18.45668232750184 -557,7.0,5.0,-6.289308176100628,22.0125786163522 -557,7.0,7.0,7.733287237496075,-26.527493274828448 -557,7.0,27.0,-1.4439790613954469,4.540814658476248 -557,8.0,8.0,0.0,-13.8986013986014 -557,8.0,9.0,0.0,9.090909090909092 -557,8.0,10.0,0.0,4.807692307692308 -557,9.0,5.0,0.0,1.8561002591115965 -557,9.0,8.0,0.0,9.090909090909092 -557,9.0,9.0,8.36018899436458,-30.40304655459257 -557,9.0,16.0,-3.956039125715353,10.317447719844054 -557,9.0,19.0,-1.7848303152666305,3.98535828943083 -557,9.0,21.0,-2.619319553382597,5.400770303329455 -557,10.0,8.0,0.0,4.807692307692308 -557,10.0,10.0,0.0,-4.807692307692308 -557,11.0,3.0,0.0,4.191255364806866 -557,11.0,11.0,5.047393974936599,-21.25074238629525 -557,11.0,12.0,0.0,7.142857142857143 -557,11.0,14.0,-3.0953961826564296,6.097275864326261 -557,11.0,15.0,-1.9519977922801688,4.104359379111847 -557,12.0,11.0,0.0,7.142857142857143 -557,12.0,12.0,0.0,-7.142857142857143 -557,13.0,13.0,2.4909522639994623,-2.250874059369649 -557,13.0,14.0,-2.4909522639994623,2.250874059369649 -557,14.0,11.0,-3.0953961826564296,6.097275864326261 -557,14.0,13.0,-2.4909522639994623,2.250874059369649 -557,14.0,14.0,7.397149597063095,-12.035568855326606 -557,14.0,17.0,-1.8108011504072024,3.687418931630696 -557,15.0,11.0,-1.9519977922801688,4.104359379111847 -557,15.0,15.0,3.271064728633931,-8.94513365126506 -557,15.0,16.0,-1.3190669363537617,4.8407742721532125 -557,16.0,9.0,-3.956039125715353,10.317447719844054 -557,16.0,15.0,-1.3190669363537617,4.8407742721532125 -557,16.0,16.0,5.275106062069114,-15.158221991997266 -557,17.0,14.0,-1.8108011504072024,3.687418931630696 -557,17.0,17.0,4.886487584415919,-9.906177730909668 -557,17.0,18.0,-3.0756864340087167,6.218758799278971 -557,18.0,17.0,-3.0756864340087167,6.218758799278971 -557,18.0,18.0,8.958039375185187,-17.98346468163191 -557,18.0,19.0,-5.88235294117647,11.76470588235294 -557,19.0,9.0,-1.7848303152666305,3.98535828943083 -557,19.0,18.0,-5.88235294117647,11.76470588235294 -557,19.0,19.0,7.6671832564431,-15.75006417178377 -557,20.0,20.0,16.774641369736234,-34.127718648773715 -557,20.0,21.0,-16.774641369736234,34.127718648773715 -557,21.0,9.0,-2.619319553382597,5.400770303329455 -557,21.0,20.0,-16.774641369736234,34.127718648773715 -557,21.0,21.0,21.93449907537439,-43.48289181517921 -557,21.0,23.0,-2.5405381522555563,3.95440286307604 -557,22.0,22.0,1.4614056064833263,-2.989238740534077 -557,22.0,23.0,-1.4614056064833263,2.989238740534077 -557,23.0,21.0,-2.5405381522555563,3.95440286307604 -557,23.0,22.0,-1.4614056064833263,2.989238740534077 -557,23.0,23.0,4.001943758738883,-6.900641603610116 -557,24.0,24.0,3.185822136447737,-5.577356708264566 -557,24.0,25.0,-1.2165301194494855,1.8171440463475024 -557,24.0,26.0,-1.9692920169982515,3.760212661917064 -557,25.0,24.0,-1.2165301194494855,1.8171440463475024 -557,25.0,25.0,1.2165301194494855,-1.8171440463475024 -557,26.0,24.0,-1.9692920169982515,3.760212661917064 -557,26.0,26.0,3.652281470778589,-9.46044252232512 -557,26.0,27.0,0.0,2.608731947574922 -557,26.0,28.0,-0.99553355095268,1.881005840357816 -557,26.0,29.0,-0.6874559028276572,1.293971494797717 -557,27.0,5.0,-4.362844058012917,15.463571542897856 -557,27.0,7.0,-1.4439790613954469,4.540814658476248 -557,27.0,26.0,0.0,2.608731947574922 -557,27.0,27.0,5.806823119408364,-22.67145722159613 -557,28.0,26.0,-0.99553355095268,1.881005840357816 -557,28.0,28.0,1.9075867579849564,-3.604364401207048 -557,28.0,29.0,-0.9120532070322764,1.7233585608492326 -557,29.0,26.0,-0.6874559028276572,1.293971494797717 -557,29.0,28.0,-0.9120532070322764,1.7233585608492326 -557,29.0,29.0,1.5995091098599337,-3.0173300556469496 -558,0.0,0.0,6.765516048652632,-21.23160167089863 -558,0.0,1.0,-5.224646179885656,15.646726840803398 -558,0.0,2.0,-1.5408698687669766,5.631674830095234 -558,1.0,0.0,-5.224646179885656,15.646726840803398 -558,1.0,1.0,9.75228216552403,-30.648662892676068 -558,1.0,3.0,-1.7055303166990268,5.1973792282565086 -558,1.0,4.0,-1.1359607881738778,4.772479328281356 -558,1.0,5.0,-1.6861448807654689,5.116477495334806 -558,2.0,0.0,-1.5408698687669766,5.631674830095234 -558,2.0,2.0,9.736318911079088,-29.13794745915803 -558,2.0,3.0,-8.19544904231211,23.5308726290628 -558,3.0,1.0,-1.7055303166990268,5.1973792282565086 -558,3.0,2.0,-8.19544904231211,23.5308726290628 -558,3.0,3.0,16.314103089185693,-55.509410535254254 -558,3.0,5.0,-6.413123730174556,22.31120356548123 -558,3.0,11.0,0.0,4.191255364806866 -558,4.0,1.0,-1.1359607881738778,4.772479328281356 -558,4.0,4.0,4.089980824135861,-12.190647245055052 -558,4.0,6.0,-2.954020035961983,7.449267916773697 -558,5.0,1.0,-1.6861448807654689,5.116477495334806 -558,5.0,3.0,-6.413123730174556,22.31120356548123 -558,5.0,5.0,16.052323092933932,-60.8210692494267 -558,5.0,6.0,-3.590210423980992,11.02611441072814 -558,5.0,8.0,0.0,4.915840805411357 -558,5.0,9.0,0.0,1.8561002591115965 -558,5.0,27.0,-4.362844058012917,15.463571542897856 -558,6.0,4.0,-2.954020035961983,7.449267916773697 -558,6.0,5.0,-3.590210423980992,11.02611441072814 -558,6.0,6.0,6.544230459942975,-18.45668232750184 -558,7.0,7.0,1.4439790613954469,-4.519414658476248 -558,7.0,27.0,-1.4439790613954469,4.540814658476248 -558,8.0,5.0,0.0,4.915840805411357 -558,8.0,8.0,0.0,-18.706293706293707 -558,8.0,9.0,0.0,9.090909090909092 -558,8.0,10.0,0.0,4.807692307692308 -558,9.0,5.0,0.0,1.8561002591115965 -558,9.0,8.0,0.0,9.090909090909092 -558,9.0,9.0,13.462042814524237,-41.3837606675224 -558,9.0,16.0,-3.956039125715353,10.317447719844054 -558,9.0,19.0,-1.7848303152666305,3.98535828943083 -558,9.0,20.0,-5.101853820159654,10.98071411292983 -558,9.0,21.0,-2.619319553382597,5.400770303329455 -558,10.0,8.0,0.0,4.807692307692308 -558,10.0,10.0,0.0,-4.807692307692308 -558,11.0,3.0,0.0,4.191255364806866 -558,11.0,11.0,6.573961583776156,-24.424167659260668 -558,11.0,12.0,0.0,7.142857142857143 -558,11.0,13.0,-1.5265676088395577,3.1734252729654173 -558,11.0,14.0,-3.0953961826564296,6.097275864326261 -558,11.0,15.0,-1.9519977922801688,4.104359379111847 -558,12.0,11.0,0.0,7.142857142857143 -558,12.0,12.0,0.0,-7.142857142857143 -558,13.0,11.0,-1.5265676088395577,3.1734252729654173 -558,13.0,13.0,1.5265676088395577,-3.1734252729654173 -558,14.0,11.0,-3.0953961826564296,6.097275864326261 -558,14.0,14.0,6.874546281965293,-13.760759672738311 -558,14.0,17.0,-1.8108011504072024,3.687418931630696 -558,14.0,22.0,-1.9683489489016612,3.976064876781356 -558,15.0,11.0,-1.9519977922801688,4.104359379111847 -558,15.0,15.0,3.271064728633931,-8.94513365126506 -558,15.0,16.0,-1.3190669363537617,4.8407742721532125 -558,16.0,9.0,-3.956039125715353,10.317447719844054 -558,16.0,15.0,-1.3190669363537617,4.8407742721532125 -558,16.0,16.0,5.275106062069114,-15.158221991997266 -558,17.0,14.0,-1.8108011504072024,3.687418931630696 -558,17.0,17.0,1.8108011504072024,-3.687418931630696 -558,18.0,18.0,5.88235294117647,-11.76470588235294 -558,18.0,19.0,-5.88235294117647,11.76470588235294 -558,19.0,9.0,-1.7848303152666305,3.98535828943083 -558,19.0,18.0,-5.88235294117647,11.76470588235294 -558,19.0,19.0,7.6671832564431,-15.75006417178377 -558,20.0,9.0,-5.101853820159654,10.98071411292983 -558,20.0,20.0,21.876495189895888,-45.10843276170355 -558,20.0,21.0,-16.774641369736234,34.127718648773715 -558,21.0,9.0,-2.619319553382597,5.400770303329455 -558,21.0,20.0,-16.774641369736234,34.127718648773715 -558,21.0,21.0,21.93449907537439,-43.48289181517921 -558,21.0,23.0,-2.5405381522555563,3.95440286307604 -558,22.0,14.0,-1.9683489489016612,3.976064876781356 -558,22.0,22.0,3.429754555384988,-6.965303617315433 -558,22.0,23.0,-1.4614056064833263,2.989238740534077 -558,23.0,21.0,-2.5405381522555563,3.95440286307604 -558,23.0,22.0,-1.4614056064833263,2.989238740534077 -558,23.0,23.0,5.311836702613133,-9.188263657315172 -558,23.0,24.0,-1.3098929438742493,2.287622053705056 -558,24.0,23.0,-1.3098929438742493,2.287622053705056 -558,24.0,24.0,4.495715080321987,-7.864978761969621 -558,24.0,25.0,-1.2165301194494855,1.8171440463475024 -558,24.0,26.0,-1.9692920169982515,3.760212661917064 -558,25.0,24.0,-1.2165301194494855,1.8171440463475024 -558,25.0,25.0,1.2165301194494855,-1.8171440463475024 -558,26.0,24.0,-1.9692920169982515,3.760212661917064 -558,26.0,26.0,3.652281470778589,-9.46044252232512 -558,26.0,27.0,0.0,2.608731947574922 -558,26.0,28.0,-0.99553355095268,1.881005840357816 -558,26.0,29.0,-0.6874559028276572,1.293971494797717 -558,27.0,5.0,-4.362844058012917,15.463571542897856 -558,27.0,7.0,-1.4439790613954469,4.540814658476248 -558,27.0,26.0,0.0,2.608731947574922 -558,27.0,27.0,5.806823119408364,-22.67145722159613 -558,28.0,26.0,-0.99553355095268,1.881005840357816 -558,28.0,28.0,1.9075867579849564,-3.604364401207048 -558,28.0,29.0,-0.9120532070322764,1.7233585608492326 -558,29.0,26.0,-0.6874559028276572,1.293971494797717 -558,29.0,28.0,-0.9120532070322764,1.7233585608492326 -558,29.0,29.0,1.5995091098599337,-3.0173300556469496 -559,0.0,0.0,5.224646179885656,-15.620326840803395 -559,0.0,1.0,-5.224646179885656,15.646726840803398 -559,1.0,0.0,-5.224646179885656,15.646726840803398 -559,1.0,1.0,9.75228216552403,-30.648662892676068 -559,1.0,3.0,-1.7055303166990268,5.1973792282565086 -559,1.0,4.0,-1.1359607881738778,4.772479328281356 -559,1.0,5.0,-1.6861448807654689,5.116477495334806 -559,2.0,2.0,8.19544904231211,-23.5266726290628 -559,2.0,3.0,-8.19544904231211,23.5308726290628 -559,3.0,1.0,-1.7055303166990268,5.1973792282565086 -559,3.0,2.0,-8.19544904231211,23.5308726290628 -559,3.0,3.0,9.900979359011137,-33.202706969773025 -559,3.0,11.0,0.0,4.191255364806866 -559,4.0,1.0,-1.1359607881738778,4.772479328281356 -559,4.0,4.0,4.089980824135861,-12.190647245055052 -559,4.0,6.0,-2.954020035961983,7.449267916773697 -559,5.0,1.0,-1.6861448807654689,5.116477495334806 -559,5.0,5.0,15.928507538860009,-60.52244430029767 -559,5.0,6.0,-3.590210423980992,11.02611441072814 -559,5.0,7.0,-6.289308176100628,22.0125786163522 -559,5.0,8.0,0.0,4.915840805411357 -559,5.0,9.0,0.0,1.8561002591115965 -559,5.0,27.0,-4.362844058012917,15.463571542897856 -559,6.0,4.0,-2.954020035961983,7.449267916773697 -559,6.0,5.0,-3.590210423980992,11.02611441072814 -559,6.0,6.0,6.544230459942975,-18.45668232750184 -559,7.0,5.0,-6.289308176100628,22.0125786163522 -559,7.0,7.0,6.289308176100628,-22.0080786163522 -559,8.0,5.0,0.0,4.915840805411357 -559,8.0,8.0,0.0,-18.706293706293707 -559,8.0,9.0,0.0,9.090909090909092 -559,8.0,10.0,0.0,4.807692307692308 -559,9.0,5.0,0.0,1.8561002591115965 -559,9.0,8.0,0.0,9.090909090909092 -559,9.0,9.0,11.677212499257603,-37.39840237809157 -559,9.0,16.0,-3.956039125715353,10.317447719844054 -559,9.0,20.0,-5.101853820159654,10.98071411292983 -559,9.0,21.0,-2.619319553382597,5.400770303329455 -559,10.0,8.0,0.0,4.807692307692308 -559,10.0,10.0,0.0,-4.807692307692308 -559,11.0,3.0,0.0,4.191255364806866 -559,11.0,11.0,6.573961583776156,-24.424167659260668 -559,11.0,12.0,0.0,7.142857142857143 -559,11.0,13.0,-1.5265676088395577,3.1734252729654173 -559,11.0,14.0,-3.0953961826564296,6.097275864326261 -559,11.0,15.0,-1.9519977922801688,4.104359379111847 -559,12.0,11.0,0.0,7.142857142857143 -559,12.0,12.0,0.0,-7.142857142857143 -559,13.0,11.0,-1.5265676088395577,3.1734252729654173 -559,13.0,13.0,4.01751987283902,-5.424299332335067 -559,13.0,14.0,-2.4909522639994623,2.250874059369649 -559,14.0,11.0,-3.0953961826564296,6.097275864326261 -559,14.0,13.0,-2.4909522639994623,2.250874059369649 -559,14.0,14.0,9.365498545964757,-16.01163373210796 -559,14.0,17.0,-1.8108011504072024,3.687418931630696 -559,14.0,22.0,-1.9683489489016612,3.976064876781356 -559,15.0,11.0,-1.9519977922801688,4.104359379111847 -559,15.0,15.0,3.271064728633931,-8.94513365126506 -559,15.0,16.0,-1.3190669363537617,4.8407742721532125 -559,16.0,9.0,-3.956039125715353,10.317447719844054 -559,16.0,15.0,-1.3190669363537617,4.8407742721532125 -559,16.0,16.0,5.275106062069114,-15.158221991997266 -559,17.0,14.0,-1.8108011504072024,3.687418931630696 -559,17.0,17.0,4.886487584415919,-9.906177730909668 -559,17.0,18.0,-3.0756864340087167,6.218758799278971 -559,18.0,17.0,-3.0756864340087167,6.218758799278971 -559,18.0,18.0,8.958039375185187,-17.98346468163191 -559,18.0,19.0,-5.88235294117647,11.76470588235294 -559,19.0,18.0,-5.88235294117647,11.76470588235294 -559,19.0,19.0,5.88235294117647,-11.76470588235294 -559,20.0,9.0,-5.101853820159654,10.98071411292983 -559,20.0,20.0,5.101853820159654,-10.98071411292983 -559,21.0,9.0,-2.619319553382597,5.400770303329455 -559,21.0,21.0,5.159857705638154,-9.355173166405494 -559,21.0,23.0,-2.5405381522555563,3.95440286307604 -559,22.0,14.0,-1.9683489489016612,3.976064876781356 -559,22.0,22.0,3.429754555384988,-6.965303617315433 -559,22.0,23.0,-1.4614056064833263,2.989238740534077 -559,23.0,21.0,-2.5405381522555563,3.95440286307604 -559,23.0,22.0,-1.4614056064833263,2.989238740534077 -559,23.0,23.0,5.311836702613133,-9.188263657315172 -559,23.0,24.0,-1.3098929438742493,2.287622053705056 -559,24.0,23.0,-1.3098929438742493,2.287622053705056 -559,24.0,24.0,4.495715080321987,-7.864978761969621 -559,24.0,25.0,-1.2165301194494855,1.8171440463475024 -559,24.0,26.0,-1.9692920169982515,3.760212661917064 -559,25.0,24.0,-1.2165301194494855,1.8171440463475024 -559,25.0,25.0,1.2165301194494855,-1.8171440463475024 -559,26.0,24.0,-1.9692920169982515,3.760212661917064 -559,26.0,26.0,3.652281470778589,-9.46044252232512 -559,26.0,27.0,0.0,2.608731947574922 -559,26.0,28.0,-0.99553355095268,1.881005840357816 -559,26.0,29.0,-0.6874559028276572,1.293971494797717 -559,27.0,5.0,-4.362844058012917,15.463571542897856 -559,27.0,26.0,0.0,2.608731947574922 -559,27.0,27.0,4.362844058012917,-18.15204256311988 -559,28.0,26.0,-0.99553355095268,1.881005840357816 -559,28.0,28.0,0.99553355095268,-1.881005840357816 -559,29.0,26.0,-0.6874559028276572,1.293971494797717 -559,29.0,29.0,0.6874559028276572,-1.293971494797717 -560,0.0,0.0,6.765516048652632,-21.23160167089863 -560,0.0,1.0,-5.224646179885656,15.646726840803398 -560,0.0,2.0,-1.5408698687669766,5.631674830095234 -560,1.0,0.0,-5.224646179885656,15.646726840803398 -560,1.0,1.0,9.75228216552403,-30.648662892676068 -560,1.0,3.0,-1.7055303166990268,5.1973792282565086 -560,1.0,4.0,-1.1359607881738778,4.772479328281356 -560,1.0,5.0,-1.6861448807654689,5.116477495334806 -560,2.0,0.0,-1.5408698687669766,5.631674830095234 -560,2.0,2.0,9.736318911079088,-29.13794745915803 -560,2.0,3.0,-8.19544904231211,23.5308726290628 -560,3.0,1.0,-1.7055303166990268,5.1973792282565086 -560,3.0,2.0,-8.19544904231211,23.5308726290628 -560,3.0,3.0,16.314103089185693,-55.509410535254254 -560,3.0,5.0,-6.413123730174556,22.31120356548123 -560,3.0,11.0,0.0,4.191255364806866 -560,4.0,1.0,-1.1359607881738778,4.772479328281356 -560,4.0,4.0,4.089980824135861,-12.190647245055052 -560,4.0,6.0,-2.954020035961983,7.449267916773697 -560,5.0,1.0,-1.6861448807654689,5.116477495334806 -560,5.0,3.0,-6.413123730174556,22.31120356548123 -560,5.0,5.0,22.341631269034565,-82.8291478657789 -560,5.0,6.0,-3.590210423980992,11.02611441072814 -560,5.0,7.0,-6.289308176100628,22.0125786163522 -560,5.0,8.0,0.0,4.915840805411357 -560,5.0,9.0,0.0,1.8561002591115965 -560,5.0,27.0,-4.362844058012917,15.463571542897856 -560,6.0,4.0,-2.954020035961983,7.449267916773697 -560,6.0,5.0,-3.590210423980992,11.02611441072814 -560,6.0,6.0,6.544230459942975,-18.45668232750184 -560,7.0,5.0,-6.289308176100628,22.0125786163522 -560,7.0,7.0,7.733287237496075,-26.527493274828448 -560,7.0,27.0,-1.4439790613954469,4.540814658476248 -560,8.0,5.0,0.0,4.915840805411357 -560,8.0,8.0,0.0,-18.706293706293707 -560,8.0,9.0,0.0,9.090909090909092 -560,8.0,10.0,0.0,4.807692307692308 -560,9.0,5.0,0.0,1.8561002591115965 -560,9.0,8.0,0.0,9.090909090909092 -560,9.0,9.0,13.462042814524237,-41.3837606675224 -560,9.0,16.0,-3.956039125715353,10.317447719844054 -560,9.0,19.0,-1.7848303152666305,3.98535828943083 -560,9.0,20.0,-5.101853820159654,10.98071411292983 -560,9.0,21.0,-2.619319553382597,5.400770303329455 -560,10.0,8.0,0.0,4.807692307692308 -560,10.0,10.0,0.0,-4.807692307692308 -560,11.0,3.0,0.0,4.191255364806866 -560,11.0,11.0,6.573961583776156,-24.424167659260668 -560,11.0,12.0,0.0,7.142857142857143 -560,11.0,13.0,-1.5265676088395577,3.1734252729654173 -560,11.0,14.0,-3.0953961826564296,6.097275864326261 -560,11.0,15.0,-1.9519977922801688,4.104359379111847 -560,12.0,11.0,0.0,7.142857142857143 -560,12.0,12.0,0.0,-7.142857142857143 -560,13.0,11.0,-1.5265676088395577,3.1734252729654173 -560,13.0,13.0,4.01751987283902,-5.424299332335067 -560,13.0,14.0,-2.4909522639994623,2.250874059369649 -560,14.0,11.0,-3.0953961826564296,6.097275864326261 -560,14.0,13.0,-2.4909522639994623,2.250874059369649 -560,14.0,14.0,9.365498545964757,-16.01163373210796 -560,14.0,17.0,-1.8108011504072024,3.687418931630696 -560,14.0,22.0,-1.9683489489016612,3.976064876781356 -560,15.0,11.0,-1.9519977922801688,4.104359379111847 -560,15.0,15.0,3.271064728633931,-8.94513365126506 -560,15.0,16.0,-1.3190669363537617,4.8407742721532125 -560,16.0,9.0,-3.956039125715353,10.317447719844054 -560,16.0,15.0,-1.3190669363537617,4.8407742721532125 -560,16.0,16.0,5.275106062069114,-15.158221991997266 -560,17.0,14.0,-1.8108011504072024,3.687418931630696 -560,17.0,17.0,4.886487584415919,-9.906177730909668 -560,17.0,18.0,-3.0756864340087167,6.218758799278971 -560,18.0,17.0,-3.0756864340087167,6.218758799278971 -560,18.0,18.0,8.958039375185187,-17.98346468163191 -560,18.0,19.0,-5.88235294117647,11.76470588235294 -560,19.0,9.0,-1.7848303152666305,3.98535828943083 -560,19.0,18.0,-5.88235294117647,11.76470588235294 -560,19.0,19.0,7.6671832564431,-15.75006417178377 -560,20.0,9.0,-5.101853820159654,10.98071411292983 -560,20.0,20.0,21.876495189895888,-45.10843276170355 -560,20.0,21.0,-16.774641369736234,34.127718648773715 -560,21.0,9.0,-2.619319553382597,5.400770303329455 -560,21.0,20.0,-16.774641369736234,34.127718648773715 -560,21.0,21.0,21.93449907537439,-43.48289181517921 -560,21.0,23.0,-2.5405381522555563,3.95440286307604 -560,22.0,14.0,-1.9683489489016612,3.976064876781356 -560,22.0,22.0,3.429754555384988,-6.965303617315433 -560,22.0,23.0,-1.4614056064833263,2.989238740534077 -560,23.0,21.0,-2.5405381522555563,3.95440286307604 -560,23.0,22.0,-1.4614056064833263,2.989238740534077 -560,23.0,23.0,5.311836702613133,-9.188263657315172 -560,23.0,24.0,-1.3098929438742493,2.287622053705056 -560,24.0,23.0,-1.3098929438742493,2.287622053705056 -560,24.0,24.0,4.495715080321987,-7.864978761969621 -560,24.0,25.0,-1.2165301194494855,1.8171440463475024 -560,24.0,26.0,-1.9692920169982515,3.760212661917064 -560,25.0,24.0,-1.2165301194494855,1.8171440463475024 -560,25.0,25.0,1.2165301194494855,-1.8171440463475024 -560,26.0,24.0,-1.9692920169982515,3.760212661917064 -560,26.0,26.0,3.652281470778589,-9.46044252232512 -560,26.0,27.0,0.0,2.608731947574922 -560,26.0,28.0,-0.99553355095268,1.881005840357816 -560,26.0,29.0,-0.6874559028276572,1.293971494797717 -560,27.0,5.0,-4.362844058012917,15.463571542897856 -560,27.0,7.0,-1.4439790613954469,4.540814658476248 -560,27.0,26.0,0.0,2.608731947574922 -560,27.0,27.0,5.806823119408364,-22.67145722159613 -560,28.0,26.0,-0.99553355095268,1.881005840357816 -560,28.0,28.0,1.9075867579849564,-3.604364401207048 -560,28.0,29.0,-0.9120532070322764,1.7233585608492326 -560,29.0,26.0,-0.6874559028276572,1.293971494797717 -560,29.0,28.0,-0.9120532070322764,1.7233585608492326 -560,29.0,29.0,1.5995091098599337,-3.0173300556469496 -561,0.0,0.0,6.765516048652632,-21.23160167089863 -561,0.0,1.0,-5.224646179885656,15.646726840803398 -561,0.0,2.0,-1.5408698687669766,5.631674830095234 -561,1.0,0.0,-5.224646179885656,15.646726840803398 -561,1.0,1.0,9.75228216552403,-30.648662892676068 -561,1.0,3.0,-1.7055303166990268,5.1973792282565086 -561,1.0,4.0,-1.1359607881738778,4.772479328281356 -561,1.0,5.0,-1.6861448807654689,5.116477495334806 -561,2.0,0.0,-1.5408698687669766,5.631674830095234 -561,2.0,2.0,9.736318911079088,-29.13794745915803 -561,2.0,3.0,-8.19544904231211,23.5308726290628 -561,3.0,1.0,-1.7055303166990268,5.1973792282565086 -561,3.0,2.0,-8.19544904231211,23.5308726290628 -561,3.0,3.0,9.900979359011137,-33.202706969773025 -561,3.0,11.0,0.0,4.191255364806866 -561,4.0,1.0,-1.1359607881738778,4.772479328281356 -561,4.0,4.0,4.089980824135861,-12.190647245055052 -561,4.0,6.0,-2.954020035961983,7.449267916773697 -561,5.0,1.0,-1.6861448807654689,5.116477495334806 -561,5.0,5.0,15.928507538860009,-60.52244430029767 -561,5.0,6.0,-3.590210423980992,11.02611441072814 -561,5.0,7.0,-6.289308176100628,22.0125786163522 -561,5.0,8.0,0.0,4.915840805411357 -561,5.0,9.0,0.0,1.8561002591115965 -561,5.0,27.0,-4.362844058012917,15.463571542897856 -561,6.0,4.0,-2.954020035961983,7.449267916773697 -561,6.0,5.0,-3.590210423980992,11.02611441072814 -561,6.0,6.0,6.544230459942975,-18.45668232750184 -561,7.0,5.0,-6.289308176100628,22.0125786163522 -561,7.0,7.0,7.733287237496075,-26.527493274828448 -561,7.0,27.0,-1.4439790613954469,4.540814658476248 -561,8.0,5.0,0.0,4.915840805411357 -561,8.0,8.0,0.0,-18.706293706293707 -561,8.0,9.0,0.0,9.090909090909092 -561,8.0,10.0,0.0,4.807692307692308 -561,9.0,5.0,0.0,1.8561002591115965 -561,9.0,8.0,0.0,9.090909090909092 -561,9.0,9.0,13.462042814524237,-41.3837606675224 -561,9.0,16.0,-3.956039125715353,10.317447719844054 -561,9.0,19.0,-1.7848303152666305,3.98535828943083 -561,9.0,20.0,-5.101853820159654,10.98071411292983 -561,9.0,21.0,-2.619319553382597,5.400770303329455 -561,10.0,8.0,0.0,4.807692307692308 -561,10.0,10.0,0.0,-4.807692307692308 -561,11.0,3.0,0.0,4.191255364806866 -561,11.0,11.0,5.047393974936599,-21.25074238629525 -561,11.0,12.0,0.0,7.142857142857143 -561,11.0,14.0,-3.0953961826564296,6.097275864326261 -561,11.0,15.0,-1.9519977922801688,4.104359379111847 -561,12.0,11.0,0.0,7.142857142857143 -561,12.0,12.0,0.0,-7.142857142857143 -561,13.0,13.0,2.4909522639994623,-2.250874059369649 -561,13.0,14.0,-2.4909522639994623,2.250874059369649 -561,14.0,11.0,-3.0953961826564296,6.097275864326261 -561,14.0,13.0,-2.4909522639994623,2.250874059369649 -561,14.0,14.0,9.365498545964757,-16.01163373210796 -561,14.0,17.0,-1.8108011504072024,3.687418931630696 -561,14.0,22.0,-1.9683489489016612,3.976064876781356 -561,15.0,11.0,-1.9519977922801688,4.104359379111847 -561,15.0,15.0,3.271064728633931,-8.94513365126506 -561,15.0,16.0,-1.3190669363537617,4.8407742721532125 -561,16.0,9.0,-3.956039125715353,10.317447719844054 -561,16.0,15.0,-1.3190669363537617,4.8407742721532125 -561,16.0,16.0,5.275106062069114,-15.158221991997266 -561,17.0,14.0,-1.8108011504072024,3.687418931630696 -561,17.0,17.0,4.886487584415919,-9.906177730909668 -561,17.0,18.0,-3.0756864340087167,6.218758799278971 -561,18.0,17.0,-3.0756864340087167,6.218758799278971 -561,18.0,18.0,8.958039375185187,-17.98346468163191 -561,18.0,19.0,-5.88235294117647,11.76470588235294 -561,19.0,9.0,-1.7848303152666305,3.98535828943083 -561,19.0,18.0,-5.88235294117647,11.76470588235294 -561,19.0,19.0,7.6671832564431,-15.75006417178377 -561,20.0,9.0,-5.101853820159654,10.98071411292983 -561,20.0,20.0,21.876495189895888,-45.10843276170355 -561,20.0,21.0,-16.774641369736234,34.127718648773715 -561,21.0,9.0,-2.619319553382597,5.400770303329455 -561,21.0,20.0,-16.774641369736234,34.127718648773715 -561,21.0,21.0,21.93449907537439,-43.48289181517921 -561,21.0,23.0,-2.5405381522555563,3.95440286307604 -561,22.0,14.0,-1.9683489489016612,3.976064876781356 -561,22.0,22.0,3.429754555384988,-6.965303617315433 -561,22.0,23.0,-1.4614056064833263,2.989238740534077 -561,23.0,21.0,-2.5405381522555563,3.95440286307604 -561,23.0,22.0,-1.4614056064833263,2.989238740534077 -561,23.0,23.0,5.311836702613133,-9.188263657315172 -561,23.0,24.0,-1.3098929438742493,2.287622053705056 -561,24.0,23.0,-1.3098929438742493,2.287622053705056 -561,24.0,24.0,4.495715080321987,-7.864978761969621 -561,24.0,25.0,-1.2165301194494855,1.8171440463475024 -561,24.0,26.0,-1.9692920169982515,3.760212661917064 -561,25.0,24.0,-1.2165301194494855,1.8171440463475024 -561,25.0,25.0,1.2165301194494855,-1.8171440463475024 -561,26.0,24.0,-1.9692920169982515,3.760212661917064 -561,26.0,26.0,3.652281470778589,-9.46044252232512 -561,26.0,27.0,0.0,2.608731947574922 -561,26.0,28.0,-0.99553355095268,1.881005840357816 -561,26.0,29.0,-0.6874559028276572,1.293971494797717 -561,27.0,5.0,-4.362844058012917,15.463571542897856 -561,27.0,7.0,-1.4439790613954469,4.540814658476248 -561,27.0,26.0,0.0,2.608731947574922 -561,27.0,27.0,5.806823119408364,-22.67145722159613 -561,28.0,26.0,-0.99553355095268,1.881005840357816 -561,28.0,28.0,1.9075867579849564,-3.604364401207048 -561,28.0,29.0,-0.9120532070322764,1.7233585608492326 -561,29.0,26.0,-0.6874559028276572,1.293971494797717 -561,29.0,28.0,-0.9120532070322764,1.7233585608492326 -561,29.0,29.0,1.5995091098599337,-3.0173300556469496 -562,0.0,0.0,6.765516048652632,-21.23160167089863 -562,0.0,1.0,-5.224646179885656,15.646726840803398 -562,0.0,2.0,-1.5408698687669766,5.631674830095234 -562,1.0,0.0,-5.224646179885656,15.646726840803398 -562,1.0,1.0,9.75228216552403,-30.648662892676068 -562,1.0,3.0,-1.7055303166990268,5.1973792282565086 -562,1.0,4.0,-1.1359607881738778,4.772479328281356 -562,1.0,5.0,-1.6861448807654689,5.116477495334806 -562,2.0,0.0,-1.5408698687669766,5.631674830095234 -562,2.0,2.0,9.736318911079088,-29.13794745915803 -562,2.0,3.0,-8.19544904231211,23.5308726290628 -562,3.0,1.0,-1.7055303166990268,5.1973792282565086 -562,3.0,2.0,-8.19544904231211,23.5308726290628 -562,3.0,3.0,16.314103089185693,-55.509410535254254 -562,3.0,5.0,-6.413123730174556,22.31120356548123 -562,3.0,11.0,0.0,4.191255364806866 -562,4.0,1.0,-1.1359607881738778,4.772479328281356 -562,4.0,4.0,1.1359607881738778,-4.751579328281355 -562,5.0,1.0,-1.6861448807654689,5.116477495334806 -562,5.0,3.0,-6.413123730174556,22.31120356548123 -562,5.0,5.0,22.341631269034565,-82.8291478657789 -562,5.0,6.0,-3.590210423980992,11.02611441072814 -562,5.0,7.0,-6.289308176100628,22.0125786163522 -562,5.0,8.0,0.0,4.915840805411357 -562,5.0,9.0,0.0,1.8561002591115965 -562,5.0,27.0,-4.362844058012917,15.463571542897856 -562,6.0,5.0,-3.590210423980992,11.02611441072814 -562,6.0,6.0,3.590210423980992,-11.01761441072814 -562,7.0,5.0,-6.289308176100628,22.0125786163522 -562,7.0,7.0,6.289308176100628,-22.0080786163522 -562,8.0,5.0,0.0,4.915840805411357 -562,8.0,8.0,0.0,-18.706293706293707 -562,8.0,9.0,0.0,9.090909090909092 -562,8.0,10.0,0.0,4.807692307692308 -562,9.0,5.0,0.0,1.8561002591115965 -562,9.0,8.0,0.0,9.090909090909092 -562,9.0,9.0,13.462042814524237,-41.3837606675224 -562,9.0,16.0,-3.956039125715353,10.317447719844054 -562,9.0,19.0,-1.7848303152666305,3.98535828943083 -562,9.0,20.0,-5.101853820159654,10.98071411292983 -562,9.0,21.0,-2.619319553382597,5.400770303329455 -562,10.0,8.0,0.0,4.807692307692308 -562,10.0,10.0,0.0,-4.807692307692308 -562,11.0,3.0,0.0,4.191255364806866 -562,11.0,11.0,6.573961583776156,-24.424167659260668 -562,11.0,12.0,0.0,7.142857142857143 -562,11.0,13.0,-1.5265676088395577,3.1734252729654173 -562,11.0,14.0,-3.0953961826564296,6.097275864326261 -562,11.0,15.0,-1.9519977922801688,4.104359379111847 -562,12.0,11.0,0.0,7.142857142857143 -562,12.0,12.0,0.0,-7.142857142857143 -562,13.0,11.0,-1.5265676088395577,3.1734252729654173 -562,13.0,13.0,4.01751987283902,-5.424299332335067 -562,13.0,14.0,-2.4909522639994623,2.250874059369649 -562,14.0,11.0,-3.0953961826564296,6.097275864326261 -562,14.0,13.0,-2.4909522639994623,2.250874059369649 -562,14.0,14.0,9.365498545964757,-16.01163373210796 -562,14.0,17.0,-1.8108011504072024,3.687418931630696 -562,14.0,22.0,-1.9683489489016612,3.976064876781356 -562,15.0,11.0,-1.9519977922801688,4.104359379111847 -562,15.0,15.0,3.271064728633931,-8.94513365126506 -562,15.0,16.0,-1.3190669363537617,4.8407742721532125 -562,16.0,9.0,-3.956039125715353,10.317447719844054 -562,16.0,15.0,-1.3190669363537617,4.8407742721532125 -562,16.0,16.0,5.275106062069114,-15.158221991997266 -562,17.0,14.0,-1.8108011504072024,3.687418931630696 -562,17.0,17.0,4.886487584415919,-9.906177730909668 -562,17.0,18.0,-3.0756864340087167,6.218758799278971 -562,18.0,17.0,-3.0756864340087167,6.218758799278971 -562,18.0,18.0,8.958039375185187,-17.98346468163191 -562,18.0,19.0,-5.88235294117647,11.76470588235294 -562,19.0,9.0,-1.7848303152666305,3.98535828943083 -562,19.0,18.0,-5.88235294117647,11.76470588235294 -562,19.0,19.0,7.6671832564431,-15.75006417178377 -562,20.0,9.0,-5.101853820159654,10.98071411292983 -562,20.0,20.0,21.876495189895888,-45.10843276170355 -562,20.0,21.0,-16.774641369736234,34.127718648773715 -562,21.0,9.0,-2.619319553382597,5.400770303329455 -562,21.0,20.0,-16.774641369736234,34.127718648773715 -562,21.0,21.0,21.93449907537439,-43.48289181517921 -562,21.0,23.0,-2.5405381522555563,3.95440286307604 -562,22.0,14.0,-1.9683489489016612,3.976064876781356 -562,22.0,22.0,3.429754555384988,-6.965303617315433 -562,22.0,23.0,-1.4614056064833263,2.989238740534077 -562,23.0,21.0,-2.5405381522555563,3.95440286307604 -562,23.0,22.0,-1.4614056064833263,2.989238740534077 -562,23.0,23.0,5.311836702613133,-9.188263657315172 -562,23.0,24.0,-1.3098929438742493,2.287622053705056 -562,24.0,23.0,-1.3098929438742493,2.287622053705056 -562,24.0,24.0,4.495715080321987,-7.864978761969621 -562,24.0,25.0,-1.2165301194494855,1.8171440463475024 -562,24.0,26.0,-1.9692920169982515,3.760212661917064 -562,25.0,24.0,-1.2165301194494855,1.8171440463475024 -562,25.0,25.0,1.2165301194494855,-1.8171440463475024 -562,26.0,24.0,-1.9692920169982515,3.760212661917064 -562,26.0,26.0,3.652281470778589,-9.46044252232512 -562,26.0,27.0,0.0,2.608731947574922 -562,26.0,28.0,-0.99553355095268,1.881005840357816 -562,26.0,29.0,-0.6874559028276572,1.293971494797717 -562,27.0,5.0,-4.362844058012917,15.463571542897856 -562,27.0,26.0,0.0,2.608731947574922 -562,27.0,27.0,4.362844058012917,-18.15204256311988 -562,28.0,26.0,-0.99553355095268,1.881005840357816 -562,28.0,28.0,1.9075867579849564,-3.604364401207048 -562,28.0,29.0,-0.9120532070322764,1.7233585608492326 -562,29.0,26.0,-0.6874559028276572,1.293971494797717 -562,29.0,28.0,-0.9120532070322764,1.7233585608492326 -562,29.0,29.0,1.5995091098599337,-3.0173300556469496 -563,0.0,0.0,6.765516048652632,-21.23160167089863 -563,0.0,1.0,-5.224646179885656,15.646726840803398 -563,0.0,2.0,-1.5408698687669766,5.631674830095234 -563,1.0,0.0,-5.224646179885656,15.646726840803398 -563,1.0,1.0,9.75228216552403,-30.648662892676068 -563,1.0,3.0,-1.7055303166990268,5.1973792282565086 -563,1.0,4.0,-1.1359607881738778,4.772479328281356 -563,1.0,5.0,-1.6861448807654689,5.116477495334806 -563,2.0,0.0,-1.5408698687669766,5.631674830095234 -563,2.0,2.0,9.736318911079088,-29.13794745915803 -563,2.0,3.0,-8.19544904231211,23.5308726290628 -563,3.0,1.0,-1.7055303166990268,5.1973792282565086 -563,3.0,2.0,-8.19544904231211,23.5308726290628 -563,3.0,3.0,16.314103089185693,-55.509410535254254 -563,3.0,5.0,-6.413123730174556,22.31120356548123 -563,3.0,11.0,0.0,4.191255364806866 -563,4.0,1.0,-1.1359607881738778,4.772479328281356 -563,4.0,4.0,4.089980824135861,-12.190647245055052 -563,4.0,6.0,-2.954020035961983,7.449267916773697 -563,5.0,1.0,-1.6861448807654689,5.116477495334806 -563,5.0,3.0,-6.413123730174556,22.31120356548123 -563,5.0,5.0,22.341631269034565,-82.8291478657789 -563,5.0,6.0,-3.590210423980992,11.02611441072814 -563,5.0,7.0,-6.289308176100628,22.0125786163522 -563,5.0,8.0,0.0,4.915840805411357 -563,5.0,9.0,0.0,1.8561002591115965 -563,5.0,27.0,-4.362844058012917,15.463571542897856 -563,6.0,4.0,-2.954020035961983,7.449267916773697 -563,6.0,5.0,-3.590210423980992,11.02611441072814 -563,6.0,6.0,6.544230459942975,-18.45668232750184 -563,7.0,5.0,-6.289308176100628,22.0125786163522 -563,7.0,7.0,7.733287237496075,-26.527493274828448 -563,7.0,27.0,-1.4439790613954469,4.540814658476248 -563,8.0,5.0,0.0,4.915840805411357 -563,8.0,8.0,0.0,-18.706293706293707 -563,8.0,9.0,0.0,9.090909090909092 -563,8.0,10.0,0.0,4.807692307692308 -563,9.0,5.0,0.0,1.8561002591115965 -563,9.0,8.0,0.0,9.090909090909092 -563,9.0,9.0,13.462042814524237,-41.3837606675224 -563,9.0,16.0,-3.956039125715353,10.317447719844054 -563,9.0,19.0,-1.7848303152666305,3.98535828943083 -563,9.0,20.0,-5.101853820159654,10.98071411292983 -563,9.0,21.0,-2.619319553382597,5.400770303329455 -563,10.0,8.0,0.0,4.807692307692308 -563,10.0,10.0,0.0,-4.807692307692308 -563,11.0,3.0,0.0,4.191255364806866 -563,11.0,11.0,6.573961583776156,-24.424167659260668 -563,11.0,12.0,0.0,7.142857142857143 -563,11.0,13.0,-1.5265676088395577,3.1734252729654173 -563,11.0,14.0,-3.0953961826564296,6.097275864326261 -563,11.0,15.0,-1.9519977922801688,4.104359379111847 -563,12.0,11.0,0.0,7.142857142857143 -563,12.0,12.0,0.0,-7.142857142857143 -563,13.0,11.0,-1.5265676088395577,3.1734252729654173 -563,13.0,13.0,4.01751987283902,-5.424299332335067 -563,13.0,14.0,-2.4909522639994623,2.250874059369649 -563,14.0,11.0,-3.0953961826564296,6.097275864326261 -563,14.0,13.0,-2.4909522639994623,2.250874059369649 -563,14.0,14.0,7.397149597063095,-12.035568855326606 -563,14.0,17.0,-1.8108011504072024,3.687418931630696 -563,15.0,11.0,-1.9519977922801688,4.104359379111847 -563,15.0,15.0,3.271064728633931,-8.94513365126506 -563,15.0,16.0,-1.3190669363537617,4.8407742721532125 -563,16.0,9.0,-3.956039125715353,10.317447719844054 -563,16.0,15.0,-1.3190669363537617,4.8407742721532125 -563,16.0,16.0,5.275106062069114,-15.158221991997266 -563,17.0,14.0,-1.8108011504072024,3.687418931630696 -563,17.0,17.0,4.886487584415919,-9.906177730909668 -563,17.0,18.0,-3.0756864340087167,6.218758799278971 -563,18.0,17.0,-3.0756864340087167,6.218758799278971 -563,18.0,18.0,8.958039375185187,-17.98346468163191 -563,18.0,19.0,-5.88235294117647,11.76470588235294 -563,19.0,9.0,-1.7848303152666305,3.98535828943083 -563,19.0,18.0,-5.88235294117647,11.76470588235294 -563,19.0,19.0,7.6671832564431,-15.75006417178377 -563,20.0,9.0,-5.101853820159654,10.98071411292983 -563,20.0,20.0,21.876495189895888,-45.10843276170355 -563,20.0,21.0,-16.774641369736234,34.127718648773715 -563,21.0,9.0,-2.619319553382597,5.400770303329455 -563,21.0,20.0,-16.774641369736234,34.127718648773715 -563,21.0,21.0,21.93449907537439,-43.48289181517921 -563,21.0,23.0,-2.5405381522555563,3.95440286307604 -563,22.0,22.0,1.4614056064833263,-2.989238740534077 -563,22.0,23.0,-1.4614056064833263,2.989238740534077 -563,23.0,21.0,-2.5405381522555563,3.95440286307604 -563,23.0,22.0,-1.4614056064833263,2.989238740534077 -563,23.0,23.0,5.311836702613133,-9.188263657315172 -563,23.0,24.0,-1.3098929438742493,2.287622053705056 -563,24.0,23.0,-1.3098929438742493,2.287622053705056 -563,24.0,24.0,2.526423063323735,-4.104766100052558 -563,24.0,25.0,-1.2165301194494855,1.8171440463475024 -563,25.0,24.0,-1.2165301194494855,1.8171440463475024 -563,25.0,25.0,1.2165301194494855,-1.8171440463475024 -563,26.0,26.0,1.6829894537803372,-5.700229860408058 -563,26.0,27.0,0.0,2.608731947574922 -563,26.0,28.0,-0.99553355095268,1.881005840357816 -563,26.0,29.0,-0.6874559028276572,1.293971494797717 -563,27.0,5.0,-4.362844058012917,15.463571542897856 -563,27.0,7.0,-1.4439790613954469,4.540814658476248 -563,27.0,26.0,0.0,2.608731947574922 -563,27.0,27.0,5.806823119408364,-22.67145722159613 -563,28.0,26.0,-0.99553355095268,1.881005840357816 -563,28.0,28.0,1.9075867579849564,-3.604364401207048 -563,28.0,29.0,-0.9120532070322764,1.7233585608492326 -563,29.0,26.0,-0.6874559028276572,1.293971494797717 -563,29.0,28.0,-0.9120532070322764,1.7233585608492326 -563,29.0,29.0,1.5995091098599337,-3.0173300556469496 -564,0.0,0.0,6.765516048652632,-21.23160167089863 -564,0.0,1.0,-5.224646179885656,15.646726840803398 -564,0.0,2.0,-1.5408698687669766,5.631674830095234 -564,1.0,0.0,-5.224646179885656,15.646726840803398 -564,1.0,1.0,9.75228216552403,-30.648662892676068 -564,1.0,3.0,-1.7055303166990268,5.1973792282565086 -564,1.0,4.0,-1.1359607881738778,4.772479328281356 -564,1.0,5.0,-1.6861448807654689,5.116477495334806 -564,2.0,0.0,-1.5408698687669766,5.631674830095234 -564,2.0,2.0,9.736318911079088,-29.13794745915803 -564,2.0,3.0,-8.19544904231211,23.5308726290628 -564,3.0,1.0,-1.7055303166990268,5.1973792282565086 -564,3.0,2.0,-8.19544904231211,23.5308726290628 -564,3.0,3.0,16.314103089185693,-55.509410535254254 -564,3.0,5.0,-6.413123730174556,22.31120356548123 -564,3.0,11.0,0.0,4.191255364806866 -564,4.0,1.0,-1.1359607881738778,4.772479328281356 -564,4.0,4.0,4.089980824135861,-12.190647245055052 -564,4.0,6.0,-2.954020035961983,7.449267916773697 -564,5.0,1.0,-1.6861448807654689,5.116477495334806 -564,5.0,3.0,-6.413123730174556,22.31120356548123 -564,5.0,5.0,22.341631269034565,-82.8291478657789 -564,5.0,6.0,-3.590210423980992,11.02611441072814 -564,5.0,7.0,-6.289308176100628,22.0125786163522 -564,5.0,8.0,0.0,4.915840805411357 -564,5.0,9.0,0.0,1.8561002591115965 -564,5.0,27.0,-4.362844058012917,15.463571542897856 -564,6.0,4.0,-2.954020035961983,7.449267916773697 -564,6.0,5.0,-3.590210423980992,11.02611441072814 -564,6.0,6.0,6.544230459942975,-18.45668232750184 -564,7.0,5.0,-6.289308176100628,22.0125786163522 -564,7.0,7.0,7.733287237496075,-26.527493274828448 -564,7.0,27.0,-1.4439790613954469,4.540814658476248 -564,8.0,5.0,0.0,4.915840805411357 -564,8.0,8.0,0.0,-18.706293706293707 -564,8.0,9.0,0.0,9.090909090909092 -564,8.0,10.0,0.0,4.807692307692308 -564,9.0,5.0,0.0,1.8561002591115965 -564,9.0,8.0,0.0,9.090909090909092 -564,9.0,9.0,13.462042814524237,-41.3837606675224 -564,9.0,16.0,-3.956039125715353,10.317447719844054 -564,9.0,19.0,-1.7848303152666305,3.98535828943083 -564,9.0,20.0,-5.101853820159654,10.98071411292983 -564,9.0,21.0,-2.619319553382597,5.400770303329455 -564,10.0,8.0,0.0,4.807692307692308 -564,10.0,10.0,0.0,-4.807692307692308 -564,11.0,3.0,0.0,4.191255364806866 -564,11.0,11.0,6.573961583776156,-24.424167659260668 -564,11.0,12.0,0.0,7.142857142857143 -564,11.0,13.0,-1.5265676088395577,3.1734252729654173 -564,11.0,14.0,-3.0953961826564296,6.097275864326261 -564,11.0,15.0,-1.9519977922801688,4.104359379111847 -564,12.0,11.0,0.0,7.142857142857143 -564,12.0,12.0,0.0,-7.142857142857143 -564,13.0,11.0,-1.5265676088395577,3.1734252729654173 -564,13.0,13.0,4.01751987283902,-5.424299332335067 -564,13.0,14.0,-2.4909522639994623,2.250874059369649 -564,14.0,11.0,-3.0953961826564296,6.097275864326261 -564,14.0,13.0,-2.4909522639994623,2.250874059369649 -564,14.0,14.0,9.365498545964757,-16.01163373210796 -564,14.0,17.0,-1.8108011504072024,3.687418931630696 -564,14.0,22.0,-1.9683489489016612,3.976064876781356 -564,15.0,11.0,-1.9519977922801688,4.104359379111847 -564,15.0,15.0,3.271064728633931,-8.94513365126506 -564,15.0,16.0,-1.3190669363537617,4.8407742721532125 -564,16.0,9.0,-3.956039125715353,10.317447719844054 -564,16.0,15.0,-1.3190669363537617,4.8407742721532125 -564,16.0,16.0,5.275106062069114,-15.158221991997266 -564,17.0,14.0,-1.8108011504072024,3.687418931630696 -564,17.0,17.0,4.886487584415919,-9.906177730909668 -564,17.0,18.0,-3.0756864340087167,6.218758799278971 -564,18.0,17.0,-3.0756864340087167,6.218758799278971 -564,18.0,18.0,8.958039375185187,-17.98346468163191 -564,18.0,19.0,-5.88235294117647,11.76470588235294 -564,19.0,9.0,-1.7848303152666305,3.98535828943083 -564,19.0,18.0,-5.88235294117647,11.76470588235294 -564,19.0,19.0,7.6671832564431,-15.75006417178377 -564,20.0,9.0,-5.101853820159654,10.98071411292983 -564,20.0,20.0,21.876495189895888,-45.10843276170355 -564,20.0,21.0,-16.774641369736234,34.127718648773715 -564,21.0,9.0,-2.619319553382597,5.400770303329455 -564,21.0,20.0,-16.774641369736234,34.127718648773715 -564,21.0,21.0,21.93449907537439,-43.48289181517921 -564,21.0,23.0,-2.5405381522555563,3.95440286307604 -564,22.0,14.0,-1.9683489489016612,3.976064876781356 -564,22.0,22.0,3.429754555384988,-6.965303617315433 -564,22.0,23.0,-1.4614056064833263,2.989238740534077 -564,23.0,21.0,-2.5405381522555563,3.95440286307604 -564,23.0,22.0,-1.4614056064833263,2.989238740534077 -564,23.0,23.0,5.311836702613133,-9.188263657315172 -564,23.0,24.0,-1.3098929438742493,2.287622053705056 -564,24.0,23.0,-1.3098929438742493,2.287622053705056 -564,24.0,24.0,4.495715080321987,-7.864978761969621 -564,24.0,25.0,-1.2165301194494855,1.8171440463475024 -564,24.0,26.0,-1.9692920169982515,3.760212661917064 -564,25.0,24.0,-1.2165301194494855,1.8171440463475024 -564,25.0,25.0,1.2165301194494855,-1.8171440463475024 -564,26.0,24.0,-1.9692920169982515,3.760212661917064 -564,26.0,26.0,3.652281470778589,-9.46044252232512 -564,26.0,27.0,0.0,2.608731947574922 -564,26.0,28.0,-0.99553355095268,1.881005840357816 -564,26.0,29.0,-0.6874559028276572,1.293971494797717 -564,27.0,5.0,-4.362844058012917,15.463571542897856 -564,27.0,7.0,-1.4439790613954469,4.540814658476248 -564,27.0,26.0,0.0,2.608731947574922 -564,27.0,27.0,5.806823119408364,-22.67145722159613 -564,28.0,26.0,-0.99553355095268,1.881005840357816 -564,28.0,28.0,1.9075867579849564,-3.604364401207048 -564,28.0,29.0,-0.9120532070322764,1.7233585608492326 -564,29.0,26.0,-0.6874559028276572,1.293971494797717 -564,29.0,28.0,-0.9120532070322764,1.7233585608492326 -564,29.0,29.0,1.5995091098599337,-3.0173300556469496 -565,0.0,0.0,6.765516048652632,-21.23160167089863 -565,0.0,1.0,-5.224646179885656,15.646726840803398 -565,0.0,2.0,-1.5408698687669766,5.631674830095234 -565,1.0,0.0,-5.224646179885656,15.646726840803398 -565,1.0,1.0,9.75228216552403,-30.648662892676068 -565,1.0,3.0,-1.7055303166990268,5.1973792282565086 -565,1.0,4.0,-1.1359607881738778,4.772479328281356 -565,1.0,5.0,-1.6861448807654689,5.116477495334806 -565,2.0,0.0,-1.5408698687669766,5.631674830095234 -565,2.0,2.0,9.736318911079088,-29.13794745915803 -565,2.0,3.0,-8.19544904231211,23.5308726290628 -565,3.0,1.0,-1.7055303166990268,5.1973792282565086 -565,3.0,2.0,-8.19544904231211,23.5308726290628 -565,3.0,3.0,16.314103089185693,-55.509410535254254 -565,3.0,5.0,-6.413123730174556,22.31120356548123 -565,3.0,11.0,0.0,4.191255364806866 -565,4.0,1.0,-1.1359607881738778,4.772479328281356 -565,4.0,4.0,1.1359607881738778,-4.751579328281355 -565,5.0,1.0,-1.6861448807654689,5.116477495334806 -565,5.0,3.0,-6.413123730174556,22.31120356548123 -565,5.0,5.0,22.341631269034565,-82.8291478657789 -565,5.0,6.0,-3.590210423980992,11.02611441072814 -565,5.0,7.0,-6.289308176100628,22.0125786163522 -565,5.0,8.0,0.0,4.915840805411357 -565,5.0,9.0,0.0,1.8561002591115965 -565,5.0,27.0,-4.362844058012917,15.463571542897856 -565,6.0,5.0,-3.590210423980992,11.02611441072814 -565,6.0,6.0,3.590210423980992,-11.01761441072814 -565,7.0,5.0,-6.289308176100628,22.0125786163522 -565,7.0,7.0,7.733287237496075,-26.527493274828448 -565,7.0,27.0,-1.4439790613954469,4.540814658476248 -565,8.0,5.0,0.0,4.915840805411357 -565,8.0,8.0,0.0,-18.706293706293707 -565,8.0,9.0,0.0,9.090909090909092 -565,8.0,10.0,0.0,4.807692307692308 -565,9.0,5.0,0.0,1.8561002591115965 -565,9.0,8.0,0.0,9.090909090909092 -565,9.0,9.0,13.462042814524237,-41.3837606675224 -565,9.0,16.0,-3.956039125715353,10.317447719844054 -565,9.0,19.0,-1.7848303152666305,3.98535828943083 -565,9.0,20.0,-5.101853820159654,10.98071411292983 -565,9.0,21.0,-2.619319553382597,5.400770303329455 -565,10.0,8.0,0.0,4.807692307692308 -565,10.0,10.0,0.0,-4.807692307692308 -565,11.0,3.0,0.0,4.191255364806866 -565,11.0,11.0,6.573961583776156,-24.424167659260668 -565,11.0,12.0,0.0,7.142857142857143 -565,11.0,13.0,-1.5265676088395577,3.1734252729654173 -565,11.0,14.0,-3.0953961826564296,6.097275864326261 -565,11.0,15.0,-1.9519977922801688,4.104359379111847 -565,12.0,11.0,0.0,7.142857142857143 -565,12.0,12.0,0.0,-7.142857142857143 -565,13.0,11.0,-1.5265676088395577,3.1734252729654173 -565,13.0,13.0,1.5265676088395577,-3.1734252729654173 -565,14.0,11.0,-3.0953961826564296,6.097275864326261 -565,14.0,14.0,6.874546281965293,-13.760759672738311 -565,14.0,17.0,-1.8108011504072024,3.687418931630696 -565,14.0,22.0,-1.9683489489016612,3.976064876781356 -565,15.0,11.0,-1.9519977922801688,4.104359379111847 -565,15.0,15.0,3.271064728633931,-8.94513365126506 -565,15.0,16.0,-1.3190669363537617,4.8407742721532125 -565,16.0,9.0,-3.956039125715353,10.317447719844054 -565,16.0,15.0,-1.3190669363537617,4.8407742721532125 -565,16.0,16.0,5.275106062069114,-15.158221991997266 -565,17.0,14.0,-1.8108011504072024,3.687418931630696 -565,17.0,17.0,4.886487584415919,-9.906177730909668 -565,17.0,18.0,-3.0756864340087167,6.218758799278971 -565,18.0,17.0,-3.0756864340087167,6.218758799278971 -565,18.0,18.0,8.958039375185187,-17.98346468163191 -565,18.0,19.0,-5.88235294117647,11.76470588235294 -565,19.0,9.0,-1.7848303152666305,3.98535828943083 -565,19.0,18.0,-5.88235294117647,11.76470588235294 -565,19.0,19.0,7.6671832564431,-15.75006417178377 -565,20.0,9.0,-5.101853820159654,10.98071411292983 -565,20.0,20.0,21.876495189895888,-45.10843276170355 -565,20.0,21.0,-16.774641369736234,34.127718648773715 -565,21.0,9.0,-2.619319553382597,5.400770303329455 -565,21.0,20.0,-16.774641369736234,34.127718648773715 -565,21.0,21.0,21.93449907537439,-43.48289181517921 -565,21.0,23.0,-2.5405381522555563,3.95440286307604 -565,22.0,14.0,-1.9683489489016612,3.976064876781356 -565,22.0,22.0,3.429754555384988,-6.965303617315433 -565,22.0,23.0,-1.4614056064833263,2.989238740534077 -565,23.0,21.0,-2.5405381522555563,3.95440286307604 -565,23.0,22.0,-1.4614056064833263,2.989238740534077 -565,23.0,23.0,5.311836702613133,-9.188263657315172 -565,23.0,24.0,-1.3098929438742493,2.287622053705056 -565,24.0,23.0,-1.3098929438742493,2.287622053705056 -565,24.0,24.0,4.495715080321987,-7.864978761969621 -565,24.0,25.0,-1.2165301194494855,1.8171440463475024 -565,24.0,26.0,-1.9692920169982515,3.760212661917064 -565,25.0,24.0,-1.2165301194494855,1.8171440463475024 -565,25.0,25.0,1.2165301194494855,-1.8171440463475024 -565,26.0,24.0,-1.9692920169982515,3.760212661917064 -565,26.0,26.0,3.652281470778589,-9.46044252232512 -565,26.0,27.0,0.0,2.608731947574922 -565,26.0,28.0,-0.99553355095268,1.881005840357816 -565,26.0,29.0,-0.6874559028276572,1.293971494797717 -565,27.0,5.0,-4.362844058012917,15.463571542897856 -565,27.0,7.0,-1.4439790613954469,4.540814658476248 -565,27.0,26.0,0.0,2.608731947574922 -565,27.0,27.0,5.806823119408364,-22.67145722159613 -565,28.0,26.0,-0.99553355095268,1.881005840357816 -565,28.0,28.0,1.9075867579849564,-3.604364401207048 -565,28.0,29.0,-0.9120532070322764,1.7233585608492326 -565,29.0,26.0,-0.6874559028276572,1.293971494797717 -565,29.0,28.0,-0.9120532070322764,1.7233585608492326 -565,29.0,29.0,1.5995091098599337,-3.0173300556469496 -566,0.0,0.0,6.765516048652632,-21.23160167089863 -566,0.0,1.0,-5.224646179885656,15.646726840803398 -566,0.0,2.0,-1.5408698687669766,5.631674830095234 -566,1.0,0.0,-5.224646179885656,15.646726840803398 -566,1.0,1.0,9.75228216552403,-30.648662892676068 -566,1.0,3.0,-1.7055303166990268,5.1973792282565086 -566,1.0,4.0,-1.1359607881738778,4.772479328281356 -566,1.0,5.0,-1.6861448807654689,5.116477495334806 -566,2.0,0.0,-1.5408698687669766,5.631674830095234 -566,2.0,2.0,9.736318911079088,-29.13794745915803 -566,2.0,3.0,-8.19544904231211,23.5308726290628 -566,3.0,1.0,-1.7055303166990268,5.1973792282565086 -566,3.0,2.0,-8.19544904231211,23.5308726290628 -566,3.0,3.0,16.314103089185693,-55.509410535254254 -566,3.0,5.0,-6.413123730174556,22.31120356548123 -566,3.0,11.0,0.0,4.191255364806866 -566,4.0,1.0,-1.1359607881738778,4.772479328281356 -566,4.0,4.0,4.089980824135861,-12.190647245055052 -566,4.0,6.0,-2.954020035961983,7.449267916773697 -566,5.0,1.0,-1.6861448807654689,5.116477495334806 -566,5.0,3.0,-6.413123730174556,22.31120356548123 -566,5.0,5.0,22.341631269034565,-82.8291478657789 -566,5.0,6.0,-3.590210423980992,11.02611441072814 -566,5.0,7.0,-6.289308176100628,22.0125786163522 -566,5.0,8.0,0.0,4.915840805411357 -566,5.0,9.0,0.0,1.8561002591115965 -566,5.0,27.0,-4.362844058012917,15.463571542897856 -566,6.0,4.0,-2.954020035961983,7.449267916773697 -566,6.0,5.0,-3.590210423980992,11.02611441072814 -566,6.0,6.0,6.544230459942975,-18.45668232750184 -566,7.0,5.0,-6.289308176100628,22.0125786163522 -566,7.0,7.0,7.733287237496075,-26.527493274828448 -566,7.0,27.0,-1.4439790613954469,4.540814658476248 -566,8.0,5.0,0.0,4.915840805411357 -566,8.0,8.0,0.0,-18.706293706293707 -566,8.0,9.0,0.0,9.090909090909092 -566,8.0,10.0,0.0,4.807692307692308 -566,9.0,5.0,0.0,1.8561002591115965 -566,9.0,8.0,0.0,9.090909090909092 -566,9.0,9.0,13.462042814524237,-41.3837606675224 -566,9.0,16.0,-3.956039125715353,10.317447719844054 -566,9.0,19.0,-1.7848303152666305,3.98535828943083 -566,9.0,20.0,-5.101853820159654,10.98071411292983 -566,9.0,21.0,-2.619319553382597,5.400770303329455 -566,10.0,8.0,0.0,4.807692307692308 -566,10.0,10.0,0.0,-4.807692307692308 -566,11.0,3.0,0.0,4.191255364806866 -566,11.0,11.0,6.573961583776156,-24.424167659260668 -566,11.0,12.0,0.0,7.142857142857143 -566,11.0,13.0,-1.5265676088395577,3.1734252729654173 -566,11.0,14.0,-3.0953961826564296,6.097275864326261 -566,11.0,15.0,-1.9519977922801688,4.104359379111847 -566,12.0,11.0,0.0,7.142857142857143 -566,12.0,12.0,0.0,-7.142857142857143 -566,13.0,11.0,-1.5265676088395577,3.1734252729654173 -566,13.0,13.0,4.01751987283902,-5.424299332335067 -566,13.0,14.0,-2.4909522639994623,2.250874059369649 -566,14.0,11.0,-3.0953961826564296,6.097275864326261 -566,14.0,13.0,-2.4909522639994623,2.250874059369649 -566,14.0,14.0,9.365498545964757,-16.01163373210796 -566,14.0,17.0,-1.8108011504072024,3.687418931630696 -566,14.0,22.0,-1.9683489489016612,3.976064876781356 -566,15.0,11.0,-1.9519977922801688,4.104359379111847 -566,15.0,15.0,3.271064728633931,-8.94513365126506 -566,15.0,16.0,-1.3190669363537617,4.8407742721532125 -566,16.0,9.0,-3.956039125715353,10.317447719844054 -566,16.0,15.0,-1.3190669363537617,4.8407742721532125 -566,16.0,16.0,5.275106062069114,-15.158221991997266 -566,17.0,14.0,-1.8108011504072024,3.687418931630696 -566,17.0,17.0,4.886487584415919,-9.906177730909668 -566,17.0,18.0,-3.0756864340087167,6.218758799278971 -566,18.0,17.0,-3.0756864340087167,6.218758799278971 -566,18.0,18.0,8.958039375185187,-17.98346468163191 -566,18.0,19.0,-5.88235294117647,11.76470588235294 -566,19.0,9.0,-1.7848303152666305,3.98535828943083 -566,19.0,18.0,-5.88235294117647,11.76470588235294 -566,19.0,19.0,7.6671832564431,-15.75006417178377 -566,20.0,9.0,-5.101853820159654,10.98071411292983 -566,20.0,20.0,21.876495189895888,-45.10843276170355 -566,20.0,21.0,-16.774641369736234,34.127718648773715 -566,21.0,9.0,-2.619319553382597,5.400770303329455 -566,21.0,20.0,-16.774641369736234,34.127718648773715 -566,21.0,21.0,21.93449907537439,-43.48289181517921 -566,21.0,23.0,-2.5405381522555563,3.95440286307604 -566,22.0,14.0,-1.9683489489016612,3.976064876781356 -566,22.0,22.0,3.429754555384988,-6.965303617315433 -566,22.0,23.0,-1.4614056064833263,2.989238740534077 -566,23.0,21.0,-2.5405381522555563,3.95440286307604 -566,23.0,22.0,-1.4614056064833263,2.989238740534077 -566,23.0,23.0,5.311836702613133,-9.188263657315172 -566,23.0,24.0,-1.3098929438742493,2.287622053705056 -566,24.0,23.0,-1.3098929438742493,2.287622053705056 -566,24.0,24.0,4.495715080321987,-7.864978761969621 -566,24.0,25.0,-1.2165301194494855,1.8171440463475024 -566,24.0,26.0,-1.9692920169982515,3.760212661917064 -566,25.0,24.0,-1.2165301194494855,1.8171440463475024 -566,25.0,25.0,1.2165301194494855,-1.8171440463475024 -566,26.0,24.0,-1.9692920169982515,3.760212661917064 -566,26.0,26.0,3.652281470778589,-9.46044252232512 -566,26.0,27.0,0.0,2.608731947574922 -566,26.0,28.0,-0.99553355095268,1.881005840357816 -566,26.0,29.0,-0.6874559028276572,1.293971494797717 -566,27.0,5.0,-4.362844058012917,15.463571542897856 -566,27.0,7.0,-1.4439790613954469,4.540814658476248 -566,27.0,26.0,0.0,2.608731947574922 -566,27.0,27.0,5.806823119408364,-22.67145722159613 -566,28.0,26.0,-0.99553355095268,1.881005840357816 -566,28.0,28.0,1.9075867579849564,-3.604364401207048 -566,28.0,29.0,-0.9120532070322764,1.7233585608492326 -566,29.0,26.0,-0.6874559028276572,1.293971494797717 -566,29.0,28.0,-0.9120532070322764,1.7233585608492326 -566,29.0,29.0,1.5995091098599337,-3.0173300556469496 -567,0.0,0.0,6.765516048652632,-21.23160167089863 -567,0.0,1.0,-5.224646179885656,15.646726840803398 -567,0.0,2.0,-1.5408698687669766,5.631674830095234 -567,1.0,0.0,-5.224646179885656,15.646726840803398 -567,1.0,1.0,9.75228216552403,-30.648662892676068 -567,1.0,3.0,-1.7055303166990268,5.1973792282565086 -567,1.0,4.0,-1.1359607881738778,4.772479328281356 -567,1.0,5.0,-1.6861448807654689,5.116477495334806 -567,2.0,0.0,-1.5408698687669766,5.631674830095234 -567,2.0,2.0,9.736318911079088,-29.13794745915803 -567,2.0,3.0,-8.19544904231211,23.5308726290628 -567,3.0,1.0,-1.7055303166990268,5.1973792282565086 -567,3.0,2.0,-8.19544904231211,23.5308726290628 -567,3.0,3.0,16.314103089185693,-55.509410535254254 -567,3.0,5.0,-6.413123730174556,22.31120356548123 -567,3.0,11.0,0.0,4.191255364806866 -567,4.0,1.0,-1.1359607881738778,4.772479328281356 -567,4.0,4.0,4.089980824135861,-12.190647245055052 -567,4.0,6.0,-2.954020035961983,7.449267916773697 -567,5.0,1.0,-1.6861448807654689,5.116477495334806 -567,5.0,3.0,-6.413123730174556,22.31120356548123 -567,5.0,5.0,22.341631269034565,-82.8291478657789 -567,5.0,6.0,-3.590210423980992,11.02611441072814 -567,5.0,7.0,-6.289308176100628,22.0125786163522 -567,5.0,8.0,0.0,4.915840805411357 -567,5.0,9.0,0.0,1.8561002591115965 -567,5.0,27.0,-4.362844058012917,15.463571542897856 -567,6.0,4.0,-2.954020035961983,7.449267916773697 -567,6.0,5.0,-3.590210423980992,11.02611441072814 -567,6.0,6.0,6.544230459942975,-18.45668232750184 -567,7.0,5.0,-6.289308176100628,22.0125786163522 -567,7.0,7.0,7.733287237496075,-26.527493274828448 -567,7.0,27.0,-1.4439790613954469,4.540814658476248 -567,8.0,5.0,0.0,4.915840805411357 -567,8.0,8.0,0.0,-18.706293706293707 -567,8.0,9.0,0.0,9.090909090909092 -567,8.0,10.0,0.0,4.807692307692308 -567,9.0,5.0,0.0,1.8561002591115965 -567,9.0,8.0,0.0,9.090909090909092 -567,9.0,9.0,13.462042814524237,-41.3837606675224 -567,9.0,16.0,-3.956039125715353,10.317447719844054 -567,9.0,19.0,-1.7848303152666305,3.98535828943083 -567,9.0,20.0,-5.101853820159654,10.98071411292983 -567,9.0,21.0,-2.619319553382597,5.400770303329455 -567,10.0,8.0,0.0,4.807692307692308 -567,10.0,10.0,0.0,-4.807692307692308 -567,11.0,3.0,0.0,4.191255364806866 -567,11.0,11.0,6.573961583776156,-24.424167659260668 -567,11.0,12.0,0.0,7.142857142857143 -567,11.0,13.0,-1.5265676088395577,3.1734252729654173 -567,11.0,14.0,-3.0953961826564296,6.097275864326261 -567,11.0,15.0,-1.9519977922801688,4.104359379111847 -567,12.0,11.0,0.0,7.142857142857143 -567,12.0,12.0,0.0,-7.142857142857143 -567,13.0,11.0,-1.5265676088395577,3.1734252729654173 -567,13.0,13.0,4.01751987283902,-5.424299332335067 -567,13.0,14.0,-2.4909522639994623,2.250874059369649 -567,14.0,11.0,-3.0953961826564296,6.097275864326261 -567,14.0,13.0,-2.4909522639994623,2.250874059369649 -567,14.0,14.0,9.365498545964757,-16.01163373210796 -567,14.0,17.0,-1.8108011504072024,3.687418931630696 -567,14.0,22.0,-1.9683489489016612,3.976064876781356 -567,15.0,11.0,-1.9519977922801688,4.104359379111847 -567,15.0,15.0,3.271064728633931,-8.94513365126506 -567,15.0,16.0,-1.3190669363537617,4.8407742721532125 -567,16.0,9.0,-3.956039125715353,10.317447719844054 -567,16.0,15.0,-1.3190669363537617,4.8407742721532125 -567,16.0,16.0,5.275106062069114,-15.158221991997266 -567,17.0,14.0,-1.8108011504072024,3.687418931630696 -567,17.0,17.0,4.886487584415919,-9.906177730909668 -567,17.0,18.0,-3.0756864340087167,6.218758799278971 -567,18.0,17.0,-3.0756864340087167,6.218758799278971 -567,18.0,18.0,8.958039375185187,-17.98346468163191 -567,18.0,19.0,-5.88235294117647,11.76470588235294 -567,19.0,9.0,-1.7848303152666305,3.98535828943083 -567,19.0,18.0,-5.88235294117647,11.76470588235294 -567,19.0,19.0,7.6671832564431,-15.75006417178377 -567,20.0,9.0,-5.101853820159654,10.98071411292983 -567,20.0,20.0,21.876495189895888,-45.10843276170355 -567,20.0,21.0,-16.774641369736234,34.127718648773715 -567,21.0,9.0,-2.619319553382597,5.400770303329455 -567,21.0,20.0,-16.774641369736234,34.127718648773715 -567,21.0,21.0,21.93449907537439,-43.48289181517921 -567,21.0,23.0,-2.5405381522555563,3.95440286307604 -567,22.0,14.0,-1.9683489489016612,3.976064876781356 -567,22.0,22.0,3.429754555384988,-6.965303617315433 -567,22.0,23.0,-1.4614056064833263,2.989238740534077 -567,23.0,21.0,-2.5405381522555563,3.95440286307604 -567,23.0,22.0,-1.4614056064833263,2.989238740534077 -567,23.0,23.0,5.311836702613133,-9.188263657315172 -567,23.0,24.0,-1.3098929438742493,2.287622053705056 -567,24.0,23.0,-1.3098929438742493,2.287622053705056 -567,24.0,24.0,4.495715080321987,-7.864978761969621 -567,24.0,25.0,-1.2165301194494855,1.8171440463475024 -567,24.0,26.0,-1.9692920169982515,3.760212661917064 -567,25.0,24.0,-1.2165301194494855,1.8171440463475024 -567,25.0,25.0,1.2165301194494855,-1.8171440463475024 -567,26.0,24.0,-1.9692920169982515,3.760212661917064 -567,26.0,26.0,3.652281470778589,-9.46044252232512 -567,26.0,27.0,0.0,2.608731947574922 -567,26.0,28.0,-0.99553355095268,1.881005840357816 -567,26.0,29.0,-0.6874559028276572,1.293971494797717 -567,27.0,5.0,-4.362844058012917,15.463571542897856 -567,27.0,7.0,-1.4439790613954469,4.540814658476248 -567,27.0,26.0,0.0,2.608731947574922 -567,27.0,27.0,5.806823119408364,-22.67145722159613 -567,28.0,26.0,-0.99553355095268,1.881005840357816 -567,28.0,28.0,1.9075867579849564,-3.604364401207048 -567,28.0,29.0,-0.9120532070322764,1.7233585608492326 -567,29.0,26.0,-0.6874559028276572,1.293971494797717 -567,29.0,28.0,-0.9120532070322764,1.7233585608492326 -567,29.0,29.0,1.5995091098599337,-3.0173300556469496 -568,0.0,0.0,6.765516048652632,-21.23160167089863 -568,0.0,1.0,-5.224646179885656,15.646726840803398 -568,0.0,2.0,-1.5408698687669766,5.631674830095234 -568,1.0,0.0,-5.224646179885656,15.646726840803398 -568,1.0,1.0,8.046751848825002,-25.46968366441956 -568,1.0,4.0,-1.1359607881738778,4.772479328281356 -568,1.0,5.0,-1.6861448807654689,5.116477495334806 -568,2.0,0.0,-1.5408698687669766,5.631674830095234 -568,2.0,2.0,9.736318911079088,-29.13794745915803 -568,2.0,3.0,-8.19544904231211,23.5308726290628 -568,3.0,2.0,-8.19544904231211,23.5308726290628 -568,3.0,3.0,14.608572772486664,-50.33043130699775 -568,3.0,5.0,-6.413123730174556,22.31120356548123 -568,3.0,11.0,0.0,4.191255364806866 -568,4.0,1.0,-1.1359607881738778,4.772479328281356 -568,4.0,4.0,1.1359607881738778,-4.751579328281355 -568,5.0,1.0,-1.6861448807654689,5.116477495334806 -568,5.0,3.0,-6.413123730174556,22.31120356548123 -568,5.0,5.0,22.341631269034565,-80.91366772221689 -568,5.0,6.0,-3.590210423980992,11.02611441072814 -568,5.0,7.0,-6.289308176100628,22.0125786163522 -568,5.0,8.0,0.0,4.915840805411357 -568,5.0,27.0,-4.362844058012917,15.463571542897856 -568,6.0,5.0,-3.590210423980992,11.02611441072814 -568,6.0,6.0,3.590210423980992,-11.01761441072814 -568,7.0,5.0,-6.289308176100628,22.0125786163522 -568,7.0,7.0,7.733287237496075,-26.527493274828448 -568,7.0,27.0,-1.4439790613954469,4.540814658476248 -568,8.0,5.0,0.0,4.915840805411357 -568,8.0,8.0,0.0,-18.706293706293707 -568,8.0,9.0,0.0,9.090909090909092 -568,8.0,10.0,0.0,4.807692307692308 -568,9.0,8.0,0.0,9.090909090909092 -568,9.0,9.0,13.462042814524237,-39.58519951644326 -568,9.0,16.0,-3.956039125715353,10.317447719844054 -568,9.0,19.0,-1.7848303152666305,3.98535828943083 -568,9.0,20.0,-5.101853820159654,10.98071411292983 -568,9.0,21.0,-2.619319553382597,5.400770303329455 -568,10.0,8.0,0.0,4.807692307692308 -568,10.0,10.0,0.0,-4.807692307692308 -568,11.0,3.0,0.0,4.191255364806866 -568,11.0,11.0,6.573961583776156,-24.424167659260668 -568,11.0,12.0,0.0,7.142857142857143 -568,11.0,13.0,-1.5265676088395577,3.1734252729654173 -568,11.0,14.0,-3.0953961826564296,6.097275864326261 -568,11.0,15.0,-1.9519977922801688,4.104359379111847 -568,12.0,11.0,0.0,7.142857142857143 -568,12.0,12.0,0.0,-7.142857142857143 -568,13.0,11.0,-1.5265676088395577,3.1734252729654173 -568,13.0,13.0,4.01751987283902,-5.424299332335067 -568,13.0,14.0,-2.4909522639994623,2.250874059369649 -568,14.0,11.0,-3.0953961826564296,6.097275864326261 -568,14.0,13.0,-2.4909522639994623,2.250874059369649 -568,14.0,14.0,9.365498545964757,-16.01163373210796 -568,14.0,17.0,-1.8108011504072024,3.687418931630696 -568,14.0,22.0,-1.9683489489016612,3.976064876781356 -568,15.0,11.0,-1.9519977922801688,4.104359379111847 -568,15.0,15.0,1.9519977922801688,-4.104359379111847 -568,16.0,9.0,-3.956039125715353,10.317447719844054 -568,16.0,16.0,3.956039125715353,-10.317447719844054 -568,17.0,14.0,-1.8108011504072024,3.687418931630696 -568,17.0,17.0,4.886487584415919,-9.906177730909668 -568,17.0,18.0,-3.0756864340087167,6.218758799278971 -568,18.0,17.0,-3.0756864340087167,6.218758799278971 -568,18.0,18.0,8.958039375185187,-17.98346468163191 -568,18.0,19.0,-5.88235294117647,11.76470588235294 -568,19.0,9.0,-1.7848303152666305,3.98535828943083 -568,19.0,18.0,-5.88235294117647,11.76470588235294 -568,19.0,19.0,7.6671832564431,-15.75006417178377 -568,20.0,9.0,-5.101853820159654,10.98071411292983 -568,20.0,20.0,21.876495189895888,-45.10843276170355 -568,20.0,21.0,-16.774641369736234,34.127718648773715 -568,21.0,9.0,-2.619319553382597,5.400770303329455 -568,21.0,20.0,-16.774641369736234,34.127718648773715 -568,21.0,21.0,21.93449907537439,-43.48289181517921 -568,21.0,23.0,-2.5405381522555563,3.95440286307604 -568,22.0,14.0,-1.9683489489016612,3.976064876781356 -568,22.0,22.0,3.429754555384988,-6.965303617315433 -568,22.0,23.0,-1.4614056064833263,2.989238740534077 -568,23.0,21.0,-2.5405381522555563,3.95440286307604 -568,23.0,22.0,-1.4614056064833263,2.989238740534077 -568,23.0,23.0,5.311836702613133,-9.188263657315172 -568,23.0,24.0,-1.3098929438742493,2.287622053705056 -568,24.0,23.0,-1.3098929438742493,2.287622053705056 -568,24.0,24.0,4.495715080321987,-7.864978761969621 -568,24.0,25.0,-1.2165301194494855,1.8171440463475024 -568,24.0,26.0,-1.9692920169982515,3.760212661917064 -568,25.0,24.0,-1.2165301194494855,1.8171440463475024 -568,25.0,25.0,1.2165301194494855,-1.8171440463475024 -568,26.0,24.0,-1.9692920169982515,3.760212661917064 -568,26.0,26.0,3.652281470778589,-9.46044252232512 -568,26.0,27.0,0.0,2.608731947574922 -568,26.0,28.0,-0.99553355095268,1.881005840357816 -568,26.0,29.0,-0.6874559028276572,1.293971494797717 -568,27.0,5.0,-4.362844058012917,15.463571542897856 -568,27.0,7.0,-1.4439790613954469,4.540814658476248 -568,27.0,26.0,0.0,2.608731947574922 -568,27.0,27.0,5.806823119408364,-22.67145722159613 -568,28.0,26.0,-0.99553355095268,1.881005840357816 -568,28.0,28.0,1.9075867579849564,-3.604364401207048 -568,28.0,29.0,-0.9120532070322764,1.7233585608492326 -568,29.0,26.0,-0.6874559028276572,1.293971494797717 -568,29.0,28.0,-0.9120532070322764,1.7233585608492326 -568,29.0,29.0,1.5995091098599337,-3.0173300556469496 -569,0.0,0.0,6.765516048652632,-21.23160167089863 -569,0.0,1.0,-5.224646179885656,15.646726840803398 -569,0.0,2.0,-1.5408698687669766,5.631674830095234 -569,1.0,0.0,-5.224646179885656,15.646726840803398 -569,1.0,1.0,9.75228216552403,-30.648662892676068 -569,1.0,3.0,-1.7055303166990268,5.1973792282565086 -569,1.0,4.0,-1.1359607881738778,4.772479328281356 -569,1.0,5.0,-1.6861448807654689,5.116477495334806 -569,2.0,0.0,-1.5408698687669766,5.631674830095234 -569,2.0,2.0,9.736318911079088,-29.13794745915803 -569,2.0,3.0,-8.19544904231211,23.5308726290628 -569,3.0,1.0,-1.7055303166990268,5.1973792282565086 -569,3.0,2.0,-8.19544904231211,23.5308726290628 -569,3.0,3.0,16.314103089185693,-55.509410535254254 -569,3.0,5.0,-6.413123730174556,22.31120356548123 -569,3.0,11.0,0.0,4.191255364806866 -569,4.0,1.0,-1.1359607881738778,4.772479328281356 -569,4.0,4.0,4.089980824135861,-12.190647245055052 -569,4.0,6.0,-2.954020035961983,7.449267916773697 -569,5.0,1.0,-1.6861448807654689,5.116477495334806 -569,5.0,3.0,-6.413123730174556,22.31120356548123 -569,5.0,5.0,22.341631269034565,-82.8291478657789 -569,5.0,6.0,-3.590210423980992,11.02611441072814 -569,5.0,7.0,-6.289308176100628,22.0125786163522 -569,5.0,8.0,0.0,4.915840805411357 -569,5.0,9.0,0.0,1.8561002591115965 -569,5.0,27.0,-4.362844058012917,15.463571542897856 -569,6.0,4.0,-2.954020035961983,7.449267916773697 -569,6.0,5.0,-3.590210423980992,11.02611441072814 -569,6.0,6.0,6.544230459942975,-18.45668232750184 -569,7.0,5.0,-6.289308176100628,22.0125786163522 -569,7.0,7.0,7.733287237496075,-26.527493274828448 -569,7.0,27.0,-1.4439790613954469,4.540814658476248 -569,8.0,5.0,0.0,4.915840805411357 -569,8.0,8.0,0.0,-9.615384615384617 -569,8.0,10.0,0.0,4.807692307692308 -569,9.0,5.0,0.0,1.8561002591115965 -569,9.0,9.0,13.462042814524237,-32.29285157661331 -569,9.0,16.0,-3.956039125715353,10.317447719844054 -569,9.0,19.0,-1.7848303152666305,3.98535828943083 -569,9.0,20.0,-5.101853820159654,10.98071411292983 -569,9.0,21.0,-2.619319553382597,5.400770303329455 -569,10.0,8.0,0.0,4.807692307692308 -569,10.0,10.0,0.0,-4.807692307692308 -569,11.0,3.0,0.0,4.191255364806866 -569,11.0,11.0,6.573961583776156,-24.424167659260668 -569,11.0,12.0,0.0,7.142857142857143 -569,11.0,13.0,-1.5265676088395577,3.1734252729654173 -569,11.0,14.0,-3.0953961826564296,6.097275864326261 -569,11.0,15.0,-1.9519977922801688,4.104359379111847 -569,12.0,11.0,0.0,7.142857142857143 -569,12.0,12.0,0.0,-7.142857142857143 -569,13.0,11.0,-1.5265676088395577,3.1734252729654173 -569,13.0,13.0,1.5265676088395577,-3.1734252729654173 -569,14.0,11.0,-3.0953961826564296,6.097275864326261 -569,14.0,14.0,6.874546281965293,-13.760759672738311 -569,14.0,17.0,-1.8108011504072024,3.687418931630696 -569,14.0,22.0,-1.9683489489016612,3.976064876781356 -569,15.0,11.0,-1.9519977922801688,4.104359379111847 -569,15.0,15.0,1.9519977922801688,-4.104359379111847 -569,16.0,9.0,-3.956039125715353,10.317447719844054 -569,16.0,16.0,3.956039125715353,-10.317447719844054 -569,17.0,14.0,-1.8108011504072024,3.687418931630696 -569,17.0,17.0,4.886487584415919,-9.906177730909668 -569,17.0,18.0,-3.0756864340087167,6.218758799278971 -569,18.0,17.0,-3.0756864340087167,6.218758799278971 -569,18.0,18.0,8.958039375185187,-17.98346468163191 -569,18.0,19.0,-5.88235294117647,11.76470588235294 -569,19.0,9.0,-1.7848303152666305,3.98535828943083 -569,19.0,18.0,-5.88235294117647,11.76470588235294 -569,19.0,19.0,7.6671832564431,-15.75006417178377 -569,20.0,9.0,-5.101853820159654,10.98071411292983 -569,20.0,20.0,21.876495189895888,-45.10843276170355 -569,20.0,21.0,-16.774641369736234,34.127718648773715 -569,21.0,9.0,-2.619319553382597,5.400770303329455 -569,21.0,20.0,-16.774641369736234,34.127718648773715 -569,21.0,21.0,21.93449907537439,-43.48289181517921 -569,21.0,23.0,-2.5405381522555563,3.95440286307604 -569,22.0,14.0,-1.9683489489016612,3.976064876781356 -569,22.0,22.0,1.9683489489016612,-3.976064876781356 -569,23.0,21.0,-2.5405381522555563,3.95440286307604 -569,23.0,23.0,3.850431096129806,-6.199024916781094 -569,23.0,24.0,-1.3098929438742493,2.287622053705056 -569,24.0,23.0,-1.3098929438742493,2.287622053705056 -569,24.0,24.0,4.495715080321987,-7.864978761969621 -569,24.0,25.0,-1.2165301194494855,1.8171440463475024 -569,24.0,26.0,-1.9692920169982515,3.760212661917064 -569,25.0,24.0,-1.2165301194494855,1.8171440463475024 -569,25.0,25.0,1.2165301194494855,-1.8171440463475024 -569,26.0,24.0,-1.9692920169982515,3.760212661917064 -569,26.0,26.0,3.652281470778589,-9.46044252232512 -569,26.0,27.0,0.0,2.608731947574922 -569,26.0,28.0,-0.99553355095268,1.881005840357816 -569,26.0,29.0,-0.6874559028276572,1.293971494797717 -569,27.0,5.0,-4.362844058012917,15.463571542897856 -569,27.0,7.0,-1.4439790613954469,4.540814658476248 -569,27.0,26.0,0.0,2.608731947574922 -569,27.0,27.0,5.806823119408364,-22.67145722159613 -569,28.0,26.0,-0.99553355095268,1.881005840357816 -569,28.0,28.0,0.99553355095268,-1.881005840357816 -569,29.0,26.0,-0.6874559028276572,1.293971494797717 -569,29.0,29.0,0.6874559028276572,-1.293971494797717 -570,0.0,0.0,6.765516048652632,-21.23160167089863 -570,0.0,1.0,-5.224646179885656,15.646726840803398 -570,0.0,2.0,-1.5408698687669766,5.631674830095234 -570,1.0,0.0,-5.224646179885656,15.646726840803398 -570,1.0,1.0,6.360606968059534,-20.371906169084752 -570,1.0,4.0,-1.1359607881738778,4.772479328281356 -570,2.0,0.0,-1.5408698687669766,5.631674830095234 -570,2.0,2.0,9.736318911079088,-29.13794745915803 -570,2.0,3.0,-8.19544904231211,23.5308726290628 -570,3.0,2.0,-8.19544904231211,23.5308726290628 -570,3.0,3.0,14.608572772486664,-50.33043130699775 -570,3.0,5.0,-6.413123730174556,22.31120356548123 -570,3.0,11.0,0.0,4.191255364806866 -570,4.0,1.0,-1.1359607881738778,4.772479328281356 -570,4.0,4.0,4.089980824135861,-12.190647245055052 -570,4.0,6.0,-2.954020035961983,7.449267916773697 -570,5.0,3.0,-6.413123730174556,22.31120356548123 -570,5.0,5.0,20.655486388269097,-77.7313703704441 -570,5.0,6.0,-3.590210423980992,11.02611441072814 -570,5.0,7.0,-6.289308176100628,22.0125786163522 -570,5.0,8.0,0.0,4.915840805411357 -570,5.0,9.0,0.0,1.8561002591115965 -570,5.0,27.0,-4.362844058012917,15.463571542897856 -570,6.0,4.0,-2.954020035961983,7.449267916773697 -570,6.0,5.0,-3.590210423980992,11.02611441072814 -570,6.0,6.0,6.544230459942975,-18.45668232750184 -570,7.0,5.0,-6.289308176100628,22.0125786163522 -570,7.0,7.0,6.289308176100628,-22.0080786163522 -570,8.0,5.0,0.0,4.915840805411357 -570,8.0,8.0,0.0,-18.706293706293707 -570,8.0,9.0,0.0,9.090909090909092 -570,8.0,10.0,0.0,4.807692307692308 -570,9.0,5.0,0.0,1.8561002591115965 -570,9.0,8.0,0.0,9.090909090909092 -570,9.0,9.0,13.462042814524237,-41.3837606675224 -570,9.0,16.0,-3.956039125715353,10.317447719844054 -570,9.0,19.0,-1.7848303152666305,3.98535828943083 -570,9.0,20.0,-5.101853820159654,10.98071411292983 -570,9.0,21.0,-2.619319553382597,5.400770303329455 -570,10.0,8.0,0.0,4.807692307692308 -570,10.0,10.0,0.0,-4.807692307692308 -570,11.0,3.0,0.0,4.191255364806866 -570,11.0,11.0,3.478565401119727,-18.326891794934408 -570,11.0,12.0,0.0,7.142857142857143 -570,11.0,13.0,-1.5265676088395577,3.1734252729654173 -570,11.0,15.0,-1.9519977922801688,4.104359379111847 -570,12.0,11.0,0.0,7.142857142857143 -570,12.0,12.0,0.0,-7.142857142857143 -570,13.0,11.0,-1.5265676088395577,3.1734252729654173 -570,13.0,13.0,4.01751987283902,-5.424299332335067 -570,13.0,14.0,-2.4909522639994623,2.250874059369649 -570,14.0,13.0,-2.4909522639994623,2.250874059369649 -570,14.0,14.0,6.270102363308326,-9.9143578677817 -570,14.0,17.0,-1.8108011504072024,3.687418931630696 -570,14.0,22.0,-1.9683489489016612,3.976064876781356 -570,15.0,11.0,-1.9519977922801688,4.104359379111847 -570,15.0,15.0,3.271064728633931,-8.94513365126506 -570,15.0,16.0,-1.3190669363537617,4.8407742721532125 -570,16.0,9.0,-3.956039125715353,10.317447719844054 -570,16.0,15.0,-1.3190669363537617,4.8407742721532125 -570,16.0,16.0,5.275106062069114,-15.158221991997266 -570,17.0,14.0,-1.8108011504072024,3.687418931630696 -570,17.0,17.0,4.886487584415919,-9.906177730909668 -570,17.0,18.0,-3.0756864340087167,6.218758799278971 -570,18.0,17.0,-3.0756864340087167,6.218758799278971 -570,18.0,18.0,8.958039375185187,-17.98346468163191 -570,18.0,19.0,-5.88235294117647,11.76470588235294 -570,19.0,9.0,-1.7848303152666305,3.98535828943083 -570,19.0,18.0,-5.88235294117647,11.76470588235294 -570,19.0,19.0,7.6671832564431,-15.75006417178377 -570,20.0,9.0,-5.101853820159654,10.98071411292983 -570,20.0,20.0,21.876495189895888,-45.10843276170355 -570,20.0,21.0,-16.774641369736234,34.127718648773715 -570,21.0,9.0,-2.619319553382597,5.400770303329455 -570,21.0,20.0,-16.774641369736234,34.127718648773715 -570,21.0,21.0,21.93449907537439,-43.48289181517921 -570,21.0,23.0,-2.5405381522555563,3.95440286307604 -570,22.0,14.0,-1.9683489489016612,3.976064876781356 -570,22.0,22.0,3.429754555384988,-6.965303617315433 -570,22.0,23.0,-1.4614056064833263,2.989238740534077 -570,23.0,21.0,-2.5405381522555563,3.95440286307604 -570,23.0,22.0,-1.4614056064833263,2.989238740534077 -570,23.0,23.0,4.001943758738883,-6.900641603610116 -570,24.0,24.0,3.185822136447737,-5.577356708264566 -570,24.0,25.0,-1.2165301194494855,1.8171440463475024 -570,24.0,26.0,-1.9692920169982515,3.760212661917064 -570,25.0,24.0,-1.2165301194494855,1.8171440463475024 -570,25.0,25.0,1.2165301194494855,-1.8171440463475024 -570,26.0,24.0,-1.9692920169982515,3.760212661917064 -570,26.0,26.0,3.652281470778589,-9.46044252232512 -570,26.0,27.0,0.0,2.608731947574922 -570,26.0,28.0,-0.99553355095268,1.881005840357816 -570,26.0,29.0,-0.6874559028276572,1.293971494797717 -570,27.0,5.0,-4.362844058012917,15.463571542897856 -570,27.0,26.0,0.0,2.608731947574922 -570,27.0,27.0,4.362844058012917,-18.15204256311988 -570,28.0,26.0,-0.99553355095268,1.881005840357816 -570,28.0,28.0,1.9075867579849564,-3.604364401207048 -570,28.0,29.0,-0.9120532070322764,1.7233585608492326 -570,29.0,26.0,-0.6874559028276572,1.293971494797717 -570,29.0,28.0,-0.9120532070322764,1.7233585608492326 -570,29.0,29.0,1.5995091098599337,-3.0173300556469496 -571,0.0,0.0,6.765516048652632,-21.23160167089863 -571,0.0,1.0,-5.224646179885656,15.646726840803398 -571,0.0,2.0,-1.5408698687669766,5.631674830095234 -571,1.0,0.0,-5.224646179885656,15.646726840803398 -571,1.0,1.0,9.75228216552403,-30.648662892676068 -571,1.0,3.0,-1.7055303166990268,5.1973792282565086 -571,1.0,4.0,-1.1359607881738778,4.772479328281356 -571,1.0,5.0,-1.6861448807654689,5.116477495334806 -571,2.0,0.0,-1.5408698687669766,5.631674830095234 -571,2.0,2.0,9.736318911079088,-29.13794745915803 -571,2.0,3.0,-8.19544904231211,23.5308726290628 -571,3.0,1.0,-1.7055303166990268,5.1973792282565086 -571,3.0,2.0,-8.19544904231211,23.5308726290628 -571,3.0,3.0,16.314103089185693,-55.509410535254254 -571,3.0,5.0,-6.413123730174556,22.31120356548123 -571,3.0,11.0,0.0,4.191255364806866 -571,4.0,1.0,-1.1359607881738778,4.772479328281356 -571,4.0,4.0,4.089980824135861,-12.190647245055052 -571,4.0,6.0,-2.954020035961983,7.449267916773697 -571,5.0,1.0,-1.6861448807654689,5.116477495334806 -571,5.0,3.0,-6.413123730174556,22.31120356548123 -571,5.0,5.0,16.052323092933932,-58.905589105864685 -571,5.0,6.0,-3.590210423980992,11.02611441072814 -571,5.0,8.0,0.0,4.915840805411357 -571,5.0,27.0,-4.362844058012917,15.463571542897856 -571,6.0,4.0,-2.954020035961983,7.449267916773697 -571,6.0,5.0,-3.590210423980992,11.02611441072814 -571,6.0,6.0,6.544230459942975,-18.45668232750184 -571,7.0,7.0,1.4439790613954469,-4.519414658476248 -571,7.0,27.0,-1.4439790613954469,4.540814658476248 -571,8.0,5.0,0.0,4.915840805411357 -571,8.0,8.0,0.0,-18.706293706293707 -571,8.0,9.0,0.0,9.090909090909092 -571,8.0,10.0,0.0,4.807692307692308 -571,9.0,8.0,0.0,9.090909090909092 -571,9.0,9.0,10.842723261141638,-34.18442921311381 -571,9.0,16.0,-3.956039125715353,10.317447719844054 -571,9.0,19.0,-1.7848303152666305,3.98535828943083 -571,9.0,20.0,-5.101853820159654,10.98071411292983 -571,10.0,8.0,0.0,4.807692307692308 -571,10.0,10.0,0.0,-4.807692307692308 -571,11.0,3.0,0.0,4.191255364806866 -571,11.0,11.0,6.573961583776156,-24.424167659260668 -571,11.0,12.0,0.0,7.142857142857143 -571,11.0,13.0,-1.5265676088395577,3.1734252729654173 -571,11.0,14.0,-3.0953961826564296,6.097275864326261 -571,11.0,15.0,-1.9519977922801688,4.104359379111847 -571,12.0,11.0,0.0,7.142857142857143 -571,12.0,12.0,0.0,-7.142857142857143 -571,13.0,11.0,-1.5265676088395577,3.1734252729654173 -571,13.0,13.0,4.01751987283902,-5.424299332335067 -571,13.0,14.0,-2.4909522639994623,2.250874059369649 -571,14.0,11.0,-3.0953961826564296,6.097275864326261 -571,14.0,13.0,-2.4909522639994623,2.250874059369649 -571,14.0,14.0,9.365498545964757,-16.01163373210796 -571,14.0,17.0,-1.8108011504072024,3.687418931630696 -571,14.0,22.0,-1.9683489489016612,3.976064876781356 -571,15.0,11.0,-1.9519977922801688,4.104359379111847 -571,15.0,15.0,1.9519977922801688,-4.104359379111847 -571,16.0,9.0,-3.956039125715353,10.317447719844054 -571,16.0,16.0,3.956039125715353,-10.317447719844054 -571,17.0,14.0,-1.8108011504072024,3.687418931630696 -571,17.0,17.0,4.886487584415919,-9.906177730909668 -571,17.0,18.0,-3.0756864340087167,6.218758799278971 -571,18.0,17.0,-3.0756864340087167,6.218758799278971 -571,18.0,18.0,8.958039375185187,-17.98346468163191 -571,18.0,19.0,-5.88235294117647,11.76470588235294 -571,19.0,9.0,-1.7848303152666305,3.98535828943083 -571,19.0,18.0,-5.88235294117647,11.76470588235294 -571,19.0,19.0,7.6671832564431,-15.75006417178377 -571,20.0,9.0,-5.101853820159654,10.98071411292983 -571,20.0,20.0,21.876495189895888,-45.10843276170355 -571,20.0,21.0,-16.774641369736234,34.127718648773715 -571,21.0,20.0,-16.774641369736234,34.127718648773715 -571,21.0,21.0,19.31517952199179,-38.08212151184976 -571,21.0,23.0,-2.5405381522555563,3.95440286307604 -571,22.0,14.0,-1.9683489489016612,3.976064876781356 -571,22.0,22.0,3.429754555384988,-6.965303617315433 -571,22.0,23.0,-1.4614056064833263,2.989238740534077 -571,23.0,21.0,-2.5405381522555563,3.95440286307604 -571,23.0,22.0,-1.4614056064833263,2.989238740534077 -571,23.0,23.0,4.001943758738883,-6.900641603610116 -571,24.0,24.0,3.185822136447737,-5.577356708264566 -571,24.0,25.0,-1.2165301194494855,1.8171440463475024 -571,24.0,26.0,-1.9692920169982515,3.760212661917064 -571,25.0,24.0,-1.2165301194494855,1.8171440463475024 -571,25.0,25.0,1.2165301194494855,-1.8171440463475024 -571,26.0,24.0,-1.9692920169982515,3.760212661917064 -571,26.0,26.0,3.652281470778589,-9.46044252232512 -571,26.0,27.0,0.0,2.608731947574922 -571,26.0,28.0,-0.99553355095268,1.881005840357816 -571,26.0,29.0,-0.6874559028276572,1.293971494797717 -571,27.0,5.0,-4.362844058012917,15.463571542897856 -571,27.0,7.0,-1.4439790613954469,4.540814658476248 -571,27.0,26.0,0.0,2.608731947574922 -571,27.0,27.0,5.806823119408364,-22.67145722159613 -571,28.0,26.0,-0.99553355095268,1.881005840357816 -571,28.0,28.0,1.9075867579849564,-3.604364401207048 -571,28.0,29.0,-0.9120532070322764,1.7233585608492326 -571,29.0,26.0,-0.6874559028276572,1.293971494797717 -571,29.0,28.0,-0.9120532070322764,1.7233585608492326 -571,29.0,29.0,1.5995091098599337,-3.0173300556469496 -572,0.0,0.0,6.765516048652632,-21.23160167089863 -572,0.0,1.0,-5.224646179885656,15.646726840803398 -572,0.0,2.0,-1.5408698687669766,5.631674830095234 -572,1.0,0.0,-5.224646179885656,15.646726840803398 -572,1.0,1.0,9.75228216552403,-30.648662892676068 -572,1.0,3.0,-1.7055303166990268,5.1973792282565086 -572,1.0,4.0,-1.1359607881738778,4.772479328281356 -572,1.0,5.0,-1.6861448807654689,5.116477495334806 -572,2.0,0.0,-1.5408698687669766,5.631674830095234 -572,2.0,2.0,9.736318911079088,-29.13794745915803 -572,2.0,3.0,-8.19544904231211,23.5308726290628 -572,3.0,1.0,-1.7055303166990268,5.1973792282565086 -572,3.0,2.0,-8.19544904231211,23.5308726290628 -572,3.0,3.0,9.900979359011137,-28.705651857319307 -572,4.0,1.0,-1.1359607881738778,4.772479328281356 -572,4.0,4.0,4.089980824135861,-12.190647245055052 -572,4.0,6.0,-2.954020035961983,7.449267916773697 -572,5.0,1.0,-1.6861448807654689,5.116477495334806 -572,5.0,5.0,15.928507538860009,-60.52244430029767 -572,5.0,6.0,-3.590210423980992,11.02611441072814 -572,5.0,7.0,-6.289308176100628,22.0125786163522 -572,5.0,8.0,0.0,4.915840805411357 -572,5.0,9.0,0.0,1.8561002591115965 -572,5.0,27.0,-4.362844058012917,15.463571542897856 -572,6.0,4.0,-2.954020035961983,7.449267916773697 -572,6.0,5.0,-3.590210423980992,11.02611441072814 -572,6.0,6.0,6.544230459942975,-18.45668232750184 -572,7.0,5.0,-6.289308176100628,22.0125786163522 -572,7.0,7.0,7.733287237496075,-26.527493274828448 -572,7.0,27.0,-1.4439790613954469,4.540814658476248 -572,8.0,5.0,0.0,4.915840805411357 -572,8.0,8.0,0.0,-18.706293706293707 -572,8.0,9.0,0.0,9.090909090909092 -572,8.0,10.0,0.0,4.807692307692308 -572,9.0,5.0,0.0,1.8561002591115965 -572,9.0,8.0,0.0,9.090909090909092 -572,9.0,9.0,13.462042814524237,-41.3837606675224 -572,9.0,16.0,-3.956039125715353,10.317447719844054 -572,9.0,19.0,-1.7848303152666305,3.98535828943083 -572,9.0,20.0,-5.101853820159654,10.98071411292983 -572,9.0,21.0,-2.619319553382597,5.400770303329455 -572,10.0,8.0,0.0,4.807692307692308 -572,10.0,10.0,0.0,-4.807692307692308 -572,11.0,11.0,6.573961583776156,-20.517917659260668 -572,11.0,12.0,0.0,7.142857142857143 -572,11.0,13.0,-1.5265676088395577,3.1734252729654173 -572,11.0,14.0,-3.0953961826564296,6.097275864326261 -572,11.0,15.0,-1.9519977922801688,4.104359379111847 -572,12.0,11.0,0.0,7.142857142857143 -572,12.0,12.0,0.0,-7.142857142857143 -572,13.0,11.0,-1.5265676088395577,3.1734252729654173 -572,13.0,13.0,4.01751987283902,-5.424299332335067 -572,13.0,14.0,-2.4909522639994623,2.250874059369649 -572,14.0,11.0,-3.0953961826564296,6.097275864326261 -572,14.0,13.0,-2.4909522639994623,2.250874059369649 -572,14.0,14.0,9.365498545964757,-16.01163373210796 -572,14.0,17.0,-1.8108011504072024,3.687418931630696 -572,14.0,22.0,-1.9683489489016612,3.976064876781356 -572,15.0,11.0,-1.9519977922801688,4.104359379111847 -572,15.0,15.0,1.9519977922801688,-4.104359379111847 -572,16.0,9.0,-3.956039125715353,10.317447719844054 -572,16.0,16.0,3.956039125715353,-10.317447719844054 -572,17.0,14.0,-1.8108011504072024,3.687418931630696 -572,17.0,17.0,4.886487584415919,-9.906177730909668 -572,17.0,18.0,-3.0756864340087167,6.218758799278971 -572,18.0,17.0,-3.0756864340087167,6.218758799278971 -572,18.0,18.0,8.958039375185187,-17.98346468163191 -572,18.0,19.0,-5.88235294117647,11.76470588235294 -572,19.0,9.0,-1.7848303152666305,3.98535828943083 -572,19.0,18.0,-5.88235294117647,11.76470588235294 -572,19.0,19.0,7.6671832564431,-15.75006417178377 -572,20.0,9.0,-5.101853820159654,10.98071411292983 -572,20.0,20.0,21.876495189895888,-45.10843276170355 -572,20.0,21.0,-16.774641369736234,34.127718648773715 -572,21.0,9.0,-2.619319553382597,5.400770303329455 -572,21.0,20.0,-16.774641369736234,34.127718648773715 -572,21.0,21.0,19.393960923118836,-39.52848895210317 -572,22.0,14.0,-1.9683489489016612,3.976064876781356 -572,22.0,22.0,3.429754555384988,-6.965303617315433 -572,22.0,23.0,-1.4614056064833263,2.989238740534077 -572,23.0,22.0,-1.4614056064833263,2.989238740534077 -572,23.0,23.0,2.771298550357576,-5.233860794239132 -572,23.0,24.0,-1.3098929438742493,2.287622053705056 -572,24.0,23.0,-1.3098929438742493,2.287622053705056 -572,24.0,24.0,4.495715080321987,-7.864978761969621 -572,24.0,25.0,-1.2165301194494855,1.8171440463475024 -572,24.0,26.0,-1.9692920169982515,3.760212661917064 -572,25.0,24.0,-1.2165301194494855,1.8171440463475024 -572,25.0,25.0,1.2165301194494855,-1.8171440463475024 -572,26.0,24.0,-1.9692920169982515,3.760212661917064 -572,26.0,26.0,3.652281470778589,-9.46044252232512 -572,26.0,27.0,0.0,2.608731947574922 -572,26.0,28.0,-0.99553355095268,1.881005840357816 -572,26.0,29.0,-0.6874559028276572,1.293971494797717 -572,27.0,5.0,-4.362844058012917,15.463571542897856 -572,27.0,7.0,-1.4439790613954469,4.540814658476248 -572,27.0,26.0,0.0,2.608731947574922 -572,27.0,27.0,5.806823119408364,-22.67145722159613 -572,28.0,26.0,-0.99553355095268,1.881005840357816 -572,28.0,28.0,0.99553355095268,-1.881005840357816 -572,29.0,26.0,-0.6874559028276572,1.293971494797717 -572,29.0,29.0,0.6874559028276572,-1.293971494797717 -573,0.0,0.0,6.765516048652632,-21.23160167089863 -573,0.0,1.0,-5.224646179885656,15.646726840803398 -573,0.0,2.0,-1.5408698687669766,5.631674830095234 -573,1.0,0.0,-5.224646179885656,15.646726840803398 -573,1.0,1.0,9.75228216552403,-30.648662892676068 -573,1.0,3.0,-1.7055303166990268,5.1973792282565086 -573,1.0,4.0,-1.1359607881738778,4.772479328281356 -573,1.0,5.0,-1.6861448807654689,5.116477495334806 -573,2.0,0.0,-1.5408698687669766,5.631674830095234 -573,2.0,2.0,9.736318911079088,-29.13794745915803 -573,2.0,3.0,-8.19544904231211,23.5308726290628 -573,3.0,1.0,-1.7055303166990268,5.1973792282565086 -573,3.0,2.0,-8.19544904231211,23.5308726290628 -573,3.0,3.0,16.314103089185693,-55.509410535254254 -573,3.0,5.0,-6.413123730174556,22.31120356548123 -573,3.0,11.0,0.0,4.191255364806866 -573,4.0,1.0,-1.1359607881738778,4.772479328281356 -573,4.0,4.0,4.089980824135861,-12.190647245055052 -573,4.0,6.0,-2.954020035961983,7.449267916773697 -573,5.0,1.0,-1.6861448807654689,5.116477495334806 -573,5.0,3.0,-6.413123730174556,22.31120356548123 -573,5.0,5.0,22.341631269034565,-82.8291478657789 -573,5.0,6.0,-3.590210423980992,11.02611441072814 -573,5.0,7.0,-6.289308176100628,22.0125786163522 -573,5.0,8.0,0.0,4.915840805411357 -573,5.0,9.0,0.0,1.8561002591115965 -573,5.0,27.0,-4.362844058012917,15.463571542897856 -573,6.0,4.0,-2.954020035961983,7.449267916773697 -573,6.0,5.0,-3.590210423980992,11.02611441072814 -573,6.0,6.0,6.544230459942975,-18.45668232750184 -573,7.0,5.0,-6.289308176100628,22.0125786163522 -573,7.0,7.0,7.733287237496075,-26.527493274828448 -573,7.0,27.0,-1.4439790613954469,4.540814658476248 -573,8.0,5.0,0.0,4.915840805411357 -573,8.0,8.0,0.0,-18.706293706293707 -573,8.0,9.0,0.0,9.090909090909092 -573,8.0,10.0,0.0,4.807692307692308 -573,9.0,5.0,0.0,1.8561002591115965 -573,9.0,8.0,0.0,9.090909090909092 -573,9.0,9.0,13.462042814524237,-41.3837606675224 -573,9.0,16.0,-3.956039125715353,10.317447719844054 -573,9.0,19.0,-1.7848303152666305,3.98535828943083 -573,9.0,20.0,-5.101853820159654,10.98071411292983 -573,9.0,21.0,-2.619319553382597,5.400770303329455 -573,10.0,8.0,0.0,4.807692307692308 -573,10.0,10.0,0.0,-4.807692307692308 -573,11.0,3.0,0.0,4.191255364806866 -573,11.0,11.0,6.573961583776156,-24.424167659260668 -573,11.0,12.0,0.0,7.142857142857143 -573,11.0,13.0,-1.5265676088395577,3.1734252729654173 -573,11.0,14.0,-3.0953961826564296,6.097275864326261 -573,11.0,15.0,-1.9519977922801688,4.104359379111847 -573,12.0,11.0,0.0,7.142857142857143 -573,12.0,12.0,0.0,-7.142857142857143 -573,13.0,11.0,-1.5265676088395577,3.1734252729654173 -573,13.0,13.0,4.01751987283902,-5.424299332335067 -573,13.0,14.0,-2.4909522639994623,2.250874059369649 -573,14.0,11.0,-3.0953961826564296,6.097275864326261 -573,14.0,13.0,-2.4909522639994623,2.250874059369649 -573,14.0,14.0,9.365498545964757,-16.01163373210796 -573,14.0,17.0,-1.8108011504072024,3.687418931630696 -573,14.0,22.0,-1.9683489489016612,3.976064876781356 -573,15.0,11.0,-1.9519977922801688,4.104359379111847 -573,15.0,15.0,3.271064728633931,-8.94513365126506 -573,15.0,16.0,-1.3190669363537617,4.8407742721532125 -573,16.0,9.0,-3.956039125715353,10.317447719844054 -573,16.0,15.0,-1.3190669363537617,4.8407742721532125 -573,16.0,16.0,5.275106062069114,-15.158221991997266 -573,17.0,14.0,-1.8108011504072024,3.687418931630696 -573,17.0,17.0,4.886487584415919,-9.906177730909668 -573,17.0,18.0,-3.0756864340087167,6.218758799278971 -573,18.0,17.0,-3.0756864340087167,6.218758799278971 -573,18.0,18.0,8.958039375185187,-17.98346468163191 -573,18.0,19.0,-5.88235294117647,11.76470588235294 -573,19.0,9.0,-1.7848303152666305,3.98535828943083 -573,19.0,18.0,-5.88235294117647,11.76470588235294 -573,19.0,19.0,7.6671832564431,-15.75006417178377 -573,20.0,9.0,-5.101853820159654,10.98071411292983 -573,20.0,20.0,21.876495189895888,-45.10843276170355 -573,20.0,21.0,-16.774641369736234,34.127718648773715 -573,21.0,9.0,-2.619319553382597,5.400770303329455 -573,21.0,20.0,-16.774641369736234,34.127718648773715 -573,21.0,21.0,21.93449907537439,-43.48289181517921 -573,21.0,23.0,-2.5405381522555563,3.95440286307604 -573,22.0,14.0,-1.9683489489016612,3.976064876781356 -573,22.0,22.0,3.429754555384988,-6.965303617315433 -573,22.0,23.0,-1.4614056064833263,2.989238740534077 -573,23.0,21.0,-2.5405381522555563,3.95440286307604 -573,23.0,22.0,-1.4614056064833263,2.989238740534077 -573,23.0,23.0,5.311836702613133,-9.188263657315172 -573,23.0,24.0,-1.3098929438742493,2.287622053705056 -573,24.0,23.0,-1.3098929438742493,2.287622053705056 -573,24.0,24.0,4.495715080321987,-7.864978761969621 -573,24.0,25.0,-1.2165301194494855,1.8171440463475024 -573,24.0,26.0,-1.9692920169982515,3.760212661917064 -573,25.0,24.0,-1.2165301194494855,1.8171440463475024 -573,25.0,25.0,1.2165301194494855,-1.8171440463475024 -573,26.0,24.0,-1.9692920169982515,3.760212661917064 -573,26.0,26.0,3.652281470778589,-9.46044252232512 -573,26.0,27.0,0.0,2.608731947574922 -573,26.0,28.0,-0.99553355095268,1.881005840357816 -573,26.0,29.0,-0.6874559028276572,1.293971494797717 -573,27.0,5.0,-4.362844058012917,15.463571542897856 -573,27.0,7.0,-1.4439790613954469,4.540814658476248 -573,27.0,26.0,0.0,2.608731947574922 -573,27.0,27.0,5.806823119408364,-22.67145722159613 -573,28.0,26.0,-0.99553355095268,1.881005840357816 -573,28.0,28.0,1.9075867579849564,-3.604364401207048 -573,28.0,29.0,-0.9120532070322764,1.7233585608492326 -573,29.0,26.0,-0.6874559028276572,1.293971494797717 -573,29.0,28.0,-0.9120532070322764,1.7233585608492326 -573,29.0,29.0,1.5995091098599337,-3.0173300556469496 -574,0.0,0.0,6.765516048652632,-21.23160167089863 -574,0.0,1.0,-5.224646179885656,15.646726840803398 -574,0.0,2.0,-1.5408698687669766,5.631674830095234 -574,1.0,0.0,-5.224646179885656,15.646726840803398 -574,1.0,1.0,9.75228216552403,-30.648662892676068 -574,1.0,3.0,-1.7055303166990268,5.1973792282565086 -574,1.0,4.0,-1.1359607881738778,4.772479328281356 -574,1.0,5.0,-1.6861448807654689,5.116477495334806 -574,2.0,0.0,-1.5408698687669766,5.631674830095234 -574,2.0,2.0,9.736318911079088,-29.13794745915803 -574,2.0,3.0,-8.19544904231211,23.5308726290628 -574,3.0,1.0,-1.7055303166990268,5.1973792282565086 -574,3.0,2.0,-8.19544904231211,23.5308726290628 -574,3.0,3.0,16.314103089185693,-55.509410535254254 -574,3.0,5.0,-6.413123730174556,22.31120356548123 -574,3.0,11.0,0.0,4.191255364806866 -574,4.0,1.0,-1.1359607881738778,4.772479328281356 -574,4.0,4.0,4.089980824135861,-12.190647245055052 -574,4.0,6.0,-2.954020035961983,7.449267916773697 -574,5.0,1.0,-1.6861448807654689,5.116477495334806 -574,5.0,3.0,-6.413123730174556,22.31120356548123 -574,5.0,5.0,22.341631269034565,-82.8291478657789 -574,5.0,6.0,-3.590210423980992,11.02611441072814 -574,5.0,7.0,-6.289308176100628,22.0125786163522 -574,5.0,8.0,0.0,4.915840805411357 -574,5.0,9.0,0.0,1.8561002591115965 -574,5.0,27.0,-4.362844058012917,15.463571542897856 -574,6.0,4.0,-2.954020035961983,7.449267916773697 -574,6.0,5.0,-3.590210423980992,11.02611441072814 -574,6.0,6.0,6.544230459942975,-18.45668232750184 -574,7.0,5.0,-6.289308176100628,22.0125786163522 -574,7.0,7.0,7.733287237496075,-26.527493274828448 -574,7.0,27.0,-1.4439790613954469,4.540814658476248 -574,8.0,5.0,0.0,4.915840805411357 -574,8.0,8.0,0.0,-18.706293706293707 -574,8.0,9.0,0.0,9.090909090909092 -574,8.0,10.0,0.0,4.807692307692308 -574,9.0,5.0,0.0,1.8561002591115965 -574,9.0,8.0,0.0,9.090909090909092 -574,9.0,9.0,13.462042814524237,-41.3837606675224 -574,9.0,16.0,-3.956039125715353,10.317447719844054 -574,9.0,19.0,-1.7848303152666305,3.98535828943083 -574,9.0,20.0,-5.101853820159654,10.98071411292983 -574,9.0,21.0,-2.619319553382597,5.400770303329455 -574,10.0,8.0,0.0,4.807692307692308 -574,10.0,10.0,0.0,-4.807692307692308 -574,11.0,3.0,0.0,4.191255364806866 -574,11.0,11.0,6.573961583776156,-24.424167659260668 -574,11.0,12.0,0.0,7.142857142857143 -574,11.0,13.0,-1.5265676088395577,3.1734252729654173 -574,11.0,14.0,-3.0953961826564296,6.097275864326261 -574,11.0,15.0,-1.9519977922801688,4.104359379111847 -574,12.0,11.0,0.0,7.142857142857143 -574,12.0,12.0,0.0,-7.142857142857143 -574,13.0,11.0,-1.5265676088395577,3.1734252729654173 -574,13.0,13.0,4.01751987283902,-5.424299332335067 -574,13.0,14.0,-2.4909522639994623,2.250874059369649 -574,14.0,11.0,-3.0953961826564296,6.097275864326261 -574,14.0,13.0,-2.4909522639994623,2.250874059369649 -574,14.0,14.0,9.365498545964757,-16.01163373210796 -574,14.0,17.0,-1.8108011504072024,3.687418931630696 -574,14.0,22.0,-1.9683489489016612,3.976064876781356 -574,15.0,11.0,-1.9519977922801688,4.104359379111847 -574,15.0,15.0,3.271064728633931,-8.94513365126506 -574,15.0,16.0,-1.3190669363537617,4.8407742721532125 -574,16.0,9.0,-3.956039125715353,10.317447719844054 -574,16.0,15.0,-1.3190669363537617,4.8407742721532125 -574,16.0,16.0,5.275106062069114,-15.158221991997266 -574,17.0,14.0,-1.8108011504072024,3.687418931630696 -574,17.0,17.0,1.8108011504072024,-3.687418931630696 -574,18.0,18.0,5.88235294117647,-11.76470588235294 -574,18.0,19.0,-5.88235294117647,11.76470588235294 -574,19.0,9.0,-1.7848303152666305,3.98535828943083 -574,19.0,18.0,-5.88235294117647,11.76470588235294 -574,19.0,19.0,7.6671832564431,-15.75006417178377 -574,20.0,9.0,-5.101853820159654,10.98071411292983 -574,20.0,20.0,21.876495189895888,-45.10843276170355 -574,20.0,21.0,-16.774641369736234,34.127718648773715 -574,21.0,9.0,-2.619319553382597,5.400770303329455 -574,21.0,20.0,-16.774641369736234,34.127718648773715 -574,21.0,21.0,21.93449907537439,-43.48289181517921 -574,21.0,23.0,-2.5405381522555563,3.95440286307604 -574,22.0,14.0,-1.9683489489016612,3.976064876781356 -574,22.0,22.0,1.9683489489016612,-3.976064876781356 -574,23.0,21.0,-2.5405381522555563,3.95440286307604 -574,23.0,23.0,3.850431096129806,-6.199024916781094 -574,23.0,24.0,-1.3098929438742493,2.287622053705056 -574,24.0,23.0,-1.3098929438742493,2.287622053705056 -574,24.0,24.0,4.495715080321987,-7.864978761969621 -574,24.0,25.0,-1.2165301194494855,1.8171440463475024 -574,24.0,26.0,-1.9692920169982515,3.760212661917064 -574,25.0,24.0,-1.2165301194494855,1.8171440463475024 -574,25.0,25.0,1.2165301194494855,-1.8171440463475024 -574,26.0,24.0,-1.9692920169982515,3.760212661917064 -574,26.0,26.0,3.652281470778589,-9.46044252232512 -574,26.0,27.0,0.0,2.608731947574922 -574,26.0,28.0,-0.99553355095268,1.881005840357816 -574,26.0,29.0,-0.6874559028276572,1.293971494797717 -574,27.0,5.0,-4.362844058012917,15.463571542897856 -574,27.0,7.0,-1.4439790613954469,4.540814658476248 -574,27.0,26.0,0.0,2.608731947574922 -574,27.0,27.0,5.806823119408364,-22.67145722159613 -574,28.0,26.0,-0.99553355095268,1.881005840357816 -574,28.0,28.0,1.9075867579849564,-3.604364401207048 -574,28.0,29.0,-0.9120532070322764,1.7233585608492326 -574,29.0,26.0,-0.6874559028276572,1.293971494797717 -574,29.0,28.0,-0.9120532070322764,1.7233585608492326 -574,29.0,29.0,1.5995091098599337,-3.0173300556469496 -575,0.0,0.0,6.765516048652632,-21.23160167089863 -575,0.0,1.0,-5.224646179885656,15.646726840803398 -575,0.0,2.0,-1.5408698687669766,5.631674830095234 -575,1.0,0.0,-5.224646179885656,15.646726840803398 -575,1.0,1.0,8.066137284758561,-25.55088539734126 -575,1.0,3.0,-1.7055303166990268,5.1973792282565086 -575,1.0,4.0,-1.1359607881738778,4.772479328281356 -575,2.0,0.0,-1.5408698687669766,5.631674830095234 -575,2.0,2.0,9.736318911079088,-29.13794745915803 -575,2.0,3.0,-8.19544904231211,23.5308726290628 -575,3.0,1.0,-1.7055303166990268,5.1973792282565086 -575,3.0,2.0,-8.19544904231211,23.5308726290628 -575,3.0,3.0,16.314103089185693,-55.509410535254254 -575,3.0,5.0,-6.413123730174556,22.31120356548123 -575,3.0,11.0,0.0,4.191255364806866 -575,4.0,1.0,-1.1359607881738778,4.772479328281356 -575,4.0,4.0,4.089980824135861,-12.190647245055052 -575,4.0,6.0,-2.954020035961983,7.449267916773697 -575,5.0,3.0,-6.413123730174556,22.31120356548123 -575,5.0,5.0,20.655486388269097,-77.7313703704441 -575,5.0,6.0,-3.590210423980992,11.02611441072814 -575,5.0,7.0,-6.289308176100628,22.0125786163522 -575,5.0,8.0,0.0,4.915840805411357 -575,5.0,9.0,0.0,1.8561002591115965 -575,5.0,27.0,-4.362844058012917,15.463571542897856 -575,6.0,4.0,-2.954020035961983,7.449267916773697 -575,6.0,5.0,-3.590210423980992,11.02611441072814 -575,6.0,6.0,6.544230459942975,-18.45668232750184 -575,7.0,5.0,-6.289308176100628,22.0125786163522 -575,7.0,7.0,7.733287237496075,-26.527493274828448 -575,7.0,27.0,-1.4439790613954469,4.540814658476248 -575,8.0,5.0,0.0,4.915840805411357 -575,8.0,8.0,0.0,-18.706293706293707 -575,8.0,9.0,0.0,9.090909090909092 -575,8.0,10.0,0.0,4.807692307692308 -575,9.0,5.0,0.0,1.8561002591115965 -575,9.0,8.0,0.0,9.090909090909092 -575,9.0,9.0,9.506003688808882,-31.06631294767834 -575,9.0,19.0,-1.7848303152666305,3.98535828943083 -575,9.0,20.0,-5.101853820159654,10.98071411292983 -575,9.0,21.0,-2.619319553382597,5.400770303329455 -575,10.0,8.0,0.0,4.807692307692308 -575,10.0,10.0,0.0,-4.807692307692308 -575,11.0,3.0,0.0,4.191255364806866 -575,11.0,11.0,6.573961583776156,-24.424167659260668 -575,11.0,12.0,0.0,7.142857142857143 -575,11.0,13.0,-1.5265676088395577,3.1734252729654173 -575,11.0,14.0,-3.0953961826564296,6.097275864326261 -575,11.0,15.0,-1.9519977922801688,4.104359379111847 -575,12.0,11.0,0.0,7.142857142857143 -575,12.0,12.0,0.0,-7.142857142857143 -575,13.0,11.0,-1.5265676088395577,3.1734252729654173 -575,13.0,13.0,4.01751987283902,-5.424299332335067 -575,13.0,14.0,-2.4909522639994623,2.250874059369649 -575,14.0,11.0,-3.0953961826564296,6.097275864326261 -575,14.0,13.0,-2.4909522639994623,2.250874059369649 -575,14.0,14.0,9.365498545964757,-16.01163373210796 -575,14.0,17.0,-1.8108011504072024,3.687418931630696 -575,14.0,22.0,-1.9683489489016612,3.976064876781356 -575,15.0,11.0,-1.9519977922801688,4.104359379111847 -575,15.0,15.0,3.271064728633931,-8.94513365126506 -575,15.0,16.0,-1.3190669363537617,4.8407742721532125 -575,16.0,15.0,-1.3190669363537617,4.8407742721532125 -575,16.0,16.0,1.3190669363537617,-4.8407742721532125 -575,17.0,14.0,-1.8108011504072024,3.687418931630696 -575,17.0,17.0,4.886487584415919,-9.906177730909668 -575,17.0,18.0,-3.0756864340087167,6.218758799278971 -575,18.0,17.0,-3.0756864340087167,6.218758799278971 -575,18.0,18.0,8.958039375185187,-17.98346468163191 -575,18.0,19.0,-5.88235294117647,11.76470588235294 -575,19.0,9.0,-1.7848303152666305,3.98535828943083 -575,19.0,18.0,-5.88235294117647,11.76470588235294 -575,19.0,19.0,7.6671832564431,-15.75006417178377 -575,20.0,9.0,-5.101853820159654,10.98071411292983 -575,20.0,20.0,21.876495189895888,-45.10843276170355 -575,20.0,21.0,-16.774641369736234,34.127718648773715 -575,21.0,9.0,-2.619319553382597,5.400770303329455 -575,21.0,20.0,-16.774641369736234,34.127718648773715 -575,21.0,21.0,21.93449907537439,-43.48289181517921 -575,21.0,23.0,-2.5405381522555563,3.95440286307604 -575,22.0,14.0,-1.9683489489016612,3.976064876781356 -575,22.0,22.0,3.429754555384988,-6.965303617315433 -575,22.0,23.0,-1.4614056064833263,2.989238740534077 -575,23.0,21.0,-2.5405381522555563,3.95440286307604 -575,23.0,22.0,-1.4614056064833263,2.989238740534077 -575,23.0,23.0,5.311836702613133,-9.188263657315172 -575,23.0,24.0,-1.3098929438742493,2.287622053705056 -575,24.0,23.0,-1.3098929438742493,2.287622053705056 -575,24.0,24.0,4.495715080321987,-7.864978761969621 -575,24.0,25.0,-1.2165301194494855,1.8171440463475024 -575,24.0,26.0,-1.9692920169982515,3.760212661917064 -575,25.0,24.0,-1.2165301194494855,1.8171440463475024 -575,25.0,25.0,1.2165301194494855,-1.8171440463475024 -575,26.0,24.0,-1.9692920169982515,3.760212661917064 -575,26.0,26.0,3.652281470778589,-9.46044252232512 -575,26.0,27.0,0.0,2.608731947574922 -575,26.0,28.0,-0.99553355095268,1.881005840357816 -575,26.0,29.0,-0.6874559028276572,1.293971494797717 -575,27.0,5.0,-4.362844058012917,15.463571542897856 -575,27.0,7.0,-1.4439790613954469,4.540814658476248 -575,27.0,26.0,0.0,2.608731947574922 -575,27.0,27.0,5.806823119408364,-22.67145722159613 -575,28.0,26.0,-0.99553355095268,1.881005840357816 -575,28.0,28.0,1.9075867579849564,-3.604364401207048 -575,28.0,29.0,-0.9120532070322764,1.7233585608492326 -575,29.0,26.0,-0.6874559028276572,1.293971494797717 -575,29.0,28.0,-0.9120532070322764,1.7233585608492326 -575,29.0,29.0,1.5995091098599337,-3.0173300556469496 -576,0.0,0.0,6.765516048652632,-21.23160167089863 -576,0.0,1.0,-5.224646179885656,15.646726840803398 -576,0.0,2.0,-1.5408698687669766,5.631674830095234 -576,1.0,0.0,-5.224646179885656,15.646726840803398 -576,1.0,1.0,9.75228216552403,-30.648662892676068 -576,1.0,3.0,-1.7055303166990268,5.1973792282565086 -576,1.0,4.0,-1.1359607881738778,4.772479328281356 -576,1.0,5.0,-1.6861448807654689,5.116477495334806 -576,2.0,0.0,-1.5408698687669766,5.631674830095234 -576,2.0,2.0,9.736318911079088,-29.13794745915803 -576,2.0,3.0,-8.19544904231211,23.5308726290628 -576,3.0,1.0,-1.7055303166990268,5.1973792282565086 -576,3.0,2.0,-8.19544904231211,23.5308726290628 -576,3.0,3.0,16.314103089185693,-55.509410535254254 -576,3.0,5.0,-6.413123730174556,22.31120356548123 -576,3.0,11.0,0.0,4.191255364806866 -576,4.0,1.0,-1.1359607881738778,4.772479328281356 -576,4.0,4.0,4.089980824135861,-12.190647245055052 -576,4.0,6.0,-2.954020035961983,7.449267916773697 -576,5.0,1.0,-1.6861448807654689,5.116477495334806 -576,5.0,3.0,-6.413123730174556,22.31120356548123 -576,5.0,5.0,22.341631269034565,-82.8291478657789 -576,5.0,6.0,-3.590210423980992,11.02611441072814 -576,5.0,7.0,-6.289308176100628,22.0125786163522 -576,5.0,8.0,0.0,4.915840805411357 -576,5.0,9.0,0.0,1.8561002591115965 -576,5.0,27.0,-4.362844058012917,15.463571542897856 -576,6.0,4.0,-2.954020035961983,7.449267916773697 -576,6.0,5.0,-3.590210423980992,11.02611441072814 -576,6.0,6.0,6.544230459942975,-18.45668232750184 -576,7.0,5.0,-6.289308176100628,22.0125786163522 -576,7.0,7.0,7.733287237496075,-26.527493274828448 -576,7.0,27.0,-1.4439790613954469,4.540814658476248 -576,8.0,5.0,0.0,4.915840805411357 -576,8.0,8.0,0.0,-18.706293706293707 -576,8.0,9.0,0.0,9.090909090909092 -576,8.0,10.0,0.0,4.807692307692308 -576,9.0,5.0,0.0,1.8561002591115965 -576,9.0,8.0,0.0,9.090909090909092 -576,9.0,9.0,13.462042814524237,-41.3837606675224 -576,9.0,16.0,-3.956039125715353,10.317447719844054 -576,9.0,19.0,-1.7848303152666305,3.98535828943083 -576,9.0,20.0,-5.101853820159654,10.98071411292983 -576,9.0,21.0,-2.619319553382597,5.400770303329455 -576,10.0,8.0,0.0,4.807692307692308 -576,10.0,10.0,0.0,-4.807692307692308 -576,11.0,3.0,0.0,4.191255364806866 -576,11.0,11.0,6.573961583776156,-24.424167659260668 -576,11.0,12.0,0.0,7.142857142857143 -576,11.0,13.0,-1.5265676088395577,3.1734252729654173 -576,11.0,14.0,-3.0953961826564296,6.097275864326261 -576,11.0,15.0,-1.9519977922801688,4.104359379111847 -576,12.0,11.0,0.0,7.142857142857143 -576,12.0,12.0,0.0,-7.142857142857143 -576,13.0,11.0,-1.5265676088395577,3.1734252729654173 -576,13.0,13.0,4.01751987283902,-5.424299332335067 -576,13.0,14.0,-2.4909522639994623,2.250874059369649 -576,14.0,11.0,-3.0953961826564296,6.097275864326261 -576,14.0,13.0,-2.4909522639994623,2.250874059369649 -576,14.0,14.0,9.365498545964757,-16.01163373210796 -576,14.0,17.0,-1.8108011504072024,3.687418931630696 -576,14.0,22.0,-1.9683489489016612,3.976064876781356 -576,15.0,11.0,-1.9519977922801688,4.104359379111847 -576,15.0,15.0,3.271064728633931,-8.94513365126506 -576,15.0,16.0,-1.3190669363537617,4.8407742721532125 -576,16.0,9.0,-3.956039125715353,10.317447719844054 -576,16.0,15.0,-1.3190669363537617,4.8407742721532125 -576,16.0,16.0,5.275106062069114,-15.158221991997266 -576,17.0,14.0,-1.8108011504072024,3.687418931630696 -576,17.0,17.0,4.886487584415919,-9.906177730909668 -576,17.0,18.0,-3.0756864340087167,6.218758799278971 -576,18.0,17.0,-3.0756864340087167,6.218758799278971 -576,18.0,18.0,8.958039375185187,-17.98346468163191 -576,18.0,19.0,-5.88235294117647,11.76470588235294 -576,19.0,9.0,-1.7848303152666305,3.98535828943083 -576,19.0,18.0,-5.88235294117647,11.76470588235294 -576,19.0,19.0,7.6671832564431,-15.75006417178377 -576,20.0,9.0,-5.101853820159654,10.98071411292983 -576,20.0,20.0,21.876495189895888,-45.10843276170355 -576,20.0,21.0,-16.774641369736234,34.127718648773715 -576,21.0,9.0,-2.619319553382597,5.400770303329455 -576,21.0,20.0,-16.774641369736234,34.127718648773715 -576,21.0,21.0,21.93449907537439,-43.48289181517921 -576,21.0,23.0,-2.5405381522555563,3.95440286307604 -576,22.0,14.0,-1.9683489489016612,3.976064876781356 -576,22.0,22.0,3.429754555384988,-6.965303617315433 -576,22.0,23.0,-1.4614056064833263,2.989238740534077 -576,23.0,21.0,-2.5405381522555563,3.95440286307604 -576,23.0,22.0,-1.4614056064833263,2.989238740534077 -576,23.0,23.0,5.311836702613133,-9.188263657315172 -576,23.0,24.0,-1.3098929438742493,2.287622053705056 -576,24.0,23.0,-1.3098929438742493,2.287622053705056 -576,24.0,24.0,4.495715080321987,-7.864978761969621 -576,24.0,25.0,-1.2165301194494855,1.8171440463475024 -576,24.0,26.0,-1.9692920169982515,3.760212661917064 -576,25.0,24.0,-1.2165301194494855,1.8171440463475024 -576,25.0,25.0,1.2165301194494855,-1.8171440463475024 -576,26.0,24.0,-1.9692920169982515,3.760212661917064 -576,26.0,26.0,3.652281470778589,-9.46044252232512 -576,26.0,27.0,0.0,2.608731947574922 -576,26.0,28.0,-0.99553355095268,1.881005840357816 -576,26.0,29.0,-0.6874559028276572,1.293971494797717 -576,27.0,5.0,-4.362844058012917,15.463571542897856 -576,27.0,7.0,-1.4439790613954469,4.540814658476248 -576,27.0,26.0,0.0,2.608731947574922 -576,27.0,27.0,5.806823119408364,-22.67145722159613 -576,28.0,26.0,-0.99553355095268,1.881005840357816 -576,28.0,28.0,1.9075867579849564,-3.604364401207048 -576,28.0,29.0,-0.9120532070322764,1.7233585608492326 -576,29.0,26.0,-0.6874559028276572,1.293971494797717 -576,29.0,28.0,-0.9120532070322764,1.7233585608492326 -576,29.0,29.0,1.5995091098599337,-3.0173300556469496 -577,0.0,0.0,6.765516048652632,-21.23160167089863 -577,0.0,1.0,-5.224646179885656,15.646726840803398 -577,0.0,2.0,-1.5408698687669766,5.631674830095234 -577,1.0,0.0,-5.224646179885656,15.646726840803398 -577,1.0,1.0,9.75228216552403,-30.648662892676068 -577,1.0,3.0,-1.7055303166990268,5.1973792282565086 -577,1.0,4.0,-1.1359607881738778,4.772479328281356 -577,1.0,5.0,-1.6861448807654689,5.116477495334806 -577,2.0,0.0,-1.5408698687669766,5.631674830095234 -577,2.0,2.0,1.5408698687669766,-5.611274830095233 -577,3.0,1.0,-1.7055303166990268,5.1973792282565086 -577,3.0,3.0,8.118654046873583,-31.982737906191456 -577,3.0,5.0,-6.413123730174556,22.31120356548123 -577,3.0,11.0,0.0,4.191255364806866 -577,4.0,1.0,-1.1359607881738778,4.772479328281356 -577,4.0,4.0,4.089980824135861,-12.190647245055052 -577,4.0,6.0,-2.954020035961983,7.449267916773697 -577,5.0,1.0,-1.6861448807654689,5.116477495334806 -577,5.0,3.0,-6.413123730174556,22.31120356548123 -577,5.0,5.0,22.341631269034565,-82.8291478657789 -577,5.0,6.0,-3.590210423980992,11.02611441072814 -577,5.0,7.0,-6.289308176100628,22.0125786163522 -577,5.0,8.0,0.0,4.915840805411357 -577,5.0,9.0,0.0,1.8561002591115965 -577,5.0,27.0,-4.362844058012917,15.463571542897856 -577,6.0,4.0,-2.954020035961983,7.449267916773697 -577,6.0,5.0,-3.590210423980992,11.02611441072814 -577,6.0,6.0,6.544230459942975,-18.45668232750184 -577,7.0,5.0,-6.289308176100628,22.0125786163522 -577,7.0,7.0,7.733287237496075,-26.527493274828448 -577,7.0,27.0,-1.4439790613954469,4.540814658476248 -577,8.0,5.0,0.0,4.915840805411357 -577,8.0,8.0,0.0,-18.706293706293707 -577,8.0,9.0,0.0,9.090909090909092 -577,8.0,10.0,0.0,4.807692307692308 -577,9.0,5.0,0.0,1.8561002591115965 -577,9.0,8.0,0.0,9.090909090909092 -577,9.0,9.0,13.462042814524237,-41.3837606675224 -577,9.0,16.0,-3.956039125715353,10.317447719844054 -577,9.0,19.0,-1.7848303152666305,3.98535828943083 -577,9.0,20.0,-5.101853820159654,10.98071411292983 -577,9.0,21.0,-2.619319553382597,5.400770303329455 -577,10.0,8.0,0.0,4.807692307692308 -577,10.0,10.0,0.0,-4.807692307692308 -577,11.0,3.0,0.0,4.191255364806866 -577,11.0,11.0,6.573961583776156,-24.424167659260668 -577,11.0,12.0,0.0,7.142857142857143 -577,11.0,13.0,-1.5265676088395577,3.1734252729654173 -577,11.0,14.0,-3.0953961826564296,6.097275864326261 -577,11.0,15.0,-1.9519977922801688,4.104359379111847 -577,12.0,11.0,0.0,7.142857142857143 -577,12.0,12.0,0.0,-7.142857142857143 -577,13.0,11.0,-1.5265676088395577,3.1734252729654173 -577,13.0,13.0,4.01751987283902,-5.424299332335067 -577,13.0,14.0,-2.4909522639994623,2.250874059369649 -577,14.0,11.0,-3.0953961826564296,6.097275864326261 -577,14.0,13.0,-2.4909522639994623,2.250874059369649 -577,14.0,14.0,9.365498545964757,-16.01163373210796 -577,14.0,17.0,-1.8108011504072024,3.687418931630696 -577,14.0,22.0,-1.9683489489016612,3.976064876781356 -577,15.0,11.0,-1.9519977922801688,4.104359379111847 -577,15.0,15.0,3.271064728633931,-8.94513365126506 -577,15.0,16.0,-1.3190669363537617,4.8407742721532125 -577,16.0,9.0,-3.956039125715353,10.317447719844054 -577,16.0,15.0,-1.3190669363537617,4.8407742721532125 -577,16.0,16.0,5.275106062069114,-15.158221991997266 -577,17.0,14.0,-1.8108011504072024,3.687418931630696 -577,17.0,17.0,4.886487584415919,-9.906177730909668 -577,17.0,18.0,-3.0756864340087167,6.218758799278971 -577,18.0,17.0,-3.0756864340087167,6.218758799278971 -577,18.0,18.0,8.958039375185187,-17.98346468163191 -577,18.0,19.0,-5.88235294117647,11.76470588235294 -577,19.0,9.0,-1.7848303152666305,3.98535828943083 -577,19.0,18.0,-5.88235294117647,11.76470588235294 -577,19.0,19.0,7.6671832564431,-15.75006417178377 -577,20.0,9.0,-5.101853820159654,10.98071411292983 -577,20.0,20.0,21.876495189895888,-45.10843276170355 -577,20.0,21.0,-16.774641369736234,34.127718648773715 -577,21.0,9.0,-2.619319553382597,5.400770303329455 -577,21.0,20.0,-16.774641369736234,34.127718648773715 -577,21.0,21.0,21.93449907537439,-43.48289181517921 -577,21.0,23.0,-2.5405381522555563,3.95440286307604 -577,22.0,14.0,-1.9683489489016612,3.976064876781356 -577,22.0,22.0,3.429754555384988,-6.965303617315433 -577,22.0,23.0,-1.4614056064833263,2.989238740534077 -577,23.0,21.0,-2.5405381522555563,3.95440286307604 -577,23.0,22.0,-1.4614056064833263,2.989238740534077 -577,23.0,23.0,5.311836702613133,-9.188263657315172 -577,23.0,24.0,-1.3098929438742493,2.287622053705056 -577,24.0,23.0,-1.3098929438742493,2.287622053705056 -577,24.0,24.0,4.495715080321987,-7.864978761969621 -577,24.0,25.0,-1.2165301194494855,1.8171440463475024 -577,24.0,26.0,-1.9692920169982515,3.760212661917064 -577,25.0,24.0,-1.2165301194494855,1.8171440463475024 -577,25.0,25.0,1.2165301194494855,-1.8171440463475024 -577,26.0,24.0,-1.9692920169982515,3.760212661917064 -577,26.0,26.0,3.652281470778589,-9.46044252232512 -577,26.0,27.0,0.0,2.608731947574922 -577,26.0,28.0,-0.99553355095268,1.881005840357816 -577,26.0,29.0,-0.6874559028276572,1.293971494797717 -577,27.0,5.0,-4.362844058012917,15.463571542897856 -577,27.0,7.0,-1.4439790613954469,4.540814658476248 -577,27.0,26.0,0.0,2.608731947574922 -577,27.0,27.0,5.806823119408364,-22.67145722159613 -577,28.0,26.0,-0.99553355095268,1.881005840357816 -577,28.0,28.0,1.9075867579849564,-3.604364401207048 -577,28.0,29.0,-0.9120532070322764,1.7233585608492326 -577,29.0,26.0,-0.6874559028276572,1.293971494797717 -577,29.0,28.0,-0.9120532070322764,1.7233585608492326 -577,29.0,29.0,1.5995091098599337,-3.0173300556469496 -578,0.0,0.0,6.765516048652632,-21.23160167089863 -578,0.0,1.0,-5.224646179885656,15.646726840803398 -578,0.0,2.0,-1.5408698687669766,5.631674830095234 -578,1.0,0.0,-5.224646179885656,15.646726840803398 -578,1.0,1.0,9.75228216552403,-30.648662892676068 -578,1.0,3.0,-1.7055303166990268,5.1973792282565086 -578,1.0,4.0,-1.1359607881738778,4.772479328281356 -578,1.0,5.0,-1.6861448807654689,5.116477495334806 -578,2.0,0.0,-1.5408698687669766,5.631674830095234 -578,2.0,2.0,9.736318911079088,-29.13794745915803 -578,2.0,3.0,-8.19544904231211,23.5308726290628 -578,3.0,1.0,-1.7055303166990268,5.1973792282565086 -578,3.0,2.0,-8.19544904231211,23.5308726290628 -578,3.0,3.0,16.314103089185693,-55.509410535254254 -578,3.0,5.0,-6.413123730174556,22.31120356548123 -578,3.0,11.0,0.0,4.191255364806866 -578,4.0,1.0,-1.1359607881738778,4.772479328281356 -578,4.0,4.0,4.089980824135861,-12.190647245055052 -578,4.0,6.0,-2.954020035961983,7.449267916773697 -578,5.0,1.0,-1.6861448807654689,5.116477495334806 -578,5.0,3.0,-6.413123730174556,22.31120356548123 -578,5.0,5.0,22.341631269034565,-82.8291478657789 -578,5.0,6.0,-3.590210423980992,11.02611441072814 -578,5.0,7.0,-6.289308176100628,22.0125786163522 -578,5.0,8.0,0.0,4.915840805411357 -578,5.0,9.0,0.0,1.8561002591115965 -578,5.0,27.0,-4.362844058012917,15.463571542897856 -578,6.0,4.0,-2.954020035961983,7.449267916773697 -578,6.0,5.0,-3.590210423980992,11.02611441072814 -578,6.0,6.0,6.544230459942975,-18.45668232750184 -578,7.0,5.0,-6.289308176100628,22.0125786163522 -578,7.0,7.0,7.733287237496075,-26.527493274828448 -578,7.0,27.0,-1.4439790613954469,4.540814658476248 -578,8.0,5.0,0.0,4.915840805411357 -578,8.0,8.0,0.0,-18.706293706293707 -578,8.0,9.0,0.0,9.090909090909092 -578,8.0,10.0,0.0,4.807692307692308 -578,9.0,5.0,0.0,1.8561002591115965 -578,9.0,8.0,0.0,9.090909090909092 -578,9.0,9.0,13.462042814524237,-41.3837606675224 -578,9.0,16.0,-3.956039125715353,10.317447719844054 -578,9.0,19.0,-1.7848303152666305,3.98535828943083 -578,9.0,20.0,-5.101853820159654,10.98071411292983 -578,9.0,21.0,-2.619319553382597,5.400770303329455 -578,10.0,8.0,0.0,4.807692307692308 -578,10.0,10.0,0.0,-4.807692307692308 -578,11.0,3.0,0.0,4.191255364806866 -578,11.0,11.0,6.573961583776156,-24.424167659260668 -578,11.0,12.0,0.0,7.142857142857143 -578,11.0,13.0,-1.5265676088395577,3.1734252729654173 -578,11.0,14.0,-3.0953961826564296,6.097275864326261 -578,11.0,15.0,-1.9519977922801688,4.104359379111847 -578,12.0,11.0,0.0,7.142857142857143 -578,12.0,12.0,0.0,-7.142857142857143 -578,13.0,11.0,-1.5265676088395577,3.1734252729654173 -578,13.0,13.0,4.01751987283902,-5.424299332335067 -578,13.0,14.0,-2.4909522639994623,2.250874059369649 -578,14.0,11.0,-3.0953961826564296,6.097275864326261 -578,14.0,13.0,-2.4909522639994623,2.250874059369649 -578,14.0,14.0,9.365498545964757,-16.01163373210796 -578,14.0,17.0,-1.8108011504072024,3.687418931630696 -578,14.0,22.0,-1.9683489489016612,3.976064876781356 -578,15.0,11.0,-1.9519977922801688,4.104359379111847 -578,15.0,15.0,3.271064728633931,-8.94513365126506 -578,15.0,16.0,-1.3190669363537617,4.8407742721532125 -578,16.0,9.0,-3.956039125715353,10.317447719844054 -578,16.0,15.0,-1.3190669363537617,4.8407742721532125 -578,16.0,16.0,5.275106062069114,-15.158221991997266 -578,17.0,14.0,-1.8108011504072024,3.687418931630696 -578,17.0,17.0,4.886487584415919,-9.906177730909668 -578,17.0,18.0,-3.0756864340087167,6.218758799278971 -578,18.0,17.0,-3.0756864340087167,6.218758799278971 -578,18.0,18.0,8.958039375185187,-17.98346468163191 -578,18.0,19.0,-5.88235294117647,11.76470588235294 -578,19.0,9.0,-1.7848303152666305,3.98535828943083 -578,19.0,18.0,-5.88235294117647,11.76470588235294 -578,19.0,19.0,7.6671832564431,-15.75006417178377 -578,20.0,9.0,-5.101853820159654,10.98071411292983 -578,20.0,20.0,21.876495189895888,-45.10843276170355 -578,20.0,21.0,-16.774641369736234,34.127718648773715 -578,21.0,9.0,-2.619319553382597,5.400770303329455 -578,21.0,20.0,-16.774641369736234,34.127718648773715 -578,21.0,21.0,21.93449907537439,-43.48289181517921 -578,21.0,23.0,-2.5405381522555563,3.95440286307604 -578,22.0,14.0,-1.9683489489016612,3.976064876781356 -578,22.0,22.0,3.429754555384988,-6.965303617315433 -578,22.0,23.0,-1.4614056064833263,2.989238740534077 -578,23.0,21.0,-2.5405381522555563,3.95440286307604 -578,23.0,22.0,-1.4614056064833263,2.989238740534077 -578,23.0,23.0,5.311836702613133,-9.188263657315172 -578,23.0,24.0,-1.3098929438742493,2.287622053705056 -578,24.0,23.0,-1.3098929438742493,2.287622053705056 -578,24.0,24.0,4.495715080321987,-7.864978761969621 -578,24.0,25.0,-1.2165301194494855,1.8171440463475024 -578,24.0,26.0,-1.9692920169982515,3.760212661917064 -578,25.0,24.0,-1.2165301194494855,1.8171440463475024 -578,25.0,25.0,1.2165301194494855,-1.8171440463475024 -578,26.0,24.0,-1.9692920169982515,3.760212661917064 -578,26.0,26.0,3.652281470778589,-9.46044252232512 -578,26.0,27.0,0.0,2.608731947574922 -578,26.0,28.0,-0.99553355095268,1.881005840357816 -578,26.0,29.0,-0.6874559028276572,1.293971494797717 -578,27.0,5.0,-4.362844058012917,15.463571542897856 -578,27.0,7.0,-1.4439790613954469,4.540814658476248 -578,27.0,26.0,0.0,2.608731947574922 -578,27.0,27.0,5.806823119408364,-22.67145722159613 -578,28.0,26.0,-0.99553355095268,1.881005840357816 -578,28.0,28.0,1.9075867579849564,-3.604364401207048 -578,28.0,29.0,-0.9120532070322764,1.7233585608492326 -578,29.0,26.0,-0.6874559028276572,1.293971494797717 -578,29.0,28.0,-0.9120532070322764,1.7233585608492326 -578,29.0,29.0,1.5995091098599337,-3.0173300556469496 -579,0.0,0.0,6.765516048652632,-21.23160167089863 -579,0.0,1.0,-5.224646179885656,15.646726840803398 -579,0.0,2.0,-1.5408698687669766,5.631674830095234 -579,1.0,0.0,-5.224646179885656,15.646726840803398 -579,1.0,1.0,9.75228216552403,-30.648662892676068 -579,1.0,3.0,-1.7055303166990268,5.1973792282565086 -579,1.0,4.0,-1.1359607881738778,4.772479328281356 -579,1.0,5.0,-1.6861448807654689,5.116477495334806 -579,2.0,0.0,-1.5408698687669766,5.631674830095234 -579,2.0,2.0,9.736318911079088,-29.13794745915803 -579,2.0,3.0,-8.19544904231211,23.5308726290628 -579,3.0,1.0,-1.7055303166990268,5.1973792282565086 -579,3.0,2.0,-8.19544904231211,23.5308726290628 -579,3.0,3.0,16.314103089185693,-55.509410535254254 -579,3.0,5.0,-6.413123730174556,22.31120356548123 -579,3.0,11.0,0.0,4.191255364806866 -579,4.0,1.0,-1.1359607881738778,4.772479328281356 -579,4.0,4.0,4.089980824135861,-12.190647245055052 -579,4.0,6.0,-2.954020035961983,7.449267916773697 -579,5.0,1.0,-1.6861448807654689,5.116477495334806 -579,5.0,3.0,-6.413123730174556,22.31120356548123 -579,5.0,5.0,22.341631269034565,-82.8291478657789 -579,5.0,6.0,-3.590210423980992,11.02611441072814 -579,5.0,7.0,-6.289308176100628,22.0125786163522 -579,5.0,8.0,0.0,4.915840805411357 -579,5.0,9.0,0.0,1.8561002591115965 -579,5.0,27.0,-4.362844058012917,15.463571542897856 -579,6.0,4.0,-2.954020035961983,7.449267916773697 -579,6.0,5.0,-3.590210423980992,11.02611441072814 -579,6.0,6.0,6.544230459942975,-18.45668232750184 -579,7.0,5.0,-6.289308176100628,22.0125786163522 -579,7.0,7.0,7.733287237496075,-26.527493274828448 -579,7.0,27.0,-1.4439790613954469,4.540814658476248 -579,8.0,5.0,0.0,4.915840805411357 -579,8.0,8.0,0.0,-18.706293706293707 -579,8.0,9.0,0.0,9.090909090909092 -579,8.0,10.0,0.0,4.807692307692308 -579,9.0,5.0,0.0,1.8561002591115965 -579,9.0,8.0,0.0,9.090909090909092 -579,9.0,9.0,13.462042814524237,-41.3837606675224 -579,9.0,16.0,-3.956039125715353,10.317447719844054 -579,9.0,19.0,-1.7848303152666305,3.98535828943083 -579,9.0,20.0,-5.101853820159654,10.98071411292983 -579,9.0,21.0,-2.619319553382597,5.400770303329455 -579,10.0,8.0,0.0,4.807692307692308 -579,10.0,10.0,0.0,-4.807692307692308 -579,11.0,3.0,0.0,4.191255364806866 -579,11.0,11.0,6.573961583776156,-24.424167659260668 -579,11.0,12.0,0.0,7.142857142857143 -579,11.0,13.0,-1.5265676088395577,3.1734252729654173 -579,11.0,14.0,-3.0953961826564296,6.097275864326261 -579,11.0,15.0,-1.9519977922801688,4.104359379111847 -579,12.0,11.0,0.0,7.142857142857143 -579,12.0,12.0,0.0,-7.142857142857143 -579,13.0,11.0,-1.5265676088395577,3.1734252729654173 -579,13.0,13.0,4.01751987283902,-5.424299332335067 -579,13.0,14.0,-2.4909522639994623,2.250874059369649 -579,14.0,11.0,-3.0953961826564296,6.097275864326261 -579,14.0,13.0,-2.4909522639994623,2.250874059369649 -579,14.0,14.0,9.365498545964757,-16.01163373210796 -579,14.0,17.0,-1.8108011504072024,3.687418931630696 -579,14.0,22.0,-1.9683489489016612,3.976064876781356 -579,15.0,11.0,-1.9519977922801688,4.104359379111847 -579,15.0,15.0,3.271064728633931,-8.94513365126506 -579,15.0,16.0,-1.3190669363537617,4.8407742721532125 -579,16.0,9.0,-3.956039125715353,10.317447719844054 -579,16.0,15.0,-1.3190669363537617,4.8407742721532125 -579,16.0,16.0,5.275106062069114,-15.158221991997266 -579,17.0,14.0,-1.8108011504072024,3.687418931630696 -579,17.0,17.0,4.886487584415919,-9.906177730909668 -579,17.0,18.0,-3.0756864340087167,6.218758799278971 -579,18.0,17.0,-3.0756864340087167,6.218758799278971 -579,18.0,18.0,8.958039375185187,-17.98346468163191 -579,18.0,19.0,-5.88235294117647,11.76470588235294 -579,19.0,9.0,-1.7848303152666305,3.98535828943083 -579,19.0,18.0,-5.88235294117647,11.76470588235294 -579,19.0,19.0,7.6671832564431,-15.75006417178377 -579,20.0,9.0,-5.101853820159654,10.98071411292983 -579,20.0,20.0,21.876495189895888,-45.10843276170355 -579,20.0,21.0,-16.774641369736234,34.127718648773715 -579,21.0,9.0,-2.619319553382597,5.400770303329455 -579,21.0,20.0,-16.774641369736234,34.127718648773715 -579,21.0,21.0,21.93449907537439,-43.48289181517921 -579,21.0,23.0,-2.5405381522555563,3.95440286307604 -579,22.0,14.0,-1.9683489489016612,3.976064876781356 -579,22.0,22.0,1.9683489489016612,-3.976064876781356 -579,23.0,21.0,-2.5405381522555563,3.95440286307604 -579,23.0,23.0,3.850431096129806,-6.199024916781094 -579,23.0,24.0,-1.3098929438742493,2.287622053705056 -579,24.0,23.0,-1.3098929438742493,2.287622053705056 -579,24.0,24.0,4.495715080321987,-7.864978761969621 -579,24.0,25.0,-1.2165301194494855,1.8171440463475024 -579,24.0,26.0,-1.9692920169982515,3.760212661917064 -579,25.0,24.0,-1.2165301194494855,1.8171440463475024 -579,25.0,25.0,1.2165301194494855,-1.8171440463475024 -579,26.0,24.0,-1.9692920169982515,3.760212661917064 -579,26.0,26.0,3.652281470778589,-9.46044252232512 -579,26.0,27.0,0.0,2.608731947574922 -579,26.0,28.0,-0.99553355095268,1.881005840357816 -579,26.0,29.0,-0.6874559028276572,1.293971494797717 -579,27.0,5.0,-4.362844058012917,15.463571542897856 -579,27.0,7.0,-1.4439790613954469,4.540814658476248 -579,27.0,26.0,0.0,2.608731947574922 -579,27.0,27.0,5.806823119408364,-22.67145722159613 -579,28.0,26.0,-0.99553355095268,1.881005840357816 -579,28.0,28.0,1.9075867579849564,-3.604364401207048 -579,28.0,29.0,-0.9120532070322764,1.7233585608492326 -579,29.0,26.0,-0.6874559028276572,1.293971494797717 -579,29.0,28.0,-0.9120532070322764,1.7233585608492326 -579,29.0,29.0,1.5995091098599337,-3.0173300556469496 -580,0.0,0.0,1.5408698687669766,-5.611274830095233 -580,0.0,2.0,-1.5408698687669766,5.631674830095234 -580,1.0,1.0,2.8221056689393467,-9.849356823616162 -580,1.0,4.0,-1.1359607881738778,4.772479328281356 -580,1.0,5.0,-1.6861448807654689,5.116477495334806 -580,2.0,0.0,-1.5408698687669766,5.631674830095234 -580,2.0,2.0,9.736318911079088,-29.13794745915803 -580,2.0,3.0,-8.19544904231211,23.5308726290628 -580,3.0,2.0,-8.19544904231211,23.5308726290628 -580,3.0,3.0,14.608572772486664,-50.33043130699775 -580,3.0,5.0,-6.413123730174556,22.31120356548123 -580,3.0,11.0,0.0,4.191255364806866 -580,4.0,1.0,-1.1359607881738778,4.772479328281356 -580,4.0,4.0,1.1359607881738778,-4.751579328281355 -580,5.0,1.0,-1.6861448807654689,5.116477495334806 -580,5.0,3.0,-6.413123730174556,22.31120356548123 -580,5.0,5.0,22.341631269034565,-82.8291478657789 -580,5.0,6.0,-3.590210423980992,11.02611441072814 -580,5.0,7.0,-6.289308176100628,22.0125786163522 -580,5.0,8.0,0.0,4.915840805411357 -580,5.0,9.0,0.0,1.8561002591115965 -580,5.0,27.0,-4.362844058012917,15.463571542897856 -580,6.0,5.0,-3.590210423980992,11.02611441072814 -580,6.0,6.0,3.590210423980992,-11.01761441072814 -580,7.0,5.0,-6.289308176100628,22.0125786163522 -580,7.0,7.0,7.733287237496075,-26.527493274828448 -580,7.0,27.0,-1.4439790613954469,4.540814658476248 -580,8.0,5.0,0.0,4.915840805411357 -580,8.0,8.0,0.0,-18.706293706293707 -580,8.0,9.0,0.0,9.090909090909092 -580,8.0,10.0,0.0,4.807692307692308 -580,9.0,5.0,0.0,1.8561002591115965 -580,9.0,8.0,0.0,9.090909090909092 -580,9.0,9.0,10.842723261141638,-35.98299036419294 -580,9.0,16.0,-3.956039125715353,10.317447719844054 -580,9.0,19.0,-1.7848303152666305,3.98535828943083 -580,9.0,20.0,-5.101853820159654,10.98071411292983 -580,10.0,8.0,0.0,4.807692307692308 -580,10.0,10.0,0.0,-4.807692307692308 -580,11.0,3.0,0.0,4.191255364806866 -580,11.0,11.0,5.047393974936599,-21.25074238629525 -580,11.0,12.0,0.0,7.142857142857143 -580,11.0,14.0,-3.0953961826564296,6.097275864326261 -580,11.0,15.0,-1.9519977922801688,4.104359379111847 -580,12.0,11.0,0.0,7.142857142857143 -580,12.0,12.0,0.0,-7.142857142857143 -580,13.0,13.0,2.4909522639994623,-2.250874059369649 -580,13.0,14.0,-2.4909522639994623,2.250874059369649 -580,14.0,11.0,-3.0953961826564296,6.097275864326261 -580,14.0,13.0,-2.4909522639994623,2.250874059369649 -580,14.0,14.0,9.365498545964757,-16.01163373210796 -580,14.0,17.0,-1.8108011504072024,3.687418931630696 -580,14.0,22.0,-1.9683489489016612,3.976064876781356 -580,15.0,11.0,-1.9519977922801688,4.104359379111847 -580,15.0,15.0,3.271064728633931,-8.94513365126506 -580,15.0,16.0,-1.3190669363537617,4.8407742721532125 -580,16.0,9.0,-3.956039125715353,10.317447719844054 -580,16.0,15.0,-1.3190669363537617,4.8407742721532125 -580,16.0,16.0,5.275106062069114,-15.158221991997266 -580,17.0,14.0,-1.8108011504072024,3.687418931630696 -580,17.0,17.0,4.886487584415919,-9.906177730909668 -580,17.0,18.0,-3.0756864340087167,6.218758799278971 -580,18.0,17.0,-3.0756864340087167,6.218758799278971 -580,18.0,18.0,8.958039375185187,-17.98346468163191 -580,18.0,19.0,-5.88235294117647,11.76470588235294 -580,19.0,9.0,-1.7848303152666305,3.98535828943083 -580,19.0,18.0,-5.88235294117647,11.76470588235294 -580,19.0,19.0,7.6671832564431,-15.75006417178377 -580,20.0,9.0,-5.101853820159654,10.98071411292983 -580,20.0,20.0,21.876495189895888,-45.10843276170355 -580,20.0,21.0,-16.774641369736234,34.127718648773715 -580,21.0,20.0,-16.774641369736234,34.127718648773715 -580,21.0,21.0,19.31517952199179,-38.08212151184976 -580,21.0,23.0,-2.5405381522555563,3.95440286307604 -580,22.0,14.0,-1.9683489489016612,3.976064876781356 -580,22.0,22.0,3.429754555384988,-6.965303617315433 -580,22.0,23.0,-1.4614056064833263,2.989238740534077 -580,23.0,21.0,-2.5405381522555563,3.95440286307604 -580,23.0,22.0,-1.4614056064833263,2.989238740534077 -580,23.0,23.0,5.311836702613133,-9.188263657315172 -580,23.0,24.0,-1.3098929438742493,2.287622053705056 -580,24.0,23.0,-1.3098929438742493,2.287622053705056 -580,24.0,24.0,4.495715080321987,-7.864978761969621 -580,24.0,25.0,-1.2165301194494855,1.8171440463475024 -580,24.0,26.0,-1.9692920169982515,3.760212661917064 -580,25.0,24.0,-1.2165301194494855,1.8171440463475024 -580,25.0,25.0,1.2165301194494855,-1.8171440463475024 -580,26.0,24.0,-1.9692920169982515,3.760212661917064 -580,26.0,26.0,3.652281470778589,-9.46044252232512 -580,26.0,27.0,0.0,2.608731947574922 -580,26.0,28.0,-0.99553355095268,1.881005840357816 -580,26.0,29.0,-0.6874559028276572,1.293971494797717 -580,27.0,5.0,-4.362844058012917,15.463571542897856 -580,27.0,7.0,-1.4439790613954469,4.540814658476248 -580,27.0,26.0,0.0,2.608731947574922 -580,27.0,27.0,5.806823119408364,-22.67145722159613 -580,28.0,26.0,-0.99553355095268,1.881005840357816 -580,28.0,28.0,1.9075867579849564,-3.604364401207048 -580,28.0,29.0,-0.9120532070322764,1.7233585608492326 -580,29.0,26.0,-0.6874559028276572,1.293971494797717 -580,29.0,28.0,-0.9120532070322764,1.7233585608492326 -580,29.0,29.0,1.5995091098599337,-3.0173300556469496 -581,0.0,0.0,6.765516048652632,-21.23160167089863 -581,0.0,1.0,-5.224646179885656,15.646726840803398 -581,0.0,2.0,-1.5408698687669766,5.631674830095234 -581,1.0,0.0,-5.224646179885656,15.646726840803398 -581,1.0,1.0,9.75228216552403,-30.648662892676068 -581,1.0,3.0,-1.7055303166990268,5.1973792282565086 -581,1.0,4.0,-1.1359607881738778,4.772479328281356 -581,1.0,5.0,-1.6861448807654689,5.116477495334806 -581,2.0,0.0,-1.5408698687669766,5.631674830095234 -581,2.0,2.0,9.736318911079088,-29.13794745915803 -581,2.0,3.0,-8.19544904231211,23.5308726290628 -581,3.0,1.0,-1.7055303166990268,5.1973792282565086 -581,3.0,2.0,-8.19544904231211,23.5308726290628 -581,3.0,3.0,9.900979359011137,-33.202706969773025 -581,3.0,11.0,0.0,4.191255364806866 -581,4.0,1.0,-1.1359607881738778,4.772479328281356 -581,4.0,4.0,4.089980824135861,-12.190647245055052 -581,4.0,6.0,-2.954020035961983,7.449267916773697 -581,5.0,1.0,-1.6861448807654689,5.116477495334806 -581,5.0,5.0,15.928507538860009,-60.52244430029767 -581,5.0,6.0,-3.590210423980992,11.02611441072814 -581,5.0,7.0,-6.289308176100628,22.0125786163522 -581,5.0,8.0,0.0,4.915840805411357 -581,5.0,9.0,0.0,1.8561002591115965 -581,5.0,27.0,-4.362844058012917,15.463571542897856 -581,6.0,4.0,-2.954020035961983,7.449267916773697 -581,6.0,5.0,-3.590210423980992,11.02611441072814 -581,6.0,6.0,6.544230459942975,-18.45668232750184 -581,7.0,5.0,-6.289308176100628,22.0125786163522 -581,7.0,7.0,7.733287237496075,-26.527493274828448 -581,7.0,27.0,-1.4439790613954469,4.540814658476248 -581,8.0,5.0,0.0,4.915840805411357 -581,8.0,8.0,0.0,-18.706293706293707 -581,8.0,9.0,0.0,9.090909090909092 -581,8.0,10.0,0.0,4.807692307692308 -581,9.0,5.0,0.0,1.8561002591115965 -581,9.0,8.0,0.0,9.090909090909092 -581,9.0,9.0,13.462042814524237,-41.3837606675224 -581,9.0,16.0,-3.956039125715353,10.317447719844054 -581,9.0,19.0,-1.7848303152666305,3.98535828943083 -581,9.0,20.0,-5.101853820159654,10.98071411292983 -581,9.0,21.0,-2.619319553382597,5.400770303329455 -581,10.0,8.0,0.0,4.807692307692308 -581,10.0,10.0,0.0,-4.807692307692308 -581,11.0,3.0,0.0,4.191255364806866 -581,11.0,11.0,6.573961583776156,-24.424167659260668 -581,11.0,12.0,0.0,7.142857142857143 -581,11.0,13.0,-1.5265676088395577,3.1734252729654173 -581,11.0,14.0,-3.0953961826564296,6.097275864326261 -581,11.0,15.0,-1.9519977922801688,4.104359379111847 -581,12.0,11.0,0.0,7.142857142857143 -581,12.0,12.0,0.0,-7.142857142857143 -581,13.0,11.0,-1.5265676088395577,3.1734252729654173 -581,13.0,13.0,4.01751987283902,-5.424299332335067 -581,13.0,14.0,-2.4909522639994623,2.250874059369649 -581,14.0,11.0,-3.0953961826564296,6.097275864326261 -581,14.0,13.0,-2.4909522639994623,2.250874059369649 -581,14.0,14.0,9.365498545964757,-16.01163373210796 -581,14.0,17.0,-1.8108011504072024,3.687418931630696 -581,14.0,22.0,-1.9683489489016612,3.976064876781356 -581,15.0,11.0,-1.9519977922801688,4.104359379111847 -581,15.0,15.0,3.271064728633931,-8.94513365126506 -581,15.0,16.0,-1.3190669363537617,4.8407742721532125 -581,16.0,9.0,-3.956039125715353,10.317447719844054 -581,16.0,15.0,-1.3190669363537617,4.8407742721532125 -581,16.0,16.0,5.275106062069114,-15.158221991997266 -581,17.0,14.0,-1.8108011504072024,3.687418931630696 -581,17.0,17.0,4.886487584415919,-9.906177730909668 -581,17.0,18.0,-3.0756864340087167,6.218758799278971 -581,18.0,17.0,-3.0756864340087167,6.218758799278971 -581,18.0,18.0,8.958039375185187,-17.98346468163191 -581,18.0,19.0,-5.88235294117647,11.76470588235294 -581,19.0,9.0,-1.7848303152666305,3.98535828943083 -581,19.0,18.0,-5.88235294117647,11.76470588235294 -581,19.0,19.0,7.6671832564431,-15.75006417178377 -581,20.0,9.0,-5.101853820159654,10.98071411292983 -581,20.0,20.0,21.876495189895888,-45.10843276170355 -581,20.0,21.0,-16.774641369736234,34.127718648773715 -581,21.0,9.0,-2.619319553382597,5.400770303329455 -581,21.0,20.0,-16.774641369736234,34.127718648773715 -581,21.0,21.0,21.93449907537439,-43.48289181517921 -581,21.0,23.0,-2.5405381522555563,3.95440286307604 -581,22.0,14.0,-1.9683489489016612,3.976064876781356 -581,22.0,22.0,3.429754555384988,-6.965303617315433 -581,22.0,23.0,-1.4614056064833263,2.989238740534077 -581,23.0,21.0,-2.5405381522555563,3.95440286307604 -581,23.0,22.0,-1.4614056064833263,2.989238740534077 -581,23.0,23.0,5.311836702613133,-9.188263657315172 -581,23.0,24.0,-1.3098929438742493,2.287622053705056 -581,24.0,23.0,-1.3098929438742493,2.287622053705056 -581,24.0,24.0,4.495715080321987,-7.864978761969621 -581,24.0,25.0,-1.2165301194494855,1.8171440463475024 -581,24.0,26.0,-1.9692920169982515,3.760212661917064 -581,25.0,24.0,-1.2165301194494855,1.8171440463475024 -581,25.0,25.0,1.2165301194494855,-1.8171440463475024 -581,26.0,24.0,-1.9692920169982515,3.760212661917064 -581,26.0,26.0,3.652281470778589,-9.46044252232512 -581,26.0,27.0,0.0,2.608731947574922 -581,26.0,28.0,-0.99553355095268,1.881005840357816 -581,26.0,29.0,-0.6874559028276572,1.293971494797717 -581,27.0,5.0,-4.362844058012917,15.463571542897856 -581,27.0,7.0,-1.4439790613954469,4.540814658476248 -581,27.0,26.0,0.0,2.608731947574922 -581,27.0,27.0,5.806823119408364,-22.67145722159613 -581,28.0,26.0,-0.99553355095268,1.881005840357816 -581,28.0,28.0,1.9075867579849564,-3.604364401207048 -581,28.0,29.0,-0.9120532070322764,1.7233585608492326 -581,29.0,26.0,-0.6874559028276572,1.293971494797717 -581,29.0,28.0,-0.9120532070322764,1.7233585608492326 -581,29.0,29.0,1.5995091098599337,-3.0173300556469496 -582,0.0,0.0,6.765516048652632,-21.23160167089863 -582,0.0,1.0,-5.224646179885656,15.646726840803398 -582,0.0,2.0,-1.5408698687669766,5.631674830095234 -582,1.0,0.0,-5.224646179885656,15.646726840803398 -582,1.0,1.0,9.75228216552403,-30.648662892676068 -582,1.0,3.0,-1.7055303166990268,5.1973792282565086 -582,1.0,4.0,-1.1359607881738778,4.772479328281356 -582,1.0,5.0,-1.6861448807654689,5.116477495334806 -582,2.0,0.0,-1.5408698687669766,5.631674830095234 -582,2.0,2.0,9.736318911079088,-29.13794745915803 -582,2.0,3.0,-8.19544904231211,23.5308726290628 -582,3.0,1.0,-1.7055303166990268,5.1973792282565086 -582,3.0,2.0,-8.19544904231211,23.5308726290628 -582,3.0,3.0,9.900979359011137,-33.202706969773025 -582,3.0,11.0,0.0,4.191255364806866 -582,4.0,1.0,-1.1359607881738778,4.772479328281356 -582,4.0,4.0,4.089980824135861,-12.190647245055052 -582,4.0,6.0,-2.954020035961983,7.449267916773697 -582,5.0,1.0,-1.6861448807654689,5.116477495334806 -582,5.0,5.0,15.928507538860009,-60.52244430029767 -582,5.0,6.0,-3.590210423980992,11.02611441072814 -582,5.0,7.0,-6.289308176100628,22.0125786163522 -582,5.0,8.0,0.0,4.915840805411357 -582,5.0,9.0,0.0,1.8561002591115965 -582,5.0,27.0,-4.362844058012917,15.463571542897856 -582,6.0,4.0,-2.954020035961983,7.449267916773697 -582,6.0,5.0,-3.590210423980992,11.02611441072814 -582,6.0,6.0,6.544230459942975,-18.45668232750184 -582,7.0,5.0,-6.289308176100628,22.0125786163522 -582,7.0,7.0,7.733287237496075,-26.527493274828448 -582,7.0,27.0,-1.4439790613954469,4.540814658476248 -582,8.0,5.0,0.0,4.915840805411357 -582,8.0,8.0,0.0,-18.706293706293707 -582,8.0,9.0,0.0,9.090909090909092 -582,8.0,10.0,0.0,4.807692307692308 -582,9.0,5.0,0.0,1.8561002591115965 -582,9.0,8.0,0.0,9.090909090909092 -582,9.0,9.0,13.462042814524237,-41.3837606675224 -582,9.0,16.0,-3.956039125715353,10.317447719844054 -582,9.0,19.0,-1.7848303152666305,3.98535828943083 -582,9.0,20.0,-5.101853820159654,10.98071411292983 -582,9.0,21.0,-2.619319553382597,5.400770303329455 -582,10.0,8.0,0.0,4.807692307692308 -582,10.0,10.0,0.0,-4.807692307692308 -582,11.0,3.0,0.0,4.191255364806866 -582,11.0,11.0,3.478565401119727,-18.326891794934408 -582,11.0,12.0,0.0,7.142857142857143 -582,11.0,13.0,-1.5265676088395577,3.1734252729654173 -582,11.0,15.0,-1.9519977922801688,4.104359379111847 -582,12.0,11.0,0.0,7.142857142857143 -582,12.0,12.0,0.0,-7.142857142857143 -582,13.0,11.0,-1.5265676088395577,3.1734252729654173 -582,13.0,13.0,4.01751987283902,-5.424299332335067 -582,13.0,14.0,-2.4909522639994623,2.250874059369649 -582,14.0,13.0,-2.4909522639994623,2.250874059369649 -582,14.0,14.0,6.270102363308326,-9.9143578677817 -582,14.0,17.0,-1.8108011504072024,3.687418931630696 -582,14.0,22.0,-1.9683489489016612,3.976064876781356 -582,15.0,11.0,-1.9519977922801688,4.104359379111847 -582,15.0,15.0,3.271064728633931,-8.94513365126506 -582,15.0,16.0,-1.3190669363537617,4.8407742721532125 -582,16.0,9.0,-3.956039125715353,10.317447719844054 -582,16.0,15.0,-1.3190669363537617,4.8407742721532125 -582,16.0,16.0,5.275106062069114,-15.158221991997266 -582,17.0,14.0,-1.8108011504072024,3.687418931630696 -582,17.0,17.0,4.886487584415919,-9.906177730909668 -582,17.0,18.0,-3.0756864340087167,6.218758799278971 -582,18.0,17.0,-3.0756864340087167,6.218758799278971 -582,18.0,18.0,8.958039375185187,-17.98346468163191 -582,18.0,19.0,-5.88235294117647,11.76470588235294 -582,19.0,9.0,-1.7848303152666305,3.98535828943083 -582,19.0,18.0,-5.88235294117647,11.76470588235294 -582,19.0,19.0,7.6671832564431,-15.75006417178377 -582,20.0,9.0,-5.101853820159654,10.98071411292983 -582,20.0,20.0,21.876495189895888,-45.10843276170355 -582,20.0,21.0,-16.774641369736234,34.127718648773715 -582,21.0,9.0,-2.619319553382597,5.400770303329455 -582,21.0,20.0,-16.774641369736234,34.127718648773715 -582,21.0,21.0,21.93449907537439,-43.48289181517921 -582,21.0,23.0,-2.5405381522555563,3.95440286307604 -582,22.0,14.0,-1.9683489489016612,3.976064876781356 -582,22.0,22.0,3.429754555384988,-6.965303617315433 -582,22.0,23.0,-1.4614056064833263,2.989238740534077 -582,23.0,21.0,-2.5405381522555563,3.95440286307604 -582,23.0,22.0,-1.4614056064833263,2.989238740534077 -582,23.0,23.0,5.311836702613133,-9.188263657315172 -582,23.0,24.0,-1.3098929438742493,2.287622053705056 -582,24.0,23.0,-1.3098929438742493,2.287622053705056 -582,24.0,24.0,4.495715080321987,-7.864978761969621 -582,24.0,25.0,-1.2165301194494855,1.8171440463475024 -582,24.0,26.0,-1.9692920169982515,3.760212661917064 -582,25.0,24.0,-1.2165301194494855,1.8171440463475024 -582,25.0,25.0,1.2165301194494855,-1.8171440463475024 -582,26.0,24.0,-1.9692920169982515,3.760212661917064 -582,26.0,26.0,3.652281470778589,-9.46044252232512 -582,26.0,27.0,0.0,2.608731947574922 -582,26.0,28.0,-0.99553355095268,1.881005840357816 -582,26.0,29.0,-0.6874559028276572,1.293971494797717 -582,27.0,5.0,-4.362844058012917,15.463571542897856 -582,27.0,7.0,-1.4439790613954469,4.540814658476248 -582,27.0,26.0,0.0,2.608731947574922 -582,27.0,27.0,5.806823119408364,-22.67145722159613 -582,28.0,26.0,-0.99553355095268,1.881005840357816 -582,28.0,28.0,1.9075867579849564,-3.604364401207048 -582,28.0,29.0,-0.9120532070322764,1.7233585608492326 -582,29.0,26.0,-0.6874559028276572,1.293971494797717 -582,29.0,28.0,-0.9120532070322764,1.7233585608492326 -582,29.0,29.0,1.5995091098599337,-3.0173300556469496 -583,0.0,0.0,6.765516048652632,-21.23160167089863 -583,0.0,1.0,-5.224646179885656,15.646726840803398 -583,0.0,2.0,-1.5408698687669766,5.631674830095234 -583,1.0,0.0,-5.224646179885656,15.646726840803398 -583,1.0,1.0,8.046751848825002,-25.46968366441956 -583,1.0,4.0,-1.1359607881738778,4.772479328281356 -583,1.0,5.0,-1.6861448807654689,5.116477495334806 -583,2.0,0.0,-1.5408698687669766,5.631674830095234 -583,2.0,2.0,9.736318911079088,-29.13794745915803 -583,2.0,3.0,-8.19544904231211,23.5308726290628 -583,3.0,2.0,-8.19544904231211,23.5308726290628 -583,3.0,3.0,14.608572772486664,-50.33043130699775 -583,3.0,5.0,-6.413123730174556,22.31120356548123 -583,3.0,11.0,0.0,4.191255364806866 -583,4.0,1.0,-1.1359607881738778,4.772479328281356 -583,4.0,4.0,1.1359607881738778,-4.751579328281355 -583,5.0,1.0,-1.6861448807654689,5.116477495334806 -583,5.0,3.0,-6.413123730174556,22.31120356548123 -583,5.0,5.0,22.341631269034565,-80.91366772221689 -583,5.0,6.0,-3.590210423980992,11.02611441072814 -583,5.0,7.0,-6.289308176100628,22.0125786163522 -583,5.0,8.0,0.0,4.915840805411357 -583,5.0,27.0,-4.362844058012917,15.463571542897856 -583,6.0,5.0,-3.590210423980992,11.02611441072814 -583,6.0,6.0,3.590210423980992,-11.01761441072814 -583,7.0,5.0,-6.289308176100628,22.0125786163522 -583,7.0,7.0,7.733287237496075,-26.527493274828448 -583,7.0,27.0,-1.4439790613954469,4.540814658476248 -583,8.0,5.0,0.0,4.915840805411357 -583,8.0,8.0,0.0,-18.706293706293707 -583,8.0,9.0,0.0,9.090909090909092 -583,8.0,10.0,0.0,4.807692307692308 -583,9.0,8.0,0.0,9.090909090909092 -583,9.0,9.0,13.462042814524237,-39.58519951644326 -583,9.0,16.0,-3.956039125715353,10.317447719844054 -583,9.0,19.0,-1.7848303152666305,3.98535828943083 -583,9.0,20.0,-5.101853820159654,10.98071411292983 -583,9.0,21.0,-2.619319553382597,5.400770303329455 -583,10.0,8.0,0.0,4.807692307692308 -583,10.0,10.0,0.0,-4.807692307692308 -583,11.0,3.0,0.0,4.191255364806866 -583,11.0,11.0,6.573961583776156,-24.424167659260668 -583,11.0,12.0,0.0,7.142857142857143 -583,11.0,13.0,-1.5265676088395577,3.1734252729654173 -583,11.0,14.0,-3.0953961826564296,6.097275864326261 -583,11.0,15.0,-1.9519977922801688,4.104359379111847 -583,12.0,11.0,0.0,7.142857142857143 -583,12.0,12.0,0.0,-7.142857142857143 -583,13.0,11.0,-1.5265676088395577,3.1734252729654173 -583,13.0,13.0,4.01751987283902,-5.424299332335067 -583,13.0,14.0,-2.4909522639994623,2.250874059369649 -583,14.0,11.0,-3.0953961826564296,6.097275864326261 -583,14.0,13.0,-2.4909522639994623,2.250874059369649 -583,14.0,14.0,7.554697395557554,-12.324214800477266 -583,14.0,22.0,-1.9683489489016612,3.976064876781356 -583,15.0,11.0,-1.9519977922801688,4.104359379111847 -583,15.0,15.0,3.271064728633931,-8.94513365126506 -583,15.0,16.0,-1.3190669363537617,4.8407742721532125 -583,16.0,9.0,-3.956039125715353,10.317447719844054 -583,16.0,15.0,-1.3190669363537617,4.8407742721532125 -583,16.0,16.0,5.275106062069114,-15.158221991997266 -583,17.0,17.0,3.0756864340087167,-6.218758799278971 -583,17.0,18.0,-3.0756864340087167,6.218758799278971 -583,18.0,17.0,-3.0756864340087167,6.218758799278971 -583,18.0,18.0,8.958039375185187,-17.98346468163191 -583,18.0,19.0,-5.88235294117647,11.76470588235294 -583,19.0,9.0,-1.7848303152666305,3.98535828943083 -583,19.0,18.0,-5.88235294117647,11.76470588235294 -583,19.0,19.0,7.6671832564431,-15.75006417178377 -583,20.0,9.0,-5.101853820159654,10.98071411292983 -583,20.0,20.0,21.876495189895888,-45.10843276170355 -583,20.0,21.0,-16.774641369736234,34.127718648773715 -583,21.0,9.0,-2.619319553382597,5.400770303329455 -583,21.0,20.0,-16.774641369736234,34.127718648773715 -583,21.0,21.0,21.93449907537439,-43.48289181517921 -583,21.0,23.0,-2.5405381522555563,3.95440286307604 -583,22.0,14.0,-1.9683489489016612,3.976064876781356 -583,22.0,22.0,3.429754555384988,-6.965303617315433 -583,22.0,23.0,-1.4614056064833263,2.989238740534077 -583,23.0,21.0,-2.5405381522555563,3.95440286307604 -583,23.0,22.0,-1.4614056064833263,2.989238740534077 -583,23.0,23.0,5.311836702613133,-9.188263657315172 -583,23.0,24.0,-1.3098929438742493,2.287622053705056 -583,24.0,23.0,-1.3098929438742493,2.287622053705056 -583,24.0,24.0,4.495715080321987,-7.864978761969621 -583,24.0,25.0,-1.2165301194494855,1.8171440463475024 -583,24.0,26.0,-1.9692920169982515,3.760212661917064 -583,25.0,24.0,-1.2165301194494855,1.8171440463475024 -583,25.0,25.0,1.2165301194494855,-1.8171440463475024 -583,26.0,24.0,-1.9692920169982515,3.760212661917064 -583,26.0,26.0,3.652281470778589,-9.46044252232512 -583,26.0,27.0,0.0,2.608731947574922 -583,26.0,28.0,-0.99553355095268,1.881005840357816 -583,26.0,29.0,-0.6874559028276572,1.293971494797717 -583,27.0,5.0,-4.362844058012917,15.463571542897856 -583,27.0,7.0,-1.4439790613954469,4.540814658476248 -583,27.0,26.0,0.0,2.608731947574922 -583,27.0,27.0,5.806823119408364,-22.67145722159613 -583,28.0,26.0,-0.99553355095268,1.881005840357816 -583,28.0,28.0,1.9075867579849564,-3.604364401207048 -583,28.0,29.0,-0.9120532070322764,1.7233585608492326 -583,29.0,26.0,-0.6874559028276572,1.293971494797717 -583,29.0,28.0,-0.9120532070322764,1.7233585608492326 -583,29.0,29.0,1.5995091098599337,-3.0173300556469496 -584,0.0,0.0,6.765516048652632,-21.23160167089863 -584,0.0,1.0,-5.224646179885656,15.646726840803398 -584,0.0,2.0,-1.5408698687669766,5.631674830095234 -584,1.0,0.0,-5.224646179885656,15.646726840803398 -584,1.0,1.0,8.61632137735015,-25.897083564394716 -584,1.0,3.0,-1.7055303166990268,5.1973792282565086 -584,1.0,5.0,-1.6861448807654689,5.116477495334806 -584,2.0,0.0,-1.5408698687669766,5.631674830095234 -584,2.0,2.0,9.736318911079088,-29.13794745915803 -584,2.0,3.0,-8.19544904231211,23.5308726290628 -584,3.0,1.0,-1.7055303166990268,5.1973792282565086 -584,3.0,2.0,-8.19544904231211,23.5308726290628 -584,3.0,3.0,16.314103089185693,-55.509410535254254 -584,3.0,5.0,-6.413123730174556,22.31120356548123 -584,3.0,11.0,0.0,4.191255364806866 -584,4.0,4.0,2.954020035961983,-7.439067916773697 -584,4.0,6.0,-2.954020035961983,7.449267916773697 -584,5.0,1.0,-1.6861448807654689,5.116477495334806 -584,5.0,3.0,-6.413123730174556,22.31120356548123 -584,5.0,5.0,22.341631269034565,-80.91366772221689 -584,5.0,6.0,-3.590210423980992,11.02611441072814 -584,5.0,7.0,-6.289308176100628,22.0125786163522 -584,5.0,8.0,0.0,4.915840805411357 -584,5.0,27.0,-4.362844058012917,15.463571542897856 -584,6.0,4.0,-2.954020035961983,7.449267916773697 -584,6.0,5.0,-3.590210423980992,11.02611441072814 -584,6.0,6.0,6.544230459942975,-18.45668232750184 -584,7.0,5.0,-6.289308176100628,22.0125786163522 -584,7.0,7.0,7.733287237496075,-26.527493274828448 -584,7.0,27.0,-1.4439790613954469,4.540814658476248 -584,8.0,5.0,0.0,4.915840805411357 -584,8.0,8.0,0.0,-18.706293706293707 -584,8.0,9.0,0.0,9.090909090909092 -584,8.0,10.0,0.0,4.807692307692308 -584,9.0,8.0,0.0,9.090909090909092 -584,9.0,9.0,8.36018899436458,-28.604485403513436 -584,9.0,16.0,-3.956039125715353,10.317447719844054 -584,9.0,19.0,-1.7848303152666305,3.98535828943083 -584,9.0,21.0,-2.619319553382597,5.400770303329455 -584,10.0,8.0,0.0,4.807692307692308 -584,10.0,10.0,0.0,-4.807692307692308 -584,11.0,3.0,0.0,4.191255364806866 -584,11.0,11.0,6.573961583776156,-24.424167659260668 -584,11.0,12.0,0.0,7.142857142857143 -584,11.0,13.0,-1.5265676088395577,3.1734252729654173 -584,11.0,14.0,-3.0953961826564296,6.097275864326261 -584,11.0,15.0,-1.9519977922801688,4.104359379111847 -584,12.0,11.0,0.0,7.142857142857143 -584,12.0,12.0,0.0,-7.142857142857143 -584,13.0,11.0,-1.5265676088395577,3.1734252729654173 -584,13.0,13.0,4.01751987283902,-5.424299332335067 -584,13.0,14.0,-2.4909522639994623,2.250874059369649 -584,14.0,11.0,-3.0953961826564296,6.097275864326261 -584,14.0,13.0,-2.4909522639994623,2.250874059369649 -584,14.0,14.0,9.365498545964757,-16.01163373210796 -584,14.0,17.0,-1.8108011504072024,3.687418931630696 -584,14.0,22.0,-1.9683489489016612,3.976064876781356 -584,15.0,11.0,-1.9519977922801688,4.104359379111847 -584,15.0,15.0,3.271064728633931,-8.94513365126506 -584,15.0,16.0,-1.3190669363537617,4.8407742721532125 -584,16.0,9.0,-3.956039125715353,10.317447719844054 -584,16.0,15.0,-1.3190669363537617,4.8407742721532125 -584,16.0,16.0,5.275106062069114,-15.158221991997266 -584,17.0,14.0,-1.8108011504072024,3.687418931630696 -584,17.0,17.0,1.8108011504072024,-3.687418931630696 -584,18.0,18.0,5.88235294117647,-11.76470588235294 -584,18.0,19.0,-5.88235294117647,11.76470588235294 -584,19.0,9.0,-1.7848303152666305,3.98535828943083 -584,19.0,18.0,-5.88235294117647,11.76470588235294 -584,19.0,19.0,7.6671832564431,-15.75006417178377 -584,20.0,20.0,16.774641369736234,-34.127718648773715 -584,20.0,21.0,-16.774641369736234,34.127718648773715 -584,21.0,9.0,-2.619319553382597,5.400770303329455 -584,21.0,20.0,-16.774641369736234,34.127718648773715 -584,21.0,21.0,21.93449907537439,-43.48289181517921 -584,21.0,23.0,-2.5405381522555563,3.95440286307604 -584,22.0,14.0,-1.9683489489016612,3.976064876781356 -584,22.0,22.0,3.429754555384988,-6.965303617315433 -584,22.0,23.0,-1.4614056064833263,2.989238740534077 -584,23.0,21.0,-2.5405381522555563,3.95440286307604 -584,23.0,22.0,-1.4614056064833263,2.989238740534077 -584,23.0,23.0,5.311836702613133,-9.188263657315172 -584,23.0,24.0,-1.3098929438742493,2.287622053705056 -584,24.0,23.0,-1.3098929438742493,2.287622053705056 -584,24.0,24.0,4.495715080321987,-7.864978761969621 -584,24.0,25.0,-1.2165301194494855,1.8171440463475024 -584,24.0,26.0,-1.9692920169982515,3.760212661917064 -584,25.0,24.0,-1.2165301194494855,1.8171440463475024 -584,25.0,25.0,1.2165301194494855,-1.8171440463475024 -584,26.0,24.0,-1.9692920169982515,3.760212661917064 -584,26.0,26.0,3.652281470778589,-9.46044252232512 -584,26.0,27.0,0.0,2.608731947574922 -584,26.0,28.0,-0.99553355095268,1.881005840357816 -584,26.0,29.0,-0.6874559028276572,1.293971494797717 -584,27.0,5.0,-4.362844058012917,15.463571542897856 -584,27.0,7.0,-1.4439790613954469,4.540814658476248 -584,27.0,26.0,0.0,2.608731947574922 -584,27.0,27.0,5.806823119408364,-22.67145722159613 -584,28.0,26.0,-0.99553355095268,1.881005840357816 -584,28.0,28.0,1.9075867579849564,-3.604364401207048 -584,28.0,29.0,-0.9120532070322764,1.7233585608492326 -584,29.0,26.0,-0.6874559028276572,1.293971494797717 -584,29.0,28.0,-0.9120532070322764,1.7233585608492326 -584,29.0,29.0,1.5995091098599337,-3.0173300556469496 -585,0.0,0.0,6.765516048652632,-21.23160167089863 -585,0.0,1.0,-5.224646179885656,15.646726840803398 -585,0.0,2.0,-1.5408698687669766,5.631674830095234 -585,1.0,0.0,-5.224646179885656,15.646726840803398 -585,1.0,1.0,9.75228216552403,-30.648662892676068 -585,1.0,3.0,-1.7055303166990268,5.1973792282565086 -585,1.0,4.0,-1.1359607881738778,4.772479328281356 -585,1.0,5.0,-1.6861448807654689,5.116477495334806 -585,2.0,0.0,-1.5408698687669766,5.631674830095234 -585,2.0,2.0,9.736318911079088,-29.13794745915803 -585,2.0,3.0,-8.19544904231211,23.5308726290628 -585,3.0,1.0,-1.7055303166990268,5.1973792282565086 -585,3.0,2.0,-8.19544904231211,23.5308726290628 -585,3.0,3.0,16.314103089185693,-55.509410535254254 -585,3.0,5.0,-6.413123730174556,22.31120356548123 -585,3.0,11.0,0.0,4.191255364806866 -585,4.0,1.0,-1.1359607881738778,4.772479328281356 -585,4.0,4.0,4.089980824135861,-12.190647245055052 -585,4.0,6.0,-2.954020035961983,7.449267916773697 -585,5.0,1.0,-1.6861448807654689,5.116477495334806 -585,5.0,3.0,-6.413123730174556,22.31120356548123 -585,5.0,5.0,22.341631269034565,-82.8291478657789 -585,5.0,6.0,-3.590210423980992,11.02611441072814 -585,5.0,7.0,-6.289308176100628,22.0125786163522 -585,5.0,8.0,0.0,4.915840805411357 -585,5.0,9.0,0.0,1.8561002591115965 -585,5.0,27.0,-4.362844058012917,15.463571542897856 -585,6.0,4.0,-2.954020035961983,7.449267916773697 -585,6.0,5.0,-3.590210423980992,11.02611441072814 -585,6.0,6.0,6.544230459942975,-18.45668232750184 -585,7.0,5.0,-6.289308176100628,22.0125786163522 -585,7.0,7.0,7.733287237496075,-26.527493274828448 -585,7.0,27.0,-1.4439790613954469,4.540814658476248 -585,8.0,5.0,0.0,4.915840805411357 -585,8.0,8.0,0.0,-18.706293706293707 -585,8.0,9.0,0.0,9.090909090909092 -585,8.0,10.0,0.0,4.807692307692308 -585,9.0,5.0,0.0,1.8561002591115965 -585,9.0,8.0,0.0,9.090909090909092 -585,9.0,9.0,13.462042814524237,-41.3837606675224 -585,9.0,16.0,-3.956039125715353,10.317447719844054 -585,9.0,19.0,-1.7848303152666305,3.98535828943083 -585,9.0,20.0,-5.101853820159654,10.98071411292983 -585,9.0,21.0,-2.619319553382597,5.400770303329455 -585,10.0,8.0,0.0,4.807692307692308 -585,10.0,10.0,0.0,-4.807692307692308 -585,11.0,3.0,0.0,4.191255364806866 -585,11.0,11.0,6.573961583776156,-24.424167659260668 -585,11.0,12.0,0.0,7.142857142857143 -585,11.0,13.0,-1.5265676088395577,3.1734252729654173 -585,11.0,14.0,-3.0953961826564296,6.097275864326261 -585,11.0,15.0,-1.9519977922801688,4.104359379111847 -585,12.0,11.0,0.0,7.142857142857143 -585,12.0,12.0,0.0,-7.142857142857143 -585,13.0,11.0,-1.5265676088395577,3.1734252729654173 -585,13.0,13.0,4.01751987283902,-5.424299332335067 -585,13.0,14.0,-2.4909522639994623,2.250874059369649 -585,14.0,11.0,-3.0953961826564296,6.097275864326261 -585,14.0,13.0,-2.4909522639994623,2.250874059369649 -585,14.0,14.0,9.365498545964757,-16.01163373210796 -585,14.0,17.0,-1.8108011504072024,3.687418931630696 -585,14.0,22.0,-1.9683489489016612,3.976064876781356 -585,15.0,11.0,-1.9519977922801688,4.104359379111847 -585,15.0,15.0,3.271064728633931,-8.94513365126506 -585,15.0,16.0,-1.3190669363537617,4.8407742721532125 -585,16.0,9.0,-3.956039125715353,10.317447719844054 -585,16.0,15.0,-1.3190669363537617,4.8407742721532125 -585,16.0,16.0,5.275106062069114,-15.158221991997266 -585,17.0,14.0,-1.8108011504072024,3.687418931630696 -585,17.0,17.0,4.886487584415919,-9.906177730909668 -585,17.0,18.0,-3.0756864340087167,6.218758799278971 -585,18.0,17.0,-3.0756864340087167,6.218758799278971 -585,18.0,18.0,3.0756864340087167,-6.218758799278971 -585,19.0,9.0,-1.7848303152666305,3.98535828943083 -585,19.0,19.0,1.7848303152666305,-3.98535828943083 -585,20.0,9.0,-5.101853820159654,10.98071411292983 -585,20.0,20.0,21.876495189895888,-45.10843276170355 -585,20.0,21.0,-16.774641369736234,34.127718648773715 -585,21.0,9.0,-2.619319553382597,5.400770303329455 -585,21.0,20.0,-16.774641369736234,34.127718648773715 -585,21.0,21.0,21.93449907537439,-43.48289181517921 -585,21.0,23.0,-2.5405381522555563,3.95440286307604 -585,22.0,14.0,-1.9683489489016612,3.976064876781356 -585,22.0,22.0,3.429754555384988,-6.965303617315433 -585,22.0,23.0,-1.4614056064833263,2.989238740534077 -585,23.0,21.0,-2.5405381522555563,3.95440286307604 -585,23.0,22.0,-1.4614056064833263,2.989238740534077 -585,23.0,23.0,5.311836702613133,-9.188263657315172 -585,23.0,24.0,-1.3098929438742493,2.287622053705056 -585,24.0,23.0,-1.3098929438742493,2.287622053705056 -585,24.0,24.0,4.495715080321987,-7.864978761969621 -585,24.0,25.0,-1.2165301194494855,1.8171440463475024 -585,24.0,26.0,-1.9692920169982515,3.760212661917064 -585,25.0,24.0,-1.2165301194494855,1.8171440463475024 -585,25.0,25.0,1.2165301194494855,-1.8171440463475024 -585,26.0,24.0,-1.9692920169982515,3.760212661917064 -585,26.0,26.0,3.652281470778589,-9.46044252232512 -585,26.0,27.0,0.0,2.608731947574922 -585,26.0,28.0,-0.99553355095268,1.881005840357816 -585,26.0,29.0,-0.6874559028276572,1.293971494797717 -585,27.0,5.0,-4.362844058012917,15.463571542897856 -585,27.0,7.0,-1.4439790613954469,4.540814658476248 -585,27.0,26.0,0.0,2.608731947574922 -585,27.0,27.0,5.806823119408364,-22.67145722159613 -585,28.0,26.0,-0.99553355095268,1.881005840357816 -585,28.0,28.0,1.9075867579849564,-3.604364401207048 -585,28.0,29.0,-0.9120532070322764,1.7233585608492326 -585,29.0,26.0,-0.6874559028276572,1.293971494797717 -585,29.0,28.0,-0.9120532070322764,1.7233585608492326 -585,29.0,29.0,1.5995091098599337,-3.0173300556469496 -586,0.0,0.0,6.765516048652632,-21.23160167089863 -586,0.0,1.0,-5.224646179885656,15.646726840803398 -586,0.0,2.0,-1.5408698687669766,5.631674830095234 -586,1.0,0.0,-5.224646179885656,15.646726840803398 -586,1.0,1.0,8.066137284758561,-25.55088539734126 -586,1.0,3.0,-1.7055303166990268,5.1973792282565086 -586,1.0,4.0,-1.1359607881738778,4.772479328281356 -586,2.0,0.0,-1.5408698687669766,5.631674830095234 -586,2.0,2.0,9.736318911079088,-29.13794745915803 -586,2.0,3.0,-8.19544904231211,23.5308726290628 -586,3.0,1.0,-1.7055303166990268,5.1973792282565086 -586,3.0,2.0,-8.19544904231211,23.5308726290628 -586,3.0,3.0,9.900979359011137,-33.202706969773025 -586,3.0,11.0,0.0,4.191255364806866 -586,4.0,1.0,-1.1359607881738778,4.772479328281356 -586,4.0,4.0,4.089980824135861,-12.190647245055052 -586,4.0,6.0,-2.954020035961983,7.449267916773697 -586,5.0,5.0,14.24236265809454,-55.42466680496287 -586,5.0,6.0,-3.590210423980992,11.02611441072814 -586,5.0,7.0,-6.289308176100628,22.0125786163522 -586,5.0,8.0,0.0,4.915840805411357 -586,5.0,9.0,0.0,1.8561002591115965 -586,5.0,27.0,-4.362844058012917,15.463571542897856 -586,6.0,4.0,-2.954020035961983,7.449267916773697 -586,6.0,5.0,-3.590210423980992,11.02611441072814 -586,6.0,6.0,6.544230459942975,-18.45668232750184 -586,7.0,5.0,-6.289308176100628,22.0125786163522 -586,7.0,7.0,7.733287237496075,-26.527493274828448 -586,7.0,27.0,-1.4439790613954469,4.540814658476248 -586,8.0,5.0,0.0,4.915840805411357 -586,8.0,8.0,0.0,-18.706293706293707 -586,8.0,9.0,0.0,9.090909090909092 -586,8.0,10.0,0.0,4.807692307692308 -586,9.0,5.0,0.0,1.8561002591115965 -586,9.0,8.0,0.0,9.090909090909092 -586,9.0,9.0,13.462042814524237,-41.3837606675224 -586,9.0,16.0,-3.956039125715353,10.317447719844054 -586,9.0,19.0,-1.7848303152666305,3.98535828943083 -586,9.0,20.0,-5.101853820159654,10.98071411292983 -586,9.0,21.0,-2.619319553382597,5.400770303329455 -586,10.0,8.0,0.0,4.807692307692308 -586,10.0,10.0,0.0,-4.807692307692308 -586,11.0,3.0,0.0,4.191255364806866 -586,11.0,11.0,6.573961583776156,-24.424167659260668 -586,11.0,12.0,0.0,7.142857142857143 -586,11.0,13.0,-1.5265676088395577,3.1734252729654173 -586,11.0,14.0,-3.0953961826564296,6.097275864326261 -586,11.0,15.0,-1.9519977922801688,4.104359379111847 -586,12.0,11.0,0.0,7.142857142857143 -586,12.0,12.0,0.0,-7.142857142857143 -586,13.0,11.0,-1.5265676088395577,3.1734252729654173 -586,13.0,13.0,4.01751987283902,-5.424299332335067 -586,13.0,14.0,-2.4909522639994623,2.250874059369649 -586,14.0,11.0,-3.0953961826564296,6.097275864326261 -586,14.0,13.0,-2.4909522639994623,2.250874059369649 -586,14.0,14.0,9.365498545964757,-16.01163373210796 -586,14.0,17.0,-1.8108011504072024,3.687418931630696 -586,14.0,22.0,-1.9683489489016612,3.976064876781356 -586,15.0,11.0,-1.9519977922801688,4.104359379111847 -586,15.0,15.0,3.271064728633931,-8.94513365126506 -586,15.0,16.0,-1.3190669363537617,4.8407742721532125 -586,16.0,9.0,-3.956039125715353,10.317447719844054 -586,16.0,15.0,-1.3190669363537617,4.8407742721532125 -586,16.0,16.0,5.275106062069114,-15.158221991997266 -586,17.0,14.0,-1.8108011504072024,3.687418931630696 -586,17.0,17.0,4.886487584415919,-9.906177730909668 -586,17.0,18.0,-3.0756864340087167,6.218758799278971 -586,18.0,17.0,-3.0756864340087167,6.218758799278971 -586,18.0,18.0,8.958039375185187,-17.98346468163191 -586,18.0,19.0,-5.88235294117647,11.76470588235294 -586,19.0,9.0,-1.7848303152666305,3.98535828943083 -586,19.0,18.0,-5.88235294117647,11.76470588235294 -586,19.0,19.0,7.6671832564431,-15.75006417178377 -586,20.0,9.0,-5.101853820159654,10.98071411292983 -586,20.0,20.0,21.876495189895888,-45.10843276170355 -586,20.0,21.0,-16.774641369736234,34.127718648773715 -586,21.0,9.0,-2.619319553382597,5.400770303329455 -586,21.0,20.0,-16.774641369736234,34.127718648773715 -586,21.0,21.0,21.93449907537439,-43.48289181517921 -586,21.0,23.0,-2.5405381522555563,3.95440286307604 -586,22.0,14.0,-1.9683489489016612,3.976064876781356 -586,22.0,22.0,3.429754555384988,-6.965303617315433 -586,22.0,23.0,-1.4614056064833263,2.989238740534077 -586,23.0,21.0,-2.5405381522555563,3.95440286307604 -586,23.0,22.0,-1.4614056064833263,2.989238740534077 -586,23.0,23.0,5.311836702613133,-9.188263657315172 -586,23.0,24.0,-1.3098929438742493,2.287622053705056 -586,24.0,23.0,-1.3098929438742493,2.287622053705056 -586,24.0,24.0,4.495715080321987,-7.864978761969621 -586,24.0,25.0,-1.2165301194494855,1.8171440463475024 -586,24.0,26.0,-1.9692920169982515,3.760212661917064 -586,25.0,24.0,-1.2165301194494855,1.8171440463475024 -586,25.0,25.0,1.2165301194494855,-1.8171440463475024 -586,26.0,24.0,-1.9692920169982515,3.760212661917064 -586,26.0,26.0,3.652281470778589,-9.46044252232512 -586,26.0,27.0,0.0,2.608731947574922 -586,26.0,28.0,-0.99553355095268,1.881005840357816 -586,26.0,29.0,-0.6874559028276572,1.293971494797717 -586,27.0,5.0,-4.362844058012917,15.463571542897856 -586,27.0,7.0,-1.4439790613954469,4.540814658476248 -586,27.0,26.0,0.0,2.608731947574922 -586,27.0,27.0,5.806823119408364,-22.67145722159613 -586,28.0,26.0,-0.99553355095268,1.881005840357816 -586,28.0,28.0,1.9075867579849564,-3.604364401207048 -586,28.0,29.0,-0.9120532070322764,1.7233585608492326 -586,29.0,26.0,-0.6874559028276572,1.293971494797717 -586,29.0,28.0,-0.9120532070322764,1.7233585608492326 -586,29.0,29.0,1.5995091098599337,-3.0173300556469496 -587,0.0,0.0,6.765516048652632,-21.23160167089863 -587,0.0,1.0,-5.224646179885656,15.646726840803398 -587,0.0,2.0,-1.5408698687669766,5.631674830095234 -587,1.0,0.0,-5.224646179885656,15.646726840803398 -587,1.0,1.0,9.75228216552403,-30.648662892676068 -587,1.0,3.0,-1.7055303166990268,5.1973792282565086 -587,1.0,4.0,-1.1359607881738778,4.772479328281356 -587,1.0,5.0,-1.6861448807654689,5.116477495334806 -587,2.0,0.0,-1.5408698687669766,5.631674830095234 -587,2.0,2.0,9.736318911079088,-29.13794745915803 -587,2.0,3.0,-8.19544904231211,23.5308726290628 -587,3.0,1.0,-1.7055303166990268,5.1973792282565086 -587,3.0,2.0,-8.19544904231211,23.5308726290628 -587,3.0,3.0,16.314103089185693,-55.509410535254254 -587,3.0,5.0,-6.413123730174556,22.31120356548123 -587,3.0,11.0,0.0,4.191255364806866 -587,4.0,1.0,-1.1359607881738778,4.772479328281356 -587,4.0,4.0,4.089980824135861,-12.190647245055052 -587,4.0,6.0,-2.954020035961983,7.449267916773697 -587,5.0,1.0,-1.6861448807654689,5.116477495334806 -587,5.0,3.0,-6.413123730174556,22.31120356548123 -587,5.0,5.0,22.341631269034565,-82.8291478657789 -587,5.0,6.0,-3.590210423980992,11.02611441072814 -587,5.0,7.0,-6.289308176100628,22.0125786163522 -587,5.0,8.0,0.0,4.915840805411357 -587,5.0,9.0,0.0,1.8561002591115965 -587,5.0,27.0,-4.362844058012917,15.463571542897856 -587,6.0,4.0,-2.954020035961983,7.449267916773697 -587,6.0,5.0,-3.590210423980992,11.02611441072814 -587,6.0,6.0,6.544230459942975,-18.45668232750184 -587,7.0,5.0,-6.289308176100628,22.0125786163522 -587,7.0,7.0,7.733287237496075,-26.527493274828448 -587,7.0,27.0,-1.4439790613954469,4.540814658476248 -587,8.0,5.0,0.0,4.915840805411357 -587,8.0,8.0,0.0,-18.706293706293707 -587,8.0,9.0,0.0,9.090909090909092 -587,8.0,10.0,0.0,4.807692307692308 -587,9.0,5.0,0.0,1.8561002591115965 -587,9.0,8.0,0.0,9.090909090909092 -587,9.0,9.0,13.462042814524237,-41.3837606675224 -587,9.0,16.0,-3.956039125715353,10.317447719844054 -587,9.0,19.0,-1.7848303152666305,3.98535828943083 -587,9.0,20.0,-5.101853820159654,10.98071411292983 -587,9.0,21.0,-2.619319553382597,5.400770303329455 -587,10.0,8.0,0.0,4.807692307692308 -587,10.0,10.0,0.0,-4.807692307692308 -587,11.0,3.0,0.0,4.191255364806866 -587,11.0,11.0,6.573961583776156,-24.424167659260668 -587,11.0,12.0,0.0,7.142857142857143 -587,11.0,13.0,-1.5265676088395577,3.1734252729654173 -587,11.0,14.0,-3.0953961826564296,6.097275864326261 -587,11.0,15.0,-1.9519977922801688,4.104359379111847 -587,12.0,11.0,0.0,7.142857142857143 -587,12.0,12.0,0.0,-7.142857142857143 -587,13.0,11.0,-1.5265676088395577,3.1734252729654173 -587,13.0,13.0,4.01751987283902,-5.424299332335067 -587,13.0,14.0,-2.4909522639994623,2.250874059369649 -587,14.0,11.0,-3.0953961826564296,6.097275864326261 -587,14.0,13.0,-2.4909522639994623,2.250874059369649 -587,14.0,14.0,9.365498545964757,-16.01163373210796 -587,14.0,17.0,-1.8108011504072024,3.687418931630696 -587,14.0,22.0,-1.9683489489016612,3.976064876781356 -587,15.0,11.0,-1.9519977922801688,4.104359379111847 -587,15.0,15.0,3.271064728633931,-8.94513365126506 -587,15.0,16.0,-1.3190669363537617,4.8407742721532125 -587,16.0,9.0,-3.956039125715353,10.317447719844054 -587,16.0,15.0,-1.3190669363537617,4.8407742721532125 -587,16.0,16.0,5.275106062069114,-15.158221991997266 -587,17.0,14.0,-1.8108011504072024,3.687418931630696 -587,17.0,17.0,4.886487584415919,-9.906177730909668 -587,17.0,18.0,-3.0756864340087167,6.218758799278971 -587,18.0,17.0,-3.0756864340087167,6.218758799278971 -587,18.0,18.0,8.958039375185187,-17.98346468163191 -587,18.0,19.0,-5.88235294117647,11.76470588235294 -587,19.0,9.0,-1.7848303152666305,3.98535828943083 -587,19.0,18.0,-5.88235294117647,11.76470588235294 -587,19.0,19.0,7.6671832564431,-15.75006417178377 -587,20.0,9.0,-5.101853820159654,10.98071411292983 -587,20.0,20.0,21.876495189895888,-45.10843276170355 -587,20.0,21.0,-16.774641369736234,34.127718648773715 -587,21.0,9.0,-2.619319553382597,5.400770303329455 -587,21.0,20.0,-16.774641369736234,34.127718648773715 -587,21.0,21.0,21.93449907537439,-43.48289181517921 -587,21.0,23.0,-2.5405381522555563,3.95440286307604 -587,22.0,14.0,-1.9683489489016612,3.976064876781356 -587,22.0,22.0,3.429754555384988,-6.965303617315433 -587,22.0,23.0,-1.4614056064833263,2.989238740534077 -587,23.0,21.0,-2.5405381522555563,3.95440286307604 -587,23.0,22.0,-1.4614056064833263,2.989238740534077 -587,23.0,23.0,5.311836702613133,-9.188263657315172 -587,23.0,24.0,-1.3098929438742493,2.287622053705056 -587,24.0,23.0,-1.3098929438742493,2.287622053705056 -587,24.0,24.0,4.495715080321987,-7.864978761969621 -587,24.0,25.0,-1.2165301194494855,1.8171440463475024 -587,24.0,26.0,-1.9692920169982515,3.760212661917064 -587,25.0,24.0,-1.2165301194494855,1.8171440463475024 -587,25.0,25.0,1.2165301194494855,-1.8171440463475024 -587,26.0,24.0,-1.9692920169982515,3.760212661917064 -587,26.0,26.0,3.652281470778589,-9.46044252232512 -587,26.0,27.0,0.0,2.608731947574922 -587,26.0,28.0,-0.99553355095268,1.881005840357816 -587,26.0,29.0,-0.6874559028276572,1.293971494797717 -587,27.0,5.0,-4.362844058012917,15.463571542897856 -587,27.0,7.0,-1.4439790613954469,4.540814658476248 -587,27.0,26.0,0.0,2.608731947574922 -587,27.0,27.0,5.806823119408364,-22.67145722159613 -587,28.0,26.0,-0.99553355095268,1.881005840357816 -587,28.0,28.0,1.9075867579849564,-3.604364401207048 -587,28.0,29.0,-0.9120532070322764,1.7233585608492326 -587,29.0,26.0,-0.6874559028276572,1.293971494797717 -587,29.0,28.0,-0.9120532070322764,1.7233585608492326 -587,29.0,29.0,1.5995091098599337,-3.0173300556469496 -588,0.0,0.0,6.765516048652632,-21.23160167089863 -588,0.0,1.0,-5.224646179885656,15.646726840803398 -588,0.0,2.0,-1.5408698687669766,5.631674830095234 -588,1.0,0.0,-5.224646179885656,15.646726840803398 -588,1.0,1.0,9.75228216552403,-30.648662892676068 -588,1.0,3.0,-1.7055303166990268,5.1973792282565086 -588,1.0,4.0,-1.1359607881738778,4.772479328281356 -588,1.0,5.0,-1.6861448807654689,5.116477495334806 -588,2.0,0.0,-1.5408698687669766,5.631674830095234 -588,2.0,2.0,9.736318911079088,-29.13794745915803 -588,2.0,3.0,-8.19544904231211,23.5308726290628 -588,3.0,1.0,-1.7055303166990268,5.1973792282565086 -588,3.0,2.0,-8.19544904231211,23.5308726290628 -588,3.0,3.0,16.314103089185693,-55.509410535254254 -588,3.0,5.0,-6.413123730174556,22.31120356548123 -588,3.0,11.0,0.0,4.191255364806866 -588,4.0,1.0,-1.1359607881738778,4.772479328281356 -588,4.0,4.0,4.089980824135861,-12.190647245055052 -588,4.0,6.0,-2.954020035961983,7.449267916773697 -588,5.0,1.0,-1.6861448807654689,5.116477495334806 -588,5.0,3.0,-6.413123730174556,22.31120356548123 -588,5.0,5.0,16.052323092933932,-60.8210692494267 -588,5.0,6.0,-3.590210423980992,11.02611441072814 -588,5.0,8.0,0.0,4.915840805411357 -588,5.0,9.0,0.0,1.8561002591115965 -588,5.0,27.0,-4.362844058012917,15.463571542897856 -588,6.0,4.0,-2.954020035961983,7.449267916773697 -588,6.0,5.0,-3.590210423980992,11.02611441072814 -588,6.0,6.0,6.544230459942975,-18.45668232750184 -588,7.0,7.0,1.4439790613954469,-4.519414658476248 -588,7.0,27.0,-1.4439790613954469,4.540814658476248 -588,8.0,5.0,0.0,4.915840805411357 -588,8.0,8.0,0.0,-18.706293706293707 -588,8.0,9.0,0.0,9.090909090909092 -588,8.0,10.0,0.0,4.807692307692308 -588,9.0,5.0,0.0,1.8561002591115965 -588,9.0,8.0,0.0,9.090909090909092 -588,9.0,9.0,13.462042814524237,-41.3837606675224 -588,9.0,16.0,-3.956039125715353,10.317447719844054 -588,9.0,19.0,-1.7848303152666305,3.98535828943083 -588,9.0,20.0,-5.101853820159654,10.98071411292983 -588,9.0,21.0,-2.619319553382597,5.400770303329455 -588,10.0,8.0,0.0,4.807692307692308 -588,10.0,10.0,0.0,-4.807692307692308 -588,11.0,3.0,0.0,4.191255364806866 -588,11.0,11.0,5.047393974936599,-21.25074238629525 -588,11.0,12.0,0.0,7.142857142857143 -588,11.0,14.0,-3.0953961826564296,6.097275864326261 -588,11.0,15.0,-1.9519977922801688,4.104359379111847 -588,12.0,11.0,0.0,7.142857142857143 -588,12.0,12.0,0.0,-7.142857142857143 -588,13.0,13.0,2.4909522639994623,-2.250874059369649 -588,13.0,14.0,-2.4909522639994623,2.250874059369649 -588,14.0,11.0,-3.0953961826564296,6.097275864326261 -588,14.0,13.0,-2.4909522639994623,2.250874059369649 -588,14.0,14.0,9.365498545964757,-16.01163373210796 -588,14.0,17.0,-1.8108011504072024,3.687418931630696 -588,14.0,22.0,-1.9683489489016612,3.976064876781356 -588,15.0,11.0,-1.9519977922801688,4.104359379111847 -588,15.0,15.0,3.271064728633931,-8.94513365126506 -588,15.0,16.0,-1.3190669363537617,4.8407742721532125 -588,16.0,9.0,-3.956039125715353,10.317447719844054 -588,16.0,15.0,-1.3190669363537617,4.8407742721532125 -588,16.0,16.0,5.275106062069114,-15.158221991997266 -588,17.0,14.0,-1.8108011504072024,3.687418931630696 -588,17.0,17.0,4.886487584415919,-9.906177730909668 -588,17.0,18.0,-3.0756864340087167,6.218758799278971 -588,18.0,17.0,-3.0756864340087167,6.218758799278971 -588,18.0,18.0,8.958039375185187,-17.98346468163191 -588,18.0,19.0,-5.88235294117647,11.76470588235294 -588,19.0,9.0,-1.7848303152666305,3.98535828943083 -588,19.0,18.0,-5.88235294117647,11.76470588235294 -588,19.0,19.0,7.6671832564431,-15.75006417178377 -588,20.0,9.0,-5.101853820159654,10.98071411292983 -588,20.0,20.0,21.876495189895888,-45.10843276170355 -588,20.0,21.0,-16.774641369736234,34.127718648773715 -588,21.0,9.0,-2.619319553382597,5.400770303329455 -588,21.0,20.0,-16.774641369736234,34.127718648773715 -588,21.0,21.0,21.93449907537439,-43.48289181517921 -588,21.0,23.0,-2.5405381522555563,3.95440286307604 -588,22.0,14.0,-1.9683489489016612,3.976064876781356 -588,22.0,22.0,3.429754555384988,-6.965303617315433 -588,22.0,23.0,-1.4614056064833263,2.989238740534077 -588,23.0,21.0,-2.5405381522555563,3.95440286307604 -588,23.0,22.0,-1.4614056064833263,2.989238740534077 -588,23.0,23.0,5.311836702613133,-9.188263657315172 -588,23.0,24.0,-1.3098929438742493,2.287622053705056 -588,24.0,23.0,-1.3098929438742493,2.287622053705056 -588,24.0,24.0,4.495715080321987,-7.864978761969621 -588,24.0,25.0,-1.2165301194494855,1.8171440463475024 -588,24.0,26.0,-1.9692920169982515,3.760212661917064 -588,25.0,24.0,-1.2165301194494855,1.8171440463475024 -588,25.0,25.0,1.2165301194494855,-1.8171440463475024 -588,26.0,24.0,-1.9692920169982515,3.760212661917064 -588,26.0,26.0,3.652281470778589,-9.46044252232512 -588,26.0,27.0,0.0,2.608731947574922 -588,26.0,28.0,-0.99553355095268,1.881005840357816 -588,26.0,29.0,-0.6874559028276572,1.293971494797717 -588,27.0,5.0,-4.362844058012917,15.463571542897856 -588,27.0,7.0,-1.4439790613954469,4.540814658476248 -588,27.0,26.0,0.0,2.608731947574922 -588,27.0,27.0,5.806823119408364,-22.67145722159613 -588,28.0,26.0,-0.99553355095268,1.881005840357816 -588,28.0,28.0,1.9075867579849564,-3.604364401207048 -588,28.0,29.0,-0.9120532070322764,1.7233585608492326 -588,29.0,26.0,-0.6874559028276572,1.293971494797717 -588,29.0,28.0,-0.9120532070322764,1.7233585608492326 -588,29.0,29.0,1.5995091098599337,-3.0173300556469496 -589,0.0,0.0,6.765516048652632,-21.23160167089863 -589,0.0,1.0,-5.224646179885656,15.646726840803398 -589,0.0,2.0,-1.5408698687669766,5.631674830095234 -589,1.0,0.0,-5.224646179885656,15.646726840803398 -589,1.0,1.0,9.75228216552403,-30.648662892676068 -589,1.0,3.0,-1.7055303166990268,5.1973792282565086 -589,1.0,4.0,-1.1359607881738778,4.772479328281356 -589,1.0,5.0,-1.6861448807654689,5.116477495334806 -589,2.0,0.0,-1.5408698687669766,5.631674830095234 -589,2.0,2.0,9.736318911079088,-29.13794745915803 -589,2.0,3.0,-8.19544904231211,23.5308726290628 -589,3.0,1.0,-1.7055303166990268,5.1973792282565086 -589,3.0,2.0,-8.19544904231211,23.5308726290628 -589,3.0,3.0,16.314103089185693,-55.509410535254254 -589,3.0,5.0,-6.413123730174556,22.31120356548123 -589,3.0,11.0,0.0,4.191255364806866 -589,4.0,1.0,-1.1359607881738778,4.772479328281356 -589,4.0,4.0,4.089980824135861,-12.190647245055052 -589,4.0,6.0,-2.954020035961983,7.449267916773697 -589,5.0,1.0,-1.6861448807654689,5.116477495334806 -589,5.0,3.0,-6.413123730174556,22.31120356548123 -589,5.0,5.0,22.341631269034565,-82.8291478657789 -589,5.0,6.0,-3.590210423980992,11.02611441072814 -589,5.0,7.0,-6.289308176100628,22.0125786163522 -589,5.0,8.0,0.0,4.915840805411357 -589,5.0,9.0,0.0,1.8561002591115965 -589,5.0,27.0,-4.362844058012917,15.463571542897856 -589,6.0,4.0,-2.954020035961983,7.449267916773697 -589,6.0,5.0,-3.590210423980992,11.02611441072814 -589,6.0,6.0,6.544230459942975,-18.45668232750184 -589,7.0,5.0,-6.289308176100628,22.0125786163522 -589,7.0,7.0,7.733287237496075,-26.527493274828448 -589,7.0,27.0,-1.4439790613954469,4.540814658476248 -589,8.0,5.0,0.0,4.915840805411357 -589,8.0,8.0,0.0,-18.706293706293707 -589,8.0,9.0,0.0,9.090909090909092 -589,8.0,10.0,0.0,4.807692307692308 -589,9.0,5.0,0.0,1.8561002591115965 -589,9.0,8.0,0.0,9.090909090909092 -589,9.0,9.0,13.462042814524237,-41.3837606675224 -589,9.0,16.0,-3.956039125715353,10.317447719844054 -589,9.0,19.0,-1.7848303152666305,3.98535828943083 -589,9.0,20.0,-5.101853820159654,10.98071411292983 -589,9.0,21.0,-2.619319553382597,5.400770303329455 -589,10.0,8.0,0.0,4.807692307692308 -589,10.0,10.0,0.0,-4.807692307692308 -589,11.0,3.0,0.0,4.191255364806866 -589,11.0,11.0,6.573961583776156,-24.424167659260668 -589,11.0,12.0,0.0,7.142857142857143 -589,11.0,13.0,-1.5265676088395577,3.1734252729654173 -589,11.0,14.0,-3.0953961826564296,6.097275864326261 -589,11.0,15.0,-1.9519977922801688,4.104359379111847 -589,12.0,11.0,0.0,7.142857142857143 -589,12.0,12.0,0.0,-7.142857142857143 -589,13.0,11.0,-1.5265676088395577,3.1734252729654173 -589,13.0,13.0,4.01751987283902,-5.424299332335067 -589,13.0,14.0,-2.4909522639994623,2.250874059369649 -589,14.0,11.0,-3.0953961826564296,6.097275864326261 -589,14.0,13.0,-2.4909522639994623,2.250874059369649 -589,14.0,14.0,9.365498545964757,-16.01163373210796 -589,14.0,17.0,-1.8108011504072024,3.687418931630696 -589,14.0,22.0,-1.9683489489016612,3.976064876781356 -589,15.0,11.0,-1.9519977922801688,4.104359379111847 -589,15.0,15.0,3.271064728633931,-8.94513365126506 -589,15.0,16.0,-1.3190669363537617,4.8407742721532125 -589,16.0,9.0,-3.956039125715353,10.317447719844054 -589,16.0,15.0,-1.3190669363537617,4.8407742721532125 -589,16.0,16.0,5.275106062069114,-15.158221991997266 -589,17.0,14.0,-1.8108011504072024,3.687418931630696 -589,17.0,17.0,4.886487584415919,-9.906177730909668 -589,17.0,18.0,-3.0756864340087167,6.218758799278971 -589,18.0,17.0,-3.0756864340087167,6.218758799278971 -589,18.0,18.0,8.958039375185187,-17.98346468163191 -589,18.0,19.0,-5.88235294117647,11.76470588235294 -589,19.0,9.0,-1.7848303152666305,3.98535828943083 -589,19.0,18.0,-5.88235294117647,11.76470588235294 -589,19.0,19.0,7.6671832564431,-15.75006417178377 -589,20.0,9.0,-5.101853820159654,10.98071411292983 -589,20.0,20.0,21.876495189895888,-45.10843276170355 -589,20.0,21.0,-16.774641369736234,34.127718648773715 -589,21.0,9.0,-2.619319553382597,5.400770303329455 -589,21.0,20.0,-16.774641369736234,34.127718648773715 -589,21.0,21.0,21.93449907537439,-43.48289181517921 -589,21.0,23.0,-2.5405381522555563,3.95440286307604 -589,22.0,14.0,-1.9683489489016612,3.976064876781356 -589,22.0,22.0,3.429754555384988,-6.965303617315433 -589,22.0,23.0,-1.4614056064833263,2.989238740534077 -589,23.0,21.0,-2.5405381522555563,3.95440286307604 -589,23.0,22.0,-1.4614056064833263,2.989238740534077 -589,23.0,23.0,5.311836702613133,-9.188263657315172 -589,23.0,24.0,-1.3098929438742493,2.287622053705056 -589,24.0,23.0,-1.3098929438742493,2.287622053705056 -589,24.0,24.0,4.495715080321987,-7.864978761969621 -589,24.0,25.0,-1.2165301194494855,1.8171440463475024 -589,24.0,26.0,-1.9692920169982515,3.760212661917064 -589,25.0,24.0,-1.2165301194494855,1.8171440463475024 -589,25.0,25.0,1.2165301194494855,-1.8171440463475024 -589,26.0,24.0,-1.9692920169982515,3.760212661917064 -589,26.0,26.0,3.652281470778589,-9.46044252232512 -589,26.0,27.0,0.0,2.608731947574922 -589,26.0,28.0,-0.99553355095268,1.881005840357816 -589,26.0,29.0,-0.6874559028276572,1.293971494797717 -589,27.0,5.0,-4.362844058012917,15.463571542897856 -589,27.0,7.0,-1.4439790613954469,4.540814658476248 -589,27.0,26.0,0.0,2.608731947574922 -589,27.0,27.0,5.806823119408364,-22.67145722159613 -589,28.0,26.0,-0.99553355095268,1.881005840357816 -589,28.0,28.0,1.9075867579849564,-3.604364401207048 -589,28.0,29.0,-0.9120532070322764,1.7233585608492326 -589,29.0,26.0,-0.6874559028276572,1.293971494797717 -589,29.0,28.0,-0.9120532070322764,1.7233585608492326 -589,29.0,29.0,1.5995091098599337,-3.0173300556469496 -590,0.0,0.0,6.765516048652632,-21.23160167089863 -590,0.0,1.0,-5.224646179885656,15.646726840803398 -590,0.0,2.0,-1.5408698687669766,5.631674830095234 -590,1.0,0.0,-5.224646179885656,15.646726840803398 -590,1.0,1.0,9.75228216552403,-30.648662892676068 -590,1.0,3.0,-1.7055303166990268,5.1973792282565086 -590,1.0,4.0,-1.1359607881738778,4.772479328281356 -590,1.0,5.0,-1.6861448807654689,5.116477495334806 -590,2.0,0.0,-1.5408698687669766,5.631674830095234 -590,2.0,2.0,9.736318911079088,-29.13794745915803 -590,2.0,3.0,-8.19544904231211,23.5308726290628 -590,3.0,1.0,-1.7055303166990268,5.1973792282565086 -590,3.0,2.0,-8.19544904231211,23.5308726290628 -590,3.0,3.0,16.314103089185693,-55.509410535254254 -590,3.0,5.0,-6.413123730174556,22.31120356548123 -590,3.0,11.0,0.0,4.191255364806866 -590,4.0,1.0,-1.1359607881738778,4.772479328281356 -590,4.0,4.0,4.089980824135861,-12.190647245055052 -590,4.0,6.0,-2.954020035961983,7.449267916773697 -590,5.0,1.0,-1.6861448807654689,5.116477495334806 -590,5.0,3.0,-6.413123730174556,22.31120356548123 -590,5.0,5.0,18.75142084505357,-71.81153345505078 -590,5.0,7.0,-6.289308176100628,22.0125786163522 -590,5.0,8.0,0.0,4.915840805411357 -590,5.0,9.0,0.0,1.8561002591115965 -590,5.0,27.0,-4.362844058012917,15.463571542897856 -590,6.0,4.0,-2.954020035961983,7.449267916773697 -590,6.0,6.0,2.954020035961983,-7.439067916773697 -590,7.0,5.0,-6.289308176100628,22.0125786163522 -590,7.0,7.0,7.733287237496075,-26.527493274828448 -590,7.0,27.0,-1.4439790613954469,4.540814658476248 -590,8.0,5.0,0.0,4.915840805411357 -590,8.0,8.0,0.0,-18.706293706293707 -590,8.0,9.0,0.0,9.090909090909092 -590,8.0,10.0,0.0,4.807692307692308 -590,9.0,5.0,0.0,1.8561002591115965 -590,9.0,8.0,0.0,9.090909090909092 -590,9.0,9.0,9.506003688808882,-31.06631294767834 -590,9.0,19.0,-1.7848303152666305,3.98535828943083 -590,9.0,20.0,-5.101853820159654,10.98071411292983 -590,9.0,21.0,-2.619319553382597,5.400770303329455 -590,10.0,8.0,0.0,4.807692307692308 -590,10.0,10.0,0.0,-4.807692307692308 -590,11.0,3.0,0.0,4.191255364806866 -590,11.0,11.0,6.573961583776156,-24.424167659260668 -590,11.0,12.0,0.0,7.142857142857143 -590,11.0,13.0,-1.5265676088395577,3.1734252729654173 -590,11.0,14.0,-3.0953961826564296,6.097275864326261 -590,11.0,15.0,-1.9519977922801688,4.104359379111847 -590,12.0,11.0,0.0,7.142857142857143 -590,12.0,12.0,0.0,-7.142857142857143 -590,13.0,11.0,-1.5265676088395577,3.1734252729654173 -590,13.0,13.0,4.01751987283902,-5.424299332335067 -590,13.0,14.0,-2.4909522639994623,2.250874059369649 -590,14.0,11.0,-3.0953961826564296,6.097275864326261 -590,14.0,13.0,-2.4909522639994623,2.250874059369649 -590,14.0,14.0,9.365498545964757,-16.01163373210796 -590,14.0,17.0,-1.8108011504072024,3.687418931630696 -590,14.0,22.0,-1.9683489489016612,3.976064876781356 -590,15.0,11.0,-1.9519977922801688,4.104359379111847 -590,15.0,15.0,3.271064728633931,-8.94513365126506 -590,15.0,16.0,-1.3190669363537617,4.8407742721532125 -590,16.0,15.0,-1.3190669363537617,4.8407742721532125 -590,16.0,16.0,1.3190669363537617,-4.8407742721532125 -590,17.0,14.0,-1.8108011504072024,3.687418931630696 -590,17.0,17.0,4.886487584415919,-9.906177730909668 -590,17.0,18.0,-3.0756864340087167,6.218758799278971 -590,18.0,17.0,-3.0756864340087167,6.218758799278971 -590,18.0,18.0,8.958039375185187,-17.98346468163191 -590,18.0,19.0,-5.88235294117647,11.76470588235294 -590,19.0,9.0,-1.7848303152666305,3.98535828943083 -590,19.0,18.0,-5.88235294117647,11.76470588235294 -590,19.0,19.0,7.6671832564431,-15.75006417178377 -590,20.0,9.0,-5.101853820159654,10.98071411292983 -590,20.0,20.0,21.876495189895888,-45.10843276170355 -590,20.0,21.0,-16.774641369736234,34.127718648773715 -590,21.0,9.0,-2.619319553382597,5.400770303329455 -590,21.0,20.0,-16.774641369736234,34.127718648773715 -590,21.0,21.0,21.93449907537439,-43.48289181517921 -590,21.0,23.0,-2.5405381522555563,3.95440286307604 -590,22.0,14.0,-1.9683489489016612,3.976064876781356 -590,22.0,22.0,3.429754555384988,-6.965303617315433 -590,22.0,23.0,-1.4614056064833263,2.989238740534077 -590,23.0,21.0,-2.5405381522555563,3.95440286307604 -590,23.0,22.0,-1.4614056064833263,2.989238740534077 -590,23.0,23.0,5.311836702613133,-9.188263657315172 -590,23.0,24.0,-1.3098929438742493,2.287622053705056 -590,24.0,23.0,-1.3098929438742493,2.287622053705056 -590,24.0,24.0,4.495715080321987,-7.864978761969621 -590,24.0,25.0,-1.2165301194494855,1.8171440463475024 -590,24.0,26.0,-1.9692920169982515,3.760212661917064 -590,25.0,24.0,-1.2165301194494855,1.8171440463475024 -590,25.0,25.0,1.2165301194494855,-1.8171440463475024 -590,26.0,24.0,-1.9692920169982515,3.760212661917064 -590,26.0,26.0,3.652281470778589,-9.46044252232512 -590,26.0,27.0,0.0,2.608731947574922 -590,26.0,28.0,-0.99553355095268,1.881005840357816 -590,26.0,29.0,-0.6874559028276572,1.293971494797717 -590,27.0,5.0,-4.362844058012917,15.463571542897856 -590,27.0,7.0,-1.4439790613954469,4.540814658476248 -590,27.0,26.0,0.0,2.608731947574922 -590,27.0,27.0,5.806823119408364,-22.67145722159613 -590,28.0,26.0,-0.99553355095268,1.881005840357816 -590,28.0,28.0,1.9075867579849564,-3.604364401207048 -590,28.0,29.0,-0.9120532070322764,1.7233585608492326 -590,29.0,26.0,-0.6874559028276572,1.293971494797717 -590,29.0,28.0,-0.9120532070322764,1.7233585608492326 -590,29.0,29.0,1.5995091098599337,-3.0173300556469496 -591,0.0,0.0,6.765516048652632,-21.23160167089863 -591,0.0,1.0,-5.224646179885656,15.646726840803398 -591,0.0,2.0,-1.5408698687669766,5.631674830095234 -591,1.0,0.0,-5.224646179885656,15.646726840803398 -591,1.0,1.0,9.75228216552403,-30.648662892676068 -591,1.0,3.0,-1.7055303166990268,5.1973792282565086 -591,1.0,4.0,-1.1359607881738778,4.772479328281356 -591,1.0,5.0,-1.6861448807654689,5.116477495334806 -591,2.0,0.0,-1.5408698687669766,5.631674830095234 -591,2.0,2.0,9.736318911079088,-29.13794745915803 -591,2.0,3.0,-8.19544904231211,23.5308726290628 -591,3.0,1.0,-1.7055303166990268,5.1973792282565086 -591,3.0,2.0,-8.19544904231211,23.5308726290628 -591,3.0,3.0,16.314103089185693,-55.509410535254254 -591,3.0,5.0,-6.413123730174556,22.31120356548123 -591,3.0,11.0,0.0,4.191255364806866 -591,4.0,1.0,-1.1359607881738778,4.772479328281356 -591,4.0,4.0,4.089980824135861,-12.190647245055052 -591,4.0,6.0,-2.954020035961983,7.449267916773697 -591,5.0,1.0,-1.6861448807654689,5.116477495334806 -591,5.0,3.0,-6.413123730174556,22.31120356548123 -591,5.0,5.0,22.341631269034565,-82.8291478657789 -591,5.0,6.0,-3.590210423980992,11.02611441072814 -591,5.0,7.0,-6.289308176100628,22.0125786163522 -591,5.0,8.0,0.0,4.915840805411357 -591,5.0,9.0,0.0,1.8561002591115965 -591,5.0,27.0,-4.362844058012917,15.463571542897856 -591,6.0,4.0,-2.954020035961983,7.449267916773697 -591,6.0,5.0,-3.590210423980992,11.02611441072814 -591,6.0,6.0,6.544230459942975,-18.45668232750184 -591,7.0,5.0,-6.289308176100628,22.0125786163522 -591,7.0,7.0,7.733287237496075,-26.527493274828448 -591,7.0,27.0,-1.4439790613954469,4.540814658476248 -591,8.0,5.0,0.0,4.915840805411357 -591,8.0,8.0,0.0,-18.706293706293707 -591,8.0,9.0,0.0,9.090909090909092 -591,8.0,10.0,0.0,4.807692307692308 -591,9.0,5.0,0.0,1.8561002591115965 -591,9.0,8.0,0.0,9.090909090909092 -591,9.0,9.0,13.462042814524237,-41.3837606675224 -591,9.0,16.0,-3.956039125715353,10.317447719844054 -591,9.0,19.0,-1.7848303152666305,3.98535828943083 -591,9.0,20.0,-5.101853820159654,10.98071411292983 -591,9.0,21.0,-2.619319553382597,5.400770303329455 -591,10.0,8.0,0.0,4.807692307692308 -591,10.0,10.0,0.0,-4.807692307692308 -591,11.0,3.0,0.0,4.191255364806866 -591,11.0,11.0,6.573961583776156,-24.424167659260668 -591,11.0,12.0,0.0,7.142857142857143 -591,11.0,13.0,-1.5265676088395577,3.1734252729654173 -591,11.0,14.0,-3.0953961826564296,6.097275864326261 -591,11.0,15.0,-1.9519977922801688,4.104359379111847 -591,12.0,11.0,0.0,7.142857142857143 -591,12.0,12.0,0.0,-7.142857142857143 -591,13.0,11.0,-1.5265676088395577,3.1734252729654173 -591,13.0,13.0,4.01751987283902,-5.424299332335067 -591,13.0,14.0,-2.4909522639994623,2.250874059369649 -591,14.0,11.0,-3.0953961826564296,6.097275864326261 -591,14.0,13.0,-2.4909522639994623,2.250874059369649 -591,14.0,14.0,9.365498545964757,-16.01163373210796 -591,14.0,17.0,-1.8108011504072024,3.687418931630696 -591,14.0,22.0,-1.9683489489016612,3.976064876781356 -591,15.0,11.0,-1.9519977922801688,4.104359379111847 -591,15.0,15.0,3.271064728633931,-8.94513365126506 -591,15.0,16.0,-1.3190669363537617,4.8407742721532125 -591,16.0,9.0,-3.956039125715353,10.317447719844054 -591,16.0,15.0,-1.3190669363537617,4.8407742721532125 -591,16.0,16.0,5.275106062069114,-15.158221991997266 -591,17.0,14.0,-1.8108011504072024,3.687418931630696 -591,17.0,17.0,4.886487584415919,-9.906177730909668 -591,17.0,18.0,-3.0756864340087167,6.218758799278971 -591,18.0,17.0,-3.0756864340087167,6.218758799278971 -591,18.0,18.0,8.958039375185187,-17.98346468163191 -591,18.0,19.0,-5.88235294117647,11.76470588235294 -591,19.0,9.0,-1.7848303152666305,3.98535828943083 -591,19.0,18.0,-5.88235294117647,11.76470588235294 -591,19.0,19.0,7.6671832564431,-15.75006417178377 -591,20.0,9.0,-5.101853820159654,10.98071411292983 -591,20.0,20.0,21.876495189895888,-45.10843276170355 -591,20.0,21.0,-16.774641369736234,34.127718648773715 -591,21.0,9.0,-2.619319553382597,5.400770303329455 -591,21.0,20.0,-16.774641369736234,34.127718648773715 -591,21.0,21.0,21.93449907537439,-43.48289181517921 -591,21.0,23.0,-2.5405381522555563,3.95440286307604 -591,22.0,14.0,-1.9683489489016612,3.976064876781356 -591,22.0,22.0,3.429754555384988,-6.965303617315433 -591,22.0,23.0,-1.4614056064833263,2.989238740534077 -591,23.0,21.0,-2.5405381522555563,3.95440286307604 -591,23.0,22.0,-1.4614056064833263,2.989238740534077 -591,23.0,23.0,5.311836702613133,-9.188263657315172 -591,23.0,24.0,-1.3098929438742493,2.287622053705056 -591,24.0,23.0,-1.3098929438742493,2.287622053705056 -591,24.0,24.0,4.495715080321987,-7.864978761969621 -591,24.0,25.0,-1.2165301194494855,1.8171440463475024 -591,24.0,26.0,-1.9692920169982515,3.760212661917064 -591,25.0,24.0,-1.2165301194494855,1.8171440463475024 -591,25.0,25.0,1.2165301194494855,-1.8171440463475024 -591,26.0,24.0,-1.9692920169982515,3.760212661917064 -591,26.0,26.0,3.652281470778589,-9.46044252232512 -591,26.0,27.0,0.0,2.608731947574922 -591,26.0,28.0,-0.99553355095268,1.881005840357816 -591,26.0,29.0,-0.6874559028276572,1.293971494797717 -591,27.0,5.0,-4.362844058012917,15.463571542897856 -591,27.0,7.0,-1.4439790613954469,4.540814658476248 -591,27.0,26.0,0.0,2.608731947574922 -591,27.0,27.0,5.806823119408364,-22.67145722159613 -591,28.0,26.0,-0.99553355095268,1.881005840357816 -591,28.0,28.0,1.9075867579849564,-3.604364401207048 -591,28.0,29.0,-0.9120532070322764,1.7233585608492326 -591,29.0,26.0,-0.6874559028276572,1.293971494797717 -591,29.0,28.0,-0.9120532070322764,1.7233585608492326 -591,29.0,29.0,1.5995091098599337,-3.0173300556469496 -592,0.0,0.0,6.765516048652632,-21.23160167089863 -592,0.0,1.0,-5.224646179885656,15.646726840803398 -592,0.0,2.0,-1.5408698687669766,5.631674830095234 -592,1.0,0.0,-5.224646179885656,15.646726840803398 -592,1.0,1.0,9.75228216552403,-30.648662892676068 -592,1.0,3.0,-1.7055303166990268,5.1973792282565086 -592,1.0,4.0,-1.1359607881738778,4.772479328281356 -592,1.0,5.0,-1.6861448807654689,5.116477495334806 -592,2.0,0.0,-1.5408698687669766,5.631674830095234 -592,2.0,2.0,9.736318911079088,-29.13794745915803 -592,2.0,3.0,-8.19544904231211,23.5308726290628 -592,3.0,1.0,-1.7055303166990268,5.1973792282565086 -592,3.0,2.0,-8.19544904231211,23.5308726290628 -592,3.0,3.0,16.314103089185693,-55.509410535254254 -592,3.0,5.0,-6.413123730174556,22.31120356548123 -592,3.0,11.0,0.0,4.191255364806866 -592,4.0,1.0,-1.1359607881738778,4.772479328281356 -592,4.0,4.0,4.089980824135861,-12.190647245055052 -592,4.0,6.0,-2.954020035961983,7.449267916773697 -592,5.0,1.0,-1.6861448807654689,5.116477495334806 -592,5.0,3.0,-6.413123730174556,22.31120356548123 -592,5.0,5.0,22.341631269034565,-82.8291478657789 -592,5.0,6.0,-3.590210423980992,11.02611441072814 -592,5.0,7.0,-6.289308176100628,22.0125786163522 -592,5.0,8.0,0.0,4.915840805411357 -592,5.0,9.0,0.0,1.8561002591115965 -592,5.0,27.0,-4.362844058012917,15.463571542897856 -592,6.0,4.0,-2.954020035961983,7.449267916773697 -592,6.0,5.0,-3.590210423980992,11.02611441072814 -592,6.0,6.0,6.544230459942975,-18.45668232750184 -592,7.0,5.0,-6.289308176100628,22.0125786163522 -592,7.0,7.0,7.733287237496075,-26.527493274828448 -592,7.0,27.0,-1.4439790613954469,4.540814658476248 -592,8.0,5.0,0.0,4.915840805411357 -592,8.0,8.0,0.0,-18.706293706293707 -592,8.0,9.0,0.0,9.090909090909092 -592,8.0,10.0,0.0,4.807692307692308 -592,9.0,5.0,0.0,1.8561002591115965 -592,9.0,8.0,0.0,9.090909090909092 -592,9.0,9.0,13.462042814524237,-41.3837606675224 -592,9.0,16.0,-3.956039125715353,10.317447719844054 -592,9.0,19.0,-1.7848303152666305,3.98535828943083 -592,9.0,20.0,-5.101853820159654,10.98071411292983 -592,9.0,21.0,-2.619319553382597,5.400770303329455 -592,10.0,8.0,0.0,4.807692307692308 -592,10.0,10.0,0.0,-4.807692307692308 -592,11.0,3.0,0.0,4.191255364806866 -592,11.0,11.0,6.573961583776156,-24.424167659260668 -592,11.0,12.0,0.0,7.142857142857143 -592,11.0,13.0,-1.5265676088395577,3.1734252729654173 -592,11.0,14.0,-3.0953961826564296,6.097275864326261 -592,11.0,15.0,-1.9519977922801688,4.104359379111847 -592,12.0,11.0,0.0,7.142857142857143 -592,12.0,12.0,0.0,-7.142857142857143 -592,13.0,11.0,-1.5265676088395577,3.1734252729654173 -592,13.0,13.0,4.01751987283902,-5.424299332335067 -592,13.0,14.0,-2.4909522639994623,2.250874059369649 -592,14.0,11.0,-3.0953961826564296,6.097275864326261 -592,14.0,13.0,-2.4909522639994623,2.250874059369649 -592,14.0,14.0,9.365498545964757,-16.01163373210796 -592,14.0,17.0,-1.8108011504072024,3.687418931630696 -592,14.0,22.0,-1.9683489489016612,3.976064876781356 -592,15.0,11.0,-1.9519977922801688,4.104359379111847 -592,15.0,15.0,3.271064728633931,-8.94513365126506 -592,15.0,16.0,-1.3190669363537617,4.8407742721532125 -592,16.0,9.0,-3.956039125715353,10.317447719844054 -592,16.0,15.0,-1.3190669363537617,4.8407742721532125 -592,16.0,16.0,5.275106062069114,-15.158221991997266 -592,17.0,14.0,-1.8108011504072024,3.687418931630696 -592,17.0,17.0,4.886487584415919,-9.906177730909668 -592,17.0,18.0,-3.0756864340087167,6.218758799278971 -592,18.0,17.0,-3.0756864340087167,6.218758799278971 -592,18.0,18.0,8.958039375185187,-17.98346468163191 -592,18.0,19.0,-5.88235294117647,11.76470588235294 -592,19.0,9.0,-1.7848303152666305,3.98535828943083 -592,19.0,18.0,-5.88235294117647,11.76470588235294 -592,19.0,19.0,7.6671832564431,-15.75006417178377 -592,20.0,9.0,-5.101853820159654,10.98071411292983 -592,20.0,20.0,21.876495189895888,-45.10843276170355 -592,20.0,21.0,-16.774641369736234,34.127718648773715 -592,21.0,9.0,-2.619319553382597,5.400770303329455 -592,21.0,20.0,-16.774641369736234,34.127718648773715 -592,21.0,21.0,21.93449907537439,-43.48289181517921 -592,21.0,23.0,-2.5405381522555563,3.95440286307604 -592,22.0,14.0,-1.9683489489016612,3.976064876781356 -592,22.0,22.0,3.429754555384988,-6.965303617315433 -592,22.0,23.0,-1.4614056064833263,2.989238740534077 -592,23.0,21.0,-2.5405381522555563,3.95440286307604 -592,23.0,22.0,-1.4614056064833263,2.989238740534077 -592,23.0,23.0,5.311836702613133,-9.188263657315172 -592,23.0,24.0,-1.3098929438742493,2.287622053705056 -592,24.0,23.0,-1.3098929438742493,2.287622053705056 -592,24.0,24.0,4.495715080321987,-7.864978761969621 -592,24.0,25.0,-1.2165301194494855,1.8171440463475024 -592,24.0,26.0,-1.9692920169982515,3.760212661917064 -592,25.0,24.0,-1.2165301194494855,1.8171440463475024 -592,25.0,25.0,1.2165301194494855,-1.8171440463475024 -592,26.0,24.0,-1.9692920169982515,3.760212661917064 -592,26.0,26.0,3.652281470778589,-9.46044252232512 -592,26.0,27.0,0.0,2.608731947574922 -592,26.0,28.0,-0.99553355095268,1.881005840357816 -592,26.0,29.0,-0.6874559028276572,1.293971494797717 -592,27.0,5.0,-4.362844058012917,15.463571542897856 -592,27.0,7.0,-1.4439790613954469,4.540814658476248 -592,27.0,26.0,0.0,2.608731947574922 -592,27.0,27.0,5.806823119408364,-22.67145722159613 -592,28.0,26.0,-0.99553355095268,1.881005840357816 -592,28.0,28.0,1.9075867579849564,-3.604364401207048 -592,28.0,29.0,-0.9120532070322764,1.7233585608492326 -592,29.0,26.0,-0.6874559028276572,1.293971494797717 -592,29.0,28.0,-0.9120532070322764,1.7233585608492326 -592,29.0,29.0,1.5995091098599337,-3.0173300556469496 -593,0.0,0.0,6.765516048652632,-21.23160167089863 -593,0.0,1.0,-5.224646179885656,15.646726840803398 -593,0.0,2.0,-1.5408698687669766,5.631674830095234 -593,1.0,0.0,-5.224646179885656,15.646726840803398 -593,1.0,1.0,9.75228216552403,-30.648662892676068 -593,1.0,3.0,-1.7055303166990268,5.1973792282565086 -593,1.0,4.0,-1.1359607881738778,4.772479328281356 -593,1.0,5.0,-1.6861448807654689,5.116477495334806 -593,2.0,0.0,-1.5408698687669766,5.631674830095234 -593,2.0,2.0,9.736318911079088,-29.13794745915803 -593,2.0,3.0,-8.19544904231211,23.5308726290628 -593,3.0,1.0,-1.7055303166990268,5.1973792282565086 -593,3.0,2.0,-8.19544904231211,23.5308726290628 -593,3.0,3.0,16.314103089185693,-55.509410535254254 -593,3.0,5.0,-6.413123730174556,22.31120356548123 -593,3.0,11.0,0.0,4.191255364806866 -593,4.0,1.0,-1.1359607881738778,4.772479328281356 -593,4.0,4.0,4.089980824135861,-12.190647245055052 -593,4.0,6.0,-2.954020035961983,7.449267916773697 -593,5.0,1.0,-1.6861448807654689,5.116477495334806 -593,5.0,3.0,-6.413123730174556,22.31120356548123 -593,5.0,5.0,22.341631269034565,-82.8291478657789 -593,5.0,6.0,-3.590210423980992,11.02611441072814 -593,5.0,7.0,-6.289308176100628,22.0125786163522 -593,5.0,8.0,0.0,4.915840805411357 -593,5.0,9.0,0.0,1.8561002591115965 -593,5.0,27.0,-4.362844058012917,15.463571542897856 -593,6.0,4.0,-2.954020035961983,7.449267916773697 -593,6.0,5.0,-3.590210423980992,11.02611441072814 -593,6.0,6.0,6.544230459942975,-18.45668232750184 -593,7.0,5.0,-6.289308176100628,22.0125786163522 -593,7.0,7.0,7.733287237496075,-26.527493274828448 -593,7.0,27.0,-1.4439790613954469,4.540814658476248 -593,8.0,5.0,0.0,4.915840805411357 -593,8.0,8.0,0.0,-18.706293706293707 -593,8.0,9.0,0.0,9.090909090909092 -593,8.0,10.0,0.0,4.807692307692308 -593,9.0,5.0,0.0,1.8561002591115965 -593,9.0,8.0,0.0,9.090909090909092 -593,9.0,9.0,9.506003688808882,-31.06631294767834 -593,9.0,19.0,-1.7848303152666305,3.98535828943083 -593,9.0,20.0,-5.101853820159654,10.98071411292983 -593,9.0,21.0,-2.619319553382597,5.400770303329455 -593,10.0,8.0,0.0,4.807692307692308 -593,10.0,10.0,0.0,-4.807692307692308 -593,11.0,3.0,0.0,4.191255364806866 -593,11.0,11.0,6.573961583776156,-24.424167659260668 -593,11.0,12.0,0.0,7.142857142857143 -593,11.0,13.0,-1.5265676088395577,3.1734252729654173 -593,11.0,14.0,-3.0953961826564296,6.097275864326261 -593,11.0,15.0,-1.9519977922801688,4.104359379111847 -593,12.0,11.0,0.0,7.142857142857143 -593,12.0,12.0,0.0,-7.142857142857143 -593,13.0,11.0,-1.5265676088395577,3.1734252729654173 -593,13.0,13.0,4.01751987283902,-5.424299332335067 -593,13.0,14.0,-2.4909522639994623,2.250874059369649 -593,14.0,11.0,-3.0953961826564296,6.097275864326261 -593,14.0,13.0,-2.4909522639994623,2.250874059369649 -593,14.0,14.0,9.365498545964757,-16.01163373210796 -593,14.0,17.0,-1.8108011504072024,3.687418931630696 -593,14.0,22.0,-1.9683489489016612,3.976064876781356 -593,15.0,11.0,-1.9519977922801688,4.104359379111847 -593,15.0,15.0,3.271064728633931,-8.94513365126506 -593,15.0,16.0,-1.3190669363537617,4.8407742721532125 -593,16.0,15.0,-1.3190669363537617,4.8407742721532125 -593,16.0,16.0,1.3190669363537617,-4.8407742721532125 -593,17.0,14.0,-1.8108011504072024,3.687418931630696 -593,17.0,17.0,4.886487584415919,-9.906177730909668 -593,17.0,18.0,-3.0756864340087167,6.218758799278971 -593,18.0,17.0,-3.0756864340087167,6.218758799278971 -593,18.0,18.0,3.0756864340087167,-6.218758799278971 -593,19.0,9.0,-1.7848303152666305,3.98535828943083 -593,19.0,19.0,1.7848303152666305,-3.98535828943083 -593,20.0,9.0,-5.101853820159654,10.98071411292983 -593,20.0,20.0,21.876495189895888,-45.10843276170355 -593,20.0,21.0,-16.774641369736234,34.127718648773715 -593,21.0,9.0,-2.619319553382597,5.400770303329455 -593,21.0,20.0,-16.774641369736234,34.127718648773715 -593,21.0,21.0,21.93449907537439,-43.48289181517921 -593,21.0,23.0,-2.5405381522555563,3.95440286307604 -593,22.0,14.0,-1.9683489489016612,3.976064876781356 -593,22.0,22.0,3.429754555384988,-6.965303617315433 -593,22.0,23.0,-1.4614056064833263,2.989238740534077 -593,23.0,21.0,-2.5405381522555563,3.95440286307604 -593,23.0,22.0,-1.4614056064833263,2.989238740534077 -593,23.0,23.0,5.311836702613133,-9.188263657315172 -593,23.0,24.0,-1.3098929438742493,2.287622053705056 -593,24.0,23.0,-1.3098929438742493,2.287622053705056 -593,24.0,24.0,4.495715080321987,-7.864978761969621 -593,24.0,25.0,-1.2165301194494855,1.8171440463475024 -593,24.0,26.0,-1.9692920169982515,3.760212661917064 -593,25.0,24.0,-1.2165301194494855,1.8171440463475024 -593,25.0,25.0,1.2165301194494855,-1.8171440463475024 -593,26.0,24.0,-1.9692920169982515,3.760212661917064 -593,26.0,26.0,3.652281470778589,-9.46044252232512 -593,26.0,27.0,0.0,2.608731947574922 -593,26.0,28.0,-0.99553355095268,1.881005840357816 -593,26.0,29.0,-0.6874559028276572,1.293971494797717 -593,27.0,5.0,-4.362844058012917,15.463571542897856 -593,27.0,7.0,-1.4439790613954469,4.540814658476248 -593,27.0,26.0,0.0,2.608731947574922 -593,27.0,27.0,5.806823119408364,-22.67145722159613 -593,28.0,26.0,-0.99553355095268,1.881005840357816 -593,28.0,28.0,0.99553355095268,-1.881005840357816 -593,29.0,26.0,-0.6874559028276572,1.293971494797717 -593,29.0,29.0,0.6874559028276572,-1.293971494797717 -594,0.0,0.0,6.765516048652632,-21.23160167089863 -594,0.0,1.0,-5.224646179885656,15.646726840803398 -594,0.0,2.0,-1.5408698687669766,5.631674830095234 -594,1.0,0.0,-5.224646179885656,15.646726840803398 -594,1.0,1.0,9.75228216552403,-30.648662892676068 -594,1.0,3.0,-1.7055303166990268,5.1973792282565086 -594,1.0,4.0,-1.1359607881738778,4.772479328281356 -594,1.0,5.0,-1.6861448807654689,5.116477495334806 -594,2.0,0.0,-1.5408698687669766,5.631674830095234 -594,2.0,2.0,9.736318911079088,-29.13794745915803 -594,2.0,3.0,-8.19544904231211,23.5308726290628 -594,3.0,1.0,-1.7055303166990268,5.1973792282565086 -594,3.0,2.0,-8.19544904231211,23.5308726290628 -594,3.0,3.0,16.314103089185693,-55.509410535254254 -594,3.0,5.0,-6.413123730174556,22.31120356548123 -594,3.0,11.0,0.0,4.191255364806866 -594,4.0,1.0,-1.1359607881738778,4.772479328281356 -594,4.0,4.0,4.089980824135861,-12.190647245055052 -594,4.0,6.0,-2.954020035961983,7.449267916773697 -594,5.0,1.0,-1.6861448807654689,5.116477495334806 -594,5.0,3.0,-6.413123730174556,22.31120356548123 -594,5.0,5.0,22.341631269034565,-82.8291478657789 -594,5.0,6.0,-3.590210423980992,11.02611441072814 -594,5.0,7.0,-6.289308176100628,22.0125786163522 -594,5.0,8.0,0.0,4.915840805411357 -594,5.0,9.0,0.0,1.8561002591115965 -594,5.0,27.0,-4.362844058012917,15.463571542897856 -594,6.0,4.0,-2.954020035961983,7.449267916773697 -594,6.0,5.0,-3.590210423980992,11.02611441072814 -594,6.0,6.0,6.544230459942975,-18.45668232750184 -594,7.0,5.0,-6.289308176100628,22.0125786163522 -594,7.0,7.0,7.733287237496075,-26.527493274828448 -594,7.0,27.0,-1.4439790613954469,4.540814658476248 -594,8.0,5.0,0.0,4.915840805411357 -594,8.0,8.0,0.0,-18.706293706293707 -594,8.0,9.0,0.0,9.090909090909092 -594,8.0,10.0,0.0,4.807692307692308 -594,9.0,5.0,0.0,1.8561002591115965 -594,9.0,8.0,0.0,9.090909090909092 -594,9.0,9.0,10.842723261141638,-35.98299036419294 -594,9.0,16.0,-3.956039125715353,10.317447719844054 -594,9.0,19.0,-1.7848303152666305,3.98535828943083 -594,9.0,20.0,-5.101853820159654,10.98071411292983 -594,10.0,8.0,0.0,4.807692307692308 -594,10.0,10.0,0.0,-4.807692307692308 -594,11.0,3.0,0.0,4.191255364806866 -594,11.0,11.0,6.573961583776156,-24.424167659260668 -594,11.0,12.0,0.0,7.142857142857143 -594,11.0,13.0,-1.5265676088395577,3.1734252729654173 -594,11.0,14.0,-3.0953961826564296,6.097275864326261 -594,11.0,15.0,-1.9519977922801688,4.104359379111847 -594,12.0,11.0,0.0,7.142857142857143 -594,12.0,12.0,0.0,-7.142857142857143 -594,13.0,11.0,-1.5265676088395577,3.1734252729654173 -594,13.0,13.0,1.5265676088395577,-3.1734252729654173 -594,14.0,11.0,-3.0953961826564296,6.097275864326261 -594,14.0,14.0,6.874546281965293,-13.760759672738311 -594,14.0,17.0,-1.8108011504072024,3.687418931630696 -594,14.0,22.0,-1.9683489489016612,3.976064876781356 -594,15.0,11.0,-1.9519977922801688,4.104359379111847 -594,15.0,15.0,3.271064728633931,-8.94513365126506 -594,15.0,16.0,-1.3190669363537617,4.8407742721532125 -594,16.0,9.0,-3.956039125715353,10.317447719844054 -594,16.0,15.0,-1.3190669363537617,4.8407742721532125 -594,16.0,16.0,5.275106062069114,-15.158221991997266 -594,17.0,14.0,-1.8108011504072024,3.687418931630696 -594,17.0,17.0,4.886487584415919,-9.906177730909668 -594,17.0,18.0,-3.0756864340087167,6.218758799278971 -594,18.0,17.0,-3.0756864340087167,6.218758799278971 -594,18.0,18.0,8.958039375185187,-17.98346468163191 -594,18.0,19.0,-5.88235294117647,11.76470588235294 -594,19.0,9.0,-1.7848303152666305,3.98535828943083 -594,19.0,18.0,-5.88235294117647,11.76470588235294 -594,19.0,19.0,7.6671832564431,-15.75006417178377 -594,20.0,9.0,-5.101853820159654,10.98071411292983 -594,20.0,20.0,21.876495189895888,-45.10843276170355 -594,20.0,21.0,-16.774641369736234,34.127718648773715 -594,21.0,20.0,-16.774641369736234,34.127718648773715 -594,21.0,21.0,19.31517952199179,-38.08212151184976 -594,21.0,23.0,-2.5405381522555563,3.95440286307604 -594,22.0,14.0,-1.9683489489016612,3.976064876781356 -594,22.0,22.0,3.429754555384988,-6.965303617315433 -594,22.0,23.0,-1.4614056064833263,2.989238740534077 -594,23.0,21.0,-2.5405381522555563,3.95440286307604 -594,23.0,22.0,-1.4614056064833263,2.989238740534077 -594,23.0,23.0,5.311836702613133,-9.188263657315172 -594,23.0,24.0,-1.3098929438742493,2.287622053705056 -594,24.0,23.0,-1.3098929438742493,2.287622053705056 -594,24.0,24.0,4.495715080321987,-7.864978761969621 -594,24.0,25.0,-1.2165301194494855,1.8171440463475024 -594,24.0,26.0,-1.9692920169982515,3.760212661917064 -594,25.0,24.0,-1.2165301194494855,1.8171440463475024 -594,25.0,25.0,1.2165301194494855,-1.8171440463475024 -594,26.0,24.0,-1.9692920169982515,3.760212661917064 -594,26.0,26.0,3.652281470778589,-9.46044252232512 -594,26.0,27.0,0.0,2.608731947574922 -594,26.0,28.0,-0.99553355095268,1.881005840357816 -594,26.0,29.0,-0.6874559028276572,1.293971494797717 -594,27.0,5.0,-4.362844058012917,15.463571542897856 -594,27.0,7.0,-1.4439790613954469,4.540814658476248 -594,27.0,26.0,0.0,2.608731947574922 -594,27.0,27.0,5.806823119408364,-22.67145722159613 -594,28.0,26.0,-0.99553355095268,1.881005840357816 -594,28.0,28.0,1.9075867579849564,-3.604364401207048 -594,28.0,29.0,-0.9120532070322764,1.7233585608492326 -594,29.0,26.0,-0.6874559028276572,1.293971494797717 -594,29.0,28.0,-0.9120532070322764,1.7233585608492326 -594,29.0,29.0,1.5995091098599337,-3.0173300556469496 -595,0.0,0.0,6.765516048652632,-21.23160167089863 -595,0.0,1.0,-5.224646179885656,15.646726840803398 -595,0.0,2.0,-1.5408698687669766,5.631674830095234 -595,1.0,0.0,-5.224646179885656,15.646726840803398 -595,1.0,1.0,9.75228216552403,-30.648662892676068 -595,1.0,3.0,-1.7055303166990268,5.1973792282565086 -595,1.0,4.0,-1.1359607881738778,4.772479328281356 -595,1.0,5.0,-1.6861448807654689,5.116477495334806 -595,2.0,0.0,-1.5408698687669766,5.631674830095234 -595,2.0,2.0,9.736318911079088,-29.13794745915803 -595,2.0,3.0,-8.19544904231211,23.5308726290628 -595,3.0,1.0,-1.7055303166990268,5.1973792282565086 -595,3.0,2.0,-8.19544904231211,23.5308726290628 -595,3.0,3.0,16.314103089185693,-55.509410535254254 -595,3.0,5.0,-6.413123730174556,22.31120356548123 -595,3.0,11.0,0.0,4.191255364806866 -595,4.0,1.0,-1.1359607881738778,4.772479328281356 -595,4.0,4.0,4.089980824135861,-12.190647245055052 -595,4.0,6.0,-2.954020035961983,7.449267916773697 -595,5.0,1.0,-1.6861448807654689,5.116477495334806 -595,5.0,3.0,-6.413123730174556,22.31120356548123 -595,5.0,5.0,22.341631269034565,-82.8291478657789 -595,5.0,6.0,-3.590210423980992,11.02611441072814 -595,5.0,7.0,-6.289308176100628,22.0125786163522 -595,5.0,8.0,0.0,4.915840805411357 -595,5.0,9.0,0.0,1.8561002591115965 -595,5.0,27.0,-4.362844058012917,15.463571542897856 -595,6.0,4.0,-2.954020035961983,7.449267916773697 -595,6.0,5.0,-3.590210423980992,11.02611441072814 -595,6.0,6.0,6.544230459942975,-18.45668232750184 -595,7.0,5.0,-6.289308176100628,22.0125786163522 -595,7.0,7.0,7.733287237496075,-26.527493274828448 -595,7.0,27.0,-1.4439790613954469,4.540814658476248 -595,8.0,5.0,0.0,4.915840805411357 -595,8.0,8.0,0.0,-18.706293706293707 -595,8.0,9.0,0.0,9.090909090909092 -595,8.0,10.0,0.0,4.807692307692308 -595,9.0,5.0,0.0,1.8561002591115965 -595,9.0,8.0,0.0,9.090909090909092 -595,9.0,9.0,13.462042814524237,-41.3837606675224 -595,9.0,16.0,-3.956039125715353,10.317447719844054 -595,9.0,19.0,-1.7848303152666305,3.98535828943083 -595,9.0,20.0,-5.101853820159654,10.98071411292983 -595,9.0,21.0,-2.619319553382597,5.400770303329455 -595,10.0,8.0,0.0,4.807692307692308 -595,10.0,10.0,0.0,-4.807692307692308 -595,11.0,3.0,0.0,4.191255364806866 -595,11.0,11.0,6.573961583776156,-24.424167659260668 -595,11.0,12.0,0.0,7.142857142857143 -595,11.0,13.0,-1.5265676088395577,3.1734252729654173 -595,11.0,14.0,-3.0953961826564296,6.097275864326261 -595,11.0,15.0,-1.9519977922801688,4.104359379111847 -595,12.0,11.0,0.0,7.142857142857143 -595,12.0,12.0,0.0,-7.142857142857143 -595,13.0,11.0,-1.5265676088395577,3.1734252729654173 -595,13.0,13.0,4.01751987283902,-5.424299332335067 -595,13.0,14.0,-2.4909522639994623,2.250874059369649 -595,14.0,11.0,-3.0953961826564296,6.097275864326261 -595,14.0,13.0,-2.4909522639994623,2.250874059369649 -595,14.0,14.0,9.365498545964757,-16.01163373210796 -595,14.0,17.0,-1.8108011504072024,3.687418931630696 -595,14.0,22.0,-1.9683489489016612,3.976064876781356 -595,15.0,11.0,-1.9519977922801688,4.104359379111847 -595,15.0,15.0,3.271064728633931,-8.94513365126506 -595,15.0,16.0,-1.3190669363537617,4.8407742721532125 -595,16.0,9.0,-3.956039125715353,10.317447719844054 -595,16.0,15.0,-1.3190669363537617,4.8407742721532125 -595,16.0,16.0,5.275106062069114,-15.158221991997266 -595,17.0,14.0,-1.8108011504072024,3.687418931630696 -595,17.0,17.0,4.886487584415919,-9.906177730909668 -595,17.0,18.0,-3.0756864340087167,6.218758799278971 -595,18.0,17.0,-3.0756864340087167,6.218758799278971 -595,18.0,18.0,8.958039375185187,-17.98346468163191 -595,18.0,19.0,-5.88235294117647,11.76470588235294 -595,19.0,9.0,-1.7848303152666305,3.98535828943083 -595,19.0,18.0,-5.88235294117647,11.76470588235294 -595,19.0,19.0,7.6671832564431,-15.75006417178377 -595,20.0,9.0,-5.101853820159654,10.98071411292983 -595,20.0,20.0,21.876495189895888,-45.10843276170355 -595,20.0,21.0,-16.774641369736234,34.127718648773715 -595,21.0,9.0,-2.619319553382597,5.400770303329455 -595,21.0,20.0,-16.774641369736234,34.127718648773715 -595,21.0,21.0,21.93449907537439,-43.48289181517921 -595,21.0,23.0,-2.5405381522555563,3.95440286307604 -595,22.0,14.0,-1.9683489489016612,3.976064876781356 -595,22.0,22.0,3.429754555384988,-6.965303617315433 -595,22.0,23.0,-1.4614056064833263,2.989238740534077 -595,23.0,21.0,-2.5405381522555563,3.95440286307604 -595,23.0,22.0,-1.4614056064833263,2.989238740534077 -595,23.0,23.0,5.311836702613133,-9.188263657315172 -595,23.0,24.0,-1.3098929438742493,2.287622053705056 -595,24.0,23.0,-1.3098929438742493,2.287622053705056 -595,24.0,24.0,4.495715080321987,-7.864978761969621 -595,24.0,25.0,-1.2165301194494855,1.8171440463475024 -595,24.0,26.0,-1.9692920169982515,3.760212661917064 -595,25.0,24.0,-1.2165301194494855,1.8171440463475024 -595,25.0,25.0,1.2165301194494855,-1.8171440463475024 -595,26.0,24.0,-1.9692920169982515,3.760212661917064 -595,26.0,26.0,3.652281470778589,-9.46044252232512 -595,26.0,27.0,0.0,2.608731947574922 -595,26.0,28.0,-0.99553355095268,1.881005840357816 -595,26.0,29.0,-0.6874559028276572,1.293971494797717 -595,27.0,5.0,-4.362844058012917,15.463571542897856 -595,27.0,7.0,-1.4439790613954469,4.540814658476248 -595,27.0,26.0,0.0,2.608731947574922 -595,27.0,27.0,5.806823119408364,-22.67145722159613 -595,28.0,26.0,-0.99553355095268,1.881005840357816 -595,28.0,28.0,1.9075867579849564,-3.604364401207048 -595,28.0,29.0,-0.9120532070322764,1.7233585608492326 -595,29.0,26.0,-0.6874559028276572,1.293971494797717 -595,29.0,28.0,-0.9120532070322764,1.7233585608492326 -595,29.0,29.0,1.5995091098599337,-3.0173300556469496 -596,0.0,0.0,6.765516048652632,-21.23160167089863 -596,0.0,1.0,-5.224646179885656,15.646726840803398 -596,0.0,2.0,-1.5408698687669766,5.631674830095234 -596,1.0,0.0,-5.224646179885656,15.646726840803398 -596,1.0,1.0,8.61632137735015,-25.897083564394716 -596,1.0,3.0,-1.7055303166990268,5.1973792282565086 -596,1.0,5.0,-1.6861448807654689,5.116477495334806 -596,2.0,0.0,-1.5408698687669766,5.631674830095234 -596,2.0,2.0,9.736318911079088,-29.13794745915803 -596,2.0,3.0,-8.19544904231211,23.5308726290628 -596,3.0,1.0,-1.7055303166990268,5.1973792282565086 -596,3.0,2.0,-8.19544904231211,23.5308726290628 -596,3.0,3.0,16.314103089185693,-55.509410535254254 -596,3.0,5.0,-6.413123730174556,22.31120356548123 -596,3.0,11.0,0.0,4.191255364806866 -596,4.0,4.0,2.954020035961983,-7.439067916773697 -596,4.0,6.0,-2.954020035961983,7.449267916773697 -596,5.0,1.0,-1.6861448807654689,5.116477495334806 -596,5.0,3.0,-6.413123730174556,22.31120356548123 -596,5.0,5.0,22.341631269034565,-82.8291478657789 -596,5.0,6.0,-3.590210423980992,11.02611441072814 -596,5.0,7.0,-6.289308176100628,22.0125786163522 -596,5.0,8.0,0.0,4.915840805411357 -596,5.0,9.0,0.0,1.8561002591115965 -596,5.0,27.0,-4.362844058012917,15.463571542897856 -596,6.0,4.0,-2.954020035961983,7.449267916773697 -596,6.0,5.0,-3.590210423980992,11.02611441072814 -596,6.0,6.0,6.544230459942975,-18.45668232750184 -596,7.0,5.0,-6.289308176100628,22.0125786163522 -596,7.0,7.0,7.733287237496075,-26.527493274828448 -596,7.0,27.0,-1.4439790613954469,4.540814658476248 -596,8.0,5.0,0.0,4.915840805411357 -596,8.0,8.0,0.0,-18.706293706293707 -596,8.0,9.0,0.0,9.090909090909092 -596,8.0,10.0,0.0,4.807692307692308 -596,9.0,5.0,0.0,1.8561002591115965 -596,9.0,8.0,0.0,9.090909090909092 -596,9.0,9.0,13.462042814524237,-41.3837606675224 -596,9.0,16.0,-3.956039125715353,10.317447719844054 -596,9.0,19.0,-1.7848303152666305,3.98535828943083 -596,9.0,20.0,-5.101853820159654,10.98071411292983 -596,9.0,21.0,-2.619319553382597,5.400770303329455 -596,10.0,8.0,0.0,4.807692307692308 -596,10.0,10.0,0.0,-4.807692307692308 -596,11.0,3.0,0.0,4.191255364806866 -596,11.0,11.0,4.621963791495987,-20.31980828014882 -596,11.0,12.0,0.0,7.142857142857143 -596,11.0,13.0,-1.5265676088395577,3.1734252729654173 -596,11.0,14.0,-3.0953961826564296,6.097275864326261 -596,12.0,11.0,0.0,7.142857142857143 -596,12.0,12.0,0.0,-7.142857142857143 -596,13.0,11.0,-1.5265676088395577,3.1734252729654173 -596,13.0,13.0,4.01751987283902,-5.424299332335067 -596,13.0,14.0,-2.4909522639994623,2.250874059369649 -596,14.0,11.0,-3.0953961826564296,6.097275864326261 -596,14.0,13.0,-2.4909522639994623,2.250874059369649 -596,14.0,14.0,9.365498545964757,-16.01163373210796 -596,14.0,17.0,-1.8108011504072024,3.687418931630696 -596,14.0,22.0,-1.9683489489016612,3.976064876781356 -596,15.0,15.0,1.3190669363537617,-4.8407742721532125 -596,15.0,16.0,-1.3190669363537617,4.8407742721532125 -596,16.0,9.0,-3.956039125715353,10.317447719844054 -596,16.0,15.0,-1.3190669363537617,4.8407742721532125 -596,16.0,16.0,5.275106062069114,-15.158221991997266 -596,17.0,14.0,-1.8108011504072024,3.687418931630696 -596,17.0,17.0,4.886487584415919,-9.906177730909668 -596,17.0,18.0,-3.0756864340087167,6.218758799278971 -596,18.0,17.0,-3.0756864340087167,6.218758799278971 -596,18.0,18.0,8.958039375185187,-17.98346468163191 -596,18.0,19.0,-5.88235294117647,11.76470588235294 -596,19.0,9.0,-1.7848303152666305,3.98535828943083 -596,19.0,18.0,-5.88235294117647,11.76470588235294 -596,19.0,19.0,7.6671832564431,-15.75006417178377 -596,20.0,9.0,-5.101853820159654,10.98071411292983 -596,20.0,20.0,21.876495189895888,-45.10843276170355 -596,20.0,21.0,-16.774641369736234,34.127718648773715 -596,21.0,9.0,-2.619319553382597,5.400770303329455 -596,21.0,20.0,-16.774641369736234,34.127718648773715 -596,21.0,21.0,21.93449907537439,-43.48289181517921 -596,21.0,23.0,-2.5405381522555563,3.95440286307604 -596,22.0,14.0,-1.9683489489016612,3.976064876781356 -596,22.0,22.0,3.429754555384988,-6.965303617315433 -596,22.0,23.0,-1.4614056064833263,2.989238740534077 -596,23.0,21.0,-2.5405381522555563,3.95440286307604 -596,23.0,22.0,-1.4614056064833263,2.989238740534077 -596,23.0,23.0,5.311836702613133,-9.188263657315172 -596,23.0,24.0,-1.3098929438742493,2.287622053705056 -596,24.0,23.0,-1.3098929438742493,2.287622053705056 -596,24.0,24.0,4.495715080321987,-7.864978761969621 -596,24.0,25.0,-1.2165301194494855,1.8171440463475024 -596,24.0,26.0,-1.9692920169982515,3.760212661917064 -596,25.0,24.0,-1.2165301194494855,1.8171440463475024 -596,25.0,25.0,1.2165301194494855,-1.8171440463475024 -596,26.0,24.0,-1.9692920169982515,3.760212661917064 -596,26.0,26.0,3.652281470778589,-9.46044252232512 -596,26.0,27.0,0.0,2.608731947574922 -596,26.0,28.0,-0.99553355095268,1.881005840357816 -596,26.0,29.0,-0.6874559028276572,1.293971494797717 -596,27.0,5.0,-4.362844058012917,15.463571542897856 -596,27.0,7.0,-1.4439790613954469,4.540814658476248 -596,27.0,26.0,0.0,2.608731947574922 -596,27.0,27.0,5.806823119408364,-22.67145722159613 -596,28.0,26.0,-0.99553355095268,1.881005840357816 -596,28.0,28.0,1.9075867579849564,-3.604364401207048 -596,28.0,29.0,-0.9120532070322764,1.7233585608492326 -596,29.0,26.0,-0.6874559028276572,1.293971494797717 -596,29.0,28.0,-0.9120532070322764,1.7233585608492326 -596,29.0,29.0,1.5995091098599337,-3.0173300556469496 -597,0.0,0.0,6.765516048652632,-21.23160167089863 -597,0.0,1.0,-5.224646179885656,15.646726840803398 -597,0.0,2.0,-1.5408698687669766,5.631674830095234 -597,1.0,0.0,-5.224646179885656,15.646726840803398 -597,1.0,1.0,9.75228216552403,-30.648662892676068 -597,1.0,3.0,-1.7055303166990268,5.1973792282565086 -597,1.0,4.0,-1.1359607881738778,4.772479328281356 -597,1.0,5.0,-1.6861448807654689,5.116477495334806 -597,2.0,0.0,-1.5408698687669766,5.631674830095234 -597,2.0,2.0,9.736318911079088,-29.13794745915803 -597,2.0,3.0,-8.19544904231211,23.5308726290628 -597,3.0,1.0,-1.7055303166990268,5.1973792282565086 -597,3.0,2.0,-8.19544904231211,23.5308726290628 -597,3.0,3.0,16.314103089185693,-55.509410535254254 -597,3.0,5.0,-6.413123730174556,22.31120356548123 -597,3.0,11.0,0.0,4.191255364806866 -597,4.0,1.0,-1.1359607881738778,4.772479328281356 -597,4.0,4.0,4.089980824135861,-12.190647245055052 -597,4.0,6.0,-2.954020035961983,7.449267916773697 -597,5.0,1.0,-1.6861448807654689,5.116477495334806 -597,5.0,3.0,-6.413123730174556,22.31120356548123 -597,5.0,5.0,22.341631269034565,-82.8291478657789 -597,5.0,6.0,-3.590210423980992,11.02611441072814 -597,5.0,7.0,-6.289308176100628,22.0125786163522 -597,5.0,8.0,0.0,4.915840805411357 -597,5.0,9.0,0.0,1.8561002591115965 -597,5.0,27.0,-4.362844058012917,15.463571542897856 -597,6.0,4.0,-2.954020035961983,7.449267916773697 -597,6.0,5.0,-3.590210423980992,11.02611441072814 -597,6.0,6.0,6.544230459942975,-18.45668232750184 -597,7.0,5.0,-6.289308176100628,22.0125786163522 -597,7.0,7.0,7.733287237496075,-26.527493274828448 -597,7.0,27.0,-1.4439790613954469,4.540814658476248 -597,8.0,5.0,0.0,4.915840805411357 -597,8.0,8.0,0.0,-18.706293706293707 -597,8.0,9.0,0.0,9.090909090909092 -597,8.0,10.0,0.0,4.807692307692308 -597,9.0,5.0,0.0,1.8561002591115965 -597,9.0,8.0,0.0,9.090909090909092 -597,9.0,9.0,13.462042814524237,-41.3837606675224 -597,9.0,16.0,-3.956039125715353,10.317447719844054 -597,9.0,19.0,-1.7848303152666305,3.98535828943083 -597,9.0,20.0,-5.101853820159654,10.98071411292983 -597,9.0,21.0,-2.619319553382597,5.400770303329455 -597,10.0,8.0,0.0,4.807692307692308 -597,10.0,10.0,0.0,-4.807692307692308 -597,11.0,3.0,0.0,4.191255364806866 -597,11.0,11.0,6.573961583776156,-24.424167659260668 -597,11.0,12.0,0.0,7.142857142857143 -597,11.0,13.0,-1.5265676088395577,3.1734252729654173 -597,11.0,14.0,-3.0953961826564296,6.097275864326261 -597,11.0,15.0,-1.9519977922801688,4.104359379111847 -597,12.0,11.0,0.0,7.142857142857143 -597,12.0,12.0,0.0,-7.142857142857143 -597,13.0,11.0,-1.5265676088395577,3.1734252729654173 -597,13.0,13.0,4.01751987283902,-5.424299332335067 -597,13.0,14.0,-2.4909522639994623,2.250874059369649 -597,14.0,11.0,-3.0953961826564296,6.097275864326261 -597,14.0,13.0,-2.4909522639994623,2.250874059369649 -597,14.0,14.0,9.365498545964757,-16.01163373210796 -597,14.0,17.0,-1.8108011504072024,3.687418931630696 -597,14.0,22.0,-1.9683489489016612,3.976064876781356 -597,15.0,11.0,-1.9519977922801688,4.104359379111847 -597,15.0,15.0,3.271064728633931,-8.94513365126506 -597,15.0,16.0,-1.3190669363537617,4.8407742721532125 -597,16.0,9.0,-3.956039125715353,10.317447719844054 -597,16.0,15.0,-1.3190669363537617,4.8407742721532125 -597,16.0,16.0,5.275106062069114,-15.158221991997266 -597,17.0,14.0,-1.8108011504072024,3.687418931630696 -597,17.0,17.0,4.886487584415919,-9.906177730909668 -597,17.0,18.0,-3.0756864340087167,6.218758799278971 -597,18.0,17.0,-3.0756864340087167,6.218758799278971 -597,18.0,18.0,8.958039375185187,-17.98346468163191 -597,18.0,19.0,-5.88235294117647,11.76470588235294 -597,19.0,9.0,-1.7848303152666305,3.98535828943083 -597,19.0,18.0,-5.88235294117647,11.76470588235294 -597,19.0,19.0,7.6671832564431,-15.75006417178377 -597,20.0,9.0,-5.101853820159654,10.98071411292983 -597,20.0,20.0,21.876495189895888,-45.10843276170355 -597,20.0,21.0,-16.774641369736234,34.127718648773715 -597,21.0,9.0,-2.619319553382597,5.400770303329455 -597,21.0,20.0,-16.774641369736234,34.127718648773715 -597,21.0,21.0,21.93449907537439,-43.48289181517921 -597,21.0,23.0,-2.5405381522555563,3.95440286307604 -597,22.0,14.0,-1.9683489489016612,3.976064876781356 -597,22.0,22.0,3.429754555384988,-6.965303617315433 -597,22.0,23.0,-1.4614056064833263,2.989238740534077 -597,23.0,21.0,-2.5405381522555563,3.95440286307604 -597,23.0,22.0,-1.4614056064833263,2.989238740534077 -597,23.0,23.0,5.311836702613133,-9.188263657315172 -597,23.0,24.0,-1.3098929438742493,2.287622053705056 -597,24.0,23.0,-1.3098929438742493,2.287622053705056 -597,24.0,24.0,4.495715080321987,-7.864978761969621 -597,24.0,25.0,-1.2165301194494855,1.8171440463475024 -597,24.0,26.0,-1.9692920169982515,3.760212661917064 -597,25.0,24.0,-1.2165301194494855,1.8171440463475024 -597,25.0,25.0,1.2165301194494855,-1.8171440463475024 -597,26.0,24.0,-1.9692920169982515,3.760212661917064 -597,26.0,26.0,3.652281470778589,-9.46044252232512 -597,26.0,27.0,0.0,2.608731947574922 -597,26.0,28.0,-0.99553355095268,1.881005840357816 -597,26.0,29.0,-0.6874559028276572,1.293971494797717 -597,27.0,5.0,-4.362844058012917,15.463571542897856 -597,27.0,7.0,-1.4439790613954469,4.540814658476248 -597,27.0,26.0,0.0,2.608731947574922 -597,27.0,27.0,5.806823119408364,-22.67145722159613 -597,28.0,26.0,-0.99553355095268,1.881005840357816 -597,28.0,28.0,1.9075867579849564,-3.604364401207048 -597,28.0,29.0,-0.9120532070322764,1.7233585608492326 -597,29.0,26.0,-0.6874559028276572,1.293971494797717 -597,29.0,28.0,-0.9120532070322764,1.7233585608492326 -597,29.0,29.0,1.5995091098599337,-3.0173300556469496 -598,0.0,0.0,6.765516048652632,-21.23160167089863 -598,0.0,1.0,-5.224646179885656,15.646726840803398 -598,0.0,2.0,-1.5408698687669766,5.631674830095234 -598,1.0,0.0,-5.224646179885656,15.646726840803398 -598,1.0,1.0,9.75228216552403,-30.648662892676068 -598,1.0,3.0,-1.7055303166990268,5.1973792282565086 -598,1.0,4.0,-1.1359607881738778,4.772479328281356 -598,1.0,5.0,-1.6861448807654689,5.116477495334806 -598,2.0,0.0,-1.5408698687669766,5.631674830095234 -598,2.0,2.0,9.736318911079088,-29.13794745915803 -598,2.0,3.0,-8.19544904231211,23.5308726290628 -598,3.0,1.0,-1.7055303166990268,5.1973792282565086 -598,3.0,2.0,-8.19544904231211,23.5308726290628 -598,3.0,3.0,16.314103089185693,-55.509410535254254 -598,3.0,5.0,-6.413123730174556,22.31120356548123 -598,3.0,11.0,0.0,4.191255364806866 -598,4.0,1.0,-1.1359607881738778,4.772479328281356 -598,4.0,4.0,4.089980824135861,-12.190647245055052 -598,4.0,6.0,-2.954020035961983,7.449267916773697 -598,5.0,1.0,-1.6861448807654689,5.116477495334806 -598,5.0,3.0,-6.413123730174556,22.31120356548123 -598,5.0,5.0,18.75142084505357,-71.81153345505078 -598,5.0,7.0,-6.289308176100628,22.0125786163522 -598,5.0,8.0,0.0,4.915840805411357 -598,5.0,9.0,0.0,1.8561002591115965 -598,5.0,27.0,-4.362844058012917,15.463571542897856 -598,6.0,4.0,-2.954020035961983,7.449267916773697 -598,6.0,6.0,2.954020035961983,-7.439067916773697 -598,7.0,5.0,-6.289308176100628,22.0125786163522 -598,7.0,7.0,7.733287237496075,-26.527493274828448 -598,7.0,27.0,-1.4439790613954469,4.540814658476248 -598,8.0,5.0,0.0,4.915840805411357 -598,8.0,8.0,0.0,-18.706293706293707 -598,8.0,9.0,0.0,9.090909090909092 -598,8.0,10.0,0.0,4.807692307692308 -598,9.0,5.0,0.0,1.8561002591115965 -598,9.0,8.0,0.0,9.090909090909092 -598,9.0,9.0,13.462042814524237,-41.3837606675224 -598,9.0,16.0,-3.956039125715353,10.317447719844054 -598,9.0,19.0,-1.7848303152666305,3.98535828943083 -598,9.0,20.0,-5.101853820159654,10.98071411292983 -598,9.0,21.0,-2.619319553382597,5.400770303329455 -598,10.0,8.0,0.0,4.807692307692308 -598,10.0,10.0,0.0,-4.807692307692308 -598,11.0,3.0,0.0,4.191255364806866 -598,11.0,11.0,6.573961583776156,-24.424167659260668 -598,11.0,12.0,0.0,7.142857142857143 -598,11.0,13.0,-1.5265676088395577,3.1734252729654173 -598,11.0,14.0,-3.0953961826564296,6.097275864326261 -598,11.0,15.0,-1.9519977922801688,4.104359379111847 -598,12.0,11.0,0.0,7.142857142857143 -598,12.0,12.0,0.0,-7.142857142857143 -598,13.0,11.0,-1.5265676088395577,3.1734252729654173 -598,13.0,13.0,4.01751987283902,-5.424299332335067 -598,13.0,14.0,-2.4909522639994623,2.250874059369649 -598,14.0,11.0,-3.0953961826564296,6.097275864326261 -598,14.0,13.0,-2.4909522639994623,2.250874059369649 -598,14.0,14.0,9.365498545964757,-16.01163373210796 -598,14.0,17.0,-1.8108011504072024,3.687418931630696 -598,14.0,22.0,-1.9683489489016612,3.976064876781356 -598,15.0,11.0,-1.9519977922801688,4.104359379111847 -598,15.0,15.0,3.271064728633931,-8.94513365126506 -598,15.0,16.0,-1.3190669363537617,4.8407742721532125 -598,16.0,9.0,-3.956039125715353,10.317447719844054 -598,16.0,15.0,-1.3190669363537617,4.8407742721532125 -598,16.0,16.0,5.275106062069114,-15.158221991997266 -598,17.0,14.0,-1.8108011504072024,3.687418931630696 -598,17.0,17.0,4.886487584415919,-9.906177730909668 -598,17.0,18.0,-3.0756864340087167,6.218758799278971 -598,18.0,17.0,-3.0756864340087167,6.218758799278971 -598,18.0,18.0,8.958039375185187,-17.98346468163191 -598,18.0,19.0,-5.88235294117647,11.76470588235294 -598,19.0,9.0,-1.7848303152666305,3.98535828943083 -598,19.0,18.0,-5.88235294117647,11.76470588235294 -598,19.0,19.0,7.6671832564431,-15.75006417178377 -598,20.0,9.0,-5.101853820159654,10.98071411292983 -598,20.0,20.0,21.876495189895888,-45.10843276170355 -598,20.0,21.0,-16.774641369736234,34.127718648773715 -598,21.0,9.0,-2.619319553382597,5.400770303329455 -598,21.0,20.0,-16.774641369736234,34.127718648773715 -598,21.0,21.0,21.93449907537439,-43.48289181517921 -598,21.0,23.0,-2.5405381522555563,3.95440286307604 -598,22.0,14.0,-1.9683489489016612,3.976064876781356 -598,22.0,22.0,3.429754555384988,-6.965303617315433 -598,22.0,23.0,-1.4614056064833263,2.989238740534077 -598,23.0,21.0,-2.5405381522555563,3.95440286307604 -598,23.0,22.0,-1.4614056064833263,2.989238740534077 -598,23.0,23.0,5.311836702613133,-9.188263657315172 -598,23.0,24.0,-1.3098929438742493,2.287622053705056 -598,24.0,23.0,-1.3098929438742493,2.287622053705056 -598,24.0,24.0,4.495715080321987,-7.864978761969621 -598,24.0,25.0,-1.2165301194494855,1.8171440463475024 -598,24.0,26.0,-1.9692920169982515,3.760212661917064 -598,25.0,24.0,-1.2165301194494855,1.8171440463475024 -598,25.0,25.0,1.2165301194494855,-1.8171440463475024 -598,26.0,24.0,-1.9692920169982515,3.760212661917064 -598,26.0,26.0,3.652281470778589,-9.46044252232512 -598,26.0,27.0,0.0,2.608731947574922 -598,26.0,28.0,-0.99553355095268,1.881005840357816 -598,26.0,29.0,-0.6874559028276572,1.293971494797717 -598,27.0,5.0,-4.362844058012917,15.463571542897856 -598,27.0,7.0,-1.4439790613954469,4.540814658476248 -598,27.0,26.0,0.0,2.608731947574922 -598,27.0,27.0,5.806823119408364,-22.67145722159613 -598,28.0,26.0,-0.99553355095268,1.881005840357816 -598,28.0,28.0,1.9075867579849564,-3.604364401207048 -598,28.0,29.0,-0.9120532070322764,1.7233585608492326 -598,29.0,26.0,-0.6874559028276572,1.293971494797717 -598,29.0,28.0,-0.9120532070322764,1.7233585608492326 -598,29.0,29.0,1.5995091098599337,-3.0173300556469496 -599,0.0,0.0,6.765516048652632,-21.23160167089863 -599,0.0,1.0,-5.224646179885656,15.646726840803398 -599,0.0,2.0,-1.5408698687669766,5.631674830095234 -599,1.0,0.0,-5.224646179885656,15.646726840803398 -599,1.0,1.0,9.75228216552403,-30.648662892676068 -599,1.0,3.0,-1.7055303166990268,5.1973792282565086 -599,1.0,4.0,-1.1359607881738778,4.772479328281356 -599,1.0,5.0,-1.6861448807654689,5.116477495334806 -599,2.0,0.0,-1.5408698687669766,5.631674830095234 -599,2.0,2.0,9.736318911079088,-29.13794745915803 -599,2.0,3.0,-8.19544904231211,23.5308726290628 -599,3.0,1.0,-1.7055303166990268,5.1973792282565086 -599,3.0,2.0,-8.19544904231211,23.5308726290628 -599,3.0,3.0,16.314103089185693,-55.509410535254254 -599,3.0,5.0,-6.413123730174556,22.31120356548123 -599,3.0,11.0,0.0,4.191255364806866 -599,4.0,1.0,-1.1359607881738778,4.772479328281356 -599,4.0,4.0,4.089980824135861,-12.190647245055052 -599,4.0,6.0,-2.954020035961983,7.449267916773697 -599,5.0,1.0,-1.6861448807654689,5.116477495334806 -599,5.0,3.0,-6.413123730174556,22.31120356548123 -599,5.0,5.0,22.341631269034565,-82.8291478657789 -599,5.0,6.0,-3.590210423980992,11.02611441072814 -599,5.0,7.0,-6.289308176100628,22.0125786163522 -599,5.0,8.0,0.0,4.915840805411357 -599,5.0,9.0,0.0,1.8561002591115965 -599,5.0,27.0,-4.362844058012917,15.463571542897856 -599,6.0,4.0,-2.954020035961983,7.449267916773697 -599,6.0,5.0,-3.590210423980992,11.02611441072814 -599,6.0,6.0,6.544230459942975,-18.45668232750184 -599,7.0,5.0,-6.289308176100628,22.0125786163522 -599,7.0,7.0,7.733287237496075,-26.527493274828448 -599,7.0,27.0,-1.4439790613954469,4.540814658476248 -599,8.0,5.0,0.0,4.915840805411357 -599,8.0,8.0,0.0,-18.706293706293707 -599,8.0,9.0,0.0,9.090909090909092 -599,8.0,10.0,0.0,4.807692307692308 -599,9.0,5.0,0.0,1.8561002591115965 -599,9.0,8.0,0.0,9.090909090909092 -599,9.0,9.0,13.462042814524237,-41.3837606675224 -599,9.0,16.0,-3.956039125715353,10.317447719844054 -599,9.0,19.0,-1.7848303152666305,3.98535828943083 -599,9.0,20.0,-5.101853820159654,10.98071411292983 -599,9.0,21.0,-2.619319553382597,5.400770303329455 -599,10.0,8.0,0.0,4.807692307692308 -599,10.0,10.0,0.0,-4.807692307692308 -599,11.0,3.0,0.0,4.191255364806866 -599,11.0,11.0,6.573961583776156,-24.424167659260668 -599,11.0,12.0,0.0,7.142857142857143 -599,11.0,13.0,-1.5265676088395577,3.1734252729654173 -599,11.0,14.0,-3.0953961826564296,6.097275864326261 -599,11.0,15.0,-1.9519977922801688,4.104359379111847 -599,12.0,11.0,0.0,7.142857142857143 -599,12.0,12.0,0.0,-7.142857142857143 -599,13.0,11.0,-1.5265676088395577,3.1734252729654173 -599,13.0,13.0,4.01751987283902,-5.424299332335067 -599,13.0,14.0,-2.4909522639994623,2.250874059369649 -599,14.0,11.0,-3.0953961826564296,6.097275864326261 -599,14.0,13.0,-2.4909522639994623,2.250874059369649 -599,14.0,14.0,9.365498545964757,-16.01163373210796 -599,14.0,17.0,-1.8108011504072024,3.687418931630696 -599,14.0,22.0,-1.9683489489016612,3.976064876781356 -599,15.0,11.0,-1.9519977922801688,4.104359379111847 -599,15.0,15.0,3.271064728633931,-8.94513365126506 -599,15.0,16.0,-1.3190669363537617,4.8407742721532125 -599,16.0,9.0,-3.956039125715353,10.317447719844054 -599,16.0,15.0,-1.3190669363537617,4.8407742721532125 -599,16.0,16.0,5.275106062069114,-15.158221991997266 -599,17.0,14.0,-1.8108011504072024,3.687418931630696 -599,17.0,17.0,4.886487584415919,-9.906177730909668 -599,17.0,18.0,-3.0756864340087167,6.218758799278971 -599,18.0,17.0,-3.0756864340087167,6.218758799278971 -599,18.0,18.0,8.958039375185187,-17.98346468163191 -599,18.0,19.0,-5.88235294117647,11.76470588235294 -599,19.0,9.0,-1.7848303152666305,3.98535828943083 -599,19.0,18.0,-5.88235294117647,11.76470588235294 -599,19.0,19.0,7.6671832564431,-15.75006417178377 -599,20.0,9.0,-5.101853820159654,10.98071411292983 -599,20.0,20.0,21.876495189895888,-45.10843276170355 -599,20.0,21.0,-16.774641369736234,34.127718648773715 -599,21.0,9.0,-2.619319553382597,5.400770303329455 -599,21.0,20.0,-16.774641369736234,34.127718648773715 -599,21.0,21.0,21.93449907537439,-43.48289181517921 -599,21.0,23.0,-2.5405381522555563,3.95440286307604 -599,22.0,14.0,-1.9683489489016612,3.976064876781356 -599,22.0,22.0,3.429754555384988,-6.965303617315433 -599,22.0,23.0,-1.4614056064833263,2.989238740534077 -599,23.0,21.0,-2.5405381522555563,3.95440286307604 -599,23.0,22.0,-1.4614056064833263,2.989238740534077 -599,23.0,23.0,5.311836702613133,-9.188263657315172 -599,23.0,24.0,-1.3098929438742493,2.287622053705056 -599,24.0,23.0,-1.3098929438742493,2.287622053705056 -599,24.0,24.0,4.495715080321987,-7.864978761969621 -599,24.0,25.0,-1.2165301194494855,1.8171440463475024 -599,24.0,26.0,-1.9692920169982515,3.760212661917064 -599,25.0,24.0,-1.2165301194494855,1.8171440463475024 -599,25.0,25.0,1.2165301194494855,-1.8171440463475024 -599,26.0,24.0,-1.9692920169982515,3.760212661917064 -599,26.0,26.0,3.652281470778589,-9.46044252232512 -599,26.0,27.0,0.0,2.608731947574922 -599,26.0,28.0,-0.99553355095268,1.881005840357816 -599,26.0,29.0,-0.6874559028276572,1.293971494797717 -599,27.0,5.0,-4.362844058012917,15.463571542897856 -599,27.0,7.0,-1.4439790613954469,4.540814658476248 -599,27.0,26.0,0.0,2.608731947574922 -599,27.0,27.0,5.806823119408364,-22.67145722159613 -599,28.0,26.0,-0.99553355095268,1.881005840357816 -599,28.0,28.0,1.9075867579849564,-3.604364401207048 -599,28.0,29.0,-0.9120532070322764,1.7233585608492326 -599,29.0,26.0,-0.6874559028276572,1.293971494797717 -599,29.0,28.0,-0.9120532070322764,1.7233585608492326 -599,29.0,29.0,1.5995091098599337,-3.0173300556469496 -600,0.0,0.0,6.765516048652632,-21.23160167089863 -600,0.0,1.0,-5.224646179885656,15.646726840803398 -600,0.0,2.0,-1.5408698687669766,5.631674830095234 -600,1.0,0.0,-5.224646179885656,15.646726840803398 -600,1.0,1.0,9.75228216552403,-30.648662892676068 -600,1.0,3.0,-1.7055303166990268,5.1973792282565086 -600,1.0,4.0,-1.1359607881738778,4.772479328281356 -600,1.0,5.0,-1.6861448807654689,5.116477495334806 -600,2.0,0.0,-1.5408698687669766,5.631674830095234 -600,2.0,2.0,9.736318911079088,-29.13794745915803 -600,2.0,3.0,-8.19544904231211,23.5308726290628 -600,3.0,1.0,-1.7055303166990268,5.1973792282565086 -600,3.0,2.0,-8.19544904231211,23.5308726290628 -600,3.0,3.0,16.314103089185693,-55.509410535254254 -600,3.0,5.0,-6.413123730174556,22.31120356548123 -600,3.0,11.0,0.0,4.191255364806866 -600,4.0,1.0,-1.1359607881738778,4.772479328281356 -600,4.0,4.0,4.089980824135861,-12.190647245055052 -600,4.0,6.0,-2.954020035961983,7.449267916773697 -600,5.0,1.0,-1.6861448807654689,5.116477495334806 -600,5.0,3.0,-6.413123730174556,22.31120356548123 -600,5.0,5.0,22.341631269034565,-82.8291478657789 -600,5.0,6.0,-3.590210423980992,11.02611441072814 -600,5.0,7.0,-6.289308176100628,22.0125786163522 -600,5.0,8.0,0.0,4.915840805411357 -600,5.0,9.0,0.0,1.8561002591115965 -600,5.0,27.0,-4.362844058012917,15.463571542897856 -600,6.0,4.0,-2.954020035961983,7.449267916773697 -600,6.0,5.0,-3.590210423980992,11.02611441072814 -600,6.0,6.0,6.544230459942975,-18.45668232750184 -600,7.0,5.0,-6.289308176100628,22.0125786163522 -600,7.0,7.0,7.733287237496075,-26.527493274828448 -600,7.0,27.0,-1.4439790613954469,4.540814658476248 -600,8.0,5.0,0.0,4.915840805411357 -600,8.0,8.0,0.0,-18.706293706293707 -600,8.0,9.0,0.0,9.090909090909092 -600,8.0,10.0,0.0,4.807692307692308 -600,9.0,5.0,0.0,1.8561002591115965 -600,9.0,8.0,0.0,9.090909090909092 -600,9.0,9.0,13.462042814524237,-41.3837606675224 -600,9.0,16.0,-3.956039125715353,10.317447719844054 -600,9.0,19.0,-1.7848303152666305,3.98535828943083 -600,9.0,20.0,-5.101853820159654,10.98071411292983 -600,9.0,21.0,-2.619319553382597,5.400770303329455 -600,10.0,8.0,0.0,4.807692307692308 -600,10.0,10.0,0.0,-4.807692307692308 -600,11.0,3.0,0.0,4.191255364806866 -600,11.0,11.0,6.573961583776156,-24.424167659260668 -600,11.0,12.0,0.0,7.142857142857143 -600,11.0,13.0,-1.5265676088395577,3.1734252729654173 -600,11.0,14.0,-3.0953961826564296,6.097275864326261 -600,11.0,15.0,-1.9519977922801688,4.104359379111847 -600,12.0,11.0,0.0,7.142857142857143 -600,12.0,12.0,0.0,-7.142857142857143 -600,13.0,11.0,-1.5265676088395577,3.1734252729654173 -600,13.0,13.0,4.01751987283902,-5.424299332335067 -600,13.0,14.0,-2.4909522639994623,2.250874059369649 -600,14.0,11.0,-3.0953961826564296,6.097275864326261 -600,14.0,13.0,-2.4909522639994623,2.250874059369649 -600,14.0,14.0,9.365498545964757,-16.01163373210796 -600,14.0,17.0,-1.8108011504072024,3.687418931630696 -600,14.0,22.0,-1.9683489489016612,3.976064876781356 -600,15.0,11.0,-1.9519977922801688,4.104359379111847 -600,15.0,15.0,3.271064728633931,-8.94513365126506 -600,15.0,16.0,-1.3190669363537617,4.8407742721532125 -600,16.0,9.0,-3.956039125715353,10.317447719844054 -600,16.0,15.0,-1.3190669363537617,4.8407742721532125 -600,16.0,16.0,5.275106062069114,-15.158221991997266 -600,17.0,14.0,-1.8108011504072024,3.687418931630696 -600,17.0,17.0,4.886487584415919,-9.906177730909668 -600,17.0,18.0,-3.0756864340087167,6.218758799278971 -600,18.0,17.0,-3.0756864340087167,6.218758799278971 -600,18.0,18.0,8.958039375185187,-17.98346468163191 -600,18.0,19.0,-5.88235294117647,11.76470588235294 -600,19.0,9.0,-1.7848303152666305,3.98535828943083 -600,19.0,18.0,-5.88235294117647,11.76470588235294 -600,19.0,19.0,7.6671832564431,-15.75006417178377 -600,20.0,9.0,-5.101853820159654,10.98071411292983 -600,20.0,20.0,21.876495189895888,-45.10843276170355 -600,20.0,21.0,-16.774641369736234,34.127718648773715 -600,21.0,9.0,-2.619319553382597,5.400770303329455 -600,21.0,20.0,-16.774641369736234,34.127718648773715 -600,21.0,21.0,21.93449907537439,-43.48289181517921 -600,21.0,23.0,-2.5405381522555563,3.95440286307604 -600,22.0,14.0,-1.9683489489016612,3.976064876781356 -600,22.0,22.0,3.429754555384988,-6.965303617315433 -600,22.0,23.0,-1.4614056064833263,2.989238740534077 -600,23.0,21.0,-2.5405381522555563,3.95440286307604 -600,23.0,22.0,-1.4614056064833263,2.989238740534077 -600,23.0,23.0,5.311836702613133,-9.188263657315172 -600,23.0,24.0,-1.3098929438742493,2.287622053705056 -600,24.0,23.0,-1.3098929438742493,2.287622053705056 -600,24.0,24.0,4.495715080321987,-7.864978761969621 -600,24.0,25.0,-1.2165301194494855,1.8171440463475024 -600,24.0,26.0,-1.9692920169982515,3.760212661917064 -600,25.0,24.0,-1.2165301194494855,1.8171440463475024 -600,25.0,25.0,1.2165301194494855,-1.8171440463475024 -600,26.0,24.0,-1.9692920169982515,3.760212661917064 -600,26.0,26.0,3.652281470778589,-9.46044252232512 -600,26.0,27.0,0.0,2.608731947574922 -600,26.0,28.0,-0.99553355095268,1.881005840357816 -600,26.0,29.0,-0.6874559028276572,1.293971494797717 -600,27.0,5.0,-4.362844058012917,15.463571542897856 -600,27.0,7.0,-1.4439790613954469,4.540814658476248 -600,27.0,26.0,0.0,2.608731947574922 -600,27.0,27.0,5.806823119408364,-22.67145722159613 -600,28.0,26.0,-0.99553355095268,1.881005840357816 -600,28.0,28.0,1.9075867579849564,-3.604364401207048 -600,28.0,29.0,-0.9120532070322764,1.7233585608492326 -600,29.0,26.0,-0.6874559028276572,1.293971494797717 -600,29.0,28.0,-0.9120532070322764,1.7233585608492326 -600,29.0,29.0,1.5995091098599337,-3.0173300556469496 -601,0.0,0.0,6.765516048652632,-21.23160167089863 -601,0.0,1.0,-5.224646179885656,15.646726840803398 -601,0.0,2.0,-1.5408698687669766,5.631674830095234 -601,1.0,0.0,-5.224646179885656,15.646726840803398 -601,1.0,1.0,9.75228216552403,-30.648662892676068 -601,1.0,3.0,-1.7055303166990268,5.1973792282565086 -601,1.0,4.0,-1.1359607881738778,4.772479328281356 -601,1.0,5.0,-1.6861448807654689,5.116477495334806 -601,2.0,0.0,-1.5408698687669766,5.631674830095234 -601,2.0,2.0,9.736318911079088,-29.13794745915803 -601,2.0,3.0,-8.19544904231211,23.5308726290628 -601,3.0,1.0,-1.7055303166990268,5.1973792282565086 -601,3.0,2.0,-8.19544904231211,23.5308726290628 -601,3.0,3.0,16.314103089185693,-55.509410535254254 -601,3.0,5.0,-6.413123730174556,22.31120356548123 -601,3.0,11.0,0.0,4.191255364806866 -601,4.0,1.0,-1.1359607881738778,4.772479328281356 -601,4.0,4.0,4.089980824135861,-12.190647245055052 -601,4.0,6.0,-2.954020035961983,7.449267916773697 -601,5.0,1.0,-1.6861448807654689,5.116477495334806 -601,5.0,3.0,-6.413123730174556,22.31120356548123 -601,5.0,5.0,22.341631269034565,-82.8291478657789 -601,5.0,6.0,-3.590210423980992,11.02611441072814 -601,5.0,7.0,-6.289308176100628,22.0125786163522 -601,5.0,8.0,0.0,4.915840805411357 -601,5.0,9.0,0.0,1.8561002591115965 -601,5.0,27.0,-4.362844058012917,15.463571542897856 -601,6.0,4.0,-2.954020035961983,7.449267916773697 -601,6.0,5.0,-3.590210423980992,11.02611441072814 -601,6.0,6.0,6.544230459942975,-18.45668232750184 -601,7.0,5.0,-6.289308176100628,22.0125786163522 -601,7.0,7.0,7.733287237496075,-26.527493274828448 -601,7.0,27.0,-1.4439790613954469,4.540814658476248 -601,8.0,5.0,0.0,4.915840805411357 -601,8.0,8.0,0.0,-18.706293706293707 -601,8.0,9.0,0.0,9.090909090909092 -601,8.0,10.0,0.0,4.807692307692308 -601,9.0,5.0,0.0,1.8561002591115965 -601,9.0,8.0,0.0,9.090909090909092 -601,9.0,9.0,9.506003688808882,-31.06631294767834 -601,9.0,19.0,-1.7848303152666305,3.98535828943083 -601,9.0,20.0,-5.101853820159654,10.98071411292983 -601,9.0,21.0,-2.619319553382597,5.400770303329455 -601,10.0,8.0,0.0,4.807692307692308 -601,10.0,10.0,0.0,-4.807692307692308 -601,11.0,3.0,0.0,4.191255364806866 -601,11.0,11.0,6.573961583776156,-24.424167659260668 -601,11.0,12.0,0.0,7.142857142857143 -601,11.0,13.0,-1.5265676088395577,3.1734252729654173 -601,11.0,14.0,-3.0953961826564296,6.097275864326261 -601,11.0,15.0,-1.9519977922801688,4.104359379111847 -601,12.0,11.0,0.0,7.142857142857143 -601,12.0,12.0,0.0,-7.142857142857143 -601,13.0,11.0,-1.5265676088395577,3.1734252729654173 -601,13.0,13.0,4.01751987283902,-5.424299332335067 -601,13.0,14.0,-2.4909522639994623,2.250874059369649 -601,14.0,11.0,-3.0953961826564296,6.097275864326261 -601,14.0,13.0,-2.4909522639994623,2.250874059369649 -601,14.0,14.0,9.365498545964757,-16.01163373210796 -601,14.0,17.0,-1.8108011504072024,3.687418931630696 -601,14.0,22.0,-1.9683489489016612,3.976064876781356 -601,15.0,11.0,-1.9519977922801688,4.104359379111847 -601,15.0,15.0,3.271064728633931,-8.94513365126506 -601,15.0,16.0,-1.3190669363537617,4.8407742721532125 -601,16.0,15.0,-1.3190669363537617,4.8407742721532125 -601,16.0,16.0,1.3190669363537617,-4.8407742721532125 -601,17.0,14.0,-1.8108011504072024,3.687418931630696 -601,17.0,17.0,4.886487584415919,-9.906177730909668 -601,17.0,18.0,-3.0756864340087167,6.218758799278971 -601,18.0,17.0,-3.0756864340087167,6.218758799278971 -601,18.0,18.0,8.958039375185187,-17.98346468163191 -601,18.0,19.0,-5.88235294117647,11.76470588235294 -601,19.0,9.0,-1.7848303152666305,3.98535828943083 -601,19.0,18.0,-5.88235294117647,11.76470588235294 -601,19.0,19.0,7.6671832564431,-15.75006417178377 -601,20.0,9.0,-5.101853820159654,10.98071411292983 -601,20.0,20.0,21.876495189895888,-45.10843276170355 -601,20.0,21.0,-16.774641369736234,34.127718648773715 -601,21.0,9.0,-2.619319553382597,5.400770303329455 -601,21.0,20.0,-16.774641369736234,34.127718648773715 -601,21.0,21.0,19.393960923118836,-39.52848895210317 -601,22.0,14.0,-1.9683489489016612,3.976064876781356 -601,22.0,22.0,3.429754555384988,-6.965303617315433 -601,22.0,23.0,-1.4614056064833263,2.989238740534077 -601,23.0,22.0,-1.4614056064833263,2.989238740534077 -601,23.0,23.0,2.771298550357576,-5.233860794239132 -601,23.0,24.0,-1.3098929438742493,2.287622053705056 -601,24.0,23.0,-1.3098929438742493,2.287622053705056 -601,24.0,24.0,2.526423063323735,-4.104766100052558 -601,24.0,25.0,-1.2165301194494855,1.8171440463475024 -601,25.0,24.0,-1.2165301194494855,1.8171440463475024 -601,25.0,25.0,1.2165301194494855,-1.8171440463475024 -601,26.0,26.0,1.6829894537803372,-5.700229860408058 -601,26.0,27.0,0.0,2.608731947574922 -601,26.0,28.0,-0.99553355095268,1.881005840357816 -601,26.0,29.0,-0.6874559028276572,1.293971494797717 -601,27.0,5.0,-4.362844058012917,15.463571542897856 -601,27.0,7.0,-1.4439790613954469,4.540814658476248 -601,27.0,26.0,0.0,2.608731947574922 -601,27.0,27.0,5.806823119408364,-22.67145722159613 -601,28.0,26.0,-0.99553355095268,1.881005840357816 -601,28.0,28.0,1.9075867579849564,-3.604364401207048 -601,28.0,29.0,-0.9120532070322764,1.7233585608492326 -601,29.0,26.0,-0.6874559028276572,1.293971494797717 -601,29.0,28.0,-0.9120532070322764,1.7233585608492326 -601,29.0,29.0,1.5995091098599337,-3.0173300556469496 -602,0.0,0.0,6.765516048652632,-21.23160167089863 -602,0.0,1.0,-5.224646179885656,15.646726840803398 -602,0.0,2.0,-1.5408698687669766,5.631674830095234 -602,1.0,0.0,-5.224646179885656,15.646726840803398 -602,1.0,1.0,9.75228216552403,-30.648662892676068 -602,1.0,3.0,-1.7055303166990268,5.1973792282565086 -602,1.0,4.0,-1.1359607881738778,4.772479328281356 -602,1.0,5.0,-1.6861448807654689,5.116477495334806 -602,2.0,0.0,-1.5408698687669766,5.631674830095234 -602,2.0,2.0,9.736318911079088,-29.13794745915803 -602,2.0,3.0,-8.19544904231211,23.5308726290628 -602,3.0,1.0,-1.7055303166990268,5.1973792282565086 -602,3.0,2.0,-8.19544904231211,23.5308726290628 -602,3.0,3.0,16.314103089185693,-55.509410535254254 -602,3.0,5.0,-6.413123730174556,22.31120356548123 -602,3.0,11.0,0.0,4.191255364806866 -602,4.0,1.0,-1.1359607881738778,4.772479328281356 -602,4.0,4.0,4.089980824135861,-12.190647245055052 -602,4.0,6.0,-2.954020035961983,7.449267916773697 -602,5.0,1.0,-1.6861448807654689,5.116477495334806 -602,5.0,3.0,-6.413123730174556,22.31120356548123 -602,5.0,5.0,22.341631269034565,-82.8291478657789 -602,5.0,6.0,-3.590210423980992,11.02611441072814 -602,5.0,7.0,-6.289308176100628,22.0125786163522 -602,5.0,8.0,0.0,4.915840805411357 -602,5.0,9.0,0.0,1.8561002591115965 -602,5.0,27.0,-4.362844058012917,15.463571542897856 -602,6.0,4.0,-2.954020035961983,7.449267916773697 -602,6.0,5.0,-3.590210423980992,11.02611441072814 -602,6.0,6.0,6.544230459942975,-18.45668232750184 -602,7.0,5.0,-6.289308176100628,22.0125786163522 -602,7.0,7.0,7.733287237496075,-26.527493274828448 -602,7.0,27.0,-1.4439790613954469,4.540814658476248 -602,8.0,5.0,0.0,4.915840805411357 -602,8.0,8.0,0.0,-18.706293706293707 -602,8.0,9.0,0.0,9.090909090909092 -602,8.0,10.0,0.0,4.807692307692308 -602,9.0,5.0,0.0,1.8561002591115965 -602,9.0,8.0,0.0,9.090909090909092 -602,9.0,9.0,13.462042814524237,-41.3837606675224 -602,9.0,16.0,-3.956039125715353,10.317447719844054 -602,9.0,19.0,-1.7848303152666305,3.98535828943083 -602,9.0,20.0,-5.101853820159654,10.98071411292983 -602,9.0,21.0,-2.619319553382597,5.400770303329455 -602,10.0,8.0,0.0,4.807692307692308 -602,10.0,10.0,0.0,-4.807692307692308 -602,11.0,3.0,0.0,4.191255364806866 -602,11.0,11.0,6.573961583776156,-24.424167659260668 -602,11.0,12.0,0.0,7.142857142857143 -602,11.0,13.0,-1.5265676088395577,3.1734252729654173 -602,11.0,14.0,-3.0953961826564296,6.097275864326261 -602,11.0,15.0,-1.9519977922801688,4.104359379111847 -602,12.0,11.0,0.0,7.142857142857143 -602,12.0,12.0,0.0,-7.142857142857143 -602,13.0,11.0,-1.5265676088395577,3.1734252729654173 -602,13.0,13.0,4.01751987283902,-5.424299332335067 -602,13.0,14.0,-2.4909522639994623,2.250874059369649 -602,14.0,11.0,-3.0953961826564296,6.097275864326261 -602,14.0,13.0,-2.4909522639994623,2.250874059369649 -602,14.0,14.0,9.365498545964757,-16.01163373210796 -602,14.0,17.0,-1.8108011504072024,3.687418931630696 -602,14.0,22.0,-1.9683489489016612,3.976064876781356 -602,15.0,11.0,-1.9519977922801688,4.104359379111847 -602,15.0,15.0,3.271064728633931,-8.94513365126506 -602,15.0,16.0,-1.3190669363537617,4.8407742721532125 -602,16.0,9.0,-3.956039125715353,10.317447719844054 -602,16.0,15.0,-1.3190669363537617,4.8407742721532125 -602,16.0,16.0,5.275106062069114,-15.158221991997266 -602,17.0,14.0,-1.8108011504072024,3.687418931630696 -602,17.0,17.0,4.886487584415919,-9.906177730909668 -602,17.0,18.0,-3.0756864340087167,6.218758799278971 -602,18.0,17.0,-3.0756864340087167,6.218758799278971 -602,18.0,18.0,8.958039375185187,-17.98346468163191 -602,18.0,19.0,-5.88235294117647,11.76470588235294 -602,19.0,9.0,-1.7848303152666305,3.98535828943083 -602,19.0,18.0,-5.88235294117647,11.76470588235294 -602,19.0,19.0,7.6671832564431,-15.75006417178377 -602,20.0,9.0,-5.101853820159654,10.98071411292983 -602,20.0,20.0,21.876495189895888,-45.10843276170355 -602,20.0,21.0,-16.774641369736234,34.127718648773715 -602,21.0,9.0,-2.619319553382597,5.400770303329455 -602,21.0,20.0,-16.774641369736234,34.127718648773715 -602,21.0,21.0,21.93449907537439,-43.48289181517921 -602,21.0,23.0,-2.5405381522555563,3.95440286307604 -602,22.0,14.0,-1.9683489489016612,3.976064876781356 -602,22.0,22.0,3.429754555384988,-6.965303617315433 -602,22.0,23.0,-1.4614056064833263,2.989238740534077 -602,23.0,21.0,-2.5405381522555563,3.95440286307604 -602,23.0,22.0,-1.4614056064833263,2.989238740534077 -602,23.0,23.0,5.311836702613133,-9.188263657315172 -602,23.0,24.0,-1.3098929438742493,2.287622053705056 -602,24.0,23.0,-1.3098929438742493,2.287622053705056 -602,24.0,24.0,4.495715080321987,-7.864978761969621 -602,24.0,25.0,-1.2165301194494855,1.8171440463475024 -602,24.0,26.0,-1.9692920169982515,3.760212661917064 -602,25.0,24.0,-1.2165301194494855,1.8171440463475024 -602,25.0,25.0,1.2165301194494855,-1.8171440463475024 -602,26.0,24.0,-1.9692920169982515,3.760212661917064 -602,26.0,26.0,3.652281470778589,-9.46044252232512 -602,26.0,27.0,0.0,2.608731947574922 -602,26.0,28.0,-0.99553355095268,1.881005840357816 -602,26.0,29.0,-0.6874559028276572,1.293971494797717 -602,27.0,5.0,-4.362844058012917,15.463571542897856 -602,27.0,7.0,-1.4439790613954469,4.540814658476248 -602,27.0,26.0,0.0,2.608731947574922 -602,27.0,27.0,5.806823119408364,-22.67145722159613 -602,28.0,26.0,-0.99553355095268,1.881005840357816 -602,28.0,28.0,1.9075867579849564,-3.604364401207048 -602,28.0,29.0,-0.9120532070322764,1.7233585608492326 -602,29.0,26.0,-0.6874559028276572,1.293971494797717 -602,29.0,28.0,-0.9120532070322764,1.7233585608492326 -602,29.0,29.0,1.5995091098599337,-3.0173300556469496 -603,0.0,0.0,6.765516048652632,-21.23160167089863 -603,0.0,1.0,-5.224646179885656,15.646726840803398 -603,0.0,2.0,-1.5408698687669766,5.631674830095234 -603,1.0,0.0,-5.224646179885656,15.646726840803398 -603,1.0,1.0,8.61632137735015,-25.897083564394716 -603,1.0,3.0,-1.7055303166990268,5.1973792282565086 -603,1.0,5.0,-1.6861448807654689,5.116477495334806 -603,2.0,0.0,-1.5408698687669766,5.631674830095234 -603,2.0,2.0,9.736318911079088,-29.13794745915803 -603,2.0,3.0,-8.19544904231211,23.5308726290628 -603,3.0,1.0,-1.7055303166990268,5.1973792282565086 -603,3.0,2.0,-8.19544904231211,23.5308726290628 -603,3.0,3.0,9.900979359011137,-33.202706969773025 -603,3.0,11.0,0.0,4.191255364806866 -603,4.0,4.0,2.954020035961983,-7.439067916773697 -603,4.0,6.0,-2.954020035961983,7.449267916773697 -603,5.0,1.0,-1.6861448807654689,5.116477495334806 -603,5.0,5.0,15.928507538860009,-60.52244430029767 -603,5.0,6.0,-3.590210423980992,11.02611441072814 -603,5.0,7.0,-6.289308176100628,22.0125786163522 -603,5.0,8.0,0.0,4.915840805411357 -603,5.0,9.0,0.0,1.8561002591115965 -603,5.0,27.0,-4.362844058012917,15.463571542897856 -603,6.0,4.0,-2.954020035961983,7.449267916773697 -603,6.0,5.0,-3.590210423980992,11.02611441072814 -603,6.0,6.0,6.544230459942975,-18.45668232750184 -603,7.0,5.0,-6.289308176100628,22.0125786163522 -603,7.0,7.0,7.733287237496075,-26.527493274828448 -603,7.0,27.0,-1.4439790613954469,4.540814658476248 -603,8.0,5.0,0.0,4.915840805411357 -603,8.0,8.0,0.0,-18.706293706293707 -603,8.0,9.0,0.0,9.090909090909092 -603,8.0,10.0,0.0,4.807692307692308 -603,9.0,5.0,0.0,1.8561002591115965 -603,9.0,8.0,0.0,9.090909090909092 -603,9.0,9.0,13.462042814524237,-41.3837606675224 -603,9.0,16.0,-3.956039125715353,10.317447719844054 -603,9.0,19.0,-1.7848303152666305,3.98535828943083 -603,9.0,20.0,-5.101853820159654,10.98071411292983 -603,9.0,21.0,-2.619319553382597,5.400770303329455 -603,10.0,8.0,0.0,4.807692307692308 -603,10.0,10.0,0.0,-4.807692307692308 -603,11.0,3.0,0.0,4.191255364806866 -603,11.0,11.0,6.573961583776156,-24.424167659260668 -603,11.0,12.0,0.0,7.142857142857143 -603,11.0,13.0,-1.5265676088395577,3.1734252729654173 -603,11.0,14.0,-3.0953961826564296,6.097275864326261 -603,11.0,15.0,-1.9519977922801688,4.104359379111847 -603,12.0,11.0,0.0,7.142857142857143 -603,12.0,12.0,0.0,-7.142857142857143 -603,13.0,11.0,-1.5265676088395577,3.1734252729654173 -603,13.0,13.0,4.01751987283902,-5.424299332335067 -603,13.0,14.0,-2.4909522639994623,2.250874059369649 -603,14.0,11.0,-3.0953961826564296,6.097275864326261 -603,14.0,13.0,-2.4909522639994623,2.250874059369649 -603,14.0,14.0,9.365498545964757,-16.01163373210796 -603,14.0,17.0,-1.8108011504072024,3.687418931630696 -603,14.0,22.0,-1.9683489489016612,3.976064876781356 -603,15.0,11.0,-1.9519977922801688,4.104359379111847 -603,15.0,15.0,1.9519977922801688,-4.104359379111847 -603,16.0,9.0,-3.956039125715353,10.317447719844054 -603,16.0,16.0,3.956039125715353,-10.317447719844054 -603,17.0,14.0,-1.8108011504072024,3.687418931630696 -603,17.0,17.0,4.886487584415919,-9.906177730909668 -603,17.0,18.0,-3.0756864340087167,6.218758799278971 -603,18.0,17.0,-3.0756864340087167,6.218758799278971 -603,18.0,18.0,8.958039375185187,-17.98346468163191 -603,18.0,19.0,-5.88235294117647,11.76470588235294 -603,19.0,9.0,-1.7848303152666305,3.98535828943083 -603,19.0,18.0,-5.88235294117647,11.76470588235294 -603,19.0,19.0,7.6671832564431,-15.75006417178377 -603,20.0,9.0,-5.101853820159654,10.98071411292983 -603,20.0,20.0,21.876495189895888,-45.10843276170355 -603,20.0,21.0,-16.774641369736234,34.127718648773715 -603,21.0,9.0,-2.619319553382597,5.400770303329455 -603,21.0,20.0,-16.774641369736234,34.127718648773715 -603,21.0,21.0,21.93449907537439,-43.48289181517921 -603,21.0,23.0,-2.5405381522555563,3.95440286307604 -603,22.0,14.0,-1.9683489489016612,3.976064876781356 -603,22.0,22.0,3.429754555384988,-6.965303617315433 -603,22.0,23.0,-1.4614056064833263,2.989238740534077 -603,23.0,21.0,-2.5405381522555563,3.95440286307604 -603,23.0,22.0,-1.4614056064833263,2.989238740534077 -603,23.0,23.0,5.311836702613133,-9.188263657315172 -603,23.0,24.0,-1.3098929438742493,2.287622053705056 -603,24.0,23.0,-1.3098929438742493,2.287622053705056 -603,24.0,24.0,4.495715080321987,-7.864978761969621 -603,24.0,25.0,-1.2165301194494855,1.8171440463475024 -603,24.0,26.0,-1.9692920169982515,3.760212661917064 -603,25.0,24.0,-1.2165301194494855,1.8171440463475024 -603,25.0,25.0,1.2165301194494855,-1.8171440463475024 -603,26.0,24.0,-1.9692920169982515,3.760212661917064 -603,26.0,26.0,3.652281470778589,-9.46044252232512 -603,26.0,27.0,0.0,2.608731947574922 -603,26.0,28.0,-0.99553355095268,1.881005840357816 -603,26.0,29.0,-0.6874559028276572,1.293971494797717 -603,27.0,5.0,-4.362844058012917,15.463571542897856 -603,27.0,7.0,-1.4439790613954469,4.540814658476248 -603,27.0,26.0,0.0,2.608731947574922 -603,27.0,27.0,5.806823119408364,-22.67145722159613 -603,28.0,26.0,-0.99553355095268,1.881005840357816 -603,28.0,28.0,1.9075867579849564,-3.604364401207048 -603,28.0,29.0,-0.9120532070322764,1.7233585608492326 -603,29.0,26.0,-0.6874559028276572,1.293971494797717 -603,29.0,28.0,-0.9120532070322764,1.7233585608492326 -603,29.0,29.0,1.5995091098599337,-3.0173300556469496 -604,0.0,0.0,6.765516048652632,-21.23160167089863 -604,0.0,1.0,-5.224646179885656,15.646726840803398 -604,0.0,2.0,-1.5408698687669766,5.631674830095234 -604,1.0,0.0,-5.224646179885656,15.646726840803398 -604,1.0,1.0,9.75228216552403,-30.648662892676068 -604,1.0,3.0,-1.7055303166990268,5.1973792282565086 -604,1.0,4.0,-1.1359607881738778,4.772479328281356 -604,1.0,5.0,-1.6861448807654689,5.116477495334806 -604,2.0,0.0,-1.5408698687669766,5.631674830095234 -604,2.0,2.0,9.736318911079088,-29.13794745915803 -604,2.0,3.0,-8.19544904231211,23.5308726290628 -604,3.0,1.0,-1.7055303166990268,5.1973792282565086 -604,3.0,2.0,-8.19544904231211,23.5308726290628 -604,3.0,3.0,16.314103089185693,-55.509410535254254 -604,3.0,5.0,-6.413123730174556,22.31120356548123 -604,3.0,11.0,0.0,4.191255364806866 -604,4.0,1.0,-1.1359607881738778,4.772479328281356 -604,4.0,4.0,1.1359607881738778,-4.751579328281355 -604,5.0,1.0,-1.6861448807654689,5.116477495334806 -604,5.0,3.0,-6.413123730174556,22.31120356548123 -604,5.0,5.0,22.341631269034565,-82.8291478657789 -604,5.0,6.0,-3.590210423980992,11.02611441072814 -604,5.0,7.0,-6.289308176100628,22.0125786163522 -604,5.0,8.0,0.0,4.915840805411357 -604,5.0,9.0,0.0,1.8561002591115965 -604,5.0,27.0,-4.362844058012917,15.463571542897856 -604,6.0,5.0,-3.590210423980992,11.02611441072814 -604,6.0,6.0,3.590210423980992,-11.01761441072814 -604,7.0,5.0,-6.289308176100628,22.0125786163522 -604,7.0,7.0,7.733287237496075,-26.527493274828448 -604,7.0,27.0,-1.4439790613954469,4.540814658476248 -604,8.0,5.0,0.0,4.915840805411357 -604,8.0,8.0,0.0,-18.706293706293707 -604,8.0,9.0,0.0,9.090909090909092 -604,8.0,10.0,0.0,4.807692307692308 -604,9.0,5.0,0.0,1.8561002591115965 -604,9.0,8.0,0.0,9.090909090909092 -604,9.0,9.0,8.36018899436458,-30.40304655459257 -604,9.0,16.0,-3.956039125715353,10.317447719844054 -604,9.0,19.0,-1.7848303152666305,3.98535828943083 -604,9.0,21.0,-2.619319553382597,5.400770303329455 -604,10.0,8.0,0.0,4.807692307692308 -604,10.0,10.0,0.0,-4.807692307692308 -604,11.0,3.0,0.0,4.191255364806866 -604,11.0,11.0,6.573961583776156,-24.424167659260668 -604,11.0,12.0,0.0,7.142857142857143 -604,11.0,13.0,-1.5265676088395577,3.1734252729654173 -604,11.0,14.0,-3.0953961826564296,6.097275864326261 -604,11.0,15.0,-1.9519977922801688,4.104359379111847 -604,12.0,11.0,0.0,7.142857142857143 -604,12.0,12.0,0.0,-7.142857142857143 -604,13.0,11.0,-1.5265676088395577,3.1734252729654173 -604,13.0,13.0,4.01751987283902,-5.424299332335067 -604,13.0,14.0,-2.4909522639994623,2.250874059369649 -604,14.0,11.0,-3.0953961826564296,6.097275864326261 -604,14.0,13.0,-2.4909522639994623,2.250874059369649 -604,14.0,14.0,9.365498545964757,-16.01163373210796 -604,14.0,17.0,-1.8108011504072024,3.687418931630696 -604,14.0,22.0,-1.9683489489016612,3.976064876781356 -604,15.0,11.0,-1.9519977922801688,4.104359379111847 -604,15.0,15.0,3.271064728633931,-8.94513365126506 -604,15.0,16.0,-1.3190669363537617,4.8407742721532125 -604,16.0,9.0,-3.956039125715353,10.317447719844054 -604,16.0,15.0,-1.3190669363537617,4.8407742721532125 -604,16.0,16.0,5.275106062069114,-15.158221991997266 -604,17.0,14.0,-1.8108011504072024,3.687418931630696 -604,17.0,17.0,1.8108011504072024,-3.687418931630696 -604,18.0,18.0,5.88235294117647,-11.76470588235294 -604,18.0,19.0,-5.88235294117647,11.76470588235294 -604,19.0,9.0,-1.7848303152666305,3.98535828943083 -604,19.0,18.0,-5.88235294117647,11.76470588235294 -604,19.0,19.0,7.6671832564431,-15.75006417178377 -604,20.0,20.0,16.774641369736234,-34.127718648773715 -604,20.0,21.0,-16.774641369736234,34.127718648773715 -604,21.0,9.0,-2.619319553382597,5.400770303329455 -604,21.0,20.0,-16.774641369736234,34.127718648773715 -604,21.0,21.0,21.93449907537439,-43.48289181517921 -604,21.0,23.0,-2.5405381522555563,3.95440286307604 -604,22.0,14.0,-1.9683489489016612,3.976064876781356 -604,22.0,22.0,3.429754555384988,-6.965303617315433 -604,22.0,23.0,-1.4614056064833263,2.989238740534077 -604,23.0,21.0,-2.5405381522555563,3.95440286307604 -604,23.0,22.0,-1.4614056064833263,2.989238740534077 -604,23.0,23.0,5.311836702613133,-9.188263657315172 -604,23.0,24.0,-1.3098929438742493,2.287622053705056 -604,24.0,23.0,-1.3098929438742493,2.287622053705056 -604,24.0,24.0,4.495715080321987,-7.864978761969621 -604,24.0,25.0,-1.2165301194494855,1.8171440463475024 -604,24.0,26.0,-1.9692920169982515,3.760212661917064 -604,25.0,24.0,-1.2165301194494855,1.8171440463475024 -604,25.0,25.0,1.2165301194494855,-1.8171440463475024 -604,26.0,24.0,-1.9692920169982515,3.760212661917064 -604,26.0,26.0,3.652281470778589,-9.46044252232512 -604,26.0,27.0,0.0,2.608731947574922 -604,26.0,28.0,-0.99553355095268,1.881005840357816 -604,26.0,29.0,-0.6874559028276572,1.293971494797717 -604,27.0,5.0,-4.362844058012917,15.463571542897856 -604,27.0,7.0,-1.4439790613954469,4.540814658476248 -604,27.0,26.0,0.0,2.608731947574922 -604,27.0,27.0,5.806823119408364,-22.67145722159613 -604,28.0,26.0,-0.99553355095268,1.881005840357816 -604,28.0,28.0,0.99553355095268,-1.881005840357816 -604,29.0,26.0,-0.6874559028276572,1.293971494797717 -604,29.0,29.0,0.6874559028276572,-1.293971494797717 -605,0.0,0.0,6.765516048652632,-21.23160167089863 -605,0.0,1.0,-5.224646179885656,15.646726840803398 -605,0.0,2.0,-1.5408698687669766,5.631674830095234 -605,1.0,0.0,-5.224646179885656,15.646726840803398 -605,1.0,1.0,9.75228216552403,-30.648662892676068 -605,1.0,3.0,-1.7055303166990268,5.1973792282565086 -605,1.0,4.0,-1.1359607881738778,4.772479328281356 -605,1.0,5.0,-1.6861448807654689,5.116477495334806 -605,2.0,0.0,-1.5408698687669766,5.631674830095234 -605,2.0,2.0,9.736318911079088,-29.13794745915803 -605,2.0,3.0,-8.19544904231211,23.5308726290628 -605,3.0,1.0,-1.7055303166990268,5.1973792282565086 -605,3.0,2.0,-8.19544904231211,23.5308726290628 -605,3.0,3.0,16.314103089185693,-55.509410535254254 -605,3.0,5.0,-6.413123730174556,22.31120356548123 -605,3.0,11.0,0.0,4.191255364806866 -605,4.0,1.0,-1.1359607881738778,4.772479328281356 -605,4.0,4.0,4.089980824135861,-12.190647245055052 -605,4.0,6.0,-2.954020035961983,7.449267916773697 -605,5.0,1.0,-1.6861448807654689,5.116477495334806 -605,5.0,3.0,-6.413123730174556,22.31120356548123 -605,5.0,5.0,22.341631269034565,-82.8291478657789 -605,5.0,6.0,-3.590210423980992,11.02611441072814 -605,5.0,7.0,-6.289308176100628,22.0125786163522 -605,5.0,8.0,0.0,4.915840805411357 -605,5.0,9.0,0.0,1.8561002591115965 -605,5.0,27.0,-4.362844058012917,15.463571542897856 -605,6.0,4.0,-2.954020035961983,7.449267916773697 -605,6.0,5.0,-3.590210423980992,11.02611441072814 -605,6.0,6.0,6.544230459942975,-18.45668232750184 -605,7.0,5.0,-6.289308176100628,22.0125786163522 -605,7.0,7.0,7.733287237496075,-26.527493274828448 -605,7.0,27.0,-1.4439790613954469,4.540814658476248 -605,8.0,5.0,0.0,4.915840805411357 -605,8.0,8.0,0.0,-18.706293706293707 -605,8.0,9.0,0.0,9.090909090909092 -605,8.0,10.0,0.0,4.807692307692308 -605,9.0,5.0,0.0,1.8561002591115965 -605,9.0,8.0,0.0,9.090909090909092 -605,9.0,9.0,13.462042814524237,-41.3837606675224 -605,9.0,16.0,-3.956039125715353,10.317447719844054 -605,9.0,19.0,-1.7848303152666305,3.98535828943083 -605,9.0,20.0,-5.101853820159654,10.98071411292983 -605,9.0,21.0,-2.619319553382597,5.400770303329455 -605,10.0,8.0,0.0,4.807692307692308 -605,10.0,10.0,0.0,-4.807692307692308 -605,11.0,3.0,0.0,4.191255364806866 -605,11.0,11.0,6.573961583776156,-24.424167659260668 -605,11.0,12.0,0.0,7.142857142857143 -605,11.0,13.0,-1.5265676088395577,3.1734252729654173 -605,11.0,14.0,-3.0953961826564296,6.097275864326261 -605,11.0,15.0,-1.9519977922801688,4.104359379111847 -605,12.0,11.0,0.0,7.142857142857143 -605,12.0,12.0,0.0,-7.142857142857143 -605,13.0,11.0,-1.5265676088395577,3.1734252729654173 -605,13.0,13.0,4.01751987283902,-5.424299332335067 -605,13.0,14.0,-2.4909522639994623,2.250874059369649 -605,14.0,11.0,-3.0953961826564296,6.097275864326261 -605,14.0,13.0,-2.4909522639994623,2.250874059369649 -605,14.0,14.0,9.365498545964757,-16.01163373210796 -605,14.0,17.0,-1.8108011504072024,3.687418931630696 -605,14.0,22.0,-1.9683489489016612,3.976064876781356 -605,15.0,11.0,-1.9519977922801688,4.104359379111847 -605,15.0,15.0,3.271064728633931,-8.94513365126506 -605,15.0,16.0,-1.3190669363537617,4.8407742721532125 -605,16.0,9.0,-3.956039125715353,10.317447719844054 -605,16.0,15.0,-1.3190669363537617,4.8407742721532125 -605,16.0,16.0,5.275106062069114,-15.158221991997266 -605,17.0,14.0,-1.8108011504072024,3.687418931630696 -605,17.0,17.0,4.886487584415919,-9.906177730909668 -605,17.0,18.0,-3.0756864340087167,6.218758799278971 -605,18.0,17.0,-3.0756864340087167,6.218758799278971 -605,18.0,18.0,8.958039375185187,-17.98346468163191 -605,18.0,19.0,-5.88235294117647,11.76470588235294 -605,19.0,9.0,-1.7848303152666305,3.98535828943083 -605,19.0,18.0,-5.88235294117647,11.76470588235294 -605,19.0,19.0,7.6671832564431,-15.75006417178377 -605,20.0,9.0,-5.101853820159654,10.98071411292983 -605,20.0,20.0,21.876495189895888,-45.10843276170355 -605,20.0,21.0,-16.774641369736234,34.127718648773715 -605,21.0,9.0,-2.619319553382597,5.400770303329455 -605,21.0,20.0,-16.774641369736234,34.127718648773715 -605,21.0,21.0,21.93449907537439,-43.48289181517921 -605,21.0,23.0,-2.5405381522555563,3.95440286307604 -605,22.0,14.0,-1.9683489489016612,3.976064876781356 -605,22.0,22.0,3.429754555384988,-6.965303617315433 -605,22.0,23.0,-1.4614056064833263,2.989238740534077 -605,23.0,21.0,-2.5405381522555563,3.95440286307604 -605,23.0,22.0,-1.4614056064833263,2.989238740534077 -605,23.0,23.0,5.311836702613133,-9.188263657315172 -605,23.0,24.0,-1.3098929438742493,2.287622053705056 -605,24.0,23.0,-1.3098929438742493,2.287622053705056 -605,24.0,24.0,4.495715080321987,-7.864978761969621 -605,24.0,25.0,-1.2165301194494855,1.8171440463475024 -605,24.0,26.0,-1.9692920169982515,3.760212661917064 -605,25.0,24.0,-1.2165301194494855,1.8171440463475024 -605,25.0,25.0,1.2165301194494855,-1.8171440463475024 -605,26.0,24.0,-1.9692920169982515,3.760212661917064 -605,26.0,26.0,3.652281470778589,-9.46044252232512 -605,26.0,27.0,0.0,2.608731947574922 -605,26.0,28.0,-0.99553355095268,1.881005840357816 -605,26.0,29.0,-0.6874559028276572,1.293971494797717 -605,27.0,5.0,-4.362844058012917,15.463571542897856 -605,27.0,7.0,-1.4439790613954469,4.540814658476248 -605,27.0,26.0,0.0,2.608731947574922 -605,27.0,27.0,5.806823119408364,-22.67145722159613 -605,28.0,26.0,-0.99553355095268,1.881005840357816 -605,28.0,28.0,1.9075867579849564,-3.604364401207048 -605,28.0,29.0,-0.9120532070322764,1.7233585608492326 -605,29.0,26.0,-0.6874559028276572,1.293971494797717 -605,29.0,28.0,-0.9120532070322764,1.7233585608492326 -605,29.0,29.0,1.5995091098599337,-3.0173300556469496 -606,0.0,0.0,6.765516048652632,-21.23160167089863 -606,0.0,1.0,-5.224646179885656,15.646726840803398 -606,0.0,2.0,-1.5408698687669766,5.631674830095234 -606,1.0,0.0,-5.224646179885656,15.646726840803398 -606,1.0,1.0,9.75228216552403,-30.648662892676068 -606,1.0,3.0,-1.7055303166990268,5.1973792282565086 -606,1.0,4.0,-1.1359607881738778,4.772479328281356 -606,1.0,5.0,-1.6861448807654689,5.116477495334806 -606,2.0,0.0,-1.5408698687669766,5.631674830095234 -606,2.0,2.0,9.736318911079088,-29.13794745915803 -606,2.0,3.0,-8.19544904231211,23.5308726290628 -606,3.0,1.0,-1.7055303166990268,5.1973792282565086 -606,3.0,2.0,-8.19544904231211,23.5308726290628 -606,3.0,3.0,16.314103089185693,-55.509410535254254 -606,3.0,5.0,-6.413123730174556,22.31120356548123 -606,3.0,11.0,0.0,4.191255364806866 -606,4.0,1.0,-1.1359607881738778,4.772479328281356 -606,4.0,4.0,4.089980824135861,-12.190647245055052 -606,4.0,6.0,-2.954020035961983,7.449267916773697 -606,5.0,1.0,-1.6861448807654689,5.116477495334806 -606,5.0,3.0,-6.413123730174556,22.31120356548123 -606,5.0,5.0,22.341631269034565,-82.8291478657789 -606,5.0,6.0,-3.590210423980992,11.02611441072814 -606,5.0,7.0,-6.289308176100628,22.0125786163522 -606,5.0,8.0,0.0,4.915840805411357 -606,5.0,9.0,0.0,1.8561002591115965 -606,5.0,27.0,-4.362844058012917,15.463571542897856 -606,6.0,4.0,-2.954020035961983,7.449267916773697 -606,6.0,5.0,-3.590210423980992,11.02611441072814 -606,6.0,6.0,6.544230459942975,-18.45668232750184 -606,7.0,5.0,-6.289308176100628,22.0125786163522 -606,7.0,7.0,7.733287237496075,-26.527493274828448 -606,7.0,27.0,-1.4439790613954469,4.540814658476248 -606,8.0,5.0,0.0,4.915840805411357 -606,8.0,8.0,0.0,-18.706293706293707 -606,8.0,9.0,0.0,9.090909090909092 -606,8.0,10.0,0.0,4.807692307692308 -606,9.0,5.0,0.0,1.8561002591115965 -606,9.0,8.0,0.0,9.090909090909092 -606,9.0,9.0,13.462042814524237,-41.3837606675224 -606,9.0,16.0,-3.956039125715353,10.317447719844054 -606,9.0,19.0,-1.7848303152666305,3.98535828943083 -606,9.0,20.0,-5.101853820159654,10.98071411292983 -606,9.0,21.0,-2.619319553382597,5.400770303329455 -606,10.0,8.0,0.0,4.807692307692308 -606,10.0,10.0,0.0,-4.807692307692308 -606,11.0,3.0,0.0,4.191255364806866 -606,11.0,11.0,6.573961583776156,-24.424167659260668 -606,11.0,12.0,0.0,7.142857142857143 -606,11.0,13.0,-1.5265676088395577,3.1734252729654173 -606,11.0,14.0,-3.0953961826564296,6.097275864326261 -606,11.0,15.0,-1.9519977922801688,4.104359379111847 -606,12.0,11.0,0.0,7.142857142857143 -606,12.0,12.0,0.0,-7.142857142857143 -606,13.0,11.0,-1.5265676088395577,3.1734252729654173 -606,13.0,13.0,4.01751987283902,-5.424299332335067 -606,13.0,14.0,-2.4909522639994623,2.250874059369649 -606,14.0,11.0,-3.0953961826564296,6.097275864326261 -606,14.0,13.0,-2.4909522639994623,2.250874059369649 -606,14.0,14.0,9.365498545964757,-16.01163373210796 -606,14.0,17.0,-1.8108011504072024,3.687418931630696 -606,14.0,22.0,-1.9683489489016612,3.976064876781356 -606,15.0,11.0,-1.9519977922801688,4.104359379111847 -606,15.0,15.0,3.271064728633931,-8.94513365126506 -606,15.0,16.0,-1.3190669363537617,4.8407742721532125 -606,16.0,9.0,-3.956039125715353,10.317447719844054 -606,16.0,15.0,-1.3190669363537617,4.8407742721532125 -606,16.0,16.0,5.275106062069114,-15.158221991997266 -606,17.0,14.0,-1.8108011504072024,3.687418931630696 -606,17.0,17.0,4.886487584415919,-9.906177730909668 -606,17.0,18.0,-3.0756864340087167,6.218758799278971 -606,18.0,17.0,-3.0756864340087167,6.218758799278971 -606,18.0,18.0,8.958039375185187,-17.98346468163191 -606,18.0,19.0,-5.88235294117647,11.76470588235294 -606,19.0,9.0,-1.7848303152666305,3.98535828943083 -606,19.0,18.0,-5.88235294117647,11.76470588235294 -606,19.0,19.0,7.6671832564431,-15.75006417178377 -606,20.0,9.0,-5.101853820159654,10.98071411292983 -606,20.0,20.0,21.876495189895888,-45.10843276170355 -606,20.0,21.0,-16.774641369736234,34.127718648773715 -606,21.0,9.0,-2.619319553382597,5.400770303329455 -606,21.0,20.0,-16.774641369736234,34.127718648773715 -606,21.0,21.0,21.93449907537439,-43.48289181517921 -606,21.0,23.0,-2.5405381522555563,3.95440286307604 -606,22.0,14.0,-1.9683489489016612,3.976064876781356 -606,22.0,22.0,3.429754555384988,-6.965303617315433 -606,22.0,23.0,-1.4614056064833263,2.989238740534077 -606,23.0,21.0,-2.5405381522555563,3.95440286307604 -606,23.0,22.0,-1.4614056064833263,2.989238740534077 -606,23.0,23.0,5.311836702613133,-9.188263657315172 -606,23.0,24.0,-1.3098929438742493,2.287622053705056 -606,24.0,23.0,-1.3098929438742493,2.287622053705056 -606,24.0,24.0,4.495715080321987,-7.864978761969621 -606,24.0,25.0,-1.2165301194494855,1.8171440463475024 -606,24.0,26.0,-1.9692920169982515,3.760212661917064 -606,25.0,24.0,-1.2165301194494855,1.8171440463475024 -606,25.0,25.0,1.2165301194494855,-1.8171440463475024 -606,26.0,24.0,-1.9692920169982515,3.760212661917064 -606,26.0,26.0,3.652281470778589,-9.46044252232512 -606,26.0,27.0,0.0,2.608731947574922 -606,26.0,28.0,-0.99553355095268,1.881005840357816 -606,26.0,29.0,-0.6874559028276572,1.293971494797717 -606,27.0,5.0,-4.362844058012917,15.463571542897856 -606,27.0,7.0,-1.4439790613954469,4.540814658476248 -606,27.0,26.0,0.0,2.608731947574922 -606,27.0,27.0,5.806823119408364,-22.67145722159613 -606,28.0,26.0,-0.99553355095268,1.881005840357816 -606,28.0,28.0,1.9075867579849564,-3.604364401207048 -606,28.0,29.0,-0.9120532070322764,1.7233585608492326 -606,29.0,26.0,-0.6874559028276572,1.293971494797717 -606,29.0,28.0,-0.9120532070322764,1.7233585608492326 -606,29.0,29.0,1.5995091098599337,-3.0173300556469496 -607,0.0,0.0,6.765516048652632,-21.23160167089863 -607,0.0,1.0,-5.224646179885656,15.646726840803398 -607,0.0,2.0,-1.5408698687669766,5.631674830095234 -607,1.0,0.0,-5.224646179885656,15.646726840803398 -607,1.0,1.0,8.066137284758561,-25.55088539734126 -607,1.0,3.0,-1.7055303166990268,5.1973792282565086 -607,1.0,4.0,-1.1359607881738778,4.772479328281356 -607,2.0,0.0,-1.5408698687669766,5.631674830095234 -607,2.0,2.0,9.736318911079088,-29.13794745915803 -607,2.0,3.0,-8.19544904231211,23.5308726290628 -607,3.0,1.0,-1.7055303166990268,5.1973792282565086 -607,3.0,2.0,-8.19544904231211,23.5308726290628 -607,3.0,3.0,16.314103089185693,-55.509410535254254 -607,3.0,5.0,-6.413123730174556,22.31120356548123 -607,3.0,11.0,0.0,4.191255364806866 -607,4.0,1.0,-1.1359607881738778,4.772479328281356 -607,4.0,4.0,4.089980824135861,-12.190647245055052 -607,4.0,6.0,-2.954020035961983,7.449267916773697 -607,5.0,3.0,-6.413123730174556,22.31120356548123 -607,5.0,5.0,16.29264233025618,-62.27429882754625 -607,5.0,6.0,-3.590210423980992,11.02611441072814 -607,5.0,7.0,-6.289308176100628,22.0125786163522 -607,5.0,8.0,0.0,4.915840805411357 -607,5.0,9.0,0.0,1.8561002591115965 -607,6.0,4.0,-2.954020035961983,7.449267916773697 -607,6.0,5.0,-3.590210423980992,11.02611441072814 -607,6.0,6.0,6.544230459942975,-18.45668232750184 -607,7.0,5.0,-6.289308176100628,22.0125786163522 -607,7.0,7.0,7.733287237496075,-26.527493274828448 -607,7.0,27.0,-1.4439790613954469,4.540814658476248 -607,8.0,5.0,0.0,4.915840805411357 -607,8.0,8.0,0.0,-18.706293706293707 -607,8.0,9.0,0.0,9.090909090909092 -607,8.0,10.0,0.0,4.807692307692308 -607,9.0,5.0,0.0,1.8561002591115965 -607,9.0,8.0,0.0,9.090909090909092 -607,9.0,9.0,13.462042814524237,-41.3837606675224 -607,9.0,16.0,-3.956039125715353,10.317447719844054 -607,9.0,19.0,-1.7848303152666305,3.98535828943083 -607,9.0,20.0,-5.101853820159654,10.98071411292983 -607,9.0,21.0,-2.619319553382597,5.400770303329455 -607,10.0,8.0,0.0,4.807692307692308 -607,10.0,10.0,0.0,-4.807692307692308 -607,11.0,3.0,0.0,4.191255364806866 -607,11.0,11.0,4.621963791495987,-20.31980828014882 -607,11.0,12.0,0.0,7.142857142857143 -607,11.0,13.0,-1.5265676088395577,3.1734252729654173 -607,11.0,14.0,-3.0953961826564296,6.097275864326261 -607,12.0,11.0,0.0,7.142857142857143 -607,12.0,12.0,0.0,-7.142857142857143 -607,13.0,11.0,-1.5265676088395577,3.1734252729654173 -607,13.0,13.0,1.5265676088395577,-3.1734252729654173 -607,14.0,11.0,-3.0953961826564296,6.097275864326261 -607,14.0,14.0,6.874546281965293,-13.760759672738311 -607,14.0,17.0,-1.8108011504072024,3.687418931630696 -607,14.0,22.0,-1.9683489489016612,3.976064876781356 -607,15.0,15.0,1.3190669363537617,-4.8407742721532125 -607,15.0,16.0,-1.3190669363537617,4.8407742721532125 -607,16.0,9.0,-3.956039125715353,10.317447719844054 -607,16.0,15.0,-1.3190669363537617,4.8407742721532125 -607,16.0,16.0,5.275106062069114,-15.158221991997266 -607,17.0,14.0,-1.8108011504072024,3.687418931630696 -607,17.0,17.0,4.886487584415919,-9.906177730909668 -607,17.0,18.0,-3.0756864340087167,6.218758799278971 -607,18.0,17.0,-3.0756864340087167,6.218758799278971 -607,18.0,18.0,8.958039375185187,-17.98346468163191 -607,18.0,19.0,-5.88235294117647,11.76470588235294 -607,19.0,9.0,-1.7848303152666305,3.98535828943083 -607,19.0,18.0,-5.88235294117647,11.76470588235294 -607,19.0,19.0,7.6671832564431,-15.75006417178377 -607,20.0,9.0,-5.101853820159654,10.98071411292983 -607,20.0,20.0,21.876495189895888,-45.10843276170355 -607,20.0,21.0,-16.774641369736234,34.127718648773715 -607,21.0,9.0,-2.619319553382597,5.400770303329455 -607,21.0,20.0,-16.774641369736234,34.127718648773715 -607,21.0,21.0,21.93449907537439,-43.48289181517921 -607,21.0,23.0,-2.5405381522555563,3.95440286307604 -607,22.0,14.0,-1.9683489489016612,3.976064876781356 -607,22.0,22.0,3.429754555384988,-6.965303617315433 -607,22.0,23.0,-1.4614056064833263,2.989238740534077 -607,23.0,21.0,-2.5405381522555563,3.95440286307604 -607,23.0,22.0,-1.4614056064833263,2.989238740534077 -607,23.0,23.0,5.311836702613133,-9.188263657315172 -607,23.0,24.0,-1.3098929438742493,2.287622053705056 -607,24.0,23.0,-1.3098929438742493,2.287622053705056 -607,24.0,24.0,2.526423063323735,-4.104766100052558 -607,24.0,25.0,-1.2165301194494855,1.8171440463475024 -607,25.0,24.0,-1.2165301194494855,1.8171440463475024 -607,25.0,25.0,1.2165301194494855,-1.8171440463475024 -607,26.0,26.0,1.6829894537803372,-5.700229860408058 -607,26.0,27.0,0.0,2.608731947574922 -607,26.0,28.0,-0.99553355095268,1.881005840357816 -607,26.0,29.0,-0.6874559028276572,1.293971494797717 -607,27.0,7.0,-1.4439790613954469,4.540814658476248 -607,27.0,26.0,0.0,2.608731947574922 -607,27.0,27.0,1.4439790613954469,-7.214385678698274 -607,28.0,26.0,-0.99553355095268,1.881005840357816 -607,28.0,28.0,1.9075867579849564,-3.604364401207048 -607,28.0,29.0,-0.9120532070322764,1.7233585608492326 -607,29.0,26.0,-0.6874559028276572,1.293971494797717 -607,29.0,28.0,-0.9120532070322764,1.7233585608492326 -607,29.0,29.0,1.5995091098599337,-3.0173300556469496 -608,0.0,0.0,6.765516048652632,-21.23160167089863 -608,0.0,1.0,-5.224646179885656,15.646726840803398 -608,0.0,2.0,-1.5408698687669766,5.631674830095234 -608,1.0,0.0,-5.224646179885656,15.646726840803398 -608,1.0,1.0,8.61632137735015,-25.897083564394716 -608,1.0,3.0,-1.7055303166990268,5.1973792282565086 -608,1.0,5.0,-1.6861448807654689,5.116477495334806 -608,2.0,0.0,-1.5408698687669766,5.631674830095234 -608,2.0,2.0,9.736318911079088,-29.13794745915803 -608,2.0,3.0,-8.19544904231211,23.5308726290628 -608,3.0,1.0,-1.7055303166990268,5.1973792282565086 -608,3.0,2.0,-8.19544904231211,23.5308726290628 -608,3.0,3.0,16.314103089185693,-55.509410535254254 -608,3.0,5.0,-6.413123730174556,22.31120356548123 -608,3.0,11.0,0.0,4.191255364806866 -608,4.0,4.0,2.954020035961983,-7.439067916773697 -608,4.0,6.0,-2.954020035961983,7.449267916773697 -608,5.0,1.0,-1.6861448807654689,5.116477495334806 -608,5.0,3.0,-6.413123730174556,22.31120356548123 -608,5.0,5.0,22.341631269034565,-82.8291478657789 -608,5.0,6.0,-3.590210423980992,11.02611441072814 -608,5.0,7.0,-6.289308176100628,22.0125786163522 -608,5.0,8.0,0.0,4.915840805411357 -608,5.0,9.0,0.0,1.8561002591115965 -608,5.0,27.0,-4.362844058012917,15.463571542897856 -608,6.0,4.0,-2.954020035961983,7.449267916773697 -608,6.0,5.0,-3.590210423980992,11.02611441072814 -608,6.0,6.0,6.544230459942975,-18.45668232750184 -608,7.0,5.0,-6.289308176100628,22.0125786163522 -608,7.0,7.0,6.289308176100628,-22.0080786163522 -608,8.0,5.0,0.0,4.915840805411357 -608,8.0,8.0,0.0,-18.706293706293707 -608,8.0,9.0,0.0,9.090909090909092 -608,8.0,10.0,0.0,4.807692307692308 -608,9.0,5.0,0.0,1.8561002591115965 -608,9.0,8.0,0.0,9.090909090909092 -608,9.0,9.0,13.462042814524237,-41.3837606675224 -608,9.0,16.0,-3.956039125715353,10.317447719844054 -608,9.0,19.0,-1.7848303152666305,3.98535828943083 -608,9.0,20.0,-5.101853820159654,10.98071411292983 -608,9.0,21.0,-2.619319553382597,5.400770303329455 -608,10.0,8.0,0.0,4.807692307692308 -608,10.0,10.0,0.0,-4.807692307692308 -608,11.0,3.0,0.0,4.191255364806866 -608,11.0,11.0,6.573961583776156,-24.424167659260668 -608,11.0,12.0,0.0,7.142857142857143 -608,11.0,13.0,-1.5265676088395577,3.1734252729654173 -608,11.0,14.0,-3.0953961826564296,6.097275864326261 -608,11.0,15.0,-1.9519977922801688,4.104359379111847 -608,12.0,11.0,0.0,7.142857142857143 -608,12.0,12.0,0.0,-7.142857142857143 -608,13.0,11.0,-1.5265676088395577,3.1734252729654173 -608,13.0,13.0,4.01751987283902,-5.424299332335067 -608,13.0,14.0,-2.4909522639994623,2.250874059369649 -608,14.0,11.0,-3.0953961826564296,6.097275864326261 -608,14.0,13.0,-2.4909522639994623,2.250874059369649 -608,14.0,14.0,9.365498545964757,-16.01163373210796 -608,14.0,17.0,-1.8108011504072024,3.687418931630696 -608,14.0,22.0,-1.9683489489016612,3.976064876781356 -608,15.0,11.0,-1.9519977922801688,4.104359379111847 -608,15.0,15.0,3.271064728633931,-8.94513365126506 -608,15.0,16.0,-1.3190669363537617,4.8407742721532125 -608,16.0,9.0,-3.956039125715353,10.317447719844054 -608,16.0,15.0,-1.3190669363537617,4.8407742721532125 -608,16.0,16.0,5.275106062069114,-15.158221991997266 -608,17.0,14.0,-1.8108011504072024,3.687418931630696 -608,17.0,17.0,4.886487584415919,-9.906177730909668 -608,17.0,18.0,-3.0756864340087167,6.218758799278971 -608,18.0,17.0,-3.0756864340087167,6.218758799278971 -608,18.0,18.0,8.958039375185187,-17.98346468163191 -608,18.0,19.0,-5.88235294117647,11.76470588235294 -608,19.0,9.0,-1.7848303152666305,3.98535828943083 -608,19.0,18.0,-5.88235294117647,11.76470588235294 -608,19.0,19.0,7.6671832564431,-15.75006417178377 -608,20.0,9.0,-5.101853820159654,10.98071411292983 -608,20.0,20.0,21.876495189895888,-45.10843276170355 -608,20.0,21.0,-16.774641369736234,34.127718648773715 -608,21.0,9.0,-2.619319553382597,5.400770303329455 -608,21.0,20.0,-16.774641369736234,34.127718648773715 -608,21.0,21.0,21.93449907537439,-43.48289181517921 -608,21.0,23.0,-2.5405381522555563,3.95440286307604 -608,22.0,14.0,-1.9683489489016612,3.976064876781356 -608,22.0,22.0,3.429754555384988,-6.965303617315433 -608,22.0,23.0,-1.4614056064833263,2.989238740534077 -608,23.0,21.0,-2.5405381522555563,3.95440286307604 -608,23.0,22.0,-1.4614056064833263,2.989238740534077 -608,23.0,23.0,5.311836702613133,-9.188263657315172 -608,23.0,24.0,-1.3098929438742493,2.287622053705056 -608,24.0,23.0,-1.3098929438742493,2.287622053705056 -608,24.0,24.0,4.495715080321987,-7.864978761969621 -608,24.0,25.0,-1.2165301194494855,1.8171440463475024 -608,24.0,26.0,-1.9692920169982515,3.760212661917064 -608,25.0,24.0,-1.2165301194494855,1.8171440463475024 -608,25.0,25.0,1.2165301194494855,-1.8171440463475024 -608,26.0,24.0,-1.9692920169982515,3.760212661917064 -608,26.0,26.0,3.652281470778589,-9.46044252232512 -608,26.0,27.0,0.0,2.608731947574922 -608,26.0,28.0,-0.99553355095268,1.881005840357816 -608,26.0,29.0,-0.6874559028276572,1.293971494797717 -608,27.0,5.0,-4.362844058012917,15.463571542897856 -608,27.0,26.0,0.0,2.608731947574922 -608,27.0,27.0,4.362844058012917,-18.15204256311988 -608,28.0,26.0,-0.99553355095268,1.881005840357816 -608,28.0,28.0,1.9075867579849564,-3.604364401207048 -608,28.0,29.0,-0.9120532070322764,1.7233585608492326 -608,29.0,26.0,-0.6874559028276572,1.293971494797717 -608,29.0,28.0,-0.9120532070322764,1.7233585608492326 -608,29.0,29.0,1.5995091098599337,-3.0173300556469496 -609,0.0,0.0,6.765516048652632,-21.23160167089863 -609,0.0,1.0,-5.224646179885656,15.646726840803398 -609,0.0,2.0,-1.5408698687669766,5.631674830095234 -609,1.0,0.0,-5.224646179885656,15.646726840803398 -609,1.0,1.0,9.75228216552403,-30.648662892676068 -609,1.0,3.0,-1.7055303166990268,5.1973792282565086 -609,1.0,4.0,-1.1359607881738778,4.772479328281356 -609,1.0,5.0,-1.6861448807654689,5.116477495334806 -609,2.0,0.0,-1.5408698687669766,5.631674830095234 -609,2.0,2.0,9.736318911079088,-29.13794745915803 -609,2.0,3.0,-8.19544904231211,23.5308726290628 -609,3.0,1.0,-1.7055303166990268,5.1973792282565086 -609,3.0,2.0,-8.19544904231211,23.5308726290628 -609,3.0,3.0,16.314103089185693,-55.509410535254254 -609,3.0,5.0,-6.413123730174556,22.31120356548123 -609,3.0,11.0,0.0,4.191255364806866 -609,4.0,1.0,-1.1359607881738778,4.772479328281356 -609,4.0,4.0,4.089980824135861,-12.190647245055052 -609,4.0,6.0,-2.954020035961983,7.449267916773697 -609,5.0,1.0,-1.6861448807654689,5.116477495334806 -609,5.0,3.0,-6.413123730174556,22.31120356548123 -609,5.0,5.0,22.341631269034565,-82.8291478657789 -609,5.0,6.0,-3.590210423980992,11.02611441072814 -609,5.0,7.0,-6.289308176100628,22.0125786163522 -609,5.0,8.0,0.0,4.915840805411357 -609,5.0,9.0,0.0,1.8561002591115965 -609,5.0,27.0,-4.362844058012917,15.463571542897856 -609,6.0,4.0,-2.954020035961983,7.449267916773697 -609,6.0,5.0,-3.590210423980992,11.02611441072814 -609,6.0,6.0,6.544230459942975,-18.45668232750184 -609,7.0,5.0,-6.289308176100628,22.0125786163522 -609,7.0,7.0,7.733287237496075,-26.527493274828448 -609,7.0,27.0,-1.4439790613954469,4.540814658476248 -609,8.0,5.0,0.0,4.915840805411357 -609,8.0,8.0,0.0,-18.706293706293707 -609,8.0,9.0,0.0,9.090909090909092 -609,8.0,10.0,0.0,4.807692307692308 -609,9.0,5.0,0.0,1.8561002591115965 -609,9.0,8.0,0.0,9.090909090909092 -609,9.0,9.0,13.462042814524237,-41.3837606675224 -609,9.0,16.0,-3.956039125715353,10.317447719844054 -609,9.0,19.0,-1.7848303152666305,3.98535828943083 -609,9.0,20.0,-5.101853820159654,10.98071411292983 -609,9.0,21.0,-2.619319553382597,5.400770303329455 -609,10.0,8.0,0.0,4.807692307692308 -609,10.0,10.0,0.0,-4.807692307692308 -609,11.0,3.0,0.0,4.191255364806866 -609,11.0,11.0,6.573961583776156,-24.424167659260668 -609,11.0,12.0,0.0,7.142857142857143 -609,11.0,13.0,-1.5265676088395577,3.1734252729654173 -609,11.0,14.0,-3.0953961826564296,6.097275864326261 -609,11.0,15.0,-1.9519977922801688,4.104359379111847 -609,12.0,11.0,0.0,7.142857142857143 -609,12.0,12.0,0.0,-7.142857142857143 -609,13.0,11.0,-1.5265676088395577,3.1734252729654173 -609,13.0,13.0,4.01751987283902,-5.424299332335067 -609,13.0,14.0,-2.4909522639994623,2.250874059369649 -609,14.0,11.0,-3.0953961826564296,6.097275864326261 -609,14.0,13.0,-2.4909522639994623,2.250874059369649 -609,14.0,14.0,9.365498545964757,-16.01163373210796 -609,14.0,17.0,-1.8108011504072024,3.687418931630696 -609,14.0,22.0,-1.9683489489016612,3.976064876781356 -609,15.0,11.0,-1.9519977922801688,4.104359379111847 -609,15.0,15.0,3.271064728633931,-8.94513365126506 -609,15.0,16.0,-1.3190669363537617,4.8407742721532125 -609,16.0,9.0,-3.956039125715353,10.317447719844054 -609,16.0,15.0,-1.3190669363537617,4.8407742721532125 -609,16.0,16.0,5.275106062069114,-15.158221991997266 -609,17.0,14.0,-1.8108011504072024,3.687418931630696 -609,17.0,17.0,4.886487584415919,-9.906177730909668 -609,17.0,18.0,-3.0756864340087167,6.218758799278971 -609,18.0,17.0,-3.0756864340087167,6.218758799278971 -609,18.0,18.0,8.958039375185187,-17.98346468163191 -609,18.0,19.0,-5.88235294117647,11.76470588235294 -609,19.0,9.0,-1.7848303152666305,3.98535828943083 -609,19.0,18.0,-5.88235294117647,11.76470588235294 -609,19.0,19.0,7.6671832564431,-15.75006417178377 -609,20.0,9.0,-5.101853820159654,10.98071411292983 -609,20.0,20.0,5.101853820159654,-10.98071411292983 -609,21.0,9.0,-2.619319553382597,5.400770303329455 -609,21.0,21.0,5.159857705638154,-9.355173166405494 -609,21.0,23.0,-2.5405381522555563,3.95440286307604 -609,22.0,14.0,-1.9683489489016612,3.976064876781356 -609,22.0,22.0,3.429754555384988,-6.965303617315433 -609,22.0,23.0,-1.4614056064833263,2.989238740534077 -609,23.0,21.0,-2.5405381522555563,3.95440286307604 -609,23.0,22.0,-1.4614056064833263,2.989238740534077 -609,23.0,23.0,5.311836702613133,-9.188263657315172 -609,23.0,24.0,-1.3098929438742493,2.287622053705056 -609,24.0,23.0,-1.3098929438742493,2.287622053705056 -609,24.0,24.0,4.495715080321987,-7.864978761969621 -609,24.0,25.0,-1.2165301194494855,1.8171440463475024 -609,24.0,26.0,-1.9692920169982515,3.760212661917064 -609,25.0,24.0,-1.2165301194494855,1.8171440463475024 -609,25.0,25.0,1.2165301194494855,-1.8171440463475024 -609,26.0,24.0,-1.9692920169982515,3.760212661917064 -609,26.0,26.0,3.652281470778589,-9.46044252232512 -609,26.0,27.0,0.0,2.608731947574922 -609,26.0,28.0,-0.99553355095268,1.881005840357816 -609,26.0,29.0,-0.6874559028276572,1.293971494797717 -609,27.0,5.0,-4.362844058012917,15.463571542897856 -609,27.0,7.0,-1.4439790613954469,4.540814658476248 -609,27.0,26.0,0.0,2.608731947574922 -609,27.0,27.0,5.806823119408364,-22.67145722159613 -609,28.0,26.0,-0.99553355095268,1.881005840357816 -609,28.0,28.0,1.9075867579849564,-3.604364401207048 -609,28.0,29.0,-0.9120532070322764,1.7233585608492326 -609,29.0,26.0,-0.6874559028276572,1.293971494797717 -609,29.0,28.0,-0.9120532070322764,1.7233585608492326 -609,29.0,29.0,1.5995091098599337,-3.0173300556469496 -610,0.0,0.0,6.765516048652632,-21.23160167089863 -610,0.0,1.0,-5.224646179885656,15.646726840803398 -610,0.0,2.0,-1.5408698687669766,5.631674830095234 -610,1.0,0.0,-5.224646179885656,15.646726840803398 -610,1.0,1.0,9.75228216552403,-30.648662892676068 -610,1.0,3.0,-1.7055303166990268,5.1973792282565086 -610,1.0,4.0,-1.1359607881738778,4.772479328281356 -610,1.0,5.0,-1.6861448807654689,5.116477495334806 -610,2.0,0.0,-1.5408698687669766,5.631674830095234 -610,2.0,2.0,9.736318911079088,-29.13794745915803 -610,2.0,3.0,-8.19544904231211,23.5308726290628 -610,3.0,1.0,-1.7055303166990268,5.1973792282565086 -610,3.0,2.0,-8.19544904231211,23.5308726290628 -610,3.0,3.0,16.314103089185693,-55.509410535254254 -610,3.0,5.0,-6.413123730174556,22.31120356548123 -610,3.0,11.0,0.0,4.191255364806866 -610,4.0,1.0,-1.1359607881738778,4.772479328281356 -610,4.0,4.0,4.089980824135861,-12.190647245055052 -610,4.0,6.0,-2.954020035961983,7.449267916773697 -610,5.0,1.0,-1.6861448807654689,5.116477495334806 -610,5.0,3.0,-6.413123730174556,22.31120356548123 -610,5.0,5.0,22.341631269034565,-82.8291478657789 -610,5.0,6.0,-3.590210423980992,11.02611441072814 -610,5.0,7.0,-6.289308176100628,22.0125786163522 -610,5.0,8.0,0.0,4.915840805411357 -610,5.0,9.0,0.0,1.8561002591115965 -610,5.0,27.0,-4.362844058012917,15.463571542897856 -610,6.0,4.0,-2.954020035961983,7.449267916773697 -610,6.0,5.0,-3.590210423980992,11.02611441072814 -610,6.0,6.0,6.544230459942975,-18.45668232750184 -610,7.0,5.0,-6.289308176100628,22.0125786163522 -610,7.0,7.0,7.733287237496075,-26.527493274828448 -610,7.0,27.0,-1.4439790613954469,4.540814658476248 -610,8.0,5.0,0.0,4.915840805411357 -610,8.0,8.0,0.0,-18.706293706293707 -610,8.0,9.0,0.0,9.090909090909092 -610,8.0,10.0,0.0,4.807692307692308 -610,9.0,5.0,0.0,1.8561002591115965 -610,9.0,8.0,0.0,9.090909090909092 -610,9.0,9.0,13.462042814524237,-41.3837606675224 -610,9.0,16.0,-3.956039125715353,10.317447719844054 -610,9.0,19.0,-1.7848303152666305,3.98535828943083 -610,9.0,20.0,-5.101853820159654,10.98071411292983 -610,9.0,21.0,-2.619319553382597,5.400770303329455 -610,10.0,8.0,0.0,4.807692307692308 -610,10.0,10.0,0.0,-4.807692307692308 -610,11.0,3.0,0.0,4.191255364806866 -610,11.0,11.0,6.573961583776156,-24.424167659260668 -610,11.0,12.0,0.0,7.142857142857143 -610,11.0,13.0,-1.5265676088395577,3.1734252729654173 -610,11.0,14.0,-3.0953961826564296,6.097275864326261 -610,11.0,15.0,-1.9519977922801688,4.104359379111847 -610,12.0,11.0,0.0,7.142857142857143 -610,12.0,12.0,0.0,-7.142857142857143 -610,13.0,11.0,-1.5265676088395577,3.1734252729654173 -610,13.0,13.0,4.01751987283902,-5.424299332335067 -610,13.0,14.0,-2.4909522639994623,2.250874059369649 -610,14.0,11.0,-3.0953961826564296,6.097275864326261 -610,14.0,13.0,-2.4909522639994623,2.250874059369649 -610,14.0,14.0,9.365498545964757,-16.01163373210796 -610,14.0,17.0,-1.8108011504072024,3.687418931630696 -610,14.0,22.0,-1.9683489489016612,3.976064876781356 -610,15.0,11.0,-1.9519977922801688,4.104359379111847 -610,15.0,15.0,3.271064728633931,-8.94513365126506 -610,15.0,16.0,-1.3190669363537617,4.8407742721532125 -610,16.0,9.0,-3.956039125715353,10.317447719844054 -610,16.0,15.0,-1.3190669363537617,4.8407742721532125 -610,16.0,16.0,5.275106062069114,-15.158221991997266 -610,17.0,14.0,-1.8108011504072024,3.687418931630696 -610,17.0,17.0,4.886487584415919,-9.906177730909668 -610,17.0,18.0,-3.0756864340087167,6.218758799278971 -610,18.0,17.0,-3.0756864340087167,6.218758799278971 -610,18.0,18.0,8.958039375185187,-17.98346468163191 -610,18.0,19.0,-5.88235294117647,11.76470588235294 -610,19.0,9.0,-1.7848303152666305,3.98535828943083 -610,19.0,18.0,-5.88235294117647,11.76470588235294 -610,19.0,19.0,7.6671832564431,-15.75006417178377 -610,20.0,9.0,-5.101853820159654,10.98071411292983 -610,20.0,20.0,5.101853820159654,-10.98071411292983 -610,21.0,9.0,-2.619319553382597,5.400770303329455 -610,21.0,21.0,2.619319553382597,-5.400770303329455 -610,22.0,14.0,-1.9683489489016612,3.976064876781356 -610,22.0,22.0,3.429754555384988,-6.965303617315433 -610,22.0,23.0,-1.4614056064833263,2.989238740534077 -610,23.0,22.0,-1.4614056064833263,2.989238740534077 -610,23.0,23.0,2.771298550357576,-5.233860794239132 -610,23.0,24.0,-1.3098929438742493,2.287622053705056 -610,24.0,23.0,-1.3098929438742493,2.287622053705056 -610,24.0,24.0,4.495715080321987,-7.864978761969621 -610,24.0,25.0,-1.2165301194494855,1.8171440463475024 -610,24.0,26.0,-1.9692920169982515,3.760212661917064 -610,25.0,24.0,-1.2165301194494855,1.8171440463475024 -610,25.0,25.0,1.2165301194494855,-1.8171440463475024 -610,26.0,24.0,-1.9692920169982515,3.760212661917064 -610,26.0,26.0,2.9648255679509314,-8.166471027527404 -610,26.0,27.0,0.0,2.608731947574922 -610,26.0,28.0,-0.99553355095268,1.881005840357816 -610,27.0,5.0,-4.362844058012917,15.463571542897856 -610,27.0,7.0,-1.4439790613954469,4.540814658476248 -610,27.0,26.0,0.0,2.608731947574922 -610,27.0,27.0,5.806823119408364,-22.67145722159613 -610,28.0,26.0,-0.99553355095268,1.881005840357816 -610,28.0,28.0,1.9075867579849564,-3.604364401207048 -610,28.0,29.0,-0.9120532070322764,1.7233585608492326 -610,29.0,28.0,-0.9120532070322764,1.7233585608492326 -610,29.0,29.0,0.9120532070322764,-1.7233585608492326 -611,0.0,0.0,6.765516048652632,-21.23160167089863 -611,0.0,1.0,-5.224646179885656,15.646726840803398 -611,0.0,2.0,-1.5408698687669766,5.631674830095234 -611,1.0,0.0,-5.224646179885656,15.646726840803398 -611,1.0,1.0,9.75228216552403,-30.648662892676068 -611,1.0,3.0,-1.7055303166990268,5.1973792282565086 -611,1.0,4.0,-1.1359607881738778,4.772479328281356 -611,1.0,5.0,-1.6861448807654689,5.116477495334806 -611,2.0,0.0,-1.5408698687669766,5.631674830095234 -611,2.0,2.0,9.736318911079088,-29.13794745915803 -611,2.0,3.0,-8.19544904231211,23.5308726290628 -611,3.0,1.0,-1.7055303166990268,5.1973792282565086 -611,3.0,2.0,-8.19544904231211,23.5308726290628 -611,3.0,3.0,16.314103089185693,-51.01235542280054 -611,3.0,5.0,-6.413123730174556,22.31120356548123 -611,4.0,1.0,-1.1359607881738778,4.772479328281356 -611,4.0,4.0,4.089980824135861,-12.190647245055052 -611,4.0,6.0,-2.954020035961983,7.449267916773697 -611,5.0,1.0,-1.6861448807654689,5.116477495334806 -611,5.0,3.0,-6.413123730174556,22.31120356548123 -611,5.0,5.0,22.341631269034565,-82.8291478657789 -611,5.0,6.0,-3.590210423980992,11.02611441072814 -611,5.0,7.0,-6.289308176100628,22.0125786163522 -611,5.0,8.0,0.0,4.915840805411357 -611,5.0,9.0,0.0,1.8561002591115965 -611,5.0,27.0,-4.362844058012917,15.463571542897856 -611,6.0,4.0,-2.954020035961983,7.449267916773697 -611,6.0,5.0,-3.590210423980992,11.02611441072814 -611,6.0,6.0,6.544230459942975,-18.45668232750184 -611,7.0,5.0,-6.289308176100628,22.0125786163522 -611,7.0,7.0,7.733287237496075,-26.527493274828448 -611,7.0,27.0,-1.4439790613954469,4.540814658476248 -611,8.0,5.0,0.0,4.915840805411357 -611,8.0,8.0,0.0,-18.706293706293707 -611,8.0,9.0,0.0,9.090909090909092 -611,8.0,10.0,0.0,4.807692307692308 -611,9.0,5.0,0.0,1.8561002591115965 -611,9.0,8.0,0.0,9.090909090909092 -611,9.0,9.0,13.462042814524237,-41.3837606675224 -611,9.0,16.0,-3.956039125715353,10.317447719844054 -611,9.0,19.0,-1.7848303152666305,3.98535828943083 -611,9.0,20.0,-5.101853820159654,10.98071411292983 -611,9.0,21.0,-2.619319553382597,5.400770303329455 -611,10.0,8.0,0.0,4.807692307692308 -611,10.0,10.0,0.0,-4.807692307692308 -611,11.0,11.0,6.573961583776156,-20.517917659260668 -611,11.0,12.0,0.0,7.142857142857143 -611,11.0,13.0,-1.5265676088395577,3.1734252729654173 -611,11.0,14.0,-3.0953961826564296,6.097275864326261 -611,11.0,15.0,-1.9519977922801688,4.104359379111847 -611,12.0,11.0,0.0,7.142857142857143 -611,12.0,12.0,0.0,-7.142857142857143 -611,13.0,11.0,-1.5265676088395577,3.1734252729654173 -611,13.0,13.0,4.01751987283902,-5.424299332335067 -611,13.0,14.0,-2.4909522639994623,2.250874059369649 -611,14.0,11.0,-3.0953961826564296,6.097275864326261 -611,14.0,13.0,-2.4909522639994623,2.250874059369649 -611,14.0,14.0,9.365498545964757,-16.01163373210796 -611,14.0,17.0,-1.8108011504072024,3.687418931630696 -611,14.0,22.0,-1.9683489489016612,3.976064876781356 -611,15.0,11.0,-1.9519977922801688,4.104359379111847 -611,15.0,15.0,3.271064728633931,-8.94513365126506 -611,15.0,16.0,-1.3190669363537617,4.8407742721532125 -611,16.0,9.0,-3.956039125715353,10.317447719844054 -611,16.0,15.0,-1.3190669363537617,4.8407742721532125 -611,16.0,16.0,5.275106062069114,-15.158221991997266 -611,17.0,14.0,-1.8108011504072024,3.687418931630696 -611,17.0,17.0,4.886487584415919,-9.906177730909668 -611,17.0,18.0,-3.0756864340087167,6.218758799278971 -611,18.0,17.0,-3.0756864340087167,6.218758799278971 -611,18.0,18.0,8.958039375185187,-17.98346468163191 -611,18.0,19.0,-5.88235294117647,11.76470588235294 -611,19.0,9.0,-1.7848303152666305,3.98535828943083 -611,19.0,18.0,-5.88235294117647,11.76470588235294 -611,19.0,19.0,7.6671832564431,-15.75006417178377 -611,20.0,9.0,-5.101853820159654,10.98071411292983 -611,20.0,20.0,21.876495189895888,-45.10843276170355 -611,20.0,21.0,-16.774641369736234,34.127718648773715 -611,21.0,9.0,-2.619319553382597,5.400770303329455 -611,21.0,20.0,-16.774641369736234,34.127718648773715 -611,21.0,21.0,21.93449907537439,-43.48289181517921 -611,21.0,23.0,-2.5405381522555563,3.95440286307604 -611,22.0,14.0,-1.9683489489016612,3.976064876781356 -611,22.0,22.0,3.429754555384988,-6.965303617315433 -611,22.0,23.0,-1.4614056064833263,2.989238740534077 -611,23.0,21.0,-2.5405381522555563,3.95440286307604 -611,23.0,22.0,-1.4614056064833263,2.989238740534077 -611,23.0,23.0,5.311836702613133,-9.188263657315172 -611,23.0,24.0,-1.3098929438742493,2.287622053705056 -611,24.0,23.0,-1.3098929438742493,2.287622053705056 -611,24.0,24.0,4.495715080321987,-7.864978761969621 -611,24.0,25.0,-1.2165301194494855,1.8171440463475024 -611,24.0,26.0,-1.9692920169982515,3.760212661917064 -611,25.0,24.0,-1.2165301194494855,1.8171440463475024 -611,25.0,25.0,1.2165301194494855,-1.8171440463475024 -611,26.0,24.0,-1.9692920169982515,3.760212661917064 -611,26.0,26.0,3.652281470778589,-9.46044252232512 -611,26.0,27.0,0.0,2.608731947574922 -611,26.0,28.0,-0.99553355095268,1.881005840357816 -611,26.0,29.0,-0.6874559028276572,1.293971494797717 -611,27.0,5.0,-4.362844058012917,15.463571542897856 -611,27.0,7.0,-1.4439790613954469,4.540814658476248 -611,27.0,26.0,0.0,2.608731947574922 -611,27.0,27.0,5.806823119408364,-22.67145722159613 -611,28.0,26.0,-0.99553355095268,1.881005840357816 -611,28.0,28.0,1.9075867579849564,-3.604364401207048 -611,28.0,29.0,-0.9120532070322764,1.7233585608492326 -611,29.0,26.0,-0.6874559028276572,1.293971494797717 -611,29.0,28.0,-0.9120532070322764,1.7233585608492326 -611,29.0,29.0,1.5995091098599337,-3.0173300556469496 -612,0.0,0.0,6.765516048652632,-21.23160167089863 -612,0.0,1.0,-5.224646179885656,15.646726840803398 -612,0.0,2.0,-1.5408698687669766,5.631674830095234 -612,1.0,0.0,-5.224646179885656,15.646726840803398 -612,1.0,1.0,9.75228216552403,-30.648662892676068 -612,1.0,3.0,-1.7055303166990268,5.1973792282565086 -612,1.0,4.0,-1.1359607881738778,4.772479328281356 -612,1.0,5.0,-1.6861448807654689,5.116477495334806 -612,2.0,0.0,-1.5408698687669766,5.631674830095234 -612,2.0,2.0,1.5408698687669766,-5.611274830095233 -612,3.0,1.0,-1.7055303166990268,5.1973792282565086 -612,3.0,3.0,8.118654046873583,-31.982737906191456 -612,3.0,5.0,-6.413123730174556,22.31120356548123 -612,3.0,11.0,0.0,4.191255364806866 -612,4.0,1.0,-1.1359607881738778,4.772479328281356 -612,4.0,4.0,4.089980824135861,-12.190647245055052 -612,4.0,6.0,-2.954020035961983,7.449267916773697 -612,5.0,1.0,-1.6861448807654689,5.116477495334806 -612,5.0,3.0,-6.413123730174556,22.31120356548123 -612,5.0,5.0,22.341631269034565,-82.8291478657789 -612,5.0,6.0,-3.590210423980992,11.02611441072814 -612,5.0,7.0,-6.289308176100628,22.0125786163522 -612,5.0,8.0,0.0,4.915840805411357 -612,5.0,9.0,0.0,1.8561002591115965 -612,5.0,27.0,-4.362844058012917,15.463571542897856 -612,6.0,4.0,-2.954020035961983,7.449267916773697 -612,6.0,5.0,-3.590210423980992,11.02611441072814 -612,6.0,6.0,6.544230459942975,-18.45668232750184 -612,7.0,5.0,-6.289308176100628,22.0125786163522 -612,7.0,7.0,7.733287237496075,-26.527493274828448 -612,7.0,27.0,-1.4439790613954469,4.540814658476248 -612,8.0,5.0,0.0,4.915840805411357 -612,8.0,8.0,0.0,-18.706293706293707 -612,8.0,9.0,0.0,9.090909090909092 -612,8.0,10.0,0.0,4.807692307692308 -612,9.0,5.0,0.0,1.8561002591115965 -612,9.0,8.0,0.0,9.090909090909092 -612,9.0,9.0,13.462042814524237,-41.3837606675224 -612,9.0,16.0,-3.956039125715353,10.317447719844054 -612,9.0,19.0,-1.7848303152666305,3.98535828943083 -612,9.0,20.0,-5.101853820159654,10.98071411292983 -612,9.0,21.0,-2.619319553382597,5.400770303329455 -612,10.0,8.0,0.0,4.807692307692308 -612,10.0,10.0,0.0,-4.807692307692308 -612,11.0,3.0,0.0,4.191255364806866 -612,11.0,11.0,6.573961583776156,-24.424167659260668 -612,11.0,12.0,0.0,7.142857142857143 -612,11.0,13.0,-1.5265676088395577,3.1734252729654173 -612,11.0,14.0,-3.0953961826564296,6.097275864326261 -612,11.0,15.0,-1.9519977922801688,4.104359379111847 -612,12.0,11.0,0.0,7.142857142857143 -612,12.0,12.0,0.0,-7.142857142857143 -612,13.0,11.0,-1.5265676088395577,3.1734252729654173 -612,13.0,13.0,4.01751987283902,-5.424299332335067 -612,13.0,14.0,-2.4909522639994623,2.250874059369649 -612,14.0,11.0,-3.0953961826564296,6.097275864326261 -612,14.0,13.0,-2.4909522639994623,2.250874059369649 -612,14.0,14.0,9.365498545964757,-16.01163373210796 -612,14.0,17.0,-1.8108011504072024,3.687418931630696 -612,14.0,22.0,-1.9683489489016612,3.976064876781356 -612,15.0,11.0,-1.9519977922801688,4.104359379111847 -612,15.0,15.0,3.271064728633931,-8.94513365126506 -612,15.0,16.0,-1.3190669363537617,4.8407742721532125 -612,16.0,9.0,-3.956039125715353,10.317447719844054 -612,16.0,15.0,-1.3190669363537617,4.8407742721532125 -612,16.0,16.0,5.275106062069114,-15.158221991997266 -612,17.0,14.0,-1.8108011504072024,3.687418931630696 -612,17.0,17.0,4.886487584415919,-9.906177730909668 -612,17.0,18.0,-3.0756864340087167,6.218758799278971 -612,18.0,17.0,-3.0756864340087167,6.218758799278971 -612,18.0,18.0,8.958039375185187,-17.98346468163191 -612,18.0,19.0,-5.88235294117647,11.76470588235294 -612,19.0,9.0,-1.7848303152666305,3.98535828943083 -612,19.0,18.0,-5.88235294117647,11.76470588235294 -612,19.0,19.0,7.6671832564431,-15.75006417178377 -612,20.0,9.0,-5.101853820159654,10.98071411292983 -612,20.0,20.0,21.876495189895888,-45.10843276170355 -612,20.0,21.0,-16.774641369736234,34.127718648773715 -612,21.0,9.0,-2.619319553382597,5.400770303329455 -612,21.0,20.0,-16.774641369736234,34.127718648773715 -612,21.0,21.0,21.93449907537439,-43.48289181517921 -612,21.0,23.0,-2.5405381522555563,3.95440286307604 -612,22.0,14.0,-1.9683489489016612,3.976064876781356 -612,22.0,22.0,3.429754555384988,-6.965303617315433 -612,22.0,23.0,-1.4614056064833263,2.989238740534077 -612,23.0,21.0,-2.5405381522555563,3.95440286307604 -612,23.0,22.0,-1.4614056064833263,2.989238740534077 -612,23.0,23.0,5.311836702613133,-9.188263657315172 -612,23.0,24.0,-1.3098929438742493,2.287622053705056 -612,24.0,23.0,-1.3098929438742493,2.287622053705056 -612,24.0,24.0,4.495715080321987,-7.864978761969621 -612,24.0,25.0,-1.2165301194494855,1.8171440463475024 -612,24.0,26.0,-1.9692920169982515,3.760212661917064 -612,25.0,24.0,-1.2165301194494855,1.8171440463475024 -612,25.0,25.0,1.2165301194494855,-1.8171440463475024 -612,26.0,24.0,-1.9692920169982515,3.760212661917064 -612,26.0,26.0,3.652281470778589,-9.46044252232512 -612,26.0,27.0,0.0,2.608731947574922 -612,26.0,28.0,-0.99553355095268,1.881005840357816 -612,26.0,29.0,-0.6874559028276572,1.293971494797717 -612,27.0,5.0,-4.362844058012917,15.463571542897856 -612,27.0,7.0,-1.4439790613954469,4.540814658476248 -612,27.0,26.0,0.0,2.608731947574922 -612,27.0,27.0,5.806823119408364,-22.67145722159613 -612,28.0,26.0,-0.99553355095268,1.881005840357816 -612,28.0,28.0,1.9075867579849564,-3.604364401207048 -612,28.0,29.0,-0.9120532070322764,1.7233585608492326 -612,29.0,26.0,-0.6874559028276572,1.293971494797717 -612,29.0,28.0,-0.9120532070322764,1.7233585608492326 -612,29.0,29.0,1.5995091098599337,-3.0173300556469496 -613,0.0,0.0,1.5408698687669766,-5.611274830095233 -613,0.0,2.0,-1.5408698687669766,5.631674830095234 -613,1.0,1.0,3.391675197464496,-10.276756723591316 -613,1.0,3.0,-1.7055303166990268,5.1973792282565086 -613,1.0,5.0,-1.6861448807654689,5.116477495334806 -613,2.0,0.0,-1.5408698687669766,5.631674830095234 -613,2.0,2.0,9.736318911079088,-29.13794745915803 -613,2.0,3.0,-8.19544904231211,23.5308726290628 -613,3.0,1.0,-1.7055303166990268,5.1973792282565086 -613,3.0,2.0,-8.19544904231211,23.5308726290628 -613,3.0,3.0,9.900979359011137,-33.202706969773025 -613,3.0,11.0,0.0,4.191255364806866 -613,4.0,4.0,2.954020035961983,-7.439067916773697 -613,4.0,6.0,-2.954020035961983,7.449267916773697 -613,5.0,1.0,-1.6861448807654689,5.116477495334806 -613,5.0,5.0,15.928507538860009,-58.60696415673565 -613,5.0,6.0,-3.590210423980992,11.02611441072814 -613,5.0,7.0,-6.289308176100628,22.0125786163522 -613,5.0,8.0,0.0,4.915840805411357 -613,5.0,27.0,-4.362844058012917,15.463571542897856 -613,6.0,4.0,-2.954020035961983,7.449267916773697 -613,6.0,5.0,-3.590210423980992,11.02611441072814 -613,6.0,6.0,6.544230459942975,-18.45668232750184 -613,7.0,5.0,-6.289308176100628,22.0125786163522 -613,7.0,7.0,7.733287237496075,-26.527493274828448 -613,7.0,27.0,-1.4439790613954469,4.540814658476248 -613,8.0,5.0,0.0,4.915840805411357 -613,8.0,8.0,0.0,-18.706293706293707 -613,8.0,9.0,0.0,9.090909090909092 -613,8.0,10.0,0.0,4.807692307692308 -613,9.0,8.0,0.0,9.090909090909092 -613,9.0,9.0,10.842723261141638,-34.18442921311381 -613,9.0,16.0,-3.956039125715353,10.317447719844054 -613,9.0,19.0,-1.7848303152666305,3.98535828943083 -613,9.0,20.0,-5.101853820159654,10.98071411292983 -613,10.0,8.0,0.0,4.807692307692308 -613,10.0,10.0,0.0,-4.807692307692308 -613,11.0,3.0,0.0,4.191255364806866 -613,11.0,11.0,6.573961583776156,-24.424167659260668 -613,11.0,12.0,0.0,7.142857142857143 -613,11.0,13.0,-1.5265676088395577,3.1734252729654173 -613,11.0,14.0,-3.0953961826564296,6.097275864326261 -613,11.0,15.0,-1.9519977922801688,4.104359379111847 -613,12.0,11.0,0.0,7.142857142857143 -613,12.0,12.0,0.0,-7.142857142857143 -613,13.0,11.0,-1.5265676088395577,3.1734252729654173 -613,13.0,13.0,1.5265676088395577,-3.1734252729654173 -613,14.0,11.0,-3.0953961826564296,6.097275864326261 -613,14.0,14.0,6.874546281965293,-13.760759672738311 -613,14.0,17.0,-1.8108011504072024,3.687418931630696 -613,14.0,22.0,-1.9683489489016612,3.976064876781356 -613,15.0,11.0,-1.9519977922801688,4.104359379111847 -613,15.0,15.0,3.271064728633931,-8.94513365126506 -613,15.0,16.0,-1.3190669363537617,4.8407742721532125 -613,16.0,9.0,-3.956039125715353,10.317447719844054 -613,16.0,15.0,-1.3190669363537617,4.8407742721532125 -613,16.0,16.0,5.275106062069114,-15.158221991997266 -613,17.0,14.0,-1.8108011504072024,3.687418931630696 -613,17.0,17.0,4.886487584415919,-9.906177730909668 -613,17.0,18.0,-3.0756864340087167,6.218758799278971 -613,18.0,17.0,-3.0756864340087167,6.218758799278971 -613,18.0,18.0,8.958039375185187,-17.98346468163191 -613,18.0,19.0,-5.88235294117647,11.76470588235294 -613,19.0,9.0,-1.7848303152666305,3.98535828943083 -613,19.0,18.0,-5.88235294117647,11.76470588235294 -613,19.0,19.0,7.6671832564431,-15.75006417178377 -613,20.0,9.0,-5.101853820159654,10.98071411292983 -613,20.0,20.0,21.876495189895888,-45.10843276170355 -613,20.0,21.0,-16.774641369736234,34.127718648773715 -613,21.0,20.0,-16.774641369736234,34.127718648773715 -613,21.0,21.0,19.31517952199179,-38.08212151184976 -613,21.0,23.0,-2.5405381522555563,3.95440286307604 -613,22.0,14.0,-1.9683489489016612,3.976064876781356 -613,22.0,22.0,3.429754555384988,-6.965303617315433 -613,22.0,23.0,-1.4614056064833263,2.989238740534077 -613,23.0,21.0,-2.5405381522555563,3.95440286307604 -613,23.0,22.0,-1.4614056064833263,2.989238740534077 -613,23.0,23.0,5.311836702613133,-9.188263657315172 -613,23.0,24.0,-1.3098929438742493,2.287622053705056 -613,24.0,23.0,-1.3098929438742493,2.287622053705056 -613,24.0,24.0,4.495715080321987,-7.864978761969621 -613,24.0,25.0,-1.2165301194494855,1.8171440463475024 -613,24.0,26.0,-1.9692920169982515,3.760212661917064 -613,25.0,24.0,-1.2165301194494855,1.8171440463475024 -613,25.0,25.0,1.2165301194494855,-1.8171440463475024 -613,26.0,24.0,-1.9692920169982515,3.760212661917064 -613,26.0,26.0,3.652281470778589,-9.46044252232512 -613,26.0,27.0,0.0,2.608731947574922 -613,26.0,28.0,-0.99553355095268,1.881005840357816 -613,26.0,29.0,-0.6874559028276572,1.293971494797717 -613,27.0,5.0,-4.362844058012917,15.463571542897856 -613,27.0,7.0,-1.4439790613954469,4.540814658476248 -613,27.0,26.0,0.0,2.608731947574922 -613,27.0,27.0,5.806823119408364,-22.67145722159613 -613,28.0,26.0,-0.99553355095268,1.881005840357816 -613,28.0,28.0,1.9075867579849564,-3.604364401207048 -613,28.0,29.0,-0.9120532070322764,1.7233585608492326 -613,29.0,26.0,-0.6874559028276572,1.293971494797717 -613,29.0,28.0,-0.9120532070322764,1.7233585608492326 -613,29.0,29.0,1.5995091098599337,-3.0173300556469496 -614,0.0,0.0,6.765516048652632,-21.23160167089863 -614,0.0,1.0,-5.224646179885656,15.646726840803398 -614,0.0,2.0,-1.5408698687669766,5.631674830095234 -614,1.0,0.0,-5.224646179885656,15.646726840803398 -614,1.0,1.0,9.75228216552403,-30.648662892676068 -614,1.0,3.0,-1.7055303166990268,5.1973792282565086 -614,1.0,4.0,-1.1359607881738778,4.772479328281356 -614,1.0,5.0,-1.6861448807654689,5.116477495334806 -614,2.0,0.0,-1.5408698687669766,5.631674830095234 -614,2.0,2.0,9.736318911079088,-29.13794745915803 -614,2.0,3.0,-8.19544904231211,23.5308726290628 -614,3.0,1.0,-1.7055303166990268,5.1973792282565086 -614,3.0,2.0,-8.19544904231211,23.5308726290628 -614,3.0,3.0,16.314103089185693,-55.509410535254254 -614,3.0,5.0,-6.413123730174556,22.31120356548123 -614,3.0,11.0,0.0,4.191255364806866 -614,4.0,1.0,-1.1359607881738778,4.772479328281356 -614,4.0,4.0,1.1359607881738778,-4.751579328281355 -614,5.0,1.0,-1.6861448807654689,5.116477495334806 -614,5.0,3.0,-6.413123730174556,22.31120356548123 -614,5.0,5.0,22.341631269034565,-82.8291478657789 -614,5.0,6.0,-3.590210423980992,11.02611441072814 -614,5.0,7.0,-6.289308176100628,22.0125786163522 -614,5.0,8.0,0.0,4.915840805411357 -614,5.0,9.0,0.0,1.8561002591115965 -614,5.0,27.0,-4.362844058012917,15.463571542897856 -614,6.0,5.0,-3.590210423980992,11.02611441072814 -614,6.0,6.0,3.590210423980992,-11.01761441072814 -614,7.0,5.0,-6.289308176100628,22.0125786163522 -614,7.0,7.0,7.733287237496075,-26.527493274828448 -614,7.0,27.0,-1.4439790613954469,4.540814658476248 -614,8.0,5.0,0.0,4.915840805411357 -614,8.0,8.0,0.0,-18.706293706293707 -614,8.0,9.0,0.0,9.090909090909092 -614,8.0,10.0,0.0,4.807692307692308 -614,9.0,5.0,0.0,1.8561002591115965 -614,9.0,8.0,0.0,9.090909090909092 -614,9.0,9.0,11.677212499257603,-37.39840237809157 -614,9.0,16.0,-3.956039125715353,10.317447719844054 -614,9.0,20.0,-5.101853820159654,10.98071411292983 -614,9.0,21.0,-2.619319553382597,5.400770303329455 -614,10.0,8.0,0.0,4.807692307692308 -614,10.0,10.0,0.0,-4.807692307692308 -614,11.0,3.0,0.0,4.191255364806866 -614,11.0,11.0,6.573961583776156,-24.424167659260668 -614,11.0,12.0,0.0,7.142857142857143 -614,11.0,13.0,-1.5265676088395577,3.1734252729654173 -614,11.0,14.0,-3.0953961826564296,6.097275864326261 -614,11.0,15.0,-1.9519977922801688,4.104359379111847 -614,12.0,11.0,0.0,7.142857142857143 -614,12.0,12.0,0.0,-7.142857142857143 -614,13.0,11.0,-1.5265676088395577,3.1734252729654173 -614,13.0,13.0,4.01751987283902,-5.424299332335067 -614,13.0,14.0,-2.4909522639994623,2.250874059369649 -614,14.0,11.0,-3.0953961826564296,6.097275864326261 -614,14.0,13.0,-2.4909522639994623,2.250874059369649 -614,14.0,14.0,9.365498545964757,-16.01163373210796 -614,14.0,17.0,-1.8108011504072024,3.687418931630696 -614,14.0,22.0,-1.9683489489016612,3.976064876781356 -614,15.0,11.0,-1.9519977922801688,4.104359379111847 -614,15.0,15.0,3.271064728633931,-8.94513365126506 -614,15.0,16.0,-1.3190669363537617,4.8407742721532125 -614,16.0,9.0,-3.956039125715353,10.317447719844054 -614,16.0,15.0,-1.3190669363537617,4.8407742721532125 -614,16.0,16.0,5.275106062069114,-15.158221991997266 -614,17.0,14.0,-1.8108011504072024,3.687418931630696 -614,17.0,17.0,4.886487584415919,-9.906177730909668 -614,17.0,18.0,-3.0756864340087167,6.218758799278971 -614,18.0,17.0,-3.0756864340087167,6.218758799278971 -614,18.0,18.0,8.958039375185187,-17.98346468163191 -614,18.0,19.0,-5.88235294117647,11.76470588235294 -614,19.0,18.0,-5.88235294117647,11.76470588235294 -614,19.0,19.0,5.88235294117647,-11.76470588235294 -614,20.0,9.0,-5.101853820159654,10.98071411292983 -614,20.0,20.0,21.876495189895888,-45.10843276170355 -614,20.0,21.0,-16.774641369736234,34.127718648773715 -614,21.0,9.0,-2.619319553382597,5.400770303329455 -614,21.0,20.0,-16.774641369736234,34.127718648773715 -614,21.0,21.0,21.93449907537439,-43.48289181517921 -614,21.0,23.0,-2.5405381522555563,3.95440286307604 -614,22.0,14.0,-1.9683489489016612,3.976064876781356 -614,22.0,22.0,3.429754555384988,-6.965303617315433 -614,22.0,23.0,-1.4614056064833263,2.989238740534077 -614,23.0,21.0,-2.5405381522555563,3.95440286307604 -614,23.0,22.0,-1.4614056064833263,2.989238740534077 -614,23.0,23.0,5.311836702613133,-9.188263657315172 -614,23.0,24.0,-1.3098929438742493,2.287622053705056 -614,24.0,23.0,-1.3098929438742493,2.287622053705056 -614,24.0,24.0,2.526423063323735,-4.104766100052558 -614,24.0,25.0,-1.2165301194494855,1.8171440463475024 -614,25.0,24.0,-1.2165301194494855,1.8171440463475024 -614,25.0,25.0,1.2165301194494855,-1.8171440463475024 -614,26.0,26.0,1.6829894537803372,-5.700229860408058 -614,26.0,27.0,0.0,2.608731947574922 -614,26.0,28.0,-0.99553355095268,1.881005840357816 -614,26.0,29.0,-0.6874559028276572,1.293971494797717 -614,27.0,5.0,-4.362844058012917,15.463571542897856 -614,27.0,7.0,-1.4439790613954469,4.540814658476248 -614,27.0,26.0,0.0,2.608731947574922 -614,27.0,27.0,5.806823119408364,-22.67145722159613 -614,28.0,26.0,-0.99553355095268,1.881005840357816 -614,28.0,28.0,1.9075867579849564,-3.604364401207048 -614,28.0,29.0,-0.9120532070322764,1.7233585608492326 -614,29.0,26.0,-0.6874559028276572,1.293971494797717 -614,29.0,28.0,-0.9120532070322764,1.7233585608492326 -614,29.0,29.0,1.5995091098599337,-3.0173300556469496 -615,0.0,0.0,1.5408698687669766,-5.611274830095233 -615,0.0,2.0,-1.5408698687669766,5.631674830095234 -615,1.0,1.0,4.527635985638374,-15.028336051872673 -615,1.0,3.0,-1.7055303166990268,5.1973792282565086 -615,1.0,4.0,-1.1359607881738778,4.772479328281356 -615,1.0,5.0,-1.6861448807654689,5.116477495334806 -615,2.0,0.0,-1.5408698687669766,5.631674830095234 -615,2.0,2.0,9.736318911079088,-29.13794745915803 -615,2.0,3.0,-8.19544904231211,23.5308726290628 -615,3.0,1.0,-1.7055303166990268,5.1973792282565086 -615,3.0,2.0,-8.19544904231211,23.5308726290628 -615,3.0,3.0,16.314103089185693,-55.509410535254254 -615,3.0,5.0,-6.413123730174556,22.31120356548123 -615,3.0,11.0,0.0,4.191255364806866 -615,4.0,1.0,-1.1359607881738778,4.772479328281356 -615,4.0,4.0,1.1359607881738778,-4.751579328281355 -615,5.0,1.0,-1.6861448807654689,5.116477495334806 -615,5.0,3.0,-6.413123730174556,22.31120356548123 -615,5.0,5.0,22.341631269034565,-82.8291478657789 -615,5.0,6.0,-3.590210423980992,11.02611441072814 -615,5.0,7.0,-6.289308176100628,22.0125786163522 -615,5.0,8.0,0.0,4.915840805411357 -615,5.0,9.0,0.0,1.8561002591115965 -615,5.0,27.0,-4.362844058012917,15.463571542897856 -615,6.0,5.0,-3.590210423980992,11.02611441072814 -615,6.0,6.0,3.590210423980992,-11.01761441072814 -615,7.0,5.0,-6.289308176100628,22.0125786163522 -615,7.0,7.0,6.289308176100628,-22.0080786163522 -615,8.0,5.0,0.0,4.915840805411357 -615,8.0,8.0,0.0,-18.706293706293707 -615,8.0,9.0,0.0,9.090909090909092 -615,8.0,10.0,0.0,4.807692307692308 -615,9.0,5.0,0.0,1.8561002591115965 -615,9.0,8.0,0.0,9.090909090909092 -615,9.0,9.0,13.462042814524237,-41.3837606675224 -615,9.0,16.0,-3.956039125715353,10.317447719844054 -615,9.0,19.0,-1.7848303152666305,3.98535828943083 -615,9.0,20.0,-5.101853820159654,10.98071411292983 -615,9.0,21.0,-2.619319553382597,5.400770303329455 -615,10.0,8.0,0.0,4.807692307692308 -615,10.0,10.0,0.0,-4.807692307692308 -615,11.0,3.0,0.0,4.191255364806866 -615,11.0,11.0,6.573961583776156,-24.424167659260668 -615,11.0,12.0,0.0,7.142857142857143 -615,11.0,13.0,-1.5265676088395577,3.1734252729654173 -615,11.0,14.0,-3.0953961826564296,6.097275864326261 -615,11.0,15.0,-1.9519977922801688,4.104359379111847 -615,12.0,11.0,0.0,7.142857142857143 -615,12.0,12.0,0.0,-7.142857142857143 -615,13.0,11.0,-1.5265676088395577,3.1734252729654173 -615,13.0,13.0,4.01751987283902,-5.424299332335067 -615,13.0,14.0,-2.4909522639994623,2.250874059369649 -615,14.0,11.0,-3.0953961826564296,6.097275864326261 -615,14.0,13.0,-2.4909522639994623,2.250874059369649 -615,14.0,14.0,9.365498545964757,-16.01163373210796 -615,14.0,17.0,-1.8108011504072024,3.687418931630696 -615,14.0,22.0,-1.9683489489016612,3.976064876781356 -615,15.0,11.0,-1.9519977922801688,4.104359379111847 -615,15.0,15.0,3.271064728633931,-8.94513365126506 -615,15.0,16.0,-1.3190669363537617,4.8407742721532125 -615,16.0,9.0,-3.956039125715353,10.317447719844054 -615,16.0,15.0,-1.3190669363537617,4.8407742721532125 -615,16.0,16.0,5.275106062069114,-15.158221991997266 -615,17.0,14.0,-1.8108011504072024,3.687418931630696 -615,17.0,17.0,4.886487584415919,-9.906177730909668 -615,17.0,18.0,-3.0756864340087167,6.218758799278971 -615,18.0,17.0,-3.0756864340087167,6.218758799278971 -615,18.0,18.0,8.958039375185187,-17.98346468163191 -615,18.0,19.0,-5.88235294117647,11.76470588235294 -615,19.0,9.0,-1.7848303152666305,3.98535828943083 -615,19.0,18.0,-5.88235294117647,11.76470588235294 -615,19.0,19.0,7.6671832564431,-15.75006417178377 -615,20.0,9.0,-5.101853820159654,10.98071411292983 -615,20.0,20.0,21.876495189895888,-45.10843276170355 -615,20.0,21.0,-16.774641369736234,34.127718648773715 -615,21.0,9.0,-2.619319553382597,5.400770303329455 -615,21.0,20.0,-16.774641369736234,34.127718648773715 -615,21.0,21.0,21.93449907537439,-43.48289181517921 -615,21.0,23.0,-2.5405381522555563,3.95440286307604 -615,22.0,14.0,-1.9683489489016612,3.976064876781356 -615,22.0,22.0,3.429754555384988,-6.965303617315433 -615,22.0,23.0,-1.4614056064833263,2.989238740534077 -615,23.0,21.0,-2.5405381522555563,3.95440286307604 -615,23.0,22.0,-1.4614056064833263,2.989238740534077 -615,23.0,23.0,5.311836702613133,-9.188263657315172 -615,23.0,24.0,-1.3098929438742493,2.287622053705056 -615,24.0,23.0,-1.3098929438742493,2.287622053705056 -615,24.0,24.0,4.495715080321987,-7.864978761969621 -615,24.0,25.0,-1.2165301194494855,1.8171440463475024 -615,24.0,26.0,-1.9692920169982515,3.760212661917064 -615,25.0,24.0,-1.2165301194494855,1.8171440463475024 -615,25.0,25.0,1.2165301194494855,-1.8171440463475024 -615,26.0,24.0,-1.9692920169982515,3.760212661917064 -615,26.0,26.0,3.652281470778589,-9.46044252232512 -615,26.0,27.0,0.0,2.608731947574922 -615,26.0,28.0,-0.99553355095268,1.881005840357816 -615,26.0,29.0,-0.6874559028276572,1.293971494797717 -615,27.0,5.0,-4.362844058012917,15.463571542897856 -615,27.0,26.0,0.0,2.608731947574922 -615,27.0,27.0,4.362844058012917,-18.15204256311988 -615,28.0,26.0,-0.99553355095268,1.881005840357816 -615,28.0,28.0,1.9075867579849564,-3.604364401207048 -615,28.0,29.0,-0.9120532070322764,1.7233585608492326 -615,29.0,26.0,-0.6874559028276572,1.293971494797717 -615,29.0,28.0,-0.9120532070322764,1.7233585608492326 -615,29.0,29.0,1.5995091098599337,-3.0173300556469496 -616,0.0,0.0,6.765516048652632,-21.23160167089863 -616,0.0,1.0,-5.224646179885656,15.646726840803398 -616,0.0,2.0,-1.5408698687669766,5.631674830095234 -616,1.0,0.0,-5.224646179885656,15.646726840803398 -616,1.0,1.0,9.75228216552403,-30.648662892676068 -616,1.0,3.0,-1.7055303166990268,5.1973792282565086 -616,1.0,4.0,-1.1359607881738778,4.772479328281356 -616,1.0,5.0,-1.6861448807654689,5.116477495334806 -616,2.0,0.0,-1.5408698687669766,5.631674830095234 -616,2.0,2.0,9.736318911079088,-29.13794745915803 -616,2.0,3.0,-8.19544904231211,23.5308726290628 -616,3.0,1.0,-1.7055303166990268,5.1973792282565086 -616,3.0,2.0,-8.19544904231211,23.5308726290628 -616,3.0,3.0,16.314103089185693,-55.509410535254254 -616,3.0,5.0,-6.413123730174556,22.31120356548123 -616,3.0,11.0,0.0,4.191255364806866 -616,4.0,1.0,-1.1359607881738778,4.772479328281356 -616,4.0,4.0,4.089980824135861,-12.190647245055052 -616,4.0,6.0,-2.954020035961983,7.449267916773697 -616,5.0,1.0,-1.6861448807654689,5.116477495334806 -616,5.0,3.0,-6.413123730174556,22.31120356548123 -616,5.0,5.0,22.341631269034565,-82.8291478657789 -616,5.0,6.0,-3.590210423980992,11.02611441072814 -616,5.0,7.0,-6.289308176100628,22.0125786163522 -616,5.0,8.0,0.0,4.915840805411357 -616,5.0,9.0,0.0,1.8561002591115965 -616,5.0,27.0,-4.362844058012917,15.463571542897856 -616,6.0,4.0,-2.954020035961983,7.449267916773697 -616,6.0,5.0,-3.590210423980992,11.02611441072814 -616,6.0,6.0,6.544230459942975,-18.45668232750184 -616,7.0,5.0,-6.289308176100628,22.0125786163522 -616,7.0,7.0,7.733287237496075,-26.527493274828448 -616,7.0,27.0,-1.4439790613954469,4.540814658476248 -616,8.0,5.0,0.0,4.915840805411357 -616,8.0,8.0,0.0,-18.706293706293707 -616,8.0,9.0,0.0,9.090909090909092 -616,8.0,10.0,0.0,4.807692307692308 -616,9.0,5.0,0.0,1.8561002591115965 -616,9.0,8.0,0.0,9.090909090909092 -616,9.0,9.0,13.462042814524237,-41.3837606675224 -616,9.0,16.0,-3.956039125715353,10.317447719844054 -616,9.0,19.0,-1.7848303152666305,3.98535828943083 -616,9.0,20.0,-5.101853820159654,10.98071411292983 -616,9.0,21.0,-2.619319553382597,5.400770303329455 -616,10.0,8.0,0.0,4.807692307692308 -616,10.0,10.0,0.0,-4.807692307692308 -616,11.0,3.0,0.0,4.191255364806866 -616,11.0,11.0,6.573961583776156,-24.424167659260668 -616,11.0,12.0,0.0,7.142857142857143 -616,11.0,13.0,-1.5265676088395577,3.1734252729654173 -616,11.0,14.0,-3.0953961826564296,6.097275864326261 -616,11.0,15.0,-1.9519977922801688,4.104359379111847 -616,12.0,11.0,0.0,7.142857142857143 -616,12.0,12.0,0.0,-7.142857142857143 -616,13.0,11.0,-1.5265676088395577,3.1734252729654173 -616,13.0,13.0,4.01751987283902,-5.424299332335067 -616,13.0,14.0,-2.4909522639994623,2.250874059369649 -616,14.0,11.0,-3.0953961826564296,6.097275864326261 -616,14.0,13.0,-2.4909522639994623,2.250874059369649 -616,14.0,14.0,9.365498545964757,-16.01163373210796 -616,14.0,17.0,-1.8108011504072024,3.687418931630696 -616,14.0,22.0,-1.9683489489016612,3.976064876781356 -616,15.0,11.0,-1.9519977922801688,4.104359379111847 -616,15.0,15.0,3.271064728633931,-8.94513365126506 -616,15.0,16.0,-1.3190669363537617,4.8407742721532125 -616,16.0,9.0,-3.956039125715353,10.317447719844054 -616,16.0,15.0,-1.3190669363537617,4.8407742721532125 -616,16.0,16.0,5.275106062069114,-15.158221991997266 -616,17.0,14.0,-1.8108011504072024,3.687418931630696 -616,17.0,17.0,4.886487584415919,-9.906177730909668 -616,17.0,18.0,-3.0756864340087167,6.218758799278971 -616,18.0,17.0,-3.0756864340087167,6.218758799278971 -616,18.0,18.0,8.958039375185187,-17.98346468163191 -616,18.0,19.0,-5.88235294117647,11.76470588235294 -616,19.0,9.0,-1.7848303152666305,3.98535828943083 -616,19.0,18.0,-5.88235294117647,11.76470588235294 -616,19.0,19.0,7.6671832564431,-15.75006417178377 -616,20.0,9.0,-5.101853820159654,10.98071411292983 -616,20.0,20.0,21.876495189895888,-45.10843276170355 -616,20.0,21.0,-16.774641369736234,34.127718648773715 -616,21.0,9.0,-2.619319553382597,5.400770303329455 -616,21.0,20.0,-16.774641369736234,34.127718648773715 -616,21.0,21.0,21.93449907537439,-43.48289181517921 -616,21.0,23.0,-2.5405381522555563,3.95440286307604 -616,22.0,14.0,-1.9683489489016612,3.976064876781356 -616,22.0,22.0,3.429754555384988,-6.965303617315433 -616,22.0,23.0,-1.4614056064833263,2.989238740534077 -616,23.0,21.0,-2.5405381522555563,3.95440286307604 -616,23.0,22.0,-1.4614056064833263,2.989238740534077 -616,23.0,23.0,5.311836702613133,-9.188263657315172 -616,23.0,24.0,-1.3098929438742493,2.287622053705056 -616,24.0,23.0,-1.3098929438742493,2.287622053705056 -616,24.0,24.0,4.495715080321987,-7.864978761969621 -616,24.0,25.0,-1.2165301194494855,1.8171440463475024 -616,24.0,26.0,-1.9692920169982515,3.760212661917064 -616,25.0,24.0,-1.2165301194494855,1.8171440463475024 -616,25.0,25.0,1.2165301194494855,-1.8171440463475024 -616,26.0,24.0,-1.9692920169982515,3.760212661917064 -616,26.0,26.0,3.652281470778589,-9.46044252232512 -616,26.0,27.0,0.0,2.608731947574922 -616,26.0,28.0,-0.99553355095268,1.881005840357816 -616,26.0,29.0,-0.6874559028276572,1.293971494797717 -616,27.0,5.0,-4.362844058012917,15.463571542897856 -616,27.0,7.0,-1.4439790613954469,4.540814658476248 -616,27.0,26.0,0.0,2.608731947574922 -616,27.0,27.0,5.806823119408364,-22.67145722159613 -616,28.0,26.0,-0.99553355095268,1.881005840357816 -616,28.0,28.0,1.9075867579849564,-3.604364401207048 -616,28.0,29.0,-0.9120532070322764,1.7233585608492326 -616,29.0,26.0,-0.6874559028276572,1.293971494797717 -616,29.0,28.0,-0.9120532070322764,1.7233585608492326 -616,29.0,29.0,1.5995091098599337,-3.0173300556469496 -617,0.0,0.0,6.765516048652632,-21.23160167089863 -617,0.0,1.0,-5.224646179885656,15.646726840803398 -617,0.0,2.0,-1.5408698687669766,5.631674830095234 -617,1.0,0.0,-5.224646179885656,15.646726840803398 -617,1.0,1.0,9.75228216552403,-30.648662892676068 -617,1.0,3.0,-1.7055303166990268,5.1973792282565086 -617,1.0,4.0,-1.1359607881738778,4.772479328281356 -617,1.0,5.0,-1.6861448807654689,5.116477495334806 -617,2.0,0.0,-1.5408698687669766,5.631674830095234 -617,2.0,2.0,9.736318911079088,-29.13794745915803 -617,2.0,3.0,-8.19544904231211,23.5308726290628 -617,3.0,1.0,-1.7055303166990268,5.1973792282565086 -617,3.0,2.0,-8.19544904231211,23.5308726290628 -617,3.0,3.0,16.314103089185693,-55.509410535254254 -617,3.0,5.0,-6.413123730174556,22.31120356548123 -617,3.0,11.0,0.0,4.191255364806866 -617,4.0,1.0,-1.1359607881738778,4.772479328281356 -617,4.0,4.0,4.089980824135861,-12.190647245055052 -617,4.0,6.0,-2.954020035961983,7.449267916773697 -617,5.0,1.0,-1.6861448807654689,5.116477495334806 -617,5.0,3.0,-6.413123730174556,22.31120356548123 -617,5.0,5.0,22.341631269034565,-82.8291478657789 -617,5.0,6.0,-3.590210423980992,11.02611441072814 -617,5.0,7.0,-6.289308176100628,22.0125786163522 -617,5.0,8.0,0.0,4.915840805411357 -617,5.0,9.0,0.0,1.8561002591115965 -617,5.0,27.0,-4.362844058012917,15.463571542897856 -617,6.0,4.0,-2.954020035961983,7.449267916773697 -617,6.0,5.0,-3.590210423980992,11.02611441072814 -617,6.0,6.0,6.544230459942975,-18.45668232750184 -617,7.0,5.0,-6.289308176100628,22.0125786163522 -617,7.0,7.0,7.733287237496075,-26.527493274828448 -617,7.0,27.0,-1.4439790613954469,4.540814658476248 -617,8.0,5.0,0.0,4.915840805411357 -617,8.0,8.0,0.0,-18.706293706293707 -617,8.0,9.0,0.0,9.090909090909092 -617,8.0,10.0,0.0,4.807692307692308 -617,9.0,5.0,0.0,1.8561002591115965 -617,9.0,8.0,0.0,9.090909090909092 -617,9.0,9.0,13.462042814524237,-41.3837606675224 -617,9.0,16.0,-3.956039125715353,10.317447719844054 -617,9.0,19.0,-1.7848303152666305,3.98535828943083 -617,9.0,20.0,-5.101853820159654,10.98071411292983 -617,9.0,21.0,-2.619319553382597,5.400770303329455 -617,10.0,8.0,0.0,4.807692307692308 -617,10.0,10.0,0.0,-4.807692307692308 -617,11.0,3.0,0.0,4.191255364806866 -617,11.0,11.0,3.478565401119727,-18.326891794934408 -617,11.0,12.0,0.0,7.142857142857143 -617,11.0,13.0,-1.5265676088395577,3.1734252729654173 -617,11.0,15.0,-1.9519977922801688,4.104359379111847 -617,12.0,11.0,0.0,7.142857142857143 -617,12.0,12.0,0.0,-7.142857142857143 -617,13.0,11.0,-1.5265676088395577,3.1734252729654173 -617,13.0,13.0,4.01751987283902,-5.424299332335067 -617,13.0,14.0,-2.4909522639994623,2.250874059369649 -617,14.0,13.0,-2.4909522639994623,2.250874059369649 -617,14.0,14.0,6.270102363308326,-9.9143578677817 -617,14.0,17.0,-1.8108011504072024,3.687418931630696 -617,14.0,22.0,-1.9683489489016612,3.976064876781356 -617,15.0,11.0,-1.9519977922801688,4.104359379111847 -617,15.0,15.0,3.271064728633931,-8.94513365126506 -617,15.0,16.0,-1.3190669363537617,4.8407742721532125 -617,16.0,9.0,-3.956039125715353,10.317447719844054 -617,16.0,15.0,-1.3190669363537617,4.8407742721532125 -617,16.0,16.0,5.275106062069114,-15.158221991997266 -617,17.0,14.0,-1.8108011504072024,3.687418931630696 -617,17.0,17.0,4.886487584415919,-9.906177730909668 -617,17.0,18.0,-3.0756864340087167,6.218758799278971 -617,18.0,17.0,-3.0756864340087167,6.218758799278971 -617,18.0,18.0,8.958039375185187,-17.98346468163191 -617,18.0,19.0,-5.88235294117647,11.76470588235294 -617,19.0,9.0,-1.7848303152666305,3.98535828943083 -617,19.0,18.0,-5.88235294117647,11.76470588235294 -617,19.0,19.0,7.6671832564431,-15.75006417178377 -617,20.0,9.0,-5.101853820159654,10.98071411292983 -617,20.0,20.0,21.876495189895888,-45.10843276170355 -617,20.0,21.0,-16.774641369736234,34.127718648773715 -617,21.0,9.0,-2.619319553382597,5.400770303329455 -617,21.0,20.0,-16.774641369736234,34.127718648773715 -617,21.0,21.0,21.93449907537439,-43.48289181517921 -617,21.0,23.0,-2.5405381522555563,3.95440286307604 -617,22.0,14.0,-1.9683489489016612,3.976064876781356 -617,22.0,22.0,3.429754555384988,-6.965303617315433 -617,22.0,23.0,-1.4614056064833263,2.989238740534077 -617,23.0,21.0,-2.5405381522555563,3.95440286307604 -617,23.0,22.0,-1.4614056064833263,2.989238740534077 -617,23.0,23.0,5.311836702613133,-9.188263657315172 -617,23.0,24.0,-1.3098929438742493,2.287622053705056 -617,24.0,23.0,-1.3098929438742493,2.287622053705056 -617,24.0,24.0,4.495715080321987,-7.864978761969621 -617,24.0,25.0,-1.2165301194494855,1.8171440463475024 -617,24.0,26.0,-1.9692920169982515,3.760212661917064 -617,25.0,24.0,-1.2165301194494855,1.8171440463475024 -617,25.0,25.0,1.2165301194494855,-1.8171440463475024 -617,26.0,24.0,-1.9692920169982515,3.760212661917064 -617,26.0,26.0,3.652281470778589,-9.46044252232512 -617,26.0,27.0,0.0,2.608731947574922 -617,26.0,28.0,-0.99553355095268,1.881005840357816 -617,26.0,29.0,-0.6874559028276572,1.293971494797717 -617,27.0,5.0,-4.362844058012917,15.463571542897856 -617,27.0,7.0,-1.4439790613954469,4.540814658476248 -617,27.0,26.0,0.0,2.608731947574922 -617,27.0,27.0,5.806823119408364,-22.67145722159613 -617,28.0,26.0,-0.99553355095268,1.881005840357816 -617,28.0,28.0,1.9075867579849564,-3.604364401207048 -617,28.0,29.0,-0.9120532070322764,1.7233585608492326 -617,29.0,26.0,-0.6874559028276572,1.293971494797717 -617,29.0,28.0,-0.9120532070322764,1.7233585608492326 -617,29.0,29.0,1.5995091098599337,-3.0173300556469496 -618,0.0,0.0,6.765516048652632,-21.23160167089863 -618,0.0,1.0,-5.224646179885656,15.646726840803398 -618,0.0,2.0,-1.5408698687669766,5.631674830095234 -618,1.0,0.0,-5.224646179885656,15.646726840803398 -618,1.0,1.0,9.75228216552403,-30.648662892676068 -618,1.0,3.0,-1.7055303166990268,5.1973792282565086 -618,1.0,4.0,-1.1359607881738778,4.772479328281356 -618,1.0,5.0,-1.6861448807654689,5.116477495334806 -618,2.0,0.0,-1.5408698687669766,5.631674830095234 -618,2.0,2.0,9.736318911079088,-29.13794745915803 -618,2.0,3.0,-8.19544904231211,23.5308726290628 -618,3.0,1.0,-1.7055303166990268,5.1973792282565086 -618,3.0,2.0,-8.19544904231211,23.5308726290628 -618,3.0,3.0,16.314103089185693,-55.509410535254254 -618,3.0,5.0,-6.413123730174556,22.31120356548123 -618,3.0,11.0,0.0,4.191255364806866 -618,4.0,1.0,-1.1359607881738778,4.772479328281356 -618,4.0,4.0,4.089980824135861,-12.190647245055052 -618,4.0,6.0,-2.954020035961983,7.449267916773697 -618,5.0,1.0,-1.6861448807654689,5.116477495334806 -618,5.0,3.0,-6.413123730174556,22.31120356548123 -618,5.0,5.0,22.341631269034565,-82.8291478657789 -618,5.0,6.0,-3.590210423980992,11.02611441072814 -618,5.0,7.0,-6.289308176100628,22.0125786163522 -618,5.0,8.0,0.0,4.915840805411357 -618,5.0,9.0,0.0,1.8561002591115965 -618,5.0,27.0,-4.362844058012917,15.463571542897856 -618,6.0,4.0,-2.954020035961983,7.449267916773697 -618,6.0,5.0,-3.590210423980992,11.02611441072814 -618,6.0,6.0,6.544230459942975,-18.45668232750184 -618,7.0,5.0,-6.289308176100628,22.0125786163522 -618,7.0,7.0,6.289308176100628,-22.0080786163522 -618,8.0,5.0,0.0,4.915840805411357 -618,8.0,8.0,0.0,-18.706293706293707 -618,8.0,9.0,0.0,9.090909090909092 -618,8.0,10.0,0.0,4.807692307692308 -618,9.0,5.0,0.0,1.8561002591115965 -618,9.0,8.0,0.0,9.090909090909092 -618,9.0,9.0,10.842723261141638,-35.98299036419294 -618,9.0,16.0,-3.956039125715353,10.317447719844054 -618,9.0,19.0,-1.7848303152666305,3.98535828943083 -618,9.0,20.0,-5.101853820159654,10.98071411292983 -618,10.0,8.0,0.0,4.807692307692308 -618,10.0,10.0,0.0,-4.807692307692308 -618,11.0,3.0,0.0,4.191255364806866 -618,11.0,11.0,5.047393974936599,-21.25074238629525 -618,11.0,12.0,0.0,7.142857142857143 -618,11.0,14.0,-3.0953961826564296,6.097275864326261 -618,11.0,15.0,-1.9519977922801688,4.104359379111847 -618,12.0,11.0,0.0,7.142857142857143 -618,12.0,12.0,0.0,-7.142857142857143 -618,13.0,13.0,2.4909522639994623,-2.250874059369649 -618,13.0,14.0,-2.4909522639994623,2.250874059369649 -618,14.0,11.0,-3.0953961826564296,6.097275864326261 -618,14.0,13.0,-2.4909522639994623,2.250874059369649 -618,14.0,14.0,7.554697395557554,-12.324214800477266 -618,14.0,22.0,-1.9683489489016612,3.976064876781356 -618,15.0,11.0,-1.9519977922801688,4.104359379111847 -618,15.0,15.0,3.271064728633931,-8.94513365126506 -618,15.0,16.0,-1.3190669363537617,4.8407742721532125 -618,16.0,9.0,-3.956039125715353,10.317447719844054 -618,16.0,15.0,-1.3190669363537617,4.8407742721532125 -618,16.0,16.0,5.275106062069114,-15.158221991997266 -618,17.0,17.0,3.0756864340087167,-6.218758799278971 -618,17.0,18.0,-3.0756864340087167,6.218758799278971 -618,18.0,17.0,-3.0756864340087167,6.218758799278971 -618,18.0,18.0,8.958039375185187,-17.98346468163191 -618,18.0,19.0,-5.88235294117647,11.76470588235294 -618,19.0,9.0,-1.7848303152666305,3.98535828943083 -618,19.0,18.0,-5.88235294117647,11.76470588235294 -618,19.0,19.0,7.6671832564431,-15.75006417178377 -618,20.0,9.0,-5.101853820159654,10.98071411292983 -618,20.0,20.0,21.876495189895888,-45.10843276170355 -618,20.0,21.0,-16.774641369736234,34.127718648773715 -618,21.0,20.0,-16.774641369736234,34.127718648773715 -618,21.0,21.0,19.31517952199179,-38.08212151184976 -618,21.0,23.0,-2.5405381522555563,3.95440286307604 -618,22.0,14.0,-1.9683489489016612,3.976064876781356 -618,22.0,22.0,3.429754555384988,-6.965303617315433 -618,22.0,23.0,-1.4614056064833263,2.989238740534077 -618,23.0,21.0,-2.5405381522555563,3.95440286307604 -618,23.0,22.0,-1.4614056064833263,2.989238740534077 -618,23.0,23.0,5.311836702613133,-9.188263657315172 -618,23.0,24.0,-1.3098929438742493,2.287622053705056 -618,24.0,23.0,-1.3098929438742493,2.287622053705056 -618,24.0,24.0,4.495715080321987,-7.864978761969621 -618,24.0,25.0,-1.2165301194494855,1.8171440463475024 -618,24.0,26.0,-1.9692920169982515,3.760212661917064 -618,25.0,24.0,-1.2165301194494855,1.8171440463475024 -618,25.0,25.0,1.2165301194494855,-1.8171440463475024 -618,26.0,24.0,-1.9692920169982515,3.760212661917064 -618,26.0,26.0,3.652281470778589,-9.46044252232512 -618,26.0,27.0,0.0,2.608731947574922 -618,26.0,28.0,-0.99553355095268,1.881005840357816 -618,26.0,29.0,-0.6874559028276572,1.293971494797717 -618,27.0,5.0,-4.362844058012917,15.463571542897856 -618,27.0,26.0,0.0,2.608731947574922 -618,27.0,27.0,4.362844058012917,-18.15204256311988 -618,28.0,26.0,-0.99553355095268,1.881005840357816 -618,28.0,28.0,1.9075867579849564,-3.604364401207048 -618,28.0,29.0,-0.9120532070322764,1.7233585608492326 -618,29.0,26.0,-0.6874559028276572,1.293971494797717 -618,29.0,28.0,-0.9120532070322764,1.7233585608492326 -618,29.0,29.0,1.5995091098599337,-3.0173300556469496 -619,0.0,0.0,6.765516048652632,-21.23160167089863 -619,0.0,1.0,-5.224646179885656,15.646726840803398 -619,0.0,2.0,-1.5408698687669766,5.631674830095234 -619,1.0,0.0,-5.224646179885656,15.646726840803398 -619,1.0,1.0,9.75228216552403,-30.648662892676068 -619,1.0,3.0,-1.7055303166990268,5.1973792282565086 -619,1.0,4.0,-1.1359607881738778,4.772479328281356 -619,1.0,5.0,-1.6861448807654689,5.116477495334806 -619,2.0,0.0,-1.5408698687669766,5.631674830095234 -619,2.0,2.0,9.736318911079088,-29.13794745915803 -619,2.0,3.0,-8.19544904231211,23.5308726290628 -619,3.0,1.0,-1.7055303166990268,5.1973792282565086 -619,3.0,2.0,-8.19544904231211,23.5308726290628 -619,3.0,3.0,16.314103089185693,-55.509410535254254 -619,3.0,5.0,-6.413123730174556,22.31120356548123 -619,3.0,11.0,0.0,4.191255364806866 -619,4.0,1.0,-1.1359607881738778,4.772479328281356 -619,4.0,4.0,4.089980824135861,-12.190647245055052 -619,4.0,6.0,-2.954020035961983,7.449267916773697 -619,5.0,1.0,-1.6861448807654689,5.116477495334806 -619,5.0,3.0,-6.413123730174556,22.31120356548123 -619,5.0,5.0,22.341631269034565,-82.8291478657789 -619,5.0,6.0,-3.590210423980992,11.02611441072814 -619,5.0,7.0,-6.289308176100628,22.0125786163522 -619,5.0,8.0,0.0,4.915840805411357 -619,5.0,9.0,0.0,1.8561002591115965 -619,5.0,27.0,-4.362844058012917,15.463571542897856 -619,6.0,4.0,-2.954020035961983,7.449267916773697 -619,6.0,5.0,-3.590210423980992,11.02611441072814 -619,6.0,6.0,6.544230459942975,-18.45668232750184 -619,7.0,5.0,-6.289308176100628,22.0125786163522 -619,7.0,7.0,7.733287237496075,-26.527493274828448 -619,7.0,27.0,-1.4439790613954469,4.540814658476248 -619,8.0,5.0,0.0,4.915840805411357 -619,8.0,8.0,0.0,-18.706293706293707 -619,8.0,9.0,0.0,9.090909090909092 -619,8.0,10.0,0.0,4.807692307692308 -619,9.0,5.0,0.0,1.8561002591115965 -619,9.0,8.0,0.0,9.090909090909092 -619,9.0,9.0,13.462042814524237,-41.3837606675224 -619,9.0,16.0,-3.956039125715353,10.317447719844054 -619,9.0,19.0,-1.7848303152666305,3.98535828943083 -619,9.0,20.0,-5.101853820159654,10.98071411292983 -619,9.0,21.0,-2.619319553382597,5.400770303329455 -619,10.0,8.0,0.0,4.807692307692308 -619,10.0,10.0,0.0,-4.807692307692308 -619,11.0,3.0,0.0,4.191255364806866 -619,11.0,11.0,6.573961583776156,-24.424167659260668 -619,11.0,12.0,0.0,7.142857142857143 -619,11.0,13.0,-1.5265676088395577,3.1734252729654173 -619,11.0,14.0,-3.0953961826564296,6.097275864326261 -619,11.0,15.0,-1.9519977922801688,4.104359379111847 -619,12.0,11.0,0.0,7.142857142857143 -619,12.0,12.0,0.0,-7.142857142857143 -619,13.0,11.0,-1.5265676088395577,3.1734252729654173 -619,13.0,13.0,4.01751987283902,-5.424299332335067 -619,13.0,14.0,-2.4909522639994623,2.250874059369649 -619,14.0,11.0,-3.0953961826564296,6.097275864326261 -619,14.0,13.0,-2.4909522639994623,2.250874059369649 -619,14.0,14.0,9.365498545964757,-16.01163373210796 -619,14.0,17.0,-1.8108011504072024,3.687418931630696 -619,14.0,22.0,-1.9683489489016612,3.976064876781356 -619,15.0,11.0,-1.9519977922801688,4.104359379111847 -619,15.0,15.0,3.271064728633931,-8.94513365126506 -619,15.0,16.0,-1.3190669363537617,4.8407742721532125 -619,16.0,9.0,-3.956039125715353,10.317447719844054 -619,16.0,15.0,-1.3190669363537617,4.8407742721532125 -619,16.0,16.0,5.275106062069114,-15.158221991997266 -619,17.0,14.0,-1.8108011504072024,3.687418931630696 -619,17.0,17.0,4.886487584415919,-9.906177730909668 -619,17.0,18.0,-3.0756864340087167,6.218758799278971 -619,18.0,17.0,-3.0756864340087167,6.218758799278971 -619,18.0,18.0,8.958039375185187,-17.98346468163191 -619,18.0,19.0,-5.88235294117647,11.76470588235294 -619,19.0,9.0,-1.7848303152666305,3.98535828943083 -619,19.0,18.0,-5.88235294117647,11.76470588235294 -619,19.0,19.0,7.6671832564431,-15.75006417178377 -619,20.0,9.0,-5.101853820159654,10.98071411292983 -619,20.0,20.0,21.876495189895888,-45.10843276170355 -619,20.0,21.0,-16.774641369736234,34.127718648773715 -619,21.0,9.0,-2.619319553382597,5.400770303329455 -619,21.0,20.0,-16.774641369736234,34.127718648773715 -619,21.0,21.0,21.93449907537439,-43.48289181517921 -619,21.0,23.0,-2.5405381522555563,3.95440286307604 -619,22.0,14.0,-1.9683489489016612,3.976064876781356 -619,22.0,22.0,3.429754555384988,-6.965303617315433 -619,22.0,23.0,-1.4614056064833263,2.989238740534077 -619,23.0,21.0,-2.5405381522555563,3.95440286307604 -619,23.0,22.0,-1.4614056064833263,2.989238740534077 -619,23.0,23.0,5.311836702613133,-9.188263657315172 -619,23.0,24.0,-1.3098929438742493,2.287622053705056 -619,24.0,23.0,-1.3098929438742493,2.287622053705056 -619,24.0,24.0,4.495715080321987,-7.864978761969621 -619,24.0,25.0,-1.2165301194494855,1.8171440463475024 -619,24.0,26.0,-1.9692920169982515,3.760212661917064 -619,25.0,24.0,-1.2165301194494855,1.8171440463475024 -619,25.0,25.0,1.2165301194494855,-1.8171440463475024 -619,26.0,24.0,-1.9692920169982515,3.760212661917064 -619,26.0,26.0,3.652281470778589,-9.46044252232512 -619,26.0,27.0,0.0,2.608731947574922 -619,26.0,28.0,-0.99553355095268,1.881005840357816 -619,26.0,29.0,-0.6874559028276572,1.293971494797717 -619,27.0,5.0,-4.362844058012917,15.463571542897856 -619,27.0,7.0,-1.4439790613954469,4.540814658476248 -619,27.0,26.0,0.0,2.608731947574922 -619,27.0,27.0,5.806823119408364,-22.67145722159613 -619,28.0,26.0,-0.99553355095268,1.881005840357816 -619,28.0,28.0,1.9075867579849564,-3.604364401207048 -619,28.0,29.0,-0.9120532070322764,1.7233585608492326 -619,29.0,26.0,-0.6874559028276572,1.293971494797717 -619,29.0,28.0,-0.9120532070322764,1.7233585608492326 -619,29.0,29.0,1.5995091098599337,-3.0173300556469496 -620,0.0,0.0,6.765516048652632,-21.23160167089863 -620,0.0,1.0,-5.224646179885656,15.646726840803398 -620,0.0,2.0,-1.5408698687669766,5.631674830095234 -620,1.0,0.0,-5.224646179885656,15.646726840803398 -620,1.0,1.0,9.75228216552403,-30.648662892676068 -620,1.0,3.0,-1.7055303166990268,5.1973792282565086 -620,1.0,4.0,-1.1359607881738778,4.772479328281356 -620,1.0,5.0,-1.6861448807654689,5.116477495334806 -620,2.0,0.0,-1.5408698687669766,5.631674830095234 -620,2.0,2.0,1.5408698687669766,-5.611274830095233 -620,3.0,1.0,-1.7055303166990268,5.1973792282565086 -620,3.0,3.0,8.118654046873583,-31.982737906191456 -620,3.0,5.0,-6.413123730174556,22.31120356548123 -620,3.0,11.0,0.0,4.191255364806866 -620,4.0,1.0,-1.1359607881738778,4.772479328281356 -620,4.0,4.0,4.089980824135861,-12.190647245055052 -620,4.0,6.0,-2.954020035961983,7.449267916773697 -620,5.0,1.0,-1.6861448807654689,5.116477495334806 -620,5.0,3.0,-6.413123730174556,22.31120356548123 -620,5.0,5.0,22.341631269034565,-82.8291478657789 -620,5.0,6.0,-3.590210423980992,11.02611441072814 -620,5.0,7.0,-6.289308176100628,22.0125786163522 -620,5.0,8.0,0.0,4.915840805411357 -620,5.0,9.0,0.0,1.8561002591115965 -620,5.0,27.0,-4.362844058012917,15.463571542897856 -620,6.0,4.0,-2.954020035961983,7.449267916773697 -620,6.0,5.0,-3.590210423980992,11.02611441072814 -620,6.0,6.0,6.544230459942975,-18.45668232750184 -620,7.0,5.0,-6.289308176100628,22.0125786163522 -620,7.0,7.0,7.733287237496075,-26.527493274828448 -620,7.0,27.0,-1.4439790613954469,4.540814658476248 -620,8.0,5.0,0.0,4.915840805411357 -620,8.0,8.0,0.0,-9.615384615384617 -620,8.0,10.0,0.0,4.807692307692308 -620,9.0,5.0,0.0,1.8561002591115965 -620,9.0,9.0,11.677212499257603,-28.30749328718248 -620,9.0,16.0,-3.956039125715353,10.317447719844054 -620,9.0,20.0,-5.101853820159654,10.98071411292983 -620,9.0,21.0,-2.619319553382597,5.400770303329455 -620,10.0,8.0,0.0,4.807692307692308 -620,10.0,10.0,0.0,-4.807692307692308 -620,11.0,3.0,0.0,4.191255364806866 -620,11.0,11.0,6.573961583776156,-24.424167659260668 -620,11.0,12.0,0.0,7.142857142857143 -620,11.0,13.0,-1.5265676088395577,3.1734252729654173 -620,11.0,14.0,-3.0953961826564296,6.097275864326261 -620,11.0,15.0,-1.9519977922801688,4.104359379111847 -620,12.0,11.0,0.0,7.142857142857143 -620,12.0,12.0,0.0,-7.142857142857143 -620,13.0,11.0,-1.5265676088395577,3.1734252729654173 -620,13.0,13.0,4.01751987283902,-5.424299332335067 -620,13.0,14.0,-2.4909522639994623,2.250874059369649 -620,14.0,11.0,-3.0953961826564296,6.097275864326261 -620,14.0,13.0,-2.4909522639994623,2.250874059369649 -620,14.0,14.0,9.365498545964757,-16.01163373210796 -620,14.0,17.0,-1.8108011504072024,3.687418931630696 -620,14.0,22.0,-1.9683489489016612,3.976064876781356 -620,15.0,11.0,-1.9519977922801688,4.104359379111847 -620,15.0,15.0,3.271064728633931,-8.94513365126506 -620,15.0,16.0,-1.3190669363537617,4.8407742721532125 -620,16.0,9.0,-3.956039125715353,10.317447719844054 -620,16.0,15.0,-1.3190669363537617,4.8407742721532125 -620,16.0,16.0,5.275106062069114,-15.158221991997266 -620,17.0,14.0,-1.8108011504072024,3.687418931630696 -620,17.0,17.0,4.886487584415919,-9.906177730909668 -620,17.0,18.0,-3.0756864340087167,6.218758799278971 -620,18.0,17.0,-3.0756864340087167,6.218758799278971 -620,18.0,18.0,8.958039375185187,-17.98346468163191 -620,18.0,19.0,-5.88235294117647,11.76470588235294 -620,19.0,18.0,-5.88235294117647,11.76470588235294 -620,19.0,19.0,5.88235294117647,-11.76470588235294 -620,20.0,9.0,-5.101853820159654,10.98071411292983 -620,20.0,20.0,21.876495189895888,-45.10843276170355 -620,20.0,21.0,-16.774641369736234,34.127718648773715 -620,21.0,9.0,-2.619319553382597,5.400770303329455 -620,21.0,20.0,-16.774641369736234,34.127718648773715 -620,21.0,21.0,21.93449907537439,-43.48289181517921 -620,21.0,23.0,-2.5405381522555563,3.95440286307604 -620,22.0,14.0,-1.9683489489016612,3.976064876781356 -620,22.0,22.0,3.429754555384988,-6.965303617315433 -620,22.0,23.0,-1.4614056064833263,2.989238740534077 -620,23.0,21.0,-2.5405381522555563,3.95440286307604 -620,23.0,22.0,-1.4614056064833263,2.989238740534077 -620,23.0,23.0,5.311836702613133,-9.188263657315172 -620,23.0,24.0,-1.3098929438742493,2.287622053705056 -620,24.0,23.0,-1.3098929438742493,2.287622053705056 -620,24.0,24.0,4.495715080321987,-7.864978761969621 -620,24.0,25.0,-1.2165301194494855,1.8171440463475024 -620,24.0,26.0,-1.9692920169982515,3.760212661917064 -620,25.0,24.0,-1.2165301194494855,1.8171440463475024 -620,25.0,25.0,1.2165301194494855,-1.8171440463475024 -620,26.0,24.0,-1.9692920169982515,3.760212661917064 -620,26.0,26.0,3.652281470778589,-9.46044252232512 -620,26.0,27.0,0.0,2.608731947574922 -620,26.0,28.0,-0.99553355095268,1.881005840357816 -620,26.0,29.0,-0.6874559028276572,1.293971494797717 -620,27.0,5.0,-4.362844058012917,15.463571542897856 -620,27.0,7.0,-1.4439790613954469,4.540814658476248 -620,27.0,26.0,0.0,2.608731947574922 -620,27.0,27.0,5.806823119408364,-22.67145722159613 -620,28.0,26.0,-0.99553355095268,1.881005840357816 -620,28.0,28.0,1.9075867579849564,-3.604364401207048 -620,28.0,29.0,-0.9120532070322764,1.7233585608492326 -620,29.0,26.0,-0.6874559028276572,1.293971494797717 -620,29.0,28.0,-0.9120532070322764,1.7233585608492326 -620,29.0,29.0,1.5995091098599337,-3.0173300556469496 -621,0.0,0.0,6.765516048652632,-21.23160167089863 -621,0.0,1.0,-5.224646179885656,15.646726840803398 -621,0.0,2.0,-1.5408698687669766,5.631674830095234 -621,1.0,0.0,-5.224646179885656,15.646726840803398 -621,1.0,1.0,9.75228216552403,-30.648662892676068 -621,1.0,3.0,-1.7055303166990268,5.1973792282565086 -621,1.0,4.0,-1.1359607881738778,4.772479328281356 -621,1.0,5.0,-1.6861448807654689,5.116477495334806 -621,2.0,0.0,-1.5408698687669766,5.631674830095234 -621,2.0,2.0,9.736318911079088,-29.13794745915803 -621,2.0,3.0,-8.19544904231211,23.5308726290628 -621,3.0,1.0,-1.7055303166990268,5.1973792282565086 -621,3.0,2.0,-8.19544904231211,23.5308726290628 -621,3.0,3.0,16.314103089185693,-55.509410535254254 -621,3.0,5.0,-6.413123730174556,22.31120356548123 -621,3.0,11.0,0.0,4.191255364806866 -621,4.0,1.0,-1.1359607881738778,4.772479328281356 -621,4.0,4.0,4.089980824135861,-12.190647245055052 -621,4.0,6.0,-2.954020035961983,7.449267916773697 -621,5.0,1.0,-1.6861448807654689,5.116477495334806 -621,5.0,3.0,-6.413123730174556,22.31120356548123 -621,5.0,5.0,22.341631269034565,-82.8291478657789 -621,5.0,6.0,-3.590210423980992,11.02611441072814 -621,5.0,7.0,-6.289308176100628,22.0125786163522 -621,5.0,8.0,0.0,4.915840805411357 -621,5.0,9.0,0.0,1.8561002591115965 -621,5.0,27.0,-4.362844058012917,15.463571542897856 -621,6.0,4.0,-2.954020035961983,7.449267916773697 -621,6.0,5.0,-3.590210423980992,11.02611441072814 -621,6.0,6.0,6.544230459942975,-18.45668232750184 -621,7.0,5.0,-6.289308176100628,22.0125786163522 -621,7.0,7.0,7.733287237496075,-26.527493274828448 -621,7.0,27.0,-1.4439790613954469,4.540814658476248 -621,8.0,5.0,0.0,4.915840805411357 -621,8.0,8.0,0.0,-18.706293706293707 -621,8.0,9.0,0.0,9.090909090909092 -621,8.0,10.0,0.0,4.807692307692308 -621,9.0,5.0,0.0,1.8561002591115965 -621,9.0,8.0,0.0,9.090909090909092 -621,9.0,9.0,13.462042814524237,-41.3837606675224 -621,9.0,16.0,-3.956039125715353,10.317447719844054 -621,9.0,19.0,-1.7848303152666305,3.98535828943083 -621,9.0,20.0,-5.101853820159654,10.98071411292983 -621,9.0,21.0,-2.619319553382597,5.400770303329455 -621,10.0,8.0,0.0,4.807692307692308 -621,10.0,10.0,0.0,-4.807692307692308 -621,11.0,3.0,0.0,4.191255364806866 -621,11.0,11.0,6.573961583776156,-24.424167659260668 -621,11.0,12.0,0.0,7.142857142857143 -621,11.0,13.0,-1.5265676088395577,3.1734252729654173 -621,11.0,14.0,-3.0953961826564296,6.097275864326261 -621,11.0,15.0,-1.9519977922801688,4.104359379111847 -621,12.0,11.0,0.0,7.142857142857143 -621,12.0,12.0,0.0,-7.142857142857143 -621,13.0,11.0,-1.5265676088395577,3.1734252729654173 -621,13.0,13.0,4.01751987283902,-5.424299332335067 -621,13.0,14.0,-2.4909522639994623,2.250874059369649 -621,14.0,11.0,-3.0953961826564296,6.097275864326261 -621,14.0,13.0,-2.4909522639994623,2.250874059369649 -621,14.0,14.0,9.365498545964757,-16.01163373210796 -621,14.0,17.0,-1.8108011504072024,3.687418931630696 -621,14.0,22.0,-1.9683489489016612,3.976064876781356 -621,15.0,11.0,-1.9519977922801688,4.104359379111847 -621,15.0,15.0,3.271064728633931,-8.94513365126506 -621,15.0,16.0,-1.3190669363537617,4.8407742721532125 -621,16.0,9.0,-3.956039125715353,10.317447719844054 -621,16.0,15.0,-1.3190669363537617,4.8407742721532125 -621,16.0,16.0,5.275106062069114,-15.158221991997266 -621,17.0,14.0,-1.8108011504072024,3.687418931630696 -621,17.0,17.0,4.886487584415919,-9.906177730909668 -621,17.0,18.0,-3.0756864340087167,6.218758799278971 -621,18.0,17.0,-3.0756864340087167,6.218758799278971 -621,18.0,18.0,8.958039375185187,-17.98346468163191 -621,18.0,19.0,-5.88235294117647,11.76470588235294 -621,19.0,9.0,-1.7848303152666305,3.98535828943083 -621,19.0,18.0,-5.88235294117647,11.76470588235294 -621,19.0,19.0,7.6671832564431,-15.75006417178377 -621,20.0,9.0,-5.101853820159654,10.98071411292983 -621,20.0,20.0,21.876495189895888,-45.10843276170355 -621,20.0,21.0,-16.774641369736234,34.127718648773715 -621,21.0,9.0,-2.619319553382597,5.400770303329455 -621,21.0,20.0,-16.774641369736234,34.127718648773715 -621,21.0,21.0,21.93449907537439,-43.48289181517921 -621,21.0,23.0,-2.5405381522555563,3.95440286307604 -621,22.0,14.0,-1.9683489489016612,3.976064876781356 -621,22.0,22.0,3.429754555384988,-6.965303617315433 -621,22.0,23.0,-1.4614056064833263,2.989238740534077 -621,23.0,21.0,-2.5405381522555563,3.95440286307604 -621,23.0,22.0,-1.4614056064833263,2.989238740534077 -621,23.0,23.0,5.311836702613133,-9.188263657315172 -621,23.0,24.0,-1.3098929438742493,2.287622053705056 -621,24.0,23.0,-1.3098929438742493,2.287622053705056 -621,24.0,24.0,4.495715080321987,-7.864978761969621 -621,24.0,25.0,-1.2165301194494855,1.8171440463475024 -621,24.0,26.0,-1.9692920169982515,3.760212661917064 -621,25.0,24.0,-1.2165301194494855,1.8171440463475024 -621,25.0,25.0,1.2165301194494855,-1.8171440463475024 -621,26.0,24.0,-1.9692920169982515,3.760212661917064 -621,26.0,26.0,3.652281470778589,-9.46044252232512 -621,26.0,27.0,0.0,2.608731947574922 -621,26.0,28.0,-0.99553355095268,1.881005840357816 -621,26.0,29.0,-0.6874559028276572,1.293971494797717 -621,27.0,5.0,-4.362844058012917,15.463571542897856 -621,27.0,7.0,-1.4439790613954469,4.540814658476248 -621,27.0,26.0,0.0,2.608731947574922 -621,27.0,27.0,5.806823119408364,-22.67145722159613 -621,28.0,26.0,-0.99553355095268,1.881005840357816 -621,28.0,28.0,1.9075867579849564,-3.604364401207048 -621,28.0,29.0,-0.9120532070322764,1.7233585608492326 -621,29.0,26.0,-0.6874559028276572,1.293971494797717 -621,29.0,28.0,-0.9120532070322764,1.7233585608492326 -621,29.0,29.0,1.5995091098599337,-3.0173300556469496 -622,0.0,0.0,6.765516048652632,-21.23160167089863 -622,0.0,1.0,-5.224646179885656,15.646726840803398 -622,0.0,2.0,-1.5408698687669766,5.631674830095234 -622,1.0,0.0,-5.224646179885656,15.646726840803398 -622,1.0,1.0,9.75228216552403,-30.648662892676068 -622,1.0,3.0,-1.7055303166990268,5.1973792282565086 -622,1.0,4.0,-1.1359607881738778,4.772479328281356 -622,1.0,5.0,-1.6861448807654689,5.116477495334806 -622,2.0,0.0,-1.5408698687669766,5.631674830095234 -622,2.0,2.0,9.736318911079088,-29.13794745915803 -622,2.0,3.0,-8.19544904231211,23.5308726290628 -622,3.0,1.0,-1.7055303166990268,5.1973792282565086 -622,3.0,2.0,-8.19544904231211,23.5308726290628 -622,3.0,3.0,16.314103089185693,-55.509410535254254 -622,3.0,5.0,-6.413123730174556,22.31120356548123 -622,3.0,11.0,0.0,4.191255364806866 -622,4.0,1.0,-1.1359607881738778,4.772479328281356 -622,4.0,4.0,4.089980824135861,-12.190647245055052 -622,4.0,6.0,-2.954020035961983,7.449267916773697 -622,5.0,1.0,-1.6861448807654689,5.116477495334806 -622,5.0,3.0,-6.413123730174556,22.31120356548123 -622,5.0,5.0,22.341631269034565,-82.8291478657789 -622,5.0,6.0,-3.590210423980992,11.02611441072814 -622,5.0,7.0,-6.289308176100628,22.0125786163522 -622,5.0,8.0,0.0,4.915840805411357 -622,5.0,9.0,0.0,1.8561002591115965 -622,5.0,27.0,-4.362844058012917,15.463571542897856 -622,6.0,4.0,-2.954020035961983,7.449267916773697 -622,6.0,5.0,-3.590210423980992,11.02611441072814 -622,6.0,6.0,6.544230459942975,-18.45668232750184 -622,7.0,5.0,-6.289308176100628,22.0125786163522 -622,7.0,7.0,7.733287237496075,-26.527493274828448 -622,7.0,27.0,-1.4439790613954469,4.540814658476248 -622,8.0,5.0,0.0,4.915840805411357 -622,8.0,8.0,0.0,-18.706293706293707 -622,8.0,9.0,0.0,9.090909090909092 -622,8.0,10.0,0.0,4.807692307692308 -622,9.0,5.0,0.0,1.8561002591115965 -622,9.0,8.0,0.0,9.090909090909092 -622,9.0,9.0,13.462042814524237,-41.3837606675224 -622,9.0,16.0,-3.956039125715353,10.317447719844054 -622,9.0,19.0,-1.7848303152666305,3.98535828943083 -622,9.0,20.0,-5.101853820159654,10.98071411292983 -622,9.0,21.0,-2.619319553382597,5.400770303329455 -622,10.0,8.0,0.0,4.807692307692308 -622,10.0,10.0,0.0,-4.807692307692308 -622,11.0,3.0,0.0,4.191255364806866 -622,11.0,11.0,6.573961583776156,-24.424167659260668 -622,11.0,12.0,0.0,7.142857142857143 -622,11.0,13.0,-1.5265676088395577,3.1734252729654173 -622,11.0,14.0,-3.0953961826564296,6.097275864326261 -622,11.0,15.0,-1.9519977922801688,4.104359379111847 -622,12.0,11.0,0.0,7.142857142857143 -622,12.0,12.0,0.0,-7.142857142857143 -622,13.0,11.0,-1.5265676088395577,3.1734252729654173 -622,13.0,13.0,4.01751987283902,-5.424299332335067 -622,13.0,14.0,-2.4909522639994623,2.250874059369649 -622,14.0,11.0,-3.0953961826564296,6.097275864326261 -622,14.0,13.0,-2.4909522639994623,2.250874059369649 -622,14.0,14.0,9.365498545964757,-16.01163373210796 -622,14.0,17.0,-1.8108011504072024,3.687418931630696 -622,14.0,22.0,-1.9683489489016612,3.976064876781356 -622,15.0,11.0,-1.9519977922801688,4.104359379111847 -622,15.0,15.0,3.271064728633931,-8.94513365126506 -622,15.0,16.0,-1.3190669363537617,4.8407742721532125 -622,16.0,9.0,-3.956039125715353,10.317447719844054 -622,16.0,15.0,-1.3190669363537617,4.8407742721532125 -622,16.0,16.0,5.275106062069114,-15.158221991997266 -622,17.0,14.0,-1.8108011504072024,3.687418931630696 -622,17.0,17.0,4.886487584415919,-9.906177730909668 -622,17.0,18.0,-3.0756864340087167,6.218758799278971 -622,18.0,17.0,-3.0756864340087167,6.218758799278971 -622,18.0,18.0,8.958039375185187,-17.98346468163191 -622,18.0,19.0,-5.88235294117647,11.76470588235294 -622,19.0,9.0,-1.7848303152666305,3.98535828943083 -622,19.0,18.0,-5.88235294117647,11.76470588235294 -622,19.0,19.0,7.6671832564431,-15.75006417178377 -622,20.0,9.0,-5.101853820159654,10.98071411292983 -622,20.0,20.0,21.876495189895888,-45.10843276170355 -622,20.0,21.0,-16.774641369736234,34.127718648773715 -622,21.0,9.0,-2.619319553382597,5.400770303329455 -622,21.0,20.0,-16.774641369736234,34.127718648773715 -622,21.0,21.0,21.93449907537439,-43.48289181517921 -622,21.0,23.0,-2.5405381522555563,3.95440286307604 -622,22.0,14.0,-1.9683489489016612,3.976064876781356 -622,22.0,22.0,3.429754555384988,-6.965303617315433 -622,22.0,23.0,-1.4614056064833263,2.989238740534077 -622,23.0,21.0,-2.5405381522555563,3.95440286307604 -622,23.0,22.0,-1.4614056064833263,2.989238740534077 -622,23.0,23.0,5.311836702613133,-9.188263657315172 -622,23.0,24.0,-1.3098929438742493,2.287622053705056 -622,24.0,23.0,-1.3098929438742493,2.287622053705056 -622,24.0,24.0,4.495715080321987,-7.864978761969621 -622,24.0,25.0,-1.2165301194494855,1.8171440463475024 -622,24.0,26.0,-1.9692920169982515,3.760212661917064 -622,25.0,24.0,-1.2165301194494855,1.8171440463475024 -622,25.0,25.0,1.2165301194494855,-1.8171440463475024 -622,26.0,24.0,-1.9692920169982515,3.760212661917064 -622,26.0,26.0,3.652281470778589,-9.46044252232512 -622,26.0,27.0,0.0,2.608731947574922 -622,26.0,28.0,-0.99553355095268,1.881005840357816 -622,26.0,29.0,-0.6874559028276572,1.293971494797717 -622,27.0,5.0,-4.362844058012917,15.463571542897856 -622,27.0,7.0,-1.4439790613954469,4.540814658476248 -622,27.0,26.0,0.0,2.608731947574922 -622,27.0,27.0,5.806823119408364,-22.67145722159613 -622,28.0,26.0,-0.99553355095268,1.881005840357816 -622,28.0,28.0,1.9075867579849564,-3.604364401207048 -622,28.0,29.0,-0.9120532070322764,1.7233585608492326 -622,29.0,26.0,-0.6874559028276572,1.293971494797717 -622,29.0,28.0,-0.9120532070322764,1.7233585608492326 -622,29.0,29.0,1.5995091098599337,-3.0173300556469496 -623,0.0,0.0,6.765516048652632,-21.23160167089863 -623,0.0,1.0,-5.224646179885656,15.646726840803398 -623,0.0,2.0,-1.5408698687669766,5.631674830095234 -623,1.0,0.0,-5.224646179885656,15.646726840803398 -623,1.0,1.0,9.75228216552403,-30.648662892676068 -623,1.0,3.0,-1.7055303166990268,5.1973792282565086 -623,1.0,4.0,-1.1359607881738778,4.772479328281356 -623,1.0,5.0,-1.6861448807654689,5.116477495334806 -623,2.0,0.0,-1.5408698687669766,5.631674830095234 -623,2.0,2.0,9.736318911079088,-29.13794745915803 -623,2.0,3.0,-8.19544904231211,23.5308726290628 -623,3.0,1.0,-1.7055303166990268,5.1973792282565086 -623,3.0,2.0,-8.19544904231211,23.5308726290628 -623,3.0,3.0,16.314103089185693,-51.01235542280054 -623,3.0,5.0,-6.413123730174556,22.31120356548123 -623,4.0,1.0,-1.1359607881738778,4.772479328281356 -623,4.0,4.0,4.089980824135861,-12.190647245055052 -623,4.0,6.0,-2.954020035961983,7.449267916773697 -623,5.0,1.0,-1.6861448807654689,5.116477495334806 -623,5.0,3.0,-6.413123730174556,22.31120356548123 -623,5.0,5.0,22.341631269034565,-82.8291478657789 -623,5.0,6.0,-3.590210423980992,11.02611441072814 -623,5.0,7.0,-6.289308176100628,22.0125786163522 -623,5.0,8.0,0.0,4.915840805411357 -623,5.0,9.0,0.0,1.8561002591115965 -623,5.0,27.0,-4.362844058012917,15.463571542897856 -623,6.0,4.0,-2.954020035961983,7.449267916773697 -623,6.0,5.0,-3.590210423980992,11.02611441072814 -623,6.0,6.0,6.544230459942975,-18.45668232750184 -623,7.0,5.0,-6.289308176100628,22.0125786163522 -623,7.0,7.0,7.733287237496075,-26.527493274828448 -623,7.0,27.0,-1.4439790613954469,4.540814658476248 -623,8.0,5.0,0.0,4.915840805411357 -623,8.0,8.0,0.0,-18.706293706293707 -623,8.0,9.0,0.0,9.090909090909092 -623,8.0,10.0,0.0,4.807692307692308 -623,9.0,5.0,0.0,1.8561002591115965 -623,9.0,8.0,0.0,9.090909090909092 -623,9.0,9.0,10.842723261141638,-35.98299036419294 -623,9.0,16.0,-3.956039125715353,10.317447719844054 -623,9.0,19.0,-1.7848303152666305,3.98535828943083 -623,9.0,20.0,-5.101853820159654,10.98071411292983 -623,10.0,8.0,0.0,4.807692307692308 -623,10.0,10.0,0.0,-4.807692307692308 -623,11.0,11.0,6.573961583776156,-20.517917659260668 -623,11.0,12.0,0.0,7.142857142857143 -623,11.0,13.0,-1.5265676088395577,3.1734252729654173 -623,11.0,14.0,-3.0953961826564296,6.097275864326261 -623,11.0,15.0,-1.9519977922801688,4.104359379111847 -623,12.0,11.0,0.0,7.142857142857143 -623,12.0,12.0,0.0,-7.142857142857143 -623,13.0,11.0,-1.5265676088395577,3.1734252729654173 -623,13.0,13.0,4.01751987283902,-5.424299332335067 -623,13.0,14.0,-2.4909522639994623,2.250874059369649 -623,14.0,11.0,-3.0953961826564296,6.097275864326261 -623,14.0,13.0,-2.4909522639994623,2.250874059369649 -623,14.0,14.0,9.365498545964757,-16.01163373210796 -623,14.0,17.0,-1.8108011504072024,3.687418931630696 -623,14.0,22.0,-1.9683489489016612,3.976064876781356 -623,15.0,11.0,-1.9519977922801688,4.104359379111847 -623,15.0,15.0,3.271064728633931,-8.94513365126506 -623,15.0,16.0,-1.3190669363537617,4.8407742721532125 -623,16.0,9.0,-3.956039125715353,10.317447719844054 -623,16.0,15.0,-1.3190669363537617,4.8407742721532125 -623,16.0,16.0,5.275106062069114,-15.158221991997266 -623,17.0,14.0,-1.8108011504072024,3.687418931630696 -623,17.0,17.0,4.886487584415919,-9.906177730909668 -623,17.0,18.0,-3.0756864340087167,6.218758799278971 -623,18.0,17.0,-3.0756864340087167,6.218758799278971 -623,18.0,18.0,8.958039375185187,-17.98346468163191 -623,18.0,19.0,-5.88235294117647,11.76470588235294 -623,19.0,9.0,-1.7848303152666305,3.98535828943083 -623,19.0,18.0,-5.88235294117647,11.76470588235294 -623,19.0,19.0,7.6671832564431,-15.75006417178377 -623,20.0,9.0,-5.101853820159654,10.98071411292983 -623,20.0,20.0,21.876495189895888,-45.10843276170355 -623,20.0,21.0,-16.774641369736234,34.127718648773715 -623,21.0,20.0,-16.774641369736234,34.127718648773715 -623,21.0,21.0,19.31517952199179,-38.08212151184976 -623,21.0,23.0,-2.5405381522555563,3.95440286307604 -623,22.0,14.0,-1.9683489489016612,3.976064876781356 -623,22.0,22.0,1.9683489489016612,-3.976064876781356 -623,23.0,21.0,-2.5405381522555563,3.95440286307604 -623,23.0,23.0,3.850431096129806,-6.199024916781094 -623,23.0,24.0,-1.3098929438742493,2.287622053705056 -623,24.0,23.0,-1.3098929438742493,2.287622053705056 -623,24.0,24.0,4.495715080321987,-7.864978761969621 -623,24.0,25.0,-1.2165301194494855,1.8171440463475024 -623,24.0,26.0,-1.9692920169982515,3.760212661917064 -623,25.0,24.0,-1.2165301194494855,1.8171440463475024 -623,25.0,25.0,1.2165301194494855,-1.8171440463475024 -623,26.0,24.0,-1.9692920169982515,3.760212661917064 -623,26.0,26.0,3.652281470778589,-9.46044252232512 -623,26.0,27.0,0.0,2.608731947574922 -623,26.0,28.0,-0.99553355095268,1.881005840357816 -623,26.0,29.0,-0.6874559028276572,1.293971494797717 -623,27.0,5.0,-4.362844058012917,15.463571542897856 -623,27.0,7.0,-1.4439790613954469,4.540814658476248 -623,27.0,26.0,0.0,2.608731947574922 -623,27.0,27.0,5.806823119408364,-22.67145722159613 -623,28.0,26.0,-0.99553355095268,1.881005840357816 -623,28.0,28.0,0.99553355095268,-1.881005840357816 -623,29.0,26.0,-0.6874559028276572,1.293971494797717 -623,29.0,29.0,0.6874559028276572,-1.293971494797717 -624,0.0,0.0,6.765516048652632,-21.23160167089863 -624,0.0,1.0,-5.224646179885656,15.646726840803398 -624,0.0,2.0,-1.5408698687669766,5.631674830095234 -624,1.0,0.0,-5.224646179885656,15.646726840803398 -624,1.0,1.0,8.046751848825002,-25.46968366441956 -624,1.0,4.0,-1.1359607881738778,4.772479328281356 -624,1.0,5.0,-1.6861448807654689,5.116477495334806 -624,2.0,0.0,-1.5408698687669766,5.631674830095234 -624,2.0,2.0,1.5408698687669766,-5.611274830095233 -624,3.0,3.0,6.413123730174556,-26.803758677934947 -624,3.0,5.0,-6.413123730174556,22.31120356548123 -624,3.0,11.0,0.0,4.191255364806866 -624,4.0,1.0,-1.1359607881738778,4.772479328281356 -624,4.0,4.0,4.089980824135861,-12.190647245055052 -624,4.0,6.0,-2.954020035961983,7.449267916773697 -624,5.0,1.0,-1.6861448807654689,5.116477495334806 -624,5.0,3.0,-6.413123730174556,22.31120356548123 -624,5.0,5.0,22.341631269034565,-82.8291478657789 -624,5.0,6.0,-3.590210423980992,11.02611441072814 -624,5.0,7.0,-6.289308176100628,22.0125786163522 -624,5.0,8.0,0.0,4.915840805411357 -624,5.0,9.0,0.0,1.8561002591115965 -624,5.0,27.0,-4.362844058012917,15.463571542897856 -624,6.0,4.0,-2.954020035961983,7.449267916773697 -624,6.0,5.0,-3.590210423980992,11.02611441072814 -624,6.0,6.0,6.544230459942975,-18.45668232750184 -624,7.0,5.0,-6.289308176100628,22.0125786163522 -624,7.0,7.0,7.733287237496075,-26.527493274828448 -624,7.0,27.0,-1.4439790613954469,4.540814658476248 -624,8.0,5.0,0.0,4.915840805411357 -624,8.0,8.0,0.0,-18.706293706293707 -624,8.0,9.0,0.0,9.090909090909092 -624,8.0,10.0,0.0,4.807692307692308 -624,9.0,5.0,0.0,1.8561002591115965 -624,9.0,8.0,0.0,9.090909090909092 -624,9.0,9.0,13.462042814524237,-41.3837606675224 -624,9.0,16.0,-3.956039125715353,10.317447719844054 -624,9.0,19.0,-1.7848303152666305,3.98535828943083 -624,9.0,20.0,-5.101853820159654,10.98071411292983 -624,9.0,21.0,-2.619319553382597,5.400770303329455 -624,10.0,8.0,0.0,4.807692307692308 -624,10.0,10.0,0.0,-4.807692307692308 -624,11.0,3.0,0.0,4.191255364806866 -624,11.0,11.0,6.573961583776156,-24.424167659260668 -624,11.0,12.0,0.0,7.142857142857143 -624,11.0,13.0,-1.5265676088395577,3.1734252729654173 -624,11.0,14.0,-3.0953961826564296,6.097275864326261 -624,11.0,15.0,-1.9519977922801688,4.104359379111847 -624,12.0,11.0,0.0,7.142857142857143 -624,12.0,12.0,0.0,-7.142857142857143 -624,13.0,11.0,-1.5265676088395577,3.1734252729654173 -624,13.0,13.0,1.5265676088395577,-3.1734252729654173 -624,14.0,11.0,-3.0953961826564296,6.097275864326261 -624,14.0,14.0,6.874546281965293,-13.760759672738311 -624,14.0,17.0,-1.8108011504072024,3.687418931630696 -624,14.0,22.0,-1.9683489489016612,3.976064876781356 -624,15.0,11.0,-1.9519977922801688,4.104359379111847 -624,15.0,15.0,3.271064728633931,-8.94513365126506 -624,15.0,16.0,-1.3190669363537617,4.8407742721532125 -624,16.0,9.0,-3.956039125715353,10.317447719844054 -624,16.0,15.0,-1.3190669363537617,4.8407742721532125 -624,16.0,16.0,5.275106062069114,-15.158221991997266 -624,17.0,14.0,-1.8108011504072024,3.687418931630696 -624,17.0,17.0,1.8108011504072024,-3.687418931630696 -624,18.0,18.0,5.88235294117647,-11.76470588235294 -624,18.0,19.0,-5.88235294117647,11.76470588235294 -624,19.0,9.0,-1.7848303152666305,3.98535828943083 -624,19.0,18.0,-5.88235294117647,11.76470588235294 -624,19.0,19.0,7.6671832564431,-15.75006417178377 -624,20.0,9.0,-5.101853820159654,10.98071411292983 -624,20.0,20.0,21.876495189895888,-45.10843276170355 -624,20.0,21.0,-16.774641369736234,34.127718648773715 -624,21.0,9.0,-2.619319553382597,5.400770303329455 -624,21.0,20.0,-16.774641369736234,34.127718648773715 -624,21.0,21.0,21.93449907537439,-43.48289181517921 -624,21.0,23.0,-2.5405381522555563,3.95440286307604 -624,22.0,14.0,-1.9683489489016612,3.976064876781356 -624,22.0,22.0,3.429754555384988,-6.965303617315433 -624,22.0,23.0,-1.4614056064833263,2.989238740534077 -624,23.0,21.0,-2.5405381522555563,3.95440286307604 -624,23.0,22.0,-1.4614056064833263,2.989238740534077 -624,23.0,23.0,5.311836702613133,-9.188263657315172 -624,23.0,24.0,-1.3098929438742493,2.287622053705056 -624,24.0,23.0,-1.3098929438742493,2.287622053705056 -624,24.0,24.0,4.495715080321987,-7.864978761969621 -624,24.0,25.0,-1.2165301194494855,1.8171440463475024 -624,24.0,26.0,-1.9692920169982515,3.760212661917064 -624,25.0,24.0,-1.2165301194494855,1.8171440463475024 -624,25.0,25.0,1.2165301194494855,-1.8171440463475024 -624,26.0,24.0,-1.9692920169982515,3.760212661917064 -624,26.0,26.0,3.652281470778589,-9.46044252232512 -624,26.0,27.0,0.0,2.608731947574922 -624,26.0,28.0,-0.99553355095268,1.881005840357816 -624,26.0,29.0,-0.6874559028276572,1.293971494797717 -624,27.0,5.0,-4.362844058012917,15.463571542897856 -624,27.0,7.0,-1.4439790613954469,4.540814658476248 -624,27.0,26.0,0.0,2.608731947574922 -624,27.0,27.0,5.806823119408364,-22.67145722159613 -624,28.0,26.0,-0.99553355095268,1.881005840357816 -624,28.0,28.0,1.9075867579849564,-3.604364401207048 -624,28.0,29.0,-0.9120532070322764,1.7233585608492326 -624,29.0,26.0,-0.6874559028276572,1.293971494797717 -624,29.0,28.0,-0.9120532070322764,1.7233585608492326 -624,29.0,29.0,1.5995091098599337,-3.0173300556469496 -625,0.0,0.0,6.765516048652632,-21.23160167089863 -625,0.0,1.0,-5.224646179885656,15.646726840803398 -625,0.0,2.0,-1.5408698687669766,5.631674830095234 -625,1.0,0.0,-5.224646179885656,15.646726840803398 -625,1.0,1.0,9.75228216552403,-30.648662892676068 -625,1.0,3.0,-1.7055303166990268,5.1973792282565086 -625,1.0,4.0,-1.1359607881738778,4.772479328281356 -625,1.0,5.0,-1.6861448807654689,5.116477495334806 -625,2.0,0.0,-1.5408698687669766,5.631674830095234 -625,2.0,2.0,9.736318911079088,-29.13794745915803 -625,2.0,3.0,-8.19544904231211,23.5308726290628 -625,3.0,1.0,-1.7055303166990268,5.1973792282565086 -625,3.0,2.0,-8.19544904231211,23.5308726290628 -625,3.0,3.0,16.314103089185693,-51.01235542280054 -625,3.0,5.0,-6.413123730174556,22.31120356548123 -625,4.0,1.0,-1.1359607881738778,4.772479328281356 -625,4.0,4.0,4.089980824135861,-12.190647245055052 -625,4.0,6.0,-2.954020035961983,7.449267916773697 -625,5.0,1.0,-1.6861448807654689,5.116477495334806 -625,5.0,3.0,-6.413123730174556,22.31120356548123 -625,5.0,5.0,22.341631269034565,-82.8291478657789 -625,5.0,6.0,-3.590210423980992,11.02611441072814 -625,5.0,7.0,-6.289308176100628,22.0125786163522 -625,5.0,8.0,0.0,4.915840805411357 -625,5.0,9.0,0.0,1.8561002591115965 -625,5.0,27.0,-4.362844058012917,15.463571542897856 -625,6.0,4.0,-2.954020035961983,7.449267916773697 -625,6.0,5.0,-3.590210423980992,11.02611441072814 -625,6.0,6.0,6.544230459942975,-18.45668232750184 -625,7.0,5.0,-6.289308176100628,22.0125786163522 -625,7.0,7.0,7.733287237496075,-26.527493274828448 -625,7.0,27.0,-1.4439790613954469,4.540814658476248 -625,8.0,5.0,0.0,4.915840805411357 -625,8.0,8.0,0.0,-18.706293706293707 -625,8.0,9.0,0.0,9.090909090909092 -625,8.0,10.0,0.0,4.807692307692308 -625,9.0,5.0,0.0,1.8561002591115965 -625,9.0,8.0,0.0,9.090909090909092 -625,9.0,9.0,13.462042814524237,-41.3837606675224 -625,9.0,16.0,-3.956039125715353,10.317447719844054 -625,9.0,19.0,-1.7848303152666305,3.98535828943083 -625,9.0,20.0,-5.101853820159654,10.98071411292983 -625,9.0,21.0,-2.619319553382597,5.400770303329455 -625,10.0,8.0,0.0,4.807692307692308 -625,10.0,10.0,0.0,-4.807692307692308 -625,11.0,11.0,6.573961583776156,-20.517917659260668 -625,11.0,12.0,0.0,7.142857142857143 -625,11.0,13.0,-1.5265676088395577,3.1734252729654173 -625,11.0,14.0,-3.0953961826564296,6.097275864326261 -625,11.0,15.0,-1.9519977922801688,4.104359379111847 -625,12.0,11.0,0.0,7.142857142857143 -625,12.0,12.0,0.0,-7.142857142857143 -625,13.0,11.0,-1.5265676088395577,3.1734252729654173 -625,13.0,13.0,4.01751987283902,-5.424299332335067 -625,13.0,14.0,-2.4909522639994623,2.250874059369649 -625,14.0,11.0,-3.0953961826564296,6.097275864326261 -625,14.0,13.0,-2.4909522639994623,2.250874059369649 -625,14.0,14.0,9.365498545964757,-16.01163373210796 -625,14.0,17.0,-1.8108011504072024,3.687418931630696 -625,14.0,22.0,-1.9683489489016612,3.976064876781356 -625,15.0,11.0,-1.9519977922801688,4.104359379111847 -625,15.0,15.0,3.271064728633931,-8.94513365126506 -625,15.0,16.0,-1.3190669363537617,4.8407742721532125 -625,16.0,9.0,-3.956039125715353,10.317447719844054 -625,16.0,15.0,-1.3190669363537617,4.8407742721532125 -625,16.0,16.0,5.275106062069114,-15.158221991997266 -625,17.0,14.0,-1.8108011504072024,3.687418931630696 -625,17.0,17.0,4.886487584415919,-9.906177730909668 -625,17.0,18.0,-3.0756864340087167,6.218758799278971 -625,18.0,17.0,-3.0756864340087167,6.218758799278971 -625,18.0,18.0,8.958039375185187,-17.98346468163191 -625,18.0,19.0,-5.88235294117647,11.76470588235294 -625,19.0,9.0,-1.7848303152666305,3.98535828943083 -625,19.0,18.0,-5.88235294117647,11.76470588235294 -625,19.0,19.0,7.6671832564431,-15.75006417178377 -625,20.0,9.0,-5.101853820159654,10.98071411292983 -625,20.0,20.0,21.876495189895888,-45.10843276170355 -625,20.0,21.0,-16.774641369736234,34.127718648773715 -625,21.0,9.0,-2.619319553382597,5.400770303329455 -625,21.0,20.0,-16.774641369736234,34.127718648773715 -625,21.0,21.0,21.93449907537439,-43.48289181517921 -625,21.0,23.0,-2.5405381522555563,3.95440286307604 -625,22.0,14.0,-1.9683489489016612,3.976064876781356 -625,22.0,22.0,3.429754555384988,-6.965303617315433 -625,22.0,23.0,-1.4614056064833263,2.989238740534077 -625,23.0,21.0,-2.5405381522555563,3.95440286307604 -625,23.0,22.0,-1.4614056064833263,2.989238740534077 -625,23.0,23.0,5.311836702613133,-9.188263657315172 -625,23.0,24.0,-1.3098929438742493,2.287622053705056 -625,24.0,23.0,-1.3098929438742493,2.287622053705056 -625,24.0,24.0,4.495715080321987,-7.864978761969621 -625,24.0,25.0,-1.2165301194494855,1.8171440463475024 -625,24.0,26.0,-1.9692920169982515,3.760212661917064 -625,25.0,24.0,-1.2165301194494855,1.8171440463475024 -625,25.0,25.0,1.2165301194494855,-1.8171440463475024 -625,26.0,24.0,-1.9692920169982515,3.760212661917064 -625,26.0,26.0,3.652281470778589,-9.46044252232512 -625,26.0,27.0,0.0,2.608731947574922 -625,26.0,28.0,-0.99553355095268,1.881005840357816 -625,26.0,29.0,-0.6874559028276572,1.293971494797717 -625,27.0,5.0,-4.362844058012917,15.463571542897856 -625,27.0,7.0,-1.4439790613954469,4.540814658476248 -625,27.0,26.0,0.0,2.608731947574922 -625,27.0,27.0,5.806823119408364,-22.67145722159613 -625,28.0,26.0,-0.99553355095268,1.881005840357816 -625,28.0,28.0,1.9075867579849564,-3.604364401207048 -625,28.0,29.0,-0.9120532070322764,1.7233585608492326 -625,29.0,26.0,-0.6874559028276572,1.293971494797717 -625,29.0,28.0,-0.9120532070322764,1.7233585608492326 -625,29.0,29.0,1.5995091098599337,-3.0173300556469496 -626,0.0,0.0,6.765516048652632,-21.23160167089863 -626,0.0,1.0,-5.224646179885656,15.646726840803398 -626,0.0,2.0,-1.5408698687669766,5.631674830095234 -626,1.0,0.0,-5.224646179885656,15.646726840803398 -626,1.0,1.0,9.75228216552403,-30.648662892676068 -626,1.0,3.0,-1.7055303166990268,5.1973792282565086 -626,1.0,4.0,-1.1359607881738778,4.772479328281356 -626,1.0,5.0,-1.6861448807654689,5.116477495334806 -626,2.0,0.0,-1.5408698687669766,5.631674830095234 -626,2.0,2.0,9.736318911079088,-29.13794745915803 -626,2.0,3.0,-8.19544904231211,23.5308726290628 -626,3.0,1.0,-1.7055303166990268,5.1973792282565086 -626,3.0,2.0,-8.19544904231211,23.5308726290628 -626,3.0,3.0,16.314103089185693,-55.509410535254254 -626,3.0,5.0,-6.413123730174556,22.31120356548123 -626,3.0,11.0,0.0,4.191255364806866 -626,4.0,1.0,-1.1359607881738778,4.772479328281356 -626,4.0,4.0,4.089980824135861,-12.190647245055052 -626,4.0,6.0,-2.954020035961983,7.449267916773697 -626,5.0,1.0,-1.6861448807654689,5.116477495334806 -626,5.0,3.0,-6.413123730174556,22.31120356548123 -626,5.0,5.0,22.341631269034565,-80.91366772221689 -626,5.0,6.0,-3.590210423980992,11.02611441072814 -626,5.0,7.0,-6.289308176100628,22.0125786163522 -626,5.0,8.0,0.0,4.915840805411357 -626,5.0,27.0,-4.362844058012917,15.463571542897856 -626,6.0,4.0,-2.954020035961983,7.449267916773697 -626,6.0,5.0,-3.590210423980992,11.02611441072814 -626,6.0,6.0,6.544230459942975,-18.45668232750184 -626,7.0,5.0,-6.289308176100628,22.0125786163522 -626,7.0,7.0,7.733287237496075,-26.527493274828448 -626,7.0,27.0,-1.4439790613954469,4.540814658476248 -626,8.0,5.0,0.0,4.915840805411357 -626,8.0,8.0,0.0,-18.706293706293707 -626,8.0,9.0,0.0,9.090909090909092 -626,8.0,10.0,0.0,4.807692307692308 -626,9.0,8.0,0.0,9.090909090909092 -626,9.0,9.0,13.462042814524237,-39.58519951644326 -626,9.0,16.0,-3.956039125715353,10.317447719844054 -626,9.0,19.0,-1.7848303152666305,3.98535828943083 -626,9.0,20.0,-5.101853820159654,10.98071411292983 -626,9.0,21.0,-2.619319553382597,5.400770303329455 -626,10.0,8.0,0.0,4.807692307692308 -626,10.0,10.0,0.0,-4.807692307692308 -626,11.0,3.0,0.0,4.191255364806866 -626,11.0,11.0,5.047393974936599,-21.25074238629525 -626,11.0,12.0,0.0,7.142857142857143 -626,11.0,14.0,-3.0953961826564296,6.097275864326261 -626,11.0,15.0,-1.9519977922801688,4.104359379111847 -626,12.0,11.0,0.0,7.142857142857143 -626,12.0,12.0,0.0,-7.142857142857143 -626,13.0,13.0,2.4909522639994623,-2.250874059369649 -626,13.0,14.0,-2.4909522639994623,2.250874059369649 -626,14.0,11.0,-3.0953961826564296,6.097275864326261 -626,14.0,13.0,-2.4909522639994623,2.250874059369649 -626,14.0,14.0,9.365498545964757,-16.01163373210796 -626,14.0,17.0,-1.8108011504072024,3.687418931630696 -626,14.0,22.0,-1.9683489489016612,3.976064876781356 -626,15.0,11.0,-1.9519977922801688,4.104359379111847 -626,15.0,15.0,3.271064728633931,-8.94513365126506 -626,15.0,16.0,-1.3190669363537617,4.8407742721532125 -626,16.0,9.0,-3.956039125715353,10.317447719844054 -626,16.0,15.0,-1.3190669363537617,4.8407742721532125 -626,16.0,16.0,5.275106062069114,-15.158221991997266 -626,17.0,14.0,-1.8108011504072024,3.687418931630696 -626,17.0,17.0,4.886487584415919,-9.906177730909668 -626,17.0,18.0,-3.0756864340087167,6.218758799278971 -626,18.0,17.0,-3.0756864340087167,6.218758799278971 -626,18.0,18.0,8.958039375185187,-17.98346468163191 -626,18.0,19.0,-5.88235294117647,11.76470588235294 -626,19.0,9.0,-1.7848303152666305,3.98535828943083 -626,19.0,18.0,-5.88235294117647,11.76470588235294 -626,19.0,19.0,7.6671832564431,-15.75006417178377 -626,20.0,9.0,-5.101853820159654,10.98071411292983 -626,20.0,20.0,21.876495189895888,-45.10843276170355 -626,20.0,21.0,-16.774641369736234,34.127718648773715 -626,21.0,9.0,-2.619319553382597,5.400770303329455 -626,21.0,20.0,-16.774641369736234,34.127718648773715 -626,21.0,21.0,21.93449907537439,-43.48289181517921 -626,21.0,23.0,-2.5405381522555563,3.95440286307604 -626,22.0,14.0,-1.9683489489016612,3.976064876781356 -626,22.0,22.0,3.429754555384988,-6.965303617315433 -626,22.0,23.0,-1.4614056064833263,2.989238740534077 -626,23.0,21.0,-2.5405381522555563,3.95440286307604 -626,23.0,22.0,-1.4614056064833263,2.989238740534077 -626,23.0,23.0,5.311836702613133,-9.188263657315172 -626,23.0,24.0,-1.3098929438742493,2.287622053705056 -626,24.0,23.0,-1.3098929438742493,2.287622053705056 -626,24.0,24.0,4.495715080321987,-7.864978761969621 -626,24.0,25.0,-1.2165301194494855,1.8171440463475024 -626,24.0,26.0,-1.9692920169982515,3.760212661917064 -626,25.0,24.0,-1.2165301194494855,1.8171440463475024 -626,25.0,25.0,1.2165301194494855,-1.8171440463475024 -626,26.0,24.0,-1.9692920169982515,3.760212661917064 -626,26.0,26.0,3.652281470778589,-9.46044252232512 -626,26.0,27.0,0.0,2.608731947574922 -626,26.0,28.0,-0.99553355095268,1.881005840357816 -626,26.0,29.0,-0.6874559028276572,1.293971494797717 -626,27.0,5.0,-4.362844058012917,15.463571542897856 -626,27.0,7.0,-1.4439790613954469,4.540814658476248 -626,27.0,26.0,0.0,2.608731947574922 -626,27.0,27.0,5.806823119408364,-22.67145722159613 -626,28.0,26.0,-0.99553355095268,1.881005840357816 -626,28.0,28.0,1.9075867579849564,-3.604364401207048 -626,28.0,29.0,-0.9120532070322764,1.7233585608492326 -626,29.0,26.0,-0.6874559028276572,1.293971494797717 -626,29.0,28.0,-0.9120532070322764,1.7233585608492326 -626,29.0,29.0,1.5995091098599337,-3.0173300556469496 -627,0.0,0.0,6.765516048652632,-21.23160167089863 -627,0.0,1.0,-5.224646179885656,15.646726840803398 -627,0.0,2.0,-1.5408698687669766,5.631674830095234 -627,1.0,0.0,-5.224646179885656,15.646726840803398 -627,1.0,1.0,9.75228216552403,-30.648662892676068 -627,1.0,3.0,-1.7055303166990268,5.1973792282565086 -627,1.0,4.0,-1.1359607881738778,4.772479328281356 -627,1.0,5.0,-1.6861448807654689,5.116477495334806 -627,2.0,0.0,-1.5408698687669766,5.631674830095234 -627,2.0,2.0,9.736318911079088,-29.13794745915803 -627,2.0,3.0,-8.19544904231211,23.5308726290628 -627,3.0,1.0,-1.7055303166990268,5.1973792282565086 -627,3.0,2.0,-8.19544904231211,23.5308726290628 -627,3.0,3.0,16.314103089185693,-55.509410535254254 -627,3.0,5.0,-6.413123730174556,22.31120356548123 -627,3.0,11.0,0.0,4.191255364806866 -627,4.0,1.0,-1.1359607881738778,4.772479328281356 -627,4.0,4.0,4.089980824135861,-12.190647245055052 -627,4.0,6.0,-2.954020035961983,7.449267916773697 -627,5.0,1.0,-1.6861448807654689,5.116477495334806 -627,5.0,3.0,-6.413123730174556,22.31120356548123 -627,5.0,5.0,22.341631269034565,-82.8291478657789 -627,5.0,6.0,-3.590210423980992,11.02611441072814 -627,5.0,7.0,-6.289308176100628,22.0125786163522 -627,5.0,8.0,0.0,4.915840805411357 -627,5.0,9.0,0.0,1.8561002591115965 -627,5.0,27.0,-4.362844058012917,15.463571542897856 -627,6.0,4.0,-2.954020035961983,7.449267916773697 -627,6.0,5.0,-3.590210423980992,11.02611441072814 -627,6.0,6.0,6.544230459942975,-18.45668232750184 -627,7.0,5.0,-6.289308176100628,22.0125786163522 -627,7.0,7.0,7.733287237496075,-26.527493274828448 -627,7.0,27.0,-1.4439790613954469,4.540814658476248 -627,8.0,5.0,0.0,4.915840805411357 -627,8.0,8.0,0.0,-18.706293706293707 -627,8.0,9.0,0.0,9.090909090909092 -627,8.0,10.0,0.0,4.807692307692308 -627,9.0,5.0,0.0,1.8561002591115965 -627,9.0,8.0,0.0,9.090909090909092 -627,9.0,9.0,13.462042814524237,-41.3837606675224 -627,9.0,16.0,-3.956039125715353,10.317447719844054 -627,9.0,19.0,-1.7848303152666305,3.98535828943083 -627,9.0,20.0,-5.101853820159654,10.98071411292983 -627,9.0,21.0,-2.619319553382597,5.400770303329455 -627,10.0,8.0,0.0,4.807692307692308 -627,10.0,10.0,0.0,-4.807692307692308 -627,11.0,3.0,0.0,4.191255364806866 -627,11.0,11.0,6.573961583776156,-24.424167659260668 -627,11.0,12.0,0.0,7.142857142857143 -627,11.0,13.0,-1.5265676088395577,3.1734252729654173 -627,11.0,14.0,-3.0953961826564296,6.097275864326261 -627,11.0,15.0,-1.9519977922801688,4.104359379111847 -627,12.0,11.0,0.0,7.142857142857143 -627,12.0,12.0,0.0,-7.142857142857143 -627,13.0,11.0,-1.5265676088395577,3.1734252729654173 -627,13.0,13.0,4.01751987283902,-5.424299332335067 -627,13.0,14.0,-2.4909522639994623,2.250874059369649 -627,14.0,11.0,-3.0953961826564296,6.097275864326261 -627,14.0,13.0,-2.4909522639994623,2.250874059369649 -627,14.0,14.0,9.365498545964757,-16.01163373210796 -627,14.0,17.0,-1.8108011504072024,3.687418931630696 -627,14.0,22.0,-1.9683489489016612,3.976064876781356 -627,15.0,11.0,-1.9519977922801688,4.104359379111847 -627,15.0,15.0,3.271064728633931,-8.94513365126506 -627,15.0,16.0,-1.3190669363537617,4.8407742721532125 -627,16.0,9.0,-3.956039125715353,10.317447719844054 -627,16.0,15.0,-1.3190669363537617,4.8407742721532125 -627,16.0,16.0,5.275106062069114,-15.158221991997266 -627,17.0,14.0,-1.8108011504072024,3.687418931630696 -627,17.0,17.0,4.886487584415919,-9.906177730909668 -627,17.0,18.0,-3.0756864340087167,6.218758799278971 -627,18.0,17.0,-3.0756864340087167,6.218758799278971 -627,18.0,18.0,8.958039375185187,-17.98346468163191 -627,18.0,19.0,-5.88235294117647,11.76470588235294 -627,19.0,9.0,-1.7848303152666305,3.98535828943083 -627,19.0,18.0,-5.88235294117647,11.76470588235294 -627,19.0,19.0,7.6671832564431,-15.75006417178377 -627,20.0,9.0,-5.101853820159654,10.98071411292983 -627,20.0,20.0,21.876495189895888,-45.10843276170355 -627,20.0,21.0,-16.774641369736234,34.127718648773715 -627,21.0,9.0,-2.619319553382597,5.400770303329455 -627,21.0,20.0,-16.774641369736234,34.127718648773715 -627,21.0,21.0,21.93449907537439,-43.48289181517921 -627,21.0,23.0,-2.5405381522555563,3.95440286307604 -627,22.0,14.0,-1.9683489489016612,3.976064876781356 -627,22.0,22.0,3.429754555384988,-6.965303617315433 -627,22.0,23.0,-1.4614056064833263,2.989238740534077 -627,23.0,21.0,-2.5405381522555563,3.95440286307604 -627,23.0,22.0,-1.4614056064833263,2.989238740534077 -627,23.0,23.0,5.311836702613133,-9.188263657315172 -627,23.0,24.0,-1.3098929438742493,2.287622053705056 -627,24.0,23.0,-1.3098929438742493,2.287622053705056 -627,24.0,24.0,2.526423063323735,-4.104766100052558 -627,24.0,25.0,-1.2165301194494855,1.8171440463475024 -627,25.0,24.0,-1.2165301194494855,1.8171440463475024 -627,25.0,25.0,1.2165301194494855,-1.8171440463475024 -627,26.0,26.0,1.6829894537803372,-5.700229860408058 -627,26.0,27.0,0.0,2.608731947574922 -627,26.0,28.0,-0.99553355095268,1.881005840357816 -627,26.0,29.0,-0.6874559028276572,1.293971494797717 -627,27.0,5.0,-4.362844058012917,15.463571542897856 -627,27.0,7.0,-1.4439790613954469,4.540814658476248 -627,27.0,26.0,0.0,2.608731947574922 -627,27.0,27.0,5.806823119408364,-22.67145722159613 -627,28.0,26.0,-0.99553355095268,1.881005840357816 -627,28.0,28.0,1.9075867579849564,-3.604364401207048 -627,28.0,29.0,-0.9120532070322764,1.7233585608492326 -627,29.0,26.0,-0.6874559028276572,1.293971494797717 -627,29.0,28.0,-0.9120532070322764,1.7233585608492326 -627,29.0,29.0,1.5995091098599337,-3.0173300556469496 -628,0.0,0.0,6.765516048652632,-21.23160167089863 -628,0.0,1.0,-5.224646179885656,15.646726840803398 -628,0.0,2.0,-1.5408698687669766,5.631674830095234 -628,1.0,0.0,-5.224646179885656,15.646726840803398 -628,1.0,1.0,9.75228216552403,-30.648662892676068 -628,1.0,3.0,-1.7055303166990268,5.1973792282565086 -628,1.0,4.0,-1.1359607881738778,4.772479328281356 -628,1.0,5.0,-1.6861448807654689,5.116477495334806 -628,2.0,0.0,-1.5408698687669766,5.631674830095234 -628,2.0,2.0,9.736318911079088,-29.13794745915803 -628,2.0,3.0,-8.19544904231211,23.5308726290628 -628,3.0,1.0,-1.7055303166990268,5.1973792282565086 -628,3.0,2.0,-8.19544904231211,23.5308726290628 -628,3.0,3.0,16.314103089185693,-55.509410535254254 -628,3.0,5.0,-6.413123730174556,22.31120356548123 -628,3.0,11.0,0.0,4.191255364806866 -628,4.0,1.0,-1.1359607881738778,4.772479328281356 -628,4.0,4.0,4.089980824135861,-12.190647245055052 -628,4.0,6.0,-2.954020035961983,7.449267916773697 -628,5.0,1.0,-1.6861448807654689,5.116477495334806 -628,5.0,3.0,-6.413123730174556,22.31120356548123 -628,5.0,5.0,22.341631269034565,-82.8291478657789 -628,5.0,6.0,-3.590210423980992,11.02611441072814 -628,5.0,7.0,-6.289308176100628,22.0125786163522 -628,5.0,8.0,0.0,4.915840805411357 -628,5.0,9.0,0.0,1.8561002591115965 -628,5.0,27.0,-4.362844058012917,15.463571542897856 -628,6.0,4.0,-2.954020035961983,7.449267916773697 -628,6.0,5.0,-3.590210423980992,11.02611441072814 -628,6.0,6.0,6.544230459942975,-18.45668232750184 -628,7.0,5.0,-6.289308176100628,22.0125786163522 -628,7.0,7.0,7.733287237496075,-26.527493274828448 -628,7.0,27.0,-1.4439790613954469,4.540814658476248 -628,8.0,5.0,0.0,4.915840805411357 -628,8.0,8.0,0.0,-18.706293706293707 -628,8.0,9.0,0.0,9.090909090909092 -628,8.0,10.0,0.0,4.807692307692308 -628,9.0,5.0,0.0,1.8561002591115965 -628,9.0,8.0,0.0,9.090909090909092 -628,9.0,9.0,13.462042814524237,-41.3837606675224 -628,9.0,16.0,-3.956039125715353,10.317447719844054 -628,9.0,19.0,-1.7848303152666305,3.98535828943083 -628,9.0,20.0,-5.101853820159654,10.98071411292983 -628,9.0,21.0,-2.619319553382597,5.400770303329455 -628,10.0,8.0,0.0,4.807692307692308 -628,10.0,10.0,0.0,-4.807692307692308 -628,11.0,3.0,0.0,4.191255364806866 -628,11.0,11.0,6.573961583776156,-24.424167659260668 -628,11.0,12.0,0.0,7.142857142857143 -628,11.0,13.0,-1.5265676088395577,3.1734252729654173 -628,11.0,14.0,-3.0953961826564296,6.097275864326261 -628,11.0,15.0,-1.9519977922801688,4.104359379111847 -628,12.0,11.0,0.0,7.142857142857143 -628,12.0,12.0,0.0,-7.142857142857143 -628,13.0,11.0,-1.5265676088395577,3.1734252729654173 -628,13.0,13.0,1.5265676088395577,-3.1734252729654173 -628,14.0,11.0,-3.0953961826564296,6.097275864326261 -628,14.0,14.0,6.874546281965293,-13.760759672738311 -628,14.0,17.0,-1.8108011504072024,3.687418931630696 -628,14.0,22.0,-1.9683489489016612,3.976064876781356 -628,15.0,11.0,-1.9519977922801688,4.104359379111847 -628,15.0,15.0,3.271064728633931,-8.94513365126506 -628,15.0,16.0,-1.3190669363537617,4.8407742721532125 -628,16.0,9.0,-3.956039125715353,10.317447719844054 -628,16.0,15.0,-1.3190669363537617,4.8407742721532125 -628,16.0,16.0,5.275106062069114,-15.158221991997266 -628,17.0,14.0,-1.8108011504072024,3.687418931630696 -628,17.0,17.0,4.886487584415919,-9.906177730909668 -628,17.0,18.0,-3.0756864340087167,6.218758799278971 -628,18.0,17.0,-3.0756864340087167,6.218758799278971 -628,18.0,18.0,8.958039375185187,-17.98346468163191 -628,18.0,19.0,-5.88235294117647,11.76470588235294 -628,19.0,9.0,-1.7848303152666305,3.98535828943083 -628,19.0,18.0,-5.88235294117647,11.76470588235294 -628,19.0,19.0,7.6671832564431,-15.75006417178377 -628,20.0,9.0,-5.101853820159654,10.98071411292983 -628,20.0,20.0,21.876495189895888,-45.10843276170355 -628,20.0,21.0,-16.774641369736234,34.127718648773715 -628,21.0,9.0,-2.619319553382597,5.400770303329455 -628,21.0,20.0,-16.774641369736234,34.127718648773715 -628,21.0,21.0,21.93449907537439,-43.48289181517921 -628,21.0,23.0,-2.5405381522555563,3.95440286307604 -628,22.0,14.0,-1.9683489489016612,3.976064876781356 -628,22.0,22.0,3.429754555384988,-6.965303617315433 -628,22.0,23.0,-1.4614056064833263,2.989238740534077 -628,23.0,21.0,-2.5405381522555563,3.95440286307604 -628,23.0,22.0,-1.4614056064833263,2.989238740534077 -628,23.0,23.0,5.311836702613133,-9.188263657315172 -628,23.0,24.0,-1.3098929438742493,2.287622053705056 -628,24.0,23.0,-1.3098929438742493,2.287622053705056 -628,24.0,24.0,4.495715080321987,-7.864978761969621 -628,24.0,25.0,-1.2165301194494855,1.8171440463475024 -628,24.0,26.0,-1.9692920169982515,3.760212661917064 -628,25.0,24.0,-1.2165301194494855,1.8171440463475024 -628,25.0,25.0,1.2165301194494855,-1.8171440463475024 -628,26.0,24.0,-1.9692920169982515,3.760212661917064 -628,26.0,26.0,3.652281470778589,-9.46044252232512 -628,26.0,27.0,0.0,2.608731947574922 -628,26.0,28.0,-0.99553355095268,1.881005840357816 -628,26.0,29.0,-0.6874559028276572,1.293971494797717 -628,27.0,5.0,-4.362844058012917,15.463571542897856 -628,27.0,7.0,-1.4439790613954469,4.540814658476248 -628,27.0,26.0,0.0,2.608731947574922 -628,27.0,27.0,5.806823119408364,-22.67145722159613 -628,28.0,26.0,-0.99553355095268,1.881005840357816 -628,28.0,28.0,1.9075867579849564,-3.604364401207048 -628,28.0,29.0,-0.9120532070322764,1.7233585608492326 -628,29.0,26.0,-0.6874559028276572,1.293971494797717 -628,29.0,28.0,-0.9120532070322764,1.7233585608492326 -628,29.0,29.0,1.5995091098599337,-3.0173300556469496 -629,0.0,0.0,6.765516048652632,-21.23160167089863 -629,0.0,1.0,-5.224646179885656,15.646726840803398 -629,0.0,2.0,-1.5408698687669766,5.631674830095234 -629,1.0,0.0,-5.224646179885656,15.646726840803398 -629,1.0,1.0,9.75228216552403,-30.648662892676068 -629,1.0,3.0,-1.7055303166990268,5.1973792282565086 -629,1.0,4.0,-1.1359607881738778,4.772479328281356 -629,1.0,5.0,-1.6861448807654689,5.116477495334806 -629,2.0,0.0,-1.5408698687669766,5.631674830095234 -629,2.0,2.0,9.736318911079088,-29.13794745915803 -629,2.0,3.0,-8.19544904231211,23.5308726290628 -629,3.0,1.0,-1.7055303166990268,5.1973792282565086 -629,3.0,2.0,-8.19544904231211,23.5308726290628 -629,3.0,3.0,9.900979359011137,-33.202706969773025 -629,3.0,11.0,0.0,4.191255364806866 -629,4.0,1.0,-1.1359607881738778,4.772479328281356 -629,4.0,4.0,4.089980824135861,-12.190647245055052 -629,4.0,6.0,-2.954020035961983,7.449267916773697 -629,5.0,1.0,-1.6861448807654689,5.116477495334806 -629,5.0,5.0,15.928507538860009,-60.52244430029767 -629,5.0,6.0,-3.590210423980992,11.02611441072814 -629,5.0,7.0,-6.289308176100628,22.0125786163522 -629,5.0,8.0,0.0,4.915840805411357 -629,5.0,9.0,0.0,1.8561002591115965 -629,5.0,27.0,-4.362844058012917,15.463571542897856 -629,6.0,4.0,-2.954020035961983,7.449267916773697 -629,6.0,5.0,-3.590210423980992,11.02611441072814 -629,6.0,6.0,6.544230459942975,-18.45668232750184 -629,7.0,5.0,-6.289308176100628,22.0125786163522 -629,7.0,7.0,7.733287237496075,-26.527493274828448 -629,7.0,27.0,-1.4439790613954469,4.540814658476248 -629,8.0,5.0,0.0,4.915840805411357 -629,8.0,8.0,0.0,-18.706293706293707 -629,8.0,9.0,0.0,9.090909090909092 -629,8.0,10.0,0.0,4.807692307692308 -629,9.0,5.0,0.0,1.8561002591115965 -629,9.0,8.0,0.0,9.090909090909092 -629,9.0,9.0,13.462042814524237,-41.3837606675224 -629,9.0,16.0,-3.956039125715353,10.317447719844054 -629,9.0,19.0,-1.7848303152666305,3.98535828943083 -629,9.0,20.0,-5.101853820159654,10.98071411292983 -629,9.0,21.0,-2.619319553382597,5.400770303329455 -629,10.0,8.0,0.0,4.807692307692308 -629,10.0,10.0,0.0,-4.807692307692308 -629,11.0,3.0,0.0,4.191255364806866 -629,11.0,11.0,4.621963791495987,-20.31980828014882 -629,11.0,12.0,0.0,7.142857142857143 -629,11.0,13.0,-1.5265676088395577,3.1734252729654173 -629,11.0,14.0,-3.0953961826564296,6.097275864326261 -629,12.0,11.0,0.0,7.142857142857143 -629,12.0,12.0,0.0,-7.142857142857143 -629,13.0,11.0,-1.5265676088395577,3.1734252729654173 -629,13.0,13.0,4.01751987283902,-5.424299332335067 -629,13.0,14.0,-2.4909522639994623,2.250874059369649 -629,14.0,11.0,-3.0953961826564296,6.097275864326261 -629,14.0,13.0,-2.4909522639994623,2.250874059369649 -629,14.0,14.0,9.365498545964757,-16.01163373210796 -629,14.0,17.0,-1.8108011504072024,3.687418931630696 -629,14.0,22.0,-1.9683489489016612,3.976064876781356 -629,15.0,15.0,1.3190669363537617,-4.8407742721532125 -629,15.0,16.0,-1.3190669363537617,4.8407742721532125 -629,16.0,9.0,-3.956039125715353,10.317447719844054 -629,16.0,15.0,-1.3190669363537617,4.8407742721532125 -629,16.0,16.0,5.275106062069114,-15.158221991997266 -629,17.0,14.0,-1.8108011504072024,3.687418931630696 -629,17.0,17.0,4.886487584415919,-9.906177730909668 -629,17.0,18.0,-3.0756864340087167,6.218758799278971 -629,18.0,17.0,-3.0756864340087167,6.218758799278971 -629,18.0,18.0,8.958039375185187,-17.98346468163191 -629,18.0,19.0,-5.88235294117647,11.76470588235294 -629,19.0,9.0,-1.7848303152666305,3.98535828943083 -629,19.0,18.0,-5.88235294117647,11.76470588235294 -629,19.0,19.0,7.6671832564431,-15.75006417178377 -629,20.0,9.0,-5.101853820159654,10.98071411292983 -629,20.0,20.0,21.876495189895888,-45.10843276170355 -629,20.0,21.0,-16.774641369736234,34.127718648773715 -629,21.0,9.0,-2.619319553382597,5.400770303329455 -629,21.0,20.0,-16.774641369736234,34.127718648773715 -629,21.0,21.0,21.93449907537439,-43.48289181517921 -629,21.0,23.0,-2.5405381522555563,3.95440286307604 -629,22.0,14.0,-1.9683489489016612,3.976064876781356 -629,22.0,22.0,3.429754555384988,-6.965303617315433 -629,22.0,23.0,-1.4614056064833263,2.989238740534077 -629,23.0,21.0,-2.5405381522555563,3.95440286307604 -629,23.0,22.0,-1.4614056064833263,2.989238740534077 -629,23.0,23.0,5.311836702613133,-9.188263657315172 -629,23.0,24.0,-1.3098929438742493,2.287622053705056 -629,24.0,23.0,-1.3098929438742493,2.287622053705056 -629,24.0,24.0,4.495715080321987,-7.864978761969621 -629,24.0,25.0,-1.2165301194494855,1.8171440463475024 -629,24.0,26.0,-1.9692920169982515,3.760212661917064 -629,25.0,24.0,-1.2165301194494855,1.8171440463475024 -629,25.0,25.0,1.2165301194494855,-1.8171440463475024 -629,26.0,24.0,-1.9692920169982515,3.760212661917064 -629,26.0,26.0,3.652281470778589,-9.46044252232512 -629,26.0,27.0,0.0,2.608731947574922 -629,26.0,28.0,-0.99553355095268,1.881005840357816 -629,26.0,29.0,-0.6874559028276572,1.293971494797717 -629,27.0,5.0,-4.362844058012917,15.463571542897856 -629,27.0,7.0,-1.4439790613954469,4.540814658476248 -629,27.0,26.0,0.0,2.608731947574922 -629,27.0,27.0,5.806823119408364,-22.67145722159613 -629,28.0,26.0,-0.99553355095268,1.881005840357816 -629,28.0,28.0,1.9075867579849564,-3.604364401207048 -629,28.0,29.0,-0.9120532070322764,1.7233585608492326 -629,29.0,26.0,-0.6874559028276572,1.293971494797717 -629,29.0,28.0,-0.9120532070322764,1.7233585608492326 -629,29.0,29.0,1.5995091098599337,-3.0173300556469496 -630,0.0,0.0,6.765516048652632,-21.23160167089863 -630,0.0,1.0,-5.224646179885656,15.646726840803398 -630,0.0,2.0,-1.5408698687669766,5.631674830095234 -630,1.0,0.0,-5.224646179885656,15.646726840803398 -630,1.0,1.0,9.75228216552403,-30.648662892676068 -630,1.0,3.0,-1.7055303166990268,5.1973792282565086 -630,1.0,4.0,-1.1359607881738778,4.772479328281356 -630,1.0,5.0,-1.6861448807654689,5.116477495334806 -630,2.0,0.0,-1.5408698687669766,5.631674830095234 -630,2.0,2.0,9.736318911079088,-29.13794745915803 -630,2.0,3.0,-8.19544904231211,23.5308726290628 -630,3.0,1.0,-1.7055303166990268,5.1973792282565086 -630,3.0,2.0,-8.19544904231211,23.5308726290628 -630,3.0,3.0,16.314103089185693,-55.509410535254254 -630,3.0,5.0,-6.413123730174556,22.31120356548123 -630,3.0,11.0,0.0,4.191255364806866 -630,4.0,1.0,-1.1359607881738778,4.772479328281356 -630,4.0,4.0,4.089980824135861,-12.190647245055052 -630,4.0,6.0,-2.954020035961983,7.449267916773697 -630,5.0,1.0,-1.6861448807654689,5.116477495334806 -630,5.0,3.0,-6.413123730174556,22.31120356548123 -630,5.0,5.0,16.052323092933932,-60.8210692494267 -630,5.0,6.0,-3.590210423980992,11.02611441072814 -630,5.0,8.0,0.0,4.915840805411357 -630,5.0,9.0,0.0,1.8561002591115965 -630,5.0,27.0,-4.362844058012917,15.463571542897856 -630,6.0,4.0,-2.954020035961983,7.449267916773697 -630,6.0,5.0,-3.590210423980992,11.02611441072814 -630,6.0,6.0,6.544230459942975,-18.45668232750184 -630,7.0,7.0,1.4439790613954469,-4.519414658476248 -630,7.0,27.0,-1.4439790613954469,4.540814658476248 -630,8.0,5.0,0.0,4.915840805411357 -630,8.0,8.0,0.0,-18.706293706293707 -630,8.0,9.0,0.0,9.090909090909092 -630,8.0,10.0,0.0,4.807692307692308 -630,9.0,5.0,0.0,1.8561002591115965 -630,9.0,8.0,0.0,9.090909090909092 -630,9.0,9.0,13.462042814524237,-41.3837606675224 -630,9.0,16.0,-3.956039125715353,10.317447719844054 -630,9.0,19.0,-1.7848303152666305,3.98535828943083 -630,9.0,20.0,-5.101853820159654,10.98071411292983 -630,9.0,21.0,-2.619319553382597,5.400770303329455 -630,10.0,8.0,0.0,4.807692307692308 -630,10.0,10.0,0.0,-4.807692307692308 -630,11.0,3.0,0.0,4.191255364806866 -630,11.0,11.0,6.573961583776156,-24.424167659260668 -630,11.0,12.0,0.0,7.142857142857143 -630,11.0,13.0,-1.5265676088395577,3.1734252729654173 -630,11.0,14.0,-3.0953961826564296,6.097275864326261 -630,11.0,15.0,-1.9519977922801688,4.104359379111847 -630,12.0,11.0,0.0,7.142857142857143 -630,12.0,12.0,0.0,-7.142857142857143 -630,13.0,11.0,-1.5265676088395577,3.1734252729654173 -630,13.0,13.0,4.01751987283902,-5.424299332335067 -630,13.0,14.0,-2.4909522639994623,2.250874059369649 -630,14.0,11.0,-3.0953961826564296,6.097275864326261 -630,14.0,13.0,-2.4909522639994623,2.250874059369649 -630,14.0,14.0,9.365498545964757,-16.01163373210796 -630,14.0,17.0,-1.8108011504072024,3.687418931630696 -630,14.0,22.0,-1.9683489489016612,3.976064876781356 -630,15.0,11.0,-1.9519977922801688,4.104359379111847 -630,15.0,15.0,3.271064728633931,-8.94513365126506 -630,15.0,16.0,-1.3190669363537617,4.8407742721532125 -630,16.0,9.0,-3.956039125715353,10.317447719844054 -630,16.0,15.0,-1.3190669363537617,4.8407742721532125 -630,16.0,16.0,5.275106062069114,-15.158221991997266 -630,17.0,14.0,-1.8108011504072024,3.687418931630696 -630,17.0,17.0,4.886487584415919,-9.906177730909668 -630,17.0,18.0,-3.0756864340087167,6.218758799278971 -630,18.0,17.0,-3.0756864340087167,6.218758799278971 -630,18.0,18.0,8.958039375185187,-17.98346468163191 -630,18.0,19.0,-5.88235294117647,11.76470588235294 -630,19.0,9.0,-1.7848303152666305,3.98535828943083 -630,19.0,18.0,-5.88235294117647,11.76470588235294 -630,19.0,19.0,7.6671832564431,-15.75006417178377 -630,20.0,9.0,-5.101853820159654,10.98071411292983 -630,20.0,20.0,21.876495189895888,-45.10843276170355 -630,20.0,21.0,-16.774641369736234,34.127718648773715 -630,21.0,9.0,-2.619319553382597,5.400770303329455 -630,21.0,20.0,-16.774641369736234,34.127718648773715 -630,21.0,21.0,21.93449907537439,-43.48289181517921 -630,21.0,23.0,-2.5405381522555563,3.95440286307604 -630,22.0,14.0,-1.9683489489016612,3.976064876781356 -630,22.0,22.0,3.429754555384988,-6.965303617315433 -630,22.0,23.0,-1.4614056064833263,2.989238740534077 -630,23.0,21.0,-2.5405381522555563,3.95440286307604 -630,23.0,22.0,-1.4614056064833263,2.989238740534077 -630,23.0,23.0,5.311836702613133,-9.188263657315172 -630,23.0,24.0,-1.3098929438742493,2.287622053705056 -630,24.0,23.0,-1.3098929438742493,2.287622053705056 -630,24.0,24.0,4.495715080321987,-7.864978761969621 -630,24.0,25.0,-1.2165301194494855,1.8171440463475024 -630,24.0,26.0,-1.9692920169982515,3.760212661917064 -630,25.0,24.0,-1.2165301194494855,1.8171440463475024 -630,25.0,25.0,1.2165301194494855,-1.8171440463475024 -630,26.0,24.0,-1.9692920169982515,3.760212661917064 -630,26.0,26.0,3.652281470778589,-9.46044252232512 -630,26.0,27.0,0.0,2.608731947574922 -630,26.0,28.0,-0.99553355095268,1.881005840357816 -630,26.0,29.0,-0.6874559028276572,1.293971494797717 -630,27.0,5.0,-4.362844058012917,15.463571542897856 -630,27.0,7.0,-1.4439790613954469,4.540814658476248 -630,27.0,26.0,0.0,2.608731947574922 -630,27.0,27.0,5.806823119408364,-22.67145722159613 -630,28.0,26.0,-0.99553355095268,1.881005840357816 -630,28.0,28.0,1.9075867579849564,-3.604364401207048 -630,28.0,29.0,-0.9120532070322764,1.7233585608492326 -630,29.0,26.0,-0.6874559028276572,1.293971494797717 -630,29.0,28.0,-0.9120532070322764,1.7233585608492326 -630,29.0,29.0,1.5995091098599337,-3.0173300556469496 -631,0.0,0.0,6.765516048652632,-21.23160167089863 -631,0.0,1.0,-5.224646179885656,15.646726840803398 -631,0.0,2.0,-1.5408698687669766,5.631674830095234 -631,1.0,0.0,-5.224646179885656,15.646726840803398 -631,1.0,1.0,8.61632137735015,-25.897083564394716 -631,1.0,3.0,-1.7055303166990268,5.1973792282565086 -631,1.0,5.0,-1.6861448807654689,5.116477495334806 -631,2.0,0.0,-1.5408698687669766,5.631674830095234 -631,2.0,2.0,9.736318911079088,-29.13794745915803 -631,2.0,3.0,-8.19544904231211,23.5308726290628 -631,3.0,1.0,-1.7055303166990268,5.1973792282565086 -631,3.0,2.0,-8.19544904231211,23.5308726290628 -631,3.0,3.0,16.314103089185693,-55.509410535254254 -631,3.0,5.0,-6.413123730174556,22.31120356548123 -631,3.0,11.0,0.0,4.191255364806866 -631,4.0,4.0,2.954020035961983,-7.439067916773697 -631,4.0,6.0,-2.954020035961983,7.449267916773697 -631,5.0,1.0,-1.6861448807654689,5.116477495334806 -631,5.0,3.0,-6.413123730174556,22.31120356548123 -631,5.0,5.0,22.341631269034565,-82.8291478657789 -631,5.0,6.0,-3.590210423980992,11.02611441072814 -631,5.0,7.0,-6.289308176100628,22.0125786163522 -631,5.0,8.0,0.0,4.915840805411357 -631,5.0,9.0,0.0,1.8561002591115965 -631,5.0,27.0,-4.362844058012917,15.463571542897856 -631,6.0,4.0,-2.954020035961983,7.449267916773697 -631,6.0,5.0,-3.590210423980992,11.02611441072814 -631,6.0,6.0,6.544230459942975,-18.45668232750184 -631,7.0,5.0,-6.289308176100628,22.0125786163522 -631,7.0,7.0,7.733287237496075,-26.527493274828448 -631,7.0,27.0,-1.4439790613954469,4.540814658476248 -631,8.0,5.0,0.0,4.915840805411357 -631,8.0,8.0,0.0,-18.706293706293707 -631,8.0,9.0,0.0,9.090909090909092 -631,8.0,10.0,0.0,4.807692307692308 -631,9.0,5.0,0.0,1.8561002591115965 -631,9.0,8.0,0.0,9.090909090909092 -631,9.0,9.0,9.506003688808882,-31.06631294767834 -631,9.0,19.0,-1.7848303152666305,3.98535828943083 -631,9.0,20.0,-5.101853820159654,10.98071411292983 -631,9.0,21.0,-2.619319553382597,5.400770303329455 -631,10.0,8.0,0.0,4.807692307692308 -631,10.0,10.0,0.0,-4.807692307692308 -631,11.0,3.0,0.0,4.191255364806866 -631,11.0,11.0,6.573961583776156,-24.424167659260668 -631,11.0,12.0,0.0,7.142857142857143 -631,11.0,13.0,-1.5265676088395577,3.1734252729654173 -631,11.0,14.0,-3.0953961826564296,6.097275864326261 -631,11.0,15.0,-1.9519977922801688,4.104359379111847 -631,12.0,11.0,0.0,7.142857142857143 -631,12.0,12.0,0.0,-7.142857142857143 -631,13.0,11.0,-1.5265676088395577,3.1734252729654173 -631,13.0,13.0,4.01751987283902,-5.424299332335067 -631,13.0,14.0,-2.4909522639994623,2.250874059369649 -631,14.0,11.0,-3.0953961826564296,6.097275864326261 -631,14.0,13.0,-2.4909522639994623,2.250874059369649 -631,14.0,14.0,9.365498545964757,-16.01163373210796 -631,14.0,17.0,-1.8108011504072024,3.687418931630696 -631,14.0,22.0,-1.9683489489016612,3.976064876781356 -631,15.0,11.0,-1.9519977922801688,4.104359379111847 -631,15.0,15.0,3.271064728633931,-8.94513365126506 -631,15.0,16.0,-1.3190669363537617,4.8407742721532125 -631,16.0,15.0,-1.3190669363537617,4.8407742721532125 -631,16.0,16.0,1.3190669363537617,-4.8407742721532125 -631,17.0,14.0,-1.8108011504072024,3.687418931630696 -631,17.0,17.0,4.886487584415919,-9.906177730909668 -631,17.0,18.0,-3.0756864340087167,6.218758799278971 -631,18.0,17.0,-3.0756864340087167,6.218758799278971 -631,18.0,18.0,8.958039375185187,-17.98346468163191 -631,18.0,19.0,-5.88235294117647,11.76470588235294 -631,19.0,9.0,-1.7848303152666305,3.98535828943083 -631,19.0,18.0,-5.88235294117647,11.76470588235294 -631,19.0,19.0,7.6671832564431,-15.75006417178377 -631,20.0,9.0,-5.101853820159654,10.98071411292983 -631,20.0,20.0,21.876495189895888,-45.10843276170355 -631,20.0,21.0,-16.774641369736234,34.127718648773715 -631,21.0,9.0,-2.619319553382597,5.400770303329455 -631,21.0,20.0,-16.774641369736234,34.127718648773715 -631,21.0,21.0,21.93449907537439,-43.48289181517921 -631,21.0,23.0,-2.5405381522555563,3.95440286307604 -631,22.0,14.0,-1.9683489489016612,3.976064876781356 -631,22.0,22.0,3.429754555384988,-6.965303617315433 -631,22.0,23.0,-1.4614056064833263,2.989238740534077 -631,23.0,21.0,-2.5405381522555563,3.95440286307604 -631,23.0,22.0,-1.4614056064833263,2.989238740534077 -631,23.0,23.0,5.311836702613133,-9.188263657315172 -631,23.0,24.0,-1.3098929438742493,2.287622053705056 -631,24.0,23.0,-1.3098929438742493,2.287622053705056 -631,24.0,24.0,4.495715080321987,-7.864978761969621 -631,24.0,25.0,-1.2165301194494855,1.8171440463475024 -631,24.0,26.0,-1.9692920169982515,3.760212661917064 -631,25.0,24.0,-1.2165301194494855,1.8171440463475024 -631,25.0,25.0,1.2165301194494855,-1.8171440463475024 -631,26.0,24.0,-1.9692920169982515,3.760212661917064 -631,26.0,26.0,3.652281470778589,-9.46044252232512 -631,26.0,27.0,0.0,2.608731947574922 -631,26.0,28.0,-0.99553355095268,1.881005840357816 -631,26.0,29.0,-0.6874559028276572,1.293971494797717 -631,27.0,5.0,-4.362844058012917,15.463571542897856 -631,27.0,7.0,-1.4439790613954469,4.540814658476248 -631,27.0,26.0,0.0,2.608731947574922 -631,27.0,27.0,5.806823119408364,-22.67145722159613 -631,28.0,26.0,-0.99553355095268,1.881005840357816 -631,28.0,28.0,1.9075867579849564,-3.604364401207048 -631,28.0,29.0,-0.9120532070322764,1.7233585608492326 -631,29.0,26.0,-0.6874559028276572,1.293971494797717 -631,29.0,28.0,-0.9120532070322764,1.7233585608492326 -631,29.0,29.0,1.5995091098599337,-3.0173300556469496 -632,0.0,0.0,6.765516048652632,-21.23160167089863 -632,0.0,1.0,-5.224646179885656,15.646726840803398 -632,0.0,2.0,-1.5408698687669766,5.631674830095234 -632,1.0,0.0,-5.224646179885656,15.646726840803398 -632,1.0,1.0,9.75228216552403,-30.648662892676068 -632,1.0,3.0,-1.7055303166990268,5.1973792282565086 -632,1.0,4.0,-1.1359607881738778,4.772479328281356 -632,1.0,5.0,-1.6861448807654689,5.116477495334806 -632,2.0,0.0,-1.5408698687669766,5.631674830095234 -632,2.0,2.0,9.736318911079088,-29.13794745915803 -632,2.0,3.0,-8.19544904231211,23.5308726290628 -632,3.0,1.0,-1.7055303166990268,5.1973792282565086 -632,3.0,2.0,-8.19544904231211,23.5308726290628 -632,3.0,3.0,16.314103089185693,-55.509410535254254 -632,3.0,5.0,-6.413123730174556,22.31120356548123 -632,3.0,11.0,0.0,4.191255364806866 -632,4.0,1.0,-1.1359607881738778,4.772479328281356 -632,4.0,4.0,4.089980824135861,-12.190647245055052 -632,4.0,6.0,-2.954020035961983,7.449267916773697 -632,5.0,1.0,-1.6861448807654689,5.116477495334806 -632,5.0,3.0,-6.413123730174556,22.31120356548123 -632,5.0,5.0,22.341631269034565,-82.8291478657789 -632,5.0,6.0,-3.590210423980992,11.02611441072814 -632,5.0,7.0,-6.289308176100628,22.0125786163522 -632,5.0,8.0,0.0,4.915840805411357 -632,5.0,9.0,0.0,1.8561002591115965 -632,5.0,27.0,-4.362844058012917,15.463571542897856 -632,6.0,4.0,-2.954020035961983,7.449267916773697 -632,6.0,5.0,-3.590210423980992,11.02611441072814 -632,6.0,6.0,6.544230459942975,-18.45668232750184 -632,7.0,5.0,-6.289308176100628,22.0125786163522 -632,7.0,7.0,7.733287237496075,-26.527493274828448 -632,7.0,27.0,-1.4439790613954469,4.540814658476248 -632,8.0,5.0,0.0,4.915840805411357 -632,8.0,8.0,0.0,-18.706293706293707 -632,8.0,9.0,0.0,9.090909090909092 -632,8.0,10.0,0.0,4.807692307692308 -632,9.0,5.0,0.0,1.8561002591115965 -632,9.0,8.0,0.0,9.090909090909092 -632,9.0,9.0,10.842723261141638,-35.98299036419294 -632,9.0,16.0,-3.956039125715353,10.317447719844054 -632,9.0,19.0,-1.7848303152666305,3.98535828943083 -632,9.0,20.0,-5.101853820159654,10.98071411292983 -632,10.0,8.0,0.0,4.807692307692308 -632,10.0,10.0,0.0,-4.807692307692308 -632,11.0,3.0,0.0,4.191255364806866 -632,11.0,11.0,6.573961583776156,-24.424167659260668 -632,11.0,12.0,0.0,7.142857142857143 -632,11.0,13.0,-1.5265676088395577,3.1734252729654173 -632,11.0,14.0,-3.0953961826564296,6.097275864326261 -632,11.0,15.0,-1.9519977922801688,4.104359379111847 -632,12.0,11.0,0.0,7.142857142857143 -632,12.0,12.0,0.0,-7.142857142857143 -632,13.0,11.0,-1.5265676088395577,3.1734252729654173 -632,13.0,13.0,4.01751987283902,-5.424299332335067 -632,13.0,14.0,-2.4909522639994623,2.250874059369649 -632,14.0,11.0,-3.0953961826564296,6.097275864326261 -632,14.0,13.0,-2.4909522639994623,2.250874059369649 -632,14.0,14.0,9.365498545964757,-16.01163373210796 -632,14.0,17.0,-1.8108011504072024,3.687418931630696 -632,14.0,22.0,-1.9683489489016612,3.976064876781356 -632,15.0,11.0,-1.9519977922801688,4.104359379111847 -632,15.0,15.0,3.271064728633931,-8.94513365126506 -632,15.0,16.0,-1.3190669363537617,4.8407742721532125 -632,16.0,9.0,-3.956039125715353,10.317447719844054 -632,16.0,15.0,-1.3190669363537617,4.8407742721532125 -632,16.0,16.0,5.275106062069114,-15.158221991997266 -632,17.0,14.0,-1.8108011504072024,3.687418931630696 -632,17.0,17.0,4.886487584415919,-9.906177730909668 -632,17.0,18.0,-3.0756864340087167,6.218758799278971 -632,18.0,17.0,-3.0756864340087167,6.218758799278971 -632,18.0,18.0,8.958039375185187,-17.98346468163191 -632,18.0,19.0,-5.88235294117647,11.76470588235294 -632,19.0,9.0,-1.7848303152666305,3.98535828943083 -632,19.0,18.0,-5.88235294117647,11.76470588235294 -632,19.0,19.0,7.6671832564431,-15.75006417178377 -632,20.0,9.0,-5.101853820159654,10.98071411292983 -632,20.0,20.0,21.876495189895888,-45.10843276170355 -632,20.0,21.0,-16.774641369736234,34.127718648773715 -632,21.0,20.0,-16.774641369736234,34.127718648773715 -632,21.0,21.0,19.31517952199179,-38.08212151184976 -632,21.0,23.0,-2.5405381522555563,3.95440286307604 -632,22.0,14.0,-1.9683489489016612,3.976064876781356 -632,22.0,22.0,3.429754555384988,-6.965303617315433 -632,22.0,23.0,-1.4614056064833263,2.989238740534077 -632,23.0,21.0,-2.5405381522555563,3.95440286307604 -632,23.0,22.0,-1.4614056064833263,2.989238740534077 -632,23.0,23.0,5.311836702613133,-9.188263657315172 -632,23.0,24.0,-1.3098929438742493,2.287622053705056 -632,24.0,23.0,-1.3098929438742493,2.287622053705056 -632,24.0,24.0,4.495715080321987,-7.864978761969621 -632,24.0,25.0,-1.2165301194494855,1.8171440463475024 -632,24.0,26.0,-1.9692920169982515,3.760212661917064 -632,25.0,24.0,-1.2165301194494855,1.8171440463475024 -632,25.0,25.0,1.2165301194494855,-1.8171440463475024 -632,26.0,24.0,-1.9692920169982515,3.760212661917064 -632,26.0,26.0,3.652281470778589,-9.46044252232512 -632,26.0,27.0,0.0,2.608731947574922 -632,26.0,28.0,-0.99553355095268,1.881005840357816 -632,26.0,29.0,-0.6874559028276572,1.293971494797717 -632,27.0,5.0,-4.362844058012917,15.463571542897856 -632,27.0,7.0,-1.4439790613954469,4.540814658476248 -632,27.0,26.0,0.0,2.608731947574922 -632,27.0,27.0,5.806823119408364,-22.67145722159613 -632,28.0,26.0,-0.99553355095268,1.881005840357816 -632,28.0,28.0,1.9075867579849564,-3.604364401207048 -632,28.0,29.0,-0.9120532070322764,1.7233585608492326 -632,29.0,26.0,-0.6874559028276572,1.293971494797717 -632,29.0,28.0,-0.9120532070322764,1.7233585608492326 -632,29.0,29.0,1.5995091098599337,-3.0173300556469496 -633,0.0,0.0,6.765516048652632,-21.23160167089863 -633,0.0,1.0,-5.224646179885656,15.646726840803398 -633,0.0,2.0,-1.5408698687669766,5.631674830095234 -633,1.0,0.0,-5.224646179885656,15.646726840803398 -633,1.0,1.0,9.75228216552403,-30.648662892676068 -633,1.0,3.0,-1.7055303166990268,5.1973792282565086 -633,1.0,4.0,-1.1359607881738778,4.772479328281356 -633,1.0,5.0,-1.6861448807654689,5.116477495334806 -633,2.0,0.0,-1.5408698687669766,5.631674830095234 -633,2.0,2.0,9.736318911079088,-29.13794745915803 -633,2.0,3.0,-8.19544904231211,23.5308726290628 -633,3.0,1.0,-1.7055303166990268,5.1973792282565086 -633,3.0,2.0,-8.19544904231211,23.5308726290628 -633,3.0,3.0,16.314103089185693,-55.509410535254254 -633,3.0,5.0,-6.413123730174556,22.31120356548123 -633,3.0,11.0,0.0,4.191255364806866 -633,4.0,1.0,-1.1359607881738778,4.772479328281356 -633,4.0,4.0,4.089980824135861,-12.190647245055052 -633,4.0,6.0,-2.954020035961983,7.449267916773697 -633,5.0,1.0,-1.6861448807654689,5.116477495334806 -633,5.0,3.0,-6.413123730174556,22.31120356548123 -633,5.0,5.0,22.341631269034565,-82.8291478657789 -633,5.0,6.0,-3.590210423980992,11.02611441072814 -633,5.0,7.0,-6.289308176100628,22.0125786163522 -633,5.0,8.0,0.0,4.915840805411357 -633,5.0,9.0,0.0,1.8561002591115965 -633,5.0,27.0,-4.362844058012917,15.463571542897856 -633,6.0,4.0,-2.954020035961983,7.449267916773697 -633,6.0,5.0,-3.590210423980992,11.02611441072814 -633,6.0,6.0,6.544230459942975,-18.45668232750184 -633,7.0,5.0,-6.289308176100628,22.0125786163522 -633,7.0,7.0,7.733287237496075,-26.527493274828448 -633,7.0,27.0,-1.4439790613954469,4.540814658476248 -633,8.0,5.0,0.0,4.915840805411357 -633,8.0,8.0,0.0,-18.706293706293707 -633,8.0,9.0,0.0,9.090909090909092 -633,8.0,10.0,0.0,4.807692307692308 -633,9.0,5.0,0.0,1.8561002591115965 -633,9.0,8.0,0.0,9.090909090909092 -633,9.0,9.0,13.462042814524237,-41.3837606675224 -633,9.0,16.0,-3.956039125715353,10.317447719844054 -633,9.0,19.0,-1.7848303152666305,3.98535828943083 -633,9.0,20.0,-5.101853820159654,10.98071411292983 -633,9.0,21.0,-2.619319553382597,5.400770303329455 -633,10.0,8.0,0.0,4.807692307692308 -633,10.0,10.0,0.0,-4.807692307692308 -633,11.0,3.0,0.0,4.191255364806866 -633,11.0,11.0,6.573961583776156,-24.424167659260668 -633,11.0,12.0,0.0,7.142857142857143 -633,11.0,13.0,-1.5265676088395577,3.1734252729654173 -633,11.0,14.0,-3.0953961826564296,6.097275864326261 -633,11.0,15.0,-1.9519977922801688,4.104359379111847 -633,12.0,11.0,0.0,7.142857142857143 -633,12.0,12.0,0.0,-7.142857142857143 -633,13.0,11.0,-1.5265676088395577,3.1734252729654173 -633,13.0,13.0,4.01751987283902,-5.424299332335067 -633,13.0,14.0,-2.4909522639994623,2.250874059369649 -633,14.0,11.0,-3.0953961826564296,6.097275864326261 -633,14.0,13.0,-2.4909522639994623,2.250874059369649 -633,14.0,14.0,9.365498545964757,-16.01163373210796 -633,14.0,17.0,-1.8108011504072024,3.687418931630696 -633,14.0,22.0,-1.9683489489016612,3.976064876781356 -633,15.0,11.0,-1.9519977922801688,4.104359379111847 -633,15.0,15.0,3.271064728633931,-8.94513365126506 -633,15.0,16.0,-1.3190669363537617,4.8407742721532125 -633,16.0,9.0,-3.956039125715353,10.317447719844054 -633,16.0,15.0,-1.3190669363537617,4.8407742721532125 -633,16.0,16.0,5.275106062069114,-15.158221991997266 -633,17.0,14.0,-1.8108011504072024,3.687418931630696 -633,17.0,17.0,4.886487584415919,-9.906177730909668 -633,17.0,18.0,-3.0756864340087167,6.218758799278971 -633,18.0,17.0,-3.0756864340087167,6.218758799278971 -633,18.0,18.0,8.958039375185187,-17.98346468163191 -633,18.0,19.0,-5.88235294117647,11.76470588235294 -633,19.0,9.0,-1.7848303152666305,3.98535828943083 -633,19.0,18.0,-5.88235294117647,11.76470588235294 -633,19.0,19.0,7.6671832564431,-15.75006417178377 -633,20.0,9.0,-5.101853820159654,10.98071411292983 -633,20.0,20.0,21.876495189895888,-45.10843276170355 -633,20.0,21.0,-16.774641369736234,34.127718648773715 -633,21.0,9.0,-2.619319553382597,5.400770303329455 -633,21.0,20.0,-16.774641369736234,34.127718648773715 -633,21.0,21.0,21.93449907537439,-43.48289181517921 -633,21.0,23.0,-2.5405381522555563,3.95440286307604 -633,22.0,14.0,-1.9683489489016612,3.976064876781356 -633,22.0,22.0,3.429754555384988,-6.965303617315433 -633,22.0,23.0,-1.4614056064833263,2.989238740534077 -633,23.0,21.0,-2.5405381522555563,3.95440286307604 -633,23.0,22.0,-1.4614056064833263,2.989238740534077 -633,23.0,23.0,5.311836702613133,-9.188263657315172 -633,23.0,24.0,-1.3098929438742493,2.287622053705056 -633,24.0,23.0,-1.3098929438742493,2.287622053705056 -633,24.0,24.0,4.495715080321987,-7.864978761969621 -633,24.0,25.0,-1.2165301194494855,1.8171440463475024 -633,24.0,26.0,-1.9692920169982515,3.760212661917064 -633,25.0,24.0,-1.2165301194494855,1.8171440463475024 -633,25.0,25.0,1.2165301194494855,-1.8171440463475024 -633,26.0,24.0,-1.9692920169982515,3.760212661917064 -633,26.0,26.0,3.652281470778589,-9.46044252232512 -633,26.0,27.0,0.0,2.608731947574922 -633,26.0,28.0,-0.99553355095268,1.881005840357816 -633,26.0,29.0,-0.6874559028276572,1.293971494797717 -633,27.0,5.0,-4.362844058012917,15.463571542897856 -633,27.0,7.0,-1.4439790613954469,4.540814658476248 -633,27.0,26.0,0.0,2.608731947574922 -633,27.0,27.0,5.806823119408364,-22.67145722159613 -633,28.0,26.0,-0.99553355095268,1.881005840357816 -633,28.0,28.0,1.9075867579849564,-3.604364401207048 -633,28.0,29.0,-0.9120532070322764,1.7233585608492326 -633,29.0,26.0,-0.6874559028276572,1.293971494797717 -633,29.0,28.0,-0.9120532070322764,1.7233585608492326 -633,29.0,29.0,1.5995091098599337,-3.0173300556469496 -634,0.0,0.0,6.765516048652632,-21.23160167089863 -634,0.0,1.0,-5.224646179885656,15.646726840803398 -634,0.0,2.0,-1.5408698687669766,5.631674830095234 -634,1.0,0.0,-5.224646179885656,15.646726840803398 -634,1.0,1.0,9.75228216552403,-30.648662892676068 -634,1.0,3.0,-1.7055303166990268,5.1973792282565086 -634,1.0,4.0,-1.1359607881738778,4.772479328281356 -634,1.0,5.0,-1.6861448807654689,5.116477495334806 -634,2.0,0.0,-1.5408698687669766,5.631674830095234 -634,2.0,2.0,9.736318911079088,-29.13794745915803 -634,2.0,3.0,-8.19544904231211,23.5308726290628 -634,3.0,1.0,-1.7055303166990268,5.1973792282565086 -634,3.0,2.0,-8.19544904231211,23.5308726290628 -634,3.0,3.0,16.314103089185693,-55.509410535254254 -634,3.0,5.0,-6.413123730174556,22.31120356548123 -634,3.0,11.0,0.0,4.191255364806866 -634,4.0,1.0,-1.1359607881738778,4.772479328281356 -634,4.0,4.0,4.089980824135861,-12.190647245055052 -634,4.0,6.0,-2.954020035961983,7.449267916773697 -634,5.0,1.0,-1.6861448807654689,5.116477495334806 -634,5.0,3.0,-6.413123730174556,22.31120356548123 -634,5.0,5.0,18.75142084505357,-71.81153345505078 -634,5.0,7.0,-6.289308176100628,22.0125786163522 -634,5.0,8.0,0.0,4.915840805411357 -634,5.0,9.0,0.0,1.8561002591115965 -634,5.0,27.0,-4.362844058012917,15.463571542897856 -634,6.0,4.0,-2.954020035961983,7.449267916773697 -634,6.0,6.0,2.954020035961983,-7.439067916773697 -634,7.0,5.0,-6.289308176100628,22.0125786163522 -634,7.0,7.0,7.733287237496075,-26.527493274828448 -634,7.0,27.0,-1.4439790613954469,4.540814658476248 -634,8.0,5.0,0.0,4.915840805411357 -634,8.0,8.0,0.0,-18.706293706293707 -634,8.0,9.0,0.0,9.090909090909092 -634,8.0,10.0,0.0,4.807692307692308 -634,9.0,5.0,0.0,1.8561002591115965 -634,9.0,8.0,0.0,9.090909090909092 -634,9.0,9.0,13.462042814524237,-41.3837606675224 -634,9.0,16.0,-3.956039125715353,10.317447719844054 -634,9.0,19.0,-1.7848303152666305,3.98535828943083 -634,9.0,20.0,-5.101853820159654,10.98071411292983 -634,9.0,21.0,-2.619319553382597,5.400770303329455 -634,10.0,8.0,0.0,4.807692307692308 -634,10.0,10.0,0.0,-4.807692307692308 -634,11.0,3.0,0.0,4.191255364806866 -634,11.0,11.0,6.573961583776156,-24.424167659260668 -634,11.0,12.0,0.0,7.142857142857143 -634,11.0,13.0,-1.5265676088395577,3.1734252729654173 -634,11.0,14.0,-3.0953961826564296,6.097275864326261 -634,11.0,15.0,-1.9519977922801688,4.104359379111847 -634,12.0,11.0,0.0,7.142857142857143 -634,12.0,12.0,0.0,-7.142857142857143 -634,13.0,11.0,-1.5265676088395577,3.1734252729654173 -634,13.0,13.0,4.01751987283902,-5.424299332335067 -634,13.0,14.0,-2.4909522639994623,2.250874059369649 -634,14.0,11.0,-3.0953961826564296,6.097275864326261 -634,14.0,13.0,-2.4909522639994623,2.250874059369649 -634,14.0,14.0,9.365498545964757,-16.01163373210796 -634,14.0,17.0,-1.8108011504072024,3.687418931630696 -634,14.0,22.0,-1.9683489489016612,3.976064876781356 -634,15.0,11.0,-1.9519977922801688,4.104359379111847 -634,15.0,15.0,3.271064728633931,-8.94513365126506 -634,15.0,16.0,-1.3190669363537617,4.8407742721532125 -634,16.0,9.0,-3.956039125715353,10.317447719844054 -634,16.0,15.0,-1.3190669363537617,4.8407742721532125 -634,16.0,16.0,5.275106062069114,-15.158221991997266 -634,17.0,14.0,-1.8108011504072024,3.687418931630696 -634,17.0,17.0,4.886487584415919,-9.906177730909668 -634,17.0,18.0,-3.0756864340087167,6.218758799278971 -634,18.0,17.0,-3.0756864340087167,6.218758799278971 -634,18.0,18.0,8.958039375185187,-17.98346468163191 -634,18.0,19.0,-5.88235294117647,11.76470588235294 -634,19.0,9.0,-1.7848303152666305,3.98535828943083 -634,19.0,18.0,-5.88235294117647,11.76470588235294 -634,19.0,19.0,7.6671832564431,-15.75006417178377 -634,20.0,9.0,-5.101853820159654,10.98071411292983 -634,20.0,20.0,21.876495189895888,-45.10843276170355 -634,20.0,21.0,-16.774641369736234,34.127718648773715 -634,21.0,9.0,-2.619319553382597,5.400770303329455 -634,21.0,20.0,-16.774641369736234,34.127718648773715 -634,21.0,21.0,21.93449907537439,-43.48289181517921 -634,21.0,23.0,-2.5405381522555563,3.95440286307604 -634,22.0,14.0,-1.9683489489016612,3.976064876781356 -634,22.0,22.0,3.429754555384988,-6.965303617315433 -634,22.0,23.0,-1.4614056064833263,2.989238740534077 -634,23.0,21.0,-2.5405381522555563,3.95440286307604 -634,23.0,22.0,-1.4614056064833263,2.989238740534077 -634,23.0,23.0,4.001943758738883,-6.900641603610116 -634,24.0,24.0,3.185822136447737,-5.577356708264566 -634,24.0,25.0,-1.2165301194494855,1.8171440463475024 -634,24.0,26.0,-1.9692920169982515,3.760212661917064 -634,25.0,24.0,-1.2165301194494855,1.8171440463475024 -634,25.0,25.0,1.2165301194494855,-1.8171440463475024 -634,26.0,24.0,-1.9692920169982515,3.760212661917064 -634,26.0,26.0,3.652281470778589,-9.46044252232512 -634,26.0,27.0,0.0,2.608731947574922 -634,26.0,28.0,-0.99553355095268,1.881005840357816 -634,26.0,29.0,-0.6874559028276572,1.293971494797717 -634,27.0,5.0,-4.362844058012917,15.463571542897856 -634,27.0,7.0,-1.4439790613954469,4.540814658476248 -634,27.0,26.0,0.0,2.608731947574922 -634,27.0,27.0,5.806823119408364,-22.67145722159613 -634,28.0,26.0,-0.99553355095268,1.881005840357816 -634,28.0,28.0,1.9075867579849564,-3.604364401207048 -634,28.0,29.0,-0.9120532070322764,1.7233585608492326 -634,29.0,26.0,-0.6874559028276572,1.293971494797717 -634,29.0,28.0,-0.9120532070322764,1.7233585608492326 -634,29.0,29.0,1.5995091098599337,-3.0173300556469496 -635,0.0,0.0,6.765516048652632,-21.23160167089863 -635,0.0,1.0,-5.224646179885656,15.646726840803398 -635,0.0,2.0,-1.5408698687669766,5.631674830095234 -635,1.0,0.0,-5.224646179885656,15.646726840803398 -635,1.0,1.0,9.75228216552403,-30.648662892676068 -635,1.0,3.0,-1.7055303166990268,5.1973792282565086 -635,1.0,4.0,-1.1359607881738778,4.772479328281356 -635,1.0,5.0,-1.6861448807654689,5.116477495334806 -635,2.0,0.0,-1.5408698687669766,5.631674830095234 -635,2.0,2.0,9.736318911079088,-29.13794745915803 -635,2.0,3.0,-8.19544904231211,23.5308726290628 -635,3.0,1.0,-1.7055303166990268,5.1973792282565086 -635,3.0,2.0,-8.19544904231211,23.5308726290628 -635,3.0,3.0,16.314103089185693,-55.509410535254254 -635,3.0,5.0,-6.413123730174556,22.31120356548123 -635,3.0,11.0,0.0,4.191255364806866 -635,4.0,1.0,-1.1359607881738778,4.772479328281356 -635,4.0,4.0,4.089980824135861,-12.190647245055052 -635,4.0,6.0,-2.954020035961983,7.449267916773697 -635,5.0,1.0,-1.6861448807654689,5.116477495334806 -635,5.0,3.0,-6.413123730174556,22.31120356548123 -635,5.0,5.0,22.341631269034565,-82.8291478657789 -635,5.0,6.0,-3.590210423980992,11.02611441072814 -635,5.0,7.0,-6.289308176100628,22.0125786163522 -635,5.0,8.0,0.0,4.915840805411357 -635,5.0,9.0,0.0,1.8561002591115965 -635,5.0,27.0,-4.362844058012917,15.463571542897856 -635,6.0,4.0,-2.954020035961983,7.449267916773697 -635,6.0,5.0,-3.590210423980992,11.02611441072814 -635,6.0,6.0,6.544230459942975,-18.45668232750184 -635,7.0,5.0,-6.289308176100628,22.0125786163522 -635,7.0,7.0,7.733287237496075,-26.527493274828448 -635,7.0,27.0,-1.4439790613954469,4.540814658476248 -635,8.0,5.0,0.0,4.915840805411357 -635,8.0,8.0,0.0,-18.706293706293707 -635,8.0,9.0,0.0,9.090909090909092 -635,8.0,10.0,0.0,4.807692307692308 -635,9.0,5.0,0.0,1.8561002591115965 -635,9.0,8.0,0.0,9.090909090909092 -635,9.0,9.0,11.677212499257603,-37.39840237809157 -635,9.0,16.0,-3.956039125715353,10.317447719844054 -635,9.0,20.0,-5.101853820159654,10.98071411292983 -635,9.0,21.0,-2.619319553382597,5.400770303329455 -635,10.0,8.0,0.0,4.807692307692308 -635,10.0,10.0,0.0,-4.807692307692308 -635,11.0,3.0,0.0,4.191255364806866 -635,11.0,11.0,6.573961583776156,-24.424167659260668 -635,11.0,12.0,0.0,7.142857142857143 -635,11.0,13.0,-1.5265676088395577,3.1734252729654173 -635,11.0,14.0,-3.0953961826564296,6.097275864326261 -635,11.0,15.0,-1.9519977922801688,4.104359379111847 -635,12.0,11.0,0.0,7.142857142857143 -635,12.0,12.0,0.0,-7.142857142857143 -635,13.0,11.0,-1.5265676088395577,3.1734252729654173 -635,13.0,13.0,4.01751987283902,-5.424299332335067 -635,13.0,14.0,-2.4909522639994623,2.250874059369649 -635,14.0,11.0,-3.0953961826564296,6.097275864326261 -635,14.0,13.0,-2.4909522639994623,2.250874059369649 -635,14.0,14.0,9.365498545964757,-16.01163373210796 -635,14.0,17.0,-1.8108011504072024,3.687418931630696 -635,14.0,22.0,-1.9683489489016612,3.976064876781356 -635,15.0,11.0,-1.9519977922801688,4.104359379111847 -635,15.0,15.0,3.271064728633931,-8.94513365126506 -635,15.0,16.0,-1.3190669363537617,4.8407742721532125 -635,16.0,9.0,-3.956039125715353,10.317447719844054 -635,16.0,15.0,-1.3190669363537617,4.8407742721532125 -635,16.0,16.0,5.275106062069114,-15.158221991997266 -635,17.0,14.0,-1.8108011504072024,3.687418931630696 -635,17.0,17.0,4.886487584415919,-9.906177730909668 -635,17.0,18.0,-3.0756864340087167,6.218758799278971 -635,18.0,17.0,-3.0756864340087167,6.218758799278971 -635,18.0,18.0,8.958039375185187,-17.98346468163191 -635,18.0,19.0,-5.88235294117647,11.76470588235294 -635,19.0,18.0,-5.88235294117647,11.76470588235294 -635,19.0,19.0,5.88235294117647,-11.76470588235294 -635,20.0,9.0,-5.101853820159654,10.98071411292983 -635,20.0,20.0,21.876495189895888,-45.10843276170355 -635,20.0,21.0,-16.774641369736234,34.127718648773715 -635,21.0,9.0,-2.619319553382597,5.400770303329455 -635,21.0,20.0,-16.774641369736234,34.127718648773715 -635,21.0,21.0,21.93449907537439,-43.48289181517921 -635,21.0,23.0,-2.5405381522555563,3.95440286307604 -635,22.0,14.0,-1.9683489489016612,3.976064876781356 -635,22.0,22.0,3.429754555384988,-6.965303617315433 -635,22.0,23.0,-1.4614056064833263,2.989238740534077 -635,23.0,21.0,-2.5405381522555563,3.95440286307604 -635,23.0,22.0,-1.4614056064833263,2.989238740534077 -635,23.0,23.0,5.311836702613133,-9.188263657315172 -635,23.0,24.0,-1.3098929438742493,2.287622053705056 -635,24.0,23.0,-1.3098929438742493,2.287622053705056 -635,24.0,24.0,4.495715080321987,-7.864978761969621 -635,24.0,25.0,-1.2165301194494855,1.8171440463475024 -635,24.0,26.0,-1.9692920169982515,3.760212661917064 -635,25.0,24.0,-1.2165301194494855,1.8171440463475024 -635,25.0,25.0,1.2165301194494855,-1.8171440463475024 -635,26.0,24.0,-1.9692920169982515,3.760212661917064 -635,26.0,26.0,3.652281470778589,-9.46044252232512 -635,26.0,27.0,0.0,2.608731947574922 -635,26.0,28.0,-0.99553355095268,1.881005840357816 -635,26.0,29.0,-0.6874559028276572,1.293971494797717 -635,27.0,5.0,-4.362844058012917,15.463571542897856 -635,27.0,7.0,-1.4439790613954469,4.540814658476248 -635,27.0,26.0,0.0,2.608731947574922 -635,27.0,27.0,5.806823119408364,-22.67145722159613 -635,28.0,26.0,-0.99553355095268,1.881005840357816 -635,28.0,28.0,1.9075867579849564,-3.604364401207048 -635,28.0,29.0,-0.9120532070322764,1.7233585608492326 -635,29.0,26.0,-0.6874559028276572,1.293971494797717 -635,29.0,28.0,-0.9120532070322764,1.7233585608492326 -635,29.0,29.0,1.5995091098599337,-3.0173300556469496 -636,0.0,0.0,6.765516048652632,-21.23160167089863 -636,0.0,1.0,-5.224646179885656,15.646726840803398 -636,0.0,2.0,-1.5408698687669766,5.631674830095234 -636,1.0,0.0,-5.224646179885656,15.646726840803398 -636,1.0,1.0,8.61632137735015,-25.897083564394716 -636,1.0,3.0,-1.7055303166990268,5.1973792282565086 -636,1.0,5.0,-1.6861448807654689,5.116477495334806 -636,2.0,0.0,-1.5408698687669766,5.631674830095234 -636,2.0,2.0,9.736318911079088,-29.13794745915803 -636,2.0,3.0,-8.19544904231211,23.5308726290628 -636,3.0,1.0,-1.7055303166990268,5.1973792282565086 -636,3.0,2.0,-8.19544904231211,23.5308726290628 -636,3.0,3.0,16.314103089185693,-55.509410535254254 -636,3.0,5.0,-6.413123730174556,22.31120356548123 -636,3.0,11.0,0.0,4.191255364806866 -636,4.0,4.0,2.954020035961983,-7.439067916773697 -636,4.0,6.0,-2.954020035961983,7.449267916773697 -636,5.0,1.0,-1.6861448807654689,5.116477495334806 -636,5.0,3.0,-6.413123730174556,22.31120356548123 -636,5.0,5.0,22.341631269034565,-82.8291478657789 -636,5.0,6.0,-3.590210423980992,11.02611441072814 -636,5.0,7.0,-6.289308176100628,22.0125786163522 -636,5.0,8.0,0.0,4.915840805411357 -636,5.0,9.0,0.0,1.8561002591115965 -636,5.0,27.0,-4.362844058012917,15.463571542897856 -636,6.0,4.0,-2.954020035961983,7.449267916773697 -636,6.0,5.0,-3.590210423980992,11.02611441072814 -636,6.0,6.0,6.544230459942975,-18.45668232750184 -636,7.0,5.0,-6.289308176100628,22.0125786163522 -636,7.0,7.0,7.733287237496075,-26.527493274828448 -636,7.0,27.0,-1.4439790613954469,4.540814658476248 -636,8.0,5.0,0.0,4.915840805411357 -636,8.0,8.0,0.0,-18.706293706293707 -636,8.0,9.0,0.0,9.090909090909092 -636,8.0,10.0,0.0,4.807692307692308 -636,9.0,5.0,0.0,1.8561002591115965 -636,9.0,8.0,0.0,9.090909090909092 -636,9.0,9.0,13.462042814524237,-41.3837606675224 -636,9.0,16.0,-3.956039125715353,10.317447719844054 -636,9.0,19.0,-1.7848303152666305,3.98535828943083 -636,9.0,20.0,-5.101853820159654,10.98071411292983 -636,9.0,21.0,-2.619319553382597,5.400770303329455 -636,10.0,8.0,0.0,4.807692307692308 -636,10.0,10.0,0.0,-4.807692307692308 -636,11.0,3.0,0.0,4.191255364806866 -636,11.0,11.0,6.573961583776156,-24.424167659260668 -636,11.0,12.0,0.0,7.142857142857143 -636,11.0,13.0,-1.5265676088395577,3.1734252729654173 -636,11.0,14.0,-3.0953961826564296,6.097275864326261 -636,11.0,15.0,-1.9519977922801688,4.104359379111847 -636,12.0,11.0,0.0,7.142857142857143 -636,12.0,12.0,0.0,-7.142857142857143 -636,13.0,11.0,-1.5265676088395577,3.1734252729654173 -636,13.0,13.0,4.01751987283902,-5.424299332335067 -636,13.0,14.0,-2.4909522639994623,2.250874059369649 -636,14.0,11.0,-3.0953961826564296,6.097275864326261 -636,14.0,13.0,-2.4909522639994623,2.250874059369649 -636,14.0,14.0,9.365498545964757,-16.01163373210796 -636,14.0,17.0,-1.8108011504072024,3.687418931630696 -636,14.0,22.0,-1.9683489489016612,3.976064876781356 -636,15.0,11.0,-1.9519977922801688,4.104359379111847 -636,15.0,15.0,3.271064728633931,-8.94513365126506 -636,15.0,16.0,-1.3190669363537617,4.8407742721532125 -636,16.0,9.0,-3.956039125715353,10.317447719844054 -636,16.0,15.0,-1.3190669363537617,4.8407742721532125 -636,16.0,16.0,5.275106062069114,-15.158221991997266 -636,17.0,14.0,-1.8108011504072024,3.687418931630696 -636,17.0,17.0,4.886487584415919,-9.906177730909668 -636,17.0,18.0,-3.0756864340087167,6.218758799278971 -636,18.0,17.0,-3.0756864340087167,6.218758799278971 -636,18.0,18.0,8.958039375185187,-17.98346468163191 -636,18.0,19.0,-5.88235294117647,11.76470588235294 -636,19.0,9.0,-1.7848303152666305,3.98535828943083 -636,19.0,18.0,-5.88235294117647,11.76470588235294 -636,19.0,19.0,7.6671832564431,-15.75006417178377 -636,20.0,9.0,-5.101853820159654,10.98071411292983 -636,20.0,20.0,21.876495189895888,-45.10843276170355 -636,20.0,21.0,-16.774641369736234,34.127718648773715 -636,21.0,9.0,-2.619319553382597,5.400770303329455 -636,21.0,20.0,-16.774641369736234,34.127718648773715 -636,21.0,21.0,19.393960923118836,-39.52848895210317 -636,22.0,14.0,-1.9683489489016612,3.976064876781356 -636,22.0,22.0,3.429754555384988,-6.965303617315433 -636,22.0,23.0,-1.4614056064833263,2.989238740534077 -636,23.0,22.0,-1.4614056064833263,2.989238740534077 -636,23.0,23.0,2.771298550357576,-5.233860794239132 -636,23.0,24.0,-1.3098929438742493,2.287622053705056 -636,24.0,23.0,-1.3098929438742493,2.287622053705056 -636,24.0,24.0,4.495715080321987,-7.864978761969621 -636,24.0,25.0,-1.2165301194494855,1.8171440463475024 -636,24.0,26.0,-1.9692920169982515,3.760212661917064 -636,25.0,24.0,-1.2165301194494855,1.8171440463475024 -636,25.0,25.0,1.2165301194494855,-1.8171440463475024 -636,26.0,24.0,-1.9692920169982515,3.760212661917064 -636,26.0,26.0,3.652281470778589,-9.46044252232512 -636,26.0,27.0,0.0,2.608731947574922 -636,26.0,28.0,-0.99553355095268,1.881005840357816 -636,26.0,29.0,-0.6874559028276572,1.293971494797717 -636,27.0,5.0,-4.362844058012917,15.463571542897856 -636,27.0,7.0,-1.4439790613954469,4.540814658476248 -636,27.0,26.0,0.0,2.608731947574922 -636,27.0,27.0,5.806823119408364,-22.67145722159613 -636,28.0,26.0,-0.99553355095268,1.881005840357816 -636,28.0,28.0,1.9075867579849564,-3.604364401207048 -636,28.0,29.0,-0.9120532070322764,1.7233585608492326 -636,29.0,26.0,-0.6874559028276572,1.293971494797717 -636,29.0,28.0,-0.9120532070322764,1.7233585608492326 -636,29.0,29.0,1.5995091098599337,-3.0173300556469496 -637,0.0,0.0,6.765516048652632,-21.23160167089863 -637,0.0,1.0,-5.224646179885656,15.646726840803398 -637,0.0,2.0,-1.5408698687669766,5.631674830095234 -637,1.0,0.0,-5.224646179885656,15.646726840803398 -637,1.0,1.0,9.75228216552403,-30.648662892676068 -637,1.0,3.0,-1.7055303166990268,5.1973792282565086 -637,1.0,4.0,-1.1359607881738778,4.772479328281356 -637,1.0,5.0,-1.6861448807654689,5.116477495334806 -637,2.0,0.0,-1.5408698687669766,5.631674830095234 -637,2.0,2.0,9.736318911079088,-29.13794745915803 -637,2.0,3.0,-8.19544904231211,23.5308726290628 -637,3.0,1.0,-1.7055303166990268,5.1973792282565086 -637,3.0,2.0,-8.19544904231211,23.5308726290628 -637,3.0,3.0,16.314103089185693,-55.509410535254254 -637,3.0,5.0,-6.413123730174556,22.31120356548123 -637,3.0,11.0,0.0,4.191255364806866 -637,4.0,1.0,-1.1359607881738778,4.772479328281356 -637,4.0,4.0,4.089980824135861,-12.190647245055052 -637,4.0,6.0,-2.954020035961983,7.449267916773697 -637,5.0,1.0,-1.6861448807654689,5.116477495334806 -637,5.0,3.0,-6.413123730174556,22.31120356548123 -637,5.0,5.0,22.341631269034565,-82.8291478657789 -637,5.0,6.0,-3.590210423980992,11.02611441072814 -637,5.0,7.0,-6.289308176100628,22.0125786163522 -637,5.0,8.0,0.0,4.915840805411357 -637,5.0,9.0,0.0,1.8561002591115965 -637,5.0,27.0,-4.362844058012917,15.463571542897856 -637,6.0,4.0,-2.954020035961983,7.449267916773697 -637,6.0,5.0,-3.590210423980992,11.02611441072814 -637,6.0,6.0,6.544230459942975,-18.45668232750184 -637,7.0,5.0,-6.289308176100628,22.0125786163522 -637,7.0,7.0,7.733287237496075,-26.527493274828448 -637,7.0,27.0,-1.4439790613954469,4.540814658476248 -637,8.0,5.0,0.0,4.915840805411357 -637,8.0,8.0,0.0,-18.706293706293707 -637,8.0,9.0,0.0,9.090909090909092 -637,8.0,10.0,0.0,4.807692307692308 -637,9.0,5.0,0.0,1.8561002591115965 -637,9.0,8.0,0.0,9.090909090909092 -637,9.0,9.0,13.462042814524237,-41.3837606675224 -637,9.0,16.0,-3.956039125715353,10.317447719844054 -637,9.0,19.0,-1.7848303152666305,3.98535828943083 -637,9.0,20.0,-5.101853820159654,10.98071411292983 -637,9.0,21.0,-2.619319553382597,5.400770303329455 -637,10.0,8.0,0.0,4.807692307692308 -637,10.0,10.0,0.0,-4.807692307692308 -637,11.0,3.0,0.0,4.191255364806866 -637,11.0,11.0,6.573961583776156,-24.424167659260668 -637,11.0,12.0,0.0,7.142857142857143 -637,11.0,13.0,-1.5265676088395577,3.1734252729654173 -637,11.0,14.0,-3.0953961826564296,6.097275864326261 -637,11.0,15.0,-1.9519977922801688,4.104359379111847 -637,12.0,11.0,0.0,7.142857142857143 -637,12.0,12.0,0.0,-7.142857142857143 -637,13.0,11.0,-1.5265676088395577,3.1734252729654173 -637,13.0,13.0,4.01751987283902,-5.424299332335067 -637,13.0,14.0,-2.4909522639994623,2.250874059369649 -637,14.0,11.0,-3.0953961826564296,6.097275864326261 -637,14.0,13.0,-2.4909522639994623,2.250874059369649 -637,14.0,14.0,9.365498545964757,-16.01163373210796 -637,14.0,17.0,-1.8108011504072024,3.687418931630696 -637,14.0,22.0,-1.9683489489016612,3.976064876781356 -637,15.0,11.0,-1.9519977922801688,4.104359379111847 -637,15.0,15.0,3.271064728633931,-8.94513365126506 -637,15.0,16.0,-1.3190669363537617,4.8407742721532125 -637,16.0,9.0,-3.956039125715353,10.317447719844054 -637,16.0,15.0,-1.3190669363537617,4.8407742721532125 -637,16.0,16.0,5.275106062069114,-15.158221991997266 -637,17.0,14.0,-1.8108011504072024,3.687418931630696 -637,17.0,17.0,4.886487584415919,-9.906177730909668 -637,17.0,18.0,-3.0756864340087167,6.218758799278971 -637,18.0,17.0,-3.0756864340087167,6.218758799278971 -637,18.0,18.0,8.958039375185187,-17.98346468163191 -637,18.0,19.0,-5.88235294117647,11.76470588235294 -637,19.0,9.0,-1.7848303152666305,3.98535828943083 -637,19.0,18.0,-5.88235294117647,11.76470588235294 -637,19.0,19.0,7.6671832564431,-15.75006417178377 -637,20.0,9.0,-5.101853820159654,10.98071411292983 -637,20.0,20.0,21.876495189895888,-45.10843276170355 -637,20.0,21.0,-16.774641369736234,34.127718648773715 -637,21.0,9.0,-2.619319553382597,5.400770303329455 -637,21.0,20.0,-16.774641369736234,34.127718648773715 -637,21.0,21.0,21.93449907537439,-43.48289181517921 -637,21.0,23.0,-2.5405381522555563,3.95440286307604 -637,22.0,14.0,-1.9683489489016612,3.976064876781356 -637,22.0,22.0,3.429754555384988,-6.965303617315433 -637,22.0,23.0,-1.4614056064833263,2.989238740534077 -637,23.0,21.0,-2.5405381522555563,3.95440286307604 -637,23.0,22.0,-1.4614056064833263,2.989238740534077 -637,23.0,23.0,5.311836702613133,-9.188263657315172 -637,23.0,24.0,-1.3098929438742493,2.287622053705056 -637,24.0,23.0,-1.3098929438742493,2.287622053705056 -637,24.0,24.0,4.495715080321987,-7.864978761969621 -637,24.0,25.0,-1.2165301194494855,1.8171440463475024 -637,24.0,26.0,-1.9692920169982515,3.760212661917064 -637,25.0,24.0,-1.2165301194494855,1.8171440463475024 -637,25.0,25.0,1.2165301194494855,-1.8171440463475024 -637,26.0,24.0,-1.9692920169982515,3.760212661917064 -637,26.0,26.0,2.9648255679509314,-8.166471027527404 -637,26.0,27.0,0.0,2.608731947574922 -637,26.0,28.0,-0.99553355095268,1.881005840357816 -637,27.0,5.0,-4.362844058012917,15.463571542897856 -637,27.0,7.0,-1.4439790613954469,4.540814658476248 -637,27.0,26.0,0.0,2.608731947574922 -637,27.0,27.0,5.806823119408364,-22.67145722159613 -637,28.0,26.0,-0.99553355095268,1.881005840357816 -637,28.0,28.0,1.9075867579849564,-3.604364401207048 -637,28.0,29.0,-0.9120532070322764,1.7233585608492326 -637,29.0,28.0,-0.9120532070322764,1.7233585608492326 -637,29.0,29.0,0.9120532070322764,-1.7233585608492326 -638,0.0,0.0,6.765516048652632,-21.23160167089863 -638,0.0,1.0,-5.224646179885656,15.646726840803398 -638,0.0,2.0,-1.5408698687669766,5.631674830095234 -638,1.0,0.0,-5.224646179885656,15.646726840803398 -638,1.0,1.0,9.75228216552403,-30.648662892676068 -638,1.0,3.0,-1.7055303166990268,5.1973792282565086 -638,1.0,4.0,-1.1359607881738778,4.772479328281356 -638,1.0,5.0,-1.6861448807654689,5.116477495334806 -638,2.0,0.0,-1.5408698687669766,5.631674830095234 -638,2.0,2.0,9.736318911079088,-29.13794745915803 -638,2.0,3.0,-8.19544904231211,23.5308726290628 -638,3.0,1.0,-1.7055303166990268,5.1973792282565086 -638,3.0,2.0,-8.19544904231211,23.5308726290628 -638,3.0,3.0,16.314103089185693,-55.509410535254254 -638,3.0,5.0,-6.413123730174556,22.31120356548123 -638,3.0,11.0,0.0,4.191255364806866 -638,4.0,1.0,-1.1359607881738778,4.772479328281356 -638,4.0,4.0,4.089980824135861,-12.190647245055052 -638,4.0,6.0,-2.954020035961983,7.449267916773697 -638,5.0,1.0,-1.6861448807654689,5.116477495334806 -638,5.0,3.0,-6.413123730174556,22.31120356548123 -638,5.0,5.0,22.341631269034565,-82.8291478657789 -638,5.0,6.0,-3.590210423980992,11.02611441072814 -638,5.0,7.0,-6.289308176100628,22.0125786163522 -638,5.0,8.0,0.0,4.915840805411357 -638,5.0,9.0,0.0,1.8561002591115965 -638,5.0,27.0,-4.362844058012917,15.463571542897856 -638,6.0,4.0,-2.954020035961983,7.449267916773697 -638,6.0,5.0,-3.590210423980992,11.02611441072814 -638,6.0,6.0,6.544230459942975,-18.45668232750184 -638,7.0,5.0,-6.289308176100628,22.0125786163522 -638,7.0,7.0,7.733287237496075,-26.527493274828448 -638,7.0,27.0,-1.4439790613954469,4.540814658476248 -638,8.0,5.0,0.0,4.915840805411357 -638,8.0,8.0,0.0,-18.706293706293707 -638,8.0,9.0,0.0,9.090909090909092 -638,8.0,10.0,0.0,4.807692307692308 -638,9.0,5.0,0.0,1.8561002591115965 -638,9.0,8.0,0.0,9.090909090909092 -638,9.0,9.0,13.462042814524237,-41.3837606675224 -638,9.0,16.0,-3.956039125715353,10.317447719844054 -638,9.0,19.0,-1.7848303152666305,3.98535828943083 -638,9.0,20.0,-5.101853820159654,10.98071411292983 -638,9.0,21.0,-2.619319553382597,5.400770303329455 -638,10.0,8.0,0.0,4.807692307692308 -638,10.0,10.0,0.0,-4.807692307692308 -638,11.0,3.0,0.0,4.191255364806866 -638,11.0,11.0,6.573961583776156,-24.424167659260668 -638,11.0,12.0,0.0,7.142857142857143 -638,11.0,13.0,-1.5265676088395577,3.1734252729654173 -638,11.0,14.0,-3.0953961826564296,6.097275864326261 -638,11.0,15.0,-1.9519977922801688,4.104359379111847 -638,12.0,11.0,0.0,7.142857142857143 -638,12.0,12.0,0.0,-7.142857142857143 -638,13.0,11.0,-1.5265676088395577,3.1734252729654173 -638,13.0,13.0,4.01751987283902,-5.424299332335067 -638,13.0,14.0,-2.4909522639994623,2.250874059369649 -638,14.0,11.0,-3.0953961826564296,6.097275864326261 -638,14.0,13.0,-2.4909522639994623,2.250874059369649 -638,14.0,14.0,9.365498545964757,-16.01163373210796 -638,14.0,17.0,-1.8108011504072024,3.687418931630696 -638,14.0,22.0,-1.9683489489016612,3.976064876781356 -638,15.0,11.0,-1.9519977922801688,4.104359379111847 -638,15.0,15.0,3.271064728633931,-8.94513365126506 -638,15.0,16.0,-1.3190669363537617,4.8407742721532125 -638,16.0,9.0,-3.956039125715353,10.317447719844054 -638,16.0,15.0,-1.3190669363537617,4.8407742721532125 -638,16.0,16.0,5.275106062069114,-15.158221991997266 -638,17.0,14.0,-1.8108011504072024,3.687418931630696 -638,17.0,17.0,4.886487584415919,-9.906177730909668 -638,17.0,18.0,-3.0756864340087167,6.218758799278971 -638,18.0,17.0,-3.0756864340087167,6.218758799278971 -638,18.0,18.0,8.958039375185187,-17.98346468163191 -638,18.0,19.0,-5.88235294117647,11.76470588235294 -638,19.0,9.0,-1.7848303152666305,3.98535828943083 -638,19.0,18.0,-5.88235294117647,11.76470588235294 -638,19.0,19.0,7.6671832564431,-15.75006417178377 -638,20.0,9.0,-5.101853820159654,10.98071411292983 -638,20.0,20.0,21.876495189895888,-45.10843276170355 -638,20.0,21.0,-16.774641369736234,34.127718648773715 -638,21.0,9.0,-2.619319553382597,5.400770303329455 -638,21.0,20.0,-16.774641369736234,34.127718648773715 -638,21.0,21.0,21.93449907537439,-43.48289181517921 -638,21.0,23.0,-2.5405381522555563,3.95440286307604 -638,22.0,14.0,-1.9683489489016612,3.976064876781356 -638,22.0,22.0,3.429754555384988,-6.965303617315433 -638,22.0,23.0,-1.4614056064833263,2.989238740534077 -638,23.0,21.0,-2.5405381522555563,3.95440286307604 -638,23.0,22.0,-1.4614056064833263,2.989238740534077 -638,23.0,23.0,5.311836702613133,-9.188263657315172 -638,23.0,24.0,-1.3098929438742493,2.287622053705056 -638,24.0,23.0,-1.3098929438742493,2.287622053705056 -638,24.0,24.0,4.495715080321987,-7.864978761969621 -638,24.0,25.0,-1.2165301194494855,1.8171440463475024 -638,24.0,26.0,-1.9692920169982515,3.760212661917064 -638,25.0,24.0,-1.2165301194494855,1.8171440463475024 -638,25.0,25.0,1.2165301194494855,-1.8171440463475024 -638,26.0,24.0,-1.9692920169982515,3.760212661917064 -638,26.0,26.0,3.652281470778589,-9.46044252232512 -638,26.0,27.0,0.0,2.608731947574922 -638,26.0,28.0,-0.99553355095268,1.881005840357816 -638,26.0,29.0,-0.6874559028276572,1.293971494797717 -638,27.0,5.0,-4.362844058012917,15.463571542897856 -638,27.0,7.0,-1.4439790613954469,4.540814658476248 -638,27.0,26.0,0.0,2.608731947574922 -638,27.0,27.0,5.806823119408364,-22.67145722159613 -638,28.0,26.0,-0.99553355095268,1.881005840357816 -638,28.0,28.0,1.9075867579849564,-3.604364401207048 -638,28.0,29.0,-0.9120532070322764,1.7233585608492326 -638,29.0,26.0,-0.6874559028276572,1.293971494797717 -638,29.0,28.0,-0.9120532070322764,1.7233585608492326 -638,29.0,29.0,1.5995091098599337,-3.0173300556469496 -639,0.0,0.0,6.765516048652632,-21.23160167089863 -639,0.0,1.0,-5.224646179885656,15.646726840803398 -639,0.0,2.0,-1.5408698687669766,5.631674830095234 -639,1.0,0.0,-5.224646179885656,15.646726840803398 -639,1.0,1.0,9.75228216552403,-30.648662892676068 -639,1.0,3.0,-1.7055303166990268,5.1973792282565086 -639,1.0,4.0,-1.1359607881738778,4.772479328281356 -639,1.0,5.0,-1.6861448807654689,5.116477495334806 -639,2.0,0.0,-1.5408698687669766,5.631674830095234 -639,2.0,2.0,9.736318911079088,-29.13794745915803 -639,2.0,3.0,-8.19544904231211,23.5308726290628 -639,3.0,1.0,-1.7055303166990268,5.1973792282565086 -639,3.0,2.0,-8.19544904231211,23.5308726290628 -639,3.0,3.0,16.314103089185693,-55.509410535254254 -639,3.0,5.0,-6.413123730174556,22.31120356548123 -639,3.0,11.0,0.0,4.191255364806866 -639,4.0,1.0,-1.1359607881738778,4.772479328281356 -639,4.0,4.0,4.089980824135861,-12.190647245055052 -639,4.0,6.0,-2.954020035961983,7.449267916773697 -639,5.0,1.0,-1.6861448807654689,5.116477495334806 -639,5.0,3.0,-6.413123730174556,22.31120356548123 -639,5.0,5.0,22.341631269034565,-82.8291478657789 -639,5.0,6.0,-3.590210423980992,11.02611441072814 -639,5.0,7.0,-6.289308176100628,22.0125786163522 -639,5.0,8.0,0.0,4.915840805411357 -639,5.0,9.0,0.0,1.8561002591115965 -639,5.0,27.0,-4.362844058012917,15.463571542897856 -639,6.0,4.0,-2.954020035961983,7.449267916773697 -639,6.0,5.0,-3.590210423980992,11.02611441072814 -639,6.0,6.0,6.544230459942975,-18.45668232750184 -639,7.0,5.0,-6.289308176100628,22.0125786163522 -639,7.0,7.0,7.733287237496075,-26.527493274828448 -639,7.0,27.0,-1.4439790613954469,4.540814658476248 -639,8.0,5.0,0.0,4.915840805411357 -639,8.0,8.0,0.0,-18.706293706293707 -639,8.0,9.0,0.0,9.090909090909092 -639,8.0,10.0,0.0,4.807692307692308 -639,9.0,5.0,0.0,1.8561002591115965 -639,9.0,8.0,0.0,9.090909090909092 -639,9.0,9.0,8.36018899436458,-30.40304655459257 -639,9.0,16.0,-3.956039125715353,10.317447719844054 -639,9.0,19.0,-1.7848303152666305,3.98535828943083 -639,9.0,21.0,-2.619319553382597,5.400770303329455 -639,10.0,8.0,0.0,4.807692307692308 -639,10.0,10.0,0.0,-4.807692307692308 -639,11.0,3.0,0.0,4.191255364806866 -639,11.0,11.0,6.573961583776156,-24.424167659260668 -639,11.0,12.0,0.0,7.142857142857143 -639,11.0,13.0,-1.5265676088395577,3.1734252729654173 -639,11.0,14.0,-3.0953961826564296,6.097275864326261 -639,11.0,15.0,-1.9519977922801688,4.104359379111847 -639,12.0,11.0,0.0,7.142857142857143 -639,12.0,12.0,0.0,-7.142857142857143 -639,13.0,11.0,-1.5265676088395577,3.1734252729654173 -639,13.0,13.0,4.01751987283902,-5.424299332335067 -639,13.0,14.0,-2.4909522639994623,2.250874059369649 -639,14.0,11.0,-3.0953961826564296,6.097275864326261 -639,14.0,13.0,-2.4909522639994623,2.250874059369649 -639,14.0,14.0,9.365498545964757,-16.01163373210796 -639,14.0,17.0,-1.8108011504072024,3.687418931630696 -639,14.0,22.0,-1.9683489489016612,3.976064876781356 -639,15.0,11.0,-1.9519977922801688,4.104359379111847 -639,15.0,15.0,3.271064728633931,-8.94513365126506 -639,15.0,16.0,-1.3190669363537617,4.8407742721532125 -639,16.0,9.0,-3.956039125715353,10.317447719844054 -639,16.0,15.0,-1.3190669363537617,4.8407742721532125 -639,16.0,16.0,5.275106062069114,-15.158221991997266 -639,17.0,14.0,-1.8108011504072024,3.687418931630696 -639,17.0,17.0,4.886487584415919,-9.906177730909668 -639,17.0,18.0,-3.0756864340087167,6.218758799278971 -639,18.0,17.0,-3.0756864340087167,6.218758799278971 -639,18.0,18.0,8.958039375185187,-17.98346468163191 -639,18.0,19.0,-5.88235294117647,11.76470588235294 -639,19.0,9.0,-1.7848303152666305,3.98535828943083 -639,19.0,18.0,-5.88235294117647,11.76470588235294 -639,19.0,19.0,7.6671832564431,-15.75006417178377 -639,20.0,20.0,16.774641369736234,-34.127718648773715 -639,20.0,21.0,-16.774641369736234,34.127718648773715 -639,21.0,9.0,-2.619319553382597,5.400770303329455 -639,21.0,20.0,-16.774641369736234,34.127718648773715 -639,21.0,21.0,19.393960923118836,-39.52848895210317 -639,22.0,14.0,-1.9683489489016612,3.976064876781356 -639,22.0,22.0,3.429754555384988,-6.965303617315433 -639,22.0,23.0,-1.4614056064833263,2.989238740534077 -639,23.0,22.0,-1.4614056064833263,2.989238740534077 -639,23.0,23.0,2.771298550357576,-5.233860794239132 -639,23.0,24.0,-1.3098929438742493,2.287622053705056 -639,24.0,23.0,-1.3098929438742493,2.287622053705056 -639,24.0,24.0,4.495715080321987,-7.864978761969621 -639,24.0,25.0,-1.2165301194494855,1.8171440463475024 -639,24.0,26.0,-1.9692920169982515,3.760212661917064 -639,25.0,24.0,-1.2165301194494855,1.8171440463475024 -639,25.0,25.0,1.2165301194494855,-1.8171440463475024 -639,26.0,24.0,-1.9692920169982515,3.760212661917064 -639,26.0,26.0,3.652281470778589,-9.46044252232512 -639,26.0,27.0,0.0,2.608731947574922 -639,26.0,28.0,-0.99553355095268,1.881005840357816 -639,26.0,29.0,-0.6874559028276572,1.293971494797717 -639,27.0,5.0,-4.362844058012917,15.463571542897856 -639,27.0,7.0,-1.4439790613954469,4.540814658476248 -639,27.0,26.0,0.0,2.608731947574922 -639,27.0,27.0,5.806823119408364,-22.67145722159613 -639,28.0,26.0,-0.99553355095268,1.881005840357816 -639,28.0,28.0,1.9075867579849564,-3.604364401207048 -639,28.0,29.0,-0.9120532070322764,1.7233585608492326 -639,29.0,26.0,-0.6874559028276572,1.293971494797717 -639,29.0,28.0,-0.9120532070322764,1.7233585608492326 -639,29.0,29.0,1.5995091098599337,-3.0173300556469496 -640,0.0,0.0,6.765516048652632,-21.23160167089863 -640,0.0,1.0,-5.224646179885656,15.646726840803398 -640,0.0,2.0,-1.5408698687669766,5.631674830095234 -640,1.0,0.0,-5.224646179885656,15.646726840803398 -640,1.0,1.0,9.75228216552403,-30.648662892676068 -640,1.0,3.0,-1.7055303166990268,5.1973792282565086 -640,1.0,4.0,-1.1359607881738778,4.772479328281356 -640,1.0,5.0,-1.6861448807654689,5.116477495334806 -640,2.0,0.0,-1.5408698687669766,5.631674830095234 -640,2.0,2.0,9.736318911079088,-29.13794745915803 -640,2.0,3.0,-8.19544904231211,23.5308726290628 -640,3.0,1.0,-1.7055303166990268,5.1973792282565086 -640,3.0,2.0,-8.19544904231211,23.5308726290628 -640,3.0,3.0,16.314103089185693,-55.509410535254254 -640,3.0,5.0,-6.413123730174556,22.31120356548123 -640,3.0,11.0,0.0,4.191255364806866 -640,4.0,1.0,-1.1359607881738778,4.772479328281356 -640,4.0,4.0,4.089980824135861,-12.190647245055052 -640,4.0,6.0,-2.954020035961983,7.449267916773697 -640,5.0,1.0,-1.6861448807654689,5.116477495334806 -640,5.0,3.0,-6.413123730174556,22.31120356548123 -640,5.0,5.0,22.341631269034565,-82.8291478657789 -640,5.0,6.0,-3.590210423980992,11.02611441072814 -640,5.0,7.0,-6.289308176100628,22.0125786163522 -640,5.0,8.0,0.0,4.915840805411357 -640,5.0,9.0,0.0,1.8561002591115965 -640,5.0,27.0,-4.362844058012917,15.463571542897856 -640,6.0,4.0,-2.954020035961983,7.449267916773697 -640,6.0,5.0,-3.590210423980992,11.02611441072814 -640,6.0,6.0,6.544230459942975,-18.45668232750184 -640,7.0,5.0,-6.289308176100628,22.0125786163522 -640,7.0,7.0,7.733287237496075,-26.527493274828448 -640,7.0,27.0,-1.4439790613954469,4.540814658476248 -640,8.0,5.0,0.0,4.915840805411357 -640,8.0,8.0,0.0,-18.706293706293707 -640,8.0,9.0,0.0,9.090909090909092 -640,8.0,10.0,0.0,4.807692307692308 -640,9.0,5.0,0.0,1.8561002591115965 -640,9.0,8.0,0.0,9.090909090909092 -640,9.0,9.0,13.462042814524237,-41.3837606675224 -640,9.0,16.0,-3.956039125715353,10.317447719844054 -640,9.0,19.0,-1.7848303152666305,3.98535828943083 -640,9.0,20.0,-5.101853820159654,10.98071411292983 -640,9.0,21.0,-2.619319553382597,5.400770303329455 -640,10.0,8.0,0.0,4.807692307692308 -640,10.0,10.0,0.0,-4.807692307692308 -640,11.0,3.0,0.0,4.191255364806866 -640,11.0,11.0,6.573961583776156,-24.424167659260668 -640,11.0,12.0,0.0,7.142857142857143 -640,11.0,13.0,-1.5265676088395577,3.1734252729654173 -640,11.0,14.0,-3.0953961826564296,6.097275864326261 -640,11.0,15.0,-1.9519977922801688,4.104359379111847 -640,12.0,11.0,0.0,7.142857142857143 -640,12.0,12.0,0.0,-7.142857142857143 -640,13.0,11.0,-1.5265676088395577,3.1734252729654173 -640,13.0,13.0,4.01751987283902,-5.424299332335067 -640,13.0,14.0,-2.4909522639994623,2.250874059369649 -640,14.0,11.0,-3.0953961826564296,6.097275864326261 -640,14.0,13.0,-2.4909522639994623,2.250874059369649 -640,14.0,14.0,9.365498545964757,-16.01163373210796 -640,14.0,17.0,-1.8108011504072024,3.687418931630696 -640,14.0,22.0,-1.9683489489016612,3.976064876781356 -640,15.0,11.0,-1.9519977922801688,4.104359379111847 -640,15.0,15.0,3.271064728633931,-8.94513365126506 -640,15.0,16.0,-1.3190669363537617,4.8407742721532125 -640,16.0,9.0,-3.956039125715353,10.317447719844054 -640,16.0,15.0,-1.3190669363537617,4.8407742721532125 -640,16.0,16.0,5.275106062069114,-15.158221991997266 -640,17.0,14.0,-1.8108011504072024,3.687418931630696 -640,17.0,17.0,4.886487584415919,-9.906177730909668 -640,17.0,18.0,-3.0756864340087167,6.218758799278971 -640,18.0,17.0,-3.0756864340087167,6.218758799278971 -640,18.0,18.0,8.958039375185187,-17.98346468163191 -640,18.0,19.0,-5.88235294117647,11.76470588235294 -640,19.0,9.0,-1.7848303152666305,3.98535828943083 -640,19.0,18.0,-5.88235294117647,11.76470588235294 -640,19.0,19.0,7.6671832564431,-15.75006417178377 -640,20.0,9.0,-5.101853820159654,10.98071411292983 -640,20.0,20.0,21.876495189895888,-45.10843276170355 -640,20.0,21.0,-16.774641369736234,34.127718648773715 -640,21.0,9.0,-2.619319553382597,5.400770303329455 -640,21.0,20.0,-16.774641369736234,34.127718648773715 -640,21.0,21.0,19.393960923118836,-39.52848895210317 -640,22.0,14.0,-1.9683489489016612,3.976064876781356 -640,22.0,22.0,3.429754555384988,-6.965303617315433 -640,22.0,23.0,-1.4614056064833263,2.989238740534077 -640,23.0,22.0,-1.4614056064833263,2.989238740534077 -640,23.0,23.0,2.771298550357576,-5.233860794239132 -640,23.0,24.0,-1.3098929438742493,2.287622053705056 -640,24.0,23.0,-1.3098929438742493,2.287622053705056 -640,24.0,24.0,4.495715080321987,-7.864978761969621 -640,24.0,25.0,-1.2165301194494855,1.8171440463475024 -640,24.0,26.0,-1.9692920169982515,3.760212661917064 -640,25.0,24.0,-1.2165301194494855,1.8171440463475024 -640,25.0,25.0,1.2165301194494855,-1.8171440463475024 -640,26.0,24.0,-1.9692920169982515,3.760212661917064 -640,26.0,26.0,3.652281470778589,-9.46044252232512 -640,26.0,27.0,0.0,2.608731947574922 -640,26.0,28.0,-0.99553355095268,1.881005840357816 -640,26.0,29.0,-0.6874559028276572,1.293971494797717 -640,27.0,5.0,-4.362844058012917,15.463571542897856 -640,27.0,7.0,-1.4439790613954469,4.540814658476248 -640,27.0,26.0,0.0,2.608731947574922 -640,27.0,27.0,5.806823119408364,-22.67145722159613 -640,28.0,26.0,-0.99553355095268,1.881005840357816 -640,28.0,28.0,1.9075867579849564,-3.604364401207048 -640,28.0,29.0,-0.9120532070322764,1.7233585608492326 -640,29.0,26.0,-0.6874559028276572,1.293971494797717 -640,29.0,28.0,-0.9120532070322764,1.7233585608492326 -640,29.0,29.0,1.5995091098599337,-3.0173300556469496 -641,0.0,0.0,6.765516048652632,-21.23160167089863 -641,0.0,1.0,-5.224646179885656,15.646726840803398 -641,0.0,2.0,-1.5408698687669766,5.631674830095234 -641,1.0,0.0,-5.224646179885656,15.646726840803398 -641,1.0,1.0,9.75228216552403,-30.648662892676068 -641,1.0,3.0,-1.7055303166990268,5.1973792282565086 -641,1.0,4.0,-1.1359607881738778,4.772479328281356 -641,1.0,5.0,-1.6861448807654689,5.116477495334806 -641,2.0,0.0,-1.5408698687669766,5.631674830095234 -641,2.0,2.0,9.736318911079088,-29.13794745915803 -641,2.0,3.0,-8.19544904231211,23.5308726290628 -641,3.0,1.0,-1.7055303166990268,5.1973792282565086 -641,3.0,2.0,-8.19544904231211,23.5308726290628 -641,3.0,3.0,9.900979359011137,-33.202706969773025 -641,3.0,11.0,0.0,4.191255364806866 -641,4.0,1.0,-1.1359607881738778,4.772479328281356 -641,4.0,4.0,4.089980824135861,-12.190647245055052 -641,4.0,6.0,-2.954020035961983,7.449267916773697 -641,5.0,1.0,-1.6861448807654689,5.116477495334806 -641,5.0,5.0,9.639199362759378,-36.598885540383456 -641,5.0,6.0,-3.590210423980992,11.02611441072814 -641,5.0,8.0,0.0,4.915840805411357 -641,5.0,27.0,-4.362844058012917,15.463571542897856 -641,6.0,4.0,-2.954020035961983,7.449267916773697 -641,6.0,5.0,-3.590210423980992,11.02611441072814 -641,6.0,6.0,6.544230459942975,-18.45668232750184 -641,7.0,7.0,1.4439790613954469,-4.519414658476248 -641,7.0,27.0,-1.4439790613954469,4.540814658476248 -641,8.0,5.0,0.0,4.915840805411357 -641,8.0,8.0,0.0,-18.706293706293707 -641,8.0,9.0,0.0,9.090909090909092 -641,8.0,10.0,0.0,4.807692307692308 -641,9.0,8.0,0.0,9.090909090909092 -641,9.0,9.0,13.462042814524237,-39.58519951644326 -641,9.0,16.0,-3.956039125715353,10.317447719844054 -641,9.0,19.0,-1.7848303152666305,3.98535828943083 -641,9.0,20.0,-5.101853820159654,10.98071411292983 -641,9.0,21.0,-2.619319553382597,5.400770303329455 -641,10.0,8.0,0.0,4.807692307692308 -641,10.0,10.0,0.0,-4.807692307692308 -641,11.0,3.0,0.0,4.191255364806866 -641,11.0,11.0,6.573961583776156,-24.424167659260668 -641,11.0,12.0,0.0,7.142857142857143 -641,11.0,13.0,-1.5265676088395577,3.1734252729654173 -641,11.0,14.0,-3.0953961826564296,6.097275864326261 -641,11.0,15.0,-1.9519977922801688,4.104359379111847 -641,12.0,11.0,0.0,7.142857142857143 -641,12.0,12.0,0.0,-7.142857142857143 -641,13.0,11.0,-1.5265676088395577,3.1734252729654173 -641,13.0,13.0,4.01751987283902,-5.424299332335067 -641,13.0,14.0,-2.4909522639994623,2.250874059369649 -641,14.0,11.0,-3.0953961826564296,6.097275864326261 -641,14.0,13.0,-2.4909522639994623,2.250874059369649 -641,14.0,14.0,9.365498545964757,-16.01163373210796 -641,14.0,17.0,-1.8108011504072024,3.687418931630696 -641,14.0,22.0,-1.9683489489016612,3.976064876781356 -641,15.0,11.0,-1.9519977922801688,4.104359379111847 -641,15.0,15.0,3.271064728633931,-8.94513365126506 -641,15.0,16.0,-1.3190669363537617,4.8407742721532125 -641,16.0,9.0,-3.956039125715353,10.317447719844054 -641,16.0,15.0,-1.3190669363537617,4.8407742721532125 -641,16.0,16.0,5.275106062069114,-15.158221991997266 -641,17.0,14.0,-1.8108011504072024,3.687418931630696 -641,17.0,17.0,4.886487584415919,-9.906177730909668 -641,17.0,18.0,-3.0756864340087167,6.218758799278971 -641,18.0,17.0,-3.0756864340087167,6.218758799278971 -641,18.0,18.0,8.958039375185187,-17.98346468163191 -641,18.0,19.0,-5.88235294117647,11.76470588235294 -641,19.0,9.0,-1.7848303152666305,3.98535828943083 -641,19.0,18.0,-5.88235294117647,11.76470588235294 -641,19.0,19.0,7.6671832564431,-15.75006417178377 -641,20.0,9.0,-5.101853820159654,10.98071411292983 -641,20.0,20.0,21.876495189895888,-45.10843276170355 -641,20.0,21.0,-16.774641369736234,34.127718648773715 -641,21.0,9.0,-2.619319553382597,5.400770303329455 -641,21.0,20.0,-16.774641369736234,34.127718648773715 -641,21.0,21.0,21.93449907537439,-43.48289181517921 -641,21.0,23.0,-2.5405381522555563,3.95440286307604 -641,22.0,14.0,-1.9683489489016612,3.976064876781356 -641,22.0,22.0,1.9683489489016612,-3.976064876781356 -641,23.0,21.0,-2.5405381522555563,3.95440286307604 -641,23.0,23.0,3.850431096129806,-6.199024916781094 -641,23.0,24.0,-1.3098929438742493,2.287622053705056 -641,24.0,23.0,-1.3098929438742493,2.287622053705056 -641,24.0,24.0,4.495715080321987,-7.864978761969621 -641,24.0,25.0,-1.2165301194494855,1.8171440463475024 -641,24.0,26.0,-1.9692920169982515,3.760212661917064 -641,25.0,24.0,-1.2165301194494855,1.8171440463475024 -641,25.0,25.0,1.2165301194494855,-1.8171440463475024 -641,26.0,24.0,-1.9692920169982515,3.760212661917064 -641,26.0,26.0,3.652281470778589,-9.46044252232512 -641,26.0,27.0,0.0,2.608731947574922 -641,26.0,28.0,-0.99553355095268,1.881005840357816 -641,26.0,29.0,-0.6874559028276572,1.293971494797717 -641,27.0,5.0,-4.362844058012917,15.463571542897856 -641,27.0,7.0,-1.4439790613954469,4.540814658476248 -641,27.0,26.0,0.0,2.608731947574922 -641,27.0,27.0,5.806823119408364,-22.67145722159613 -641,28.0,26.0,-0.99553355095268,1.881005840357816 -641,28.0,28.0,1.9075867579849564,-3.604364401207048 -641,28.0,29.0,-0.9120532070322764,1.7233585608492326 -641,29.0,26.0,-0.6874559028276572,1.293971494797717 -641,29.0,28.0,-0.9120532070322764,1.7233585608492326 -641,29.0,29.0,1.5995091098599337,-3.0173300556469496 -642,0.0,0.0,6.765516048652632,-21.23160167089863 -642,0.0,1.0,-5.224646179885656,15.646726840803398 -642,0.0,2.0,-1.5408698687669766,5.631674830095234 -642,1.0,0.0,-5.224646179885656,15.646726840803398 -642,1.0,1.0,9.75228216552403,-30.648662892676068 -642,1.0,3.0,-1.7055303166990268,5.1973792282565086 -642,1.0,4.0,-1.1359607881738778,4.772479328281356 -642,1.0,5.0,-1.6861448807654689,5.116477495334806 -642,2.0,0.0,-1.5408698687669766,5.631674830095234 -642,2.0,2.0,9.736318911079088,-29.13794745915803 -642,2.0,3.0,-8.19544904231211,23.5308726290628 -642,3.0,1.0,-1.7055303166990268,5.1973792282565086 -642,3.0,2.0,-8.19544904231211,23.5308726290628 -642,3.0,3.0,16.314103089185693,-55.509410535254254 -642,3.0,5.0,-6.413123730174556,22.31120356548123 -642,3.0,11.0,0.0,4.191255364806866 -642,4.0,1.0,-1.1359607881738778,4.772479328281356 -642,4.0,4.0,4.089980824135861,-12.190647245055052 -642,4.0,6.0,-2.954020035961983,7.449267916773697 -642,5.0,1.0,-1.6861448807654689,5.116477495334806 -642,5.0,3.0,-6.413123730174556,22.31120356548123 -642,5.0,5.0,22.341631269034565,-82.8291478657789 -642,5.0,6.0,-3.590210423980992,11.02611441072814 -642,5.0,7.0,-6.289308176100628,22.0125786163522 -642,5.0,8.0,0.0,4.915840805411357 -642,5.0,9.0,0.0,1.8561002591115965 -642,5.0,27.0,-4.362844058012917,15.463571542897856 -642,6.0,4.0,-2.954020035961983,7.449267916773697 -642,6.0,5.0,-3.590210423980992,11.02611441072814 -642,6.0,6.0,6.544230459942975,-18.45668232750184 -642,7.0,5.0,-6.289308176100628,22.0125786163522 -642,7.0,7.0,7.733287237496075,-26.527493274828448 -642,7.0,27.0,-1.4439790613954469,4.540814658476248 -642,8.0,5.0,0.0,4.915840805411357 -642,8.0,8.0,0.0,-18.706293706293707 -642,8.0,9.0,0.0,9.090909090909092 -642,8.0,10.0,0.0,4.807692307692308 -642,9.0,5.0,0.0,1.8561002591115965 -642,9.0,8.0,0.0,9.090909090909092 -642,9.0,9.0,13.462042814524237,-41.3837606675224 -642,9.0,16.0,-3.956039125715353,10.317447719844054 -642,9.0,19.0,-1.7848303152666305,3.98535828943083 -642,9.0,20.0,-5.101853820159654,10.98071411292983 -642,9.0,21.0,-2.619319553382597,5.400770303329455 -642,10.0,8.0,0.0,4.807692307692308 -642,10.0,10.0,0.0,-4.807692307692308 -642,11.0,3.0,0.0,4.191255364806866 -642,11.0,11.0,3.478565401119727,-18.326891794934408 -642,11.0,12.0,0.0,7.142857142857143 -642,11.0,13.0,-1.5265676088395577,3.1734252729654173 -642,11.0,15.0,-1.9519977922801688,4.104359379111847 -642,12.0,11.0,0.0,7.142857142857143 -642,12.0,12.0,0.0,-7.142857142857143 -642,13.0,11.0,-1.5265676088395577,3.1734252729654173 -642,13.0,13.0,4.01751987283902,-5.424299332335067 -642,13.0,14.0,-2.4909522639994623,2.250874059369649 -642,14.0,13.0,-2.4909522639994623,2.250874059369649 -642,14.0,14.0,6.270102363308326,-9.9143578677817 -642,14.0,17.0,-1.8108011504072024,3.687418931630696 -642,14.0,22.0,-1.9683489489016612,3.976064876781356 -642,15.0,11.0,-1.9519977922801688,4.104359379111847 -642,15.0,15.0,1.9519977922801688,-4.104359379111847 -642,16.0,9.0,-3.956039125715353,10.317447719844054 -642,16.0,16.0,3.956039125715353,-10.317447719844054 -642,17.0,14.0,-1.8108011504072024,3.687418931630696 -642,17.0,17.0,4.886487584415919,-9.906177730909668 -642,17.0,18.0,-3.0756864340087167,6.218758799278971 -642,18.0,17.0,-3.0756864340087167,6.218758799278971 -642,18.0,18.0,8.958039375185187,-17.98346468163191 -642,18.0,19.0,-5.88235294117647,11.76470588235294 -642,19.0,9.0,-1.7848303152666305,3.98535828943083 -642,19.0,18.0,-5.88235294117647,11.76470588235294 -642,19.0,19.0,7.6671832564431,-15.75006417178377 -642,20.0,9.0,-5.101853820159654,10.98071411292983 -642,20.0,20.0,21.876495189895888,-45.10843276170355 -642,20.0,21.0,-16.774641369736234,34.127718648773715 -642,21.0,9.0,-2.619319553382597,5.400770303329455 -642,21.0,20.0,-16.774641369736234,34.127718648773715 -642,21.0,21.0,21.93449907537439,-43.48289181517921 -642,21.0,23.0,-2.5405381522555563,3.95440286307604 -642,22.0,14.0,-1.9683489489016612,3.976064876781356 -642,22.0,22.0,1.9683489489016612,-3.976064876781356 -642,23.0,21.0,-2.5405381522555563,3.95440286307604 -642,23.0,23.0,3.850431096129806,-6.199024916781094 -642,23.0,24.0,-1.3098929438742493,2.287622053705056 -642,24.0,23.0,-1.3098929438742493,2.287622053705056 -642,24.0,24.0,4.495715080321987,-7.864978761969621 -642,24.0,25.0,-1.2165301194494855,1.8171440463475024 -642,24.0,26.0,-1.9692920169982515,3.760212661917064 -642,25.0,24.0,-1.2165301194494855,1.8171440463475024 -642,25.0,25.0,1.2165301194494855,-1.8171440463475024 -642,26.0,24.0,-1.9692920169982515,3.760212661917064 -642,26.0,26.0,3.652281470778589,-9.46044252232512 -642,26.0,27.0,0.0,2.608731947574922 -642,26.0,28.0,-0.99553355095268,1.881005840357816 -642,26.0,29.0,-0.6874559028276572,1.293971494797717 -642,27.0,5.0,-4.362844058012917,15.463571542897856 -642,27.0,7.0,-1.4439790613954469,4.540814658476248 -642,27.0,26.0,0.0,2.608731947574922 -642,27.0,27.0,5.806823119408364,-22.67145722159613 -642,28.0,26.0,-0.99553355095268,1.881005840357816 -642,28.0,28.0,1.9075867579849564,-3.604364401207048 -642,28.0,29.0,-0.9120532070322764,1.7233585608492326 -642,29.0,26.0,-0.6874559028276572,1.293971494797717 -642,29.0,28.0,-0.9120532070322764,1.7233585608492326 -642,29.0,29.0,1.5995091098599337,-3.0173300556469496 -643,0.0,0.0,6.765516048652632,-21.23160167089863 -643,0.0,1.0,-5.224646179885656,15.646726840803398 -643,0.0,2.0,-1.5408698687669766,5.631674830095234 -643,1.0,0.0,-5.224646179885656,15.646726840803398 -643,1.0,1.0,9.75228216552403,-30.648662892676068 -643,1.0,3.0,-1.7055303166990268,5.1973792282565086 -643,1.0,4.0,-1.1359607881738778,4.772479328281356 -643,1.0,5.0,-1.6861448807654689,5.116477495334806 -643,2.0,0.0,-1.5408698687669766,5.631674830095234 -643,2.0,2.0,9.736318911079088,-29.13794745915803 -643,2.0,3.0,-8.19544904231211,23.5308726290628 -643,3.0,1.0,-1.7055303166990268,5.1973792282565086 -643,3.0,2.0,-8.19544904231211,23.5308726290628 -643,3.0,3.0,9.900979359011137,-33.202706969773025 -643,3.0,11.0,0.0,4.191255364806866 -643,4.0,1.0,-1.1359607881738778,4.772479328281356 -643,4.0,4.0,4.089980824135861,-12.190647245055052 -643,4.0,6.0,-2.954020035961983,7.449267916773697 -643,5.0,1.0,-1.6861448807654689,5.116477495334806 -643,5.0,5.0,15.928507538860009,-60.52244430029767 -643,5.0,6.0,-3.590210423980992,11.02611441072814 -643,5.0,7.0,-6.289308176100628,22.0125786163522 -643,5.0,8.0,0.0,4.915840805411357 -643,5.0,9.0,0.0,1.8561002591115965 -643,5.0,27.0,-4.362844058012917,15.463571542897856 -643,6.0,4.0,-2.954020035961983,7.449267916773697 -643,6.0,5.0,-3.590210423980992,11.02611441072814 -643,6.0,6.0,6.544230459942975,-18.45668232750184 -643,7.0,5.0,-6.289308176100628,22.0125786163522 -643,7.0,7.0,7.733287237496075,-26.527493274828448 -643,7.0,27.0,-1.4439790613954469,4.540814658476248 -643,8.0,5.0,0.0,4.915840805411357 -643,8.0,8.0,0.0,-18.706293706293707 -643,8.0,9.0,0.0,9.090909090909092 -643,8.0,10.0,0.0,4.807692307692308 -643,9.0,5.0,0.0,1.8561002591115965 -643,9.0,8.0,0.0,9.090909090909092 -643,9.0,9.0,4.404149868649228,-20.085598834748517 -643,9.0,19.0,-1.7848303152666305,3.98535828943083 -643,9.0,21.0,-2.619319553382597,5.400770303329455 -643,10.0,8.0,0.0,4.807692307692308 -643,10.0,10.0,0.0,-4.807692307692308 -643,11.0,3.0,0.0,4.191255364806866 -643,11.0,11.0,6.573961583776156,-24.424167659260668 -643,11.0,12.0,0.0,7.142857142857143 -643,11.0,13.0,-1.5265676088395577,3.1734252729654173 -643,11.0,14.0,-3.0953961826564296,6.097275864326261 -643,11.0,15.0,-1.9519977922801688,4.104359379111847 -643,12.0,11.0,0.0,7.142857142857143 -643,12.0,12.0,0.0,-7.142857142857143 -643,13.0,11.0,-1.5265676088395577,3.1734252729654173 -643,13.0,13.0,4.01751987283902,-5.424299332335067 -643,13.0,14.0,-2.4909522639994623,2.250874059369649 -643,14.0,11.0,-3.0953961826564296,6.097275864326261 -643,14.0,13.0,-2.4909522639994623,2.250874059369649 -643,14.0,14.0,9.365498545964757,-16.01163373210796 -643,14.0,17.0,-1.8108011504072024,3.687418931630696 -643,14.0,22.0,-1.9683489489016612,3.976064876781356 -643,15.0,11.0,-1.9519977922801688,4.104359379111847 -643,15.0,15.0,3.271064728633931,-8.94513365126506 -643,15.0,16.0,-1.3190669363537617,4.8407742721532125 -643,16.0,15.0,-1.3190669363537617,4.8407742721532125 -643,16.0,16.0,1.3190669363537617,-4.8407742721532125 -643,17.0,14.0,-1.8108011504072024,3.687418931630696 -643,17.0,17.0,1.8108011504072024,-3.687418931630696 -643,18.0,18.0,5.88235294117647,-11.76470588235294 -643,18.0,19.0,-5.88235294117647,11.76470588235294 -643,19.0,9.0,-1.7848303152666305,3.98535828943083 -643,19.0,18.0,-5.88235294117647,11.76470588235294 -643,19.0,19.0,7.6671832564431,-15.75006417178377 -643,20.0,20.0,16.774641369736234,-34.127718648773715 -643,20.0,21.0,-16.774641369736234,34.127718648773715 -643,21.0,9.0,-2.619319553382597,5.400770303329455 -643,21.0,20.0,-16.774641369736234,34.127718648773715 -643,21.0,21.0,21.93449907537439,-43.48289181517921 -643,21.0,23.0,-2.5405381522555563,3.95440286307604 -643,22.0,14.0,-1.9683489489016612,3.976064876781356 -643,22.0,22.0,3.429754555384988,-6.965303617315433 -643,22.0,23.0,-1.4614056064833263,2.989238740534077 -643,23.0,21.0,-2.5405381522555563,3.95440286307604 -643,23.0,22.0,-1.4614056064833263,2.989238740534077 -643,23.0,23.0,5.311836702613133,-9.188263657315172 -643,23.0,24.0,-1.3098929438742493,2.287622053705056 -643,24.0,23.0,-1.3098929438742493,2.287622053705056 -643,24.0,24.0,4.495715080321987,-7.864978761969621 -643,24.0,25.0,-1.2165301194494855,1.8171440463475024 -643,24.0,26.0,-1.9692920169982515,3.760212661917064 -643,25.0,24.0,-1.2165301194494855,1.8171440463475024 -643,25.0,25.0,1.2165301194494855,-1.8171440463475024 -643,26.0,24.0,-1.9692920169982515,3.760212661917064 -643,26.0,26.0,3.652281470778589,-9.46044252232512 -643,26.0,27.0,0.0,2.608731947574922 -643,26.0,28.0,-0.99553355095268,1.881005840357816 -643,26.0,29.0,-0.6874559028276572,1.293971494797717 -643,27.0,5.0,-4.362844058012917,15.463571542897856 -643,27.0,7.0,-1.4439790613954469,4.540814658476248 -643,27.0,26.0,0.0,2.608731947574922 -643,27.0,27.0,5.806823119408364,-22.67145722159613 -643,28.0,26.0,-0.99553355095268,1.881005840357816 -643,28.0,28.0,1.9075867579849564,-3.604364401207048 -643,28.0,29.0,-0.9120532070322764,1.7233585608492326 -643,29.0,26.0,-0.6874559028276572,1.293971494797717 -643,29.0,28.0,-0.9120532070322764,1.7233585608492326 -643,29.0,29.0,1.5995091098599337,-3.0173300556469496 -644,0.0,0.0,6.765516048652632,-21.23160167089863 -644,0.0,1.0,-5.224646179885656,15.646726840803398 -644,0.0,2.0,-1.5408698687669766,5.631674830095234 -644,1.0,0.0,-5.224646179885656,15.646726840803398 -644,1.0,1.0,9.75228216552403,-30.648662892676068 -644,1.0,3.0,-1.7055303166990268,5.1973792282565086 -644,1.0,4.0,-1.1359607881738778,4.772479328281356 -644,1.0,5.0,-1.6861448807654689,5.116477495334806 -644,2.0,0.0,-1.5408698687669766,5.631674830095234 -644,2.0,2.0,1.5408698687669766,-5.611274830095233 -644,3.0,1.0,-1.7055303166990268,5.1973792282565086 -644,3.0,3.0,8.118654046873583,-31.982737906191456 -644,3.0,5.0,-6.413123730174556,22.31120356548123 -644,3.0,11.0,0.0,4.191255364806866 -644,4.0,1.0,-1.1359607881738778,4.772479328281356 -644,4.0,4.0,4.089980824135861,-12.190647245055052 -644,4.0,6.0,-2.954020035961983,7.449267916773697 -644,5.0,1.0,-1.6861448807654689,5.116477495334806 -644,5.0,3.0,-6.413123730174556,22.31120356548123 -644,5.0,5.0,22.341631269034565,-82.8291478657789 -644,5.0,6.0,-3.590210423980992,11.02611441072814 -644,5.0,7.0,-6.289308176100628,22.0125786163522 -644,5.0,8.0,0.0,4.915840805411357 -644,5.0,9.0,0.0,1.8561002591115965 -644,5.0,27.0,-4.362844058012917,15.463571542897856 -644,6.0,4.0,-2.954020035961983,7.449267916773697 -644,6.0,5.0,-3.590210423980992,11.02611441072814 -644,6.0,6.0,6.544230459942975,-18.45668232750184 -644,7.0,5.0,-6.289308176100628,22.0125786163522 -644,7.0,7.0,7.733287237496075,-26.527493274828448 -644,7.0,27.0,-1.4439790613954469,4.540814658476248 -644,8.0,5.0,0.0,4.915840805411357 -644,8.0,8.0,0.0,-18.706293706293707 -644,8.0,9.0,0.0,9.090909090909092 -644,8.0,10.0,0.0,4.807692307692308 -644,9.0,5.0,0.0,1.8561002591115965 -644,9.0,8.0,0.0,9.090909090909092 -644,9.0,9.0,9.506003688808882,-31.06631294767834 -644,9.0,19.0,-1.7848303152666305,3.98535828943083 -644,9.0,20.0,-5.101853820159654,10.98071411292983 -644,9.0,21.0,-2.619319553382597,5.400770303329455 -644,10.0,8.0,0.0,4.807692307692308 -644,10.0,10.0,0.0,-4.807692307692308 -644,11.0,3.0,0.0,4.191255364806866 -644,11.0,11.0,6.573961583776156,-24.424167659260668 -644,11.0,12.0,0.0,7.142857142857143 -644,11.0,13.0,-1.5265676088395577,3.1734252729654173 -644,11.0,14.0,-3.0953961826564296,6.097275864326261 -644,11.0,15.0,-1.9519977922801688,4.104359379111847 -644,12.0,11.0,0.0,7.142857142857143 -644,12.0,12.0,0.0,-7.142857142857143 -644,13.0,11.0,-1.5265676088395577,3.1734252729654173 -644,13.0,13.0,4.01751987283902,-5.424299332335067 -644,13.0,14.0,-2.4909522639994623,2.250874059369649 -644,14.0,11.0,-3.0953961826564296,6.097275864326261 -644,14.0,13.0,-2.4909522639994623,2.250874059369649 -644,14.0,14.0,9.365498545964757,-16.01163373210796 -644,14.0,17.0,-1.8108011504072024,3.687418931630696 -644,14.0,22.0,-1.9683489489016612,3.976064876781356 -644,15.0,11.0,-1.9519977922801688,4.104359379111847 -644,15.0,15.0,3.271064728633931,-8.94513365126506 -644,15.0,16.0,-1.3190669363537617,4.8407742721532125 -644,16.0,15.0,-1.3190669363537617,4.8407742721532125 -644,16.0,16.0,1.3190669363537617,-4.8407742721532125 -644,17.0,14.0,-1.8108011504072024,3.687418931630696 -644,17.0,17.0,4.886487584415919,-9.906177730909668 -644,17.0,18.0,-3.0756864340087167,6.218758799278971 -644,18.0,17.0,-3.0756864340087167,6.218758799278971 -644,18.0,18.0,3.0756864340087167,-6.218758799278971 -644,19.0,9.0,-1.7848303152666305,3.98535828943083 -644,19.0,19.0,1.7848303152666305,-3.98535828943083 -644,20.0,9.0,-5.101853820159654,10.98071411292983 -644,20.0,20.0,21.876495189895888,-45.10843276170355 -644,20.0,21.0,-16.774641369736234,34.127718648773715 -644,21.0,9.0,-2.619319553382597,5.400770303329455 -644,21.0,20.0,-16.774641369736234,34.127718648773715 -644,21.0,21.0,21.93449907537439,-43.48289181517921 -644,21.0,23.0,-2.5405381522555563,3.95440286307604 -644,22.0,14.0,-1.9683489489016612,3.976064876781356 -644,22.0,22.0,3.429754555384988,-6.965303617315433 -644,22.0,23.0,-1.4614056064833263,2.989238740534077 -644,23.0,21.0,-2.5405381522555563,3.95440286307604 -644,23.0,22.0,-1.4614056064833263,2.989238740534077 -644,23.0,23.0,5.311836702613133,-9.188263657315172 -644,23.0,24.0,-1.3098929438742493,2.287622053705056 -644,24.0,23.0,-1.3098929438742493,2.287622053705056 -644,24.0,24.0,2.526423063323735,-4.104766100052558 -644,24.0,25.0,-1.2165301194494855,1.8171440463475024 -644,25.0,24.0,-1.2165301194494855,1.8171440463475024 -644,25.0,25.0,1.2165301194494855,-1.8171440463475024 -644,26.0,26.0,0.6874559028276572,-3.8192240200502416 -644,26.0,27.0,0.0,2.608731947574922 -644,26.0,29.0,-0.6874559028276572,1.293971494797717 -644,27.0,5.0,-4.362844058012917,15.463571542897856 -644,27.0,7.0,-1.4439790613954469,4.540814658476248 -644,27.0,26.0,0.0,2.608731947574922 -644,27.0,27.0,5.806823119408364,-22.67145722159613 -644,28.0,28.0,0.9120532070322764,-1.7233585608492326 -644,28.0,29.0,-0.9120532070322764,1.7233585608492326 -644,29.0,26.0,-0.6874559028276572,1.293971494797717 -644,29.0,28.0,-0.9120532070322764,1.7233585608492326 -644,29.0,29.0,1.5995091098599337,-3.0173300556469496 -645,0.0,0.0,6.765516048652632,-21.23160167089863 -645,0.0,1.0,-5.224646179885656,15.646726840803398 -645,0.0,2.0,-1.5408698687669766,5.631674830095234 -645,1.0,0.0,-5.224646179885656,15.646726840803398 -645,1.0,1.0,9.75228216552403,-30.648662892676068 -645,1.0,3.0,-1.7055303166990268,5.1973792282565086 -645,1.0,4.0,-1.1359607881738778,4.772479328281356 -645,1.0,5.0,-1.6861448807654689,5.116477495334806 -645,2.0,0.0,-1.5408698687669766,5.631674830095234 -645,2.0,2.0,9.736318911079088,-29.13794745915803 -645,2.0,3.0,-8.19544904231211,23.5308726290628 -645,3.0,1.0,-1.7055303166990268,5.1973792282565086 -645,3.0,2.0,-8.19544904231211,23.5308726290628 -645,3.0,3.0,16.314103089185693,-55.509410535254254 -645,3.0,5.0,-6.413123730174556,22.31120356548123 -645,3.0,11.0,0.0,4.191255364806866 -645,4.0,1.0,-1.1359607881738778,4.772479328281356 -645,4.0,4.0,4.089980824135861,-12.190647245055052 -645,4.0,6.0,-2.954020035961983,7.449267916773697 -645,5.0,1.0,-1.6861448807654689,5.116477495334806 -645,5.0,3.0,-6.413123730174556,22.31120356548123 -645,5.0,5.0,22.341631269034565,-82.8291478657789 -645,5.0,6.0,-3.590210423980992,11.02611441072814 -645,5.0,7.0,-6.289308176100628,22.0125786163522 -645,5.0,8.0,0.0,4.915840805411357 -645,5.0,9.0,0.0,1.8561002591115965 -645,5.0,27.0,-4.362844058012917,15.463571542897856 -645,6.0,4.0,-2.954020035961983,7.449267916773697 -645,6.0,5.0,-3.590210423980992,11.02611441072814 -645,6.0,6.0,6.544230459942975,-18.45668232750184 -645,7.0,5.0,-6.289308176100628,22.0125786163522 -645,7.0,7.0,7.733287237496075,-26.527493274828448 -645,7.0,27.0,-1.4439790613954469,4.540814658476248 -645,8.0,5.0,0.0,4.915840805411357 -645,8.0,8.0,0.0,-18.706293706293707 -645,8.0,9.0,0.0,9.090909090909092 -645,8.0,10.0,0.0,4.807692307692308 -645,9.0,5.0,0.0,1.8561002591115965 -645,9.0,8.0,0.0,9.090909090909092 -645,9.0,9.0,13.462042814524237,-41.3837606675224 -645,9.0,16.0,-3.956039125715353,10.317447719844054 -645,9.0,19.0,-1.7848303152666305,3.98535828943083 -645,9.0,20.0,-5.101853820159654,10.98071411292983 -645,9.0,21.0,-2.619319553382597,5.400770303329455 -645,10.0,8.0,0.0,4.807692307692308 -645,10.0,10.0,0.0,-4.807692307692308 -645,11.0,3.0,0.0,4.191255364806866 -645,11.0,11.0,6.573961583776156,-24.424167659260668 -645,11.0,12.0,0.0,7.142857142857143 -645,11.0,13.0,-1.5265676088395577,3.1734252729654173 -645,11.0,14.0,-3.0953961826564296,6.097275864326261 -645,11.0,15.0,-1.9519977922801688,4.104359379111847 -645,12.0,11.0,0.0,7.142857142857143 -645,12.0,12.0,0.0,-7.142857142857143 -645,13.0,11.0,-1.5265676088395577,3.1734252729654173 -645,13.0,13.0,4.01751987283902,-5.424299332335067 -645,13.0,14.0,-2.4909522639994623,2.250874059369649 -645,14.0,11.0,-3.0953961826564296,6.097275864326261 -645,14.0,13.0,-2.4909522639994623,2.250874059369649 -645,14.0,14.0,9.365498545964757,-16.01163373210796 -645,14.0,17.0,-1.8108011504072024,3.687418931630696 -645,14.0,22.0,-1.9683489489016612,3.976064876781356 -645,15.0,11.0,-1.9519977922801688,4.104359379111847 -645,15.0,15.0,3.271064728633931,-8.94513365126506 -645,15.0,16.0,-1.3190669363537617,4.8407742721532125 -645,16.0,9.0,-3.956039125715353,10.317447719844054 -645,16.0,15.0,-1.3190669363537617,4.8407742721532125 -645,16.0,16.0,5.275106062069114,-15.158221991997266 -645,17.0,14.0,-1.8108011504072024,3.687418931630696 -645,17.0,17.0,4.886487584415919,-9.906177730909668 -645,17.0,18.0,-3.0756864340087167,6.218758799278971 -645,18.0,17.0,-3.0756864340087167,6.218758799278971 -645,18.0,18.0,8.958039375185187,-17.98346468163191 -645,18.0,19.0,-5.88235294117647,11.76470588235294 -645,19.0,9.0,-1.7848303152666305,3.98535828943083 -645,19.0,18.0,-5.88235294117647,11.76470588235294 -645,19.0,19.0,7.6671832564431,-15.75006417178377 -645,20.0,9.0,-5.101853820159654,10.98071411292983 -645,20.0,20.0,5.101853820159654,-10.98071411292983 -645,21.0,9.0,-2.619319553382597,5.400770303329455 -645,21.0,21.0,5.159857705638154,-9.355173166405494 -645,21.0,23.0,-2.5405381522555563,3.95440286307604 -645,22.0,14.0,-1.9683489489016612,3.976064876781356 -645,22.0,22.0,3.429754555384988,-6.965303617315433 -645,22.0,23.0,-1.4614056064833263,2.989238740534077 -645,23.0,21.0,-2.5405381522555563,3.95440286307604 -645,23.0,22.0,-1.4614056064833263,2.989238740534077 -645,23.0,23.0,5.311836702613133,-9.188263657315172 -645,23.0,24.0,-1.3098929438742493,2.287622053705056 -645,24.0,23.0,-1.3098929438742493,2.287622053705056 -645,24.0,24.0,4.495715080321987,-7.864978761969621 -645,24.0,25.0,-1.2165301194494855,1.8171440463475024 -645,24.0,26.0,-1.9692920169982515,3.760212661917064 -645,25.0,24.0,-1.2165301194494855,1.8171440463475024 -645,25.0,25.0,1.2165301194494855,-1.8171440463475024 -645,26.0,24.0,-1.9692920169982515,3.760212661917064 -645,26.0,26.0,3.652281470778589,-9.46044252232512 -645,26.0,27.0,0.0,2.608731947574922 -645,26.0,28.0,-0.99553355095268,1.881005840357816 -645,26.0,29.0,-0.6874559028276572,1.293971494797717 -645,27.0,5.0,-4.362844058012917,15.463571542897856 -645,27.0,7.0,-1.4439790613954469,4.540814658476248 -645,27.0,26.0,0.0,2.608731947574922 -645,27.0,27.0,5.806823119408364,-22.67145722159613 -645,28.0,26.0,-0.99553355095268,1.881005840357816 -645,28.0,28.0,1.9075867579849564,-3.604364401207048 -645,28.0,29.0,-0.9120532070322764,1.7233585608492326 -645,29.0,26.0,-0.6874559028276572,1.293971494797717 -645,29.0,28.0,-0.9120532070322764,1.7233585608492326 -645,29.0,29.0,1.5995091098599337,-3.0173300556469496 -646,0.0,0.0,6.765516048652632,-21.23160167089863 -646,0.0,1.0,-5.224646179885656,15.646726840803398 -646,0.0,2.0,-1.5408698687669766,5.631674830095234 -646,1.0,0.0,-5.224646179885656,15.646726840803398 -646,1.0,1.0,8.066137284758561,-25.55088539734126 -646,1.0,3.0,-1.7055303166990268,5.1973792282565086 -646,1.0,4.0,-1.1359607881738778,4.772479328281356 -646,2.0,0.0,-1.5408698687669766,5.631674830095234 -646,2.0,2.0,9.736318911079088,-29.13794745915803 -646,2.0,3.0,-8.19544904231211,23.5308726290628 -646,3.0,1.0,-1.7055303166990268,5.1973792282565086 -646,3.0,2.0,-8.19544904231211,23.5308726290628 -646,3.0,3.0,16.314103089185693,-55.509410535254254 -646,3.0,5.0,-6.413123730174556,22.31120356548123 -646,3.0,11.0,0.0,4.191255364806866 -646,4.0,1.0,-1.1359607881738778,4.772479328281356 -646,4.0,4.0,4.089980824135861,-12.190647245055052 -646,4.0,6.0,-2.954020035961983,7.449267916773697 -646,5.0,3.0,-6.413123730174556,22.31120356548123 -646,5.0,5.0,20.655486388269097,-77.7313703704441 -646,5.0,6.0,-3.590210423980992,11.02611441072814 -646,5.0,7.0,-6.289308176100628,22.0125786163522 -646,5.0,8.0,0.0,4.915840805411357 -646,5.0,9.0,0.0,1.8561002591115965 -646,5.0,27.0,-4.362844058012917,15.463571542897856 -646,6.0,4.0,-2.954020035961983,7.449267916773697 -646,6.0,5.0,-3.590210423980992,11.02611441072814 -646,6.0,6.0,6.544230459942975,-18.45668232750184 -646,7.0,5.0,-6.289308176100628,22.0125786163522 -646,7.0,7.0,6.289308176100628,-22.0080786163522 -646,8.0,5.0,0.0,4.915840805411357 -646,8.0,8.0,0.0,-18.706293706293707 -646,8.0,9.0,0.0,9.090909090909092 -646,8.0,10.0,0.0,4.807692307692308 -646,9.0,5.0,0.0,1.8561002591115965 -646,9.0,8.0,0.0,9.090909090909092 -646,9.0,9.0,9.506003688808882,-31.06631294767834 -646,9.0,19.0,-1.7848303152666305,3.98535828943083 -646,9.0,20.0,-5.101853820159654,10.98071411292983 -646,9.0,21.0,-2.619319553382597,5.400770303329455 -646,10.0,8.0,0.0,4.807692307692308 -646,10.0,10.0,0.0,-4.807692307692308 -646,11.0,3.0,0.0,4.191255364806866 -646,11.0,11.0,6.573961583776156,-24.424167659260668 -646,11.0,12.0,0.0,7.142857142857143 -646,11.0,13.0,-1.5265676088395577,3.1734252729654173 -646,11.0,14.0,-3.0953961826564296,6.097275864326261 -646,11.0,15.0,-1.9519977922801688,4.104359379111847 -646,12.0,11.0,0.0,7.142857142857143 -646,12.0,12.0,0.0,-7.142857142857143 -646,13.0,11.0,-1.5265676088395577,3.1734252729654173 -646,13.0,13.0,4.01751987283902,-5.424299332335067 -646,13.0,14.0,-2.4909522639994623,2.250874059369649 -646,14.0,11.0,-3.0953961826564296,6.097275864326261 -646,14.0,13.0,-2.4909522639994623,2.250874059369649 -646,14.0,14.0,9.365498545964757,-16.01163373210796 -646,14.0,17.0,-1.8108011504072024,3.687418931630696 -646,14.0,22.0,-1.9683489489016612,3.976064876781356 -646,15.0,11.0,-1.9519977922801688,4.104359379111847 -646,15.0,15.0,3.271064728633931,-8.94513365126506 -646,15.0,16.0,-1.3190669363537617,4.8407742721532125 -646,16.0,15.0,-1.3190669363537617,4.8407742721532125 -646,16.0,16.0,1.3190669363537617,-4.8407742721532125 -646,17.0,14.0,-1.8108011504072024,3.687418931630696 -646,17.0,17.0,4.886487584415919,-9.906177730909668 -646,17.0,18.0,-3.0756864340087167,6.218758799278971 -646,18.0,17.0,-3.0756864340087167,6.218758799278971 -646,18.0,18.0,8.958039375185187,-17.98346468163191 -646,18.0,19.0,-5.88235294117647,11.76470588235294 -646,19.0,9.0,-1.7848303152666305,3.98535828943083 -646,19.0,18.0,-5.88235294117647,11.76470588235294 -646,19.0,19.0,7.6671832564431,-15.75006417178377 -646,20.0,9.0,-5.101853820159654,10.98071411292983 -646,20.0,20.0,21.876495189895888,-45.10843276170355 -646,20.0,21.0,-16.774641369736234,34.127718648773715 -646,21.0,9.0,-2.619319553382597,5.400770303329455 -646,21.0,20.0,-16.774641369736234,34.127718648773715 -646,21.0,21.0,21.93449907537439,-43.48289181517921 -646,21.0,23.0,-2.5405381522555563,3.95440286307604 -646,22.0,14.0,-1.9683489489016612,3.976064876781356 -646,22.0,22.0,3.429754555384988,-6.965303617315433 -646,22.0,23.0,-1.4614056064833263,2.989238740534077 -646,23.0,21.0,-2.5405381522555563,3.95440286307604 -646,23.0,22.0,-1.4614056064833263,2.989238740534077 -646,23.0,23.0,5.311836702613133,-9.188263657315172 -646,23.0,24.0,-1.3098929438742493,2.287622053705056 -646,24.0,23.0,-1.3098929438742493,2.287622053705056 -646,24.0,24.0,4.495715080321987,-7.864978761969621 -646,24.0,25.0,-1.2165301194494855,1.8171440463475024 -646,24.0,26.0,-1.9692920169982515,3.760212661917064 -646,25.0,24.0,-1.2165301194494855,1.8171440463475024 -646,25.0,25.0,1.2165301194494855,-1.8171440463475024 -646,26.0,24.0,-1.9692920169982515,3.760212661917064 -646,26.0,26.0,3.652281470778589,-9.46044252232512 -646,26.0,27.0,0.0,2.608731947574922 -646,26.0,28.0,-0.99553355095268,1.881005840357816 -646,26.0,29.0,-0.6874559028276572,1.293971494797717 -646,27.0,5.0,-4.362844058012917,15.463571542897856 -646,27.0,26.0,0.0,2.608731947574922 -646,27.0,27.0,4.362844058012917,-18.15204256311988 -646,28.0,26.0,-0.99553355095268,1.881005840357816 -646,28.0,28.0,1.9075867579849564,-3.604364401207048 -646,28.0,29.0,-0.9120532070322764,1.7233585608492326 -646,29.0,26.0,-0.6874559028276572,1.293971494797717 -646,29.0,28.0,-0.9120532070322764,1.7233585608492326 -646,29.0,29.0,1.5995091098599337,-3.0173300556469496 -647,0.0,0.0,6.765516048652632,-21.23160167089863 -647,0.0,1.0,-5.224646179885656,15.646726840803398 -647,0.0,2.0,-1.5408698687669766,5.631674830095234 -647,1.0,0.0,-5.224646179885656,15.646726840803398 -647,1.0,1.0,9.75228216552403,-30.648662892676068 -647,1.0,3.0,-1.7055303166990268,5.1973792282565086 -647,1.0,4.0,-1.1359607881738778,4.772479328281356 -647,1.0,5.0,-1.6861448807654689,5.116477495334806 -647,2.0,0.0,-1.5408698687669766,5.631674830095234 -647,2.0,2.0,9.736318911079088,-29.13794745915803 -647,2.0,3.0,-8.19544904231211,23.5308726290628 -647,3.0,1.0,-1.7055303166990268,5.1973792282565086 -647,3.0,2.0,-8.19544904231211,23.5308726290628 -647,3.0,3.0,16.314103089185693,-55.509410535254254 -647,3.0,5.0,-6.413123730174556,22.31120356548123 -647,3.0,11.0,0.0,4.191255364806866 -647,4.0,1.0,-1.1359607881738778,4.772479328281356 -647,4.0,4.0,4.089980824135861,-12.190647245055052 -647,4.0,6.0,-2.954020035961983,7.449267916773697 -647,5.0,1.0,-1.6861448807654689,5.116477495334806 -647,5.0,3.0,-6.413123730174556,22.31120356548123 -647,5.0,5.0,22.341631269034565,-82.8291478657789 -647,5.0,6.0,-3.590210423980992,11.02611441072814 -647,5.0,7.0,-6.289308176100628,22.0125786163522 -647,5.0,8.0,0.0,4.915840805411357 -647,5.0,9.0,0.0,1.8561002591115965 -647,5.0,27.0,-4.362844058012917,15.463571542897856 -647,6.0,4.0,-2.954020035961983,7.449267916773697 -647,6.0,5.0,-3.590210423980992,11.02611441072814 -647,6.0,6.0,6.544230459942975,-18.45668232750184 -647,7.0,5.0,-6.289308176100628,22.0125786163522 -647,7.0,7.0,6.289308176100628,-22.0080786163522 -647,8.0,5.0,0.0,4.915840805411357 -647,8.0,8.0,0.0,-18.706293706293707 -647,8.0,9.0,0.0,9.090909090909092 -647,8.0,10.0,0.0,4.807692307692308 -647,9.0,5.0,0.0,1.8561002591115965 -647,9.0,8.0,0.0,9.090909090909092 -647,9.0,9.0,13.462042814524237,-41.3837606675224 -647,9.0,16.0,-3.956039125715353,10.317447719844054 -647,9.0,19.0,-1.7848303152666305,3.98535828943083 -647,9.0,20.0,-5.101853820159654,10.98071411292983 -647,9.0,21.0,-2.619319553382597,5.400770303329455 -647,10.0,8.0,0.0,4.807692307692308 -647,10.0,10.0,0.0,-4.807692307692308 -647,11.0,3.0,0.0,4.191255364806866 -647,11.0,11.0,6.573961583776156,-24.424167659260668 -647,11.0,12.0,0.0,7.142857142857143 -647,11.0,13.0,-1.5265676088395577,3.1734252729654173 -647,11.0,14.0,-3.0953961826564296,6.097275864326261 -647,11.0,15.0,-1.9519977922801688,4.104359379111847 -647,12.0,11.0,0.0,7.142857142857143 -647,12.0,12.0,0.0,-7.142857142857143 -647,13.0,11.0,-1.5265676088395577,3.1734252729654173 -647,13.0,13.0,4.01751987283902,-5.424299332335067 -647,13.0,14.0,-2.4909522639994623,2.250874059369649 -647,14.0,11.0,-3.0953961826564296,6.097275864326261 -647,14.0,13.0,-2.4909522639994623,2.250874059369649 -647,14.0,14.0,9.365498545964757,-16.01163373210796 -647,14.0,17.0,-1.8108011504072024,3.687418931630696 -647,14.0,22.0,-1.9683489489016612,3.976064876781356 -647,15.0,11.0,-1.9519977922801688,4.104359379111847 -647,15.0,15.0,3.271064728633931,-8.94513365126506 -647,15.0,16.0,-1.3190669363537617,4.8407742721532125 -647,16.0,9.0,-3.956039125715353,10.317447719844054 -647,16.0,15.0,-1.3190669363537617,4.8407742721532125 -647,16.0,16.0,5.275106062069114,-15.158221991997266 -647,17.0,14.0,-1.8108011504072024,3.687418931630696 -647,17.0,17.0,4.886487584415919,-9.906177730909668 -647,17.0,18.0,-3.0756864340087167,6.218758799278971 -647,18.0,17.0,-3.0756864340087167,6.218758799278971 -647,18.0,18.0,8.958039375185187,-17.98346468163191 -647,18.0,19.0,-5.88235294117647,11.76470588235294 -647,19.0,9.0,-1.7848303152666305,3.98535828943083 -647,19.0,18.0,-5.88235294117647,11.76470588235294 -647,19.0,19.0,7.6671832564431,-15.75006417178377 -647,20.0,9.0,-5.101853820159654,10.98071411292983 -647,20.0,20.0,5.101853820159654,-10.98071411292983 -647,21.0,9.0,-2.619319553382597,5.400770303329455 -647,21.0,21.0,5.159857705638154,-9.355173166405494 -647,21.0,23.0,-2.5405381522555563,3.95440286307604 -647,22.0,14.0,-1.9683489489016612,3.976064876781356 -647,22.0,22.0,3.429754555384988,-6.965303617315433 -647,22.0,23.0,-1.4614056064833263,2.989238740534077 -647,23.0,21.0,-2.5405381522555563,3.95440286307604 -647,23.0,22.0,-1.4614056064833263,2.989238740534077 -647,23.0,23.0,5.311836702613133,-9.188263657315172 -647,23.0,24.0,-1.3098929438742493,2.287622053705056 -647,24.0,23.0,-1.3098929438742493,2.287622053705056 -647,24.0,24.0,4.495715080321987,-7.864978761969621 -647,24.0,25.0,-1.2165301194494855,1.8171440463475024 -647,24.0,26.0,-1.9692920169982515,3.760212661917064 -647,25.0,24.0,-1.2165301194494855,1.8171440463475024 -647,25.0,25.0,1.2165301194494855,-1.8171440463475024 -647,26.0,24.0,-1.9692920169982515,3.760212661917064 -647,26.0,26.0,3.652281470778589,-9.46044252232512 -647,26.0,27.0,0.0,2.608731947574922 -647,26.0,28.0,-0.99553355095268,1.881005840357816 -647,26.0,29.0,-0.6874559028276572,1.293971494797717 -647,27.0,5.0,-4.362844058012917,15.463571542897856 -647,27.0,26.0,0.0,2.608731947574922 -647,27.0,27.0,4.362844058012917,-18.15204256311988 -647,28.0,26.0,-0.99553355095268,1.881005840357816 -647,28.0,28.0,1.9075867579849564,-3.604364401207048 -647,28.0,29.0,-0.9120532070322764,1.7233585608492326 -647,29.0,26.0,-0.6874559028276572,1.293971494797717 -647,29.0,28.0,-0.9120532070322764,1.7233585608492326 -647,29.0,29.0,1.5995091098599337,-3.0173300556469496 -648,0.0,0.0,6.765516048652632,-21.23160167089863 -648,0.0,1.0,-5.224646179885656,15.646726840803398 -648,0.0,2.0,-1.5408698687669766,5.631674830095234 -648,1.0,0.0,-5.224646179885656,15.646726840803398 -648,1.0,1.0,9.75228216552403,-30.648662892676068 -648,1.0,3.0,-1.7055303166990268,5.1973792282565086 -648,1.0,4.0,-1.1359607881738778,4.772479328281356 -648,1.0,5.0,-1.6861448807654689,5.116477495334806 -648,2.0,0.0,-1.5408698687669766,5.631674830095234 -648,2.0,2.0,9.736318911079088,-29.13794745915803 -648,2.0,3.0,-8.19544904231211,23.5308726290628 -648,3.0,1.0,-1.7055303166990268,5.1973792282565086 -648,3.0,2.0,-8.19544904231211,23.5308726290628 -648,3.0,3.0,16.314103089185693,-55.509410535254254 -648,3.0,5.0,-6.413123730174556,22.31120356548123 -648,3.0,11.0,0.0,4.191255364806866 -648,4.0,1.0,-1.1359607881738778,4.772479328281356 -648,4.0,4.0,4.089980824135861,-12.190647245055052 -648,4.0,6.0,-2.954020035961983,7.449267916773697 -648,5.0,1.0,-1.6861448807654689,5.116477495334806 -648,5.0,3.0,-6.413123730174556,22.31120356548123 -648,5.0,5.0,22.341631269034565,-82.8291478657789 -648,5.0,6.0,-3.590210423980992,11.02611441072814 -648,5.0,7.0,-6.289308176100628,22.0125786163522 -648,5.0,8.0,0.0,4.915840805411357 -648,5.0,9.0,0.0,1.8561002591115965 -648,5.0,27.0,-4.362844058012917,15.463571542897856 -648,6.0,4.0,-2.954020035961983,7.449267916773697 -648,6.0,5.0,-3.590210423980992,11.02611441072814 -648,6.0,6.0,6.544230459942975,-18.45668232750184 -648,7.0,5.0,-6.289308176100628,22.0125786163522 -648,7.0,7.0,7.733287237496075,-26.527493274828448 -648,7.0,27.0,-1.4439790613954469,4.540814658476248 -648,8.0,5.0,0.0,4.915840805411357 -648,8.0,8.0,0.0,-18.706293706293707 -648,8.0,9.0,0.0,9.090909090909092 -648,8.0,10.0,0.0,4.807692307692308 -648,9.0,5.0,0.0,1.8561002591115965 -648,9.0,8.0,0.0,9.090909090909092 -648,9.0,9.0,13.462042814524237,-41.3837606675224 -648,9.0,16.0,-3.956039125715353,10.317447719844054 -648,9.0,19.0,-1.7848303152666305,3.98535828943083 -648,9.0,20.0,-5.101853820159654,10.98071411292983 -648,9.0,21.0,-2.619319553382597,5.400770303329455 -648,10.0,8.0,0.0,4.807692307692308 -648,10.0,10.0,0.0,-4.807692307692308 -648,11.0,3.0,0.0,4.191255364806866 -648,11.0,11.0,6.573961583776156,-24.424167659260668 -648,11.0,12.0,0.0,7.142857142857143 -648,11.0,13.0,-1.5265676088395577,3.1734252729654173 -648,11.0,14.0,-3.0953961826564296,6.097275864326261 -648,11.0,15.0,-1.9519977922801688,4.104359379111847 -648,12.0,11.0,0.0,7.142857142857143 -648,12.0,12.0,0.0,-7.142857142857143 -648,13.0,11.0,-1.5265676088395577,3.1734252729654173 -648,13.0,13.0,1.5265676088395577,-3.1734252729654173 -648,14.0,11.0,-3.0953961826564296,6.097275864326261 -648,14.0,14.0,6.874546281965293,-13.760759672738311 -648,14.0,17.0,-1.8108011504072024,3.687418931630696 -648,14.0,22.0,-1.9683489489016612,3.976064876781356 -648,15.0,11.0,-1.9519977922801688,4.104359379111847 -648,15.0,15.0,3.271064728633931,-8.94513365126506 -648,15.0,16.0,-1.3190669363537617,4.8407742721532125 -648,16.0,9.0,-3.956039125715353,10.317447719844054 -648,16.0,15.0,-1.3190669363537617,4.8407742721532125 -648,16.0,16.0,5.275106062069114,-15.158221991997266 -648,17.0,14.0,-1.8108011504072024,3.687418931630696 -648,17.0,17.0,4.886487584415919,-9.906177730909668 -648,17.0,18.0,-3.0756864340087167,6.218758799278971 -648,18.0,17.0,-3.0756864340087167,6.218758799278971 -648,18.0,18.0,8.958039375185187,-17.98346468163191 -648,18.0,19.0,-5.88235294117647,11.76470588235294 -648,19.0,9.0,-1.7848303152666305,3.98535828943083 -648,19.0,18.0,-5.88235294117647,11.76470588235294 -648,19.0,19.0,7.6671832564431,-15.75006417178377 -648,20.0,9.0,-5.101853820159654,10.98071411292983 -648,20.0,20.0,21.876495189895888,-45.10843276170355 -648,20.0,21.0,-16.774641369736234,34.127718648773715 -648,21.0,9.0,-2.619319553382597,5.400770303329455 -648,21.0,20.0,-16.774641369736234,34.127718648773715 -648,21.0,21.0,21.93449907537439,-43.48289181517921 -648,21.0,23.0,-2.5405381522555563,3.95440286307604 -648,22.0,14.0,-1.9683489489016612,3.976064876781356 -648,22.0,22.0,3.429754555384988,-6.965303617315433 -648,22.0,23.0,-1.4614056064833263,2.989238740534077 -648,23.0,21.0,-2.5405381522555563,3.95440286307604 -648,23.0,22.0,-1.4614056064833263,2.989238740534077 -648,23.0,23.0,5.311836702613133,-9.188263657315172 -648,23.0,24.0,-1.3098929438742493,2.287622053705056 -648,24.0,23.0,-1.3098929438742493,2.287622053705056 -648,24.0,24.0,4.495715080321987,-7.864978761969621 -648,24.0,25.0,-1.2165301194494855,1.8171440463475024 -648,24.0,26.0,-1.9692920169982515,3.760212661917064 -648,25.0,24.0,-1.2165301194494855,1.8171440463475024 -648,25.0,25.0,1.2165301194494855,-1.8171440463475024 -648,26.0,24.0,-1.9692920169982515,3.760212661917064 -648,26.0,26.0,3.652281470778589,-9.46044252232512 -648,26.0,27.0,0.0,2.608731947574922 -648,26.0,28.0,-0.99553355095268,1.881005840357816 -648,26.0,29.0,-0.6874559028276572,1.293971494797717 -648,27.0,5.0,-4.362844058012917,15.463571542897856 -648,27.0,7.0,-1.4439790613954469,4.540814658476248 -648,27.0,26.0,0.0,2.608731947574922 -648,27.0,27.0,5.806823119408364,-22.67145722159613 -648,28.0,26.0,-0.99553355095268,1.881005840357816 -648,28.0,28.0,1.9075867579849564,-3.604364401207048 -648,28.0,29.0,-0.9120532070322764,1.7233585608492326 -648,29.0,26.0,-0.6874559028276572,1.293971494797717 -648,29.0,28.0,-0.9120532070322764,1.7233585608492326 -648,29.0,29.0,1.5995091098599337,-3.0173300556469496 -649,0.0,0.0,6.765516048652632,-21.23160167089863 -649,0.0,1.0,-5.224646179885656,15.646726840803398 -649,0.0,2.0,-1.5408698687669766,5.631674830095234 -649,1.0,0.0,-5.224646179885656,15.646726840803398 -649,1.0,1.0,9.75228216552403,-30.648662892676068 -649,1.0,3.0,-1.7055303166990268,5.1973792282565086 -649,1.0,4.0,-1.1359607881738778,4.772479328281356 -649,1.0,5.0,-1.6861448807654689,5.116477495334806 -649,2.0,0.0,-1.5408698687669766,5.631674830095234 -649,2.0,2.0,9.736318911079088,-29.13794745915803 -649,2.0,3.0,-8.19544904231211,23.5308726290628 -649,3.0,1.0,-1.7055303166990268,5.1973792282565086 -649,3.0,2.0,-8.19544904231211,23.5308726290628 -649,3.0,3.0,16.314103089185693,-55.509410535254254 -649,3.0,5.0,-6.413123730174556,22.31120356548123 -649,3.0,11.0,0.0,4.191255364806866 -649,4.0,1.0,-1.1359607881738778,4.772479328281356 -649,4.0,4.0,4.089980824135861,-12.190647245055052 -649,4.0,6.0,-2.954020035961983,7.449267916773697 -649,5.0,1.0,-1.6861448807654689,5.116477495334806 -649,5.0,3.0,-6.413123730174556,22.31120356548123 -649,5.0,5.0,22.341631269034565,-80.91366772221689 -649,5.0,6.0,-3.590210423980992,11.02611441072814 -649,5.0,7.0,-6.289308176100628,22.0125786163522 -649,5.0,8.0,0.0,4.915840805411357 -649,5.0,27.0,-4.362844058012917,15.463571542897856 -649,6.0,4.0,-2.954020035961983,7.449267916773697 -649,6.0,5.0,-3.590210423980992,11.02611441072814 -649,6.0,6.0,6.544230459942975,-18.45668232750184 -649,7.0,5.0,-6.289308176100628,22.0125786163522 -649,7.0,7.0,7.733287237496075,-26.527493274828448 -649,7.0,27.0,-1.4439790613954469,4.540814658476248 -649,8.0,5.0,0.0,4.915840805411357 -649,8.0,8.0,0.0,-9.615384615384617 -649,8.0,10.0,0.0,4.807692307692308 -649,9.0,9.0,13.462042814524237,-30.494290425534167 -649,9.0,16.0,-3.956039125715353,10.317447719844054 -649,9.0,19.0,-1.7848303152666305,3.98535828943083 -649,9.0,20.0,-5.101853820159654,10.98071411292983 -649,9.0,21.0,-2.619319553382597,5.400770303329455 -649,10.0,8.0,0.0,4.807692307692308 -649,10.0,10.0,0.0,-4.807692307692308 -649,11.0,3.0,0.0,4.191255364806866 -649,11.0,11.0,6.573961583776156,-24.424167659260668 -649,11.0,12.0,0.0,7.142857142857143 -649,11.0,13.0,-1.5265676088395577,3.1734252729654173 -649,11.0,14.0,-3.0953961826564296,6.097275864326261 -649,11.0,15.0,-1.9519977922801688,4.104359379111847 -649,12.0,11.0,0.0,7.142857142857143 -649,12.0,12.0,0.0,-7.142857142857143 -649,13.0,11.0,-1.5265676088395577,3.1734252729654173 -649,13.0,13.0,4.01751987283902,-5.424299332335067 -649,13.0,14.0,-2.4909522639994623,2.250874059369649 -649,14.0,11.0,-3.0953961826564296,6.097275864326261 -649,14.0,13.0,-2.4909522639994623,2.250874059369649 -649,14.0,14.0,9.365498545964757,-16.01163373210796 -649,14.0,17.0,-1.8108011504072024,3.687418931630696 -649,14.0,22.0,-1.9683489489016612,3.976064876781356 -649,15.0,11.0,-1.9519977922801688,4.104359379111847 -649,15.0,15.0,3.271064728633931,-8.94513365126506 -649,15.0,16.0,-1.3190669363537617,4.8407742721532125 -649,16.0,9.0,-3.956039125715353,10.317447719844054 -649,16.0,15.0,-1.3190669363537617,4.8407742721532125 -649,16.0,16.0,5.275106062069114,-15.158221991997266 -649,17.0,14.0,-1.8108011504072024,3.687418931630696 -649,17.0,17.0,4.886487584415919,-9.906177730909668 -649,17.0,18.0,-3.0756864340087167,6.218758799278971 -649,18.0,17.0,-3.0756864340087167,6.218758799278971 -649,18.0,18.0,3.0756864340087167,-6.218758799278971 -649,19.0,9.0,-1.7848303152666305,3.98535828943083 -649,19.0,19.0,1.7848303152666305,-3.98535828943083 -649,20.0,9.0,-5.101853820159654,10.98071411292983 -649,20.0,20.0,21.876495189895888,-45.10843276170355 -649,20.0,21.0,-16.774641369736234,34.127718648773715 -649,21.0,9.0,-2.619319553382597,5.400770303329455 -649,21.0,20.0,-16.774641369736234,34.127718648773715 -649,21.0,21.0,21.93449907537439,-43.48289181517921 -649,21.0,23.0,-2.5405381522555563,3.95440286307604 -649,22.0,14.0,-1.9683489489016612,3.976064876781356 -649,22.0,22.0,3.429754555384988,-6.965303617315433 -649,22.0,23.0,-1.4614056064833263,2.989238740534077 -649,23.0,21.0,-2.5405381522555563,3.95440286307604 -649,23.0,22.0,-1.4614056064833263,2.989238740534077 -649,23.0,23.0,5.311836702613133,-9.188263657315172 -649,23.0,24.0,-1.3098929438742493,2.287622053705056 -649,24.0,23.0,-1.3098929438742493,2.287622053705056 -649,24.0,24.0,4.495715080321987,-7.864978761969621 -649,24.0,25.0,-1.2165301194494855,1.8171440463475024 -649,24.0,26.0,-1.9692920169982515,3.760212661917064 -649,25.0,24.0,-1.2165301194494855,1.8171440463475024 -649,25.0,25.0,1.2165301194494855,-1.8171440463475024 -649,26.0,24.0,-1.9692920169982515,3.760212661917064 -649,26.0,26.0,3.652281470778589,-9.46044252232512 -649,26.0,27.0,0.0,2.608731947574922 -649,26.0,28.0,-0.99553355095268,1.881005840357816 -649,26.0,29.0,-0.6874559028276572,1.293971494797717 -649,27.0,5.0,-4.362844058012917,15.463571542897856 -649,27.0,7.0,-1.4439790613954469,4.540814658476248 -649,27.0,26.0,0.0,2.608731947574922 -649,27.0,27.0,5.806823119408364,-22.67145722159613 -649,28.0,26.0,-0.99553355095268,1.881005840357816 -649,28.0,28.0,1.9075867579849564,-3.604364401207048 -649,28.0,29.0,-0.9120532070322764,1.7233585608492326 -649,29.0,26.0,-0.6874559028276572,1.293971494797717 -649,29.0,28.0,-0.9120532070322764,1.7233585608492326 -649,29.0,29.0,1.5995091098599337,-3.0173300556469496 -650,0.0,0.0,1.5408698687669766,-5.611274830095233 -650,0.0,2.0,-1.5408698687669766,5.631674830095234 -650,1.0,1.0,4.527635985638374,-15.028336051872673 -650,1.0,3.0,-1.7055303166990268,5.1973792282565086 -650,1.0,4.0,-1.1359607881738778,4.772479328281356 -650,1.0,5.0,-1.6861448807654689,5.116477495334806 -650,2.0,0.0,-1.5408698687669766,5.631674830095234 -650,2.0,2.0,9.736318911079088,-29.13794745915803 -650,2.0,3.0,-8.19544904231211,23.5308726290628 -650,3.0,1.0,-1.7055303166990268,5.1973792282565086 -650,3.0,2.0,-8.19544904231211,23.5308726290628 -650,3.0,3.0,16.314103089185693,-55.509410535254254 -650,3.0,5.0,-6.413123730174556,22.31120356548123 -650,3.0,11.0,0.0,4.191255364806866 -650,4.0,1.0,-1.1359607881738778,4.772479328281356 -650,4.0,4.0,4.089980824135861,-12.190647245055052 -650,4.0,6.0,-2.954020035961983,7.449267916773697 -650,5.0,1.0,-1.6861448807654689,5.116477495334806 -650,5.0,3.0,-6.413123730174556,22.31120356548123 -650,5.0,5.0,18.75142084505357,-71.81153345505078 -650,5.0,7.0,-6.289308176100628,22.0125786163522 -650,5.0,8.0,0.0,4.915840805411357 -650,5.0,9.0,0.0,1.8561002591115965 -650,5.0,27.0,-4.362844058012917,15.463571542897856 -650,6.0,4.0,-2.954020035961983,7.449267916773697 -650,6.0,6.0,2.954020035961983,-7.439067916773697 -650,7.0,5.0,-6.289308176100628,22.0125786163522 -650,7.0,7.0,7.733287237496075,-26.527493274828448 -650,7.0,27.0,-1.4439790613954469,4.540814658476248 -650,8.0,5.0,0.0,4.915840805411357 -650,8.0,8.0,0.0,-18.706293706293707 -650,8.0,9.0,0.0,9.090909090909092 -650,8.0,10.0,0.0,4.807692307692308 -650,9.0,5.0,0.0,1.8561002591115965 -650,9.0,8.0,0.0,9.090909090909092 -650,9.0,9.0,13.462042814524237,-41.3837606675224 -650,9.0,16.0,-3.956039125715353,10.317447719844054 -650,9.0,19.0,-1.7848303152666305,3.98535828943083 -650,9.0,20.0,-5.101853820159654,10.98071411292983 -650,9.0,21.0,-2.619319553382597,5.400770303329455 -650,10.0,8.0,0.0,4.807692307692308 -650,10.0,10.0,0.0,-4.807692307692308 -650,11.0,3.0,0.0,4.191255364806866 -650,11.0,11.0,6.573961583776156,-24.424167659260668 -650,11.0,12.0,0.0,7.142857142857143 -650,11.0,13.0,-1.5265676088395577,3.1734252729654173 -650,11.0,14.0,-3.0953961826564296,6.097275864326261 -650,11.0,15.0,-1.9519977922801688,4.104359379111847 -650,12.0,11.0,0.0,7.142857142857143 -650,12.0,12.0,0.0,-7.142857142857143 -650,13.0,11.0,-1.5265676088395577,3.1734252729654173 -650,13.0,13.0,4.01751987283902,-5.424299332335067 -650,13.0,14.0,-2.4909522639994623,2.250874059369649 -650,14.0,11.0,-3.0953961826564296,6.097275864326261 -650,14.0,13.0,-2.4909522639994623,2.250874059369649 -650,14.0,14.0,9.365498545964757,-16.01163373210796 -650,14.0,17.0,-1.8108011504072024,3.687418931630696 -650,14.0,22.0,-1.9683489489016612,3.976064876781356 -650,15.0,11.0,-1.9519977922801688,4.104359379111847 -650,15.0,15.0,3.271064728633931,-8.94513365126506 -650,15.0,16.0,-1.3190669363537617,4.8407742721532125 -650,16.0,9.0,-3.956039125715353,10.317447719844054 -650,16.0,15.0,-1.3190669363537617,4.8407742721532125 -650,16.0,16.0,5.275106062069114,-15.158221991997266 -650,17.0,14.0,-1.8108011504072024,3.687418931630696 -650,17.0,17.0,4.886487584415919,-9.906177730909668 -650,17.0,18.0,-3.0756864340087167,6.218758799278971 -650,18.0,17.0,-3.0756864340087167,6.218758799278971 -650,18.0,18.0,8.958039375185187,-17.98346468163191 -650,18.0,19.0,-5.88235294117647,11.76470588235294 -650,19.0,9.0,-1.7848303152666305,3.98535828943083 -650,19.0,18.0,-5.88235294117647,11.76470588235294 -650,19.0,19.0,7.6671832564431,-15.75006417178377 -650,20.0,9.0,-5.101853820159654,10.98071411292983 -650,20.0,20.0,21.876495189895888,-45.10843276170355 -650,20.0,21.0,-16.774641369736234,34.127718648773715 -650,21.0,9.0,-2.619319553382597,5.400770303329455 -650,21.0,20.0,-16.774641369736234,34.127718648773715 -650,21.0,21.0,21.93449907537439,-43.48289181517921 -650,21.0,23.0,-2.5405381522555563,3.95440286307604 -650,22.0,14.0,-1.9683489489016612,3.976064876781356 -650,22.0,22.0,3.429754555384988,-6.965303617315433 -650,22.0,23.0,-1.4614056064833263,2.989238740534077 -650,23.0,21.0,-2.5405381522555563,3.95440286307604 -650,23.0,22.0,-1.4614056064833263,2.989238740534077 -650,23.0,23.0,5.311836702613133,-9.188263657315172 -650,23.0,24.0,-1.3098929438742493,2.287622053705056 -650,24.0,23.0,-1.3098929438742493,2.287622053705056 -650,24.0,24.0,4.495715080321987,-7.864978761969621 -650,24.0,25.0,-1.2165301194494855,1.8171440463475024 -650,24.0,26.0,-1.9692920169982515,3.760212661917064 -650,25.0,24.0,-1.2165301194494855,1.8171440463475024 -650,25.0,25.0,1.2165301194494855,-1.8171440463475024 -650,26.0,24.0,-1.9692920169982515,3.760212661917064 -650,26.0,26.0,3.652281470778589,-9.46044252232512 -650,26.0,27.0,0.0,2.608731947574922 -650,26.0,28.0,-0.99553355095268,1.881005840357816 -650,26.0,29.0,-0.6874559028276572,1.293971494797717 -650,27.0,5.0,-4.362844058012917,15.463571542897856 -650,27.0,7.0,-1.4439790613954469,4.540814658476248 -650,27.0,26.0,0.0,2.608731947574922 -650,27.0,27.0,5.806823119408364,-22.67145722159613 -650,28.0,26.0,-0.99553355095268,1.881005840357816 -650,28.0,28.0,1.9075867579849564,-3.604364401207048 -650,28.0,29.0,-0.9120532070322764,1.7233585608492326 -650,29.0,26.0,-0.6874559028276572,1.293971494797717 -650,29.0,28.0,-0.9120532070322764,1.7233585608492326 -650,29.0,29.0,1.5995091098599337,-3.0173300556469496 -651,0.0,0.0,6.765516048652632,-21.23160167089863 -651,0.0,1.0,-5.224646179885656,15.646726840803398 -651,0.0,2.0,-1.5408698687669766,5.631674830095234 -651,1.0,0.0,-5.224646179885656,15.646726840803398 -651,1.0,1.0,9.75228216552403,-30.648662892676068 -651,1.0,3.0,-1.7055303166990268,5.1973792282565086 -651,1.0,4.0,-1.1359607881738778,4.772479328281356 -651,1.0,5.0,-1.6861448807654689,5.116477495334806 -651,2.0,0.0,-1.5408698687669766,5.631674830095234 -651,2.0,2.0,9.736318911079088,-29.13794745915803 -651,2.0,3.0,-8.19544904231211,23.5308726290628 -651,3.0,1.0,-1.7055303166990268,5.1973792282565086 -651,3.0,2.0,-8.19544904231211,23.5308726290628 -651,3.0,3.0,16.314103089185693,-55.509410535254254 -651,3.0,5.0,-6.413123730174556,22.31120356548123 -651,3.0,11.0,0.0,4.191255364806866 -651,4.0,1.0,-1.1359607881738778,4.772479328281356 -651,4.0,4.0,4.089980824135861,-12.190647245055052 -651,4.0,6.0,-2.954020035961983,7.449267916773697 -651,5.0,1.0,-1.6861448807654689,5.116477495334806 -651,5.0,3.0,-6.413123730174556,22.31120356548123 -651,5.0,5.0,22.341631269034565,-82.8291478657789 -651,5.0,6.0,-3.590210423980992,11.02611441072814 -651,5.0,7.0,-6.289308176100628,22.0125786163522 -651,5.0,8.0,0.0,4.915840805411357 -651,5.0,9.0,0.0,1.8561002591115965 -651,5.0,27.0,-4.362844058012917,15.463571542897856 -651,6.0,4.0,-2.954020035961983,7.449267916773697 -651,6.0,5.0,-3.590210423980992,11.02611441072814 -651,6.0,6.0,6.544230459942975,-18.45668232750184 -651,7.0,5.0,-6.289308176100628,22.0125786163522 -651,7.0,7.0,7.733287237496075,-26.527493274828448 -651,7.0,27.0,-1.4439790613954469,4.540814658476248 -651,8.0,5.0,0.0,4.915840805411357 -651,8.0,8.0,0.0,-18.706293706293707 -651,8.0,9.0,0.0,9.090909090909092 -651,8.0,10.0,0.0,4.807692307692308 -651,9.0,5.0,0.0,1.8561002591115965 -651,9.0,8.0,0.0,9.090909090909092 -651,9.0,9.0,11.677212499257603,-37.39840237809157 -651,9.0,16.0,-3.956039125715353,10.317447719844054 -651,9.0,20.0,-5.101853820159654,10.98071411292983 -651,9.0,21.0,-2.619319553382597,5.400770303329455 -651,10.0,8.0,0.0,4.807692307692308 -651,10.0,10.0,0.0,-4.807692307692308 -651,11.0,3.0,0.0,4.191255364806866 -651,11.0,11.0,6.573961583776156,-24.424167659260668 -651,11.0,12.0,0.0,7.142857142857143 -651,11.0,13.0,-1.5265676088395577,3.1734252729654173 -651,11.0,14.0,-3.0953961826564296,6.097275864326261 -651,11.0,15.0,-1.9519977922801688,4.104359379111847 -651,12.0,11.0,0.0,7.142857142857143 -651,12.0,12.0,0.0,-7.142857142857143 -651,13.0,11.0,-1.5265676088395577,3.1734252729654173 -651,13.0,13.0,4.01751987283902,-5.424299332335067 -651,13.0,14.0,-2.4909522639994623,2.250874059369649 -651,14.0,11.0,-3.0953961826564296,6.097275864326261 -651,14.0,13.0,-2.4909522639994623,2.250874059369649 -651,14.0,14.0,9.365498545964757,-16.01163373210796 -651,14.0,17.0,-1.8108011504072024,3.687418931630696 -651,14.0,22.0,-1.9683489489016612,3.976064876781356 -651,15.0,11.0,-1.9519977922801688,4.104359379111847 -651,15.0,15.0,3.271064728633931,-8.94513365126506 -651,15.0,16.0,-1.3190669363537617,4.8407742721532125 -651,16.0,9.0,-3.956039125715353,10.317447719844054 -651,16.0,15.0,-1.3190669363537617,4.8407742721532125 -651,16.0,16.0,5.275106062069114,-15.158221991997266 -651,17.0,14.0,-1.8108011504072024,3.687418931630696 -651,17.0,17.0,4.886487584415919,-9.906177730909668 -651,17.0,18.0,-3.0756864340087167,6.218758799278971 -651,18.0,17.0,-3.0756864340087167,6.218758799278971 -651,18.0,18.0,8.958039375185187,-17.98346468163191 -651,18.0,19.0,-5.88235294117647,11.76470588235294 -651,19.0,18.0,-5.88235294117647,11.76470588235294 -651,19.0,19.0,5.88235294117647,-11.76470588235294 -651,20.0,9.0,-5.101853820159654,10.98071411292983 -651,20.0,20.0,21.876495189895888,-45.10843276170355 -651,20.0,21.0,-16.774641369736234,34.127718648773715 -651,21.0,9.0,-2.619319553382597,5.400770303329455 -651,21.0,20.0,-16.774641369736234,34.127718648773715 -651,21.0,21.0,21.93449907537439,-43.48289181517921 -651,21.0,23.0,-2.5405381522555563,3.95440286307604 -651,22.0,14.0,-1.9683489489016612,3.976064876781356 -651,22.0,22.0,3.429754555384988,-6.965303617315433 -651,22.0,23.0,-1.4614056064833263,2.989238740534077 -651,23.0,21.0,-2.5405381522555563,3.95440286307604 -651,23.0,22.0,-1.4614056064833263,2.989238740534077 -651,23.0,23.0,5.311836702613133,-9.188263657315172 -651,23.0,24.0,-1.3098929438742493,2.287622053705056 -651,24.0,23.0,-1.3098929438742493,2.287622053705056 -651,24.0,24.0,4.495715080321987,-7.864978761969621 -651,24.0,25.0,-1.2165301194494855,1.8171440463475024 -651,24.0,26.0,-1.9692920169982515,3.760212661917064 -651,25.0,24.0,-1.2165301194494855,1.8171440463475024 -651,25.0,25.0,1.2165301194494855,-1.8171440463475024 -651,26.0,24.0,-1.9692920169982515,3.760212661917064 -651,26.0,26.0,3.652281470778589,-9.46044252232512 -651,26.0,27.0,0.0,2.608731947574922 -651,26.0,28.0,-0.99553355095268,1.881005840357816 -651,26.0,29.0,-0.6874559028276572,1.293971494797717 -651,27.0,5.0,-4.362844058012917,15.463571542897856 -651,27.0,7.0,-1.4439790613954469,4.540814658476248 -651,27.0,26.0,0.0,2.608731947574922 -651,27.0,27.0,5.806823119408364,-22.67145722159613 -651,28.0,26.0,-0.99553355095268,1.881005840357816 -651,28.0,28.0,1.9075867579849564,-3.604364401207048 -651,28.0,29.0,-0.9120532070322764,1.7233585608492326 -651,29.0,26.0,-0.6874559028276572,1.293971494797717 -651,29.0,28.0,-0.9120532070322764,1.7233585608492326 -651,29.0,29.0,1.5995091098599337,-3.0173300556469496 -652,0.0,0.0,6.765516048652632,-21.23160167089863 -652,0.0,1.0,-5.224646179885656,15.646726840803398 -652,0.0,2.0,-1.5408698687669766,5.631674830095234 -652,1.0,0.0,-5.224646179885656,15.646726840803398 -652,1.0,1.0,9.75228216552403,-30.648662892676068 -652,1.0,3.0,-1.7055303166990268,5.1973792282565086 -652,1.0,4.0,-1.1359607881738778,4.772479328281356 -652,1.0,5.0,-1.6861448807654689,5.116477495334806 -652,2.0,0.0,-1.5408698687669766,5.631674830095234 -652,2.0,2.0,9.736318911079088,-29.13794745915803 -652,2.0,3.0,-8.19544904231211,23.5308726290628 -652,3.0,1.0,-1.7055303166990268,5.1973792282565086 -652,3.0,2.0,-8.19544904231211,23.5308726290628 -652,3.0,3.0,9.900979359011137,-28.705651857319307 -652,4.0,1.0,-1.1359607881738778,4.772479328281356 -652,4.0,4.0,4.089980824135861,-12.190647245055052 -652,4.0,6.0,-2.954020035961983,7.449267916773697 -652,5.0,1.0,-1.6861448807654689,5.116477495334806 -652,5.0,5.0,15.928507538860009,-60.52244430029767 -652,5.0,6.0,-3.590210423980992,11.02611441072814 -652,5.0,7.0,-6.289308176100628,22.0125786163522 -652,5.0,8.0,0.0,4.915840805411357 -652,5.0,9.0,0.0,1.8561002591115965 -652,5.0,27.0,-4.362844058012917,15.463571542897856 -652,6.0,4.0,-2.954020035961983,7.449267916773697 -652,6.0,5.0,-3.590210423980992,11.02611441072814 -652,6.0,6.0,6.544230459942975,-18.45668232750184 -652,7.0,5.0,-6.289308176100628,22.0125786163522 -652,7.0,7.0,7.733287237496075,-26.527493274828448 -652,7.0,27.0,-1.4439790613954469,4.540814658476248 -652,8.0,5.0,0.0,4.915840805411357 -652,8.0,8.0,0.0,-18.706293706293707 -652,8.0,9.0,0.0,9.090909090909092 -652,8.0,10.0,0.0,4.807692307692308 -652,9.0,5.0,0.0,1.8561002591115965 -652,9.0,8.0,0.0,9.090909090909092 -652,9.0,9.0,13.462042814524237,-41.3837606675224 -652,9.0,16.0,-3.956039125715353,10.317447719844054 -652,9.0,19.0,-1.7848303152666305,3.98535828943083 -652,9.0,20.0,-5.101853820159654,10.98071411292983 -652,9.0,21.0,-2.619319553382597,5.400770303329455 -652,10.0,8.0,0.0,4.807692307692308 -652,10.0,10.0,0.0,-4.807692307692308 -652,11.0,11.0,6.573961583776156,-20.517917659260668 -652,11.0,12.0,0.0,7.142857142857143 -652,11.0,13.0,-1.5265676088395577,3.1734252729654173 -652,11.0,14.0,-3.0953961826564296,6.097275864326261 -652,11.0,15.0,-1.9519977922801688,4.104359379111847 -652,12.0,11.0,0.0,7.142857142857143 -652,12.0,12.0,0.0,-7.142857142857143 -652,13.0,11.0,-1.5265676088395577,3.1734252729654173 -652,13.0,13.0,4.01751987283902,-5.424299332335067 -652,13.0,14.0,-2.4909522639994623,2.250874059369649 -652,14.0,11.0,-3.0953961826564296,6.097275864326261 -652,14.0,13.0,-2.4909522639994623,2.250874059369649 -652,14.0,14.0,9.365498545964757,-16.01163373210796 -652,14.0,17.0,-1.8108011504072024,3.687418931630696 -652,14.0,22.0,-1.9683489489016612,3.976064876781356 -652,15.0,11.0,-1.9519977922801688,4.104359379111847 -652,15.0,15.0,3.271064728633931,-8.94513365126506 -652,15.0,16.0,-1.3190669363537617,4.8407742721532125 -652,16.0,9.0,-3.956039125715353,10.317447719844054 -652,16.0,15.0,-1.3190669363537617,4.8407742721532125 -652,16.0,16.0,5.275106062069114,-15.158221991997266 -652,17.0,14.0,-1.8108011504072024,3.687418931630696 -652,17.0,17.0,4.886487584415919,-9.906177730909668 -652,17.0,18.0,-3.0756864340087167,6.218758799278971 -652,18.0,17.0,-3.0756864340087167,6.218758799278971 -652,18.0,18.0,8.958039375185187,-17.98346468163191 -652,18.0,19.0,-5.88235294117647,11.76470588235294 -652,19.0,9.0,-1.7848303152666305,3.98535828943083 -652,19.0,18.0,-5.88235294117647,11.76470588235294 -652,19.0,19.0,7.6671832564431,-15.75006417178377 -652,20.0,9.0,-5.101853820159654,10.98071411292983 -652,20.0,20.0,5.101853820159654,-10.98071411292983 -652,21.0,9.0,-2.619319553382597,5.400770303329455 -652,21.0,21.0,5.159857705638154,-9.355173166405494 -652,21.0,23.0,-2.5405381522555563,3.95440286307604 -652,22.0,14.0,-1.9683489489016612,3.976064876781356 -652,22.0,22.0,1.9683489489016612,-3.976064876781356 -652,23.0,21.0,-2.5405381522555563,3.95440286307604 -652,23.0,23.0,3.850431096129806,-6.199024916781094 -652,23.0,24.0,-1.3098929438742493,2.287622053705056 -652,24.0,23.0,-1.3098929438742493,2.287622053705056 -652,24.0,24.0,4.495715080321987,-7.864978761969621 -652,24.0,25.0,-1.2165301194494855,1.8171440463475024 -652,24.0,26.0,-1.9692920169982515,3.760212661917064 -652,25.0,24.0,-1.2165301194494855,1.8171440463475024 -652,25.0,25.0,1.2165301194494855,-1.8171440463475024 -652,26.0,24.0,-1.9692920169982515,3.760212661917064 -652,26.0,26.0,3.652281470778589,-9.46044252232512 -652,26.0,27.0,0.0,2.608731947574922 -652,26.0,28.0,-0.99553355095268,1.881005840357816 -652,26.0,29.0,-0.6874559028276572,1.293971494797717 -652,27.0,5.0,-4.362844058012917,15.463571542897856 -652,27.0,7.0,-1.4439790613954469,4.540814658476248 -652,27.0,26.0,0.0,2.608731947574922 -652,27.0,27.0,5.806823119408364,-22.67145722159613 -652,28.0,26.0,-0.99553355095268,1.881005840357816 -652,28.0,28.0,1.9075867579849564,-3.604364401207048 -652,28.0,29.0,-0.9120532070322764,1.7233585608492326 -652,29.0,26.0,-0.6874559028276572,1.293971494797717 -652,29.0,28.0,-0.9120532070322764,1.7233585608492326 -652,29.0,29.0,1.5995091098599337,-3.0173300556469496 -653,0.0,0.0,6.765516048652632,-21.23160167089863 -653,0.0,1.0,-5.224646179885656,15.646726840803398 -653,0.0,2.0,-1.5408698687669766,5.631674830095234 -653,1.0,0.0,-5.224646179885656,15.646726840803398 -653,1.0,1.0,9.75228216552403,-30.648662892676068 -653,1.0,3.0,-1.7055303166990268,5.1973792282565086 -653,1.0,4.0,-1.1359607881738778,4.772479328281356 -653,1.0,5.0,-1.6861448807654689,5.116477495334806 -653,2.0,0.0,-1.5408698687669766,5.631674830095234 -653,2.0,2.0,9.736318911079088,-29.13794745915803 -653,2.0,3.0,-8.19544904231211,23.5308726290628 -653,3.0,1.0,-1.7055303166990268,5.1973792282565086 -653,3.0,2.0,-8.19544904231211,23.5308726290628 -653,3.0,3.0,16.314103089185693,-55.509410535254254 -653,3.0,5.0,-6.413123730174556,22.31120356548123 -653,3.0,11.0,0.0,4.191255364806866 -653,4.0,1.0,-1.1359607881738778,4.772479328281356 -653,4.0,4.0,4.089980824135861,-12.190647245055052 -653,4.0,6.0,-2.954020035961983,7.449267916773697 -653,5.0,1.0,-1.6861448807654689,5.116477495334806 -653,5.0,3.0,-6.413123730174556,22.31120356548123 -653,5.0,5.0,22.341631269034565,-80.91366772221689 -653,5.0,6.0,-3.590210423980992,11.02611441072814 -653,5.0,7.0,-6.289308176100628,22.0125786163522 -653,5.0,8.0,0.0,4.915840805411357 -653,5.0,27.0,-4.362844058012917,15.463571542897856 -653,6.0,4.0,-2.954020035961983,7.449267916773697 -653,6.0,5.0,-3.590210423980992,11.02611441072814 -653,6.0,6.0,6.544230459942975,-18.45668232750184 -653,7.0,5.0,-6.289308176100628,22.0125786163522 -653,7.0,7.0,6.289308176100628,-22.0080786163522 -653,8.0,5.0,0.0,4.915840805411357 -653,8.0,8.0,0.0,-18.706293706293707 -653,8.0,9.0,0.0,9.090909090909092 -653,8.0,10.0,0.0,4.807692307692308 -653,9.0,8.0,0.0,9.090909090909092 -653,9.0,9.0,13.462042814524237,-39.58519951644326 -653,9.0,16.0,-3.956039125715353,10.317447719844054 -653,9.0,19.0,-1.7848303152666305,3.98535828943083 -653,9.0,20.0,-5.101853820159654,10.98071411292983 -653,9.0,21.0,-2.619319553382597,5.400770303329455 -653,10.0,8.0,0.0,4.807692307692308 -653,10.0,10.0,0.0,-4.807692307692308 -653,11.0,3.0,0.0,4.191255364806866 -653,11.0,11.0,4.621963791495987,-20.31980828014882 -653,11.0,12.0,0.0,7.142857142857143 -653,11.0,13.0,-1.5265676088395577,3.1734252729654173 -653,11.0,14.0,-3.0953961826564296,6.097275864326261 -653,12.0,11.0,0.0,7.142857142857143 -653,12.0,12.0,0.0,-7.142857142857143 -653,13.0,11.0,-1.5265676088395577,3.1734252729654173 -653,13.0,13.0,4.01751987283902,-5.424299332335067 -653,13.0,14.0,-2.4909522639994623,2.250874059369649 -653,14.0,11.0,-3.0953961826564296,6.097275864326261 -653,14.0,13.0,-2.4909522639994623,2.250874059369649 -653,14.0,14.0,9.365498545964757,-16.01163373210796 -653,14.0,17.0,-1.8108011504072024,3.687418931630696 -653,14.0,22.0,-1.9683489489016612,3.976064876781356 -653,15.0,15.0,1.3190669363537617,-4.8407742721532125 -653,15.0,16.0,-1.3190669363537617,4.8407742721532125 -653,16.0,9.0,-3.956039125715353,10.317447719844054 -653,16.0,15.0,-1.3190669363537617,4.8407742721532125 -653,16.0,16.0,5.275106062069114,-15.158221991997266 -653,17.0,14.0,-1.8108011504072024,3.687418931630696 -653,17.0,17.0,4.886487584415919,-9.906177730909668 -653,17.0,18.0,-3.0756864340087167,6.218758799278971 -653,18.0,17.0,-3.0756864340087167,6.218758799278971 -653,18.0,18.0,8.958039375185187,-17.98346468163191 -653,18.0,19.0,-5.88235294117647,11.76470588235294 -653,19.0,9.0,-1.7848303152666305,3.98535828943083 -653,19.0,18.0,-5.88235294117647,11.76470588235294 -653,19.0,19.0,7.6671832564431,-15.75006417178377 -653,20.0,9.0,-5.101853820159654,10.98071411292983 -653,20.0,20.0,21.876495189895888,-45.10843276170355 -653,20.0,21.0,-16.774641369736234,34.127718648773715 -653,21.0,9.0,-2.619319553382597,5.400770303329455 -653,21.0,20.0,-16.774641369736234,34.127718648773715 -653,21.0,21.0,21.93449907537439,-43.48289181517921 -653,21.0,23.0,-2.5405381522555563,3.95440286307604 -653,22.0,14.0,-1.9683489489016612,3.976064876781356 -653,22.0,22.0,3.429754555384988,-6.965303617315433 -653,22.0,23.0,-1.4614056064833263,2.989238740534077 -653,23.0,21.0,-2.5405381522555563,3.95440286307604 -653,23.0,22.0,-1.4614056064833263,2.989238740534077 -653,23.0,23.0,5.311836702613133,-9.188263657315172 -653,23.0,24.0,-1.3098929438742493,2.287622053705056 -653,24.0,23.0,-1.3098929438742493,2.287622053705056 -653,24.0,24.0,2.526423063323735,-4.104766100052558 -653,24.0,25.0,-1.2165301194494855,1.8171440463475024 -653,25.0,24.0,-1.2165301194494855,1.8171440463475024 -653,25.0,25.0,1.2165301194494855,-1.8171440463475024 -653,26.0,26.0,1.6829894537803372,-5.700229860408058 -653,26.0,27.0,0.0,2.608731947574922 -653,26.0,28.0,-0.99553355095268,1.881005840357816 -653,26.0,29.0,-0.6874559028276572,1.293971494797717 -653,27.0,5.0,-4.362844058012917,15.463571542897856 -653,27.0,26.0,0.0,2.608731947574922 -653,27.0,27.0,4.362844058012917,-18.15204256311988 -653,28.0,26.0,-0.99553355095268,1.881005840357816 -653,28.0,28.0,1.9075867579849564,-3.604364401207048 -653,28.0,29.0,-0.9120532070322764,1.7233585608492326 -653,29.0,26.0,-0.6874559028276572,1.293971494797717 -653,29.0,28.0,-0.9120532070322764,1.7233585608492326 -653,29.0,29.0,1.5995091098599337,-3.0173300556469496 -654,0.0,0.0,6.765516048652632,-21.23160167089863 -654,0.0,1.0,-5.224646179885656,15.646726840803398 -654,0.0,2.0,-1.5408698687669766,5.631674830095234 -654,1.0,0.0,-5.224646179885656,15.646726840803398 -654,1.0,1.0,9.75228216552403,-30.648662892676068 -654,1.0,3.0,-1.7055303166990268,5.1973792282565086 -654,1.0,4.0,-1.1359607881738778,4.772479328281356 -654,1.0,5.0,-1.6861448807654689,5.116477495334806 -654,2.0,0.0,-1.5408698687669766,5.631674830095234 -654,2.0,2.0,9.736318911079088,-29.13794745915803 -654,2.0,3.0,-8.19544904231211,23.5308726290628 -654,3.0,1.0,-1.7055303166990268,5.1973792282565086 -654,3.0,2.0,-8.19544904231211,23.5308726290628 -654,3.0,3.0,16.314103089185693,-55.509410535254254 -654,3.0,5.0,-6.413123730174556,22.31120356548123 -654,3.0,11.0,0.0,4.191255364806866 -654,4.0,1.0,-1.1359607881738778,4.772479328281356 -654,4.0,4.0,4.089980824135861,-12.190647245055052 -654,4.0,6.0,-2.954020035961983,7.449267916773697 -654,5.0,1.0,-1.6861448807654689,5.116477495334806 -654,5.0,3.0,-6.413123730174556,22.31120356548123 -654,5.0,5.0,17.978787211021647,-67.37207632288106 -654,5.0,6.0,-3.590210423980992,11.02611441072814 -654,5.0,7.0,-6.289308176100628,22.0125786163522 -654,5.0,8.0,0.0,4.915840805411357 -654,5.0,9.0,0.0,1.8561002591115965 -654,6.0,4.0,-2.954020035961983,7.449267916773697 -654,6.0,5.0,-3.590210423980992,11.02611441072814 -654,6.0,6.0,6.544230459942975,-18.45668232750184 -654,7.0,5.0,-6.289308176100628,22.0125786163522 -654,7.0,7.0,7.733287237496075,-26.527493274828448 -654,7.0,27.0,-1.4439790613954469,4.540814658476248 -654,8.0,5.0,0.0,4.915840805411357 -654,8.0,8.0,0.0,-18.706293706293707 -654,8.0,9.0,0.0,9.090909090909092 -654,8.0,10.0,0.0,4.807692307692308 -654,9.0,5.0,0.0,1.8561002591115965 -654,9.0,8.0,0.0,9.090909090909092 -654,9.0,9.0,13.462042814524237,-41.3837606675224 -654,9.0,16.0,-3.956039125715353,10.317447719844054 -654,9.0,19.0,-1.7848303152666305,3.98535828943083 -654,9.0,20.0,-5.101853820159654,10.98071411292983 -654,9.0,21.0,-2.619319553382597,5.400770303329455 -654,10.0,8.0,0.0,4.807692307692308 -654,10.0,10.0,0.0,-4.807692307692308 -654,11.0,3.0,0.0,4.191255364806866 -654,11.0,11.0,6.573961583776156,-24.424167659260668 -654,11.0,12.0,0.0,7.142857142857143 -654,11.0,13.0,-1.5265676088395577,3.1734252729654173 -654,11.0,14.0,-3.0953961826564296,6.097275864326261 -654,11.0,15.0,-1.9519977922801688,4.104359379111847 -654,12.0,11.0,0.0,7.142857142857143 -654,12.0,12.0,0.0,-7.142857142857143 -654,13.0,11.0,-1.5265676088395577,3.1734252729654173 -654,13.0,13.0,4.01751987283902,-5.424299332335067 -654,13.0,14.0,-2.4909522639994623,2.250874059369649 -654,14.0,11.0,-3.0953961826564296,6.097275864326261 -654,14.0,13.0,-2.4909522639994623,2.250874059369649 -654,14.0,14.0,9.365498545964757,-16.01163373210796 -654,14.0,17.0,-1.8108011504072024,3.687418931630696 -654,14.0,22.0,-1.9683489489016612,3.976064876781356 -654,15.0,11.0,-1.9519977922801688,4.104359379111847 -654,15.0,15.0,3.271064728633931,-8.94513365126506 -654,15.0,16.0,-1.3190669363537617,4.8407742721532125 -654,16.0,9.0,-3.956039125715353,10.317447719844054 -654,16.0,15.0,-1.3190669363537617,4.8407742721532125 -654,16.0,16.0,5.275106062069114,-15.158221991997266 -654,17.0,14.0,-1.8108011504072024,3.687418931630696 -654,17.0,17.0,4.886487584415919,-9.906177730909668 -654,17.0,18.0,-3.0756864340087167,6.218758799278971 -654,18.0,17.0,-3.0756864340087167,6.218758799278971 -654,18.0,18.0,8.958039375185187,-17.98346468163191 -654,18.0,19.0,-5.88235294117647,11.76470588235294 -654,19.0,9.0,-1.7848303152666305,3.98535828943083 -654,19.0,18.0,-5.88235294117647,11.76470588235294 -654,19.0,19.0,7.6671832564431,-15.75006417178377 -654,20.0,9.0,-5.101853820159654,10.98071411292983 -654,20.0,20.0,21.876495189895888,-45.10843276170355 -654,20.0,21.0,-16.774641369736234,34.127718648773715 -654,21.0,9.0,-2.619319553382597,5.400770303329455 -654,21.0,20.0,-16.774641369736234,34.127718648773715 -654,21.0,21.0,21.93449907537439,-43.48289181517921 -654,21.0,23.0,-2.5405381522555563,3.95440286307604 -654,22.0,14.0,-1.9683489489016612,3.976064876781356 -654,22.0,22.0,3.429754555384988,-6.965303617315433 -654,22.0,23.0,-1.4614056064833263,2.989238740534077 -654,23.0,21.0,-2.5405381522555563,3.95440286307604 -654,23.0,22.0,-1.4614056064833263,2.989238740534077 -654,23.0,23.0,5.311836702613133,-9.188263657315172 -654,23.0,24.0,-1.3098929438742493,2.287622053705056 -654,24.0,23.0,-1.3098929438742493,2.287622053705056 -654,24.0,24.0,4.495715080321987,-7.864978761969621 -654,24.0,25.0,-1.2165301194494855,1.8171440463475024 -654,24.0,26.0,-1.9692920169982515,3.760212661917064 -654,25.0,24.0,-1.2165301194494855,1.8171440463475024 -654,25.0,25.0,1.2165301194494855,-1.8171440463475024 -654,26.0,24.0,-1.9692920169982515,3.760212661917064 -654,26.0,26.0,3.652281470778589,-9.46044252232512 -654,26.0,27.0,0.0,2.608731947574922 -654,26.0,28.0,-0.99553355095268,1.881005840357816 -654,26.0,29.0,-0.6874559028276572,1.293971494797717 -654,27.0,7.0,-1.4439790613954469,4.540814658476248 -654,27.0,26.0,0.0,2.608731947574922 -654,27.0,27.0,1.4439790613954469,-7.214385678698274 -654,28.0,26.0,-0.99553355095268,1.881005840357816 -654,28.0,28.0,1.9075867579849564,-3.604364401207048 -654,28.0,29.0,-0.9120532070322764,1.7233585608492326 -654,29.0,26.0,-0.6874559028276572,1.293971494797717 -654,29.0,28.0,-0.9120532070322764,1.7233585608492326 -654,29.0,29.0,1.5995091098599337,-3.0173300556469496 -655,0.0,0.0,5.224646179885656,-15.620326840803395 -655,0.0,1.0,-5.224646179885656,15.646726840803398 -655,1.0,0.0,-5.224646179885656,15.646726840803398 -655,1.0,1.0,9.75228216552403,-30.648662892676068 -655,1.0,3.0,-1.7055303166990268,5.1973792282565086 -655,1.0,4.0,-1.1359607881738778,4.772479328281356 -655,1.0,5.0,-1.6861448807654689,5.116477495334806 -655,2.0,2.0,8.19544904231211,-23.5266726290628 -655,2.0,3.0,-8.19544904231211,23.5308726290628 -655,3.0,1.0,-1.7055303166990268,5.1973792282565086 -655,3.0,2.0,-8.19544904231211,23.5308726290628 -655,3.0,3.0,9.900979359011137,-33.202706969773025 -655,3.0,11.0,0.0,4.191255364806866 -655,4.0,1.0,-1.1359607881738778,4.772479328281356 -655,4.0,4.0,4.089980824135861,-12.190647245055052 -655,4.0,6.0,-2.954020035961983,7.449267916773697 -655,5.0,1.0,-1.6861448807654689,5.116477495334806 -655,5.0,5.0,15.928507538860009,-60.52244430029767 -655,5.0,6.0,-3.590210423980992,11.02611441072814 -655,5.0,7.0,-6.289308176100628,22.0125786163522 -655,5.0,8.0,0.0,4.915840805411357 -655,5.0,9.0,0.0,1.8561002591115965 -655,5.0,27.0,-4.362844058012917,15.463571542897856 -655,6.0,4.0,-2.954020035961983,7.449267916773697 -655,6.0,5.0,-3.590210423980992,11.02611441072814 -655,6.0,6.0,6.544230459942975,-18.45668232750184 -655,7.0,5.0,-6.289308176100628,22.0125786163522 -655,7.0,7.0,7.733287237496075,-26.527493274828448 -655,7.0,27.0,-1.4439790613954469,4.540814658476248 -655,8.0,5.0,0.0,4.915840805411357 -655,8.0,8.0,0.0,-18.706293706293707 -655,8.0,9.0,0.0,9.090909090909092 -655,8.0,10.0,0.0,4.807692307692308 -655,9.0,5.0,0.0,1.8561002591115965 -655,9.0,8.0,0.0,9.090909090909092 -655,9.0,9.0,13.462042814524237,-41.3837606675224 -655,9.0,16.0,-3.956039125715353,10.317447719844054 -655,9.0,19.0,-1.7848303152666305,3.98535828943083 -655,9.0,20.0,-5.101853820159654,10.98071411292983 -655,9.0,21.0,-2.619319553382597,5.400770303329455 -655,10.0,8.0,0.0,4.807692307692308 -655,10.0,10.0,0.0,-4.807692307692308 -655,11.0,3.0,0.0,4.191255364806866 -655,11.0,11.0,3.478565401119727,-18.326891794934408 -655,11.0,12.0,0.0,7.142857142857143 -655,11.0,13.0,-1.5265676088395577,3.1734252729654173 -655,11.0,15.0,-1.9519977922801688,4.104359379111847 -655,12.0,11.0,0.0,7.142857142857143 -655,12.0,12.0,0.0,-7.142857142857143 -655,13.0,11.0,-1.5265676088395577,3.1734252729654173 -655,13.0,13.0,4.01751987283902,-5.424299332335067 -655,13.0,14.0,-2.4909522639994623,2.250874059369649 -655,14.0,13.0,-2.4909522639994623,2.250874059369649 -655,14.0,14.0,6.270102363308326,-9.9143578677817 -655,14.0,17.0,-1.8108011504072024,3.687418931630696 -655,14.0,22.0,-1.9683489489016612,3.976064876781356 -655,15.0,11.0,-1.9519977922801688,4.104359379111847 -655,15.0,15.0,3.271064728633931,-8.94513365126506 -655,15.0,16.0,-1.3190669363537617,4.8407742721532125 -655,16.0,9.0,-3.956039125715353,10.317447719844054 -655,16.0,15.0,-1.3190669363537617,4.8407742721532125 -655,16.0,16.0,5.275106062069114,-15.158221991997266 -655,17.0,14.0,-1.8108011504072024,3.687418931630696 -655,17.0,17.0,4.886487584415919,-9.906177730909668 -655,17.0,18.0,-3.0756864340087167,6.218758799278971 -655,18.0,17.0,-3.0756864340087167,6.218758799278971 -655,18.0,18.0,8.958039375185187,-17.98346468163191 -655,18.0,19.0,-5.88235294117647,11.76470588235294 -655,19.0,9.0,-1.7848303152666305,3.98535828943083 -655,19.0,18.0,-5.88235294117647,11.76470588235294 -655,19.0,19.0,7.6671832564431,-15.75006417178377 -655,20.0,9.0,-5.101853820159654,10.98071411292983 -655,20.0,20.0,21.876495189895888,-45.10843276170355 -655,20.0,21.0,-16.774641369736234,34.127718648773715 -655,21.0,9.0,-2.619319553382597,5.400770303329455 -655,21.0,20.0,-16.774641369736234,34.127718648773715 -655,21.0,21.0,21.93449907537439,-43.48289181517921 -655,21.0,23.0,-2.5405381522555563,3.95440286307604 -655,22.0,14.0,-1.9683489489016612,3.976064876781356 -655,22.0,22.0,3.429754555384988,-6.965303617315433 -655,22.0,23.0,-1.4614056064833263,2.989238740534077 -655,23.0,21.0,-2.5405381522555563,3.95440286307604 -655,23.0,22.0,-1.4614056064833263,2.989238740534077 -655,23.0,23.0,5.311836702613133,-9.188263657315172 -655,23.0,24.0,-1.3098929438742493,2.287622053705056 -655,24.0,23.0,-1.3098929438742493,2.287622053705056 -655,24.0,24.0,4.495715080321987,-7.864978761969621 -655,24.0,25.0,-1.2165301194494855,1.8171440463475024 -655,24.0,26.0,-1.9692920169982515,3.760212661917064 -655,25.0,24.0,-1.2165301194494855,1.8171440463475024 -655,25.0,25.0,1.2165301194494855,-1.8171440463475024 -655,26.0,24.0,-1.9692920169982515,3.760212661917064 -655,26.0,26.0,3.652281470778589,-9.46044252232512 -655,26.0,27.0,0.0,2.608731947574922 -655,26.0,28.0,-0.99553355095268,1.881005840357816 -655,26.0,29.0,-0.6874559028276572,1.293971494797717 -655,27.0,5.0,-4.362844058012917,15.463571542897856 -655,27.0,7.0,-1.4439790613954469,4.540814658476248 -655,27.0,26.0,0.0,2.608731947574922 -655,27.0,27.0,5.806823119408364,-22.67145722159613 -655,28.0,26.0,-0.99553355095268,1.881005840357816 -655,28.0,28.0,1.9075867579849564,-3.604364401207048 -655,28.0,29.0,-0.9120532070322764,1.7233585608492326 -655,29.0,26.0,-0.6874559028276572,1.293971494797717 -655,29.0,28.0,-0.9120532070322764,1.7233585608492326 -655,29.0,29.0,1.5995091098599337,-3.0173300556469496 -656,0.0,0.0,6.765516048652632,-21.23160167089863 -656,0.0,1.0,-5.224646179885656,15.646726840803398 -656,0.0,2.0,-1.5408698687669766,5.631674830095234 -656,1.0,0.0,-5.224646179885656,15.646726840803398 -656,1.0,1.0,9.75228216552403,-30.648662892676068 -656,1.0,3.0,-1.7055303166990268,5.1973792282565086 -656,1.0,4.0,-1.1359607881738778,4.772479328281356 -656,1.0,5.0,-1.6861448807654689,5.116477495334806 -656,2.0,0.0,-1.5408698687669766,5.631674830095234 -656,2.0,2.0,9.736318911079088,-29.13794745915803 -656,2.0,3.0,-8.19544904231211,23.5308726290628 -656,3.0,1.0,-1.7055303166990268,5.1973792282565086 -656,3.0,2.0,-8.19544904231211,23.5308726290628 -656,3.0,3.0,16.314103089185693,-55.509410535254254 -656,3.0,5.0,-6.413123730174556,22.31120356548123 -656,3.0,11.0,0.0,4.191255364806866 -656,4.0,1.0,-1.1359607881738778,4.772479328281356 -656,4.0,4.0,4.089980824135861,-12.190647245055052 -656,4.0,6.0,-2.954020035961983,7.449267916773697 -656,5.0,1.0,-1.6861448807654689,5.116477495334806 -656,5.0,3.0,-6.413123730174556,22.31120356548123 -656,5.0,5.0,22.341631269034565,-82.8291478657789 -656,5.0,6.0,-3.590210423980992,11.02611441072814 -656,5.0,7.0,-6.289308176100628,22.0125786163522 -656,5.0,8.0,0.0,4.915840805411357 -656,5.0,9.0,0.0,1.8561002591115965 -656,5.0,27.0,-4.362844058012917,15.463571542897856 -656,6.0,4.0,-2.954020035961983,7.449267916773697 -656,6.0,5.0,-3.590210423980992,11.02611441072814 -656,6.0,6.0,6.544230459942975,-18.45668232750184 -656,7.0,5.0,-6.289308176100628,22.0125786163522 -656,7.0,7.0,7.733287237496075,-26.527493274828448 -656,7.0,27.0,-1.4439790613954469,4.540814658476248 -656,8.0,5.0,0.0,4.915840805411357 -656,8.0,8.0,0.0,-18.706293706293707 -656,8.0,9.0,0.0,9.090909090909092 -656,8.0,10.0,0.0,4.807692307692308 -656,9.0,5.0,0.0,1.8561002591115965 -656,9.0,8.0,0.0,9.090909090909092 -656,9.0,9.0,9.506003688808882,-31.06631294767834 -656,9.0,19.0,-1.7848303152666305,3.98535828943083 -656,9.0,20.0,-5.101853820159654,10.98071411292983 -656,9.0,21.0,-2.619319553382597,5.400770303329455 -656,10.0,8.0,0.0,4.807692307692308 -656,10.0,10.0,0.0,-4.807692307692308 -656,11.0,3.0,0.0,4.191255364806866 -656,11.0,11.0,6.573961583776156,-24.424167659260668 -656,11.0,12.0,0.0,7.142857142857143 -656,11.0,13.0,-1.5265676088395577,3.1734252729654173 -656,11.0,14.0,-3.0953961826564296,6.097275864326261 -656,11.0,15.0,-1.9519977922801688,4.104359379111847 -656,12.0,11.0,0.0,7.142857142857143 -656,12.0,12.0,0.0,-7.142857142857143 -656,13.0,11.0,-1.5265676088395577,3.1734252729654173 -656,13.0,13.0,4.01751987283902,-5.424299332335067 -656,13.0,14.0,-2.4909522639994623,2.250874059369649 -656,14.0,11.0,-3.0953961826564296,6.097275864326261 -656,14.0,13.0,-2.4909522639994623,2.250874059369649 -656,14.0,14.0,9.365498545964757,-16.01163373210796 -656,14.0,17.0,-1.8108011504072024,3.687418931630696 -656,14.0,22.0,-1.9683489489016612,3.976064876781356 -656,15.0,11.0,-1.9519977922801688,4.104359379111847 -656,15.0,15.0,3.271064728633931,-8.94513365126506 -656,15.0,16.0,-1.3190669363537617,4.8407742721532125 -656,16.0,15.0,-1.3190669363537617,4.8407742721532125 -656,16.0,16.0,1.3190669363537617,-4.8407742721532125 -656,17.0,14.0,-1.8108011504072024,3.687418931630696 -656,17.0,17.0,4.886487584415919,-9.906177730909668 -656,17.0,18.0,-3.0756864340087167,6.218758799278971 -656,18.0,17.0,-3.0756864340087167,6.218758799278971 -656,18.0,18.0,8.958039375185187,-17.98346468163191 -656,18.0,19.0,-5.88235294117647,11.76470588235294 -656,19.0,9.0,-1.7848303152666305,3.98535828943083 -656,19.0,18.0,-5.88235294117647,11.76470588235294 -656,19.0,19.0,7.6671832564431,-15.75006417178377 -656,20.0,9.0,-5.101853820159654,10.98071411292983 -656,20.0,20.0,21.876495189895888,-45.10843276170355 -656,20.0,21.0,-16.774641369736234,34.127718648773715 -656,21.0,9.0,-2.619319553382597,5.400770303329455 -656,21.0,20.0,-16.774641369736234,34.127718648773715 -656,21.0,21.0,21.93449907537439,-43.48289181517921 -656,21.0,23.0,-2.5405381522555563,3.95440286307604 -656,22.0,14.0,-1.9683489489016612,3.976064876781356 -656,22.0,22.0,3.429754555384988,-6.965303617315433 -656,22.0,23.0,-1.4614056064833263,2.989238740534077 -656,23.0,21.0,-2.5405381522555563,3.95440286307604 -656,23.0,22.0,-1.4614056064833263,2.989238740534077 -656,23.0,23.0,5.311836702613133,-9.188263657315172 -656,23.0,24.0,-1.3098929438742493,2.287622053705056 -656,24.0,23.0,-1.3098929438742493,2.287622053705056 -656,24.0,24.0,4.495715080321987,-7.864978761969621 -656,24.0,25.0,-1.2165301194494855,1.8171440463475024 -656,24.0,26.0,-1.9692920169982515,3.760212661917064 -656,25.0,24.0,-1.2165301194494855,1.8171440463475024 -656,25.0,25.0,1.2165301194494855,-1.8171440463475024 -656,26.0,24.0,-1.9692920169982515,3.760212661917064 -656,26.0,26.0,3.652281470778589,-9.46044252232512 -656,26.0,27.0,0.0,2.608731947574922 -656,26.0,28.0,-0.99553355095268,1.881005840357816 -656,26.0,29.0,-0.6874559028276572,1.293971494797717 -656,27.0,5.0,-4.362844058012917,15.463571542897856 -656,27.0,7.0,-1.4439790613954469,4.540814658476248 -656,27.0,26.0,0.0,2.608731947574922 -656,27.0,27.0,5.806823119408364,-22.67145722159613 -656,28.0,26.0,-0.99553355095268,1.881005840357816 -656,28.0,28.0,1.9075867579849564,-3.604364401207048 -656,28.0,29.0,-0.9120532070322764,1.7233585608492326 -656,29.0,26.0,-0.6874559028276572,1.293971494797717 -656,29.0,28.0,-0.9120532070322764,1.7233585608492326 -656,29.0,29.0,1.5995091098599337,-3.0173300556469496 -657,0.0,0.0,1.5408698687669766,-5.611274830095233 -657,0.0,2.0,-1.5408698687669766,5.631674830095234 -657,1.0,1.0,4.527635985638374,-15.028336051872673 -657,1.0,3.0,-1.7055303166990268,5.1973792282565086 -657,1.0,4.0,-1.1359607881738778,4.772479328281356 -657,1.0,5.0,-1.6861448807654689,5.116477495334806 -657,2.0,0.0,-1.5408698687669766,5.631674830095234 -657,2.0,2.0,9.736318911079088,-29.13794745915803 -657,2.0,3.0,-8.19544904231211,23.5308726290628 -657,3.0,1.0,-1.7055303166990268,5.1973792282565086 -657,3.0,2.0,-8.19544904231211,23.5308726290628 -657,3.0,3.0,16.314103089185693,-55.509410535254254 -657,3.0,5.0,-6.413123730174556,22.31120356548123 -657,3.0,11.0,0.0,4.191255364806866 -657,4.0,1.0,-1.1359607881738778,4.772479328281356 -657,4.0,4.0,4.089980824135861,-12.190647245055052 -657,4.0,6.0,-2.954020035961983,7.449267916773697 -657,5.0,1.0,-1.6861448807654689,5.116477495334806 -657,5.0,3.0,-6.413123730174556,22.31120356548123 -657,5.0,5.0,22.341631269034565,-82.8291478657789 -657,5.0,6.0,-3.590210423980992,11.02611441072814 -657,5.0,7.0,-6.289308176100628,22.0125786163522 -657,5.0,8.0,0.0,4.915840805411357 -657,5.0,9.0,0.0,1.8561002591115965 -657,5.0,27.0,-4.362844058012917,15.463571542897856 -657,6.0,4.0,-2.954020035961983,7.449267916773697 -657,6.0,5.0,-3.590210423980992,11.02611441072814 -657,6.0,6.0,6.544230459942975,-18.45668232750184 -657,7.0,5.0,-6.289308176100628,22.0125786163522 -657,7.0,7.0,7.733287237496075,-26.527493274828448 -657,7.0,27.0,-1.4439790613954469,4.540814658476248 -657,8.0,5.0,0.0,4.915840805411357 -657,8.0,8.0,0.0,-18.706293706293707 -657,8.0,9.0,0.0,9.090909090909092 -657,8.0,10.0,0.0,4.807692307692308 -657,9.0,5.0,0.0,1.8561002591115965 -657,9.0,8.0,0.0,9.090909090909092 -657,9.0,9.0,13.462042814524237,-41.3837606675224 -657,9.0,16.0,-3.956039125715353,10.317447719844054 -657,9.0,19.0,-1.7848303152666305,3.98535828943083 -657,9.0,20.0,-5.101853820159654,10.98071411292983 -657,9.0,21.0,-2.619319553382597,5.400770303329455 -657,10.0,8.0,0.0,4.807692307692308 -657,10.0,10.0,0.0,-4.807692307692308 -657,11.0,3.0,0.0,4.191255364806866 -657,11.0,11.0,6.573961583776156,-24.424167659260668 -657,11.0,12.0,0.0,7.142857142857143 -657,11.0,13.0,-1.5265676088395577,3.1734252729654173 -657,11.0,14.0,-3.0953961826564296,6.097275864326261 -657,11.0,15.0,-1.9519977922801688,4.104359379111847 -657,12.0,11.0,0.0,7.142857142857143 -657,12.0,12.0,0.0,-7.142857142857143 -657,13.0,11.0,-1.5265676088395577,3.1734252729654173 -657,13.0,13.0,4.01751987283902,-5.424299332335067 -657,13.0,14.0,-2.4909522639994623,2.250874059369649 -657,14.0,11.0,-3.0953961826564296,6.097275864326261 -657,14.0,13.0,-2.4909522639994623,2.250874059369649 -657,14.0,14.0,9.365498545964757,-16.01163373210796 -657,14.0,17.0,-1.8108011504072024,3.687418931630696 -657,14.0,22.0,-1.9683489489016612,3.976064876781356 -657,15.0,11.0,-1.9519977922801688,4.104359379111847 -657,15.0,15.0,3.271064728633931,-8.94513365126506 -657,15.0,16.0,-1.3190669363537617,4.8407742721532125 -657,16.0,9.0,-3.956039125715353,10.317447719844054 -657,16.0,15.0,-1.3190669363537617,4.8407742721532125 -657,16.0,16.0,5.275106062069114,-15.158221991997266 -657,17.0,14.0,-1.8108011504072024,3.687418931630696 -657,17.0,17.0,4.886487584415919,-9.906177730909668 -657,17.0,18.0,-3.0756864340087167,6.218758799278971 -657,18.0,17.0,-3.0756864340087167,6.218758799278971 -657,18.0,18.0,8.958039375185187,-17.98346468163191 -657,18.0,19.0,-5.88235294117647,11.76470588235294 -657,19.0,9.0,-1.7848303152666305,3.98535828943083 -657,19.0,18.0,-5.88235294117647,11.76470588235294 -657,19.0,19.0,7.6671832564431,-15.75006417178377 -657,20.0,9.0,-5.101853820159654,10.98071411292983 -657,20.0,20.0,21.876495189895888,-45.10843276170355 -657,20.0,21.0,-16.774641369736234,34.127718648773715 -657,21.0,9.0,-2.619319553382597,5.400770303329455 -657,21.0,20.0,-16.774641369736234,34.127718648773715 -657,21.0,21.0,19.393960923118836,-39.52848895210317 -657,22.0,14.0,-1.9683489489016612,3.976064876781356 -657,22.0,22.0,3.429754555384988,-6.965303617315433 -657,22.0,23.0,-1.4614056064833263,2.989238740534077 -657,23.0,22.0,-1.4614056064833263,2.989238740534077 -657,23.0,23.0,2.771298550357576,-5.233860794239132 -657,23.0,24.0,-1.3098929438742493,2.287622053705056 -657,24.0,23.0,-1.3098929438742493,2.287622053705056 -657,24.0,24.0,4.495715080321987,-7.864978761969621 -657,24.0,25.0,-1.2165301194494855,1.8171440463475024 -657,24.0,26.0,-1.9692920169982515,3.760212661917064 -657,25.0,24.0,-1.2165301194494855,1.8171440463475024 -657,25.0,25.0,1.2165301194494855,-1.8171440463475024 -657,26.0,24.0,-1.9692920169982515,3.760212661917064 -657,26.0,26.0,3.652281470778589,-9.46044252232512 -657,26.0,27.0,0.0,2.608731947574922 -657,26.0,28.0,-0.99553355095268,1.881005840357816 -657,26.0,29.0,-0.6874559028276572,1.293971494797717 -657,27.0,5.0,-4.362844058012917,15.463571542897856 -657,27.0,7.0,-1.4439790613954469,4.540814658476248 -657,27.0,26.0,0.0,2.608731947574922 -657,27.0,27.0,5.806823119408364,-22.67145722159613 -657,28.0,26.0,-0.99553355095268,1.881005840357816 -657,28.0,28.0,1.9075867579849564,-3.604364401207048 -657,28.0,29.0,-0.9120532070322764,1.7233585608492326 -657,29.0,26.0,-0.6874559028276572,1.293971494797717 -657,29.0,28.0,-0.9120532070322764,1.7233585608492326 -657,29.0,29.0,1.5995091098599337,-3.0173300556469496 -658,0.0,0.0,6.765516048652632,-21.23160167089863 -658,0.0,1.0,-5.224646179885656,15.646726840803398 -658,0.0,2.0,-1.5408698687669766,5.631674830095234 -658,1.0,0.0,-5.224646179885656,15.646726840803398 -658,1.0,1.0,9.75228216552403,-30.648662892676068 -658,1.0,3.0,-1.7055303166990268,5.1973792282565086 -658,1.0,4.0,-1.1359607881738778,4.772479328281356 -658,1.0,5.0,-1.6861448807654689,5.116477495334806 -658,2.0,0.0,-1.5408698687669766,5.631674830095234 -658,2.0,2.0,9.736318911079088,-29.13794745915803 -658,2.0,3.0,-8.19544904231211,23.5308726290628 -658,3.0,1.0,-1.7055303166990268,5.1973792282565086 -658,3.0,2.0,-8.19544904231211,23.5308726290628 -658,3.0,3.0,16.314103089185693,-55.509410535254254 -658,3.0,5.0,-6.413123730174556,22.31120356548123 -658,3.0,11.0,0.0,4.191255364806866 -658,4.0,1.0,-1.1359607881738778,4.772479328281356 -658,4.0,4.0,4.089980824135861,-12.190647245055052 -658,4.0,6.0,-2.954020035961983,7.449267916773697 -658,5.0,1.0,-1.6861448807654689,5.116477495334806 -658,5.0,3.0,-6.413123730174556,22.31120356548123 -658,5.0,5.0,22.341631269034565,-82.8291478657789 -658,5.0,6.0,-3.590210423980992,11.02611441072814 -658,5.0,7.0,-6.289308176100628,22.0125786163522 -658,5.0,8.0,0.0,4.915840805411357 -658,5.0,9.0,0.0,1.8561002591115965 -658,5.0,27.0,-4.362844058012917,15.463571542897856 -658,6.0,4.0,-2.954020035961983,7.449267916773697 -658,6.0,5.0,-3.590210423980992,11.02611441072814 -658,6.0,6.0,6.544230459942975,-18.45668232750184 -658,7.0,5.0,-6.289308176100628,22.0125786163522 -658,7.0,7.0,7.733287237496075,-26.527493274828448 -658,7.0,27.0,-1.4439790613954469,4.540814658476248 -658,8.0,5.0,0.0,4.915840805411357 -658,8.0,8.0,0.0,-18.706293706293707 -658,8.0,9.0,0.0,9.090909090909092 -658,8.0,10.0,0.0,4.807692307692308 -658,9.0,5.0,0.0,1.8561002591115965 -658,9.0,8.0,0.0,9.090909090909092 -658,9.0,9.0,13.462042814524237,-41.3837606675224 -658,9.0,16.0,-3.956039125715353,10.317447719844054 -658,9.0,19.0,-1.7848303152666305,3.98535828943083 -658,9.0,20.0,-5.101853820159654,10.98071411292983 -658,9.0,21.0,-2.619319553382597,5.400770303329455 -658,10.0,8.0,0.0,4.807692307692308 -658,10.0,10.0,0.0,-4.807692307692308 -658,11.0,3.0,0.0,4.191255364806866 -658,11.0,11.0,6.573961583776156,-24.424167659260668 -658,11.0,12.0,0.0,7.142857142857143 -658,11.0,13.0,-1.5265676088395577,3.1734252729654173 -658,11.0,14.0,-3.0953961826564296,6.097275864326261 -658,11.0,15.0,-1.9519977922801688,4.104359379111847 -658,12.0,11.0,0.0,7.142857142857143 -658,12.0,12.0,0.0,-7.142857142857143 -658,13.0,11.0,-1.5265676088395577,3.1734252729654173 -658,13.0,13.0,4.01751987283902,-5.424299332335067 -658,13.0,14.0,-2.4909522639994623,2.250874059369649 -658,14.0,11.0,-3.0953961826564296,6.097275864326261 -658,14.0,13.0,-2.4909522639994623,2.250874059369649 -658,14.0,14.0,9.365498545964757,-16.01163373210796 -658,14.0,17.0,-1.8108011504072024,3.687418931630696 -658,14.0,22.0,-1.9683489489016612,3.976064876781356 -658,15.0,11.0,-1.9519977922801688,4.104359379111847 -658,15.0,15.0,3.271064728633931,-8.94513365126506 -658,15.0,16.0,-1.3190669363537617,4.8407742721532125 -658,16.0,9.0,-3.956039125715353,10.317447719844054 -658,16.0,15.0,-1.3190669363537617,4.8407742721532125 -658,16.0,16.0,5.275106062069114,-15.158221991997266 -658,17.0,14.0,-1.8108011504072024,3.687418931630696 -658,17.0,17.0,4.886487584415919,-9.906177730909668 -658,17.0,18.0,-3.0756864340087167,6.218758799278971 -658,18.0,17.0,-3.0756864340087167,6.218758799278971 -658,18.0,18.0,8.958039375185187,-17.98346468163191 -658,18.0,19.0,-5.88235294117647,11.76470588235294 -658,19.0,9.0,-1.7848303152666305,3.98535828943083 -658,19.0,18.0,-5.88235294117647,11.76470588235294 -658,19.0,19.0,7.6671832564431,-15.75006417178377 -658,20.0,9.0,-5.101853820159654,10.98071411292983 -658,20.0,20.0,21.876495189895888,-45.10843276170355 -658,20.0,21.0,-16.774641369736234,34.127718648773715 -658,21.0,9.0,-2.619319553382597,5.400770303329455 -658,21.0,20.0,-16.774641369736234,34.127718648773715 -658,21.0,21.0,21.93449907537439,-43.48289181517921 -658,21.0,23.0,-2.5405381522555563,3.95440286307604 -658,22.0,14.0,-1.9683489489016612,3.976064876781356 -658,22.0,22.0,3.429754555384988,-6.965303617315433 -658,22.0,23.0,-1.4614056064833263,2.989238740534077 -658,23.0,21.0,-2.5405381522555563,3.95440286307604 -658,23.0,22.0,-1.4614056064833263,2.989238740534077 -658,23.0,23.0,5.311836702613133,-9.188263657315172 -658,23.0,24.0,-1.3098929438742493,2.287622053705056 -658,24.0,23.0,-1.3098929438742493,2.287622053705056 -658,24.0,24.0,4.495715080321987,-7.864978761969621 -658,24.0,25.0,-1.2165301194494855,1.8171440463475024 -658,24.0,26.0,-1.9692920169982515,3.760212661917064 -658,25.0,24.0,-1.2165301194494855,1.8171440463475024 -658,25.0,25.0,1.2165301194494855,-1.8171440463475024 -658,26.0,24.0,-1.9692920169982515,3.760212661917064 -658,26.0,26.0,3.652281470778589,-9.46044252232512 -658,26.0,27.0,0.0,2.608731947574922 -658,26.0,28.0,-0.99553355095268,1.881005840357816 -658,26.0,29.0,-0.6874559028276572,1.293971494797717 -658,27.0,5.0,-4.362844058012917,15.463571542897856 -658,27.0,7.0,-1.4439790613954469,4.540814658476248 -658,27.0,26.0,0.0,2.608731947574922 -658,27.0,27.0,5.806823119408364,-22.67145722159613 -658,28.0,26.0,-0.99553355095268,1.881005840357816 -658,28.0,28.0,1.9075867579849564,-3.604364401207048 -658,28.0,29.0,-0.9120532070322764,1.7233585608492326 -658,29.0,26.0,-0.6874559028276572,1.293971494797717 -658,29.0,28.0,-0.9120532070322764,1.7233585608492326 -658,29.0,29.0,1.5995091098599337,-3.0173300556469496 -659,0.0,0.0,6.765516048652632,-21.23160167089863 -659,0.0,1.0,-5.224646179885656,15.646726840803398 -659,0.0,2.0,-1.5408698687669766,5.631674830095234 -659,1.0,0.0,-5.224646179885656,15.646726840803398 -659,1.0,1.0,9.75228216552403,-30.648662892676068 -659,1.0,3.0,-1.7055303166990268,5.1973792282565086 -659,1.0,4.0,-1.1359607881738778,4.772479328281356 -659,1.0,5.0,-1.6861448807654689,5.116477495334806 -659,2.0,0.0,-1.5408698687669766,5.631674830095234 -659,2.0,2.0,9.736318911079088,-29.13794745915803 -659,2.0,3.0,-8.19544904231211,23.5308726290628 -659,3.0,1.0,-1.7055303166990268,5.1973792282565086 -659,3.0,2.0,-8.19544904231211,23.5308726290628 -659,3.0,3.0,16.314103089185693,-55.509410535254254 -659,3.0,5.0,-6.413123730174556,22.31120356548123 -659,3.0,11.0,0.0,4.191255364806866 -659,4.0,1.0,-1.1359607881738778,4.772479328281356 -659,4.0,4.0,4.089980824135861,-12.190647245055052 -659,4.0,6.0,-2.954020035961983,7.449267916773697 -659,5.0,1.0,-1.6861448807654689,5.116477495334806 -659,5.0,3.0,-6.413123730174556,22.31120356548123 -659,5.0,5.0,22.341631269034565,-82.8291478657789 -659,5.0,6.0,-3.590210423980992,11.02611441072814 -659,5.0,7.0,-6.289308176100628,22.0125786163522 -659,5.0,8.0,0.0,4.915840805411357 -659,5.0,9.0,0.0,1.8561002591115965 -659,5.0,27.0,-4.362844058012917,15.463571542897856 -659,6.0,4.0,-2.954020035961983,7.449267916773697 -659,6.0,5.0,-3.590210423980992,11.02611441072814 -659,6.0,6.0,6.544230459942975,-18.45668232750184 -659,7.0,5.0,-6.289308176100628,22.0125786163522 -659,7.0,7.0,7.733287237496075,-26.527493274828448 -659,7.0,27.0,-1.4439790613954469,4.540814658476248 -659,8.0,5.0,0.0,4.915840805411357 -659,8.0,8.0,0.0,-18.706293706293707 -659,8.0,9.0,0.0,9.090909090909092 -659,8.0,10.0,0.0,4.807692307692308 -659,9.0,5.0,0.0,1.8561002591115965 -659,9.0,8.0,0.0,9.090909090909092 -659,9.0,9.0,13.462042814524237,-41.3837606675224 -659,9.0,16.0,-3.956039125715353,10.317447719844054 -659,9.0,19.0,-1.7848303152666305,3.98535828943083 -659,9.0,20.0,-5.101853820159654,10.98071411292983 -659,9.0,21.0,-2.619319553382597,5.400770303329455 -659,10.0,8.0,0.0,4.807692307692308 -659,10.0,10.0,0.0,-4.807692307692308 -659,11.0,3.0,0.0,4.191255364806866 -659,11.0,11.0,6.573961583776156,-24.424167659260668 -659,11.0,12.0,0.0,7.142857142857143 -659,11.0,13.0,-1.5265676088395577,3.1734252729654173 -659,11.0,14.0,-3.0953961826564296,6.097275864326261 -659,11.0,15.0,-1.9519977922801688,4.104359379111847 -659,12.0,11.0,0.0,7.142857142857143 -659,12.0,12.0,0.0,-7.142857142857143 -659,13.0,11.0,-1.5265676088395577,3.1734252729654173 -659,13.0,13.0,4.01751987283902,-5.424299332335067 -659,13.0,14.0,-2.4909522639994623,2.250874059369649 -659,14.0,11.0,-3.0953961826564296,6.097275864326261 -659,14.0,13.0,-2.4909522639994623,2.250874059369649 -659,14.0,14.0,9.365498545964757,-16.01163373210796 -659,14.0,17.0,-1.8108011504072024,3.687418931630696 -659,14.0,22.0,-1.9683489489016612,3.976064876781356 -659,15.0,11.0,-1.9519977922801688,4.104359379111847 -659,15.0,15.0,3.271064728633931,-8.94513365126506 -659,15.0,16.0,-1.3190669363537617,4.8407742721532125 -659,16.0,9.0,-3.956039125715353,10.317447719844054 -659,16.0,15.0,-1.3190669363537617,4.8407742721532125 -659,16.0,16.0,5.275106062069114,-15.158221991997266 -659,17.0,14.0,-1.8108011504072024,3.687418931630696 -659,17.0,17.0,4.886487584415919,-9.906177730909668 -659,17.0,18.0,-3.0756864340087167,6.218758799278971 -659,18.0,17.0,-3.0756864340087167,6.218758799278971 -659,18.0,18.0,8.958039375185187,-17.98346468163191 -659,18.0,19.0,-5.88235294117647,11.76470588235294 -659,19.0,9.0,-1.7848303152666305,3.98535828943083 -659,19.0,18.0,-5.88235294117647,11.76470588235294 -659,19.0,19.0,7.6671832564431,-15.75006417178377 -659,20.0,9.0,-5.101853820159654,10.98071411292983 -659,20.0,20.0,21.876495189895888,-45.10843276170355 -659,20.0,21.0,-16.774641369736234,34.127718648773715 -659,21.0,9.0,-2.619319553382597,5.400770303329455 -659,21.0,20.0,-16.774641369736234,34.127718648773715 -659,21.0,21.0,21.93449907537439,-43.48289181517921 -659,21.0,23.0,-2.5405381522555563,3.95440286307604 -659,22.0,14.0,-1.9683489489016612,3.976064876781356 -659,22.0,22.0,3.429754555384988,-6.965303617315433 -659,22.0,23.0,-1.4614056064833263,2.989238740534077 -659,23.0,21.0,-2.5405381522555563,3.95440286307604 -659,23.0,22.0,-1.4614056064833263,2.989238740534077 -659,23.0,23.0,5.311836702613133,-9.188263657315172 -659,23.0,24.0,-1.3098929438742493,2.287622053705056 -659,24.0,23.0,-1.3098929438742493,2.287622053705056 -659,24.0,24.0,4.495715080321987,-7.864978761969621 -659,24.0,25.0,-1.2165301194494855,1.8171440463475024 -659,24.0,26.0,-1.9692920169982515,3.760212661917064 -659,25.0,24.0,-1.2165301194494855,1.8171440463475024 -659,25.0,25.0,1.2165301194494855,-1.8171440463475024 -659,26.0,24.0,-1.9692920169982515,3.760212661917064 -659,26.0,26.0,3.652281470778589,-9.46044252232512 -659,26.0,27.0,0.0,2.608731947574922 -659,26.0,28.0,-0.99553355095268,1.881005840357816 -659,26.0,29.0,-0.6874559028276572,1.293971494797717 -659,27.0,5.0,-4.362844058012917,15.463571542897856 -659,27.0,7.0,-1.4439790613954469,4.540814658476248 -659,27.0,26.0,0.0,2.608731947574922 -659,27.0,27.0,5.806823119408364,-22.67145722159613 -659,28.0,26.0,-0.99553355095268,1.881005840357816 -659,28.0,28.0,1.9075867579849564,-3.604364401207048 -659,28.0,29.0,-0.9120532070322764,1.7233585608492326 -659,29.0,26.0,-0.6874559028276572,1.293971494797717 -659,29.0,28.0,-0.9120532070322764,1.7233585608492326 -659,29.0,29.0,1.5995091098599337,-3.0173300556469496 -660,0.0,0.0,6.765516048652632,-21.23160167089863 -660,0.0,1.0,-5.224646179885656,15.646726840803398 -660,0.0,2.0,-1.5408698687669766,5.631674830095234 -660,1.0,0.0,-5.224646179885656,15.646726840803398 -660,1.0,1.0,9.75228216552403,-30.648662892676068 -660,1.0,3.0,-1.7055303166990268,5.1973792282565086 -660,1.0,4.0,-1.1359607881738778,4.772479328281356 -660,1.0,5.0,-1.6861448807654689,5.116477495334806 -660,2.0,0.0,-1.5408698687669766,5.631674830095234 -660,2.0,2.0,9.736318911079088,-29.13794745915803 -660,2.0,3.0,-8.19544904231211,23.5308726290628 -660,3.0,1.0,-1.7055303166990268,5.1973792282565086 -660,3.0,2.0,-8.19544904231211,23.5308726290628 -660,3.0,3.0,16.314103089185693,-55.509410535254254 -660,3.0,5.0,-6.413123730174556,22.31120356548123 -660,3.0,11.0,0.0,4.191255364806866 -660,4.0,1.0,-1.1359607881738778,4.772479328281356 -660,4.0,4.0,4.089980824135861,-12.190647245055052 -660,4.0,6.0,-2.954020035961983,7.449267916773697 -660,5.0,1.0,-1.6861448807654689,5.116477495334806 -660,5.0,3.0,-6.413123730174556,22.31120356548123 -660,5.0,5.0,22.341631269034565,-82.8291478657789 -660,5.0,6.0,-3.590210423980992,11.02611441072814 -660,5.0,7.0,-6.289308176100628,22.0125786163522 -660,5.0,8.0,0.0,4.915840805411357 -660,5.0,9.0,0.0,1.8561002591115965 -660,5.0,27.0,-4.362844058012917,15.463571542897856 -660,6.0,4.0,-2.954020035961983,7.449267916773697 -660,6.0,5.0,-3.590210423980992,11.02611441072814 -660,6.0,6.0,6.544230459942975,-18.45668232750184 -660,7.0,5.0,-6.289308176100628,22.0125786163522 -660,7.0,7.0,7.733287237496075,-26.527493274828448 -660,7.0,27.0,-1.4439790613954469,4.540814658476248 -660,8.0,5.0,0.0,4.915840805411357 -660,8.0,8.0,0.0,-18.706293706293707 -660,8.0,9.0,0.0,9.090909090909092 -660,8.0,10.0,0.0,4.807692307692308 -660,9.0,5.0,0.0,1.8561002591115965 -660,9.0,8.0,0.0,9.090909090909092 -660,9.0,9.0,13.462042814524237,-41.3837606675224 -660,9.0,16.0,-3.956039125715353,10.317447719844054 -660,9.0,19.0,-1.7848303152666305,3.98535828943083 -660,9.0,20.0,-5.101853820159654,10.98071411292983 -660,9.0,21.0,-2.619319553382597,5.400770303329455 -660,10.0,8.0,0.0,4.807692307692308 -660,10.0,10.0,0.0,-4.807692307692308 -660,11.0,3.0,0.0,4.191255364806866 -660,11.0,11.0,6.573961583776156,-24.424167659260668 -660,11.0,12.0,0.0,7.142857142857143 -660,11.0,13.0,-1.5265676088395577,3.1734252729654173 -660,11.0,14.0,-3.0953961826564296,6.097275864326261 -660,11.0,15.0,-1.9519977922801688,4.104359379111847 -660,12.0,11.0,0.0,7.142857142857143 -660,12.0,12.0,0.0,-7.142857142857143 -660,13.0,11.0,-1.5265676088395577,3.1734252729654173 -660,13.0,13.0,4.01751987283902,-5.424299332335067 -660,13.0,14.0,-2.4909522639994623,2.250874059369649 -660,14.0,11.0,-3.0953961826564296,6.097275864326261 -660,14.0,13.0,-2.4909522639994623,2.250874059369649 -660,14.0,14.0,9.365498545964757,-16.01163373210796 -660,14.0,17.0,-1.8108011504072024,3.687418931630696 -660,14.0,22.0,-1.9683489489016612,3.976064876781356 -660,15.0,11.0,-1.9519977922801688,4.104359379111847 -660,15.0,15.0,3.271064728633931,-8.94513365126506 -660,15.0,16.0,-1.3190669363537617,4.8407742721532125 -660,16.0,9.0,-3.956039125715353,10.317447719844054 -660,16.0,15.0,-1.3190669363537617,4.8407742721532125 -660,16.0,16.0,5.275106062069114,-15.158221991997266 -660,17.0,14.0,-1.8108011504072024,3.687418931630696 -660,17.0,17.0,4.886487584415919,-9.906177730909668 -660,17.0,18.0,-3.0756864340087167,6.218758799278971 -660,18.0,17.0,-3.0756864340087167,6.218758799278971 -660,18.0,18.0,8.958039375185187,-17.98346468163191 -660,18.0,19.0,-5.88235294117647,11.76470588235294 -660,19.0,9.0,-1.7848303152666305,3.98535828943083 -660,19.0,18.0,-5.88235294117647,11.76470588235294 -660,19.0,19.0,7.6671832564431,-15.75006417178377 -660,20.0,9.0,-5.101853820159654,10.98071411292983 -660,20.0,20.0,21.876495189895888,-45.10843276170355 -660,20.0,21.0,-16.774641369736234,34.127718648773715 -660,21.0,9.0,-2.619319553382597,5.400770303329455 -660,21.0,20.0,-16.774641369736234,34.127718648773715 -660,21.0,21.0,21.93449907537439,-43.48289181517921 -660,21.0,23.0,-2.5405381522555563,3.95440286307604 -660,22.0,14.0,-1.9683489489016612,3.976064876781356 -660,22.0,22.0,3.429754555384988,-6.965303617315433 -660,22.0,23.0,-1.4614056064833263,2.989238740534077 -660,23.0,21.0,-2.5405381522555563,3.95440286307604 -660,23.0,22.0,-1.4614056064833263,2.989238740534077 -660,23.0,23.0,5.311836702613133,-9.188263657315172 -660,23.0,24.0,-1.3098929438742493,2.287622053705056 -660,24.0,23.0,-1.3098929438742493,2.287622053705056 -660,24.0,24.0,2.526423063323735,-4.104766100052558 -660,24.0,25.0,-1.2165301194494855,1.8171440463475024 -660,25.0,24.0,-1.2165301194494855,1.8171440463475024 -660,25.0,25.0,1.2165301194494855,-1.8171440463475024 -660,26.0,26.0,1.6829894537803372,-5.700229860408058 -660,26.0,27.0,0.0,2.608731947574922 -660,26.0,28.0,-0.99553355095268,1.881005840357816 -660,26.0,29.0,-0.6874559028276572,1.293971494797717 -660,27.0,5.0,-4.362844058012917,15.463571542897856 -660,27.0,7.0,-1.4439790613954469,4.540814658476248 -660,27.0,26.0,0.0,2.608731947574922 -660,27.0,27.0,5.806823119408364,-22.67145722159613 -660,28.0,26.0,-0.99553355095268,1.881005840357816 -660,28.0,28.0,1.9075867579849564,-3.604364401207048 -660,28.0,29.0,-0.9120532070322764,1.7233585608492326 -660,29.0,26.0,-0.6874559028276572,1.293971494797717 -660,29.0,28.0,-0.9120532070322764,1.7233585608492326 -660,29.0,29.0,1.5995091098599337,-3.0173300556469496 -661,0.0,0.0,1.5408698687669766,-5.611274830095233 -661,0.0,2.0,-1.5408698687669766,5.631674830095234 -661,1.0,1.0,2.841491104872905,-9.930558556537864 -661,1.0,3.0,-1.7055303166990268,5.1973792282565086 -661,1.0,4.0,-1.1359607881738778,4.772479328281356 -661,2.0,0.0,-1.5408698687669766,5.631674830095234 -661,2.0,2.0,9.736318911079088,-29.13794745915803 -661,2.0,3.0,-8.19544904231211,23.5308726290628 -661,3.0,1.0,-1.7055303166990268,5.1973792282565086 -661,3.0,2.0,-8.19544904231211,23.5308726290628 -661,3.0,3.0,16.314103089185693,-55.509410535254254 -661,3.0,5.0,-6.413123730174556,22.31120356548123 -661,3.0,11.0,0.0,4.191255364806866 -661,4.0,1.0,-1.1359607881738778,4.772479328281356 -661,4.0,4.0,4.089980824135861,-12.190647245055052 -661,4.0,6.0,-2.954020035961983,7.449267916773697 -661,5.0,3.0,-6.413123730174556,22.31120356548123 -661,5.0,5.0,16.29264233025618,-60.35881868398423 -661,5.0,6.0,-3.590210423980992,11.02611441072814 -661,5.0,7.0,-6.289308176100628,22.0125786163522 -661,5.0,8.0,0.0,4.915840805411357 -661,6.0,4.0,-2.954020035961983,7.449267916773697 -661,6.0,5.0,-3.590210423980992,11.02611441072814 -661,6.0,6.0,6.544230459942975,-18.45668232750184 -661,7.0,5.0,-6.289308176100628,22.0125786163522 -661,7.0,7.0,7.733287237496075,-26.527493274828448 -661,7.0,27.0,-1.4439790613954469,4.540814658476248 -661,8.0,5.0,0.0,4.915840805411357 -661,8.0,8.0,0.0,-18.706293706293707 -661,8.0,9.0,0.0,9.090909090909092 -661,8.0,10.0,0.0,4.807692307692308 -661,9.0,8.0,0.0,9.090909090909092 -661,9.0,9.0,13.462042814524237,-39.58519951644326 -661,9.0,16.0,-3.956039125715353,10.317447719844054 -661,9.0,19.0,-1.7848303152666305,3.98535828943083 -661,9.0,20.0,-5.101853820159654,10.98071411292983 -661,9.0,21.0,-2.619319553382597,5.400770303329455 -661,10.0,8.0,0.0,4.807692307692308 -661,10.0,10.0,0.0,-4.807692307692308 -661,11.0,3.0,0.0,4.191255364806866 -661,11.0,11.0,6.573961583776156,-24.424167659260668 -661,11.0,12.0,0.0,7.142857142857143 -661,11.0,13.0,-1.5265676088395577,3.1734252729654173 -661,11.0,14.0,-3.0953961826564296,6.097275864326261 -661,11.0,15.0,-1.9519977922801688,4.104359379111847 -661,12.0,11.0,0.0,7.142857142857143 -661,12.0,12.0,0.0,-7.142857142857143 -661,13.0,11.0,-1.5265676088395577,3.1734252729654173 -661,13.0,13.0,4.01751987283902,-5.424299332335067 -661,13.0,14.0,-2.4909522639994623,2.250874059369649 -661,14.0,11.0,-3.0953961826564296,6.097275864326261 -661,14.0,13.0,-2.4909522639994623,2.250874059369649 -661,14.0,14.0,9.365498545964757,-16.01163373210796 -661,14.0,17.0,-1.8108011504072024,3.687418931630696 -661,14.0,22.0,-1.9683489489016612,3.976064876781356 -661,15.0,11.0,-1.9519977922801688,4.104359379111847 -661,15.0,15.0,3.271064728633931,-8.94513365126506 -661,15.0,16.0,-1.3190669363537617,4.8407742721532125 -661,16.0,9.0,-3.956039125715353,10.317447719844054 -661,16.0,15.0,-1.3190669363537617,4.8407742721532125 -661,16.0,16.0,5.275106062069114,-15.158221991997266 -661,17.0,14.0,-1.8108011504072024,3.687418931630696 -661,17.0,17.0,1.8108011504072024,-3.687418931630696 -661,18.0,18.0,5.88235294117647,-11.76470588235294 -661,18.0,19.0,-5.88235294117647,11.76470588235294 -661,19.0,9.0,-1.7848303152666305,3.98535828943083 -661,19.0,18.0,-5.88235294117647,11.76470588235294 -661,19.0,19.0,7.6671832564431,-15.75006417178377 -661,20.0,9.0,-5.101853820159654,10.98071411292983 -661,20.0,20.0,5.101853820159654,-10.98071411292983 -661,21.0,9.0,-2.619319553382597,5.400770303329455 -661,21.0,21.0,5.159857705638154,-9.355173166405494 -661,21.0,23.0,-2.5405381522555563,3.95440286307604 -661,22.0,14.0,-1.9683489489016612,3.976064876781356 -661,22.0,22.0,3.429754555384988,-6.965303617315433 -661,22.0,23.0,-1.4614056064833263,2.989238740534077 -661,23.0,21.0,-2.5405381522555563,3.95440286307604 -661,23.0,22.0,-1.4614056064833263,2.989238740534077 -661,23.0,23.0,5.311836702613133,-9.188263657315172 -661,23.0,24.0,-1.3098929438742493,2.287622053705056 -661,24.0,23.0,-1.3098929438742493,2.287622053705056 -661,24.0,24.0,4.495715080321987,-7.864978761969621 -661,24.0,25.0,-1.2165301194494855,1.8171440463475024 -661,24.0,26.0,-1.9692920169982515,3.760212661917064 -661,25.0,24.0,-1.2165301194494855,1.8171440463475024 -661,25.0,25.0,1.2165301194494855,-1.8171440463475024 -661,26.0,24.0,-1.9692920169982515,3.760212661917064 -661,26.0,26.0,3.652281470778589,-9.46044252232512 -661,26.0,27.0,0.0,2.608731947574922 -661,26.0,28.0,-0.99553355095268,1.881005840357816 -661,26.0,29.0,-0.6874559028276572,1.293971494797717 -661,27.0,7.0,-1.4439790613954469,4.540814658476248 -661,27.0,26.0,0.0,2.608731947574922 -661,27.0,27.0,1.4439790613954469,-7.214385678698274 -661,28.0,26.0,-0.99553355095268,1.881005840357816 -661,28.0,28.0,1.9075867579849564,-3.604364401207048 -661,28.0,29.0,-0.9120532070322764,1.7233585608492326 -661,29.0,26.0,-0.6874559028276572,1.293971494797717 -661,29.0,28.0,-0.9120532070322764,1.7233585608492326 -661,29.0,29.0,1.5995091098599337,-3.0173300556469496 -662,0.0,0.0,6.765516048652632,-21.23160167089863 -662,0.0,1.0,-5.224646179885656,15.646726840803398 -662,0.0,2.0,-1.5408698687669766,5.631674830095234 -662,1.0,0.0,-5.224646179885656,15.646726840803398 -662,1.0,1.0,9.75228216552403,-30.648662892676068 -662,1.0,3.0,-1.7055303166990268,5.1973792282565086 -662,1.0,4.0,-1.1359607881738778,4.772479328281356 -662,1.0,5.0,-1.6861448807654689,5.116477495334806 -662,2.0,0.0,-1.5408698687669766,5.631674830095234 -662,2.0,2.0,9.736318911079088,-29.13794745915803 -662,2.0,3.0,-8.19544904231211,23.5308726290628 -662,3.0,1.0,-1.7055303166990268,5.1973792282565086 -662,3.0,2.0,-8.19544904231211,23.5308726290628 -662,3.0,3.0,16.314103089185693,-55.509410535254254 -662,3.0,5.0,-6.413123730174556,22.31120356548123 -662,3.0,11.0,0.0,4.191255364806866 -662,4.0,1.0,-1.1359607881738778,4.772479328281356 -662,4.0,4.0,4.089980824135861,-12.190647245055052 -662,4.0,6.0,-2.954020035961983,7.449267916773697 -662,5.0,1.0,-1.6861448807654689,5.116477495334806 -662,5.0,3.0,-6.413123730174556,22.31120356548123 -662,5.0,5.0,22.341631269034565,-82.8291478657789 -662,5.0,6.0,-3.590210423980992,11.02611441072814 -662,5.0,7.0,-6.289308176100628,22.0125786163522 -662,5.0,8.0,0.0,4.915840805411357 -662,5.0,9.0,0.0,1.8561002591115965 -662,5.0,27.0,-4.362844058012917,15.463571542897856 -662,6.0,4.0,-2.954020035961983,7.449267916773697 -662,6.0,5.0,-3.590210423980992,11.02611441072814 -662,6.0,6.0,6.544230459942975,-18.45668232750184 -662,7.0,5.0,-6.289308176100628,22.0125786163522 -662,7.0,7.0,7.733287237496075,-26.527493274828448 -662,7.0,27.0,-1.4439790613954469,4.540814658476248 -662,8.0,5.0,0.0,4.915840805411357 -662,8.0,8.0,0.0,-18.706293706293707 -662,8.0,9.0,0.0,9.090909090909092 -662,8.0,10.0,0.0,4.807692307692308 -662,9.0,5.0,0.0,1.8561002591115965 -662,9.0,8.0,0.0,9.090909090909092 -662,9.0,9.0,13.462042814524237,-41.3837606675224 -662,9.0,16.0,-3.956039125715353,10.317447719844054 -662,9.0,19.0,-1.7848303152666305,3.98535828943083 -662,9.0,20.0,-5.101853820159654,10.98071411292983 -662,9.0,21.0,-2.619319553382597,5.400770303329455 -662,10.0,8.0,0.0,4.807692307692308 -662,10.0,10.0,0.0,-4.807692307692308 -662,11.0,3.0,0.0,4.191255364806866 -662,11.0,11.0,6.573961583776156,-24.424167659260668 -662,11.0,12.0,0.0,7.142857142857143 -662,11.0,13.0,-1.5265676088395577,3.1734252729654173 -662,11.0,14.0,-3.0953961826564296,6.097275864326261 -662,11.0,15.0,-1.9519977922801688,4.104359379111847 -662,12.0,11.0,0.0,7.142857142857143 -662,12.0,12.0,0.0,-7.142857142857143 -662,13.0,11.0,-1.5265676088395577,3.1734252729654173 -662,13.0,13.0,4.01751987283902,-5.424299332335067 -662,13.0,14.0,-2.4909522639994623,2.250874059369649 -662,14.0,11.0,-3.0953961826564296,6.097275864326261 -662,14.0,13.0,-2.4909522639994623,2.250874059369649 -662,14.0,14.0,9.365498545964757,-16.01163373210796 -662,14.0,17.0,-1.8108011504072024,3.687418931630696 -662,14.0,22.0,-1.9683489489016612,3.976064876781356 -662,15.0,11.0,-1.9519977922801688,4.104359379111847 -662,15.0,15.0,3.271064728633931,-8.94513365126506 -662,15.0,16.0,-1.3190669363537617,4.8407742721532125 -662,16.0,9.0,-3.956039125715353,10.317447719844054 -662,16.0,15.0,-1.3190669363537617,4.8407742721532125 -662,16.0,16.0,5.275106062069114,-15.158221991997266 -662,17.0,14.0,-1.8108011504072024,3.687418931630696 -662,17.0,17.0,1.8108011504072024,-3.687418931630696 -662,18.0,18.0,5.88235294117647,-11.76470588235294 -662,18.0,19.0,-5.88235294117647,11.76470588235294 -662,19.0,9.0,-1.7848303152666305,3.98535828943083 -662,19.0,18.0,-5.88235294117647,11.76470588235294 -662,19.0,19.0,7.6671832564431,-15.75006417178377 -662,20.0,9.0,-5.101853820159654,10.98071411292983 -662,20.0,20.0,5.101853820159654,-10.98071411292983 -662,21.0,9.0,-2.619319553382597,5.400770303329455 -662,21.0,21.0,5.159857705638154,-9.355173166405494 -662,21.0,23.0,-2.5405381522555563,3.95440286307604 -662,22.0,14.0,-1.9683489489016612,3.976064876781356 -662,22.0,22.0,3.429754555384988,-6.965303617315433 -662,22.0,23.0,-1.4614056064833263,2.989238740534077 -662,23.0,21.0,-2.5405381522555563,3.95440286307604 -662,23.0,22.0,-1.4614056064833263,2.989238740534077 -662,23.0,23.0,5.311836702613133,-9.188263657315172 -662,23.0,24.0,-1.3098929438742493,2.287622053705056 -662,24.0,23.0,-1.3098929438742493,2.287622053705056 -662,24.0,24.0,4.495715080321987,-7.864978761969621 -662,24.0,25.0,-1.2165301194494855,1.8171440463475024 -662,24.0,26.0,-1.9692920169982515,3.760212661917064 -662,25.0,24.0,-1.2165301194494855,1.8171440463475024 -662,25.0,25.0,1.2165301194494855,-1.8171440463475024 -662,26.0,24.0,-1.9692920169982515,3.760212661917064 -662,26.0,26.0,3.652281470778589,-9.46044252232512 -662,26.0,27.0,0.0,2.608731947574922 -662,26.0,28.0,-0.99553355095268,1.881005840357816 -662,26.0,29.0,-0.6874559028276572,1.293971494797717 -662,27.0,5.0,-4.362844058012917,15.463571542897856 -662,27.0,7.0,-1.4439790613954469,4.540814658476248 -662,27.0,26.0,0.0,2.608731947574922 -662,27.0,27.0,5.806823119408364,-22.67145722159613 -662,28.0,26.0,-0.99553355095268,1.881005840357816 -662,28.0,28.0,1.9075867579849564,-3.604364401207048 -662,28.0,29.0,-0.9120532070322764,1.7233585608492326 -662,29.0,26.0,-0.6874559028276572,1.293971494797717 -662,29.0,28.0,-0.9120532070322764,1.7233585608492326 -662,29.0,29.0,1.5995091098599337,-3.0173300556469496 -663,0.0,0.0,6.765516048652632,-21.23160167089863 -663,0.0,1.0,-5.224646179885656,15.646726840803398 -663,0.0,2.0,-1.5408698687669766,5.631674830095234 -663,1.0,0.0,-5.224646179885656,15.646726840803398 -663,1.0,1.0,8.066137284758561,-25.55088539734126 -663,1.0,3.0,-1.7055303166990268,5.1973792282565086 -663,1.0,4.0,-1.1359607881738778,4.772479328281356 -663,2.0,0.0,-1.5408698687669766,5.631674830095234 -663,2.0,2.0,9.736318911079088,-29.13794745915803 -663,2.0,3.0,-8.19544904231211,23.5308726290628 -663,3.0,1.0,-1.7055303166990268,5.1973792282565086 -663,3.0,2.0,-8.19544904231211,23.5308726290628 -663,3.0,3.0,16.314103089185693,-55.509410535254254 -663,3.0,5.0,-6.413123730174556,22.31120356548123 -663,3.0,11.0,0.0,4.191255364806866 -663,4.0,1.0,-1.1359607881738778,4.772479328281356 -663,4.0,4.0,4.089980824135861,-12.190647245055052 -663,4.0,6.0,-2.954020035961983,7.449267916773697 -663,5.0,3.0,-6.413123730174556,22.31120356548123 -663,5.0,5.0,20.655486388269097,-77.7313703704441 -663,5.0,6.0,-3.590210423980992,11.02611441072814 -663,5.0,7.0,-6.289308176100628,22.0125786163522 -663,5.0,8.0,0.0,4.915840805411357 -663,5.0,9.0,0.0,1.8561002591115965 -663,5.0,27.0,-4.362844058012917,15.463571542897856 -663,6.0,4.0,-2.954020035961983,7.449267916773697 -663,6.0,5.0,-3.590210423980992,11.02611441072814 -663,6.0,6.0,6.544230459942975,-18.45668232750184 -663,7.0,5.0,-6.289308176100628,22.0125786163522 -663,7.0,7.0,7.733287237496075,-26.527493274828448 -663,7.0,27.0,-1.4439790613954469,4.540814658476248 -663,8.0,5.0,0.0,4.915840805411357 -663,8.0,8.0,0.0,-18.706293706293707 -663,8.0,9.0,0.0,9.090909090909092 -663,8.0,10.0,0.0,4.807692307692308 -663,9.0,5.0,0.0,1.8561002591115965 -663,9.0,8.0,0.0,9.090909090909092 -663,9.0,9.0,13.462042814524237,-41.3837606675224 -663,9.0,16.0,-3.956039125715353,10.317447719844054 -663,9.0,19.0,-1.7848303152666305,3.98535828943083 -663,9.0,20.0,-5.101853820159654,10.98071411292983 -663,9.0,21.0,-2.619319553382597,5.400770303329455 -663,10.0,8.0,0.0,4.807692307692308 -663,10.0,10.0,0.0,-4.807692307692308 -663,11.0,3.0,0.0,4.191255364806866 -663,11.0,11.0,6.573961583776156,-24.424167659260668 -663,11.0,12.0,0.0,7.142857142857143 -663,11.0,13.0,-1.5265676088395577,3.1734252729654173 -663,11.0,14.0,-3.0953961826564296,6.097275864326261 -663,11.0,15.0,-1.9519977922801688,4.104359379111847 -663,12.0,11.0,0.0,7.142857142857143 -663,12.0,12.0,0.0,-7.142857142857143 -663,13.0,11.0,-1.5265676088395577,3.1734252729654173 -663,13.0,13.0,4.01751987283902,-5.424299332335067 -663,13.0,14.0,-2.4909522639994623,2.250874059369649 -663,14.0,11.0,-3.0953961826564296,6.097275864326261 -663,14.0,13.0,-2.4909522639994623,2.250874059369649 -663,14.0,14.0,9.365498545964757,-16.01163373210796 -663,14.0,17.0,-1.8108011504072024,3.687418931630696 -663,14.0,22.0,-1.9683489489016612,3.976064876781356 -663,15.0,11.0,-1.9519977922801688,4.104359379111847 -663,15.0,15.0,3.271064728633931,-8.94513365126506 -663,15.0,16.0,-1.3190669363537617,4.8407742721532125 -663,16.0,9.0,-3.956039125715353,10.317447719844054 -663,16.0,15.0,-1.3190669363537617,4.8407742721532125 -663,16.0,16.0,5.275106062069114,-15.158221991997266 -663,17.0,14.0,-1.8108011504072024,3.687418931630696 -663,17.0,17.0,4.886487584415919,-9.906177730909668 -663,17.0,18.0,-3.0756864340087167,6.218758799278971 -663,18.0,17.0,-3.0756864340087167,6.218758799278971 -663,18.0,18.0,3.0756864340087167,-6.218758799278971 -663,19.0,9.0,-1.7848303152666305,3.98535828943083 -663,19.0,19.0,1.7848303152666305,-3.98535828943083 -663,20.0,9.0,-5.101853820159654,10.98071411292983 -663,20.0,20.0,21.876495189895888,-45.10843276170355 -663,20.0,21.0,-16.774641369736234,34.127718648773715 -663,21.0,9.0,-2.619319553382597,5.400770303329455 -663,21.0,20.0,-16.774641369736234,34.127718648773715 -663,21.0,21.0,21.93449907537439,-43.48289181517921 -663,21.0,23.0,-2.5405381522555563,3.95440286307604 -663,22.0,14.0,-1.9683489489016612,3.976064876781356 -663,22.0,22.0,3.429754555384988,-6.965303617315433 -663,22.0,23.0,-1.4614056064833263,2.989238740534077 -663,23.0,21.0,-2.5405381522555563,3.95440286307604 -663,23.0,22.0,-1.4614056064833263,2.989238740534077 -663,23.0,23.0,5.311836702613133,-9.188263657315172 -663,23.0,24.0,-1.3098929438742493,2.287622053705056 -663,24.0,23.0,-1.3098929438742493,2.287622053705056 -663,24.0,24.0,4.495715080321987,-7.864978761969621 -663,24.0,25.0,-1.2165301194494855,1.8171440463475024 -663,24.0,26.0,-1.9692920169982515,3.760212661917064 -663,25.0,24.0,-1.2165301194494855,1.8171440463475024 -663,25.0,25.0,1.2165301194494855,-1.8171440463475024 -663,26.0,24.0,-1.9692920169982515,3.760212661917064 -663,26.0,26.0,3.652281470778589,-9.46044252232512 -663,26.0,27.0,0.0,2.608731947574922 -663,26.0,28.0,-0.99553355095268,1.881005840357816 -663,26.0,29.0,-0.6874559028276572,1.293971494797717 -663,27.0,5.0,-4.362844058012917,15.463571542897856 -663,27.0,7.0,-1.4439790613954469,4.540814658476248 -663,27.0,26.0,0.0,2.608731947574922 -663,27.0,27.0,5.806823119408364,-22.67145722159613 -663,28.0,26.0,-0.99553355095268,1.881005840357816 -663,28.0,28.0,1.9075867579849564,-3.604364401207048 -663,28.0,29.0,-0.9120532070322764,1.7233585608492326 -663,29.0,26.0,-0.6874559028276572,1.293971494797717 -663,29.0,28.0,-0.9120532070322764,1.7233585608492326 -663,29.0,29.0,1.5995091098599337,-3.0173300556469496 -664,0.0,0.0,6.765516048652632,-21.23160167089863 -664,0.0,1.0,-5.224646179885656,15.646726840803398 -664,0.0,2.0,-1.5408698687669766,5.631674830095234 -664,1.0,0.0,-5.224646179885656,15.646726840803398 -664,1.0,1.0,9.75228216552403,-30.648662892676068 -664,1.0,3.0,-1.7055303166990268,5.1973792282565086 -664,1.0,4.0,-1.1359607881738778,4.772479328281356 -664,1.0,5.0,-1.6861448807654689,5.116477495334806 -664,2.0,0.0,-1.5408698687669766,5.631674830095234 -664,2.0,2.0,9.736318911079088,-29.13794745915803 -664,2.0,3.0,-8.19544904231211,23.5308726290628 -664,3.0,1.0,-1.7055303166990268,5.1973792282565086 -664,3.0,2.0,-8.19544904231211,23.5308726290628 -664,3.0,3.0,16.314103089185693,-55.509410535254254 -664,3.0,5.0,-6.413123730174556,22.31120356548123 -664,3.0,11.0,0.0,4.191255364806866 -664,4.0,1.0,-1.1359607881738778,4.772479328281356 -664,4.0,4.0,4.089980824135861,-12.190647245055052 -664,4.0,6.0,-2.954020035961983,7.449267916773697 -664,5.0,1.0,-1.6861448807654689,5.116477495334806 -664,5.0,3.0,-6.413123730174556,22.31120356548123 -664,5.0,5.0,22.341631269034565,-82.8291478657789 -664,5.0,6.0,-3.590210423980992,11.02611441072814 -664,5.0,7.0,-6.289308176100628,22.0125786163522 -664,5.0,8.0,0.0,4.915840805411357 -664,5.0,9.0,0.0,1.8561002591115965 -664,5.0,27.0,-4.362844058012917,15.463571542897856 -664,6.0,4.0,-2.954020035961983,7.449267916773697 -664,6.0,5.0,-3.590210423980992,11.02611441072814 -664,6.0,6.0,6.544230459942975,-18.45668232750184 -664,7.0,5.0,-6.289308176100628,22.0125786163522 -664,7.0,7.0,6.289308176100628,-22.0080786163522 -664,8.0,5.0,0.0,4.915840805411357 -664,8.0,8.0,0.0,-18.706293706293707 -664,8.0,9.0,0.0,9.090909090909092 -664,8.0,10.0,0.0,4.807692307692308 -664,9.0,5.0,0.0,1.8561002591115965 -664,9.0,8.0,0.0,9.090909090909092 -664,9.0,9.0,13.462042814524237,-41.3837606675224 -664,9.0,16.0,-3.956039125715353,10.317447719844054 -664,9.0,19.0,-1.7848303152666305,3.98535828943083 -664,9.0,20.0,-5.101853820159654,10.98071411292983 -664,9.0,21.0,-2.619319553382597,5.400770303329455 -664,10.0,8.0,0.0,4.807692307692308 -664,10.0,10.0,0.0,-4.807692307692308 -664,11.0,3.0,0.0,4.191255364806866 -664,11.0,11.0,6.573961583776156,-24.424167659260668 -664,11.0,12.0,0.0,7.142857142857143 -664,11.0,13.0,-1.5265676088395577,3.1734252729654173 -664,11.0,14.0,-3.0953961826564296,6.097275864326261 -664,11.0,15.0,-1.9519977922801688,4.104359379111847 -664,12.0,11.0,0.0,7.142857142857143 -664,12.0,12.0,0.0,-7.142857142857143 -664,13.0,11.0,-1.5265676088395577,3.1734252729654173 -664,13.0,13.0,4.01751987283902,-5.424299332335067 -664,13.0,14.0,-2.4909522639994623,2.250874059369649 -664,14.0,11.0,-3.0953961826564296,6.097275864326261 -664,14.0,13.0,-2.4909522639994623,2.250874059369649 -664,14.0,14.0,9.365498545964757,-16.01163373210796 -664,14.0,17.0,-1.8108011504072024,3.687418931630696 -664,14.0,22.0,-1.9683489489016612,3.976064876781356 -664,15.0,11.0,-1.9519977922801688,4.104359379111847 -664,15.0,15.0,3.271064728633931,-8.94513365126506 -664,15.0,16.0,-1.3190669363537617,4.8407742721532125 -664,16.0,9.0,-3.956039125715353,10.317447719844054 -664,16.0,15.0,-1.3190669363537617,4.8407742721532125 -664,16.0,16.0,5.275106062069114,-15.158221991997266 -664,17.0,14.0,-1.8108011504072024,3.687418931630696 -664,17.0,17.0,4.886487584415919,-9.906177730909668 -664,17.0,18.0,-3.0756864340087167,6.218758799278971 -664,18.0,17.0,-3.0756864340087167,6.218758799278971 -664,18.0,18.0,8.958039375185187,-17.98346468163191 -664,18.0,19.0,-5.88235294117647,11.76470588235294 -664,19.0,9.0,-1.7848303152666305,3.98535828943083 -664,19.0,18.0,-5.88235294117647,11.76470588235294 -664,19.0,19.0,7.6671832564431,-15.75006417178377 -664,20.0,9.0,-5.101853820159654,10.98071411292983 -664,20.0,20.0,21.876495189895888,-45.10843276170355 -664,20.0,21.0,-16.774641369736234,34.127718648773715 -664,21.0,9.0,-2.619319553382597,5.400770303329455 -664,21.0,20.0,-16.774641369736234,34.127718648773715 -664,21.0,21.0,21.93449907537439,-43.48289181517921 -664,21.0,23.0,-2.5405381522555563,3.95440286307604 -664,22.0,14.0,-1.9683489489016612,3.976064876781356 -664,22.0,22.0,3.429754555384988,-6.965303617315433 -664,22.0,23.0,-1.4614056064833263,2.989238740534077 -664,23.0,21.0,-2.5405381522555563,3.95440286307604 -664,23.0,22.0,-1.4614056064833263,2.989238740534077 -664,23.0,23.0,4.001943758738883,-6.900641603610116 -664,24.0,24.0,3.185822136447737,-5.577356708264566 -664,24.0,25.0,-1.2165301194494855,1.8171440463475024 -664,24.0,26.0,-1.9692920169982515,3.760212661917064 -664,25.0,24.0,-1.2165301194494855,1.8171440463475024 -664,25.0,25.0,1.2165301194494855,-1.8171440463475024 -664,26.0,24.0,-1.9692920169982515,3.760212661917064 -664,26.0,26.0,3.652281470778589,-9.46044252232512 -664,26.0,27.0,0.0,2.608731947574922 -664,26.0,28.0,-0.99553355095268,1.881005840357816 -664,26.0,29.0,-0.6874559028276572,1.293971494797717 -664,27.0,5.0,-4.362844058012917,15.463571542897856 -664,27.0,26.0,0.0,2.608731947574922 -664,27.0,27.0,4.362844058012917,-18.15204256311988 -664,28.0,26.0,-0.99553355095268,1.881005840357816 -664,28.0,28.0,1.9075867579849564,-3.604364401207048 -664,28.0,29.0,-0.9120532070322764,1.7233585608492326 -664,29.0,26.0,-0.6874559028276572,1.293971494797717 -664,29.0,28.0,-0.9120532070322764,1.7233585608492326 -664,29.0,29.0,1.5995091098599337,-3.0173300556469496 -665,0.0,0.0,6.765516048652632,-21.23160167089863 -665,0.0,1.0,-5.224646179885656,15.646726840803398 -665,0.0,2.0,-1.5408698687669766,5.631674830095234 -665,1.0,0.0,-5.224646179885656,15.646726840803398 -665,1.0,1.0,8.046751848825002,-25.46968366441956 -665,1.0,4.0,-1.1359607881738778,4.772479328281356 -665,1.0,5.0,-1.6861448807654689,5.116477495334806 -665,2.0,0.0,-1.5408698687669766,5.631674830095234 -665,2.0,2.0,9.736318911079088,-29.13794745915803 -665,2.0,3.0,-8.19544904231211,23.5308726290628 -665,3.0,2.0,-8.19544904231211,23.5308726290628 -665,3.0,3.0,14.608572772486664,-50.33043130699775 -665,3.0,5.0,-6.413123730174556,22.31120356548123 -665,3.0,11.0,0.0,4.191255364806866 -665,4.0,1.0,-1.1359607881738778,4.772479328281356 -665,4.0,4.0,4.089980824135861,-12.190647245055052 -665,4.0,6.0,-2.954020035961983,7.449267916773697 -665,5.0,1.0,-1.6861448807654689,5.116477495334806 -665,5.0,3.0,-6.413123730174556,22.31120356548123 -665,5.0,5.0,22.341631269034565,-82.8291478657789 -665,5.0,6.0,-3.590210423980992,11.02611441072814 -665,5.0,7.0,-6.289308176100628,22.0125786163522 -665,5.0,8.0,0.0,4.915840805411357 -665,5.0,9.0,0.0,1.8561002591115965 -665,5.0,27.0,-4.362844058012917,15.463571542897856 -665,6.0,4.0,-2.954020035961983,7.449267916773697 -665,6.0,5.0,-3.590210423980992,11.02611441072814 -665,6.0,6.0,6.544230459942975,-18.45668232750184 -665,7.0,5.0,-6.289308176100628,22.0125786163522 -665,7.0,7.0,7.733287237496075,-26.527493274828448 -665,7.0,27.0,-1.4439790613954469,4.540814658476248 -665,8.0,5.0,0.0,4.915840805411357 -665,8.0,8.0,0.0,-18.706293706293707 -665,8.0,9.0,0.0,9.090909090909092 -665,8.0,10.0,0.0,4.807692307692308 -665,9.0,5.0,0.0,1.8561002591115965 -665,9.0,8.0,0.0,9.090909090909092 -665,9.0,9.0,13.462042814524237,-41.3837606675224 -665,9.0,16.0,-3.956039125715353,10.317447719844054 -665,9.0,19.0,-1.7848303152666305,3.98535828943083 -665,9.0,20.0,-5.101853820159654,10.98071411292983 -665,9.0,21.0,-2.619319553382597,5.400770303329455 -665,10.0,8.0,0.0,4.807692307692308 -665,10.0,10.0,0.0,-4.807692307692308 -665,11.0,3.0,0.0,4.191255364806866 -665,11.0,11.0,6.573961583776156,-24.424167659260668 -665,11.0,12.0,0.0,7.142857142857143 -665,11.0,13.0,-1.5265676088395577,3.1734252729654173 -665,11.0,14.0,-3.0953961826564296,6.097275864326261 -665,11.0,15.0,-1.9519977922801688,4.104359379111847 -665,12.0,11.0,0.0,7.142857142857143 -665,12.0,12.0,0.0,-7.142857142857143 -665,13.0,11.0,-1.5265676088395577,3.1734252729654173 -665,13.0,13.0,4.01751987283902,-5.424299332335067 -665,13.0,14.0,-2.4909522639994623,2.250874059369649 -665,14.0,11.0,-3.0953961826564296,6.097275864326261 -665,14.0,13.0,-2.4909522639994623,2.250874059369649 -665,14.0,14.0,9.365498545964757,-16.01163373210796 -665,14.0,17.0,-1.8108011504072024,3.687418931630696 -665,14.0,22.0,-1.9683489489016612,3.976064876781356 -665,15.0,11.0,-1.9519977922801688,4.104359379111847 -665,15.0,15.0,3.271064728633931,-8.94513365126506 -665,15.0,16.0,-1.3190669363537617,4.8407742721532125 -665,16.0,9.0,-3.956039125715353,10.317447719844054 -665,16.0,15.0,-1.3190669363537617,4.8407742721532125 -665,16.0,16.0,5.275106062069114,-15.158221991997266 -665,17.0,14.0,-1.8108011504072024,3.687418931630696 -665,17.0,17.0,4.886487584415919,-9.906177730909668 -665,17.0,18.0,-3.0756864340087167,6.218758799278971 -665,18.0,17.0,-3.0756864340087167,6.218758799278971 -665,18.0,18.0,3.0756864340087167,-6.218758799278971 -665,19.0,9.0,-1.7848303152666305,3.98535828943083 -665,19.0,19.0,1.7848303152666305,-3.98535828943083 -665,20.0,9.0,-5.101853820159654,10.98071411292983 -665,20.0,20.0,21.876495189895888,-45.10843276170355 -665,20.0,21.0,-16.774641369736234,34.127718648773715 -665,21.0,9.0,-2.619319553382597,5.400770303329455 -665,21.0,20.0,-16.774641369736234,34.127718648773715 -665,21.0,21.0,21.93449907537439,-43.48289181517921 -665,21.0,23.0,-2.5405381522555563,3.95440286307604 -665,22.0,14.0,-1.9683489489016612,3.976064876781356 -665,22.0,22.0,1.9683489489016612,-3.976064876781356 -665,23.0,21.0,-2.5405381522555563,3.95440286307604 -665,23.0,23.0,3.850431096129806,-6.199024916781094 -665,23.0,24.0,-1.3098929438742493,2.287622053705056 -665,24.0,23.0,-1.3098929438742493,2.287622053705056 -665,24.0,24.0,4.495715080321987,-7.864978761969621 -665,24.0,25.0,-1.2165301194494855,1.8171440463475024 -665,24.0,26.0,-1.9692920169982515,3.760212661917064 -665,25.0,24.0,-1.2165301194494855,1.8171440463475024 -665,25.0,25.0,1.2165301194494855,-1.8171440463475024 -665,26.0,24.0,-1.9692920169982515,3.760212661917064 -665,26.0,26.0,2.9648255679509314,-8.166471027527404 -665,26.0,27.0,0.0,2.608731947574922 -665,26.0,28.0,-0.99553355095268,1.881005840357816 -665,27.0,5.0,-4.362844058012917,15.463571542897856 -665,27.0,7.0,-1.4439790613954469,4.540814658476248 -665,27.0,26.0,0.0,2.608731947574922 -665,27.0,27.0,5.806823119408364,-22.67145722159613 -665,28.0,26.0,-0.99553355095268,1.881005840357816 -665,28.0,28.0,1.9075867579849564,-3.604364401207048 -665,28.0,29.0,-0.9120532070322764,1.7233585608492326 -665,29.0,28.0,-0.9120532070322764,1.7233585608492326 -665,29.0,29.0,0.9120532070322764,-1.7233585608492326 -666,0.0,0.0,6.765516048652632,-21.23160167089863 -666,0.0,1.0,-5.224646179885656,15.646726840803398 -666,0.0,2.0,-1.5408698687669766,5.631674830095234 -666,1.0,0.0,-5.224646179885656,15.646726840803398 -666,1.0,1.0,9.75228216552403,-30.648662892676068 -666,1.0,3.0,-1.7055303166990268,5.1973792282565086 -666,1.0,4.0,-1.1359607881738778,4.772479328281356 -666,1.0,5.0,-1.6861448807654689,5.116477495334806 -666,2.0,0.0,-1.5408698687669766,5.631674830095234 -666,2.0,2.0,9.736318911079088,-29.13794745915803 -666,2.0,3.0,-8.19544904231211,23.5308726290628 -666,3.0,1.0,-1.7055303166990268,5.1973792282565086 -666,3.0,2.0,-8.19544904231211,23.5308726290628 -666,3.0,3.0,16.314103089185693,-55.509410535254254 -666,3.0,5.0,-6.413123730174556,22.31120356548123 -666,3.0,11.0,0.0,4.191255364806866 -666,4.0,1.0,-1.1359607881738778,4.772479328281356 -666,4.0,4.0,4.089980824135861,-12.190647245055052 -666,4.0,6.0,-2.954020035961983,7.449267916773697 -666,5.0,1.0,-1.6861448807654689,5.116477495334806 -666,5.0,3.0,-6.413123730174556,22.31120356548123 -666,5.0,5.0,12.46211266895294,-49.80345483869856 -666,5.0,8.0,0.0,4.915840805411357 -666,5.0,9.0,0.0,1.8561002591115965 -666,5.0,27.0,-4.362844058012917,15.463571542897856 -666,6.0,4.0,-2.954020035961983,7.449267916773697 -666,6.0,6.0,2.954020035961983,-7.439067916773697 -666,7.0,7.0,1.4439790613954469,-4.519414658476248 -666,7.0,27.0,-1.4439790613954469,4.540814658476248 -666,8.0,5.0,0.0,4.915840805411357 -666,8.0,8.0,0.0,-18.706293706293707 -666,8.0,9.0,0.0,9.090909090909092 -666,8.0,10.0,0.0,4.807692307692308 -666,9.0,5.0,0.0,1.8561002591115965 -666,9.0,8.0,0.0,9.090909090909092 -666,9.0,9.0,13.462042814524237,-41.3837606675224 -666,9.0,16.0,-3.956039125715353,10.317447719844054 -666,9.0,19.0,-1.7848303152666305,3.98535828943083 -666,9.0,20.0,-5.101853820159654,10.98071411292983 -666,9.0,21.0,-2.619319553382597,5.400770303329455 -666,10.0,8.0,0.0,4.807692307692308 -666,10.0,10.0,0.0,-4.807692307692308 -666,11.0,3.0,0.0,4.191255364806866 -666,11.0,11.0,6.573961583776156,-24.424167659260668 -666,11.0,12.0,0.0,7.142857142857143 -666,11.0,13.0,-1.5265676088395577,3.1734252729654173 -666,11.0,14.0,-3.0953961826564296,6.097275864326261 -666,11.0,15.0,-1.9519977922801688,4.104359379111847 -666,12.0,11.0,0.0,7.142857142857143 -666,12.0,12.0,0.0,-7.142857142857143 -666,13.0,11.0,-1.5265676088395577,3.1734252729654173 -666,13.0,13.0,4.01751987283902,-5.424299332335067 -666,13.0,14.0,-2.4909522639994623,2.250874059369649 -666,14.0,11.0,-3.0953961826564296,6.097275864326261 -666,14.0,13.0,-2.4909522639994623,2.250874059369649 -666,14.0,14.0,9.365498545964757,-16.01163373210796 -666,14.0,17.0,-1.8108011504072024,3.687418931630696 -666,14.0,22.0,-1.9683489489016612,3.976064876781356 -666,15.0,11.0,-1.9519977922801688,4.104359379111847 -666,15.0,15.0,3.271064728633931,-8.94513365126506 -666,15.0,16.0,-1.3190669363537617,4.8407742721532125 -666,16.0,9.0,-3.956039125715353,10.317447719844054 -666,16.0,15.0,-1.3190669363537617,4.8407742721532125 -666,16.0,16.0,5.275106062069114,-15.158221991997266 -666,17.0,14.0,-1.8108011504072024,3.687418931630696 -666,17.0,17.0,4.886487584415919,-9.906177730909668 -666,17.0,18.0,-3.0756864340087167,6.218758799278971 -666,18.0,17.0,-3.0756864340087167,6.218758799278971 -666,18.0,18.0,8.958039375185187,-17.98346468163191 -666,18.0,19.0,-5.88235294117647,11.76470588235294 -666,19.0,9.0,-1.7848303152666305,3.98535828943083 -666,19.0,18.0,-5.88235294117647,11.76470588235294 -666,19.0,19.0,7.6671832564431,-15.75006417178377 -666,20.0,9.0,-5.101853820159654,10.98071411292983 -666,20.0,20.0,21.876495189895888,-45.10843276170355 -666,20.0,21.0,-16.774641369736234,34.127718648773715 -666,21.0,9.0,-2.619319553382597,5.400770303329455 -666,21.0,20.0,-16.774641369736234,34.127718648773715 -666,21.0,21.0,21.93449907537439,-43.48289181517921 -666,21.0,23.0,-2.5405381522555563,3.95440286307604 -666,22.0,14.0,-1.9683489489016612,3.976064876781356 -666,22.0,22.0,3.429754555384988,-6.965303617315433 -666,22.0,23.0,-1.4614056064833263,2.989238740534077 -666,23.0,21.0,-2.5405381522555563,3.95440286307604 -666,23.0,22.0,-1.4614056064833263,2.989238740534077 -666,23.0,23.0,5.311836702613133,-9.188263657315172 -666,23.0,24.0,-1.3098929438742493,2.287622053705056 -666,24.0,23.0,-1.3098929438742493,2.287622053705056 -666,24.0,24.0,4.495715080321987,-7.864978761969621 -666,24.0,25.0,-1.2165301194494855,1.8171440463475024 -666,24.0,26.0,-1.9692920169982515,3.760212661917064 -666,25.0,24.0,-1.2165301194494855,1.8171440463475024 -666,25.0,25.0,1.2165301194494855,-1.8171440463475024 -666,26.0,24.0,-1.9692920169982515,3.760212661917064 -666,26.0,26.0,3.652281470778589,-9.46044252232512 -666,26.0,27.0,0.0,2.608731947574922 -666,26.0,28.0,-0.99553355095268,1.881005840357816 -666,26.0,29.0,-0.6874559028276572,1.293971494797717 -666,27.0,5.0,-4.362844058012917,15.463571542897856 -666,27.0,7.0,-1.4439790613954469,4.540814658476248 -666,27.0,26.0,0.0,2.608731947574922 -666,27.0,27.0,5.806823119408364,-22.67145722159613 -666,28.0,26.0,-0.99553355095268,1.881005840357816 -666,28.0,28.0,1.9075867579849564,-3.604364401207048 -666,28.0,29.0,-0.9120532070322764,1.7233585608492326 -666,29.0,26.0,-0.6874559028276572,1.293971494797717 -666,29.0,28.0,-0.9120532070322764,1.7233585608492326 -666,29.0,29.0,1.5995091098599337,-3.0173300556469496 -667,0.0,0.0,6.765516048652632,-21.23160167089863 -667,0.0,1.0,-5.224646179885656,15.646726840803398 -667,0.0,2.0,-1.5408698687669766,5.631674830095234 -667,1.0,0.0,-5.224646179885656,15.646726840803398 -667,1.0,1.0,9.75228216552403,-30.648662892676068 -667,1.0,3.0,-1.7055303166990268,5.1973792282565086 -667,1.0,4.0,-1.1359607881738778,4.772479328281356 -667,1.0,5.0,-1.6861448807654689,5.116477495334806 -667,2.0,0.0,-1.5408698687669766,5.631674830095234 -667,2.0,2.0,9.736318911079088,-29.13794745915803 -667,2.0,3.0,-8.19544904231211,23.5308726290628 -667,3.0,1.0,-1.7055303166990268,5.1973792282565086 -667,3.0,2.0,-8.19544904231211,23.5308726290628 -667,3.0,3.0,16.314103089185693,-55.509410535254254 -667,3.0,5.0,-6.413123730174556,22.31120356548123 -667,3.0,11.0,0.0,4.191255364806866 -667,4.0,1.0,-1.1359607881738778,4.772479328281356 -667,4.0,4.0,4.089980824135861,-12.190647245055052 -667,4.0,6.0,-2.954020035961983,7.449267916773697 -667,5.0,1.0,-1.6861448807654689,5.116477495334806 -667,5.0,3.0,-6.413123730174556,22.31120356548123 -667,5.0,5.0,22.341631269034565,-82.8291478657789 -667,5.0,6.0,-3.590210423980992,11.02611441072814 -667,5.0,7.0,-6.289308176100628,22.0125786163522 -667,5.0,8.0,0.0,4.915840805411357 -667,5.0,9.0,0.0,1.8561002591115965 -667,5.0,27.0,-4.362844058012917,15.463571542897856 -667,6.0,4.0,-2.954020035961983,7.449267916773697 -667,6.0,5.0,-3.590210423980992,11.02611441072814 -667,6.0,6.0,6.544230459942975,-18.45668232750184 -667,7.0,5.0,-6.289308176100628,22.0125786163522 -667,7.0,7.0,7.733287237496075,-26.527493274828448 -667,7.0,27.0,-1.4439790613954469,4.540814658476248 -667,8.0,5.0,0.0,4.915840805411357 -667,8.0,8.0,0.0,-18.706293706293707 -667,8.0,9.0,0.0,9.090909090909092 -667,8.0,10.0,0.0,4.807692307692308 -667,9.0,5.0,0.0,1.8561002591115965 -667,9.0,8.0,0.0,9.090909090909092 -667,9.0,9.0,13.462042814524237,-41.3837606675224 -667,9.0,16.0,-3.956039125715353,10.317447719844054 -667,9.0,19.0,-1.7848303152666305,3.98535828943083 -667,9.0,20.0,-5.101853820159654,10.98071411292983 -667,9.0,21.0,-2.619319553382597,5.400770303329455 -667,10.0,8.0,0.0,4.807692307692308 -667,10.0,10.0,0.0,-4.807692307692308 -667,11.0,3.0,0.0,4.191255364806866 -667,11.0,11.0,6.573961583776156,-24.424167659260668 -667,11.0,12.0,0.0,7.142857142857143 -667,11.0,13.0,-1.5265676088395577,3.1734252729654173 -667,11.0,14.0,-3.0953961826564296,6.097275864326261 -667,11.0,15.0,-1.9519977922801688,4.104359379111847 -667,12.0,11.0,0.0,7.142857142857143 -667,12.0,12.0,0.0,-7.142857142857143 -667,13.0,11.0,-1.5265676088395577,3.1734252729654173 -667,13.0,13.0,4.01751987283902,-5.424299332335067 -667,13.0,14.0,-2.4909522639994623,2.250874059369649 -667,14.0,11.0,-3.0953961826564296,6.097275864326261 -667,14.0,13.0,-2.4909522639994623,2.250874059369649 -667,14.0,14.0,9.365498545964757,-16.01163373210796 -667,14.0,17.0,-1.8108011504072024,3.687418931630696 -667,14.0,22.0,-1.9683489489016612,3.976064876781356 -667,15.0,11.0,-1.9519977922801688,4.104359379111847 -667,15.0,15.0,3.271064728633931,-8.94513365126506 -667,15.0,16.0,-1.3190669363537617,4.8407742721532125 -667,16.0,9.0,-3.956039125715353,10.317447719844054 -667,16.0,15.0,-1.3190669363537617,4.8407742721532125 -667,16.0,16.0,5.275106062069114,-15.158221991997266 -667,17.0,14.0,-1.8108011504072024,3.687418931630696 -667,17.0,17.0,1.8108011504072024,-3.687418931630696 -667,18.0,18.0,5.88235294117647,-11.76470588235294 -667,18.0,19.0,-5.88235294117647,11.76470588235294 -667,19.0,9.0,-1.7848303152666305,3.98535828943083 -667,19.0,18.0,-5.88235294117647,11.76470588235294 -667,19.0,19.0,7.6671832564431,-15.75006417178377 -667,20.0,9.0,-5.101853820159654,10.98071411292983 -667,20.0,20.0,21.876495189895888,-45.10843276170355 -667,20.0,21.0,-16.774641369736234,34.127718648773715 -667,21.0,9.0,-2.619319553382597,5.400770303329455 -667,21.0,20.0,-16.774641369736234,34.127718648773715 -667,21.0,21.0,21.93449907537439,-43.48289181517921 -667,21.0,23.0,-2.5405381522555563,3.95440286307604 -667,22.0,14.0,-1.9683489489016612,3.976064876781356 -667,22.0,22.0,3.429754555384988,-6.965303617315433 -667,22.0,23.0,-1.4614056064833263,2.989238740534077 -667,23.0,21.0,-2.5405381522555563,3.95440286307604 -667,23.0,22.0,-1.4614056064833263,2.989238740534077 -667,23.0,23.0,5.311836702613133,-9.188263657315172 -667,23.0,24.0,-1.3098929438742493,2.287622053705056 -667,24.0,23.0,-1.3098929438742493,2.287622053705056 -667,24.0,24.0,4.495715080321987,-7.864978761969621 -667,24.0,25.0,-1.2165301194494855,1.8171440463475024 -667,24.0,26.0,-1.9692920169982515,3.760212661917064 -667,25.0,24.0,-1.2165301194494855,1.8171440463475024 -667,25.0,25.0,1.2165301194494855,-1.8171440463475024 -667,26.0,24.0,-1.9692920169982515,3.760212661917064 -667,26.0,26.0,3.652281470778589,-9.46044252232512 -667,26.0,27.0,0.0,2.608731947574922 -667,26.0,28.0,-0.99553355095268,1.881005840357816 -667,26.0,29.0,-0.6874559028276572,1.293971494797717 -667,27.0,5.0,-4.362844058012917,15.463571542897856 -667,27.0,7.0,-1.4439790613954469,4.540814658476248 -667,27.0,26.0,0.0,2.608731947574922 -667,27.0,27.0,5.806823119408364,-22.67145722159613 -667,28.0,26.0,-0.99553355095268,1.881005840357816 -667,28.0,28.0,1.9075867579849564,-3.604364401207048 -667,28.0,29.0,-0.9120532070322764,1.7233585608492326 -667,29.0,26.0,-0.6874559028276572,1.293971494797717 -667,29.0,28.0,-0.9120532070322764,1.7233585608492326 -667,29.0,29.0,1.5995091098599337,-3.0173300556469496 -668,0.0,0.0,6.765516048652632,-21.23160167089863 -668,0.0,1.0,-5.224646179885656,15.646726840803398 -668,0.0,2.0,-1.5408698687669766,5.631674830095234 -668,1.0,0.0,-5.224646179885656,15.646726840803398 -668,1.0,1.0,9.75228216552403,-30.648662892676068 -668,1.0,3.0,-1.7055303166990268,5.1973792282565086 -668,1.0,4.0,-1.1359607881738778,4.772479328281356 -668,1.0,5.0,-1.6861448807654689,5.116477495334806 -668,2.0,0.0,-1.5408698687669766,5.631674830095234 -668,2.0,2.0,1.5408698687669766,-5.611274830095233 -668,3.0,1.0,-1.7055303166990268,5.1973792282565086 -668,3.0,3.0,8.118654046873583,-31.982737906191456 -668,3.0,5.0,-6.413123730174556,22.31120356548123 -668,3.0,11.0,0.0,4.191255364806866 -668,4.0,1.0,-1.1359607881738778,4.772479328281356 -668,4.0,4.0,4.089980824135861,-12.190647245055052 -668,4.0,6.0,-2.954020035961983,7.449267916773697 -668,5.0,1.0,-1.6861448807654689,5.116477495334806 -668,5.0,3.0,-6.413123730174556,22.31120356548123 -668,5.0,5.0,22.341631269034565,-82.8291478657789 -668,5.0,6.0,-3.590210423980992,11.02611441072814 -668,5.0,7.0,-6.289308176100628,22.0125786163522 -668,5.0,8.0,0.0,4.915840805411357 -668,5.0,9.0,0.0,1.8561002591115965 -668,5.0,27.0,-4.362844058012917,15.463571542897856 -668,6.0,4.0,-2.954020035961983,7.449267916773697 -668,6.0,5.0,-3.590210423980992,11.02611441072814 -668,6.0,6.0,6.544230459942975,-18.45668232750184 -668,7.0,5.0,-6.289308176100628,22.0125786163522 -668,7.0,7.0,7.733287237496075,-26.527493274828448 -668,7.0,27.0,-1.4439790613954469,4.540814658476248 -668,8.0,5.0,0.0,4.915840805411357 -668,8.0,8.0,0.0,-18.706293706293707 -668,8.0,9.0,0.0,9.090909090909092 -668,8.0,10.0,0.0,4.807692307692308 -668,9.0,5.0,0.0,1.8561002591115965 -668,9.0,8.0,0.0,9.090909090909092 -668,9.0,9.0,13.462042814524237,-41.3837606675224 -668,9.0,16.0,-3.956039125715353,10.317447719844054 -668,9.0,19.0,-1.7848303152666305,3.98535828943083 -668,9.0,20.0,-5.101853820159654,10.98071411292983 -668,9.0,21.0,-2.619319553382597,5.400770303329455 -668,10.0,8.0,0.0,4.807692307692308 -668,10.0,10.0,0.0,-4.807692307692308 -668,11.0,3.0,0.0,4.191255364806866 -668,11.0,11.0,6.573961583776156,-24.424167659260668 -668,11.0,12.0,0.0,7.142857142857143 -668,11.0,13.0,-1.5265676088395577,3.1734252729654173 -668,11.0,14.0,-3.0953961826564296,6.097275864326261 -668,11.0,15.0,-1.9519977922801688,4.104359379111847 -668,12.0,11.0,0.0,7.142857142857143 -668,12.0,12.0,0.0,-7.142857142857143 -668,13.0,11.0,-1.5265676088395577,3.1734252729654173 -668,13.0,13.0,4.01751987283902,-5.424299332335067 -668,13.0,14.0,-2.4909522639994623,2.250874059369649 -668,14.0,11.0,-3.0953961826564296,6.097275864326261 -668,14.0,13.0,-2.4909522639994623,2.250874059369649 -668,14.0,14.0,9.365498545964757,-16.01163373210796 -668,14.0,17.0,-1.8108011504072024,3.687418931630696 -668,14.0,22.0,-1.9683489489016612,3.976064876781356 -668,15.0,11.0,-1.9519977922801688,4.104359379111847 -668,15.0,15.0,3.271064728633931,-8.94513365126506 -668,15.0,16.0,-1.3190669363537617,4.8407742721532125 -668,16.0,9.0,-3.956039125715353,10.317447719844054 -668,16.0,15.0,-1.3190669363537617,4.8407742721532125 -668,16.0,16.0,5.275106062069114,-15.158221991997266 -668,17.0,14.0,-1.8108011504072024,3.687418931630696 -668,17.0,17.0,4.886487584415919,-9.906177730909668 -668,17.0,18.0,-3.0756864340087167,6.218758799278971 -668,18.0,17.0,-3.0756864340087167,6.218758799278971 -668,18.0,18.0,8.958039375185187,-17.98346468163191 -668,18.0,19.0,-5.88235294117647,11.76470588235294 -668,19.0,9.0,-1.7848303152666305,3.98535828943083 -668,19.0,18.0,-5.88235294117647,11.76470588235294 -668,19.0,19.0,7.6671832564431,-15.75006417178377 -668,20.0,9.0,-5.101853820159654,10.98071411292983 -668,20.0,20.0,21.876495189895888,-45.10843276170355 -668,20.0,21.0,-16.774641369736234,34.127718648773715 -668,21.0,9.0,-2.619319553382597,5.400770303329455 -668,21.0,20.0,-16.774641369736234,34.127718648773715 -668,21.0,21.0,21.93449907537439,-43.48289181517921 -668,21.0,23.0,-2.5405381522555563,3.95440286307604 -668,22.0,14.0,-1.9683489489016612,3.976064876781356 -668,22.0,22.0,3.429754555384988,-6.965303617315433 -668,22.0,23.0,-1.4614056064833263,2.989238740534077 -668,23.0,21.0,-2.5405381522555563,3.95440286307604 -668,23.0,22.0,-1.4614056064833263,2.989238740534077 -668,23.0,23.0,5.311836702613133,-9.188263657315172 -668,23.0,24.0,-1.3098929438742493,2.287622053705056 -668,24.0,23.0,-1.3098929438742493,2.287622053705056 -668,24.0,24.0,4.495715080321987,-7.864978761969621 -668,24.0,25.0,-1.2165301194494855,1.8171440463475024 -668,24.0,26.0,-1.9692920169982515,3.760212661917064 -668,25.0,24.0,-1.2165301194494855,1.8171440463475024 -668,25.0,25.0,1.2165301194494855,-1.8171440463475024 -668,26.0,24.0,-1.9692920169982515,3.760212661917064 -668,26.0,26.0,3.652281470778589,-9.46044252232512 -668,26.0,27.0,0.0,2.608731947574922 -668,26.0,28.0,-0.99553355095268,1.881005840357816 -668,26.0,29.0,-0.6874559028276572,1.293971494797717 -668,27.0,5.0,-4.362844058012917,15.463571542897856 -668,27.0,7.0,-1.4439790613954469,4.540814658476248 -668,27.0,26.0,0.0,2.608731947574922 -668,27.0,27.0,5.806823119408364,-22.67145722159613 -668,28.0,26.0,-0.99553355095268,1.881005840357816 -668,28.0,28.0,1.9075867579849564,-3.604364401207048 -668,28.0,29.0,-0.9120532070322764,1.7233585608492326 -668,29.0,26.0,-0.6874559028276572,1.293971494797717 -668,29.0,28.0,-0.9120532070322764,1.7233585608492326 -668,29.0,29.0,1.5995091098599337,-3.0173300556469496 -669,0.0,0.0,6.765516048652632,-21.23160167089863 -669,0.0,1.0,-5.224646179885656,15.646726840803398 -669,0.0,2.0,-1.5408698687669766,5.631674830095234 -669,1.0,0.0,-5.224646179885656,15.646726840803398 -669,1.0,1.0,9.75228216552403,-30.648662892676068 -669,1.0,3.0,-1.7055303166990268,5.1973792282565086 -669,1.0,4.0,-1.1359607881738778,4.772479328281356 -669,1.0,5.0,-1.6861448807654689,5.116477495334806 -669,2.0,0.0,-1.5408698687669766,5.631674830095234 -669,2.0,2.0,9.736318911079088,-29.13794745915803 -669,2.0,3.0,-8.19544904231211,23.5308726290628 -669,3.0,1.0,-1.7055303166990268,5.1973792282565086 -669,3.0,2.0,-8.19544904231211,23.5308726290628 -669,3.0,3.0,16.314103089185693,-55.509410535254254 -669,3.0,5.0,-6.413123730174556,22.31120356548123 -669,3.0,11.0,0.0,4.191255364806866 -669,4.0,1.0,-1.1359607881738778,4.772479328281356 -669,4.0,4.0,4.089980824135861,-12.190647245055052 -669,4.0,6.0,-2.954020035961983,7.449267916773697 -669,5.0,1.0,-1.6861448807654689,5.116477495334806 -669,5.0,3.0,-6.413123730174556,22.31120356548123 -669,5.0,5.0,22.341631269034565,-82.8291478657789 -669,5.0,6.0,-3.590210423980992,11.02611441072814 -669,5.0,7.0,-6.289308176100628,22.0125786163522 -669,5.0,8.0,0.0,4.915840805411357 -669,5.0,9.0,0.0,1.8561002591115965 -669,5.0,27.0,-4.362844058012917,15.463571542897856 -669,6.0,4.0,-2.954020035961983,7.449267916773697 -669,6.0,5.0,-3.590210423980992,11.02611441072814 -669,6.0,6.0,6.544230459942975,-18.45668232750184 -669,7.0,5.0,-6.289308176100628,22.0125786163522 -669,7.0,7.0,7.733287237496075,-26.527493274828448 -669,7.0,27.0,-1.4439790613954469,4.540814658476248 -669,8.0,5.0,0.0,4.915840805411357 -669,8.0,8.0,0.0,-18.706293706293707 -669,8.0,9.0,0.0,9.090909090909092 -669,8.0,10.0,0.0,4.807692307692308 -669,9.0,5.0,0.0,1.8561002591115965 -669,9.0,8.0,0.0,9.090909090909092 -669,9.0,9.0,13.462042814524237,-41.3837606675224 -669,9.0,16.0,-3.956039125715353,10.317447719844054 -669,9.0,19.0,-1.7848303152666305,3.98535828943083 -669,9.0,20.0,-5.101853820159654,10.98071411292983 -669,9.0,21.0,-2.619319553382597,5.400770303329455 -669,10.0,8.0,0.0,4.807692307692308 -669,10.0,10.0,0.0,-4.807692307692308 -669,11.0,3.0,0.0,4.191255364806866 -669,11.0,11.0,6.573961583776156,-24.424167659260668 -669,11.0,12.0,0.0,7.142857142857143 -669,11.0,13.0,-1.5265676088395577,3.1734252729654173 -669,11.0,14.0,-3.0953961826564296,6.097275864326261 -669,11.0,15.0,-1.9519977922801688,4.104359379111847 -669,12.0,11.0,0.0,7.142857142857143 -669,12.0,12.0,0.0,-7.142857142857143 -669,13.0,11.0,-1.5265676088395577,3.1734252729654173 -669,13.0,13.0,4.01751987283902,-5.424299332335067 -669,13.0,14.0,-2.4909522639994623,2.250874059369649 -669,14.0,11.0,-3.0953961826564296,6.097275864326261 -669,14.0,13.0,-2.4909522639994623,2.250874059369649 -669,14.0,14.0,9.365498545964757,-16.01163373210796 -669,14.0,17.0,-1.8108011504072024,3.687418931630696 -669,14.0,22.0,-1.9683489489016612,3.976064876781356 -669,15.0,11.0,-1.9519977922801688,4.104359379111847 -669,15.0,15.0,3.271064728633931,-8.94513365126506 -669,15.0,16.0,-1.3190669363537617,4.8407742721532125 -669,16.0,9.0,-3.956039125715353,10.317447719844054 -669,16.0,15.0,-1.3190669363537617,4.8407742721532125 -669,16.0,16.0,5.275106062069114,-15.158221991997266 -669,17.0,14.0,-1.8108011504072024,3.687418931630696 -669,17.0,17.0,4.886487584415919,-9.906177730909668 -669,17.0,18.0,-3.0756864340087167,6.218758799278971 -669,18.0,17.0,-3.0756864340087167,6.218758799278971 -669,18.0,18.0,8.958039375185187,-17.98346468163191 -669,18.0,19.0,-5.88235294117647,11.76470588235294 -669,19.0,9.0,-1.7848303152666305,3.98535828943083 -669,19.0,18.0,-5.88235294117647,11.76470588235294 -669,19.0,19.0,7.6671832564431,-15.75006417178377 -669,20.0,9.0,-5.101853820159654,10.98071411292983 -669,20.0,20.0,21.876495189895888,-45.10843276170355 -669,20.0,21.0,-16.774641369736234,34.127718648773715 -669,21.0,9.0,-2.619319553382597,5.400770303329455 -669,21.0,20.0,-16.774641369736234,34.127718648773715 -669,21.0,21.0,21.93449907537439,-43.48289181517921 -669,21.0,23.0,-2.5405381522555563,3.95440286307604 -669,22.0,14.0,-1.9683489489016612,3.976064876781356 -669,22.0,22.0,3.429754555384988,-6.965303617315433 -669,22.0,23.0,-1.4614056064833263,2.989238740534077 -669,23.0,21.0,-2.5405381522555563,3.95440286307604 -669,23.0,22.0,-1.4614056064833263,2.989238740534077 -669,23.0,23.0,5.311836702613133,-9.188263657315172 -669,23.0,24.0,-1.3098929438742493,2.287622053705056 -669,24.0,23.0,-1.3098929438742493,2.287622053705056 -669,24.0,24.0,4.495715080321987,-7.864978761969621 -669,24.0,25.0,-1.2165301194494855,1.8171440463475024 -669,24.0,26.0,-1.9692920169982515,3.760212661917064 -669,25.0,24.0,-1.2165301194494855,1.8171440463475024 -669,25.0,25.0,1.2165301194494855,-1.8171440463475024 -669,26.0,24.0,-1.9692920169982515,3.760212661917064 -669,26.0,26.0,3.652281470778589,-9.46044252232512 -669,26.0,27.0,0.0,2.608731947574922 -669,26.0,28.0,-0.99553355095268,1.881005840357816 -669,26.0,29.0,-0.6874559028276572,1.293971494797717 -669,27.0,5.0,-4.362844058012917,15.463571542897856 -669,27.0,7.0,-1.4439790613954469,4.540814658476248 -669,27.0,26.0,0.0,2.608731947574922 -669,27.0,27.0,5.806823119408364,-22.67145722159613 -669,28.0,26.0,-0.99553355095268,1.881005840357816 -669,28.0,28.0,1.9075867579849564,-3.604364401207048 -669,28.0,29.0,-0.9120532070322764,1.7233585608492326 -669,29.0,26.0,-0.6874559028276572,1.293971494797717 -669,29.0,28.0,-0.9120532070322764,1.7233585608492326 -669,29.0,29.0,1.5995091098599337,-3.0173300556469496 -670,0.0,0.0,6.765516048652632,-21.23160167089863 -670,0.0,1.0,-5.224646179885656,15.646726840803398 -670,0.0,2.0,-1.5408698687669766,5.631674830095234 -670,1.0,0.0,-5.224646179885656,15.646726840803398 -670,1.0,1.0,8.046751848825002,-25.46968366441956 -670,1.0,4.0,-1.1359607881738778,4.772479328281356 -670,1.0,5.0,-1.6861448807654689,5.116477495334806 -670,2.0,0.0,-1.5408698687669766,5.631674830095234 -670,2.0,2.0,9.736318911079088,-29.13794745915803 -670,2.0,3.0,-8.19544904231211,23.5308726290628 -670,3.0,2.0,-8.19544904231211,23.5308726290628 -670,3.0,3.0,8.19544904231211,-28.02372774151652 -670,3.0,11.0,0.0,4.191255364806866 -670,4.0,1.0,-1.1359607881738778,4.772479328281356 -670,4.0,4.0,1.1359607881738778,-4.751579328281355 -670,5.0,1.0,-1.6861448807654689,5.116477495334806 -670,5.0,5.0,15.928507538860009,-58.60696415673565 -670,5.0,6.0,-3.590210423980992,11.02611441072814 -670,5.0,7.0,-6.289308176100628,22.0125786163522 -670,5.0,8.0,0.0,4.915840805411357 -670,5.0,27.0,-4.362844058012917,15.463571542897856 -670,6.0,5.0,-3.590210423980992,11.02611441072814 -670,6.0,6.0,3.590210423980992,-11.01761441072814 -670,7.0,5.0,-6.289308176100628,22.0125786163522 -670,7.0,7.0,7.733287237496075,-26.527493274828448 -670,7.0,27.0,-1.4439790613954469,4.540814658476248 -670,8.0,5.0,0.0,4.915840805411357 -670,8.0,8.0,0.0,-18.706293706293707 -670,8.0,9.0,0.0,9.090909090909092 -670,8.0,10.0,0.0,4.807692307692308 -670,9.0,8.0,0.0,9.090909090909092 -670,9.0,9.0,13.462042814524237,-39.58519951644326 -670,9.0,16.0,-3.956039125715353,10.317447719844054 -670,9.0,19.0,-1.7848303152666305,3.98535828943083 -670,9.0,20.0,-5.101853820159654,10.98071411292983 -670,9.0,21.0,-2.619319553382597,5.400770303329455 -670,10.0,8.0,0.0,4.807692307692308 -670,10.0,10.0,0.0,-4.807692307692308 -670,11.0,3.0,0.0,4.191255364806866 -670,11.0,11.0,5.047393974936599,-21.25074238629525 -670,11.0,12.0,0.0,7.142857142857143 -670,11.0,14.0,-3.0953961826564296,6.097275864326261 -670,11.0,15.0,-1.9519977922801688,4.104359379111847 -670,12.0,11.0,0.0,7.142857142857143 -670,12.0,12.0,0.0,-7.142857142857143 -670,13.0,13.0,2.4909522639994623,-2.250874059369649 -670,13.0,14.0,-2.4909522639994623,2.250874059369649 -670,14.0,11.0,-3.0953961826564296,6.097275864326261 -670,14.0,13.0,-2.4909522639994623,2.250874059369649 -670,14.0,14.0,9.365498545964757,-16.01163373210796 -670,14.0,17.0,-1.8108011504072024,3.687418931630696 -670,14.0,22.0,-1.9683489489016612,3.976064876781356 -670,15.0,11.0,-1.9519977922801688,4.104359379111847 -670,15.0,15.0,3.271064728633931,-8.94513365126506 -670,15.0,16.0,-1.3190669363537617,4.8407742721532125 -670,16.0,9.0,-3.956039125715353,10.317447719844054 -670,16.0,15.0,-1.3190669363537617,4.8407742721532125 -670,16.0,16.0,5.275106062069114,-15.158221991997266 -670,17.0,14.0,-1.8108011504072024,3.687418931630696 -670,17.0,17.0,4.886487584415919,-9.906177730909668 -670,17.0,18.0,-3.0756864340087167,6.218758799278971 -670,18.0,17.0,-3.0756864340087167,6.218758799278971 -670,18.0,18.0,8.958039375185187,-17.98346468163191 -670,18.0,19.0,-5.88235294117647,11.76470588235294 -670,19.0,9.0,-1.7848303152666305,3.98535828943083 -670,19.0,18.0,-5.88235294117647,11.76470588235294 -670,19.0,19.0,7.6671832564431,-15.75006417178377 -670,20.0,9.0,-5.101853820159654,10.98071411292983 -670,20.0,20.0,21.876495189895888,-45.10843276170355 -670,20.0,21.0,-16.774641369736234,34.127718648773715 -670,21.0,9.0,-2.619319553382597,5.400770303329455 -670,21.0,20.0,-16.774641369736234,34.127718648773715 -670,21.0,21.0,19.393960923118836,-39.52848895210317 -670,22.0,14.0,-1.9683489489016612,3.976064876781356 -670,22.0,22.0,3.429754555384988,-6.965303617315433 -670,22.0,23.0,-1.4614056064833263,2.989238740534077 -670,23.0,22.0,-1.4614056064833263,2.989238740534077 -670,23.0,23.0,2.771298550357576,-5.233860794239132 -670,23.0,24.0,-1.3098929438742493,2.287622053705056 -670,24.0,23.0,-1.3098929438742493,2.287622053705056 -670,24.0,24.0,4.495715080321987,-7.864978761969621 -670,24.0,25.0,-1.2165301194494855,1.8171440463475024 -670,24.0,26.0,-1.9692920169982515,3.760212661917064 -670,25.0,24.0,-1.2165301194494855,1.8171440463475024 -670,25.0,25.0,1.2165301194494855,-1.8171440463475024 -670,26.0,24.0,-1.9692920169982515,3.760212661917064 -670,26.0,26.0,3.652281470778589,-9.46044252232512 -670,26.0,27.0,0.0,2.608731947574922 -670,26.0,28.0,-0.99553355095268,1.881005840357816 -670,26.0,29.0,-0.6874559028276572,1.293971494797717 -670,27.0,5.0,-4.362844058012917,15.463571542897856 -670,27.0,7.0,-1.4439790613954469,4.540814658476248 -670,27.0,26.0,0.0,2.608731947574922 -670,27.0,27.0,5.806823119408364,-22.67145722159613 -670,28.0,26.0,-0.99553355095268,1.881005840357816 -670,28.0,28.0,0.99553355095268,-1.881005840357816 -670,29.0,26.0,-0.6874559028276572,1.293971494797717 -670,29.0,29.0,0.6874559028276572,-1.293971494797717 -671,0.0,0.0,6.765516048652632,-21.23160167089863 -671,0.0,1.0,-5.224646179885656,15.646726840803398 -671,0.0,2.0,-1.5408698687669766,5.631674830095234 -671,1.0,0.0,-5.224646179885656,15.646726840803398 -671,1.0,1.0,9.75228216552403,-30.648662892676068 -671,1.0,3.0,-1.7055303166990268,5.1973792282565086 -671,1.0,4.0,-1.1359607881738778,4.772479328281356 -671,1.0,5.0,-1.6861448807654689,5.116477495334806 -671,2.0,0.0,-1.5408698687669766,5.631674830095234 -671,2.0,2.0,9.736318911079088,-29.13794745915803 -671,2.0,3.0,-8.19544904231211,23.5308726290628 -671,3.0,1.0,-1.7055303166990268,5.1973792282565086 -671,3.0,2.0,-8.19544904231211,23.5308726290628 -671,3.0,3.0,16.314103089185693,-55.509410535254254 -671,3.0,5.0,-6.413123730174556,22.31120356548123 -671,3.0,11.0,0.0,4.191255364806866 -671,4.0,1.0,-1.1359607881738778,4.772479328281356 -671,4.0,4.0,1.1359607881738778,-4.751579328281355 -671,5.0,1.0,-1.6861448807654689,5.116477495334806 -671,5.0,3.0,-6.413123730174556,22.31120356548123 -671,5.0,5.0,22.341631269034565,-82.8291478657789 -671,5.0,6.0,-3.590210423980992,11.02611441072814 -671,5.0,7.0,-6.289308176100628,22.0125786163522 -671,5.0,8.0,0.0,4.915840805411357 -671,5.0,9.0,0.0,1.8561002591115965 -671,5.0,27.0,-4.362844058012917,15.463571542897856 -671,6.0,5.0,-3.590210423980992,11.02611441072814 -671,6.0,6.0,3.590210423980992,-11.01761441072814 -671,7.0,5.0,-6.289308176100628,22.0125786163522 -671,7.0,7.0,7.733287237496075,-26.527493274828448 -671,7.0,27.0,-1.4439790613954469,4.540814658476248 -671,8.0,5.0,0.0,4.915840805411357 -671,8.0,8.0,0.0,-18.706293706293707 -671,8.0,9.0,0.0,9.090909090909092 -671,8.0,10.0,0.0,4.807692307692308 -671,9.0,5.0,0.0,1.8561002591115965 -671,9.0,8.0,0.0,9.090909090909092 -671,9.0,9.0,13.462042814524237,-41.3837606675224 -671,9.0,16.0,-3.956039125715353,10.317447719844054 -671,9.0,19.0,-1.7848303152666305,3.98535828943083 -671,9.0,20.0,-5.101853820159654,10.98071411292983 -671,9.0,21.0,-2.619319553382597,5.400770303329455 -671,10.0,8.0,0.0,4.807692307692308 -671,10.0,10.0,0.0,-4.807692307692308 -671,11.0,3.0,0.0,4.191255364806866 -671,11.0,11.0,4.621963791495987,-20.31980828014882 -671,11.0,12.0,0.0,7.142857142857143 -671,11.0,13.0,-1.5265676088395577,3.1734252729654173 -671,11.0,14.0,-3.0953961826564296,6.097275864326261 -671,12.0,11.0,0.0,7.142857142857143 -671,12.0,12.0,0.0,-7.142857142857143 -671,13.0,11.0,-1.5265676088395577,3.1734252729654173 -671,13.0,13.0,4.01751987283902,-5.424299332335067 -671,13.0,14.0,-2.4909522639994623,2.250874059369649 -671,14.0,11.0,-3.0953961826564296,6.097275864326261 -671,14.0,13.0,-2.4909522639994623,2.250874059369649 -671,14.0,14.0,9.365498545964757,-16.01163373210796 -671,14.0,17.0,-1.8108011504072024,3.687418931630696 -671,14.0,22.0,-1.9683489489016612,3.976064876781356 -671,15.0,15.0,1.3190669363537617,-4.8407742721532125 -671,15.0,16.0,-1.3190669363537617,4.8407742721532125 -671,16.0,9.0,-3.956039125715353,10.317447719844054 -671,16.0,15.0,-1.3190669363537617,4.8407742721532125 -671,16.0,16.0,5.275106062069114,-15.158221991997266 -671,17.0,14.0,-1.8108011504072024,3.687418931630696 -671,17.0,17.0,4.886487584415919,-9.906177730909668 -671,17.0,18.0,-3.0756864340087167,6.218758799278971 -671,18.0,17.0,-3.0756864340087167,6.218758799278971 -671,18.0,18.0,3.0756864340087167,-6.218758799278971 -671,19.0,9.0,-1.7848303152666305,3.98535828943083 -671,19.0,19.0,1.7848303152666305,-3.98535828943083 -671,20.0,9.0,-5.101853820159654,10.98071411292983 -671,20.0,20.0,21.876495189895888,-45.10843276170355 -671,20.0,21.0,-16.774641369736234,34.127718648773715 -671,21.0,9.0,-2.619319553382597,5.400770303329455 -671,21.0,20.0,-16.774641369736234,34.127718648773715 -671,21.0,21.0,21.93449907537439,-43.48289181517921 -671,21.0,23.0,-2.5405381522555563,3.95440286307604 -671,22.0,14.0,-1.9683489489016612,3.976064876781356 -671,22.0,22.0,3.429754555384988,-6.965303617315433 -671,22.0,23.0,-1.4614056064833263,2.989238740534077 -671,23.0,21.0,-2.5405381522555563,3.95440286307604 -671,23.0,22.0,-1.4614056064833263,2.989238740534077 -671,23.0,23.0,5.311836702613133,-9.188263657315172 -671,23.0,24.0,-1.3098929438742493,2.287622053705056 -671,24.0,23.0,-1.3098929438742493,2.287622053705056 -671,24.0,24.0,4.495715080321987,-7.864978761969621 -671,24.0,25.0,-1.2165301194494855,1.8171440463475024 -671,24.0,26.0,-1.9692920169982515,3.760212661917064 -671,25.0,24.0,-1.2165301194494855,1.8171440463475024 -671,25.0,25.0,1.2165301194494855,-1.8171440463475024 -671,26.0,24.0,-1.9692920169982515,3.760212661917064 -671,26.0,26.0,3.652281470778589,-9.46044252232512 -671,26.0,27.0,0.0,2.608731947574922 -671,26.0,28.0,-0.99553355095268,1.881005840357816 -671,26.0,29.0,-0.6874559028276572,1.293971494797717 -671,27.0,5.0,-4.362844058012917,15.463571542897856 -671,27.0,7.0,-1.4439790613954469,4.540814658476248 -671,27.0,26.0,0.0,2.608731947574922 -671,27.0,27.0,5.806823119408364,-22.67145722159613 -671,28.0,26.0,-0.99553355095268,1.881005840357816 -671,28.0,28.0,1.9075867579849564,-3.604364401207048 -671,28.0,29.0,-0.9120532070322764,1.7233585608492326 -671,29.0,26.0,-0.6874559028276572,1.293971494797717 -671,29.0,28.0,-0.9120532070322764,1.7233585608492326 -671,29.0,29.0,1.5995091098599337,-3.0173300556469496 -672,0.0,0.0,6.765516048652632,-21.23160167089863 -672,0.0,1.0,-5.224646179885656,15.646726840803398 -672,0.0,2.0,-1.5408698687669766,5.631674830095234 -672,1.0,0.0,-5.224646179885656,15.646726840803398 -672,1.0,1.0,9.75228216552403,-30.648662892676068 -672,1.0,3.0,-1.7055303166990268,5.1973792282565086 -672,1.0,4.0,-1.1359607881738778,4.772479328281356 -672,1.0,5.0,-1.6861448807654689,5.116477495334806 -672,2.0,0.0,-1.5408698687669766,5.631674830095234 -672,2.0,2.0,9.736318911079088,-29.13794745915803 -672,2.0,3.0,-8.19544904231211,23.5308726290628 -672,3.0,1.0,-1.7055303166990268,5.1973792282565086 -672,3.0,2.0,-8.19544904231211,23.5308726290628 -672,3.0,3.0,9.900979359011137,-33.202706969773025 -672,3.0,11.0,0.0,4.191255364806866 -672,4.0,1.0,-1.1359607881738778,4.772479328281356 -672,4.0,4.0,4.089980824135861,-12.190647245055052 -672,4.0,6.0,-2.954020035961983,7.449267916773697 -672,5.0,1.0,-1.6861448807654689,5.116477495334806 -672,5.0,5.0,15.928507538860009,-60.52244430029767 -672,5.0,6.0,-3.590210423980992,11.02611441072814 -672,5.0,7.0,-6.289308176100628,22.0125786163522 -672,5.0,8.0,0.0,4.915840805411357 -672,5.0,9.0,0.0,1.8561002591115965 -672,5.0,27.0,-4.362844058012917,15.463571542897856 -672,6.0,4.0,-2.954020035961983,7.449267916773697 -672,6.0,5.0,-3.590210423980992,11.02611441072814 -672,6.0,6.0,6.544230459942975,-18.45668232750184 -672,7.0,5.0,-6.289308176100628,22.0125786163522 -672,7.0,7.0,7.733287237496075,-26.527493274828448 -672,7.0,27.0,-1.4439790613954469,4.540814658476248 -672,8.0,5.0,0.0,4.915840805411357 -672,8.0,8.0,0.0,-18.706293706293707 -672,8.0,9.0,0.0,9.090909090909092 -672,8.0,10.0,0.0,4.807692307692308 -672,9.0,5.0,0.0,1.8561002591115965 -672,9.0,8.0,0.0,9.090909090909092 -672,9.0,9.0,13.462042814524237,-41.3837606675224 -672,9.0,16.0,-3.956039125715353,10.317447719844054 -672,9.0,19.0,-1.7848303152666305,3.98535828943083 -672,9.0,20.0,-5.101853820159654,10.98071411292983 -672,9.0,21.0,-2.619319553382597,5.400770303329455 -672,10.0,8.0,0.0,4.807692307692308 -672,10.0,10.0,0.0,-4.807692307692308 -672,11.0,3.0,0.0,4.191255364806866 -672,11.0,11.0,6.573961583776156,-24.424167659260668 -672,11.0,12.0,0.0,7.142857142857143 -672,11.0,13.0,-1.5265676088395577,3.1734252729654173 -672,11.0,14.0,-3.0953961826564296,6.097275864326261 -672,11.0,15.0,-1.9519977922801688,4.104359379111847 -672,12.0,11.0,0.0,7.142857142857143 -672,12.0,12.0,0.0,-7.142857142857143 -672,13.0,11.0,-1.5265676088395577,3.1734252729654173 -672,13.0,13.0,4.01751987283902,-5.424299332335067 -672,13.0,14.0,-2.4909522639994623,2.250874059369649 -672,14.0,11.0,-3.0953961826564296,6.097275864326261 -672,14.0,13.0,-2.4909522639994623,2.250874059369649 -672,14.0,14.0,9.365498545964757,-16.01163373210796 -672,14.0,17.0,-1.8108011504072024,3.687418931630696 -672,14.0,22.0,-1.9683489489016612,3.976064876781356 -672,15.0,11.0,-1.9519977922801688,4.104359379111847 -672,15.0,15.0,3.271064728633931,-8.94513365126506 -672,15.0,16.0,-1.3190669363537617,4.8407742721532125 -672,16.0,9.0,-3.956039125715353,10.317447719844054 -672,16.0,15.0,-1.3190669363537617,4.8407742721532125 -672,16.0,16.0,5.275106062069114,-15.158221991997266 -672,17.0,14.0,-1.8108011504072024,3.687418931630696 -672,17.0,17.0,4.886487584415919,-9.906177730909668 -672,17.0,18.0,-3.0756864340087167,6.218758799278971 -672,18.0,17.0,-3.0756864340087167,6.218758799278971 -672,18.0,18.0,8.958039375185187,-17.98346468163191 -672,18.0,19.0,-5.88235294117647,11.76470588235294 -672,19.0,9.0,-1.7848303152666305,3.98535828943083 -672,19.0,18.0,-5.88235294117647,11.76470588235294 -672,19.0,19.0,7.6671832564431,-15.75006417178377 -672,20.0,9.0,-5.101853820159654,10.98071411292983 -672,20.0,20.0,21.876495189895888,-45.10843276170355 -672,20.0,21.0,-16.774641369736234,34.127718648773715 -672,21.0,9.0,-2.619319553382597,5.400770303329455 -672,21.0,20.0,-16.774641369736234,34.127718648773715 -672,21.0,21.0,21.93449907537439,-43.48289181517921 -672,21.0,23.0,-2.5405381522555563,3.95440286307604 -672,22.0,14.0,-1.9683489489016612,3.976064876781356 -672,22.0,22.0,3.429754555384988,-6.965303617315433 -672,22.0,23.0,-1.4614056064833263,2.989238740534077 -672,23.0,21.0,-2.5405381522555563,3.95440286307604 -672,23.0,22.0,-1.4614056064833263,2.989238740534077 -672,23.0,23.0,5.311836702613133,-9.188263657315172 -672,23.0,24.0,-1.3098929438742493,2.287622053705056 -672,24.0,23.0,-1.3098929438742493,2.287622053705056 -672,24.0,24.0,4.495715080321987,-7.864978761969621 -672,24.0,25.0,-1.2165301194494855,1.8171440463475024 -672,24.0,26.0,-1.9692920169982515,3.760212661917064 -672,25.0,24.0,-1.2165301194494855,1.8171440463475024 -672,25.0,25.0,1.2165301194494855,-1.8171440463475024 -672,26.0,24.0,-1.9692920169982515,3.760212661917064 -672,26.0,26.0,2.9648255679509314,-8.166471027527404 -672,26.0,27.0,0.0,2.608731947574922 -672,26.0,28.0,-0.99553355095268,1.881005840357816 -672,27.0,5.0,-4.362844058012917,15.463571542897856 -672,27.0,7.0,-1.4439790613954469,4.540814658476248 -672,27.0,26.0,0.0,2.608731947574922 -672,27.0,27.0,5.806823119408364,-22.67145722159613 -672,28.0,26.0,-0.99553355095268,1.881005840357816 -672,28.0,28.0,1.9075867579849564,-3.604364401207048 -672,28.0,29.0,-0.9120532070322764,1.7233585608492326 -672,29.0,28.0,-0.9120532070322764,1.7233585608492326 -672,29.0,29.0,0.9120532070322764,-1.7233585608492326 -673,0.0,0.0,6.765516048652632,-21.23160167089863 -673,0.0,1.0,-5.224646179885656,15.646726840803398 -673,0.0,2.0,-1.5408698687669766,5.631674830095234 -673,1.0,0.0,-5.224646179885656,15.646726840803398 -673,1.0,1.0,9.75228216552403,-30.648662892676068 -673,1.0,3.0,-1.7055303166990268,5.1973792282565086 -673,1.0,4.0,-1.1359607881738778,4.772479328281356 -673,1.0,5.0,-1.6861448807654689,5.116477495334806 -673,2.0,0.0,-1.5408698687669766,5.631674830095234 -673,2.0,2.0,9.736318911079088,-29.13794745915803 -673,2.0,3.0,-8.19544904231211,23.5308726290628 -673,3.0,1.0,-1.7055303166990268,5.1973792282565086 -673,3.0,2.0,-8.19544904231211,23.5308726290628 -673,3.0,3.0,16.314103089185693,-55.509410535254254 -673,3.0,5.0,-6.413123730174556,22.31120356548123 -673,3.0,11.0,0.0,4.191255364806866 -673,4.0,1.0,-1.1359607881738778,4.772479328281356 -673,4.0,4.0,1.1359607881738778,-4.751579328281355 -673,5.0,1.0,-1.6861448807654689,5.116477495334806 -673,5.0,3.0,-6.413123730174556,22.31120356548123 -673,5.0,5.0,22.341631269034565,-82.8291478657789 -673,5.0,6.0,-3.590210423980992,11.02611441072814 -673,5.0,7.0,-6.289308176100628,22.0125786163522 -673,5.0,8.0,0.0,4.915840805411357 -673,5.0,9.0,0.0,1.8561002591115965 -673,5.0,27.0,-4.362844058012917,15.463571542897856 -673,6.0,5.0,-3.590210423980992,11.02611441072814 -673,6.0,6.0,3.590210423980992,-11.01761441072814 -673,7.0,5.0,-6.289308176100628,22.0125786163522 -673,7.0,7.0,7.733287237496075,-26.527493274828448 -673,7.0,27.0,-1.4439790613954469,4.540814658476248 -673,8.0,5.0,0.0,4.915840805411357 -673,8.0,8.0,0.0,-18.706293706293707 -673,8.0,9.0,0.0,9.090909090909092 -673,8.0,10.0,0.0,4.807692307692308 -673,9.0,5.0,0.0,1.8561002591115965 -673,9.0,8.0,0.0,9.090909090909092 -673,9.0,9.0,13.462042814524237,-41.3837606675224 -673,9.0,16.0,-3.956039125715353,10.317447719844054 -673,9.0,19.0,-1.7848303152666305,3.98535828943083 -673,9.0,20.0,-5.101853820159654,10.98071411292983 -673,9.0,21.0,-2.619319553382597,5.400770303329455 -673,10.0,8.0,0.0,4.807692307692308 -673,10.0,10.0,0.0,-4.807692307692308 -673,11.0,3.0,0.0,4.191255364806866 -673,11.0,11.0,6.573961583776156,-24.424167659260668 -673,11.0,12.0,0.0,7.142857142857143 -673,11.0,13.0,-1.5265676088395577,3.1734252729654173 -673,11.0,14.0,-3.0953961826564296,6.097275864326261 -673,11.0,15.0,-1.9519977922801688,4.104359379111847 -673,12.0,11.0,0.0,7.142857142857143 -673,12.0,12.0,0.0,-7.142857142857143 -673,13.0,11.0,-1.5265676088395577,3.1734252729654173 -673,13.0,13.0,1.5265676088395577,-3.1734252729654173 -673,14.0,11.0,-3.0953961826564296,6.097275864326261 -673,14.0,14.0,6.874546281965293,-13.760759672738311 -673,14.0,17.0,-1.8108011504072024,3.687418931630696 -673,14.0,22.0,-1.9683489489016612,3.976064876781356 -673,15.0,11.0,-1.9519977922801688,4.104359379111847 -673,15.0,15.0,3.271064728633931,-8.94513365126506 -673,15.0,16.0,-1.3190669363537617,4.8407742721532125 -673,16.0,9.0,-3.956039125715353,10.317447719844054 -673,16.0,15.0,-1.3190669363537617,4.8407742721532125 -673,16.0,16.0,5.275106062069114,-15.158221991997266 -673,17.0,14.0,-1.8108011504072024,3.687418931630696 -673,17.0,17.0,4.886487584415919,-9.906177730909668 -673,17.0,18.0,-3.0756864340087167,6.218758799278971 -673,18.0,17.0,-3.0756864340087167,6.218758799278971 -673,18.0,18.0,8.958039375185187,-17.98346468163191 -673,18.0,19.0,-5.88235294117647,11.76470588235294 -673,19.0,9.0,-1.7848303152666305,3.98535828943083 -673,19.0,18.0,-5.88235294117647,11.76470588235294 -673,19.0,19.0,7.6671832564431,-15.75006417178377 -673,20.0,9.0,-5.101853820159654,10.98071411292983 -673,20.0,20.0,21.876495189895888,-45.10843276170355 -673,20.0,21.0,-16.774641369736234,34.127718648773715 -673,21.0,9.0,-2.619319553382597,5.400770303329455 -673,21.0,20.0,-16.774641369736234,34.127718648773715 -673,21.0,21.0,21.93449907537439,-43.48289181517921 -673,21.0,23.0,-2.5405381522555563,3.95440286307604 -673,22.0,14.0,-1.9683489489016612,3.976064876781356 -673,22.0,22.0,3.429754555384988,-6.965303617315433 -673,22.0,23.0,-1.4614056064833263,2.989238740534077 -673,23.0,21.0,-2.5405381522555563,3.95440286307604 -673,23.0,22.0,-1.4614056064833263,2.989238740534077 -673,23.0,23.0,5.311836702613133,-9.188263657315172 -673,23.0,24.0,-1.3098929438742493,2.287622053705056 -673,24.0,23.0,-1.3098929438742493,2.287622053705056 -673,24.0,24.0,4.495715080321987,-7.864978761969621 -673,24.0,25.0,-1.2165301194494855,1.8171440463475024 -673,24.0,26.0,-1.9692920169982515,3.760212661917064 -673,25.0,24.0,-1.2165301194494855,1.8171440463475024 -673,25.0,25.0,1.2165301194494855,-1.8171440463475024 -673,26.0,24.0,-1.9692920169982515,3.760212661917064 -673,26.0,26.0,3.652281470778589,-9.46044252232512 -673,26.0,27.0,0.0,2.608731947574922 -673,26.0,28.0,-0.99553355095268,1.881005840357816 -673,26.0,29.0,-0.6874559028276572,1.293971494797717 -673,27.0,5.0,-4.362844058012917,15.463571542897856 -673,27.0,7.0,-1.4439790613954469,4.540814658476248 -673,27.0,26.0,0.0,2.608731947574922 -673,27.0,27.0,5.806823119408364,-22.67145722159613 -673,28.0,26.0,-0.99553355095268,1.881005840357816 -673,28.0,28.0,1.9075867579849564,-3.604364401207048 -673,28.0,29.0,-0.9120532070322764,1.7233585608492326 -673,29.0,26.0,-0.6874559028276572,1.293971494797717 -673,29.0,28.0,-0.9120532070322764,1.7233585608492326 -673,29.0,29.0,1.5995091098599337,-3.0173300556469496 -674,0.0,0.0,6.765516048652632,-21.23160167089863 -674,0.0,1.0,-5.224646179885656,15.646726840803398 -674,0.0,2.0,-1.5408698687669766,5.631674830095234 -674,1.0,0.0,-5.224646179885656,15.646726840803398 -674,1.0,1.0,9.75228216552403,-30.648662892676068 -674,1.0,3.0,-1.7055303166990268,5.1973792282565086 -674,1.0,4.0,-1.1359607881738778,4.772479328281356 -674,1.0,5.0,-1.6861448807654689,5.116477495334806 -674,2.0,0.0,-1.5408698687669766,5.631674830095234 -674,2.0,2.0,9.736318911079088,-29.13794745915803 -674,2.0,3.0,-8.19544904231211,23.5308726290628 -674,3.0,1.0,-1.7055303166990268,5.1973792282565086 -674,3.0,2.0,-8.19544904231211,23.5308726290628 -674,3.0,3.0,16.314103089185693,-55.509410535254254 -674,3.0,5.0,-6.413123730174556,22.31120356548123 -674,3.0,11.0,0.0,4.191255364806866 -674,4.0,1.0,-1.1359607881738778,4.772479328281356 -674,4.0,4.0,4.089980824135861,-12.190647245055052 -674,4.0,6.0,-2.954020035961983,7.449267916773697 -674,5.0,1.0,-1.6861448807654689,5.116477495334806 -674,5.0,3.0,-6.413123730174556,22.31120356548123 -674,5.0,5.0,22.341631269034565,-82.8291478657789 -674,5.0,6.0,-3.590210423980992,11.02611441072814 -674,5.0,7.0,-6.289308176100628,22.0125786163522 -674,5.0,8.0,0.0,4.915840805411357 -674,5.0,9.0,0.0,1.8561002591115965 -674,5.0,27.0,-4.362844058012917,15.463571542897856 -674,6.0,4.0,-2.954020035961983,7.449267916773697 -674,6.0,5.0,-3.590210423980992,11.02611441072814 -674,6.0,6.0,6.544230459942975,-18.45668232750184 -674,7.0,5.0,-6.289308176100628,22.0125786163522 -674,7.0,7.0,7.733287237496075,-26.527493274828448 -674,7.0,27.0,-1.4439790613954469,4.540814658476248 -674,8.0,5.0,0.0,4.915840805411357 -674,8.0,8.0,0.0,-18.706293706293707 -674,8.0,9.0,0.0,9.090909090909092 -674,8.0,10.0,0.0,4.807692307692308 -674,9.0,5.0,0.0,1.8561002591115965 -674,9.0,8.0,0.0,9.090909090909092 -674,9.0,9.0,13.462042814524237,-41.3837606675224 -674,9.0,16.0,-3.956039125715353,10.317447719844054 -674,9.0,19.0,-1.7848303152666305,3.98535828943083 -674,9.0,20.0,-5.101853820159654,10.98071411292983 -674,9.0,21.0,-2.619319553382597,5.400770303329455 -674,10.0,8.0,0.0,4.807692307692308 -674,10.0,10.0,0.0,-4.807692307692308 -674,11.0,3.0,0.0,4.191255364806866 -674,11.0,11.0,6.573961583776156,-24.424167659260668 -674,11.0,12.0,0.0,7.142857142857143 -674,11.0,13.0,-1.5265676088395577,3.1734252729654173 -674,11.0,14.0,-3.0953961826564296,6.097275864326261 -674,11.0,15.0,-1.9519977922801688,4.104359379111847 -674,12.0,11.0,0.0,7.142857142857143 -674,12.0,12.0,0.0,-7.142857142857143 -674,13.0,11.0,-1.5265676088395577,3.1734252729654173 -674,13.0,13.0,4.01751987283902,-5.424299332335067 -674,13.0,14.0,-2.4909522639994623,2.250874059369649 -674,14.0,11.0,-3.0953961826564296,6.097275864326261 -674,14.0,13.0,-2.4909522639994623,2.250874059369649 -674,14.0,14.0,9.365498545964757,-16.01163373210796 -674,14.0,17.0,-1.8108011504072024,3.687418931630696 -674,14.0,22.0,-1.9683489489016612,3.976064876781356 -674,15.0,11.0,-1.9519977922801688,4.104359379111847 -674,15.0,15.0,3.271064728633931,-8.94513365126506 -674,15.0,16.0,-1.3190669363537617,4.8407742721532125 -674,16.0,9.0,-3.956039125715353,10.317447719844054 -674,16.0,15.0,-1.3190669363537617,4.8407742721532125 -674,16.0,16.0,5.275106062069114,-15.158221991997266 -674,17.0,14.0,-1.8108011504072024,3.687418931630696 -674,17.0,17.0,4.886487584415919,-9.906177730909668 -674,17.0,18.0,-3.0756864340087167,6.218758799278971 -674,18.0,17.0,-3.0756864340087167,6.218758799278971 -674,18.0,18.0,8.958039375185187,-17.98346468163191 -674,18.0,19.0,-5.88235294117647,11.76470588235294 -674,19.0,9.0,-1.7848303152666305,3.98535828943083 -674,19.0,18.0,-5.88235294117647,11.76470588235294 -674,19.0,19.0,7.6671832564431,-15.75006417178377 -674,20.0,9.0,-5.101853820159654,10.98071411292983 -674,20.0,20.0,21.876495189895888,-45.10843276170355 -674,20.0,21.0,-16.774641369736234,34.127718648773715 -674,21.0,9.0,-2.619319553382597,5.400770303329455 -674,21.0,20.0,-16.774641369736234,34.127718648773715 -674,21.0,21.0,21.93449907537439,-43.48289181517921 -674,21.0,23.0,-2.5405381522555563,3.95440286307604 -674,22.0,14.0,-1.9683489489016612,3.976064876781356 -674,22.0,22.0,3.429754555384988,-6.965303617315433 -674,22.0,23.0,-1.4614056064833263,2.989238740534077 -674,23.0,21.0,-2.5405381522555563,3.95440286307604 -674,23.0,22.0,-1.4614056064833263,2.989238740534077 -674,23.0,23.0,5.311836702613133,-9.188263657315172 -674,23.0,24.0,-1.3098929438742493,2.287622053705056 -674,24.0,23.0,-1.3098929438742493,2.287622053705056 -674,24.0,24.0,4.495715080321987,-7.864978761969621 -674,24.0,25.0,-1.2165301194494855,1.8171440463475024 -674,24.0,26.0,-1.9692920169982515,3.760212661917064 -674,25.0,24.0,-1.2165301194494855,1.8171440463475024 -674,25.0,25.0,1.2165301194494855,-1.8171440463475024 -674,26.0,24.0,-1.9692920169982515,3.760212661917064 -674,26.0,26.0,3.652281470778589,-9.46044252232512 -674,26.0,27.0,0.0,2.608731947574922 -674,26.0,28.0,-0.99553355095268,1.881005840357816 -674,26.0,29.0,-0.6874559028276572,1.293971494797717 -674,27.0,5.0,-4.362844058012917,15.463571542897856 -674,27.0,7.0,-1.4439790613954469,4.540814658476248 -674,27.0,26.0,0.0,2.608731947574922 -674,27.0,27.0,5.806823119408364,-22.67145722159613 -674,28.0,26.0,-0.99553355095268,1.881005840357816 -674,28.0,28.0,1.9075867579849564,-3.604364401207048 -674,28.0,29.0,-0.9120532070322764,1.7233585608492326 -674,29.0,26.0,-0.6874559028276572,1.293971494797717 -674,29.0,28.0,-0.9120532070322764,1.7233585608492326 -674,29.0,29.0,1.5995091098599337,-3.0173300556469496 -675,0.0,0.0,6.765516048652632,-21.23160167089863 -675,0.0,1.0,-5.224646179885656,15.646726840803398 -675,0.0,2.0,-1.5408698687669766,5.631674830095234 -675,1.0,0.0,-5.224646179885656,15.646726840803398 -675,1.0,1.0,9.75228216552403,-30.648662892676068 -675,1.0,3.0,-1.7055303166990268,5.1973792282565086 -675,1.0,4.0,-1.1359607881738778,4.772479328281356 -675,1.0,5.0,-1.6861448807654689,5.116477495334806 -675,2.0,0.0,-1.5408698687669766,5.631674830095234 -675,2.0,2.0,9.736318911079088,-29.13794745915803 -675,2.0,3.0,-8.19544904231211,23.5308726290628 -675,3.0,1.0,-1.7055303166990268,5.1973792282565086 -675,3.0,2.0,-8.19544904231211,23.5308726290628 -675,3.0,3.0,16.314103089185693,-55.509410535254254 -675,3.0,5.0,-6.413123730174556,22.31120356548123 -675,3.0,11.0,0.0,4.191255364806866 -675,4.0,1.0,-1.1359607881738778,4.772479328281356 -675,4.0,4.0,4.089980824135861,-12.190647245055052 -675,4.0,6.0,-2.954020035961983,7.449267916773697 -675,5.0,1.0,-1.6861448807654689,5.116477495334806 -675,5.0,3.0,-6.413123730174556,22.31120356548123 -675,5.0,5.0,22.341631269034565,-82.8291478657789 -675,5.0,6.0,-3.590210423980992,11.02611441072814 -675,5.0,7.0,-6.289308176100628,22.0125786163522 -675,5.0,8.0,0.0,4.915840805411357 -675,5.0,9.0,0.0,1.8561002591115965 -675,5.0,27.0,-4.362844058012917,15.463571542897856 -675,6.0,4.0,-2.954020035961983,7.449267916773697 -675,6.0,5.0,-3.590210423980992,11.02611441072814 -675,6.0,6.0,6.544230459942975,-18.45668232750184 -675,7.0,5.0,-6.289308176100628,22.0125786163522 -675,7.0,7.0,7.733287237496075,-26.527493274828448 -675,7.0,27.0,-1.4439790613954469,4.540814658476248 -675,8.0,5.0,0.0,4.915840805411357 -675,8.0,8.0,0.0,-18.706293706293707 -675,8.0,9.0,0.0,9.090909090909092 -675,8.0,10.0,0.0,4.807692307692308 -675,9.0,5.0,0.0,1.8561002591115965 -675,9.0,8.0,0.0,9.090909090909092 -675,9.0,9.0,13.462042814524237,-41.3837606675224 -675,9.0,16.0,-3.956039125715353,10.317447719844054 -675,9.0,19.0,-1.7848303152666305,3.98535828943083 -675,9.0,20.0,-5.101853820159654,10.98071411292983 -675,9.0,21.0,-2.619319553382597,5.400770303329455 -675,10.0,8.0,0.0,4.807692307692308 -675,10.0,10.0,0.0,-4.807692307692308 -675,11.0,3.0,0.0,4.191255364806866 -675,11.0,11.0,6.573961583776156,-24.424167659260668 -675,11.0,12.0,0.0,7.142857142857143 -675,11.0,13.0,-1.5265676088395577,3.1734252729654173 -675,11.0,14.0,-3.0953961826564296,6.097275864326261 -675,11.0,15.0,-1.9519977922801688,4.104359379111847 -675,12.0,11.0,0.0,7.142857142857143 -675,12.0,12.0,0.0,-7.142857142857143 -675,13.0,11.0,-1.5265676088395577,3.1734252729654173 -675,13.0,13.0,4.01751987283902,-5.424299332335067 -675,13.0,14.0,-2.4909522639994623,2.250874059369649 -675,14.0,11.0,-3.0953961826564296,6.097275864326261 -675,14.0,13.0,-2.4909522639994623,2.250874059369649 -675,14.0,14.0,9.365498545964757,-16.01163373210796 -675,14.0,17.0,-1.8108011504072024,3.687418931630696 -675,14.0,22.0,-1.9683489489016612,3.976064876781356 -675,15.0,11.0,-1.9519977922801688,4.104359379111847 -675,15.0,15.0,3.271064728633931,-8.94513365126506 -675,15.0,16.0,-1.3190669363537617,4.8407742721532125 -675,16.0,9.0,-3.956039125715353,10.317447719844054 -675,16.0,15.0,-1.3190669363537617,4.8407742721532125 -675,16.0,16.0,5.275106062069114,-15.158221991997266 -675,17.0,14.0,-1.8108011504072024,3.687418931630696 -675,17.0,17.0,4.886487584415919,-9.906177730909668 -675,17.0,18.0,-3.0756864340087167,6.218758799278971 -675,18.0,17.0,-3.0756864340087167,6.218758799278971 -675,18.0,18.0,8.958039375185187,-17.98346468163191 -675,18.0,19.0,-5.88235294117647,11.76470588235294 -675,19.0,9.0,-1.7848303152666305,3.98535828943083 -675,19.0,18.0,-5.88235294117647,11.76470588235294 -675,19.0,19.0,7.6671832564431,-15.75006417178377 -675,20.0,9.0,-5.101853820159654,10.98071411292983 -675,20.0,20.0,21.876495189895888,-45.10843276170355 -675,20.0,21.0,-16.774641369736234,34.127718648773715 -675,21.0,9.0,-2.619319553382597,5.400770303329455 -675,21.0,20.0,-16.774641369736234,34.127718648773715 -675,21.0,21.0,21.93449907537439,-43.48289181517921 -675,21.0,23.0,-2.5405381522555563,3.95440286307604 -675,22.0,14.0,-1.9683489489016612,3.976064876781356 -675,22.0,22.0,3.429754555384988,-6.965303617315433 -675,22.0,23.0,-1.4614056064833263,2.989238740534077 -675,23.0,21.0,-2.5405381522555563,3.95440286307604 -675,23.0,22.0,-1.4614056064833263,2.989238740534077 -675,23.0,23.0,5.311836702613133,-9.188263657315172 -675,23.0,24.0,-1.3098929438742493,2.287622053705056 -675,24.0,23.0,-1.3098929438742493,2.287622053705056 -675,24.0,24.0,4.495715080321987,-7.864978761969621 -675,24.0,25.0,-1.2165301194494855,1.8171440463475024 -675,24.0,26.0,-1.9692920169982515,3.760212661917064 -675,25.0,24.0,-1.2165301194494855,1.8171440463475024 -675,25.0,25.0,1.2165301194494855,-1.8171440463475024 -675,26.0,24.0,-1.9692920169982515,3.760212661917064 -675,26.0,26.0,3.652281470778589,-9.46044252232512 -675,26.0,27.0,0.0,2.608731947574922 -675,26.0,28.0,-0.99553355095268,1.881005840357816 -675,26.0,29.0,-0.6874559028276572,1.293971494797717 -675,27.0,5.0,-4.362844058012917,15.463571542897856 -675,27.0,7.0,-1.4439790613954469,4.540814658476248 -675,27.0,26.0,0.0,2.608731947574922 -675,27.0,27.0,5.806823119408364,-22.67145722159613 -675,28.0,26.0,-0.99553355095268,1.881005840357816 -675,28.0,28.0,1.9075867579849564,-3.604364401207048 -675,28.0,29.0,-0.9120532070322764,1.7233585608492326 -675,29.0,26.0,-0.6874559028276572,1.293971494797717 -675,29.0,28.0,-0.9120532070322764,1.7233585608492326 -675,29.0,29.0,1.5995091098599337,-3.0173300556469496 -676,0.0,0.0,6.765516048652632,-21.23160167089863 -676,0.0,1.0,-5.224646179885656,15.646726840803398 -676,0.0,2.0,-1.5408698687669766,5.631674830095234 -676,1.0,0.0,-5.224646179885656,15.646726840803398 -676,1.0,1.0,9.75228216552403,-30.648662892676068 -676,1.0,3.0,-1.7055303166990268,5.1973792282565086 -676,1.0,4.0,-1.1359607881738778,4.772479328281356 -676,1.0,5.0,-1.6861448807654689,5.116477495334806 -676,2.0,0.0,-1.5408698687669766,5.631674830095234 -676,2.0,2.0,9.736318911079088,-29.13794745915803 -676,2.0,3.0,-8.19544904231211,23.5308726290628 -676,3.0,1.0,-1.7055303166990268,5.1973792282565086 -676,3.0,2.0,-8.19544904231211,23.5308726290628 -676,3.0,3.0,9.900979359011137,-33.202706969773025 -676,3.0,11.0,0.0,4.191255364806866 -676,4.0,1.0,-1.1359607881738778,4.772479328281356 -676,4.0,4.0,4.089980824135861,-12.190647245055052 -676,4.0,6.0,-2.954020035961983,7.449267916773697 -676,5.0,1.0,-1.6861448807654689,5.116477495334806 -676,5.0,5.0,15.928507538860009,-60.52244430029767 -676,5.0,6.0,-3.590210423980992,11.02611441072814 -676,5.0,7.0,-6.289308176100628,22.0125786163522 -676,5.0,8.0,0.0,4.915840805411357 -676,5.0,9.0,0.0,1.8561002591115965 -676,5.0,27.0,-4.362844058012917,15.463571542897856 -676,6.0,4.0,-2.954020035961983,7.449267916773697 -676,6.0,5.0,-3.590210423980992,11.02611441072814 -676,6.0,6.0,6.544230459942975,-18.45668232750184 -676,7.0,5.0,-6.289308176100628,22.0125786163522 -676,7.0,7.0,7.733287237496075,-26.527493274828448 -676,7.0,27.0,-1.4439790613954469,4.540814658476248 -676,8.0,5.0,0.0,4.915840805411357 -676,8.0,8.0,0.0,-18.706293706293707 -676,8.0,9.0,0.0,9.090909090909092 -676,8.0,10.0,0.0,4.807692307692308 -676,9.0,5.0,0.0,1.8561002591115965 -676,9.0,8.0,0.0,9.090909090909092 -676,9.0,9.0,13.462042814524237,-41.3837606675224 -676,9.0,16.0,-3.956039125715353,10.317447719844054 -676,9.0,19.0,-1.7848303152666305,3.98535828943083 -676,9.0,20.0,-5.101853820159654,10.98071411292983 -676,9.0,21.0,-2.619319553382597,5.400770303329455 -676,10.0,8.0,0.0,4.807692307692308 -676,10.0,10.0,0.0,-4.807692307692308 -676,11.0,3.0,0.0,4.191255364806866 -676,11.0,11.0,6.573961583776156,-24.424167659260668 -676,11.0,12.0,0.0,7.142857142857143 -676,11.0,13.0,-1.5265676088395577,3.1734252729654173 -676,11.0,14.0,-3.0953961826564296,6.097275864326261 -676,11.0,15.0,-1.9519977922801688,4.104359379111847 -676,12.0,11.0,0.0,7.142857142857143 -676,12.0,12.0,0.0,-7.142857142857143 -676,13.0,11.0,-1.5265676088395577,3.1734252729654173 -676,13.0,13.0,4.01751987283902,-5.424299332335067 -676,13.0,14.0,-2.4909522639994623,2.250874059369649 -676,14.0,11.0,-3.0953961826564296,6.097275864326261 -676,14.0,13.0,-2.4909522639994623,2.250874059369649 -676,14.0,14.0,9.365498545964757,-16.01163373210796 -676,14.0,17.0,-1.8108011504072024,3.687418931630696 -676,14.0,22.0,-1.9683489489016612,3.976064876781356 -676,15.0,11.0,-1.9519977922801688,4.104359379111847 -676,15.0,15.0,3.271064728633931,-8.94513365126506 -676,15.0,16.0,-1.3190669363537617,4.8407742721532125 -676,16.0,9.0,-3.956039125715353,10.317447719844054 -676,16.0,15.0,-1.3190669363537617,4.8407742721532125 -676,16.0,16.0,5.275106062069114,-15.158221991997266 -676,17.0,14.0,-1.8108011504072024,3.687418931630696 -676,17.0,17.0,4.886487584415919,-9.906177730909668 -676,17.0,18.0,-3.0756864340087167,6.218758799278971 -676,18.0,17.0,-3.0756864340087167,6.218758799278971 -676,18.0,18.0,8.958039375185187,-17.98346468163191 -676,18.0,19.0,-5.88235294117647,11.76470588235294 -676,19.0,9.0,-1.7848303152666305,3.98535828943083 -676,19.0,18.0,-5.88235294117647,11.76470588235294 -676,19.0,19.0,7.6671832564431,-15.75006417178377 -676,20.0,9.0,-5.101853820159654,10.98071411292983 -676,20.0,20.0,5.101853820159654,-10.98071411292983 -676,21.0,9.0,-2.619319553382597,5.400770303329455 -676,21.0,21.0,2.619319553382597,-5.400770303329455 -676,22.0,14.0,-1.9683489489016612,3.976064876781356 -676,22.0,22.0,3.429754555384988,-6.965303617315433 -676,22.0,23.0,-1.4614056064833263,2.989238740534077 -676,23.0,22.0,-1.4614056064833263,2.989238740534077 -676,23.0,23.0,2.771298550357576,-5.233860794239132 -676,23.0,24.0,-1.3098929438742493,2.287622053705056 -676,24.0,23.0,-1.3098929438742493,2.287622053705056 -676,24.0,24.0,4.495715080321987,-7.864978761969621 -676,24.0,25.0,-1.2165301194494855,1.8171440463475024 -676,24.0,26.0,-1.9692920169982515,3.760212661917064 -676,25.0,24.0,-1.2165301194494855,1.8171440463475024 -676,25.0,25.0,1.2165301194494855,-1.8171440463475024 -676,26.0,24.0,-1.9692920169982515,3.760212661917064 -676,26.0,26.0,3.652281470778589,-9.46044252232512 -676,26.0,27.0,0.0,2.608731947574922 -676,26.0,28.0,-0.99553355095268,1.881005840357816 -676,26.0,29.0,-0.6874559028276572,1.293971494797717 -676,27.0,5.0,-4.362844058012917,15.463571542897856 -676,27.0,7.0,-1.4439790613954469,4.540814658476248 -676,27.0,26.0,0.0,2.608731947574922 -676,27.0,27.0,5.806823119408364,-22.67145722159613 -676,28.0,26.0,-0.99553355095268,1.881005840357816 -676,28.0,28.0,1.9075867579849564,-3.604364401207048 -676,28.0,29.0,-0.9120532070322764,1.7233585608492326 -676,29.0,26.0,-0.6874559028276572,1.293971494797717 -676,29.0,28.0,-0.9120532070322764,1.7233585608492326 -676,29.0,29.0,1.5995091098599337,-3.0173300556469496 -677,0.0,0.0,6.765516048652632,-21.23160167089863 -677,0.0,1.0,-5.224646179885656,15.646726840803398 -677,0.0,2.0,-1.5408698687669766,5.631674830095234 -677,1.0,0.0,-5.224646179885656,15.646726840803398 -677,1.0,1.0,9.75228216552403,-30.648662892676068 -677,1.0,3.0,-1.7055303166990268,5.1973792282565086 -677,1.0,4.0,-1.1359607881738778,4.772479328281356 -677,1.0,5.0,-1.6861448807654689,5.116477495334806 -677,2.0,0.0,-1.5408698687669766,5.631674830095234 -677,2.0,2.0,9.736318911079088,-29.13794745915803 -677,2.0,3.0,-8.19544904231211,23.5308726290628 -677,3.0,1.0,-1.7055303166990268,5.1973792282565086 -677,3.0,2.0,-8.19544904231211,23.5308726290628 -677,3.0,3.0,16.314103089185693,-55.509410535254254 -677,3.0,5.0,-6.413123730174556,22.31120356548123 -677,3.0,11.0,0.0,4.191255364806866 -677,4.0,1.0,-1.1359607881738778,4.772479328281356 -677,4.0,4.0,4.089980824135861,-12.190647245055052 -677,4.0,6.0,-2.954020035961983,7.449267916773697 -677,5.0,1.0,-1.6861448807654689,5.116477495334806 -677,5.0,3.0,-6.413123730174556,22.31120356548123 -677,5.0,5.0,22.341631269034565,-82.8291478657789 -677,5.0,6.0,-3.590210423980992,11.02611441072814 -677,5.0,7.0,-6.289308176100628,22.0125786163522 -677,5.0,8.0,0.0,4.915840805411357 -677,5.0,9.0,0.0,1.8561002591115965 -677,5.0,27.0,-4.362844058012917,15.463571542897856 -677,6.0,4.0,-2.954020035961983,7.449267916773697 -677,6.0,5.0,-3.590210423980992,11.02611441072814 -677,6.0,6.0,6.544230459942975,-18.45668232750184 -677,7.0,5.0,-6.289308176100628,22.0125786163522 -677,7.0,7.0,7.733287237496075,-26.527493274828448 -677,7.0,27.0,-1.4439790613954469,4.540814658476248 -677,8.0,5.0,0.0,4.915840805411357 -677,8.0,8.0,0.0,-18.706293706293707 -677,8.0,9.0,0.0,9.090909090909092 -677,8.0,10.0,0.0,4.807692307692308 -677,9.0,5.0,0.0,1.8561002591115965 -677,9.0,8.0,0.0,9.090909090909092 -677,9.0,9.0,13.462042814524237,-41.3837606675224 -677,9.0,16.0,-3.956039125715353,10.317447719844054 -677,9.0,19.0,-1.7848303152666305,3.98535828943083 -677,9.0,20.0,-5.101853820159654,10.98071411292983 -677,9.0,21.0,-2.619319553382597,5.400770303329455 -677,10.0,8.0,0.0,4.807692307692308 -677,10.0,10.0,0.0,-4.807692307692308 -677,11.0,3.0,0.0,4.191255364806866 -677,11.0,11.0,6.573961583776156,-24.424167659260668 -677,11.0,12.0,0.0,7.142857142857143 -677,11.0,13.0,-1.5265676088395577,3.1734252729654173 -677,11.0,14.0,-3.0953961826564296,6.097275864326261 -677,11.0,15.0,-1.9519977922801688,4.104359379111847 -677,12.0,11.0,0.0,7.142857142857143 -677,12.0,12.0,0.0,-7.142857142857143 -677,13.0,11.0,-1.5265676088395577,3.1734252729654173 -677,13.0,13.0,4.01751987283902,-5.424299332335067 -677,13.0,14.0,-2.4909522639994623,2.250874059369649 -677,14.0,11.0,-3.0953961826564296,6.097275864326261 -677,14.0,13.0,-2.4909522639994623,2.250874059369649 -677,14.0,14.0,9.365498545964757,-16.01163373210796 -677,14.0,17.0,-1.8108011504072024,3.687418931630696 -677,14.0,22.0,-1.9683489489016612,3.976064876781356 -677,15.0,11.0,-1.9519977922801688,4.104359379111847 -677,15.0,15.0,3.271064728633931,-8.94513365126506 -677,15.0,16.0,-1.3190669363537617,4.8407742721532125 -677,16.0,9.0,-3.956039125715353,10.317447719844054 -677,16.0,15.0,-1.3190669363537617,4.8407742721532125 -677,16.0,16.0,5.275106062069114,-15.158221991997266 -677,17.0,14.0,-1.8108011504072024,3.687418931630696 -677,17.0,17.0,4.886487584415919,-9.906177730909668 -677,17.0,18.0,-3.0756864340087167,6.218758799278971 -677,18.0,17.0,-3.0756864340087167,6.218758799278971 -677,18.0,18.0,8.958039375185187,-17.98346468163191 -677,18.0,19.0,-5.88235294117647,11.76470588235294 -677,19.0,9.0,-1.7848303152666305,3.98535828943083 -677,19.0,18.0,-5.88235294117647,11.76470588235294 -677,19.0,19.0,7.6671832564431,-15.75006417178377 -677,20.0,9.0,-5.101853820159654,10.98071411292983 -677,20.0,20.0,21.876495189895888,-45.10843276170355 -677,20.0,21.0,-16.774641369736234,34.127718648773715 -677,21.0,9.0,-2.619319553382597,5.400770303329455 -677,21.0,20.0,-16.774641369736234,34.127718648773715 -677,21.0,21.0,19.393960923118836,-39.52848895210317 -677,22.0,14.0,-1.9683489489016612,3.976064876781356 -677,22.0,22.0,3.429754555384988,-6.965303617315433 -677,22.0,23.0,-1.4614056064833263,2.989238740534077 -677,23.0,22.0,-1.4614056064833263,2.989238740534077 -677,23.0,23.0,2.771298550357576,-5.233860794239132 -677,23.0,24.0,-1.3098929438742493,2.287622053705056 -677,24.0,23.0,-1.3098929438742493,2.287622053705056 -677,24.0,24.0,4.495715080321987,-7.864978761969621 -677,24.0,25.0,-1.2165301194494855,1.8171440463475024 -677,24.0,26.0,-1.9692920169982515,3.760212661917064 -677,25.0,24.0,-1.2165301194494855,1.8171440463475024 -677,25.0,25.0,1.2165301194494855,-1.8171440463475024 -677,26.0,24.0,-1.9692920169982515,3.760212661917064 -677,26.0,26.0,3.652281470778589,-9.46044252232512 -677,26.0,27.0,0.0,2.608731947574922 -677,26.0,28.0,-0.99553355095268,1.881005840357816 -677,26.0,29.0,-0.6874559028276572,1.293971494797717 -677,27.0,5.0,-4.362844058012917,15.463571542897856 -677,27.0,7.0,-1.4439790613954469,4.540814658476248 -677,27.0,26.0,0.0,2.608731947574922 -677,27.0,27.0,5.806823119408364,-22.67145722159613 -677,28.0,26.0,-0.99553355095268,1.881005840357816 -677,28.0,28.0,1.9075867579849564,-3.604364401207048 -677,28.0,29.0,-0.9120532070322764,1.7233585608492326 -677,29.0,26.0,-0.6874559028276572,1.293971494797717 -677,29.0,28.0,-0.9120532070322764,1.7233585608492326 -677,29.0,29.0,1.5995091098599337,-3.0173300556469496 -678,0.0,0.0,6.765516048652632,-21.23160167089863 -678,0.0,1.0,-5.224646179885656,15.646726840803398 -678,0.0,2.0,-1.5408698687669766,5.631674830095234 -678,1.0,0.0,-5.224646179885656,15.646726840803398 -678,1.0,1.0,9.75228216552403,-30.648662892676068 -678,1.0,3.0,-1.7055303166990268,5.1973792282565086 -678,1.0,4.0,-1.1359607881738778,4.772479328281356 -678,1.0,5.0,-1.6861448807654689,5.116477495334806 -678,2.0,0.0,-1.5408698687669766,5.631674830095234 -678,2.0,2.0,9.736318911079088,-29.13794745915803 -678,2.0,3.0,-8.19544904231211,23.5308726290628 -678,3.0,1.0,-1.7055303166990268,5.1973792282565086 -678,3.0,2.0,-8.19544904231211,23.5308726290628 -678,3.0,3.0,16.314103089185693,-55.509410535254254 -678,3.0,5.0,-6.413123730174556,22.31120356548123 -678,3.0,11.0,0.0,4.191255364806866 -678,4.0,1.0,-1.1359607881738778,4.772479328281356 -678,4.0,4.0,4.089980824135861,-12.190647245055052 -678,4.0,6.0,-2.954020035961983,7.449267916773697 -678,5.0,1.0,-1.6861448807654689,5.116477495334806 -678,5.0,3.0,-6.413123730174556,22.31120356548123 -678,5.0,5.0,22.341631269034565,-82.8291478657789 -678,5.0,6.0,-3.590210423980992,11.02611441072814 -678,5.0,7.0,-6.289308176100628,22.0125786163522 -678,5.0,8.0,0.0,4.915840805411357 -678,5.0,9.0,0.0,1.8561002591115965 -678,5.0,27.0,-4.362844058012917,15.463571542897856 -678,6.0,4.0,-2.954020035961983,7.449267916773697 -678,6.0,5.0,-3.590210423980992,11.02611441072814 -678,6.0,6.0,6.544230459942975,-18.45668232750184 -678,7.0,5.0,-6.289308176100628,22.0125786163522 -678,7.0,7.0,7.733287237496075,-26.527493274828448 -678,7.0,27.0,-1.4439790613954469,4.540814658476248 -678,8.0,5.0,0.0,4.915840805411357 -678,8.0,8.0,0.0,-18.706293706293707 -678,8.0,9.0,0.0,9.090909090909092 -678,8.0,10.0,0.0,4.807692307692308 -678,9.0,5.0,0.0,1.8561002591115965 -678,9.0,8.0,0.0,9.090909090909092 -678,9.0,9.0,13.462042814524237,-41.3837606675224 -678,9.0,16.0,-3.956039125715353,10.317447719844054 -678,9.0,19.0,-1.7848303152666305,3.98535828943083 -678,9.0,20.0,-5.101853820159654,10.98071411292983 -678,9.0,21.0,-2.619319553382597,5.400770303329455 -678,10.0,8.0,0.0,4.807692307692308 -678,10.0,10.0,0.0,-4.807692307692308 -678,11.0,3.0,0.0,4.191255364806866 -678,11.0,11.0,6.573961583776156,-24.424167659260668 -678,11.0,12.0,0.0,7.142857142857143 -678,11.0,13.0,-1.5265676088395577,3.1734252729654173 -678,11.0,14.0,-3.0953961826564296,6.097275864326261 -678,11.0,15.0,-1.9519977922801688,4.104359379111847 -678,12.0,11.0,0.0,7.142857142857143 -678,12.0,12.0,0.0,-7.142857142857143 -678,13.0,11.0,-1.5265676088395577,3.1734252729654173 -678,13.0,13.0,4.01751987283902,-5.424299332335067 -678,13.0,14.0,-2.4909522639994623,2.250874059369649 -678,14.0,11.0,-3.0953961826564296,6.097275864326261 -678,14.0,13.0,-2.4909522639994623,2.250874059369649 -678,14.0,14.0,9.365498545964757,-16.01163373210796 -678,14.0,17.0,-1.8108011504072024,3.687418931630696 -678,14.0,22.0,-1.9683489489016612,3.976064876781356 -678,15.0,11.0,-1.9519977922801688,4.104359379111847 -678,15.0,15.0,3.271064728633931,-8.94513365126506 -678,15.0,16.0,-1.3190669363537617,4.8407742721532125 -678,16.0,9.0,-3.956039125715353,10.317447719844054 -678,16.0,15.0,-1.3190669363537617,4.8407742721532125 -678,16.0,16.0,5.275106062069114,-15.158221991997266 -678,17.0,14.0,-1.8108011504072024,3.687418931630696 -678,17.0,17.0,4.886487584415919,-9.906177730909668 -678,17.0,18.0,-3.0756864340087167,6.218758799278971 -678,18.0,17.0,-3.0756864340087167,6.218758799278971 -678,18.0,18.0,8.958039375185187,-17.98346468163191 -678,18.0,19.0,-5.88235294117647,11.76470588235294 -678,19.0,9.0,-1.7848303152666305,3.98535828943083 -678,19.0,18.0,-5.88235294117647,11.76470588235294 -678,19.0,19.0,7.6671832564431,-15.75006417178377 -678,20.0,9.0,-5.101853820159654,10.98071411292983 -678,20.0,20.0,21.876495189895888,-45.10843276170355 -678,20.0,21.0,-16.774641369736234,34.127718648773715 -678,21.0,9.0,-2.619319553382597,5.400770303329455 -678,21.0,20.0,-16.774641369736234,34.127718648773715 -678,21.0,21.0,21.93449907537439,-43.48289181517921 -678,21.0,23.0,-2.5405381522555563,3.95440286307604 -678,22.0,14.0,-1.9683489489016612,3.976064876781356 -678,22.0,22.0,3.429754555384988,-6.965303617315433 -678,22.0,23.0,-1.4614056064833263,2.989238740534077 -678,23.0,21.0,-2.5405381522555563,3.95440286307604 -678,23.0,22.0,-1.4614056064833263,2.989238740534077 -678,23.0,23.0,5.311836702613133,-9.188263657315172 -678,23.0,24.0,-1.3098929438742493,2.287622053705056 -678,24.0,23.0,-1.3098929438742493,2.287622053705056 -678,24.0,24.0,4.495715080321987,-7.864978761969621 -678,24.0,25.0,-1.2165301194494855,1.8171440463475024 -678,24.0,26.0,-1.9692920169982515,3.760212661917064 -678,25.0,24.0,-1.2165301194494855,1.8171440463475024 -678,25.0,25.0,1.2165301194494855,-1.8171440463475024 -678,26.0,24.0,-1.9692920169982515,3.760212661917064 -678,26.0,26.0,3.652281470778589,-9.46044252232512 -678,26.0,27.0,0.0,2.608731947574922 -678,26.0,28.0,-0.99553355095268,1.881005840357816 -678,26.0,29.0,-0.6874559028276572,1.293971494797717 -678,27.0,5.0,-4.362844058012917,15.463571542897856 -678,27.0,7.0,-1.4439790613954469,4.540814658476248 -678,27.0,26.0,0.0,2.608731947574922 -678,27.0,27.0,5.806823119408364,-22.67145722159613 -678,28.0,26.0,-0.99553355095268,1.881005840357816 -678,28.0,28.0,1.9075867579849564,-3.604364401207048 -678,28.0,29.0,-0.9120532070322764,1.7233585608492326 -678,29.0,26.0,-0.6874559028276572,1.293971494797717 -678,29.0,28.0,-0.9120532070322764,1.7233585608492326 -678,29.0,29.0,1.5995091098599337,-3.0173300556469496 -679,0.0,0.0,6.765516048652632,-21.23160167089863 -679,0.0,1.0,-5.224646179885656,15.646726840803398 -679,0.0,2.0,-1.5408698687669766,5.631674830095234 -679,1.0,0.0,-5.224646179885656,15.646726840803398 -679,1.0,1.0,9.75228216552403,-30.648662892676068 -679,1.0,3.0,-1.7055303166990268,5.1973792282565086 -679,1.0,4.0,-1.1359607881738778,4.772479328281356 -679,1.0,5.0,-1.6861448807654689,5.116477495334806 -679,2.0,0.0,-1.5408698687669766,5.631674830095234 -679,2.0,2.0,9.736318911079088,-29.13794745915803 -679,2.0,3.0,-8.19544904231211,23.5308726290628 -679,3.0,1.0,-1.7055303166990268,5.1973792282565086 -679,3.0,2.0,-8.19544904231211,23.5308726290628 -679,3.0,3.0,16.314103089185693,-55.509410535254254 -679,3.0,5.0,-6.413123730174556,22.31120356548123 -679,3.0,11.0,0.0,4.191255364806866 -679,4.0,1.0,-1.1359607881738778,4.772479328281356 -679,4.0,4.0,4.089980824135861,-12.190647245055052 -679,4.0,6.0,-2.954020035961983,7.449267916773697 -679,5.0,1.0,-1.6861448807654689,5.116477495334806 -679,5.0,3.0,-6.413123730174556,22.31120356548123 -679,5.0,5.0,22.341631269034565,-82.8291478657789 -679,5.0,6.0,-3.590210423980992,11.02611441072814 -679,5.0,7.0,-6.289308176100628,22.0125786163522 -679,5.0,8.0,0.0,4.915840805411357 -679,5.0,9.0,0.0,1.8561002591115965 -679,5.0,27.0,-4.362844058012917,15.463571542897856 -679,6.0,4.0,-2.954020035961983,7.449267916773697 -679,6.0,5.0,-3.590210423980992,11.02611441072814 -679,6.0,6.0,6.544230459942975,-18.45668232750184 -679,7.0,5.0,-6.289308176100628,22.0125786163522 -679,7.0,7.0,7.733287237496075,-26.527493274828448 -679,7.0,27.0,-1.4439790613954469,4.540814658476248 -679,8.0,5.0,0.0,4.915840805411357 -679,8.0,8.0,0.0,-18.706293706293707 -679,8.0,9.0,0.0,9.090909090909092 -679,8.0,10.0,0.0,4.807692307692308 -679,9.0,5.0,0.0,1.8561002591115965 -679,9.0,8.0,0.0,9.090909090909092 -679,9.0,9.0,13.462042814524237,-41.3837606675224 -679,9.0,16.0,-3.956039125715353,10.317447719844054 -679,9.0,19.0,-1.7848303152666305,3.98535828943083 -679,9.0,20.0,-5.101853820159654,10.98071411292983 -679,9.0,21.0,-2.619319553382597,5.400770303329455 -679,10.0,8.0,0.0,4.807692307692308 -679,10.0,10.0,0.0,-4.807692307692308 -679,11.0,3.0,0.0,4.191255364806866 -679,11.0,11.0,6.573961583776156,-24.424167659260668 -679,11.0,12.0,0.0,7.142857142857143 -679,11.0,13.0,-1.5265676088395577,3.1734252729654173 -679,11.0,14.0,-3.0953961826564296,6.097275864326261 -679,11.0,15.0,-1.9519977922801688,4.104359379111847 -679,12.0,11.0,0.0,7.142857142857143 -679,12.0,12.0,0.0,-7.142857142857143 -679,13.0,11.0,-1.5265676088395577,3.1734252729654173 -679,13.0,13.0,4.01751987283902,-5.424299332335067 -679,13.0,14.0,-2.4909522639994623,2.250874059369649 -679,14.0,11.0,-3.0953961826564296,6.097275864326261 -679,14.0,13.0,-2.4909522639994623,2.250874059369649 -679,14.0,14.0,9.365498545964757,-16.01163373210796 -679,14.0,17.0,-1.8108011504072024,3.687418931630696 -679,14.0,22.0,-1.9683489489016612,3.976064876781356 -679,15.0,11.0,-1.9519977922801688,4.104359379111847 -679,15.0,15.0,3.271064728633931,-8.94513365126506 -679,15.0,16.0,-1.3190669363537617,4.8407742721532125 -679,16.0,9.0,-3.956039125715353,10.317447719844054 -679,16.0,15.0,-1.3190669363537617,4.8407742721532125 -679,16.0,16.0,5.275106062069114,-15.158221991997266 -679,17.0,14.0,-1.8108011504072024,3.687418931630696 -679,17.0,17.0,4.886487584415919,-9.906177730909668 -679,17.0,18.0,-3.0756864340087167,6.218758799278971 -679,18.0,17.0,-3.0756864340087167,6.218758799278971 -679,18.0,18.0,8.958039375185187,-17.98346468163191 -679,18.0,19.0,-5.88235294117647,11.76470588235294 -679,19.0,9.0,-1.7848303152666305,3.98535828943083 -679,19.0,18.0,-5.88235294117647,11.76470588235294 -679,19.0,19.0,7.6671832564431,-15.75006417178377 -679,20.0,9.0,-5.101853820159654,10.98071411292983 -679,20.0,20.0,21.876495189895888,-45.10843276170355 -679,20.0,21.0,-16.774641369736234,34.127718648773715 -679,21.0,9.0,-2.619319553382597,5.400770303329455 -679,21.0,20.0,-16.774641369736234,34.127718648773715 -679,21.0,21.0,21.93449907537439,-43.48289181517921 -679,21.0,23.0,-2.5405381522555563,3.95440286307604 -679,22.0,14.0,-1.9683489489016612,3.976064876781356 -679,22.0,22.0,3.429754555384988,-6.965303617315433 -679,22.0,23.0,-1.4614056064833263,2.989238740534077 -679,23.0,21.0,-2.5405381522555563,3.95440286307604 -679,23.0,22.0,-1.4614056064833263,2.989238740534077 -679,23.0,23.0,5.311836702613133,-9.188263657315172 -679,23.0,24.0,-1.3098929438742493,2.287622053705056 -679,24.0,23.0,-1.3098929438742493,2.287622053705056 -679,24.0,24.0,4.495715080321987,-7.864978761969621 -679,24.0,25.0,-1.2165301194494855,1.8171440463475024 -679,24.0,26.0,-1.9692920169982515,3.760212661917064 -679,25.0,24.0,-1.2165301194494855,1.8171440463475024 -679,25.0,25.0,1.2165301194494855,-1.8171440463475024 -679,26.0,24.0,-1.9692920169982515,3.760212661917064 -679,26.0,26.0,3.652281470778589,-9.46044252232512 -679,26.0,27.0,0.0,2.608731947574922 -679,26.0,28.0,-0.99553355095268,1.881005840357816 -679,26.0,29.0,-0.6874559028276572,1.293971494797717 -679,27.0,5.0,-4.362844058012917,15.463571542897856 -679,27.0,7.0,-1.4439790613954469,4.540814658476248 -679,27.0,26.0,0.0,2.608731947574922 -679,27.0,27.0,5.806823119408364,-22.67145722159613 -679,28.0,26.0,-0.99553355095268,1.881005840357816 -679,28.0,28.0,1.9075867579849564,-3.604364401207048 -679,28.0,29.0,-0.9120532070322764,1.7233585608492326 -679,29.0,26.0,-0.6874559028276572,1.293971494797717 -679,29.0,28.0,-0.9120532070322764,1.7233585608492326 -679,29.0,29.0,1.5995091098599337,-3.0173300556469496 -680,0.0,0.0,6.765516048652632,-21.23160167089863 -680,0.0,1.0,-5.224646179885656,15.646726840803398 -680,0.0,2.0,-1.5408698687669766,5.631674830095234 -680,1.0,0.0,-5.224646179885656,15.646726840803398 -680,1.0,1.0,8.046751848825002,-25.46968366441956 -680,1.0,4.0,-1.1359607881738778,4.772479328281356 -680,1.0,5.0,-1.6861448807654689,5.116477495334806 -680,2.0,0.0,-1.5408698687669766,5.631674830095234 -680,2.0,2.0,9.736318911079088,-29.13794745915803 -680,2.0,3.0,-8.19544904231211,23.5308726290628 -680,3.0,2.0,-8.19544904231211,23.5308726290628 -680,3.0,3.0,14.608572772486664,-50.33043130699775 -680,3.0,5.0,-6.413123730174556,22.31120356548123 -680,3.0,11.0,0.0,4.191255364806866 -680,4.0,1.0,-1.1359607881738778,4.772479328281356 -680,4.0,4.0,1.1359607881738778,-4.751579328281355 -680,5.0,1.0,-1.6861448807654689,5.116477495334806 -680,5.0,3.0,-6.413123730174556,22.31120356548123 -680,5.0,5.0,22.341631269034565,-82.8291478657789 -680,5.0,6.0,-3.590210423980992,11.02611441072814 -680,5.0,7.0,-6.289308176100628,22.0125786163522 -680,5.0,8.0,0.0,4.915840805411357 -680,5.0,9.0,0.0,1.8561002591115965 -680,5.0,27.0,-4.362844058012917,15.463571542897856 -680,6.0,5.0,-3.590210423980992,11.02611441072814 -680,6.0,6.0,3.590210423980992,-11.01761441072814 -680,7.0,5.0,-6.289308176100628,22.0125786163522 -680,7.0,7.0,7.733287237496075,-26.527493274828448 -680,7.0,27.0,-1.4439790613954469,4.540814658476248 -680,8.0,5.0,0.0,4.915840805411357 -680,8.0,8.0,0.0,-18.706293706293707 -680,8.0,9.0,0.0,9.090909090909092 -680,8.0,10.0,0.0,4.807692307692308 -680,9.0,5.0,0.0,1.8561002591115965 -680,9.0,8.0,0.0,9.090909090909092 -680,9.0,9.0,13.462042814524237,-41.3837606675224 -680,9.0,16.0,-3.956039125715353,10.317447719844054 -680,9.0,19.0,-1.7848303152666305,3.98535828943083 -680,9.0,20.0,-5.101853820159654,10.98071411292983 -680,9.0,21.0,-2.619319553382597,5.400770303329455 -680,10.0,8.0,0.0,4.807692307692308 -680,10.0,10.0,0.0,-4.807692307692308 -680,11.0,3.0,0.0,4.191255364806866 -680,11.0,11.0,6.573961583776156,-24.424167659260668 -680,11.0,12.0,0.0,7.142857142857143 -680,11.0,13.0,-1.5265676088395577,3.1734252729654173 -680,11.0,14.0,-3.0953961826564296,6.097275864326261 -680,11.0,15.0,-1.9519977922801688,4.104359379111847 -680,12.0,11.0,0.0,7.142857142857143 -680,12.0,12.0,0.0,-7.142857142857143 -680,13.0,11.0,-1.5265676088395577,3.1734252729654173 -680,13.0,13.0,4.01751987283902,-5.424299332335067 -680,13.0,14.0,-2.4909522639994623,2.250874059369649 -680,14.0,11.0,-3.0953961826564296,6.097275864326261 -680,14.0,13.0,-2.4909522639994623,2.250874059369649 -680,14.0,14.0,7.397149597063095,-12.035568855326606 -680,14.0,17.0,-1.8108011504072024,3.687418931630696 -680,15.0,11.0,-1.9519977922801688,4.104359379111847 -680,15.0,15.0,3.271064728633931,-8.94513365126506 -680,15.0,16.0,-1.3190669363537617,4.8407742721532125 -680,16.0,9.0,-3.956039125715353,10.317447719844054 -680,16.0,15.0,-1.3190669363537617,4.8407742721532125 -680,16.0,16.0,5.275106062069114,-15.158221991997266 -680,17.0,14.0,-1.8108011504072024,3.687418931630696 -680,17.0,17.0,4.886487584415919,-9.906177730909668 -680,17.0,18.0,-3.0756864340087167,6.218758799278971 -680,18.0,17.0,-3.0756864340087167,6.218758799278971 -680,18.0,18.0,8.958039375185187,-17.98346468163191 -680,18.0,19.0,-5.88235294117647,11.76470588235294 -680,19.0,9.0,-1.7848303152666305,3.98535828943083 -680,19.0,18.0,-5.88235294117647,11.76470588235294 -680,19.0,19.0,7.6671832564431,-15.75006417178377 -680,20.0,9.0,-5.101853820159654,10.98071411292983 -680,20.0,20.0,21.876495189895888,-45.10843276170355 -680,20.0,21.0,-16.774641369736234,34.127718648773715 -680,21.0,9.0,-2.619319553382597,5.400770303329455 -680,21.0,20.0,-16.774641369736234,34.127718648773715 -680,21.0,21.0,21.93449907537439,-43.48289181517921 -680,21.0,23.0,-2.5405381522555563,3.95440286307604 -680,22.0,22.0,1.4614056064833263,-2.989238740534077 -680,22.0,23.0,-1.4614056064833263,2.989238740534077 -680,23.0,21.0,-2.5405381522555563,3.95440286307604 -680,23.0,22.0,-1.4614056064833263,2.989238740534077 -680,23.0,23.0,5.311836702613133,-9.188263657315172 -680,23.0,24.0,-1.3098929438742493,2.287622053705056 -680,24.0,23.0,-1.3098929438742493,2.287622053705056 -680,24.0,24.0,2.526423063323735,-4.104766100052558 -680,24.0,25.0,-1.2165301194494855,1.8171440463475024 -680,25.0,24.0,-1.2165301194494855,1.8171440463475024 -680,25.0,25.0,1.2165301194494855,-1.8171440463475024 -680,26.0,26.0,1.6829894537803372,-5.700229860408058 -680,26.0,27.0,0.0,2.608731947574922 -680,26.0,28.0,-0.99553355095268,1.881005840357816 -680,26.0,29.0,-0.6874559028276572,1.293971494797717 -680,27.0,5.0,-4.362844058012917,15.463571542897856 -680,27.0,7.0,-1.4439790613954469,4.540814658476248 -680,27.0,26.0,0.0,2.608731947574922 -680,27.0,27.0,5.806823119408364,-22.67145722159613 -680,28.0,26.0,-0.99553355095268,1.881005840357816 -680,28.0,28.0,1.9075867579849564,-3.604364401207048 -680,28.0,29.0,-0.9120532070322764,1.7233585608492326 -680,29.0,26.0,-0.6874559028276572,1.293971494797717 -680,29.0,28.0,-0.9120532070322764,1.7233585608492326 -680,29.0,29.0,1.5995091098599337,-3.0173300556469496 -681,0.0,0.0,6.765516048652632,-21.23160167089863 -681,0.0,1.0,-5.224646179885656,15.646726840803398 -681,0.0,2.0,-1.5408698687669766,5.631674830095234 -681,1.0,0.0,-5.224646179885656,15.646726840803398 -681,1.0,1.0,9.75228216552403,-30.648662892676068 -681,1.0,3.0,-1.7055303166990268,5.1973792282565086 -681,1.0,4.0,-1.1359607881738778,4.772479328281356 -681,1.0,5.0,-1.6861448807654689,5.116477495334806 -681,2.0,0.0,-1.5408698687669766,5.631674830095234 -681,2.0,2.0,9.736318911079088,-29.13794745915803 -681,2.0,3.0,-8.19544904231211,23.5308726290628 -681,3.0,1.0,-1.7055303166990268,5.1973792282565086 -681,3.0,2.0,-8.19544904231211,23.5308726290628 -681,3.0,3.0,16.314103089185693,-55.509410535254254 -681,3.0,5.0,-6.413123730174556,22.31120356548123 -681,3.0,11.0,0.0,4.191255364806866 -681,4.0,1.0,-1.1359607881738778,4.772479328281356 -681,4.0,4.0,4.089980824135861,-12.190647245055052 -681,4.0,6.0,-2.954020035961983,7.449267916773697 -681,5.0,1.0,-1.6861448807654689,5.116477495334806 -681,5.0,3.0,-6.413123730174556,22.31120356548123 -681,5.0,5.0,22.341631269034565,-82.8291478657789 -681,5.0,6.0,-3.590210423980992,11.02611441072814 -681,5.0,7.0,-6.289308176100628,22.0125786163522 -681,5.0,8.0,0.0,4.915840805411357 -681,5.0,9.0,0.0,1.8561002591115965 -681,5.0,27.0,-4.362844058012917,15.463571542897856 -681,6.0,4.0,-2.954020035961983,7.449267916773697 -681,6.0,5.0,-3.590210423980992,11.02611441072814 -681,6.0,6.0,6.544230459942975,-18.45668232750184 -681,7.0,5.0,-6.289308176100628,22.0125786163522 -681,7.0,7.0,7.733287237496075,-26.527493274828448 -681,7.0,27.0,-1.4439790613954469,4.540814658476248 -681,8.0,5.0,0.0,4.915840805411357 -681,8.0,8.0,0.0,-18.706293706293707 -681,8.0,9.0,0.0,9.090909090909092 -681,8.0,10.0,0.0,4.807692307692308 -681,9.0,5.0,0.0,1.8561002591115965 -681,9.0,8.0,0.0,9.090909090909092 -681,9.0,9.0,13.462042814524237,-41.3837606675224 -681,9.0,16.0,-3.956039125715353,10.317447719844054 -681,9.0,19.0,-1.7848303152666305,3.98535828943083 -681,9.0,20.0,-5.101853820159654,10.98071411292983 -681,9.0,21.0,-2.619319553382597,5.400770303329455 -681,10.0,8.0,0.0,4.807692307692308 -681,10.0,10.0,0.0,-4.807692307692308 -681,11.0,3.0,0.0,4.191255364806866 -681,11.0,11.0,6.573961583776156,-24.424167659260668 -681,11.0,12.0,0.0,7.142857142857143 -681,11.0,13.0,-1.5265676088395577,3.1734252729654173 -681,11.0,14.0,-3.0953961826564296,6.097275864326261 -681,11.0,15.0,-1.9519977922801688,4.104359379111847 -681,12.0,11.0,0.0,7.142857142857143 -681,12.0,12.0,0.0,-7.142857142857143 -681,13.0,11.0,-1.5265676088395577,3.1734252729654173 -681,13.0,13.0,4.01751987283902,-5.424299332335067 -681,13.0,14.0,-2.4909522639994623,2.250874059369649 -681,14.0,11.0,-3.0953961826564296,6.097275864326261 -681,14.0,13.0,-2.4909522639994623,2.250874059369649 -681,14.0,14.0,9.365498545964757,-16.01163373210796 -681,14.0,17.0,-1.8108011504072024,3.687418931630696 -681,14.0,22.0,-1.9683489489016612,3.976064876781356 -681,15.0,11.0,-1.9519977922801688,4.104359379111847 -681,15.0,15.0,3.271064728633931,-8.94513365126506 -681,15.0,16.0,-1.3190669363537617,4.8407742721532125 -681,16.0,9.0,-3.956039125715353,10.317447719844054 -681,16.0,15.0,-1.3190669363537617,4.8407742721532125 -681,16.0,16.0,5.275106062069114,-15.158221991997266 -681,17.0,14.0,-1.8108011504072024,3.687418931630696 -681,17.0,17.0,4.886487584415919,-9.906177730909668 -681,17.0,18.0,-3.0756864340087167,6.218758799278971 -681,18.0,17.0,-3.0756864340087167,6.218758799278971 -681,18.0,18.0,8.958039375185187,-17.98346468163191 -681,18.0,19.0,-5.88235294117647,11.76470588235294 -681,19.0,9.0,-1.7848303152666305,3.98535828943083 -681,19.0,18.0,-5.88235294117647,11.76470588235294 -681,19.0,19.0,7.6671832564431,-15.75006417178377 -681,20.0,9.0,-5.101853820159654,10.98071411292983 -681,20.0,20.0,21.876495189895888,-45.10843276170355 -681,20.0,21.0,-16.774641369736234,34.127718648773715 -681,21.0,9.0,-2.619319553382597,5.400770303329455 -681,21.0,20.0,-16.774641369736234,34.127718648773715 -681,21.0,21.0,21.93449907537439,-43.48289181517921 -681,21.0,23.0,-2.5405381522555563,3.95440286307604 -681,22.0,14.0,-1.9683489489016612,3.976064876781356 -681,22.0,22.0,3.429754555384988,-6.965303617315433 -681,22.0,23.0,-1.4614056064833263,2.989238740534077 -681,23.0,21.0,-2.5405381522555563,3.95440286307604 -681,23.0,22.0,-1.4614056064833263,2.989238740534077 -681,23.0,23.0,5.311836702613133,-9.188263657315172 -681,23.0,24.0,-1.3098929438742493,2.287622053705056 -681,24.0,23.0,-1.3098929438742493,2.287622053705056 -681,24.0,24.0,4.495715080321987,-7.864978761969621 -681,24.0,25.0,-1.2165301194494855,1.8171440463475024 -681,24.0,26.0,-1.9692920169982515,3.760212661917064 -681,25.0,24.0,-1.2165301194494855,1.8171440463475024 -681,25.0,25.0,1.2165301194494855,-1.8171440463475024 -681,26.0,24.0,-1.9692920169982515,3.760212661917064 -681,26.0,26.0,3.652281470778589,-9.46044252232512 -681,26.0,27.0,0.0,2.608731947574922 -681,26.0,28.0,-0.99553355095268,1.881005840357816 -681,26.0,29.0,-0.6874559028276572,1.293971494797717 -681,27.0,5.0,-4.362844058012917,15.463571542897856 -681,27.0,7.0,-1.4439790613954469,4.540814658476248 -681,27.0,26.0,0.0,2.608731947574922 -681,27.0,27.0,5.806823119408364,-22.67145722159613 -681,28.0,26.0,-0.99553355095268,1.881005840357816 -681,28.0,28.0,1.9075867579849564,-3.604364401207048 -681,28.0,29.0,-0.9120532070322764,1.7233585608492326 -681,29.0,26.0,-0.6874559028276572,1.293971494797717 -681,29.0,28.0,-0.9120532070322764,1.7233585608492326 -681,29.0,29.0,1.5995091098599337,-3.0173300556469496 -682,0.0,0.0,6.765516048652632,-21.23160167089863 -682,0.0,1.0,-5.224646179885656,15.646726840803398 -682,0.0,2.0,-1.5408698687669766,5.631674830095234 -682,1.0,0.0,-5.224646179885656,15.646726840803398 -682,1.0,1.0,9.75228216552403,-30.648662892676068 -682,1.0,3.0,-1.7055303166990268,5.1973792282565086 -682,1.0,4.0,-1.1359607881738778,4.772479328281356 -682,1.0,5.0,-1.6861448807654689,5.116477495334806 -682,2.0,0.0,-1.5408698687669766,5.631674830095234 -682,2.0,2.0,9.736318911079088,-29.13794745915803 -682,2.0,3.0,-8.19544904231211,23.5308726290628 -682,3.0,1.0,-1.7055303166990268,5.1973792282565086 -682,3.0,2.0,-8.19544904231211,23.5308726290628 -682,3.0,3.0,16.314103089185693,-55.509410535254254 -682,3.0,5.0,-6.413123730174556,22.31120356548123 -682,3.0,11.0,0.0,4.191255364806866 -682,4.0,1.0,-1.1359607881738778,4.772479328281356 -682,4.0,4.0,4.089980824135861,-12.190647245055052 -682,4.0,6.0,-2.954020035961983,7.449267916773697 -682,5.0,1.0,-1.6861448807654689,5.116477495334806 -682,5.0,3.0,-6.413123730174556,22.31120356548123 -682,5.0,5.0,22.341631269034565,-82.8291478657789 -682,5.0,6.0,-3.590210423980992,11.02611441072814 -682,5.0,7.0,-6.289308176100628,22.0125786163522 -682,5.0,8.0,0.0,4.915840805411357 -682,5.0,9.0,0.0,1.8561002591115965 -682,5.0,27.0,-4.362844058012917,15.463571542897856 -682,6.0,4.0,-2.954020035961983,7.449267916773697 -682,6.0,5.0,-3.590210423980992,11.02611441072814 -682,6.0,6.0,6.544230459942975,-18.45668232750184 -682,7.0,5.0,-6.289308176100628,22.0125786163522 -682,7.0,7.0,7.733287237496075,-26.527493274828448 -682,7.0,27.0,-1.4439790613954469,4.540814658476248 -682,8.0,5.0,0.0,4.915840805411357 -682,8.0,8.0,0.0,-18.706293706293707 -682,8.0,9.0,0.0,9.090909090909092 -682,8.0,10.0,0.0,4.807692307692308 -682,9.0,5.0,0.0,1.8561002591115965 -682,9.0,8.0,0.0,9.090909090909092 -682,9.0,9.0,13.462042814524237,-41.3837606675224 -682,9.0,16.0,-3.956039125715353,10.317447719844054 -682,9.0,19.0,-1.7848303152666305,3.98535828943083 -682,9.0,20.0,-5.101853820159654,10.98071411292983 -682,9.0,21.0,-2.619319553382597,5.400770303329455 -682,10.0,8.0,0.0,4.807692307692308 -682,10.0,10.0,0.0,-4.807692307692308 -682,11.0,3.0,0.0,4.191255364806866 -682,11.0,11.0,6.573961583776156,-24.424167659260668 -682,11.0,12.0,0.0,7.142857142857143 -682,11.0,13.0,-1.5265676088395577,3.1734252729654173 -682,11.0,14.0,-3.0953961826564296,6.097275864326261 -682,11.0,15.0,-1.9519977922801688,4.104359379111847 -682,12.0,11.0,0.0,7.142857142857143 -682,12.0,12.0,0.0,-7.142857142857143 -682,13.0,11.0,-1.5265676088395577,3.1734252729654173 -682,13.0,13.0,4.01751987283902,-5.424299332335067 -682,13.0,14.0,-2.4909522639994623,2.250874059369649 -682,14.0,11.0,-3.0953961826564296,6.097275864326261 -682,14.0,13.0,-2.4909522639994623,2.250874059369649 -682,14.0,14.0,9.365498545964757,-16.01163373210796 -682,14.0,17.0,-1.8108011504072024,3.687418931630696 -682,14.0,22.0,-1.9683489489016612,3.976064876781356 -682,15.0,11.0,-1.9519977922801688,4.104359379111847 -682,15.0,15.0,3.271064728633931,-8.94513365126506 -682,15.0,16.0,-1.3190669363537617,4.8407742721532125 -682,16.0,9.0,-3.956039125715353,10.317447719844054 -682,16.0,15.0,-1.3190669363537617,4.8407742721532125 -682,16.0,16.0,5.275106062069114,-15.158221991997266 -682,17.0,14.0,-1.8108011504072024,3.687418931630696 -682,17.0,17.0,4.886487584415919,-9.906177730909668 -682,17.0,18.0,-3.0756864340087167,6.218758799278971 -682,18.0,17.0,-3.0756864340087167,6.218758799278971 -682,18.0,18.0,8.958039375185187,-17.98346468163191 -682,18.0,19.0,-5.88235294117647,11.76470588235294 -682,19.0,9.0,-1.7848303152666305,3.98535828943083 -682,19.0,18.0,-5.88235294117647,11.76470588235294 -682,19.0,19.0,7.6671832564431,-15.75006417178377 -682,20.0,9.0,-5.101853820159654,10.98071411292983 -682,20.0,20.0,21.876495189895888,-45.10843276170355 -682,20.0,21.0,-16.774641369736234,34.127718648773715 -682,21.0,9.0,-2.619319553382597,5.400770303329455 -682,21.0,20.0,-16.774641369736234,34.127718648773715 -682,21.0,21.0,21.93449907537439,-43.48289181517921 -682,21.0,23.0,-2.5405381522555563,3.95440286307604 -682,22.0,14.0,-1.9683489489016612,3.976064876781356 -682,22.0,22.0,3.429754555384988,-6.965303617315433 -682,22.0,23.0,-1.4614056064833263,2.989238740534077 -682,23.0,21.0,-2.5405381522555563,3.95440286307604 -682,23.0,22.0,-1.4614056064833263,2.989238740534077 -682,23.0,23.0,5.311836702613133,-9.188263657315172 -682,23.0,24.0,-1.3098929438742493,2.287622053705056 -682,24.0,23.0,-1.3098929438742493,2.287622053705056 -682,24.0,24.0,2.526423063323735,-4.104766100052558 -682,24.0,25.0,-1.2165301194494855,1.8171440463475024 -682,25.0,24.0,-1.2165301194494855,1.8171440463475024 -682,25.0,25.0,1.2165301194494855,-1.8171440463475024 -682,26.0,26.0,1.6829894537803372,-5.700229860408058 -682,26.0,27.0,0.0,2.608731947574922 -682,26.0,28.0,-0.99553355095268,1.881005840357816 -682,26.0,29.0,-0.6874559028276572,1.293971494797717 -682,27.0,5.0,-4.362844058012917,15.463571542897856 -682,27.0,7.0,-1.4439790613954469,4.540814658476248 -682,27.0,26.0,0.0,2.608731947574922 -682,27.0,27.0,5.806823119408364,-22.67145722159613 -682,28.0,26.0,-0.99553355095268,1.881005840357816 -682,28.0,28.0,1.9075867579849564,-3.604364401207048 -682,28.0,29.0,-0.9120532070322764,1.7233585608492326 -682,29.0,26.0,-0.6874559028276572,1.293971494797717 -682,29.0,28.0,-0.9120532070322764,1.7233585608492326 -682,29.0,29.0,1.5995091098599337,-3.0173300556469496 -683,0.0,0.0,6.765516048652632,-21.23160167089863 -683,0.0,1.0,-5.224646179885656,15.646726840803398 -683,0.0,2.0,-1.5408698687669766,5.631674830095234 -683,1.0,0.0,-5.224646179885656,15.646726840803398 -683,1.0,1.0,9.75228216552403,-30.648662892676068 -683,1.0,3.0,-1.7055303166990268,5.1973792282565086 -683,1.0,4.0,-1.1359607881738778,4.772479328281356 -683,1.0,5.0,-1.6861448807654689,5.116477495334806 -683,2.0,0.0,-1.5408698687669766,5.631674830095234 -683,2.0,2.0,9.736318911079088,-29.13794745915803 -683,2.0,3.0,-8.19544904231211,23.5308726290628 -683,3.0,1.0,-1.7055303166990268,5.1973792282565086 -683,3.0,2.0,-8.19544904231211,23.5308726290628 -683,3.0,3.0,16.314103089185693,-55.509410535254254 -683,3.0,5.0,-6.413123730174556,22.31120356548123 -683,3.0,11.0,0.0,4.191255364806866 -683,4.0,1.0,-1.1359607881738778,4.772479328281356 -683,4.0,4.0,4.089980824135861,-12.190647245055052 -683,4.0,6.0,-2.954020035961983,7.449267916773697 -683,5.0,1.0,-1.6861448807654689,5.116477495334806 -683,5.0,3.0,-6.413123730174556,22.31120356548123 -683,5.0,5.0,22.341631269034565,-82.8291478657789 -683,5.0,6.0,-3.590210423980992,11.02611441072814 -683,5.0,7.0,-6.289308176100628,22.0125786163522 -683,5.0,8.0,0.0,4.915840805411357 -683,5.0,9.0,0.0,1.8561002591115965 -683,5.0,27.0,-4.362844058012917,15.463571542897856 -683,6.0,4.0,-2.954020035961983,7.449267916773697 -683,6.0,5.0,-3.590210423980992,11.02611441072814 -683,6.0,6.0,6.544230459942975,-18.45668232750184 -683,7.0,5.0,-6.289308176100628,22.0125786163522 -683,7.0,7.0,7.733287237496075,-26.527493274828448 -683,7.0,27.0,-1.4439790613954469,4.540814658476248 -683,8.0,5.0,0.0,4.915840805411357 -683,8.0,8.0,0.0,-9.615384615384617 -683,8.0,10.0,0.0,4.807692307692308 -683,9.0,5.0,0.0,1.8561002591115965 -683,9.0,9.0,8.36018899436458,-21.31213746368348 -683,9.0,16.0,-3.956039125715353,10.317447719844054 -683,9.0,19.0,-1.7848303152666305,3.98535828943083 -683,9.0,21.0,-2.619319553382597,5.400770303329455 -683,10.0,8.0,0.0,4.807692307692308 -683,10.0,10.0,0.0,-4.807692307692308 -683,11.0,3.0,0.0,4.191255364806866 -683,11.0,11.0,6.573961583776156,-24.424167659260668 -683,11.0,12.0,0.0,7.142857142857143 -683,11.0,13.0,-1.5265676088395577,3.1734252729654173 -683,11.0,14.0,-3.0953961826564296,6.097275864326261 -683,11.0,15.0,-1.9519977922801688,4.104359379111847 -683,12.0,11.0,0.0,7.142857142857143 -683,12.0,12.0,0.0,-7.142857142857143 -683,13.0,11.0,-1.5265676088395577,3.1734252729654173 -683,13.0,13.0,4.01751987283902,-5.424299332335067 -683,13.0,14.0,-2.4909522639994623,2.250874059369649 -683,14.0,11.0,-3.0953961826564296,6.097275864326261 -683,14.0,13.0,-2.4909522639994623,2.250874059369649 -683,14.0,14.0,9.365498545964757,-16.01163373210796 -683,14.0,17.0,-1.8108011504072024,3.687418931630696 -683,14.0,22.0,-1.9683489489016612,3.976064876781356 -683,15.0,11.0,-1.9519977922801688,4.104359379111847 -683,15.0,15.0,3.271064728633931,-8.94513365126506 -683,15.0,16.0,-1.3190669363537617,4.8407742721532125 -683,16.0,9.0,-3.956039125715353,10.317447719844054 -683,16.0,15.0,-1.3190669363537617,4.8407742721532125 -683,16.0,16.0,5.275106062069114,-15.158221991997266 -683,17.0,14.0,-1.8108011504072024,3.687418931630696 -683,17.0,17.0,4.886487584415919,-9.906177730909668 -683,17.0,18.0,-3.0756864340087167,6.218758799278971 -683,18.0,17.0,-3.0756864340087167,6.218758799278971 -683,18.0,18.0,8.958039375185187,-17.98346468163191 -683,18.0,19.0,-5.88235294117647,11.76470588235294 -683,19.0,9.0,-1.7848303152666305,3.98535828943083 -683,19.0,18.0,-5.88235294117647,11.76470588235294 -683,19.0,19.0,7.6671832564431,-15.75006417178377 -683,20.0,20.0,16.774641369736234,-34.127718648773715 -683,20.0,21.0,-16.774641369736234,34.127718648773715 -683,21.0,9.0,-2.619319553382597,5.400770303329455 -683,21.0,20.0,-16.774641369736234,34.127718648773715 -683,21.0,21.0,21.93449907537439,-43.48289181517921 -683,21.0,23.0,-2.5405381522555563,3.95440286307604 -683,22.0,14.0,-1.9683489489016612,3.976064876781356 -683,22.0,22.0,3.429754555384988,-6.965303617315433 -683,22.0,23.0,-1.4614056064833263,2.989238740534077 -683,23.0,21.0,-2.5405381522555563,3.95440286307604 -683,23.0,22.0,-1.4614056064833263,2.989238740534077 -683,23.0,23.0,5.311836702613133,-9.188263657315172 -683,23.0,24.0,-1.3098929438742493,2.287622053705056 -683,24.0,23.0,-1.3098929438742493,2.287622053705056 -683,24.0,24.0,4.495715080321987,-7.864978761969621 -683,24.0,25.0,-1.2165301194494855,1.8171440463475024 -683,24.0,26.0,-1.9692920169982515,3.760212661917064 -683,25.0,24.0,-1.2165301194494855,1.8171440463475024 -683,25.0,25.0,1.2165301194494855,-1.8171440463475024 -683,26.0,24.0,-1.9692920169982515,3.760212661917064 -683,26.0,26.0,3.652281470778589,-9.46044252232512 -683,26.0,27.0,0.0,2.608731947574922 -683,26.0,28.0,-0.99553355095268,1.881005840357816 -683,26.0,29.0,-0.6874559028276572,1.293971494797717 -683,27.0,5.0,-4.362844058012917,15.463571542897856 -683,27.0,7.0,-1.4439790613954469,4.540814658476248 -683,27.0,26.0,0.0,2.608731947574922 -683,27.0,27.0,5.806823119408364,-22.67145722159613 -683,28.0,26.0,-0.99553355095268,1.881005840357816 -683,28.0,28.0,1.9075867579849564,-3.604364401207048 -683,28.0,29.0,-0.9120532070322764,1.7233585608492326 -683,29.0,26.0,-0.6874559028276572,1.293971494797717 -683,29.0,28.0,-0.9120532070322764,1.7233585608492326 -683,29.0,29.0,1.5995091098599337,-3.0173300556469496 -684,0.0,0.0,6.765516048652632,-21.23160167089863 -684,0.0,1.0,-5.224646179885656,15.646726840803398 -684,0.0,2.0,-1.5408698687669766,5.631674830095234 -684,1.0,0.0,-5.224646179885656,15.646726840803398 -684,1.0,1.0,9.75228216552403,-30.648662892676068 -684,1.0,3.0,-1.7055303166990268,5.1973792282565086 -684,1.0,4.0,-1.1359607881738778,4.772479328281356 -684,1.0,5.0,-1.6861448807654689,5.116477495334806 -684,2.0,0.0,-1.5408698687669766,5.631674830095234 -684,2.0,2.0,9.736318911079088,-29.13794745915803 -684,2.0,3.0,-8.19544904231211,23.5308726290628 -684,3.0,1.0,-1.7055303166990268,5.1973792282565086 -684,3.0,2.0,-8.19544904231211,23.5308726290628 -684,3.0,3.0,16.314103089185693,-55.509410535254254 -684,3.0,5.0,-6.413123730174556,22.31120356548123 -684,3.0,11.0,0.0,4.191255364806866 -684,4.0,1.0,-1.1359607881738778,4.772479328281356 -684,4.0,4.0,4.089980824135861,-12.190647245055052 -684,4.0,6.0,-2.954020035961983,7.449267916773697 -684,5.0,1.0,-1.6861448807654689,5.116477495334806 -684,5.0,3.0,-6.413123730174556,22.31120356548123 -684,5.0,5.0,22.341631269034565,-82.8291478657789 -684,5.0,6.0,-3.590210423980992,11.02611441072814 -684,5.0,7.0,-6.289308176100628,22.0125786163522 -684,5.0,8.0,0.0,4.915840805411357 -684,5.0,9.0,0.0,1.8561002591115965 -684,5.0,27.0,-4.362844058012917,15.463571542897856 -684,6.0,4.0,-2.954020035961983,7.449267916773697 -684,6.0,5.0,-3.590210423980992,11.02611441072814 -684,6.0,6.0,6.544230459942975,-18.45668232750184 -684,7.0,5.0,-6.289308176100628,22.0125786163522 -684,7.0,7.0,7.733287237496075,-26.527493274828448 -684,7.0,27.0,-1.4439790613954469,4.540814658476248 -684,8.0,5.0,0.0,4.915840805411357 -684,8.0,8.0,0.0,-18.706293706293707 -684,8.0,9.0,0.0,9.090909090909092 -684,8.0,10.0,0.0,4.807692307692308 -684,9.0,5.0,0.0,1.8561002591115965 -684,9.0,8.0,0.0,9.090909090909092 -684,9.0,9.0,13.462042814524237,-41.3837606675224 -684,9.0,16.0,-3.956039125715353,10.317447719844054 -684,9.0,19.0,-1.7848303152666305,3.98535828943083 -684,9.0,20.0,-5.101853820159654,10.98071411292983 -684,9.0,21.0,-2.619319553382597,5.400770303329455 -684,10.0,8.0,0.0,4.807692307692308 -684,10.0,10.0,0.0,-4.807692307692308 -684,11.0,3.0,0.0,4.191255364806866 -684,11.0,11.0,6.573961583776156,-24.424167659260668 -684,11.0,12.0,0.0,7.142857142857143 -684,11.0,13.0,-1.5265676088395577,3.1734252729654173 -684,11.0,14.0,-3.0953961826564296,6.097275864326261 -684,11.0,15.0,-1.9519977922801688,4.104359379111847 -684,12.0,11.0,0.0,7.142857142857143 -684,12.0,12.0,0.0,-7.142857142857143 -684,13.0,11.0,-1.5265676088395577,3.1734252729654173 -684,13.0,13.0,4.01751987283902,-5.424299332335067 -684,13.0,14.0,-2.4909522639994623,2.250874059369649 -684,14.0,11.0,-3.0953961826564296,6.097275864326261 -684,14.0,13.0,-2.4909522639994623,2.250874059369649 -684,14.0,14.0,9.365498545964757,-16.01163373210796 -684,14.0,17.0,-1.8108011504072024,3.687418931630696 -684,14.0,22.0,-1.9683489489016612,3.976064876781356 -684,15.0,11.0,-1.9519977922801688,4.104359379111847 -684,15.0,15.0,3.271064728633931,-8.94513365126506 -684,15.0,16.0,-1.3190669363537617,4.8407742721532125 -684,16.0,9.0,-3.956039125715353,10.317447719844054 -684,16.0,15.0,-1.3190669363537617,4.8407742721532125 -684,16.0,16.0,5.275106062069114,-15.158221991997266 -684,17.0,14.0,-1.8108011504072024,3.687418931630696 -684,17.0,17.0,4.886487584415919,-9.906177730909668 -684,17.0,18.0,-3.0756864340087167,6.218758799278971 -684,18.0,17.0,-3.0756864340087167,6.218758799278971 -684,18.0,18.0,8.958039375185187,-17.98346468163191 -684,18.0,19.0,-5.88235294117647,11.76470588235294 -684,19.0,9.0,-1.7848303152666305,3.98535828943083 -684,19.0,18.0,-5.88235294117647,11.76470588235294 -684,19.0,19.0,7.6671832564431,-15.75006417178377 -684,20.0,9.0,-5.101853820159654,10.98071411292983 -684,20.0,20.0,21.876495189895888,-45.10843276170355 -684,20.0,21.0,-16.774641369736234,34.127718648773715 -684,21.0,9.0,-2.619319553382597,5.400770303329455 -684,21.0,20.0,-16.774641369736234,34.127718648773715 -684,21.0,21.0,21.93449907537439,-43.48289181517921 -684,21.0,23.0,-2.5405381522555563,3.95440286307604 -684,22.0,14.0,-1.9683489489016612,3.976064876781356 -684,22.0,22.0,3.429754555384988,-6.965303617315433 -684,22.0,23.0,-1.4614056064833263,2.989238740534077 -684,23.0,21.0,-2.5405381522555563,3.95440286307604 -684,23.0,22.0,-1.4614056064833263,2.989238740534077 -684,23.0,23.0,5.311836702613133,-9.188263657315172 -684,23.0,24.0,-1.3098929438742493,2.287622053705056 -684,24.0,23.0,-1.3098929438742493,2.287622053705056 -684,24.0,24.0,4.495715080321987,-7.864978761969621 -684,24.0,25.0,-1.2165301194494855,1.8171440463475024 -684,24.0,26.0,-1.9692920169982515,3.760212661917064 -684,25.0,24.0,-1.2165301194494855,1.8171440463475024 -684,25.0,25.0,1.2165301194494855,-1.8171440463475024 -684,26.0,24.0,-1.9692920169982515,3.760212661917064 -684,26.0,26.0,3.652281470778589,-9.46044252232512 -684,26.0,27.0,0.0,2.608731947574922 -684,26.0,28.0,-0.99553355095268,1.881005840357816 -684,26.0,29.0,-0.6874559028276572,1.293971494797717 -684,27.0,5.0,-4.362844058012917,15.463571542897856 -684,27.0,7.0,-1.4439790613954469,4.540814658476248 -684,27.0,26.0,0.0,2.608731947574922 -684,27.0,27.0,5.806823119408364,-22.67145722159613 -684,28.0,26.0,-0.99553355095268,1.881005840357816 -684,28.0,28.0,1.9075867579849564,-3.604364401207048 -684,28.0,29.0,-0.9120532070322764,1.7233585608492326 -684,29.0,26.0,-0.6874559028276572,1.293971494797717 -684,29.0,28.0,-0.9120532070322764,1.7233585608492326 -684,29.0,29.0,1.5995091098599337,-3.0173300556469496 -685,0.0,0.0,6.765516048652632,-21.23160167089863 -685,0.0,1.0,-5.224646179885656,15.646726840803398 -685,0.0,2.0,-1.5408698687669766,5.631674830095234 -685,1.0,0.0,-5.224646179885656,15.646726840803398 -685,1.0,1.0,9.75228216552403,-30.648662892676068 -685,1.0,3.0,-1.7055303166990268,5.1973792282565086 -685,1.0,4.0,-1.1359607881738778,4.772479328281356 -685,1.0,5.0,-1.6861448807654689,5.116477495334806 -685,2.0,0.0,-1.5408698687669766,5.631674830095234 -685,2.0,2.0,9.736318911079088,-29.13794745915803 -685,2.0,3.0,-8.19544904231211,23.5308726290628 -685,3.0,1.0,-1.7055303166990268,5.1973792282565086 -685,3.0,2.0,-8.19544904231211,23.5308726290628 -685,3.0,3.0,16.314103089185693,-55.509410535254254 -685,3.0,5.0,-6.413123730174556,22.31120356548123 -685,3.0,11.0,0.0,4.191255364806866 -685,4.0,1.0,-1.1359607881738778,4.772479328281356 -685,4.0,4.0,4.089980824135861,-12.190647245055052 -685,4.0,6.0,-2.954020035961983,7.449267916773697 -685,5.0,1.0,-1.6861448807654689,5.116477495334806 -685,5.0,3.0,-6.413123730174556,22.31120356548123 -685,5.0,5.0,22.341631269034565,-82.8291478657789 -685,5.0,6.0,-3.590210423980992,11.02611441072814 -685,5.0,7.0,-6.289308176100628,22.0125786163522 -685,5.0,8.0,0.0,4.915840805411357 -685,5.0,9.0,0.0,1.8561002591115965 -685,5.0,27.0,-4.362844058012917,15.463571542897856 -685,6.0,4.0,-2.954020035961983,7.449267916773697 -685,6.0,5.0,-3.590210423980992,11.02611441072814 -685,6.0,6.0,6.544230459942975,-18.45668232750184 -685,7.0,5.0,-6.289308176100628,22.0125786163522 -685,7.0,7.0,7.733287237496075,-26.527493274828448 -685,7.0,27.0,-1.4439790613954469,4.540814658476248 -685,8.0,5.0,0.0,4.915840805411357 -685,8.0,8.0,0.0,-18.706293706293707 -685,8.0,9.0,0.0,9.090909090909092 -685,8.0,10.0,0.0,4.807692307692308 -685,9.0,5.0,0.0,1.8561002591115965 -685,9.0,8.0,0.0,9.090909090909092 -685,9.0,9.0,13.462042814524237,-41.3837606675224 -685,9.0,16.0,-3.956039125715353,10.317447719844054 -685,9.0,19.0,-1.7848303152666305,3.98535828943083 -685,9.0,20.0,-5.101853820159654,10.98071411292983 -685,9.0,21.0,-2.619319553382597,5.400770303329455 -685,10.0,8.0,0.0,4.807692307692308 -685,10.0,10.0,0.0,-4.807692307692308 -685,11.0,3.0,0.0,4.191255364806866 -685,11.0,11.0,6.573961583776156,-24.424167659260668 -685,11.0,12.0,0.0,7.142857142857143 -685,11.0,13.0,-1.5265676088395577,3.1734252729654173 -685,11.0,14.0,-3.0953961826564296,6.097275864326261 -685,11.0,15.0,-1.9519977922801688,4.104359379111847 -685,12.0,11.0,0.0,7.142857142857143 -685,12.0,12.0,0.0,-7.142857142857143 -685,13.0,11.0,-1.5265676088395577,3.1734252729654173 -685,13.0,13.0,4.01751987283902,-5.424299332335067 -685,13.0,14.0,-2.4909522639994623,2.250874059369649 -685,14.0,11.0,-3.0953961826564296,6.097275864326261 -685,14.0,13.0,-2.4909522639994623,2.250874059369649 -685,14.0,14.0,9.365498545964757,-16.01163373210796 -685,14.0,17.0,-1.8108011504072024,3.687418931630696 -685,14.0,22.0,-1.9683489489016612,3.976064876781356 -685,15.0,11.0,-1.9519977922801688,4.104359379111847 -685,15.0,15.0,3.271064728633931,-8.94513365126506 -685,15.0,16.0,-1.3190669363537617,4.8407742721532125 -685,16.0,9.0,-3.956039125715353,10.317447719844054 -685,16.0,15.0,-1.3190669363537617,4.8407742721532125 -685,16.0,16.0,5.275106062069114,-15.158221991997266 -685,17.0,14.0,-1.8108011504072024,3.687418931630696 -685,17.0,17.0,4.886487584415919,-9.906177730909668 -685,17.0,18.0,-3.0756864340087167,6.218758799278971 -685,18.0,17.0,-3.0756864340087167,6.218758799278971 -685,18.0,18.0,8.958039375185187,-17.98346468163191 -685,18.0,19.0,-5.88235294117647,11.76470588235294 -685,19.0,9.0,-1.7848303152666305,3.98535828943083 -685,19.0,18.0,-5.88235294117647,11.76470588235294 -685,19.0,19.0,7.6671832564431,-15.75006417178377 -685,20.0,9.0,-5.101853820159654,10.98071411292983 -685,20.0,20.0,21.876495189895888,-45.10843276170355 -685,20.0,21.0,-16.774641369736234,34.127718648773715 -685,21.0,9.0,-2.619319553382597,5.400770303329455 -685,21.0,20.0,-16.774641369736234,34.127718648773715 -685,21.0,21.0,21.93449907537439,-43.48289181517921 -685,21.0,23.0,-2.5405381522555563,3.95440286307604 -685,22.0,14.0,-1.9683489489016612,3.976064876781356 -685,22.0,22.0,3.429754555384988,-6.965303617315433 -685,22.0,23.0,-1.4614056064833263,2.989238740534077 -685,23.0,21.0,-2.5405381522555563,3.95440286307604 -685,23.0,22.0,-1.4614056064833263,2.989238740534077 -685,23.0,23.0,5.311836702613133,-9.188263657315172 -685,23.0,24.0,-1.3098929438742493,2.287622053705056 -685,24.0,23.0,-1.3098929438742493,2.287622053705056 -685,24.0,24.0,4.495715080321987,-7.864978761969621 -685,24.0,25.0,-1.2165301194494855,1.8171440463475024 -685,24.0,26.0,-1.9692920169982515,3.760212661917064 -685,25.0,24.0,-1.2165301194494855,1.8171440463475024 -685,25.0,25.0,1.2165301194494855,-1.8171440463475024 -685,26.0,24.0,-1.9692920169982515,3.760212661917064 -685,26.0,26.0,3.652281470778589,-9.46044252232512 -685,26.0,27.0,0.0,2.608731947574922 -685,26.0,28.0,-0.99553355095268,1.881005840357816 -685,26.0,29.0,-0.6874559028276572,1.293971494797717 -685,27.0,5.0,-4.362844058012917,15.463571542897856 -685,27.0,7.0,-1.4439790613954469,4.540814658476248 -685,27.0,26.0,0.0,2.608731947574922 -685,27.0,27.0,5.806823119408364,-22.67145722159613 -685,28.0,26.0,-0.99553355095268,1.881005840357816 -685,28.0,28.0,1.9075867579849564,-3.604364401207048 -685,28.0,29.0,-0.9120532070322764,1.7233585608492326 -685,29.0,26.0,-0.6874559028276572,1.293971494797717 -685,29.0,28.0,-0.9120532070322764,1.7233585608492326 -685,29.0,29.0,1.5995091098599337,-3.0173300556469496 -686,0.0,0.0,6.765516048652632,-21.23160167089863 -686,0.0,1.0,-5.224646179885656,15.646726840803398 -686,0.0,2.0,-1.5408698687669766,5.631674830095234 -686,1.0,0.0,-5.224646179885656,15.646726840803398 -686,1.0,1.0,9.75228216552403,-30.648662892676068 -686,1.0,3.0,-1.7055303166990268,5.1973792282565086 -686,1.0,4.0,-1.1359607881738778,4.772479328281356 -686,1.0,5.0,-1.6861448807654689,5.116477495334806 -686,2.0,0.0,-1.5408698687669766,5.631674830095234 -686,2.0,2.0,9.736318911079088,-29.13794745915803 -686,2.0,3.0,-8.19544904231211,23.5308726290628 -686,3.0,1.0,-1.7055303166990268,5.1973792282565086 -686,3.0,2.0,-8.19544904231211,23.5308726290628 -686,3.0,3.0,16.314103089185693,-55.509410535254254 -686,3.0,5.0,-6.413123730174556,22.31120356548123 -686,3.0,11.0,0.0,4.191255364806866 -686,4.0,1.0,-1.1359607881738778,4.772479328281356 -686,4.0,4.0,4.089980824135861,-12.190647245055052 -686,4.0,6.0,-2.954020035961983,7.449267916773697 -686,5.0,1.0,-1.6861448807654689,5.116477495334806 -686,5.0,3.0,-6.413123730174556,22.31120356548123 -686,5.0,5.0,22.341631269034565,-82.8291478657789 -686,5.0,6.0,-3.590210423980992,11.02611441072814 -686,5.0,7.0,-6.289308176100628,22.0125786163522 -686,5.0,8.0,0.0,4.915840805411357 -686,5.0,9.0,0.0,1.8561002591115965 -686,5.0,27.0,-4.362844058012917,15.463571542897856 -686,6.0,4.0,-2.954020035961983,7.449267916773697 -686,6.0,5.0,-3.590210423980992,11.02611441072814 -686,6.0,6.0,6.544230459942975,-18.45668232750184 -686,7.0,5.0,-6.289308176100628,22.0125786163522 -686,7.0,7.0,7.733287237496075,-26.527493274828448 -686,7.0,27.0,-1.4439790613954469,4.540814658476248 -686,8.0,5.0,0.0,4.915840805411357 -686,8.0,8.0,0.0,-18.706293706293707 -686,8.0,9.0,0.0,9.090909090909092 -686,8.0,10.0,0.0,4.807692307692308 -686,9.0,5.0,0.0,1.8561002591115965 -686,9.0,8.0,0.0,9.090909090909092 -686,9.0,9.0,13.462042814524237,-41.3837606675224 -686,9.0,16.0,-3.956039125715353,10.317447719844054 -686,9.0,19.0,-1.7848303152666305,3.98535828943083 -686,9.0,20.0,-5.101853820159654,10.98071411292983 -686,9.0,21.0,-2.619319553382597,5.400770303329455 -686,10.0,8.0,0.0,4.807692307692308 -686,10.0,10.0,0.0,-4.807692307692308 -686,11.0,3.0,0.0,4.191255364806866 -686,11.0,11.0,6.573961583776156,-24.424167659260668 -686,11.0,12.0,0.0,7.142857142857143 -686,11.0,13.0,-1.5265676088395577,3.1734252729654173 -686,11.0,14.0,-3.0953961826564296,6.097275864326261 -686,11.0,15.0,-1.9519977922801688,4.104359379111847 -686,12.0,11.0,0.0,7.142857142857143 -686,12.0,12.0,0.0,-7.142857142857143 -686,13.0,11.0,-1.5265676088395577,3.1734252729654173 -686,13.0,13.0,4.01751987283902,-5.424299332335067 -686,13.0,14.0,-2.4909522639994623,2.250874059369649 -686,14.0,11.0,-3.0953961826564296,6.097275864326261 -686,14.0,13.0,-2.4909522639994623,2.250874059369649 -686,14.0,14.0,7.554697395557554,-12.324214800477266 -686,14.0,22.0,-1.9683489489016612,3.976064876781356 -686,15.0,11.0,-1.9519977922801688,4.104359379111847 -686,15.0,15.0,3.271064728633931,-8.94513365126506 -686,15.0,16.0,-1.3190669363537617,4.8407742721532125 -686,16.0,9.0,-3.956039125715353,10.317447719844054 -686,16.0,15.0,-1.3190669363537617,4.8407742721532125 -686,16.0,16.0,5.275106062069114,-15.158221991997266 -686,17.0,17.0,3.0756864340087167,-6.218758799278971 -686,17.0,18.0,-3.0756864340087167,6.218758799278971 -686,18.0,17.0,-3.0756864340087167,6.218758799278971 -686,18.0,18.0,8.958039375185187,-17.98346468163191 -686,18.0,19.0,-5.88235294117647,11.76470588235294 -686,19.0,9.0,-1.7848303152666305,3.98535828943083 -686,19.0,18.0,-5.88235294117647,11.76470588235294 -686,19.0,19.0,7.6671832564431,-15.75006417178377 -686,20.0,9.0,-5.101853820159654,10.98071411292983 -686,20.0,20.0,21.876495189895888,-45.10843276170355 -686,20.0,21.0,-16.774641369736234,34.127718648773715 -686,21.0,9.0,-2.619319553382597,5.400770303329455 -686,21.0,20.0,-16.774641369736234,34.127718648773715 -686,21.0,21.0,21.93449907537439,-43.48289181517921 -686,21.0,23.0,-2.5405381522555563,3.95440286307604 -686,22.0,14.0,-1.9683489489016612,3.976064876781356 -686,22.0,22.0,3.429754555384988,-6.965303617315433 -686,22.0,23.0,-1.4614056064833263,2.989238740534077 -686,23.0,21.0,-2.5405381522555563,3.95440286307604 -686,23.0,22.0,-1.4614056064833263,2.989238740534077 -686,23.0,23.0,5.311836702613133,-9.188263657315172 -686,23.0,24.0,-1.3098929438742493,2.287622053705056 -686,24.0,23.0,-1.3098929438742493,2.287622053705056 -686,24.0,24.0,4.495715080321987,-7.864978761969621 -686,24.0,25.0,-1.2165301194494855,1.8171440463475024 -686,24.0,26.0,-1.9692920169982515,3.760212661917064 -686,25.0,24.0,-1.2165301194494855,1.8171440463475024 -686,25.0,25.0,1.2165301194494855,-1.8171440463475024 -686,26.0,24.0,-1.9692920169982515,3.760212661917064 -686,26.0,26.0,3.652281470778589,-9.46044252232512 -686,26.0,27.0,0.0,2.608731947574922 -686,26.0,28.0,-0.99553355095268,1.881005840357816 -686,26.0,29.0,-0.6874559028276572,1.293971494797717 -686,27.0,5.0,-4.362844058012917,15.463571542897856 -686,27.0,7.0,-1.4439790613954469,4.540814658476248 -686,27.0,26.0,0.0,2.608731947574922 -686,27.0,27.0,5.806823119408364,-22.67145722159613 -686,28.0,26.0,-0.99553355095268,1.881005840357816 -686,28.0,28.0,1.9075867579849564,-3.604364401207048 -686,28.0,29.0,-0.9120532070322764,1.7233585608492326 -686,29.0,26.0,-0.6874559028276572,1.293971494797717 -686,29.0,28.0,-0.9120532070322764,1.7233585608492326 -686,29.0,29.0,1.5995091098599337,-3.0173300556469496 -687,0.0,0.0,6.765516048652632,-21.23160167089863 -687,0.0,1.0,-5.224646179885656,15.646726840803398 -687,0.0,2.0,-1.5408698687669766,5.631674830095234 -687,1.0,0.0,-5.224646179885656,15.646726840803398 -687,1.0,1.0,9.75228216552403,-30.648662892676068 -687,1.0,3.0,-1.7055303166990268,5.1973792282565086 -687,1.0,4.0,-1.1359607881738778,4.772479328281356 -687,1.0,5.0,-1.6861448807654689,5.116477495334806 -687,2.0,0.0,-1.5408698687669766,5.631674830095234 -687,2.0,2.0,9.736318911079088,-29.13794745915803 -687,2.0,3.0,-8.19544904231211,23.5308726290628 -687,3.0,1.0,-1.7055303166990268,5.1973792282565086 -687,3.0,2.0,-8.19544904231211,23.5308726290628 -687,3.0,3.0,16.314103089185693,-55.509410535254254 -687,3.0,5.0,-6.413123730174556,22.31120356548123 -687,3.0,11.0,0.0,4.191255364806866 -687,4.0,1.0,-1.1359607881738778,4.772479328281356 -687,4.0,4.0,4.089980824135861,-12.190647245055052 -687,4.0,6.0,-2.954020035961983,7.449267916773697 -687,5.0,1.0,-1.6861448807654689,5.116477495334806 -687,5.0,3.0,-6.413123730174556,22.31120356548123 -687,5.0,5.0,22.341631269034565,-82.8291478657789 -687,5.0,6.0,-3.590210423980992,11.02611441072814 -687,5.0,7.0,-6.289308176100628,22.0125786163522 -687,5.0,8.0,0.0,4.915840805411357 -687,5.0,9.0,0.0,1.8561002591115965 -687,5.0,27.0,-4.362844058012917,15.463571542897856 -687,6.0,4.0,-2.954020035961983,7.449267916773697 -687,6.0,5.0,-3.590210423980992,11.02611441072814 -687,6.0,6.0,6.544230459942975,-18.45668232750184 -687,7.0,5.0,-6.289308176100628,22.0125786163522 -687,7.0,7.0,7.733287237496075,-26.527493274828448 -687,7.0,27.0,-1.4439790613954469,4.540814658476248 -687,8.0,5.0,0.0,4.915840805411357 -687,8.0,8.0,0.0,-18.706293706293707 -687,8.0,9.0,0.0,9.090909090909092 -687,8.0,10.0,0.0,4.807692307692308 -687,9.0,5.0,0.0,1.8561002591115965 -687,9.0,8.0,0.0,9.090909090909092 -687,9.0,9.0,13.462042814524237,-41.3837606675224 -687,9.0,16.0,-3.956039125715353,10.317447719844054 -687,9.0,19.0,-1.7848303152666305,3.98535828943083 -687,9.0,20.0,-5.101853820159654,10.98071411292983 -687,9.0,21.0,-2.619319553382597,5.400770303329455 -687,10.0,8.0,0.0,4.807692307692308 -687,10.0,10.0,0.0,-4.807692307692308 -687,11.0,3.0,0.0,4.191255364806866 -687,11.0,11.0,6.573961583776156,-24.424167659260668 -687,11.0,12.0,0.0,7.142857142857143 -687,11.0,13.0,-1.5265676088395577,3.1734252729654173 -687,11.0,14.0,-3.0953961826564296,6.097275864326261 -687,11.0,15.0,-1.9519977922801688,4.104359379111847 -687,12.0,11.0,0.0,7.142857142857143 -687,12.0,12.0,0.0,-7.142857142857143 -687,13.0,11.0,-1.5265676088395577,3.1734252729654173 -687,13.0,13.0,4.01751987283902,-5.424299332335067 -687,13.0,14.0,-2.4909522639994623,2.250874059369649 -687,14.0,11.0,-3.0953961826564296,6.097275864326261 -687,14.0,13.0,-2.4909522639994623,2.250874059369649 -687,14.0,14.0,9.365498545964757,-16.01163373210796 -687,14.0,17.0,-1.8108011504072024,3.687418931630696 -687,14.0,22.0,-1.9683489489016612,3.976064876781356 -687,15.0,11.0,-1.9519977922801688,4.104359379111847 -687,15.0,15.0,3.271064728633931,-8.94513365126506 -687,15.0,16.0,-1.3190669363537617,4.8407742721532125 -687,16.0,9.0,-3.956039125715353,10.317447719844054 -687,16.0,15.0,-1.3190669363537617,4.8407742721532125 -687,16.0,16.0,5.275106062069114,-15.158221991997266 -687,17.0,14.0,-1.8108011504072024,3.687418931630696 -687,17.0,17.0,4.886487584415919,-9.906177730909668 -687,17.0,18.0,-3.0756864340087167,6.218758799278971 -687,18.0,17.0,-3.0756864340087167,6.218758799278971 -687,18.0,18.0,8.958039375185187,-17.98346468163191 -687,18.0,19.0,-5.88235294117647,11.76470588235294 -687,19.0,9.0,-1.7848303152666305,3.98535828943083 -687,19.0,18.0,-5.88235294117647,11.76470588235294 -687,19.0,19.0,7.6671832564431,-15.75006417178377 -687,20.0,9.0,-5.101853820159654,10.98071411292983 -687,20.0,20.0,21.876495189895888,-45.10843276170355 -687,20.0,21.0,-16.774641369736234,34.127718648773715 -687,21.0,9.0,-2.619319553382597,5.400770303329455 -687,21.0,20.0,-16.774641369736234,34.127718648773715 -687,21.0,21.0,21.93449907537439,-43.48289181517921 -687,21.0,23.0,-2.5405381522555563,3.95440286307604 -687,22.0,14.0,-1.9683489489016612,3.976064876781356 -687,22.0,22.0,3.429754555384988,-6.965303617315433 -687,22.0,23.0,-1.4614056064833263,2.989238740534077 -687,23.0,21.0,-2.5405381522555563,3.95440286307604 -687,23.0,22.0,-1.4614056064833263,2.989238740534077 -687,23.0,23.0,5.311836702613133,-9.188263657315172 -687,23.0,24.0,-1.3098929438742493,2.287622053705056 -687,24.0,23.0,-1.3098929438742493,2.287622053705056 -687,24.0,24.0,4.495715080321987,-7.864978761969621 -687,24.0,25.0,-1.2165301194494855,1.8171440463475024 -687,24.0,26.0,-1.9692920169982515,3.760212661917064 -687,25.0,24.0,-1.2165301194494855,1.8171440463475024 -687,25.0,25.0,1.2165301194494855,-1.8171440463475024 -687,26.0,24.0,-1.9692920169982515,3.760212661917064 -687,26.0,26.0,3.652281470778589,-9.46044252232512 -687,26.0,27.0,0.0,2.608731947574922 -687,26.0,28.0,-0.99553355095268,1.881005840357816 -687,26.0,29.0,-0.6874559028276572,1.293971494797717 -687,27.0,5.0,-4.362844058012917,15.463571542897856 -687,27.0,7.0,-1.4439790613954469,4.540814658476248 -687,27.0,26.0,0.0,2.608731947574922 -687,27.0,27.0,5.806823119408364,-22.67145722159613 -687,28.0,26.0,-0.99553355095268,1.881005840357816 -687,28.0,28.0,1.9075867579849564,-3.604364401207048 -687,28.0,29.0,-0.9120532070322764,1.7233585608492326 -687,29.0,26.0,-0.6874559028276572,1.293971494797717 -687,29.0,28.0,-0.9120532070322764,1.7233585608492326 -687,29.0,29.0,1.5995091098599337,-3.0173300556469496 -688,0.0,0.0,6.765516048652632,-21.23160167089863 -688,0.0,1.0,-5.224646179885656,15.646726840803398 -688,0.0,2.0,-1.5408698687669766,5.631674830095234 -688,1.0,0.0,-5.224646179885656,15.646726840803398 -688,1.0,1.0,9.75228216552403,-30.648662892676068 -688,1.0,3.0,-1.7055303166990268,5.1973792282565086 -688,1.0,4.0,-1.1359607881738778,4.772479328281356 -688,1.0,5.0,-1.6861448807654689,5.116477495334806 -688,2.0,0.0,-1.5408698687669766,5.631674830095234 -688,2.0,2.0,9.736318911079088,-29.13794745915803 -688,2.0,3.0,-8.19544904231211,23.5308726290628 -688,3.0,1.0,-1.7055303166990268,5.1973792282565086 -688,3.0,2.0,-8.19544904231211,23.5308726290628 -688,3.0,3.0,16.314103089185693,-55.509410535254254 -688,3.0,5.0,-6.413123730174556,22.31120356548123 -688,3.0,11.0,0.0,4.191255364806866 -688,4.0,1.0,-1.1359607881738778,4.772479328281356 -688,4.0,4.0,4.089980824135861,-12.190647245055052 -688,4.0,6.0,-2.954020035961983,7.449267916773697 -688,5.0,1.0,-1.6861448807654689,5.116477495334806 -688,5.0,3.0,-6.413123730174556,22.31120356548123 -688,5.0,5.0,22.341631269034565,-82.8291478657789 -688,5.0,6.0,-3.590210423980992,11.02611441072814 -688,5.0,7.0,-6.289308176100628,22.0125786163522 -688,5.0,8.0,0.0,4.915840805411357 -688,5.0,9.0,0.0,1.8561002591115965 -688,5.0,27.0,-4.362844058012917,15.463571542897856 -688,6.0,4.0,-2.954020035961983,7.449267916773697 -688,6.0,5.0,-3.590210423980992,11.02611441072814 -688,6.0,6.0,6.544230459942975,-18.45668232750184 -688,7.0,5.0,-6.289308176100628,22.0125786163522 -688,7.0,7.0,7.733287237496075,-26.527493274828448 -688,7.0,27.0,-1.4439790613954469,4.540814658476248 -688,8.0,5.0,0.0,4.915840805411357 -688,8.0,8.0,0.0,-18.706293706293707 -688,8.0,9.0,0.0,9.090909090909092 -688,8.0,10.0,0.0,4.807692307692308 -688,9.0,5.0,0.0,1.8561002591115965 -688,9.0,8.0,0.0,9.090909090909092 -688,9.0,9.0,13.462042814524237,-41.3837606675224 -688,9.0,16.0,-3.956039125715353,10.317447719844054 -688,9.0,19.0,-1.7848303152666305,3.98535828943083 -688,9.0,20.0,-5.101853820159654,10.98071411292983 -688,9.0,21.0,-2.619319553382597,5.400770303329455 -688,10.0,8.0,0.0,4.807692307692308 -688,10.0,10.0,0.0,-4.807692307692308 -688,11.0,3.0,0.0,4.191255364806866 -688,11.0,11.0,6.573961583776156,-24.424167659260668 -688,11.0,12.0,0.0,7.142857142857143 -688,11.0,13.0,-1.5265676088395577,3.1734252729654173 -688,11.0,14.0,-3.0953961826564296,6.097275864326261 -688,11.0,15.0,-1.9519977922801688,4.104359379111847 -688,12.0,11.0,0.0,7.142857142857143 -688,12.0,12.0,0.0,-7.142857142857143 -688,13.0,11.0,-1.5265676088395577,3.1734252729654173 -688,13.0,13.0,4.01751987283902,-5.424299332335067 -688,13.0,14.0,-2.4909522639994623,2.250874059369649 -688,14.0,11.0,-3.0953961826564296,6.097275864326261 -688,14.0,13.0,-2.4909522639994623,2.250874059369649 -688,14.0,14.0,9.365498545964757,-16.01163373210796 -688,14.0,17.0,-1.8108011504072024,3.687418931630696 -688,14.0,22.0,-1.9683489489016612,3.976064876781356 -688,15.0,11.0,-1.9519977922801688,4.104359379111847 -688,15.0,15.0,3.271064728633931,-8.94513365126506 -688,15.0,16.0,-1.3190669363537617,4.8407742721532125 -688,16.0,9.0,-3.956039125715353,10.317447719844054 -688,16.0,15.0,-1.3190669363537617,4.8407742721532125 -688,16.0,16.0,5.275106062069114,-15.158221991997266 -688,17.0,14.0,-1.8108011504072024,3.687418931630696 -688,17.0,17.0,4.886487584415919,-9.906177730909668 -688,17.0,18.0,-3.0756864340087167,6.218758799278971 -688,18.0,17.0,-3.0756864340087167,6.218758799278971 -688,18.0,18.0,8.958039375185187,-17.98346468163191 -688,18.0,19.0,-5.88235294117647,11.76470588235294 -688,19.0,9.0,-1.7848303152666305,3.98535828943083 -688,19.0,18.0,-5.88235294117647,11.76470588235294 -688,19.0,19.0,7.6671832564431,-15.75006417178377 -688,20.0,9.0,-5.101853820159654,10.98071411292983 -688,20.0,20.0,21.876495189895888,-45.10843276170355 -688,20.0,21.0,-16.774641369736234,34.127718648773715 -688,21.0,9.0,-2.619319553382597,5.400770303329455 -688,21.0,20.0,-16.774641369736234,34.127718648773715 -688,21.0,21.0,21.93449907537439,-43.48289181517921 -688,21.0,23.0,-2.5405381522555563,3.95440286307604 -688,22.0,14.0,-1.9683489489016612,3.976064876781356 -688,22.0,22.0,3.429754555384988,-6.965303617315433 -688,22.0,23.0,-1.4614056064833263,2.989238740534077 -688,23.0,21.0,-2.5405381522555563,3.95440286307604 -688,23.0,22.0,-1.4614056064833263,2.989238740534077 -688,23.0,23.0,5.311836702613133,-9.188263657315172 -688,23.0,24.0,-1.3098929438742493,2.287622053705056 -688,24.0,23.0,-1.3098929438742493,2.287622053705056 -688,24.0,24.0,4.495715080321987,-7.864978761969621 -688,24.0,25.0,-1.2165301194494855,1.8171440463475024 -688,24.0,26.0,-1.9692920169982515,3.760212661917064 -688,25.0,24.0,-1.2165301194494855,1.8171440463475024 -688,25.0,25.0,1.2165301194494855,-1.8171440463475024 -688,26.0,24.0,-1.9692920169982515,3.760212661917064 -688,26.0,26.0,3.652281470778589,-9.46044252232512 -688,26.0,27.0,0.0,2.608731947574922 -688,26.0,28.0,-0.99553355095268,1.881005840357816 -688,26.0,29.0,-0.6874559028276572,1.293971494797717 -688,27.0,5.0,-4.362844058012917,15.463571542897856 -688,27.0,7.0,-1.4439790613954469,4.540814658476248 -688,27.0,26.0,0.0,2.608731947574922 -688,27.0,27.0,5.806823119408364,-22.67145722159613 -688,28.0,26.0,-0.99553355095268,1.881005840357816 -688,28.0,28.0,1.9075867579849564,-3.604364401207048 -688,28.0,29.0,-0.9120532070322764,1.7233585608492326 -688,29.0,26.0,-0.6874559028276572,1.293971494797717 -688,29.0,28.0,-0.9120532070322764,1.7233585608492326 -688,29.0,29.0,1.5995091098599337,-3.0173300556469496 -689,0.0,0.0,1.5408698687669766,-5.611274830095233 -689,0.0,2.0,-1.5408698687669766,5.631674830095234 -689,1.0,1.0,2.841491104872905,-9.930558556537864 -689,1.0,3.0,-1.7055303166990268,5.1973792282565086 -689,1.0,4.0,-1.1359607881738778,4.772479328281356 -689,2.0,0.0,-1.5408698687669766,5.631674830095234 -689,2.0,2.0,9.736318911079088,-29.13794745915803 -689,2.0,3.0,-8.19544904231211,23.5308726290628 -689,3.0,1.0,-1.7055303166990268,5.1973792282565086 -689,3.0,2.0,-8.19544904231211,23.5308726290628 -689,3.0,3.0,16.314103089185693,-55.509410535254254 -689,3.0,5.0,-6.413123730174556,22.31120356548123 -689,3.0,11.0,0.0,4.191255364806866 -689,4.0,1.0,-1.1359607881738778,4.772479328281356 -689,4.0,4.0,4.089980824135861,-12.190647245055052 -689,4.0,6.0,-2.954020035961983,7.449267916773697 -689,5.0,3.0,-6.413123730174556,22.31120356548123 -689,5.0,5.0,20.655486388269097,-75.81589022688208 -689,5.0,6.0,-3.590210423980992,11.02611441072814 -689,5.0,7.0,-6.289308176100628,22.0125786163522 -689,5.0,8.0,0.0,4.915840805411357 -689,5.0,27.0,-4.362844058012917,15.463571542897856 -689,6.0,4.0,-2.954020035961983,7.449267916773697 -689,6.0,5.0,-3.590210423980992,11.02611441072814 -689,6.0,6.0,6.544230459942975,-18.45668232750184 -689,7.0,5.0,-6.289308176100628,22.0125786163522 -689,7.0,7.0,7.733287237496075,-26.527493274828448 -689,7.0,27.0,-1.4439790613954469,4.540814658476248 -689,8.0,5.0,0.0,4.915840805411357 -689,8.0,8.0,0.0,-18.706293706293707 -689,8.0,9.0,0.0,9.090909090909092 -689,8.0,10.0,0.0,4.807692307692308 -689,9.0,8.0,0.0,9.090909090909092 -689,9.0,9.0,13.462042814524237,-39.58519951644326 -689,9.0,16.0,-3.956039125715353,10.317447719844054 -689,9.0,19.0,-1.7848303152666305,3.98535828943083 -689,9.0,20.0,-5.101853820159654,10.98071411292983 -689,9.0,21.0,-2.619319553382597,5.400770303329455 -689,10.0,8.0,0.0,4.807692307692308 -689,10.0,10.0,0.0,-4.807692307692308 -689,11.0,3.0,0.0,4.191255364806866 -689,11.0,11.0,5.047393974936599,-21.25074238629525 -689,11.0,12.0,0.0,7.142857142857143 -689,11.0,14.0,-3.0953961826564296,6.097275864326261 -689,11.0,15.0,-1.9519977922801688,4.104359379111847 -689,12.0,11.0,0.0,7.142857142857143 -689,12.0,12.0,0.0,-7.142857142857143 -689,13.0,13.0,2.4909522639994623,-2.250874059369649 -689,13.0,14.0,-2.4909522639994623,2.250874059369649 -689,14.0,11.0,-3.0953961826564296,6.097275864326261 -689,14.0,13.0,-2.4909522639994623,2.250874059369649 -689,14.0,14.0,9.365498545964757,-16.01163373210796 -689,14.0,17.0,-1.8108011504072024,3.687418931630696 -689,14.0,22.0,-1.9683489489016612,3.976064876781356 -689,15.0,11.0,-1.9519977922801688,4.104359379111847 -689,15.0,15.0,3.271064728633931,-8.94513365126506 -689,15.0,16.0,-1.3190669363537617,4.8407742721532125 -689,16.0,9.0,-3.956039125715353,10.317447719844054 -689,16.0,15.0,-1.3190669363537617,4.8407742721532125 -689,16.0,16.0,5.275106062069114,-15.158221991997266 -689,17.0,14.0,-1.8108011504072024,3.687418931630696 -689,17.0,17.0,1.8108011504072024,-3.687418931630696 -689,18.0,18.0,5.88235294117647,-11.76470588235294 -689,18.0,19.0,-5.88235294117647,11.76470588235294 -689,19.0,9.0,-1.7848303152666305,3.98535828943083 -689,19.0,18.0,-5.88235294117647,11.76470588235294 -689,19.0,19.0,7.6671832564431,-15.75006417178377 -689,20.0,9.0,-5.101853820159654,10.98071411292983 -689,20.0,20.0,21.876495189895888,-45.10843276170355 -689,20.0,21.0,-16.774641369736234,34.127718648773715 -689,21.0,9.0,-2.619319553382597,5.400770303329455 -689,21.0,20.0,-16.774641369736234,34.127718648773715 -689,21.0,21.0,21.93449907537439,-43.48289181517921 -689,21.0,23.0,-2.5405381522555563,3.95440286307604 -689,22.0,14.0,-1.9683489489016612,3.976064876781356 -689,22.0,22.0,3.429754555384988,-6.965303617315433 -689,22.0,23.0,-1.4614056064833263,2.989238740534077 -689,23.0,21.0,-2.5405381522555563,3.95440286307604 -689,23.0,22.0,-1.4614056064833263,2.989238740534077 -689,23.0,23.0,5.311836702613133,-9.188263657315172 -689,23.0,24.0,-1.3098929438742493,2.287622053705056 -689,24.0,23.0,-1.3098929438742493,2.287622053705056 -689,24.0,24.0,4.495715080321987,-7.864978761969621 -689,24.0,25.0,-1.2165301194494855,1.8171440463475024 -689,24.0,26.0,-1.9692920169982515,3.760212661917064 -689,25.0,24.0,-1.2165301194494855,1.8171440463475024 -689,25.0,25.0,1.2165301194494855,-1.8171440463475024 -689,26.0,24.0,-1.9692920169982515,3.760212661917064 -689,26.0,26.0,3.652281470778589,-9.46044252232512 -689,26.0,27.0,0.0,2.608731947574922 -689,26.0,28.0,-0.99553355095268,1.881005840357816 -689,26.0,29.0,-0.6874559028276572,1.293971494797717 -689,27.0,5.0,-4.362844058012917,15.463571542897856 -689,27.0,7.0,-1.4439790613954469,4.540814658476248 -689,27.0,26.0,0.0,2.608731947574922 -689,27.0,27.0,5.806823119408364,-22.67145722159613 -689,28.0,26.0,-0.99553355095268,1.881005840357816 -689,28.0,28.0,1.9075867579849564,-3.604364401207048 -689,28.0,29.0,-0.9120532070322764,1.7233585608492326 -689,29.0,26.0,-0.6874559028276572,1.293971494797717 -689,29.0,28.0,-0.9120532070322764,1.7233585608492326 -689,29.0,29.0,1.5995091098599337,-3.0173300556469496 -690,0.0,0.0,6.765516048652632,-21.23160167089863 -690,0.0,1.0,-5.224646179885656,15.646726840803398 -690,0.0,2.0,-1.5408698687669766,5.631674830095234 -690,1.0,0.0,-5.224646179885656,15.646726840803398 -690,1.0,1.0,9.75228216552403,-30.648662892676068 -690,1.0,3.0,-1.7055303166990268,5.1973792282565086 -690,1.0,4.0,-1.1359607881738778,4.772479328281356 -690,1.0,5.0,-1.6861448807654689,5.116477495334806 -690,2.0,0.0,-1.5408698687669766,5.631674830095234 -690,2.0,2.0,9.736318911079088,-29.13794745915803 -690,2.0,3.0,-8.19544904231211,23.5308726290628 -690,3.0,1.0,-1.7055303166990268,5.1973792282565086 -690,3.0,2.0,-8.19544904231211,23.5308726290628 -690,3.0,3.0,16.314103089185693,-55.509410535254254 -690,3.0,5.0,-6.413123730174556,22.31120356548123 -690,3.0,11.0,0.0,4.191255364806866 -690,4.0,1.0,-1.1359607881738778,4.772479328281356 -690,4.0,4.0,4.089980824135861,-12.190647245055052 -690,4.0,6.0,-2.954020035961983,7.449267916773697 -690,5.0,1.0,-1.6861448807654689,5.116477495334806 -690,5.0,3.0,-6.413123730174556,22.31120356548123 -690,5.0,5.0,22.341631269034565,-77.80272577435625 -690,5.0,6.0,-3.590210423980992,11.02611441072814 -690,5.0,7.0,-6.289308176100628,22.0125786163522 -690,5.0,9.0,0.0,1.8561002591115965 -690,5.0,27.0,-4.362844058012917,15.463571542897856 -690,6.0,4.0,-2.954020035961983,7.449267916773697 -690,6.0,5.0,-3.590210423980992,11.02611441072814 -690,6.0,6.0,6.544230459942975,-18.45668232750184 -690,7.0,5.0,-6.289308176100628,22.0125786163522 -690,7.0,7.0,7.733287237496075,-26.527493274828448 -690,7.0,27.0,-1.4439790613954469,4.540814658476248 -690,8.0,8.0,0.0,-13.8986013986014 -690,8.0,9.0,0.0,9.090909090909092 -690,8.0,10.0,0.0,4.807692307692308 -690,9.0,5.0,0.0,1.8561002591115965 -690,9.0,8.0,0.0,9.090909090909092 -690,9.0,9.0,9.506003688808882,-31.06631294767834 -690,9.0,19.0,-1.7848303152666305,3.98535828943083 -690,9.0,20.0,-5.101853820159654,10.98071411292983 -690,9.0,21.0,-2.619319553382597,5.400770303329455 -690,10.0,8.0,0.0,4.807692307692308 -690,10.0,10.0,0.0,-4.807692307692308 -690,11.0,3.0,0.0,4.191255364806866 -690,11.0,11.0,6.573961583776156,-24.424167659260668 -690,11.0,12.0,0.0,7.142857142857143 -690,11.0,13.0,-1.5265676088395577,3.1734252729654173 -690,11.0,14.0,-3.0953961826564296,6.097275864326261 -690,11.0,15.0,-1.9519977922801688,4.104359379111847 -690,12.0,11.0,0.0,7.142857142857143 -690,12.0,12.0,0.0,-7.142857142857143 -690,13.0,11.0,-1.5265676088395577,3.1734252729654173 -690,13.0,13.0,4.01751987283902,-5.424299332335067 -690,13.0,14.0,-2.4909522639994623,2.250874059369649 -690,14.0,11.0,-3.0953961826564296,6.097275864326261 -690,14.0,13.0,-2.4909522639994623,2.250874059369649 -690,14.0,14.0,9.365498545964757,-16.01163373210796 -690,14.0,17.0,-1.8108011504072024,3.687418931630696 -690,14.0,22.0,-1.9683489489016612,3.976064876781356 -690,15.0,11.0,-1.9519977922801688,4.104359379111847 -690,15.0,15.0,3.271064728633931,-8.94513365126506 -690,15.0,16.0,-1.3190669363537617,4.8407742721532125 -690,16.0,15.0,-1.3190669363537617,4.8407742721532125 -690,16.0,16.0,1.3190669363537617,-4.8407742721532125 -690,17.0,14.0,-1.8108011504072024,3.687418931630696 -690,17.0,17.0,4.886487584415919,-9.906177730909668 -690,17.0,18.0,-3.0756864340087167,6.218758799278971 -690,18.0,17.0,-3.0756864340087167,6.218758799278971 -690,18.0,18.0,8.958039375185187,-17.98346468163191 -690,18.0,19.0,-5.88235294117647,11.76470588235294 -690,19.0,9.0,-1.7848303152666305,3.98535828943083 -690,19.0,18.0,-5.88235294117647,11.76470588235294 -690,19.0,19.0,7.6671832564431,-15.75006417178377 -690,20.0,9.0,-5.101853820159654,10.98071411292983 -690,20.0,20.0,21.876495189895888,-45.10843276170355 -690,20.0,21.0,-16.774641369736234,34.127718648773715 -690,21.0,9.0,-2.619319553382597,5.400770303329455 -690,21.0,20.0,-16.774641369736234,34.127718648773715 -690,21.0,21.0,21.93449907537439,-43.48289181517921 -690,21.0,23.0,-2.5405381522555563,3.95440286307604 -690,22.0,14.0,-1.9683489489016612,3.976064876781356 -690,22.0,22.0,3.429754555384988,-6.965303617315433 -690,22.0,23.0,-1.4614056064833263,2.989238740534077 -690,23.0,21.0,-2.5405381522555563,3.95440286307604 -690,23.0,22.0,-1.4614056064833263,2.989238740534077 -690,23.0,23.0,5.311836702613133,-9.188263657315172 -690,23.0,24.0,-1.3098929438742493,2.287622053705056 -690,24.0,23.0,-1.3098929438742493,2.287622053705056 -690,24.0,24.0,4.495715080321987,-7.864978761969621 -690,24.0,25.0,-1.2165301194494855,1.8171440463475024 -690,24.0,26.0,-1.9692920169982515,3.760212661917064 -690,25.0,24.0,-1.2165301194494855,1.8171440463475024 -690,25.0,25.0,1.2165301194494855,-1.8171440463475024 -690,26.0,24.0,-1.9692920169982515,3.760212661917064 -690,26.0,26.0,3.652281470778589,-9.46044252232512 -690,26.0,27.0,0.0,2.608731947574922 -690,26.0,28.0,-0.99553355095268,1.881005840357816 -690,26.0,29.0,-0.6874559028276572,1.293971494797717 -690,27.0,5.0,-4.362844058012917,15.463571542897856 -690,27.0,7.0,-1.4439790613954469,4.540814658476248 -690,27.0,26.0,0.0,2.608731947574922 -690,27.0,27.0,5.806823119408364,-22.67145722159613 -690,28.0,26.0,-0.99553355095268,1.881005840357816 -690,28.0,28.0,1.9075867579849564,-3.604364401207048 -690,28.0,29.0,-0.9120532070322764,1.7233585608492326 -690,29.0,26.0,-0.6874559028276572,1.293971494797717 -690,29.0,28.0,-0.9120532070322764,1.7233585608492326 -690,29.0,29.0,1.5995091098599337,-3.0173300556469496 -691,0.0,0.0,6.765516048652632,-21.23160167089863 -691,0.0,1.0,-5.224646179885656,15.646726840803398 -691,0.0,2.0,-1.5408698687669766,5.631674830095234 -691,1.0,0.0,-5.224646179885656,15.646726840803398 -691,1.0,1.0,9.75228216552403,-30.648662892676068 -691,1.0,3.0,-1.7055303166990268,5.1973792282565086 -691,1.0,4.0,-1.1359607881738778,4.772479328281356 -691,1.0,5.0,-1.6861448807654689,5.116477495334806 -691,2.0,0.0,-1.5408698687669766,5.631674830095234 -691,2.0,2.0,9.736318911079088,-29.13794745915803 -691,2.0,3.0,-8.19544904231211,23.5308726290628 -691,3.0,1.0,-1.7055303166990268,5.1973792282565086 -691,3.0,2.0,-8.19544904231211,23.5308726290628 -691,3.0,3.0,16.314103089185693,-55.509410535254254 -691,3.0,5.0,-6.413123730174556,22.31120356548123 -691,3.0,11.0,0.0,4.191255364806866 -691,4.0,1.0,-1.1359607881738778,4.772479328281356 -691,4.0,4.0,4.089980824135861,-12.190647245055052 -691,4.0,6.0,-2.954020035961983,7.449267916773697 -691,5.0,1.0,-1.6861448807654689,5.116477495334806 -691,5.0,3.0,-6.413123730174556,22.31120356548123 -691,5.0,5.0,22.341631269034565,-82.8291478657789 -691,5.0,6.0,-3.590210423980992,11.02611441072814 -691,5.0,7.0,-6.289308176100628,22.0125786163522 -691,5.0,8.0,0.0,4.915840805411357 -691,5.0,9.0,0.0,1.8561002591115965 -691,5.0,27.0,-4.362844058012917,15.463571542897856 -691,6.0,4.0,-2.954020035961983,7.449267916773697 -691,6.0,5.0,-3.590210423980992,11.02611441072814 -691,6.0,6.0,6.544230459942975,-18.45668232750184 -691,7.0,5.0,-6.289308176100628,22.0125786163522 -691,7.0,7.0,7.733287237496075,-26.527493274828448 -691,7.0,27.0,-1.4439790613954469,4.540814658476248 -691,8.0,5.0,0.0,4.915840805411357 -691,8.0,8.0,0.0,-18.706293706293707 -691,8.0,9.0,0.0,9.090909090909092 -691,8.0,10.0,0.0,4.807692307692308 -691,9.0,5.0,0.0,1.8561002591115965 -691,9.0,8.0,0.0,9.090909090909092 -691,9.0,9.0,13.462042814524237,-41.3837606675224 -691,9.0,16.0,-3.956039125715353,10.317447719844054 -691,9.0,19.0,-1.7848303152666305,3.98535828943083 -691,9.0,20.0,-5.101853820159654,10.98071411292983 -691,9.0,21.0,-2.619319553382597,5.400770303329455 -691,10.0,8.0,0.0,4.807692307692308 -691,10.0,10.0,0.0,-4.807692307692308 -691,11.0,3.0,0.0,4.191255364806866 -691,11.0,11.0,6.573961583776156,-24.424167659260668 -691,11.0,12.0,0.0,7.142857142857143 -691,11.0,13.0,-1.5265676088395577,3.1734252729654173 -691,11.0,14.0,-3.0953961826564296,6.097275864326261 -691,11.0,15.0,-1.9519977922801688,4.104359379111847 -691,12.0,11.0,0.0,7.142857142857143 -691,12.0,12.0,0.0,-7.142857142857143 -691,13.0,11.0,-1.5265676088395577,3.1734252729654173 -691,13.0,13.0,4.01751987283902,-5.424299332335067 -691,13.0,14.0,-2.4909522639994623,2.250874059369649 -691,14.0,11.0,-3.0953961826564296,6.097275864326261 -691,14.0,13.0,-2.4909522639994623,2.250874059369649 -691,14.0,14.0,9.365498545964757,-16.01163373210796 -691,14.0,17.0,-1.8108011504072024,3.687418931630696 -691,14.0,22.0,-1.9683489489016612,3.976064876781356 -691,15.0,11.0,-1.9519977922801688,4.104359379111847 -691,15.0,15.0,3.271064728633931,-8.94513365126506 -691,15.0,16.0,-1.3190669363537617,4.8407742721532125 -691,16.0,9.0,-3.956039125715353,10.317447719844054 -691,16.0,15.0,-1.3190669363537617,4.8407742721532125 -691,16.0,16.0,5.275106062069114,-15.158221991997266 -691,17.0,14.0,-1.8108011504072024,3.687418931630696 -691,17.0,17.0,4.886487584415919,-9.906177730909668 -691,17.0,18.0,-3.0756864340087167,6.218758799278971 -691,18.0,17.0,-3.0756864340087167,6.218758799278971 -691,18.0,18.0,8.958039375185187,-17.98346468163191 -691,18.0,19.0,-5.88235294117647,11.76470588235294 -691,19.0,9.0,-1.7848303152666305,3.98535828943083 -691,19.0,18.0,-5.88235294117647,11.76470588235294 -691,19.0,19.0,7.6671832564431,-15.75006417178377 -691,20.0,9.0,-5.101853820159654,10.98071411292983 -691,20.0,20.0,21.876495189895888,-45.10843276170355 -691,20.0,21.0,-16.774641369736234,34.127718648773715 -691,21.0,9.0,-2.619319553382597,5.400770303329455 -691,21.0,20.0,-16.774641369736234,34.127718648773715 -691,21.0,21.0,21.93449907537439,-43.48289181517921 -691,21.0,23.0,-2.5405381522555563,3.95440286307604 -691,22.0,14.0,-1.9683489489016612,3.976064876781356 -691,22.0,22.0,3.429754555384988,-6.965303617315433 -691,22.0,23.0,-1.4614056064833263,2.989238740534077 -691,23.0,21.0,-2.5405381522555563,3.95440286307604 -691,23.0,22.0,-1.4614056064833263,2.989238740534077 -691,23.0,23.0,5.311836702613133,-9.188263657315172 -691,23.0,24.0,-1.3098929438742493,2.287622053705056 -691,24.0,23.0,-1.3098929438742493,2.287622053705056 -691,24.0,24.0,4.495715080321987,-7.864978761969621 -691,24.0,25.0,-1.2165301194494855,1.8171440463475024 -691,24.0,26.0,-1.9692920169982515,3.760212661917064 -691,25.0,24.0,-1.2165301194494855,1.8171440463475024 -691,25.0,25.0,1.2165301194494855,-1.8171440463475024 -691,26.0,24.0,-1.9692920169982515,3.760212661917064 -691,26.0,26.0,3.652281470778589,-9.46044252232512 -691,26.0,27.0,0.0,2.608731947574922 -691,26.0,28.0,-0.99553355095268,1.881005840357816 -691,26.0,29.0,-0.6874559028276572,1.293971494797717 -691,27.0,5.0,-4.362844058012917,15.463571542897856 -691,27.0,7.0,-1.4439790613954469,4.540814658476248 -691,27.0,26.0,0.0,2.608731947574922 -691,27.0,27.0,5.806823119408364,-22.67145722159613 -691,28.0,26.0,-0.99553355095268,1.881005840357816 -691,28.0,28.0,1.9075867579849564,-3.604364401207048 -691,28.0,29.0,-0.9120532070322764,1.7233585608492326 -691,29.0,26.0,-0.6874559028276572,1.293971494797717 -691,29.0,28.0,-0.9120532070322764,1.7233585608492326 -691,29.0,29.0,1.5995091098599337,-3.0173300556469496 -692,0.0,0.0,6.765516048652632,-21.23160167089863 -692,0.0,1.0,-5.224646179885656,15.646726840803398 -692,0.0,2.0,-1.5408698687669766,5.631674830095234 -692,1.0,0.0,-5.224646179885656,15.646726840803398 -692,1.0,1.0,9.75228216552403,-30.648662892676068 -692,1.0,3.0,-1.7055303166990268,5.1973792282565086 -692,1.0,4.0,-1.1359607881738778,4.772479328281356 -692,1.0,5.0,-1.6861448807654689,5.116477495334806 -692,2.0,0.0,-1.5408698687669766,5.631674830095234 -692,2.0,2.0,9.736318911079088,-29.13794745915803 -692,2.0,3.0,-8.19544904231211,23.5308726290628 -692,3.0,1.0,-1.7055303166990268,5.1973792282565086 -692,3.0,2.0,-8.19544904231211,23.5308726290628 -692,3.0,3.0,16.314103089185693,-55.509410535254254 -692,3.0,5.0,-6.413123730174556,22.31120356548123 -692,3.0,11.0,0.0,4.191255364806866 -692,4.0,1.0,-1.1359607881738778,4.772479328281356 -692,4.0,4.0,4.089980824135861,-12.190647245055052 -692,4.0,6.0,-2.954020035961983,7.449267916773697 -692,5.0,1.0,-1.6861448807654689,5.116477495334806 -692,5.0,3.0,-6.413123730174556,22.31120356548123 -692,5.0,5.0,22.341631269034565,-82.8291478657789 -692,5.0,6.0,-3.590210423980992,11.02611441072814 -692,5.0,7.0,-6.289308176100628,22.0125786163522 -692,5.0,8.0,0.0,4.915840805411357 -692,5.0,9.0,0.0,1.8561002591115965 -692,5.0,27.0,-4.362844058012917,15.463571542897856 -692,6.0,4.0,-2.954020035961983,7.449267916773697 -692,6.0,5.0,-3.590210423980992,11.02611441072814 -692,6.0,6.0,6.544230459942975,-18.45668232750184 -692,7.0,5.0,-6.289308176100628,22.0125786163522 -692,7.0,7.0,7.733287237496075,-26.527493274828448 -692,7.0,27.0,-1.4439790613954469,4.540814658476248 -692,8.0,5.0,0.0,4.915840805411357 -692,8.0,8.0,0.0,-18.706293706293707 -692,8.0,9.0,0.0,9.090909090909092 -692,8.0,10.0,0.0,4.807692307692308 -692,9.0,5.0,0.0,1.8561002591115965 -692,9.0,8.0,0.0,9.090909090909092 -692,9.0,9.0,13.462042814524237,-41.3837606675224 -692,9.0,16.0,-3.956039125715353,10.317447719844054 -692,9.0,19.0,-1.7848303152666305,3.98535828943083 -692,9.0,20.0,-5.101853820159654,10.98071411292983 -692,9.0,21.0,-2.619319553382597,5.400770303329455 -692,10.0,8.0,0.0,4.807692307692308 -692,10.0,10.0,0.0,-4.807692307692308 -692,11.0,3.0,0.0,4.191255364806866 -692,11.0,11.0,5.047393974936599,-21.25074238629525 -692,11.0,12.0,0.0,7.142857142857143 -692,11.0,14.0,-3.0953961826564296,6.097275864326261 -692,11.0,15.0,-1.9519977922801688,4.104359379111847 -692,12.0,11.0,0.0,7.142857142857143 -692,12.0,12.0,0.0,-7.142857142857143 -692,13.0,13.0,2.4909522639994623,-2.250874059369649 -692,13.0,14.0,-2.4909522639994623,2.250874059369649 -692,14.0,11.0,-3.0953961826564296,6.097275864326261 -692,14.0,13.0,-2.4909522639994623,2.250874059369649 -692,14.0,14.0,9.365498545964757,-16.01163373210796 -692,14.0,17.0,-1.8108011504072024,3.687418931630696 -692,14.0,22.0,-1.9683489489016612,3.976064876781356 -692,15.0,11.0,-1.9519977922801688,4.104359379111847 -692,15.0,15.0,3.271064728633931,-8.94513365126506 -692,15.0,16.0,-1.3190669363537617,4.8407742721532125 -692,16.0,9.0,-3.956039125715353,10.317447719844054 -692,16.0,15.0,-1.3190669363537617,4.8407742721532125 -692,16.0,16.0,5.275106062069114,-15.158221991997266 -692,17.0,14.0,-1.8108011504072024,3.687418931630696 -692,17.0,17.0,4.886487584415919,-9.906177730909668 -692,17.0,18.0,-3.0756864340087167,6.218758799278971 -692,18.0,17.0,-3.0756864340087167,6.218758799278971 -692,18.0,18.0,8.958039375185187,-17.98346468163191 -692,18.0,19.0,-5.88235294117647,11.76470588235294 -692,19.0,9.0,-1.7848303152666305,3.98535828943083 -692,19.0,18.0,-5.88235294117647,11.76470588235294 -692,19.0,19.0,7.6671832564431,-15.75006417178377 -692,20.0,9.0,-5.101853820159654,10.98071411292983 -692,20.0,20.0,21.876495189895888,-45.10843276170355 -692,20.0,21.0,-16.774641369736234,34.127718648773715 -692,21.0,9.0,-2.619319553382597,5.400770303329455 -692,21.0,20.0,-16.774641369736234,34.127718648773715 -692,21.0,21.0,21.93449907537439,-43.48289181517921 -692,21.0,23.0,-2.5405381522555563,3.95440286307604 -692,22.0,14.0,-1.9683489489016612,3.976064876781356 -692,22.0,22.0,3.429754555384988,-6.965303617315433 -692,22.0,23.0,-1.4614056064833263,2.989238740534077 -692,23.0,21.0,-2.5405381522555563,3.95440286307604 -692,23.0,22.0,-1.4614056064833263,2.989238740534077 -692,23.0,23.0,5.311836702613133,-9.188263657315172 -692,23.0,24.0,-1.3098929438742493,2.287622053705056 -692,24.0,23.0,-1.3098929438742493,2.287622053705056 -692,24.0,24.0,4.495715080321987,-7.864978761969621 -692,24.0,25.0,-1.2165301194494855,1.8171440463475024 -692,24.0,26.0,-1.9692920169982515,3.760212661917064 -692,25.0,24.0,-1.2165301194494855,1.8171440463475024 -692,25.0,25.0,1.2165301194494855,-1.8171440463475024 -692,26.0,24.0,-1.9692920169982515,3.760212661917064 -692,26.0,26.0,3.652281470778589,-9.46044252232512 -692,26.0,27.0,0.0,2.608731947574922 -692,26.0,28.0,-0.99553355095268,1.881005840357816 -692,26.0,29.0,-0.6874559028276572,1.293971494797717 -692,27.0,5.0,-4.362844058012917,15.463571542897856 -692,27.0,7.0,-1.4439790613954469,4.540814658476248 -692,27.0,26.0,0.0,2.608731947574922 -692,27.0,27.0,5.806823119408364,-22.67145722159613 -692,28.0,26.0,-0.99553355095268,1.881005840357816 -692,28.0,28.0,1.9075867579849564,-3.604364401207048 -692,28.0,29.0,-0.9120532070322764,1.7233585608492326 -692,29.0,26.0,-0.6874559028276572,1.293971494797717 -692,29.0,28.0,-0.9120532070322764,1.7233585608492326 -692,29.0,29.0,1.5995091098599337,-3.0173300556469496 -693,0.0,0.0,6.765516048652632,-21.23160167089863 -693,0.0,1.0,-5.224646179885656,15.646726840803398 -693,0.0,2.0,-1.5408698687669766,5.631674830095234 -693,1.0,0.0,-5.224646179885656,15.646726840803398 -693,1.0,1.0,9.75228216552403,-30.648662892676068 -693,1.0,3.0,-1.7055303166990268,5.1973792282565086 -693,1.0,4.0,-1.1359607881738778,4.772479328281356 -693,1.0,5.0,-1.6861448807654689,5.116477495334806 -693,2.0,0.0,-1.5408698687669766,5.631674830095234 -693,2.0,2.0,9.736318911079088,-29.13794745915803 -693,2.0,3.0,-8.19544904231211,23.5308726290628 -693,3.0,1.0,-1.7055303166990268,5.1973792282565086 -693,3.0,2.0,-8.19544904231211,23.5308726290628 -693,3.0,3.0,16.314103089185693,-55.509410535254254 -693,3.0,5.0,-6.413123730174556,22.31120356548123 -693,3.0,11.0,0.0,4.191255364806866 -693,4.0,1.0,-1.1359607881738778,4.772479328281356 -693,4.0,4.0,4.089980824135861,-12.190647245055052 -693,4.0,6.0,-2.954020035961983,7.449267916773697 -693,5.0,1.0,-1.6861448807654689,5.116477495334806 -693,5.0,3.0,-6.413123730174556,22.31120356548123 -693,5.0,5.0,22.341631269034565,-82.8291478657789 -693,5.0,6.0,-3.590210423980992,11.02611441072814 -693,5.0,7.0,-6.289308176100628,22.0125786163522 -693,5.0,8.0,0.0,4.915840805411357 -693,5.0,9.0,0.0,1.8561002591115965 -693,5.0,27.0,-4.362844058012917,15.463571542897856 -693,6.0,4.0,-2.954020035961983,7.449267916773697 -693,6.0,5.0,-3.590210423980992,11.02611441072814 -693,6.0,6.0,6.544230459942975,-18.45668232750184 -693,7.0,5.0,-6.289308176100628,22.0125786163522 -693,7.0,7.0,6.289308176100628,-22.0080786163522 -693,8.0,5.0,0.0,4.915840805411357 -693,8.0,8.0,0.0,-18.706293706293707 -693,8.0,9.0,0.0,9.090909090909092 -693,8.0,10.0,0.0,4.807692307692308 -693,9.0,5.0,0.0,1.8561002591115965 -693,9.0,8.0,0.0,9.090909090909092 -693,9.0,9.0,13.462042814524237,-41.3837606675224 -693,9.0,16.0,-3.956039125715353,10.317447719844054 -693,9.0,19.0,-1.7848303152666305,3.98535828943083 -693,9.0,20.0,-5.101853820159654,10.98071411292983 -693,9.0,21.0,-2.619319553382597,5.400770303329455 -693,10.0,8.0,0.0,4.807692307692308 -693,10.0,10.0,0.0,-4.807692307692308 -693,11.0,3.0,0.0,4.191255364806866 -693,11.0,11.0,6.573961583776156,-24.424167659260668 -693,11.0,12.0,0.0,7.142857142857143 -693,11.0,13.0,-1.5265676088395577,3.1734252729654173 -693,11.0,14.0,-3.0953961826564296,6.097275864326261 -693,11.0,15.0,-1.9519977922801688,4.104359379111847 -693,12.0,11.0,0.0,7.142857142857143 -693,12.0,12.0,0.0,-7.142857142857143 -693,13.0,11.0,-1.5265676088395577,3.1734252729654173 -693,13.0,13.0,4.01751987283902,-5.424299332335067 -693,13.0,14.0,-2.4909522639994623,2.250874059369649 -693,14.0,11.0,-3.0953961826564296,6.097275864326261 -693,14.0,13.0,-2.4909522639994623,2.250874059369649 -693,14.0,14.0,9.365498545964757,-16.01163373210796 -693,14.0,17.0,-1.8108011504072024,3.687418931630696 -693,14.0,22.0,-1.9683489489016612,3.976064876781356 -693,15.0,11.0,-1.9519977922801688,4.104359379111847 -693,15.0,15.0,3.271064728633931,-8.94513365126506 -693,15.0,16.0,-1.3190669363537617,4.8407742721532125 -693,16.0,9.0,-3.956039125715353,10.317447719844054 -693,16.0,15.0,-1.3190669363537617,4.8407742721532125 -693,16.0,16.0,5.275106062069114,-15.158221991997266 -693,17.0,14.0,-1.8108011504072024,3.687418931630696 -693,17.0,17.0,4.886487584415919,-9.906177730909668 -693,17.0,18.0,-3.0756864340087167,6.218758799278971 -693,18.0,17.0,-3.0756864340087167,6.218758799278971 -693,18.0,18.0,8.958039375185187,-17.98346468163191 -693,18.0,19.0,-5.88235294117647,11.76470588235294 -693,19.0,9.0,-1.7848303152666305,3.98535828943083 -693,19.0,18.0,-5.88235294117647,11.76470588235294 -693,19.0,19.0,7.6671832564431,-15.75006417178377 -693,20.0,9.0,-5.101853820159654,10.98071411292983 -693,20.0,20.0,21.876495189895888,-45.10843276170355 -693,20.0,21.0,-16.774641369736234,34.127718648773715 -693,21.0,9.0,-2.619319553382597,5.400770303329455 -693,21.0,20.0,-16.774641369736234,34.127718648773715 -693,21.0,21.0,21.93449907537439,-43.48289181517921 -693,21.0,23.0,-2.5405381522555563,3.95440286307604 -693,22.0,14.0,-1.9683489489016612,3.976064876781356 -693,22.0,22.0,3.429754555384988,-6.965303617315433 -693,22.0,23.0,-1.4614056064833263,2.989238740534077 -693,23.0,21.0,-2.5405381522555563,3.95440286307604 -693,23.0,22.0,-1.4614056064833263,2.989238740534077 -693,23.0,23.0,5.311836702613133,-9.188263657315172 -693,23.0,24.0,-1.3098929438742493,2.287622053705056 -693,24.0,23.0,-1.3098929438742493,2.287622053705056 -693,24.0,24.0,2.526423063323735,-4.104766100052558 -693,24.0,25.0,-1.2165301194494855,1.8171440463475024 -693,25.0,24.0,-1.2165301194494855,1.8171440463475024 -693,25.0,25.0,1.2165301194494855,-1.8171440463475024 -693,26.0,26.0,1.6829894537803372,-5.700229860408058 -693,26.0,27.0,0.0,2.608731947574922 -693,26.0,28.0,-0.99553355095268,1.881005840357816 -693,26.0,29.0,-0.6874559028276572,1.293971494797717 -693,27.0,5.0,-4.362844058012917,15.463571542897856 -693,27.0,26.0,0.0,2.608731947574922 -693,27.0,27.0,4.362844058012917,-18.15204256311988 -693,28.0,26.0,-0.99553355095268,1.881005840357816 -693,28.0,28.0,1.9075867579849564,-3.604364401207048 -693,28.0,29.0,-0.9120532070322764,1.7233585608492326 -693,29.0,26.0,-0.6874559028276572,1.293971494797717 -693,29.0,28.0,-0.9120532070322764,1.7233585608492326 -693,29.0,29.0,1.5995091098599337,-3.0173300556469496 -694,0.0,0.0,6.765516048652632,-21.23160167089863 -694,0.0,1.0,-5.224646179885656,15.646726840803398 -694,0.0,2.0,-1.5408698687669766,5.631674830095234 -694,1.0,0.0,-5.224646179885656,15.646726840803398 -694,1.0,1.0,9.75228216552403,-30.648662892676068 -694,1.0,3.0,-1.7055303166990268,5.1973792282565086 -694,1.0,4.0,-1.1359607881738778,4.772479328281356 -694,1.0,5.0,-1.6861448807654689,5.116477495334806 -694,2.0,0.0,-1.5408698687669766,5.631674830095234 -694,2.0,2.0,9.736318911079088,-29.13794745915803 -694,2.0,3.0,-8.19544904231211,23.5308726290628 -694,3.0,1.0,-1.7055303166990268,5.1973792282565086 -694,3.0,2.0,-8.19544904231211,23.5308726290628 -694,3.0,3.0,16.314103089185693,-55.509410535254254 -694,3.0,5.0,-6.413123730174556,22.31120356548123 -694,3.0,11.0,0.0,4.191255364806866 -694,4.0,1.0,-1.1359607881738778,4.772479328281356 -694,4.0,4.0,4.089980824135861,-12.190647245055052 -694,4.0,6.0,-2.954020035961983,7.449267916773697 -694,5.0,1.0,-1.6861448807654689,5.116477495334806 -694,5.0,3.0,-6.413123730174556,22.31120356548123 -694,5.0,5.0,22.341631269034565,-82.8291478657789 -694,5.0,6.0,-3.590210423980992,11.02611441072814 -694,5.0,7.0,-6.289308176100628,22.0125786163522 -694,5.0,8.0,0.0,4.915840805411357 -694,5.0,9.0,0.0,1.8561002591115965 -694,5.0,27.0,-4.362844058012917,15.463571542897856 -694,6.0,4.0,-2.954020035961983,7.449267916773697 -694,6.0,5.0,-3.590210423980992,11.02611441072814 -694,6.0,6.0,6.544230459942975,-18.45668232750184 -694,7.0,5.0,-6.289308176100628,22.0125786163522 -694,7.0,7.0,7.733287237496075,-26.527493274828448 -694,7.0,27.0,-1.4439790613954469,4.540814658476248 -694,8.0,5.0,0.0,4.915840805411357 -694,8.0,8.0,0.0,-18.706293706293707 -694,8.0,9.0,0.0,9.090909090909092 -694,8.0,10.0,0.0,4.807692307692308 -694,9.0,5.0,0.0,1.8561002591115965 -694,9.0,8.0,0.0,9.090909090909092 -694,9.0,9.0,13.462042814524237,-41.3837606675224 -694,9.0,16.0,-3.956039125715353,10.317447719844054 -694,9.0,19.0,-1.7848303152666305,3.98535828943083 -694,9.0,20.0,-5.101853820159654,10.98071411292983 -694,9.0,21.0,-2.619319553382597,5.400770303329455 -694,10.0,8.0,0.0,4.807692307692308 -694,10.0,10.0,0.0,-4.807692307692308 -694,11.0,3.0,0.0,4.191255364806866 -694,11.0,11.0,6.573961583776156,-24.424167659260668 -694,11.0,12.0,0.0,7.142857142857143 -694,11.0,13.0,-1.5265676088395577,3.1734252729654173 -694,11.0,14.0,-3.0953961826564296,6.097275864326261 -694,11.0,15.0,-1.9519977922801688,4.104359379111847 -694,12.0,11.0,0.0,7.142857142857143 -694,12.0,12.0,0.0,-7.142857142857143 -694,13.0,11.0,-1.5265676088395577,3.1734252729654173 -694,13.0,13.0,4.01751987283902,-5.424299332335067 -694,13.0,14.0,-2.4909522639994623,2.250874059369649 -694,14.0,11.0,-3.0953961826564296,6.097275864326261 -694,14.0,13.0,-2.4909522639994623,2.250874059369649 -694,14.0,14.0,9.365498545964757,-16.01163373210796 -694,14.0,17.0,-1.8108011504072024,3.687418931630696 -694,14.0,22.0,-1.9683489489016612,3.976064876781356 -694,15.0,11.0,-1.9519977922801688,4.104359379111847 -694,15.0,15.0,3.271064728633931,-8.94513365126506 -694,15.0,16.0,-1.3190669363537617,4.8407742721532125 -694,16.0,9.0,-3.956039125715353,10.317447719844054 -694,16.0,15.0,-1.3190669363537617,4.8407742721532125 -694,16.0,16.0,5.275106062069114,-15.158221991997266 -694,17.0,14.0,-1.8108011504072024,3.687418931630696 -694,17.0,17.0,4.886487584415919,-9.906177730909668 -694,17.0,18.0,-3.0756864340087167,6.218758799278971 -694,18.0,17.0,-3.0756864340087167,6.218758799278971 -694,18.0,18.0,8.958039375185187,-17.98346468163191 -694,18.0,19.0,-5.88235294117647,11.76470588235294 -694,19.0,9.0,-1.7848303152666305,3.98535828943083 -694,19.0,18.0,-5.88235294117647,11.76470588235294 -694,19.0,19.0,7.6671832564431,-15.75006417178377 -694,20.0,9.0,-5.101853820159654,10.98071411292983 -694,20.0,20.0,21.876495189895888,-45.10843276170355 -694,20.0,21.0,-16.774641369736234,34.127718648773715 -694,21.0,9.0,-2.619319553382597,5.400770303329455 -694,21.0,20.0,-16.774641369736234,34.127718648773715 -694,21.0,21.0,21.93449907537439,-43.48289181517921 -694,21.0,23.0,-2.5405381522555563,3.95440286307604 -694,22.0,14.0,-1.9683489489016612,3.976064876781356 -694,22.0,22.0,3.429754555384988,-6.965303617315433 -694,22.0,23.0,-1.4614056064833263,2.989238740534077 -694,23.0,21.0,-2.5405381522555563,3.95440286307604 -694,23.0,22.0,-1.4614056064833263,2.989238740534077 -694,23.0,23.0,5.311836702613133,-9.188263657315172 -694,23.0,24.0,-1.3098929438742493,2.287622053705056 -694,24.0,23.0,-1.3098929438742493,2.287622053705056 -694,24.0,24.0,4.495715080321987,-7.864978761969621 -694,24.0,25.0,-1.2165301194494855,1.8171440463475024 -694,24.0,26.0,-1.9692920169982515,3.760212661917064 -694,25.0,24.0,-1.2165301194494855,1.8171440463475024 -694,25.0,25.0,1.2165301194494855,-1.8171440463475024 -694,26.0,24.0,-1.9692920169982515,3.760212661917064 -694,26.0,26.0,3.652281470778589,-9.46044252232512 -694,26.0,27.0,0.0,2.608731947574922 -694,26.0,28.0,-0.99553355095268,1.881005840357816 -694,26.0,29.0,-0.6874559028276572,1.293971494797717 -694,27.0,5.0,-4.362844058012917,15.463571542897856 -694,27.0,7.0,-1.4439790613954469,4.540814658476248 -694,27.0,26.0,0.0,2.608731947574922 -694,27.0,27.0,5.806823119408364,-22.67145722159613 -694,28.0,26.0,-0.99553355095268,1.881005840357816 -694,28.0,28.0,1.9075867579849564,-3.604364401207048 -694,28.0,29.0,-0.9120532070322764,1.7233585608492326 -694,29.0,26.0,-0.6874559028276572,1.293971494797717 -694,29.0,28.0,-0.9120532070322764,1.7233585608492326 -694,29.0,29.0,1.5995091098599337,-3.0173300556469496 -695,0.0,0.0,6.765516048652632,-21.23160167089863 -695,0.0,1.0,-5.224646179885656,15.646726840803398 -695,0.0,2.0,-1.5408698687669766,5.631674830095234 -695,1.0,0.0,-5.224646179885656,15.646726840803398 -695,1.0,1.0,9.75228216552403,-30.648662892676068 -695,1.0,3.0,-1.7055303166990268,5.1973792282565086 -695,1.0,4.0,-1.1359607881738778,4.772479328281356 -695,1.0,5.0,-1.6861448807654689,5.116477495334806 -695,2.0,0.0,-1.5408698687669766,5.631674830095234 -695,2.0,2.0,9.736318911079088,-29.13794745915803 -695,2.0,3.0,-8.19544904231211,23.5308726290628 -695,3.0,1.0,-1.7055303166990268,5.1973792282565086 -695,3.0,2.0,-8.19544904231211,23.5308726290628 -695,3.0,3.0,16.314103089185693,-51.01235542280054 -695,3.0,5.0,-6.413123730174556,22.31120356548123 -695,4.0,1.0,-1.1359607881738778,4.772479328281356 -695,4.0,4.0,4.089980824135861,-12.190647245055052 -695,4.0,6.0,-2.954020035961983,7.449267916773697 -695,5.0,1.0,-1.6861448807654689,5.116477495334806 -695,5.0,3.0,-6.413123730174556,22.31120356548123 -695,5.0,5.0,22.341631269034565,-82.8291478657789 -695,5.0,6.0,-3.590210423980992,11.02611441072814 -695,5.0,7.0,-6.289308176100628,22.0125786163522 -695,5.0,8.0,0.0,4.915840805411357 -695,5.0,9.0,0.0,1.8561002591115965 -695,5.0,27.0,-4.362844058012917,15.463571542897856 -695,6.0,4.0,-2.954020035961983,7.449267916773697 -695,6.0,5.0,-3.590210423980992,11.02611441072814 -695,6.0,6.0,6.544230459942975,-18.45668232750184 -695,7.0,5.0,-6.289308176100628,22.0125786163522 -695,7.0,7.0,7.733287237496075,-26.527493274828448 -695,7.0,27.0,-1.4439790613954469,4.540814658476248 -695,8.0,5.0,0.0,4.915840805411357 -695,8.0,8.0,0.0,-18.706293706293707 -695,8.0,9.0,0.0,9.090909090909092 -695,8.0,10.0,0.0,4.807692307692308 -695,9.0,5.0,0.0,1.8561002591115965 -695,9.0,8.0,0.0,9.090909090909092 -695,9.0,9.0,13.462042814524237,-41.3837606675224 -695,9.0,16.0,-3.956039125715353,10.317447719844054 -695,9.0,19.0,-1.7848303152666305,3.98535828943083 -695,9.0,20.0,-5.101853820159654,10.98071411292983 -695,9.0,21.0,-2.619319553382597,5.400770303329455 -695,10.0,8.0,0.0,4.807692307692308 -695,10.0,10.0,0.0,-4.807692307692308 -695,11.0,11.0,6.573961583776156,-20.517917659260668 -695,11.0,12.0,0.0,7.142857142857143 -695,11.0,13.0,-1.5265676088395577,3.1734252729654173 -695,11.0,14.0,-3.0953961826564296,6.097275864326261 -695,11.0,15.0,-1.9519977922801688,4.104359379111847 -695,12.0,11.0,0.0,7.142857142857143 -695,12.0,12.0,0.0,-7.142857142857143 -695,13.0,11.0,-1.5265676088395577,3.1734252729654173 -695,13.0,13.0,4.01751987283902,-5.424299332335067 -695,13.0,14.0,-2.4909522639994623,2.250874059369649 -695,14.0,11.0,-3.0953961826564296,6.097275864326261 -695,14.0,13.0,-2.4909522639994623,2.250874059369649 -695,14.0,14.0,9.365498545964757,-16.01163373210796 -695,14.0,17.0,-1.8108011504072024,3.687418931630696 -695,14.0,22.0,-1.9683489489016612,3.976064876781356 -695,15.0,11.0,-1.9519977922801688,4.104359379111847 -695,15.0,15.0,3.271064728633931,-8.94513365126506 -695,15.0,16.0,-1.3190669363537617,4.8407742721532125 -695,16.0,9.0,-3.956039125715353,10.317447719844054 -695,16.0,15.0,-1.3190669363537617,4.8407742721532125 -695,16.0,16.0,5.275106062069114,-15.158221991997266 -695,17.0,14.0,-1.8108011504072024,3.687418931630696 -695,17.0,17.0,4.886487584415919,-9.906177730909668 -695,17.0,18.0,-3.0756864340087167,6.218758799278971 -695,18.0,17.0,-3.0756864340087167,6.218758799278971 -695,18.0,18.0,8.958039375185187,-17.98346468163191 -695,18.0,19.0,-5.88235294117647,11.76470588235294 -695,19.0,9.0,-1.7848303152666305,3.98535828943083 -695,19.0,18.0,-5.88235294117647,11.76470588235294 -695,19.0,19.0,7.6671832564431,-15.75006417178377 -695,20.0,9.0,-5.101853820159654,10.98071411292983 -695,20.0,20.0,21.876495189895888,-45.10843276170355 -695,20.0,21.0,-16.774641369736234,34.127718648773715 -695,21.0,9.0,-2.619319553382597,5.400770303329455 -695,21.0,20.0,-16.774641369736234,34.127718648773715 -695,21.0,21.0,21.93449907537439,-43.48289181517921 -695,21.0,23.0,-2.5405381522555563,3.95440286307604 -695,22.0,14.0,-1.9683489489016612,3.976064876781356 -695,22.0,22.0,3.429754555384988,-6.965303617315433 -695,22.0,23.0,-1.4614056064833263,2.989238740534077 -695,23.0,21.0,-2.5405381522555563,3.95440286307604 -695,23.0,22.0,-1.4614056064833263,2.989238740534077 -695,23.0,23.0,5.311836702613133,-9.188263657315172 -695,23.0,24.0,-1.3098929438742493,2.287622053705056 -695,24.0,23.0,-1.3098929438742493,2.287622053705056 -695,24.0,24.0,4.495715080321987,-7.864978761969621 -695,24.0,25.0,-1.2165301194494855,1.8171440463475024 -695,24.0,26.0,-1.9692920169982515,3.760212661917064 -695,25.0,24.0,-1.2165301194494855,1.8171440463475024 -695,25.0,25.0,1.2165301194494855,-1.8171440463475024 -695,26.0,24.0,-1.9692920169982515,3.760212661917064 -695,26.0,26.0,3.652281470778589,-9.46044252232512 -695,26.0,27.0,0.0,2.608731947574922 -695,26.0,28.0,-0.99553355095268,1.881005840357816 -695,26.0,29.0,-0.6874559028276572,1.293971494797717 -695,27.0,5.0,-4.362844058012917,15.463571542897856 -695,27.0,7.0,-1.4439790613954469,4.540814658476248 -695,27.0,26.0,0.0,2.608731947574922 -695,27.0,27.0,5.806823119408364,-22.67145722159613 -695,28.0,26.0,-0.99553355095268,1.881005840357816 -695,28.0,28.0,1.9075867579849564,-3.604364401207048 -695,28.0,29.0,-0.9120532070322764,1.7233585608492326 -695,29.0,26.0,-0.6874559028276572,1.293971494797717 -695,29.0,28.0,-0.9120532070322764,1.7233585608492326 -695,29.0,29.0,1.5995091098599337,-3.0173300556469496 -696,0.0,0.0,6.765516048652632,-21.23160167089863 -696,0.0,1.0,-5.224646179885656,15.646726840803398 -696,0.0,2.0,-1.5408698687669766,5.631674830095234 -696,1.0,0.0,-5.224646179885656,15.646726840803398 -696,1.0,1.0,9.75228216552403,-30.648662892676068 -696,1.0,3.0,-1.7055303166990268,5.1973792282565086 -696,1.0,4.0,-1.1359607881738778,4.772479328281356 -696,1.0,5.0,-1.6861448807654689,5.116477495334806 -696,2.0,0.0,-1.5408698687669766,5.631674830095234 -696,2.0,2.0,1.5408698687669766,-5.611274830095233 -696,3.0,1.0,-1.7055303166990268,5.1973792282565086 -696,3.0,3.0,8.118654046873583,-31.982737906191456 -696,3.0,5.0,-6.413123730174556,22.31120356548123 -696,3.0,11.0,0.0,4.191255364806866 -696,4.0,1.0,-1.1359607881738778,4.772479328281356 -696,4.0,4.0,4.089980824135861,-12.190647245055052 -696,4.0,6.0,-2.954020035961983,7.449267916773697 -696,5.0,1.0,-1.6861448807654689,5.116477495334806 -696,5.0,3.0,-6.413123730174556,22.31120356548123 -696,5.0,5.0,22.341631269034565,-82.8291478657789 -696,5.0,6.0,-3.590210423980992,11.02611441072814 -696,5.0,7.0,-6.289308176100628,22.0125786163522 -696,5.0,8.0,0.0,4.915840805411357 -696,5.0,9.0,0.0,1.8561002591115965 -696,5.0,27.0,-4.362844058012917,15.463571542897856 -696,6.0,4.0,-2.954020035961983,7.449267916773697 -696,6.0,5.0,-3.590210423980992,11.02611441072814 -696,6.0,6.0,6.544230459942975,-18.45668232750184 -696,7.0,5.0,-6.289308176100628,22.0125786163522 -696,7.0,7.0,7.733287237496075,-26.527493274828448 -696,7.0,27.0,-1.4439790613954469,4.540814658476248 -696,8.0,5.0,0.0,4.915840805411357 -696,8.0,8.0,0.0,-18.706293706293707 -696,8.0,9.0,0.0,9.090909090909092 -696,8.0,10.0,0.0,4.807692307692308 -696,9.0,5.0,0.0,1.8561002591115965 -696,9.0,8.0,0.0,9.090909090909092 -696,9.0,9.0,13.462042814524237,-41.3837606675224 -696,9.0,16.0,-3.956039125715353,10.317447719844054 -696,9.0,19.0,-1.7848303152666305,3.98535828943083 -696,9.0,20.0,-5.101853820159654,10.98071411292983 -696,9.0,21.0,-2.619319553382597,5.400770303329455 -696,10.0,8.0,0.0,4.807692307692308 -696,10.0,10.0,0.0,-4.807692307692308 -696,11.0,3.0,0.0,4.191255364806866 -696,11.0,11.0,6.573961583776156,-24.424167659260668 -696,11.0,12.0,0.0,7.142857142857143 -696,11.0,13.0,-1.5265676088395577,3.1734252729654173 -696,11.0,14.0,-3.0953961826564296,6.097275864326261 -696,11.0,15.0,-1.9519977922801688,4.104359379111847 -696,12.0,11.0,0.0,7.142857142857143 -696,12.0,12.0,0.0,-7.142857142857143 -696,13.0,11.0,-1.5265676088395577,3.1734252729654173 -696,13.0,13.0,4.01751987283902,-5.424299332335067 -696,13.0,14.0,-2.4909522639994623,2.250874059369649 -696,14.0,11.0,-3.0953961826564296,6.097275864326261 -696,14.0,13.0,-2.4909522639994623,2.250874059369649 -696,14.0,14.0,9.365498545964757,-16.01163373210796 -696,14.0,17.0,-1.8108011504072024,3.687418931630696 -696,14.0,22.0,-1.9683489489016612,3.976064876781356 -696,15.0,11.0,-1.9519977922801688,4.104359379111847 -696,15.0,15.0,3.271064728633931,-8.94513365126506 -696,15.0,16.0,-1.3190669363537617,4.8407742721532125 -696,16.0,9.0,-3.956039125715353,10.317447719844054 -696,16.0,15.0,-1.3190669363537617,4.8407742721532125 -696,16.0,16.0,5.275106062069114,-15.158221991997266 -696,17.0,14.0,-1.8108011504072024,3.687418931630696 -696,17.0,17.0,1.8108011504072024,-3.687418931630696 -696,18.0,18.0,5.88235294117647,-11.76470588235294 -696,18.0,19.0,-5.88235294117647,11.76470588235294 -696,19.0,9.0,-1.7848303152666305,3.98535828943083 -696,19.0,18.0,-5.88235294117647,11.76470588235294 -696,19.0,19.0,7.6671832564431,-15.75006417178377 -696,20.0,9.0,-5.101853820159654,10.98071411292983 -696,20.0,20.0,21.876495189895888,-45.10843276170355 -696,20.0,21.0,-16.774641369736234,34.127718648773715 -696,21.0,9.0,-2.619319553382597,5.400770303329455 -696,21.0,20.0,-16.774641369736234,34.127718648773715 -696,21.0,21.0,21.93449907537439,-43.48289181517921 -696,21.0,23.0,-2.5405381522555563,3.95440286307604 -696,22.0,14.0,-1.9683489489016612,3.976064876781356 -696,22.0,22.0,3.429754555384988,-6.965303617315433 -696,22.0,23.0,-1.4614056064833263,2.989238740534077 -696,23.0,21.0,-2.5405381522555563,3.95440286307604 -696,23.0,22.0,-1.4614056064833263,2.989238740534077 -696,23.0,23.0,5.311836702613133,-9.188263657315172 -696,23.0,24.0,-1.3098929438742493,2.287622053705056 -696,24.0,23.0,-1.3098929438742493,2.287622053705056 -696,24.0,24.0,4.495715080321987,-7.864978761969621 -696,24.0,25.0,-1.2165301194494855,1.8171440463475024 -696,24.0,26.0,-1.9692920169982515,3.760212661917064 -696,25.0,24.0,-1.2165301194494855,1.8171440463475024 -696,25.0,25.0,1.2165301194494855,-1.8171440463475024 -696,26.0,24.0,-1.9692920169982515,3.760212661917064 -696,26.0,26.0,3.652281470778589,-9.46044252232512 -696,26.0,27.0,0.0,2.608731947574922 -696,26.0,28.0,-0.99553355095268,1.881005840357816 -696,26.0,29.0,-0.6874559028276572,1.293971494797717 -696,27.0,5.0,-4.362844058012917,15.463571542897856 -696,27.0,7.0,-1.4439790613954469,4.540814658476248 -696,27.0,26.0,0.0,2.608731947574922 -696,27.0,27.0,5.806823119408364,-22.67145722159613 -696,28.0,26.0,-0.99553355095268,1.881005840357816 -696,28.0,28.0,0.99553355095268,-1.881005840357816 -696,29.0,26.0,-0.6874559028276572,1.293971494797717 -696,29.0,29.0,0.6874559028276572,-1.293971494797717 -697,0.0,0.0,6.765516048652632,-21.23160167089863 -697,0.0,1.0,-5.224646179885656,15.646726840803398 -697,0.0,2.0,-1.5408698687669766,5.631674830095234 -697,1.0,0.0,-5.224646179885656,15.646726840803398 -697,1.0,1.0,9.75228216552403,-30.648662892676068 -697,1.0,3.0,-1.7055303166990268,5.1973792282565086 -697,1.0,4.0,-1.1359607881738778,4.772479328281356 -697,1.0,5.0,-1.6861448807654689,5.116477495334806 -697,2.0,0.0,-1.5408698687669766,5.631674830095234 -697,2.0,2.0,9.736318911079088,-29.13794745915803 -697,2.0,3.0,-8.19544904231211,23.5308726290628 -697,3.0,1.0,-1.7055303166990268,5.1973792282565086 -697,3.0,2.0,-8.19544904231211,23.5308726290628 -697,3.0,3.0,16.314103089185693,-55.509410535254254 -697,3.0,5.0,-6.413123730174556,22.31120356548123 -697,3.0,11.0,0.0,4.191255364806866 -697,4.0,1.0,-1.1359607881738778,4.772479328281356 -697,4.0,4.0,4.089980824135861,-12.190647245055052 -697,4.0,6.0,-2.954020035961983,7.449267916773697 -697,5.0,1.0,-1.6861448807654689,5.116477495334806 -697,5.0,3.0,-6.413123730174556,22.31120356548123 -697,5.0,5.0,22.341631269034565,-82.8291478657789 -697,5.0,6.0,-3.590210423980992,11.02611441072814 -697,5.0,7.0,-6.289308176100628,22.0125786163522 -697,5.0,8.0,0.0,4.915840805411357 -697,5.0,9.0,0.0,1.8561002591115965 -697,5.0,27.0,-4.362844058012917,15.463571542897856 -697,6.0,4.0,-2.954020035961983,7.449267916773697 -697,6.0,5.0,-3.590210423980992,11.02611441072814 -697,6.0,6.0,6.544230459942975,-18.45668232750184 -697,7.0,5.0,-6.289308176100628,22.0125786163522 -697,7.0,7.0,7.733287237496075,-26.527493274828448 -697,7.0,27.0,-1.4439790613954469,4.540814658476248 -697,8.0,5.0,0.0,4.915840805411357 -697,8.0,8.0,0.0,-18.706293706293707 -697,8.0,9.0,0.0,9.090909090909092 -697,8.0,10.0,0.0,4.807692307692308 -697,9.0,5.0,0.0,1.8561002591115965 -697,9.0,8.0,0.0,9.090909090909092 -697,9.0,9.0,13.462042814524237,-41.3837606675224 -697,9.0,16.0,-3.956039125715353,10.317447719844054 -697,9.0,19.0,-1.7848303152666305,3.98535828943083 -697,9.0,20.0,-5.101853820159654,10.98071411292983 -697,9.0,21.0,-2.619319553382597,5.400770303329455 -697,10.0,8.0,0.0,4.807692307692308 -697,10.0,10.0,0.0,-4.807692307692308 -697,11.0,3.0,0.0,4.191255364806866 -697,11.0,11.0,6.573961583776156,-24.424167659260668 -697,11.0,12.0,0.0,7.142857142857143 -697,11.0,13.0,-1.5265676088395577,3.1734252729654173 -697,11.0,14.0,-3.0953961826564296,6.097275864326261 -697,11.0,15.0,-1.9519977922801688,4.104359379111847 -697,12.0,11.0,0.0,7.142857142857143 -697,12.0,12.0,0.0,-7.142857142857143 -697,13.0,11.0,-1.5265676088395577,3.1734252729654173 -697,13.0,13.0,4.01751987283902,-5.424299332335067 -697,13.0,14.0,-2.4909522639994623,2.250874059369649 -697,14.0,11.0,-3.0953961826564296,6.097275864326261 -697,14.0,13.0,-2.4909522639994623,2.250874059369649 -697,14.0,14.0,9.365498545964757,-16.01163373210796 -697,14.0,17.0,-1.8108011504072024,3.687418931630696 -697,14.0,22.0,-1.9683489489016612,3.976064876781356 -697,15.0,11.0,-1.9519977922801688,4.104359379111847 -697,15.0,15.0,3.271064728633931,-8.94513365126506 -697,15.0,16.0,-1.3190669363537617,4.8407742721532125 -697,16.0,9.0,-3.956039125715353,10.317447719844054 -697,16.0,15.0,-1.3190669363537617,4.8407742721532125 -697,16.0,16.0,5.275106062069114,-15.158221991997266 -697,17.0,14.0,-1.8108011504072024,3.687418931630696 -697,17.0,17.0,4.886487584415919,-9.906177730909668 -697,17.0,18.0,-3.0756864340087167,6.218758799278971 -697,18.0,17.0,-3.0756864340087167,6.218758799278971 -697,18.0,18.0,8.958039375185187,-17.98346468163191 -697,18.0,19.0,-5.88235294117647,11.76470588235294 -697,19.0,9.0,-1.7848303152666305,3.98535828943083 -697,19.0,18.0,-5.88235294117647,11.76470588235294 -697,19.0,19.0,7.6671832564431,-15.75006417178377 -697,20.0,9.0,-5.101853820159654,10.98071411292983 -697,20.0,20.0,21.876495189895888,-45.10843276170355 -697,20.0,21.0,-16.774641369736234,34.127718648773715 -697,21.0,9.0,-2.619319553382597,5.400770303329455 -697,21.0,20.0,-16.774641369736234,34.127718648773715 -697,21.0,21.0,21.93449907537439,-43.48289181517921 -697,21.0,23.0,-2.5405381522555563,3.95440286307604 -697,22.0,14.0,-1.9683489489016612,3.976064876781356 -697,22.0,22.0,3.429754555384988,-6.965303617315433 -697,22.0,23.0,-1.4614056064833263,2.989238740534077 -697,23.0,21.0,-2.5405381522555563,3.95440286307604 -697,23.0,22.0,-1.4614056064833263,2.989238740534077 -697,23.0,23.0,5.311836702613133,-9.188263657315172 -697,23.0,24.0,-1.3098929438742493,2.287622053705056 -697,24.0,23.0,-1.3098929438742493,2.287622053705056 -697,24.0,24.0,4.495715080321987,-7.864978761969621 -697,24.0,25.0,-1.2165301194494855,1.8171440463475024 -697,24.0,26.0,-1.9692920169982515,3.760212661917064 -697,25.0,24.0,-1.2165301194494855,1.8171440463475024 -697,25.0,25.0,1.2165301194494855,-1.8171440463475024 -697,26.0,24.0,-1.9692920169982515,3.760212661917064 -697,26.0,26.0,3.652281470778589,-9.46044252232512 -697,26.0,27.0,0.0,2.608731947574922 -697,26.0,28.0,-0.99553355095268,1.881005840357816 -697,26.0,29.0,-0.6874559028276572,1.293971494797717 -697,27.0,5.0,-4.362844058012917,15.463571542897856 -697,27.0,7.0,-1.4439790613954469,4.540814658476248 -697,27.0,26.0,0.0,2.608731947574922 -697,27.0,27.0,5.806823119408364,-22.67145722159613 -697,28.0,26.0,-0.99553355095268,1.881005840357816 -697,28.0,28.0,1.9075867579849564,-3.604364401207048 -697,28.0,29.0,-0.9120532070322764,1.7233585608492326 -697,29.0,26.0,-0.6874559028276572,1.293971494797717 -697,29.0,28.0,-0.9120532070322764,1.7233585608492326 -697,29.0,29.0,1.5995091098599337,-3.0173300556469496 -698,0.0,0.0,6.765516048652632,-21.23160167089863 -698,0.0,1.0,-5.224646179885656,15.646726840803398 -698,0.0,2.0,-1.5408698687669766,5.631674830095234 -698,1.0,0.0,-5.224646179885656,15.646726840803398 -698,1.0,1.0,9.75228216552403,-30.648662892676068 -698,1.0,3.0,-1.7055303166990268,5.1973792282565086 -698,1.0,4.0,-1.1359607881738778,4.772479328281356 -698,1.0,5.0,-1.6861448807654689,5.116477495334806 -698,2.0,0.0,-1.5408698687669766,5.631674830095234 -698,2.0,2.0,9.736318911079088,-29.13794745915803 -698,2.0,3.0,-8.19544904231211,23.5308726290628 -698,3.0,1.0,-1.7055303166990268,5.1973792282565086 -698,3.0,2.0,-8.19544904231211,23.5308726290628 -698,3.0,3.0,16.314103089185693,-55.509410535254254 -698,3.0,5.0,-6.413123730174556,22.31120356548123 -698,3.0,11.0,0.0,4.191255364806866 -698,4.0,1.0,-1.1359607881738778,4.772479328281356 -698,4.0,4.0,4.089980824135861,-12.190647245055052 -698,4.0,6.0,-2.954020035961983,7.449267916773697 -698,5.0,1.0,-1.6861448807654689,5.116477495334806 -698,5.0,3.0,-6.413123730174556,22.31120356548123 -698,5.0,5.0,22.341631269034565,-82.8291478657789 -698,5.0,6.0,-3.590210423980992,11.02611441072814 -698,5.0,7.0,-6.289308176100628,22.0125786163522 -698,5.0,8.0,0.0,4.915840805411357 -698,5.0,9.0,0.0,1.8561002591115965 -698,5.0,27.0,-4.362844058012917,15.463571542897856 -698,6.0,4.0,-2.954020035961983,7.449267916773697 -698,6.0,5.0,-3.590210423980992,11.02611441072814 -698,6.0,6.0,6.544230459942975,-18.45668232750184 -698,7.0,5.0,-6.289308176100628,22.0125786163522 -698,7.0,7.0,7.733287237496075,-26.527493274828448 -698,7.0,27.0,-1.4439790613954469,4.540814658476248 -698,8.0,5.0,0.0,4.915840805411357 -698,8.0,8.0,0.0,-18.706293706293707 -698,8.0,9.0,0.0,9.090909090909092 -698,8.0,10.0,0.0,4.807692307692308 -698,9.0,5.0,0.0,1.8561002591115965 -698,9.0,8.0,0.0,9.090909090909092 -698,9.0,9.0,13.462042814524237,-41.3837606675224 -698,9.0,16.0,-3.956039125715353,10.317447719844054 -698,9.0,19.0,-1.7848303152666305,3.98535828943083 -698,9.0,20.0,-5.101853820159654,10.98071411292983 -698,9.0,21.0,-2.619319553382597,5.400770303329455 -698,10.0,8.0,0.0,4.807692307692308 -698,10.0,10.0,0.0,-4.807692307692308 -698,11.0,3.0,0.0,4.191255364806866 -698,11.0,11.0,6.573961583776156,-24.424167659260668 -698,11.0,12.0,0.0,7.142857142857143 -698,11.0,13.0,-1.5265676088395577,3.1734252729654173 -698,11.0,14.0,-3.0953961826564296,6.097275864326261 -698,11.0,15.0,-1.9519977922801688,4.104359379111847 -698,12.0,11.0,0.0,7.142857142857143 -698,12.0,12.0,0.0,-7.142857142857143 -698,13.0,11.0,-1.5265676088395577,3.1734252729654173 -698,13.0,13.0,4.01751987283902,-5.424299332335067 -698,13.0,14.0,-2.4909522639994623,2.250874059369649 -698,14.0,11.0,-3.0953961826564296,6.097275864326261 -698,14.0,13.0,-2.4909522639994623,2.250874059369649 -698,14.0,14.0,9.365498545964757,-16.01163373210796 -698,14.0,17.0,-1.8108011504072024,3.687418931630696 -698,14.0,22.0,-1.9683489489016612,3.976064876781356 -698,15.0,11.0,-1.9519977922801688,4.104359379111847 -698,15.0,15.0,3.271064728633931,-8.94513365126506 -698,15.0,16.0,-1.3190669363537617,4.8407742721532125 -698,16.0,9.0,-3.956039125715353,10.317447719844054 -698,16.0,15.0,-1.3190669363537617,4.8407742721532125 -698,16.0,16.0,5.275106062069114,-15.158221991997266 -698,17.0,14.0,-1.8108011504072024,3.687418931630696 -698,17.0,17.0,4.886487584415919,-9.906177730909668 -698,17.0,18.0,-3.0756864340087167,6.218758799278971 -698,18.0,17.0,-3.0756864340087167,6.218758799278971 -698,18.0,18.0,8.958039375185187,-17.98346468163191 -698,18.0,19.0,-5.88235294117647,11.76470588235294 -698,19.0,9.0,-1.7848303152666305,3.98535828943083 -698,19.0,18.0,-5.88235294117647,11.76470588235294 -698,19.0,19.0,7.6671832564431,-15.75006417178377 -698,20.0,9.0,-5.101853820159654,10.98071411292983 -698,20.0,20.0,21.876495189895888,-45.10843276170355 -698,20.0,21.0,-16.774641369736234,34.127718648773715 -698,21.0,9.0,-2.619319553382597,5.400770303329455 -698,21.0,20.0,-16.774641369736234,34.127718648773715 -698,21.0,21.0,21.93449907537439,-43.48289181517921 -698,21.0,23.0,-2.5405381522555563,3.95440286307604 -698,22.0,14.0,-1.9683489489016612,3.976064876781356 -698,22.0,22.0,3.429754555384988,-6.965303617315433 -698,22.0,23.0,-1.4614056064833263,2.989238740534077 -698,23.0,21.0,-2.5405381522555563,3.95440286307604 -698,23.0,22.0,-1.4614056064833263,2.989238740534077 -698,23.0,23.0,5.311836702613133,-9.188263657315172 -698,23.0,24.0,-1.3098929438742493,2.287622053705056 -698,24.0,23.0,-1.3098929438742493,2.287622053705056 -698,24.0,24.0,4.495715080321987,-7.864978761969621 -698,24.0,25.0,-1.2165301194494855,1.8171440463475024 -698,24.0,26.0,-1.9692920169982515,3.760212661917064 -698,25.0,24.0,-1.2165301194494855,1.8171440463475024 -698,25.0,25.0,1.2165301194494855,-1.8171440463475024 -698,26.0,24.0,-1.9692920169982515,3.760212661917064 -698,26.0,26.0,3.652281470778589,-9.46044252232512 -698,26.0,27.0,0.0,2.608731947574922 -698,26.0,28.0,-0.99553355095268,1.881005840357816 -698,26.0,29.0,-0.6874559028276572,1.293971494797717 -698,27.0,5.0,-4.362844058012917,15.463571542897856 -698,27.0,7.0,-1.4439790613954469,4.540814658476248 -698,27.0,26.0,0.0,2.608731947574922 -698,27.0,27.0,5.806823119408364,-22.67145722159613 -698,28.0,26.0,-0.99553355095268,1.881005840357816 -698,28.0,28.0,1.9075867579849564,-3.604364401207048 -698,28.0,29.0,-0.9120532070322764,1.7233585608492326 -698,29.0,26.0,-0.6874559028276572,1.293971494797717 -698,29.0,28.0,-0.9120532070322764,1.7233585608492326 -698,29.0,29.0,1.5995091098599337,-3.0173300556469496 -699,0.0,0.0,6.765516048652632,-21.23160167089863 -699,0.0,1.0,-5.224646179885656,15.646726840803398 -699,0.0,2.0,-1.5408698687669766,5.631674830095234 -699,1.0,0.0,-5.224646179885656,15.646726840803398 -699,1.0,1.0,9.75228216552403,-30.648662892676068 -699,1.0,3.0,-1.7055303166990268,5.1973792282565086 -699,1.0,4.0,-1.1359607881738778,4.772479328281356 -699,1.0,5.0,-1.6861448807654689,5.116477495334806 -699,2.0,0.0,-1.5408698687669766,5.631674830095234 -699,2.0,2.0,9.736318911079088,-29.13794745915803 -699,2.0,3.0,-8.19544904231211,23.5308726290628 -699,3.0,1.0,-1.7055303166990268,5.1973792282565086 -699,3.0,2.0,-8.19544904231211,23.5308726290628 -699,3.0,3.0,16.314103089185693,-55.509410535254254 -699,3.0,5.0,-6.413123730174556,22.31120356548123 -699,3.0,11.0,0.0,4.191255364806866 -699,4.0,1.0,-1.1359607881738778,4.772479328281356 -699,4.0,4.0,4.089980824135861,-12.190647245055052 -699,4.0,6.0,-2.954020035961983,7.449267916773697 -699,5.0,1.0,-1.6861448807654689,5.116477495334806 -699,5.0,3.0,-6.413123730174556,22.31120356548123 -699,5.0,5.0,22.341631269034565,-82.8291478657789 -699,5.0,6.0,-3.590210423980992,11.02611441072814 -699,5.0,7.0,-6.289308176100628,22.0125786163522 -699,5.0,8.0,0.0,4.915840805411357 -699,5.0,9.0,0.0,1.8561002591115965 -699,5.0,27.0,-4.362844058012917,15.463571542897856 -699,6.0,4.0,-2.954020035961983,7.449267916773697 -699,6.0,5.0,-3.590210423980992,11.02611441072814 -699,6.0,6.0,6.544230459942975,-18.45668232750184 -699,7.0,5.0,-6.289308176100628,22.0125786163522 -699,7.0,7.0,7.733287237496075,-26.527493274828448 -699,7.0,27.0,-1.4439790613954469,4.540814658476248 -699,8.0,5.0,0.0,4.915840805411357 -699,8.0,8.0,0.0,-18.706293706293707 -699,8.0,9.0,0.0,9.090909090909092 -699,8.0,10.0,0.0,4.807692307692308 -699,9.0,5.0,0.0,1.8561002591115965 -699,9.0,8.0,0.0,9.090909090909092 -699,9.0,9.0,13.462042814524237,-41.3837606675224 -699,9.0,16.0,-3.956039125715353,10.317447719844054 -699,9.0,19.0,-1.7848303152666305,3.98535828943083 -699,9.0,20.0,-5.101853820159654,10.98071411292983 -699,9.0,21.0,-2.619319553382597,5.400770303329455 -699,10.0,8.0,0.0,4.807692307692308 -699,10.0,10.0,0.0,-4.807692307692308 -699,11.0,3.0,0.0,4.191255364806866 -699,11.0,11.0,6.573961583776156,-24.424167659260668 -699,11.0,12.0,0.0,7.142857142857143 -699,11.0,13.0,-1.5265676088395577,3.1734252729654173 -699,11.0,14.0,-3.0953961826564296,6.097275864326261 -699,11.0,15.0,-1.9519977922801688,4.104359379111847 -699,12.0,11.0,0.0,7.142857142857143 -699,12.0,12.0,0.0,-7.142857142857143 -699,13.0,11.0,-1.5265676088395577,3.1734252729654173 -699,13.0,13.0,4.01751987283902,-5.424299332335067 -699,13.0,14.0,-2.4909522639994623,2.250874059369649 -699,14.0,11.0,-3.0953961826564296,6.097275864326261 -699,14.0,13.0,-2.4909522639994623,2.250874059369649 -699,14.0,14.0,9.365498545964757,-16.01163373210796 -699,14.0,17.0,-1.8108011504072024,3.687418931630696 -699,14.0,22.0,-1.9683489489016612,3.976064876781356 -699,15.0,11.0,-1.9519977922801688,4.104359379111847 -699,15.0,15.0,3.271064728633931,-8.94513365126506 -699,15.0,16.0,-1.3190669363537617,4.8407742721532125 -699,16.0,9.0,-3.956039125715353,10.317447719844054 -699,16.0,15.0,-1.3190669363537617,4.8407742721532125 -699,16.0,16.0,5.275106062069114,-15.158221991997266 -699,17.0,14.0,-1.8108011504072024,3.687418931630696 -699,17.0,17.0,4.886487584415919,-9.906177730909668 -699,17.0,18.0,-3.0756864340087167,6.218758799278971 -699,18.0,17.0,-3.0756864340087167,6.218758799278971 -699,18.0,18.0,8.958039375185187,-17.98346468163191 -699,18.0,19.0,-5.88235294117647,11.76470588235294 -699,19.0,9.0,-1.7848303152666305,3.98535828943083 -699,19.0,18.0,-5.88235294117647,11.76470588235294 -699,19.0,19.0,7.6671832564431,-15.75006417178377 -699,20.0,9.0,-5.101853820159654,10.98071411292983 -699,20.0,20.0,21.876495189895888,-45.10843276170355 -699,20.0,21.0,-16.774641369736234,34.127718648773715 -699,21.0,9.0,-2.619319553382597,5.400770303329455 -699,21.0,20.0,-16.774641369736234,34.127718648773715 -699,21.0,21.0,21.93449907537439,-43.48289181517921 -699,21.0,23.0,-2.5405381522555563,3.95440286307604 -699,22.0,14.0,-1.9683489489016612,3.976064876781356 -699,22.0,22.0,3.429754555384988,-6.965303617315433 -699,22.0,23.0,-1.4614056064833263,2.989238740534077 -699,23.0,21.0,-2.5405381522555563,3.95440286307604 -699,23.0,22.0,-1.4614056064833263,2.989238740534077 -699,23.0,23.0,5.311836702613133,-9.188263657315172 -699,23.0,24.0,-1.3098929438742493,2.287622053705056 -699,24.0,23.0,-1.3098929438742493,2.287622053705056 -699,24.0,24.0,4.495715080321987,-7.864978761969621 -699,24.0,25.0,-1.2165301194494855,1.8171440463475024 -699,24.0,26.0,-1.9692920169982515,3.760212661917064 -699,25.0,24.0,-1.2165301194494855,1.8171440463475024 -699,25.0,25.0,1.2165301194494855,-1.8171440463475024 -699,26.0,24.0,-1.9692920169982515,3.760212661917064 -699,26.0,26.0,3.652281470778589,-9.46044252232512 -699,26.0,27.0,0.0,2.608731947574922 -699,26.0,28.0,-0.99553355095268,1.881005840357816 -699,26.0,29.0,-0.6874559028276572,1.293971494797717 -699,27.0,5.0,-4.362844058012917,15.463571542897856 -699,27.0,7.0,-1.4439790613954469,4.540814658476248 -699,27.0,26.0,0.0,2.608731947574922 -699,27.0,27.0,5.806823119408364,-22.67145722159613 -699,28.0,26.0,-0.99553355095268,1.881005840357816 -699,28.0,28.0,1.9075867579849564,-3.604364401207048 -699,28.0,29.0,-0.9120532070322764,1.7233585608492326 -699,29.0,26.0,-0.6874559028276572,1.293971494797717 -699,29.0,28.0,-0.9120532070322764,1.7233585608492326 -699,29.0,29.0,1.5995091098599337,-3.0173300556469496 -700,0.0,0.0,6.765516048652632,-21.23160167089863 -700,0.0,1.0,-5.224646179885656,15.646726840803398 -700,0.0,2.0,-1.5408698687669766,5.631674830095234 -700,1.0,0.0,-5.224646179885656,15.646726840803398 -700,1.0,1.0,9.75228216552403,-30.648662892676068 -700,1.0,3.0,-1.7055303166990268,5.1973792282565086 -700,1.0,4.0,-1.1359607881738778,4.772479328281356 -700,1.0,5.0,-1.6861448807654689,5.116477495334806 -700,2.0,0.0,-1.5408698687669766,5.631674830095234 -700,2.0,2.0,9.736318911079088,-29.13794745915803 -700,2.0,3.0,-8.19544904231211,23.5308726290628 -700,3.0,1.0,-1.7055303166990268,5.1973792282565086 -700,3.0,2.0,-8.19544904231211,23.5308726290628 -700,3.0,3.0,16.314103089185693,-55.509410535254254 -700,3.0,5.0,-6.413123730174556,22.31120356548123 -700,3.0,11.0,0.0,4.191255364806866 -700,4.0,1.0,-1.1359607881738778,4.772479328281356 -700,4.0,4.0,4.089980824135861,-12.190647245055052 -700,4.0,6.0,-2.954020035961983,7.449267916773697 -700,5.0,1.0,-1.6861448807654689,5.116477495334806 -700,5.0,3.0,-6.413123730174556,22.31120356548123 -700,5.0,5.0,22.341631269034565,-82.8291478657789 -700,5.0,6.0,-3.590210423980992,11.02611441072814 -700,5.0,7.0,-6.289308176100628,22.0125786163522 -700,5.0,8.0,0.0,4.915840805411357 -700,5.0,9.0,0.0,1.8561002591115965 -700,5.0,27.0,-4.362844058012917,15.463571542897856 -700,6.0,4.0,-2.954020035961983,7.449267916773697 -700,6.0,5.0,-3.590210423980992,11.02611441072814 -700,6.0,6.0,6.544230459942975,-18.45668232750184 -700,7.0,5.0,-6.289308176100628,22.0125786163522 -700,7.0,7.0,7.733287237496075,-26.527493274828448 -700,7.0,27.0,-1.4439790613954469,4.540814658476248 -700,8.0,5.0,0.0,4.915840805411357 -700,8.0,8.0,0.0,-18.706293706293707 -700,8.0,9.0,0.0,9.090909090909092 -700,8.0,10.0,0.0,4.807692307692308 -700,9.0,5.0,0.0,1.8561002591115965 -700,9.0,8.0,0.0,9.090909090909092 -700,9.0,9.0,13.462042814524237,-41.3837606675224 -700,9.0,16.0,-3.956039125715353,10.317447719844054 -700,9.0,19.0,-1.7848303152666305,3.98535828943083 -700,9.0,20.0,-5.101853820159654,10.98071411292983 -700,9.0,21.0,-2.619319553382597,5.400770303329455 -700,10.0,8.0,0.0,4.807692307692308 -700,10.0,10.0,0.0,-4.807692307692308 -700,11.0,3.0,0.0,4.191255364806866 -700,11.0,11.0,6.573961583776156,-24.424167659260668 -700,11.0,12.0,0.0,7.142857142857143 -700,11.0,13.0,-1.5265676088395577,3.1734252729654173 -700,11.0,14.0,-3.0953961826564296,6.097275864326261 -700,11.0,15.0,-1.9519977922801688,4.104359379111847 -700,12.0,11.0,0.0,7.142857142857143 -700,12.0,12.0,0.0,-7.142857142857143 -700,13.0,11.0,-1.5265676088395577,3.1734252729654173 -700,13.0,13.0,4.01751987283902,-5.424299332335067 -700,13.0,14.0,-2.4909522639994623,2.250874059369649 -700,14.0,11.0,-3.0953961826564296,6.097275864326261 -700,14.0,13.0,-2.4909522639994623,2.250874059369649 -700,14.0,14.0,7.397149597063095,-12.035568855326606 -700,14.0,17.0,-1.8108011504072024,3.687418931630696 -700,15.0,11.0,-1.9519977922801688,4.104359379111847 -700,15.0,15.0,3.271064728633931,-8.94513365126506 -700,15.0,16.0,-1.3190669363537617,4.8407742721532125 -700,16.0,9.0,-3.956039125715353,10.317447719844054 -700,16.0,15.0,-1.3190669363537617,4.8407742721532125 -700,16.0,16.0,5.275106062069114,-15.158221991997266 -700,17.0,14.0,-1.8108011504072024,3.687418931630696 -700,17.0,17.0,4.886487584415919,-9.906177730909668 -700,17.0,18.0,-3.0756864340087167,6.218758799278971 -700,18.0,17.0,-3.0756864340087167,6.218758799278971 -700,18.0,18.0,8.958039375185187,-17.98346468163191 -700,18.0,19.0,-5.88235294117647,11.76470588235294 -700,19.0,9.0,-1.7848303152666305,3.98535828943083 -700,19.0,18.0,-5.88235294117647,11.76470588235294 -700,19.0,19.0,7.6671832564431,-15.75006417178377 -700,20.0,9.0,-5.101853820159654,10.98071411292983 -700,20.0,20.0,21.876495189895888,-45.10843276170355 -700,20.0,21.0,-16.774641369736234,34.127718648773715 -700,21.0,9.0,-2.619319553382597,5.400770303329455 -700,21.0,20.0,-16.774641369736234,34.127718648773715 -700,21.0,21.0,21.93449907537439,-43.48289181517921 -700,21.0,23.0,-2.5405381522555563,3.95440286307604 -700,22.0,22.0,1.4614056064833263,-2.989238740534077 -700,22.0,23.0,-1.4614056064833263,2.989238740534077 -700,23.0,21.0,-2.5405381522555563,3.95440286307604 -700,23.0,22.0,-1.4614056064833263,2.989238740534077 -700,23.0,23.0,5.311836702613133,-9.188263657315172 -700,23.0,24.0,-1.3098929438742493,2.287622053705056 -700,24.0,23.0,-1.3098929438742493,2.287622053705056 -700,24.0,24.0,4.495715080321987,-7.864978761969621 -700,24.0,25.0,-1.2165301194494855,1.8171440463475024 -700,24.0,26.0,-1.9692920169982515,3.760212661917064 -700,25.0,24.0,-1.2165301194494855,1.8171440463475024 -700,25.0,25.0,1.2165301194494855,-1.8171440463475024 -700,26.0,24.0,-1.9692920169982515,3.760212661917064 -700,26.0,26.0,3.652281470778589,-9.46044252232512 -700,26.0,27.0,0.0,2.608731947574922 -700,26.0,28.0,-0.99553355095268,1.881005840357816 -700,26.0,29.0,-0.6874559028276572,1.293971494797717 -700,27.0,5.0,-4.362844058012917,15.463571542897856 -700,27.0,7.0,-1.4439790613954469,4.540814658476248 -700,27.0,26.0,0.0,2.608731947574922 -700,27.0,27.0,5.806823119408364,-22.67145722159613 -700,28.0,26.0,-0.99553355095268,1.881005840357816 -700,28.0,28.0,0.99553355095268,-1.881005840357816 -700,29.0,26.0,-0.6874559028276572,1.293971494797717 -700,29.0,29.0,0.6874559028276572,-1.293971494797717 -701,0.0,0.0,6.765516048652632,-21.23160167089863 -701,0.0,1.0,-5.224646179885656,15.646726840803398 -701,0.0,2.0,-1.5408698687669766,5.631674830095234 -701,1.0,0.0,-5.224646179885656,15.646726840803398 -701,1.0,1.0,9.75228216552403,-30.648662892676068 -701,1.0,3.0,-1.7055303166990268,5.1973792282565086 -701,1.0,4.0,-1.1359607881738778,4.772479328281356 -701,1.0,5.0,-1.6861448807654689,5.116477495334806 -701,2.0,0.0,-1.5408698687669766,5.631674830095234 -701,2.0,2.0,9.736318911079088,-29.13794745915803 -701,2.0,3.0,-8.19544904231211,23.5308726290628 -701,3.0,1.0,-1.7055303166990268,5.1973792282565086 -701,3.0,2.0,-8.19544904231211,23.5308726290628 -701,3.0,3.0,16.314103089185693,-55.509410535254254 -701,3.0,5.0,-6.413123730174556,22.31120356548123 -701,3.0,11.0,0.0,4.191255364806866 -701,4.0,1.0,-1.1359607881738778,4.772479328281356 -701,4.0,4.0,4.089980824135861,-12.190647245055052 -701,4.0,6.0,-2.954020035961983,7.449267916773697 -701,5.0,1.0,-1.6861448807654689,5.116477495334806 -701,5.0,3.0,-6.413123730174556,22.31120356548123 -701,5.0,5.0,22.341631269034565,-82.8291478657789 -701,5.0,6.0,-3.590210423980992,11.02611441072814 -701,5.0,7.0,-6.289308176100628,22.0125786163522 -701,5.0,8.0,0.0,4.915840805411357 -701,5.0,9.0,0.0,1.8561002591115965 -701,5.0,27.0,-4.362844058012917,15.463571542897856 -701,6.0,4.0,-2.954020035961983,7.449267916773697 -701,6.0,5.0,-3.590210423980992,11.02611441072814 -701,6.0,6.0,6.544230459942975,-18.45668232750184 -701,7.0,5.0,-6.289308176100628,22.0125786163522 -701,7.0,7.0,7.733287237496075,-26.527493274828448 -701,7.0,27.0,-1.4439790613954469,4.540814658476248 -701,8.0,5.0,0.0,4.915840805411357 -701,8.0,8.0,0.0,-18.706293706293707 -701,8.0,9.0,0.0,9.090909090909092 -701,8.0,10.0,0.0,4.807692307692308 -701,9.0,5.0,0.0,1.8561002591115965 -701,9.0,8.0,0.0,9.090909090909092 -701,9.0,9.0,13.462042814524237,-41.3837606675224 -701,9.0,16.0,-3.956039125715353,10.317447719844054 -701,9.0,19.0,-1.7848303152666305,3.98535828943083 -701,9.0,20.0,-5.101853820159654,10.98071411292983 -701,9.0,21.0,-2.619319553382597,5.400770303329455 -701,10.0,8.0,0.0,4.807692307692308 -701,10.0,10.0,0.0,-4.807692307692308 -701,11.0,3.0,0.0,4.191255364806866 -701,11.0,11.0,5.047393974936599,-21.25074238629525 -701,11.0,12.0,0.0,7.142857142857143 -701,11.0,14.0,-3.0953961826564296,6.097275864326261 -701,11.0,15.0,-1.9519977922801688,4.104359379111847 -701,12.0,11.0,0.0,7.142857142857143 -701,12.0,12.0,0.0,-7.142857142857143 -701,13.0,13.0,2.4909522639994623,-2.250874059369649 -701,13.0,14.0,-2.4909522639994623,2.250874059369649 -701,14.0,11.0,-3.0953961826564296,6.097275864326261 -701,14.0,13.0,-2.4909522639994623,2.250874059369649 -701,14.0,14.0,9.365498545964757,-16.01163373210796 -701,14.0,17.0,-1.8108011504072024,3.687418931630696 -701,14.0,22.0,-1.9683489489016612,3.976064876781356 -701,15.0,11.0,-1.9519977922801688,4.104359379111847 -701,15.0,15.0,3.271064728633931,-8.94513365126506 -701,15.0,16.0,-1.3190669363537617,4.8407742721532125 -701,16.0,9.0,-3.956039125715353,10.317447719844054 -701,16.0,15.0,-1.3190669363537617,4.8407742721532125 -701,16.0,16.0,5.275106062069114,-15.158221991997266 -701,17.0,14.0,-1.8108011504072024,3.687418931630696 -701,17.0,17.0,4.886487584415919,-9.906177730909668 -701,17.0,18.0,-3.0756864340087167,6.218758799278971 -701,18.0,17.0,-3.0756864340087167,6.218758799278971 -701,18.0,18.0,8.958039375185187,-17.98346468163191 -701,18.0,19.0,-5.88235294117647,11.76470588235294 -701,19.0,9.0,-1.7848303152666305,3.98535828943083 -701,19.0,18.0,-5.88235294117647,11.76470588235294 -701,19.0,19.0,7.6671832564431,-15.75006417178377 -701,20.0,9.0,-5.101853820159654,10.98071411292983 -701,20.0,20.0,21.876495189895888,-45.10843276170355 -701,20.0,21.0,-16.774641369736234,34.127718648773715 -701,21.0,9.0,-2.619319553382597,5.400770303329455 -701,21.0,20.0,-16.774641369736234,34.127718648773715 -701,21.0,21.0,21.93449907537439,-43.48289181517921 -701,21.0,23.0,-2.5405381522555563,3.95440286307604 -701,22.0,14.0,-1.9683489489016612,3.976064876781356 -701,22.0,22.0,3.429754555384988,-6.965303617315433 -701,22.0,23.0,-1.4614056064833263,2.989238740534077 -701,23.0,21.0,-2.5405381522555563,3.95440286307604 -701,23.0,22.0,-1.4614056064833263,2.989238740534077 -701,23.0,23.0,5.311836702613133,-9.188263657315172 -701,23.0,24.0,-1.3098929438742493,2.287622053705056 -701,24.0,23.0,-1.3098929438742493,2.287622053705056 -701,24.0,24.0,4.495715080321987,-7.864978761969621 -701,24.0,25.0,-1.2165301194494855,1.8171440463475024 -701,24.0,26.0,-1.9692920169982515,3.760212661917064 -701,25.0,24.0,-1.2165301194494855,1.8171440463475024 -701,25.0,25.0,1.2165301194494855,-1.8171440463475024 -701,26.0,24.0,-1.9692920169982515,3.760212661917064 -701,26.0,26.0,3.652281470778589,-9.46044252232512 -701,26.0,27.0,0.0,2.608731947574922 -701,26.0,28.0,-0.99553355095268,1.881005840357816 -701,26.0,29.0,-0.6874559028276572,1.293971494797717 -701,27.0,5.0,-4.362844058012917,15.463571542897856 -701,27.0,7.0,-1.4439790613954469,4.540814658476248 -701,27.0,26.0,0.0,2.608731947574922 -701,27.0,27.0,5.806823119408364,-22.67145722159613 -701,28.0,26.0,-0.99553355095268,1.881005840357816 -701,28.0,28.0,1.9075867579849564,-3.604364401207048 -701,28.0,29.0,-0.9120532070322764,1.7233585608492326 -701,29.0,26.0,-0.6874559028276572,1.293971494797717 -701,29.0,28.0,-0.9120532070322764,1.7233585608492326 -701,29.0,29.0,1.5995091098599337,-3.0173300556469496 -702,0.0,0.0,6.765516048652632,-21.23160167089863 -702,0.0,1.0,-5.224646179885656,15.646726840803398 -702,0.0,2.0,-1.5408698687669766,5.631674830095234 -702,1.0,0.0,-5.224646179885656,15.646726840803398 -702,1.0,1.0,9.75228216552403,-30.648662892676068 -702,1.0,3.0,-1.7055303166990268,5.1973792282565086 -702,1.0,4.0,-1.1359607881738778,4.772479328281356 -702,1.0,5.0,-1.6861448807654689,5.116477495334806 -702,2.0,0.0,-1.5408698687669766,5.631674830095234 -702,2.0,2.0,9.736318911079088,-29.13794745915803 -702,2.0,3.0,-8.19544904231211,23.5308726290628 -702,3.0,1.0,-1.7055303166990268,5.1973792282565086 -702,3.0,2.0,-8.19544904231211,23.5308726290628 -702,3.0,3.0,16.314103089185693,-55.509410535254254 -702,3.0,5.0,-6.413123730174556,22.31120356548123 -702,3.0,11.0,0.0,4.191255364806866 -702,4.0,1.0,-1.1359607881738778,4.772479328281356 -702,4.0,4.0,4.089980824135861,-12.190647245055052 -702,4.0,6.0,-2.954020035961983,7.449267916773697 -702,5.0,1.0,-1.6861448807654689,5.116477495334806 -702,5.0,3.0,-6.413123730174556,22.31120356548123 -702,5.0,5.0,22.341631269034565,-82.8291478657789 -702,5.0,6.0,-3.590210423980992,11.02611441072814 -702,5.0,7.0,-6.289308176100628,22.0125786163522 -702,5.0,8.0,0.0,4.915840805411357 -702,5.0,9.0,0.0,1.8561002591115965 -702,5.0,27.0,-4.362844058012917,15.463571542897856 -702,6.0,4.0,-2.954020035961983,7.449267916773697 -702,6.0,5.0,-3.590210423980992,11.02611441072814 -702,6.0,6.0,6.544230459942975,-18.45668232750184 -702,7.0,5.0,-6.289308176100628,22.0125786163522 -702,7.0,7.0,7.733287237496075,-26.527493274828448 -702,7.0,27.0,-1.4439790613954469,4.540814658476248 -702,8.0,5.0,0.0,4.915840805411357 -702,8.0,8.0,0.0,-18.706293706293707 -702,8.0,9.0,0.0,9.090909090909092 -702,8.0,10.0,0.0,4.807692307692308 -702,9.0,5.0,0.0,1.8561002591115965 -702,9.0,8.0,0.0,9.090909090909092 -702,9.0,9.0,8.36018899436458,-30.40304655459257 -702,9.0,16.0,-3.956039125715353,10.317447719844054 -702,9.0,19.0,-1.7848303152666305,3.98535828943083 -702,9.0,21.0,-2.619319553382597,5.400770303329455 -702,10.0,8.0,0.0,4.807692307692308 -702,10.0,10.0,0.0,-4.807692307692308 -702,11.0,3.0,0.0,4.191255364806866 -702,11.0,11.0,6.573961583776156,-24.424167659260668 -702,11.0,12.0,0.0,7.142857142857143 -702,11.0,13.0,-1.5265676088395577,3.1734252729654173 -702,11.0,14.0,-3.0953961826564296,6.097275864326261 -702,11.0,15.0,-1.9519977922801688,4.104359379111847 -702,12.0,11.0,0.0,7.142857142857143 -702,12.0,12.0,0.0,-7.142857142857143 -702,13.0,11.0,-1.5265676088395577,3.1734252729654173 -702,13.0,13.0,4.01751987283902,-5.424299332335067 -702,13.0,14.0,-2.4909522639994623,2.250874059369649 -702,14.0,11.0,-3.0953961826564296,6.097275864326261 -702,14.0,13.0,-2.4909522639994623,2.250874059369649 -702,14.0,14.0,9.365498545964757,-16.01163373210796 -702,14.0,17.0,-1.8108011504072024,3.687418931630696 -702,14.0,22.0,-1.9683489489016612,3.976064876781356 -702,15.0,11.0,-1.9519977922801688,4.104359379111847 -702,15.0,15.0,3.271064728633931,-8.94513365126506 -702,15.0,16.0,-1.3190669363537617,4.8407742721532125 -702,16.0,9.0,-3.956039125715353,10.317447719844054 -702,16.0,15.0,-1.3190669363537617,4.8407742721532125 -702,16.0,16.0,5.275106062069114,-15.158221991997266 -702,17.0,14.0,-1.8108011504072024,3.687418931630696 -702,17.0,17.0,4.886487584415919,-9.906177730909668 -702,17.0,18.0,-3.0756864340087167,6.218758799278971 -702,18.0,17.0,-3.0756864340087167,6.218758799278971 -702,18.0,18.0,8.958039375185187,-17.98346468163191 -702,18.0,19.0,-5.88235294117647,11.76470588235294 -702,19.0,9.0,-1.7848303152666305,3.98535828943083 -702,19.0,18.0,-5.88235294117647,11.76470588235294 -702,19.0,19.0,7.6671832564431,-15.75006417178377 -702,20.0,20.0,16.774641369736234,-34.127718648773715 -702,20.0,21.0,-16.774641369736234,34.127718648773715 -702,21.0,9.0,-2.619319553382597,5.400770303329455 -702,21.0,20.0,-16.774641369736234,34.127718648773715 -702,21.0,21.0,19.393960923118836,-39.52848895210317 -702,22.0,14.0,-1.9683489489016612,3.976064876781356 -702,22.0,22.0,3.429754555384988,-6.965303617315433 -702,22.0,23.0,-1.4614056064833263,2.989238740534077 -702,23.0,22.0,-1.4614056064833263,2.989238740534077 -702,23.0,23.0,1.4614056064833263,-2.946238740534077 -702,24.0,24.0,3.185822136447737,-5.577356708264566 -702,24.0,25.0,-1.2165301194494855,1.8171440463475024 -702,24.0,26.0,-1.9692920169982515,3.760212661917064 -702,25.0,24.0,-1.2165301194494855,1.8171440463475024 -702,25.0,25.0,1.2165301194494855,-1.8171440463475024 -702,26.0,24.0,-1.9692920169982515,3.760212661917064 -702,26.0,26.0,3.652281470778589,-9.46044252232512 -702,26.0,27.0,0.0,2.608731947574922 -702,26.0,28.0,-0.99553355095268,1.881005840357816 -702,26.0,29.0,-0.6874559028276572,1.293971494797717 -702,27.0,5.0,-4.362844058012917,15.463571542897856 -702,27.0,7.0,-1.4439790613954469,4.540814658476248 -702,27.0,26.0,0.0,2.608731947574922 -702,27.0,27.0,5.806823119408364,-22.67145722159613 -702,28.0,26.0,-0.99553355095268,1.881005840357816 -702,28.0,28.0,1.9075867579849564,-3.604364401207048 -702,28.0,29.0,-0.9120532070322764,1.7233585608492326 -702,29.0,26.0,-0.6874559028276572,1.293971494797717 -702,29.0,28.0,-0.9120532070322764,1.7233585608492326 -702,29.0,29.0,1.5995091098599337,-3.0173300556469496 -703,0.0,0.0,6.765516048652632,-21.23160167089863 -703,0.0,1.0,-5.224646179885656,15.646726840803398 -703,0.0,2.0,-1.5408698687669766,5.631674830095234 -703,1.0,0.0,-5.224646179885656,15.646726840803398 -703,1.0,1.0,9.75228216552403,-30.648662892676068 -703,1.0,3.0,-1.7055303166990268,5.1973792282565086 -703,1.0,4.0,-1.1359607881738778,4.772479328281356 -703,1.0,5.0,-1.6861448807654689,5.116477495334806 -703,2.0,0.0,-1.5408698687669766,5.631674830095234 -703,2.0,2.0,9.736318911079088,-29.13794745915803 -703,2.0,3.0,-8.19544904231211,23.5308726290628 -703,3.0,1.0,-1.7055303166990268,5.1973792282565086 -703,3.0,2.0,-8.19544904231211,23.5308726290628 -703,3.0,3.0,16.314103089185693,-51.01235542280054 -703,3.0,5.0,-6.413123730174556,22.31120356548123 -703,4.0,1.0,-1.1359607881738778,4.772479328281356 -703,4.0,4.0,1.1359607881738778,-4.751579328281355 -703,5.0,1.0,-1.6861448807654689,5.116477495334806 -703,5.0,3.0,-6.413123730174556,22.31120356548123 -703,5.0,5.0,22.341631269034565,-82.8291478657789 -703,5.0,6.0,-3.590210423980992,11.02611441072814 -703,5.0,7.0,-6.289308176100628,22.0125786163522 -703,5.0,8.0,0.0,4.915840805411357 -703,5.0,9.0,0.0,1.8561002591115965 -703,5.0,27.0,-4.362844058012917,15.463571542897856 -703,6.0,5.0,-3.590210423980992,11.02611441072814 -703,6.0,6.0,3.590210423980992,-11.01761441072814 -703,7.0,5.0,-6.289308176100628,22.0125786163522 -703,7.0,7.0,7.733287237496075,-26.527493274828448 -703,7.0,27.0,-1.4439790613954469,4.540814658476248 -703,8.0,5.0,0.0,4.915840805411357 -703,8.0,8.0,0.0,-18.706293706293707 -703,8.0,9.0,0.0,9.090909090909092 -703,8.0,10.0,0.0,4.807692307692308 -703,9.0,5.0,0.0,1.8561002591115965 -703,9.0,8.0,0.0,9.090909090909092 -703,9.0,9.0,13.462042814524237,-41.3837606675224 -703,9.0,16.0,-3.956039125715353,10.317447719844054 -703,9.0,19.0,-1.7848303152666305,3.98535828943083 -703,9.0,20.0,-5.101853820159654,10.98071411292983 -703,9.0,21.0,-2.619319553382597,5.400770303329455 -703,10.0,8.0,0.0,4.807692307692308 -703,10.0,10.0,0.0,-4.807692307692308 -703,11.0,11.0,6.573961583776156,-20.517917659260668 -703,11.0,12.0,0.0,7.142857142857143 -703,11.0,13.0,-1.5265676088395577,3.1734252729654173 -703,11.0,14.0,-3.0953961826564296,6.097275864326261 -703,11.0,15.0,-1.9519977922801688,4.104359379111847 -703,12.0,11.0,0.0,7.142857142857143 -703,12.0,12.0,0.0,-7.142857142857143 -703,13.0,11.0,-1.5265676088395577,3.1734252729654173 -703,13.0,13.0,4.01751987283902,-5.424299332335067 -703,13.0,14.0,-2.4909522639994623,2.250874059369649 -703,14.0,11.0,-3.0953961826564296,6.097275864326261 -703,14.0,13.0,-2.4909522639994623,2.250874059369649 -703,14.0,14.0,9.365498545964757,-16.01163373210796 -703,14.0,17.0,-1.8108011504072024,3.687418931630696 -703,14.0,22.0,-1.9683489489016612,3.976064876781356 -703,15.0,11.0,-1.9519977922801688,4.104359379111847 -703,15.0,15.0,3.271064728633931,-8.94513365126506 -703,15.0,16.0,-1.3190669363537617,4.8407742721532125 -703,16.0,9.0,-3.956039125715353,10.317447719844054 -703,16.0,15.0,-1.3190669363537617,4.8407742721532125 -703,16.0,16.0,5.275106062069114,-15.158221991997266 -703,17.0,14.0,-1.8108011504072024,3.687418931630696 -703,17.0,17.0,4.886487584415919,-9.906177730909668 -703,17.0,18.0,-3.0756864340087167,6.218758799278971 -703,18.0,17.0,-3.0756864340087167,6.218758799278971 -703,18.0,18.0,8.958039375185187,-17.98346468163191 -703,18.0,19.0,-5.88235294117647,11.76470588235294 -703,19.0,9.0,-1.7848303152666305,3.98535828943083 -703,19.0,18.0,-5.88235294117647,11.76470588235294 -703,19.0,19.0,7.6671832564431,-15.75006417178377 -703,20.0,9.0,-5.101853820159654,10.98071411292983 -703,20.0,20.0,21.876495189895888,-45.10843276170355 -703,20.0,21.0,-16.774641369736234,34.127718648773715 -703,21.0,9.0,-2.619319553382597,5.400770303329455 -703,21.0,20.0,-16.774641369736234,34.127718648773715 -703,21.0,21.0,21.93449907537439,-43.48289181517921 -703,21.0,23.0,-2.5405381522555563,3.95440286307604 -703,22.0,14.0,-1.9683489489016612,3.976064876781356 -703,22.0,22.0,3.429754555384988,-6.965303617315433 -703,22.0,23.0,-1.4614056064833263,2.989238740534077 -703,23.0,21.0,-2.5405381522555563,3.95440286307604 -703,23.0,22.0,-1.4614056064833263,2.989238740534077 -703,23.0,23.0,5.311836702613133,-9.188263657315172 -703,23.0,24.0,-1.3098929438742493,2.287622053705056 -703,24.0,23.0,-1.3098929438742493,2.287622053705056 -703,24.0,24.0,4.495715080321987,-7.864978761969621 -703,24.0,25.0,-1.2165301194494855,1.8171440463475024 -703,24.0,26.0,-1.9692920169982515,3.760212661917064 -703,25.0,24.0,-1.2165301194494855,1.8171440463475024 -703,25.0,25.0,1.2165301194494855,-1.8171440463475024 -703,26.0,24.0,-1.9692920169982515,3.760212661917064 -703,26.0,26.0,3.652281470778589,-9.46044252232512 -703,26.0,27.0,0.0,2.608731947574922 -703,26.0,28.0,-0.99553355095268,1.881005840357816 -703,26.0,29.0,-0.6874559028276572,1.293971494797717 -703,27.0,5.0,-4.362844058012917,15.463571542897856 -703,27.0,7.0,-1.4439790613954469,4.540814658476248 -703,27.0,26.0,0.0,2.608731947574922 -703,27.0,27.0,5.806823119408364,-22.67145722159613 -703,28.0,26.0,-0.99553355095268,1.881005840357816 -703,28.0,28.0,1.9075867579849564,-3.604364401207048 -703,28.0,29.0,-0.9120532070322764,1.7233585608492326 -703,29.0,26.0,-0.6874559028276572,1.293971494797717 -703,29.0,28.0,-0.9120532070322764,1.7233585608492326 -703,29.0,29.0,1.5995091098599337,-3.0173300556469496 -704,0.0,0.0,6.765516048652632,-21.23160167089863 -704,0.0,1.0,-5.224646179885656,15.646726840803398 -704,0.0,2.0,-1.5408698687669766,5.631674830095234 -704,1.0,0.0,-5.224646179885656,15.646726840803398 -704,1.0,1.0,9.75228216552403,-30.648662892676068 -704,1.0,3.0,-1.7055303166990268,5.1973792282565086 -704,1.0,4.0,-1.1359607881738778,4.772479328281356 -704,1.0,5.0,-1.6861448807654689,5.116477495334806 -704,2.0,0.0,-1.5408698687669766,5.631674830095234 -704,2.0,2.0,9.736318911079088,-29.13794745915803 -704,2.0,3.0,-8.19544904231211,23.5308726290628 -704,3.0,1.0,-1.7055303166990268,5.1973792282565086 -704,3.0,2.0,-8.19544904231211,23.5308726290628 -704,3.0,3.0,16.314103089185693,-55.509410535254254 -704,3.0,5.0,-6.413123730174556,22.31120356548123 -704,3.0,11.0,0.0,4.191255364806866 -704,4.0,1.0,-1.1359607881738778,4.772479328281356 -704,4.0,4.0,4.089980824135861,-12.190647245055052 -704,4.0,6.0,-2.954020035961983,7.449267916773697 -704,5.0,1.0,-1.6861448807654689,5.116477495334806 -704,5.0,3.0,-6.413123730174556,22.31120356548123 -704,5.0,5.0,22.341631269034565,-77.80272577435625 -704,5.0,6.0,-3.590210423980992,11.02611441072814 -704,5.0,7.0,-6.289308176100628,22.0125786163522 -704,5.0,9.0,0.0,1.8561002591115965 -704,5.0,27.0,-4.362844058012917,15.463571542897856 -704,6.0,4.0,-2.954020035961983,7.449267916773697 -704,6.0,5.0,-3.590210423980992,11.02611441072814 -704,6.0,6.0,6.544230459942975,-18.45668232750184 -704,7.0,5.0,-6.289308176100628,22.0125786163522 -704,7.0,7.0,7.733287237496075,-26.527493274828448 -704,7.0,27.0,-1.4439790613954469,4.540814658476248 -704,8.0,8.0,0.0,-13.8986013986014 -704,8.0,9.0,0.0,9.090909090909092 -704,8.0,10.0,0.0,4.807692307692308 -704,9.0,5.0,0.0,1.8561002591115965 -704,9.0,8.0,0.0,9.090909090909092 -704,9.0,9.0,13.462042814524237,-41.3837606675224 -704,9.0,16.0,-3.956039125715353,10.317447719844054 -704,9.0,19.0,-1.7848303152666305,3.98535828943083 -704,9.0,20.0,-5.101853820159654,10.98071411292983 -704,9.0,21.0,-2.619319553382597,5.400770303329455 -704,10.0,8.0,0.0,4.807692307692308 -704,10.0,10.0,0.0,-4.807692307692308 -704,11.0,3.0,0.0,4.191255364806866 -704,11.0,11.0,6.573961583776156,-24.424167659260668 -704,11.0,12.0,0.0,7.142857142857143 -704,11.0,13.0,-1.5265676088395577,3.1734252729654173 -704,11.0,14.0,-3.0953961826564296,6.097275864326261 -704,11.0,15.0,-1.9519977922801688,4.104359379111847 -704,12.0,11.0,0.0,7.142857142857143 -704,12.0,12.0,0.0,-7.142857142857143 -704,13.0,11.0,-1.5265676088395577,3.1734252729654173 -704,13.0,13.0,4.01751987283902,-5.424299332335067 -704,13.0,14.0,-2.4909522639994623,2.250874059369649 -704,14.0,11.0,-3.0953961826564296,6.097275864326261 -704,14.0,13.0,-2.4909522639994623,2.250874059369649 -704,14.0,14.0,9.365498545964757,-16.01163373210796 -704,14.0,17.0,-1.8108011504072024,3.687418931630696 -704,14.0,22.0,-1.9683489489016612,3.976064876781356 -704,15.0,11.0,-1.9519977922801688,4.104359379111847 -704,15.0,15.0,3.271064728633931,-8.94513365126506 -704,15.0,16.0,-1.3190669363537617,4.8407742721532125 -704,16.0,9.0,-3.956039125715353,10.317447719844054 -704,16.0,15.0,-1.3190669363537617,4.8407742721532125 -704,16.0,16.0,5.275106062069114,-15.158221991997266 -704,17.0,14.0,-1.8108011504072024,3.687418931630696 -704,17.0,17.0,4.886487584415919,-9.906177730909668 -704,17.0,18.0,-3.0756864340087167,6.218758799278971 -704,18.0,17.0,-3.0756864340087167,6.218758799278971 -704,18.0,18.0,8.958039375185187,-17.98346468163191 -704,18.0,19.0,-5.88235294117647,11.76470588235294 -704,19.0,9.0,-1.7848303152666305,3.98535828943083 -704,19.0,18.0,-5.88235294117647,11.76470588235294 -704,19.0,19.0,7.6671832564431,-15.75006417178377 -704,20.0,9.0,-5.101853820159654,10.98071411292983 -704,20.0,20.0,21.876495189895888,-45.10843276170355 -704,20.0,21.0,-16.774641369736234,34.127718648773715 -704,21.0,9.0,-2.619319553382597,5.400770303329455 -704,21.0,20.0,-16.774641369736234,34.127718648773715 -704,21.0,21.0,19.393960923118836,-39.52848895210317 -704,22.0,14.0,-1.9683489489016612,3.976064876781356 -704,22.0,22.0,3.429754555384988,-6.965303617315433 -704,22.0,23.0,-1.4614056064833263,2.989238740534077 -704,23.0,22.0,-1.4614056064833263,2.989238740534077 -704,23.0,23.0,2.771298550357576,-5.233860794239132 -704,23.0,24.0,-1.3098929438742493,2.287622053705056 -704,24.0,23.0,-1.3098929438742493,2.287622053705056 -704,24.0,24.0,4.495715080321987,-7.864978761969621 -704,24.0,25.0,-1.2165301194494855,1.8171440463475024 -704,24.0,26.0,-1.9692920169982515,3.760212661917064 -704,25.0,24.0,-1.2165301194494855,1.8171440463475024 -704,25.0,25.0,1.2165301194494855,-1.8171440463475024 -704,26.0,24.0,-1.9692920169982515,3.760212661917064 -704,26.0,26.0,3.652281470778589,-9.46044252232512 -704,26.0,27.0,0.0,2.608731947574922 -704,26.0,28.0,-0.99553355095268,1.881005840357816 -704,26.0,29.0,-0.6874559028276572,1.293971494797717 -704,27.0,5.0,-4.362844058012917,15.463571542897856 -704,27.0,7.0,-1.4439790613954469,4.540814658476248 -704,27.0,26.0,0.0,2.608731947574922 -704,27.0,27.0,5.806823119408364,-22.67145722159613 -704,28.0,26.0,-0.99553355095268,1.881005840357816 -704,28.0,28.0,1.9075867579849564,-3.604364401207048 -704,28.0,29.0,-0.9120532070322764,1.7233585608492326 -704,29.0,26.0,-0.6874559028276572,1.293971494797717 -704,29.0,28.0,-0.9120532070322764,1.7233585608492326 -704,29.0,29.0,1.5995091098599337,-3.0173300556469496 -705,0.0,0.0,6.765516048652632,-21.23160167089863 -705,0.0,1.0,-5.224646179885656,15.646726840803398 -705,0.0,2.0,-1.5408698687669766,5.631674830095234 -705,1.0,0.0,-5.224646179885656,15.646726840803398 -705,1.0,1.0,9.75228216552403,-30.648662892676068 -705,1.0,3.0,-1.7055303166990268,5.1973792282565086 -705,1.0,4.0,-1.1359607881738778,4.772479328281356 -705,1.0,5.0,-1.6861448807654689,5.116477495334806 -705,2.0,0.0,-1.5408698687669766,5.631674830095234 -705,2.0,2.0,9.736318911079088,-29.13794745915803 -705,2.0,3.0,-8.19544904231211,23.5308726290628 -705,3.0,1.0,-1.7055303166990268,5.1973792282565086 -705,3.0,2.0,-8.19544904231211,23.5308726290628 -705,3.0,3.0,16.314103089185693,-55.509410535254254 -705,3.0,5.0,-6.413123730174556,22.31120356548123 -705,3.0,11.0,0.0,4.191255364806866 -705,4.0,1.0,-1.1359607881738778,4.772479328281356 -705,4.0,4.0,4.089980824135861,-12.190647245055052 -705,4.0,6.0,-2.954020035961983,7.449267916773697 -705,5.0,1.0,-1.6861448807654689,5.116477495334806 -705,5.0,3.0,-6.413123730174556,22.31120356548123 -705,5.0,5.0,22.341631269034565,-82.8291478657789 -705,5.0,6.0,-3.590210423980992,11.02611441072814 -705,5.0,7.0,-6.289308176100628,22.0125786163522 -705,5.0,8.0,0.0,4.915840805411357 -705,5.0,9.0,0.0,1.8561002591115965 -705,5.0,27.0,-4.362844058012917,15.463571542897856 -705,6.0,4.0,-2.954020035961983,7.449267916773697 -705,6.0,5.0,-3.590210423980992,11.02611441072814 -705,6.0,6.0,6.544230459942975,-18.45668232750184 -705,7.0,5.0,-6.289308176100628,22.0125786163522 -705,7.0,7.0,7.733287237496075,-26.527493274828448 -705,7.0,27.0,-1.4439790613954469,4.540814658476248 -705,8.0,5.0,0.0,4.915840805411357 -705,8.0,8.0,0.0,-18.706293706293707 -705,8.0,9.0,0.0,9.090909090909092 -705,8.0,10.0,0.0,4.807692307692308 -705,9.0,5.0,0.0,1.8561002591115965 -705,9.0,8.0,0.0,9.090909090909092 -705,9.0,9.0,13.462042814524237,-41.3837606675224 -705,9.0,16.0,-3.956039125715353,10.317447719844054 -705,9.0,19.0,-1.7848303152666305,3.98535828943083 -705,9.0,20.0,-5.101853820159654,10.98071411292983 -705,9.0,21.0,-2.619319553382597,5.400770303329455 -705,10.0,8.0,0.0,4.807692307692308 -705,10.0,10.0,0.0,-4.807692307692308 -705,11.0,3.0,0.0,4.191255364806866 -705,11.0,11.0,6.573961583776156,-24.424167659260668 -705,11.0,12.0,0.0,7.142857142857143 -705,11.0,13.0,-1.5265676088395577,3.1734252729654173 -705,11.0,14.0,-3.0953961826564296,6.097275864326261 -705,11.0,15.0,-1.9519977922801688,4.104359379111847 -705,12.0,11.0,0.0,7.142857142857143 -705,12.0,12.0,0.0,-7.142857142857143 -705,13.0,11.0,-1.5265676088395577,3.1734252729654173 -705,13.0,13.0,4.01751987283902,-5.424299332335067 -705,13.0,14.0,-2.4909522639994623,2.250874059369649 -705,14.0,11.0,-3.0953961826564296,6.097275864326261 -705,14.0,13.0,-2.4909522639994623,2.250874059369649 -705,14.0,14.0,9.365498545964757,-16.01163373210796 -705,14.0,17.0,-1.8108011504072024,3.687418931630696 -705,14.0,22.0,-1.9683489489016612,3.976064876781356 -705,15.0,11.0,-1.9519977922801688,4.104359379111847 -705,15.0,15.0,3.271064728633931,-8.94513365126506 -705,15.0,16.0,-1.3190669363537617,4.8407742721532125 -705,16.0,9.0,-3.956039125715353,10.317447719844054 -705,16.0,15.0,-1.3190669363537617,4.8407742721532125 -705,16.0,16.0,5.275106062069114,-15.158221991997266 -705,17.0,14.0,-1.8108011504072024,3.687418931630696 -705,17.0,17.0,4.886487584415919,-9.906177730909668 -705,17.0,18.0,-3.0756864340087167,6.218758799278971 -705,18.0,17.0,-3.0756864340087167,6.218758799278971 -705,18.0,18.0,8.958039375185187,-17.98346468163191 -705,18.0,19.0,-5.88235294117647,11.76470588235294 -705,19.0,9.0,-1.7848303152666305,3.98535828943083 -705,19.0,18.0,-5.88235294117647,11.76470588235294 -705,19.0,19.0,7.6671832564431,-15.75006417178377 -705,20.0,9.0,-5.101853820159654,10.98071411292983 -705,20.0,20.0,21.876495189895888,-45.10843276170355 -705,20.0,21.0,-16.774641369736234,34.127718648773715 -705,21.0,9.0,-2.619319553382597,5.400770303329455 -705,21.0,20.0,-16.774641369736234,34.127718648773715 -705,21.0,21.0,21.93449907537439,-43.48289181517921 -705,21.0,23.0,-2.5405381522555563,3.95440286307604 -705,22.0,14.0,-1.9683489489016612,3.976064876781356 -705,22.0,22.0,3.429754555384988,-6.965303617315433 -705,22.0,23.0,-1.4614056064833263,2.989238740534077 -705,23.0,21.0,-2.5405381522555563,3.95440286307604 -705,23.0,22.0,-1.4614056064833263,2.989238740534077 -705,23.0,23.0,5.311836702613133,-9.188263657315172 -705,23.0,24.0,-1.3098929438742493,2.287622053705056 -705,24.0,23.0,-1.3098929438742493,2.287622053705056 -705,24.0,24.0,4.495715080321987,-7.864978761969621 -705,24.0,25.0,-1.2165301194494855,1.8171440463475024 -705,24.0,26.0,-1.9692920169982515,3.760212661917064 -705,25.0,24.0,-1.2165301194494855,1.8171440463475024 -705,25.0,25.0,1.2165301194494855,-1.8171440463475024 -705,26.0,24.0,-1.9692920169982515,3.760212661917064 -705,26.0,26.0,3.652281470778589,-9.46044252232512 -705,26.0,27.0,0.0,2.608731947574922 -705,26.0,28.0,-0.99553355095268,1.881005840357816 -705,26.0,29.0,-0.6874559028276572,1.293971494797717 -705,27.0,5.0,-4.362844058012917,15.463571542897856 -705,27.0,7.0,-1.4439790613954469,4.540814658476248 -705,27.0,26.0,0.0,2.608731947574922 -705,27.0,27.0,5.806823119408364,-22.67145722159613 -705,28.0,26.0,-0.99553355095268,1.881005840357816 -705,28.0,28.0,1.9075867579849564,-3.604364401207048 -705,28.0,29.0,-0.9120532070322764,1.7233585608492326 -705,29.0,26.0,-0.6874559028276572,1.293971494797717 -705,29.0,28.0,-0.9120532070322764,1.7233585608492326 -705,29.0,29.0,1.5995091098599337,-3.0173300556469496 -706,0.0,0.0,6.765516048652632,-21.23160167089863 -706,0.0,1.0,-5.224646179885656,15.646726840803398 -706,0.0,2.0,-1.5408698687669766,5.631674830095234 -706,1.0,0.0,-5.224646179885656,15.646726840803398 -706,1.0,1.0,9.75228216552403,-30.648662892676068 -706,1.0,3.0,-1.7055303166990268,5.1973792282565086 -706,1.0,4.0,-1.1359607881738778,4.772479328281356 -706,1.0,5.0,-1.6861448807654689,5.116477495334806 -706,2.0,0.0,-1.5408698687669766,5.631674830095234 -706,2.0,2.0,9.736318911079088,-29.13794745915803 -706,2.0,3.0,-8.19544904231211,23.5308726290628 -706,3.0,1.0,-1.7055303166990268,5.1973792282565086 -706,3.0,2.0,-8.19544904231211,23.5308726290628 -706,3.0,3.0,16.314103089185693,-55.509410535254254 -706,3.0,5.0,-6.413123730174556,22.31120356548123 -706,3.0,11.0,0.0,4.191255364806866 -706,4.0,1.0,-1.1359607881738778,4.772479328281356 -706,4.0,4.0,4.089980824135861,-12.190647245055052 -706,4.0,6.0,-2.954020035961983,7.449267916773697 -706,5.0,1.0,-1.6861448807654689,5.116477495334806 -706,5.0,3.0,-6.413123730174556,22.31120356548123 -706,5.0,5.0,22.341631269034565,-82.8291478657789 -706,5.0,6.0,-3.590210423980992,11.02611441072814 -706,5.0,7.0,-6.289308176100628,22.0125786163522 -706,5.0,8.0,0.0,4.915840805411357 -706,5.0,9.0,0.0,1.8561002591115965 -706,5.0,27.0,-4.362844058012917,15.463571542897856 -706,6.0,4.0,-2.954020035961983,7.449267916773697 -706,6.0,5.0,-3.590210423980992,11.02611441072814 -706,6.0,6.0,6.544230459942975,-18.45668232750184 -706,7.0,5.0,-6.289308176100628,22.0125786163522 -706,7.0,7.0,7.733287237496075,-26.527493274828448 -706,7.0,27.0,-1.4439790613954469,4.540814658476248 -706,8.0,5.0,0.0,4.915840805411357 -706,8.0,8.0,0.0,-18.706293706293707 -706,8.0,9.0,0.0,9.090909090909092 -706,8.0,10.0,0.0,4.807692307692308 -706,9.0,5.0,0.0,1.8561002591115965 -706,9.0,8.0,0.0,9.090909090909092 -706,9.0,9.0,13.462042814524237,-41.3837606675224 -706,9.0,16.0,-3.956039125715353,10.317447719844054 -706,9.0,19.0,-1.7848303152666305,3.98535828943083 -706,9.0,20.0,-5.101853820159654,10.98071411292983 -706,9.0,21.0,-2.619319553382597,5.400770303329455 -706,10.0,8.0,0.0,4.807692307692308 -706,10.0,10.0,0.0,-4.807692307692308 -706,11.0,3.0,0.0,4.191255364806866 -706,11.0,11.0,6.573961583776156,-24.424167659260668 -706,11.0,12.0,0.0,7.142857142857143 -706,11.0,13.0,-1.5265676088395577,3.1734252729654173 -706,11.0,14.0,-3.0953961826564296,6.097275864326261 -706,11.0,15.0,-1.9519977922801688,4.104359379111847 -706,12.0,11.0,0.0,7.142857142857143 -706,12.0,12.0,0.0,-7.142857142857143 -706,13.0,11.0,-1.5265676088395577,3.1734252729654173 -706,13.0,13.0,4.01751987283902,-5.424299332335067 -706,13.0,14.0,-2.4909522639994623,2.250874059369649 -706,14.0,11.0,-3.0953961826564296,6.097275864326261 -706,14.0,13.0,-2.4909522639994623,2.250874059369649 -706,14.0,14.0,9.365498545964757,-16.01163373210796 -706,14.0,17.0,-1.8108011504072024,3.687418931630696 -706,14.0,22.0,-1.9683489489016612,3.976064876781356 -706,15.0,11.0,-1.9519977922801688,4.104359379111847 -706,15.0,15.0,3.271064728633931,-8.94513365126506 -706,15.0,16.0,-1.3190669363537617,4.8407742721532125 -706,16.0,9.0,-3.956039125715353,10.317447719844054 -706,16.0,15.0,-1.3190669363537617,4.8407742721532125 -706,16.0,16.0,5.275106062069114,-15.158221991997266 -706,17.0,14.0,-1.8108011504072024,3.687418931630696 -706,17.0,17.0,4.886487584415919,-9.906177730909668 -706,17.0,18.0,-3.0756864340087167,6.218758799278971 -706,18.0,17.0,-3.0756864340087167,6.218758799278971 -706,18.0,18.0,8.958039375185187,-17.98346468163191 -706,18.0,19.0,-5.88235294117647,11.76470588235294 -706,19.0,9.0,-1.7848303152666305,3.98535828943083 -706,19.0,18.0,-5.88235294117647,11.76470588235294 -706,19.0,19.0,7.6671832564431,-15.75006417178377 -706,20.0,9.0,-5.101853820159654,10.98071411292983 -706,20.0,20.0,21.876495189895888,-45.10843276170355 -706,20.0,21.0,-16.774641369736234,34.127718648773715 -706,21.0,9.0,-2.619319553382597,5.400770303329455 -706,21.0,20.0,-16.774641369736234,34.127718648773715 -706,21.0,21.0,21.93449907537439,-43.48289181517921 -706,21.0,23.0,-2.5405381522555563,3.95440286307604 -706,22.0,14.0,-1.9683489489016612,3.976064876781356 -706,22.0,22.0,3.429754555384988,-6.965303617315433 -706,22.0,23.0,-1.4614056064833263,2.989238740534077 -706,23.0,21.0,-2.5405381522555563,3.95440286307604 -706,23.0,22.0,-1.4614056064833263,2.989238740534077 -706,23.0,23.0,5.311836702613133,-9.188263657315172 -706,23.0,24.0,-1.3098929438742493,2.287622053705056 -706,24.0,23.0,-1.3098929438742493,2.287622053705056 -706,24.0,24.0,4.495715080321987,-7.864978761969621 -706,24.0,25.0,-1.2165301194494855,1.8171440463475024 -706,24.0,26.0,-1.9692920169982515,3.760212661917064 -706,25.0,24.0,-1.2165301194494855,1.8171440463475024 -706,25.0,25.0,1.2165301194494855,-1.8171440463475024 -706,26.0,24.0,-1.9692920169982515,3.760212661917064 -706,26.0,26.0,3.652281470778589,-9.46044252232512 -706,26.0,27.0,0.0,2.608731947574922 -706,26.0,28.0,-0.99553355095268,1.881005840357816 -706,26.0,29.0,-0.6874559028276572,1.293971494797717 -706,27.0,5.0,-4.362844058012917,15.463571542897856 -706,27.0,7.0,-1.4439790613954469,4.540814658476248 -706,27.0,26.0,0.0,2.608731947574922 -706,27.0,27.0,5.806823119408364,-22.67145722159613 -706,28.0,26.0,-0.99553355095268,1.881005840357816 -706,28.0,28.0,1.9075867579849564,-3.604364401207048 -706,28.0,29.0,-0.9120532070322764,1.7233585608492326 -706,29.0,26.0,-0.6874559028276572,1.293971494797717 -706,29.0,28.0,-0.9120532070322764,1.7233585608492326 -706,29.0,29.0,1.5995091098599337,-3.0173300556469496 -707,0.0,0.0,6.765516048652632,-21.23160167089863 -707,0.0,1.0,-5.224646179885656,15.646726840803398 -707,0.0,2.0,-1.5408698687669766,5.631674830095234 -707,1.0,0.0,-5.224646179885656,15.646726840803398 -707,1.0,1.0,8.066137284758561,-25.55088539734126 -707,1.0,3.0,-1.7055303166990268,5.1973792282565086 -707,1.0,4.0,-1.1359607881738778,4.772479328281356 -707,2.0,0.0,-1.5408698687669766,5.631674830095234 -707,2.0,2.0,9.736318911079088,-29.13794745915803 -707,2.0,3.0,-8.19544904231211,23.5308726290628 -707,3.0,1.0,-1.7055303166990268,5.1973792282565086 -707,3.0,2.0,-8.19544904231211,23.5308726290628 -707,3.0,3.0,16.314103089185693,-55.509410535254254 -707,3.0,5.0,-6.413123730174556,22.31120356548123 -707,3.0,11.0,0.0,4.191255364806866 -707,4.0,1.0,-1.1359607881738778,4.772479328281356 -707,4.0,4.0,4.089980824135861,-12.190647245055052 -707,4.0,6.0,-2.954020035961983,7.449267916773697 -707,5.0,3.0,-6.413123730174556,22.31120356548123 -707,5.0,5.0,20.655486388269097,-77.7313703704441 -707,5.0,6.0,-3.590210423980992,11.02611441072814 -707,5.0,7.0,-6.289308176100628,22.0125786163522 -707,5.0,8.0,0.0,4.915840805411357 -707,5.0,9.0,0.0,1.8561002591115965 -707,5.0,27.0,-4.362844058012917,15.463571542897856 -707,6.0,4.0,-2.954020035961983,7.449267916773697 -707,6.0,5.0,-3.590210423980992,11.02611441072814 -707,6.0,6.0,6.544230459942975,-18.45668232750184 -707,7.0,5.0,-6.289308176100628,22.0125786163522 -707,7.0,7.0,7.733287237496075,-26.527493274828448 -707,7.0,27.0,-1.4439790613954469,4.540814658476248 -707,8.0,5.0,0.0,4.915840805411357 -707,8.0,8.0,0.0,-18.706293706293707 -707,8.0,9.0,0.0,9.090909090909092 -707,8.0,10.0,0.0,4.807692307692308 -707,9.0,5.0,0.0,1.8561002591115965 -707,9.0,8.0,0.0,9.090909090909092 -707,9.0,9.0,13.462042814524237,-41.3837606675224 -707,9.0,16.0,-3.956039125715353,10.317447719844054 -707,9.0,19.0,-1.7848303152666305,3.98535828943083 -707,9.0,20.0,-5.101853820159654,10.98071411292983 -707,9.0,21.0,-2.619319553382597,5.400770303329455 -707,10.0,8.0,0.0,4.807692307692308 -707,10.0,10.0,0.0,-4.807692307692308 -707,11.0,3.0,0.0,4.191255364806866 -707,11.0,11.0,6.573961583776156,-24.424167659260668 -707,11.0,12.0,0.0,7.142857142857143 -707,11.0,13.0,-1.5265676088395577,3.1734252729654173 -707,11.0,14.0,-3.0953961826564296,6.097275864326261 -707,11.0,15.0,-1.9519977922801688,4.104359379111847 -707,12.0,11.0,0.0,7.142857142857143 -707,12.0,12.0,0.0,-7.142857142857143 -707,13.0,11.0,-1.5265676088395577,3.1734252729654173 -707,13.0,13.0,4.01751987283902,-5.424299332335067 -707,13.0,14.0,-2.4909522639994623,2.250874059369649 -707,14.0,11.0,-3.0953961826564296,6.097275864326261 -707,14.0,13.0,-2.4909522639994623,2.250874059369649 -707,14.0,14.0,7.554697395557554,-12.324214800477266 -707,14.0,22.0,-1.9683489489016612,3.976064876781356 -707,15.0,11.0,-1.9519977922801688,4.104359379111847 -707,15.0,15.0,3.271064728633931,-8.94513365126506 -707,15.0,16.0,-1.3190669363537617,4.8407742721532125 -707,16.0,9.0,-3.956039125715353,10.317447719844054 -707,16.0,15.0,-1.3190669363537617,4.8407742721532125 -707,16.0,16.0,5.275106062069114,-15.158221991997266 -707,17.0,17.0,3.0756864340087167,-6.218758799278971 -707,17.0,18.0,-3.0756864340087167,6.218758799278971 -707,18.0,17.0,-3.0756864340087167,6.218758799278971 -707,18.0,18.0,8.958039375185187,-17.98346468163191 -707,18.0,19.0,-5.88235294117647,11.76470588235294 -707,19.0,9.0,-1.7848303152666305,3.98535828943083 -707,19.0,18.0,-5.88235294117647,11.76470588235294 -707,19.0,19.0,7.6671832564431,-15.75006417178377 -707,20.0,9.0,-5.101853820159654,10.98071411292983 -707,20.0,20.0,21.876495189895888,-45.10843276170355 -707,20.0,21.0,-16.774641369736234,34.127718648773715 -707,21.0,9.0,-2.619319553382597,5.400770303329455 -707,21.0,20.0,-16.774641369736234,34.127718648773715 -707,21.0,21.0,21.93449907537439,-43.48289181517921 -707,21.0,23.0,-2.5405381522555563,3.95440286307604 -707,22.0,14.0,-1.9683489489016612,3.976064876781356 -707,22.0,22.0,3.429754555384988,-6.965303617315433 -707,22.0,23.0,-1.4614056064833263,2.989238740534077 -707,23.0,21.0,-2.5405381522555563,3.95440286307604 -707,23.0,22.0,-1.4614056064833263,2.989238740534077 -707,23.0,23.0,4.001943758738883,-6.900641603610116 -707,24.0,24.0,3.185822136447737,-5.577356708264566 -707,24.0,25.0,-1.2165301194494855,1.8171440463475024 -707,24.0,26.0,-1.9692920169982515,3.760212661917064 -707,25.0,24.0,-1.2165301194494855,1.8171440463475024 -707,25.0,25.0,1.2165301194494855,-1.8171440463475024 -707,26.0,24.0,-1.9692920169982515,3.760212661917064 -707,26.0,26.0,3.652281470778589,-9.46044252232512 -707,26.0,27.0,0.0,2.608731947574922 -707,26.0,28.0,-0.99553355095268,1.881005840357816 -707,26.0,29.0,-0.6874559028276572,1.293971494797717 -707,27.0,5.0,-4.362844058012917,15.463571542897856 -707,27.0,7.0,-1.4439790613954469,4.540814658476248 -707,27.0,26.0,0.0,2.608731947574922 -707,27.0,27.0,5.806823119408364,-22.67145722159613 -707,28.0,26.0,-0.99553355095268,1.881005840357816 -707,28.0,28.0,1.9075867579849564,-3.604364401207048 -707,28.0,29.0,-0.9120532070322764,1.7233585608492326 -707,29.0,26.0,-0.6874559028276572,1.293971494797717 -707,29.0,28.0,-0.9120532070322764,1.7233585608492326 -707,29.0,29.0,1.5995091098599337,-3.0173300556469496 -708,0.0,0.0,6.765516048652632,-21.23160167089863 -708,0.0,1.0,-5.224646179885656,15.646726840803398 -708,0.0,2.0,-1.5408698687669766,5.631674830095234 -708,1.0,0.0,-5.224646179885656,15.646726840803398 -708,1.0,1.0,9.75228216552403,-30.648662892676068 -708,1.0,3.0,-1.7055303166990268,5.1973792282565086 -708,1.0,4.0,-1.1359607881738778,4.772479328281356 -708,1.0,5.0,-1.6861448807654689,5.116477495334806 -708,2.0,0.0,-1.5408698687669766,5.631674830095234 -708,2.0,2.0,9.736318911079088,-29.13794745915803 -708,2.0,3.0,-8.19544904231211,23.5308726290628 -708,3.0,1.0,-1.7055303166990268,5.1973792282565086 -708,3.0,2.0,-8.19544904231211,23.5308726290628 -708,3.0,3.0,16.314103089185693,-55.509410535254254 -708,3.0,5.0,-6.413123730174556,22.31120356548123 -708,3.0,11.0,0.0,4.191255364806866 -708,4.0,1.0,-1.1359607881738778,4.772479328281356 -708,4.0,4.0,4.089980824135861,-12.190647245055052 -708,4.0,6.0,-2.954020035961983,7.449267916773697 -708,5.0,1.0,-1.6861448807654689,5.116477495334806 -708,5.0,3.0,-6.413123730174556,22.31120356548123 -708,5.0,5.0,18.75142084505357,-71.81153345505078 -708,5.0,7.0,-6.289308176100628,22.0125786163522 -708,5.0,8.0,0.0,4.915840805411357 -708,5.0,9.0,0.0,1.8561002591115965 -708,5.0,27.0,-4.362844058012917,15.463571542897856 -708,6.0,4.0,-2.954020035961983,7.449267916773697 -708,6.0,6.0,2.954020035961983,-7.439067916773697 -708,7.0,5.0,-6.289308176100628,22.0125786163522 -708,7.0,7.0,7.733287237496075,-26.527493274828448 -708,7.0,27.0,-1.4439790613954469,4.540814658476248 -708,8.0,5.0,0.0,4.915840805411357 -708,8.0,8.0,0.0,-18.706293706293707 -708,8.0,9.0,0.0,9.090909090909092 -708,8.0,10.0,0.0,4.807692307692308 -708,9.0,5.0,0.0,1.8561002591115965 -708,9.0,8.0,0.0,9.090909090909092 -708,9.0,9.0,13.462042814524237,-41.3837606675224 -708,9.0,16.0,-3.956039125715353,10.317447719844054 -708,9.0,19.0,-1.7848303152666305,3.98535828943083 -708,9.0,20.0,-5.101853820159654,10.98071411292983 -708,9.0,21.0,-2.619319553382597,5.400770303329455 -708,10.0,8.0,0.0,4.807692307692308 -708,10.0,10.0,0.0,-4.807692307692308 -708,11.0,3.0,0.0,4.191255364806866 -708,11.0,11.0,6.573961583776156,-24.424167659260668 -708,11.0,12.0,0.0,7.142857142857143 -708,11.0,13.0,-1.5265676088395577,3.1734252729654173 -708,11.0,14.0,-3.0953961826564296,6.097275864326261 -708,11.0,15.0,-1.9519977922801688,4.104359379111847 -708,12.0,11.0,0.0,7.142857142857143 -708,12.0,12.0,0.0,-7.142857142857143 -708,13.0,11.0,-1.5265676088395577,3.1734252729654173 -708,13.0,13.0,4.01751987283902,-5.424299332335067 -708,13.0,14.0,-2.4909522639994623,2.250874059369649 -708,14.0,11.0,-3.0953961826564296,6.097275864326261 -708,14.0,13.0,-2.4909522639994623,2.250874059369649 -708,14.0,14.0,9.365498545964757,-16.01163373210796 -708,14.0,17.0,-1.8108011504072024,3.687418931630696 -708,14.0,22.0,-1.9683489489016612,3.976064876781356 -708,15.0,11.0,-1.9519977922801688,4.104359379111847 -708,15.0,15.0,3.271064728633931,-8.94513365126506 -708,15.0,16.0,-1.3190669363537617,4.8407742721532125 -708,16.0,9.0,-3.956039125715353,10.317447719844054 -708,16.0,15.0,-1.3190669363537617,4.8407742721532125 -708,16.0,16.0,5.275106062069114,-15.158221991997266 -708,17.0,14.0,-1.8108011504072024,3.687418931630696 -708,17.0,17.0,4.886487584415919,-9.906177730909668 -708,17.0,18.0,-3.0756864340087167,6.218758799278971 -708,18.0,17.0,-3.0756864340087167,6.218758799278971 -708,18.0,18.0,8.958039375185187,-17.98346468163191 -708,18.0,19.0,-5.88235294117647,11.76470588235294 -708,19.0,9.0,-1.7848303152666305,3.98535828943083 -708,19.0,18.0,-5.88235294117647,11.76470588235294 -708,19.0,19.0,7.6671832564431,-15.75006417178377 -708,20.0,9.0,-5.101853820159654,10.98071411292983 -708,20.0,20.0,21.876495189895888,-45.10843276170355 -708,20.0,21.0,-16.774641369736234,34.127718648773715 -708,21.0,9.0,-2.619319553382597,5.400770303329455 -708,21.0,20.0,-16.774641369736234,34.127718648773715 -708,21.0,21.0,21.93449907537439,-43.48289181517921 -708,21.0,23.0,-2.5405381522555563,3.95440286307604 -708,22.0,14.0,-1.9683489489016612,3.976064876781356 -708,22.0,22.0,3.429754555384988,-6.965303617315433 -708,22.0,23.0,-1.4614056064833263,2.989238740534077 -708,23.0,21.0,-2.5405381522555563,3.95440286307604 -708,23.0,22.0,-1.4614056064833263,2.989238740534077 -708,23.0,23.0,5.311836702613133,-9.188263657315172 -708,23.0,24.0,-1.3098929438742493,2.287622053705056 -708,24.0,23.0,-1.3098929438742493,2.287622053705056 -708,24.0,24.0,4.495715080321987,-7.864978761969621 -708,24.0,25.0,-1.2165301194494855,1.8171440463475024 -708,24.0,26.0,-1.9692920169982515,3.760212661917064 -708,25.0,24.0,-1.2165301194494855,1.8171440463475024 -708,25.0,25.0,1.2165301194494855,-1.8171440463475024 -708,26.0,24.0,-1.9692920169982515,3.760212661917064 -708,26.0,26.0,3.652281470778589,-9.46044252232512 -708,26.0,27.0,0.0,2.608731947574922 -708,26.0,28.0,-0.99553355095268,1.881005840357816 -708,26.0,29.0,-0.6874559028276572,1.293971494797717 -708,27.0,5.0,-4.362844058012917,15.463571542897856 -708,27.0,7.0,-1.4439790613954469,4.540814658476248 -708,27.0,26.0,0.0,2.608731947574922 -708,27.0,27.0,5.806823119408364,-22.67145722159613 -708,28.0,26.0,-0.99553355095268,1.881005840357816 -708,28.0,28.0,1.9075867579849564,-3.604364401207048 -708,28.0,29.0,-0.9120532070322764,1.7233585608492326 -708,29.0,26.0,-0.6874559028276572,1.293971494797717 -708,29.0,28.0,-0.9120532070322764,1.7233585608492326 -708,29.0,29.0,1.5995091098599337,-3.0173300556469496 -709,0.0,0.0,6.765516048652632,-21.23160167089863 -709,0.0,1.0,-5.224646179885656,15.646726840803398 -709,0.0,2.0,-1.5408698687669766,5.631674830095234 -709,1.0,0.0,-5.224646179885656,15.646726840803398 -709,1.0,1.0,9.75228216552403,-30.648662892676068 -709,1.0,3.0,-1.7055303166990268,5.1973792282565086 -709,1.0,4.0,-1.1359607881738778,4.772479328281356 -709,1.0,5.0,-1.6861448807654689,5.116477495334806 -709,2.0,0.0,-1.5408698687669766,5.631674830095234 -709,2.0,2.0,9.736318911079088,-29.13794745915803 -709,2.0,3.0,-8.19544904231211,23.5308726290628 -709,3.0,1.0,-1.7055303166990268,5.1973792282565086 -709,3.0,2.0,-8.19544904231211,23.5308726290628 -709,3.0,3.0,16.314103089185693,-55.509410535254254 -709,3.0,5.0,-6.413123730174556,22.31120356548123 -709,3.0,11.0,0.0,4.191255364806866 -709,4.0,1.0,-1.1359607881738778,4.772479328281356 -709,4.0,4.0,4.089980824135861,-12.190647245055052 -709,4.0,6.0,-2.954020035961983,7.449267916773697 -709,5.0,1.0,-1.6861448807654689,5.116477495334806 -709,5.0,3.0,-6.413123730174556,22.31120356548123 -709,5.0,5.0,22.341631269034565,-82.8291478657789 -709,5.0,6.0,-3.590210423980992,11.02611441072814 -709,5.0,7.0,-6.289308176100628,22.0125786163522 -709,5.0,8.0,0.0,4.915840805411357 -709,5.0,9.0,0.0,1.8561002591115965 -709,5.0,27.0,-4.362844058012917,15.463571542897856 -709,6.0,4.0,-2.954020035961983,7.449267916773697 -709,6.0,5.0,-3.590210423980992,11.02611441072814 -709,6.0,6.0,6.544230459942975,-18.45668232750184 -709,7.0,5.0,-6.289308176100628,22.0125786163522 -709,7.0,7.0,7.733287237496075,-26.527493274828448 -709,7.0,27.0,-1.4439790613954469,4.540814658476248 -709,8.0,5.0,0.0,4.915840805411357 -709,8.0,8.0,0.0,-18.706293706293707 -709,8.0,9.0,0.0,9.090909090909092 -709,8.0,10.0,0.0,4.807692307692308 -709,9.0,5.0,0.0,1.8561002591115965 -709,9.0,8.0,0.0,9.090909090909092 -709,9.0,9.0,13.462042814524237,-41.3837606675224 -709,9.0,16.0,-3.956039125715353,10.317447719844054 -709,9.0,19.0,-1.7848303152666305,3.98535828943083 -709,9.0,20.0,-5.101853820159654,10.98071411292983 -709,9.0,21.0,-2.619319553382597,5.400770303329455 -709,10.0,8.0,0.0,4.807692307692308 -709,10.0,10.0,0.0,-4.807692307692308 -709,11.0,3.0,0.0,4.191255364806866 -709,11.0,11.0,6.573961583776156,-24.424167659260668 -709,11.0,12.0,0.0,7.142857142857143 -709,11.0,13.0,-1.5265676088395577,3.1734252729654173 -709,11.0,14.0,-3.0953961826564296,6.097275864326261 -709,11.0,15.0,-1.9519977922801688,4.104359379111847 -709,12.0,11.0,0.0,7.142857142857143 -709,12.0,12.0,0.0,-7.142857142857143 -709,13.0,11.0,-1.5265676088395577,3.1734252729654173 -709,13.0,13.0,4.01751987283902,-5.424299332335067 -709,13.0,14.0,-2.4909522639994623,2.250874059369649 -709,14.0,11.0,-3.0953961826564296,6.097275864326261 -709,14.0,13.0,-2.4909522639994623,2.250874059369649 -709,14.0,14.0,9.365498545964757,-16.01163373210796 -709,14.0,17.0,-1.8108011504072024,3.687418931630696 -709,14.0,22.0,-1.9683489489016612,3.976064876781356 -709,15.0,11.0,-1.9519977922801688,4.104359379111847 -709,15.0,15.0,3.271064728633931,-8.94513365126506 -709,15.0,16.0,-1.3190669363537617,4.8407742721532125 -709,16.0,9.0,-3.956039125715353,10.317447719844054 -709,16.0,15.0,-1.3190669363537617,4.8407742721532125 -709,16.0,16.0,5.275106062069114,-15.158221991997266 -709,17.0,14.0,-1.8108011504072024,3.687418931630696 -709,17.0,17.0,4.886487584415919,-9.906177730909668 -709,17.0,18.0,-3.0756864340087167,6.218758799278971 -709,18.0,17.0,-3.0756864340087167,6.218758799278971 -709,18.0,18.0,8.958039375185187,-17.98346468163191 -709,18.0,19.0,-5.88235294117647,11.76470588235294 -709,19.0,9.0,-1.7848303152666305,3.98535828943083 -709,19.0,18.0,-5.88235294117647,11.76470588235294 -709,19.0,19.0,7.6671832564431,-15.75006417178377 -709,20.0,9.0,-5.101853820159654,10.98071411292983 -709,20.0,20.0,21.876495189895888,-45.10843276170355 -709,20.0,21.0,-16.774641369736234,34.127718648773715 -709,21.0,9.0,-2.619319553382597,5.400770303329455 -709,21.0,20.0,-16.774641369736234,34.127718648773715 -709,21.0,21.0,21.93449907537439,-43.48289181517921 -709,21.0,23.0,-2.5405381522555563,3.95440286307604 -709,22.0,14.0,-1.9683489489016612,3.976064876781356 -709,22.0,22.0,3.429754555384988,-6.965303617315433 -709,22.0,23.0,-1.4614056064833263,2.989238740534077 -709,23.0,21.0,-2.5405381522555563,3.95440286307604 -709,23.0,22.0,-1.4614056064833263,2.989238740534077 -709,23.0,23.0,5.311836702613133,-9.188263657315172 -709,23.0,24.0,-1.3098929438742493,2.287622053705056 -709,24.0,23.0,-1.3098929438742493,2.287622053705056 -709,24.0,24.0,4.495715080321987,-7.864978761969621 -709,24.0,25.0,-1.2165301194494855,1.8171440463475024 -709,24.0,26.0,-1.9692920169982515,3.760212661917064 -709,25.0,24.0,-1.2165301194494855,1.8171440463475024 -709,25.0,25.0,1.2165301194494855,-1.8171440463475024 -709,26.0,24.0,-1.9692920169982515,3.760212661917064 -709,26.0,26.0,3.652281470778589,-9.46044252232512 -709,26.0,27.0,0.0,2.608731947574922 -709,26.0,28.0,-0.99553355095268,1.881005840357816 -709,26.0,29.0,-0.6874559028276572,1.293971494797717 -709,27.0,5.0,-4.362844058012917,15.463571542897856 -709,27.0,7.0,-1.4439790613954469,4.540814658476248 -709,27.0,26.0,0.0,2.608731947574922 -709,27.0,27.0,5.806823119408364,-22.67145722159613 -709,28.0,26.0,-0.99553355095268,1.881005840357816 -709,28.0,28.0,1.9075867579849564,-3.604364401207048 -709,28.0,29.0,-0.9120532070322764,1.7233585608492326 -709,29.0,26.0,-0.6874559028276572,1.293971494797717 -709,29.0,28.0,-0.9120532070322764,1.7233585608492326 -709,29.0,29.0,1.5995091098599337,-3.0173300556469496 -710,0.0,0.0,6.765516048652632,-21.23160167089863 -710,0.0,1.0,-5.224646179885656,15.646726840803398 -710,0.0,2.0,-1.5408698687669766,5.631674830095234 -710,1.0,0.0,-5.224646179885656,15.646726840803398 -710,1.0,1.0,9.75228216552403,-30.648662892676068 -710,1.0,3.0,-1.7055303166990268,5.1973792282565086 -710,1.0,4.0,-1.1359607881738778,4.772479328281356 -710,1.0,5.0,-1.6861448807654689,5.116477495334806 -710,2.0,0.0,-1.5408698687669766,5.631674830095234 -710,2.0,2.0,9.736318911079088,-29.13794745915803 -710,2.0,3.0,-8.19544904231211,23.5308726290628 -710,3.0,1.0,-1.7055303166990268,5.1973792282565086 -710,3.0,2.0,-8.19544904231211,23.5308726290628 -710,3.0,3.0,16.314103089185693,-55.509410535254254 -710,3.0,5.0,-6.413123730174556,22.31120356548123 -710,3.0,11.0,0.0,4.191255364806866 -710,4.0,1.0,-1.1359607881738778,4.772479328281356 -710,4.0,4.0,4.089980824135861,-12.190647245055052 -710,4.0,6.0,-2.954020035961983,7.449267916773697 -710,5.0,1.0,-1.6861448807654689,5.116477495334806 -710,5.0,3.0,-6.413123730174556,22.31120356548123 -710,5.0,5.0,22.341631269034565,-82.8291478657789 -710,5.0,6.0,-3.590210423980992,11.02611441072814 -710,5.0,7.0,-6.289308176100628,22.0125786163522 -710,5.0,8.0,0.0,4.915840805411357 -710,5.0,9.0,0.0,1.8561002591115965 -710,5.0,27.0,-4.362844058012917,15.463571542897856 -710,6.0,4.0,-2.954020035961983,7.449267916773697 -710,6.0,5.0,-3.590210423980992,11.02611441072814 -710,6.0,6.0,6.544230459942975,-18.45668232750184 -710,7.0,5.0,-6.289308176100628,22.0125786163522 -710,7.0,7.0,7.733287237496075,-26.527493274828448 -710,7.0,27.0,-1.4439790613954469,4.540814658476248 -710,8.0,5.0,0.0,4.915840805411357 -710,8.0,8.0,0.0,-18.706293706293707 -710,8.0,9.0,0.0,9.090909090909092 -710,8.0,10.0,0.0,4.807692307692308 -710,9.0,5.0,0.0,1.8561002591115965 -710,9.0,8.0,0.0,9.090909090909092 -710,9.0,9.0,13.462042814524237,-41.3837606675224 -710,9.0,16.0,-3.956039125715353,10.317447719844054 -710,9.0,19.0,-1.7848303152666305,3.98535828943083 -710,9.0,20.0,-5.101853820159654,10.98071411292983 -710,9.0,21.0,-2.619319553382597,5.400770303329455 -710,10.0,8.0,0.0,4.807692307692308 -710,10.0,10.0,0.0,-4.807692307692308 -710,11.0,3.0,0.0,4.191255364806866 -710,11.0,11.0,5.047393974936599,-21.25074238629525 -710,11.0,12.0,0.0,7.142857142857143 -710,11.0,14.0,-3.0953961826564296,6.097275864326261 -710,11.0,15.0,-1.9519977922801688,4.104359379111847 -710,12.0,11.0,0.0,7.142857142857143 -710,12.0,12.0,0.0,-7.142857142857143 -710,13.0,13.0,2.4909522639994623,-2.250874059369649 -710,13.0,14.0,-2.4909522639994623,2.250874059369649 -710,14.0,11.0,-3.0953961826564296,6.097275864326261 -710,14.0,13.0,-2.4909522639994623,2.250874059369649 -710,14.0,14.0,9.365498545964757,-16.01163373210796 -710,14.0,17.0,-1.8108011504072024,3.687418931630696 -710,14.0,22.0,-1.9683489489016612,3.976064876781356 -710,15.0,11.0,-1.9519977922801688,4.104359379111847 -710,15.0,15.0,3.271064728633931,-8.94513365126506 -710,15.0,16.0,-1.3190669363537617,4.8407742721532125 -710,16.0,9.0,-3.956039125715353,10.317447719844054 -710,16.0,15.0,-1.3190669363537617,4.8407742721532125 -710,16.0,16.0,5.275106062069114,-15.158221991997266 -710,17.0,14.0,-1.8108011504072024,3.687418931630696 -710,17.0,17.0,4.886487584415919,-9.906177730909668 -710,17.0,18.0,-3.0756864340087167,6.218758799278971 -710,18.0,17.0,-3.0756864340087167,6.218758799278971 -710,18.0,18.0,8.958039375185187,-17.98346468163191 -710,18.0,19.0,-5.88235294117647,11.76470588235294 -710,19.0,9.0,-1.7848303152666305,3.98535828943083 -710,19.0,18.0,-5.88235294117647,11.76470588235294 -710,19.0,19.0,7.6671832564431,-15.75006417178377 -710,20.0,9.0,-5.101853820159654,10.98071411292983 -710,20.0,20.0,21.876495189895888,-45.10843276170355 -710,20.0,21.0,-16.774641369736234,34.127718648773715 -710,21.0,9.0,-2.619319553382597,5.400770303329455 -710,21.0,20.0,-16.774641369736234,34.127718648773715 -710,21.0,21.0,21.93449907537439,-43.48289181517921 -710,21.0,23.0,-2.5405381522555563,3.95440286307604 -710,22.0,14.0,-1.9683489489016612,3.976064876781356 -710,22.0,22.0,3.429754555384988,-6.965303617315433 -710,22.0,23.0,-1.4614056064833263,2.989238740534077 -710,23.0,21.0,-2.5405381522555563,3.95440286307604 -710,23.0,22.0,-1.4614056064833263,2.989238740534077 -710,23.0,23.0,5.311836702613133,-9.188263657315172 -710,23.0,24.0,-1.3098929438742493,2.287622053705056 -710,24.0,23.0,-1.3098929438742493,2.287622053705056 -710,24.0,24.0,4.495715080321987,-7.864978761969621 -710,24.0,25.0,-1.2165301194494855,1.8171440463475024 -710,24.0,26.0,-1.9692920169982515,3.760212661917064 -710,25.0,24.0,-1.2165301194494855,1.8171440463475024 -710,25.0,25.0,1.2165301194494855,-1.8171440463475024 -710,26.0,24.0,-1.9692920169982515,3.760212661917064 -710,26.0,26.0,3.652281470778589,-9.46044252232512 -710,26.0,27.0,0.0,2.608731947574922 -710,26.0,28.0,-0.99553355095268,1.881005840357816 -710,26.0,29.0,-0.6874559028276572,1.293971494797717 -710,27.0,5.0,-4.362844058012917,15.463571542897856 -710,27.0,7.0,-1.4439790613954469,4.540814658476248 -710,27.0,26.0,0.0,2.608731947574922 -710,27.0,27.0,5.806823119408364,-22.67145722159613 -710,28.0,26.0,-0.99553355095268,1.881005840357816 -710,28.0,28.0,1.9075867579849564,-3.604364401207048 -710,28.0,29.0,-0.9120532070322764,1.7233585608492326 -710,29.0,26.0,-0.6874559028276572,1.293971494797717 -710,29.0,28.0,-0.9120532070322764,1.7233585608492326 -710,29.0,29.0,1.5995091098599337,-3.0173300556469496 -711,0.0,0.0,6.765516048652632,-21.23160167089863 -711,0.0,1.0,-5.224646179885656,15.646726840803398 -711,0.0,2.0,-1.5408698687669766,5.631674830095234 -711,1.0,0.0,-5.224646179885656,15.646726840803398 -711,1.0,1.0,9.75228216552403,-30.648662892676068 -711,1.0,3.0,-1.7055303166990268,5.1973792282565086 -711,1.0,4.0,-1.1359607881738778,4.772479328281356 -711,1.0,5.0,-1.6861448807654689,5.116477495334806 -711,2.0,0.0,-1.5408698687669766,5.631674830095234 -711,2.0,2.0,9.736318911079088,-29.13794745915803 -711,2.0,3.0,-8.19544904231211,23.5308726290628 -711,3.0,1.0,-1.7055303166990268,5.1973792282565086 -711,3.0,2.0,-8.19544904231211,23.5308726290628 -711,3.0,3.0,16.314103089185693,-55.509410535254254 -711,3.0,5.0,-6.413123730174556,22.31120356548123 -711,3.0,11.0,0.0,4.191255364806866 -711,4.0,1.0,-1.1359607881738778,4.772479328281356 -711,4.0,4.0,4.089980824135861,-12.190647245055052 -711,4.0,6.0,-2.954020035961983,7.449267916773697 -711,5.0,1.0,-1.6861448807654689,5.116477495334806 -711,5.0,3.0,-6.413123730174556,22.31120356548123 -711,5.0,5.0,22.341631269034565,-82.8291478657789 -711,5.0,6.0,-3.590210423980992,11.02611441072814 -711,5.0,7.0,-6.289308176100628,22.0125786163522 -711,5.0,8.0,0.0,4.915840805411357 -711,5.0,9.0,0.0,1.8561002591115965 -711,5.0,27.0,-4.362844058012917,15.463571542897856 -711,6.0,4.0,-2.954020035961983,7.449267916773697 -711,6.0,5.0,-3.590210423980992,11.02611441072814 -711,6.0,6.0,6.544230459942975,-18.45668232750184 -711,7.0,5.0,-6.289308176100628,22.0125786163522 -711,7.0,7.0,7.733287237496075,-26.527493274828448 -711,7.0,27.0,-1.4439790613954469,4.540814658476248 -711,8.0,5.0,0.0,4.915840805411357 -711,8.0,8.0,0.0,-18.706293706293707 -711,8.0,9.0,0.0,9.090909090909092 -711,8.0,10.0,0.0,4.807692307692308 -711,9.0,5.0,0.0,1.8561002591115965 -711,9.0,8.0,0.0,9.090909090909092 -711,9.0,9.0,13.462042814524237,-41.3837606675224 -711,9.0,16.0,-3.956039125715353,10.317447719844054 -711,9.0,19.0,-1.7848303152666305,3.98535828943083 -711,9.0,20.0,-5.101853820159654,10.98071411292983 -711,9.0,21.0,-2.619319553382597,5.400770303329455 -711,10.0,8.0,0.0,4.807692307692308 -711,10.0,10.0,0.0,-4.807692307692308 -711,11.0,3.0,0.0,4.191255364806866 -711,11.0,11.0,6.573961583776156,-24.424167659260668 -711,11.0,12.0,0.0,7.142857142857143 -711,11.0,13.0,-1.5265676088395577,3.1734252729654173 -711,11.0,14.0,-3.0953961826564296,6.097275864326261 -711,11.0,15.0,-1.9519977922801688,4.104359379111847 -711,12.0,11.0,0.0,7.142857142857143 -711,12.0,12.0,0.0,-7.142857142857143 -711,13.0,11.0,-1.5265676088395577,3.1734252729654173 -711,13.0,13.0,4.01751987283902,-5.424299332335067 -711,13.0,14.0,-2.4909522639994623,2.250874059369649 -711,14.0,11.0,-3.0953961826564296,6.097275864326261 -711,14.0,13.0,-2.4909522639994623,2.250874059369649 -711,14.0,14.0,9.365498545964757,-16.01163373210796 -711,14.0,17.0,-1.8108011504072024,3.687418931630696 -711,14.0,22.0,-1.9683489489016612,3.976064876781356 -711,15.0,11.0,-1.9519977922801688,4.104359379111847 -711,15.0,15.0,3.271064728633931,-8.94513365126506 -711,15.0,16.0,-1.3190669363537617,4.8407742721532125 -711,16.0,9.0,-3.956039125715353,10.317447719844054 -711,16.0,15.0,-1.3190669363537617,4.8407742721532125 -711,16.0,16.0,5.275106062069114,-15.158221991997266 -711,17.0,14.0,-1.8108011504072024,3.687418931630696 -711,17.0,17.0,4.886487584415919,-9.906177730909668 -711,17.0,18.0,-3.0756864340087167,6.218758799278971 -711,18.0,17.0,-3.0756864340087167,6.218758799278971 -711,18.0,18.0,8.958039375185187,-17.98346468163191 -711,18.0,19.0,-5.88235294117647,11.76470588235294 -711,19.0,9.0,-1.7848303152666305,3.98535828943083 -711,19.0,18.0,-5.88235294117647,11.76470588235294 -711,19.0,19.0,7.6671832564431,-15.75006417178377 -711,20.0,9.0,-5.101853820159654,10.98071411292983 -711,20.0,20.0,21.876495189895888,-45.10843276170355 -711,20.0,21.0,-16.774641369736234,34.127718648773715 -711,21.0,9.0,-2.619319553382597,5.400770303329455 -711,21.0,20.0,-16.774641369736234,34.127718648773715 -711,21.0,21.0,21.93449907537439,-43.48289181517921 -711,21.0,23.0,-2.5405381522555563,3.95440286307604 -711,22.0,14.0,-1.9683489489016612,3.976064876781356 -711,22.0,22.0,3.429754555384988,-6.965303617315433 -711,22.0,23.0,-1.4614056064833263,2.989238740534077 -711,23.0,21.0,-2.5405381522555563,3.95440286307604 -711,23.0,22.0,-1.4614056064833263,2.989238740534077 -711,23.0,23.0,5.311836702613133,-9.188263657315172 -711,23.0,24.0,-1.3098929438742493,2.287622053705056 -711,24.0,23.0,-1.3098929438742493,2.287622053705056 -711,24.0,24.0,4.495715080321987,-7.864978761969621 -711,24.0,25.0,-1.2165301194494855,1.8171440463475024 -711,24.0,26.0,-1.9692920169982515,3.760212661917064 -711,25.0,24.0,-1.2165301194494855,1.8171440463475024 -711,25.0,25.0,1.2165301194494855,-1.8171440463475024 -711,26.0,24.0,-1.9692920169982515,3.760212661917064 -711,26.0,26.0,3.652281470778589,-9.46044252232512 -711,26.0,27.0,0.0,2.608731947574922 -711,26.0,28.0,-0.99553355095268,1.881005840357816 -711,26.0,29.0,-0.6874559028276572,1.293971494797717 -711,27.0,5.0,-4.362844058012917,15.463571542897856 -711,27.0,7.0,-1.4439790613954469,4.540814658476248 -711,27.0,26.0,0.0,2.608731947574922 -711,27.0,27.0,5.806823119408364,-22.67145722159613 -711,28.0,26.0,-0.99553355095268,1.881005840357816 -711,28.0,28.0,1.9075867579849564,-3.604364401207048 -711,28.0,29.0,-0.9120532070322764,1.7233585608492326 -711,29.0,26.0,-0.6874559028276572,1.293971494797717 -711,29.0,28.0,-0.9120532070322764,1.7233585608492326 -711,29.0,29.0,1.5995091098599337,-3.0173300556469496 -712,0.0,0.0,6.765516048652632,-21.23160167089863 -712,0.0,1.0,-5.224646179885656,15.646726840803398 -712,0.0,2.0,-1.5408698687669766,5.631674830095234 -712,1.0,0.0,-5.224646179885656,15.646726840803398 -712,1.0,1.0,8.066137284758561,-25.55088539734126 -712,1.0,3.0,-1.7055303166990268,5.1973792282565086 -712,1.0,4.0,-1.1359607881738778,4.772479328281356 -712,2.0,0.0,-1.5408698687669766,5.631674830095234 -712,2.0,2.0,9.736318911079088,-29.13794745915803 -712,2.0,3.0,-8.19544904231211,23.5308726290628 -712,3.0,1.0,-1.7055303166990268,5.1973792282565086 -712,3.0,2.0,-8.19544904231211,23.5308726290628 -712,3.0,3.0,16.314103089185693,-55.509410535254254 -712,3.0,5.0,-6.413123730174556,22.31120356548123 -712,3.0,11.0,0.0,4.191255364806866 -712,4.0,1.0,-1.1359607881738778,4.772479328281356 -712,4.0,4.0,4.089980824135861,-12.190647245055052 -712,4.0,6.0,-2.954020035961983,7.449267916773697 -712,5.0,3.0,-6.413123730174556,22.31120356548123 -712,5.0,5.0,20.655486388269097,-77.7313703704441 -712,5.0,6.0,-3.590210423980992,11.02611441072814 -712,5.0,7.0,-6.289308176100628,22.0125786163522 -712,5.0,8.0,0.0,4.915840805411357 -712,5.0,9.0,0.0,1.8561002591115965 -712,5.0,27.0,-4.362844058012917,15.463571542897856 -712,6.0,4.0,-2.954020035961983,7.449267916773697 -712,6.0,5.0,-3.590210423980992,11.02611441072814 -712,6.0,6.0,6.544230459942975,-18.45668232750184 -712,7.0,5.0,-6.289308176100628,22.0125786163522 -712,7.0,7.0,7.733287237496075,-26.527493274828448 -712,7.0,27.0,-1.4439790613954469,4.540814658476248 -712,8.0,5.0,0.0,4.915840805411357 -712,8.0,8.0,0.0,-18.706293706293707 -712,8.0,9.0,0.0,9.090909090909092 -712,8.0,10.0,0.0,4.807692307692308 -712,9.0,5.0,0.0,1.8561002591115965 -712,9.0,8.0,0.0,9.090909090909092 -712,9.0,9.0,13.462042814524237,-41.3837606675224 -712,9.0,16.0,-3.956039125715353,10.317447719844054 -712,9.0,19.0,-1.7848303152666305,3.98535828943083 -712,9.0,20.0,-5.101853820159654,10.98071411292983 -712,9.0,21.0,-2.619319553382597,5.400770303329455 -712,10.0,8.0,0.0,4.807692307692308 -712,10.0,10.0,0.0,-4.807692307692308 -712,11.0,3.0,0.0,4.191255364806866 -712,11.0,11.0,4.621963791495987,-20.31980828014882 -712,11.0,12.0,0.0,7.142857142857143 -712,11.0,13.0,-1.5265676088395577,3.1734252729654173 -712,11.0,14.0,-3.0953961826564296,6.097275864326261 -712,12.0,11.0,0.0,7.142857142857143 -712,12.0,12.0,0.0,-7.142857142857143 -712,13.0,11.0,-1.5265676088395577,3.1734252729654173 -712,13.0,13.0,4.01751987283902,-5.424299332335067 -712,13.0,14.0,-2.4909522639994623,2.250874059369649 -712,14.0,11.0,-3.0953961826564296,6.097275864326261 -712,14.0,13.0,-2.4909522639994623,2.250874059369649 -712,14.0,14.0,9.365498545964757,-16.01163373210796 -712,14.0,17.0,-1.8108011504072024,3.687418931630696 -712,14.0,22.0,-1.9683489489016612,3.976064876781356 -712,15.0,15.0,1.3190669363537617,-4.8407742721532125 -712,15.0,16.0,-1.3190669363537617,4.8407742721532125 -712,16.0,9.0,-3.956039125715353,10.317447719844054 -712,16.0,15.0,-1.3190669363537617,4.8407742721532125 -712,16.0,16.0,5.275106062069114,-15.158221991997266 -712,17.0,14.0,-1.8108011504072024,3.687418931630696 -712,17.0,17.0,4.886487584415919,-9.906177730909668 -712,17.0,18.0,-3.0756864340087167,6.218758799278971 -712,18.0,17.0,-3.0756864340087167,6.218758799278971 -712,18.0,18.0,8.958039375185187,-17.98346468163191 -712,18.0,19.0,-5.88235294117647,11.76470588235294 -712,19.0,9.0,-1.7848303152666305,3.98535828943083 -712,19.0,18.0,-5.88235294117647,11.76470588235294 -712,19.0,19.0,7.6671832564431,-15.75006417178377 -712,20.0,9.0,-5.101853820159654,10.98071411292983 -712,20.0,20.0,21.876495189895888,-45.10843276170355 -712,20.0,21.0,-16.774641369736234,34.127718648773715 -712,21.0,9.0,-2.619319553382597,5.400770303329455 -712,21.0,20.0,-16.774641369736234,34.127718648773715 -712,21.0,21.0,21.93449907537439,-43.48289181517921 -712,21.0,23.0,-2.5405381522555563,3.95440286307604 -712,22.0,14.0,-1.9683489489016612,3.976064876781356 -712,22.0,22.0,3.429754555384988,-6.965303617315433 -712,22.0,23.0,-1.4614056064833263,2.989238740534077 -712,23.0,21.0,-2.5405381522555563,3.95440286307604 -712,23.0,22.0,-1.4614056064833263,2.989238740534077 -712,23.0,23.0,5.311836702613133,-9.188263657315172 -712,23.0,24.0,-1.3098929438742493,2.287622053705056 -712,24.0,23.0,-1.3098929438742493,2.287622053705056 -712,24.0,24.0,4.495715080321987,-7.864978761969621 -712,24.0,25.0,-1.2165301194494855,1.8171440463475024 -712,24.0,26.0,-1.9692920169982515,3.760212661917064 -712,25.0,24.0,-1.2165301194494855,1.8171440463475024 -712,25.0,25.0,1.2165301194494855,-1.8171440463475024 -712,26.0,24.0,-1.9692920169982515,3.760212661917064 -712,26.0,26.0,3.652281470778589,-9.46044252232512 -712,26.0,27.0,0.0,2.608731947574922 -712,26.0,28.0,-0.99553355095268,1.881005840357816 -712,26.0,29.0,-0.6874559028276572,1.293971494797717 -712,27.0,5.0,-4.362844058012917,15.463571542897856 -712,27.0,7.0,-1.4439790613954469,4.540814658476248 -712,27.0,26.0,0.0,2.608731947574922 -712,27.0,27.0,5.806823119408364,-22.67145722159613 -712,28.0,26.0,-0.99553355095268,1.881005840357816 -712,28.0,28.0,1.9075867579849564,-3.604364401207048 -712,28.0,29.0,-0.9120532070322764,1.7233585608492326 -712,29.0,26.0,-0.6874559028276572,1.293971494797717 -712,29.0,28.0,-0.9120532070322764,1.7233585608492326 -712,29.0,29.0,1.5995091098599337,-3.0173300556469496 -713,0.0,0.0,1.5408698687669766,-5.611274830095233 -713,0.0,2.0,-1.5408698687669766,5.631674830095234 -713,1.0,1.0,4.527635985638374,-15.028336051872673 -713,1.0,3.0,-1.7055303166990268,5.1973792282565086 -713,1.0,4.0,-1.1359607881738778,4.772479328281356 -713,1.0,5.0,-1.6861448807654689,5.116477495334806 -713,2.0,0.0,-1.5408698687669766,5.631674830095234 -713,2.0,2.0,9.736318911079088,-29.13794745915803 -713,2.0,3.0,-8.19544904231211,23.5308726290628 -713,3.0,1.0,-1.7055303166990268,5.1973792282565086 -713,3.0,2.0,-8.19544904231211,23.5308726290628 -713,3.0,3.0,16.314103089185693,-55.509410535254254 -713,3.0,5.0,-6.413123730174556,22.31120356548123 -713,3.0,11.0,0.0,4.191255364806866 -713,4.0,1.0,-1.1359607881738778,4.772479328281356 -713,4.0,4.0,4.089980824135861,-12.190647245055052 -713,4.0,6.0,-2.954020035961983,7.449267916773697 -713,5.0,1.0,-1.6861448807654689,5.116477495334806 -713,5.0,3.0,-6.413123730174556,22.31120356548123 -713,5.0,5.0,22.341631269034565,-82.8291478657789 -713,5.0,6.0,-3.590210423980992,11.02611441072814 -713,5.0,7.0,-6.289308176100628,22.0125786163522 -713,5.0,8.0,0.0,4.915840805411357 -713,5.0,9.0,0.0,1.8561002591115965 -713,5.0,27.0,-4.362844058012917,15.463571542897856 -713,6.0,4.0,-2.954020035961983,7.449267916773697 -713,6.0,5.0,-3.590210423980992,11.02611441072814 -713,6.0,6.0,6.544230459942975,-18.45668232750184 -713,7.0,5.0,-6.289308176100628,22.0125786163522 -713,7.0,7.0,7.733287237496075,-26.527493274828448 -713,7.0,27.0,-1.4439790613954469,4.540814658476248 -713,8.0,5.0,0.0,4.915840805411357 -713,8.0,8.0,0.0,-18.706293706293707 -713,8.0,9.0,0.0,9.090909090909092 -713,8.0,10.0,0.0,4.807692307692308 -713,9.0,5.0,0.0,1.8561002591115965 -713,9.0,8.0,0.0,9.090909090909092 -713,9.0,9.0,13.462042814524237,-41.3837606675224 -713,9.0,16.0,-3.956039125715353,10.317447719844054 -713,9.0,19.0,-1.7848303152666305,3.98535828943083 -713,9.0,20.0,-5.101853820159654,10.98071411292983 -713,9.0,21.0,-2.619319553382597,5.400770303329455 -713,10.0,8.0,0.0,4.807692307692308 -713,10.0,10.0,0.0,-4.807692307692308 -713,11.0,3.0,0.0,4.191255364806866 -713,11.0,11.0,6.573961583776156,-24.424167659260668 -713,11.0,12.0,0.0,7.142857142857143 -713,11.0,13.0,-1.5265676088395577,3.1734252729654173 -713,11.0,14.0,-3.0953961826564296,6.097275864326261 -713,11.0,15.0,-1.9519977922801688,4.104359379111847 -713,12.0,11.0,0.0,7.142857142857143 -713,12.0,12.0,0.0,-7.142857142857143 -713,13.0,11.0,-1.5265676088395577,3.1734252729654173 -713,13.0,13.0,4.01751987283902,-5.424299332335067 -713,13.0,14.0,-2.4909522639994623,2.250874059369649 -713,14.0,11.0,-3.0953961826564296,6.097275864326261 -713,14.0,13.0,-2.4909522639994623,2.250874059369649 -713,14.0,14.0,9.365498545964757,-16.01163373210796 -713,14.0,17.0,-1.8108011504072024,3.687418931630696 -713,14.0,22.0,-1.9683489489016612,3.976064876781356 -713,15.0,11.0,-1.9519977922801688,4.104359379111847 -713,15.0,15.0,3.271064728633931,-8.94513365126506 -713,15.0,16.0,-1.3190669363537617,4.8407742721532125 -713,16.0,9.0,-3.956039125715353,10.317447719844054 -713,16.0,15.0,-1.3190669363537617,4.8407742721532125 -713,16.0,16.0,5.275106062069114,-15.158221991997266 -713,17.0,14.0,-1.8108011504072024,3.687418931630696 -713,17.0,17.0,4.886487584415919,-9.906177730909668 -713,17.0,18.0,-3.0756864340087167,6.218758799278971 -713,18.0,17.0,-3.0756864340087167,6.218758799278971 -713,18.0,18.0,8.958039375185187,-17.98346468163191 -713,18.0,19.0,-5.88235294117647,11.76470588235294 -713,19.0,9.0,-1.7848303152666305,3.98535828943083 -713,19.0,18.0,-5.88235294117647,11.76470588235294 -713,19.0,19.0,7.6671832564431,-15.75006417178377 -713,20.0,9.0,-5.101853820159654,10.98071411292983 -713,20.0,20.0,21.876495189895888,-45.10843276170355 -713,20.0,21.0,-16.774641369736234,34.127718648773715 -713,21.0,9.0,-2.619319553382597,5.400770303329455 -713,21.0,20.0,-16.774641369736234,34.127718648773715 -713,21.0,21.0,21.93449907537439,-43.48289181517921 -713,21.0,23.0,-2.5405381522555563,3.95440286307604 -713,22.0,14.0,-1.9683489489016612,3.976064876781356 -713,22.0,22.0,3.429754555384988,-6.965303617315433 -713,22.0,23.0,-1.4614056064833263,2.989238740534077 -713,23.0,21.0,-2.5405381522555563,3.95440286307604 -713,23.0,22.0,-1.4614056064833263,2.989238740534077 -713,23.0,23.0,5.311836702613133,-9.188263657315172 -713,23.0,24.0,-1.3098929438742493,2.287622053705056 -713,24.0,23.0,-1.3098929438742493,2.287622053705056 -713,24.0,24.0,4.495715080321987,-7.864978761969621 -713,24.0,25.0,-1.2165301194494855,1.8171440463475024 -713,24.0,26.0,-1.9692920169982515,3.760212661917064 -713,25.0,24.0,-1.2165301194494855,1.8171440463475024 -713,25.0,25.0,1.2165301194494855,-1.8171440463475024 -713,26.0,24.0,-1.9692920169982515,3.760212661917064 -713,26.0,26.0,3.652281470778589,-9.46044252232512 -713,26.0,27.0,0.0,2.608731947574922 -713,26.0,28.0,-0.99553355095268,1.881005840357816 -713,26.0,29.0,-0.6874559028276572,1.293971494797717 -713,27.0,5.0,-4.362844058012917,15.463571542897856 -713,27.0,7.0,-1.4439790613954469,4.540814658476248 -713,27.0,26.0,0.0,2.608731947574922 -713,27.0,27.0,5.806823119408364,-22.67145722159613 -713,28.0,26.0,-0.99553355095268,1.881005840357816 -713,28.0,28.0,1.9075867579849564,-3.604364401207048 -713,28.0,29.0,-0.9120532070322764,1.7233585608492326 -713,29.0,26.0,-0.6874559028276572,1.293971494797717 -713,29.0,28.0,-0.9120532070322764,1.7233585608492326 -713,29.0,29.0,1.5995091098599337,-3.0173300556469496 -714,0.0,0.0,6.765516048652632,-21.23160167089863 -714,0.0,1.0,-5.224646179885656,15.646726840803398 -714,0.0,2.0,-1.5408698687669766,5.631674830095234 -714,1.0,0.0,-5.224646179885656,15.646726840803398 -714,1.0,1.0,8.046751848825002,-25.46968366441956 -714,1.0,4.0,-1.1359607881738778,4.772479328281356 -714,1.0,5.0,-1.6861448807654689,5.116477495334806 -714,2.0,0.0,-1.5408698687669766,5.631674830095234 -714,2.0,2.0,9.736318911079088,-29.13794745915803 -714,2.0,3.0,-8.19544904231211,23.5308726290628 -714,3.0,2.0,-8.19544904231211,23.5308726290628 -714,3.0,3.0,14.608572772486664,-50.33043130699775 -714,3.0,5.0,-6.413123730174556,22.31120356548123 -714,3.0,11.0,0.0,4.191255364806866 -714,4.0,1.0,-1.1359607881738778,4.772479328281356 -714,4.0,4.0,4.089980824135861,-12.190647245055052 -714,4.0,6.0,-2.954020035961983,7.449267916773697 -714,5.0,1.0,-1.6861448807654689,5.116477495334806 -714,5.0,3.0,-6.413123730174556,22.31120356548123 -714,5.0,5.0,22.341631269034565,-82.8291478657789 -714,5.0,6.0,-3.590210423980992,11.02611441072814 -714,5.0,7.0,-6.289308176100628,22.0125786163522 -714,5.0,8.0,0.0,4.915840805411357 -714,5.0,9.0,0.0,1.8561002591115965 -714,5.0,27.0,-4.362844058012917,15.463571542897856 -714,6.0,4.0,-2.954020035961983,7.449267916773697 -714,6.0,5.0,-3.590210423980992,11.02611441072814 -714,6.0,6.0,6.544230459942975,-18.45668232750184 -714,7.0,5.0,-6.289308176100628,22.0125786163522 -714,7.0,7.0,7.733287237496075,-26.527493274828448 -714,7.0,27.0,-1.4439790613954469,4.540814658476248 -714,8.0,5.0,0.0,4.915840805411357 -714,8.0,8.0,0.0,-18.706293706293707 -714,8.0,9.0,0.0,9.090909090909092 -714,8.0,10.0,0.0,4.807692307692308 -714,9.0,5.0,0.0,1.8561002591115965 -714,9.0,8.0,0.0,9.090909090909092 -714,9.0,9.0,13.462042814524237,-41.3837606675224 -714,9.0,16.0,-3.956039125715353,10.317447719844054 -714,9.0,19.0,-1.7848303152666305,3.98535828943083 -714,9.0,20.0,-5.101853820159654,10.98071411292983 -714,9.0,21.0,-2.619319553382597,5.400770303329455 -714,10.0,8.0,0.0,4.807692307692308 -714,10.0,10.0,0.0,-4.807692307692308 -714,11.0,3.0,0.0,4.191255364806866 -714,11.0,11.0,6.573961583776156,-24.424167659260668 -714,11.0,12.0,0.0,7.142857142857143 -714,11.0,13.0,-1.5265676088395577,3.1734252729654173 -714,11.0,14.0,-3.0953961826564296,6.097275864326261 -714,11.0,15.0,-1.9519977922801688,4.104359379111847 -714,12.0,11.0,0.0,7.142857142857143 -714,12.0,12.0,0.0,-7.142857142857143 -714,13.0,11.0,-1.5265676088395577,3.1734252729654173 -714,13.0,13.0,4.01751987283902,-5.424299332335067 -714,13.0,14.0,-2.4909522639994623,2.250874059369649 -714,14.0,11.0,-3.0953961826564296,6.097275864326261 -714,14.0,13.0,-2.4909522639994623,2.250874059369649 -714,14.0,14.0,9.365498545964757,-16.01163373210796 -714,14.0,17.0,-1.8108011504072024,3.687418931630696 -714,14.0,22.0,-1.9683489489016612,3.976064876781356 -714,15.0,11.0,-1.9519977922801688,4.104359379111847 -714,15.0,15.0,3.271064728633931,-8.94513365126506 -714,15.0,16.0,-1.3190669363537617,4.8407742721532125 -714,16.0,9.0,-3.956039125715353,10.317447719844054 -714,16.0,15.0,-1.3190669363537617,4.8407742721532125 -714,16.0,16.0,5.275106062069114,-15.158221991997266 -714,17.0,14.0,-1.8108011504072024,3.687418931630696 -714,17.0,17.0,4.886487584415919,-9.906177730909668 -714,17.0,18.0,-3.0756864340087167,6.218758799278971 -714,18.0,17.0,-3.0756864340087167,6.218758799278971 -714,18.0,18.0,8.958039375185187,-17.98346468163191 -714,18.0,19.0,-5.88235294117647,11.76470588235294 -714,19.0,9.0,-1.7848303152666305,3.98535828943083 -714,19.0,18.0,-5.88235294117647,11.76470588235294 -714,19.0,19.0,7.6671832564431,-15.75006417178377 -714,20.0,9.0,-5.101853820159654,10.98071411292983 -714,20.0,20.0,21.876495189895888,-45.10843276170355 -714,20.0,21.0,-16.774641369736234,34.127718648773715 -714,21.0,9.0,-2.619319553382597,5.400770303329455 -714,21.0,20.0,-16.774641369736234,34.127718648773715 -714,21.0,21.0,21.93449907537439,-43.48289181517921 -714,21.0,23.0,-2.5405381522555563,3.95440286307604 -714,22.0,14.0,-1.9683489489016612,3.976064876781356 -714,22.0,22.0,3.429754555384988,-6.965303617315433 -714,22.0,23.0,-1.4614056064833263,2.989238740534077 -714,23.0,21.0,-2.5405381522555563,3.95440286307604 -714,23.0,22.0,-1.4614056064833263,2.989238740534077 -714,23.0,23.0,5.311836702613133,-9.188263657315172 -714,23.0,24.0,-1.3098929438742493,2.287622053705056 -714,24.0,23.0,-1.3098929438742493,2.287622053705056 -714,24.0,24.0,4.495715080321987,-7.864978761969621 -714,24.0,25.0,-1.2165301194494855,1.8171440463475024 -714,24.0,26.0,-1.9692920169982515,3.760212661917064 -714,25.0,24.0,-1.2165301194494855,1.8171440463475024 -714,25.0,25.0,1.2165301194494855,-1.8171440463475024 -714,26.0,24.0,-1.9692920169982515,3.760212661917064 -714,26.0,26.0,3.652281470778589,-9.46044252232512 -714,26.0,27.0,0.0,2.608731947574922 -714,26.0,28.0,-0.99553355095268,1.881005840357816 -714,26.0,29.0,-0.6874559028276572,1.293971494797717 -714,27.0,5.0,-4.362844058012917,15.463571542897856 -714,27.0,7.0,-1.4439790613954469,4.540814658476248 -714,27.0,26.0,0.0,2.608731947574922 -714,27.0,27.0,5.806823119408364,-22.67145722159613 -714,28.0,26.0,-0.99553355095268,1.881005840357816 -714,28.0,28.0,1.9075867579849564,-3.604364401207048 -714,28.0,29.0,-0.9120532070322764,1.7233585608492326 -714,29.0,26.0,-0.6874559028276572,1.293971494797717 -714,29.0,28.0,-0.9120532070322764,1.7233585608492326 -714,29.0,29.0,1.5995091098599337,-3.0173300556469496 -715,0.0,0.0,1.5408698687669766,-5.611274830095233 -715,0.0,2.0,-1.5408698687669766,5.631674830095234 -715,1.0,1.0,3.391675197464496,-10.276756723591316 -715,1.0,3.0,-1.7055303166990268,5.1973792282565086 -715,1.0,5.0,-1.6861448807654689,5.116477495334806 -715,2.0,0.0,-1.5408698687669766,5.631674830095234 -715,2.0,2.0,9.736318911079088,-29.13794745915803 -715,2.0,3.0,-8.19544904231211,23.5308726290628 -715,3.0,1.0,-1.7055303166990268,5.1973792282565086 -715,3.0,2.0,-8.19544904231211,23.5308726290628 -715,3.0,3.0,16.314103089185693,-55.509410535254254 -715,3.0,5.0,-6.413123730174556,22.31120356548123 -715,3.0,11.0,0.0,4.191255364806866 -715,4.0,4.0,2.954020035961983,-7.439067916773697 -715,4.0,6.0,-2.954020035961983,7.449267916773697 -715,5.0,1.0,-1.6861448807654689,5.116477495334806 -715,5.0,3.0,-6.413123730174556,22.31120356548123 -715,5.0,5.0,22.341631269034565,-82.8291478657789 -715,5.0,6.0,-3.590210423980992,11.02611441072814 -715,5.0,7.0,-6.289308176100628,22.0125786163522 -715,5.0,8.0,0.0,4.915840805411357 -715,5.0,9.0,0.0,1.8561002591115965 -715,5.0,27.0,-4.362844058012917,15.463571542897856 -715,6.0,4.0,-2.954020035961983,7.449267916773697 -715,6.0,5.0,-3.590210423980992,11.02611441072814 -715,6.0,6.0,6.544230459942975,-18.45668232750184 -715,7.0,5.0,-6.289308176100628,22.0125786163522 -715,7.0,7.0,7.733287237496075,-26.527493274828448 -715,7.0,27.0,-1.4439790613954469,4.540814658476248 -715,8.0,5.0,0.0,4.915840805411357 -715,8.0,8.0,0.0,-18.706293706293707 -715,8.0,9.0,0.0,9.090909090909092 -715,8.0,10.0,0.0,4.807692307692308 -715,9.0,5.0,0.0,1.8561002591115965 -715,9.0,8.0,0.0,9.090909090909092 -715,9.0,9.0,13.462042814524237,-41.3837606675224 -715,9.0,16.0,-3.956039125715353,10.317447719844054 -715,9.0,19.0,-1.7848303152666305,3.98535828943083 -715,9.0,20.0,-5.101853820159654,10.98071411292983 -715,9.0,21.0,-2.619319553382597,5.400770303329455 -715,10.0,8.0,0.0,4.807692307692308 -715,10.0,10.0,0.0,-4.807692307692308 -715,11.0,3.0,0.0,4.191255364806866 -715,11.0,11.0,6.573961583776156,-24.424167659260668 -715,11.0,12.0,0.0,7.142857142857143 -715,11.0,13.0,-1.5265676088395577,3.1734252729654173 -715,11.0,14.0,-3.0953961826564296,6.097275864326261 -715,11.0,15.0,-1.9519977922801688,4.104359379111847 -715,12.0,11.0,0.0,7.142857142857143 -715,12.0,12.0,0.0,-7.142857142857143 -715,13.0,11.0,-1.5265676088395577,3.1734252729654173 -715,13.0,13.0,4.01751987283902,-5.424299332335067 -715,13.0,14.0,-2.4909522639994623,2.250874059369649 -715,14.0,11.0,-3.0953961826564296,6.097275864326261 -715,14.0,13.0,-2.4909522639994623,2.250874059369649 -715,14.0,14.0,9.365498545964757,-16.01163373210796 -715,14.0,17.0,-1.8108011504072024,3.687418931630696 -715,14.0,22.0,-1.9683489489016612,3.976064876781356 -715,15.0,11.0,-1.9519977922801688,4.104359379111847 -715,15.0,15.0,1.9519977922801688,-4.104359379111847 -715,16.0,9.0,-3.956039125715353,10.317447719844054 -715,16.0,16.0,3.956039125715353,-10.317447719844054 -715,17.0,14.0,-1.8108011504072024,3.687418931630696 -715,17.0,17.0,4.886487584415919,-9.906177730909668 -715,17.0,18.0,-3.0756864340087167,6.218758799278971 -715,18.0,17.0,-3.0756864340087167,6.218758799278971 -715,18.0,18.0,8.958039375185187,-17.98346468163191 -715,18.0,19.0,-5.88235294117647,11.76470588235294 -715,19.0,9.0,-1.7848303152666305,3.98535828943083 -715,19.0,18.0,-5.88235294117647,11.76470588235294 -715,19.0,19.0,7.6671832564431,-15.75006417178377 -715,20.0,9.0,-5.101853820159654,10.98071411292983 -715,20.0,20.0,21.876495189895888,-45.10843276170355 -715,20.0,21.0,-16.774641369736234,34.127718648773715 -715,21.0,9.0,-2.619319553382597,5.400770303329455 -715,21.0,20.0,-16.774641369736234,34.127718648773715 -715,21.0,21.0,21.93449907537439,-43.48289181517921 -715,21.0,23.0,-2.5405381522555563,3.95440286307604 -715,22.0,14.0,-1.9683489489016612,3.976064876781356 -715,22.0,22.0,3.429754555384988,-6.965303617315433 -715,22.0,23.0,-1.4614056064833263,2.989238740534077 -715,23.0,21.0,-2.5405381522555563,3.95440286307604 -715,23.0,22.0,-1.4614056064833263,2.989238740534077 -715,23.0,23.0,5.311836702613133,-9.188263657315172 -715,23.0,24.0,-1.3098929438742493,2.287622053705056 -715,24.0,23.0,-1.3098929438742493,2.287622053705056 -715,24.0,24.0,4.495715080321987,-7.864978761969621 -715,24.0,25.0,-1.2165301194494855,1.8171440463475024 -715,24.0,26.0,-1.9692920169982515,3.760212661917064 -715,25.0,24.0,-1.2165301194494855,1.8171440463475024 -715,25.0,25.0,1.2165301194494855,-1.8171440463475024 -715,26.0,24.0,-1.9692920169982515,3.760212661917064 -715,26.0,26.0,3.652281470778589,-9.46044252232512 -715,26.0,27.0,0.0,2.608731947574922 -715,26.0,28.0,-0.99553355095268,1.881005840357816 -715,26.0,29.0,-0.6874559028276572,1.293971494797717 -715,27.0,5.0,-4.362844058012917,15.463571542897856 -715,27.0,7.0,-1.4439790613954469,4.540814658476248 -715,27.0,26.0,0.0,2.608731947574922 -715,27.0,27.0,5.806823119408364,-22.67145722159613 -715,28.0,26.0,-0.99553355095268,1.881005840357816 -715,28.0,28.0,1.9075867579849564,-3.604364401207048 -715,28.0,29.0,-0.9120532070322764,1.7233585608492326 -715,29.0,26.0,-0.6874559028276572,1.293971494797717 -715,29.0,28.0,-0.9120532070322764,1.7233585608492326 -715,29.0,29.0,1.5995091098599337,-3.0173300556469496 -716,0.0,0.0,6.765516048652632,-21.23160167089863 -716,0.0,1.0,-5.224646179885656,15.646726840803398 -716,0.0,2.0,-1.5408698687669766,5.631674830095234 -716,1.0,0.0,-5.224646179885656,15.646726840803398 -716,1.0,1.0,9.75228216552403,-30.648662892676068 -716,1.0,3.0,-1.7055303166990268,5.1973792282565086 -716,1.0,4.0,-1.1359607881738778,4.772479328281356 -716,1.0,5.0,-1.6861448807654689,5.116477495334806 -716,2.0,0.0,-1.5408698687669766,5.631674830095234 -716,2.0,2.0,9.736318911079088,-29.13794745915803 -716,2.0,3.0,-8.19544904231211,23.5308726290628 -716,3.0,1.0,-1.7055303166990268,5.1973792282565086 -716,3.0,2.0,-8.19544904231211,23.5308726290628 -716,3.0,3.0,16.314103089185693,-55.509410535254254 -716,3.0,5.0,-6.413123730174556,22.31120356548123 -716,3.0,11.0,0.0,4.191255364806866 -716,4.0,1.0,-1.1359607881738778,4.772479328281356 -716,4.0,4.0,4.089980824135861,-12.190647245055052 -716,4.0,6.0,-2.954020035961983,7.449267916773697 -716,5.0,1.0,-1.6861448807654689,5.116477495334806 -716,5.0,3.0,-6.413123730174556,22.31120356548123 -716,5.0,5.0,22.341631269034565,-82.8291478657789 -716,5.0,6.0,-3.590210423980992,11.02611441072814 -716,5.0,7.0,-6.289308176100628,22.0125786163522 -716,5.0,8.0,0.0,4.915840805411357 -716,5.0,9.0,0.0,1.8561002591115965 -716,5.0,27.0,-4.362844058012917,15.463571542897856 -716,6.0,4.0,-2.954020035961983,7.449267916773697 -716,6.0,5.0,-3.590210423980992,11.02611441072814 -716,6.0,6.0,6.544230459942975,-18.45668232750184 -716,7.0,5.0,-6.289308176100628,22.0125786163522 -716,7.0,7.0,7.733287237496075,-26.527493274828448 -716,7.0,27.0,-1.4439790613954469,4.540814658476248 -716,8.0,5.0,0.0,4.915840805411357 -716,8.0,8.0,0.0,-18.706293706293707 -716,8.0,9.0,0.0,9.090909090909092 -716,8.0,10.0,0.0,4.807692307692308 -716,9.0,5.0,0.0,1.8561002591115965 -716,9.0,8.0,0.0,9.090909090909092 -716,9.0,9.0,13.462042814524237,-41.3837606675224 -716,9.0,16.0,-3.956039125715353,10.317447719844054 -716,9.0,19.0,-1.7848303152666305,3.98535828943083 -716,9.0,20.0,-5.101853820159654,10.98071411292983 -716,9.0,21.0,-2.619319553382597,5.400770303329455 -716,10.0,8.0,0.0,4.807692307692308 -716,10.0,10.0,0.0,-4.807692307692308 -716,11.0,3.0,0.0,4.191255364806866 -716,11.0,11.0,6.573961583776156,-24.424167659260668 -716,11.0,12.0,0.0,7.142857142857143 -716,11.0,13.0,-1.5265676088395577,3.1734252729654173 -716,11.0,14.0,-3.0953961826564296,6.097275864326261 -716,11.0,15.0,-1.9519977922801688,4.104359379111847 -716,12.0,11.0,0.0,7.142857142857143 -716,12.0,12.0,0.0,-7.142857142857143 -716,13.0,11.0,-1.5265676088395577,3.1734252729654173 -716,13.0,13.0,4.01751987283902,-5.424299332335067 -716,13.0,14.0,-2.4909522639994623,2.250874059369649 -716,14.0,11.0,-3.0953961826564296,6.097275864326261 -716,14.0,13.0,-2.4909522639994623,2.250874059369649 -716,14.0,14.0,9.365498545964757,-16.01163373210796 -716,14.0,17.0,-1.8108011504072024,3.687418931630696 -716,14.0,22.0,-1.9683489489016612,3.976064876781356 -716,15.0,11.0,-1.9519977922801688,4.104359379111847 -716,15.0,15.0,3.271064728633931,-8.94513365126506 -716,15.0,16.0,-1.3190669363537617,4.8407742721532125 -716,16.0,9.0,-3.956039125715353,10.317447719844054 -716,16.0,15.0,-1.3190669363537617,4.8407742721532125 -716,16.0,16.0,5.275106062069114,-15.158221991997266 -716,17.0,14.0,-1.8108011504072024,3.687418931630696 -716,17.0,17.0,4.886487584415919,-9.906177730909668 -716,17.0,18.0,-3.0756864340087167,6.218758799278971 -716,18.0,17.0,-3.0756864340087167,6.218758799278971 -716,18.0,18.0,8.958039375185187,-17.98346468163191 -716,18.0,19.0,-5.88235294117647,11.76470588235294 -716,19.0,9.0,-1.7848303152666305,3.98535828943083 -716,19.0,18.0,-5.88235294117647,11.76470588235294 -716,19.0,19.0,7.6671832564431,-15.75006417178377 -716,20.0,9.0,-5.101853820159654,10.98071411292983 -716,20.0,20.0,21.876495189895888,-45.10843276170355 -716,20.0,21.0,-16.774641369736234,34.127718648773715 -716,21.0,9.0,-2.619319553382597,5.400770303329455 -716,21.0,20.0,-16.774641369736234,34.127718648773715 -716,21.0,21.0,21.93449907537439,-43.48289181517921 -716,21.0,23.0,-2.5405381522555563,3.95440286307604 -716,22.0,14.0,-1.9683489489016612,3.976064876781356 -716,22.0,22.0,3.429754555384988,-6.965303617315433 -716,22.0,23.0,-1.4614056064833263,2.989238740534077 -716,23.0,21.0,-2.5405381522555563,3.95440286307604 -716,23.0,22.0,-1.4614056064833263,2.989238740534077 -716,23.0,23.0,5.311836702613133,-9.188263657315172 -716,23.0,24.0,-1.3098929438742493,2.287622053705056 -716,24.0,23.0,-1.3098929438742493,2.287622053705056 -716,24.0,24.0,4.495715080321987,-7.864978761969621 -716,24.0,25.0,-1.2165301194494855,1.8171440463475024 -716,24.0,26.0,-1.9692920169982515,3.760212661917064 -716,25.0,24.0,-1.2165301194494855,1.8171440463475024 -716,25.0,25.0,1.2165301194494855,-1.8171440463475024 -716,26.0,24.0,-1.9692920169982515,3.760212661917064 -716,26.0,26.0,3.652281470778589,-9.46044252232512 -716,26.0,27.0,0.0,2.608731947574922 -716,26.0,28.0,-0.99553355095268,1.881005840357816 -716,26.0,29.0,-0.6874559028276572,1.293971494797717 -716,27.0,5.0,-4.362844058012917,15.463571542897856 -716,27.0,7.0,-1.4439790613954469,4.540814658476248 -716,27.0,26.0,0.0,2.608731947574922 -716,27.0,27.0,5.806823119408364,-22.67145722159613 -716,28.0,26.0,-0.99553355095268,1.881005840357816 -716,28.0,28.0,1.9075867579849564,-3.604364401207048 -716,28.0,29.0,-0.9120532070322764,1.7233585608492326 -716,29.0,26.0,-0.6874559028276572,1.293971494797717 -716,29.0,28.0,-0.9120532070322764,1.7233585608492326 -716,29.0,29.0,1.5995091098599337,-3.0173300556469496 -717,0.0,0.0,6.765516048652632,-21.23160167089863 -717,0.0,1.0,-5.224646179885656,15.646726840803398 -717,0.0,2.0,-1.5408698687669766,5.631674830095234 -717,1.0,0.0,-5.224646179885656,15.646726840803398 -717,1.0,1.0,9.75228216552403,-30.648662892676068 -717,1.0,3.0,-1.7055303166990268,5.1973792282565086 -717,1.0,4.0,-1.1359607881738778,4.772479328281356 -717,1.0,5.0,-1.6861448807654689,5.116477495334806 -717,2.0,0.0,-1.5408698687669766,5.631674830095234 -717,2.0,2.0,9.736318911079088,-29.13794745915803 -717,2.0,3.0,-8.19544904231211,23.5308726290628 -717,3.0,1.0,-1.7055303166990268,5.1973792282565086 -717,3.0,2.0,-8.19544904231211,23.5308726290628 -717,3.0,3.0,16.314103089185693,-55.509410535254254 -717,3.0,5.0,-6.413123730174556,22.31120356548123 -717,3.0,11.0,0.0,4.191255364806866 -717,4.0,1.0,-1.1359607881738778,4.772479328281356 -717,4.0,4.0,4.089980824135861,-12.190647245055052 -717,4.0,6.0,-2.954020035961983,7.449267916773697 -717,5.0,1.0,-1.6861448807654689,5.116477495334806 -717,5.0,3.0,-6.413123730174556,22.31120356548123 -717,5.0,5.0,22.341631269034565,-82.8291478657789 -717,5.0,6.0,-3.590210423980992,11.02611441072814 -717,5.0,7.0,-6.289308176100628,22.0125786163522 -717,5.0,8.0,0.0,4.915840805411357 -717,5.0,9.0,0.0,1.8561002591115965 -717,5.0,27.0,-4.362844058012917,15.463571542897856 -717,6.0,4.0,-2.954020035961983,7.449267916773697 -717,6.0,5.0,-3.590210423980992,11.02611441072814 -717,6.0,6.0,6.544230459942975,-18.45668232750184 -717,7.0,5.0,-6.289308176100628,22.0125786163522 -717,7.0,7.0,7.733287237496075,-26.527493274828448 -717,7.0,27.0,-1.4439790613954469,4.540814658476248 -717,8.0,5.0,0.0,4.915840805411357 -717,8.0,8.0,0.0,-18.706293706293707 -717,8.0,9.0,0.0,9.090909090909092 -717,8.0,10.0,0.0,4.807692307692308 -717,9.0,5.0,0.0,1.8561002591115965 -717,9.0,8.0,0.0,9.090909090909092 -717,9.0,9.0,13.462042814524237,-41.3837606675224 -717,9.0,16.0,-3.956039125715353,10.317447719844054 -717,9.0,19.0,-1.7848303152666305,3.98535828943083 -717,9.0,20.0,-5.101853820159654,10.98071411292983 -717,9.0,21.0,-2.619319553382597,5.400770303329455 -717,10.0,8.0,0.0,4.807692307692308 -717,10.0,10.0,0.0,-4.807692307692308 -717,11.0,3.0,0.0,4.191255364806866 -717,11.0,11.0,6.573961583776156,-24.424167659260668 -717,11.0,12.0,0.0,7.142857142857143 -717,11.0,13.0,-1.5265676088395577,3.1734252729654173 -717,11.0,14.0,-3.0953961826564296,6.097275864326261 -717,11.0,15.0,-1.9519977922801688,4.104359379111847 -717,12.0,11.0,0.0,7.142857142857143 -717,12.0,12.0,0.0,-7.142857142857143 -717,13.0,11.0,-1.5265676088395577,3.1734252729654173 -717,13.0,13.0,4.01751987283902,-5.424299332335067 -717,13.0,14.0,-2.4909522639994623,2.250874059369649 -717,14.0,11.0,-3.0953961826564296,6.097275864326261 -717,14.0,13.0,-2.4909522639994623,2.250874059369649 -717,14.0,14.0,9.365498545964757,-16.01163373210796 -717,14.0,17.0,-1.8108011504072024,3.687418931630696 -717,14.0,22.0,-1.9683489489016612,3.976064876781356 -717,15.0,11.0,-1.9519977922801688,4.104359379111847 -717,15.0,15.0,3.271064728633931,-8.94513365126506 -717,15.0,16.0,-1.3190669363537617,4.8407742721532125 -717,16.0,9.0,-3.956039125715353,10.317447719844054 -717,16.0,15.0,-1.3190669363537617,4.8407742721532125 -717,16.0,16.0,5.275106062069114,-15.158221991997266 -717,17.0,14.0,-1.8108011504072024,3.687418931630696 -717,17.0,17.0,4.886487584415919,-9.906177730909668 -717,17.0,18.0,-3.0756864340087167,6.218758799278971 -717,18.0,17.0,-3.0756864340087167,6.218758799278971 -717,18.0,18.0,8.958039375185187,-17.98346468163191 -717,18.0,19.0,-5.88235294117647,11.76470588235294 -717,19.0,9.0,-1.7848303152666305,3.98535828943083 -717,19.0,18.0,-5.88235294117647,11.76470588235294 -717,19.0,19.0,7.6671832564431,-15.75006417178377 -717,20.0,9.0,-5.101853820159654,10.98071411292983 -717,20.0,20.0,21.876495189895888,-45.10843276170355 -717,20.0,21.0,-16.774641369736234,34.127718648773715 -717,21.0,9.0,-2.619319553382597,5.400770303329455 -717,21.0,20.0,-16.774641369736234,34.127718648773715 -717,21.0,21.0,21.93449907537439,-43.48289181517921 -717,21.0,23.0,-2.5405381522555563,3.95440286307604 -717,22.0,14.0,-1.9683489489016612,3.976064876781356 -717,22.0,22.0,3.429754555384988,-6.965303617315433 -717,22.0,23.0,-1.4614056064833263,2.989238740534077 -717,23.0,21.0,-2.5405381522555563,3.95440286307604 -717,23.0,22.0,-1.4614056064833263,2.989238740534077 -717,23.0,23.0,5.311836702613133,-9.188263657315172 -717,23.0,24.0,-1.3098929438742493,2.287622053705056 -717,24.0,23.0,-1.3098929438742493,2.287622053705056 -717,24.0,24.0,2.526423063323735,-4.104766100052558 -717,24.0,25.0,-1.2165301194494855,1.8171440463475024 -717,25.0,24.0,-1.2165301194494855,1.8171440463475024 -717,25.0,25.0,1.2165301194494855,-1.8171440463475024 -717,26.0,26.0,1.6829894537803372,-5.700229860408058 -717,26.0,27.0,0.0,2.608731947574922 -717,26.0,28.0,-0.99553355095268,1.881005840357816 -717,26.0,29.0,-0.6874559028276572,1.293971494797717 -717,27.0,5.0,-4.362844058012917,15.463571542897856 -717,27.0,7.0,-1.4439790613954469,4.540814658476248 -717,27.0,26.0,0.0,2.608731947574922 -717,27.0,27.0,5.806823119408364,-22.67145722159613 -717,28.0,26.0,-0.99553355095268,1.881005840357816 -717,28.0,28.0,1.9075867579849564,-3.604364401207048 -717,28.0,29.0,-0.9120532070322764,1.7233585608492326 -717,29.0,26.0,-0.6874559028276572,1.293971494797717 -717,29.0,28.0,-0.9120532070322764,1.7233585608492326 -717,29.0,29.0,1.5995091098599337,-3.0173300556469496 -718,0.0,0.0,1.5408698687669766,-5.611274830095233 -718,0.0,2.0,-1.5408698687669766,5.631674830095234 -718,1.0,1.0,2.841491104872905,-9.930558556537864 -718,1.0,3.0,-1.7055303166990268,5.1973792282565086 -718,1.0,4.0,-1.1359607881738778,4.772479328281356 -718,2.0,0.0,-1.5408698687669766,5.631674830095234 -718,2.0,2.0,9.736318911079088,-29.13794745915803 -718,2.0,3.0,-8.19544904231211,23.5308726290628 -718,3.0,1.0,-1.7055303166990268,5.1973792282565086 -718,3.0,2.0,-8.19544904231211,23.5308726290628 -718,3.0,3.0,16.314103089185693,-55.509410535254254 -718,3.0,5.0,-6.413123730174556,22.31120356548123 -718,3.0,11.0,0.0,4.191255364806866 -718,4.0,1.0,-1.1359607881738778,4.772479328281356 -718,4.0,4.0,4.089980824135861,-12.190647245055052 -718,4.0,6.0,-2.954020035961983,7.449267916773697 -718,5.0,3.0,-6.413123730174556,22.31120356548123 -718,5.0,5.0,20.655486388269097,-77.7313703704441 -718,5.0,6.0,-3.590210423980992,11.02611441072814 -718,5.0,7.0,-6.289308176100628,22.0125786163522 -718,5.0,8.0,0.0,4.915840805411357 -718,5.0,9.0,0.0,1.8561002591115965 -718,5.0,27.0,-4.362844058012917,15.463571542897856 -718,6.0,4.0,-2.954020035961983,7.449267916773697 -718,6.0,5.0,-3.590210423980992,11.02611441072814 -718,6.0,6.0,6.544230459942975,-18.45668232750184 -718,7.0,5.0,-6.289308176100628,22.0125786163522 -718,7.0,7.0,7.733287237496075,-26.527493274828448 -718,7.0,27.0,-1.4439790613954469,4.540814658476248 -718,8.0,5.0,0.0,4.915840805411357 -718,8.0,8.0,0.0,-18.706293706293707 -718,8.0,9.0,0.0,9.090909090909092 -718,8.0,10.0,0.0,4.807692307692308 -718,9.0,5.0,0.0,1.8561002591115965 -718,9.0,8.0,0.0,9.090909090909092 -718,9.0,9.0,13.462042814524237,-41.3837606675224 -718,9.0,16.0,-3.956039125715353,10.317447719844054 -718,9.0,19.0,-1.7848303152666305,3.98535828943083 -718,9.0,20.0,-5.101853820159654,10.98071411292983 -718,9.0,21.0,-2.619319553382597,5.400770303329455 -718,10.0,8.0,0.0,4.807692307692308 -718,10.0,10.0,0.0,-4.807692307692308 -718,11.0,3.0,0.0,4.191255364806866 -718,11.0,11.0,3.0953961826564296,-17.146383007183402 -718,11.0,12.0,0.0,7.142857142857143 -718,11.0,14.0,-3.0953961826564296,6.097275864326261 -718,12.0,11.0,0.0,7.142857142857143 -718,12.0,12.0,0.0,-7.142857142857143 -718,13.0,13.0,2.4909522639994623,-2.250874059369649 -718,13.0,14.0,-2.4909522639994623,2.250874059369649 -718,14.0,11.0,-3.0953961826564296,6.097275864326261 -718,14.0,13.0,-2.4909522639994623,2.250874059369649 -718,14.0,14.0,9.365498545964757,-16.01163373210796 -718,14.0,17.0,-1.8108011504072024,3.687418931630696 -718,14.0,22.0,-1.9683489489016612,3.976064876781356 -718,15.0,15.0,1.3190669363537617,-4.8407742721532125 -718,15.0,16.0,-1.3190669363537617,4.8407742721532125 -718,16.0,9.0,-3.956039125715353,10.317447719844054 -718,16.0,15.0,-1.3190669363537617,4.8407742721532125 -718,16.0,16.0,5.275106062069114,-15.158221991997266 -718,17.0,14.0,-1.8108011504072024,3.687418931630696 -718,17.0,17.0,4.886487584415919,-9.906177730909668 -718,17.0,18.0,-3.0756864340087167,6.218758799278971 -718,18.0,17.0,-3.0756864340087167,6.218758799278971 -718,18.0,18.0,8.958039375185187,-17.98346468163191 -718,18.0,19.0,-5.88235294117647,11.76470588235294 -718,19.0,9.0,-1.7848303152666305,3.98535828943083 -718,19.0,18.0,-5.88235294117647,11.76470588235294 -718,19.0,19.0,7.6671832564431,-15.75006417178377 -718,20.0,9.0,-5.101853820159654,10.98071411292983 -718,20.0,20.0,21.876495189895888,-45.10843276170355 -718,20.0,21.0,-16.774641369736234,34.127718648773715 -718,21.0,9.0,-2.619319553382597,5.400770303329455 -718,21.0,20.0,-16.774641369736234,34.127718648773715 -718,21.0,21.0,21.93449907537439,-43.48289181517921 -718,21.0,23.0,-2.5405381522555563,3.95440286307604 -718,22.0,14.0,-1.9683489489016612,3.976064876781356 -718,22.0,22.0,3.429754555384988,-6.965303617315433 -718,22.0,23.0,-1.4614056064833263,2.989238740534077 -718,23.0,21.0,-2.5405381522555563,3.95440286307604 -718,23.0,22.0,-1.4614056064833263,2.989238740534077 -718,23.0,23.0,4.001943758738883,-6.900641603610116 -718,24.0,24.0,3.185822136447737,-5.577356708264566 -718,24.0,25.0,-1.2165301194494855,1.8171440463475024 -718,24.0,26.0,-1.9692920169982515,3.760212661917064 -718,25.0,24.0,-1.2165301194494855,1.8171440463475024 -718,25.0,25.0,1.2165301194494855,-1.8171440463475024 -718,26.0,24.0,-1.9692920169982515,3.760212661917064 -718,26.0,26.0,3.652281470778589,-9.46044252232512 -718,26.0,27.0,0.0,2.608731947574922 -718,26.0,28.0,-0.99553355095268,1.881005840357816 -718,26.0,29.0,-0.6874559028276572,1.293971494797717 -718,27.0,5.0,-4.362844058012917,15.463571542897856 -718,27.0,7.0,-1.4439790613954469,4.540814658476248 -718,27.0,26.0,0.0,2.608731947574922 -718,27.0,27.0,5.806823119408364,-22.67145722159613 -718,28.0,26.0,-0.99553355095268,1.881005840357816 -718,28.0,28.0,1.9075867579849564,-3.604364401207048 -718,28.0,29.0,-0.9120532070322764,1.7233585608492326 -718,29.0,26.0,-0.6874559028276572,1.293971494797717 -718,29.0,28.0,-0.9120532070322764,1.7233585608492326 -718,29.0,29.0,1.5995091098599337,-3.0173300556469496 -719,0.0,0.0,6.765516048652632,-21.23160167089863 -719,0.0,1.0,-5.224646179885656,15.646726840803398 -719,0.0,2.0,-1.5408698687669766,5.631674830095234 -719,1.0,0.0,-5.224646179885656,15.646726840803398 -719,1.0,1.0,9.75228216552403,-30.648662892676068 -719,1.0,3.0,-1.7055303166990268,5.1973792282565086 -719,1.0,4.0,-1.1359607881738778,4.772479328281356 -719,1.0,5.0,-1.6861448807654689,5.116477495334806 -719,2.0,0.0,-1.5408698687669766,5.631674830095234 -719,2.0,2.0,9.736318911079088,-29.13794745915803 -719,2.0,3.0,-8.19544904231211,23.5308726290628 -719,3.0,1.0,-1.7055303166990268,5.1973792282565086 -719,3.0,2.0,-8.19544904231211,23.5308726290628 -719,3.0,3.0,16.314103089185693,-55.509410535254254 -719,3.0,5.0,-6.413123730174556,22.31120356548123 -719,3.0,11.0,0.0,4.191255364806866 -719,4.0,1.0,-1.1359607881738778,4.772479328281356 -719,4.0,4.0,4.089980824135861,-12.190647245055052 -719,4.0,6.0,-2.954020035961983,7.449267916773697 -719,5.0,1.0,-1.6861448807654689,5.116477495334806 -719,5.0,3.0,-6.413123730174556,22.31120356548123 -719,5.0,5.0,22.341631269034565,-82.8291478657789 -719,5.0,6.0,-3.590210423980992,11.02611441072814 -719,5.0,7.0,-6.289308176100628,22.0125786163522 -719,5.0,8.0,0.0,4.915840805411357 -719,5.0,9.0,0.0,1.8561002591115965 -719,5.0,27.0,-4.362844058012917,15.463571542897856 -719,6.0,4.0,-2.954020035961983,7.449267916773697 -719,6.0,5.0,-3.590210423980992,11.02611441072814 -719,6.0,6.0,6.544230459942975,-18.45668232750184 -719,7.0,5.0,-6.289308176100628,22.0125786163522 -719,7.0,7.0,7.733287237496075,-26.527493274828448 -719,7.0,27.0,-1.4439790613954469,4.540814658476248 -719,8.0,5.0,0.0,4.915840805411357 -719,8.0,8.0,0.0,-18.706293706293707 -719,8.0,9.0,0.0,9.090909090909092 -719,8.0,10.0,0.0,4.807692307692308 -719,9.0,5.0,0.0,1.8561002591115965 -719,9.0,8.0,0.0,9.090909090909092 -719,9.0,9.0,13.462042814524237,-41.3837606675224 -719,9.0,16.0,-3.956039125715353,10.317447719844054 -719,9.0,19.0,-1.7848303152666305,3.98535828943083 -719,9.0,20.0,-5.101853820159654,10.98071411292983 -719,9.0,21.0,-2.619319553382597,5.400770303329455 -719,10.0,8.0,0.0,4.807692307692308 -719,10.0,10.0,0.0,-4.807692307692308 -719,11.0,3.0,0.0,4.191255364806866 -719,11.0,11.0,6.573961583776156,-24.424167659260668 -719,11.0,12.0,0.0,7.142857142857143 -719,11.0,13.0,-1.5265676088395577,3.1734252729654173 -719,11.0,14.0,-3.0953961826564296,6.097275864326261 -719,11.0,15.0,-1.9519977922801688,4.104359379111847 -719,12.0,11.0,0.0,7.142857142857143 -719,12.0,12.0,0.0,-7.142857142857143 -719,13.0,11.0,-1.5265676088395577,3.1734252729654173 -719,13.0,13.0,4.01751987283902,-5.424299332335067 -719,13.0,14.0,-2.4909522639994623,2.250874059369649 -719,14.0,11.0,-3.0953961826564296,6.097275864326261 -719,14.0,13.0,-2.4909522639994623,2.250874059369649 -719,14.0,14.0,9.365498545964757,-16.01163373210796 -719,14.0,17.0,-1.8108011504072024,3.687418931630696 -719,14.0,22.0,-1.9683489489016612,3.976064876781356 -719,15.0,11.0,-1.9519977922801688,4.104359379111847 -719,15.0,15.0,3.271064728633931,-8.94513365126506 -719,15.0,16.0,-1.3190669363537617,4.8407742721532125 -719,16.0,9.0,-3.956039125715353,10.317447719844054 -719,16.0,15.0,-1.3190669363537617,4.8407742721532125 -719,16.0,16.0,5.275106062069114,-15.158221991997266 -719,17.0,14.0,-1.8108011504072024,3.687418931630696 -719,17.0,17.0,4.886487584415919,-9.906177730909668 -719,17.0,18.0,-3.0756864340087167,6.218758799278971 -719,18.0,17.0,-3.0756864340087167,6.218758799278971 -719,18.0,18.0,8.958039375185187,-17.98346468163191 -719,18.0,19.0,-5.88235294117647,11.76470588235294 -719,19.0,9.0,-1.7848303152666305,3.98535828943083 -719,19.0,18.0,-5.88235294117647,11.76470588235294 -719,19.0,19.0,7.6671832564431,-15.75006417178377 -719,20.0,9.0,-5.101853820159654,10.98071411292983 -719,20.0,20.0,21.876495189895888,-45.10843276170355 -719,20.0,21.0,-16.774641369736234,34.127718648773715 -719,21.0,9.0,-2.619319553382597,5.400770303329455 -719,21.0,20.0,-16.774641369736234,34.127718648773715 -719,21.0,21.0,21.93449907537439,-43.48289181517921 -719,21.0,23.0,-2.5405381522555563,3.95440286307604 -719,22.0,14.0,-1.9683489489016612,3.976064876781356 -719,22.0,22.0,3.429754555384988,-6.965303617315433 -719,22.0,23.0,-1.4614056064833263,2.989238740534077 -719,23.0,21.0,-2.5405381522555563,3.95440286307604 -719,23.0,22.0,-1.4614056064833263,2.989238740534077 -719,23.0,23.0,5.311836702613133,-9.188263657315172 -719,23.0,24.0,-1.3098929438742493,2.287622053705056 -719,24.0,23.0,-1.3098929438742493,2.287622053705056 -719,24.0,24.0,4.495715080321987,-7.864978761969621 -719,24.0,25.0,-1.2165301194494855,1.8171440463475024 -719,24.0,26.0,-1.9692920169982515,3.760212661917064 -719,25.0,24.0,-1.2165301194494855,1.8171440463475024 -719,25.0,25.0,1.2165301194494855,-1.8171440463475024 -719,26.0,24.0,-1.9692920169982515,3.760212661917064 -719,26.0,26.0,3.652281470778589,-9.46044252232512 -719,26.0,27.0,0.0,2.608731947574922 -719,26.0,28.0,-0.99553355095268,1.881005840357816 -719,26.0,29.0,-0.6874559028276572,1.293971494797717 -719,27.0,5.0,-4.362844058012917,15.463571542897856 -719,27.0,7.0,-1.4439790613954469,4.540814658476248 -719,27.0,26.0,0.0,2.608731947574922 -719,27.0,27.0,5.806823119408364,-22.67145722159613 -719,28.0,26.0,-0.99553355095268,1.881005840357816 -719,28.0,28.0,1.9075867579849564,-3.604364401207048 -719,28.0,29.0,-0.9120532070322764,1.7233585608492326 -719,29.0,26.0,-0.6874559028276572,1.293971494797717 -719,29.0,28.0,-0.9120532070322764,1.7233585608492326 -719,29.0,29.0,1.5995091098599337,-3.0173300556469496 -720,0.0,0.0,6.765516048652632,-21.23160167089863 -720,0.0,1.0,-5.224646179885656,15.646726840803398 -720,0.0,2.0,-1.5408698687669766,5.631674830095234 -720,1.0,0.0,-5.224646179885656,15.646726840803398 -720,1.0,1.0,9.75228216552403,-30.648662892676068 -720,1.0,3.0,-1.7055303166990268,5.1973792282565086 -720,1.0,4.0,-1.1359607881738778,4.772479328281356 -720,1.0,5.0,-1.6861448807654689,5.116477495334806 -720,2.0,0.0,-1.5408698687669766,5.631674830095234 -720,2.0,2.0,9.736318911079088,-29.13794745915803 -720,2.0,3.0,-8.19544904231211,23.5308726290628 -720,3.0,1.0,-1.7055303166990268,5.1973792282565086 -720,3.0,2.0,-8.19544904231211,23.5308726290628 -720,3.0,3.0,16.314103089185693,-55.509410535254254 -720,3.0,5.0,-6.413123730174556,22.31120356548123 -720,3.0,11.0,0.0,4.191255364806866 -720,4.0,1.0,-1.1359607881738778,4.772479328281356 -720,4.0,4.0,4.089980824135861,-12.190647245055052 -720,4.0,6.0,-2.954020035961983,7.449267916773697 -720,5.0,1.0,-1.6861448807654689,5.116477495334806 -720,5.0,3.0,-6.413123730174556,22.31120356548123 -720,5.0,5.0,22.341631269034565,-82.8291478657789 -720,5.0,6.0,-3.590210423980992,11.02611441072814 -720,5.0,7.0,-6.289308176100628,22.0125786163522 -720,5.0,8.0,0.0,4.915840805411357 -720,5.0,9.0,0.0,1.8561002591115965 -720,5.0,27.0,-4.362844058012917,15.463571542897856 -720,6.0,4.0,-2.954020035961983,7.449267916773697 -720,6.0,5.0,-3.590210423980992,11.02611441072814 -720,6.0,6.0,6.544230459942975,-18.45668232750184 -720,7.0,5.0,-6.289308176100628,22.0125786163522 -720,7.0,7.0,7.733287237496075,-26.527493274828448 -720,7.0,27.0,-1.4439790613954469,4.540814658476248 -720,8.0,5.0,0.0,4.915840805411357 -720,8.0,8.0,0.0,-18.706293706293707 -720,8.0,9.0,0.0,9.090909090909092 -720,8.0,10.0,0.0,4.807692307692308 -720,9.0,5.0,0.0,1.8561002591115965 -720,9.0,8.0,0.0,9.090909090909092 -720,9.0,9.0,9.506003688808882,-31.06631294767834 -720,9.0,19.0,-1.7848303152666305,3.98535828943083 -720,9.0,20.0,-5.101853820159654,10.98071411292983 -720,9.0,21.0,-2.619319553382597,5.400770303329455 -720,10.0,8.0,0.0,4.807692307692308 -720,10.0,10.0,0.0,-4.807692307692308 -720,11.0,3.0,0.0,4.191255364806866 -720,11.0,11.0,6.573961583776156,-24.424167659260668 -720,11.0,12.0,0.0,7.142857142857143 -720,11.0,13.0,-1.5265676088395577,3.1734252729654173 -720,11.0,14.0,-3.0953961826564296,6.097275864326261 -720,11.0,15.0,-1.9519977922801688,4.104359379111847 -720,12.0,11.0,0.0,7.142857142857143 -720,12.0,12.0,0.0,-7.142857142857143 -720,13.0,11.0,-1.5265676088395577,3.1734252729654173 -720,13.0,13.0,4.01751987283902,-5.424299332335067 -720,13.0,14.0,-2.4909522639994623,2.250874059369649 -720,14.0,11.0,-3.0953961826564296,6.097275864326261 -720,14.0,13.0,-2.4909522639994623,2.250874059369649 -720,14.0,14.0,9.365498545964757,-16.01163373210796 -720,14.0,17.0,-1.8108011504072024,3.687418931630696 -720,14.0,22.0,-1.9683489489016612,3.976064876781356 -720,15.0,11.0,-1.9519977922801688,4.104359379111847 -720,15.0,15.0,3.271064728633931,-8.94513365126506 -720,15.0,16.0,-1.3190669363537617,4.8407742721532125 -720,16.0,15.0,-1.3190669363537617,4.8407742721532125 -720,16.0,16.0,1.3190669363537617,-4.8407742721532125 -720,17.0,14.0,-1.8108011504072024,3.687418931630696 -720,17.0,17.0,4.886487584415919,-9.906177730909668 -720,17.0,18.0,-3.0756864340087167,6.218758799278971 -720,18.0,17.0,-3.0756864340087167,6.218758799278971 -720,18.0,18.0,8.958039375185187,-17.98346468163191 -720,18.0,19.0,-5.88235294117647,11.76470588235294 -720,19.0,9.0,-1.7848303152666305,3.98535828943083 -720,19.0,18.0,-5.88235294117647,11.76470588235294 -720,19.0,19.0,7.6671832564431,-15.75006417178377 -720,20.0,9.0,-5.101853820159654,10.98071411292983 -720,20.0,20.0,21.876495189895888,-45.10843276170355 -720,20.0,21.0,-16.774641369736234,34.127718648773715 -720,21.0,9.0,-2.619319553382597,5.400770303329455 -720,21.0,20.0,-16.774641369736234,34.127718648773715 -720,21.0,21.0,21.93449907537439,-43.48289181517921 -720,21.0,23.0,-2.5405381522555563,3.95440286307604 -720,22.0,14.0,-1.9683489489016612,3.976064876781356 -720,22.0,22.0,3.429754555384988,-6.965303617315433 -720,22.0,23.0,-1.4614056064833263,2.989238740534077 -720,23.0,21.0,-2.5405381522555563,3.95440286307604 -720,23.0,22.0,-1.4614056064833263,2.989238740534077 -720,23.0,23.0,5.311836702613133,-9.188263657315172 -720,23.0,24.0,-1.3098929438742493,2.287622053705056 -720,24.0,23.0,-1.3098929438742493,2.287622053705056 -720,24.0,24.0,4.495715080321987,-7.864978761969621 -720,24.0,25.0,-1.2165301194494855,1.8171440463475024 -720,24.0,26.0,-1.9692920169982515,3.760212661917064 -720,25.0,24.0,-1.2165301194494855,1.8171440463475024 -720,25.0,25.0,1.2165301194494855,-1.8171440463475024 -720,26.0,24.0,-1.9692920169982515,3.760212661917064 -720,26.0,26.0,3.652281470778589,-9.46044252232512 -720,26.0,27.0,0.0,2.608731947574922 -720,26.0,28.0,-0.99553355095268,1.881005840357816 -720,26.0,29.0,-0.6874559028276572,1.293971494797717 -720,27.0,5.0,-4.362844058012917,15.463571542897856 -720,27.0,7.0,-1.4439790613954469,4.540814658476248 -720,27.0,26.0,0.0,2.608731947574922 -720,27.0,27.0,5.806823119408364,-22.67145722159613 -720,28.0,26.0,-0.99553355095268,1.881005840357816 -720,28.0,28.0,1.9075867579849564,-3.604364401207048 -720,28.0,29.0,-0.9120532070322764,1.7233585608492326 -720,29.0,26.0,-0.6874559028276572,1.293971494797717 -720,29.0,28.0,-0.9120532070322764,1.7233585608492326 -720,29.0,29.0,1.5995091098599337,-3.0173300556469496 -721,0.0,0.0,6.765516048652632,-21.23160167089863 -721,0.0,1.0,-5.224646179885656,15.646726840803398 -721,0.0,2.0,-1.5408698687669766,5.631674830095234 -721,1.0,0.0,-5.224646179885656,15.646726840803398 -721,1.0,1.0,9.75228216552403,-30.648662892676068 -721,1.0,3.0,-1.7055303166990268,5.1973792282565086 -721,1.0,4.0,-1.1359607881738778,4.772479328281356 -721,1.0,5.0,-1.6861448807654689,5.116477495334806 -721,2.0,0.0,-1.5408698687669766,5.631674830095234 -721,2.0,2.0,9.736318911079088,-29.13794745915803 -721,2.0,3.0,-8.19544904231211,23.5308726290628 -721,3.0,1.0,-1.7055303166990268,5.1973792282565086 -721,3.0,2.0,-8.19544904231211,23.5308726290628 -721,3.0,3.0,16.314103089185693,-55.509410535254254 -721,3.0,5.0,-6.413123730174556,22.31120356548123 -721,3.0,11.0,0.0,4.191255364806866 -721,4.0,1.0,-1.1359607881738778,4.772479328281356 -721,4.0,4.0,4.089980824135861,-12.190647245055052 -721,4.0,6.0,-2.954020035961983,7.449267916773697 -721,5.0,1.0,-1.6861448807654689,5.116477495334806 -721,5.0,3.0,-6.413123730174556,22.31120356548123 -721,5.0,5.0,18.75142084505357,-71.81153345505078 -721,5.0,7.0,-6.289308176100628,22.0125786163522 -721,5.0,8.0,0.0,4.915840805411357 -721,5.0,9.0,0.0,1.8561002591115965 -721,5.0,27.0,-4.362844058012917,15.463571542897856 -721,6.0,4.0,-2.954020035961983,7.449267916773697 -721,6.0,6.0,2.954020035961983,-7.439067916773697 -721,7.0,5.0,-6.289308176100628,22.0125786163522 -721,7.0,7.0,7.733287237496075,-26.527493274828448 -721,7.0,27.0,-1.4439790613954469,4.540814658476248 -721,8.0,5.0,0.0,4.915840805411357 -721,8.0,8.0,0.0,-18.706293706293707 -721,8.0,9.0,0.0,9.090909090909092 -721,8.0,10.0,0.0,4.807692307692308 -721,9.0,5.0,0.0,1.8561002591115965 -721,9.0,8.0,0.0,9.090909090909092 -721,9.0,9.0,13.462042814524237,-41.3837606675224 -721,9.0,16.0,-3.956039125715353,10.317447719844054 -721,9.0,19.0,-1.7848303152666305,3.98535828943083 -721,9.0,20.0,-5.101853820159654,10.98071411292983 -721,9.0,21.0,-2.619319553382597,5.400770303329455 -721,10.0,8.0,0.0,4.807692307692308 -721,10.0,10.0,0.0,-4.807692307692308 -721,11.0,3.0,0.0,4.191255364806866 -721,11.0,11.0,6.573961583776156,-24.424167659260668 -721,11.0,12.0,0.0,7.142857142857143 -721,11.0,13.0,-1.5265676088395577,3.1734252729654173 -721,11.0,14.0,-3.0953961826564296,6.097275864326261 -721,11.0,15.0,-1.9519977922801688,4.104359379111847 -721,12.0,11.0,0.0,7.142857142857143 -721,12.0,12.0,0.0,-7.142857142857143 -721,13.0,11.0,-1.5265676088395577,3.1734252729654173 -721,13.0,13.0,4.01751987283902,-5.424299332335067 -721,13.0,14.0,-2.4909522639994623,2.250874059369649 -721,14.0,11.0,-3.0953961826564296,6.097275864326261 -721,14.0,13.0,-2.4909522639994623,2.250874059369649 -721,14.0,14.0,9.365498545964757,-16.01163373210796 -721,14.0,17.0,-1.8108011504072024,3.687418931630696 -721,14.0,22.0,-1.9683489489016612,3.976064876781356 -721,15.0,11.0,-1.9519977922801688,4.104359379111847 -721,15.0,15.0,3.271064728633931,-8.94513365126506 -721,15.0,16.0,-1.3190669363537617,4.8407742721532125 -721,16.0,9.0,-3.956039125715353,10.317447719844054 -721,16.0,15.0,-1.3190669363537617,4.8407742721532125 -721,16.0,16.0,5.275106062069114,-15.158221991997266 -721,17.0,14.0,-1.8108011504072024,3.687418931630696 -721,17.0,17.0,4.886487584415919,-9.906177730909668 -721,17.0,18.0,-3.0756864340087167,6.218758799278971 -721,18.0,17.0,-3.0756864340087167,6.218758799278971 -721,18.0,18.0,8.958039375185187,-17.98346468163191 -721,18.0,19.0,-5.88235294117647,11.76470588235294 -721,19.0,9.0,-1.7848303152666305,3.98535828943083 -721,19.0,18.0,-5.88235294117647,11.76470588235294 -721,19.0,19.0,7.6671832564431,-15.75006417178377 -721,20.0,9.0,-5.101853820159654,10.98071411292983 -721,20.0,20.0,21.876495189895888,-45.10843276170355 -721,20.0,21.0,-16.774641369736234,34.127718648773715 -721,21.0,9.0,-2.619319553382597,5.400770303329455 -721,21.0,20.0,-16.774641369736234,34.127718648773715 -721,21.0,21.0,21.93449907537439,-43.48289181517921 -721,21.0,23.0,-2.5405381522555563,3.95440286307604 -721,22.0,14.0,-1.9683489489016612,3.976064876781356 -721,22.0,22.0,3.429754555384988,-6.965303617315433 -721,22.0,23.0,-1.4614056064833263,2.989238740534077 -721,23.0,21.0,-2.5405381522555563,3.95440286307604 -721,23.0,22.0,-1.4614056064833263,2.989238740534077 -721,23.0,23.0,5.311836702613133,-9.188263657315172 -721,23.0,24.0,-1.3098929438742493,2.287622053705056 -721,24.0,23.0,-1.3098929438742493,2.287622053705056 -721,24.0,24.0,4.495715080321987,-7.864978761969621 -721,24.0,25.0,-1.2165301194494855,1.8171440463475024 -721,24.0,26.0,-1.9692920169982515,3.760212661917064 -721,25.0,24.0,-1.2165301194494855,1.8171440463475024 -721,25.0,25.0,1.2165301194494855,-1.8171440463475024 -721,26.0,24.0,-1.9692920169982515,3.760212661917064 -721,26.0,26.0,3.652281470778589,-9.46044252232512 -721,26.0,27.0,0.0,2.608731947574922 -721,26.0,28.0,-0.99553355095268,1.881005840357816 -721,26.0,29.0,-0.6874559028276572,1.293971494797717 -721,27.0,5.0,-4.362844058012917,15.463571542897856 -721,27.0,7.0,-1.4439790613954469,4.540814658476248 -721,27.0,26.0,0.0,2.608731947574922 -721,27.0,27.0,5.806823119408364,-22.67145722159613 -721,28.0,26.0,-0.99553355095268,1.881005840357816 -721,28.0,28.0,1.9075867579849564,-3.604364401207048 -721,28.0,29.0,-0.9120532070322764,1.7233585608492326 -721,29.0,26.0,-0.6874559028276572,1.293971494797717 -721,29.0,28.0,-0.9120532070322764,1.7233585608492326 -721,29.0,29.0,1.5995091098599337,-3.0173300556469496 -722,0.0,0.0,6.765516048652632,-21.23160167089863 -722,0.0,1.0,-5.224646179885656,15.646726840803398 -722,0.0,2.0,-1.5408698687669766,5.631674830095234 -722,1.0,0.0,-5.224646179885656,15.646726840803398 -722,1.0,1.0,9.75228216552403,-30.648662892676068 -722,1.0,3.0,-1.7055303166990268,5.1973792282565086 -722,1.0,4.0,-1.1359607881738778,4.772479328281356 -722,1.0,5.0,-1.6861448807654689,5.116477495334806 -722,2.0,0.0,-1.5408698687669766,5.631674830095234 -722,2.0,2.0,9.736318911079088,-29.13794745915803 -722,2.0,3.0,-8.19544904231211,23.5308726290628 -722,3.0,1.0,-1.7055303166990268,5.1973792282565086 -722,3.0,2.0,-8.19544904231211,23.5308726290628 -722,3.0,3.0,16.314103089185693,-55.509410535254254 -722,3.0,5.0,-6.413123730174556,22.31120356548123 -722,3.0,11.0,0.0,4.191255364806866 -722,4.0,1.0,-1.1359607881738778,4.772479328281356 -722,4.0,4.0,1.1359607881738778,-4.751579328281355 -722,5.0,1.0,-1.6861448807654689,5.116477495334806 -722,5.0,3.0,-6.413123730174556,22.31120356548123 -722,5.0,5.0,22.341631269034565,-82.8291478657789 -722,5.0,6.0,-3.590210423980992,11.02611441072814 -722,5.0,7.0,-6.289308176100628,22.0125786163522 -722,5.0,8.0,0.0,4.915840805411357 -722,5.0,9.0,0.0,1.8561002591115965 -722,5.0,27.0,-4.362844058012917,15.463571542897856 -722,6.0,5.0,-3.590210423980992,11.02611441072814 -722,6.0,6.0,3.590210423980992,-11.01761441072814 -722,7.0,5.0,-6.289308176100628,22.0125786163522 -722,7.0,7.0,7.733287237496075,-26.527493274828448 -722,7.0,27.0,-1.4439790613954469,4.540814658476248 -722,8.0,5.0,0.0,4.915840805411357 -722,8.0,8.0,0.0,-18.706293706293707 -722,8.0,9.0,0.0,9.090909090909092 -722,8.0,10.0,0.0,4.807692307692308 -722,9.0,5.0,0.0,1.8561002591115965 -722,9.0,8.0,0.0,9.090909090909092 -722,9.0,9.0,13.462042814524237,-41.3837606675224 -722,9.0,16.0,-3.956039125715353,10.317447719844054 -722,9.0,19.0,-1.7848303152666305,3.98535828943083 -722,9.0,20.0,-5.101853820159654,10.98071411292983 -722,9.0,21.0,-2.619319553382597,5.400770303329455 -722,10.0,8.0,0.0,4.807692307692308 -722,10.0,10.0,0.0,-4.807692307692308 -722,11.0,3.0,0.0,4.191255364806866 -722,11.0,11.0,6.573961583776156,-24.424167659260668 -722,11.0,12.0,0.0,7.142857142857143 -722,11.0,13.0,-1.5265676088395577,3.1734252729654173 -722,11.0,14.0,-3.0953961826564296,6.097275864326261 -722,11.0,15.0,-1.9519977922801688,4.104359379111847 -722,12.0,11.0,0.0,7.142857142857143 -722,12.0,12.0,0.0,-7.142857142857143 -722,13.0,11.0,-1.5265676088395577,3.1734252729654173 -722,13.0,13.0,4.01751987283902,-5.424299332335067 -722,13.0,14.0,-2.4909522639994623,2.250874059369649 -722,14.0,11.0,-3.0953961826564296,6.097275864326261 -722,14.0,13.0,-2.4909522639994623,2.250874059369649 -722,14.0,14.0,9.365498545964757,-16.01163373210796 -722,14.0,17.0,-1.8108011504072024,3.687418931630696 -722,14.0,22.0,-1.9683489489016612,3.976064876781356 -722,15.0,11.0,-1.9519977922801688,4.104359379111847 -722,15.0,15.0,1.9519977922801688,-4.104359379111847 -722,16.0,9.0,-3.956039125715353,10.317447719844054 -722,16.0,16.0,3.956039125715353,-10.317447719844054 -722,17.0,14.0,-1.8108011504072024,3.687418931630696 -722,17.0,17.0,4.886487584415919,-9.906177730909668 -722,17.0,18.0,-3.0756864340087167,6.218758799278971 -722,18.0,17.0,-3.0756864340087167,6.218758799278971 -722,18.0,18.0,8.958039375185187,-17.98346468163191 -722,18.0,19.0,-5.88235294117647,11.76470588235294 -722,19.0,9.0,-1.7848303152666305,3.98535828943083 -722,19.0,18.0,-5.88235294117647,11.76470588235294 -722,19.0,19.0,7.6671832564431,-15.75006417178377 -722,20.0,9.0,-5.101853820159654,10.98071411292983 -722,20.0,20.0,21.876495189895888,-45.10843276170355 -722,20.0,21.0,-16.774641369736234,34.127718648773715 -722,21.0,9.0,-2.619319553382597,5.400770303329455 -722,21.0,20.0,-16.774641369736234,34.127718648773715 -722,21.0,21.0,21.93449907537439,-43.48289181517921 -722,21.0,23.0,-2.5405381522555563,3.95440286307604 -722,22.0,14.0,-1.9683489489016612,3.976064876781356 -722,22.0,22.0,3.429754555384988,-6.965303617315433 -722,22.0,23.0,-1.4614056064833263,2.989238740534077 -722,23.0,21.0,-2.5405381522555563,3.95440286307604 -722,23.0,22.0,-1.4614056064833263,2.989238740534077 -722,23.0,23.0,5.311836702613133,-9.188263657315172 -722,23.0,24.0,-1.3098929438742493,2.287622053705056 -722,24.0,23.0,-1.3098929438742493,2.287622053705056 -722,24.0,24.0,4.495715080321987,-7.864978761969621 -722,24.0,25.0,-1.2165301194494855,1.8171440463475024 -722,24.0,26.0,-1.9692920169982515,3.760212661917064 -722,25.0,24.0,-1.2165301194494855,1.8171440463475024 -722,25.0,25.0,1.2165301194494855,-1.8171440463475024 -722,26.0,24.0,-1.9692920169982515,3.760212661917064 -722,26.0,26.0,3.652281470778589,-9.46044252232512 -722,26.0,27.0,0.0,2.608731947574922 -722,26.0,28.0,-0.99553355095268,1.881005840357816 -722,26.0,29.0,-0.6874559028276572,1.293971494797717 -722,27.0,5.0,-4.362844058012917,15.463571542897856 -722,27.0,7.0,-1.4439790613954469,4.540814658476248 -722,27.0,26.0,0.0,2.608731947574922 -722,27.0,27.0,5.806823119408364,-22.67145722159613 -722,28.0,26.0,-0.99553355095268,1.881005840357816 -722,28.0,28.0,1.9075867579849564,-3.604364401207048 -722,28.0,29.0,-0.9120532070322764,1.7233585608492326 -722,29.0,26.0,-0.6874559028276572,1.293971494797717 -722,29.0,28.0,-0.9120532070322764,1.7233585608492326 -722,29.0,29.0,1.5995091098599337,-3.0173300556469496 -723,0.0,0.0,6.765516048652632,-21.23160167089863 -723,0.0,1.0,-5.224646179885656,15.646726840803398 -723,0.0,2.0,-1.5408698687669766,5.631674830095234 -723,1.0,0.0,-5.224646179885656,15.646726840803398 -723,1.0,1.0,9.75228216552403,-30.648662892676068 -723,1.0,3.0,-1.7055303166990268,5.1973792282565086 -723,1.0,4.0,-1.1359607881738778,4.772479328281356 -723,1.0,5.0,-1.6861448807654689,5.116477495334806 -723,2.0,0.0,-1.5408698687669766,5.631674830095234 -723,2.0,2.0,9.736318911079088,-29.13794745915803 -723,2.0,3.0,-8.19544904231211,23.5308726290628 -723,3.0,1.0,-1.7055303166990268,5.1973792282565086 -723,3.0,2.0,-8.19544904231211,23.5308726290628 -723,3.0,3.0,16.314103089185693,-55.509410535254254 -723,3.0,5.0,-6.413123730174556,22.31120356548123 -723,3.0,11.0,0.0,4.191255364806866 -723,4.0,1.0,-1.1359607881738778,4.772479328281356 -723,4.0,4.0,4.089980824135861,-12.190647245055052 -723,4.0,6.0,-2.954020035961983,7.449267916773697 -723,5.0,1.0,-1.6861448807654689,5.116477495334806 -723,5.0,3.0,-6.413123730174556,22.31120356548123 -723,5.0,5.0,22.341631269034565,-82.8291478657789 -723,5.0,6.0,-3.590210423980992,11.02611441072814 -723,5.0,7.0,-6.289308176100628,22.0125786163522 -723,5.0,8.0,0.0,4.915840805411357 -723,5.0,9.0,0.0,1.8561002591115965 -723,5.0,27.0,-4.362844058012917,15.463571542897856 -723,6.0,4.0,-2.954020035961983,7.449267916773697 -723,6.0,5.0,-3.590210423980992,11.02611441072814 -723,6.0,6.0,6.544230459942975,-18.45668232750184 -723,7.0,5.0,-6.289308176100628,22.0125786163522 -723,7.0,7.0,7.733287237496075,-26.527493274828448 -723,7.0,27.0,-1.4439790613954469,4.540814658476248 -723,8.0,5.0,0.0,4.915840805411357 -723,8.0,8.0,0.0,-18.706293706293707 -723,8.0,9.0,0.0,9.090909090909092 -723,8.0,10.0,0.0,4.807692307692308 -723,9.0,5.0,0.0,1.8561002591115965 -723,9.0,8.0,0.0,9.090909090909092 -723,9.0,9.0,13.462042814524237,-41.3837606675224 -723,9.0,16.0,-3.956039125715353,10.317447719844054 -723,9.0,19.0,-1.7848303152666305,3.98535828943083 -723,9.0,20.0,-5.101853820159654,10.98071411292983 -723,9.0,21.0,-2.619319553382597,5.400770303329455 -723,10.0,8.0,0.0,4.807692307692308 -723,10.0,10.0,0.0,-4.807692307692308 -723,11.0,3.0,0.0,4.191255364806866 -723,11.0,11.0,6.573961583776156,-24.424167659260668 -723,11.0,12.0,0.0,7.142857142857143 -723,11.0,13.0,-1.5265676088395577,3.1734252729654173 -723,11.0,14.0,-3.0953961826564296,6.097275864326261 -723,11.0,15.0,-1.9519977922801688,4.104359379111847 -723,12.0,11.0,0.0,7.142857142857143 -723,12.0,12.0,0.0,-7.142857142857143 -723,13.0,11.0,-1.5265676088395577,3.1734252729654173 -723,13.0,13.0,4.01751987283902,-5.424299332335067 -723,13.0,14.0,-2.4909522639994623,2.250874059369649 -723,14.0,11.0,-3.0953961826564296,6.097275864326261 -723,14.0,13.0,-2.4909522639994623,2.250874059369649 -723,14.0,14.0,9.365498545964757,-16.01163373210796 -723,14.0,17.0,-1.8108011504072024,3.687418931630696 -723,14.0,22.0,-1.9683489489016612,3.976064876781356 -723,15.0,11.0,-1.9519977922801688,4.104359379111847 -723,15.0,15.0,3.271064728633931,-8.94513365126506 -723,15.0,16.0,-1.3190669363537617,4.8407742721532125 -723,16.0,9.0,-3.956039125715353,10.317447719844054 -723,16.0,15.0,-1.3190669363537617,4.8407742721532125 -723,16.0,16.0,5.275106062069114,-15.158221991997266 -723,17.0,14.0,-1.8108011504072024,3.687418931630696 -723,17.0,17.0,4.886487584415919,-9.906177730909668 -723,17.0,18.0,-3.0756864340087167,6.218758799278971 -723,18.0,17.0,-3.0756864340087167,6.218758799278971 -723,18.0,18.0,8.958039375185187,-17.98346468163191 -723,18.0,19.0,-5.88235294117647,11.76470588235294 -723,19.0,9.0,-1.7848303152666305,3.98535828943083 -723,19.0,18.0,-5.88235294117647,11.76470588235294 -723,19.0,19.0,7.6671832564431,-15.75006417178377 -723,20.0,9.0,-5.101853820159654,10.98071411292983 -723,20.0,20.0,21.876495189895888,-45.10843276170355 -723,20.0,21.0,-16.774641369736234,34.127718648773715 -723,21.0,9.0,-2.619319553382597,5.400770303329455 -723,21.0,20.0,-16.774641369736234,34.127718648773715 -723,21.0,21.0,21.93449907537439,-43.48289181517921 -723,21.0,23.0,-2.5405381522555563,3.95440286307604 -723,22.0,14.0,-1.9683489489016612,3.976064876781356 -723,22.0,22.0,3.429754555384988,-6.965303617315433 -723,22.0,23.0,-1.4614056064833263,2.989238740534077 -723,23.0,21.0,-2.5405381522555563,3.95440286307604 -723,23.0,22.0,-1.4614056064833263,2.989238740534077 -723,23.0,23.0,5.311836702613133,-9.188263657315172 -723,23.0,24.0,-1.3098929438742493,2.287622053705056 -723,24.0,23.0,-1.3098929438742493,2.287622053705056 -723,24.0,24.0,4.495715080321987,-7.864978761969621 -723,24.0,25.0,-1.2165301194494855,1.8171440463475024 -723,24.0,26.0,-1.9692920169982515,3.760212661917064 -723,25.0,24.0,-1.2165301194494855,1.8171440463475024 -723,25.0,25.0,1.2165301194494855,-1.8171440463475024 -723,26.0,24.0,-1.9692920169982515,3.760212661917064 -723,26.0,26.0,3.652281470778589,-9.46044252232512 -723,26.0,27.0,0.0,2.608731947574922 -723,26.0,28.0,-0.99553355095268,1.881005840357816 -723,26.0,29.0,-0.6874559028276572,1.293971494797717 -723,27.0,5.0,-4.362844058012917,15.463571542897856 -723,27.0,7.0,-1.4439790613954469,4.540814658476248 -723,27.0,26.0,0.0,2.608731947574922 -723,27.0,27.0,5.806823119408364,-22.67145722159613 -723,28.0,26.0,-0.99553355095268,1.881005840357816 -723,28.0,28.0,1.9075867579849564,-3.604364401207048 -723,28.0,29.0,-0.9120532070322764,1.7233585608492326 -723,29.0,26.0,-0.6874559028276572,1.293971494797717 -723,29.0,28.0,-0.9120532070322764,1.7233585608492326 -723,29.0,29.0,1.5995091098599337,-3.0173300556469496 -724,0.0,0.0,6.765516048652632,-21.23160167089863 -724,0.0,1.0,-5.224646179885656,15.646726840803398 -724,0.0,2.0,-1.5408698687669766,5.631674830095234 -724,1.0,0.0,-5.224646179885656,15.646726840803398 -724,1.0,1.0,9.75228216552403,-30.648662892676068 -724,1.0,3.0,-1.7055303166990268,5.1973792282565086 -724,1.0,4.0,-1.1359607881738778,4.772479328281356 -724,1.0,5.0,-1.6861448807654689,5.116477495334806 -724,2.0,0.0,-1.5408698687669766,5.631674830095234 -724,2.0,2.0,9.736318911079088,-29.13794745915803 -724,2.0,3.0,-8.19544904231211,23.5308726290628 -724,3.0,1.0,-1.7055303166990268,5.1973792282565086 -724,3.0,2.0,-8.19544904231211,23.5308726290628 -724,3.0,3.0,16.314103089185693,-55.509410535254254 -724,3.0,5.0,-6.413123730174556,22.31120356548123 -724,3.0,11.0,0.0,4.191255364806866 -724,4.0,1.0,-1.1359607881738778,4.772479328281356 -724,4.0,4.0,4.089980824135861,-12.190647245055052 -724,4.0,6.0,-2.954020035961983,7.449267916773697 -724,5.0,1.0,-1.6861448807654689,5.116477495334806 -724,5.0,3.0,-6.413123730174556,22.31120356548123 -724,5.0,5.0,16.052323092933932,-60.8210692494267 -724,5.0,6.0,-3.590210423980992,11.02611441072814 -724,5.0,8.0,0.0,4.915840805411357 -724,5.0,9.0,0.0,1.8561002591115965 -724,5.0,27.0,-4.362844058012917,15.463571542897856 -724,6.0,4.0,-2.954020035961983,7.449267916773697 -724,6.0,5.0,-3.590210423980992,11.02611441072814 -724,6.0,6.0,6.544230459942975,-18.45668232750184 -724,7.0,7.0,1.4439790613954469,-4.519414658476248 -724,7.0,27.0,-1.4439790613954469,4.540814658476248 -724,8.0,5.0,0.0,4.915840805411357 -724,8.0,8.0,0.0,-18.706293706293707 -724,8.0,9.0,0.0,9.090909090909092 -724,8.0,10.0,0.0,4.807692307692308 -724,9.0,5.0,0.0,1.8561002591115965 -724,9.0,8.0,0.0,9.090909090909092 -724,9.0,9.0,13.462042814524237,-41.3837606675224 -724,9.0,16.0,-3.956039125715353,10.317447719844054 -724,9.0,19.0,-1.7848303152666305,3.98535828943083 -724,9.0,20.0,-5.101853820159654,10.98071411292983 -724,9.0,21.0,-2.619319553382597,5.400770303329455 -724,10.0,8.0,0.0,4.807692307692308 -724,10.0,10.0,0.0,-4.807692307692308 -724,11.0,3.0,0.0,4.191255364806866 -724,11.0,11.0,6.573961583776156,-24.424167659260668 -724,11.0,12.0,0.0,7.142857142857143 -724,11.0,13.0,-1.5265676088395577,3.1734252729654173 -724,11.0,14.0,-3.0953961826564296,6.097275864326261 -724,11.0,15.0,-1.9519977922801688,4.104359379111847 -724,12.0,11.0,0.0,7.142857142857143 -724,12.0,12.0,0.0,-7.142857142857143 -724,13.0,11.0,-1.5265676088395577,3.1734252729654173 -724,13.0,13.0,4.01751987283902,-5.424299332335067 -724,13.0,14.0,-2.4909522639994623,2.250874059369649 -724,14.0,11.0,-3.0953961826564296,6.097275864326261 -724,14.0,13.0,-2.4909522639994623,2.250874059369649 -724,14.0,14.0,9.365498545964757,-16.01163373210796 -724,14.0,17.0,-1.8108011504072024,3.687418931630696 -724,14.0,22.0,-1.9683489489016612,3.976064876781356 -724,15.0,11.0,-1.9519977922801688,4.104359379111847 -724,15.0,15.0,3.271064728633931,-8.94513365126506 -724,15.0,16.0,-1.3190669363537617,4.8407742721532125 -724,16.0,9.0,-3.956039125715353,10.317447719844054 -724,16.0,15.0,-1.3190669363537617,4.8407742721532125 -724,16.0,16.0,5.275106062069114,-15.158221991997266 -724,17.0,14.0,-1.8108011504072024,3.687418931630696 -724,17.0,17.0,4.886487584415919,-9.906177730909668 -724,17.0,18.0,-3.0756864340087167,6.218758799278971 -724,18.0,17.0,-3.0756864340087167,6.218758799278971 -724,18.0,18.0,8.958039375185187,-17.98346468163191 -724,18.0,19.0,-5.88235294117647,11.76470588235294 -724,19.0,9.0,-1.7848303152666305,3.98535828943083 -724,19.0,18.0,-5.88235294117647,11.76470588235294 -724,19.0,19.0,7.6671832564431,-15.75006417178377 -724,20.0,9.0,-5.101853820159654,10.98071411292983 -724,20.0,20.0,21.876495189895888,-45.10843276170355 -724,20.0,21.0,-16.774641369736234,34.127718648773715 -724,21.0,9.0,-2.619319553382597,5.400770303329455 -724,21.0,20.0,-16.774641369736234,34.127718648773715 -724,21.0,21.0,19.393960923118836,-39.52848895210317 -724,22.0,14.0,-1.9683489489016612,3.976064876781356 -724,22.0,22.0,3.429754555384988,-6.965303617315433 -724,22.0,23.0,-1.4614056064833263,2.989238740534077 -724,23.0,22.0,-1.4614056064833263,2.989238740534077 -724,23.0,23.0,2.771298550357576,-5.233860794239132 -724,23.0,24.0,-1.3098929438742493,2.287622053705056 -724,24.0,23.0,-1.3098929438742493,2.287622053705056 -724,24.0,24.0,4.495715080321987,-7.864978761969621 -724,24.0,25.0,-1.2165301194494855,1.8171440463475024 -724,24.0,26.0,-1.9692920169982515,3.760212661917064 -724,25.0,24.0,-1.2165301194494855,1.8171440463475024 -724,25.0,25.0,1.2165301194494855,-1.8171440463475024 -724,26.0,24.0,-1.9692920169982515,3.760212661917064 -724,26.0,26.0,3.652281470778589,-9.46044252232512 -724,26.0,27.0,0.0,2.608731947574922 -724,26.0,28.0,-0.99553355095268,1.881005840357816 -724,26.0,29.0,-0.6874559028276572,1.293971494797717 -724,27.0,5.0,-4.362844058012917,15.463571542897856 -724,27.0,7.0,-1.4439790613954469,4.540814658476248 -724,27.0,26.0,0.0,2.608731947574922 -724,27.0,27.0,5.806823119408364,-22.67145722159613 -724,28.0,26.0,-0.99553355095268,1.881005840357816 -724,28.0,28.0,0.99553355095268,-1.881005840357816 -724,29.0,26.0,-0.6874559028276572,1.293971494797717 -724,29.0,29.0,0.6874559028276572,-1.293971494797717 -725,0.0,0.0,6.765516048652632,-21.23160167089863 -725,0.0,1.0,-5.224646179885656,15.646726840803398 -725,0.0,2.0,-1.5408698687669766,5.631674830095234 -725,1.0,0.0,-5.224646179885656,15.646726840803398 -725,1.0,1.0,9.75228216552403,-30.648662892676068 -725,1.0,3.0,-1.7055303166990268,5.1973792282565086 -725,1.0,4.0,-1.1359607881738778,4.772479328281356 -725,1.0,5.0,-1.6861448807654689,5.116477495334806 -725,2.0,0.0,-1.5408698687669766,5.631674830095234 -725,2.0,2.0,9.736318911079088,-29.13794745915803 -725,2.0,3.0,-8.19544904231211,23.5308726290628 -725,3.0,1.0,-1.7055303166990268,5.1973792282565086 -725,3.0,2.0,-8.19544904231211,23.5308726290628 -725,3.0,3.0,16.314103089185693,-55.509410535254254 -725,3.0,5.0,-6.413123730174556,22.31120356548123 -725,3.0,11.0,0.0,4.191255364806866 -725,4.0,1.0,-1.1359607881738778,4.772479328281356 -725,4.0,4.0,4.089980824135861,-12.190647245055052 -725,4.0,6.0,-2.954020035961983,7.449267916773697 -725,5.0,1.0,-1.6861448807654689,5.116477495334806 -725,5.0,3.0,-6.413123730174556,22.31120356548123 -725,5.0,5.0,22.341631269034565,-82.8291478657789 -725,5.0,6.0,-3.590210423980992,11.02611441072814 -725,5.0,7.0,-6.289308176100628,22.0125786163522 -725,5.0,8.0,0.0,4.915840805411357 -725,5.0,9.0,0.0,1.8561002591115965 -725,5.0,27.0,-4.362844058012917,15.463571542897856 -725,6.0,4.0,-2.954020035961983,7.449267916773697 -725,6.0,5.0,-3.590210423980992,11.02611441072814 -725,6.0,6.0,6.544230459942975,-18.45668232750184 -725,7.0,5.0,-6.289308176100628,22.0125786163522 -725,7.0,7.0,7.733287237496075,-26.527493274828448 -725,7.0,27.0,-1.4439790613954469,4.540814658476248 -725,8.0,5.0,0.0,4.915840805411357 -725,8.0,8.0,0.0,-18.706293706293707 -725,8.0,9.0,0.0,9.090909090909092 -725,8.0,10.0,0.0,4.807692307692308 -725,9.0,5.0,0.0,1.8561002591115965 -725,9.0,8.0,0.0,9.090909090909092 -725,9.0,9.0,13.462042814524237,-41.3837606675224 -725,9.0,16.0,-3.956039125715353,10.317447719844054 -725,9.0,19.0,-1.7848303152666305,3.98535828943083 -725,9.0,20.0,-5.101853820159654,10.98071411292983 -725,9.0,21.0,-2.619319553382597,5.400770303329455 -725,10.0,8.0,0.0,4.807692307692308 -725,10.0,10.0,0.0,-4.807692307692308 -725,11.0,3.0,0.0,4.191255364806866 -725,11.0,11.0,6.573961583776156,-24.424167659260668 -725,11.0,12.0,0.0,7.142857142857143 -725,11.0,13.0,-1.5265676088395577,3.1734252729654173 -725,11.0,14.0,-3.0953961826564296,6.097275864326261 -725,11.0,15.0,-1.9519977922801688,4.104359379111847 -725,12.0,11.0,0.0,7.142857142857143 -725,12.0,12.0,0.0,-7.142857142857143 -725,13.0,11.0,-1.5265676088395577,3.1734252729654173 -725,13.0,13.0,4.01751987283902,-5.424299332335067 -725,13.0,14.0,-2.4909522639994623,2.250874059369649 -725,14.0,11.0,-3.0953961826564296,6.097275864326261 -725,14.0,13.0,-2.4909522639994623,2.250874059369649 -725,14.0,14.0,9.365498545964757,-16.01163373210796 -725,14.0,17.0,-1.8108011504072024,3.687418931630696 -725,14.0,22.0,-1.9683489489016612,3.976064876781356 -725,15.0,11.0,-1.9519977922801688,4.104359379111847 -725,15.0,15.0,3.271064728633931,-8.94513365126506 -725,15.0,16.0,-1.3190669363537617,4.8407742721532125 -725,16.0,9.0,-3.956039125715353,10.317447719844054 -725,16.0,15.0,-1.3190669363537617,4.8407742721532125 -725,16.0,16.0,5.275106062069114,-15.158221991997266 -725,17.0,14.0,-1.8108011504072024,3.687418931630696 -725,17.0,17.0,4.886487584415919,-9.906177730909668 -725,17.0,18.0,-3.0756864340087167,6.218758799278971 -725,18.0,17.0,-3.0756864340087167,6.218758799278971 -725,18.0,18.0,8.958039375185187,-17.98346468163191 -725,18.0,19.0,-5.88235294117647,11.76470588235294 -725,19.0,9.0,-1.7848303152666305,3.98535828943083 -725,19.0,18.0,-5.88235294117647,11.76470588235294 -725,19.0,19.0,7.6671832564431,-15.75006417178377 -725,20.0,9.0,-5.101853820159654,10.98071411292983 -725,20.0,20.0,21.876495189895888,-45.10843276170355 -725,20.0,21.0,-16.774641369736234,34.127718648773715 -725,21.0,9.0,-2.619319553382597,5.400770303329455 -725,21.0,20.0,-16.774641369736234,34.127718648773715 -725,21.0,21.0,21.93449907537439,-43.48289181517921 -725,21.0,23.0,-2.5405381522555563,3.95440286307604 -725,22.0,14.0,-1.9683489489016612,3.976064876781356 -725,22.0,22.0,1.9683489489016612,-3.976064876781356 -725,23.0,21.0,-2.5405381522555563,3.95440286307604 -725,23.0,23.0,3.850431096129806,-6.199024916781094 -725,23.0,24.0,-1.3098929438742493,2.287622053705056 -725,24.0,23.0,-1.3098929438742493,2.287622053705056 -725,24.0,24.0,4.495715080321987,-7.864978761969621 -725,24.0,25.0,-1.2165301194494855,1.8171440463475024 -725,24.0,26.0,-1.9692920169982515,3.760212661917064 -725,25.0,24.0,-1.2165301194494855,1.8171440463475024 -725,25.0,25.0,1.2165301194494855,-1.8171440463475024 -725,26.0,24.0,-1.9692920169982515,3.760212661917064 -725,26.0,26.0,3.652281470778589,-9.46044252232512 -725,26.0,27.0,0.0,2.608731947574922 -725,26.0,28.0,-0.99553355095268,1.881005840357816 -725,26.0,29.0,-0.6874559028276572,1.293971494797717 -725,27.0,5.0,-4.362844058012917,15.463571542897856 -725,27.0,7.0,-1.4439790613954469,4.540814658476248 -725,27.0,26.0,0.0,2.608731947574922 -725,27.0,27.0,5.806823119408364,-22.67145722159613 -725,28.0,26.0,-0.99553355095268,1.881005840357816 -725,28.0,28.0,1.9075867579849564,-3.604364401207048 -725,28.0,29.0,-0.9120532070322764,1.7233585608492326 -725,29.0,26.0,-0.6874559028276572,1.293971494797717 -725,29.0,28.0,-0.9120532070322764,1.7233585608492326 -725,29.0,29.0,1.5995091098599337,-3.0173300556469496 -726,0.0,0.0,6.765516048652632,-21.23160167089863 -726,0.0,1.0,-5.224646179885656,15.646726840803398 -726,0.0,2.0,-1.5408698687669766,5.631674830095234 -726,1.0,0.0,-5.224646179885656,15.646726840803398 -726,1.0,1.0,9.75228216552403,-30.648662892676068 -726,1.0,3.0,-1.7055303166990268,5.1973792282565086 -726,1.0,4.0,-1.1359607881738778,4.772479328281356 -726,1.0,5.0,-1.6861448807654689,5.116477495334806 -726,2.0,0.0,-1.5408698687669766,5.631674830095234 -726,2.0,2.0,9.736318911079088,-29.13794745915803 -726,2.0,3.0,-8.19544904231211,23.5308726290628 -726,3.0,1.0,-1.7055303166990268,5.1973792282565086 -726,3.0,2.0,-8.19544904231211,23.5308726290628 -726,3.0,3.0,16.314103089185693,-55.509410535254254 -726,3.0,5.0,-6.413123730174556,22.31120356548123 -726,3.0,11.0,0.0,4.191255364806866 -726,4.0,1.0,-1.1359607881738778,4.772479328281356 -726,4.0,4.0,4.089980824135861,-12.190647245055052 -726,4.0,6.0,-2.954020035961983,7.449267916773697 -726,5.0,1.0,-1.6861448807654689,5.116477495334806 -726,5.0,3.0,-6.413123730174556,22.31120356548123 -726,5.0,5.0,22.341631269034565,-82.8291478657789 -726,5.0,6.0,-3.590210423980992,11.02611441072814 -726,5.0,7.0,-6.289308176100628,22.0125786163522 -726,5.0,8.0,0.0,4.915840805411357 -726,5.0,9.0,0.0,1.8561002591115965 -726,5.0,27.0,-4.362844058012917,15.463571542897856 -726,6.0,4.0,-2.954020035961983,7.449267916773697 -726,6.0,5.0,-3.590210423980992,11.02611441072814 -726,6.0,6.0,6.544230459942975,-18.45668232750184 -726,7.0,5.0,-6.289308176100628,22.0125786163522 -726,7.0,7.0,7.733287237496075,-26.527493274828448 -726,7.0,27.0,-1.4439790613954469,4.540814658476248 -726,8.0,5.0,0.0,4.915840805411357 -726,8.0,8.0,0.0,-18.706293706293707 -726,8.0,9.0,0.0,9.090909090909092 -726,8.0,10.0,0.0,4.807692307692308 -726,9.0,5.0,0.0,1.8561002591115965 -726,9.0,8.0,0.0,9.090909090909092 -726,9.0,9.0,13.462042814524237,-41.3837606675224 -726,9.0,16.0,-3.956039125715353,10.317447719844054 -726,9.0,19.0,-1.7848303152666305,3.98535828943083 -726,9.0,20.0,-5.101853820159654,10.98071411292983 -726,9.0,21.0,-2.619319553382597,5.400770303329455 -726,10.0,8.0,0.0,4.807692307692308 -726,10.0,10.0,0.0,-4.807692307692308 -726,11.0,3.0,0.0,4.191255364806866 -726,11.0,11.0,6.573961583776156,-24.424167659260668 -726,11.0,12.0,0.0,7.142857142857143 -726,11.0,13.0,-1.5265676088395577,3.1734252729654173 -726,11.0,14.0,-3.0953961826564296,6.097275864326261 -726,11.0,15.0,-1.9519977922801688,4.104359379111847 -726,12.0,11.0,0.0,7.142857142857143 -726,12.0,12.0,0.0,-7.142857142857143 -726,13.0,11.0,-1.5265676088395577,3.1734252729654173 -726,13.0,13.0,4.01751987283902,-5.424299332335067 -726,13.0,14.0,-2.4909522639994623,2.250874059369649 -726,14.0,11.0,-3.0953961826564296,6.097275864326261 -726,14.0,13.0,-2.4909522639994623,2.250874059369649 -726,14.0,14.0,9.365498545964757,-16.01163373210796 -726,14.0,17.0,-1.8108011504072024,3.687418931630696 -726,14.0,22.0,-1.9683489489016612,3.976064876781356 -726,15.0,11.0,-1.9519977922801688,4.104359379111847 -726,15.0,15.0,3.271064728633931,-8.94513365126506 -726,15.0,16.0,-1.3190669363537617,4.8407742721532125 -726,16.0,9.0,-3.956039125715353,10.317447719844054 -726,16.0,15.0,-1.3190669363537617,4.8407742721532125 -726,16.0,16.0,5.275106062069114,-15.158221991997266 -726,17.0,14.0,-1.8108011504072024,3.687418931630696 -726,17.0,17.0,4.886487584415919,-9.906177730909668 -726,17.0,18.0,-3.0756864340087167,6.218758799278971 -726,18.0,17.0,-3.0756864340087167,6.218758799278971 -726,18.0,18.0,8.958039375185187,-17.98346468163191 -726,18.0,19.0,-5.88235294117647,11.76470588235294 -726,19.0,9.0,-1.7848303152666305,3.98535828943083 -726,19.0,18.0,-5.88235294117647,11.76470588235294 -726,19.0,19.0,7.6671832564431,-15.75006417178377 -726,20.0,9.0,-5.101853820159654,10.98071411292983 -726,20.0,20.0,21.876495189895888,-45.10843276170355 -726,20.0,21.0,-16.774641369736234,34.127718648773715 -726,21.0,9.0,-2.619319553382597,5.400770303329455 -726,21.0,20.0,-16.774641369736234,34.127718648773715 -726,21.0,21.0,21.93449907537439,-43.48289181517921 -726,21.0,23.0,-2.5405381522555563,3.95440286307604 -726,22.0,14.0,-1.9683489489016612,3.976064876781356 -726,22.0,22.0,3.429754555384988,-6.965303617315433 -726,22.0,23.0,-1.4614056064833263,2.989238740534077 -726,23.0,21.0,-2.5405381522555563,3.95440286307604 -726,23.0,22.0,-1.4614056064833263,2.989238740534077 -726,23.0,23.0,5.311836702613133,-9.188263657315172 -726,23.0,24.0,-1.3098929438742493,2.287622053705056 -726,24.0,23.0,-1.3098929438742493,2.287622053705056 -726,24.0,24.0,4.495715080321987,-7.864978761969621 -726,24.0,25.0,-1.2165301194494855,1.8171440463475024 -726,24.0,26.0,-1.9692920169982515,3.760212661917064 -726,25.0,24.0,-1.2165301194494855,1.8171440463475024 -726,25.0,25.0,1.2165301194494855,-1.8171440463475024 -726,26.0,24.0,-1.9692920169982515,3.760212661917064 -726,26.0,26.0,3.652281470778589,-9.46044252232512 -726,26.0,27.0,0.0,2.608731947574922 -726,26.0,28.0,-0.99553355095268,1.881005840357816 -726,26.0,29.0,-0.6874559028276572,1.293971494797717 -726,27.0,5.0,-4.362844058012917,15.463571542897856 -726,27.0,7.0,-1.4439790613954469,4.540814658476248 -726,27.0,26.0,0.0,2.608731947574922 -726,27.0,27.0,5.806823119408364,-22.67145722159613 -726,28.0,26.0,-0.99553355095268,1.881005840357816 -726,28.0,28.0,1.9075867579849564,-3.604364401207048 -726,28.0,29.0,-0.9120532070322764,1.7233585608492326 -726,29.0,26.0,-0.6874559028276572,1.293971494797717 -726,29.0,28.0,-0.9120532070322764,1.7233585608492326 -726,29.0,29.0,1.5995091098599337,-3.0173300556469496 -727,0.0,0.0,6.765516048652632,-21.23160167089863 -727,0.0,1.0,-5.224646179885656,15.646726840803398 -727,0.0,2.0,-1.5408698687669766,5.631674830095234 -727,1.0,0.0,-5.224646179885656,15.646726840803398 -727,1.0,1.0,9.75228216552403,-30.648662892676068 -727,1.0,3.0,-1.7055303166990268,5.1973792282565086 -727,1.0,4.0,-1.1359607881738778,4.772479328281356 -727,1.0,5.0,-1.6861448807654689,5.116477495334806 -727,2.0,0.0,-1.5408698687669766,5.631674830095234 -727,2.0,2.0,9.736318911079088,-29.13794745915803 -727,2.0,3.0,-8.19544904231211,23.5308726290628 -727,3.0,1.0,-1.7055303166990268,5.1973792282565086 -727,3.0,2.0,-8.19544904231211,23.5308726290628 -727,3.0,3.0,16.314103089185693,-55.509410535254254 -727,3.0,5.0,-6.413123730174556,22.31120356548123 -727,3.0,11.0,0.0,4.191255364806866 -727,4.0,1.0,-1.1359607881738778,4.772479328281356 -727,4.0,4.0,4.089980824135861,-12.190647245055052 -727,4.0,6.0,-2.954020035961983,7.449267916773697 -727,5.0,1.0,-1.6861448807654689,5.116477495334806 -727,5.0,3.0,-6.413123730174556,22.31120356548123 -727,5.0,5.0,22.341631269034565,-82.8291478657789 -727,5.0,6.0,-3.590210423980992,11.02611441072814 -727,5.0,7.0,-6.289308176100628,22.0125786163522 -727,5.0,8.0,0.0,4.915840805411357 -727,5.0,9.0,0.0,1.8561002591115965 -727,5.0,27.0,-4.362844058012917,15.463571542897856 -727,6.0,4.0,-2.954020035961983,7.449267916773697 -727,6.0,5.0,-3.590210423980992,11.02611441072814 -727,6.0,6.0,6.544230459942975,-18.45668232750184 -727,7.0,5.0,-6.289308176100628,22.0125786163522 -727,7.0,7.0,7.733287237496075,-26.527493274828448 -727,7.0,27.0,-1.4439790613954469,4.540814658476248 -727,8.0,5.0,0.0,4.915840805411357 -727,8.0,8.0,0.0,-18.706293706293707 -727,8.0,9.0,0.0,9.090909090909092 -727,8.0,10.0,0.0,4.807692307692308 -727,9.0,5.0,0.0,1.8561002591115965 -727,9.0,8.0,0.0,9.090909090909092 -727,9.0,9.0,13.462042814524237,-41.3837606675224 -727,9.0,16.0,-3.956039125715353,10.317447719844054 -727,9.0,19.0,-1.7848303152666305,3.98535828943083 -727,9.0,20.0,-5.101853820159654,10.98071411292983 -727,9.0,21.0,-2.619319553382597,5.400770303329455 -727,10.0,8.0,0.0,4.807692307692308 -727,10.0,10.0,0.0,-4.807692307692308 -727,11.0,3.0,0.0,4.191255364806866 -727,11.0,11.0,6.573961583776156,-24.424167659260668 -727,11.0,12.0,0.0,7.142857142857143 -727,11.0,13.0,-1.5265676088395577,3.1734252729654173 -727,11.0,14.0,-3.0953961826564296,6.097275864326261 -727,11.0,15.0,-1.9519977922801688,4.104359379111847 -727,12.0,11.0,0.0,7.142857142857143 -727,12.0,12.0,0.0,-7.142857142857143 -727,13.0,11.0,-1.5265676088395577,3.1734252729654173 -727,13.0,13.0,4.01751987283902,-5.424299332335067 -727,13.0,14.0,-2.4909522639994623,2.250874059369649 -727,14.0,11.0,-3.0953961826564296,6.097275864326261 -727,14.0,13.0,-2.4909522639994623,2.250874059369649 -727,14.0,14.0,9.365498545964757,-16.01163373210796 -727,14.0,17.0,-1.8108011504072024,3.687418931630696 -727,14.0,22.0,-1.9683489489016612,3.976064876781356 -727,15.0,11.0,-1.9519977922801688,4.104359379111847 -727,15.0,15.0,3.271064728633931,-8.94513365126506 -727,15.0,16.0,-1.3190669363537617,4.8407742721532125 -727,16.0,9.0,-3.956039125715353,10.317447719844054 -727,16.0,15.0,-1.3190669363537617,4.8407742721532125 -727,16.0,16.0,5.275106062069114,-15.158221991997266 -727,17.0,14.0,-1.8108011504072024,3.687418931630696 -727,17.0,17.0,4.886487584415919,-9.906177730909668 -727,17.0,18.0,-3.0756864340087167,6.218758799278971 -727,18.0,17.0,-3.0756864340087167,6.218758799278971 -727,18.0,18.0,8.958039375185187,-17.98346468163191 -727,18.0,19.0,-5.88235294117647,11.76470588235294 -727,19.0,9.0,-1.7848303152666305,3.98535828943083 -727,19.0,18.0,-5.88235294117647,11.76470588235294 -727,19.0,19.0,7.6671832564431,-15.75006417178377 -727,20.0,9.0,-5.101853820159654,10.98071411292983 -727,20.0,20.0,21.876495189895888,-45.10843276170355 -727,20.0,21.0,-16.774641369736234,34.127718648773715 -727,21.0,9.0,-2.619319553382597,5.400770303329455 -727,21.0,20.0,-16.774641369736234,34.127718648773715 -727,21.0,21.0,21.93449907537439,-43.48289181517921 -727,21.0,23.0,-2.5405381522555563,3.95440286307604 -727,22.0,14.0,-1.9683489489016612,3.976064876781356 -727,22.0,22.0,3.429754555384988,-6.965303617315433 -727,22.0,23.0,-1.4614056064833263,2.989238740534077 -727,23.0,21.0,-2.5405381522555563,3.95440286307604 -727,23.0,22.0,-1.4614056064833263,2.989238740534077 -727,23.0,23.0,5.311836702613133,-9.188263657315172 -727,23.0,24.0,-1.3098929438742493,2.287622053705056 -727,24.0,23.0,-1.3098929438742493,2.287622053705056 -727,24.0,24.0,4.495715080321987,-7.864978761969621 -727,24.0,25.0,-1.2165301194494855,1.8171440463475024 -727,24.0,26.0,-1.9692920169982515,3.760212661917064 -727,25.0,24.0,-1.2165301194494855,1.8171440463475024 -727,25.0,25.0,1.2165301194494855,-1.8171440463475024 -727,26.0,24.0,-1.9692920169982515,3.760212661917064 -727,26.0,26.0,3.652281470778589,-9.46044252232512 -727,26.0,27.0,0.0,2.608731947574922 -727,26.0,28.0,-0.99553355095268,1.881005840357816 -727,26.0,29.0,-0.6874559028276572,1.293971494797717 -727,27.0,5.0,-4.362844058012917,15.463571542897856 -727,27.0,7.0,-1.4439790613954469,4.540814658476248 -727,27.0,26.0,0.0,2.608731947574922 -727,27.0,27.0,5.806823119408364,-22.67145722159613 -727,28.0,26.0,-0.99553355095268,1.881005840357816 -727,28.0,28.0,1.9075867579849564,-3.604364401207048 -727,28.0,29.0,-0.9120532070322764,1.7233585608492326 -727,29.0,26.0,-0.6874559028276572,1.293971494797717 -727,29.0,28.0,-0.9120532070322764,1.7233585608492326 -727,29.0,29.0,1.5995091098599337,-3.0173300556469496 -728,0.0,0.0,6.765516048652632,-21.23160167089863 -728,0.0,1.0,-5.224646179885656,15.646726840803398 -728,0.0,2.0,-1.5408698687669766,5.631674830095234 -728,1.0,0.0,-5.224646179885656,15.646726840803398 -728,1.0,1.0,9.75228216552403,-30.648662892676068 -728,1.0,3.0,-1.7055303166990268,5.1973792282565086 -728,1.0,4.0,-1.1359607881738778,4.772479328281356 -728,1.0,5.0,-1.6861448807654689,5.116477495334806 -728,2.0,0.0,-1.5408698687669766,5.631674830095234 -728,2.0,2.0,9.736318911079088,-29.13794745915803 -728,2.0,3.0,-8.19544904231211,23.5308726290628 -728,3.0,1.0,-1.7055303166990268,5.1973792282565086 -728,3.0,2.0,-8.19544904231211,23.5308726290628 -728,3.0,3.0,16.314103089185693,-55.509410535254254 -728,3.0,5.0,-6.413123730174556,22.31120356548123 -728,3.0,11.0,0.0,4.191255364806866 -728,4.0,1.0,-1.1359607881738778,4.772479328281356 -728,4.0,4.0,4.089980824135861,-12.190647245055052 -728,4.0,6.0,-2.954020035961983,7.449267916773697 -728,5.0,1.0,-1.6861448807654689,5.116477495334806 -728,5.0,3.0,-6.413123730174556,22.31120356548123 -728,5.0,5.0,22.341631269034565,-82.8291478657789 -728,5.0,6.0,-3.590210423980992,11.02611441072814 -728,5.0,7.0,-6.289308176100628,22.0125786163522 -728,5.0,8.0,0.0,4.915840805411357 -728,5.0,9.0,0.0,1.8561002591115965 -728,5.0,27.0,-4.362844058012917,15.463571542897856 -728,6.0,4.0,-2.954020035961983,7.449267916773697 -728,6.0,5.0,-3.590210423980992,11.02611441072814 -728,6.0,6.0,6.544230459942975,-18.45668232750184 -728,7.0,5.0,-6.289308176100628,22.0125786163522 -728,7.0,7.0,7.733287237496075,-26.527493274828448 -728,7.0,27.0,-1.4439790613954469,4.540814658476248 -728,8.0,5.0,0.0,4.915840805411357 -728,8.0,8.0,0.0,-18.706293706293707 -728,8.0,9.0,0.0,9.090909090909092 -728,8.0,10.0,0.0,4.807692307692308 -728,9.0,5.0,0.0,1.8561002591115965 -728,9.0,8.0,0.0,9.090909090909092 -728,9.0,9.0,13.462042814524237,-41.3837606675224 -728,9.0,16.0,-3.956039125715353,10.317447719844054 -728,9.0,19.0,-1.7848303152666305,3.98535828943083 -728,9.0,20.0,-5.101853820159654,10.98071411292983 -728,9.0,21.0,-2.619319553382597,5.400770303329455 -728,10.0,8.0,0.0,4.807692307692308 -728,10.0,10.0,0.0,-4.807692307692308 -728,11.0,3.0,0.0,4.191255364806866 -728,11.0,11.0,6.573961583776156,-24.424167659260668 -728,11.0,12.0,0.0,7.142857142857143 -728,11.0,13.0,-1.5265676088395577,3.1734252729654173 -728,11.0,14.0,-3.0953961826564296,6.097275864326261 -728,11.0,15.0,-1.9519977922801688,4.104359379111847 -728,12.0,11.0,0.0,7.142857142857143 -728,12.0,12.0,0.0,-7.142857142857143 -728,13.0,11.0,-1.5265676088395577,3.1734252729654173 -728,13.0,13.0,4.01751987283902,-5.424299332335067 -728,13.0,14.0,-2.4909522639994623,2.250874059369649 -728,14.0,11.0,-3.0953961826564296,6.097275864326261 -728,14.0,13.0,-2.4909522639994623,2.250874059369649 -728,14.0,14.0,9.365498545964757,-16.01163373210796 -728,14.0,17.0,-1.8108011504072024,3.687418931630696 -728,14.0,22.0,-1.9683489489016612,3.976064876781356 -728,15.0,11.0,-1.9519977922801688,4.104359379111847 -728,15.0,15.0,3.271064728633931,-8.94513365126506 -728,15.0,16.0,-1.3190669363537617,4.8407742721532125 -728,16.0,9.0,-3.956039125715353,10.317447719844054 -728,16.0,15.0,-1.3190669363537617,4.8407742721532125 -728,16.0,16.0,5.275106062069114,-15.158221991997266 -728,17.0,14.0,-1.8108011504072024,3.687418931630696 -728,17.0,17.0,4.886487584415919,-9.906177730909668 -728,17.0,18.0,-3.0756864340087167,6.218758799278971 -728,18.0,17.0,-3.0756864340087167,6.218758799278971 -728,18.0,18.0,8.958039375185187,-17.98346468163191 -728,18.0,19.0,-5.88235294117647,11.76470588235294 -728,19.0,9.0,-1.7848303152666305,3.98535828943083 -728,19.0,18.0,-5.88235294117647,11.76470588235294 -728,19.0,19.0,7.6671832564431,-15.75006417178377 -728,20.0,9.0,-5.101853820159654,10.98071411292983 -728,20.0,20.0,21.876495189895888,-45.10843276170355 -728,20.0,21.0,-16.774641369736234,34.127718648773715 -728,21.0,9.0,-2.619319553382597,5.400770303329455 -728,21.0,20.0,-16.774641369736234,34.127718648773715 -728,21.0,21.0,21.93449907537439,-43.48289181517921 -728,21.0,23.0,-2.5405381522555563,3.95440286307604 -728,22.0,14.0,-1.9683489489016612,3.976064876781356 -728,22.0,22.0,3.429754555384988,-6.965303617315433 -728,22.0,23.0,-1.4614056064833263,2.989238740534077 -728,23.0,21.0,-2.5405381522555563,3.95440286307604 -728,23.0,22.0,-1.4614056064833263,2.989238740534077 -728,23.0,23.0,5.311836702613133,-9.188263657315172 -728,23.0,24.0,-1.3098929438742493,2.287622053705056 -728,24.0,23.0,-1.3098929438742493,2.287622053705056 -728,24.0,24.0,4.495715080321987,-7.864978761969621 -728,24.0,25.0,-1.2165301194494855,1.8171440463475024 -728,24.0,26.0,-1.9692920169982515,3.760212661917064 -728,25.0,24.0,-1.2165301194494855,1.8171440463475024 -728,25.0,25.0,1.2165301194494855,-1.8171440463475024 -728,26.0,24.0,-1.9692920169982515,3.760212661917064 -728,26.0,26.0,3.652281470778589,-9.46044252232512 -728,26.0,27.0,0.0,2.608731947574922 -728,26.0,28.0,-0.99553355095268,1.881005840357816 -728,26.0,29.0,-0.6874559028276572,1.293971494797717 -728,27.0,5.0,-4.362844058012917,15.463571542897856 -728,27.0,7.0,-1.4439790613954469,4.540814658476248 -728,27.0,26.0,0.0,2.608731947574922 -728,27.0,27.0,5.806823119408364,-22.67145722159613 -728,28.0,26.0,-0.99553355095268,1.881005840357816 -728,28.0,28.0,1.9075867579849564,-3.604364401207048 -728,28.0,29.0,-0.9120532070322764,1.7233585608492326 -728,29.0,26.0,-0.6874559028276572,1.293971494797717 -728,29.0,28.0,-0.9120532070322764,1.7233585608492326 -728,29.0,29.0,1.5995091098599337,-3.0173300556469496 -729,0.0,0.0,6.765516048652632,-21.23160167089863 -729,0.0,1.0,-5.224646179885656,15.646726840803398 -729,0.0,2.0,-1.5408698687669766,5.631674830095234 -729,1.0,0.0,-5.224646179885656,15.646726840803398 -729,1.0,1.0,9.75228216552403,-30.648662892676068 -729,1.0,3.0,-1.7055303166990268,5.1973792282565086 -729,1.0,4.0,-1.1359607881738778,4.772479328281356 -729,1.0,5.0,-1.6861448807654689,5.116477495334806 -729,2.0,0.0,-1.5408698687669766,5.631674830095234 -729,2.0,2.0,9.736318911079088,-29.13794745915803 -729,2.0,3.0,-8.19544904231211,23.5308726290628 -729,3.0,1.0,-1.7055303166990268,5.1973792282565086 -729,3.0,2.0,-8.19544904231211,23.5308726290628 -729,3.0,3.0,9.900979359011137,-33.202706969773025 -729,3.0,11.0,0.0,4.191255364806866 -729,4.0,1.0,-1.1359607881738778,4.772479328281356 -729,4.0,4.0,4.089980824135861,-12.190647245055052 -729,4.0,6.0,-2.954020035961983,7.449267916773697 -729,5.0,1.0,-1.6861448807654689,5.116477495334806 -729,5.0,5.0,15.928507538860009,-60.52244430029767 -729,5.0,6.0,-3.590210423980992,11.02611441072814 -729,5.0,7.0,-6.289308176100628,22.0125786163522 -729,5.0,8.0,0.0,4.915840805411357 -729,5.0,9.0,0.0,1.8561002591115965 -729,5.0,27.0,-4.362844058012917,15.463571542897856 -729,6.0,4.0,-2.954020035961983,7.449267916773697 -729,6.0,5.0,-3.590210423980992,11.02611441072814 -729,6.0,6.0,6.544230459942975,-18.45668232750184 -729,7.0,5.0,-6.289308176100628,22.0125786163522 -729,7.0,7.0,7.733287237496075,-26.527493274828448 -729,7.0,27.0,-1.4439790613954469,4.540814658476248 -729,8.0,5.0,0.0,4.915840805411357 -729,8.0,8.0,0.0,-18.706293706293707 -729,8.0,9.0,0.0,9.090909090909092 -729,8.0,10.0,0.0,4.807692307692308 -729,9.0,5.0,0.0,1.8561002591115965 -729,9.0,8.0,0.0,9.090909090909092 -729,9.0,9.0,13.462042814524237,-41.3837606675224 -729,9.0,16.0,-3.956039125715353,10.317447719844054 -729,9.0,19.0,-1.7848303152666305,3.98535828943083 -729,9.0,20.0,-5.101853820159654,10.98071411292983 -729,9.0,21.0,-2.619319553382597,5.400770303329455 -729,10.0,8.0,0.0,4.807692307692308 -729,10.0,10.0,0.0,-4.807692307692308 -729,11.0,3.0,0.0,4.191255364806866 -729,11.0,11.0,6.573961583776156,-24.424167659260668 -729,11.0,12.0,0.0,7.142857142857143 -729,11.0,13.0,-1.5265676088395577,3.1734252729654173 -729,11.0,14.0,-3.0953961826564296,6.097275864326261 -729,11.0,15.0,-1.9519977922801688,4.104359379111847 -729,12.0,11.0,0.0,7.142857142857143 -729,12.0,12.0,0.0,-7.142857142857143 -729,13.0,11.0,-1.5265676088395577,3.1734252729654173 -729,13.0,13.0,4.01751987283902,-5.424299332335067 -729,13.0,14.0,-2.4909522639994623,2.250874059369649 -729,14.0,11.0,-3.0953961826564296,6.097275864326261 -729,14.0,13.0,-2.4909522639994623,2.250874059369649 -729,14.0,14.0,9.365498545964757,-16.01163373210796 -729,14.0,17.0,-1.8108011504072024,3.687418931630696 -729,14.0,22.0,-1.9683489489016612,3.976064876781356 -729,15.0,11.0,-1.9519977922801688,4.104359379111847 -729,15.0,15.0,3.271064728633931,-8.94513365126506 -729,15.0,16.0,-1.3190669363537617,4.8407742721532125 -729,16.0,9.0,-3.956039125715353,10.317447719844054 -729,16.0,15.0,-1.3190669363537617,4.8407742721532125 -729,16.0,16.0,5.275106062069114,-15.158221991997266 -729,17.0,14.0,-1.8108011504072024,3.687418931630696 -729,17.0,17.0,4.886487584415919,-9.906177730909668 -729,17.0,18.0,-3.0756864340087167,6.218758799278971 -729,18.0,17.0,-3.0756864340087167,6.218758799278971 -729,18.0,18.0,8.958039375185187,-17.98346468163191 -729,18.0,19.0,-5.88235294117647,11.76470588235294 -729,19.0,9.0,-1.7848303152666305,3.98535828943083 -729,19.0,18.0,-5.88235294117647,11.76470588235294 -729,19.0,19.0,7.6671832564431,-15.75006417178377 -729,20.0,9.0,-5.101853820159654,10.98071411292983 -729,20.0,20.0,21.876495189895888,-45.10843276170355 -729,20.0,21.0,-16.774641369736234,34.127718648773715 -729,21.0,9.0,-2.619319553382597,5.400770303329455 -729,21.0,20.0,-16.774641369736234,34.127718648773715 -729,21.0,21.0,21.93449907537439,-43.48289181517921 -729,21.0,23.0,-2.5405381522555563,3.95440286307604 -729,22.0,14.0,-1.9683489489016612,3.976064876781356 -729,22.0,22.0,3.429754555384988,-6.965303617315433 -729,22.0,23.0,-1.4614056064833263,2.989238740534077 -729,23.0,21.0,-2.5405381522555563,3.95440286307604 -729,23.0,22.0,-1.4614056064833263,2.989238740534077 -729,23.0,23.0,5.311836702613133,-9.188263657315172 -729,23.0,24.0,-1.3098929438742493,2.287622053705056 -729,24.0,23.0,-1.3098929438742493,2.287622053705056 -729,24.0,24.0,4.495715080321987,-7.864978761969621 -729,24.0,25.0,-1.2165301194494855,1.8171440463475024 -729,24.0,26.0,-1.9692920169982515,3.760212661917064 -729,25.0,24.0,-1.2165301194494855,1.8171440463475024 -729,25.0,25.0,1.2165301194494855,-1.8171440463475024 -729,26.0,24.0,-1.9692920169982515,3.760212661917064 -729,26.0,26.0,3.652281470778589,-9.46044252232512 -729,26.0,27.0,0.0,2.608731947574922 -729,26.0,28.0,-0.99553355095268,1.881005840357816 -729,26.0,29.0,-0.6874559028276572,1.293971494797717 -729,27.0,5.0,-4.362844058012917,15.463571542897856 -729,27.0,7.0,-1.4439790613954469,4.540814658476248 -729,27.0,26.0,0.0,2.608731947574922 -729,27.0,27.0,5.806823119408364,-22.67145722159613 -729,28.0,26.0,-0.99553355095268,1.881005840357816 -729,28.0,28.0,1.9075867579849564,-3.604364401207048 -729,28.0,29.0,-0.9120532070322764,1.7233585608492326 -729,29.0,26.0,-0.6874559028276572,1.293971494797717 -729,29.0,28.0,-0.9120532070322764,1.7233585608492326 -729,29.0,29.0,1.5995091098599337,-3.0173300556469496 -730,0.0,0.0,6.765516048652632,-21.23160167089863 -730,0.0,1.0,-5.224646179885656,15.646726840803398 -730,0.0,2.0,-1.5408698687669766,5.631674830095234 -730,1.0,0.0,-5.224646179885656,15.646726840803398 -730,1.0,1.0,9.75228216552403,-30.648662892676068 -730,1.0,3.0,-1.7055303166990268,5.1973792282565086 -730,1.0,4.0,-1.1359607881738778,4.772479328281356 -730,1.0,5.0,-1.6861448807654689,5.116477495334806 -730,2.0,0.0,-1.5408698687669766,5.631674830095234 -730,2.0,2.0,9.736318911079088,-29.13794745915803 -730,2.0,3.0,-8.19544904231211,23.5308726290628 -730,3.0,1.0,-1.7055303166990268,5.1973792282565086 -730,3.0,2.0,-8.19544904231211,23.5308726290628 -730,3.0,3.0,16.314103089185693,-55.509410535254254 -730,3.0,5.0,-6.413123730174556,22.31120356548123 -730,3.0,11.0,0.0,4.191255364806866 -730,4.0,1.0,-1.1359607881738778,4.772479328281356 -730,4.0,4.0,4.089980824135861,-12.190647245055052 -730,4.0,6.0,-2.954020035961983,7.449267916773697 -730,5.0,1.0,-1.6861448807654689,5.116477495334806 -730,5.0,3.0,-6.413123730174556,22.31120356548123 -730,5.0,5.0,22.341631269034565,-82.8291478657789 -730,5.0,6.0,-3.590210423980992,11.02611441072814 -730,5.0,7.0,-6.289308176100628,22.0125786163522 -730,5.0,8.0,0.0,4.915840805411357 -730,5.0,9.0,0.0,1.8561002591115965 -730,5.0,27.0,-4.362844058012917,15.463571542897856 -730,6.0,4.0,-2.954020035961983,7.449267916773697 -730,6.0,5.0,-3.590210423980992,11.02611441072814 -730,6.0,6.0,6.544230459942975,-18.45668232750184 -730,7.0,5.0,-6.289308176100628,22.0125786163522 -730,7.0,7.0,7.733287237496075,-26.527493274828448 -730,7.0,27.0,-1.4439790613954469,4.540814658476248 -730,8.0,5.0,0.0,4.915840805411357 -730,8.0,8.0,0.0,-18.706293706293707 -730,8.0,9.0,0.0,9.090909090909092 -730,8.0,10.0,0.0,4.807692307692308 -730,9.0,5.0,0.0,1.8561002591115965 -730,9.0,8.0,0.0,9.090909090909092 -730,9.0,9.0,13.462042814524237,-41.3837606675224 -730,9.0,16.0,-3.956039125715353,10.317447719844054 -730,9.0,19.0,-1.7848303152666305,3.98535828943083 -730,9.0,20.0,-5.101853820159654,10.98071411292983 -730,9.0,21.0,-2.619319553382597,5.400770303329455 -730,10.0,8.0,0.0,4.807692307692308 -730,10.0,10.0,0.0,-4.807692307692308 -730,11.0,3.0,0.0,4.191255364806866 -730,11.0,11.0,6.573961583776156,-24.424167659260668 -730,11.0,12.0,0.0,7.142857142857143 -730,11.0,13.0,-1.5265676088395577,3.1734252729654173 -730,11.0,14.0,-3.0953961826564296,6.097275864326261 -730,11.0,15.0,-1.9519977922801688,4.104359379111847 -730,12.0,11.0,0.0,7.142857142857143 -730,12.0,12.0,0.0,-7.142857142857143 -730,13.0,11.0,-1.5265676088395577,3.1734252729654173 -730,13.0,13.0,4.01751987283902,-5.424299332335067 -730,13.0,14.0,-2.4909522639994623,2.250874059369649 -730,14.0,11.0,-3.0953961826564296,6.097275864326261 -730,14.0,13.0,-2.4909522639994623,2.250874059369649 -730,14.0,14.0,9.365498545964757,-16.01163373210796 -730,14.0,17.0,-1.8108011504072024,3.687418931630696 -730,14.0,22.0,-1.9683489489016612,3.976064876781356 -730,15.0,11.0,-1.9519977922801688,4.104359379111847 -730,15.0,15.0,1.9519977922801688,-4.104359379111847 -730,16.0,9.0,-3.956039125715353,10.317447719844054 -730,16.0,16.0,3.956039125715353,-10.317447719844054 -730,17.0,14.0,-1.8108011504072024,3.687418931630696 -730,17.0,17.0,4.886487584415919,-9.906177730909668 -730,17.0,18.0,-3.0756864340087167,6.218758799278971 -730,18.0,17.0,-3.0756864340087167,6.218758799278971 -730,18.0,18.0,8.958039375185187,-17.98346468163191 -730,18.0,19.0,-5.88235294117647,11.76470588235294 -730,19.0,9.0,-1.7848303152666305,3.98535828943083 -730,19.0,18.0,-5.88235294117647,11.76470588235294 -730,19.0,19.0,7.6671832564431,-15.75006417178377 -730,20.0,9.0,-5.101853820159654,10.98071411292983 -730,20.0,20.0,21.876495189895888,-45.10843276170355 -730,20.0,21.0,-16.774641369736234,34.127718648773715 -730,21.0,9.0,-2.619319553382597,5.400770303329455 -730,21.0,20.0,-16.774641369736234,34.127718648773715 -730,21.0,21.0,21.93449907537439,-43.48289181517921 -730,21.0,23.0,-2.5405381522555563,3.95440286307604 -730,22.0,14.0,-1.9683489489016612,3.976064876781356 -730,22.0,22.0,3.429754555384988,-6.965303617315433 -730,22.0,23.0,-1.4614056064833263,2.989238740534077 -730,23.0,21.0,-2.5405381522555563,3.95440286307604 -730,23.0,22.0,-1.4614056064833263,2.989238740534077 -730,23.0,23.0,5.311836702613133,-9.188263657315172 -730,23.0,24.0,-1.3098929438742493,2.287622053705056 -730,24.0,23.0,-1.3098929438742493,2.287622053705056 -730,24.0,24.0,4.495715080321987,-7.864978761969621 -730,24.0,25.0,-1.2165301194494855,1.8171440463475024 -730,24.0,26.0,-1.9692920169982515,3.760212661917064 -730,25.0,24.0,-1.2165301194494855,1.8171440463475024 -730,25.0,25.0,1.2165301194494855,-1.8171440463475024 -730,26.0,24.0,-1.9692920169982515,3.760212661917064 -730,26.0,26.0,3.652281470778589,-9.46044252232512 -730,26.0,27.0,0.0,2.608731947574922 -730,26.0,28.0,-0.99553355095268,1.881005840357816 -730,26.0,29.0,-0.6874559028276572,1.293971494797717 -730,27.0,5.0,-4.362844058012917,15.463571542897856 -730,27.0,7.0,-1.4439790613954469,4.540814658476248 -730,27.0,26.0,0.0,2.608731947574922 -730,27.0,27.0,5.806823119408364,-22.67145722159613 -730,28.0,26.0,-0.99553355095268,1.881005840357816 -730,28.0,28.0,1.9075867579849564,-3.604364401207048 -730,28.0,29.0,-0.9120532070322764,1.7233585608492326 -730,29.0,26.0,-0.6874559028276572,1.293971494797717 -730,29.0,28.0,-0.9120532070322764,1.7233585608492326 -730,29.0,29.0,1.5995091098599337,-3.0173300556469496 -731,0.0,0.0,6.765516048652632,-21.23160167089863 -731,0.0,1.0,-5.224646179885656,15.646726840803398 -731,0.0,2.0,-1.5408698687669766,5.631674830095234 -731,1.0,0.0,-5.224646179885656,15.646726840803398 -731,1.0,1.0,9.75228216552403,-30.648662892676068 -731,1.0,3.0,-1.7055303166990268,5.1973792282565086 -731,1.0,4.0,-1.1359607881738778,4.772479328281356 -731,1.0,5.0,-1.6861448807654689,5.116477495334806 -731,2.0,0.0,-1.5408698687669766,5.631674830095234 -731,2.0,2.0,9.736318911079088,-29.13794745915803 -731,2.0,3.0,-8.19544904231211,23.5308726290628 -731,3.0,1.0,-1.7055303166990268,5.1973792282565086 -731,3.0,2.0,-8.19544904231211,23.5308726290628 -731,3.0,3.0,16.314103089185693,-55.509410535254254 -731,3.0,5.0,-6.413123730174556,22.31120356548123 -731,3.0,11.0,0.0,4.191255364806866 -731,4.0,1.0,-1.1359607881738778,4.772479328281356 -731,4.0,4.0,4.089980824135861,-12.190647245055052 -731,4.0,6.0,-2.954020035961983,7.449267916773697 -731,5.0,1.0,-1.6861448807654689,5.116477495334806 -731,5.0,3.0,-6.413123730174556,22.31120356548123 -731,5.0,5.0,22.341631269034565,-77.80272577435625 -731,5.0,6.0,-3.590210423980992,11.02611441072814 -731,5.0,7.0,-6.289308176100628,22.0125786163522 -731,5.0,9.0,0.0,1.8561002591115965 -731,5.0,27.0,-4.362844058012917,15.463571542897856 -731,6.0,4.0,-2.954020035961983,7.449267916773697 -731,6.0,5.0,-3.590210423980992,11.02611441072814 -731,6.0,6.0,6.544230459942975,-18.45668232750184 -731,7.0,5.0,-6.289308176100628,22.0125786163522 -731,7.0,7.0,7.733287237496075,-26.527493274828448 -731,7.0,27.0,-1.4439790613954469,4.540814658476248 -731,8.0,8.0,0.0,-13.8986013986014 -731,8.0,9.0,0.0,9.090909090909092 -731,8.0,10.0,0.0,4.807692307692308 -731,9.0,5.0,0.0,1.8561002591115965 -731,9.0,8.0,0.0,9.090909090909092 -731,9.0,9.0,13.462042814524237,-41.3837606675224 -731,9.0,16.0,-3.956039125715353,10.317447719844054 -731,9.0,19.0,-1.7848303152666305,3.98535828943083 -731,9.0,20.0,-5.101853820159654,10.98071411292983 -731,9.0,21.0,-2.619319553382597,5.400770303329455 -731,10.0,8.0,0.0,4.807692307692308 -731,10.0,10.0,0.0,-4.807692307692308 -731,11.0,3.0,0.0,4.191255364806866 -731,11.0,11.0,6.573961583776156,-24.424167659260668 -731,11.0,12.0,0.0,7.142857142857143 -731,11.0,13.0,-1.5265676088395577,3.1734252729654173 -731,11.0,14.0,-3.0953961826564296,6.097275864326261 -731,11.0,15.0,-1.9519977922801688,4.104359379111847 -731,12.0,11.0,0.0,7.142857142857143 -731,12.0,12.0,0.0,-7.142857142857143 -731,13.0,11.0,-1.5265676088395577,3.1734252729654173 -731,13.0,13.0,4.01751987283902,-5.424299332335067 -731,13.0,14.0,-2.4909522639994623,2.250874059369649 -731,14.0,11.0,-3.0953961826564296,6.097275864326261 -731,14.0,13.0,-2.4909522639994623,2.250874059369649 -731,14.0,14.0,9.365498545964757,-16.01163373210796 -731,14.0,17.0,-1.8108011504072024,3.687418931630696 -731,14.0,22.0,-1.9683489489016612,3.976064876781356 -731,15.0,11.0,-1.9519977922801688,4.104359379111847 -731,15.0,15.0,3.271064728633931,-8.94513365126506 -731,15.0,16.0,-1.3190669363537617,4.8407742721532125 -731,16.0,9.0,-3.956039125715353,10.317447719844054 -731,16.0,15.0,-1.3190669363537617,4.8407742721532125 -731,16.0,16.0,5.275106062069114,-15.158221991997266 -731,17.0,14.0,-1.8108011504072024,3.687418931630696 -731,17.0,17.0,4.886487584415919,-9.906177730909668 -731,17.0,18.0,-3.0756864340087167,6.218758799278971 -731,18.0,17.0,-3.0756864340087167,6.218758799278971 -731,18.0,18.0,8.958039375185187,-17.98346468163191 -731,18.0,19.0,-5.88235294117647,11.76470588235294 -731,19.0,9.0,-1.7848303152666305,3.98535828943083 -731,19.0,18.0,-5.88235294117647,11.76470588235294 -731,19.0,19.0,7.6671832564431,-15.75006417178377 -731,20.0,9.0,-5.101853820159654,10.98071411292983 -731,20.0,20.0,21.876495189895888,-45.10843276170355 -731,20.0,21.0,-16.774641369736234,34.127718648773715 -731,21.0,9.0,-2.619319553382597,5.400770303329455 -731,21.0,20.0,-16.774641369736234,34.127718648773715 -731,21.0,21.0,21.93449907537439,-43.48289181517921 -731,21.0,23.0,-2.5405381522555563,3.95440286307604 -731,22.0,14.0,-1.9683489489016612,3.976064876781356 -731,22.0,22.0,3.429754555384988,-6.965303617315433 -731,22.0,23.0,-1.4614056064833263,2.989238740534077 -731,23.0,21.0,-2.5405381522555563,3.95440286307604 -731,23.0,22.0,-1.4614056064833263,2.989238740534077 -731,23.0,23.0,5.311836702613133,-9.188263657315172 -731,23.0,24.0,-1.3098929438742493,2.287622053705056 -731,24.0,23.0,-1.3098929438742493,2.287622053705056 -731,24.0,24.0,4.495715080321987,-7.864978761969621 -731,24.0,25.0,-1.2165301194494855,1.8171440463475024 -731,24.0,26.0,-1.9692920169982515,3.760212661917064 -731,25.0,24.0,-1.2165301194494855,1.8171440463475024 -731,25.0,25.0,1.2165301194494855,-1.8171440463475024 -731,26.0,24.0,-1.9692920169982515,3.760212661917064 -731,26.0,26.0,3.652281470778589,-9.46044252232512 -731,26.0,27.0,0.0,2.608731947574922 -731,26.0,28.0,-0.99553355095268,1.881005840357816 -731,26.0,29.0,-0.6874559028276572,1.293971494797717 -731,27.0,5.0,-4.362844058012917,15.463571542897856 -731,27.0,7.0,-1.4439790613954469,4.540814658476248 -731,27.0,26.0,0.0,2.608731947574922 -731,27.0,27.0,5.806823119408364,-22.67145722159613 -731,28.0,26.0,-0.99553355095268,1.881005840357816 -731,28.0,28.0,0.99553355095268,-1.881005840357816 -731,29.0,26.0,-0.6874559028276572,1.293971494797717 -731,29.0,29.0,0.6874559028276572,-1.293971494797717 -732,0.0,0.0,6.765516048652632,-21.23160167089863 -732,0.0,1.0,-5.224646179885656,15.646726840803398 -732,0.0,2.0,-1.5408698687669766,5.631674830095234 -732,1.0,0.0,-5.224646179885656,15.646726840803398 -732,1.0,1.0,9.75228216552403,-30.648662892676068 -732,1.0,3.0,-1.7055303166990268,5.1973792282565086 -732,1.0,4.0,-1.1359607881738778,4.772479328281356 -732,1.0,5.0,-1.6861448807654689,5.116477495334806 -732,2.0,0.0,-1.5408698687669766,5.631674830095234 -732,2.0,2.0,9.736318911079088,-29.13794745915803 -732,2.0,3.0,-8.19544904231211,23.5308726290628 -732,3.0,1.0,-1.7055303166990268,5.1973792282565086 -732,3.0,2.0,-8.19544904231211,23.5308726290628 -732,3.0,3.0,16.314103089185693,-55.509410535254254 -732,3.0,5.0,-6.413123730174556,22.31120356548123 -732,3.0,11.0,0.0,4.191255364806866 -732,4.0,1.0,-1.1359607881738778,4.772479328281356 -732,4.0,4.0,4.089980824135861,-12.190647245055052 -732,4.0,6.0,-2.954020035961983,7.449267916773697 -732,5.0,1.0,-1.6861448807654689,5.116477495334806 -732,5.0,3.0,-6.413123730174556,22.31120356548123 -732,5.0,5.0,22.341631269034565,-82.8291478657789 -732,5.0,6.0,-3.590210423980992,11.02611441072814 -732,5.0,7.0,-6.289308176100628,22.0125786163522 -732,5.0,8.0,0.0,4.915840805411357 -732,5.0,9.0,0.0,1.8561002591115965 -732,5.0,27.0,-4.362844058012917,15.463571542897856 -732,6.0,4.0,-2.954020035961983,7.449267916773697 -732,6.0,5.0,-3.590210423980992,11.02611441072814 -732,6.0,6.0,6.544230459942975,-18.45668232750184 -732,7.0,5.0,-6.289308176100628,22.0125786163522 -732,7.0,7.0,7.733287237496075,-26.527493274828448 -732,7.0,27.0,-1.4439790613954469,4.540814658476248 -732,8.0,5.0,0.0,4.915840805411357 -732,8.0,8.0,0.0,-18.706293706293707 -732,8.0,9.0,0.0,9.090909090909092 -732,8.0,10.0,0.0,4.807692307692308 -732,9.0,5.0,0.0,1.8561002591115965 -732,9.0,8.0,0.0,9.090909090909092 -732,9.0,9.0,13.462042814524237,-41.3837606675224 -732,9.0,16.0,-3.956039125715353,10.317447719844054 -732,9.0,19.0,-1.7848303152666305,3.98535828943083 -732,9.0,20.0,-5.101853820159654,10.98071411292983 -732,9.0,21.0,-2.619319553382597,5.400770303329455 -732,10.0,8.0,0.0,4.807692307692308 -732,10.0,10.0,0.0,-4.807692307692308 -732,11.0,3.0,0.0,4.191255364806866 -732,11.0,11.0,6.573961583776156,-24.424167659260668 -732,11.0,12.0,0.0,7.142857142857143 -732,11.0,13.0,-1.5265676088395577,3.1734252729654173 -732,11.0,14.0,-3.0953961826564296,6.097275864326261 -732,11.0,15.0,-1.9519977922801688,4.104359379111847 -732,12.0,11.0,0.0,7.142857142857143 -732,12.0,12.0,0.0,-7.142857142857143 -732,13.0,11.0,-1.5265676088395577,3.1734252729654173 -732,13.0,13.0,4.01751987283902,-5.424299332335067 -732,13.0,14.0,-2.4909522639994623,2.250874059369649 -732,14.0,11.0,-3.0953961826564296,6.097275864326261 -732,14.0,13.0,-2.4909522639994623,2.250874059369649 -732,14.0,14.0,9.365498545964757,-16.01163373210796 -732,14.0,17.0,-1.8108011504072024,3.687418931630696 -732,14.0,22.0,-1.9683489489016612,3.976064876781356 -732,15.0,11.0,-1.9519977922801688,4.104359379111847 -732,15.0,15.0,3.271064728633931,-8.94513365126506 -732,15.0,16.0,-1.3190669363537617,4.8407742721532125 -732,16.0,9.0,-3.956039125715353,10.317447719844054 -732,16.0,15.0,-1.3190669363537617,4.8407742721532125 -732,16.0,16.0,5.275106062069114,-15.158221991997266 -732,17.0,14.0,-1.8108011504072024,3.687418931630696 -732,17.0,17.0,4.886487584415919,-9.906177730909668 -732,17.0,18.0,-3.0756864340087167,6.218758799278971 -732,18.0,17.0,-3.0756864340087167,6.218758799278971 -732,18.0,18.0,8.958039375185187,-17.98346468163191 -732,18.0,19.0,-5.88235294117647,11.76470588235294 -732,19.0,9.0,-1.7848303152666305,3.98535828943083 -732,19.0,18.0,-5.88235294117647,11.76470588235294 -732,19.0,19.0,7.6671832564431,-15.75006417178377 -732,20.0,9.0,-5.101853820159654,10.98071411292983 -732,20.0,20.0,21.876495189895888,-45.10843276170355 -732,20.0,21.0,-16.774641369736234,34.127718648773715 -732,21.0,9.0,-2.619319553382597,5.400770303329455 -732,21.0,20.0,-16.774641369736234,34.127718648773715 -732,21.0,21.0,21.93449907537439,-43.48289181517921 -732,21.0,23.0,-2.5405381522555563,3.95440286307604 -732,22.0,14.0,-1.9683489489016612,3.976064876781356 -732,22.0,22.0,3.429754555384988,-6.965303617315433 -732,22.0,23.0,-1.4614056064833263,2.989238740534077 -732,23.0,21.0,-2.5405381522555563,3.95440286307604 -732,23.0,22.0,-1.4614056064833263,2.989238740534077 -732,23.0,23.0,5.311836702613133,-9.188263657315172 -732,23.0,24.0,-1.3098929438742493,2.287622053705056 -732,24.0,23.0,-1.3098929438742493,2.287622053705056 -732,24.0,24.0,4.495715080321987,-7.864978761969621 -732,24.0,25.0,-1.2165301194494855,1.8171440463475024 -732,24.0,26.0,-1.9692920169982515,3.760212661917064 -732,25.0,24.0,-1.2165301194494855,1.8171440463475024 -732,25.0,25.0,1.2165301194494855,-1.8171440463475024 -732,26.0,24.0,-1.9692920169982515,3.760212661917064 -732,26.0,26.0,3.652281470778589,-9.46044252232512 -732,26.0,27.0,0.0,2.608731947574922 -732,26.0,28.0,-0.99553355095268,1.881005840357816 -732,26.0,29.0,-0.6874559028276572,1.293971494797717 -732,27.0,5.0,-4.362844058012917,15.463571542897856 -732,27.0,7.0,-1.4439790613954469,4.540814658476248 -732,27.0,26.0,0.0,2.608731947574922 -732,27.0,27.0,5.806823119408364,-22.67145722159613 -732,28.0,26.0,-0.99553355095268,1.881005840357816 -732,28.0,28.0,1.9075867579849564,-3.604364401207048 -732,28.0,29.0,-0.9120532070322764,1.7233585608492326 -732,29.0,26.0,-0.6874559028276572,1.293971494797717 -732,29.0,28.0,-0.9120532070322764,1.7233585608492326 -732,29.0,29.0,1.5995091098599337,-3.0173300556469496 -733,0.0,0.0,6.765516048652632,-21.23160167089863 -733,0.0,1.0,-5.224646179885656,15.646726840803398 -733,0.0,2.0,-1.5408698687669766,5.631674830095234 -733,1.0,0.0,-5.224646179885656,15.646726840803398 -733,1.0,1.0,9.75228216552403,-30.648662892676068 -733,1.0,3.0,-1.7055303166990268,5.1973792282565086 -733,1.0,4.0,-1.1359607881738778,4.772479328281356 -733,1.0,5.0,-1.6861448807654689,5.116477495334806 -733,2.0,0.0,-1.5408698687669766,5.631674830095234 -733,2.0,2.0,9.736318911079088,-29.13794745915803 -733,2.0,3.0,-8.19544904231211,23.5308726290628 -733,3.0,1.0,-1.7055303166990268,5.1973792282565086 -733,3.0,2.0,-8.19544904231211,23.5308726290628 -733,3.0,3.0,16.314103089185693,-55.509410535254254 -733,3.0,5.0,-6.413123730174556,22.31120356548123 -733,3.0,11.0,0.0,4.191255364806866 -733,4.0,1.0,-1.1359607881738778,4.772479328281356 -733,4.0,4.0,4.089980824135861,-12.190647245055052 -733,4.0,6.0,-2.954020035961983,7.449267916773697 -733,5.0,1.0,-1.6861448807654689,5.116477495334806 -733,5.0,3.0,-6.413123730174556,22.31120356548123 -733,5.0,5.0,22.341631269034565,-82.8291478657789 -733,5.0,6.0,-3.590210423980992,11.02611441072814 -733,5.0,7.0,-6.289308176100628,22.0125786163522 -733,5.0,8.0,0.0,4.915840805411357 -733,5.0,9.0,0.0,1.8561002591115965 -733,5.0,27.0,-4.362844058012917,15.463571542897856 -733,6.0,4.0,-2.954020035961983,7.449267916773697 -733,6.0,5.0,-3.590210423980992,11.02611441072814 -733,6.0,6.0,6.544230459942975,-18.45668232750184 -733,7.0,5.0,-6.289308176100628,22.0125786163522 -733,7.0,7.0,7.733287237496075,-26.527493274828448 -733,7.0,27.0,-1.4439790613954469,4.540814658476248 -733,8.0,5.0,0.0,4.915840805411357 -733,8.0,8.0,0.0,-18.706293706293707 -733,8.0,9.0,0.0,9.090909090909092 -733,8.0,10.0,0.0,4.807692307692308 -733,9.0,5.0,0.0,1.8561002591115965 -733,9.0,8.0,0.0,9.090909090909092 -733,9.0,9.0,13.462042814524237,-41.3837606675224 -733,9.0,16.0,-3.956039125715353,10.317447719844054 -733,9.0,19.0,-1.7848303152666305,3.98535828943083 -733,9.0,20.0,-5.101853820159654,10.98071411292983 -733,9.0,21.0,-2.619319553382597,5.400770303329455 -733,10.0,8.0,0.0,4.807692307692308 -733,10.0,10.0,0.0,-4.807692307692308 -733,11.0,3.0,0.0,4.191255364806866 -733,11.0,11.0,6.573961583776156,-24.424167659260668 -733,11.0,12.0,0.0,7.142857142857143 -733,11.0,13.0,-1.5265676088395577,3.1734252729654173 -733,11.0,14.0,-3.0953961826564296,6.097275864326261 -733,11.0,15.0,-1.9519977922801688,4.104359379111847 -733,12.0,11.0,0.0,7.142857142857143 -733,12.0,12.0,0.0,-7.142857142857143 -733,13.0,11.0,-1.5265676088395577,3.1734252729654173 -733,13.0,13.0,4.01751987283902,-5.424299332335067 -733,13.0,14.0,-2.4909522639994623,2.250874059369649 -733,14.0,11.0,-3.0953961826564296,6.097275864326261 -733,14.0,13.0,-2.4909522639994623,2.250874059369649 -733,14.0,14.0,9.365498545964757,-16.01163373210796 -733,14.0,17.0,-1.8108011504072024,3.687418931630696 -733,14.0,22.0,-1.9683489489016612,3.976064876781356 -733,15.0,11.0,-1.9519977922801688,4.104359379111847 -733,15.0,15.0,3.271064728633931,-8.94513365126506 -733,15.0,16.0,-1.3190669363537617,4.8407742721532125 -733,16.0,9.0,-3.956039125715353,10.317447719844054 -733,16.0,15.0,-1.3190669363537617,4.8407742721532125 -733,16.0,16.0,5.275106062069114,-15.158221991997266 -733,17.0,14.0,-1.8108011504072024,3.687418931630696 -733,17.0,17.0,4.886487584415919,-9.906177730909668 -733,17.0,18.0,-3.0756864340087167,6.218758799278971 -733,18.0,17.0,-3.0756864340087167,6.218758799278971 -733,18.0,18.0,8.958039375185187,-17.98346468163191 -733,18.0,19.0,-5.88235294117647,11.76470588235294 -733,19.0,9.0,-1.7848303152666305,3.98535828943083 -733,19.0,18.0,-5.88235294117647,11.76470588235294 -733,19.0,19.0,7.6671832564431,-15.75006417178377 -733,20.0,9.0,-5.101853820159654,10.98071411292983 -733,20.0,20.0,21.876495189895888,-45.10843276170355 -733,20.0,21.0,-16.774641369736234,34.127718648773715 -733,21.0,9.0,-2.619319553382597,5.400770303329455 -733,21.0,20.0,-16.774641369736234,34.127718648773715 -733,21.0,21.0,21.93449907537439,-43.48289181517921 -733,21.0,23.0,-2.5405381522555563,3.95440286307604 -733,22.0,14.0,-1.9683489489016612,3.976064876781356 -733,22.0,22.0,3.429754555384988,-6.965303617315433 -733,22.0,23.0,-1.4614056064833263,2.989238740534077 -733,23.0,21.0,-2.5405381522555563,3.95440286307604 -733,23.0,22.0,-1.4614056064833263,2.989238740534077 -733,23.0,23.0,5.311836702613133,-9.188263657315172 -733,23.0,24.0,-1.3098929438742493,2.287622053705056 -733,24.0,23.0,-1.3098929438742493,2.287622053705056 -733,24.0,24.0,4.495715080321987,-7.864978761969621 -733,24.0,25.0,-1.2165301194494855,1.8171440463475024 -733,24.0,26.0,-1.9692920169982515,3.760212661917064 -733,25.0,24.0,-1.2165301194494855,1.8171440463475024 -733,25.0,25.0,1.2165301194494855,-1.8171440463475024 -733,26.0,24.0,-1.9692920169982515,3.760212661917064 -733,26.0,26.0,3.652281470778589,-9.46044252232512 -733,26.0,27.0,0.0,2.608731947574922 -733,26.0,28.0,-0.99553355095268,1.881005840357816 -733,26.0,29.0,-0.6874559028276572,1.293971494797717 -733,27.0,5.0,-4.362844058012917,15.463571542897856 -733,27.0,7.0,-1.4439790613954469,4.540814658476248 -733,27.0,26.0,0.0,2.608731947574922 -733,27.0,27.0,5.806823119408364,-22.67145722159613 -733,28.0,26.0,-0.99553355095268,1.881005840357816 -733,28.0,28.0,1.9075867579849564,-3.604364401207048 -733,28.0,29.0,-0.9120532070322764,1.7233585608492326 -733,29.0,26.0,-0.6874559028276572,1.293971494797717 -733,29.0,28.0,-0.9120532070322764,1.7233585608492326 -733,29.0,29.0,1.5995091098599337,-3.0173300556469496 -734,0.0,0.0,6.765516048652632,-21.23160167089863 -734,0.0,1.0,-5.224646179885656,15.646726840803398 -734,0.0,2.0,-1.5408698687669766,5.631674830095234 -734,1.0,0.0,-5.224646179885656,15.646726840803398 -734,1.0,1.0,9.75228216552403,-30.648662892676068 -734,1.0,3.0,-1.7055303166990268,5.1973792282565086 -734,1.0,4.0,-1.1359607881738778,4.772479328281356 -734,1.0,5.0,-1.6861448807654689,5.116477495334806 -734,2.0,0.0,-1.5408698687669766,5.631674830095234 -734,2.0,2.0,9.736318911079088,-29.13794745915803 -734,2.0,3.0,-8.19544904231211,23.5308726290628 -734,3.0,1.0,-1.7055303166990268,5.1973792282565086 -734,3.0,2.0,-8.19544904231211,23.5308726290628 -734,3.0,3.0,16.314103089185693,-55.509410535254254 -734,3.0,5.0,-6.413123730174556,22.31120356548123 -734,3.0,11.0,0.0,4.191255364806866 -734,4.0,1.0,-1.1359607881738778,4.772479328281356 -734,4.0,4.0,4.089980824135861,-12.190647245055052 -734,4.0,6.0,-2.954020035961983,7.449267916773697 -734,5.0,1.0,-1.6861448807654689,5.116477495334806 -734,5.0,3.0,-6.413123730174556,22.31120356548123 -734,5.0,5.0,18.75142084505357,-71.81153345505078 -734,5.0,7.0,-6.289308176100628,22.0125786163522 -734,5.0,8.0,0.0,4.915840805411357 -734,5.0,9.0,0.0,1.8561002591115965 -734,5.0,27.0,-4.362844058012917,15.463571542897856 -734,6.0,4.0,-2.954020035961983,7.449267916773697 -734,6.0,6.0,2.954020035961983,-7.439067916773697 -734,7.0,5.0,-6.289308176100628,22.0125786163522 -734,7.0,7.0,7.733287237496075,-26.527493274828448 -734,7.0,27.0,-1.4439790613954469,4.540814658476248 -734,8.0,5.0,0.0,4.915840805411357 -734,8.0,8.0,0.0,-18.706293706293707 -734,8.0,9.0,0.0,9.090909090909092 -734,8.0,10.0,0.0,4.807692307692308 -734,9.0,5.0,0.0,1.8561002591115965 -734,9.0,8.0,0.0,9.090909090909092 -734,9.0,9.0,13.462042814524237,-41.3837606675224 -734,9.0,16.0,-3.956039125715353,10.317447719844054 -734,9.0,19.0,-1.7848303152666305,3.98535828943083 -734,9.0,20.0,-5.101853820159654,10.98071411292983 -734,9.0,21.0,-2.619319553382597,5.400770303329455 -734,10.0,8.0,0.0,4.807692307692308 -734,10.0,10.0,0.0,-4.807692307692308 -734,11.0,3.0,0.0,4.191255364806866 -734,11.0,11.0,6.573961583776156,-24.424167659260668 -734,11.0,12.0,0.0,7.142857142857143 -734,11.0,13.0,-1.5265676088395577,3.1734252729654173 -734,11.0,14.0,-3.0953961826564296,6.097275864326261 -734,11.0,15.0,-1.9519977922801688,4.104359379111847 -734,12.0,11.0,0.0,7.142857142857143 -734,12.0,12.0,0.0,-7.142857142857143 -734,13.0,11.0,-1.5265676088395577,3.1734252729654173 -734,13.0,13.0,4.01751987283902,-5.424299332335067 -734,13.0,14.0,-2.4909522639994623,2.250874059369649 -734,14.0,11.0,-3.0953961826564296,6.097275864326261 -734,14.0,13.0,-2.4909522639994623,2.250874059369649 -734,14.0,14.0,7.397149597063095,-12.035568855326606 -734,14.0,17.0,-1.8108011504072024,3.687418931630696 -734,15.0,11.0,-1.9519977922801688,4.104359379111847 -734,15.0,15.0,3.271064728633931,-8.94513365126506 -734,15.0,16.0,-1.3190669363537617,4.8407742721532125 -734,16.0,9.0,-3.956039125715353,10.317447719844054 -734,16.0,15.0,-1.3190669363537617,4.8407742721532125 -734,16.0,16.0,5.275106062069114,-15.158221991997266 -734,17.0,14.0,-1.8108011504072024,3.687418931630696 -734,17.0,17.0,4.886487584415919,-9.906177730909668 -734,17.0,18.0,-3.0756864340087167,6.218758799278971 -734,18.0,17.0,-3.0756864340087167,6.218758799278971 -734,18.0,18.0,8.958039375185187,-17.98346468163191 -734,18.0,19.0,-5.88235294117647,11.76470588235294 -734,19.0,9.0,-1.7848303152666305,3.98535828943083 -734,19.0,18.0,-5.88235294117647,11.76470588235294 -734,19.0,19.0,7.6671832564431,-15.75006417178377 -734,20.0,9.0,-5.101853820159654,10.98071411292983 -734,20.0,20.0,21.876495189895888,-45.10843276170355 -734,20.0,21.0,-16.774641369736234,34.127718648773715 -734,21.0,9.0,-2.619319553382597,5.400770303329455 -734,21.0,20.0,-16.774641369736234,34.127718648773715 -734,21.0,21.0,21.93449907537439,-43.48289181517921 -734,21.0,23.0,-2.5405381522555563,3.95440286307604 -734,22.0,22.0,1.4614056064833263,-2.989238740534077 -734,22.0,23.0,-1.4614056064833263,2.989238740534077 -734,23.0,21.0,-2.5405381522555563,3.95440286307604 -734,23.0,22.0,-1.4614056064833263,2.989238740534077 -734,23.0,23.0,5.311836702613133,-9.188263657315172 -734,23.0,24.0,-1.3098929438742493,2.287622053705056 -734,24.0,23.0,-1.3098929438742493,2.287622053705056 -734,24.0,24.0,4.495715080321987,-7.864978761969621 -734,24.0,25.0,-1.2165301194494855,1.8171440463475024 -734,24.0,26.0,-1.9692920169982515,3.760212661917064 -734,25.0,24.0,-1.2165301194494855,1.8171440463475024 -734,25.0,25.0,1.2165301194494855,-1.8171440463475024 -734,26.0,24.0,-1.9692920169982515,3.760212661917064 -734,26.0,26.0,3.652281470778589,-9.46044252232512 -734,26.0,27.0,0.0,2.608731947574922 -734,26.0,28.0,-0.99553355095268,1.881005840357816 -734,26.0,29.0,-0.6874559028276572,1.293971494797717 -734,27.0,5.0,-4.362844058012917,15.463571542897856 -734,27.0,7.0,-1.4439790613954469,4.540814658476248 -734,27.0,26.0,0.0,2.608731947574922 -734,27.0,27.0,5.806823119408364,-22.67145722159613 -734,28.0,26.0,-0.99553355095268,1.881005840357816 -734,28.0,28.0,1.9075867579849564,-3.604364401207048 -734,28.0,29.0,-0.9120532070322764,1.7233585608492326 -734,29.0,26.0,-0.6874559028276572,1.293971494797717 -734,29.0,28.0,-0.9120532070322764,1.7233585608492326 -734,29.0,29.0,1.5995091098599337,-3.0173300556469496 -735,0.0,0.0,6.765516048652632,-21.23160167089863 -735,0.0,1.0,-5.224646179885656,15.646726840803398 -735,0.0,2.0,-1.5408698687669766,5.631674830095234 -735,1.0,0.0,-5.224646179885656,15.646726840803398 -735,1.0,1.0,9.75228216552403,-30.648662892676068 -735,1.0,3.0,-1.7055303166990268,5.1973792282565086 -735,1.0,4.0,-1.1359607881738778,4.772479328281356 -735,1.0,5.0,-1.6861448807654689,5.116477495334806 -735,2.0,0.0,-1.5408698687669766,5.631674830095234 -735,2.0,2.0,9.736318911079088,-29.13794745915803 -735,2.0,3.0,-8.19544904231211,23.5308726290628 -735,3.0,1.0,-1.7055303166990268,5.1973792282565086 -735,3.0,2.0,-8.19544904231211,23.5308726290628 -735,3.0,3.0,16.314103089185693,-55.509410535254254 -735,3.0,5.0,-6.413123730174556,22.31120356548123 -735,3.0,11.0,0.0,4.191255364806866 -735,4.0,1.0,-1.1359607881738778,4.772479328281356 -735,4.0,4.0,4.089980824135861,-12.190647245055052 -735,4.0,6.0,-2.954020035961983,7.449267916773697 -735,5.0,1.0,-1.6861448807654689,5.116477495334806 -735,5.0,3.0,-6.413123730174556,22.31120356548123 -735,5.0,5.0,22.341631269034565,-80.91366772221689 -735,5.0,6.0,-3.590210423980992,11.02611441072814 -735,5.0,7.0,-6.289308176100628,22.0125786163522 -735,5.0,8.0,0.0,4.915840805411357 -735,5.0,27.0,-4.362844058012917,15.463571542897856 -735,6.0,4.0,-2.954020035961983,7.449267916773697 -735,6.0,5.0,-3.590210423980992,11.02611441072814 -735,6.0,6.0,6.544230459942975,-18.45668232750184 -735,7.0,5.0,-6.289308176100628,22.0125786163522 -735,7.0,7.0,7.733287237496075,-26.527493274828448 -735,7.0,27.0,-1.4439790613954469,4.540814658476248 -735,8.0,5.0,0.0,4.915840805411357 -735,8.0,8.0,0.0,-18.706293706293707 -735,8.0,9.0,0.0,9.090909090909092 -735,8.0,10.0,0.0,4.807692307692308 -735,9.0,8.0,0.0,9.090909090909092 -735,9.0,9.0,13.462042814524237,-39.58519951644326 -735,9.0,16.0,-3.956039125715353,10.317447719844054 -735,9.0,19.0,-1.7848303152666305,3.98535828943083 -735,9.0,20.0,-5.101853820159654,10.98071411292983 -735,9.0,21.0,-2.619319553382597,5.400770303329455 -735,10.0,8.0,0.0,4.807692307692308 -735,10.0,10.0,0.0,-4.807692307692308 -735,11.0,3.0,0.0,4.191255364806866 -735,11.0,11.0,6.573961583776156,-24.424167659260668 -735,11.0,12.0,0.0,7.142857142857143 -735,11.0,13.0,-1.5265676088395577,3.1734252729654173 -735,11.0,14.0,-3.0953961826564296,6.097275864326261 -735,11.0,15.0,-1.9519977922801688,4.104359379111847 -735,12.0,11.0,0.0,7.142857142857143 -735,12.0,12.0,0.0,-7.142857142857143 -735,13.0,11.0,-1.5265676088395577,3.1734252729654173 -735,13.0,13.0,4.01751987283902,-5.424299332335067 -735,13.0,14.0,-2.4909522639994623,2.250874059369649 -735,14.0,11.0,-3.0953961826564296,6.097275864326261 -735,14.0,13.0,-2.4909522639994623,2.250874059369649 -735,14.0,14.0,9.365498545964757,-16.01163373210796 -735,14.0,17.0,-1.8108011504072024,3.687418931630696 -735,14.0,22.0,-1.9683489489016612,3.976064876781356 -735,15.0,11.0,-1.9519977922801688,4.104359379111847 -735,15.0,15.0,3.271064728633931,-8.94513365126506 -735,15.0,16.0,-1.3190669363537617,4.8407742721532125 -735,16.0,9.0,-3.956039125715353,10.317447719844054 -735,16.0,15.0,-1.3190669363537617,4.8407742721532125 -735,16.0,16.0,5.275106062069114,-15.158221991997266 -735,17.0,14.0,-1.8108011504072024,3.687418931630696 -735,17.0,17.0,4.886487584415919,-9.906177730909668 -735,17.0,18.0,-3.0756864340087167,6.218758799278971 -735,18.0,17.0,-3.0756864340087167,6.218758799278971 -735,18.0,18.0,8.958039375185187,-17.98346468163191 -735,18.0,19.0,-5.88235294117647,11.76470588235294 -735,19.0,9.0,-1.7848303152666305,3.98535828943083 -735,19.0,18.0,-5.88235294117647,11.76470588235294 -735,19.0,19.0,7.6671832564431,-15.75006417178377 -735,20.0,9.0,-5.101853820159654,10.98071411292983 -735,20.0,20.0,21.876495189895888,-45.10843276170355 -735,20.0,21.0,-16.774641369736234,34.127718648773715 -735,21.0,9.0,-2.619319553382597,5.400770303329455 -735,21.0,20.0,-16.774641369736234,34.127718648773715 -735,21.0,21.0,21.93449907537439,-43.48289181517921 -735,21.0,23.0,-2.5405381522555563,3.95440286307604 -735,22.0,14.0,-1.9683489489016612,3.976064876781356 -735,22.0,22.0,3.429754555384988,-6.965303617315433 -735,22.0,23.0,-1.4614056064833263,2.989238740534077 -735,23.0,21.0,-2.5405381522555563,3.95440286307604 -735,23.0,22.0,-1.4614056064833263,2.989238740534077 -735,23.0,23.0,5.311836702613133,-9.188263657315172 -735,23.0,24.0,-1.3098929438742493,2.287622053705056 -735,24.0,23.0,-1.3098929438742493,2.287622053705056 -735,24.0,24.0,4.495715080321987,-7.864978761969621 -735,24.0,25.0,-1.2165301194494855,1.8171440463475024 -735,24.0,26.0,-1.9692920169982515,3.760212661917064 -735,25.0,24.0,-1.2165301194494855,1.8171440463475024 -735,25.0,25.0,1.2165301194494855,-1.8171440463475024 -735,26.0,24.0,-1.9692920169982515,3.760212661917064 -735,26.0,26.0,2.656747919825909,-7.579436681967305 -735,26.0,27.0,0.0,2.608731947574922 -735,26.0,29.0,-0.6874559028276572,1.293971494797717 -735,27.0,5.0,-4.362844058012917,15.463571542897856 -735,27.0,7.0,-1.4439790613954469,4.540814658476248 -735,27.0,26.0,0.0,2.608731947574922 -735,27.0,27.0,5.806823119408364,-22.67145722159613 -735,28.0,28.0,0.9120532070322764,-1.7233585608492326 -735,28.0,29.0,-0.9120532070322764,1.7233585608492326 -735,29.0,26.0,-0.6874559028276572,1.293971494797717 -735,29.0,28.0,-0.9120532070322764,1.7233585608492326 -735,29.0,29.0,1.5995091098599337,-3.0173300556469496 -736,0.0,0.0,5.224646179885656,-15.620326840803395 -736,0.0,1.0,-5.224646179885656,15.646726840803398 -736,1.0,0.0,-5.224646179885656,15.646726840803398 -736,1.0,1.0,9.75228216552403,-30.648662892676068 -736,1.0,3.0,-1.7055303166990268,5.1973792282565086 -736,1.0,4.0,-1.1359607881738778,4.772479328281356 -736,1.0,5.0,-1.6861448807654689,5.116477495334806 -736,2.0,2.0,8.19544904231211,-23.5266726290628 -736,2.0,3.0,-8.19544904231211,23.5308726290628 -736,3.0,1.0,-1.7055303166990268,5.1973792282565086 -736,3.0,2.0,-8.19544904231211,23.5308726290628 -736,3.0,3.0,16.314103089185693,-55.509410535254254 -736,3.0,5.0,-6.413123730174556,22.31120356548123 -736,3.0,11.0,0.0,4.191255364806866 -736,4.0,1.0,-1.1359607881738778,4.772479328281356 -736,4.0,4.0,4.089980824135861,-12.190647245055052 -736,4.0,6.0,-2.954020035961983,7.449267916773697 -736,5.0,1.0,-1.6861448807654689,5.116477495334806 -736,5.0,3.0,-6.413123730174556,22.31120356548123 -736,5.0,5.0,22.341631269034565,-82.8291478657789 -736,5.0,6.0,-3.590210423980992,11.02611441072814 -736,5.0,7.0,-6.289308176100628,22.0125786163522 -736,5.0,8.0,0.0,4.915840805411357 -736,5.0,9.0,0.0,1.8561002591115965 -736,5.0,27.0,-4.362844058012917,15.463571542897856 -736,6.0,4.0,-2.954020035961983,7.449267916773697 -736,6.0,5.0,-3.590210423980992,11.02611441072814 -736,6.0,6.0,6.544230459942975,-18.45668232750184 -736,7.0,5.0,-6.289308176100628,22.0125786163522 -736,7.0,7.0,7.733287237496075,-26.527493274828448 -736,7.0,27.0,-1.4439790613954469,4.540814658476248 -736,8.0,5.0,0.0,4.915840805411357 -736,8.0,8.0,0.0,-18.706293706293707 -736,8.0,9.0,0.0,9.090909090909092 -736,8.0,10.0,0.0,4.807692307692308 -736,9.0,5.0,0.0,1.8561002591115965 -736,9.0,8.0,0.0,9.090909090909092 -736,9.0,9.0,13.462042814524237,-41.3837606675224 -736,9.0,16.0,-3.956039125715353,10.317447719844054 -736,9.0,19.0,-1.7848303152666305,3.98535828943083 -736,9.0,20.0,-5.101853820159654,10.98071411292983 -736,9.0,21.0,-2.619319553382597,5.400770303329455 -736,10.0,8.0,0.0,4.807692307692308 -736,10.0,10.0,0.0,-4.807692307692308 -736,11.0,3.0,0.0,4.191255364806866 -736,11.0,11.0,6.573961583776156,-24.424167659260668 -736,11.0,12.0,0.0,7.142857142857143 -736,11.0,13.0,-1.5265676088395577,3.1734252729654173 -736,11.0,14.0,-3.0953961826564296,6.097275864326261 -736,11.0,15.0,-1.9519977922801688,4.104359379111847 -736,12.0,11.0,0.0,7.142857142857143 -736,12.0,12.0,0.0,-7.142857142857143 -736,13.0,11.0,-1.5265676088395577,3.1734252729654173 -736,13.0,13.0,4.01751987283902,-5.424299332335067 -736,13.0,14.0,-2.4909522639994623,2.250874059369649 -736,14.0,11.0,-3.0953961826564296,6.097275864326261 -736,14.0,13.0,-2.4909522639994623,2.250874059369649 -736,14.0,14.0,9.365498545964757,-16.01163373210796 -736,14.0,17.0,-1.8108011504072024,3.687418931630696 -736,14.0,22.0,-1.9683489489016612,3.976064876781356 -736,15.0,11.0,-1.9519977922801688,4.104359379111847 -736,15.0,15.0,3.271064728633931,-8.94513365126506 -736,15.0,16.0,-1.3190669363537617,4.8407742721532125 -736,16.0,9.0,-3.956039125715353,10.317447719844054 -736,16.0,15.0,-1.3190669363537617,4.8407742721532125 -736,16.0,16.0,5.275106062069114,-15.158221991997266 -736,17.0,14.0,-1.8108011504072024,3.687418931630696 -736,17.0,17.0,4.886487584415919,-9.906177730909668 -736,17.0,18.0,-3.0756864340087167,6.218758799278971 -736,18.0,17.0,-3.0756864340087167,6.218758799278971 -736,18.0,18.0,8.958039375185187,-17.98346468163191 -736,18.0,19.0,-5.88235294117647,11.76470588235294 -736,19.0,9.0,-1.7848303152666305,3.98535828943083 -736,19.0,18.0,-5.88235294117647,11.76470588235294 -736,19.0,19.0,7.6671832564431,-15.75006417178377 -736,20.0,9.0,-5.101853820159654,10.98071411292983 -736,20.0,20.0,21.876495189895888,-45.10843276170355 -736,20.0,21.0,-16.774641369736234,34.127718648773715 -736,21.0,9.0,-2.619319553382597,5.400770303329455 -736,21.0,20.0,-16.774641369736234,34.127718648773715 -736,21.0,21.0,21.93449907537439,-43.48289181517921 -736,21.0,23.0,-2.5405381522555563,3.95440286307604 -736,22.0,14.0,-1.9683489489016612,3.976064876781356 -736,22.0,22.0,3.429754555384988,-6.965303617315433 -736,22.0,23.0,-1.4614056064833263,2.989238740534077 -736,23.0,21.0,-2.5405381522555563,3.95440286307604 -736,23.0,22.0,-1.4614056064833263,2.989238740534077 -736,23.0,23.0,5.311836702613133,-9.188263657315172 -736,23.0,24.0,-1.3098929438742493,2.287622053705056 -736,24.0,23.0,-1.3098929438742493,2.287622053705056 -736,24.0,24.0,4.495715080321987,-7.864978761969621 -736,24.0,25.0,-1.2165301194494855,1.8171440463475024 -736,24.0,26.0,-1.9692920169982515,3.760212661917064 -736,25.0,24.0,-1.2165301194494855,1.8171440463475024 -736,25.0,25.0,1.2165301194494855,-1.8171440463475024 -736,26.0,24.0,-1.9692920169982515,3.760212661917064 -736,26.0,26.0,3.652281470778589,-9.46044252232512 -736,26.0,27.0,0.0,2.608731947574922 -736,26.0,28.0,-0.99553355095268,1.881005840357816 -736,26.0,29.0,-0.6874559028276572,1.293971494797717 -736,27.0,5.0,-4.362844058012917,15.463571542897856 -736,27.0,7.0,-1.4439790613954469,4.540814658476248 -736,27.0,26.0,0.0,2.608731947574922 -736,27.0,27.0,5.806823119408364,-22.67145722159613 -736,28.0,26.0,-0.99553355095268,1.881005840357816 -736,28.0,28.0,1.9075867579849564,-3.604364401207048 -736,28.0,29.0,-0.9120532070322764,1.7233585608492326 -736,29.0,26.0,-0.6874559028276572,1.293971494797717 -736,29.0,28.0,-0.9120532070322764,1.7233585608492326 -736,29.0,29.0,1.5995091098599337,-3.0173300556469496 -737,0.0,0.0,6.765516048652632,-21.23160167089863 -737,0.0,1.0,-5.224646179885656,15.646726840803398 -737,0.0,2.0,-1.5408698687669766,5.631674830095234 -737,1.0,0.0,-5.224646179885656,15.646726840803398 -737,1.0,1.0,9.75228216552403,-30.648662892676068 -737,1.0,3.0,-1.7055303166990268,5.1973792282565086 -737,1.0,4.0,-1.1359607881738778,4.772479328281356 -737,1.0,5.0,-1.6861448807654689,5.116477495334806 -737,2.0,0.0,-1.5408698687669766,5.631674830095234 -737,2.0,2.0,9.736318911079088,-29.13794745915803 -737,2.0,3.0,-8.19544904231211,23.5308726290628 -737,3.0,1.0,-1.7055303166990268,5.1973792282565086 -737,3.0,2.0,-8.19544904231211,23.5308726290628 -737,3.0,3.0,16.314103089185693,-55.509410535254254 -737,3.0,5.0,-6.413123730174556,22.31120356548123 -737,3.0,11.0,0.0,4.191255364806866 -737,4.0,1.0,-1.1359607881738778,4.772479328281356 -737,4.0,4.0,4.089980824135861,-12.190647245055052 -737,4.0,6.0,-2.954020035961983,7.449267916773697 -737,5.0,1.0,-1.6861448807654689,5.116477495334806 -737,5.0,3.0,-6.413123730174556,22.31120356548123 -737,5.0,5.0,22.341631269034565,-82.8291478657789 -737,5.0,6.0,-3.590210423980992,11.02611441072814 -737,5.0,7.0,-6.289308176100628,22.0125786163522 -737,5.0,8.0,0.0,4.915840805411357 -737,5.0,9.0,0.0,1.8561002591115965 -737,5.0,27.0,-4.362844058012917,15.463571542897856 -737,6.0,4.0,-2.954020035961983,7.449267916773697 -737,6.0,5.0,-3.590210423980992,11.02611441072814 -737,6.0,6.0,6.544230459942975,-18.45668232750184 -737,7.0,5.0,-6.289308176100628,22.0125786163522 -737,7.0,7.0,7.733287237496075,-26.527493274828448 -737,7.0,27.0,-1.4439790613954469,4.540814658476248 -737,8.0,5.0,0.0,4.915840805411357 -737,8.0,8.0,0.0,-18.706293706293707 -737,8.0,9.0,0.0,9.090909090909092 -737,8.0,10.0,0.0,4.807692307692308 -737,9.0,5.0,0.0,1.8561002591115965 -737,9.0,8.0,0.0,9.090909090909092 -737,9.0,9.0,13.462042814524237,-41.3837606675224 -737,9.0,16.0,-3.956039125715353,10.317447719844054 -737,9.0,19.0,-1.7848303152666305,3.98535828943083 -737,9.0,20.0,-5.101853820159654,10.98071411292983 -737,9.0,21.0,-2.619319553382597,5.400770303329455 -737,10.0,8.0,0.0,4.807692307692308 -737,10.0,10.0,0.0,-4.807692307692308 -737,11.0,3.0,0.0,4.191255364806866 -737,11.0,11.0,6.573961583776156,-24.424167659260668 -737,11.0,12.0,0.0,7.142857142857143 -737,11.0,13.0,-1.5265676088395577,3.1734252729654173 -737,11.0,14.0,-3.0953961826564296,6.097275864326261 -737,11.0,15.0,-1.9519977922801688,4.104359379111847 -737,12.0,11.0,0.0,7.142857142857143 -737,12.0,12.0,0.0,-7.142857142857143 -737,13.0,11.0,-1.5265676088395577,3.1734252729654173 -737,13.0,13.0,4.01751987283902,-5.424299332335067 -737,13.0,14.0,-2.4909522639994623,2.250874059369649 -737,14.0,11.0,-3.0953961826564296,6.097275864326261 -737,14.0,13.0,-2.4909522639994623,2.250874059369649 -737,14.0,14.0,9.365498545964757,-16.01163373210796 -737,14.0,17.0,-1.8108011504072024,3.687418931630696 -737,14.0,22.0,-1.9683489489016612,3.976064876781356 -737,15.0,11.0,-1.9519977922801688,4.104359379111847 -737,15.0,15.0,3.271064728633931,-8.94513365126506 -737,15.0,16.0,-1.3190669363537617,4.8407742721532125 -737,16.0,9.0,-3.956039125715353,10.317447719844054 -737,16.0,15.0,-1.3190669363537617,4.8407742721532125 -737,16.0,16.0,5.275106062069114,-15.158221991997266 -737,17.0,14.0,-1.8108011504072024,3.687418931630696 -737,17.0,17.0,4.886487584415919,-9.906177730909668 -737,17.0,18.0,-3.0756864340087167,6.218758799278971 -737,18.0,17.0,-3.0756864340087167,6.218758799278971 -737,18.0,18.0,8.958039375185187,-17.98346468163191 -737,18.0,19.0,-5.88235294117647,11.76470588235294 -737,19.0,9.0,-1.7848303152666305,3.98535828943083 -737,19.0,18.0,-5.88235294117647,11.76470588235294 -737,19.0,19.0,7.6671832564431,-15.75006417178377 -737,20.0,9.0,-5.101853820159654,10.98071411292983 -737,20.0,20.0,21.876495189895888,-45.10843276170355 -737,20.0,21.0,-16.774641369736234,34.127718648773715 -737,21.0,9.0,-2.619319553382597,5.400770303329455 -737,21.0,20.0,-16.774641369736234,34.127718648773715 -737,21.0,21.0,21.93449907537439,-43.48289181517921 -737,21.0,23.0,-2.5405381522555563,3.95440286307604 -737,22.0,14.0,-1.9683489489016612,3.976064876781356 -737,22.0,22.0,3.429754555384988,-6.965303617315433 -737,22.0,23.0,-1.4614056064833263,2.989238740534077 -737,23.0,21.0,-2.5405381522555563,3.95440286307604 -737,23.0,22.0,-1.4614056064833263,2.989238740534077 -737,23.0,23.0,5.311836702613133,-9.188263657315172 -737,23.0,24.0,-1.3098929438742493,2.287622053705056 -737,24.0,23.0,-1.3098929438742493,2.287622053705056 -737,24.0,24.0,4.495715080321987,-7.864978761969621 -737,24.0,25.0,-1.2165301194494855,1.8171440463475024 -737,24.0,26.0,-1.9692920169982515,3.760212661917064 -737,25.0,24.0,-1.2165301194494855,1.8171440463475024 -737,25.0,25.0,1.2165301194494855,-1.8171440463475024 -737,26.0,24.0,-1.9692920169982515,3.760212661917064 -737,26.0,26.0,3.652281470778589,-9.46044252232512 -737,26.0,27.0,0.0,2.608731947574922 -737,26.0,28.0,-0.99553355095268,1.881005840357816 -737,26.0,29.0,-0.6874559028276572,1.293971494797717 -737,27.0,5.0,-4.362844058012917,15.463571542897856 -737,27.0,7.0,-1.4439790613954469,4.540814658476248 -737,27.0,26.0,0.0,2.608731947574922 -737,27.0,27.0,5.806823119408364,-22.67145722159613 -737,28.0,26.0,-0.99553355095268,1.881005840357816 -737,28.0,28.0,1.9075867579849564,-3.604364401207048 -737,28.0,29.0,-0.9120532070322764,1.7233585608492326 -737,29.0,26.0,-0.6874559028276572,1.293971494797717 -737,29.0,28.0,-0.9120532070322764,1.7233585608492326 -737,29.0,29.0,1.5995091098599337,-3.0173300556469496 -738,0.0,0.0,6.765516048652632,-21.23160167089863 -738,0.0,1.0,-5.224646179885656,15.646726840803398 -738,0.0,2.0,-1.5408698687669766,5.631674830095234 -738,1.0,0.0,-5.224646179885656,15.646726840803398 -738,1.0,1.0,9.75228216552403,-30.648662892676068 -738,1.0,3.0,-1.7055303166990268,5.1973792282565086 -738,1.0,4.0,-1.1359607881738778,4.772479328281356 -738,1.0,5.0,-1.6861448807654689,5.116477495334806 -738,2.0,0.0,-1.5408698687669766,5.631674830095234 -738,2.0,2.0,9.736318911079088,-29.13794745915803 -738,2.0,3.0,-8.19544904231211,23.5308726290628 -738,3.0,1.0,-1.7055303166990268,5.1973792282565086 -738,3.0,2.0,-8.19544904231211,23.5308726290628 -738,3.0,3.0,16.314103089185693,-55.509410535254254 -738,3.0,5.0,-6.413123730174556,22.31120356548123 -738,3.0,11.0,0.0,4.191255364806866 -738,4.0,1.0,-1.1359607881738778,4.772479328281356 -738,4.0,4.0,4.089980824135861,-12.190647245055052 -738,4.0,6.0,-2.954020035961983,7.449267916773697 -738,5.0,1.0,-1.6861448807654689,5.116477495334806 -738,5.0,3.0,-6.413123730174556,22.31120356548123 -738,5.0,5.0,22.341631269034565,-82.8291478657789 -738,5.0,6.0,-3.590210423980992,11.02611441072814 -738,5.0,7.0,-6.289308176100628,22.0125786163522 -738,5.0,8.0,0.0,4.915840805411357 -738,5.0,9.0,0.0,1.8561002591115965 -738,5.0,27.0,-4.362844058012917,15.463571542897856 -738,6.0,4.0,-2.954020035961983,7.449267916773697 -738,6.0,5.0,-3.590210423980992,11.02611441072814 -738,6.0,6.0,6.544230459942975,-18.45668232750184 -738,7.0,5.0,-6.289308176100628,22.0125786163522 -738,7.0,7.0,7.733287237496075,-26.527493274828448 -738,7.0,27.0,-1.4439790613954469,4.540814658476248 -738,8.0,5.0,0.0,4.915840805411357 -738,8.0,8.0,0.0,-18.706293706293707 -738,8.0,9.0,0.0,9.090909090909092 -738,8.0,10.0,0.0,4.807692307692308 -738,9.0,5.0,0.0,1.8561002591115965 -738,9.0,8.0,0.0,9.090909090909092 -738,9.0,9.0,13.462042814524237,-41.3837606675224 -738,9.0,16.0,-3.956039125715353,10.317447719844054 -738,9.0,19.0,-1.7848303152666305,3.98535828943083 -738,9.0,20.0,-5.101853820159654,10.98071411292983 -738,9.0,21.0,-2.619319553382597,5.400770303329455 -738,10.0,8.0,0.0,4.807692307692308 -738,10.0,10.0,0.0,-4.807692307692308 -738,11.0,3.0,0.0,4.191255364806866 -738,11.0,11.0,3.478565401119727,-18.326891794934408 -738,11.0,12.0,0.0,7.142857142857143 -738,11.0,13.0,-1.5265676088395577,3.1734252729654173 -738,11.0,15.0,-1.9519977922801688,4.104359379111847 -738,12.0,11.0,0.0,7.142857142857143 -738,12.0,12.0,0.0,-7.142857142857143 -738,13.0,11.0,-1.5265676088395577,3.1734252729654173 -738,13.0,13.0,4.01751987283902,-5.424299332335067 -738,13.0,14.0,-2.4909522639994623,2.250874059369649 -738,14.0,13.0,-2.4909522639994623,2.250874059369649 -738,14.0,14.0,6.270102363308326,-9.9143578677817 -738,14.0,17.0,-1.8108011504072024,3.687418931630696 -738,14.0,22.0,-1.9683489489016612,3.976064876781356 -738,15.0,11.0,-1.9519977922801688,4.104359379111847 -738,15.0,15.0,3.271064728633931,-8.94513365126506 -738,15.0,16.0,-1.3190669363537617,4.8407742721532125 -738,16.0,9.0,-3.956039125715353,10.317447719844054 -738,16.0,15.0,-1.3190669363537617,4.8407742721532125 -738,16.0,16.0,5.275106062069114,-15.158221991997266 -738,17.0,14.0,-1.8108011504072024,3.687418931630696 -738,17.0,17.0,4.886487584415919,-9.906177730909668 -738,17.0,18.0,-3.0756864340087167,6.218758799278971 -738,18.0,17.0,-3.0756864340087167,6.218758799278971 -738,18.0,18.0,8.958039375185187,-17.98346468163191 -738,18.0,19.0,-5.88235294117647,11.76470588235294 -738,19.0,9.0,-1.7848303152666305,3.98535828943083 -738,19.0,18.0,-5.88235294117647,11.76470588235294 -738,19.0,19.0,7.6671832564431,-15.75006417178377 -738,20.0,9.0,-5.101853820159654,10.98071411292983 -738,20.0,20.0,21.876495189895888,-45.10843276170355 -738,20.0,21.0,-16.774641369736234,34.127718648773715 -738,21.0,9.0,-2.619319553382597,5.400770303329455 -738,21.0,20.0,-16.774641369736234,34.127718648773715 -738,21.0,21.0,21.93449907537439,-43.48289181517921 -738,21.0,23.0,-2.5405381522555563,3.95440286307604 -738,22.0,14.0,-1.9683489489016612,3.976064876781356 -738,22.0,22.0,3.429754555384988,-6.965303617315433 -738,22.0,23.0,-1.4614056064833263,2.989238740534077 -738,23.0,21.0,-2.5405381522555563,3.95440286307604 -738,23.0,22.0,-1.4614056064833263,2.989238740534077 -738,23.0,23.0,5.311836702613133,-9.188263657315172 -738,23.0,24.0,-1.3098929438742493,2.287622053705056 -738,24.0,23.0,-1.3098929438742493,2.287622053705056 -738,24.0,24.0,4.495715080321987,-7.864978761969621 -738,24.0,25.0,-1.2165301194494855,1.8171440463475024 -738,24.0,26.0,-1.9692920169982515,3.760212661917064 -738,25.0,24.0,-1.2165301194494855,1.8171440463475024 -738,25.0,25.0,1.2165301194494855,-1.8171440463475024 -738,26.0,24.0,-1.9692920169982515,3.760212661917064 -738,26.0,26.0,3.652281470778589,-9.46044252232512 -738,26.0,27.0,0.0,2.608731947574922 -738,26.0,28.0,-0.99553355095268,1.881005840357816 -738,26.0,29.0,-0.6874559028276572,1.293971494797717 -738,27.0,5.0,-4.362844058012917,15.463571542897856 -738,27.0,7.0,-1.4439790613954469,4.540814658476248 -738,27.0,26.0,0.0,2.608731947574922 -738,27.0,27.0,5.806823119408364,-22.67145722159613 -738,28.0,26.0,-0.99553355095268,1.881005840357816 -738,28.0,28.0,1.9075867579849564,-3.604364401207048 -738,28.0,29.0,-0.9120532070322764,1.7233585608492326 -738,29.0,26.0,-0.6874559028276572,1.293971494797717 -738,29.0,28.0,-0.9120532070322764,1.7233585608492326 -738,29.0,29.0,1.5995091098599337,-3.0173300556469496 -739,0.0,0.0,6.765516048652632,-21.23160167089863 -739,0.0,1.0,-5.224646179885656,15.646726840803398 -739,0.0,2.0,-1.5408698687669766,5.631674830095234 -739,1.0,0.0,-5.224646179885656,15.646726840803398 -739,1.0,1.0,9.75228216552403,-30.648662892676068 -739,1.0,3.0,-1.7055303166990268,5.1973792282565086 -739,1.0,4.0,-1.1359607881738778,4.772479328281356 -739,1.0,5.0,-1.6861448807654689,5.116477495334806 -739,2.0,0.0,-1.5408698687669766,5.631674830095234 -739,2.0,2.0,9.736318911079088,-29.13794745915803 -739,2.0,3.0,-8.19544904231211,23.5308726290628 -739,3.0,1.0,-1.7055303166990268,5.1973792282565086 -739,3.0,2.0,-8.19544904231211,23.5308726290628 -739,3.0,3.0,16.314103089185693,-55.509410535254254 -739,3.0,5.0,-6.413123730174556,22.31120356548123 -739,3.0,11.0,0.0,4.191255364806866 -739,4.0,1.0,-1.1359607881738778,4.772479328281356 -739,4.0,4.0,4.089980824135861,-12.190647245055052 -739,4.0,6.0,-2.954020035961983,7.449267916773697 -739,5.0,1.0,-1.6861448807654689,5.116477495334806 -739,5.0,3.0,-6.413123730174556,22.31120356548123 -739,5.0,5.0,22.341631269034565,-82.8291478657789 -739,5.0,6.0,-3.590210423980992,11.02611441072814 -739,5.0,7.0,-6.289308176100628,22.0125786163522 -739,5.0,8.0,0.0,4.915840805411357 -739,5.0,9.0,0.0,1.8561002591115965 -739,5.0,27.0,-4.362844058012917,15.463571542897856 -739,6.0,4.0,-2.954020035961983,7.449267916773697 -739,6.0,5.0,-3.590210423980992,11.02611441072814 -739,6.0,6.0,6.544230459942975,-18.45668232750184 -739,7.0,5.0,-6.289308176100628,22.0125786163522 -739,7.0,7.0,7.733287237496075,-26.527493274828448 -739,7.0,27.0,-1.4439790613954469,4.540814658476248 -739,8.0,5.0,0.0,4.915840805411357 -739,8.0,8.0,0.0,-18.706293706293707 -739,8.0,9.0,0.0,9.090909090909092 -739,8.0,10.0,0.0,4.807692307692308 -739,9.0,5.0,0.0,1.8561002591115965 -739,9.0,8.0,0.0,9.090909090909092 -739,9.0,9.0,13.462042814524237,-41.3837606675224 -739,9.0,16.0,-3.956039125715353,10.317447719844054 -739,9.0,19.0,-1.7848303152666305,3.98535828943083 -739,9.0,20.0,-5.101853820159654,10.98071411292983 -739,9.0,21.0,-2.619319553382597,5.400770303329455 -739,10.0,8.0,0.0,4.807692307692308 -739,10.0,10.0,0.0,-4.807692307692308 -739,11.0,3.0,0.0,4.191255364806866 -739,11.0,11.0,6.573961583776156,-24.424167659260668 -739,11.0,12.0,0.0,7.142857142857143 -739,11.0,13.0,-1.5265676088395577,3.1734252729654173 -739,11.0,14.0,-3.0953961826564296,6.097275864326261 -739,11.0,15.0,-1.9519977922801688,4.104359379111847 -739,12.0,11.0,0.0,7.142857142857143 -739,12.0,12.0,0.0,-7.142857142857143 -739,13.0,11.0,-1.5265676088395577,3.1734252729654173 -739,13.0,13.0,4.01751987283902,-5.424299332335067 -739,13.0,14.0,-2.4909522639994623,2.250874059369649 -739,14.0,11.0,-3.0953961826564296,6.097275864326261 -739,14.0,13.0,-2.4909522639994623,2.250874059369649 -739,14.0,14.0,9.365498545964757,-16.01163373210796 -739,14.0,17.0,-1.8108011504072024,3.687418931630696 -739,14.0,22.0,-1.9683489489016612,3.976064876781356 -739,15.0,11.0,-1.9519977922801688,4.104359379111847 -739,15.0,15.0,3.271064728633931,-8.94513365126506 -739,15.0,16.0,-1.3190669363537617,4.8407742721532125 -739,16.0,9.0,-3.956039125715353,10.317447719844054 -739,16.0,15.0,-1.3190669363537617,4.8407742721532125 -739,16.0,16.0,5.275106062069114,-15.158221991997266 -739,17.0,14.0,-1.8108011504072024,3.687418931630696 -739,17.0,17.0,4.886487584415919,-9.906177730909668 -739,17.0,18.0,-3.0756864340087167,6.218758799278971 -739,18.0,17.0,-3.0756864340087167,6.218758799278971 -739,18.0,18.0,8.958039375185187,-17.98346468163191 -739,18.0,19.0,-5.88235294117647,11.76470588235294 -739,19.0,9.0,-1.7848303152666305,3.98535828943083 -739,19.0,18.0,-5.88235294117647,11.76470588235294 -739,19.0,19.0,7.6671832564431,-15.75006417178377 -739,20.0,9.0,-5.101853820159654,10.98071411292983 -739,20.0,20.0,21.876495189895888,-45.10843276170355 -739,20.0,21.0,-16.774641369736234,34.127718648773715 -739,21.0,9.0,-2.619319553382597,5.400770303329455 -739,21.0,20.0,-16.774641369736234,34.127718648773715 -739,21.0,21.0,21.93449907537439,-43.48289181517921 -739,21.0,23.0,-2.5405381522555563,3.95440286307604 -739,22.0,14.0,-1.9683489489016612,3.976064876781356 -739,22.0,22.0,3.429754555384988,-6.965303617315433 -739,22.0,23.0,-1.4614056064833263,2.989238740534077 -739,23.0,21.0,-2.5405381522555563,3.95440286307604 -739,23.0,22.0,-1.4614056064833263,2.989238740534077 -739,23.0,23.0,5.311836702613133,-9.188263657315172 -739,23.0,24.0,-1.3098929438742493,2.287622053705056 -739,24.0,23.0,-1.3098929438742493,2.287622053705056 -739,24.0,24.0,4.495715080321987,-7.864978761969621 -739,24.0,25.0,-1.2165301194494855,1.8171440463475024 -739,24.0,26.0,-1.9692920169982515,3.760212661917064 -739,25.0,24.0,-1.2165301194494855,1.8171440463475024 -739,25.0,25.0,1.2165301194494855,-1.8171440463475024 -739,26.0,24.0,-1.9692920169982515,3.760212661917064 -739,26.0,26.0,3.652281470778589,-9.46044252232512 -739,26.0,27.0,0.0,2.608731947574922 -739,26.0,28.0,-0.99553355095268,1.881005840357816 -739,26.0,29.0,-0.6874559028276572,1.293971494797717 -739,27.0,5.0,-4.362844058012917,15.463571542897856 -739,27.0,7.0,-1.4439790613954469,4.540814658476248 -739,27.0,26.0,0.0,2.608731947574922 -739,27.0,27.0,5.806823119408364,-22.67145722159613 -739,28.0,26.0,-0.99553355095268,1.881005840357816 -739,28.0,28.0,1.9075867579849564,-3.604364401207048 -739,28.0,29.0,-0.9120532070322764,1.7233585608492326 -739,29.0,26.0,-0.6874559028276572,1.293971494797717 -739,29.0,28.0,-0.9120532070322764,1.7233585608492326 -739,29.0,29.0,1.5995091098599337,-3.0173300556469496 -740,0.0,0.0,6.765516048652632,-21.23160167089863 -740,0.0,1.0,-5.224646179885656,15.646726840803398 -740,0.0,2.0,-1.5408698687669766,5.631674830095234 -740,1.0,0.0,-5.224646179885656,15.646726840803398 -740,1.0,1.0,9.75228216552403,-30.648662892676068 -740,1.0,3.0,-1.7055303166990268,5.1973792282565086 -740,1.0,4.0,-1.1359607881738778,4.772479328281356 -740,1.0,5.0,-1.6861448807654689,5.116477495334806 -740,2.0,0.0,-1.5408698687669766,5.631674830095234 -740,2.0,2.0,9.736318911079088,-29.13794745915803 -740,2.0,3.0,-8.19544904231211,23.5308726290628 -740,3.0,1.0,-1.7055303166990268,5.1973792282565086 -740,3.0,2.0,-8.19544904231211,23.5308726290628 -740,3.0,3.0,16.314103089185693,-55.509410535254254 -740,3.0,5.0,-6.413123730174556,22.31120356548123 -740,3.0,11.0,0.0,4.191255364806866 -740,4.0,1.0,-1.1359607881738778,4.772479328281356 -740,4.0,4.0,4.089980824135861,-12.190647245055052 -740,4.0,6.0,-2.954020035961983,7.449267916773697 -740,5.0,1.0,-1.6861448807654689,5.116477495334806 -740,5.0,3.0,-6.413123730174556,22.31120356548123 -740,5.0,5.0,22.341631269034565,-82.8291478657789 -740,5.0,6.0,-3.590210423980992,11.02611441072814 -740,5.0,7.0,-6.289308176100628,22.0125786163522 -740,5.0,8.0,0.0,4.915840805411357 -740,5.0,9.0,0.0,1.8561002591115965 -740,5.0,27.0,-4.362844058012917,15.463571542897856 -740,6.0,4.0,-2.954020035961983,7.449267916773697 -740,6.0,5.0,-3.590210423980992,11.02611441072814 -740,6.0,6.0,6.544230459942975,-18.45668232750184 -740,7.0,5.0,-6.289308176100628,22.0125786163522 -740,7.0,7.0,7.733287237496075,-26.527493274828448 -740,7.0,27.0,-1.4439790613954469,4.540814658476248 -740,8.0,5.0,0.0,4.915840805411357 -740,8.0,8.0,0.0,-18.706293706293707 -740,8.0,9.0,0.0,9.090909090909092 -740,8.0,10.0,0.0,4.807692307692308 -740,9.0,5.0,0.0,1.8561002591115965 -740,9.0,8.0,0.0,9.090909090909092 -740,9.0,9.0,13.462042814524237,-41.3837606675224 -740,9.0,16.0,-3.956039125715353,10.317447719844054 -740,9.0,19.0,-1.7848303152666305,3.98535828943083 -740,9.0,20.0,-5.101853820159654,10.98071411292983 -740,9.0,21.0,-2.619319553382597,5.400770303329455 -740,10.0,8.0,0.0,4.807692307692308 -740,10.0,10.0,0.0,-4.807692307692308 -740,11.0,3.0,0.0,4.191255364806866 -740,11.0,11.0,6.573961583776156,-24.424167659260668 -740,11.0,12.0,0.0,7.142857142857143 -740,11.0,13.0,-1.5265676088395577,3.1734252729654173 -740,11.0,14.0,-3.0953961826564296,6.097275864326261 -740,11.0,15.0,-1.9519977922801688,4.104359379111847 -740,12.0,11.0,0.0,7.142857142857143 -740,12.0,12.0,0.0,-7.142857142857143 -740,13.0,11.0,-1.5265676088395577,3.1734252729654173 -740,13.0,13.0,4.01751987283902,-5.424299332335067 -740,13.0,14.0,-2.4909522639994623,2.250874059369649 -740,14.0,11.0,-3.0953961826564296,6.097275864326261 -740,14.0,13.0,-2.4909522639994623,2.250874059369649 -740,14.0,14.0,9.365498545964757,-16.01163373210796 -740,14.0,17.0,-1.8108011504072024,3.687418931630696 -740,14.0,22.0,-1.9683489489016612,3.976064876781356 -740,15.0,11.0,-1.9519977922801688,4.104359379111847 -740,15.0,15.0,3.271064728633931,-8.94513365126506 -740,15.0,16.0,-1.3190669363537617,4.8407742721532125 -740,16.0,9.0,-3.956039125715353,10.317447719844054 -740,16.0,15.0,-1.3190669363537617,4.8407742721532125 -740,16.0,16.0,5.275106062069114,-15.158221991997266 -740,17.0,14.0,-1.8108011504072024,3.687418931630696 -740,17.0,17.0,4.886487584415919,-9.906177730909668 -740,17.0,18.0,-3.0756864340087167,6.218758799278971 -740,18.0,17.0,-3.0756864340087167,6.218758799278971 -740,18.0,18.0,8.958039375185187,-17.98346468163191 -740,18.0,19.0,-5.88235294117647,11.76470588235294 -740,19.0,9.0,-1.7848303152666305,3.98535828943083 -740,19.0,18.0,-5.88235294117647,11.76470588235294 -740,19.0,19.0,7.6671832564431,-15.75006417178377 -740,20.0,9.0,-5.101853820159654,10.98071411292983 -740,20.0,20.0,21.876495189895888,-45.10843276170355 -740,20.0,21.0,-16.774641369736234,34.127718648773715 -740,21.0,9.0,-2.619319553382597,5.400770303329455 -740,21.0,20.0,-16.774641369736234,34.127718648773715 -740,21.0,21.0,21.93449907537439,-43.48289181517921 -740,21.0,23.0,-2.5405381522555563,3.95440286307604 -740,22.0,14.0,-1.9683489489016612,3.976064876781356 -740,22.0,22.0,3.429754555384988,-6.965303617315433 -740,22.0,23.0,-1.4614056064833263,2.989238740534077 -740,23.0,21.0,-2.5405381522555563,3.95440286307604 -740,23.0,22.0,-1.4614056064833263,2.989238740534077 -740,23.0,23.0,5.311836702613133,-9.188263657315172 -740,23.0,24.0,-1.3098929438742493,2.287622053705056 -740,24.0,23.0,-1.3098929438742493,2.287622053705056 -740,24.0,24.0,4.495715080321987,-7.864978761969621 -740,24.0,25.0,-1.2165301194494855,1.8171440463475024 -740,24.0,26.0,-1.9692920169982515,3.760212661917064 -740,25.0,24.0,-1.2165301194494855,1.8171440463475024 -740,25.0,25.0,1.2165301194494855,-1.8171440463475024 -740,26.0,24.0,-1.9692920169982515,3.760212661917064 -740,26.0,26.0,3.652281470778589,-9.46044252232512 -740,26.0,27.0,0.0,2.608731947574922 -740,26.0,28.0,-0.99553355095268,1.881005840357816 -740,26.0,29.0,-0.6874559028276572,1.293971494797717 -740,27.0,5.0,-4.362844058012917,15.463571542897856 -740,27.0,7.0,-1.4439790613954469,4.540814658476248 -740,27.0,26.0,0.0,2.608731947574922 -740,27.0,27.0,5.806823119408364,-22.67145722159613 -740,28.0,26.0,-0.99553355095268,1.881005840357816 -740,28.0,28.0,1.9075867579849564,-3.604364401207048 -740,28.0,29.0,-0.9120532070322764,1.7233585608492326 -740,29.0,26.0,-0.6874559028276572,1.293971494797717 -740,29.0,28.0,-0.9120532070322764,1.7233585608492326 -740,29.0,29.0,1.5995091098599337,-3.0173300556469496 -741,0.0,0.0,6.765516048652632,-21.23160167089863 -741,0.0,1.0,-5.224646179885656,15.646726840803398 -741,0.0,2.0,-1.5408698687669766,5.631674830095234 -741,1.0,0.0,-5.224646179885656,15.646726840803398 -741,1.0,1.0,9.75228216552403,-30.648662892676068 -741,1.0,3.0,-1.7055303166990268,5.1973792282565086 -741,1.0,4.0,-1.1359607881738778,4.772479328281356 -741,1.0,5.0,-1.6861448807654689,5.116477495334806 -741,2.0,0.0,-1.5408698687669766,5.631674830095234 -741,2.0,2.0,9.736318911079088,-29.13794745915803 -741,2.0,3.0,-8.19544904231211,23.5308726290628 -741,3.0,1.0,-1.7055303166990268,5.1973792282565086 -741,3.0,2.0,-8.19544904231211,23.5308726290628 -741,3.0,3.0,16.314103089185693,-55.509410535254254 -741,3.0,5.0,-6.413123730174556,22.31120356548123 -741,3.0,11.0,0.0,4.191255364806866 -741,4.0,1.0,-1.1359607881738778,4.772479328281356 -741,4.0,4.0,4.089980824135861,-12.190647245055052 -741,4.0,6.0,-2.954020035961983,7.449267916773697 -741,5.0,1.0,-1.6861448807654689,5.116477495334806 -741,5.0,3.0,-6.413123730174556,22.31120356548123 -741,5.0,5.0,22.341631269034565,-82.8291478657789 -741,5.0,6.0,-3.590210423980992,11.02611441072814 -741,5.0,7.0,-6.289308176100628,22.0125786163522 -741,5.0,8.0,0.0,4.915840805411357 -741,5.0,9.0,0.0,1.8561002591115965 -741,5.0,27.0,-4.362844058012917,15.463571542897856 -741,6.0,4.0,-2.954020035961983,7.449267916773697 -741,6.0,5.0,-3.590210423980992,11.02611441072814 -741,6.0,6.0,6.544230459942975,-18.45668232750184 -741,7.0,5.0,-6.289308176100628,22.0125786163522 -741,7.0,7.0,7.733287237496075,-26.527493274828448 -741,7.0,27.0,-1.4439790613954469,4.540814658476248 -741,8.0,5.0,0.0,4.915840805411357 -741,8.0,8.0,0.0,-18.706293706293707 -741,8.0,9.0,0.0,9.090909090909092 -741,8.0,10.0,0.0,4.807692307692308 -741,9.0,5.0,0.0,1.8561002591115965 -741,9.0,8.0,0.0,9.090909090909092 -741,9.0,9.0,10.842723261141638,-35.98299036419294 -741,9.0,16.0,-3.956039125715353,10.317447719844054 -741,9.0,19.0,-1.7848303152666305,3.98535828943083 -741,9.0,20.0,-5.101853820159654,10.98071411292983 -741,10.0,8.0,0.0,4.807692307692308 -741,10.0,10.0,0.0,-4.807692307692308 -741,11.0,3.0,0.0,4.191255364806866 -741,11.0,11.0,3.478565401119727,-18.326891794934408 -741,11.0,12.0,0.0,7.142857142857143 -741,11.0,13.0,-1.5265676088395577,3.1734252729654173 -741,11.0,15.0,-1.9519977922801688,4.104359379111847 -741,12.0,11.0,0.0,7.142857142857143 -741,12.0,12.0,0.0,-7.142857142857143 -741,13.0,11.0,-1.5265676088395577,3.1734252729654173 -741,13.0,13.0,4.01751987283902,-5.424299332335067 -741,13.0,14.0,-2.4909522639994623,2.250874059369649 -741,14.0,13.0,-2.4909522639994623,2.250874059369649 -741,14.0,14.0,6.270102363308326,-9.9143578677817 -741,14.0,17.0,-1.8108011504072024,3.687418931630696 -741,14.0,22.0,-1.9683489489016612,3.976064876781356 -741,15.0,11.0,-1.9519977922801688,4.104359379111847 -741,15.0,15.0,3.271064728633931,-8.94513365126506 -741,15.0,16.0,-1.3190669363537617,4.8407742721532125 -741,16.0,9.0,-3.956039125715353,10.317447719844054 -741,16.0,15.0,-1.3190669363537617,4.8407742721532125 -741,16.0,16.0,5.275106062069114,-15.158221991997266 -741,17.0,14.0,-1.8108011504072024,3.687418931630696 -741,17.0,17.0,4.886487584415919,-9.906177730909668 -741,17.0,18.0,-3.0756864340087167,6.218758799278971 -741,18.0,17.0,-3.0756864340087167,6.218758799278971 -741,18.0,18.0,8.958039375185187,-17.98346468163191 -741,18.0,19.0,-5.88235294117647,11.76470588235294 -741,19.0,9.0,-1.7848303152666305,3.98535828943083 -741,19.0,18.0,-5.88235294117647,11.76470588235294 -741,19.0,19.0,7.6671832564431,-15.75006417178377 -741,20.0,9.0,-5.101853820159654,10.98071411292983 -741,20.0,20.0,21.876495189895888,-45.10843276170355 -741,20.0,21.0,-16.774641369736234,34.127718648773715 -741,21.0,20.0,-16.774641369736234,34.127718648773715 -741,21.0,21.0,19.31517952199179,-38.08212151184976 -741,21.0,23.0,-2.5405381522555563,3.95440286307604 -741,22.0,14.0,-1.9683489489016612,3.976064876781356 -741,22.0,22.0,3.429754555384988,-6.965303617315433 -741,22.0,23.0,-1.4614056064833263,2.989238740534077 -741,23.0,21.0,-2.5405381522555563,3.95440286307604 -741,23.0,22.0,-1.4614056064833263,2.989238740534077 -741,23.0,23.0,5.311836702613133,-9.188263657315172 -741,23.0,24.0,-1.3098929438742493,2.287622053705056 -741,24.0,23.0,-1.3098929438742493,2.287622053705056 -741,24.0,24.0,4.495715080321987,-7.864978761969621 -741,24.0,25.0,-1.2165301194494855,1.8171440463475024 -741,24.0,26.0,-1.9692920169982515,3.760212661917064 -741,25.0,24.0,-1.2165301194494855,1.8171440463475024 -741,25.0,25.0,1.2165301194494855,-1.8171440463475024 -741,26.0,24.0,-1.9692920169982515,3.760212661917064 -741,26.0,26.0,3.652281470778589,-9.46044252232512 -741,26.0,27.0,0.0,2.608731947574922 -741,26.0,28.0,-0.99553355095268,1.881005840357816 -741,26.0,29.0,-0.6874559028276572,1.293971494797717 -741,27.0,5.0,-4.362844058012917,15.463571542897856 -741,27.0,7.0,-1.4439790613954469,4.540814658476248 -741,27.0,26.0,0.0,2.608731947574922 -741,27.0,27.0,5.806823119408364,-22.67145722159613 -741,28.0,26.0,-0.99553355095268,1.881005840357816 -741,28.0,28.0,0.99553355095268,-1.881005840357816 -741,29.0,26.0,-0.6874559028276572,1.293971494797717 -741,29.0,29.0,0.6874559028276572,-1.293971494797717 -742,0.0,0.0,6.765516048652632,-21.23160167089863 -742,0.0,1.0,-5.224646179885656,15.646726840803398 -742,0.0,2.0,-1.5408698687669766,5.631674830095234 -742,1.0,0.0,-5.224646179885656,15.646726840803398 -742,1.0,1.0,9.75228216552403,-30.648662892676068 -742,1.0,3.0,-1.7055303166990268,5.1973792282565086 -742,1.0,4.0,-1.1359607881738778,4.772479328281356 -742,1.0,5.0,-1.6861448807654689,5.116477495334806 -742,2.0,0.0,-1.5408698687669766,5.631674830095234 -742,2.0,2.0,9.736318911079088,-29.13794745915803 -742,2.0,3.0,-8.19544904231211,23.5308726290628 -742,3.0,1.0,-1.7055303166990268,5.1973792282565086 -742,3.0,2.0,-8.19544904231211,23.5308726290628 -742,3.0,3.0,16.314103089185693,-55.509410535254254 -742,3.0,5.0,-6.413123730174556,22.31120356548123 -742,3.0,11.0,0.0,4.191255364806866 -742,4.0,1.0,-1.1359607881738778,4.772479328281356 -742,4.0,4.0,1.1359607881738778,-4.751579328281355 -742,5.0,1.0,-1.6861448807654689,5.116477495334806 -742,5.0,3.0,-6.413123730174556,22.31120356548123 -742,5.0,5.0,22.341631269034565,-82.8291478657789 -742,5.0,6.0,-3.590210423980992,11.02611441072814 -742,5.0,7.0,-6.289308176100628,22.0125786163522 -742,5.0,8.0,0.0,4.915840805411357 -742,5.0,9.0,0.0,1.8561002591115965 -742,5.0,27.0,-4.362844058012917,15.463571542897856 -742,6.0,5.0,-3.590210423980992,11.02611441072814 -742,6.0,6.0,3.590210423980992,-11.01761441072814 -742,7.0,5.0,-6.289308176100628,22.0125786163522 -742,7.0,7.0,7.733287237496075,-26.527493274828448 -742,7.0,27.0,-1.4439790613954469,4.540814658476248 -742,8.0,5.0,0.0,4.915840805411357 -742,8.0,8.0,0.0,-18.706293706293707 -742,8.0,9.0,0.0,9.090909090909092 -742,8.0,10.0,0.0,4.807692307692308 -742,9.0,5.0,0.0,1.8561002591115965 -742,9.0,8.0,0.0,9.090909090909092 -742,9.0,9.0,13.462042814524237,-41.3837606675224 -742,9.0,16.0,-3.956039125715353,10.317447719844054 -742,9.0,19.0,-1.7848303152666305,3.98535828943083 -742,9.0,20.0,-5.101853820159654,10.98071411292983 -742,9.0,21.0,-2.619319553382597,5.400770303329455 -742,10.0,8.0,0.0,4.807692307692308 -742,10.0,10.0,0.0,-4.807692307692308 -742,11.0,3.0,0.0,4.191255364806866 -742,11.0,11.0,6.573961583776156,-24.424167659260668 -742,11.0,12.0,0.0,7.142857142857143 -742,11.0,13.0,-1.5265676088395577,3.1734252729654173 -742,11.0,14.0,-3.0953961826564296,6.097275864326261 -742,11.0,15.0,-1.9519977922801688,4.104359379111847 -742,12.0,11.0,0.0,7.142857142857143 -742,12.0,12.0,0.0,-7.142857142857143 -742,13.0,11.0,-1.5265676088395577,3.1734252729654173 -742,13.0,13.0,4.01751987283902,-5.424299332335067 -742,13.0,14.0,-2.4909522639994623,2.250874059369649 -742,14.0,11.0,-3.0953961826564296,6.097275864326261 -742,14.0,13.0,-2.4909522639994623,2.250874059369649 -742,14.0,14.0,9.365498545964757,-16.01163373210796 -742,14.0,17.0,-1.8108011504072024,3.687418931630696 -742,14.0,22.0,-1.9683489489016612,3.976064876781356 -742,15.0,11.0,-1.9519977922801688,4.104359379111847 -742,15.0,15.0,3.271064728633931,-8.94513365126506 -742,15.0,16.0,-1.3190669363537617,4.8407742721532125 -742,16.0,9.0,-3.956039125715353,10.317447719844054 -742,16.0,15.0,-1.3190669363537617,4.8407742721532125 -742,16.0,16.0,5.275106062069114,-15.158221991997266 -742,17.0,14.0,-1.8108011504072024,3.687418931630696 -742,17.0,17.0,4.886487584415919,-9.906177730909668 -742,17.0,18.0,-3.0756864340087167,6.218758799278971 -742,18.0,17.0,-3.0756864340087167,6.218758799278971 -742,18.0,18.0,8.958039375185187,-17.98346468163191 -742,18.0,19.0,-5.88235294117647,11.76470588235294 -742,19.0,9.0,-1.7848303152666305,3.98535828943083 -742,19.0,18.0,-5.88235294117647,11.76470588235294 -742,19.0,19.0,7.6671832564431,-15.75006417178377 -742,20.0,9.0,-5.101853820159654,10.98071411292983 -742,20.0,20.0,21.876495189895888,-45.10843276170355 -742,20.0,21.0,-16.774641369736234,34.127718648773715 -742,21.0,9.0,-2.619319553382597,5.400770303329455 -742,21.0,20.0,-16.774641369736234,34.127718648773715 -742,21.0,21.0,21.93449907537439,-43.48289181517921 -742,21.0,23.0,-2.5405381522555563,3.95440286307604 -742,22.0,14.0,-1.9683489489016612,3.976064876781356 -742,22.0,22.0,3.429754555384988,-6.965303617315433 -742,22.0,23.0,-1.4614056064833263,2.989238740534077 -742,23.0,21.0,-2.5405381522555563,3.95440286307604 -742,23.0,22.0,-1.4614056064833263,2.989238740534077 -742,23.0,23.0,5.311836702613133,-9.188263657315172 -742,23.0,24.0,-1.3098929438742493,2.287622053705056 -742,24.0,23.0,-1.3098929438742493,2.287622053705056 -742,24.0,24.0,4.495715080321987,-7.864978761969621 -742,24.0,25.0,-1.2165301194494855,1.8171440463475024 -742,24.0,26.0,-1.9692920169982515,3.760212661917064 -742,25.0,24.0,-1.2165301194494855,1.8171440463475024 -742,25.0,25.0,1.2165301194494855,-1.8171440463475024 -742,26.0,24.0,-1.9692920169982515,3.760212661917064 -742,26.0,26.0,3.652281470778589,-9.46044252232512 -742,26.0,27.0,0.0,2.608731947574922 -742,26.0,28.0,-0.99553355095268,1.881005840357816 -742,26.0,29.0,-0.6874559028276572,1.293971494797717 -742,27.0,5.0,-4.362844058012917,15.463571542897856 -742,27.0,7.0,-1.4439790613954469,4.540814658476248 -742,27.0,26.0,0.0,2.608731947574922 -742,27.0,27.0,5.806823119408364,-22.67145722159613 -742,28.0,26.0,-0.99553355095268,1.881005840357816 -742,28.0,28.0,1.9075867579849564,-3.604364401207048 -742,28.0,29.0,-0.9120532070322764,1.7233585608492326 -742,29.0,26.0,-0.6874559028276572,1.293971494797717 -742,29.0,28.0,-0.9120532070322764,1.7233585608492326 -742,29.0,29.0,1.5995091098599337,-3.0173300556469496 -743,0.0,0.0,6.765516048652632,-21.23160167089863 -743,0.0,1.0,-5.224646179885656,15.646726840803398 -743,0.0,2.0,-1.5408698687669766,5.631674830095234 -743,1.0,0.0,-5.224646179885656,15.646726840803398 -743,1.0,1.0,9.75228216552403,-30.648662892676068 -743,1.0,3.0,-1.7055303166990268,5.1973792282565086 -743,1.0,4.0,-1.1359607881738778,4.772479328281356 -743,1.0,5.0,-1.6861448807654689,5.116477495334806 -743,2.0,0.0,-1.5408698687669766,5.631674830095234 -743,2.0,2.0,9.736318911079088,-29.13794745915803 -743,2.0,3.0,-8.19544904231211,23.5308726290628 -743,3.0,1.0,-1.7055303166990268,5.1973792282565086 -743,3.0,2.0,-8.19544904231211,23.5308726290628 -743,3.0,3.0,16.314103089185693,-55.509410535254254 -743,3.0,5.0,-6.413123730174556,22.31120356548123 -743,3.0,11.0,0.0,4.191255364806866 -743,4.0,1.0,-1.1359607881738778,4.772479328281356 -743,4.0,4.0,4.089980824135861,-12.190647245055052 -743,4.0,6.0,-2.954020035961983,7.449267916773697 -743,5.0,1.0,-1.6861448807654689,5.116477495334806 -743,5.0,3.0,-6.413123730174556,22.31120356548123 -743,5.0,5.0,22.341631269034565,-82.8291478657789 -743,5.0,6.0,-3.590210423980992,11.02611441072814 -743,5.0,7.0,-6.289308176100628,22.0125786163522 -743,5.0,8.0,0.0,4.915840805411357 -743,5.0,9.0,0.0,1.8561002591115965 -743,5.0,27.0,-4.362844058012917,15.463571542897856 -743,6.0,4.0,-2.954020035961983,7.449267916773697 -743,6.0,5.0,-3.590210423980992,11.02611441072814 -743,6.0,6.0,6.544230459942975,-18.45668232750184 -743,7.0,5.0,-6.289308176100628,22.0125786163522 -743,7.0,7.0,7.733287237496075,-26.527493274828448 -743,7.0,27.0,-1.4439790613954469,4.540814658476248 -743,8.0,5.0,0.0,4.915840805411357 -743,8.0,8.0,0.0,-18.706293706293707 -743,8.0,9.0,0.0,9.090909090909092 -743,8.0,10.0,0.0,4.807692307692308 -743,9.0,5.0,0.0,1.8561002591115965 -743,9.0,8.0,0.0,9.090909090909092 -743,9.0,9.0,13.462042814524237,-41.3837606675224 -743,9.0,16.0,-3.956039125715353,10.317447719844054 -743,9.0,19.0,-1.7848303152666305,3.98535828943083 -743,9.0,20.0,-5.101853820159654,10.98071411292983 -743,9.0,21.0,-2.619319553382597,5.400770303329455 -743,10.0,8.0,0.0,4.807692307692308 -743,10.0,10.0,0.0,-4.807692307692308 -743,11.0,3.0,0.0,4.191255364806866 -743,11.0,11.0,3.478565401119727,-18.326891794934408 -743,11.0,12.0,0.0,7.142857142857143 -743,11.0,13.0,-1.5265676088395577,3.1734252729654173 -743,11.0,15.0,-1.9519977922801688,4.104359379111847 -743,12.0,11.0,0.0,7.142857142857143 -743,12.0,12.0,0.0,-7.142857142857143 -743,13.0,11.0,-1.5265676088395577,3.1734252729654173 -743,13.0,13.0,1.5265676088395577,-3.1734252729654173 -743,14.0,14.0,3.779150099308864,-7.663483808412051 -743,14.0,17.0,-1.8108011504072024,3.687418931630696 -743,14.0,22.0,-1.9683489489016612,3.976064876781356 -743,15.0,11.0,-1.9519977922801688,4.104359379111847 -743,15.0,15.0,3.271064728633931,-8.94513365126506 -743,15.0,16.0,-1.3190669363537617,4.8407742721532125 -743,16.0,9.0,-3.956039125715353,10.317447719844054 -743,16.0,15.0,-1.3190669363537617,4.8407742721532125 -743,16.0,16.0,5.275106062069114,-15.158221991997266 -743,17.0,14.0,-1.8108011504072024,3.687418931630696 -743,17.0,17.0,4.886487584415919,-9.906177730909668 -743,17.0,18.0,-3.0756864340087167,6.218758799278971 -743,18.0,17.0,-3.0756864340087167,6.218758799278971 -743,18.0,18.0,8.958039375185187,-17.98346468163191 -743,18.0,19.0,-5.88235294117647,11.76470588235294 -743,19.0,9.0,-1.7848303152666305,3.98535828943083 -743,19.0,18.0,-5.88235294117647,11.76470588235294 -743,19.0,19.0,7.6671832564431,-15.75006417178377 -743,20.0,9.0,-5.101853820159654,10.98071411292983 -743,20.0,20.0,21.876495189895888,-45.10843276170355 -743,20.0,21.0,-16.774641369736234,34.127718648773715 -743,21.0,9.0,-2.619319553382597,5.400770303329455 -743,21.0,20.0,-16.774641369736234,34.127718648773715 -743,21.0,21.0,21.93449907537439,-43.48289181517921 -743,21.0,23.0,-2.5405381522555563,3.95440286307604 -743,22.0,14.0,-1.9683489489016612,3.976064876781356 -743,22.0,22.0,3.429754555384988,-6.965303617315433 -743,22.0,23.0,-1.4614056064833263,2.989238740534077 -743,23.0,21.0,-2.5405381522555563,3.95440286307604 -743,23.0,22.0,-1.4614056064833263,2.989238740534077 -743,23.0,23.0,5.311836702613133,-9.188263657315172 -743,23.0,24.0,-1.3098929438742493,2.287622053705056 -743,24.0,23.0,-1.3098929438742493,2.287622053705056 -743,24.0,24.0,4.495715080321987,-7.864978761969621 -743,24.0,25.0,-1.2165301194494855,1.8171440463475024 -743,24.0,26.0,-1.9692920169982515,3.760212661917064 -743,25.0,24.0,-1.2165301194494855,1.8171440463475024 -743,25.0,25.0,1.2165301194494855,-1.8171440463475024 -743,26.0,24.0,-1.9692920169982515,3.760212661917064 -743,26.0,26.0,3.652281470778589,-9.46044252232512 -743,26.0,27.0,0.0,2.608731947574922 -743,26.0,28.0,-0.99553355095268,1.881005840357816 -743,26.0,29.0,-0.6874559028276572,1.293971494797717 -743,27.0,5.0,-4.362844058012917,15.463571542897856 -743,27.0,7.0,-1.4439790613954469,4.540814658476248 -743,27.0,26.0,0.0,2.608731947574922 -743,27.0,27.0,5.806823119408364,-22.67145722159613 -743,28.0,26.0,-0.99553355095268,1.881005840357816 -743,28.0,28.0,1.9075867579849564,-3.604364401207048 -743,28.0,29.0,-0.9120532070322764,1.7233585608492326 -743,29.0,26.0,-0.6874559028276572,1.293971494797717 -743,29.0,28.0,-0.9120532070322764,1.7233585608492326 -743,29.0,29.0,1.5995091098599337,-3.0173300556469496 -744,0.0,0.0,6.765516048652632,-21.23160167089863 -744,0.0,1.0,-5.224646179885656,15.646726840803398 -744,0.0,2.0,-1.5408698687669766,5.631674830095234 -744,1.0,0.0,-5.224646179885656,15.646726840803398 -744,1.0,1.0,9.75228216552403,-30.648662892676068 -744,1.0,3.0,-1.7055303166990268,5.1973792282565086 -744,1.0,4.0,-1.1359607881738778,4.772479328281356 -744,1.0,5.0,-1.6861448807654689,5.116477495334806 -744,2.0,0.0,-1.5408698687669766,5.631674830095234 -744,2.0,2.0,9.736318911079088,-29.13794745915803 -744,2.0,3.0,-8.19544904231211,23.5308726290628 -744,3.0,1.0,-1.7055303166990268,5.1973792282565086 -744,3.0,2.0,-8.19544904231211,23.5308726290628 -744,3.0,3.0,16.314103089185693,-55.509410535254254 -744,3.0,5.0,-6.413123730174556,22.31120356548123 -744,3.0,11.0,0.0,4.191255364806866 -744,4.0,1.0,-1.1359607881738778,4.772479328281356 -744,4.0,4.0,4.089980824135861,-12.190647245055052 -744,4.0,6.0,-2.954020035961983,7.449267916773697 -744,5.0,1.0,-1.6861448807654689,5.116477495334806 -744,5.0,3.0,-6.413123730174556,22.31120356548123 -744,5.0,5.0,16.052323092933932,-60.8210692494267 -744,5.0,6.0,-3.590210423980992,11.02611441072814 -744,5.0,8.0,0.0,4.915840805411357 -744,5.0,9.0,0.0,1.8561002591115965 -744,5.0,27.0,-4.362844058012917,15.463571542897856 -744,6.0,4.0,-2.954020035961983,7.449267916773697 -744,6.0,5.0,-3.590210423980992,11.02611441072814 -744,6.0,6.0,6.544230459942975,-18.45668232750184 -744,7.0,7.0,1.4439790613954469,-4.519414658476248 -744,7.0,27.0,-1.4439790613954469,4.540814658476248 -744,8.0,5.0,0.0,4.915840805411357 -744,8.0,8.0,0.0,-18.706293706293707 -744,8.0,9.0,0.0,9.090909090909092 -744,8.0,10.0,0.0,4.807692307692308 -744,9.0,5.0,0.0,1.8561002591115965 -744,9.0,8.0,0.0,9.090909090909092 -744,9.0,9.0,13.462042814524237,-41.3837606675224 -744,9.0,16.0,-3.956039125715353,10.317447719844054 -744,9.0,19.0,-1.7848303152666305,3.98535828943083 -744,9.0,20.0,-5.101853820159654,10.98071411292983 -744,9.0,21.0,-2.619319553382597,5.400770303329455 -744,10.0,8.0,0.0,4.807692307692308 -744,10.0,10.0,0.0,-4.807692307692308 -744,11.0,3.0,0.0,4.191255364806866 -744,11.0,11.0,6.573961583776156,-24.424167659260668 -744,11.0,12.0,0.0,7.142857142857143 -744,11.0,13.0,-1.5265676088395577,3.1734252729654173 -744,11.0,14.0,-3.0953961826564296,6.097275864326261 -744,11.0,15.0,-1.9519977922801688,4.104359379111847 -744,12.0,11.0,0.0,7.142857142857143 -744,12.0,12.0,0.0,-7.142857142857143 -744,13.0,11.0,-1.5265676088395577,3.1734252729654173 -744,13.0,13.0,4.01751987283902,-5.424299332335067 -744,13.0,14.0,-2.4909522639994623,2.250874059369649 -744,14.0,11.0,-3.0953961826564296,6.097275864326261 -744,14.0,13.0,-2.4909522639994623,2.250874059369649 -744,14.0,14.0,9.365498545964757,-16.01163373210796 -744,14.0,17.0,-1.8108011504072024,3.687418931630696 -744,14.0,22.0,-1.9683489489016612,3.976064876781356 -744,15.0,11.0,-1.9519977922801688,4.104359379111847 -744,15.0,15.0,3.271064728633931,-8.94513365126506 -744,15.0,16.0,-1.3190669363537617,4.8407742721532125 -744,16.0,9.0,-3.956039125715353,10.317447719844054 -744,16.0,15.0,-1.3190669363537617,4.8407742721532125 -744,16.0,16.0,5.275106062069114,-15.158221991997266 -744,17.0,14.0,-1.8108011504072024,3.687418931630696 -744,17.0,17.0,4.886487584415919,-9.906177730909668 -744,17.0,18.0,-3.0756864340087167,6.218758799278971 -744,18.0,17.0,-3.0756864340087167,6.218758799278971 -744,18.0,18.0,8.958039375185187,-17.98346468163191 -744,18.0,19.0,-5.88235294117647,11.76470588235294 -744,19.0,9.0,-1.7848303152666305,3.98535828943083 -744,19.0,18.0,-5.88235294117647,11.76470588235294 -744,19.0,19.0,7.6671832564431,-15.75006417178377 -744,20.0,9.0,-5.101853820159654,10.98071411292983 -744,20.0,20.0,21.876495189895888,-45.10843276170355 -744,20.0,21.0,-16.774641369736234,34.127718648773715 -744,21.0,9.0,-2.619319553382597,5.400770303329455 -744,21.0,20.0,-16.774641369736234,34.127718648773715 -744,21.0,21.0,21.93449907537439,-43.48289181517921 -744,21.0,23.0,-2.5405381522555563,3.95440286307604 -744,22.0,14.0,-1.9683489489016612,3.976064876781356 -744,22.0,22.0,3.429754555384988,-6.965303617315433 -744,22.0,23.0,-1.4614056064833263,2.989238740534077 -744,23.0,21.0,-2.5405381522555563,3.95440286307604 -744,23.0,22.0,-1.4614056064833263,2.989238740534077 -744,23.0,23.0,5.311836702613133,-9.188263657315172 -744,23.0,24.0,-1.3098929438742493,2.287622053705056 -744,24.0,23.0,-1.3098929438742493,2.287622053705056 -744,24.0,24.0,4.495715080321987,-7.864978761969621 -744,24.0,25.0,-1.2165301194494855,1.8171440463475024 -744,24.0,26.0,-1.9692920169982515,3.760212661917064 -744,25.0,24.0,-1.2165301194494855,1.8171440463475024 -744,25.0,25.0,1.2165301194494855,-1.8171440463475024 -744,26.0,24.0,-1.9692920169982515,3.760212661917064 -744,26.0,26.0,3.652281470778589,-9.46044252232512 -744,26.0,27.0,0.0,2.608731947574922 -744,26.0,28.0,-0.99553355095268,1.881005840357816 -744,26.0,29.0,-0.6874559028276572,1.293971494797717 -744,27.0,5.0,-4.362844058012917,15.463571542897856 -744,27.0,7.0,-1.4439790613954469,4.540814658476248 -744,27.0,26.0,0.0,2.608731947574922 -744,27.0,27.0,5.806823119408364,-22.67145722159613 -744,28.0,26.0,-0.99553355095268,1.881005840357816 -744,28.0,28.0,1.9075867579849564,-3.604364401207048 -744,28.0,29.0,-0.9120532070322764,1.7233585608492326 -744,29.0,26.0,-0.6874559028276572,1.293971494797717 -744,29.0,28.0,-0.9120532070322764,1.7233585608492326 -744,29.0,29.0,1.5995091098599337,-3.0173300556469496 -745,0.0,0.0,6.765516048652632,-21.23160167089863 -745,0.0,1.0,-5.224646179885656,15.646726840803398 -745,0.0,2.0,-1.5408698687669766,5.631674830095234 -745,1.0,0.0,-5.224646179885656,15.646726840803398 -745,1.0,1.0,8.046751848825002,-25.46968366441956 -745,1.0,4.0,-1.1359607881738778,4.772479328281356 -745,1.0,5.0,-1.6861448807654689,5.116477495334806 -745,2.0,0.0,-1.5408698687669766,5.631674830095234 -745,2.0,2.0,9.736318911079088,-29.13794745915803 -745,2.0,3.0,-8.19544904231211,23.5308726290628 -745,3.0,2.0,-8.19544904231211,23.5308726290628 -745,3.0,3.0,14.608572772486664,-50.33043130699775 -745,3.0,5.0,-6.413123730174556,22.31120356548123 -745,3.0,11.0,0.0,4.191255364806866 -745,4.0,1.0,-1.1359607881738778,4.772479328281356 -745,4.0,4.0,4.089980824135861,-12.190647245055052 -745,4.0,6.0,-2.954020035961983,7.449267916773697 -745,5.0,1.0,-1.6861448807654689,5.116477495334806 -745,5.0,3.0,-6.413123730174556,22.31120356548123 -745,5.0,5.0,22.341631269034565,-82.8291478657789 -745,5.0,6.0,-3.590210423980992,11.02611441072814 -745,5.0,7.0,-6.289308176100628,22.0125786163522 -745,5.0,8.0,0.0,4.915840805411357 -745,5.0,9.0,0.0,1.8561002591115965 -745,5.0,27.0,-4.362844058012917,15.463571542897856 -745,6.0,4.0,-2.954020035961983,7.449267916773697 -745,6.0,5.0,-3.590210423980992,11.02611441072814 -745,6.0,6.0,6.544230459942975,-18.45668232750184 -745,7.0,5.0,-6.289308176100628,22.0125786163522 -745,7.0,7.0,6.289308176100628,-22.0080786163522 -745,8.0,5.0,0.0,4.915840805411357 -745,8.0,8.0,0.0,-18.706293706293707 -745,8.0,9.0,0.0,9.090909090909092 -745,8.0,10.0,0.0,4.807692307692308 -745,9.0,5.0,0.0,1.8561002591115965 -745,9.0,8.0,0.0,9.090909090909092 -745,9.0,9.0,6.886684135426284,-25.66554264434889 -745,9.0,19.0,-1.7848303152666305,3.98535828943083 -745,9.0,20.0,-5.101853820159654,10.98071411292983 -745,10.0,8.0,0.0,4.807692307692308 -745,10.0,10.0,0.0,-4.807692307692308 -745,11.0,3.0,0.0,4.191255364806866 -745,11.0,11.0,6.573961583776156,-24.424167659260668 -745,11.0,12.0,0.0,7.142857142857143 -745,11.0,13.0,-1.5265676088395577,3.1734252729654173 -745,11.0,14.0,-3.0953961826564296,6.097275864326261 -745,11.0,15.0,-1.9519977922801688,4.104359379111847 -745,12.0,11.0,0.0,7.142857142857143 -745,12.0,12.0,0.0,-7.142857142857143 -745,13.0,11.0,-1.5265676088395577,3.1734252729654173 -745,13.0,13.0,4.01751987283902,-5.424299332335067 -745,13.0,14.0,-2.4909522639994623,2.250874059369649 -745,14.0,11.0,-3.0953961826564296,6.097275864326261 -745,14.0,13.0,-2.4909522639994623,2.250874059369649 -745,14.0,14.0,9.365498545964757,-16.01163373210796 -745,14.0,17.0,-1.8108011504072024,3.687418931630696 -745,14.0,22.0,-1.9683489489016612,3.976064876781356 -745,15.0,11.0,-1.9519977922801688,4.104359379111847 -745,15.0,15.0,3.271064728633931,-8.94513365126506 -745,15.0,16.0,-1.3190669363537617,4.8407742721532125 -745,16.0,15.0,-1.3190669363537617,4.8407742721532125 -745,16.0,16.0,1.3190669363537617,-4.8407742721532125 -745,17.0,14.0,-1.8108011504072024,3.687418931630696 -745,17.0,17.0,4.886487584415919,-9.906177730909668 -745,17.0,18.0,-3.0756864340087167,6.218758799278971 -745,18.0,17.0,-3.0756864340087167,6.218758799278971 -745,18.0,18.0,8.958039375185187,-17.98346468163191 -745,18.0,19.0,-5.88235294117647,11.76470588235294 -745,19.0,9.0,-1.7848303152666305,3.98535828943083 -745,19.0,18.0,-5.88235294117647,11.76470588235294 -745,19.0,19.0,7.6671832564431,-15.75006417178377 -745,20.0,9.0,-5.101853820159654,10.98071411292983 -745,20.0,20.0,21.876495189895888,-45.10843276170355 -745,20.0,21.0,-16.774641369736234,34.127718648773715 -745,21.0,20.0,-16.774641369736234,34.127718648773715 -745,21.0,21.0,19.31517952199179,-38.08212151184976 -745,21.0,23.0,-2.5405381522555563,3.95440286307604 -745,22.0,14.0,-1.9683489489016612,3.976064876781356 -745,22.0,22.0,3.429754555384988,-6.965303617315433 -745,22.0,23.0,-1.4614056064833263,2.989238740534077 -745,23.0,21.0,-2.5405381522555563,3.95440286307604 -745,23.0,22.0,-1.4614056064833263,2.989238740534077 -745,23.0,23.0,4.001943758738883,-6.900641603610116 -745,24.0,24.0,3.185822136447737,-5.577356708264566 -745,24.0,25.0,-1.2165301194494855,1.8171440463475024 -745,24.0,26.0,-1.9692920169982515,3.760212661917064 -745,25.0,24.0,-1.2165301194494855,1.8171440463475024 -745,25.0,25.0,1.2165301194494855,-1.8171440463475024 -745,26.0,24.0,-1.9692920169982515,3.760212661917064 -745,26.0,26.0,3.652281470778589,-9.46044252232512 -745,26.0,27.0,0.0,2.608731947574922 -745,26.0,28.0,-0.99553355095268,1.881005840357816 -745,26.0,29.0,-0.6874559028276572,1.293971494797717 -745,27.0,5.0,-4.362844058012917,15.463571542897856 -745,27.0,26.0,0.0,2.608731947574922 -745,27.0,27.0,4.362844058012917,-18.15204256311988 -745,28.0,26.0,-0.99553355095268,1.881005840357816 -745,28.0,28.0,0.99553355095268,-1.881005840357816 -745,29.0,26.0,-0.6874559028276572,1.293971494797717 -745,29.0,29.0,0.6874559028276572,-1.293971494797717 -746,0.0,0.0,6.765516048652632,-21.23160167089863 -746,0.0,1.0,-5.224646179885656,15.646726840803398 -746,0.0,2.0,-1.5408698687669766,5.631674830095234 -746,1.0,0.0,-5.224646179885656,15.646726840803398 -746,1.0,1.0,9.75228216552403,-30.648662892676068 -746,1.0,3.0,-1.7055303166990268,5.1973792282565086 -746,1.0,4.0,-1.1359607881738778,4.772479328281356 -746,1.0,5.0,-1.6861448807654689,5.116477495334806 -746,2.0,0.0,-1.5408698687669766,5.631674830095234 -746,2.0,2.0,9.736318911079088,-29.13794745915803 -746,2.0,3.0,-8.19544904231211,23.5308726290628 -746,3.0,1.0,-1.7055303166990268,5.1973792282565086 -746,3.0,2.0,-8.19544904231211,23.5308726290628 -746,3.0,3.0,16.314103089185693,-55.509410535254254 -746,3.0,5.0,-6.413123730174556,22.31120356548123 -746,3.0,11.0,0.0,4.191255364806866 -746,4.0,1.0,-1.1359607881738778,4.772479328281356 -746,4.0,4.0,4.089980824135861,-12.190647245055052 -746,4.0,6.0,-2.954020035961983,7.449267916773697 -746,5.0,1.0,-1.6861448807654689,5.116477495334806 -746,5.0,3.0,-6.413123730174556,22.31120356548123 -746,5.0,5.0,22.341631269034565,-82.8291478657789 -746,5.0,6.0,-3.590210423980992,11.02611441072814 -746,5.0,7.0,-6.289308176100628,22.0125786163522 -746,5.0,8.0,0.0,4.915840805411357 -746,5.0,9.0,0.0,1.8561002591115965 -746,5.0,27.0,-4.362844058012917,15.463571542897856 -746,6.0,4.0,-2.954020035961983,7.449267916773697 -746,6.0,5.0,-3.590210423980992,11.02611441072814 -746,6.0,6.0,6.544230459942975,-18.45668232750184 -746,7.0,5.0,-6.289308176100628,22.0125786163522 -746,7.0,7.0,7.733287237496075,-26.527493274828448 -746,7.0,27.0,-1.4439790613954469,4.540814658476248 -746,8.0,5.0,0.0,4.915840805411357 -746,8.0,8.0,0.0,-18.706293706293707 -746,8.0,9.0,0.0,9.090909090909092 -746,8.0,10.0,0.0,4.807692307692308 -746,9.0,5.0,0.0,1.8561002591115965 -746,9.0,8.0,0.0,9.090909090909092 -746,9.0,9.0,13.462042814524237,-41.3837606675224 -746,9.0,16.0,-3.956039125715353,10.317447719844054 -746,9.0,19.0,-1.7848303152666305,3.98535828943083 -746,9.0,20.0,-5.101853820159654,10.98071411292983 -746,9.0,21.0,-2.619319553382597,5.400770303329455 -746,10.0,8.0,0.0,4.807692307692308 -746,10.0,10.0,0.0,-4.807692307692308 -746,11.0,3.0,0.0,4.191255364806866 -746,11.0,11.0,6.573961583776156,-24.424167659260668 -746,11.0,12.0,0.0,7.142857142857143 -746,11.0,13.0,-1.5265676088395577,3.1734252729654173 -746,11.0,14.0,-3.0953961826564296,6.097275864326261 -746,11.0,15.0,-1.9519977922801688,4.104359379111847 -746,12.0,11.0,0.0,7.142857142857143 -746,12.0,12.0,0.0,-7.142857142857143 -746,13.0,11.0,-1.5265676088395577,3.1734252729654173 -746,13.0,13.0,4.01751987283902,-5.424299332335067 -746,13.0,14.0,-2.4909522639994623,2.250874059369649 -746,14.0,11.0,-3.0953961826564296,6.097275864326261 -746,14.0,13.0,-2.4909522639994623,2.250874059369649 -746,14.0,14.0,9.365498545964757,-16.01163373210796 -746,14.0,17.0,-1.8108011504072024,3.687418931630696 -746,14.0,22.0,-1.9683489489016612,3.976064876781356 -746,15.0,11.0,-1.9519977922801688,4.104359379111847 -746,15.0,15.0,3.271064728633931,-8.94513365126506 -746,15.0,16.0,-1.3190669363537617,4.8407742721532125 -746,16.0,9.0,-3.956039125715353,10.317447719844054 -746,16.0,15.0,-1.3190669363537617,4.8407742721532125 -746,16.0,16.0,5.275106062069114,-15.158221991997266 -746,17.0,14.0,-1.8108011504072024,3.687418931630696 -746,17.0,17.0,4.886487584415919,-9.906177730909668 -746,17.0,18.0,-3.0756864340087167,6.218758799278971 -746,18.0,17.0,-3.0756864340087167,6.218758799278971 -746,18.0,18.0,8.958039375185187,-17.98346468163191 -746,18.0,19.0,-5.88235294117647,11.76470588235294 -746,19.0,9.0,-1.7848303152666305,3.98535828943083 -746,19.0,18.0,-5.88235294117647,11.76470588235294 -746,19.0,19.0,7.6671832564431,-15.75006417178377 -746,20.0,9.0,-5.101853820159654,10.98071411292983 -746,20.0,20.0,21.876495189895888,-45.10843276170355 -746,20.0,21.0,-16.774641369736234,34.127718648773715 -746,21.0,9.0,-2.619319553382597,5.400770303329455 -746,21.0,20.0,-16.774641369736234,34.127718648773715 -746,21.0,21.0,19.393960923118836,-39.52848895210317 -746,22.0,14.0,-1.9683489489016612,3.976064876781356 -746,22.0,22.0,3.429754555384988,-6.965303617315433 -746,22.0,23.0,-1.4614056064833263,2.989238740534077 -746,23.0,22.0,-1.4614056064833263,2.989238740534077 -746,23.0,23.0,2.771298550357576,-5.233860794239132 -746,23.0,24.0,-1.3098929438742493,2.287622053705056 -746,24.0,23.0,-1.3098929438742493,2.287622053705056 -746,24.0,24.0,4.495715080321987,-7.864978761969621 -746,24.0,25.0,-1.2165301194494855,1.8171440463475024 -746,24.0,26.0,-1.9692920169982515,3.760212661917064 -746,25.0,24.0,-1.2165301194494855,1.8171440463475024 -746,25.0,25.0,1.2165301194494855,-1.8171440463475024 -746,26.0,24.0,-1.9692920169982515,3.760212661917064 -746,26.0,26.0,3.652281470778589,-9.46044252232512 -746,26.0,27.0,0.0,2.608731947574922 -746,26.0,28.0,-0.99553355095268,1.881005840357816 -746,26.0,29.0,-0.6874559028276572,1.293971494797717 -746,27.0,5.0,-4.362844058012917,15.463571542897856 -746,27.0,7.0,-1.4439790613954469,4.540814658476248 -746,27.0,26.0,0.0,2.608731947574922 -746,27.0,27.0,5.806823119408364,-22.67145722159613 -746,28.0,26.0,-0.99553355095268,1.881005840357816 -746,28.0,28.0,1.9075867579849564,-3.604364401207048 -746,28.0,29.0,-0.9120532070322764,1.7233585608492326 -746,29.0,26.0,-0.6874559028276572,1.293971494797717 -746,29.0,28.0,-0.9120532070322764,1.7233585608492326 -746,29.0,29.0,1.5995091098599337,-3.0173300556469496 -747,0.0,0.0,6.765516048652632,-21.23160167089863 -747,0.0,1.0,-5.224646179885656,15.646726840803398 -747,0.0,2.0,-1.5408698687669766,5.631674830095234 -747,1.0,0.0,-5.224646179885656,15.646726840803398 -747,1.0,1.0,9.75228216552403,-30.648662892676068 -747,1.0,3.0,-1.7055303166990268,5.1973792282565086 -747,1.0,4.0,-1.1359607881738778,4.772479328281356 -747,1.0,5.0,-1.6861448807654689,5.116477495334806 -747,2.0,0.0,-1.5408698687669766,5.631674830095234 -747,2.0,2.0,9.736318911079088,-29.13794745915803 -747,2.0,3.0,-8.19544904231211,23.5308726290628 -747,3.0,1.0,-1.7055303166990268,5.1973792282565086 -747,3.0,2.0,-8.19544904231211,23.5308726290628 -747,3.0,3.0,16.314103089185693,-55.509410535254254 -747,3.0,5.0,-6.413123730174556,22.31120356548123 -747,3.0,11.0,0.0,4.191255364806866 -747,4.0,1.0,-1.1359607881738778,4.772479328281356 -747,4.0,4.0,4.089980824135861,-12.190647245055052 -747,4.0,6.0,-2.954020035961983,7.449267916773697 -747,5.0,1.0,-1.6861448807654689,5.116477495334806 -747,5.0,3.0,-6.413123730174556,22.31120356548123 -747,5.0,5.0,22.341631269034565,-82.8291478657789 -747,5.0,6.0,-3.590210423980992,11.02611441072814 -747,5.0,7.0,-6.289308176100628,22.0125786163522 -747,5.0,8.0,0.0,4.915840805411357 -747,5.0,9.0,0.0,1.8561002591115965 -747,5.0,27.0,-4.362844058012917,15.463571542897856 -747,6.0,4.0,-2.954020035961983,7.449267916773697 -747,6.0,5.0,-3.590210423980992,11.02611441072814 -747,6.0,6.0,6.544230459942975,-18.45668232750184 -747,7.0,5.0,-6.289308176100628,22.0125786163522 -747,7.0,7.0,7.733287237496075,-26.527493274828448 -747,7.0,27.0,-1.4439790613954469,4.540814658476248 -747,8.0,5.0,0.0,4.915840805411357 -747,8.0,8.0,0.0,-18.706293706293707 -747,8.0,9.0,0.0,9.090909090909092 -747,8.0,10.0,0.0,4.807692307692308 -747,9.0,5.0,0.0,1.8561002591115965 -747,9.0,8.0,0.0,9.090909090909092 -747,9.0,9.0,13.462042814524237,-41.3837606675224 -747,9.0,16.0,-3.956039125715353,10.317447719844054 -747,9.0,19.0,-1.7848303152666305,3.98535828943083 -747,9.0,20.0,-5.101853820159654,10.98071411292983 -747,9.0,21.0,-2.619319553382597,5.400770303329455 -747,10.0,8.0,0.0,4.807692307692308 -747,10.0,10.0,0.0,-4.807692307692308 -747,11.0,3.0,0.0,4.191255364806866 -747,11.0,11.0,6.573961583776156,-24.424167659260668 -747,11.0,12.0,0.0,7.142857142857143 -747,11.0,13.0,-1.5265676088395577,3.1734252729654173 -747,11.0,14.0,-3.0953961826564296,6.097275864326261 -747,11.0,15.0,-1.9519977922801688,4.104359379111847 -747,12.0,11.0,0.0,7.142857142857143 -747,12.0,12.0,0.0,-7.142857142857143 -747,13.0,11.0,-1.5265676088395577,3.1734252729654173 -747,13.0,13.0,4.01751987283902,-5.424299332335067 -747,13.0,14.0,-2.4909522639994623,2.250874059369649 -747,14.0,11.0,-3.0953961826564296,6.097275864326261 -747,14.0,13.0,-2.4909522639994623,2.250874059369649 -747,14.0,14.0,9.365498545964757,-16.01163373210796 -747,14.0,17.0,-1.8108011504072024,3.687418931630696 -747,14.0,22.0,-1.9683489489016612,3.976064876781356 -747,15.0,11.0,-1.9519977922801688,4.104359379111847 -747,15.0,15.0,3.271064728633931,-8.94513365126506 -747,15.0,16.0,-1.3190669363537617,4.8407742721532125 -747,16.0,9.0,-3.956039125715353,10.317447719844054 -747,16.0,15.0,-1.3190669363537617,4.8407742721532125 -747,16.0,16.0,5.275106062069114,-15.158221991997266 -747,17.0,14.0,-1.8108011504072024,3.687418931630696 -747,17.0,17.0,4.886487584415919,-9.906177730909668 -747,17.0,18.0,-3.0756864340087167,6.218758799278971 -747,18.0,17.0,-3.0756864340087167,6.218758799278971 -747,18.0,18.0,8.958039375185187,-17.98346468163191 -747,18.0,19.0,-5.88235294117647,11.76470588235294 -747,19.0,9.0,-1.7848303152666305,3.98535828943083 -747,19.0,18.0,-5.88235294117647,11.76470588235294 -747,19.0,19.0,7.6671832564431,-15.75006417178377 -747,20.0,9.0,-5.101853820159654,10.98071411292983 -747,20.0,20.0,21.876495189895888,-45.10843276170355 -747,20.0,21.0,-16.774641369736234,34.127718648773715 -747,21.0,9.0,-2.619319553382597,5.400770303329455 -747,21.0,20.0,-16.774641369736234,34.127718648773715 -747,21.0,21.0,21.93449907537439,-43.48289181517921 -747,21.0,23.0,-2.5405381522555563,3.95440286307604 -747,22.0,14.0,-1.9683489489016612,3.976064876781356 -747,22.0,22.0,3.429754555384988,-6.965303617315433 -747,22.0,23.0,-1.4614056064833263,2.989238740534077 -747,23.0,21.0,-2.5405381522555563,3.95440286307604 -747,23.0,22.0,-1.4614056064833263,2.989238740534077 -747,23.0,23.0,5.311836702613133,-9.188263657315172 -747,23.0,24.0,-1.3098929438742493,2.287622053705056 -747,24.0,23.0,-1.3098929438742493,2.287622053705056 -747,24.0,24.0,4.495715080321987,-7.864978761969621 -747,24.0,25.0,-1.2165301194494855,1.8171440463475024 -747,24.0,26.0,-1.9692920169982515,3.760212661917064 -747,25.0,24.0,-1.2165301194494855,1.8171440463475024 -747,25.0,25.0,1.2165301194494855,-1.8171440463475024 -747,26.0,24.0,-1.9692920169982515,3.760212661917064 -747,26.0,26.0,3.652281470778589,-9.46044252232512 -747,26.0,27.0,0.0,2.608731947574922 -747,26.0,28.0,-0.99553355095268,1.881005840357816 -747,26.0,29.0,-0.6874559028276572,1.293971494797717 -747,27.0,5.0,-4.362844058012917,15.463571542897856 -747,27.0,7.0,-1.4439790613954469,4.540814658476248 -747,27.0,26.0,0.0,2.608731947574922 -747,27.0,27.0,5.806823119408364,-22.67145722159613 -747,28.0,26.0,-0.99553355095268,1.881005840357816 -747,28.0,28.0,1.9075867579849564,-3.604364401207048 -747,28.0,29.0,-0.9120532070322764,1.7233585608492326 -747,29.0,26.0,-0.6874559028276572,1.293971494797717 -747,29.0,28.0,-0.9120532070322764,1.7233585608492326 -747,29.0,29.0,1.5995091098599337,-3.0173300556469496 -748,0.0,0.0,6.765516048652632,-21.23160167089863 -748,0.0,1.0,-5.224646179885656,15.646726840803398 -748,0.0,2.0,-1.5408698687669766,5.631674830095234 -748,1.0,0.0,-5.224646179885656,15.646726840803398 -748,1.0,1.0,9.75228216552403,-30.648662892676068 -748,1.0,3.0,-1.7055303166990268,5.1973792282565086 -748,1.0,4.0,-1.1359607881738778,4.772479328281356 -748,1.0,5.0,-1.6861448807654689,5.116477495334806 -748,2.0,0.0,-1.5408698687669766,5.631674830095234 -748,2.0,2.0,9.736318911079088,-29.13794745915803 -748,2.0,3.0,-8.19544904231211,23.5308726290628 -748,3.0,1.0,-1.7055303166990268,5.1973792282565086 -748,3.0,2.0,-8.19544904231211,23.5308726290628 -748,3.0,3.0,16.314103089185693,-55.509410535254254 -748,3.0,5.0,-6.413123730174556,22.31120356548123 -748,3.0,11.0,0.0,4.191255364806866 -748,4.0,1.0,-1.1359607881738778,4.772479328281356 -748,4.0,4.0,4.089980824135861,-12.190647245055052 -748,4.0,6.0,-2.954020035961983,7.449267916773697 -748,5.0,1.0,-1.6861448807654689,5.116477495334806 -748,5.0,3.0,-6.413123730174556,22.31120356548123 -748,5.0,5.0,22.341631269034565,-82.8291478657789 -748,5.0,6.0,-3.590210423980992,11.02611441072814 -748,5.0,7.0,-6.289308176100628,22.0125786163522 -748,5.0,8.0,0.0,4.915840805411357 -748,5.0,9.0,0.0,1.8561002591115965 -748,5.0,27.0,-4.362844058012917,15.463571542897856 -748,6.0,4.0,-2.954020035961983,7.449267916773697 -748,6.0,5.0,-3.590210423980992,11.02611441072814 -748,6.0,6.0,6.544230459942975,-18.45668232750184 -748,7.0,5.0,-6.289308176100628,22.0125786163522 -748,7.0,7.0,7.733287237496075,-26.527493274828448 -748,7.0,27.0,-1.4439790613954469,4.540814658476248 -748,8.0,5.0,0.0,4.915840805411357 -748,8.0,8.0,0.0,-18.706293706293707 -748,8.0,9.0,0.0,9.090909090909092 -748,8.0,10.0,0.0,4.807692307692308 -748,9.0,5.0,0.0,1.8561002591115965 -748,9.0,8.0,0.0,9.090909090909092 -748,9.0,9.0,8.36018899436458,-30.40304655459257 -748,9.0,16.0,-3.956039125715353,10.317447719844054 -748,9.0,19.0,-1.7848303152666305,3.98535828943083 -748,9.0,21.0,-2.619319553382597,5.400770303329455 -748,10.0,8.0,0.0,4.807692307692308 -748,10.0,10.0,0.0,-4.807692307692308 -748,11.0,3.0,0.0,4.191255364806866 -748,11.0,11.0,5.047393974936599,-21.25074238629525 -748,11.0,12.0,0.0,7.142857142857143 -748,11.0,14.0,-3.0953961826564296,6.097275864326261 -748,11.0,15.0,-1.9519977922801688,4.104359379111847 -748,12.0,11.0,0.0,7.142857142857143 -748,12.0,12.0,0.0,-7.142857142857143 -748,13.0,13.0,2.4909522639994623,-2.250874059369649 -748,13.0,14.0,-2.4909522639994623,2.250874059369649 -748,14.0,11.0,-3.0953961826564296,6.097275864326261 -748,14.0,13.0,-2.4909522639994623,2.250874059369649 -748,14.0,14.0,7.554697395557554,-12.324214800477266 -748,14.0,22.0,-1.9683489489016612,3.976064876781356 -748,15.0,11.0,-1.9519977922801688,4.104359379111847 -748,15.0,15.0,3.271064728633931,-8.94513365126506 -748,15.0,16.0,-1.3190669363537617,4.8407742721532125 -748,16.0,9.0,-3.956039125715353,10.317447719844054 -748,16.0,15.0,-1.3190669363537617,4.8407742721532125 -748,16.0,16.0,5.275106062069114,-15.158221991997266 -748,17.0,17.0,3.0756864340087167,-6.218758799278971 -748,17.0,18.0,-3.0756864340087167,6.218758799278971 -748,18.0,17.0,-3.0756864340087167,6.218758799278971 -748,18.0,18.0,8.958039375185187,-17.98346468163191 -748,18.0,19.0,-5.88235294117647,11.76470588235294 -748,19.0,9.0,-1.7848303152666305,3.98535828943083 -748,19.0,18.0,-5.88235294117647,11.76470588235294 -748,19.0,19.0,7.6671832564431,-15.75006417178377 -748,20.0,20.0,16.774641369736234,-34.127718648773715 -748,20.0,21.0,-16.774641369736234,34.127718648773715 -748,21.0,9.0,-2.619319553382597,5.400770303329455 -748,21.0,20.0,-16.774641369736234,34.127718648773715 -748,21.0,21.0,21.93449907537439,-43.48289181517921 -748,21.0,23.0,-2.5405381522555563,3.95440286307604 -748,22.0,14.0,-1.9683489489016612,3.976064876781356 -748,22.0,22.0,3.429754555384988,-6.965303617315433 -748,22.0,23.0,-1.4614056064833263,2.989238740534077 -748,23.0,21.0,-2.5405381522555563,3.95440286307604 -748,23.0,22.0,-1.4614056064833263,2.989238740534077 -748,23.0,23.0,4.001943758738883,-6.900641603610116 -748,24.0,24.0,3.185822136447737,-5.577356708264566 -748,24.0,25.0,-1.2165301194494855,1.8171440463475024 -748,24.0,26.0,-1.9692920169982515,3.760212661917064 -748,25.0,24.0,-1.2165301194494855,1.8171440463475024 -748,25.0,25.0,1.2165301194494855,-1.8171440463475024 -748,26.0,24.0,-1.9692920169982515,3.760212661917064 -748,26.0,26.0,3.652281470778589,-9.46044252232512 -748,26.0,27.0,0.0,2.608731947574922 -748,26.0,28.0,-0.99553355095268,1.881005840357816 -748,26.0,29.0,-0.6874559028276572,1.293971494797717 -748,27.0,5.0,-4.362844058012917,15.463571542897856 -748,27.0,7.0,-1.4439790613954469,4.540814658476248 -748,27.0,26.0,0.0,2.608731947574922 -748,27.0,27.0,5.806823119408364,-22.67145722159613 -748,28.0,26.0,-0.99553355095268,1.881005840357816 -748,28.0,28.0,1.9075867579849564,-3.604364401207048 -748,28.0,29.0,-0.9120532070322764,1.7233585608492326 -748,29.0,26.0,-0.6874559028276572,1.293971494797717 -748,29.0,28.0,-0.9120532070322764,1.7233585608492326 -748,29.0,29.0,1.5995091098599337,-3.0173300556469496 -749,0.0,0.0,6.765516048652632,-21.23160167089863 -749,0.0,1.0,-5.224646179885656,15.646726840803398 -749,0.0,2.0,-1.5408698687669766,5.631674830095234 -749,1.0,0.0,-5.224646179885656,15.646726840803398 -749,1.0,1.0,9.75228216552403,-30.648662892676068 -749,1.0,3.0,-1.7055303166990268,5.1973792282565086 -749,1.0,4.0,-1.1359607881738778,4.772479328281356 -749,1.0,5.0,-1.6861448807654689,5.116477495334806 -749,2.0,0.0,-1.5408698687669766,5.631674830095234 -749,2.0,2.0,9.736318911079088,-29.13794745915803 -749,2.0,3.0,-8.19544904231211,23.5308726290628 -749,3.0,1.0,-1.7055303166990268,5.1973792282565086 -749,3.0,2.0,-8.19544904231211,23.5308726290628 -749,3.0,3.0,16.314103089185693,-55.509410535254254 -749,3.0,5.0,-6.413123730174556,22.31120356548123 -749,3.0,11.0,0.0,4.191255364806866 -749,4.0,1.0,-1.1359607881738778,4.772479328281356 -749,4.0,4.0,4.089980824135861,-12.190647245055052 -749,4.0,6.0,-2.954020035961983,7.449267916773697 -749,5.0,1.0,-1.6861448807654689,5.116477495334806 -749,5.0,3.0,-6.413123730174556,22.31120356548123 -749,5.0,5.0,22.341631269034565,-82.8291478657789 -749,5.0,6.0,-3.590210423980992,11.02611441072814 -749,5.0,7.0,-6.289308176100628,22.0125786163522 -749,5.0,8.0,0.0,4.915840805411357 -749,5.0,9.0,0.0,1.8561002591115965 -749,5.0,27.0,-4.362844058012917,15.463571542897856 -749,6.0,4.0,-2.954020035961983,7.449267916773697 -749,6.0,5.0,-3.590210423980992,11.02611441072814 -749,6.0,6.0,6.544230459942975,-18.45668232750184 -749,7.0,5.0,-6.289308176100628,22.0125786163522 -749,7.0,7.0,7.733287237496075,-26.527493274828448 -749,7.0,27.0,-1.4439790613954469,4.540814658476248 -749,8.0,5.0,0.0,4.915840805411357 -749,8.0,8.0,0.0,-18.706293706293707 -749,8.0,9.0,0.0,9.090909090909092 -749,8.0,10.0,0.0,4.807692307692308 -749,9.0,5.0,0.0,1.8561002591115965 -749,9.0,8.0,0.0,9.090909090909092 -749,9.0,9.0,13.462042814524237,-41.3837606675224 -749,9.0,16.0,-3.956039125715353,10.317447719844054 -749,9.0,19.0,-1.7848303152666305,3.98535828943083 -749,9.0,20.0,-5.101853820159654,10.98071411292983 -749,9.0,21.0,-2.619319553382597,5.400770303329455 -749,10.0,8.0,0.0,4.807692307692308 -749,10.0,10.0,0.0,-4.807692307692308 -749,11.0,3.0,0.0,4.191255364806866 -749,11.0,11.0,6.573961583776156,-24.424167659260668 -749,11.0,12.0,0.0,7.142857142857143 -749,11.0,13.0,-1.5265676088395577,3.1734252729654173 -749,11.0,14.0,-3.0953961826564296,6.097275864326261 -749,11.0,15.0,-1.9519977922801688,4.104359379111847 -749,12.0,11.0,0.0,7.142857142857143 -749,12.0,12.0,0.0,-7.142857142857143 -749,13.0,11.0,-1.5265676088395577,3.1734252729654173 -749,13.0,13.0,4.01751987283902,-5.424299332335067 -749,13.0,14.0,-2.4909522639994623,2.250874059369649 -749,14.0,11.0,-3.0953961826564296,6.097275864326261 -749,14.0,13.0,-2.4909522639994623,2.250874059369649 -749,14.0,14.0,7.397149597063095,-12.035568855326606 -749,14.0,17.0,-1.8108011504072024,3.687418931630696 -749,15.0,11.0,-1.9519977922801688,4.104359379111847 -749,15.0,15.0,3.271064728633931,-8.94513365126506 -749,15.0,16.0,-1.3190669363537617,4.8407742721532125 -749,16.0,9.0,-3.956039125715353,10.317447719844054 -749,16.0,15.0,-1.3190669363537617,4.8407742721532125 -749,16.0,16.0,5.275106062069114,-15.158221991997266 -749,17.0,14.0,-1.8108011504072024,3.687418931630696 -749,17.0,17.0,4.886487584415919,-9.906177730909668 -749,17.0,18.0,-3.0756864340087167,6.218758799278971 -749,18.0,17.0,-3.0756864340087167,6.218758799278971 -749,18.0,18.0,8.958039375185187,-17.98346468163191 -749,18.0,19.0,-5.88235294117647,11.76470588235294 -749,19.0,9.0,-1.7848303152666305,3.98535828943083 -749,19.0,18.0,-5.88235294117647,11.76470588235294 -749,19.0,19.0,7.6671832564431,-15.75006417178377 -749,20.0,9.0,-5.101853820159654,10.98071411292983 -749,20.0,20.0,21.876495189895888,-45.10843276170355 -749,20.0,21.0,-16.774641369736234,34.127718648773715 -749,21.0,9.0,-2.619319553382597,5.400770303329455 -749,21.0,20.0,-16.774641369736234,34.127718648773715 -749,21.0,21.0,21.93449907537439,-43.48289181517921 -749,21.0,23.0,-2.5405381522555563,3.95440286307604 -749,22.0,22.0,1.4614056064833263,-2.989238740534077 -749,22.0,23.0,-1.4614056064833263,2.989238740534077 -749,23.0,21.0,-2.5405381522555563,3.95440286307604 -749,23.0,22.0,-1.4614056064833263,2.989238740534077 -749,23.0,23.0,5.311836702613133,-9.188263657315172 -749,23.0,24.0,-1.3098929438742493,2.287622053705056 -749,24.0,23.0,-1.3098929438742493,2.287622053705056 -749,24.0,24.0,4.495715080321987,-7.864978761969621 -749,24.0,25.0,-1.2165301194494855,1.8171440463475024 -749,24.0,26.0,-1.9692920169982515,3.760212661917064 -749,25.0,24.0,-1.2165301194494855,1.8171440463475024 -749,25.0,25.0,1.2165301194494855,-1.8171440463475024 -749,26.0,24.0,-1.9692920169982515,3.760212661917064 -749,26.0,26.0,3.652281470778589,-9.46044252232512 -749,26.0,27.0,0.0,2.608731947574922 -749,26.0,28.0,-0.99553355095268,1.881005840357816 -749,26.0,29.0,-0.6874559028276572,1.293971494797717 -749,27.0,5.0,-4.362844058012917,15.463571542897856 -749,27.0,7.0,-1.4439790613954469,4.540814658476248 -749,27.0,26.0,0.0,2.608731947574922 -749,27.0,27.0,5.806823119408364,-22.67145722159613 -749,28.0,26.0,-0.99553355095268,1.881005840357816 -749,28.0,28.0,1.9075867579849564,-3.604364401207048 -749,28.0,29.0,-0.9120532070322764,1.7233585608492326 -749,29.0,26.0,-0.6874559028276572,1.293971494797717 -749,29.0,28.0,-0.9120532070322764,1.7233585608492326 -749,29.0,29.0,1.5995091098599337,-3.0173300556469496 -750,0.0,0.0,6.765516048652632,-21.23160167089863 -750,0.0,1.0,-5.224646179885656,15.646726840803398 -750,0.0,2.0,-1.5408698687669766,5.631674830095234 -750,1.0,0.0,-5.224646179885656,15.646726840803398 -750,1.0,1.0,9.75228216552403,-30.648662892676068 -750,1.0,3.0,-1.7055303166990268,5.1973792282565086 -750,1.0,4.0,-1.1359607881738778,4.772479328281356 -750,1.0,5.0,-1.6861448807654689,5.116477495334806 -750,2.0,0.0,-1.5408698687669766,5.631674830095234 -750,2.0,2.0,1.5408698687669766,-5.611274830095233 -750,3.0,1.0,-1.7055303166990268,5.1973792282565086 -750,3.0,3.0,8.118654046873583,-31.982737906191456 -750,3.0,5.0,-6.413123730174556,22.31120356548123 -750,3.0,11.0,0.0,4.191255364806866 -750,4.0,1.0,-1.1359607881738778,4.772479328281356 -750,4.0,4.0,4.089980824135861,-12.190647245055052 -750,4.0,6.0,-2.954020035961983,7.449267916773697 -750,5.0,1.0,-1.6861448807654689,5.116477495334806 -750,5.0,3.0,-6.413123730174556,22.31120356548123 -750,5.0,5.0,22.341631269034565,-82.8291478657789 -750,5.0,6.0,-3.590210423980992,11.02611441072814 -750,5.0,7.0,-6.289308176100628,22.0125786163522 -750,5.0,8.0,0.0,4.915840805411357 -750,5.0,9.0,0.0,1.8561002591115965 -750,5.0,27.0,-4.362844058012917,15.463571542897856 -750,6.0,4.0,-2.954020035961983,7.449267916773697 -750,6.0,5.0,-3.590210423980992,11.02611441072814 -750,6.0,6.0,6.544230459942975,-18.45668232750184 -750,7.0,5.0,-6.289308176100628,22.0125786163522 -750,7.0,7.0,6.289308176100628,-22.0080786163522 -750,8.0,5.0,0.0,4.915840805411357 -750,8.0,8.0,0.0,-9.615384615384617 -750,8.0,10.0,0.0,4.807692307692308 -750,9.0,5.0,0.0,1.8561002591115965 -750,9.0,9.0,13.462042814524237,-32.29285157661331 -750,9.0,16.0,-3.956039125715353,10.317447719844054 -750,9.0,19.0,-1.7848303152666305,3.98535828943083 -750,9.0,20.0,-5.101853820159654,10.98071411292983 -750,9.0,21.0,-2.619319553382597,5.400770303329455 -750,10.0,8.0,0.0,4.807692307692308 -750,10.0,10.0,0.0,-4.807692307692308 -750,11.0,3.0,0.0,4.191255364806866 -750,11.0,11.0,3.478565401119727,-18.326891794934408 -750,11.0,12.0,0.0,7.142857142857143 -750,11.0,13.0,-1.5265676088395577,3.1734252729654173 -750,11.0,15.0,-1.9519977922801688,4.104359379111847 -750,12.0,11.0,0.0,7.142857142857143 -750,12.0,12.0,0.0,-7.142857142857143 -750,13.0,11.0,-1.5265676088395577,3.1734252729654173 -750,13.0,13.0,4.01751987283902,-5.424299332335067 -750,13.0,14.0,-2.4909522639994623,2.250874059369649 -750,14.0,13.0,-2.4909522639994623,2.250874059369649 -750,14.0,14.0,6.270102363308326,-9.9143578677817 -750,14.0,17.0,-1.8108011504072024,3.687418931630696 -750,14.0,22.0,-1.9683489489016612,3.976064876781356 -750,15.0,11.0,-1.9519977922801688,4.104359379111847 -750,15.0,15.0,3.271064728633931,-8.94513365126506 -750,15.0,16.0,-1.3190669363537617,4.8407742721532125 -750,16.0,9.0,-3.956039125715353,10.317447719844054 -750,16.0,15.0,-1.3190669363537617,4.8407742721532125 -750,16.0,16.0,5.275106062069114,-15.158221991997266 -750,17.0,14.0,-1.8108011504072024,3.687418931630696 -750,17.0,17.0,4.886487584415919,-9.906177730909668 -750,17.0,18.0,-3.0756864340087167,6.218758799278971 -750,18.0,17.0,-3.0756864340087167,6.218758799278971 -750,18.0,18.0,8.958039375185187,-17.98346468163191 -750,18.0,19.0,-5.88235294117647,11.76470588235294 -750,19.0,9.0,-1.7848303152666305,3.98535828943083 -750,19.0,18.0,-5.88235294117647,11.76470588235294 -750,19.0,19.0,7.6671832564431,-15.75006417178377 -750,20.0,9.0,-5.101853820159654,10.98071411292983 -750,20.0,20.0,21.876495189895888,-45.10843276170355 -750,20.0,21.0,-16.774641369736234,34.127718648773715 -750,21.0,9.0,-2.619319553382597,5.400770303329455 -750,21.0,20.0,-16.774641369736234,34.127718648773715 -750,21.0,21.0,21.93449907537439,-43.48289181517921 -750,21.0,23.0,-2.5405381522555563,3.95440286307604 -750,22.0,14.0,-1.9683489489016612,3.976064876781356 -750,22.0,22.0,3.429754555384988,-6.965303617315433 -750,22.0,23.0,-1.4614056064833263,2.989238740534077 -750,23.0,21.0,-2.5405381522555563,3.95440286307604 -750,23.0,22.0,-1.4614056064833263,2.989238740534077 -750,23.0,23.0,5.311836702613133,-9.188263657315172 -750,23.0,24.0,-1.3098929438742493,2.287622053705056 -750,24.0,23.0,-1.3098929438742493,2.287622053705056 -750,24.0,24.0,4.495715080321987,-7.864978761969621 -750,24.0,25.0,-1.2165301194494855,1.8171440463475024 -750,24.0,26.0,-1.9692920169982515,3.760212661917064 -750,25.0,24.0,-1.2165301194494855,1.8171440463475024 -750,25.0,25.0,1.2165301194494855,-1.8171440463475024 -750,26.0,24.0,-1.9692920169982515,3.760212661917064 -750,26.0,26.0,3.652281470778589,-9.46044252232512 -750,26.0,27.0,0.0,2.608731947574922 -750,26.0,28.0,-0.99553355095268,1.881005840357816 -750,26.0,29.0,-0.6874559028276572,1.293971494797717 -750,27.0,5.0,-4.362844058012917,15.463571542897856 -750,27.0,26.0,0.0,2.608731947574922 -750,27.0,27.0,4.362844058012917,-18.15204256311988 -750,28.0,26.0,-0.99553355095268,1.881005840357816 -750,28.0,28.0,1.9075867579849564,-3.604364401207048 -750,28.0,29.0,-0.9120532070322764,1.7233585608492326 -750,29.0,26.0,-0.6874559028276572,1.293971494797717 -750,29.0,28.0,-0.9120532070322764,1.7233585608492326 -750,29.0,29.0,1.5995091098599337,-3.0173300556469496 -751,0.0,0.0,6.765516048652632,-21.23160167089863 -751,0.0,1.0,-5.224646179885656,15.646726840803398 -751,0.0,2.0,-1.5408698687669766,5.631674830095234 -751,1.0,0.0,-5.224646179885656,15.646726840803398 -751,1.0,1.0,9.75228216552403,-30.648662892676068 -751,1.0,3.0,-1.7055303166990268,5.1973792282565086 -751,1.0,4.0,-1.1359607881738778,4.772479328281356 -751,1.0,5.0,-1.6861448807654689,5.116477495334806 -751,2.0,0.0,-1.5408698687669766,5.631674830095234 -751,2.0,2.0,9.736318911079088,-29.13794745915803 -751,2.0,3.0,-8.19544904231211,23.5308726290628 -751,3.0,1.0,-1.7055303166990268,5.1973792282565086 -751,3.0,2.0,-8.19544904231211,23.5308726290628 -751,3.0,3.0,16.314103089185693,-55.509410535254254 -751,3.0,5.0,-6.413123730174556,22.31120356548123 -751,3.0,11.0,0.0,4.191255364806866 -751,4.0,1.0,-1.1359607881738778,4.772479328281356 -751,4.0,4.0,4.089980824135861,-12.190647245055052 -751,4.0,6.0,-2.954020035961983,7.449267916773697 -751,5.0,1.0,-1.6861448807654689,5.116477495334806 -751,5.0,3.0,-6.413123730174556,22.31120356548123 -751,5.0,5.0,22.341631269034565,-82.8291478657789 -751,5.0,6.0,-3.590210423980992,11.02611441072814 -751,5.0,7.0,-6.289308176100628,22.0125786163522 -751,5.0,8.0,0.0,4.915840805411357 -751,5.0,9.0,0.0,1.8561002591115965 -751,5.0,27.0,-4.362844058012917,15.463571542897856 -751,6.0,4.0,-2.954020035961983,7.449267916773697 -751,6.0,5.0,-3.590210423980992,11.02611441072814 -751,6.0,6.0,6.544230459942975,-18.45668232750184 -751,7.0,5.0,-6.289308176100628,22.0125786163522 -751,7.0,7.0,7.733287237496075,-26.527493274828448 -751,7.0,27.0,-1.4439790613954469,4.540814658476248 -751,8.0,5.0,0.0,4.915840805411357 -751,8.0,8.0,0.0,-18.706293706293707 -751,8.0,9.0,0.0,9.090909090909092 -751,8.0,10.0,0.0,4.807692307692308 -751,9.0,5.0,0.0,1.8561002591115965 -751,9.0,8.0,0.0,9.090909090909092 -751,9.0,9.0,13.462042814524237,-41.3837606675224 -751,9.0,16.0,-3.956039125715353,10.317447719844054 -751,9.0,19.0,-1.7848303152666305,3.98535828943083 -751,9.0,20.0,-5.101853820159654,10.98071411292983 -751,9.0,21.0,-2.619319553382597,5.400770303329455 -751,10.0,8.0,0.0,4.807692307692308 -751,10.0,10.0,0.0,-4.807692307692308 -751,11.0,3.0,0.0,4.191255364806866 -751,11.0,11.0,6.573961583776156,-24.424167659260668 -751,11.0,12.0,0.0,7.142857142857143 -751,11.0,13.0,-1.5265676088395577,3.1734252729654173 -751,11.0,14.0,-3.0953961826564296,6.097275864326261 -751,11.0,15.0,-1.9519977922801688,4.104359379111847 -751,12.0,11.0,0.0,7.142857142857143 -751,12.0,12.0,0.0,-7.142857142857143 -751,13.0,11.0,-1.5265676088395577,3.1734252729654173 -751,13.0,13.0,4.01751987283902,-5.424299332335067 -751,13.0,14.0,-2.4909522639994623,2.250874059369649 -751,14.0,11.0,-3.0953961826564296,6.097275864326261 -751,14.0,13.0,-2.4909522639994623,2.250874059369649 -751,14.0,14.0,9.365498545964757,-16.01163373210796 -751,14.0,17.0,-1.8108011504072024,3.687418931630696 -751,14.0,22.0,-1.9683489489016612,3.976064876781356 -751,15.0,11.0,-1.9519977922801688,4.104359379111847 -751,15.0,15.0,3.271064728633931,-8.94513365126506 -751,15.0,16.0,-1.3190669363537617,4.8407742721532125 -751,16.0,9.0,-3.956039125715353,10.317447719844054 -751,16.0,15.0,-1.3190669363537617,4.8407742721532125 -751,16.0,16.0,5.275106062069114,-15.158221991997266 -751,17.0,14.0,-1.8108011504072024,3.687418931630696 -751,17.0,17.0,4.886487584415919,-9.906177730909668 -751,17.0,18.0,-3.0756864340087167,6.218758799278971 -751,18.0,17.0,-3.0756864340087167,6.218758799278971 -751,18.0,18.0,8.958039375185187,-17.98346468163191 -751,18.0,19.0,-5.88235294117647,11.76470588235294 -751,19.0,9.0,-1.7848303152666305,3.98535828943083 -751,19.0,18.0,-5.88235294117647,11.76470588235294 -751,19.0,19.0,7.6671832564431,-15.75006417178377 -751,20.0,9.0,-5.101853820159654,10.98071411292983 -751,20.0,20.0,21.876495189895888,-45.10843276170355 -751,20.0,21.0,-16.774641369736234,34.127718648773715 -751,21.0,9.0,-2.619319553382597,5.400770303329455 -751,21.0,20.0,-16.774641369736234,34.127718648773715 -751,21.0,21.0,21.93449907537439,-43.48289181517921 -751,21.0,23.0,-2.5405381522555563,3.95440286307604 -751,22.0,14.0,-1.9683489489016612,3.976064876781356 -751,22.0,22.0,3.429754555384988,-6.965303617315433 -751,22.0,23.0,-1.4614056064833263,2.989238740534077 -751,23.0,21.0,-2.5405381522555563,3.95440286307604 -751,23.0,22.0,-1.4614056064833263,2.989238740534077 -751,23.0,23.0,5.311836702613133,-9.188263657315172 -751,23.0,24.0,-1.3098929438742493,2.287622053705056 -751,24.0,23.0,-1.3098929438742493,2.287622053705056 -751,24.0,24.0,4.495715080321987,-7.864978761969621 -751,24.0,25.0,-1.2165301194494855,1.8171440463475024 -751,24.0,26.0,-1.9692920169982515,3.760212661917064 -751,25.0,24.0,-1.2165301194494855,1.8171440463475024 -751,25.0,25.0,1.2165301194494855,-1.8171440463475024 -751,26.0,24.0,-1.9692920169982515,3.760212661917064 -751,26.0,26.0,3.652281470778589,-9.46044252232512 -751,26.0,27.0,0.0,2.608731947574922 -751,26.0,28.0,-0.99553355095268,1.881005840357816 -751,26.0,29.0,-0.6874559028276572,1.293971494797717 -751,27.0,5.0,-4.362844058012917,15.463571542897856 -751,27.0,7.0,-1.4439790613954469,4.540814658476248 -751,27.0,26.0,0.0,2.608731947574922 -751,27.0,27.0,5.806823119408364,-22.67145722159613 -751,28.0,26.0,-0.99553355095268,1.881005840357816 -751,28.0,28.0,1.9075867579849564,-3.604364401207048 -751,28.0,29.0,-0.9120532070322764,1.7233585608492326 -751,29.0,26.0,-0.6874559028276572,1.293971494797717 -751,29.0,28.0,-0.9120532070322764,1.7233585608492326 -751,29.0,29.0,1.5995091098599337,-3.0173300556469496 -752,0.0,0.0,6.765516048652632,-21.23160167089863 -752,0.0,1.0,-5.224646179885656,15.646726840803398 -752,0.0,2.0,-1.5408698687669766,5.631674830095234 -752,1.0,0.0,-5.224646179885656,15.646726840803398 -752,1.0,1.0,9.75228216552403,-30.648662892676068 -752,1.0,3.0,-1.7055303166990268,5.1973792282565086 -752,1.0,4.0,-1.1359607881738778,4.772479328281356 -752,1.0,5.0,-1.6861448807654689,5.116477495334806 -752,2.0,0.0,-1.5408698687669766,5.631674830095234 -752,2.0,2.0,9.736318911079088,-29.13794745915803 -752,2.0,3.0,-8.19544904231211,23.5308726290628 -752,3.0,1.0,-1.7055303166990268,5.1973792282565086 -752,3.0,2.0,-8.19544904231211,23.5308726290628 -752,3.0,3.0,16.314103089185693,-55.509410535254254 -752,3.0,5.0,-6.413123730174556,22.31120356548123 -752,3.0,11.0,0.0,4.191255364806866 -752,4.0,1.0,-1.1359607881738778,4.772479328281356 -752,4.0,4.0,4.089980824135861,-12.190647245055052 -752,4.0,6.0,-2.954020035961983,7.449267916773697 -752,5.0,1.0,-1.6861448807654689,5.116477495334806 -752,5.0,3.0,-6.413123730174556,22.31120356548123 -752,5.0,5.0,22.341631269034565,-80.91366772221689 -752,5.0,6.0,-3.590210423980992,11.02611441072814 -752,5.0,7.0,-6.289308176100628,22.0125786163522 -752,5.0,8.0,0.0,4.915840805411357 -752,5.0,27.0,-4.362844058012917,15.463571542897856 -752,6.0,4.0,-2.954020035961983,7.449267916773697 -752,6.0,5.0,-3.590210423980992,11.02611441072814 -752,6.0,6.0,6.544230459942975,-18.45668232750184 -752,7.0,5.0,-6.289308176100628,22.0125786163522 -752,7.0,7.0,7.733287237496075,-26.527493274828448 -752,7.0,27.0,-1.4439790613954469,4.540814658476248 -752,8.0,5.0,0.0,4.915840805411357 -752,8.0,8.0,0.0,-18.706293706293707 -752,8.0,9.0,0.0,9.090909090909092 -752,8.0,10.0,0.0,4.807692307692308 -752,9.0,8.0,0.0,9.090909090909092 -752,9.0,9.0,11.677212499257603,-35.59984122701243 -752,9.0,16.0,-3.956039125715353,10.317447719844054 -752,9.0,20.0,-5.101853820159654,10.98071411292983 -752,9.0,21.0,-2.619319553382597,5.400770303329455 -752,10.0,8.0,0.0,4.807692307692308 -752,10.0,10.0,0.0,-4.807692307692308 -752,11.0,3.0,0.0,4.191255364806866 -752,11.0,11.0,6.573961583776156,-24.424167659260668 -752,11.0,12.0,0.0,7.142857142857143 -752,11.0,13.0,-1.5265676088395577,3.1734252729654173 -752,11.0,14.0,-3.0953961826564296,6.097275864326261 -752,11.0,15.0,-1.9519977922801688,4.104359379111847 -752,12.0,11.0,0.0,7.142857142857143 -752,12.0,12.0,0.0,-7.142857142857143 -752,13.0,11.0,-1.5265676088395577,3.1734252729654173 -752,13.0,13.0,4.01751987283902,-5.424299332335067 -752,13.0,14.0,-2.4909522639994623,2.250874059369649 -752,14.0,11.0,-3.0953961826564296,6.097275864326261 -752,14.0,13.0,-2.4909522639994623,2.250874059369649 -752,14.0,14.0,9.365498545964757,-16.01163373210796 -752,14.0,17.0,-1.8108011504072024,3.687418931630696 -752,14.0,22.0,-1.9683489489016612,3.976064876781356 -752,15.0,11.0,-1.9519977922801688,4.104359379111847 -752,15.0,15.0,3.271064728633931,-8.94513365126506 -752,15.0,16.0,-1.3190669363537617,4.8407742721532125 -752,16.0,9.0,-3.956039125715353,10.317447719844054 -752,16.0,15.0,-1.3190669363537617,4.8407742721532125 -752,16.0,16.0,5.275106062069114,-15.158221991997266 -752,17.0,14.0,-1.8108011504072024,3.687418931630696 -752,17.0,17.0,4.886487584415919,-9.906177730909668 -752,17.0,18.0,-3.0756864340087167,6.218758799278971 -752,18.0,17.0,-3.0756864340087167,6.218758799278971 -752,18.0,18.0,8.958039375185187,-17.98346468163191 -752,18.0,19.0,-5.88235294117647,11.76470588235294 -752,19.0,18.0,-5.88235294117647,11.76470588235294 -752,19.0,19.0,5.88235294117647,-11.76470588235294 -752,20.0,9.0,-5.101853820159654,10.98071411292983 -752,20.0,20.0,5.101853820159654,-10.98071411292983 -752,21.0,9.0,-2.619319553382597,5.400770303329455 -752,21.0,21.0,5.159857705638154,-9.355173166405494 -752,21.0,23.0,-2.5405381522555563,3.95440286307604 -752,22.0,14.0,-1.9683489489016612,3.976064876781356 -752,22.0,22.0,3.429754555384988,-6.965303617315433 -752,22.0,23.0,-1.4614056064833263,2.989238740534077 -752,23.0,21.0,-2.5405381522555563,3.95440286307604 -752,23.0,22.0,-1.4614056064833263,2.989238740534077 -752,23.0,23.0,5.311836702613133,-9.188263657315172 -752,23.0,24.0,-1.3098929438742493,2.287622053705056 -752,24.0,23.0,-1.3098929438742493,2.287622053705056 -752,24.0,24.0,4.495715080321987,-7.864978761969621 -752,24.0,25.0,-1.2165301194494855,1.8171440463475024 -752,24.0,26.0,-1.9692920169982515,3.760212661917064 -752,25.0,24.0,-1.2165301194494855,1.8171440463475024 -752,25.0,25.0,1.2165301194494855,-1.8171440463475024 -752,26.0,24.0,-1.9692920169982515,3.760212661917064 -752,26.0,26.0,3.652281470778589,-9.46044252232512 -752,26.0,27.0,0.0,2.608731947574922 -752,26.0,28.0,-0.99553355095268,1.881005840357816 -752,26.0,29.0,-0.6874559028276572,1.293971494797717 -752,27.0,5.0,-4.362844058012917,15.463571542897856 -752,27.0,7.0,-1.4439790613954469,4.540814658476248 -752,27.0,26.0,0.0,2.608731947574922 -752,27.0,27.0,5.806823119408364,-22.67145722159613 -752,28.0,26.0,-0.99553355095268,1.881005840357816 -752,28.0,28.0,1.9075867579849564,-3.604364401207048 -752,28.0,29.0,-0.9120532070322764,1.7233585608492326 -752,29.0,26.0,-0.6874559028276572,1.293971494797717 -752,29.0,28.0,-0.9120532070322764,1.7233585608492326 -752,29.0,29.0,1.5995091098599337,-3.0173300556469496 -753,0.0,0.0,6.765516048652632,-21.23160167089863 -753,0.0,1.0,-5.224646179885656,15.646726840803398 -753,0.0,2.0,-1.5408698687669766,5.631674830095234 -753,1.0,0.0,-5.224646179885656,15.646726840803398 -753,1.0,1.0,9.75228216552403,-30.648662892676068 -753,1.0,3.0,-1.7055303166990268,5.1973792282565086 -753,1.0,4.0,-1.1359607881738778,4.772479328281356 -753,1.0,5.0,-1.6861448807654689,5.116477495334806 -753,2.0,0.0,-1.5408698687669766,5.631674830095234 -753,2.0,2.0,9.736318911079088,-29.13794745915803 -753,2.0,3.0,-8.19544904231211,23.5308726290628 -753,3.0,1.0,-1.7055303166990268,5.1973792282565086 -753,3.0,2.0,-8.19544904231211,23.5308726290628 -753,3.0,3.0,16.314103089185693,-55.509410535254254 -753,3.0,5.0,-6.413123730174556,22.31120356548123 -753,3.0,11.0,0.0,4.191255364806866 -753,4.0,1.0,-1.1359607881738778,4.772479328281356 -753,4.0,4.0,4.089980824135861,-12.190647245055052 -753,4.0,6.0,-2.954020035961983,7.449267916773697 -753,5.0,1.0,-1.6861448807654689,5.116477495334806 -753,5.0,3.0,-6.413123730174556,22.31120356548123 -753,5.0,5.0,22.341631269034565,-82.8291478657789 -753,5.0,6.0,-3.590210423980992,11.02611441072814 -753,5.0,7.0,-6.289308176100628,22.0125786163522 -753,5.0,8.0,0.0,4.915840805411357 -753,5.0,9.0,0.0,1.8561002591115965 -753,5.0,27.0,-4.362844058012917,15.463571542897856 -753,6.0,4.0,-2.954020035961983,7.449267916773697 -753,6.0,5.0,-3.590210423980992,11.02611441072814 -753,6.0,6.0,6.544230459942975,-18.45668232750184 -753,7.0,5.0,-6.289308176100628,22.0125786163522 -753,7.0,7.0,7.733287237496075,-26.527493274828448 -753,7.0,27.0,-1.4439790613954469,4.540814658476248 -753,8.0,5.0,0.0,4.915840805411357 -753,8.0,8.0,0.0,-18.706293706293707 -753,8.0,9.0,0.0,9.090909090909092 -753,8.0,10.0,0.0,4.807692307692308 -753,9.0,5.0,0.0,1.8561002591115965 -753,9.0,8.0,0.0,9.090909090909092 -753,9.0,9.0,13.462042814524237,-41.3837606675224 -753,9.0,16.0,-3.956039125715353,10.317447719844054 -753,9.0,19.0,-1.7848303152666305,3.98535828943083 -753,9.0,20.0,-5.101853820159654,10.98071411292983 -753,9.0,21.0,-2.619319553382597,5.400770303329455 -753,10.0,8.0,0.0,4.807692307692308 -753,10.0,10.0,0.0,-4.807692307692308 -753,11.0,3.0,0.0,4.191255364806866 -753,11.0,11.0,6.573961583776156,-24.424167659260668 -753,11.0,12.0,0.0,7.142857142857143 -753,11.0,13.0,-1.5265676088395577,3.1734252729654173 -753,11.0,14.0,-3.0953961826564296,6.097275864326261 -753,11.0,15.0,-1.9519977922801688,4.104359379111847 -753,12.0,11.0,0.0,7.142857142857143 -753,12.0,12.0,0.0,-7.142857142857143 -753,13.0,11.0,-1.5265676088395577,3.1734252729654173 -753,13.0,13.0,4.01751987283902,-5.424299332335067 -753,13.0,14.0,-2.4909522639994623,2.250874059369649 -753,14.0,11.0,-3.0953961826564296,6.097275864326261 -753,14.0,13.0,-2.4909522639994623,2.250874059369649 -753,14.0,14.0,9.365498545964757,-16.01163373210796 -753,14.0,17.0,-1.8108011504072024,3.687418931630696 -753,14.0,22.0,-1.9683489489016612,3.976064876781356 -753,15.0,11.0,-1.9519977922801688,4.104359379111847 -753,15.0,15.0,3.271064728633931,-8.94513365126506 -753,15.0,16.0,-1.3190669363537617,4.8407742721532125 -753,16.0,9.0,-3.956039125715353,10.317447719844054 -753,16.0,15.0,-1.3190669363537617,4.8407742721532125 -753,16.0,16.0,5.275106062069114,-15.158221991997266 -753,17.0,14.0,-1.8108011504072024,3.687418931630696 -753,17.0,17.0,4.886487584415919,-9.906177730909668 -753,17.0,18.0,-3.0756864340087167,6.218758799278971 -753,18.0,17.0,-3.0756864340087167,6.218758799278971 -753,18.0,18.0,8.958039375185187,-17.98346468163191 -753,18.0,19.0,-5.88235294117647,11.76470588235294 -753,19.0,9.0,-1.7848303152666305,3.98535828943083 -753,19.0,18.0,-5.88235294117647,11.76470588235294 -753,19.0,19.0,7.6671832564431,-15.75006417178377 -753,20.0,9.0,-5.101853820159654,10.98071411292983 -753,20.0,20.0,21.876495189895888,-45.10843276170355 -753,20.0,21.0,-16.774641369736234,34.127718648773715 -753,21.0,9.0,-2.619319553382597,5.400770303329455 -753,21.0,20.0,-16.774641369736234,34.127718648773715 -753,21.0,21.0,19.393960923118836,-39.52848895210317 -753,22.0,14.0,-1.9683489489016612,3.976064876781356 -753,22.0,22.0,3.429754555384988,-6.965303617315433 -753,22.0,23.0,-1.4614056064833263,2.989238740534077 -753,23.0,22.0,-1.4614056064833263,2.989238740534077 -753,23.0,23.0,2.771298550357576,-5.233860794239132 -753,23.0,24.0,-1.3098929438742493,2.287622053705056 -753,24.0,23.0,-1.3098929438742493,2.287622053705056 -753,24.0,24.0,4.495715080321987,-7.864978761969621 -753,24.0,25.0,-1.2165301194494855,1.8171440463475024 -753,24.0,26.0,-1.9692920169982515,3.760212661917064 -753,25.0,24.0,-1.2165301194494855,1.8171440463475024 -753,25.0,25.0,1.2165301194494855,-1.8171440463475024 -753,26.0,24.0,-1.9692920169982515,3.760212661917064 -753,26.0,26.0,3.652281470778589,-9.46044252232512 -753,26.0,27.0,0.0,2.608731947574922 -753,26.0,28.0,-0.99553355095268,1.881005840357816 -753,26.0,29.0,-0.6874559028276572,1.293971494797717 -753,27.0,5.0,-4.362844058012917,15.463571542897856 -753,27.0,7.0,-1.4439790613954469,4.540814658476248 -753,27.0,26.0,0.0,2.608731947574922 -753,27.0,27.0,5.806823119408364,-22.67145722159613 -753,28.0,26.0,-0.99553355095268,1.881005840357816 -753,28.0,28.0,1.9075867579849564,-3.604364401207048 -753,28.0,29.0,-0.9120532070322764,1.7233585608492326 -753,29.0,26.0,-0.6874559028276572,1.293971494797717 -753,29.0,28.0,-0.9120532070322764,1.7233585608492326 -753,29.0,29.0,1.5995091098599337,-3.0173300556469496 -754,0.0,0.0,6.765516048652632,-21.23160167089863 -754,0.0,1.0,-5.224646179885656,15.646726840803398 -754,0.0,2.0,-1.5408698687669766,5.631674830095234 -754,1.0,0.0,-5.224646179885656,15.646726840803398 -754,1.0,1.0,9.75228216552403,-30.648662892676068 -754,1.0,3.0,-1.7055303166990268,5.1973792282565086 -754,1.0,4.0,-1.1359607881738778,4.772479328281356 -754,1.0,5.0,-1.6861448807654689,5.116477495334806 -754,2.0,0.0,-1.5408698687669766,5.631674830095234 -754,2.0,2.0,9.736318911079088,-29.13794745915803 -754,2.0,3.0,-8.19544904231211,23.5308726290628 -754,3.0,1.0,-1.7055303166990268,5.1973792282565086 -754,3.0,2.0,-8.19544904231211,23.5308726290628 -754,3.0,3.0,16.314103089185693,-55.509410535254254 -754,3.0,5.0,-6.413123730174556,22.31120356548123 -754,3.0,11.0,0.0,4.191255364806866 -754,4.0,1.0,-1.1359607881738778,4.772479328281356 -754,4.0,4.0,4.089980824135861,-12.190647245055052 -754,4.0,6.0,-2.954020035961983,7.449267916773697 -754,5.0,1.0,-1.6861448807654689,5.116477495334806 -754,5.0,3.0,-6.413123730174556,22.31120356548123 -754,5.0,5.0,22.341631269034565,-82.8291478657789 -754,5.0,6.0,-3.590210423980992,11.02611441072814 -754,5.0,7.0,-6.289308176100628,22.0125786163522 -754,5.0,8.0,0.0,4.915840805411357 -754,5.0,9.0,0.0,1.8561002591115965 -754,5.0,27.0,-4.362844058012917,15.463571542897856 -754,6.0,4.0,-2.954020035961983,7.449267916773697 -754,6.0,5.0,-3.590210423980992,11.02611441072814 -754,6.0,6.0,6.544230459942975,-18.45668232750184 -754,7.0,5.0,-6.289308176100628,22.0125786163522 -754,7.0,7.0,7.733287237496075,-26.527493274828448 -754,7.0,27.0,-1.4439790613954469,4.540814658476248 -754,8.0,5.0,0.0,4.915840805411357 -754,8.0,8.0,0.0,-18.706293706293707 -754,8.0,9.0,0.0,9.090909090909092 -754,8.0,10.0,0.0,4.807692307692308 -754,9.0,5.0,0.0,1.8561002591115965 -754,9.0,8.0,0.0,9.090909090909092 -754,9.0,9.0,13.462042814524237,-41.3837606675224 -754,9.0,16.0,-3.956039125715353,10.317447719844054 -754,9.0,19.0,-1.7848303152666305,3.98535828943083 -754,9.0,20.0,-5.101853820159654,10.98071411292983 -754,9.0,21.0,-2.619319553382597,5.400770303329455 -754,10.0,8.0,0.0,4.807692307692308 -754,10.0,10.0,0.0,-4.807692307692308 -754,11.0,3.0,0.0,4.191255364806866 -754,11.0,11.0,6.573961583776156,-24.424167659260668 -754,11.0,12.0,0.0,7.142857142857143 -754,11.0,13.0,-1.5265676088395577,3.1734252729654173 -754,11.0,14.0,-3.0953961826564296,6.097275864326261 -754,11.0,15.0,-1.9519977922801688,4.104359379111847 -754,12.0,11.0,0.0,7.142857142857143 -754,12.0,12.0,0.0,-7.142857142857143 -754,13.0,11.0,-1.5265676088395577,3.1734252729654173 -754,13.0,13.0,4.01751987283902,-5.424299332335067 -754,13.0,14.0,-2.4909522639994623,2.250874059369649 -754,14.0,11.0,-3.0953961826564296,6.097275864326261 -754,14.0,13.0,-2.4909522639994623,2.250874059369649 -754,14.0,14.0,9.365498545964757,-16.01163373210796 -754,14.0,17.0,-1.8108011504072024,3.687418931630696 -754,14.0,22.0,-1.9683489489016612,3.976064876781356 -754,15.0,11.0,-1.9519977922801688,4.104359379111847 -754,15.0,15.0,3.271064728633931,-8.94513365126506 -754,15.0,16.0,-1.3190669363537617,4.8407742721532125 -754,16.0,9.0,-3.956039125715353,10.317447719844054 -754,16.0,15.0,-1.3190669363537617,4.8407742721532125 -754,16.0,16.0,5.275106062069114,-15.158221991997266 -754,17.0,14.0,-1.8108011504072024,3.687418931630696 -754,17.0,17.0,4.886487584415919,-9.906177730909668 -754,17.0,18.0,-3.0756864340087167,6.218758799278971 -754,18.0,17.0,-3.0756864340087167,6.218758799278971 -754,18.0,18.0,8.958039375185187,-17.98346468163191 -754,18.0,19.0,-5.88235294117647,11.76470588235294 -754,19.0,9.0,-1.7848303152666305,3.98535828943083 -754,19.0,18.0,-5.88235294117647,11.76470588235294 -754,19.0,19.0,7.6671832564431,-15.75006417178377 -754,20.0,9.0,-5.101853820159654,10.98071411292983 -754,20.0,20.0,21.876495189895888,-45.10843276170355 -754,20.0,21.0,-16.774641369736234,34.127718648773715 -754,21.0,9.0,-2.619319553382597,5.400770303329455 -754,21.0,20.0,-16.774641369736234,34.127718648773715 -754,21.0,21.0,21.93449907537439,-43.48289181517921 -754,21.0,23.0,-2.5405381522555563,3.95440286307604 -754,22.0,14.0,-1.9683489489016612,3.976064876781356 -754,22.0,22.0,3.429754555384988,-6.965303617315433 -754,22.0,23.0,-1.4614056064833263,2.989238740534077 -754,23.0,21.0,-2.5405381522555563,3.95440286307604 -754,23.0,22.0,-1.4614056064833263,2.989238740534077 -754,23.0,23.0,5.311836702613133,-9.188263657315172 -754,23.0,24.0,-1.3098929438742493,2.287622053705056 -754,24.0,23.0,-1.3098929438742493,2.287622053705056 -754,24.0,24.0,4.495715080321987,-7.864978761969621 -754,24.0,25.0,-1.2165301194494855,1.8171440463475024 -754,24.0,26.0,-1.9692920169982515,3.760212661917064 -754,25.0,24.0,-1.2165301194494855,1.8171440463475024 -754,25.0,25.0,1.2165301194494855,-1.8171440463475024 -754,26.0,24.0,-1.9692920169982515,3.760212661917064 -754,26.0,26.0,2.9648255679509314,-8.166471027527404 -754,26.0,27.0,0.0,2.608731947574922 -754,26.0,28.0,-0.99553355095268,1.881005840357816 -754,27.0,5.0,-4.362844058012917,15.463571542897856 -754,27.0,7.0,-1.4439790613954469,4.540814658476248 -754,27.0,26.0,0.0,2.608731947574922 -754,27.0,27.0,5.806823119408364,-22.67145722159613 -754,28.0,26.0,-0.99553355095268,1.881005840357816 -754,28.0,28.0,1.9075867579849564,-3.604364401207048 -754,28.0,29.0,-0.9120532070322764,1.7233585608492326 -754,29.0,28.0,-0.9120532070322764,1.7233585608492326 -754,29.0,29.0,0.9120532070322764,-1.7233585608492326 -755,0.0,0.0,6.765516048652632,-21.23160167089863 -755,0.0,1.0,-5.224646179885656,15.646726840803398 -755,0.0,2.0,-1.5408698687669766,5.631674830095234 -755,1.0,0.0,-5.224646179885656,15.646726840803398 -755,1.0,1.0,9.75228216552403,-30.648662892676068 -755,1.0,3.0,-1.7055303166990268,5.1973792282565086 -755,1.0,4.0,-1.1359607881738778,4.772479328281356 -755,1.0,5.0,-1.6861448807654689,5.116477495334806 -755,2.0,0.0,-1.5408698687669766,5.631674830095234 -755,2.0,2.0,9.736318911079088,-29.13794745915803 -755,2.0,3.0,-8.19544904231211,23.5308726290628 -755,3.0,1.0,-1.7055303166990268,5.1973792282565086 -755,3.0,2.0,-8.19544904231211,23.5308726290628 -755,3.0,3.0,16.314103089185693,-55.509410535254254 -755,3.0,5.0,-6.413123730174556,22.31120356548123 -755,3.0,11.0,0.0,4.191255364806866 -755,4.0,1.0,-1.1359607881738778,4.772479328281356 -755,4.0,4.0,4.089980824135861,-12.190647245055052 -755,4.0,6.0,-2.954020035961983,7.449267916773697 -755,5.0,1.0,-1.6861448807654689,5.116477495334806 -755,5.0,3.0,-6.413123730174556,22.31120356548123 -755,5.0,5.0,22.341631269034565,-82.8291478657789 -755,5.0,6.0,-3.590210423980992,11.02611441072814 -755,5.0,7.0,-6.289308176100628,22.0125786163522 -755,5.0,8.0,0.0,4.915840805411357 -755,5.0,9.0,0.0,1.8561002591115965 -755,5.0,27.0,-4.362844058012917,15.463571542897856 -755,6.0,4.0,-2.954020035961983,7.449267916773697 -755,6.0,5.0,-3.590210423980992,11.02611441072814 -755,6.0,6.0,6.544230459942975,-18.45668232750184 -755,7.0,5.0,-6.289308176100628,22.0125786163522 -755,7.0,7.0,6.289308176100628,-22.0080786163522 -755,8.0,5.0,0.0,4.915840805411357 -755,8.0,8.0,0.0,-18.706293706293707 -755,8.0,9.0,0.0,9.090909090909092 -755,8.0,10.0,0.0,4.807692307692308 -755,9.0,5.0,0.0,1.8561002591115965 -755,9.0,8.0,0.0,9.090909090909092 -755,9.0,9.0,13.462042814524237,-41.3837606675224 -755,9.0,16.0,-3.956039125715353,10.317447719844054 -755,9.0,19.0,-1.7848303152666305,3.98535828943083 -755,9.0,20.0,-5.101853820159654,10.98071411292983 -755,9.0,21.0,-2.619319553382597,5.400770303329455 -755,10.0,8.0,0.0,4.807692307692308 -755,10.0,10.0,0.0,-4.807692307692308 -755,11.0,3.0,0.0,4.191255364806866 -755,11.0,11.0,6.573961583776156,-24.424167659260668 -755,11.0,12.0,0.0,7.142857142857143 -755,11.0,13.0,-1.5265676088395577,3.1734252729654173 -755,11.0,14.0,-3.0953961826564296,6.097275864326261 -755,11.0,15.0,-1.9519977922801688,4.104359379111847 -755,12.0,11.0,0.0,7.142857142857143 -755,12.0,12.0,0.0,-7.142857142857143 -755,13.0,11.0,-1.5265676088395577,3.1734252729654173 -755,13.0,13.0,4.01751987283902,-5.424299332335067 -755,13.0,14.0,-2.4909522639994623,2.250874059369649 -755,14.0,11.0,-3.0953961826564296,6.097275864326261 -755,14.0,13.0,-2.4909522639994623,2.250874059369649 -755,14.0,14.0,9.365498545964757,-16.01163373210796 -755,14.0,17.0,-1.8108011504072024,3.687418931630696 -755,14.0,22.0,-1.9683489489016612,3.976064876781356 -755,15.0,11.0,-1.9519977922801688,4.104359379111847 -755,15.0,15.0,3.271064728633931,-8.94513365126506 -755,15.0,16.0,-1.3190669363537617,4.8407742721532125 -755,16.0,9.0,-3.956039125715353,10.317447719844054 -755,16.0,15.0,-1.3190669363537617,4.8407742721532125 -755,16.0,16.0,5.275106062069114,-15.158221991997266 -755,17.0,14.0,-1.8108011504072024,3.687418931630696 -755,17.0,17.0,4.886487584415919,-9.906177730909668 -755,17.0,18.0,-3.0756864340087167,6.218758799278971 -755,18.0,17.0,-3.0756864340087167,6.218758799278971 -755,18.0,18.0,8.958039375185187,-17.98346468163191 -755,18.0,19.0,-5.88235294117647,11.76470588235294 -755,19.0,9.0,-1.7848303152666305,3.98535828943083 -755,19.0,18.0,-5.88235294117647,11.76470588235294 -755,19.0,19.0,7.6671832564431,-15.75006417178377 -755,20.0,9.0,-5.101853820159654,10.98071411292983 -755,20.0,20.0,21.876495189895888,-45.10843276170355 -755,20.0,21.0,-16.774641369736234,34.127718648773715 -755,21.0,9.0,-2.619319553382597,5.400770303329455 -755,21.0,20.0,-16.774641369736234,34.127718648773715 -755,21.0,21.0,21.93449907537439,-43.48289181517921 -755,21.0,23.0,-2.5405381522555563,3.95440286307604 -755,22.0,14.0,-1.9683489489016612,3.976064876781356 -755,22.0,22.0,3.429754555384988,-6.965303617315433 -755,22.0,23.0,-1.4614056064833263,2.989238740534077 -755,23.0,21.0,-2.5405381522555563,3.95440286307604 -755,23.0,22.0,-1.4614056064833263,2.989238740534077 -755,23.0,23.0,5.311836702613133,-9.188263657315172 -755,23.0,24.0,-1.3098929438742493,2.287622053705056 -755,24.0,23.0,-1.3098929438742493,2.287622053705056 -755,24.0,24.0,4.495715080321987,-7.864978761969621 -755,24.0,25.0,-1.2165301194494855,1.8171440463475024 -755,24.0,26.0,-1.9692920169982515,3.760212661917064 -755,25.0,24.0,-1.2165301194494855,1.8171440463475024 -755,25.0,25.0,1.2165301194494855,-1.8171440463475024 -755,26.0,24.0,-1.9692920169982515,3.760212661917064 -755,26.0,26.0,3.652281470778589,-9.46044252232512 -755,26.0,27.0,0.0,2.608731947574922 -755,26.0,28.0,-0.99553355095268,1.881005840357816 -755,26.0,29.0,-0.6874559028276572,1.293971494797717 -755,27.0,5.0,-4.362844058012917,15.463571542897856 -755,27.0,26.0,0.0,2.608731947574922 -755,27.0,27.0,4.362844058012917,-18.15204256311988 -755,28.0,26.0,-0.99553355095268,1.881005840357816 -755,28.0,28.0,1.9075867579849564,-3.604364401207048 -755,28.0,29.0,-0.9120532070322764,1.7233585608492326 -755,29.0,26.0,-0.6874559028276572,1.293971494797717 -755,29.0,28.0,-0.9120532070322764,1.7233585608492326 -755,29.0,29.0,1.5995091098599337,-3.0173300556469496 -756,0.0,0.0,6.765516048652632,-21.23160167089863 -756,0.0,1.0,-5.224646179885656,15.646726840803398 -756,0.0,2.0,-1.5408698687669766,5.631674830095234 -756,1.0,0.0,-5.224646179885656,15.646726840803398 -756,1.0,1.0,9.75228216552403,-30.648662892676068 -756,1.0,3.0,-1.7055303166990268,5.1973792282565086 -756,1.0,4.0,-1.1359607881738778,4.772479328281356 -756,1.0,5.0,-1.6861448807654689,5.116477495334806 -756,2.0,0.0,-1.5408698687669766,5.631674830095234 -756,2.0,2.0,9.736318911079088,-29.13794745915803 -756,2.0,3.0,-8.19544904231211,23.5308726290628 -756,3.0,1.0,-1.7055303166990268,5.1973792282565086 -756,3.0,2.0,-8.19544904231211,23.5308726290628 -756,3.0,3.0,16.314103089185693,-55.509410535254254 -756,3.0,5.0,-6.413123730174556,22.31120356548123 -756,3.0,11.0,0.0,4.191255364806866 -756,4.0,1.0,-1.1359607881738778,4.772479328281356 -756,4.0,4.0,1.1359607881738778,-4.751579328281355 -756,5.0,1.0,-1.6861448807654689,5.116477495334806 -756,5.0,3.0,-6.413123730174556,22.31120356548123 -756,5.0,5.0,22.341631269034565,-82.8291478657789 -756,5.0,6.0,-3.590210423980992,11.02611441072814 -756,5.0,7.0,-6.289308176100628,22.0125786163522 -756,5.0,8.0,0.0,4.915840805411357 -756,5.0,9.0,0.0,1.8561002591115965 -756,5.0,27.0,-4.362844058012917,15.463571542897856 -756,6.0,5.0,-3.590210423980992,11.02611441072814 -756,6.0,6.0,3.590210423980992,-11.01761441072814 -756,7.0,5.0,-6.289308176100628,22.0125786163522 -756,7.0,7.0,6.289308176100628,-22.0080786163522 -756,8.0,5.0,0.0,4.915840805411357 -756,8.0,8.0,0.0,-18.706293706293707 -756,8.0,9.0,0.0,9.090909090909092 -756,8.0,10.0,0.0,4.807692307692308 -756,9.0,5.0,0.0,1.8561002591115965 -756,9.0,8.0,0.0,9.090909090909092 -756,9.0,9.0,13.462042814524237,-41.3837606675224 -756,9.0,16.0,-3.956039125715353,10.317447719844054 -756,9.0,19.0,-1.7848303152666305,3.98535828943083 -756,9.0,20.0,-5.101853820159654,10.98071411292983 -756,9.0,21.0,-2.619319553382597,5.400770303329455 -756,10.0,8.0,0.0,4.807692307692308 -756,10.0,10.0,0.0,-4.807692307692308 -756,11.0,3.0,0.0,4.191255364806866 -756,11.0,11.0,3.0953961826564296,-17.146383007183402 -756,11.0,12.0,0.0,7.142857142857143 -756,11.0,14.0,-3.0953961826564296,6.097275864326261 -756,12.0,11.0,0.0,7.142857142857143 -756,12.0,12.0,0.0,-7.142857142857143 -756,13.0,13.0,2.4909522639994623,-2.250874059369649 -756,13.0,14.0,-2.4909522639994623,2.250874059369649 -756,14.0,11.0,-3.0953961826564296,6.097275864326261 -756,14.0,13.0,-2.4909522639994623,2.250874059369649 -756,14.0,14.0,7.397149597063095,-12.035568855326606 -756,14.0,17.0,-1.8108011504072024,3.687418931630696 -756,15.0,15.0,1.3190669363537617,-4.8407742721532125 -756,15.0,16.0,-1.3190669363537617,4.8407742721532125 -756,16.0,9.0,-3.956039125715353,10.317447719844054 -756,16.0,15.0,-1.3190669363537617,4.8407742721532125 -756,16.0,16.0,5.275106062069114,-15.158221991997266 -756,17.0,14.0,-1.8108011504072024,3.687418931630696 -756,17.0,17.0,4.886487584415919,-9.906177730909668 -756,17.0,18.0,-3.0756864340087167,6.218758799278971 -756,18.0,17.0,-3.0756864340087167,6.218758799278971 -756,18.0,18.0,8.958039375185187,-17.98346468163191 -756,18.0,19.0,-5.88235294117647,11.76470588235294 -756,19.0,9.0,-1.7848303152666305,3.98535828943083 -756,19.0,18.0,-5.88235294117647,11.76470588235294 -756,19.0,19.0,7.6671832564431,-15.75006417178377 -756,20.0,9.0,-5.101853820159654,10.98071411292983 -756,20.0,20.0,21.876495189895888,-45.10843276170355 -756,20.0,21.0,-16.774641369736234,34.127718648773715 -756,21.0,9.0,-2.619319553382597,5.400770303329455 -756,21.0,20.0,-16.774641369736234,34.127718648773715 -756,21.0,21.0,21.93449907537439,-43.48289181517921 -756,21.0,23.0,-2.5405381522555563,3.95440286307604 -756,22.0,22.0,1.4614056064833263,-2.989238740534077 -756,22.0,23.0,-1.4614056064833263,2.989238740534077 -756,23.0,21.0,-2.5405381522555563,3.95440286307604 -756,23.0,22.0,-1.4614056064833263,2.989238740534077 -756,23.0,23.0,5.311836702613133,-9.188263657315172 -756,23.0,24.0,-1.3098929438742493,2.287622053705056 -756,24.0,23.0,-1.3098929438742493,2.287622053705056 -756,24.0,24.0,4.495715080321987,-7.864978761969621 -756,24.0,25.0,-1.2165301194494855,1.8171440463475024 -756,24.0,26.0,-1.9692920169982515,3.760212661917064 -756,25.0,24.0,-1.2165301194494855,1.8171440463475024 -756,25.0,25.0,1.2165301194494855,-1.8171440463475024 -756,26.0,24.0,-1.9692920169982515,3.760212661917064 -756,26.0,26.0,3.652281470778589,-9.46044252232512 -756,26.0,27.0,0.0,2.608731947574922 -756,26.0,28.0,-0.99553355095268,1.881005840357816 -756,26.0,29.0,-0.6874559028276572,1.293971494797717 -756,27.0,5.0,-4.362844058012917,15.463571542897856 -756,27.0,26.0,0.0,2.608731947574922 -756,27.0,27.0,4.362844058012917,-18.15204256311988 -756,28.0,26.0,-0.99553355095268,1.881005840357816 -756,28.0,28.0,1.9075867579849564,-3.604364401207048 -756,28.0,29.0,-0.9120532070322764,1.7233585608492326 -756,29.0,26.0,-0.6874559028276572,1.293971494797717 -756,29.0,28.0,-0.9120532070322764,1.7233585608492326 -756,29.0,29.0,1.5995091098599337,-3.0173300556469496 -757,0.0,0.0,6.765516048652632,-21.23160167089863 -757,0.0,1.0,-5.224646179885656,15.646726840803398 -757,0.0,2.0,-1.5408698687669766,5.631674830095234 -757,1.0,0.0,-5.224646179885656,15.646726840803398 -757,1.0,1.0,9.75228216552403,-30.648662892676068 -757,1.0,3.0,-1.7055303166990268,5.1973792282565086 -757,1.0,4.0,-1.1359607881738778,4.772479328281356 -757,1.0,5.0,-1.6861448807654689,5.116477495334806 -757,2.0,0.0,-1.5408698687669766,5.631674830095234 -757,2.0,2.0,9.736318911079088,-29.13794745915803 -757,2.0,3.0,-8.19544904231211,23.5308726290628 -757,3.0,1.0,-1.7055303166990268,5.1973792282565086 -757,3.0,2.0,-8.19544904231211,23.5308726290628 -757,3.0,3.0,16.314103089185693,-55.509410535254254 -757,3.0,5.0,-6.413123730174556,22.31120356548123 -757,3.0,11.0,0.0,4.191255364806866 -757,4.0,1.0,-1.1359607881738778,4.772479328281356 -757,4.0,4.0,4.089980824135861,-12.190647245055052 -757,4.0,6.0,-2.954020035961983,7.449267916773697 -757,5.0,1.0,-1.6861448807654689,5.116477495334806 -757,5.0,3.0,-6.413123730174556,22.31120356548123 -757,5.0,5.0,22.341631269034565,-82.8291478657789 -757,5.0,6.0,-3.590210423980992,11.02611441072814 -757,5.0,7.0,-6.289308176100628,22.0125786163522 -757,5.0,8.0,0.0,4.915840805411357 -757,5.0,9.0,0.0,1.8561002591115965 -757,5.0,27.0,-4.362844058012917,15.463571542897856 -757,6.0,4.0,-2.954020035961983,7.449267916773697 -757,6.0,5.0,-3.590210423980992,11.02611441072814 -757,6.0,6.0,6.544230459942975,-18.45668232750184 -757,7.0,5.0,-6.289308176100628,22.0125786163522 -757,7.0,7.0,7.733287237496075,-26.527493274828448 -757,7.0,27.0,-1.4439790613954469,4.540814658476248 -757,8.0,5.0,0.0,4.915840805411357 -757,8.0,8.0,0.0,-18.706293706293707 -757,8.0,9.0,0.0,9.090909090909092 -757,8.0,10.0,0.0,4.807692307692308 -757,9.0,5.0,0.0,1.8561002591115965 -757,9.0,8.0,0.0,9.090909090909092 -757,9.0,9.0,13.462042814524237,-41.3837606675224 -757,9.0,16.0,-3.956039125715353,10.317447719844054 -757,9.0,19.0,-1.7848303152666305,3.98535828943083 -757,9.0,20.0,-5.101853820159654,10.98071411292983 -757,9.0,21.0,-2.619319553382597,5.400770303329455 -757,10.0,8.0,0.0,4.807692307692308 -757,10.0,10.0,0.0,-4.807692307692308 -757,11.0,3.0,0.0,4.191255364806866 -757,11.0,11.0,6.573961583776156,-24.424167659260668 -757,11.0,12.0,0.0,7.142857142857143 -757,11.0,13.0,-1.5265676088395577,3.1734252729654173 -757,11.0,14.0,-3.0953961826564296,6.097275864326261 -757,11.0,15.0,-1.9519977922801688,4.104359379111847 -757,12.0,11.0,0.0,7.142857142857143 -757,12.0,12.0,0.0,-7.142857142857143 -757,13.0,11.0,-1.5265676088395577,3.1734252729654173 -757,13.0,13.0,4.01751987283902,-5.424299332335067 -757,13.0,14.0,-2.4909522639994623,2.250874059369649 -757,14.0,11.0,-3.0953961826564296,6.097275864326261 -757,14.0,13.0,-2.4909522639994623,2.250874059369649 -757,14.0,14.0,9.365498545964757,-16.01163373210796 -757,14.0,17.0,-1.8108011504072024,3.687418931630696 -757,14.0,22.0,-1.9683489489016612,3.976064876781356 -757,15.0,11.0,-1.9519977922801688,4.104359379111847 -757,15.0,15.0,3.271064728633931,-8.94513365126506 -757,15.0,16.0,-1.3190669363537617,4.8407742721532125 -757,16.0,9.0,-3.956039125715353,10.317447719844054 -757,16.0,15.0,-1.3190669363537617,4.8407742721532125 -757,16.0,16.0,5.275106062069114,-15.158221991997266 -757,17.0,14.0,-1.8108011504072024,3.687418931630696 -757,17.0,17.0,4.886487584415919,-9.906177730909668 -757,17.0,18.0,-3.0756864340087167,6.218758799278971 -757,18.0,17.0,-3.0756864340087167,6.218758799278971 -757,18.0,18.0,8.958039375185187,-17.98346468163191 -757,18.0,19.0,-5.88235294117647,11.76470588235294 -757,19.0,9.0,-1.7848303152666305,3.98535828943083 -757,19.0,18.0,-5.88235294117647,11.76470588235294 -757,19.0,19.0,7.6671832564431,-15.75006417178377 -757,20.0,9.0,-5.101853820159654,10.98071411292983 -757,20.0,20.0,21.876495189895888,-45.10843276170355 -757,20.0,21.0,-16.774641369736234,34.127718648773715 -757,21.0,9.0,-2.619319553382597,5.400770303329455 -757,21.0,20.0,-16.774641369736234,34.127718648773715 -757,21.0,21.0,21.93449907537439,-43.48289181517921 -757,21.0,23.0,-2.5405381522555563,3.95440286307604 -757,22.0,14.0,-1.9683489489016612,3.976064876781356 -757,22.0,22.0,3.429754555384988,-6.965303617315433 -757,22.0,23.0,-1.4614056064833263,2.989238740534077 -757,23.0,21.0,-2.5405381522555563,3.95440286307604 -757,23.0,22.0,-1.4614056064833263,2.989238740534077 -757,23.0,23.0,5.311836702613133,-9.188263657315172 -757,23.0,24.0,-1.3098929438742493,2.287622053705056 -757,24.0,23.0,-1.3098929438742493,2.287622053705056 -757,24.0,24.0,4.495715080321987,-7.864978761969621 -757,24.0,25.0,-1.2165301194494855,1.8171440463475024 -757,24.0,26.0,-1.9692920169982515,3.760212661917064 -757,25.0,24.0,-1.2165301194494855,1.8171440463475024 -757,25.0,25.0,1.2165301194494855,-1.8171440463475024 -757,26.0,24.0,-1.9692920169982515,3.760212661917064 -757,26.0,26.0,3.652281470778589,-9.46044252232512 -757,26.0,27.0,0.0,2.608731947574922 -757,26.0,28.0,-0.99553355095268,1.881005840357816 -757,26.0,29.0,-0.6874559028276572,1.293971494797717 -757,27.0,5.0,-4.362844058012917,15.463571542897856 -757,27.0,7.0,-1.4439790613954469,4.540814658476248 -757,27.0,26.0,0.0,2.608731947574922 -757,27.0,27.0,5.806823119408364,-22.67145722159613 -757,28.0,26.0,-0.99553355095268,1.881005840357816 -757,28.0,28.0,1.9075867579849564,-3.604364401207048 -757,28.0,29.0,-0.9120532070322764,1.7233585608492326 -757,29.0,26.0,-0.6874559028276572,1.293971494797717 -757,29.0,28.0,-0.9120532070322764,1.7233585608492326 -757,29.0,29.0,1.5995091098599337,-3.0173300556469496 -758,0.0,0.0,6.765516048652632,-21.23160167089863 -758,0.0,1.0,-5.224646179885656,15.646726840803398 -758,0.0,2.0,-1.5408698687669766,5.631674830095234 -758,1.0,0.0,-5.224646179885656,15.646726840803398 -758,1.0,1.0,9.75228216552403,-30.648662892676068 -758,1.0,3.0,-1.7055303166990268,5.1973792282565086 -758,1.0,4.0,-1.1359607881738778,4.772479328281356 -758,1.0,5.0,-1.6861448807654689,5.116477495334806 -758,2.0,0.0,-1.5408698687669766,5.631674830095234 -758,2.0,2.0,9.736318911079088,-29.13794745915803 -758,2.0,3.0,-8.19544904231211,23.5308726290628 -758,3.0,1.0,-1.7055303166990268,5.1973792282565086 -758,3.0,2.0,-8.19544904231211,23.5308726290628 -758,3.0,3.0,9.900979359011137,-33.202706969773025 -758,3.0,11.0,0.0,4.191255364806866 -758,4.0,1.0,-1.1359607881738778,4.772479328281356 -758,4.0,4.0,4.089980824135861,-12.190647245055052 -758,4.0,6.0,-2.954020035961983,7.449267916773697 -758,5.0,1.0,-1.6861448807654689,5.116477495334806 -758,5.0,5.0,15.928507538860009,-60.52244430029767 -758,5.0,6.0,-3.590210423980992,11.02611441072814 -758,5.0,7.0,-6.289308176100628,22.0125786163522 -758,5.0,8.0,0.0,4.915840805411357 -758,5.0,9.0,0.0,1.8561002591115965 -758,5.0,27.0,-4.362844058012917,15.463571542897856 -758,6.0,4.0,-2.954020035961983,7.449267916773697 -758,6.0,5.0,-3.590210423980992,11.02611441072814 -758,6.0,6.0,6.544230459942975,-18.45668232750184 -758,7.0,5.0,-6.289308176100628,22.0125786163522 -758,7.0,7.0,7.733287237496075,-26.527493274828448 -758,7.0,27.0,-1.4439790613954469,4.540814658476248 -758,8.0,5.0,0.0,4.915840805411357 -758,8.0,8.0,0.0,-18.706293706293707 -758,8.0,9.0,0.0,9.090909090909092 -758,8.0,10.0,0.0,4.807692307692308 -758,9.0,5.0,0.0,1.8561002591115965 -758,9.0,8.0,0.0,9.090909090909092 -758,9.0,9.0,10.842723261141638,-35.98299036419294 -758,9.0,16.0,-3.956039125715353,10.317447719844054 -758,9.0,19.0,-1.7848303152666305,3.98535828943083 -758,9.0,20.0,-5.101853820159654,10.98071411292983 -758,10.0,8.0,0.0,4.807692307692308 -758,10.0,10.0,0.0,-4.807692307692308 -758,11.0,3.0,0.0,4.191255364806866 -758,11.0,11.0,3.478565401119727,-18.326891794934408 -758,11.0,12.0,0.0,7.142857142857143 -758,11.0,13.0,-1.5265676088395577,3.1734252729654173 -758,11.0,15.0,-1.9519977922801688,4.104359379111847 -758,12.0,11.0,0.0,7.142857142857143 -758,12.0,12.0,0.0,-7.142857142857143 -758,13.0,11.0,-1.5265676088395577,3.1734252729654173 -758,13.0,13.0,1.5265676088395577,-3.1734252729654173 -758,14.0,14.0,3.779150099308864,-7.663483808412051 -758,14.0,17.0,-1.8108011504072024,3.687418931630696 -758,14.0,22.0,-1.9683489489016612,3.976064876781356 -758,15.0,11.0,-1.9519977922801688,4.104359379111847 -758,15.0,15.0,3.271064728633931,-8.94513365126506 -758,15.0,16.0,-1.3190669363537617,4.8407742721532125 -758,16.0,9.0,-3.956039125715353,10.317447719844054 -758,16.0,15.0,-1.3190669363537617,4.8407742721532125 -758,16.0,16.0,5.275106062069114,-15.158221991997266 -758,17.0,14.0,-1.8108011504072024,3.687418931630696 -758,17.0,17.0,4.886487584415919,-9.906177730909668 -758,17.0,18.0,-3.0756864340087167,6.218758799278971 -758,18.0,17.0,-3.0756864340087167,6.218758799278971 -758,18.0,18.0,8.958039375185187,-17.98346468163191 -758,18.0,19.0,-5.88235294117647,11.76470588235294 -758,19.0,9.0,-1.7848303152666305,3.98535828943083 -758,19.0,18.0,-5.88235294117647,11.76470588235294 -758,19.0,19.0,7.6671832564431,-15.75006417178377 -758,20.0,9.0,-5.101853820159654,10.98071411292983 -758,20.0,20.0,21.876495189895888,-45.10843276170355 -758,20.0,21.0,-16.774641369736234,34.127718648773715 -758,21.0,20.0,-16.774641369736234,34.127718648773715 -758,21.0,21.0,19.31517952199179,-38.08212151184976 -758,21.0,23.0,-2.5405381522555563,3.95440286307604 -758,22.0,14.0,-1.9683489489016612,3.976064876781356 -758,22.0,22.0,3.429754555384988,-6.965303617315433 -758,22.0,23.0,-1.4614056064833263,2.989238740534077 -758,23.0,21.0,-2.5405381522555563,3.95440286307604 -758,23.0,22.0,-1.4614056064833263,2.989238740534077 -758,23.0,23.0,5.311836702613133,-9.188263657315172 -758,23.0,24.0,-1.3098929438742493,2.287622053705056 -758,24.0,23.0,-1.3098929438742493,2.287622053705056 -758,24.0,24.0,4.495715080321987,-7.864978761969621 -758,24.0,25.0,-1.2165301194494855,1.8171440463475024 -758,24.0,26.0,-1.9692920169982515,3.760212661917064 -758,25.0,24.0,-1.2165301194494855,1.8171440463475024 -758,25.0,25.0,1.2165301194494855,-1.8171440463475024 -758,26.0,24.0,-1.9692920169982515,3.760212661917064 -758,26.0,26.0,3.652281470778589,-9.46044252232512 -758,26.0,27.0,0.0,2.608731947574922 -758,26.0,28.0,-0.99553355095268,1.881005840357816 -758,26.0,29.0,-0.6874559028276572,1.293971494797717 -758,27.0,5.0,-4.362844058012917,15.463571542897856 -758,27.0,7.0,-1.4439790613954469,4.540814658476248 -758,27.0,26.0,0.0,2.608731947574922 -758,27.0,27.0,5.806823119408364,-22.67145722159613 -758,28.0,26.0,-0.99553355095268,1.881005840357816 -758,28.0,28.0,1.9075867579849564,-3.604364401207048 -758,28.0,29.0,-0.9120532070322764,1.7233585608492326 -758,29.0,26.0,-0.6874559028276572,1.293971494797717 -758,29.0,28.0,-0.9120532070322764,1.7233585608492326 -758,29.0,29.0,1.5995091098599337,-3.0173300556469496 -759,0.0,0.0,6.765516048652632,-21.23160167089863 -759,0.0,1.0,-5.224646179885656,15.646726840803398 -759,0.0,2.0,-1.5408698687669766,5.631674830095234 -759,1.0,0.0,-5.224646179885656,15.646726840803398 -759,1.0,1.0,9.75228216552403,-30.648662892676068 -759,1.0,3.0,-1.7055303166990268,5.1973792282565086 -759,1.0,4.0,-1.1359607881738778,4.772479328281356 -759,1.0,5.0,-1.6861448807654689,5.116477495334806 -759,2.0,0.0,-1.5408698687669766,5.631674830095234 -759,2.0,2.0,9.736318911079088,-29.13794745915803 -759,2.0,3.0,-8.19544904231211,23.5308726290628 -759,3.0,1.0,-1.7055303166990268,5.1973792282565086 -759,3.0,2.0,-8.19544904231211,23.5308726290628 -759,3.0,3.0,16.314103089185693,-55.509410535254254 -759,3.0,5.0,-6.413123730174556,22.31120356548123 -759,3.0,11.0,0.0,4.191255364806866 -759,4.0,1.0,-1.1359607881738778,4.772479328281356 -759,4.0,4.0,4.089980824135861,-12.190647245055052 -759,4.0,6.0,-2.954020035961983,7.449267916773697 -759,5.0,1.0,-1.6861448807654689,5.116477495334806 -759,5.0,3.0,-6.413123730174556,22.31120356548123 -759,5.0,5.0,22.341631269034565,-82.8291478657789 -759,5.0,6.0,-3.590210423980992,11.02611441072814 -759,5.0,7.0,-6.289308176100628,22.0125786163522 -759,5.0,8.0,0.0,4.915840805411357 -759,5.0,9.0,0.0,1.8561002591115965 -759,5.0,27.0,-4.362844058012917,15.463571542897856 -759,6.0,4.0,-2.954020035961983,7.449267916773697 -759,6.0,5.0,-3.590210423980992,11.02611441072814 -759,6.0,6.0,6.544230459942975,-18.45668232750184 -759,7.0,5.0,-6.289308176100628,22.0125786163522 -759,7.0,7.0,7.733287237496075,-26.527493274828448 -759,7.0,27.0,-1.4439790613954469,4.540814658476248 -759,8.0,5.0,0.0,4.915840805411357 -759,8.0,8.0,0.0,-18.706293706293707 -759,8.0,9.0,0.0,9.090909090909092 -759,8.0,10.0,0.0,4.807692307692308 -759,9.0,5.0,0.0,1.8561002591115965 -759,9.0,8.0,0.0,9.090909090909092 -759,9.0,9.0,13.462042814524237,-41.3837606675224 -759,9.0,16.0,-3.956039125715353,10.317447719844054 -759,9.0,19.0,-1.7848303152666305,3.98535828943083 -759,9.0,20.0,-5.101853820159654,10.98071411292983 -759,9.0,21.0,-2.619319553382597,5.400770303329455 -759,10.0,8.0,0.0,4.807692307692308 -759,10.0,10.0,0.0,-4.807692307692308 -759,11.0,3.0,0.0,4.191255364806866 -759,11.0,11.0,6.573961583776156,-24.424167659260668 -759,11.0,12.0,0.0,7.142857142857143 -759,11.0,13.0,-1.5265676088395577,3.1734252729654173 -759,11.0,14.0,-3.0953961826564296,6.097275864326261 -759,11.0,15.0,-1.9519977922801688,4.104359379111847 -759,12.0,11.0,0.0,7.142857142857143 -759,12.0,12.0,0.0,-7.142857142857143 -759,13.0,11.0,-1.5265676088395577,3.1734252729654173 -759,13.0,13.0,4.01751987283902,-5.424299332335067 -759,13.0,14.0,-2.4909522639994623,2.250874059369649 -759,14.0,11.0,-3.0953961826564296,6.097275864326261 -759,14.0,13.0,-2.4909522639994623,2.250874059369649 -759,14.0,14.0,9.365498545964757,-16.01163373210796 -759,14.0,17.0,-1.8108011504072024,3.687418931630696 -759,14.0,22.0,-1.9683489489016612,3.976064876781356 -759,15.0,11.0,-1.9519977922801688,4.104359379111847 -759,15.0,15.0,3.271064728633931,-8.94513365126506 -759,15.0,16.0,-1.3190669363537617,4.8407742721532125 -759,16.0,9.0,-3.956039125715353,10.317447719844054 -759,16.0,15.0,-1.3190669363537617,4.8407742721532125 -759,16.0,16.0,5.275106062069114,-15.158221991997266 -759,17.0,14.0,-1.8108011504072024,3.687418931630696 -759,17.0,17.0,4.886487584415919,-9.906177730909668 -759,17.0,18.0,-3.0756864340087167,6.218758799278971 -759,18.0,17.0,-3.0756864340087167,6.218758799278971 -759,18.0,18.0,8.958039375185187,-17.98346468163191 -759,18.0,19.0,-5.88235294117647,11.76470588235294 -759,19.0,9.0,-1.7848303152666305,3.98535828943083 -759,19.0,18.0,-5.88235294117647,11.76470588235294 -759,19.0,19.0,7.6671832564431,-15.75006417178377 -759,20.0,9.0,-5.101853820159654,10.98071411292983 -759,20.0,20.0,21.876495189895888,-45.10843276170355 -759,20.0,21.0,-16.774641369736234,34.127718648773715 -759,21.0,9.0,-2.619319553382597,5.400770303329455 -759,21.0,20.0,-16.774641369736234,34.127718648773715 -759,21.0,21.0,21.93449907537439,-43.48289181517921 -759,21.0,23.0,-2.5405381522555563,3.95440286307604 -759,22.0,14.0,-1.9683489489016612,3.976064876781356 -759,22.0,22.0,3.429754555384988,-6.965303617315433 -759,22.0,23.0,-1.4614056064833263,2.989238740534077 -759,23.0,21.0,-2.5405381522555563,3.95440286307604 -759,23.0,22.0,-1.4614056064833263,2.989238740534077 -759,23.0,23.0,5.311836702613133,-9.188263657315172 -759,23.0,24.0,-1.3098929438742493,2.287622053705056 -759,24.0,23.0,-1.3098929438742493,2.287622053705056 -759,24.0,24.0,4.495715080321987,-7.864978761969621 -759,24.0,25.0,-1.2165301194494855,1.8171440463475024 -759,24.0,26.0,-1.9692920169982515,3.760212661917064 -759,25.0,24.0,-1.2165301194494855,1.8171440463475024 -759,25.0,25.0,1.2165301194494855,-1.8171440463475024 -759,26.0,24.0,-1.9692920169982515,3.760212661917064 -759,26.0,26.0,3.652281470778589,-9.46044252232512 -759,26.0,27.0,0.0,2.608731947574922 -759,26.0,28.0,-0.99553355095268,1.881005840357816 -759,26.0,29.0,-0.6874559028276572,1.293971494797717 -759,27.0,5.0,-4.362844058012917,15.463571542897856 -759,27.0,7.0,-1.4439790613954469,4.540814658476248 -759,27.0,26.0,0.0,2.608731947574922 -759,27.0,27.0,5.806823119408364,-22.67145722159613 -759,28.0,26.0,-0.99553355095268,1.881005840357816 -759,28.0,28.0,1.9075867579849564,-3.604364401207048 -759,28.0,29.0,-0.9120532070322764,1.7233585608492326 -759,29.0,26.0,-0.6874559028276572,1.293971494797717 -759,29.0,28.0,-0.9120532070322764,1.7233585608492326 -759,29.0,29.0,1.5995091098599337,-3.0173300556469496 -760,0.0,0.0,6.765516048652632,-21.23160167089863 -760,0.0,1.0,-5.224646179885656,15.646726840803398 -760,0.0,2.0,-1.5408698687669766,5.631674830095234 -760,1.0,0.0,-5.224646179885656,15.646726840803398 -760,1.0,1.0,9.75228216552403,-30.648662892676068 -760,1.0,3.0,-1.7055303166990268,5.1973792282565086 -760,1.0,4.0,-1.1359607881738778,4.772479328281356 -760,1.0,5.0,-1.6861448807654689,5.116477495334806 -760,2.0,0.0,-1.5408698687669766,5.631674830095234 -760,2.0,2.0,9.736318911079088,-29.13794745915803 -760,2.0,3.0,-8.19544904231211,23.5308726290628 -760,3.0,1.0,-1.7055303166990268,5.1973792282565086 -760,3.0,2.0,-8.19544904231211,23.5308726290628 -760,3.0,3.0,16.314103089185693,-55.509410535254254 -760,3.0,5.0,-6.413123730174556,22.31120356548123 -760,3.0,11.0,0.0,4.191255364806866 -760,4.0,1.0,-1.1359607881738778,4.772479328281356 -760,4.0,4.0,4.089980824135861,-12.190647245055052 -760,4.0,6.0,-2.954020035961983,7.449267916773697 -760,5.0,1.0,-1.6861448807654689,5.116477495334806 -760,5.0,3.0,-6.413123730174556,22.31120356548123 -760,5.0,5.0,22.341631269034565,-82.8291478657789 -760,5.0,6.0,-3.590210423980992,11.02611441072814 -760,5.0,7.0,-6.289308176100628,22.0125786163522 -760,5.0,8.0,0.0,4.915840805411357 -760,5.0,9.0,0.0,1.8561002591115965 -760,5.0,27.0,-4.362844058012917,15.463571542897856 -760,6.0,4.0,-2.954020035961983,7.449267916773697 -760,6.0,5.0,-3.590210423980992,11.02611441072814 -760,6.0,6.0,6.544230459942975,-18.45668232750184 -760,7.0,5.0,-6.289308176100628,22.0125786163522 -760,7.0,7.0,7.733287237496075,-26.527493274828448 -760,7.0,27.0,-1.4439790613954469,4.540814658476248 -760,8.0,5.0,0.0,4.915840805411357 -760,8.0,8.0,0.0,-18.706293706293707 -760,8.0,9.0,0.0,9.090909090909092 -760,8.0,10.0,0.0,4.807692307692308 -760,9.0,5.0,0.0,1.8561002591115965 -760,9.0,8.0,0.0,9.090909090909092 -760,9.0,9.0,13.462042814524237,-41.3837606675224 -760,9.0,16.0,-3.956039125715353,10.317447719844054 -760,9.0,19.0,-1.7848303152666305,3.98535828943083 -760,9.0,20.0,-5.101853820159654,10.98071411292983 -760,9.0,21.0,-2.619319553382597,5.400770303329455 -760,10.0,8.0,0.0,4.807692307692308 -760,10.0,10.0,0.0,-4.807692307692308 -760,11.0,3.0,0.0,4.191255364806866 -760,11.0,11.0,6.573961583776156,-24.424167659260668 -760,11.0,12.0,0.0,7.142857142857143 -760,11.0,13.0,-1.5265676088395577,3.1734252729654173 -760,11.0,14.0,-3.0953961826564296,6.097275864326261 -760,11.0,15.0,-1.9519977922801688,4.104359379111847 -760,12.0,11.0,0.0,7.142857142857143 -760,12.0,12.0,0.0,-7.142857142857143 -760,13.0,11.0,-1.5265676088395577,3.1734252729654173 -760,13.0,13.0,4.01751987283902,-5.424299332335067 -760,13.0,14.0,-2.4909522639994623,2.250874059369649 -760,14.0,11.0,-3.0953961826564296,6.097275864326261 -760,14.0,13.0,-2.4909522639994623,2.250874059369649 -760,14.0,14.0,9.365498545964757,-16.01163373210796 -760,14.0,17.0,-1.8108011504072024,3.687418931630696 -760,14.0,22.0,-1.9683489489016612,3.976064876781356 -760,15.0,11.0,-1.9519977922801688,4.104359379111847 -760,15.0,15.0,3.271064728633931,-8.94513365126506 -760,15.0,16.0,-1.3190669363537617,4.8407742721532125 -760,16.0,9.0,-3.956039125715353,10.317447719844054 -760,16.0,15.0,-1.3190669363537617,4.8407742721532125 -760,16.0,16.0,5.275106062069114,-15.158221991997266 -760,17.0,14.0,-1.8108011504072024,3.687418931630696 -760,17.0,17.0,4.886487584415919,-9.906177730909668 -760,17.0,18.0,-3.0756864340087167,6.218758799278971 -760,18.0,17.0,-3.0756864340087167,6.218758799278971 -760,18.0,18.0,8.958039375185187,-17.98346468163191 -760,18.0,19.0,-5.88235294117647,11.76470588235294 -760,19.0,9.0,-1.7848303152666305,3.98535828943083 -760,19.0,18.0,-5.88235294117647,11.76470588235294 -760,19.0,19.0,7.6671832564431,-15.75006417178377 -760,20.0,9.0,-5.101853820159654,10.98071411292983 -760,20.0,20.0,21.876495189895888,-45.10843276170355 -760,20.0,21.0,-16.774641369736234,34.127718648773715 -760,21.0,9.0,-2.619319553382597,5.400770303329455 -760,21.0,20.0,-16.774641369736234,34.127718648773715 -760,21.0,21.0,21.93449907537439,-43.48289181517921 -760,21.0,23.0,-2.5405381522555563,3.95440286307604 -760,22.0,14.0,-1.9683489489016612,3.976064876781356 -760,22.0,22.0,3.429754555384988,-6.965303617315433 -760,22.0,23.0,-1.4614056064833263,2.989238740534077 -760,23.0,21.0,-2.5405381522555563,3.95440286307604 -760,23.0,22.0,-1.4614056064833263,2.989238740534077 -760,23.0,23.0,5.311836702613133,-9.188263657315172 -760,23.0,24.0,-1.3098929438742493,2.287622053705056 -760,24.0,23.0,-1.3098929438742493,2.287622053705056 -760,24.0,24.0,4.495715080321987,-7.864978761969621 -760,24.0,25.0,-1.2165301194494855,1.8171440463475024 -760,24.0,26.0,-1.9692920169982515,3.760212661917064 -760,25.0,24.0,-1.2165301194494855,1.8171440463475024 -760,25.0,25.0,1.2165301194494855,-1.8171440463475024 -760,26.0,24.0,-1.9692920169982515,3.760212661917064 -760,26.0,26.0,3.652281470778589,-9.46044252232512 -760,26.0,27.0,0.0,2.608731947574922 -760,26.0,28.0,-0.99553355095268,1.881005840357816 -760,26.0,29.0,-0.6874559028276572,1.293971494797717 -760,27.0,5.0,-4.362844058012917,15.463571542897856 -760,27.0,7.0,-1.4439790613954469,4.540814658476248 -760,27.0,26.0,0.0,2.608731947574922 -760,27.0,27.0,5.806823119408364,-22.67145722159613 -760,28.0,26.0,-0.99553355095268,1.881005840357816 -760,28.0,28.0,0.99553355095268,-1.881005840357816 -760,29.0,26.0,-0.6874559028276572,1.293971494797717 -760,29.0,29.0,0.6874559028276572,-1.293971494797717 -761,0.0,0.0,6.765516048652632,-21.23160167089863 -761,0.0,1.0,-5.224646179885656,15.646726840803398 -761,0.0,2.0,-1.5408698687669766,5.631674830095234 -761,1.0,0.0,-5.224646179885656,15.646726840803398 -761,1.0,1.0,9.75228216552403,-30.648662892676068 -761,1.0,3.0,-1.7055303166990268,5.1973792282565086 -761,1.0,4.0,-1.1359607881738778,4.772479328281356 -761,1.0,5.0,-1.6861448807654689,5.116477495334806 -761,2.0,0.0,-1.5408698687669766,5.631674830095234 -761,2.0,2.0,9.736318911079088,-29.13794745915803 -761,2.0,3.0,-8.19544904231211,23.5308726290628 -761,3.0,1.0,-1.7055303166990268,5.1973792282565086 -761,3.0,2.0,-8.19544904231211,23.5308726290628 -761,3.0,3.0,16.314103089185693,-55.509410535254254 -761,3.0,5.0,-6.413123730174556,22.31120356548123 -761,3.0,11.0,0.0,4.191255364806866 -761,4.0,1.0,-1.1359607881738778,4.772479328281356 -761,4.0,4.0,4.089980824135861,-12.190647245055052 -761,4.0,6.0,-2.954020035961983,7.449267916773697 -761,5.0,1.0,-1.6861448807654689,5.116477495334806 -761,5.0,3.0,-6.413123730174556,22.31120356548123 -761,5.0,5.0,18.75142084505357,-71.81153345505078 -761,5.0,7.0,-6.289308176100628,22.0125786163522 -761,5.0,8.0,0.0,4.915840805411357 -761,5.0,9.0,0.0,1.8561002591115965 -761,5.0,27.0,-4.362844058012917,15.463571542897856 -761,6.0,4.0,-2.954020035961983,7.449267916773697 -761,6.0,6.0,2.954020035961983,-7.439067916773697 -761,7.0,5.0,-6.289308176100628,22.0125786163522 -761,7.0,7.0,7.733287237496075,-26.527493274828448 -761,7.0,27.0,-1.4439790613954469,4.540814658476248 -761,8.0,5.0,0.0,4.915840805411357 -761,8.0,8.0,0.0,-18.706293706293707 -761,8.0,9.0,0.0,9.090909090909092 -761,8.0,10.0,0.0,4.807692307692308 -761,9.0,5.0,0.0,1.8561002591115965 -761,9.0,8.0,0.0,9.090909090909092 -761,9.0,9.0,13.462042814524237,-41.3837606675224 -761,9.0,16.0,-3.956039125715353,10.317447719844054 -761,9.0,19.0,-1.7848303152666305,3.98535828943083 -761,9.0,20.0,-5.101853820159654,10.98071411292983 -761,9.0,21.0,-2.619319553382597,5.400770303329455 -761,10.0,8.0,0.0,4.807692307692308 -761,10.0,10.0,0.0,-4.807692307692308 -761,11.0,3.0,0.0,4.191255364806866 -761,11.0,11.0,6.573961583776156,-24.424167659260668 -761,11.0,12.0,0.0,7.142857142857143 -761,11.0,13.0,-1.5265676088395577,3.1734252729654173 -761,11.0,14.0,-3.0953961826564296,6.097275864326261 -761,11.0,15.0,-1.9519977922801688,4.104359379111847 -761,12.0,11.0,0.0,7.142857142857143 -761,12.0,12.0,0.0,-7.142857142857143 -761,13.0,11.0,-1.5265676088395577,3.1734252729654173 -761,13.0,13.0,4.01751987283902,-5.424299332335067 -761,13.0,14.0,-2.4909522639994623,2.250874059369649 -761,14.0,11.0,-3.0953961826564296,6.097275864326261 -761,14.0,13.0,-2.4909522639994623,2.250874059369649 -761,14.0,14.0,9.365498545964757,-16.01163373210796 -761,14.0,17.0,-1.8108011504072024,3.687418931630696 -761,14.0,22.0,-1.9683489489016612,3.976064876781356 -761,15.0,11.0,-1.9519977922801688,4.104359379111847 -761,15.0,15.0,3.271064728633931,-8.94513365126506 -761,15.0,16.0,-1.3190669363537617,4.8407742721532125 -761,16.0,9.0,-3.956039125715353,10.317447719844054 -761,16.0,15.0,-1.3190669363537617,4.8407742721532125 -761,16.0,16.0,5.275106062069114,-15.158221991997266 -761,17.0,14.0,-1.8108011504072024,3.687418931630696 -761,17.0,17.0,4.886487584415919,-9.906177730909668 -761,17.0,18.0,-3.0756864340087167,6.218758799278971 -761,18.0,17.0,-3.0756864340087167,6.218758799278971 -761,18.0,18.0,8.958039375185187,-17.98346468163191 -761,18.0,19.0,-5.88235294117647,11.76470588235294 -761,19.0,9.0,-1.7848303152666305,3.98535828943083 -761,19.0,18.0,-5.88235294117647,11.76470588235294 -761,19.0,19.0,7.6671832564431,-15.75006417178377 -761,20.0,9.0,-5.101853820159654,10.98071411292983 -761,20.0,20.0,21.876495189895888,-45.10843276170355 -761,20.0,21.0,-16.774641369736234,34.127718648773715 -761,21.0,9.0,-2.619319553382597,5.400770303329455 -761,21.0,20.0,-16.774641369736234,34.127718648773715 -761,21.0,21.0,21.93449907537439,-43.48289181517921 -761,21.0,23.0,-2.5405381522555563,3.95440286307604 -761,22.0,14.0,-1.9683489489016612,3.976064876781356 -761,22.0,22.0,3.429754555384988,-6.965303617315433 -761,22.0,23.0,-1.4614056064833263,2.989238740534077 -761,23.0,21.0,-2.5405381522555563,3.95440286307604 -761,23.0,22.0,-1.4614056064833263,2.989238740534077 -761,23.0,23.0,5.311836702613133,-9.188263657315172 -761,23.0,24.0,-1.3098929438742493,2.287622053705056 -761,24.0,23.0,-1.3098929438742493,2.287622053705056 -761,24.0,24.0,4.495715080321987,-7.864978761969621 -761,24.0,25.0,-1.2165301194494855,1.8171440463475024 -761,24.0,26.0,-1.9692920169982515,3.760212661917064 -761,25.0,24.0,-1.2165301194494855,1.8171440463475024 -761,25.0,25.0,1.2165301194494855,-1.8171440463475024 -761,26.0,24.0,-1.9692920169982515,3.760212661917064 -761,26.0,26.0,3.652281470778589,-9.46044252232512 -761,26.0,27.0,0.0,2.608731947574922 -761,26.0,28.0,-0.99553355095268,1.881005840357816 -761,26.0,29.0,-0.6874559028276572,1.293971494797717 -761,27.0,5.0,-4.362844058012917,15.463571542897856 -761,27.0,7.0,-1.4439790613954469,4.540814658476248 -761,27.0,26.0,0.0,2.608731947574922 -761,27.0,27.0,5.806823119408364,-22.67145722159613 -761,28.0,26.0,-0.99553355095268,1.881005840357816 -761,28.0,28.0,1.9075867579849564,-3.604364401207048 -761,28.0,29.0,-0.9120532070322764,1.7233585608492326 -761,29.0,26.0,-0.6874559028276572,1.293971494797717 -761,29.0,28.0,-0.9120532070322764,1.7233585608492326 -761,29.0,29.0,1.5995091098599337,-3.0173300556469496 -762,0.0,0.0,6.765516048652632,-21.23160167089863 -762,0.0,1.0,-5.224646179885656,15.646726840803398 -762,0.0,2.0,-1.5408698687669766,5.631674830095234 -762,1.0,0.0,-5.224646179885656,15.646726840803398 -762,1.0,1.0,9.75228216552403,-30.648662892676068 -762,1.0,3.0,-1.7055303166990268,5.1973792282565086 -762,1.0,4.0,-1.1359607881738778,4.772479328281356 -762,1.0,5.0,-1.6861448807654689,5.116477495334806 -762,2.0,0.0,-1.5408698687669766,5.631674830095234 -762,2.0,2.0,9.736318911079088,-29.13794745915803 -762,2.0,3.0,-8.19544904231211,23.5308726290628 -762,3.0,1.0,-1.7055303166990268,5.1973792282565086 -762,3.0,2.0,-8.19544904231211,23.5308726290628 -762,3.0,3.0,16.314103089185693,-55.509410535254254 -762,3.0,5.0,-6.413123730174556,22.31120356548123 -762,3.0,11.0,0.0,4.191255364806866 -762,4.0,1.0,-1.1359607881738778,4.772479328281356 -762,4.0,4.0,4.089980824135861,-12.190647245055052 -762,4.0,6.0,-2.954020035961983,7.449267916773697 -762,5.0,1.0,-1.6861448807654689,5.116477495334806 -762,5.0,3.0,-6.413123730174556,22.31120356548123 -762,5.0,5.0,22.341631269034565,-82.8291478657789 -762,5.0,6.0,-3.590210423980992,11.02611441072814 -762,5.0,7.0,-6.289308176100628,22.0125786163522 -762,5.0,8.0,0.0,4.915840805411357 -762,5.0,9.0,0.0,1.8561002591115965 -762,5.0,27.0,-4.362844058012917,15.463571542897856 -762,6.0,4.0,-2.954020035961983,7.449267916773697 -762,6.0,5.0,-3.590210423980992,11.02611441072814 -762,6.0,6.0,6.544230459942975,-18.45668232750184 -762,7.0,5.0,-6.289308176100628,22.0125786163522 -762,7.0,7.0,7.733287237496075,-26.527493274828448 -762,7.0,27.0,-1.4439790613954469,4.540814658476248 -762,8.0,5.0,0.0,4.915840805411357 -762,8.0,8.0,0.0,-18.706293706293707 -762,8.0,9.0,0.0,9.090909090909092 -762,8.0,10.0,0.0,4.807692307692308 -762,9.0,5.0,0.0,1.8561002591115965 -762,9.0,8.0,0.0,9.090909090909092 -762,9.0,9.0,13.462042814524237,-41.3837606675224 -762,9.0,16.0,-3.956039125715353,10.317447719844054 -762,9.0,19.0,-1.7848303152666305,3.98535828943083 -762,9.0,20.0,-5.101853820159654,10.98071411292983 -762,9.0,21.0,-2.619319553382597,5.400770303329455 -762,10.0,8.0,0.0,4.807692307692308 -762,10.0,10.0,0.0,-4.807692307692308 -762,11.0,3.0,0.0,4.191255364806866 -762,11.0,11.0,6.573961583776156,-24.424167659260668 -762,11.0,12.0,0.0,7.142857142857143 -762,11.0,13.0,-1.5265676088395577,3.1734252729654173 -762,11.0,14.0,-3.0953961826564296,6.097275864326261 -762,11.0,15.0,-1.9519977922801688,4.104359379111847 -762,12.0,11.0,0.0,7.142857142857143 -762,12.0,12.0,0.0,-7.142857142857143 -762,13.0,11.0,-1.5265676088395577,3.1734252729654173 -762,13.0,13.0,4.01751987283902,-5.424299332335067 -762,13.0,14.0,-2.4909522639994623,2.250874059369649 -762,14.0,11.0,-3.0953961826564296,6.097275864326261 -762,14.0,13.0,-2.4909522639994623,2.250874059369649 -762,14.0,14.0,9.365498545964757,-16.01163373210796 -762,14.0,17.0,-1.8108011504072024,3.687418931630696 -762,14.0,22.0,-1.9683489489016612,3.976064876781356 -762,15.0,11.0,-1.9519977922801688,4.104359379111847 -762,15.0,15.0,3.271064728633931,-8.94513365126506 -762,15.0,16.0,-1.3190669363537617,4.8407742721532125 -762,16.0,9.0,-3.956039125715353,10.317447719844054 -762,16.0,15.0,-1.3190669363537617,4.8407742721532125 -762,16.0,16.0,5.275106062069114,-15.158221991997266 -762,17.0,14.0,-1.8108011504072024,3.687418931630696 -762,17.0,17.0,4.886487584415919,-9.906177730909668 -762,17.0,18.0,-3.0756864340087167,6.218758799278971 -762,18.0,17.0,-3.0756864340087167,6.218758799278971 -762,18.0,18.0,8.958039375185187,-17.98346468163191 -762,18.0,19.0,-5.88235294117647,11.76470588235294 -762,19.0,9.0,-1.7848303152666305,3.98535828943083 -762,19.0,18.0,-5.88235294117647,11.76470588235294 -762,19.0,19.0,7.6671832564431,-15.75006417178377 -762,20.0,9.0,-5.101853820159654,10.98071411292983 -762,20.0,20.0,21.876495189895888,-45.10843276170355 -762,20.0,21.0,-16.774641369736234,34.127718648773715 -762,21.0,9.0,-2.619319553382597,5.400770303329455 -762,21.0,20.0,-16.774641369736234,34.127718648773715 -762,21.0,21.0,21.93449907537439,-43.48289181517921 -762,21.0,23.0,-2.5405381522555563,3.95440286307604 -762,22.0,14.0,-1.9683489489016612,3.976064876781356 -762,22.0,22.0,3.429754555384988,-6.965303617315433 -762,22.0,23.0,-1.4614056064833263,2.989238740534077 -762,23.0,21.0,-2.5405381522555563,3.95440286307604 -762,23.0,22.0,-1.4614056064833263,2.989238740534077 -762,23.0,23.0,5.311836702613133,-9.188263657315172 -762,23.0,24.0,-1.3098929438742493,2.287622053705056 -762,24.0,23.0,-1.3098929438742493,2.287622053705056 -762,24.0,24.0,4.495715080321987,-7.864978761969621 -762,24.0,25.0,-1.2165301194494855,1.8171440463475024 -762,24.0,26.0,-1.9692920169982515,3.760212661917064 -762,25.0,24.0,-1.2165301194494855,1.8171440463475024 -762,25.0,25.0,1.2165301194494855,-1.8171440463475024 -762,26.0,24.0,-1.9692920169982515,3.760212661917064 -762,26.0,26.0,3.652281470778589,-9.46044252232512 -762,26.0,27.0,0.0,2.608731947574922 -762,26.0,28.0,-0.99553355095268,1.881005840357816 -762,26.0,29.0,-0.6874559028276572,1.293971494797717 -762,27.0,5.0,-4.362844058012917,15.463571542897856 -762,27.0,7.0,-1.4439790613954469,4.540814658476248 -762,27.0,26.0,0.0,2.608731947574922 -762,27.0,27.0,5.806823119408364,-22.67145722159613 -762,28.0,26.0,-0.99553355095268,1.881005840357816 -762,28.0,28.0,1.9075867579849564,-3.604364401207048 -762,28.0,29.0,-0.9120532070322764,1.7233585608492326 -762,29.0,26.0,-0.6874559028276572,1.293971494797717 -762,29.0,28.0,-0.9120532070322764,1.7233585608492326 -762,29.0,29.0,1.5995091098599337,-3.0173300556469496 -763,0.0,0.0,6.765516048652632,-21.23160167089863 -763,0.0,1.0,-5.224646179885656,15.646726840803398 -763,0.0,2.0,-1.5408698687669766,5.631674830095234 -763,1.0,0.0,-5.224646179885656,15.646726840803398 -763,1.0,1.0,9.75228216552403,-30.648662892676068 -763,1.0,3.0,-1.7055303166990268,5.1973792282565086 -763,1.0,4.0,-1.1359607881738778,4.772479328281356 -763,1.0,5.0,-1.6861448807654689,5.116477495334806 -763,2.0,0.0,-1.5408698687669766,5.631674830095234 -763,2.0,2.0,9.736318911079088,-29.13794745915803 -763,2.0,3.0,-8.19544904231211,23.5308726290628 -763,3.0,1.0,-1.7055303166990268,5.1973792282565086 -763,3.0,2.0,-8.19544904231211,23.5308726290628 -763,3.0,3.0,16.314103089185693,-55.509410535254254 -763,3.0,5.0,-6.413123730174556,22.31120356548123 -763,3.0,11.0,0.0,4.191255364806866 -763,4.0,1.0,-1.1359607881738778,4.772479328281356 -763,4.0,4.0,4.089980824135861,-12.190647245055052 -763,4.0,6.0,-2.954020035961983,7.449267916773697 -763,5.0,1.0,-1.6861448807654689,5.116477495334806 -763,5.0,3.0,-6.413123730174556,22.31120356548123 -763,5.0,5.0,16.052323092933932,-60.8210692494267 -763,5.0,6.0,-3.590210423980992,11.02611441072814 -763,5.0,8.0,0.0,4.915840805411357 -763,5.0,9.0,0.0,1.8561002591115965 -763,5.0,27.0,-4.362844058012917,15.463571542897856 -763,6.0,4.0,-2.954020035961983,7.449267916773697 -763,6.0,5.0,-3.590210423980992,11.02611441072814 -763,6.0,6.0,6.544230459942975,-18.45668232750184 -763,7.0,7.0,1.4439790613954469,-4.519414658476248 -763,7.0,27.0,-1.4439790613954469,4.540814658476248 -763,8.0,5.0,0.0,4.915840805411357 -763,8.0,8.0,0.0,-18.706293706293707 -763,8.0,9.0,0.0,9.090909090909092 -763,8.0,10.0,0.0,4.807692307692308 -763,9.0,5.0,0.0,1.8561002591115965 -763,9.0,8.0,0.0,9.090909090909092 -763,9.0,9.0,13.462042814524237,-41.3837606675224 -763,9.0,16.0,-3.956039125715353,10.317447719844054 -763,9.0,19.0,-1.7848303152666305,3.98535828943083 -763,9.0,20.0,-5.101853820159654,10.98071411292983 -763,9.0,21.0,-2.619319553382597,5.400770303329455 -763,10.0,8.0,0.0,4.807692307692308 -763,10.0,10.0,0.0,-4.807692307692308 -763,11.0,3.0,0.0,4.191255364806866 -763,11.0,11.0,6.573961583776156,-24.424167659260668 -763,11.0,12.0,0.0,7.142857142857143 -763,11.0,13.0,-1.5265676088395577,3.1734252729654173 -763,11.0,14.0,-3.0953961826564296,6.097275864326261 -763,11.0,15.0,-1.9519977922801688,4.104359379111847 -763,12.0,11.0,0.0,7.142857142857143 -763,12.0,12.0,0.0,-7.142857142857143 -763,13.0,11.0,-1.5265676088395577,3.1734252729654173 -763,13.0,13.0,4.01751987283902,-5.424299332335067 -763,13.0,14.0,-2.4909522639994623,2.250874059369649 -763,14.0,11.0,-3.0953961826564296,6.097275864326261 -763,14.0,13.0,-2.4909522639994623,2.250874059369649 -763,14.0,14.0,9.365498545964757,-16.01163373210796 -763,14.0,17.0,-1.8108011504072024,3.687418931630696 -763,14.0,22.0,-1.9683489489016612,3.976064876781356 -763,15.0,11.0,-1.9519977922801688,4.104359379111847 -763,15.0,15.0,3.271064728633931,-8.94513365126506 -763,15.0,16.0,-1.3190669363537617,4.8407742721532125 -763,16.0,9.0,-3.956039125715353,10.317447719844054 -763,16.0,15.0,-1.3190669363537617,4.8407742721532125 -763,16.0,16.0,5.275106062069114,-15.158221991997266 -763,17.0,14.0,-1.8108011504072024,3.687418931630696 -763,17.0,17.0,4.886487584415919,-9.906177730909668 -763,17.0,18.0,-3.0756864340087167,6.218758799278971 -763,18.0,17.0,-3.0756864340087167,6.218758799278971 -763,18.0,18.0,8.958039375185187,-17.98346468163191 -763,18.0,19.0,-5.88235294117647,11.76470588235294 -763,19.0,9.0,-1.7848303152666305,3.98535828943083 -763,19.0,18.0,-5.88235294117647,11.76470588235294 -763,19.0,19.0,7.6671832564431,-15.75006417178377 -763,20.0,9.0,-5.101853820159654,10.98071411292983 -763,20.0,20.0,21.876495189895888,-45.10843276170355 -763,20.0,21.0,-16.774641369736234,34.127718648773715 -763,21.0,9.0,-2.619319553382597,5.400770303329455 -763,21.0,20.0,-16.774641369736234,34.127718648773715 -763,21.0,21.0,21.93449907537439,-43.48289181517921 -763,21.0,23.0,-2.5405381522555563,3.95440286307604 -763,22.0,14.0,-1.9683489489016612,3.976064876781356 -763,22.0,22.0,3.429754555384988,-6.965303617315433 -763,22.0,23.0,-1.4614056064833263,2.989238740534077 -763,23.0,21.0,-2.5405381522555563,3.95440286307604 -763,23.0,22.0,-1.4614056064833263,2.989238740534077 -763,23.0,23.0,5.311836702613133,-9.188263657315172 -763,23.0,24.0,-1.3098929438742493,2.287622053705056 -763,24.0,23.0,-1.3098929438742493,2.287622053705056 -763,24.0,24.0,4.495715080321987,-7.864978761969621 -763,24.0,25.0,-1.2165301194494855,1.8171440463475024 -763,24.0,26.0,-1.9692920169982515,3.760212661917064 -763,25.0,24.0,-1.2165301194494855,1.8171440463475024 -763,25.0,25.0,1.2165301194494855,-1.8171440463475024 -763,26.0,24.0,-1.9692920169982515,3.760212661917064 -763,26.0,26.0,2.656747919825909,-7.579436681967305 -763,26.0,27.0,0.0,2.608731947574922 -763,26.0,29.0,-0.6874559028276572,1.293971494797717 -763,27.0,5.0,-4.362844058012917,15.463571542897856 -763,27.0,7.0,-1.4439790613954469,4.540814658476248 -763,27.0,26.0,0.0,2.608731947574922 -763,27.0,27.0,5.806823119408364,-22.67145722159613 -763,28.0,28.0,0.9120532070322764,-1.7233585608492326 -763,28.0,29.0,-0.9120532070322764,1.7233585608492326 -763,29.0,26.0,-0.6874559028276572,1.293971494797717 -763,29.0,28.0,-0.9120532070322764,1.7233585608492326 -763,29.0,29.0,1.5995091098599337,-3.0173300556469496 -764,0.0,0.0,6.765516048652632,-21.23160167089863 -764,0.0,1.0,-5.224646179885656,15.646726840803398 -764,0.0,2.0,-1.5408698687669766,5.631674830095234 -764,1.0,0.0,-5.224646179885656,15.646726840803398 -764,1.0,1.0,9.75228216552403,-30.648662892676068 -764,1.0,3.0,-1.7055303166990268,5.1973792282565086 -764,1.0,4.0,-1.1359607881738778,4.772479328281356 -764,1.0,5.0,-1.6861448807654689,5.116477495334806 -764,2.0,0.0,-1.5408698687669766,5.631674830095234 -764,2.0,2.0,9.736318911079088,-29.13794745915803 -764,2.0,3.0,-8.19544904231211,23.5308726290628 -764,3.0,1.0,-1.7055303166990268,5.1973792282565086 -764,3.0,2.0,-8.19544904231211,23.5308726290628 -764,3.0,3.0,16.314103089185693,-55.509410535254254 -764,3.0,5.0,-6.413123730174556,22.31120356548123 -764,3.0,11.0,0.0,4.191255364806866 -764,4.0,1.0,-1.1359607881738778,4.772479328281356 -764,4.0,4.0,4.089980824135861,-12.190647245055052 -764,4.0,6.0,-2.954020035961983,7.449267916773697 -764,5.0,1.0,-1.6861448807654689,5.116477495334806 -764,5.0,3.0,-6.413123730174556,22.31120356548123 -764,5.0,5.0,18.75142084505357,-71.81153345505078 -764,5.0,7.0,-6.289308176100628,22.0125786163522 -764,5.0,8.0,0.0,4.915840805411357 -764,5.0,9.0,0.0,1.8561002591115965 -764,5.0,27.0,-4.362844058012917,15.463571542897856 -764,6.0,4.0,-2.954020035961983,7.449267916773697 -764,6.0,6.0,2.954020035961983,-7.439067916773697 -764,7.0,5.0,-6.289308176100628,22.0125786163522 -764,7.0,7.0,7.733287237496075,-26.527493274828448 -764,7.0,27.0,-1.4439790613954469,4.540814658476248 -764,8.0,5.0,0.0,4.915840805411357 -764,8.0,8.0,0.0,-18.706293706293707 -764,8.0,9.0,0.0,9.090909090909092 -764,8.0,10.0,0.0,4.807692307692308 -764,9.0,5.0,0.0,1.8561002591115965 -764,9.0,8.0,0.0,9.090909090909092 -764,9.0,9.0,13.462042814524237,-41.3837606675224 -764,9.0,16.0,-3.956039125715353,10.317447719844054 -764,9.0,19.0,-1.7848303152666305,3.98535828943083 -764,9.0,20.0,-5.101853820159654,10.98071411292983 -764,9.0,21.0,-2.619319553382597,5.400770303329455 -764,10.0,8.0,0.0,4.807692307692308 -764,10.0,10.0,0.0,-4.807692307692308 -764,11.0,3.0,0.0,4.191255364806866 -764,11.0,11.0,4.621963791495987,-20.31980828014882 -764,11.0,12.0,0.0,7.142857142857143 -764,11.0,13.0,-1.5265676088395577,3.1734252729654173 -764,11.0,14.0,-3.0953961826564296,6.097275864326261 -764,12.0,11.0,0.0,7.142857142857143 -764,12.0,12.0,0.0,-7.142857142857143 -764,13.0,11.0,-1.5265676088395577,3.1734252729654173 -764,13.0,13.0,4.01751987283902,-5.424299332335067 -764,13.0,14.0,-2.4909522639994623,2.250874059369649 -764,14.0,11.0,-3.0953961826564296,6.097275864326261 -764,14.0,13.0,-2.4909522639994623,2.250874059369649 -764,14.0,14.0,9.365498545964757,-16.01163373210796 -764,14.0,17.0,-1.8108011504072024,3.687418931630696 -764,14.0,22.0,-1.9683489489016612,3.976064876781356 -764,15.0,15.0,1.3190669363537617,-4.8407742721532125 -764,15.0,16.0,-1.3190669363537617,4.8407742721532125 -764,16.0,9.0,-3.956039125715353,10.317447719844054 -764,16.0,15.0,-1.3190669363537617,4.8407742721532125 -764,16.0,16.0,5.275106062069114,-15.158221991997266 -764,17.0,14.0,-1.8108011504072024,3.687418931630696 -764,17.0,17.0,4.886487584415919,-9.906177730909668 -764,17.0,18.0,-3.0756864340087167,6.218758799278971 -764,18.0,17.0,-3.0756864340087167,6.218758799278971 -764,18.0,18.0,8.958039375185187,-17.98346468163191 -764,18.0,19.0,-5.88235294117647,11.76470588235294 -764,19.0,9.0,-1.7848303152666305,3.98535828943083 -764,19.0,18.0,-5.88235294117647,11.76470588235294 -764,19.0,19.0,7.6671832564431,-15.75006417178377 -764,20.0,9.0,-5.101853820159654,10.98071411292983 -764,20.0,20.0,21.876495189895888,-45.10843276170355 -764,20.0,21.0,-16.774641369736234,34.127718648773715 -764,21.0,9.0,-2.619319553382597,5.400770303329455 -764,21.0,20.0,-16.774641369736234,34.127718648773715 -764,21.0,21.0,21.93449907537439,-43.48289181517921 -764,21.0,23.0,-2.5405381522555563,3.95440286307604 -764,22.0,14.0,-1.9683489489016612,3.976064876781356 -764,22.0,22.0,3.429754555384988,-6.965303617315433 -764,22.0,23.0,-1.4614056064833263,2.989238740534077 -764,23.0,21.0,-2.5405381522555563,3.95440286307604 -764,23.0,22.0,-1.4614056064833263,2.989238740534077 -764,23.0,23.0,5.311836702613133,-9.188263657315172 -764,23.0,24.0,-1.3098929438742493,2.287622053705056 -764,24.0,23.0,-1.3098929438742493,2.287622053705056 -764,24.0,24.0,4.495715080321987,-7.864978761969621 -764,24.0,25.0,-1.2165301194494855,1.8171440463475024 -764,24.0,26.0,-1.9692920169982515,3.760212661917064 -764,25.0,24.0,-1.2165301194494855,1.8171440463475024 -764,25.0,25.0,1.2165301194494855,-1.8171440463475024 -764,26.0,24.0,-1.9692920169982515,3.760212661917064 -764,26.0,26.0,3.652281470778589,-9.46044252232512 -764,26.0,27.0,0.0,2.608731947574922 -764,26.0,28.0,-0.99553355095268,1.881005840357816 -764,26.0,29.0,-0.6874559028276572,1.293971494797717 -764,27.0,5.0,-4.362844058012917,15.463571542897856 -764,27.0,7.0,-1.4439790613954469,4.540814658476248 -764,27.0,26.0,0.0,2.608731947574922 -764,27.0,27.0,5.806823119408364,-22.67145722159613 -764,28.0,26.0,-0.99553355095268,1.881005840357816 -764,28.0,28.0,1.9075867579849564,-3.604364401207048 -764,28.0,29.0,-0.9120532070322764,1.7233585608492326 -764,29.0,26.0,-0.6874559028276572,1.293971494797717 -764,29.0,28.0,-0.9120532070322764,1.7233585608492326 -764,29.0,29.0,1.5995091098599337,-3.0173300556469496 -765,0.0,0.0,6.765516048652632,-21.23160167089863 -765,0.0,1.0,-5.224646179885656,15.646726840803398 -765,0.0,2.0,-1.5408698687669766,5.631674830095234 -765,1.0,0.0,-5.224646179885656,15.646726840803398 -765,1.0,1.0,9.75228216552403,-30.648662892676068 -765,1.0,3.0,-1.7055303166990268,5.1973792282565086 -765,1.0,4.0,-1.1359607881738778,4.772479328281356 -765,1.0,5.0,-1.6861448807654689,5.116477495334806 -765,2.0,0.0,-1.5408698687669766,5.631674830095234 -765,2.0,2.0,9.736318911079088,-29.13794745915803 -765,2.0,3.0,-8.19544904231211,23.5308726290628 -765,3.0,1.0,-1.7055303166990268,5.1973792282565086 -765,3.0,2.0,-8.19544904231211,23.5308726290628 -765,3.0,3.0,16.314103089185693,-55.509410535254254 -765,3.0,5.0,-6.413123730174556,22.31120356548123 -765,3.0,11.0,0.0,4.191255364806866 -765,4.0,1.0,-1.1359607881738778,4.772479328281356 -765,4.0,4.0,4.089980824135861,-12.190647245055052 -765,4.0,6.0,-2.954020035961983,7.449267916773697 -765,5.0,1.0,-1.6861448807654689,5.116477495334806 -765,5.0,3.0,-6.413123730174556,22.31120356548123 -765,5.0,5.0,22.341631269034565,-82.8291478657789 -765,5.0,6.0,-3.590210423980992,11.02611441072814 -765,5.0,7.0,-6.289308176100628,22.0125786163522 -765,5.0,8.0,0.0,4.915840805411357 -765,5.0,9.0,0.0,1.8561002591115965 -765,5.0,27.0,-4.362844058012917,15.463571542897856 -765,6.0,4.0,-2.954020035961983,7.449267916773697 -765,6.0,5.0,-3.590210423980992,11.02611441072814 -765,6.0,6.0,6.544230459942975,-18.45668232750184 -765,7.0,5.0,-6.289308176100628,22.0125786163522 -765,7.0,7.0,7.733287237496075,-26.527493274828448 -765,7.0,27.0,-1.4439790613954469,4.540814658476248 -765,8.0,5.0,0.0,4.915840805411357 -765,8.0,8.0,0.0,-18.706293706293707 -765,8.0,9.0,0.0,9.090909090909092 -765,8.0,10.0,0.0,4.807692307692308 -765,9.0,5.0,0.0,1.8561002591115965 -765,9.0,8.0,0.0,9.090909090909092 -765,9.0,9.0,13.462042814524237,-41.3837606675224 -765,9.0,16.0,-3.956039125715353,10.317447719844054 -765,9.0,19.0,-1.7848303152666305,3.98535828943083 -765,9.0,20.0,-5.101853820159654,10.98071411292983 -765,9.0,21.0,-2.619319553382597,5.400770303329455 -765,10.0,8.0,0.0,4.807692307692308 -765,10.0,10.0,0.0,-4.807692307692308 -765,11.0,3.0,0.0,4.191255364806866 -765,11.0,11.0,6.573961583776156,-24.424167659260668 -765,11.0,12.0,0.0,7.142857142857143 -765,11.0,13.0,-1.5265676088395577,3.1734252729654173 -765,11.0,14.0,-3.0953961826564296,6.097275864326261 -765,11.0,15.0,-1.9519977922801688,4.104359379111847 -765,12.0,11.0,0.0,7.142857142857143 -765,12.0,12.0,0.0,-7.142857142857143 -765,13.0,11.0,-1.5265676088395577,3.1734252729654173 -765,13.0,13.0,4.01751987283902,-5.424299332335067 -765,13.0,14.0,-2.4909522639994623,2.250874059369649 -765,14.0,11.0,-3.0953961826564296,6.097275864326261 -765,14.0,13.0,-2.4909522639994623,2.250874059369649 -765,14.0,14.0,9.365498545964757,-16.01163373210796 -765,14.0,17.0,-1.8108011504072024,3.687418931630696 -765,14.0,22.0,-1.9683489489016612,3.976064876781356 -765,15.0,11.0,-1.9519977922801688,4.104359379111847 -765,15.0,15.0,3.271064728633931,-8.94513365126506 -765,15.0,16.0,-1.3190669363537617,4.8407742721532125 -765,16.0,9.0,-3.956039125715353,10.317447719844054 -765,16.0,15.0,-1.3190669363537617,4.8407742721532125 -765,16.0,16.0,5.275106062069114,-15.158221991997266 -765,17.0,14.0,-1.8108011504072024,3.687418931630696 -765,17.0,17.0,4.886487584415919,-9.906177730909668 -765,17.0,18.0,-3.0756864340087167,6.218758799278971 -765,18.0,17.0,-3.0756864340087167,6.218758799278971 -765,18.0,18.0,8.958039375185187,-17.98346468163191 -765,18.0,19.0,-5.88235294117647,11.76470588235294 -765,19.0,9.0,-1.7848303152666305,3.98535828943083 -765,19.0,18.0,-5.88235294117647,11.76470588235294 -765,19.0,19.0,7.6671832564431,-15.75006417178377 -765,20.0,9.0,-5.101853820159654,10.98071411292983 -765,20.0,20.0,21.876495189895888,-45.10843276170355 -765,20.0,21.0,-16.774641369736234,34.127718648773715 -765,21.0,9.0,-2.619319553382597,5.400770303329455 -765,21.0,20.0,-16.774641369736234,34.127718648773715 -765,21.0,21.0,21.93449907537439,-43.48289181517921 -765,21.0,23.0,-2.5405381522555563,3.95440286307604 -765,22.0,14.0,-1.9683489489016612,3.976064876781356 -765,22.0,22.0,3.429754555384988,-6.965303617315433 -765,22.0,23.0,-1.4614056064833263,2.989238740534077 -765,23.0,21.0,-2.5405381522555563,3.95440286307604 -765,23.0,22.0,-1.4614056064833263,2.989238740534077 -765,23.0,23.0,5.311836702613133,-9.188263657315172 -765,23.0,24.0,-1.3098929438742493,2.287622053705056 -765,24.0,23.0,-1.3098929438742493,2.287622053705056 -765,24.0,24.0,4.495715080321987,-7.864978761969621 -765,24.0,25.0,-1.2165301194494855,1.8171440463475024 -765,24.0,26.0,-1.9692920169982515,3.760212661917064 -765,25.0,24.0,-1.2165301194494855,1.8171440463475024 -765,25.0,25.0,1.2165301194494855,-1.8171440463475024 -765,26.0,24.0,-1.9692920169982515,3.760212661917064 -765,26.0,26.0,3.652281470778589,-9.46044252232512 -765,26.0,27.0,0.0,2.608731947574922 -765,26.0,28.0,-0.99553355095268,1.881005840357816 -765,26.0,29.0,-0.6874559028276572,1.293971494797717 -765,27.0,5.0,-4.362844058012917,15.463571542897856 -765,27.0,7.0,-1.4439790613954469,4.540814658476248 -765,27.0,26.0,0.0,2.608731947574922 -765,27.0,27.0,5.806823119408364,-22.67145722159613 -765,28.0,26.0,-0.99553355095268,1.881005840357816 -765,28.0,28.0,1.9075867579849564,-3.604364401207048 -765,28.0,29.0,-0.9120532070322764,1.7233585608492326 -765,29.0,26.0,-0.6874559028276572,1.293971494797717 -765,29.0,28.0,-0.9120532070322764,1.7233585608492326 -765,29.0,29.0,1.5995091098599337,-3.0173300556469496 -766,0.0,0.0,6.765516048652632,-21.23160167089863 -766,0.0,1.0,-5.224646179885656,15.646726840803398 -766,0.0,2.0,-1.5408698687669766,5.631674830095234 -766,1.0,0.0,-5.224646179885656,15.646726840803398 -766,1.0,1.0,9.75228216552403,-30.648662892676068 -766,1.0,3.0,-1.7055303166990268,5.1973792282565086 -766,1.0,4.0,-1.1359607881738778,4.772479328281356 -766,1.0,5.0,-1.6861448807654689,5.116477495334806 -766,2.0,0.0,-1.5408698687669766,5.631674830095234 -766,2.0,2.0,9.736318911079088,-29.13794745915803 -766,2.0,3.0,-8.19544904231211,23.5308726290628 -766,3.0,1.0,-1.7055303166990268,5.1973792282565086 -766,3.0,2.0,-8.19544904231211,23.5308726290628 -766,3.0,3.0,16.314103089185693,-55.509410535254254 -766,3.0,5.0,-6.413123730174556,22.31120356548123 -766,3.0,11.0,0.0,4.191255364806866 -766,4.0,1.0,-1.1359607881738778,4.772479328281356 -766,4.0,4.0,4.089980824135861,-12.190647245055052 -766,4.0,6.0,-2.954020035961983,7.449267916773697 -766,5.0,1.0,-1.6861448807654689,5.116477495334806 -766,5.0,3.0,-6.413123730174556,22.31120356548123 -766,5.0,5.0,22.341631269034565,-82.8291478657789 -766,5.0,6.0,-3.590210423980992,11.02611441072814 -766,5.0,7.0,-6.289308176100628,22.0125786163522 -766,5.0,8.0,0.0,4.915840805411357 -766,5.0,9.0,0.0,1.8561002591115965 -766,5.0,27.0,-4.362844058012917,15.463571542897856 -766,6.0,4.0,-2.954020035961983,7.449267916773697 -766,6.0,5.0,-3.590210423980992,11.02611441072814 -766,6.0,6.0,6.544230459942975,-18.45668232750184 -766,7.0,5.0,-6.289308176100628,22.0125786163522 -766,7.0,7.0,7.733287237496075,-26.527493274828448 -766,7.0,27.0,-1.4439790613954469,4.540814658476248 -766,8.0,5.0,0.0,4.915840805411357 -766,8.0,8.0,0.0,-18.706293706293707 -766,8.0,9.0,0.0,9.090909090909092 -766,8.0,10.0,0.0,4.807692307692308 -766,9.0,5.0,0.0,1.8561002591115965 -766,9.0,8.0,0.0,9.090909090909092 -766,9.0,9.0,11.677212499257603,-37.39840237809157 -766,9.0,16.0,-3.956039125715353,10.317447719844054 -766,9.0,20.0,-5.101853820159654,10.98071411292983 -766,9.0,21.0,-2.619319553382597,5.400770303329455 -766,10.0,8.0,0.0,4.807692307692308 -766,10.0,10.0,0.0,-4.807692307692308 -766,11.0,3.0,0.0,4.191255364806866 -766,11.0,11.0,6.573961583776156,-24.424167659260668 -766,11.0,12.0,0.0,7.142857142857143 -766,11.0,13.0,-1.5265676088395577,3.1734252729654173 -766,11.0,14.0,-3.0953961826564296,6.097275864326261 -766,11.0,15.0,-1.9519977922801688,4.104359379111847 -766,12.0,11.0,0.0,7.142857142857143 -766,12.0,12.0,0.0,-7.142857142857143 -766,13.0,11.0,-1.5265676088395577,3.1734252729654173 -766,13.0,13.0,4.01751987283902,-5.424299332335067 -766,13.0,14.0,-2.4909522639994623,2.250874059369649 -766,14.0,11.0,-3.0953961826564296,6.097275864326261 -766,14.0,13.0,-2.4909522639994623,2.250874059369649 -766,14.0,14.0,7.397149597063095,-12.035568855326606 -766,14.0,17.0,-1.8108011504072024,3.687418931630696 -766,15.0,11.0,-1.9519977922801688,4.104359379111847 -766,15.0,15.0,3.271064728633931,-8.94513365126506 -766,15.0,16.0,-1.3190669363537617,4.8407742721532125 -766,16.0,9.0,-3.956039125715353,10.317447719844054 -766,16.0,15.0,-1.3190669363537617,4.8407742721532125 -766,16.0,16.0,5.275106062069114,-15.158221991997266 -766,17.0,14.0,-1.8108011504072024,3.687418931630696 -766,17.0,17.0,4.886487584415919,-9.906177730909668 -766,17.0,18.0,-3.0756864340087167,6.218758799278971 -766,18.0,17.0,-3.0756864340087167,6.218758799278971 -766,18.0,18.0,8.958039375185187,-17.98346468163191 -766,18.0,19.0,-5.88235294117647,11.76470588235294 -766,19.0,18.0,-5.88235294117647,11.76470588235294 -766,19.0,19.0,5.88235294117647,-11.76470588235294 -766,20.0,9.0,-5.101853820159654,10.98071411292983 -766,20.0,20.0,21.876495189895888,-45.10843276170355 -766,20.0,21.0,-16.774641369736234,34.127718648773715 -766,21.0,9.0,-2.619319553382597,5.400770303329455 -766,21.0,20.0,-16.774641369736234,34.127718648773715 -766,21.0,21.0,21.93449907537439,-43.48289181517921 -766,21.0,23.0,-2.5405381522555563,3.95440286307604 -766,22.0,22.0,1.4614056064833263,-2.989238740534077 -766,22.0,23.0,-1.4614056064833263,2.989238740534077 -766,23.0,21.0,-2.5405381522555563,3.95440286307604 -766,23.0,22.0,-1.4614056064833263,2.989238740534077 -766,23.0,23.0,5.311836702613133,-9.188263657315172 -766,23.0,24.0,-1.3098929438742493,2.287622053705056 -766,24.0,23.0,-1.3098929438742493,2.287622053705056 -766,24.0,24.0,4.495715080321987,-7.864978761969621 -766,24.0,25.0,-1.2165301194494855,1.8171440463475024 -766,24.0,26.0,-1.9692920169982515,3.760212661917064 -766,25.0,24.0,-1.2165301194494855,1.8171440463475024 -766,25.0,25.0,1.2165301194494855,-1.8171440463475024 -766,26.0,24.0,-1.9692920169982515,3.760212661917064 -766,26.0,26.0,3.652281470778589,-9.46044252232512 -766,26.0,27.0,0.0,2.608731947574922 -766,26.0,28.0,-0.99553355095268,1.881005840357816 -766,26.0,29.0,-0.6874559028276572,1.293971494797717 -766,27.0,5.0,-4.362844058012917,15.463571542897856 -766,27.0,7.0,-1.4439790613954469,4.540814658476248 -766,27.0,26.0,0.0,2.608731947574922 -766,27.0,27.0,5.806823119408364,-22.67145722159613 -766,28.0,26.0,-0.99553355095268,1.881005840357816 -766,28.0,28.0,1.9075867579849564,-3.604364401207048 -766,28.0,29.0,-0.9120532070322764,1.7233585608492326 -766,29.0,26.0,-0.6874559028276572,1.293971494797717 -766,29.0,28.0,-0.9120532070322764,1.7233585608492326 -766,29.0,29.0,1.5995091098599337,-3.0173300556469496 -767,0.0,0.0,6.765516048652632,-21.23160167089863 -767,0.0,1.0,-5.224646179885656,15.646726840803398 -767,0.0,2.0,-1.5408698687669766,5.631674830095234 -767,1.0,0.0,-5.224646179885656,15.646726840803398 -767,1.0,1.0,9.75228216552403,-30.648662892676068 -767,1.0,3.0,-1.7055303166990268,5.1973792282565086 -767,1.0,4.0,-1.1359607881738778,4.772479328281356 -767,1.0,5.0,-1.6861448807654689,5.116477495334806 -767,2.0,0.0,-1.5408698687669766,5.631674830095234 -767,2.0,2.0,9.736318911079088,-29.13794745915803 -767,2.0,3.0,-8.19544904231211,23.5308726290628 -767,3.0,1.0,-1.7055303166990268,5.1973792282565086 -767,3.0,2.0,-8.19544904231211,23.5308726290628 -767,3.0,3.0,16.314103089185693,-55.509410535254254 -767,3.0,5.0,-6.413123730174556,22.31120356548123 -767,3.0,11.0,0.0,4.191255364806866 -767,4.0,1.0,-1.1359607881738778,4.772479328281356 -767,4.0,4.0,4.089980824135861,-12.190647245055052 -767,4.0,6.0,-2.954020035961983,7.449267916773697 -767,5.0,1.0,-1.6861448807654689,5.116477495334806 -767,5.0,3.0,-6.413123730174556,22.31120356548123 -767,5.0,5.0,22.341631269034565,-82.8291478657789 -767,5.0,6.0,-3.590210423980992,11.02611441072814 -767,5.0,7.0,-6.289308176100628,22.0125786163522 -767,5.0,8.0,0.0,4.915840805411357 -767,5.0,9.0,0.0,1.8561002591115965 -767,5.0,27.0,-4.362844058012917,15.463571542897856 -767,6.0,4.0,-2.954020035961983,7.449267916773697 -767,6.0,5.0,-3.590210423980992,11.02611441072814 -767,6.0,6.0,6.544230459942975,-18.45668232750184 -767,7.0,5.0,-6.289308176100628,22.0125786163522 -767,7.0,7.0,7.733287237496075,-26.527493274828448 -767,7.0,27.0,-1.4439790613954469,4.540814658476248 -767,8.0,5.0,0.0,4.915840805411357 -767,8.0,8.0,0.0,-18.706293706293707 -767,8.0,9.0,0.0,9.090909090909092 -767,8.0,10.0,0.0,4.807692307692308 -767,9.0,5.0,0.0,1.8561002591115965 -767,9.0,8.0,0.0,9.090909090909092 -767,9.0,9.0,13.462042814524237,-41.3837606675224 -767,9.0,16.0,-3.956039125715353,10.317447719844054 -767,9.0,19.0,-1.7848303152666305,3.98535828943083 -767,9.0,20.0,-5.101853820159654,10.98071411292983 -767,9.0,21.0,-2.619319553382597,5.400770303329455 -767,10.0,8.0,0.0,4.807692307692308 -767,10.0,10.0,0.0,-4.807692307692308 -767,11.0,3.0,0.0,4.191255364806866 -767,11.0,11.0,5.047393974936599,-21.25074238629525 -767,11.0,12.0,0.0,7.142857142857143 -767,11.0,14.0,-3.0953961826564296,6.097275864326261 -767,11.0,15.0,-1.9519977922801688,4.104359379111847 -767,12.0,11.0,0.0,7.142857142857143 -767,12.0,12.0,0.0,-7.142857142857143 -767,13.0,13.0,2.4909522639994623,-2.250874059369649 -767,13.0,14.0,-2.4909522639994623,2.250874059369649 -767,14.0,11.0,-3.0953961826564296,6.097275864326261 -767,14.0,13.0,-2.4909522639994623,2.250874059369649 -767,14.0,14.0,9.365498545964757,-16.01163373210796 -767,14.0,17.0,-1.8108011504072024,3.687418931630696 -767,14.0,22.0,-1.9683489489016612,3.976064876781356 -767,15.0,11.0,-1.9519977922801688,4.104359379111847 -767,15.0,15.0,3.271064728633931,-8.94513365126506 -767,15.0,16.0,-1.3190669363537617,4.8407742721532125 -767,16.0,9.0,-3.956039125715353,10.317447719844054 -767,16.0,15.0,-1.3190669363537617,4.8407742721532125 -767,16.0,16.0,5.275106062069114,-15.158221991997266 -767,17.0,14.0,-1.8108011504072024,3.687418931630696 -767,17.0,17.0,4.886487584415919,-9.906177730909668 -767,17.0,18.0,-3.0756864340087167,6.218758799278971 -767,18.0,17.0,-3.0756864340087167,6.218758799278971 -767,18.0,18.0,8.958039375185187,-17.98346468163191 -767,18.0,19.0,-5.88235294117647,11.76470588235294 -767,19.0,9.0,-1.7848303152666305,3.98535828943083 -767,19.0,18.0,-5.88235294117647,11.76470588235294 -767,19.0,19.0,7.6671832564431,-15.75006417178377 -767,20.0,9.0,-5.101853820159654,10.98071411292983 -767,20.0,20.0,21.876495189895888,-45.10843276170355 -767,20.0,21.0,-16.774641369736234,34.127718648773715 -767,21.0,9.0,-2.619319553382597,5.400770303329455 -767,21.0,20.0,-16.774641369736234,34.127718648773715 -767,21.0,21.0,21.93449907537439,-43.48289181517921 -767,21.0,23.0,-2.5405381522555563,3.95440286307604 -767,22.0,14.0,-1.9683489489016612,3.976064876781356 -767,22.0,22.0,3.429754555384988,-6.965303617315433 -767,22.0,23.0,-1.4614056064833263,2.989238740534077 -767,23.0,21.0,-2.5405381522555563,3.95440286307604 -767,23.0,22.0,-1.4614056064833263,2.989238740534077 -767,23.0,23.0,5.311836702613133,-9.188263657315172 -767,23.0,24.0,-1.3098929438742493,2.287622053705056 -767,24.0,23.0,-1.3098929438742493,2.287622053705056 -767,24.0,24.0,4.495715080321987,-7.864978761969621 -767,24.0,25.0,-1.2165301194494855,1.8171440463475024 -767,24.0,26.0,-1.9692920169982515,3.760212661917064 -767,25.0,24.0,-1.2165301194494855,1.8171440463475024 -767,25.0,25.0,1.2165301194494855,-1.8171440463475024 -767,26.0,24.0,-1.9692920169982515,3.760212661917064 -767,26.0,26.0,3.652281470778589,-9.46044252232512 -767,26.0,27.0,0.0,2.608731947574922 -767,26.0,28.0,-0.99553355095268,1.881005840357816 -767,26.0,29.0,-0.6874559028276572,1.293971494797717 -767,27.0,5.0,-4.362844058012917,15.463571542897856 -767,27.0,7.0,-1.4439790613954469,4.540814658476248 -767,27.0,26.0,0.0,2.608731947574922 -767,27.0,27.0,5.806823119408364,-22.67145722159613 -767,28.0,26.0,-0.99553355095268,1.881005840357816 -767,28.0,28.0,1.9075867579849564,-3.604364401207048 -767,28.0,29.0,-0.9120532070322764,1.7233585608492326 -767,29.0,26.0,-0.6874559028276572,1.293971494797717 -767,29.0,28.0,-0.9120532070322764,1.7233585608492326 -767,29.0,29.0,1.5995091098599337,-3.0173300556469496 -768,0.0,0.0,6.765516048652632,-21.23160167089863 -768,0.0,1.0,-5.224646179885656,15.646726840803398 -768,0.0,2.0,-1.5408698687669766,5.631674830095234 -768,1.0,0.0,-5.224646179885656,15.646726840803398 -768,1.0,1.0,9.75228216552403,-30.648662892676068 -768,1.0,3.0,-1.7055303166990268,5.1973792282565086 -768,1.0,4.0,-1.1359607881738778,4.772479328281356 -768,1.0,5.0,-1.6861448807654689,5.116477495334806 -768,2.0,0.0,-1.5408698687669766,5.631674830095234 -768,2.0,2.0,9.736318911079088,-29.13794745915803 -768,2.0,3.0,-8.19544904231211,23.5308726290628 -768,3.0,1.0,-1.7055303166990268,5.1973792282565086 -768,3.0,2.0,-8.19544904231211,23.5308726290628 -768,3.0,3.0,9.900979359011137,-33.202706969773025 -768,3.0,11.0,0.0,4.191255364806866 -768,4.0,1.0,-1.1359607881738778,4.772479328281356 -768,4.0,4.0,1.1359607881738778,-4.751579328281355 -768,5.0,1.0,-1.6861448807654689,5.116477495334806 -768,5.0,5.0,15.928507538860009,-55.49602220887502 -768,5.0,6.0,-3.590210423980992,11.02611441072814 -768,5.0,7.0,-6.289308176100628,22.0125786163522 -768,5.0,9.0,0.0,1.8561002591115965 -768,5.0,27.0,-4.362844058012917,15.463571542897856 -768,6.0,5.0,-3.590210423980992,11.02611441072814 -768,6.0,6.0,3.590210423980992,-11.01761441072814 -768,7.0,5.0,-6.289308176100628,22.0125786163522 -768,7.0,7.0,7.733287237496075,-26.527493274828448 -768,7.0,27.0,-1.4439790613954469,4.540814658476248 -768,8.0,8.0,0.0,-13.8986013986014 -768,8.0,9.0,0.0,9.090909090909092 -768,8.0,10.0,0.0,4.807692307692308 -768,9.0,5.0,0.0,1.8561002591115965 -768,9.0,8.0,0.0,9.090909090909092 -768,9.0,9.0,9.057892945875007,-31.997632074762112 -768,9.0,16.0,-3.956039125715353,10.317447719844054 -768,9.0,20.0,-5.101853820159654,10.98071411292983 -768,10.0,8.0,0.0,4.807692307692308 -768,10.0,10.0,0.0,-4.807692307692308 -768,11.0,3.0,0.0,4.191255364806866 -768,11.0,11.0,6.573961583776156,-24.424167659260668 -768,11.0,12.0,0.0,7.142857142857143 -768,11.0,13.0,-1.5265676088395577,3.1734252729654173 -768,11.0,14.0,-3.0953961826564296,6.097275864326261 -768,11.0,15.0,-1.9519977922801688,4.104359379111847 -768,12.0,11.0,0.0,7.142857142857143 -768,12.0,12.0,0.0,-7.142857142857143 -768,13.0,11.0,-1.5265676088395577,3.1734252729654173 -768,13.0,13.0,4.01751987283902,-5.424299332335067 -768,13.0,14.0,-2.4909522639994623,2.250874059369649 -768,14.0,11.0,-3.0953961826564296,6.097275864326261 -768,14.0,13.0,-2.4909522639994623,2.250874059369649 -768,14.0,14.0,9.365498545964757,-16.01163373210796 -768,14.0,17.0,-1.8108011504072024,3.687418931630696 -768,14.0,22.0,-1.9683489489016612,3.976064876781356 -768,15.0,11.0,-1.9519977922801688,4.104359379111847 -768,15.0,15.0,3.271064728633931,-8.94513365126506 -768,15.0,16.0,-1.3190669363537617,4.8407742721532125 -768,16.0,9.0,-3.956039125715353,10.317447719844054 -768,16.0,15.0,-1.3190669363537617,4.8407742721532125 -768,16.0,16.0,5.275106062069114,-15.158221991997266 -768,17.0,14.0,-1.8108011504072024,3.687418931630696 -768,17.0,17.0,4.886487584415919,-9.906177730909668 -768,17.0,18.0,-3.0756864340087167,6.218758799278971 -768,18.0,17.0,-3.0756864340087167,6.218758799278971 -768,18.0,18.0,8.958039375185187,-17.98346468163191 -768,18.0,19.0,-5.88235294117647,11.76470588235294 -768,19.0,18.0,-5.88235294117647,11.76470588235294 -768,19.0,19.0,5.88235294117647,-11.76470588235294 -768,20.0,9.0,-5.101853820159654,10.98071411292983 -768,20.0,20.0,5.101853820159654,-10.98071411292983 -768,21.0,21.0,2.5405381522555563,-3.95440286307604 -768,21.0,23.0,-2.5405381522555563,3.95440286307604 -768,22.0,14.0,-1.9683489489016612,3.976064876781356 -768,22.0,22.0,3.429754555384988,-6.965303617315433 -768,22.0,23.0,-1.4614056064833263,2.989238740534077 -768,23.0,21.0,-2.5405381522555563,3.95440286307604 -768,23.0,22.0,-1.4614056064833263,2.989238740534077 -768,23.0,23.0,5.311836702613133,-9.188263657315172 -768,23.0,24.0,-1.3098929438742493,2.287622053705056 -768,24.0,23.0,-1.3098929438742493,2.287622053705056 -768,24.0,24.0,4.495715080321987,-7.864978761969621 -768,24.0,25.0,-1.2165301194494855,1.8171440463475024 -768,24.0,26.0,-1.9692920169982515,3.760212661917064 -768,25.0,24.0,-1.2165301194494855,1.8171440463475024 -768,25.0,25.0,1.2165301194494855,-1.8171440463475024 -768,26.0,24.0,-1.9692920169982515,3.760212661917064 -768,26.0,26.0,3.652281470778589,-9.46044252232512 -768,26.0,27.0,0.0,2.608731947574922 -768,26.0,28.0,-0.99553355095268,1.881005840357816 -768,26.0,29.0,-0.6874559028276572,1.293971494797717 -768,27.0,5.0,-4.362844058012917,15.463571542897856 -768,27.0,7.0,-1.4439790613954469,4.540814658476248 -768,27.0,26.0,0.0,2.608731947574922 -768,27.0,27.0,5.806823119408364,-22.67145722159613 -768,28.0,26.0,-0.99553355095268,1.881005840357816 -768,28.0,28.0,1.9075867579849564,-3.604364401207048 -768,28.0,29.0,-0.9120532070322764,1.7233585608492326 -768,29.0,26.0,-0.6874559028276572,1.293971494797717 -768,29.0,28.0,-0.9120532070322764,1.7233585608492326 -768,29.0,29.0,1.5995091098599337,-3.0173300556469496 -769,0.0,0.0,6.765516048652632,-21.23160167089863 -769,0.0,1.0,-5.224646179885656,15.646726840803398 -769,0.0,2.0,-1.5408698687669766,5.631674830095234 -769,1.0,0.0,-5.224646179885656,15.646726840803398 -769,1.0,1.0,9.75228216552403,-30.648662892676068 -769,1.0,3.0,-1.7055303166990268,5.1973792282565086 -769,1.0,4.0,-1.1359607881738778,4.772479328281356 -769,1.0,5.0,-1.6861448807654689,5.116477495334806 -769,2.0,0.0,-1.5408698687669766,5.631674830095234 -769,2.0,2.0,9.736318911079088,-29.13794745915803 -769,2.0,3.0,-8.19544904231211,23.5308726290628 -769,3.0,1.0,-1.7055303166990268,5.1973792282565086 -769,3.0,2.0,-8.19544904231211,23.5308726290628 -769,3.0,3.0,16.314103089185693,-55.509410535254254 -769,3.0,5.0,-6.413123730174556,22.31120356548123 -769,3.0,11.0,0.0,4.191255364806866 -769,4.0,1.0,-1.1359607881738778,4.772479328281356 -769,4.0,4.0,4.089980824135861,-12.190647245055052 -769,4.0,6.0,-2.954020035961983,7.449267916773697 -769,5.0,1.0,-1.6861448807654689,5.116477495334806 -769,5.0,3.0,-6.413123730174556,22.31120356548123 -769,5.0,5.0,22.341631269034565,-82.8291478657789 -769,5.0,6.0,-3.590210423980992,11.02611441072814 -769,5.0,7.0,-6.289308176100628,22.0125786163522 -769,5.0,8.0,0.0,4.915840805411357 -769,5.0,9.0,0.0,1.8561002591115965 -769,5.0,27.0,-4.362844058012917,15.463571542897856 -769,6.0,4.0,-2.954020035961983,7.449267916773697 -769,6.0,5.0,-3.590210423980992,11.02611441072814 -769,6.0,6.0,6.544230459942975,-18.45668232750184 -769,7.0,5.0,-6.289308176100628,22.0125786163522 -769,7.0,7.0,7.733287237496075,-26.527493274828448 -769,7.0,27.0,-1.4439790613954469,4.540814658476248 -769,8.0,5.0,0.0,4.915840805411357 -769,8.0,8.0,0.0,-18.706293706293707 -769,8.0,9.0,0.0,9.090909090909092 -769,8.0,10.0,0.0,4.807692307692308 -769,9.0,5.0,0.0,1.8561002591115965 -769,9.0,8.0,0.0,9.090909090909092 -769,9.0,9.0,13.462042814524237,-41.3837606675224 -769,9.0,16.0,-3.956039125715353,10.317447719844054 -769,9.0,19.0,-1.7848303152666305,3.98535828943083 -769,9.0,20.0,-5.101853820159654,10.98071411292983 -769,9.0,21.0,-2.619319553382597,5.400770303329455 -769,10.0,8.0,0.0,4.807692307692308 -769,10.0,10.0,0.0,-4.807692307692308 -769,11.0,3.0,0.0,4.191255364806866 -769,11.0,11.0,6.573961583776156,-24.424167659260668 -769,11.0,12.0,0.0,7.142857142857143 -769,11.0,13.0,-1.5265676088395577,3.1734252729654173 -769,11.0,14.0,-3.0953961826564296,6.097275864326261 -769,11.0,15.0,-1.9519977922801688,4.104359379111847 -769,12.0,11.0,0.0,7.142857142857143 -769,12.0,12.0,0.0,-7.142857142857143 -769,13.0,11.0,-1.5265676088395577,3.1734252729654173 -769,13.0,13.0,4.01751987283902,-5.424299332335067 -769,13.0,14.0,-2.4909522639994623,2.250874059369649 -769,14.0,11.0,-3.0953961826564296,6.097275864326261 -769,14.0,13.0,-2.4909522639994623,2.250874059369649 -769,14.0,14.0,9.365498545964757,-16.01163373210796 -769,14.0,17.0,-1.8108011504072024,3.687418931630696 -769,14.0,22.0,-1.9683489489016612,3.976064876781356 -769,15.0,11.0,-1.9519977922801688,4.104359379111847 -769,15.0,15.0,3.271064728633931,-8.94513365126506 -769,15.0,16.0,-1.3190669363537617,4.8407742721532125 -769,16.0,9.0,-3.956039125715353,10.317447719844054 -769,16.0,15.0,-1.3190669363537617,4.8407742721532125 -769,16.0,16.0,5.275106062069114,-15.158221991997266 -769,17.0,14.0,-1.8108011504072024,3.687418931630696 -769,17.0,17.0,4.886487584415919,-9.906177730909668 -769,17.0,18.0,-3.0756864340087167,6.218758799278971 -769,18.0,17.0,-3.0756864340087167,6.218758799278971 -769,18.0,18.0,8.958039375185187,-17.98346468163191 -769,18.0,19.0,-5.88235294117647,11.76470588235294 -769,19.0,9.0,-1.7848303152666305,3.98535828943083 -769,19.0,18.0,-5.88235294117647,11.76470588235294 -769,19.0,19.0,7.6671832564431,-15.75006417178377 -769,20.0,9.0,-5.101853820159654,10.98071411292983 -769,20.0,20.0,21.876495189895888,-45.10843276170355 -769,20.0,21.0,-16.774641369736234,34.127718648773715 -769,21.0,9.0,-2.619319553382597,5.400770303329455 -769,21.0,20.0,-16.774641369736234,34.127718648773715 -769,21.0,21.0,21.93449907537439,-43.48289181517921 -769,21.0,23.0,-2.5405381522555563,3.95440286307604 -769,22.0,14.0,-1.9683489489016612,3.976064876781356 -769,22.0,22.0,3.429754555384988,-6.965303617315433 -769,22.0,23.0,-1.4614056064833263,2.989238740534077 -769,23.0,21.0,-2.5405381522555563,3.95440286307604 -769,23.0,22.0,-1.4614056064833263,2.989238740534077 -769,23.0,23.0,5.311836702613133,-9.188263657315172 -769,23.0,24.0,-1.3098929438742493,2.287622053705056 -769,24.0,23.0,-1.3098929438742493,2.287622053705056 -769,24.0,24.0,4.495715080321987,-7.864978761969621 -769,24.0,25.0,-1.2165301194494855,1.8171440463475024 -769,24.0,26.0,-1.9692920169982515,3.760212661917064 -769,25.0,24.0,-1.2165301194494855,1.8171440463475024 -769,25.0,25.0,1.2165301194494855,-1.8171440463475024 -769,26.0,24.0,-1.9692920169982515,3.760212661917064 -769,26.0,26.0,3.652281470778589,-9.46044252232512 -769,26.0,27.0,0.0,2.608731947574922 -769,26.0,28.0,-0.99553355095268,1.881005840357816 -769,26.0,29.0,-0.6874559028276572,1.293971494797717 -769,27.0,5.0,-4.362844058012917,15.463571542897856 -769,27.0,7.0,-1.4439790613954469,4.540814658476248 -769,27.0,26.0,0.0,2.608731947574922 -769,27.0,27.0,5.806823119408364,-22.67145722159613 -769,28.0,26.0,-0.99553355095268,1.881005840357816 -769,28.0,28.0,1.9075867579849564,-3.604364401207048 -769,28.0,29.0,-0.9120532070322764,1.7233585608492326 -769,29.0,26.0,-0.6874559028276572,1.293971494797717 -769,29.0,28.0,-0.9120532070322764,1.7233585608492326 -769,29.0,29.0,1.5995091098599337,-3.0173300556469496 -770,0.0,0.0,6.765516048652632,-21.23160167089863 -770,0.0,1.0,-5.224646179885656,15.646726840803398 -770,0.0,2.0,-1.5408698687669766,5.631674830095234 -770,1.0,0.0,-5.224646179885656,15.646726840803398 -770,1.0,1.0,9.75228216552403,-30.648662892676068 -770,1.0,3.0,-1.7055303166990268,5.1973792282565086 -770,1.0,4.0,-1.1359607881738778,4.772479328281356 -770,1.0,5.0,-1.6861448807654689,5.116477495334806 -770,2.0,0.0,-1.5408698687669766,5.631674830095234 -770,2.0,2.0,9.736318911079088,-29.13794745915803 -770,2.0,3.0,-8.19544904231211,23.5308726290628 -770,3.0,1.0,-1.7055303166990268,5.1973792282565086 -770,3.0,2.0,-8.19544904231211,23.5308726290628 -770,3.0,3.0,16.314103089185693,-55.509410535254254 -770,3.0,5.0,-6.413123730174556,22.31120356548123 -770,3.0,11.0,0.0,4.191255364806866 -770,4.0,1.0,-1.1359607881738778,4.772479328281356 -770,4.0,4.0,4.089980824135861,-12.190647245055052 -770,4.0,6.0,-2.954020035961983,7.449267916773697 -770,5.0,1.0,-1.6861448807654689,5.116477495334806 -770,5.0,3.0,-6.413123730174556,22.31120356548123 -770,5.0,5.0,22.341631269034565,-82.8291478657789 -770,5.0,6.0,-3.590210423980992,11.02611441072814 -770,5.0,7.0,-6.289308176100628,22.0125786163522 -770,5.0,8.0,0.0,4.915840805411357 -770,5.0,9.0,0.0,1.8561002591115965 -770,5.0,27.0,-4.362844058012917,15.463571542897856 -770,6.0,4.0,-2.954020035961983,7.449267916773697 -770,6.0,5.0,-3.590210423980992,11.02611441072814 -770,6.0,6.0,6.544230459942975,-18.45668232750184 -770,7.0,5.0,-6.289308176100628,22.0125786163522 -770,7.0,7.0,7.733287237496075,-26.527493274828448 -770,7.0,27.0,-1.4439790613954469,4.540814658476248 -770,8.0,5.0,0.0,4.915840805411357 -770,8.0,8.0,0.0,-18.706293706293707 -770,8.0,9.0,0.0,9.090909090909092 -770,8.0,10.0,0.0,4.807692307692308 -770,9.0,5.0,0.0,1.8561002591115965 -770,9.0,8.0,0.0,9.090909090909092 -770,9.0,9.0,13.462042814524237,-41.3837606675224 -770,9.0,16.0,-3.956039125715353,10.317447719844054 -770,9.0,19.0,-1.7848303152666305,3.98535828943083 -770,9.0,20.0,-5.101853820159654,10.98071411292983 -770,9.0,21.0,-2.619319553382597,5.400770303329455 -770,10.0,8.0,0.0,4.807692307692308 -770,10.0,10.0,0.0,-4.807692307692308 -770,11.0,3.0,0.0,4.191255364806866 -770,11.0,11.0,6.573961583776156,-24.424167659260668 -770,11.0,12.0,0.0,7.142857142857143 -770,11.0,13.0,-1.5265676088395577,3.1734252729654173 -770,11.0,14.0,-3.0953961826564296,6.097275864326261 -770,11.0,15.0,-1.9519977922801688,4.104359379111847 -770,12.0,11.0,0.0,7.142857142857143 -770,12.0,12.0,0.0,-7.142857142857143 -770,13.0,11.0,-1.5265676088395577,3.1734252729654173 -770,13.0,13.0,4.01751987283902,-5.424299332335067 -770,13.0,14.0,-2.4909522639994623,2.250874059369649 -770,14.0,11.0,-3.0953961826564296,6.097275864326261 -770,14.0,13.0,-2.4909522639994623,2.250874059369649 -770,14.0,14.0,9.365498545964757,-16.01163373210796 -770,14.0,17.0,-1.8108011504072024,3.687418931630696 -770,14.0,22.0,-1.9683489489016612,3.976064876781356 -770,15.0,11.0,-1.9519977922801688,4.104359379111847 -770,15.0,15.0,3.271064728633931,-8.94513365126506 -770,15.0,16.0,-1.3190669363537617,4.8407742721532125 -770,16.0,9.0,-3.956039125715353,10.317447719844054 -770,16.0,15.0,-1.3190669363537617,4.8407742721532125 -770,16.0,16.0,5.275106062069114,-15.158221991997266 -770,17.0,14.0,-1.8108011504072024,3.687418931630696 -770,17.0,17.0,4.886487584415919,-9.906177730909668 -770,17.0,18.0,-3.0756864340087167,6.218758799278971 -770,18.0,17.0,-3.0756864340087167,6.218758799278971 -770,18.0,18.0,8.958039375185187,-17.98346468163191 -770,18.0,19.0,-5.88235294117647,11.76470588235294 -770,19.0,9.0,-1.7848303152666305,3.98535828943083 -770,19.0,18.0,-5.88235294117647,11.76470588235294 -770,19.0,19.0,7.6671832564431,-15.75006417178377 -770,20.0,9.0,-5.101853820159654,10.98071411292983 -770,20.0,20.0,21.876495189895888,-45.10843276170355 -770,20.0,21.0,-16.774641369736234,34.127718648773715 -770,21.0,9.0,-2.619319553382597,5.400770303329455 -770,21.0,20.0,-16.774641369736234,34.127718648773715 -770,21.0,21.0,21.93449907537439,-43.48289181517921 -770,21.0,23.0,-2.5405381522555563,3.95440286307604 -770,22.0,14.0,-1.9683489489016612,3.976064876781356 -770,22.0,22.0,3.429754555384988,-6.965303617315433 -770,22.0,23.0,-1.4614056064833263,2.989238740534077 -770,23.0,21.0,-2.5405381522555563,3.95440286307604 -770,23.0,22.0,-1.4614056064833263,2.989238740534077 -770,23.0,23.0,5.311836702613133,-9.188263657315172 -770,23.0,24.0,-1.3098929438742493,2.287622053705056 -770,24.0,23.0,-1.3098929438742493,2.287622053705056 -770,24.0,24.0,4.495715080321987,-7.864978761969621 -770,24.0,25.0,-1.2165301194494855,1.8171440463475024 -770,24.0,26.0,-1.9692920169982515,3.760212661917064 -770,25.0,24.0,-1.2165301194494855,1.8171440463475024 -770,25.0,25.0,1.2165301194494855,-1.8171440463475024 -770,26.0,24.0,-1.9692920169982515,3.760212661917064 -770,26.0,26.0,3.652281470778589,-9.46044252232512 -770,26.0,27.0,0.0,2.608731947574922 -770,26.0,28.0,-0.99553355095268,1.881005840357816 -770,26.0,29.0,-0.6874559028276572,1.293971494797717 -770,27.0,5.0,-4.362844058012917,15.463571542897856 -770,27.0,7.0,-1.4439790613954469,4.540814658476248 -770,27.0,26.0,0.0,2.608731947574922 -770,27.0,27.0,5.806823119408364,-22.67145722159613 -770,28.0,26.0,-0.99553355095268,1.881005840357816 -770,28.0,28.0,1.9075867579849564,-3.604364401207048 -770,28.0,29.0,-0.9120532070322764,1.7233585608492326 -770,29.0,26.0,-0.6874559028276572,1.293971494797717 -770,29.0,28.0,-0.9120532070322764,1.7233585608492326 -770,29.0,29.0,1.5995091098599337,-3.0173300556469496 -771,0.0,0.0,6.765516048652632,-21.23160167089863 -771,0.0,1.0,-5.224646179885656,15.646726840803398 -771,0.0,2.0,-1.5408698687669766,5.631674830095234 -771,1.0,0.0,-5.224646179885656,15.646726840803398 -771,1.0,1.0,9.75228216552403,-30.648662892676068 -771,1.0,3.0,-1.7055303166990268,5.1973792282565086 -771,1.0,4.0,-1.1359607881738778,4.772479328281356 -771,1.0,5.0,-1.6861448807654689,5.116477495334806 -771,2.0,0.0,-1.5408698687669766,5.631674830095234 -771,2.0,2.0,9.736318911079088,-29.13794745915803 -771,2.0,3.0,-8.19544904231211,23.5308726290628 -771,3.0,1.0,-1.7055303166990268,5.1973792282565086 -771,3.0,2.0,-8.19544904231211,23.5308726290628 -771,3.0,3.0,16.314103089185693,-55.509410535254254 -771,3.0,5.0,-6.413123730174556,22.31120356548123 -771,3.0,11.0,0.0,4.191255364806866 -771,4.0,1.0,-1.1359607881738778,4.772479328281356 -771,4.0,4.0,4.089980824135861,-12.190647245055052 -771,4.0,6.0,-2.954020035961983,7.449267916773697 -771,5.0,1.0,-1.6861448807654689,5.116477495334806 -771,5.0,3.0,-6.413123730174556,22.31120356548123 -771,5.0,5.0,22.341631269034565,-82.8291478657789 -771,5.0,6.0,-3.590210423980992,11.02611441072814 -771,5.0,7.0,-6.289308176100628,22.0125786163522 -771,5.0,8.0,0.0,4.915840805411357 -771,5.0,9.0,0.0,1.8561002591115965 -771,5.0,27.0,-4.362844058012917,15.463571542897856 -771,6.0,4.0,-2.954020035961983,7.449267916773697 -771,6.0,5.0,-3.590210423980992,11.02611441072814 -771,6.0,6.0,6.544230459942975,-18.45668232750184 -771,7.0,5.0,-6.289308176100628,22.0125786163522 -771,7.0,7.0,7.733287237496075,-26.527493274828448 -771,7.0,27.0,-1.4439790613954469,4.540814658476248 -771,8.0,5.0,0.0,4.915840805411357 -771,8.0,8.0,0.0,-18.706293706293707 -771,8.0,9.0,0.0,9.090909090909092 -771,8.0,10.0,0.0,4.807692307692308 -771,9.0,5.0,0.0,1.8561002591115965 -771,9.0,8.0,0.0,9.090909090909092 -771,9.0,9.0,13.462042814524237,-41.3837606675224 -771,9.0,16.0,-3.956039125715353,10.317447719844054 -771,9.0,19.0,-1.7848303152666305,3.98535828943083 -771,9.0,20.0,-5.101853820159654,10.98071411292983 -771,9.0,21.0,-2.619319553382597,5.400770303329455 -771,10.0,8.0,0.0,4.807692307692308 -771,10.0,10.0,0.0,-4.807692307692308 -771,11.0,3.0,0.0,4.191255364806866 -771,11.0,11.0,6.573961583776156,-24.424167659260668 -771,11.0,12.0,0.0,7.142857142857143 -771,11.0,13.0,-1.5265676088395577,3.1734252729654173 -771,11.0,14.0,-3.0953961826564296,6.097275864326261 -771,11.0,15.0,-1.9519977922801688,4.104359379111847 -771,12.0,11.0,0.0,7.142857142857143 -771,12.0,12.0,0.0,-7.142857142857143 -771,13.0,11.0,-1.5265676088395577,3.1734252729654173 -771,13.0,13.0,4.01751987283902,-5.424299332335067 -771,13.0,14.0,-2.4909522639994623,2.250874059369649 -771,14.0,11.0,-3.0953961826564296,6.097275864326261 -771,14.0,13.0,-2.4909522639994623,2.250874059369649 -771,14.0,14.0,9.365498545964757,-16.01163373210796 -771,14.0,17.0,-1.8108011504072024,3.687418931630696 -771,14.0,22.0,-1.9683489489016612,3.976064876781356 -771,15.0,11.0,-1.9519977922801688,4.104359379111847 -771,15.0,15.0,3.271064728633931,-8.94513365126506 -771,15.0,16.0,-1.3190669363537617,4.8407742721532125 -771,16.0,9.0,-3.956039125715353,10.317447719844054 -771,16.0,15.0,-1.3190669363537617,4.8407742721532125 -771,16.0,16.0,5.275106062069114,-15.158221991997266 -771,17.0,14.0,-1.8108011504072024,3.687418931630696 -771,17.0,17.0,4.886487584415919,-9.906177730909668 -771,17.0,18.0,-3.0756864340087167,6.218758799278971 -771,18.0,17.0,-3.0756864340087167,6.218758799278971 -771,18.0,18.0,8.958039375185187,-17.98346468163191 -771,18.0,19.0,-5.88235294117647,11.76470588235294 -771,19.0,9.0,-1.7848303152666305,3.98535828943083 -771,19.0,18.0,-5.88235294117647,11.76470588235294 -771,19.0,19.0,7.6671832564431,-15.75006417178377 -771,20.0,9.0,-5.101853820159654,10.98071411292983 -771,20.0,20.0,21.876495189895888,-45.10843276170355 -771,20.0,21.0,-16.774641369736234,34.127718648773715 -771,21.0,9.0,-2.619319553382597,5.400770303329455 -771,21.0,20.0,-16.774641369736234,34.127718648773715 -771,21.0,21.0,21.93449907537439,-43.48289181517921 -771,21.0,23.0,-2.5405381522555563,3.95440286307604 -771,22.0,14.0,-1.9683489489016612,3.976064876781356 -771,22.0,22.0,3.429754555384988,-6.965303617315433 -771,22.0,23.0,-1.4614056064833263,2.989238740534077 -771,23.0,21.0,-2.5405381522555563,3.95440286307604 -771,23.0,22.0,-1.4614056064833263,2.989238740534077 -771,23.0,23.0,5.311836702613133,-9.188263657315172 -771,23.0,24.0,-1.3098929438742493,2.287622053705056 -771,24.0,23.0,-1.3098929438742493,2.287622053705056 -771,24.0,24.0,4.495715080321987,-7.864978761969621 -771,24.0,25.0,-1.2165301194494855,1.8171440463475024 -771,24.0,26.0,-1.9692920169982515,3.760212661917064 -771,25.0,24.0,-1.2165301194494855,1.8171440463475024 -771,25.0,25.0,1.2165301194494855,-1.8171440463475024 -771,26.0,24.0,-1.9692920169982515,3.760212661917064 -771,26.0,26.0,3.652281470778589,-9.46044252232512 -771,26.0,27.0,0.0,2.608731947574922 -771,26.0,28.0,-0.99553355095268,1.881005840357816 -771,26.0,29.0,-0.6874559028276572,1.293971494797717 -771,27.0,5.0,-4.362844058012917,15.463571542897856 -771,27.0,7.0,-1.4439790613954469,4.540814658476248 -771,27.0,26.0,0.0,2.608731947574922 -771,27.0,27.0,5.806823119408364,-22.67145722159613 -771,28.0,26.0,-0.99553355095268,1.881005840357816 -771,28.0,28.0,1.9075867579849564,-3.604364401207048 -771,28.0,29.0,-0.9120532070322764,1.7233585608492326 -771,29.0,26.0,-0.6874559028276572,1.293971494797717 -771,29.0,28.0,-0.9120532070322764,1.7233585608492326 -771,29.0,29.0,1.5995091098599337,-3.0173300556469496 -772,0.0,0.0,6.765516048652632,-21.23160167089863 -772,0.0,1.0,-5.224646179885656,15.646726840803398 -772,0.0,2.0,-1.5408698687669766,5.631674830095234 -772,1.0,0.0,-5.224646179885656,15.646726840803398 -772,1.0,1.0,9.75228216552403,-30.648662892676068 -772,1.0,3.0,-1.7055303166990268,5.1973792282565086 -772,1.0,4.0,-1.1359607881738778,4.772479328281356 -772,1.0,5.0,-1.6861448807654689,5.116477495334806 -772,2.0,0.0,-1.5408698687669766,5.631674830095234 -772,2.0,2.0,9.736318911079088,-29.13794745915803 -772,2.0,3.0,-8.19544904231211,23.5308726290628 -772,3.0,1.0,-1.7055303166990268,5.1973792282565086 -772,3.0,2.0,-8.19544904231211,23.5308726290628 -772,3.0,3.0,16.314103089185693,-55.509410535254254 -772,3.0,5.0,-6.413123730174556,22.31120356548123 -772,3.0,11.0,0.0,4.191255364806866 -772,4.0,1.0,-1.1359607881738778,4.772479328281356 -772,4.0,4.0,4.089980824135861,-12.190647245055052 -772,4.0,6.0,-2.954020035961983,7.449267916773697 -772,5.0,1.0,-1.6861448807654689,5.116477495334806 -772,5.0,3.0,-6.413123730174556,22.31120356548123 -772,5.0,5.0,22.341631269034565,-82.8291478657789 -772,5.0,6.0,-3.590210423980992,11.02611441072814 -772,5.0,7.0,-6.289308176100628,22.0125786163522 -772,5.0,8.0,0.0,4.915840805411357 -772,5.0,9.0,0.0,1.8561002591115965 -772,5.0,27.0,-4.362844058012917,15.463571542897856 -772,6.0,4.0,-2.954020035961983,7.449267916773697 -772,6.0,5.0,-3.590210423980992,11.02611441072814 -772,6.0,6.0,6.544230459942975,-18.45668232750184 -772,7.0,5.0,-6.289308176100628,22.0125786163522 -772,7.0,7.0,7.733287237496075,-26.527493274828448 -772,7.0,27.0,-1.4439790613954469,4.540814658476248 -772,8.0,5.0,0.0,4.915840805411357 -772,8.0,8.0,0.0,-18.706293706293707 -772,8.0,9.0,0.0,9.090909090909092 -772,8.0,10.0,0.0,4.807692307692308 -772,9.0,5.0,0.0,1.8561002591115965 -772,9.0,8.0,0.0,9.090909090909092 -772,9.0,9.0,13.462042814524237,-41.3837606675224 -772,9.0,16.0,-3.956039125715353,10.317447719844054 -772,9.0,19.0,-1.7848303152666305,3.98535828943083 -772,9.0,20.0,-5.101853820159654,10.98071411292983 -772,9.0,21.0,-2.619319553382597,5.400770303329455 -772,10.0,8.0,0.0,4.807692307692308 -772,10.0,10.0,0.0,-4.807692307692308 -772,11.0,3.0,0.0,4.191255364806866 -772,11.0,11.0,6.573961583776156,-24.424167659260668 -772,11.0,12.0,0.0,7.142857142857143 -772,11.0,13.0,-1.5265676088395577,3.1734252729654173 -772,11.0,14.0,-3.0953961826564296,6.097275864326261 -772,11.0,15.0,-1.9519977922801688,4.104359379111847 -772,12.0,11.0,0.0,7.142857142857143 -772,12.0,12.0,0.0,-7.142857142857143 -772,13.0,11.0,-1.5265676088395577,3.1734252729654173 -772,13.0,13.0,4.01751987283902,-5.424299332335067 -772,13.0,14.0,-2.4909522639994623,2.250874059369649 -772,14.0,11.0,-3.0953961826564296,6.097275864326261 -772,14.0,13.0,-2.4909522639994623,2.250874059369649 -772,14.0,14.0,9.365498545964757,-16.01163373210796 -772,14.0,17.0,-1.8108011504072024,3.687418931630696 -772,14.0,22.0,-1.9683489489016612,3.976064876781356 -772,15.0,11.0,-1.9519977922801688,4.104359379111847 -772,15.0,15.0,3.271064728633931,-8.94513365126506 -772,15.0,16.0,-1.3190669363537617,4.8407742721532125 -772,16.0,9.0,-3.956039125715353,10.317447719844054 -772,16.0,15.0,-1.3190669363537617,4.8407742721532125 -772,16.0,16.0,5.275106062069114,-15.158221991997266 -772,17.0,14.0,-1.8108011504072024,3.687418931630696 -772,17.0,17.0,4.886487584415919,-9.906177730909668 -772,17.0,18.0,-3.0756864340087167,6.218758799278971 -772,18.0,17.0,-3.0756864340087167,6.218758799278971 -772,18.0,18.0,8.958039375185187,-17.98346468163191 -772,18.0,19.0,-5.88235294117647,11.76470588235294 -772,19.0,9.0,-1.7848303152666305,3.98535828943083 -772,19.0,18.0,-5.88235294117647,11.76470588235294 -772,19.0,19.0,7.6671832564431,-15.75006417178377 -772,20.0,9.0,-5.101853820159654,10.98071411292983 -772,20.0,20.0,21.876495189895888,-45.10843276170355 -772,20.0,21.0,-16.774641369736234,34.127718648773715 -772,21.0,9.0,-2.619319553382597,5.400770303329455 -772,21.0,20.0,-16.774641369736234,34.127718648773715 -772,21.0,21.0,21.93449907537439,-43.48289181517921 -772,21.0,23.0,-2.5405381522555563,3.95440286307604 -772,22.0,14.0,-1.9683489489016612,3.976064876781356 -772,22.0,22.0,3.429754555384988,-6.965303617315433 -772,22.0,23.0,-1.4614056064833263,2.989238740534077 -772,23.0,21.0,-2.5405381522555563,3.95440286307604 -772,23.0,22.0,-1.4614056064833263,2.989238740534077 -772,23.0,23.0,5.311836702613133,-9.188263657315172 -772,23.0,24.0,-1.3098929438742493,2.287622053705056 -772,24.0,23.0,-1.3098929438742493,2.287622053705056 -772,24.0,24.0,4.495715080321987,-7.864978761969621 -772,24.0,25.0,-1.2165301194494855,1.8171440463475024 -772,24.0,26.0,-1.9692920169982515,3.760212661917064 -772,25.0,24.0,-1.2165301194494855,1.8171440463475024 -772,25.0,25.0,1.2165301194494855,-1.8171440463475024 -772,26.0,24.0,-1.9692920169982515,3.760212661917064 -772,26.0,26.0,3.652281470778589,-9.46044252232512 -772,26.0,27.0,0.0,2.608731947574922 -772,26.0,28.0,-0.99553355095268,1.881005840357816 -772,26.0,29.0,-0.6874559028276572,1.293971494797717 -772,27.0,5.0,-4.362844058012917,15.463571542897856 -772,27.0,7.0,-1.4439790613954469,4.540814658476248 -772,27.0,26.0,0.0,2.608731947574922 -772,27.0,27.0,5.806823119408364,-22.67145722159613 -772,28.0,26.0,-0.99553355095268,1.881005840357816 -772,28.0,28.0,1.9075867579849564,-3.604364401207048 -772,28.0,29.0,-0.9120532070322764,1.7233585608492326 -772,29.0,26.0,-0.6874559028276572,1.293971494797717 -772,29.0,28.0,-0.9120532070322764,1.7233585608492326 -772,29.0,29.0,1.5995091098599337,-3.0173300556469496 -773,0.0,0.0,6.765516048652632,-21.23160167089863 -773,0.0,1.0,-5.224646179885656,15.646726840803398 -773,0.0,2.0,-1.5408698687669766,5.631674830095234 -773,1.0,0.0,-5.224646179885656,15.646726840803398 -773,1.0,1.0,9.75228216552403,-30.648662892676068 -773,1.0,3.0,-1.7055303166990268,5.1973792282565086 -773,1.0,4.0,-1.1359607881738778,4.772479328281356 -773,1.0,5.0,-1.6861448807654689,5.116477495334806 -773,2.0,0.0,-1.5408698687669766,5.631674830095234 -773,2.0,2.0,9.736318911079088,-29.13794745915803 -773,2.0,3.0,-8.19544904231211,23.5308726290628 -773,3.0,1.0,-1.7055303166990268,5.1973792282565086 -773,3.0,2.0,-8.19544904231211,23.5308726290628 -773,3.0,3.0,16.314103089185693,-55.509410535254254 -773,3.0,5.0,-6.413123730174556,22.31120356548123 -773,3.0,11.0,0.0,4.191255364806866 -773,4.0,1.0,-1.1359607881738778,4.772479328281356 -773,4.0,4.0,4.089980824135861,-12.190647245055052 -773,4.0,6.0,-2.954020035961983,7.449267916773697 -773,5.0,1.0,-1.6861448807654689,5.116477495334806 -773,5.0,3.0,-6.413123730174556,22.31120356548123 -773,5.0,5.0,22.341631269034565,-82.8291478657789 -773,5.0,6.0,-3.590210423980992,11.02611441072814 -773,5.0,7.0,-6.289308176100628,22.0125786163522 -773,5.0,8.0,0.0,4.915840805411357 -773,5.0,9.0,0.0,1.8561002591115965 -773,5.0,27.0,-4.362844058012917,15.463571542897856 -773,6.0,4.0,-2.954020035961983,7.449267916773697 -773,6.0,5.0,-3.590210423980992,11.02611441072814 -773,6.0,6.0,6.544230459942975,-18.45668232750184 -773,7.0,5.0,-6.289308176100628,22.0125786163522 -773,7.0,7.0,7.733287237496075,-26.527493274828448 -773,7.0,27.0,-1.4439790613954469,4.540814658476248 -773,8.0,5.0,0.0,4.915840805411357 -773,8.0,8.0,0.0,-18.706293706293707 -773,8.0,9.0,0.0,9.090909090909092 -773,8.0,10.0,0.0,4.807692307692308 -773,9.0,5.0,0.0,1.8561002591115965 -773,9.0,8.0,0.0,9.090909090909092 -773,9.0,9.0,13.462042814524237,-41.3837606675224 -773,9.0,16.0,-3.956039125715353,10.317447719844054 -773,9.0,19.0,-1.7848303152666305,3.98535828943083 -773,9.0,20.0,-5.101853820159654,10.98071411292983 -773,9.0,21.0,-2.619319553382597,5.400770303329455 -773,10.0,8.0,0.0,4.807692307692308 -773,10.0,10.0,0.0,-4.807692307692308 -773,11.0,3.0,0.0,4.191255364806866 -773,11.0,11.0,6.573961583776156,-24.424167659260668 -773,11.0,12.0,0.0,7.142857142857143 -773,11.0,13.0,-1.5265676088395577,3.1734252729654173 -773,11.0,14.0,-3.0953961826564296,6.097275864326261 -773,11.0,15.0,-1.9519977922801688,4.104359379111847 -773,12.0,11.0,0.0,7.142857142857143 -773,12.0,12.0,0.0,-7.142857142857143 -773,13.0,11.0,-1.5265676088395577,3.1734252729654173 -773,13.0,13.0,4.01751987283902,-5.424299332335067 -773,13.0,14.0,-2.4909522639994623,2.250874059369649 -773,14.0,11.0,-3.0953961826564296,6.097275864326261 -773,14.0,13.0,-2.4909522639994623,2.250874059369649 -773,14.0,14.0,9.365498545964757,-16.01163373210796 -773,14.0,17.0,-1.8108011504072024,3.687418931630696 -773,14.0,22.0,-1.9683489489016612,3.976064876781356 -773,15.0,11.0,-1.9519977922801688,4.104359379111847 -773,15.0,15.0,3.271064728633931,-8.94513365126506 -773,15.0,16.0,-1.3190669363537617,4.8407742721532125 -773,16.0,9.0,-3.956039125715353,10.317447719844054 -773,16.0,15.0,-1.3190669363537617,4.8407742721532125 -773,16.0,16.0,5.275106062069114,-15.158221991997266 -773,17.0,14.0,-1.8108011504072024,3.687418931630696 -773,17.0,17.0,4.886487584415919,-9.906177730909668 -773,17.0,18.0,-3.0756864340087167,6.218758799278971 -773,18.0,17.0,-3.0756864340087167,6.218758799278971 -773,18.0,18.0,8.958039375185187,-17.98346468163191 -773,18.0,19.0,-5.88235294117647,11.76470588235294 -773,19.0,9.0,-1.7848303152666305,3.98535828943083 -773,19.0,18.0,-5.88235294117647,11.76470588235294 -773,19.0,19.0,7.6671832564431,-15.75006417178377 -773,20.0,9.0,-5.101853820159654,10.98071411292983 -773,20.0,20.0,21.876495189895888,-45.10843276170355 -773,20.0,21.0,-16.774641369736234,34.127718648773715 -773,21.0,9.0,-2.619319553382597,5.400770303329455 -773,21.0,20.0,-16.774641369736234,34.127718648773715 -773,21.0,21.0,21.93449907537439,-43.48289181517921 -773,21.0,23.0,-2.5405381522555563,3.95440286307604 -773,22.0,14.0,-1.9683489489016612,3.976064876781356 -773,22.0,22.0,3.429754555384988,-6.965303617315433 -773,22.0,23.0,-1.4614056064833263,2.989238740534077 -773,23.0,21.0,-2.5405381522555563,3.95440286307604 -773,23.0,22.0,-1.4614056064833263,2.989238740534077 -773,23.0,23.0,5.311836702613133,-9.188263657315172 -773,23.0,24.0,-1.3098929438742493,2.287622053705056 -773,24.0,23.0,-1.3098929438742493,2.287622053705056 -773,24.0,24.0,4.495715080321987,-7.864978761969621 -773,24.0,25.0,-1.2165301194494855,1.8171440463475024 -773,24.0,26.0,-1.9692920169982515,3.760212661917064 -773,25.0,24.0,-1.2165301194494855,1.8171440463475024 -773,25.0,25.0,1.2165301194494855,-1.8171440463475024 -773,26.0,24.0,-1.9692920169982515,3.760212661917064 -773,26.0,26.0,3.652281470778589,-9.46044252232512 -773,26.0,27.0,0.0,2.608731947574922 -773,26.0,28.0,-0.99553355095268,1.881005840357816 -773,26.0,29.0,-0.6874559028276572,1.293971494797717 -773,27.0,5.0,-4.362844058012917,15.463571542897856 -773,27.0,7.0,-1.4439790613954469,4.540814658476248 -773,27.0,26.0,0.0,2.608731947574922 -773,27.0,27.0,5.806823119408364,-22.67145722159613 -773,28.0,26.0,-0.99553355095268,1.881005840357816 -773,28.0,28.0,1.9075867579849564,-3.604364401207048 -773,28.0,29.0,-0.9120532070322764,1.7233585608492326 -773,29.0,26.0,-0.6874559028276572,1.293971494797717 -773,29.0,28.0,-0.9120532070322764,1.7233585608492326 -773,29.0,29.0,1.5995091098599337,-3.0173300556469496 -774,0.0,0.0,6.765516048652632,-21.23160167089863 -774,0.0,1.0,-5.224646179885656,15.646726840803398 -774,0.0,2.0,-1.5408698687669766,5.631674830095234 -774,1.0,0.0,-5.224646179885656,15.646726840803398 -774,1.0,1.0,9.75228216552403,-30.648662892676068 -774,1.0,3.0,-1.7055303166990268,5.1973792282565086 -774,1.0,4.0,-1.1359607881738778,4.772479328281356 -774,1.0,5.0,-1.6861448807654689,5.116477495334806 -774,2.0,0.0,-1.5408698687669766,5.631674830095234 -774,2.0,2.0,9.736318911079088,-29.13794745915803 -774,2.0,3.0,-8.19544904231211,23.5308726290628 -774,3.0,1.0,-1.7055303166990268,5.1973792282565086 -774,3.0,2.0,-8.19544904231211,23.5308726290628 -774,3.0,3.0,16.314103089185693,-51.01235542280054 -774,3.0,5.0,-6.413123730174556,22.31120356548123 -774,4.0,1.0,-1.1359607881738778,4.772479328281356 -774,4.0,4.0,4.089980824135861,-12.190647245055052 -774,4.0,6.0,-2.954020035961983,7.449267916773697 -774,5.0,1.0,-1.6861448807654689,5.116477495334806 -774,5.0,3.0,-6.413123730174556,22.31120356548123 -774,5.0,5.0,18.75142084505357,-71.81153345505078 -774,5.0,7.0,-6.289308176100628,22.0125786163522 -774,5.0,8.0,0.0,4.915840805411357 -774,5.0,9.0,0.0,1.8561002591115965 -774,5.0,27.0,-4.362844058012917,15.463571542897856 -774,6.0,4.0,-2.954020035961983,7.449267916773697 -774,6.0,6.0,2.954020035961983,-7.439067916773697 -774,7.0,5.0,-6.289308176100628,22.0125786163522 -774,7.0,7.0,7.733287237496075,-26.527493274828448 -774,7.0,27.0,-1.4439790613954469,4.540814658476248 -774,8.0,5.0,0.0,4.915840805411357 -774,8.0,8.0,0.0,-18.706293706293707 -774,8.0,9.0,0.0,9.090909090909092 -774,8.0,10.0,0.0,4.807692307692308 -774,9.0,5.0,0.0,1.8561002591115965 -774,9.0,8.0,0.0,9.090909090909092 -774,9.0,9.0,13.462042814524237,-41.3837606675224 -774,9.0,16.0,-3.956039125715353,10.317447719844054 -774,9.0,19.0,-1.7848303152666305,3.98535828943083 -774,9.0,20.0,-5.101853820159654,10.98071411292983 -774,9.0,21.0,-2.619319553382597,5.400770303329455 -774,10.0,8.0,0.0,4.807692307692308 -774,10.0,10.0,0.0,-4.807692307692308 -774,11.0,11.0,6.573961583776156,-20.517917659260668 -774,11.0,12.0,0.0,7.142857142857143 -774,11.0,13.0,-1.5265676088395577,3.1734252729654173 -774,11.0,14.0,-3.0953961826564296,6.097275864326261 -774,11.0,15.0,-1.9519977922801688,4.104359379111847 -774,12.0,11.0,0.0,7.142857142857143 -774,12.0,12.0,0.0,-7.142857142857143 -774,13.0,11.0,-1.5265676088395577,3.1734252729654173 -774,13.0,13.0,4.01751987283902,-5.424299332335067 -774,13.0,14.0,-2.4909522639994623,2.250874059369649 -774,14.0,11.0,-3.0953961826564296,6.097275864326261 -774,14.0,13.0,-2.4909522639994623,2.250874059369649 -774,14.0,14.0,9.365498545964757,-16.01163373210796 -774,14.0,17.0,-1.8108011504072024,3.687418931630696 -774,14.0,22.0,-1.9683489489016612,3.976064876781356 -774,15.0,11.0,-1.9519977922801688,4.104359379111847 -774,15.0,15.0,3.271064728633931,-8.94513365126506 -774,15.0,16.0,-1.3190669363537617,4.8407742721532125 -774,16.0,9.0,-3.956039125715353,10.317447719844054 -774,16.0,15.0,-1.3190669363537617,4.8407742721532125 -774,16.0,16.0,5.275106062069114,-15.158221991997266 -774,17.0,14.0,-1.8108011504072024,3.687418931630696 -774,17.0,17.0,4.886487584415919,-9.906177730909668 -774,17.0,18.0,-3.0756864340087167,6.218758799278971 -774,18.0,17.0,-3.0756864340087167,6.218758799278971 -774,18.0,18.0,8.958039375185187,-17.98346468163191 -774,18.0,19.0,-5.88235294117647,11.76470588235294 -774,19.0,9.0,-1.7848303152666305,3.98535828943083 -774,19.0,18.0,-5.88235294117647,11.76470588235294 -774,19.0,19.0,7.6671832564431,-15.75006417178377 -774,20.0,9.0,-5.101853820159654,10.98071411292983 -774,20.0,20.0,21.876495189895888,-45.10843276170355 -774,20.0,21.0,-16.774641369736234,34.127718648773715 -774,21.0,9.0,-2.619319553382597,5.400770303329455 -774,21.0,20.0,-16.774641369736234,34.127718648773715 -774,21.0,21.0,21.93449907537439,-43.48289181517921 -774,21.0,23.0,-2.5405381522555563,3.95440286307604 -774,22.0,14.0,-1.9683489489016612,3.976064876781356 -774,22.0,22.0,3.429754555384988,-6.965303617315433 -774,22.0,23.0,-1.4614056064833263,2.989238740534077 -774,23.0,21.0,-2.5405381522555563,3.95440286307604 -774,23.0,22.0,-1.4614056064833263,2.989238740534077 -774,23.0,23.0,5.311836702613133,-9.188263657315172 -774,23.0,24.0,-1.3098929438742493,2.287622053705056 -774,24.0,23.0,-1.3098929438742493,2.287622053705056 -774,24.0,24.0,4.495715080321987,-7.864978761969621 -774,24.0,25.0,-1.2165301194494855,1.8171440463475024 -774,24.0,26.0,-1.9692920169982515,3.760212661917064 -774,25.0,24.0,-1.2165301194494855,1.8171440463475024 -774,25.0,25.0,1.2165301194494855,-1.8171440463475024 -774,26.0,24.0,-1.9692920169982515,3.760212661917064 -774,26.0,26.0,2.9648255679509314,-8.166471027527404 -774,26.0,27.0,0.0,2.608731947574922 -774,26.0,28.0,-0.99553355095268,1.881005840357816 -774,27.0,5.0,-4.362844058012917,15.463571542897856 -774,27.0,7.0,-1.4439790613954469,4.540814658476248 -774,27.0,26.0,0.0,2.608731947574922 -774,27.0,27.0,5.806823119408364,-22.67145722159613 -774,28.0,26.0,-0.99553355095268,1.881005840357816 -774,28.0,28.0,1.9075867579849564,-3.604364401207048 -774,28.0,29.0,-0.9120532070322764,1.7233585608492326 -774,29.0,28.0,-0.9120532070322764,1.7233585608492326 -774,29.0,29.0,0.9120532070322764,-1.7233585608492326 -775,0.0,0.0,6.765516048652632,-21.23160167089863 -775,0.0,1.0,-5.224646179885656,15.646726840803398 -775,0.0,2.0,-1.5408698687669766,5.631674830095234 -775,1.0,0.0,-5.224646179885656,15.646726840803398 -775,1.0,1.0,9.75228216552403,-30.648662892676068 -775,1.0,3.0,-1.7055303166990268,5.1973792282565086 -775,1.0,4.0,-1.1359607881738778,4.772479328281356 -775,1.0,5.0,-1.6861448807654689,5.116477495334806 -775,2.0,0.0,-1.5408698687669766,5.631674830095234 -775,2.0,2.0,9.736318911079088,-29.13794745915803 -775,2.0,3.0,-8.19544904231211,23.5308726290628 -775,3.0,1.0,-1.7055303166990268,5.1973792282565086 -775,3.0,2.0,-8.19544904231211,23.5308726290628 -775,3.0,3.0,16.314103089185693,-55.509410535254254 -775,3.0,5.0,-6.413123730174556,22.31120356548123 -775,3.0,11.0,0.0,4.191255364806866 -775,4.0,1.0,-1.1359607881738778,4.772479328281356 -775,4.0,4.0,4.089980824135861,-12.190647245055052 -775,4.0,6.0,-2.954020035961983,7.449267916773697 -775,5.0,1.0,-1.6861448807654689,5.116477495334806 -775,5.0,3.0,-6.413123730174556,22.31120356548123 -775,5.0,5.0,22.341631269034565,-82.8291478657789 -775,5.0,6.0,-3.590210423980992,11.02611441072814 -775,5.0,7.0,-6.289308176100628,22.0125786163522 -775,5.0,8.0,0.0,4.915840805411357 -775,5.0,9.0,0.0,1.8561002591115965 -775,5.0,27.0,-4.362844058012917,15.463571542897856 -775,6.0,4.0,-2.954020035961983,7.449267916773697 -775,6.0,5.0,-3.590210423980992,11.02611441072814 -775,6.0,6.0,6.544230459942975,-18.45668232750184 -775,7.0,5.0,-6.289308176100628,22.0125786163522 -775,7.0,7.0,7.733287237496075,-26.527493274828448 -775,7.0,27.0,-1.4439790613954469,4.540814658476248 -775,8.0,5.0,0.0,4.915840805411357 -775,8.0,8.0,0.0,-18.706293706293707 -775,8.0,9.0,0.0,9.090909090909092 -775,8.0,10.0,0.0,4.807692307692308 -775,9.0,5.0,0.0,1.8561002591115965 -775,9.0,8.0,0.0,9.090909090909092 -775,9.0,9.0,13.462042814524237,-41.3837606675224 -775,9.0,16.0,-3.956039125715353,10.317447719844054 -775,9.0,19.0,-1.7848303152666305,3.98535828943083 -775,9.0,20.0,-5.101853820159654,10.98071411292983 -775,9.0,21.0,-2.619319553382597,5.400770303329455 -775,10.0,8.0,0.0,4.807692307692308 -775,10.0,10.0,0.0,-4.807692307692308 -775,11.0,3.0,0.0,4.191255364806866 -775,11.0,11.0,6.573961583776156,-24.424167659260668 -775,11.0,12.0,0.0,7.142857142857143 -775,11.0,13.0,-1.5265676088395577,3.1734252729654173 -775,11.0,14.0,-3.0953961826564296,6.097275864326261 -775,11.0,15.0,-1.9519977922801688,4.104359379111847 -775,12.0,11.0,0.0,7.142857142857143 -775,12.0,12.0,0.0,-7.142857142857143 -775,13.0,11.0,-1.5265676088395577,3.1734252729654173 -775,13.0,13.0,4.01751987283902,-5.424299332335067 -775,13.0,14.0,-2.4909522639994623,2.250874059369649 -775,14.0,11.0,-3.0953961826564296,6.097275864326261 -775,14.0,13.0,-2.4909522639994623,2.250874059369649 -775,14.0,14.0,9.365498545964757,-16.01163373210796 -775,14.0,17.0,-1.8108011504072024,3.687418931630696 -775,14.0,22.0,-1.9683489489016612,3.976064876781356 -775,15.0,11.0,-1.9519977922801688,4.104359379111847 -775,15.0,15.0,3.271064728633931,-8.94513365126506 -775,15.0,16.0,-1.3190669363537617,4.8407742721532125 -775,16.0,9.0,-3.956039125715353,10.317447719844054 -775,16.0,15.0,-1.3190669363537617,4.8407742721532125 -775,16.0,16.0,5.275106062069114,-15.158221991997266 -775,17.0,14.0,-1.8108011504072024,3.687418931630696 -775,17.0,17.0,4.886487584415919,-9.906177730909668 -775,17.0,18.0,-3.0756864340087167,6.218758799278971 -775,18.0,17.0,-3.0756864340087167,6.218758799278971 -775,18.0,18.0,8.958039375185187,-17.98346468163191 -775,18.0,19.0,-5.88235294117647,11.76470588235294 -775,19.0,9.0,-1.7848303152666305,3.98535828943083 -775,19.0,18.0,-5.88235294117647,11.76470588235294 -775,19.0,19.0,7.6671832564431,-15.75006417178377 -775,20.0,9.0,-5.101853820159654,10.98071411292983 -775,20.0,20.0,21.876495189895888,-45.10843276170355 -775,20.0,21.0,-16.774641369736234,34.127718648773715 -775,21.0,9.0,-2.619319553382597,5.400770303329455 -775,21.0,20.0,-16.774641369736234,34.127718648773715 -775,21.0,21.0,21.93449907537439,-43.48289181517921 -775,21.0,23.0,-2.5405381522555563,3.95440286307604 -775,22.0,14.0,-1.9683489489016612,3.976064876781356 -775,22.0,22.0,3.429754555384988,-6.965303617315433 -775,22.0,23.0,-1.4614056064833263,2.989238740534077 -775,23.0,21.0,-2.5405381522555563,3.95440286307604 -775,23.0,22.0,-1.4614056064833263,2.989238740534077 -775,23.0,23.0,5.311836702613133,-9.188263657315172 -775,23.0,24.0,-1.3098929438742493,2.287622053705056 -775,24.0,23.0,-1.3098929438742493,2.287622053705056 -775,24.0,24.0,4.495715080321987,-7.864978761969621 -775,24.0,25.0,-1.2165301194494855,1.8171440463475024 -775,24.0,26.0,-1.9692920169982515,3.760212661917064 -775,25.0,24.0,-1.2165301194494855,1.8171440463475024 -775,25.0,25.0,1.2165301194494855,-1.8171440463475024 -775,26.0,24.0,-1.9692920169982515,3.760212661917064 -775,26.0,26.0,3.652281470778589,-9.46044252232512 -775,26.0,27.0,0.0,2.608731947574922 -775,26.0,28.0,-0.99553355095268,1.881005840357816 -775,26.0,29.0,-0.6874559028276572,1.293971494797717 -775,27.0,5.0,-4.362844058012917,15.463571542897856 -775,27.0,7.0,-1.4439790613954469,4.540814658476248 -775,27.0,26.0,0.0,2.608731947574922 -775,27.0,27.0,5.806823119408364,-22.67145722159613 -775,28.0,26.0,-0.99553355095268,1.881005840357816 -775,28.0,28.0,1.9075867579849564,-3.604364401207048 -775,28.0,29.0,-0.9120532070322764,1.7233585608492326 -775,29.0,26.0,-0.6874559028276572,1.293971494797717 -775,29.0,28.0,-0.9120532070322764,1.7233585608492326 -775,29.0,29.0,1.5995091098599337,-3.0173300556469496 -776,0.0,0.0,6.765516048652632,-21.23160167089863 -776,0.0,1.0,-5.224646179885656,15.646726840803398 -776,0.0,2.0,-1.5408698687669766,5.631674830095234 -776,1.0,0.0,-5.224646179885656,15.646726840803398 -776,1.0,1.0,9.75228216552403,-30.648662892676068 -776,1.0,3.0,-1.7055303166990268,5.1973792282565086 -776,1.0,4.0,-1.1359607881738778,4.772479328281356 -776,1.0,5.0,-1.6861448807654689,5.116477495334806 -776,2.0,0.0,-1.5408698687669766,5.631674830095234 -776,2.0,2.0,9.736318911079088,-29.13794745915803 -776,2.0,3.0,-8.19544904231211,23.5308726290628 -776,3.0,1.0,-1.7055303166990268,5.1973792282565086 -776,3.0,2.0,-8.19544904231211,23.5308726290628 -776,3.0,3.0,16.314103089185693,-55.509410535254254 -776,3.0,5.0,-6.413123730174556,22.31120356548123 -776,3.0,11.0,0.0,4.191255364806866 -776,4.0,1.0,-1.1359607881738778,4.772479328281356 -776,4.0,4.0,1.1359607881738778,-4.751579328281355 -776,5.0,1.0,-1.6861448807654689,5.116477495334806 -776,5.0,3.0,-6.413123730174556,22.31120356548123 -776,5.0,5.0,22.341631269034565,-82.8291478657789 -776,5.0,6.0,-3.590210423980992,11.02611441072814 -776,5.0,7.0,-6.289308176100628,22.0125786163522 -776,5.0,8.0,0.0,4.915840805411357 -776,5.0,9.0,0.0,1.8561002591115965 -776,5.0,27.0,-4.362844058012917,15.463571542897856 -776,6.0,5.0,-3.590210423980992,11.02611441072814 -776,6.0,6.0,3.590210423980992,-11.01761441072814 -776,7.0,5.0,-6.289308176100628,22.0125786163522 -776,7.0,7.0,7.733287237496075,-26.527493274828448 -776,7.0,27.0,-1.4439790613954469,4.540814658476248 -776,8.0,5.0,0.0,4.915840805411357 -776,8.0,8.0,0.0,-18.706293706293707 -776,8.0,9.0,0.0,9.090909090909092 -776,8.0,10.0,0.0,4.807692307692308 -776,9.0,5.0,0.0,1.8561002591115965 -776,9.0,8.0,0.0,9.090909090909092 -776,9.0,9.0,13.462042814524237,-41.3837606675224 -776,9.0,16.0,-3.956039125715353,10.317447719844054 -776,9.0,19.0,-1.7848303152666305,3.98535828943083 -776,9.0,20.0,-5.101853820159654,10.98071411292983 -776,9.0,21.0,-2.619319553382597,5.400770303329455 -776,10.0,8.0,0.0,4.807692307692308 -776,10.0,10.0,0.0,-4.807692307692308 -776,11.0,3.0,0.0,4.191255364806866 -776,11.0,11.0,4.621963791495987,-20.31980828014882 -776,11.0,12.0,0.0,7.142857142857143 -776,11.0,13.0,-1.5265676088395577,3.1734252729654173 -776,11.0,14.0,-3.0953961826564296,6.097275864326261 -776,12.0,11.0,0.0,7.142857142857143 -776,12.0,12.0,0.0,-7.142857142857143 -776,13.0,11.0,-1.5265676088395577,3.1734252729654173 -776,13.0,13.0,4.01751987283902,-5.424299332335067 -776,13.0,14.0,-2.4909522639994623,2.250874059369649 -776,14.0,11.0,-3.0953961826564296,6.097275864326261 -776,14.0,13.0,-2.4909522639994623,2.250874059369649 -776,14.0,14.0,9.365498545964757,-16.01163373210796 -776,14.0,17.0,-1.8108011504072024,3.687418931630696 -776,14.0,22.0,-1.9683489489016612,3.976064876781356 -776,15.0,15.0,1.3190669363537617,-4.8407742721532125 -776,15.0,16.0,-1.3190669363537617,4.8407742721532125 -776,16.0,9.0,-3.956039125715353,10.317447719844054 -776,16.0,15.0,-1.3190669363537617,4.8407742721532125 -776,16.0,16.0,5.275106062069114,-15.158221991997266 -776,17.0,14.0,-1.8108011504072024,3.687418931630696 -776,17.0,17.0,4.886487584415919,-9.906177730909668 -776,17.0,18.0,-3.0756864340087167,6.218758799278971 -776,18.0,17.0,-3.0756864340087167,6.218758799278971 -776,18.0,18.0,8.958039375185187,-17.98346468163191 -776,18.0,19.0,-5.88235294117647,11.76470588235294 -776,19.0,9.0,-1.7848303152666305,3.98535828943083 -776,19.0,18.0,-5.88235294117647,11.76470588235294 -776,19.0,19.0,7.6671832564431,-15.75006417178377 -776,20.0,9.0,-5.101853820159654,10.98071411292983 -776,20.0,20.0,21.876495189895888,-45.10843276170355 -776,20.0,21.0,-16.774641369736234,34.127718648773715 -776,21.0,9.0,-2.619319553382597,5.400770303329455 -776,21.0,20.0,-16.774641369736234,34.127718648773715 -776,21.0,21.0,21.93449907537439,-43.48289181517921 -776,21.0,23.0,-2.5405381522555563,3.95440286307604 -776,22.0,14.0,-1.9683489489016612,3.976064876781356 -776,22.0,22.0,3.429754555384988,-6.965303617315433 -776,22.0,23.0,-1.4614056064833263,2.989238740534077 -776,23.0,21.0,-2.5405381522555563,3.95440286307604 -776,23.0,22.0,-1.4614056064833263,2.989238740534077 -776,23.0,23.0,5.311836702613133,-9.188263657315172 -776,23.0,24.0,-1.3098929438742493,2.287622053705056 -776,24.0,23.0,-1.3098929438742493,2.287622053705056 -776,24.0,24.0,4.495715080321987,-7.864978761969621 -776,24.0,25.0,-1.2165301194494855,1.8171440463475024 -776,24.0,26.0,-1.9692920169982515,3.760212661917064 -776,25.0,24.0,-1.2165301194494855,1.8171440463475024 -776,25.0,25.0,1.2165301194494855,-1.8171440463475024 -776,26.0,24.0,-1.9692920169982515,3.760212661917064 -776,26.0,26.0,3.652281470778589,-9.46044252232512 -776,26.0,27.0,0.0,2.608731947574922 -776,26.0,28.0,-0.99553355095268,1.881005840357816 -776,26.0,29.0,-0.6874559028276572,1.293971494797717 -776,27.0,5.0,-4.362844058012917,15.463571542897856 -776,27.0,7.0,-1.4439790613954469,4.540814658476248 -776,27.0,26.0,0.0,2.608731947574922 -776,27.0,27.0,5.806823119408364,-22.67145722159613 -776,28.0,26.0,-0.99553355095268,1.881005840357816 -776,28.0,28.0,1.9075867579849564,-3.604364401207048 -776,28.0,29.0,-0.9120532070322764,1.7233585608492326 -776,29.0,26.0,-0.6874559028276572,1.293971494797717 -776,29.0,28.0,-0.9120532070322764,1.7233585608492326 -776,29.0,29.0,1.5995091098599337,-3.0173300556469496 -777,0.0,0.0,6.765516048652632,-21.23160167089863 -777,0.0,1.0,-5.224646179885656,15.646726840803398 -777,0.0,2.0,-1.5408698687669766,5.631674830095234 -777,1.0,0.0,-5.224646179885656,15.646726840803398 -777,1.0,1.0,9.75228216552403,-30.648662892676068 -777,1.0,3.0,-1.7055303166990268,5.1973792282565086 -777,1.0,4.0,-1.1359607881738778,4.772479328281356 -777,1.0,5.0,-1.6861448807654689,5.116477495334806 -777,2.0,0.0,-1.5408698687669766,5.631674830095234 -777,2.0,2.0,9.736318911079088,-29.13794745915803 -777,2.0,3.0,-8.19544904231211,23.5308726290628 -777,3.0,1.0,-1.7055303166990268,5.1973792282565086 -777,3.0,2.0,-8.19544904231211,23.5308726290628 -777,3.0,3.0,16.314103089185693,-55.509410535254254 -777,3.0,5.0,-6.413123730174556,22.31120356548123 -777,3.0,11.0,0.0,4.191255364806866 -777,4.0,1.0,-1.1359607881738778,4.772479328281356 -777,4.0,4.0,4.089980824135861,-12.190647245055052 -777,4.0,6.0,-2.954020035961983,7.449267916773697 -777,5.0,1.0,-1.6861448807654689,5.116477495334806 -777,5.0,3.0,-6.413123730174556,22.31120356548123 -777,5.0,5.0,22.341631269034565,-82.8291478657789 -777,5.0,6.0,-3.590210423980992,11.02611441072814 -777,5.0,7.0,-6.289308176100628,22.0125786163522 -777,5.0,8.0,0.0,4.915840805411357 -777,5.0,9.0,0.0,1.8561002591115965 -777,5.0,27.0,-4.362844058012917,15.463571542897856 -777,6.0,4.0,-2.954020035961983,7.449267916773697 -777,6.0,5.0,-3.590210423980992,11.02611441072814 -777,6.0,6.0,6.544230459942975,-18.45668232750184 -777,7.0,5.0,-6.289308176100628,22.0125786163522 -777,7.0,7.0,7.733287237496075,-26.527493274828448 -777,7.0,27.0,-1.4439790613954469,4.540814658476248 -777,8.0,5.0,0.0,4.915840805411357 -777,8.0,8.0,0.0,-18.706293706293707 -777,8.0,9.0,0.0,9.090909090909092 -777,8.0,10.0,0.0,4.807692307692308 -777,9.0,5.0,0.0,1.8561002591115965 -777,9.0,8.0,0.0,9.090909090909092 -777,9.0,9.0,13.462042814524237,-41.3837606675224 -777,9.0,16.0,-3.956039125715353,10.317447719844054 -777,9.0,19.0,-1.7848303152666305,3.98535828943083 -777,9.0,20.0,-5.101853820159654,10.98071411292983 -777,9.0,21.0,-2.619319553382597,5.400770303329455 -777,10.0,8.0,0.0,4.807692307692308 -777,10.0,10.0,0.0,-4.807692307692308 -777,11.0,3.0,0.0,4.191255364806866 -777,11.0,11.0,6.573961583776156,-24.424167659260668 -777,11.0,12.0,0.0,7.142857142857143 -777,11.0,13.0,-1.5265676088395577,3.1734252729654173 -777,11.0,14.0,-3.0953961826564296,6.097275864326261 -777,11.0,15.0,-1.9519977922801688,4.104359379111847 -777,12.0,11.0,0.0,7.142857142857143 -777,12.0,12.0,0.0,-7.142857142857143 -777,13.0,11.0,-1.5265676088395577,3.1734252729654173 -777,13.0,13.0,4.01751987283902,-5.424299332335067 -777,13.0,14.0,-2.4909522639994623,2.250874059369649 -777,14.0,11.0,-3.0953961826564296,6.097275864326261 -777,14.0,13.0,-2.4909522639994623,2.250874059369649 -777,14.0,14.0,9.365498545964757,-16.01163373210796 -777,14.0,17.0,-1.8108011504072024,3.687418931630696 -777,14.0,22.0,-1.9683489489016612,3.976064876781356 -777,15.0,11.0,-1.9519977922801688,4.104359379111847 -777,15.0,15.0,3.271064728633931,-8.94513365126506 -777,15.0,16.0,-1.3190669363537617,4.8407742721532125 -777,16.0,9.0,-3.956039125715353,10.317447719844054 -777,16.0,15.0,-1.3190669363537617,4.8407742721532125 -777,16.0,16.0,5.275106062069114,-15.158221991997266 -777,17.0,14.0,-1.8108011504072024,3.687418931630696 -777,17.0,17.0,4.886487584415919,-9.906177730909668 -777,17.0,18.0,-3.0756864340087167,6.218758799278971 -777,18.0,17.0,-3.0756864340087167,6.218758799278971 -777,18.0,18.0,8.958039375185187,-17.98346468163191 -777,18.0,19.0,-5.88235294117647,11.76470588235294 -777,19.0,9.0,-1.7848303152666305,3.98535828943083 -777,19.0,18.0,-5.88235294117647,11.76470588235294 -777,19.0,19.0,7.6671832564431,-15.75006417178377 -777,20.0,9.0,-5.101853820159654,10.98071411292983 -777,20.0,20.0,21.876495189895888,-45.10843276170355 -777,20.0,21.0,-16.774641369736234,34.127718648773715 -777,21.0,9.0,-2.619319553382597,5.400770303329455 -777,21.0,20.0,-16.774641369736234,34.127718648773715 -777,21.0,21.0,21.93449907537439,-43.48289181517921 -777,21.0,23.0,-2.5405381522555563,3.95440286307604 -777,22.0,14.0,-1.9683489489016612,3.976064876781356 -777,22.0,22.0,3.429754555384988,-6.965303617315433 -777,22.0,23.0,-1.4614056064833263,2.989238740534077 -777,23.0,21.0,-2.5405381522555563,3.95440286307604 -777,23.0,22.0,-1.4614056064833263,2.989238740534077 -777,23.0,23.0,5.311836702613133,-9.188263657315172 -777,23.0,24.0,-1.3098929438742493,2.287622053705056 -777,24.0,23.0,-1.3098929438742493,2.287622053705056 -777,24.0,24.0,4.495715080321987,-7.864978761969621 -777,24.0,25.0,-1.2165301194494855,1.8171440463475024 -777,24.0,26.0,-1.9692920169982515,3.760212661917064 -777,25.0,24.0,-1.2165301194494855,1.8171440463475024 -777,25.0,25.0,1.2165301194494855,-1.8171440463475024 -777,26.0,24.0,-1.9692920169982515,3.760212661917064 -777,26.0,26.0,3.652281470778589,-9.46044252232512 -777,26.0,27.0,0.0,2.608731947574922 -777,26.0,28.0,-0.99553355095268,1.881005840357816 -777,26.0,29.0,-0.6874559028276572,1.293971494797717 -777,27.0,5.0,-4.362844058012917,15.463571542897856 -777,27.0,7.0,-1.4439790613954469,4.540814658476248 -777,27.0,26.0,0.0,2.608731947574922 -777,27.0,27.0,5.806823119408364,-22.67145722159613 -777,28.0,26.0,-0.99553355095268,1.881005840357816 -777,28.0,28.0,1.9075867579849564,-3.604364401207048 -777,28.0,29.0,-0.9120532070322764,1.7233585608492326 -777,29.0,26.0,-0.6874559028276572,1.293971494797717 -777,29.0,28.0,-0.9120532070322764,1.7233585608492326 -777,29.0,29.0,1.5995091098599337,-3.0173300556469496 -778,0.0,0.0,6.765516048652632,-21.23160167089863 -778,0.0,1.0,-5.224646179885656,15.646726840803398 -778,0.0,2.0,-1.5408698687669766,5.631674830095234 -778,1.0,0.0,-5.224646179885656,15.646726840803398 -778,1.0,1.0,9.75228216552403,-30.648662892676068 -778,1.0,3.0,-1.7055303166990268,5.1973792282565086 -778,1.0,4.0,-1.1359607881738778,4.772479328281356 -778,1.0,5.0,-1.6861448807654689,5.116477495334806 -778,2.0,0.0,-1.5408698687669766,5.631674830095234 -778,2.0,2.0,9.736318911079088,-29.13794745915803 -778,2.0,3.0,-8.19544904231211,23.5308726290628 -778,3.0,1.0,-1.7055303166990268,5.1973792282565086 -778,3.0,2.0,-8.19544904231211,23.5308726290628 -778,3.0,3.0,16.314103089185693,-55.509410535254254 -778,3.0,5.0,-6.413123730174556,22.31120356548123 -778,3.0,11.0,0.0,4.191255364806866 -778,4.0,1.0,-1.1359607881738778,4.772479328281356 -778,4.0,4.0,4.089980824135861,-12.190647245055052 -778,4.0,6.0,-2.954020035961983,7.449267916773697 -778,5.0,1.0,-1.6861448807654689,5.116477495334806 -778,5.0,3.0,-6.413123730174556,22.31120356548123 -778,5.0,5.0,22.341631269034565,-82.8291478657789 -778,5.0,6.0,-3.590210423980992,11.02611441072814 -778,5.0,7.0,-6.289308176100628,22.0125786163522 -778,5.0,8.0,0.0,4.915840805411357 -778,5.0,9.0,0.0,1.8561002591115965 -778,5.0,27.0,-4.362844058012917,15.463571542897856 -778,6.0,4.0,-2.954020035961983,7.449267916773697 -778,6.0,5.0,-3.590210423980992,11.02611441072814 -778,6.0,6.0,6.544230459942975,-18.45668232750184 -778,7.0,5.0,-6.289308176100628,22.0125786163522 -778,7.0,7.0,7.733287237496075,-26.527493274828448 -778,7.0,27.0,-1.4439790613954469,4.540814658476248 -778,8.0,5.0,0.0,4.915840805411357 -778,8.0,8.0,0.0,-18.706293706293707 -778,8.0,9.0,0.0,9.090909090909092 -778,8.0,10.0,0.0,4.807692307692308 -778,9.0,5.0,0.0,1.8561002591115965 -778,9.0,8.0,0.0,9.090909090909092 -778,9.0,9.0,13.462042814524237,-41.3837606675224 -778,9.0,16.0,-3.956039125715353,10.317447719844054 -778,9.0,19.0,-1.7848303152666305,3.98535828943083 -778,9.0,20.0,-5.101853820159654,10.98071411292983 -778,9.0,21.0,-2.619319553382597,5.400770303329455 -778,10.0,8.0,0.0,4.807692307692308 -778,10.0,10.0,0.0,-4.807692307692308 -778,11.0,3.0,0.0,4.191255364806866 -778,11.0,11.0,6.573961583776156,-24.424167659260668 -778,11.0,12.0,0.0,7.142857142857143 -778,11.0,13.0,-1.5265676088395577,3.1734252729654173 -778,11.0,14.0,-3.0953961826564296,6.097275864326261 -778,11.0,15.0,-1.9519977922801688,4.104359379111847 -778,12.0,11.0,0.0,7.142857142857143 -778,12.0,12.0,0.0,-7.142857142857143 -778,13.0,11.0,-1.5265676088395577,3.1734252729654173 -778,13.0,13.0,4.01751987283902,-5.424299332335067 -778,13.0,14.0,-2.4909522639994623,2.250874059369649 -778,14.0,11.0,-3.0953961826564296,6.097275864326261 -778,14.0,13.0,-2.4909522639994623,2.250874059369649 -778,14.0,14.0,9.365498545964757,-16.01163373210796 -778,14.0,17.0,-1.8108011504072024,3.687418931630696 -778,14.0,22.0,-1.9683489489016612,3.976064876781356 -778,15.0,11.0,-1.9519977922801688,4.104359379111847 -778,15.0,15.0,3.271064728633931,-8.94513365126506 -778,15.0,16.0,-1.3190669363537617,4.8407742721532125 -778,16.0,9.0,-3.956039125715353,10.317447719844054 -778,16.0,15.0,-1.3190669363537617,4.8407742721532125 -778,16.0,16.0,5.275106062069114,-15.158221991997266 -778,17.0,14.0,-1.8108011504072024,3.687418931630696 -778,17.0,17.0,4.886487584415919,-9.906177730909668 -778,17.0,18.0,-3.0756864340087167,6.218758799278971 -778,18.0,17.0,-3.0756864340087167,6.218758799278971 -778,18.0,18.0,8.958039375185187,-17.98346468163191 -778,18.0,19.0,-5.88235294117647,11.76470588235294 -778,19.0,9.0,-1.7848303152666305,3.98535828943083 -778,19.0,18.0,-5.88235294117647,11.76470588235294 -778,19.0,19.0,7.6671832564431,-15.75006417178377 -778,20.0,9.0,-5.101853820159654,10.98071411292983 -778,20.0,20.0,21.876495189895888,-45.10843276170355 -778,20.0,21.0,-16.774641369736234,34.127718648773715 -778,21.0,9.0,-2.619319553382597,5.400770303329455 -778,21.0,20.0,-16.774641369736234,34.127718648773715 -778,21.0,21.0,21.93449907537439,-43.48289181517921 -778,21.0,23.0,-2.5405381522555563,3.95440286307604 -778,22.0,14.0,-1.9683489489016612,3.976064876781356 -778,22.0,22.0,3.429754555384988,-6.965303617315433 -778,22.0,23.0,-1.4614056064833263,2.989238740534077 -778,23.0,21.0,-2.5405381522555563,3.95440286307604 -778,23.0,22.0,-1.4614056064833263,2.989238740534077 -778,23.0,23.0,5.311836702613133,-9.188263657315172 -778,23.0,24.0,-1.3098929438742493,2.287622053705056 -778,24.0,23.0,-1.3098929438742493,2.287622053705056 -778,24.0,24.0,4.495715080321987,-7.864978761969621 -778,24.0,25.0,-1.2165301194494855,1.8171440463475024 -778,24.0,26.0,-1.9692920169982515,3.760212661917064 -778,25.0,24.0,-1.2165301194494855,1.8171440463475024 -778,25.0,25.0,1.2165301194494855,-1.8171440463475024 -778,26.0,24.0,-1.9692920169982515,3.760212661917064 -778,26.0,26.0,3.652281470778589,-9.46044252232512 -778,26.0,27.0,0.0,2.608731947574922 -778,26.0,28.0,-0.99553355095268,1.881005840357816 -778,26.0,29.0,-0.6874559028276572,1.293971494797717 -778,27.0,5.0,-4.362844058012917,15.463571542897856 -778,27.0,7.0,-1.4439790613954469,4.540814658476248 -778,27.0,26.0,0.0,2.608731947574922 -778,27.0,27.0,5.806823119408364,-22.67145722159613 -778,28.0,26.0,-0.99553355095268,1.881005840357816 -778,28.0,28.0,1.9075867579849564,-3.604364401207048 -778,28.0,29.0,-0.9120532070322764,1.7233585608492326 -778,29.0,26.0,-0.6874559028276572,1.293971494797717 -778,29.0,28.0,-0.9120532070322764,1.7233585608492326 -778,29.0,29.0,1.5995091098599337,-3.0173300556469496 -779,0.0,0.0,6.765516048652632,-21.23160167089863 -779,0.0,1.0,-5.224646179885656,15.646726840803398 -779,0.0,2.0,-1.5408698687669766,5.631674830095234 -779,1.0,0.0,-5.224646179885656,15.646726840803398 -779,1.0,1.0,9.75228216552403,-30.648662892676068 -779,1.0,3.0,-1.7055303166990268,5.1973792282565086 -779,1.0,4.0,-1.1359607881738778,4.772479328281356 -779,1.0,5.0,-1.6861448807654689,5.116477495334806 -779,2.0,0.0,-1.5408698687669766,5.631674830095234 -779,2.0,2.0,9.736318911079088,-29.13794745915803 -779,2.0,3.0,-8.19544904231211,23.5308726290628 -779,3.0,1.0,-1.7055303166990268,5.1973792282565086 -779,3.0,2.0,-8.19544904231211,23.5308726290628 -779,3.0,3.0,16.314103089185693,-55.509410535254254 -779,3.0,5.0,-6.413123730174556,22.31120356548123 -779,3.0,11.0,0.0,4.191255364806866 -779,4.0,1.0,-1.1359607881738778,4.772479328281356 -779,4.0,4.0,4.089980824135861,-12.190647245055052 -779,4.0,6.0,-2.954020035961983,7.449267916773697 -779,5.0,1.0,-1.6861448807654689,5.116477495334806 -779,5.0,3.0,-6.413123730174556,22.31120356548123 -779,5.0,5.0,22.341631269034565,-82.8291478657789 -779,5.0,6.0,-3.590210423980992,11.02611441072814 -779,5.0,7.0,-6.289308176100628,22.0125786163522 -779,5.0,8.0,0.0,4.915840805411357 -779,5.0,9.0,0.0,1.8561002591115965 -779,5.0,27.0,-4.362844058012917,15.463571542897856 -779,6.0,4.0,-2.954020035961983,7.449267916773697 -779,6.0,5.0,-3.590210423980992,11.02611441072814 -779,6.0,6.0,6.544230459942975,-18.45668232750184 -779,7.0,5.0,-6.289308176100628,22.0125786163522 -779,7.0,7.0,7.733287237496075,-26.527493274828448 -779,7.0,27.0,-1.4439790613954469,4.540814658476248 -779,8.0,5.0,0.0,4.915840805411357 -779,8.0,8.0,0.0,-18.706293706293707 -779,8.0,9.0,0.0,9.090909090909092 -779,8.0,10.0,0.0,4.807692307692308 -779,9.0,5.0,0.0,1.8561002591115965 -779,9.0,8.0,0.0,9.090909090909092 -779,9.0,9.0,13.462042814524237,-41.3837606675224 -779,9.0,16.0,-3.956039125715353,10.317447719844054 -779,9.0,19.0,-1.7848303152666305,3.98535828943083 -779,9.0,20.0,-5.101853820159654,10.98071411292983 -779,9.0,21.0,-2.619319553382597,5.400770303329455 -779,10.0,8.0,0.0,4.807692307692308 -779,10.0,10.0,0.0,-4.807692307692308 -779,11.0,3.0,0.0,4.191255364806866 -779,11.0,11.0,6.573961583776156,-24.424167659260668 -779,11.0,12.0,0.0,7.142857142857143 -779,11.0,13.0,-1.5265676088395577,3.1734252729654173 -779,11.0,14.0,-3.0953961826564296,6.097275864326261 -779,11.0,15.0,-1.9519977922801688,4.104359379111847 -779,12.0,11.0,0.0,7.142857142857143 -779,12.0,12.0,0.0,-7.142857142857143 -779,13.0,11.0,-1.5265676088395577,3.1734252729654173 -779,13.0,13.0,4.01751987283902,-5.424299332335067 -779,13.0,14.0,-2.4909522639994623,2.250874059369649 -779,14.0,11.0,-3.0953961826564296,6.097275864326261 -779,14.0,13.0,-2.4909522639994623,2.250874059369649 -779,14.0,14.0,9.365498545964757,-16.01163373210796 -779,14.0,17.0,-1.8108011504072024,3.687418931630696 -779,14.0,22.0,-1.9683489489016612,3.976064876781356 -779,15.0,11.0,-1.9519977922801688,4.104359379111847 -779,15.0,15.0,3.271064728633931,-8.94513365126506 -779,15.0,16.0,-1.3190669363537617,4.8407742721532125 -779,16.0,9.0,-3.956039125715353,10.317447719844054 -779,16.0,15.0,-1.3190669363537617,4.8407742721532125 -779,16.0,16.0,5.275106062069114,-15.158221991997266 -779,17.0,14.0,-1.8108011504072024,3.687418931630696 -779,17.0,17.0,4.886487584415919,-9.906177730909668 -779,17.0,18.0,-3.0756864340087167,6.218758799278971 -779,18.0,17.0,-3.0756864340087167,6.218758799278971 -779,18.0,18.0,8.958039375185187,-17.98346468163191 -779,18.0,19.0,-5.88235294117647,11.76470588235294 -779,19.0,9.0,-1.7848303152666305,3.98535828943083 -779,19.0,18.0,-5.88235294117647,11.76470588235294 -779,19.0,19.0,7.6671832564431,-15.75006417178377 -779,20.0,9.0,-5.101853820159654,10.98071411292983 -779,20.0,20.0,21.876495189895888,-45.10843276170355 -779,20.0,21.0,-16.774641369736234,34.127718648773715 -779,21.0,9.0,-2.619319553382597,5.400770303329455 -779,21.0,20.0,-16.774641369736234,34.127718648773715 -779,21.0,21.0,21.93449907537439,-43.48289181517921 -779,21.0,23.0,-2.5405381522555563,3.95440286307604 -779,22.0,14.0,-1.9683489489016612,3.976064876781356 -779,22.0,22.0,3.429754555384988,-6.965303617315433 -779,22.0,23.0,-1.4614056064833263,2.989238740534077 -779,23.0,21.0,-2.5405381522555563,3.95440286307604 -779,23.0,22.0,-1.4614056064833263,2.989238740534077 -779,23.0,23.0,5.311836702613133,-9.188263657315172 -779,23.0,24.0,-1.3098929438742493,2.287622053705056 -779,24.0,23.0,-1.3098929438742493,2.287622053705056 -779,24.0,24.0,4.495715080321987,-7.864978761969621 -779,24.0,25.0,-1.2165301194494855,1.8171440463475024 -779,24.0,26.0,-1.9692920169982515,3.760212661917064 -779,25.0,24.0,-1.2165301194494855,1.8171440463475024 -779,25.0,25.0,1.2165301194494855,-1.8171440463475024 -779,26.0,24.0,-1.9692920169982515,3.760212661917064 -779,26.0,26.0,3.652281470778589,-9.46044252232512 -779,26.0,27.0,0.0,2.608731947574922 -779,26.0,28.0,-0.99553355095268,1.881005840357816 -779,26.0,29.0,-0.6874559028276572,1.293971494797717 -779,27.0,5.0,-4.362844058012917,15.463571542897856 -779,27.0,7.0,-1.4439790613954469,4.540814658476248 -779,27.0,26.0,0.0,2.608731947574922 -779,27.0,27.0,5.806823119408364,-22.67145722159613 -779,28.0,26.0,-0.99553355095268,1.881005840357816 -779,28.0,28.0,1.9075867579849564,-3.604364401207048 -779,28.0,29.0,-0.9120532070322764,1.7233585608492326 -779,29.0,26.0,-0.6874559028276572,1.293971494797717 -779,29.0,28.0,-0.9120532070322764,1.7233585608492326 -779,29.0,29.0,1.5995091098599337,-3.0173300556469496 -780,0.0,0.0,6.765516048652632,-21.23160167089863 -780,0.0,1.0,-5.224646179885656,15.646726840803398 -780,0.0,2.0,-1.5408698687669766,5.631674830095234 -780,1.0,0.0,-5.224646179885656,15.646726840803398 -780,1.0,1.0,9.75228216552403,-30.648662892676068 -780,1.0,3.0,-1.7055303166990268,5.1973792282565086 -780,1.0,4.0,-1.1359607881738778,4.772479328281356 -780,1.0,5.0,-1.6861448807654689,5.116477495334806 -780,2.0,0.0,-1.5408698687669766,5.631674830095234 -780,2.0,2.0,9.736318911079088,-29.13794745915803 -780,2.0,3.0,-8.19544904231211,23.5308726290628 -780,3.0,1.0,-1.7055303166990268,5.1973792282565086 -780,3.0,2.0,-8.19544904231211,23.5308726290628 -780,3.0,3.0,16.314103089185693,-55.509410535254254 -780,3.0,5.0,-6.413123730174556,22.31120356548123 -780,3.0,11.0,0.0,4.191255364806866 -780,4.0,1.0,-1.1359607881738778,4.772479328281356 -780,4.0,4.0,4.089980824135861,-12.190647245055052 -780,4.0,6.0,-2.954020035961983,7.449267916773697 -780,5.0,1.0,-1.6861448807654689,5.116477495334806 -780,5.0,3.0,-6.413123730174556,22.31120356548123 -780,5.0,5.0,22.341631269034565,-82.8291478657789 -780,5.0,6.0,-3.590210423980992,11.02611441072814 -780,5.0,7.0,-6.289308176100628,22.0125786163522 -780,5.0,8.0,0.0,4.915840805411357 -780,5.0,9.0,0.0,1.8561002591115965 -780,5.0,27.0,-4.362844058012917,15.463571542897856 -780,6.0,4.0,-2.954020035961983,7.449267916773697 -780,6.0,5.0,-3.590210423980992,11.02611441072814 -780,6.0,6.0,6.544230459942975,-18.45668232750184 -780,7.0,5.0,-6.289308176100628,22.0125786163522 -780,7.0,7.0,7.733287237496075,-26.527493274828448 -780,7.0,27.0,-1.4439790613954469,4.540814658476248 -780,8.0,5.0,0.0,4.915840805411357 -780,8.0,8.0,0.0,-18.706293706293707 -780,8.0,9.0,0.0,9.090909090909092 -780,8.0,10.0,0.0,4.807692307692308 -780,9.0,5.0,0.0,1.8561002591115965 -780,9.0,8.0,0.0,9.090909090909092 -780,9.0,9.0,13.462042814524237,-41.3837606675224 -780,9.0,16.0,-3.956039125715353,10.317447719844054 -780,9.0,19.0,-1.7848303152666305,3.98535828943083 -780,9.0,20.0,-5.101853820159654,10.98071411292983 -780,9.0,21.0,-2.619319553382597,5.400770303329455 -780,10.0,8.0,0.0,4.807692307692308 -780,10.0,10.0,0.0,-4.807692307692308 -780,11.0,3.0,0.0,4.191255364806866 -780,11.0,11.0,6.573961583776156,-24.424167659260668 -780,11.0,12.0,0.0,7.142857142857143 -780,11.0,13.0,-1.5265676088395577,3.1734252729654173 -780,11.0,14.0,-3.0953961826564296,6.097275864326261 -780,11.0,15.0,-1.9519977922801688,4.104359379111847 -780,12.0,11.0,0.0,7.142857142857143 -780,12.0,12.0,0.0,-7.142857142857143 -780,13.0,11.0,-1.5265676088395577,3.1734252729654173 -780,13.0,13.0,4.01751987283902,-5.424299332335067 -780,13.0,14.0,-2.4909522639994623,2.250874059369649 -780,14.0,11.0,-3.0953961826564296,6.097275864326261 -780,14.0,13.0,-2.4909522639994623,2.250874059369649 -780,14.0,14.0,9.365498545964757,-16.01163373210796 -780,14.0,17.0,-1.8108011504072024,3.687418931630696 -780,14.0,22.0,-1.9683489489016612,3.976064876781356 -780,15.0,11.0,-1.9519977922801688,4.104359379111847 -780,15.0,15.0,3.271064728633931,-8.94513365126506 -780,15.0,16.0,-1.3190669363537617,4.8407742721532125 -780,16.0,9.0,-3.956039125715353,10.317447719844054 -780,16.0,15.0,-1.3190669363537617,4.8407742721532125 -780,16.0,16.0,5.275106062069114,-15.158221991997266 -780,17.0,14.0,-1.8108011504072024,3.687418931630696 -780,17.0,17.0,4.886487584415919,-9.906177730909668 -780,17.0,18.0,-3.0756864340087167,6.218758799278971 -780,18.0,17.0,-3.0756864340087167,6.218758799278971 -780,18.0,18.0,8.958039375185187,-17.98346468163191 -780,18.0,19.0,-5.88235294117647,11.76470588235294 -780,19.0,9.0,-1.7848303152666305,3.98535828943083 -780,19.0,18.0,-5.88235294117647,11.76470588235294 -780,19.0,19.0,7.6671832564431,-15.75006417178377 -780,20.0,9.0,-5.101853820159654,10.98071411292983 -780,20.0,20.0,21.876495189895888,-45.10843276170355 -780,20.0,21.0,-16.774641369736234,34.127718648773715 -780,21.0,9.0,-2.619319553382597,5.400770303329455 -780,21.0,20.0,-16.774641369736234,34.127718648773715 -780,21.0,21.0,21.93449907537439,-43.48289181517921 -780,21.0,23.0,-2.5405381522555563,3.95440286307604 -780,22.0,14.0,-1.9683489489016612,3.976064876781356 -780,22.0,22.0,3.429754555384988,-6.965303617315433 -780,22.0,23.0,-1.4614056064833263,2.989238740534077 -780,23.0,21.0,-2.5405381522555563,3.95440286307604 -780,23.0,22.0,-1.4614056064833263,2.989238740534077 -780,23.0,23.0,5.311836702613133,-9.188263657315172 -780,23.0,24.0,-1.3098929438742493,2.287622053705056 -780,24.0,23.0,-1.3098929438742493,2.287622053705056 -780,24.0,24.0,4.495715080321987,-7.864978761969621 -780,24.0,25.0,-1.2165301194494855,1.8171440463475024 -780,24.0,26.0,-1.9692920169982515,3.760212661917064 -780,25.0,24.0,-1.2165301194494855,1.8171440463475024 -780,25.0,25.0,1.2165301194494855,-1.8171440463475024 -780,26.0,24.0,-1.9692920169982515,3.760212661917064 -780,26.0,26.0,2.9648255679509314,-8.166471027527404 -780,26.0,27.0,0.0,2.608731947574922 -780,26.0,28.0,-0.99553355095268,1.881005840357816 -780,27.0,5.0,-4.362844058012917,15.463571542897856 -780,27.0,7.0,-1.4439790613954469,4.540814658476248 -780,27.0,26.0,0.0,2.608731947574922 -780,27.0,27.0,5.806823119408364,-22.67145722159613 -780,28.0,26.0,-0.99553355095268,1.881005840357816 -780,28.0,28.0,1.9075867579849564,-3.604364401207048 -780,28.0,29.0,-0.9120532070322764,1.7233585608492326 -780,29.0,28.0,-0.9120532070322764,1.7233585608492326 -780,29.0,29.0,0.9120532070322764,-1.7233585608492326 -781,0.0,0.0,6.765516048652632,-21.23160167089863 -781,0.0,1.0,-5.224646179885656,15.646726840803398 -781,0.0,2.0,-1.5408698687669766,5.631674830095234 -781,1.0,0.0,-5.224646179885656,15.646726840803398 -781,1.0,1.0,9.75228216552403,-30.648662892676068 -781,1.0,3.0,-1.7055303166990268,5.1973792282565086 -781,1.0,4.0,-1.1359607881738778,4.772479328281356 -781,1.0,5.0,-1.6861448807654689,5.116477495334806 -781,2.0,0.0,-1.5408698687669766,5.631674830095234 -781,2.0,2.0,9.736318911079088,-29.13794745915803 -781,2.0,3.0,-8.19544904231211,23.5308726290628 -781,3.0,1.0,-1.7055303166990268,5.1973792282565086 -781,3.0,2.0,-8.19544904231211,23.5308726290628 -781,3.0,3.0,16.314103089185693,-55.509410535254254 -781,3.0,5.0,-6.413123730174556,22.31120356548123 -781,3.0,11.0,0.0,4.191255364806866 -781,4.0,1.0,-1.1359607881738778,4.772479328281356 -781,4.0,4.0,4.089980824135861,-12.190647245055052 -781,4.0,6.0,-2.954020035961983,7.449267916773697 -781,5.0,1.0,-1.6861448807654689,5.116477495334806 -781,5.0,3.0,-6.413123730174556,22.31120356548123 -781,5.0,5.0,22.341631269034565,-82.8291478657789 -781,5.0,6.0,-3.590210423980992,11.02611441072814 -781,5.0,7.0,-6.289308176100628,22.0125786163522 -781,5.0,8.0,0.0,4.915840805411357 -781,5.0,9.0,0.0,1.8561002591115965 -781,5.0,27.0,-4.362844058012917,15.463571542897856 -781,6.0,4.0,-2.954020035961983,7.449267916773697 -781,6.0,5.0,-3.590210423980992,11.02611441072814 -781,6.0,6.0,6.544230459942975,-18.45668232750184 -781,7.0,5.0,-6.289308176100628,22.0125786163522 -781,7.0,7.0,7.733287237496075,-26.527493274828448 -781,7.0,27.0,-1.4439790613954469,4.540814658476248 -781,8.0,5.0,0.0,4.915840805411357 -781,8.0,8.0,0.0,-18.706293706293707 -781,8.0,9.0,0.0,9.090909090909092 -781,8.0,10.0,0.0,4.807692307692308 -781,9.0,5.0,0.0,1.8561002591115965 -781,9.0,8.0,0.0,9.090909090909092 -781,9.0,9.0,13.462042814524237,-41.3837606675224 -781,9.0,16.0,-3.956039125715353,10.317447719844054 -781,9.0,19.0,-1.7848303152666305,3.98535828943083 -781,9.0,20.0,-5.101853820159654,10.98071411292983 -781,9.0,21.0,-2.619319553382597,5.400770303329455 -781,10.0,8.0,0.0,4.807692307692308 -781,10.0,10.0,0.0,-4.807692307692308 -781,11.0,3.0,0.0,4.191255364806866 -781,11.0,11.0,6.573961583776156,-24.424167659260668 -781,11.0,12.0,0.0,7.142857142857143 -781,11.0,13.0,-1.5265676088395577,3.1734252729654173 -781,11.0,14.0,-3.0953961826564296,6.097275864326261 -781,11.0,15.0,-1.9519977922801688,4.104359379111847 -781,12.0,11.0,0.0,7.142857142857143 -781,12.0,12.0,0.0,-7.142857142857143 -781,13.0,11.0,-1.5265676088395577,3.1734252729654173 -781,13.0,13.0,4.01751987283902,-5.424299332335067 -781,13.0,14.0,-2.4909522639994623,2.250874059369649 -781,14.0,11.0,-3.0953961826564296,6.097275864326261 -781,14.0,13.0,-2.4909522639994623,2.250874059369649 -781,14.0,14.0,9.365498545964757,-16.01163373210796 -781,14.0,17.0,-1.8108011504072024,3.687418931630696 -781,14.0,22.0,-1.9683489489016612,3.976064876781356 -781,15.0,11.0,-1.9519977922801688,4.104359379111847 -781,15.0,15.0,3.271064728633931,-8.94513365126506 -781,15.0,16.0,-1.3190669363537617,4.8407742721532125 -781,16.0,9.0,-3.956039125715353,10.317447719844054 -781,16.0,15.0,-1.3190669363537617,4.8407742721532125 -781,16.0,16.0,5.275106062069114,-15.158221991997266 -781,17.0,14.0,-1.8108011504072024,3.687418931630696 -781,17.0,17.0,4.886487584415919,-9.906177730909668 -781,17.0,18.0,-3.0756864340087167,6.218758799278971 -781,18.0,17.0,-3.0756864340087167,6.218758799278971 -781,18.0,18.0,8.958039375185187,-17.98346468163191 -781,18.0,19.0,-5.88235294117647,11.76470588235294 -781,19.0,9.0,-1.7848303152666305,3.98535828943083 -781,19.0,18.0,-5.88235294117647,11.76470588235294 -781,19.0,19.0,7.6671832564431,-15.75006417178377 -781,20.0,9.0,-5.101853820159654,10.98071411292983 -781,20.0,20.0,21.876495189895888,-45.10843276170355 -781,20.0,21.0,-16.774641369736234,34.127718648773715 -781,21.0,9.0,-2.619319553382597,5.400770303329455 -781,21.0,20.0,-16.774641369736234,34.127718648773715 -781,21.0,21.0,21.93449907537439,-43.48289181517921 -781,21.0,23.0,-2.5405381522555563,3.95440286307604 -781,22.0,14.0,-1.9683489489016612,3.976064876781356 -781,22.0,22.0,3.429754555384988,-6.965303617315433 -781,22.0,23.0,-1.4614056064833263,2.989238740534077 -781,23.0,21.0,-2.5405381522555563,3.95440286307604 -781,23.0,22.0,-1.4614056064833263,2.989238740534077 -781,23.0,23.0,5.311836702613133,-9.188263657315172 -781,23.0,24.0,-1.3098929438742493,2.287622053705056 -781,24.0,23.0,-1.3098929438742493,2.287622053705056 -781,24.0,24.0,4.495715080321987,-7.864978761969621 -781,24.0,25.0,-1.2165301194494855,1.8171440463475024 -781,24.0,26.0,-1.9692920169982515,3.760212661917064 -781,25.0,24.0,-1.2165301194494855,1.8171440463475024 -781,25.0,25.0,1.2165301194494855,-1.8171440463475024 -781,26.0,24.0,-1.9692920169982515,3.760212661917064 -781,26.0,26.0,3.652281470778589,-9.46044252232512 -781,26.0,27.0,0.0,2.608731947574922 -781,26.0,28.0,-0.99553355095268,1.881005840357816 -781,26.0,29.0,-0.6874559028276572,1.293971494797717 -781,27.0,5.0,-4.362844058012917,15.463571542897856 -781,27.0,7.0,-1.4439790613954469,4.540814658476248 -781,27.0,26.0,0.0,2.608731947574922 -781,27.0,27.0,5.806823119408364,-22.67145722159613 -781,28.0,26.0,-0.99553355095268,1.881005840357816 -781,28.0,28.0,1.9075867579849564,-3.604364401207048 -781,28.0,29.0,-0.9120532070322764,1.7233585608492326 -781,29.0,26.0,-0.6874559028276572,1.293971494797717 -781,29.0,28.0,-0.9120532070322764,1.7233585608492326 -781,29.0,29.0,1.5995091098599337,-3.0173300556469496 -782,0.0,0.0,1.5408698687669766,-5.611274830095233 -782,0.0,2.0,-1.5408698687669766,5.631674830095234 -782,1.0,1.0,4.527635985638374,-15.028336051872673 -782,1.0,3.0,-1.7055303166990268,5.1973792282565086 -782,1.0,4.0,-1.1359607881738778,4.772479328281356 -782,1.0,5.0,-1.6861448807654689,5.116477495334806 -782,2.0,0.0,-1.5408698687669766,5.631674830095234 -782,2.0,2.0,9.736318911079088,-29.13794745915803 -782,2.0,3.0,-8.19544904231211,23.5308726290628 -782,3.0,1.0,-1.7055303166990268,5.1973792282565086 -782,3.0,2.0,-8.19544904231211,23.5308726290628 -782,3.0,3.0,16.314103089185693,-55.509410535254254 -782,3.0,5.0,-6.413123730174556,22.31120356548123 -782,3.0,11.0,0.0,4.191255364806866 -782,4.0,1.0,-1.1359607881738778,4.772479328281356 -782,4.0,4.0,4.089980824135861,-12.190647245055052 -782,4.0,6.0,-2.954020035961983,7.449267916773697 -782,5.0,1.0,-1.6861448807654689,5.116477495334806 -782,5.0,3.0,-6.413123730174556,22.31120356548123 -782,5.0,5.0,22.341631269034565,-82.8291478657789 -782,5.0,6.0,-3.590210423980992,11.02611441072814 -782,5.0,7.0,-6.289308176100628,22.0125786163522 -782,5.0,8.0,0.0,4.915840805411357 -782,5.0,9.0,0.0,1.8561002591115965 -782,5.0,27.0,-4.362844058012917,15.463571542897856 -782,6.0,4.0,-2.954020035961983,7.449267916773697 -782,6.0,5.0,-3.590210423980992,11.02611441072814 -782,6.0,6.0,6.544230459942975,-18.45668232750184 -782,7.0,5.0,-6.289308176100628,22.0125786163522 -782,7.0,7.0,7.733287237496075,-26.527493274828448 -782,7.0,27.0,-1.4439790613954469,4.540814658476248 -782,8.0,5.0,0.0,4.915840805411357 -782,8.0,8.0,0.0,-18.706293706293707 -782,8.0,9.0,0.0,9.090909090909092 -782,8.0,10.0,0.0,4.807692307692308 -782,9.0,5.0,0.0,1.8561002591115965 -782,9.0,8.0,0.0,9.090909090909092 -782,9.0,9.0,13.462042814524237,-41.3837606675224 -782,9.0,16.0,-3.956039125715353,10.317447719844054 -782,9.0,19.0,-1.7848303152666305,3.98535828943083 -782,9.0,20.0,-5.101853820159654,10.98071411292983 -782,9.0,21.0,-2.619319553382597,5.400770303329455 -782,10.0,8.0,0.0,4.807692307692308 -782,10.0,10.0,0.0,-4.807692307692308 -782,11.0,3.0,0.0,4.191255364806866 -782,11.0,11.0,6.573961583776156,-24.424167659260668 -782,11.0,12.0,0.0,7.142857142857143 -782,11.0,13.0,-1.5265676088395577,3.1734252729654173 -782,11.0,14.0,-3.0953961826564296,6.097275864326261 -782,11.0,15.0,-1.9519977922801688,4.104359379111847 -782,12.0,11.0,0.0,7.142857142857143 -782,12.0,12.0,0.0,-7.142857142857143 -782,13.0,11.0,-1.5265676088395577,3.1734252729654173 -782,13.0,13.0,4.01751987283902,-5.424299332335067 -782,13.0,14.0,-2.4909522639994623,2.250874059369649 -782,14.0,11.0,-3.0953961826564296,6.097275864326261 -782,14.0,13.0,-2.4909522639994623,2.250874059369649 -782,14.0,14.0,9.365498545964757,-16.01163373210796 -782,14.0,17.0,-1.8108011504072024,3.687418931630696 -782,14.0,22.0,-1.9683489489016612,3.976064876781356 -782,15.0,11.0,-1.9519977922801688,4.104359379111847 -782,15.0,15.0,3.271064728633931,-8.94513365126506 -782,15.0,16.0,-1.3190669363537617,4.8407742721532125 -782,16.0,9.0,-3.956039125715353,10.317447719844054 -782,16.0,15.0,-1.3190669363537617,4.8407742721532125 -782,16.0,16.0,5.275106062069114,-15.158221991997266 -782,17.0,14.0,-1.8108011504072024,3.687418931630696 -782,17.0,17.0,4.886487584415919,-9.906177730909668 -782,17.0,18.0,-3.0756864340087167,6.218758799278971 -782,18.0,17.0,-3.0756864340087167,6.218758799278971 -782,18.0,18.0,8.958039375185187,-17.98346468163191 -782,18.0,19.0,-5.88235294117647,11.76470588235294 -782,19.0,9.0,-1.7848303152666305,3.98535828943083 -782,19.0,18.0,-5.88235294117647,11.76470588235294 -782,19.0,19.0,7.6671832564431,-15.75006417178377 -782,20.0,9.0,-5.101853820159654,10.98071411292983 -782,20.0,20.0,21.876495189895888,-45.10843276170355 -782,20.0,21.0,-16.774641369736234,34.127718648773715 -782,21.0,9.0,-2.619319553382597,5.400770303329455 -782,21.0,20.0,-16.774641369736234,34.127718648773715 -782,21.0,21.0,21.93449907537439,-43.48289181517921 -782,21.0,23.0,-2.5405381522555563,3.95440286307604 -782,22.0,14.0,-1.9683489489016612,3.976064876781356 -782,22.0,22.0,3.429754555384988,-6.965303617315433 -782,22.0,23.0,-1.4614056064833263,2.989238740534077 -782,23.0,21.0,-2.5405381522555563,3.95440286307604 -782,23.0,22.0,-1.4614056064833263,2.989238740534077 -782,23.0,23.0,5.311836702613133,-9.188263657315172 -782,23.0,24.0,-1.3098929438742493,2.287622053705056 -782,24.0,23.0,-1.3098929438742493,2.287622053705056 -782,24.0,24.0,4.495715080321987,-7.864978761969621 -782,24.0,25.0,-1.2165301194494855,1.8171440463475024 -782,24.0,26.0,-1.9692920169982515,3.760212661917064 -782,25.0,24.0,-1.2165301194494855,1.8171440463475024 -782,25.0,25.0,1.2165301194494855,-1.8171440463475024 -782,26.0,24.0,-1.9692920169982515,3.760212661917064 -782,26.0,26.0,3.652281470778589,-9.46044252232512 -782,26.0,27.0,0.0,2.608731947574922 -782,26.0,28.0,-0.99553355095268,1.881005840357816 -782,26.0,29.0,-0.6874559028276572,1.293971494797717 -782,27.0,5.0,-4.362844058012917,15.463571542897856 -782,27.0,7.0,-1.4439790613954469,4.540814658476248 -782,27.0,26.0,0.0,2.608731947574922 -782,27.0,27.0,5.806823119408364,-22.67145722159613 -782,28.0,26.0,-0.99553355095268,1.881005840357816 -782,28.0,28.0,1.9075867579849564,-3.604364401207048 -782,28.0,29.0,-0.9120532070322764,1.7233585608492326 -782,29.0,26.0,-0.6874559028276572,1.293971494797717 -782,29.0,28.0,-0.9120532070322764,1.7233585608492326 -782,29.0,29.0,1.5995091098599337,-3.0173300556469496 -783,0.0,0.0,6.765516048652632,-21.23160167089863 -783,0.0,1.0,-5.224646179885656,15.646726840803398 -783,0.0,2.0,-1.5408698687669766,5.631674830095234 -783,1.0,0.0,-5.224646179885656,15.646726840803398 -783,1.0,1.0,9.75228216552403,-30.648662892676068 -783,1.0,3.0,-1.7055303166990268,5.1973792282565086 -783,1.0,4.0,-1.1359607881738778,4.772479328281356 -783,1.0,5.0,-1.6861448807654689,5.116477495334806 -783,2.0,0.0,-1.5408698687669766,5.631674830095234 -783,2.0,2.0,9.736318911079088,-29.13794745915803 -783,2.0,3.0,-8.19544904231211,23.5308726290628 -783,3.0,1.0,-1.7055303166990268,5.1973792282565086 -783,3.0,2.0,-8.19544904231211,23.5308726290628 -783,3.0,3.0,16.314103089185693,-55.509410535254254 -783,3.0,5.0,-6.413123730174556,22.31120356548123 -783,3.0,11.0,0.0,4.191255364806866 -783,4.0,1.0,-1.1359607881738778,4.772479328281356 -783,4.0,4.0,4.089980824135861,-12.190647245055052 -783,4.0,6.0,-2.954020035961983,7.449267916773697 -783,5.0,1.0,-1.6861448807654689,5.116477495334806 -783,5.0,3.0,-6.413123730174556,22.31120356548123 -783,5.0,5.0,22.341631269034565,-82.8291478657789 -783,5.0,6.0,-3.590210423980992,11.02611441072814 -783,5.0,7.0,-6.289308176100628,22.0125786163522 -783,5.0,8.0,0.0,4.915840805411357 -783,5.0,9.0,0.0,1.8561002591115965 -783,5.0,27.0,-4.362844058012917,15.463571542897856 -783,6.0,4.0,-2.954020035961983,7.449267916773697 -783,6.0,5.0,-3.590210423980992,11.02611441072814 -783,6.0,6.0,6.544230459942975,-18.45668232750184 -783,7.0,5.0,-6.289308176100628,22.0125786163522 -783,7.0,7.0,7.733287237496075,-26.527493274828448 -783,7.0,27.0,-1.4439790613954469,4.540814658476248 -783,8.0,5.0,0.0,4.915840805411357 -783,8.0,8.0,0.0,-18.706293706293707 -783,8.0,9.0,0.0,9.090909090909092 -783,8.0,10.0,0.0,4.807692307692308 -783,9.0,5.0,0.0,1.8561002591115965 -783,9.0,8.0,0.0,9.090909090909092 -783,9.0,9.0,13.462042814524237,-41.3837606675224 -783,9.0,16.0,-3.956039125715353,10.317447719844054 -783,9.0,19.0,-1.7848303152666305,3.98535828943083 -783,9.0,20.0,-5.101853820159654,10.98071411292983 -783,9.0,21.0,-2.619319553382597,5.400770303329455 -783,10.0,8.0,0.0,4.807692307692308 -783,10.0,10.0,0.0,-4.807692307692308 -783,11.0,3.0,0.0,4.191255364806866 -783,11.0,11.0,4.621963791495987,-20.31980828014882 -783,11.0,12.0,0.0,7.142857142857143 -783,11.0,13.0,-1.5265676088395577,3.1734252729654173 -783,11.0,14.0,-3.0953961826564296,6.097275864326261 -783,12.0,11.0,0.0,7.142857142857143 -783,12.0,12.0,0.0,-7.142857142857143 -783,13.0,11.0,-1.5265676088395577,3.1734252729654173 -783,13.0,13.0,4.01751987283902,-5.424299332335067 -783,13.0,14.0,-2.4909522639994623,2.250874059369649 -783,14.0,11.0,-3.0953961826564296,6.097275864326261 -783,14.0,13.0,-2.4909522639994623,2.250874059369649 -783,14.0,14.0,9.365498545964757,-16.01163373210796 -783,14.0,17.0,-1.8108011504072024,3.687418931630696 -783,14.0,22.0,-1.9683489489016612,3.976064876781356 -783,15.0,15.0,1.3190669363537617,-4.8407742721532125 -783,15.0,16.0,-1.3190669363537617,4.8407742721532125 -783,16.0,9.0,-3.956039125715353,10.317447719844054 -783,16.0,15.0,-1.3190669363537617,4.8407742721532125 -783,16.0,16.0,5.275106062069114,-15.158221991997266 -783,17.0,14.0,-1.8108011504072024,3.687418931630696 -783,17.0,17.0,4.886487584415919,-9.906177730909668 -783,17.0,18.0,-3.0756864340087167,6.218758799278971 -783,18.0,17.0,-3.0756864340087167,6.218758799278971 -783,18.0,18.0,8.958039375185187,-17.98346468163191 -783,18.0,19.0,-5.88235294117647,11.76470588235294 -783,19.0,9.0,-1.7848303152666305,3.98535828943083 -783,19.0,18.0,-5.88235294117647,11.76470588235294 -783,19.0,19.0,7.6671832564431,-15.75006417178377 -783,20.0,9.0,-5.101853820159654,10.98071411292983 -783,20.0,20.0,21.876495189895888,-45.10843276170355 -783,20.0,21.0,-16.774641369736234,34.127718648773715 -783,21.0,9.0,-2.619319553382597,5.400770303329455 -783,21.0,20.0,-16.774641369736234,34.127718648773715 -783,21.0,21.0,21.93449907537439,-43.48289181517921 -783,21.0,23.0,-2.5405381522555563,3.95440286307604 -783,22.0,14.0,-1.9683489489016612,3.976064876781356 -783,22.0,22.0,3.429754555384988,-6.965303617315433 -783,22.0,23.0,-1.4614056064833263,2.989238740534077 -783,23.0,21.0,-2.5405381522555563,3.95440286307604 -783,23.0,22.0,-1.4614056064833263,2.989238740534077 -783,23.0,23.0,5.311836702613133,-9.188263657315172 -783,23.0,24.0,-1.3098929438742493,2.287622053705056 -783,24.0,23.0,-1.3098929438742493,2.287622053705056 -783,24.0,24.0,4.495715080321987,-7.864978761969621 -783,24.0,25.0,-1.2165301194494855,1.8171440463475024 -783,24.0,26.0,-1.9692920169982515,3.760212661917064 -783,25.0,24.0,-1.2165301194494855,1.8171440463475024 -783,25.0,25.0,1.2165301194494855,-1.8171440463475024 -783,26.0,24.0,-1.9692920169982515,3.760212661917064 -783,26.0,26.0,3.652281470778589,-9.46044252232512 -783,26.0,27.0,0.0,2.608731947574922 -783,26.0,28.0,-0.99553355095268,1.881005840357816 -783,26.0,29.0,-0.6874559028276572,1.293971494797717 -783,27.0,5.0,-4.362844058012917,15.463571542897856 -783,27.0,7.0,-1.4439790613954469,4.540814658476248 -783,27.0,26.0,0.0,2.608731947574922 -783,27.0,27.0,5.806823119408364,-22.67145722159613 -783,28.0,26.0,-0.99553355095268,1.881005840357816 -783,28.0,28.0,1.9075867579849564,-3.604364401207048 -783,28.0,29.0,-0.9120532070322764,1.7233585608492326 -783,29.0,26.0,-0.6874559028276572,1.293971494797717 -783,29.0,28.0,-0.9120532070322764,1.7233585608492326 -783,29.0,29.0,1.5995091098599337,-3.0173300556469496 -784,0.0,0.0,6.765516048652632,-21.23160167089863 -784,0.0,1.0,-5.224646179885656,15.646726840803398 -784,0.0,2.0,-1.5408698687669766,5.631674830095234 -784,1.0,0.0,-5.224646179885656,15.646726840803398 -784,1.0,1.0,9.75228216552403,-30.648662892676068 -784,1.0,3.0,-1.7055303166990268,5.1973792282565086 -784,1.0,4.0,-1.1359607881738778,4.772479328281356 -784,1.0,5.0,-1.6861448807654689,5.116477495334806 -784,2.0,0.0,-1.5408698687669766,5.631674830095234 -784,2.0,2.0,9.736318911079088,-29.13794745915803 -784,2.0,3.0,-8.19544904231211,23.5308726290628 -784,3.0,1.0,-1.7055303166990268,5.1973792282565086 -784,3.0,2.0,-8.19544904231211,23.5308726290628 -784,3.0,3.0,16.314103089185693,-55.509410535254254 -784,3.0,5.0,-6.413123730174556,22.31120356548123 -784,3.0,11.0,0.0,4.191255364806866 -784,4.0,1.0,-1.1359607881738778,4.772479328281356 -784,4.0,4.0,4.089980824135861,-12.190647245055052 -784,4.0,6.0,-2.954020035961983,7.449267916773697 -784,5.0,1.0,-1.6861448807654689,5.116477495334806 -784,5.0,3.0,-6.413123730174556,22.31120356548123 -784,5.0,5.0,22.341631269034565,-82.8291478657789 -784,5.0,6.0,-3.590210423980992,11.02611441072814 -784,5.0,7.0,-6.289308176100628,22.0125786163522 -784,5.0,8.0,0.0,4.915840805411357 -784,5.0,9.0,0.0,1.8561002591115965 -784,5.0,27.0,-4.362844058012917,15.463571542897856 -784,6.0,4.0,-2.954020035961983,7.449267916773697 -784,6.0,5.0,-3.590210423980992,11.02611441072814 -784,6.0,6.0,6.544230459942975,-18.45668232750184 -784,7.0,5.0,-6.289308176100628,22.0125786163522 -784,7.0,7.0,7.733287237496075,-26.527493274828448 -784,7.0,27.0,-1.4439790613954469,4.540814658476248 -784,8.0,5.0,0.0,4.915840805411357 -784,8.0,8.0,0.0,-9.615384615384617 -784,8.0,10.0,0.0,4.807692307692308 -784,9.0,5.0,0.0,1.8561002591115965 -784,9.0,9.0,13.462042814524237,-32.29285157661331 -784,9.0,16.0,-3.956039125715353,10.317447719844054 -784,9.0,19.0,-1.7848303152666305,3.98535828943083 -784,9.0,20.0,-5.101853820159654,10.98071411292983 -784,9.0,21.0,-2.619319553382597,5.400770303329455 -784,10.0,8.0,0.0,4.807692307692308 -784,10.0,10.0,0.0,-4.807692307692308 -784,11.0,3.0,0.0,4.191255364806866 -784,11.0,11.0,6.573961583776156,-24.424167659260668 -784,11.0,12.0,0.0,7.142857142857143 -784,11.0,13.0,-1.5265676088395577,3.1734252729654173 -784,11.0,14.0,-3.0953961826564296,6.097275864326261 -784,11.0,15.0,-1.9519977922801688,4.104359379111847 -784,12.0,11.0,0.0,7.142857142857143 -784,12.0,12.0,0.0,-7.142857142857143 -784,13.0,11.0,-1.5265676088395577,3.1734252729654173 -784,13.0,13.0,4.01751987283902,-5.424299332335067 -784,13.0,14.0,-2.4909522639994623,2.250874059369649 -784,14.0,11.0,-3.0953961826564296,6.097275864326261 -784,14.0,13.0,-2.4909522639994623,2.250874059369649 -784,14.0,14.0,7.554697395557554,-12.324214800477266 -784,14.0,22.0,-1.9683489489016612,3.976064876781356 -784,15.0,11.0,-1.9519977922801688,4.104359379111847 -784,15.0,15.0,3.271064728633931,-8.94513365126506 -784,15.0,16.0,-1.3190669363537617,4.8407742721532125 -784,16.0,9.0,-3.956039125715353,10.317447719844054 -784,16.0,15.0,-1.3190669363537617,4.8407742721532125 -784,16.0,16.0,5.275106062069114,-15.158221991997266 -784,17.0,17.0,3.0756864340087167,-6.218758799278971 -784,17.0,18.0,-3.0756864340087167,6.218758799278971 -784,18.0,17.0,-3.0756864340087167,6.218758799278971 -784,18.0,18.0,8.958039375185187,-17.98346468163191 -784,18.0,19.0,-5.88235294117647,11.76470588235294 -784,19.0,9.0,-1.7848303152666305,3.98535828943083 -784,19.0,18.0,-5.88235294117647,11.76470588235294 -784,19.0,19.0,7.6671832564431,-15.75006417178377 -784,20.0,9.0,-5.101853820159654,10.98071411292983 -784,20.0,20.0,21.876495189895888,-45.10843276170355 -784,20.0,21.0,-16.774641369736234,34.127718648773715 -784,21.0,9.0,-2.619319553382597,5.400770303329455 -784,21.0,20.0,-16.774641369736234,34.127718648773715 -784,21.0,21.0,19.393960923118836,-39.52848895210317 -784,22.0,14.0,-1.9683489489016612,3.976064876781356 -784,22.0,22.0,3.429754555384988,-6.965303617315433 -784,22.0,23.0,-1.4614056064833263,2.989238740534077 -784,23.0,22.0,-1.4614056064833263,2.989238740534077 -784,23.0,23.0,2.771298550357576,-5.233860794239132 -784,23.0,24.0,-1.3098929438742493,2.287622053705056 -784,24.0,23.0,-1.3098929438742493,2.287622053705056 -784,24.0,24.0,4.495715080321987,-7.864978761969621 -784,24.0,25.0,-1.2165301194494855,1.8171440463475024 -784,24.0,26.0,-1.9692920169982515,3.760212661917064 -784,25.0,24.0,-1.2165301194494855,1.8171440463475024 -784,25.0,25.0,1.2165301194494855,-1.8171440463475024 -784,26.0,24.0,-1.9692920169982515,3.760212661917064 -784,26.0,26.0,3.652281470778589,-9.46044252232512 -784,26.0,27.0,0.0,2.608731947574922 -784,26.0,28.0,-0.99553355095268,1.881005840357816 -784,26.0,29.0,-0.6874559028276572,1.293971494797717 -784,27.0,5.0,-4.362844058012917,15.463571542897856 -784,27.0,7.0,-1.4439790613954469,4.540814658476248 -784,27.0,26.0,0.0,2.608731947574922 -784,27.0,27.0,5.806823119408364,-22.67145722159613 -784,28.0,26.0,-0.99553355095268,1.881005840357816 -784,28.0,28.0,1.9075867579849564,-3.604364401207048 -784,28.0,29.0,-0.9120532070322764,1.7233585608492326 -784,29.0,26.0,-0.6874559028276572,1.293971494797717 -784,29.0,28.0,-0.9120532070322764,1.7233585608492326 -784,29.0,29.0,1.5995091098599337,-3.0173300556469496 -785,0.0,0.0,6.765516048652632,-21.23160167089863 -785,0.0,1.0,-5.224646179885656,15.646726840803398 -785,0.0,2.0,-1.5408698687669766,5.631674830095234 -785,1.0,0.0,-5.224646179885656,15.646726840803398 -785,1.0,1.0,8.046751848825002,-25.46968366441956 -785,1.0,4.0,-1.1359607881738778,4.772479328281356 -785,1.0,5.0,-1.6861448807654689,5.116477495334806 -785,2.0,0.0,-1.5408698687669766,5.631674830095234 -785,2.0,2.0,9.736318911079088,-29.13794745915803 -785,2.0,3.0,-8.19544904231211,23.5308726290628 -785,3.0,2.0,-8.19544904231211,23.5308726290628 -785,3.0,3.0,14.608572772486664,-45.83337619454403 -785,3.0,5.0,-6.413123730174556,22.31120356548123 -785,4.0,1.0,-1.1359607881738778,4.772479328281356 -785,4.0,4.0,4.089980824135861,-12.190647245055052 -785,4.0,6.0,-2.954020035961983,7.449267916773697 -785,5.0,1.0,-1.6861448807654689,5.116477495334806 -785,5.0,3.0,-6.413123730174556,22.31120356548123 -785,5.0,5.0,22.341631269034565,-82.8291478657789 -785,5.0,6.0,-3.590210423980992,11.02611441072814 -785,5.0,7.0,-6.289308176100628,22.0125786163522 -785,5.0,8.0,0.0,4.915840805411357 -785,5.0,9.0,0.0,1.8561002591115965 -785,5.0,27.0,-4.362844058012917,15.463571542897856 -785,6.0,4.0,-2.954020035961983,7.449267916773697 -785,6.0,5.0,-3.590210423980992,11.02611441072814 -785,6.0,6.0,6.544230459942975,-18.45668232750184 -785,7.0,5.0,-6.289308176100628,22.0125786163522 -785,7.0,7.0,7.733287237496075,-26.527493274828448 -785,7.0,27.0,-1.4439790613954469,4.540814658476248 -785,8.0,5.0,0.0,4.915840805411357 -785,8.0,8.0,0.0,-18.706293706293707 -785,8.0,9.0,0.0,9.090909090909092 -785,8.0,10.0,0.0,4.807692307692308 -785,9.0,5.0,0.0,1.8561002591115965 -785,9.0,8.0,0.0,9.090909090909092 -785,9.0,9.0,13.462042814524237,-41.3837606675224 -785,9.0,16.0,-3.956039125715353,10.317447719844054 -785,9.0,19.0,-1.7848303152666305,3.98535828943083 -785,9.0,20.0,-5.101853820159654,10.98071411292983 -785,9.0,21.0,-2.619319553382597,5.400770303329455 -785,10.0,8.0,0.0,4.807692307692308 -785,10.0,10.0,0.0,-4.807692307692308 -785,11.0,11.0,6.573961583776156,-20.517917659260668 -785,11.0,12.0,0.0,7.142857142857143 -785,11.0,13.0,-1.5265676088395577,3.1734252729654173 -785,11.0,14.0,-3.0953961826564296,6.097275864326261 -785,11.0,15.0,-1.9519977922801688,4.104359379111847 -785,12.0,11.0,0.0,7.142857142857143 -785,12.0,12.0,0.0,-7.142857142857143 -785,13.0,11.0,-1.5265676088395577,3.1734252729654173 -785,13.0,13.0,4.01751987283902,-5.424299332335067 -785,13.0,14.0,-2.4909522639994623,2.250874059369649 -785,14.0,11.0,-3.0953961826564296,6.097275864326261 -785,14.0,13.0,-2.4909522639994623,2.250874059369649 -785,14.0,14.0,9.365498545964757,-16.01163373210796 -785,14.0,17.0,-1.8108011504072024,3.687418931630696 -785,14.0,22.0,-1.9683489489016612,3.976064876781356 -785,15.0,11.0,-1.9519977922801688,4.104359379111847 -785,15.0,15.0,3.271064728633931,-8.94513365126506 -785,15.0,16.0,-1.3190669363537617,4.8407742721532125 -785,16.0,9.0,-3.956039125715353,10.317447719844054 -785,16.0,15.0,-1.3190669363537617,4.8407742721532125 -785,16.0,16.0,5.275106062069114,-15.158221991997266 -785,17.0,14.0,-1.8108011504072024,3.687418931630696 -785,17.0,17.0,4.886487584415919,-9.906177730909668 -785,17.0,18.0,-3.0756864340087167,6.218758799278971 -785,18.0,17.0,-3.0756864340087167,6.218758799278971 -785,18.0,18.0,8.958039375185187,-17.98346468163191 -785,18.0,19.0,-5.88235294117647,11.76470588235294 -785,19.0,9.0,-1.7848303152666305,3.98535828943083 -785,19.0,18.0,-5.88235294117647,11.76470588235294 -785,19.0,19.0,7.6671832564431,-15.75006417178377 -785,20.0,9.0,-5.101853820159654,10.98071411292983 -785,20.0,20.0,21.876495189895888,-45.10843276170355 -785,20.0,21.0,-16.774641369736234,34.127718648773715 -785,21.0,9.0,-2.619319553382597,5.400770303329455 -785,21.0,20.0,-16.774641369736234,34.127718648773715 -785,21.0,21.0,21.93449907537439,-43.48289181517921 -785,21.0,23.0,-2.5405381522555563,3.95440286307604 -785,22.0,14.0,-1.9683489489016612,3.976064876781356 -785,22.0,22.0,3.429754555384988,-6.965303617315433 -785,22.0,23.0,-1.4614056064833263,2.989238740534077 -785,23.0,21.0,-2.5405381522555563,3.95440286307604 -785,23.0,22.0,-1.4614056064833263,2.989238740534077 -785,23.0,23.0,5.311836702613133,-9.188263657315172 -785,23.0,24.0,-1.3098929438742493,2.287622053705056 -785,24.0,23.0,-1.3098929438742493,2.287622053705056 -785,24.0,24.0,4.495715080321987,-7.864978761969621 -785,24.0,25.0,-1.2165301194494855,1.8171440463475024 -785,24.0,26.0,-1.9692920169982515,3.760212661917064 -785,25.0,24.0,-1.2165301194494855,1.8171440463475024 -785,25.0,25.0,1.2165301194494855,-1.8171440463475024 -785,26.0,24.0,-1.9692920169982515,3.760212661917064 -785,26.0,26.0,3.652281470778589,-9.46044252232512 -785,26.0,27.0,0.0,2.608731947574922 -785,26.0,28.0,-0.99553355095268,1.881005840357816 -785,26.0,29.0,-0.6874559028276572,1.293971494797717 -785,27.0,5.0,-4.362844058012917,15.463571542897856 -785,27.0,7.0,-1.4439790613954469,4.540814658476248 -785,27.0,26.0,0.0,2.608731947574922 -785,27.0,27.0,5.806823119408364,-22.67145722159613 -785,28.0,26.0,-0.99553355095268,1.881005840357816 -785,28.0,28.0,1.9075867579849564,-3.604364401207048 -785,28.0,29.0,-0.9120532070322764,1.7233585608492326 -785,29.0,26.0,-0.6874559028276572,1.293971494797717 -785,29.0,28.0,-0.9120532070322764,1.7233585608492326 -785,29.0,29.0,1.5995091098599337,-3.0173300556469496 -786,0.0,0.0,6.765516048652632,-21.23160167089863 -786,0.0,1.0,-5.224646179885656,15.646726840803398 -786,0.0,2.0,-1.5408698687669766,5.631674830095234 -786,1.0,0.0,-5.224646179885656,15.646726840803398 -786,1.0,1.0,9.75228216552403,-30.648662892676068 -786,1.0,3.0,-1.7055303166990268,5.1973792282565086 -786,1.0,4.0,-1.1359607881738778,4.772479328281356 -786,1.0,5.0,-1.6861448807654689,5.116477495334806 -786,2.0,0.0,-1.5408698687669766,5.631674830095234 -786,2.0,2.0,9.736318911079088,-29.13794745915803 -786,2.0,3.0,-8.19544904231211,23.5308726290628 -786,3.0,1.0,-1.7055303166990268,5.1973792282565086 -786,3.0,2.0,-8.19544904231211,23.5308726290628 -786,3.0,3.0,16.314103089185693,-55.509410535254254 -786,3.0,5.0,-6.413123730174556,22.31120356548123 -786,3.0,11.0,0.0,4.191255364806866 -786,4.0,1.0,-1.1359607881738778,4.772479328281356 -786,4.0,4.0,4.089980824135861,-12.190647245055052 -786,4.0,6.0,-2.954020035961983,7.449267916773697 -786,5.0,1.0,-1.6861448807654689,5.116477495334806 -786,5.0,3.0,-6.413123730174556,22.31120356548123 -786,5.0,5.0,22.341631269034565,-82.8291478657789 -786,5.0,6.0,-3.590210423980992,11.02611441072814 -786,5.0,7.0,-6.289308176100628,22.0125786163522 -786,5.0,8.0,0.0,4.915840805411357 -786,5.0,9.0,0.0,1.8561002591115965 -786,5.0,27.0,-4.362844058012917,15.463571542897856 -786,6.0,4.0,-2.954020035961983,7.449267916773697 -786,6.0,5.0,-3.590210423980992,11.02611441072814 -786,6.0,6.0,6.544230459942975,-18.45668232750184 -786,7.0,5.0,-6.289308176100628,22.0125786163522 -786,7.0,7.0,7.733287237496075,-26.527493274828448 -786,7.0,27.0,-1.4439790613954469,4.540814658476248 -786,8.0,5.0,0.0,4.915840805411357 -786,8.0,8.0,0.0,-18.706293706293707 -786,8.0,9.0,0.0,9.090909090909092 -786,8.0,10.0,0.0,4.807692307692308 -786,9.0,5.0,0.0,1.8561002591115965 -786,9.0,8.0,0.0,9.090909090909092 -786,9.0,9.0,13.462042814524237,-41.3837606675224 -786,9.0,16.0,-3.956039125715353,10.317447719844054 -786,9.0,19.0,-1.7848303152666305,3.98535828943083 -786,9.0,20.0,-5.101853820159654,10.98071411292983 -786,9.0,21.0,-2.619319553382597,5.400770303329455 -786,10.0,8.0,0.0,4.807692307692308 -786,10.0,10.0,0.0,-4.807692307692308 -786,11.0,3.0,0.0,4.191255364806866 -786,11.0,11.0,6.573961583776156,-24.424167659260668 -786,11.0,12.0,0.0,7.142857142857143 -786,11.0,13.0,-1.5265676088395577,3.1734252729654173 -786,11.0,14.0,-3.0953961826564296,6.097275864326261 -786,11.0,15.0,-1.9519977922801688,4.104359379111847 -786,12.0,11.0,0.0,7.142857142857143 -786,12.0,12.0,0.0,-7.142857142857143 -786,13.0,11.0,-1.5265676088395577,3.1734252729654173 -786,13.0,13.0,4.01751987283902,-5.424299332335067 -786,13.0,14.0,-2.4909522639994623,2.250874059369649 -786,14.0,11.0,-3.0953961826564296,6.097275864326261 -786,14.0,13.0,-2.4909522639994623,2.250874059369649 -786,14.0,14.0,9.365498545964757,-16.01163373210796 -786,14.0,17.0,-1.8108011504072024,3.687418931630696 -786,14.0,22.0,-1.9683489489016612,3.976064876781356 -786,15.0,11.0,-1.9519977922801688,4.104359379111847 -786,15.0,15.0,3.271064728633931,-8.94513365126506 -786,15.0,16.0,-1.3190669363537617,4.8407742721532125 -786,16.0,9.0,-3.956039125715353,10.317447719844054 -786,16.0,15.0,-1.3190669363537617,4.8407742721532125 -786,16.0,16.0,5.275106062069114,-15.158221991997266 -786,17.0,14.0,-1.8108011504072024,3.687418931630696 -786,17.0,17.0,4.886487584415919,-9.906177730909668 -786,17.0,18.0,-3.0756864340087167,6.218758799278971 -786,18.0,17.0,-3.0756864340087167,6.218758799278971 -786,18.0,18.0,8.958039375185187,-17.98346468163191 -786,18.0,19.0,-5.88235294117647,11.76470588235294 -786,19.0,9.0,-1.7848303152666305,3.98535828943083 -786,19.0,18.0,-5.88235294117647,11.76470588235294 -786,19.0,19.0,7.6671832564431,-15.75006417178377 -786,20.0,9.0,-5.101853820159654,10.98071411292983 -786,20.0,20.0,21.876495189895888,-45.10843276170355 -786,20.0,21.0,-16.774641369736234,34.127718648773715 -786,21.0,9.0,-2.619319553382597,5.400770303329455 -786,21.0,20.0,-16.774641369736234,34.127718648773715 -786,21.0,21.0,21.93449907537439,-43.48289181517921 -786,21.0,23.0,-2.5405381522555563,3.95440286307604 -786,22.0,14.0,-1.9683489489016612,3.976064876781356 -786,22.0,22.0,3.429754555384988,-6.965303617315433 -786,22.0,23.0,-1.4614056064833263,2.989238740534077 -786,23.0,21.0,-2.5405381522555563,3.95440286307604 -786,23.0,22.0,-1.4614056064833263,2.989238740534077 -786,23.0,23.0,5.311836702613133,-9.188263657315172 -786,23.0,24.0,-1.3098929438742493,2.287622053705056 -786,24.0,23.0,-1.3098929438742493,2.287622053705056 -786,24.0,24.0,4.495715080321987,-7.864978761969621 -786,24.0,25.0,-1.2165301194494855,1.8171440463475024 -786,24.0,26.0,-1.9692920169982515,3.760212661917064 -786,25.0,24.0,-1.2165301194494855,1.8171440463475024 -786,25.0,25.0,1.2165301194494855,-1.8171440463475024 -786,26.0,24.0,-1.9692920169982515,3.760212661917064 -786,26.0,26.0,3.652281470778589,-9.46044252232512 -786,26.0,27.0,0.0,2.608731947574922 -786,26.0,28.0,-0.99553355095268,1.881005840357816 -786,26.0,29.0,-0.6874559028276572,1.293971494797717 -786,27.0,5.0,-4.362844058012917,15.463571542897856 -786,27.0,7.0,-1.4439790613954469,4.540814658476248 -786,27.0,26.0,0.0,2.608731947574922 -786,27.0,27.0,5.806823119408364,-22.67145722159613 -786,28.0,26.0,-0.99553355095268,1.881005840357816 -786,28.0,28.0,1.9075867579849564,-3.604364401207048 -786,28.0,29.0,-0.9120532070322764,1.7233585608492326 -786,29.0,26.0,-0.6874559028276572,1.293971494797717 -786,29.0,28.0,-0.9120532070322764,1.7233585608492326 -786,29.0,29.0,1.5995091098599337,-3.0173300556469496 -787,0.0,0.0,6.765516048652632,-21.23160167089863 -787,0.0,1.0,-5.224646179885656,15.646726840803398 -787,0.0,2.0,-1.5408698687669766,5.631674830095234 -787,1.0,0.0,-5.224646179885656,15.646726840803398 -787,1.0,1.0,9.75228216552403,-30.648662892676068 -787,1.0,3.0,-1.7055303166990268,5.1973792282565086 -787,1.0,4.0,-1.1359607881738778,4.772479328281356 -787,1.0,5.0,-1.6861448807654689,5.116477495334806 -787,2.0,0.0,-1.5408698687669766,5.631674830095234 -787,2.0,2.0,9.736318911079088,-29.13794745915803 -787,2.0,3.0,-8.19544904231211,23.5308726290628 -787,3.0,1.0,-1.7055303166990268,5.1973792282565086 -787,3.0,2.0,-8.19544904231211,23.5308726290628 -787,3.0,3.0,16.314103089185693,-51.01235542280054 -787,3.0,5.0,-6.413123730174556,22.31120356548123 -787,4.0,1.0,-1.1359607881738778,4.772479328281356 -787,4.0,4.0,4.089980824135861,-12.190647245055052 -787,4.0,6.0,-2.954020035961983,7.449267916773697 -787,5.0,1.0,-1.6861448807654689,5.116477495334806 -787,5.0,3.0,-6.413123730174556,22.31120356548123 -787,5.0,5.0,22.341631269034565,-82.8291478657789 -787,5.0,6.0,-3.590210423980992,11.02611441072814 -787,5.0,7.0,-6.289308176100628,22.0125786163522 -787,5.0,8.0,0.0,4.915840805411357 -787,5.0,9.0,0.0,1.8561002591115965 -787,5.0,27.0,-4.362844058012917,15.463571542897856 -787,6.0,4.0,-2.954020035961983,7.449267916773697 -787,6.0,5.0,-3.590210423980992,11.02611441072814 -787,6.0,6.0,6.544230459942975,-18.45668232750184 -787,7.0,5.0,-6.289308176100628,22.0125786163522 -787,7.0,7.0,7.733287237496075,-26.527493274828448 -787,7.0,27.0,-1.4439790613954469,4.540814658476248 -787,8.0,5.0,0.0,4.915840805411357 -787,8.0,8.0,0.0,-18.706293706293707 -787,8.0,9.0,0.0,9.090909090909092 -787,8.0,10.0,0.0,4.807692307692308 -787,9.0,5.0,0.0,1.8561002591115965 -787,9.0,8.0,0.0,9.090909090909092 -787,9.0,9.0,13.462042814524237,-41.3837606675224 -787,9.0,16.0,-3.956039125715353,10.317447719844054 -787,9.0,19.0,-1.7848303152666305,3.98535828943083 -787,9.0,20.0,-5.101853820159654,10.98071411292983 -787,9.0,21.0,-2.619319553382597,5.400770303329455 -787,10.0,8.0,0.0,4.807692307692308 -787,10.0,10.0,0.0,-4.807692307692308 -787,11.0,11.0,6.573961583776156,-20.517917659260668 -787,11.0,12.0,0.0,7.142857142857143 -787,11.0,13.0,-1.5265676088395577,3.1734252729654173 -787,11.0,14.0,-3.0953961826564296,6.097275864326261 -787,11.0,15.0,-1.9519977922801688,4.104359379111847 -787,12.0,11.0,0.0,7.142857142857143 -787,12.0,12.0,0.0,-7.142857142857143 -787,13.0,11.0,-1.5265676088395577,3.1734252729654173 -787,13.0,13.0,1.5265676088395577,-3.1734252729654173 -787,14.0,11.0,-3.0953961826564296,6.097275864326261 -787,14.0,14.0,6.874546281965293,-13.760759672738311 -787,14.0,17.0,-1.8108011504072024,3.687418931630696 -787,14.0,22.0,-1.9683489489016612,3.976064876781356 -787,15.0,11.0,-1.9519977922801688,4.104359379111847 -787,15.0,15.0,1.9519977922801688,-4.104359379111847 -787,16.0,9.0,-3.956039125715353,10.317447719844054 -787,16.0,16.0,3.956039125715353,-10.317447719844054 -787,17.0,14.0,-1.8108011504072024,3.687418931630696 -787,17.0,17.0,4.886487584415919,-9.906177730909668 -787,17.0,18.0,-3.0756864340087167,6.218758799278971 -787,18.0,17.0,-3.0756864340087167,6.218758799278971 -787,18.0,18.0,8.958039375185187,-17.98346468163191 -787,18.0,19.0,-5.88235294117647,11.76470588235294 -787,19.0,9.0,-1.7848303152666305,3.98535828943083 -787,19.0,18.0,-5.88235294117647,11.76470588235294 -787,19.0,19.0,7.6671832564431,-15.75006417178377 -787,20.0,9.0,-5.101853820159654,10.98071411292983 -787,20.0,20.0,5.101853820159654,-10.98071411292983 -787,21.0,9.0,-2.619319553382597,5.400770303329455 -787,21.0,21.0,5.159857705638154,-9.355173166405494 -787,21.0,23.0,-2.5405381522555563,3.95440286307604 -787,22.0,14.0,-1.9683489489016612,3.976064876781356 -787,22.0,22.0,3.429754555384988,-6.965303617315433 -787,22.0,23.0,-1.4614056064833263,2.989238740534077 -787,23.0,21.0,-2.5405381522555563,3.95440286307604 -787,23.0,22.0,-1.4614056064833263,2.989238740534077 -787,23.0,23.0,5.311836702613133,-9.188263657315172 -787,23.0,24.0,-1.3098929438742493,2.287622053705056 -787,24.0,23.0,-1.3098929438742493,2.287622053705056 -787,24.0,24.0,4.495715080321987,-7.864978761969621 -787,24.0,25.0,-1.2165301194494855,1.8171440463475024 -787,24.0,26.0,-1.9692920169982515,3.760212661917064 -787,25.0,24.0,-1.2165301194494855,1.8171440463475024 -787,25.0,25.0,1.2165301194494855,-1.8171440463475024 -787,26.0,24.0,-1.9692920169982515,3.760212661917064 -787,26.0,26.0,2.9648255679509314,-8.166471027527404 -787,26.0,27.0,0.0,2.608731947574922 -787,26.0,28.0,-0.99553355095268,1.881005840357816 -787,27.0,5.0,-4.362844058012917,15.463571542897856 -787,27.0,7.0,-1.4439790613954469,4.540814658476248 -787,27.0,26.0,0.0,2.608731947574922 -787,27.0,27.0,5.806823119408364,-22.67145722159613 -787,28.0,26.0,-0.99553355095268,1.881005840357816 -787,28.0,28.0,1.9075867579849564,-3.604364401207048 -787,28.0,29.0,-0.9120532070322764,1.7233585608492326 -787,29.0,28.0,-0.9120532070322764,1.7233585608492326 -787,29.0,29.0,0.9120532070322764,-1.7233585608492326 -788,0.0,0.0,6.765516048652632,-21.23160167089863 -788,0.0,1.0,-5.224646179885656,15.646726840803398 -788,0.0,2.0,-1.5408698687669766,5.631674830095234 -788,1.0,0.0,-5.224646179885656,15.646726840803398 -788,1.0,1.0,9.75228216552403,-30.648662892676068 -788,1.0,3.0,-1.7055303166990268,5.1973792282565086 -788,1.0,4.0,-1.1359607881738778,4.772479328281356 -788,1.0,5.0,-1.6861448807654689,5.116477495334806 -788,2.0,0.0,-1.5408698687669766,5.631674830095234 -788,2.0,2.0,9.736318911079088,-29.13794745915803 -788,2.0,3.0,-8.19544904231211,23.5308726290628 -788,3.0,1.0,-1.7055303166990268,5.1973792282565086 -788,3.0,2.0,-8.19544904231211,23.5308726290628 -788,3.0,3.0,16.314103089185693,-55.509410535254254 -788,3.0,5.0,-6.413123730174556,22.31120356548123 -788,3.0,11.0,0.0,4.191255364806866 -788,4.0,1.0,-1.1359607881738778,4.772479328281356 -788,4.0,4.0,4.089980824135861,-12.190647245055052 -788,4.0,6.0,-2.954020035961983,7.449267916773697 -788,5.0,1.0,-1.6861448807654689,5.116477495334806 -788,5.0,3.0,-6.413123730174556,22.31120356548123 -788,5.0,5.0,18.75142084505357,-71.81153345505078 -788,5.0,7.0,-6.289308176100628,22.0125786163522 -788,5.0,8.0,0.0,4.915840805411357 -788,5.0,9.0,0.0,1.8561002591115965 -788,5.0,27.0,-4.362844058012917,15.463571542897856 -788,6.0,4.0,-2.954020035961983,7.449267916773697 -788,6.0,6.0,2.954020035961983,-7.439067916773697 -788,7.0,5.0,-6.289308176100628,22.0125786163522 -788,7.0,7.0,7.733287237496075,-26.527493274828448 -788,7.0,27.0,-1.4439790613954469,4.540814658476248 -788,8.0,5.0,0.0,4.915840805411357 -788,8.0,8.0,0.0,-18.706293706293707 -788,8.0,9.0,0.0,9.090909090909092 -788,8.0,10.0,0.0,4.807692307692308 -788,9.0,5.0,0.0,1.8561002591115965 -788,9.0,8.0,0.0,9.090909090909092 -788,9.0,9.0,10.842723261141638,-35.98299036419294 -788,9.0,16.0,-3.956039125715353,10.317447719844054 -788,9.0,19.0,-1.7848303152666305,3.98535828943083 -788,9.0,20.0,-5.101853820159654,10.98071411292983 -788,10.0,8.0,0.0,4.807692307692308 -788,10.0,10.0,0.0,-4.807692307692308 -788,11.0,3.0,0.0,4.191255364806866 -788,11.0,11.0,6.573961583776156,-24.424167659260668 -788,11.0,12.0,0.0,7.142857142857143 -788,11.0,13.0,-1.5265676088395577,3.1734252729654173 -788,11.0,14.0,-3.0953961826564296,6.097275864326261 -788,11.0,15.0,-1.9519977922801688,4.104359379111847 -788,12.0,11.0,0.0,7.142857142857143 -788,12.0,12.0,0.0,-7.142857142857143 -788,13.0,11.0,-1.5265676088395577,3.1734252729654173 -788,13.0,13.0,4.01751987283902,-5.424299332335067 -788,13.0,14.0,-2.4909522639994623,2.250874059369649 -788,14.0,11.0,-3.0953961826564296,6.097275864326261 -788,14.0,13.0,-2.4909522639994623,2.250874059369649 -788,14.0,14.0,9.365498545964757,-16.01163373210796 -788,14.0,17.0,-1.8108011504072024,3.687418931630696 -788,14.0,22.0,-1.9683489489016612,3.976064876781356 -788,15.0,11.0,-1.9519977922801688,4.104359379111847 -788,15.0,15.0,3.271064728633931,-8.94513365126506 -788,15.0,16.0,-1.3190669363537617,4.8407742721532125 -788,16.0,9.0,-3.956039125715353,10.317447719844054 -788,16.0,15.0,-1.3190669363537617,4.8407742721532125 -788,16.0,16.0,5.275106062069114,-15.158221991997266 -788,17.0,14.0,-1.8108011504072024,3.687418931630696 -788,17.0,17.0,4.886487584415919,-9.906177730909668 -788,17.0,18.0,-3.0756864340087167,6.218758799278971 -788,18.0,17.0,-3.0756864340087167,6.218758799278971 -788,18.0,18.0,8.958039375185187,-17.98346468163191 -788,18.0,19.0,-5.88235294117647,11.76470588235294 -788,19.0,9.0,-1.7848303152666305,3.98535828943083 -788,19.0,18.0,-5.88235294117647,11.76470588235294 -788,19.0,19.0,7.6671832564431,-15.75006417178377 -788,20.0,9.0,-5.101853820159654,10.98071411292983 -788,20.0,20.0,21.876495189895888,-45.10843276170355 -788,20.0,21.0,-16.774641369736234,34.127718648773715 -788,21.0,20.0,-16.774641369736234,34.127718648773715 -788,21.0,21.0,19.31517952199179,-38.08212151184976 -788,21.0,23.0,-2.5405381522555563,3.95440286307604 -788,22.0,14.0,-1.9683489489016612,3.976064876781356 -788,22.0,22.0,3.429754555384988,-6.965303617315433 -788,22.0,23.0,-1.4614056064833263,2.989238740534077 -788,23.0,21.0,-2.5405381522555563,3.95440286307604 -788,23.0,22.0,-1.4614056064833263,2.989238740534077 -788,23.0,23.0,5.311836702613133,-9.188263657315172 -788,23.0,24.0,-1.3098929438742493,2.287622053705056 -788,24.0,23.0,-1.3098929438742493,2.287622053705056 -788,24.0,24.0,4.495715080321987,-7.864978761969621 -788,24.0,25.0,-1.2165301194494855,1.8171440463475024 -788,24.0,26.0,-1.9692920169982515,3.760212661917064 -788,25.0,24.0,-1.2165301194494855,1.8171440463475024 -788,25.0,25.0,1.2165301194494855,-1.8171440463475024 -788,26.0,24.0,-1.9692920169982515,3.760212661917064 -788,26.0,26.0,3.652281470778589,-9.46044252232512 -788,26.0,27.0,0.0,2.608731947574922 -788,26.0,28.0,-0.99553355095268,1.881005840357816 -788,26.0,29.0,-0.6874559028276572,1.293971494797717 -788,27.0,5.0,-4.362844058012917,15.463571542897856 -788,27.0,7.0,-1.4439790613954469,4.540814658476248 -788,27.0,26.0,0.0,2.608731947574922 -788,27.0,27.0,5.806823119408364,-22.67145722159613 -788,28.0,26.0,-0.99553355095268,1.881005840357816 -788,28.0,28.0,1.9075867579849564,-3.604364401207048 -788,28.0,29.0,-0.9120532070322764,1.7233585608492326 -788,29.0,26.0,-0.6874559028276572,1.293971494797717 -788,29.0,28.0,-0.9120532070322764,1.7233585608492326 -788,29.0,29.0,1.5995091098599337,-3.0173300556469496 -789,0.0,0.0,6.765516048652632,-21.23160167089863 -789,0.0,1.0,-5.224646179885656,15.646726840803398 -789,0.0,2.0,-1.5408698687669766,5.631674830095234 -789,1.0,0.0,-5.224646179885656,15.646726840803398 -789,1.0,1.0,9.75228216552403,-30.648662892676068 -789,1.0,3.0,-1.7055303166990268,5.1973792282565086 -789,1.0,4.0,-1.1359607881738778,4.772479328281356 -789,1.0,5.0,-1.6861448807654689,5.116477495334806 -789,2.0,0.0,-1.5408698687669766,5.631674830095234 -789,2.0,2.0,9.736318911079088,-29.13794745915803 -789,2.0,3.0,-8.19544904231211,23.5308726290628 -789,3.0,1.0,-1.7055303166990268,5.1973792282565086 -789,3.0,2.0,-8.19544904231211,23.5308726290628 -789,3.0,3.0,16.314103089185693,-55.509410535254254 -789,3.0,5.0,-6.413123730174556,22.31120356548123 -789,3.0,11.0,0.0,4.191255364806866 -789,4.0,1.0,-1.1359607881738778,4.772479328281356 -789,4.0,4.0,4.089980824135861,-12.190647245055052 -789,4.0,6.0,-2.954020035961983,7.449267916773697 -789,5.0,1.0,-1.6861448807654689,5.116477495334806 -789,5.0,3.0,-6.413123730174556,22.31120356548123 -789,5.0,5.0,22.341631269034565,-82.8291478657789 -789,5.0,6.0,-3.590210423980992,11.02611441072814 -789,5.0,7.0,-6.289308176100628,22.0125786163522 -789,5.0,8.0,0.0,4.915840805411357 -789,5.0,9.0,0.0,1.8561002591115965 -789,5.0,27.0,-4.362844058012917,15.463571542897856 -789,6.0,4.0,-2.954020035961983,7.449267916773697 -789,6.0,5.0,-3.590210423980992,11.02611441072814 -789,6.0,6.0,6.544230459942975,-18.45668232750184 -789,7.0,5.0,-6.289308176100628,22.0125786163522 -789,7.0,7.0,7.733287237496075,-26.527493274828448 -789,7.0,27.0,-1.4439790613954469,4.540814658476248 -789,8.0,5.0,0.0,4.915840805411357 -789,8.0,8.0,0.0,-18.706293706293707 -789,8.0,9.0,0.0,9.090909090909092 -789,8.0,10.0,0.0,4.807692307692308 -789,9.0,5.0,0.0,1.8561002591115965 -789,9.0,8.0,0.0,9.090909090909092 -789,9.0,9.0,13.462042814524237,-41.3837606675224 -789,9.0,16.0,-3.956039125715353,10.317447719844054 -789,9.0,19.0,-1.7848303152666305,3.98535828943083 -789,9.0,20.0,-5.101853820159654,10.98071411292983 -789,9.0,21.0,-2.619319553382597,5.400770303329455 -789,10.0,8.0,0.0,4.807692307692308 -789,10.0,10.0,0.0,-4.807692307692308 -789,11.0,3.0,0.0,4.191255364806866 -789,11.0,11.0,6.573961583776156,-24.424167659260668 -789,11.0,12.0,0.0,7.142857142857143 -789,11.0,13.0,-1.5265676088395577,3.1734252729654173 -789,11.0,14.0,-3.0953961826564296,6.097275864326261 -789,11.0,15.0,-1.9519977922801688,4.104359379111847 -789,12.0,11.0,0.0,7.142857142857143 -789,12.0,12.0,0.0,-7.142857142857143 -789,13.0,11.0,-1.5265676088395577,3.1734252729654173 -789,13.0,13.0,1.5265676088395577,-3.1734252729654173 -789,14.0,11.0,-3.0953961826564296,6.097275864326261 -789,14.0,14.0,4.906197333063632,-9.784694795956955 -789,14.0,17.0,-1.8108011504072024,3.687418931630696 -789,15.0,11.0,-1.9519977922801688,4.104359379111847 -789,15.0,15.0,3.271064728633931,-8.94513365126506 -789,15.0,16.0,-1.3190669363537617,4.8407742721532125 -789,16.0,9.0,-3.956039125715353,10.317447719844054 -789,16.0,15.0,-1.3190669363537617,4.8407742721532125 -789,16.0,16.0,5.275106062069114,-15.158221991997266 -789,17.0,14.0,-1.8108011504072024,3.687418931630696 -789,17.0,17.0,4.886487584415919,-9.906177730909668 -789,17.0,18.0,-3.0756864340087167,6.218758799278971 -789,18.0,17.0,-3.0756864340087167,6.218758799278971 -789,18.0,18.0,8.958039375185187,-17.98346468163191 -789,18.0,19.0,-5.88235294117647,11.76470588235294 -789,19.0,9.0,-1.7848303152666305,3.98535828943083 -789,19.0,18.0,-5.88235294117647,11.76470588235294 -789,19.0,19.0,7.6671832564431,-15.75006417178377 -789,20.0,9.0,-5.101853820159654,10.98071411292983 -789,20.0,20.0,21.876495189895888,-45.10843276170355 -789,20.0,21.0,-16.774641369736234,34.127718648773715 -789,21.0,9.0,-2.619319553382597,5.400770303329455 -789,21.0,20.0,-16.774641369736234,34.127718648773715 -789,21.0,21.0,21.93449907537439,-43.48289181517921 -789,21.0,23.0,-2.5405381522555563,3.95440286307604 -789,22.0,22.0,1.4614056064833263,-2.989238740534077 -789,22.0,23.0,-1.4614056064833263,2.989238740534077 -789,23.0,21.0,-2.5405381522555563,3.95440286307604 -789,23.0,22.0,-1.4614056064833263,2.989238740534077 -789,23.0,23.0,5.311836702613133,-9.188263657315172 -789,23.0,24.0,-1.3098929438742493,2.287622053705056 -789,24.0,23.0,-1.3098929438742493,2.287622053705056 -789,24.0,24.0,4.495715080321987,-7.864978761969621 -789,24.0,25.0,-1.2165301194494855,1.8171440463475024 -789,24.0,26.0,-1.9692920169982515,3.760212661917064 -789,25.0,24.0,-1.2165301194494855,1.8171440463475024 -789,25.0,25.0,1.2165301194494855,-1.8171440463475024 -789,26.0,24.0,-1.9692920169982515,3.760212661917064 -789,26.0,26.0,3.652281470778589,-9.46044252232512 -789,26.0,27.0,0.0,2.608731947574922 -789,26.0,28.0,-0.99553355095268,1.881005840357816 -789,26.0,29.0,-0.6874559028276572,1.293971494797717 -789,27.0,5.0,-4.362844058012917,15.463571542897856 -789,27.0,7.0,-1.4439790613954469,4.540814658476248 -789,27.0,26.0,0.0,2.608731947574922 -789,27.0,27.0,5.806823119408364,-22.67145722159613 -789,28.0,26.0,-0.99553355095268,1.881005840357816 -789,28.0,28.0,1.9075867579849564,-3.604364401207048 -789,28.0,29.0,-0.9120532070322764,1.7233585608492326 -789,29.0,26.0,-0.6874559028276572,1.293971494797717 -789,29.0,28.0,-0.9120532070322764,1.7233585608492326 -789,29.0,29.0,1.5995091098599337,-3.0173300556469496 -790,0.0,0.0,6.765516048652632,-21.23160167089863 -790,0.0,1.0,-5.224646179885656,15.646726840803398 -790,0.0,2.0,-1.5408698687669766,5.631674830095234 -790,1.0,0.0,-5.224646179885656,15.646726840803398 -790,1.0,1.0,9.75228216552403,-30.648662892676068 -790,1.0,3.0,-1.7055303166990268,5.1973792282565086 -790,1.0,4.0,-1.1359607881738778,4.772479328281356 -790,1.0,5.0,-1.6861448807654689,5.116477495334806 -790,2.0,0.0,-1.5408698687669766,5.631674830095234 -790,2.0,2.0,1.5408698687669766,-5.611274830095233 -790,3.0,1.0,-1.7055303166990268,5.1973792282565086 -790,3.0,3.0,8.118654046873583,-31.982737906191456 -790,3.0,5.0,-6.413123730174556,22.31120356548123 -790,3.0,11.0,0.0,4.191255364806866 -790,4.0,1.0,-1.1359607881738778,4.772479328281356 -790,4.0,4.0,4.089980824135861,-12.190647245055052 -790,4.0,6.0,-2.954020035961983,7.449267916773697 -790,5.0,1.0,-1.6861448807654689,5.116477495334806 -790,5.0,3.0,-6.413123730174556,22.31120356548123 -790,5.0,5.0,22.341631269034565,-82.8291478657789 -790,5.0,6.0,-3.590210423980992,11.02611441072814 -790,5.0,7.0,-6.289308176100628,22.0125786163522 -790,5.0,8.0,0.0,4.915840805411357 -790,5.0,9.0,0.0,1.8561002591115965 -790,5.0,27.0,-4.362844058012917,15.463571542897856 -790,6.0,4.0,-2.954020035961983,7.449267916773697 -790,6.0,5.0,-3.590210423980992,11.02611441072814 -790,6.0,6.0,6.544230459942975,-18.45668232750184 -790,7.0,5.0,-6.289308176100628,22.0125786163522 -790,7.0,7.0,7.733287237496075,-26.527493274828448 -790,7.0,27.0,-1.4439790613954469,4.540814658476248 -790,8.0,5.0,0.0,4.915840805411357 -790,8.0,8.0,0.0,-18.706293706293707 -790,8.0,9.0,0.0,9.090909090909092 -790,8.0,10.0,0.0,4.807692307692308 -790,9.0,5.0,0.0,1.8561002591115965 -790,9.0,8.0,0.0,9.090909090909092 -790,9.0,9.0,8.36018899436458,-30.40304655459257 -790,9.0,16.0,-3.956039125715353,10.317447719844054 -790,9.0,19.0,-1.7848303152666305,3.98535828943083 -790,9.0,21.0,-2.619319553382597,5.400770303329455 -790,10.0,8.0,0.0,4.807692307692308 -790,10.0,10.0,0.0,-4.807692307692308 -790,11.0,3.0,0.0,4.191255364806866 -790,11.0,11.0,6.573961583776156,-24.424167659260668 -790,11.0,12.0,0.0,7.142857142857143 -790,11.0,13.0,-1.5265676088395577,3.1734252729654173 -790,11.0,14.0,-3.0953961826564296,6.097275864326261 -790,11.0,15.0,-1.9519977922801688,4.104359379111847 -790,12.0,11.0,0.0,7.142857142857143 -790,12.0,12.0,0.0,-7.142857142857143 -790,13.0,11.0,-1.5265676088395577,3.1734252729654173 -790,13.0,13.0,4.01751987283902,-5.424299332335067 -790,13.0,14.0,-2.4909522639994623,2.250874059369649 -790,14.0,11.0,-3.0953961826564296,6.097275864326261 -790,14.0,13.0,-2.4909522639994623,2.250874059369649 -790,14.0,14.0,9.365498545964757,-16.01163373210796 -790,14.0,17.0,-1.8108011504072024,3.687418931630696 -790,14.0,22.0,-1.9683489489016612,3.976064876781356 -790,15.0,11.0,-1.9519977922801688,4.104359379111847 -790,15.0,15.0,3.271064728633931,-8.94513365126506 -790,15.0,16.0,-1.3190669363537617,4.8407742721532125 -790,16.0,9.0,-3.956039125715353,10.317447719844054 -790,16.0,15.0,-1.3190669363537617,4.8407742721532125 -790,16.0,16.0,5.275106062069114,-15.158221991997266 -790,17.0,14.0,-1.8108011504072024,3.687418931630696 -790,17.0,17.0,4.886487584415919,-9.906177730909668 -790,17.0,18.0,-3.0756864340087167,6.218758799278971 -790,18.0,17.0,-3.0756864340087167,6.218758799278971 -790,18.0,18.0,8.958039375185187,-17.98346468163191 -790,18.0,19.0,-5.88235294117647,11.76470588235294 -790,19.0,9.0,-1.7848303152666305,3.98535828943083 -790,19.0,18.0,-5.88235294117647,11.76470588235294 -790,19.0,19.0,7.6671832564431,-15.75006417178377 -790,20.0,20.0,16.774641369736234,-34.127718648773715 -790,20.0,21.0,-16.774641369736234,34.127718648773715 -790,21.0,9.0,-2.619319553382597,5.400770303329455 -790,21.0,20.0,-16.774641369736234,34.127718648773715 -790,21.0,21.0,21.93449907537439,-43.48289181517921 -790,21.0,23.0,-2.5405381522555563,3.95440286307604 -790,22.0,14.0,-1.9683489489016612,3.976064876781356 -790,22.0,22.0,3.429754555384988,-6.965303617315433 -790,22.0,23.0,-1.4614056064833263,2.989238740534077 -790,23.0,21.0,-2.5405381522555563,3.95440286307604 -790,23.0,22.0,-1.4614056064833263,2.989238740534077 -790,23.0,23.0,5.311836702613133,-9.188263657315172 -790,23.0,24.0,-1.3098929438742493,2.287622053705056 -790,24.0,23.0,-1.3098929438742493,2.287622053705056 -790,24.0,24.0,4.495715080321987,-7.864978761969621 -790,24.0,25.0,-1.2165301194494855,1.8171440463475024 -790,24.0,26.0,-1.9692920169982515,3.760212661917064 -790,25.0,24.0,-1.2165301194494855,1.8171440463475024 -790,25.0,25.0,1.2165301194494855,-1.8171440463475024 -790,26.0,24.0,-1.9692920169982515,3.760212661917064 -790,26.0,26.0,3.652281470778589,-9.46044252232512 -790,26.0,27.0,0.0,2.608731947574922 -790,26.0,28.0,-0.99553355095268,1.881005840357816 -790,26.0,29.0,-0.6874559028276572,1.293971494797717 -790,27.0,5.0,-4.362844058012917,15.463571542897856 -790,27.0,7.0,-1.4439790613954469,4.540814658476248 -790,27.0,26.0,0.0,2.608731947574922 -790,27.0,27.0,5.806823119408364,-22.67145722159613 -790,28.0,26.0,-0.99553355095268,1.881005840357816 -790,28.0,28.0,1.9075867579849564,-3.604364401207048 -790,28.0,29.0,-0.9120532070322764,1.7233585608492326 -790,29.0,26.0,-0.6874559028276572,1.293971494797717 -790,29.0,28.0,-0.9120532070322764,1.7233585608492326 -790,29.0,29.0,1.5995091098599337,-3.0173300556469496 -791,0.0,0.0,6.765516048652632,-21.23160167089863 -791,0.0,1.0,-5.224646179885656,15.646726840803398 -791,0.0,2.0,-1.5408698687669766,5.631674830095234 -791,1.0,0.0,-5.224646179885656,15.646726840803398 -791,1.0,1.0,9.75228216552403,-30.648662892676068 -791,1.0,3.0,-1.7055303166990268,5.1973792282565086 -791,1.0,4.0,-1.1359607881738778,4.772479328281356 -791,1.0,5.0,-1.6861448807654689,5.116477495334806 -791,2.0,0.0,-1.5408698687669766,5.631674830095234 -791,2.0,2.0,9.736318911079088,-29.13794745915803 -791,2.0,3.0,-8.19544904231211,23.5308726290628 -791,3.0,1.0,-1.7055303166990268,5.1973792282565086 -791,3.0,2.0,-8.19544904231211,23.5308726290628 -791,3.0,3.0,16.314103089185693,-55.509410535254254 -791,3.0,5.0,-6.413123730174556,22.31120356548123 -791,3.0,11.0,0.0,4.191255364806866 -791,4.0,1.0,-1.1359607881738778,4.772479328281356 -791,4.0,4.0,4.089980824135861,-12.190647245055052 -791,4.0,6.0,-2.954020035961983,7.449267916773697 -791,5.0,1.0,-1.6861448807654689,5.116477495334806 -791,5.0,3.0,-6.413123730174556,22.31120356548123 -791,5.0,5.0,22.341631269034565,-82.8291478657789 -791,5.0,6.0,-3.590210423980992,11.02611441072814 -791,5.0,7.0,-6.289308176100628,22.0125786163522 -791,5.0,8.0,0.0,4.915840805411357 -791,5.0,9.0,0.0,1.8561002591115965 -791,5.0,27.0,-4.362844058012917,15.463571542897856 -791,6.0,4.0,-2.954020035961983,7.449267916773697 -791,6.0,5.0,-3.590210423980992,11.02611441072814 -791,6.0,6.0,6.544230459942975,-18.45668232750184 -791,7.0,5.0,-6.289308176100628,22.0125786163522 -791,7.0,7.0,7.733287237496075,-26.527493274828448 -791,7.0,27.0,-1.4439790613954469,4.540814658476248 -791,8.0,5.0,0.0,4.915840805411357 -791,8.0,8.0,0.0,-18.706293706293707 -791,8.0,9.0,0.0,9.090909090909092 -791,8.0,10.0,0.0,4.807692307692308 -791,9.0,5.0,0.0,1.8561002591115965 -791,9.0,8.0,0.0,9.090909090909092 -791,9.0,9.0,13.462042814524237,-41.3837606675224 -791,9.0,16.0,-3.956039125715353,10.317447719844054 -791,9.0,19.0,-1.7848303152666305,3.98535828943083 -791,9.0,20.0,-5.101853820159654,10.98071411292983 -791,9.0,21.0,-2.619319553382597,5.400770303329455 -791,10.0,8.0,0.0,4.807692307692308 -791,10.0,10.0,0.0,-4.807692307692308 -791,11.0,3.0,0.0,4.191255364806866 -791,11.0,11.0,6.573961583776156,-24.424167659260668 -791,11.0,12.0,0.0,7.142857142857143 -791,11.0,13.0,-1.5265676088395577,3.1734252729654173 -791,11.0,14.0,-3.0953961826564296,6.097275864326261 -791,11.0,15.0,-1.9519977922801688,4.104359379111847 -791,12.0,11.0,0.0,7.142857142857143 -791,12.0,12.0,0.0,-7.142857142857143 -791,13.0,11.0,-1.5265676088395577,3.1734252729654173 -791,13.0,13.0,4.01751987283902,-5.424299332335067 -791,13.0,14.0,-2.4909522639994623,2.250874059369649 -791,14.0,11.0,-3.0953961826564296,6.097275864326261 -791,14.0,13.0,-2.4909522639994623,2.250874059369649 -791,14.0,14.0,9.365498545964757,-16.01163373210796 -791,14.0,17.0,-1.8108011504072024,3.687418931630696 -791,14.0,22.0,-1.9683489489016612,3.976064876781356 -791,15.0,11.0,-1.9519977922801688,4.104359379111847 -791,15.0,15.0,3.271064728633931,-8.94513365126506 -791,15.0,16.0,-1.3190669363537617,4.8407742721532125 -791,16.0,9.0,-3.956039125715353,10.317447719844054 -791,16.0,15.0,-1.3190669363537617,4.8407742721532125 -791,16.0,16.0,5.275106062069114,-15.158221991997266 -791,17.0,14.0,-1.8108011504072024,3.687418931630696 -791,17.0,17.0,4.886487584415919,-9.906177730909668 -791,17.0,18.0,-3.0756864340087167,6.218758799278971 -791,18.0,17.0,-3.0756864340087167,6.218758799278971 -791,18.0,18.0,8.958039375185187,-17.98346468163191 -791,18.0,19.0,-5.88235294117647,11.76470588235294 -791,19.0,9.0,-1.7848303152666305,3.98535828943083 -791,19.0,18.0,-5.88235294117647,11.76470588235294 -791,19.0,19.0,7.6671832564431,-15.75006417178377 -791,20.0,9.0,-5.101853820159654,10.98071411292983 -791,20.0,20.0,21.876495189895888,-45.10843276170355 -791,20.0,21.0,-16.774641369736234,34.127718648773715 -791,21.0,9.0,-2.619319553382597,5.400770303329455 -791,21.0,20.0,-16.774641369736234,34.127718648773715 -791,21.0,21.0,21.93449907537439,-43.48289181517921 -791,21.0,23.0,-2.5405381522555563,3.95440286307604 -791,22.0,14.0,-1.9683489489016612,3.976064876781356 -791,22.0,22.0,3.429754555384988,-6.965303617315433 -791,22.0,23.0,-1.4614056064833263,2.989238740534077 -791,23.0,21.0,-2.5405381522555563,3.95440286307604 -791,23.0,22.0,-1.4614056064833263,2.989238740534077 -791,23.0,23.0,5.311836702613133,-9.188263657315172 -791,23.0,24.0,-1.3098929438742493,2.287622053705056 -791,24.0,23.0,-1.3098929438742493,2.287622053705056 -791,24.0,24.0,4.495715080321987,-7.864978761969621 -791,24.0,25.0,-1.2165301194494855,1.8171440463475024 -791,24.0,26.0,-1.9692920169982515,3.760212661917064 -791,25.0,24.0,-1.2165301194494855,1.8171440463475024 -791,25.0,25.0,1.2165301194494855,-1.8171440463475024 -791,26.0,24.0,-1.9692920169982515,3.760212661917064 -791,26.0,26.0,3.652281470778589,-9.46044252232512 -791,26.0,27.0,0.0,2.608731947574922 -791,26.0,28.0,-0.99553355095268,1.881005840357816 -791,26.0,29.0,-0.6874559028276572,1.293971494797717 -791,27.0,5.0,-4.362844058012917,15.463571542897856 -791,27.0,7.0,-1.4439790613954469,4.540814658476248 -791,27.0,26.0,0.0,2.608731947574922 -791,27.0,27.0,5.806823119408364,-22.67145722159613 -791,28.0,26.0,-0.99553355095268,1.881005840357816 -791,28.0,28.0,1.9075867579849564,-3.604364401207048 -791,28.0,29.0,-0.9120532070322764,1.7233585608492326 -791,29.0,26.0,-0.6874559028276572,1.293971494797717 -791,29.0,28.0,-0.9120532070322764,1.7233585608492326 -791,29.0,29.0,1.5995091098599337,-3.0173300556469496 -792,0.0,0.0,6.765516048652632,-21.23160167089863 -792,0.0,1.0,-5.224646179885656,15.646726840803398 -792,0.0,2.0,-1.5408698687669766,5.631674830095234 -792,1.0,0.0,-5.224646179885656,15.646726840803398 -792,1.0,1.0,9.75228216552403,-30.648662892676068 -792,1.0,3.0,-1.7055303166990268,5.1973792282565086 -792,1.0,4.0,-1.1359607881738778,4.772479328281356 -792,1.0,5.0,-1.6861448807654689,5.116477495334806 -792,2.0,0.0,-1.5408698687669766,5.631674830095234 -792,2.0,2.0,9.736318911079088,-29.13794745915803 -792,2.0,3.0,-8.19544904231211,23.5308726290628 -792,3.0,1.0,-1.7055303166990268,5.1973792282565086 -792,3.0,2.0,-8.19544904231211,23.5308726290628 -792,3.0,3.0,16.314103089185693,-55.509410535254254 -792,3.0,5.0,-6.413123730174556,22.31120356548123 -792,3.0,11.0,0.0,4.191255364806866 -792,4.0,1.0,-1.1359607881738778,4.772479328281356 -792,4.0,4.0,4.089980824135861,-12.190647245055052 -792,4.0,6.0,-2.954020035961983,7.449267916773697 -792,5.0,1.0,-1.6861448807654689,5.116477495334806 -792,5.0,3.0,-6.413123730174556,22.31120356548123 -792,5.0,5.0,22.341631269034565,-82.8291478657789 -792,5.0,6.0,-3.590210423980992,11.02611441072814 -792,5.0,7.0,-6.289308176100628,22.0125786163522 -792,5.0,8.0,0.0,4.915840805411357 -792,5.0,9.0,0.0,1.8561002591115965 -792,5.0,27.0,-4.362844058012917,15.463571542897856 -792,6.0,4.0,-2.954020035961983,7.449267916773697 -792,6.0,5.0,-3.590210423980992,11.02611441072814 -792,6.0,6.0,6.544230459942975,-18.45668232750184 -792,7.0,5.0,-6.289308176100628,22.0125786163522 -792,7.0,7.0,7.733287237496075,-26.527493274828448 -792,7.0,27.0,-1.4439790613954469,4.540814658476248 -792,8.0,5.0,0.0,4.915840805411357 -792,8.0,8.0,0.0,-18.706293706293707 -792,8.0,9.0,0.0,9.090909090909092 -792,8.0,10.0,0.0,4.807692307692308 -792,9.0,5.0,0.0,1.8561002591115965 -792,9.0,8.0,0.0,9.090909090909092 -792,9.0,9.0,13.462042814524237,-41.3837606675224 -792,9.0,16.0,-3.956039125715353,10.317447719844054 -792,9.0,19.0,-1.7848303152666305,3.98535828943083 -792,9.0,20.0,-5.101853820159654,10.98071411292983 -792,9.0,21.0,-2.619319553382597,5.400770303329455 -792,10.0,8.0,0.0,4.807692307692308 -792,10.0,10.0,0.0,-4.807692307692308 -792,11.0,3.0,0.0,4.191255364806866 -792,11.0,11.0,6.573961583776156,-24.424167659260668 -792,11.0,12.0,0.0,7.142857142857143 -792,11.0,13.0,-1.5265676088395577,3.1734252729654173 -792,11.0,14.0,-3.0953961826564296,6.097275864326261 -792,11.0,15.0,-1.9519977922801688,4.104359379111847 -792,12.0,11.0,0.0,7.142857142857143 -792,12.0,12.0,0.0,-7.142857142857143 -792,13.0,11.0,-1.5265676088395577,3.1734252729654173 -792,13.0,13.0,4.01751987283902,-5.424299332335067 -792,13.0,14.0,-2.4909522639994623,2.250874059369649 -792,14.0,11.0,-3.0953961826564296,6.097275864326261 -792,14.0,13.0,-2.4909522639994623,2.250874059369649 -792,14.0,14.0,9.365498545964757,-16.01163373210796 -792,14.0,17.0,-1.8108011504072024,3.687418931630696 -792,14.0,22.0,-1.9683489489016612,3.976064876781356 -792,15.0,11.0,-1.9519977922801688,4.104359379111847 -792,15.0,15.0,3.271064728633931,-8.94513365126506 -792,15.0,16.0,-1.3190669363537617,4.8407742721532125 -792,16.0,9.0,-3.956039125715353,10.317447719844054 -792,16.0,15.0,-1.3190669363537617,4.8407742721532125 -792,16.0,16.0,5.275106062069114,-15.158221991997266 -792,17.0,14.0,-1.8108011504072024,3.687418931630696 -792,17.0,17.0,4.886487584415919,-9.906177730909668 -792,17.0,18.0,-3.0756864340087167,6.218758799278971 -792,18.0,17.0,-3.0756864340087167,6.218758799278971 -792,18.0,18.0,8.958039375185187,-17.98346468163191 -792,18.0,19.0,-5.88235294117647,11.76470588235294 -792,19.0,9.0,-1.7848303152666305,3.98535828943083 -792,19.0,18.0,-5.88235294117647,11.76470588235294 -792,19.0,19.0,7.6671832564431,-15.75006417178377 -792,20.0,9.0,-5.101853820159654,10.98071411292983 -792,20.0,20.0,21.876495189895888,-45.10843276170355 -792,20.0,21.0,-16.774641369736234,34.127718648773715 -792,21.0,9.0,-2.619319553382597,5.400770303329455 -792,21.0,20.0,-16.774641369736234,34.127718648773715 -792,21.0,21.0,21.93449907537439,-43.48289181517921 -792,21.0,23.0,-2.5405381522555563,3.95440286307604 -792,22.0,14.0,-1.9683489489016612,3.976064876781356 -792,22.0,22.0,3.429754555384988,-6.965303617315433 -792,22.0,23.0,-1.4614056064833263,2.989238740534077 -792,23.0,21.0,-2.5405381522555563,3.95440286307604 -792,23.0,22.0,-1.4614056064833263,2.989238740534077 -792,23.0,23.0,5.311836702613133,-9.188263657315172 -792,23.0,24.0,-1.3098929438742493,2.287622053705056 -792,24.0,23.0,-1.3098929438742493,2.287622053705056 -792,24.0,24.0,2.526423063323735,-4.104766100052558 -792,24.0,25.0,-1.2165301194494855,1.8171440463475024 -792,25.0,24.0,-1.2165301194494855,1.8171440463475024 -792,25.0,25.0,1.2165301194494855,-1.8171440463475024 -792,26.0,26.0,1.6829894537803372,-5.700229860408058 -792,26.0,27.0,0.0,2.608731947574922 -792,26.0,28.0,-0.99553355095268,1.881005840357816 -792,26.0,29.0,-0.6874559028276572,1.293971494797717 -792,27.0,5.0,-4.362844058012917,15.463571542897856 -792,27.0,7.0,-1.4439790613954469,4.540814658476248 -792,27.0,26.0,0.0,2.608731947574922 -792,27.0,27.0,5.806823119408364,-22.67145722159613 -792,28.0,26.0,-0.99553355095268,1.881005840357816 -792,28.0,28.0,0.99553355095268,-1.881005840357816 -792,29.0,26.0,-0.6874559028276572,1.293971494797717 -792,29.0,29.0,0.6874559028276572,-1.293971494797717 -793,0.0,0.0,6.765516048652632,-21.23160167089863 -793,0.0,1.0,-5.224646179885656,15.646726840803398 -793,0.0,2.0,-1.5408698687669766,5.631674830095234 -793,1.0,0.0,-5.224646179885656,15.646726840803398 -793,1.0,1.0,9.75228216552403,-30.648662892676068 -793,1.0,3.0,-1.7055303166990268,5.1973792282565086 -793,1.0,4.0,-1.1359607881738778,4.772479328281356 -793,1.0,5.0,-1.6861448807654689,5.116477495334806 -793,2.0,0.0,-1.5408698687669766,5.631674830095234 -793,2.0,2.0,9.736318911079088,-29.13794745915803 -793,2.0,3.0,-8.19544904231211,23.5308726290628 -793,3.0,1.0,-1.7055303166990268,5.1973792282565086 -793,3.0,2.0,-8.19544904231211,23.5308726290628 -793,3.0,3.0,16.314103089185693,-55.509410535254254 -793,3.0,5.0,-6.413123730174556,22.31120356548123 -793,3.0,11.0,0.0,4.191255364806866 -793,4.0,1.0,-1.1359607881738778,4.772479328281356 -793,4.0,4.0,4.089980824135861,-12.190647245055052 -793,4.0,6.0,-2.954020035961983,7.449267916773697 -793,5.0,1.0,-1.6861448807654689,5.116477495334806 -793,5.0,3.0,-6.413123730174556,22.31120356548123 -793,5.0,5.0,22.341631269034565,-82.8291478657789 -793,5.0,6.0,-3.590210423980992,11.02611441072814 -793,5.0,7.0,-6.289308176100628,22.0125786163522 -793,5.0,8.0,0.0,4.915840805411357 -793,5.0,9.0,0.0,1.8561002591115965 -793,5.0,27.0,-4.362844058012917,15.463571542897856 -793,6.0,4.0,-2.954020035961983,7.449267916773697 -793,6.0,5.0,-3.590210423980992,11.02611441072814 -793,6.0,6.0,6.544230459942975,-18.45668232750184 -793,7.0,5.0,-6.289308176100628,22.0125786163522 -793,7.0,7.0,7.733287237496075,-26.527493274828448 -793,7.0,27.0,-1.4439790613954469,4.540814658476248 -793,8.0,5.0,0.0,4.915840805411357 -793,8.0,8.0,0.0,-18.706293706293707 -793,8.0,9.0,0.0,9.090909090909092 -793,8.0,10.0,0.0,4.807692307692308 -793,9.0,5.0,0.0,1.8561002591115965 -793,9.0,8.0,0.0,9.090909090909092 -793,9.0,9.0,13.462042814524237,-41.3837606675224 -793,9.0,16.0,-3.956039125715353,10.317447719844054 -793,9.0,19.0,-1.7848303152666305,3.98535828943083 -793,9.0,20.0,-5.101853820159654,10.98071411292983 -793,9.0,21.0,-2.619319553382597,5.400770303329455 -793,10.0,8.0,0.0,4.807692307692308 -793,10.0,10.0,0.0,-4.807692307692308 -793,11.0,3.0,0.0,4.191255364806866 -793,11.0,11.0,6.573961583776156,-24.424167659260668 -793,11.0,12.0,0.0,7.142857142857143 -793,11.0,13.0,-1.5265676088395577,3.1734252729654173 -793,11.0,14.0,-3.0953961826564296,6.097275864326261 -793,11.0,15.0,-1.9519977922801688,4.104359379111847 -793,12.0,11.0,0.0,7.142857142857143 -793,12.0,12.0,0.0,-7.142857142857143 -793,13.0,11.0,-1.5265676088395577,3.1734252729654173 -793,13.0,13.0,4.01751987283902,-5.424299332335067 -793,13.0,14.0,-2.4909522639994623,2.250874059369649 -793,14.0,11.0,-3.0953961826564296,6.097275864326261 -793,14.0,13.0,-2.4909522639994623,2.250874059369649 -793,14.0,14.0,9.365498545964757,-16.01163373210796 -793,14.0,17.0,-1.8108011504072024,3.687418931630696 -793,14.0,22.0,-1.9683489489016612,3.976064876781356 -793,15.0,11.0,-1.9519977922801688,4.104359379111847 -793,15.0,15.0,3.271064728633931,-8.94513365126506 -793,15.0,16.0,-1.3190669363537617,4.8407742721532125 -793,16.0,9.0,-3.956039125715353,10.317447719844054 -793,16.0,15.0,-1.3190669363537617,4.8407742721532125 -793,16.0,16.0,5.275106062069114,-15.158221991997266 -793,17.0,14.0,-1.8108011504072024,3.687418931630696 -793,17.0,17.0,4.886487584415919,-9.906177730909668 -793,17.0,18.0,-3.0756864340087167,6.218758799278971 -793,18.0,17.0,-3.0756864340087167,6.218758799278971 -793,18.0,18.0,8.958039375185187,-17.98346468163191 -793,18.0,19.0,-5.88235294117647,11.76470588235294 -793,19.0,9.0,-1.7848303152666305,3.98535828943083 -793,19.0,18.0,-5.88235294117647,11.76470588235294 -793,19.0,19.0,7.6671832564431,-15.75006417178377 -793,20.0,9.0,-5.101853820159654,10.98071411292983 -793,20.0,20.0,21.876495189895888,-45.10843276170355 -793,20.0,21.0,-16.774641369736234,34.127718648773715 -793,21.0,9.0,-2.619319553382597,5.400770303329455 -793,21.0,20.0,-16.774641369736234,34.127718648773715 -793,21.0,21.0,21.93449907537439,-43.48289181517921 -793,21.0,23.0,-2.5405381522555563,3.95440286307604 -793,22.0,14.0,-1.9683489489016612,3.976064876781356 -793,22.0,22.0,3.429754555384988,-6.965303617315433 -793,22.0,23.0,-1.4614056064833263,2.989238740534077 -793,23.0,21.0,-2.5405381522555563,3.95440286307604 -793,23.0,22.0,-1.4614056064833263,2.989238740534077 -793,23.0,23.0,5.311836702613133,-9.188263657315172 -793,23.0,24.0,-1.3098929438742493,2.287622053705056 -793,24.0,23.0,-1.3098929438742493,2.287622053705056 -793,24.0,24.0,4.495715080321987,-7.864978761969621 -793,24.0,25.0,-1.2165301194494855,1.8171440463475024 -793,24.0,26.0,-1.9692920169982515,3.760212661917064 -793,25.0,24.0,-1.2165301194494855,1.8171440463475024 -793,25.0,25.0,1.2165301194494855,-1.8171440463475024 -793,26.0,24.0,-1.9692920169982515,3.760212661917064 -793,26.0,26.0,3.652281470778589,-9.46044252232512 -793,26.0,27.0,0.0,2.608731947574922 -793,26.0,28.0,-0.99553355095268,1.881005840357816 -793,26.0,29.0,-0.6874559028276572,1.293971494797717 -793,27.0,5.0,-4.362844058012917,15.463571542897856 -793,27.0,7.0,-1.4439790613954469,4.540814658476248 -793,27.0,26.0,0.0,2.608731947574922 -793,27.0,27.0,5.806823119408364,-22.67145722159613 -793,28.0,26.0,-0.99553355095268,1.881005840357816 -793,28.0,28.0,1.9075867579849564,-3.604364401207048 -793,28.0,29.0,-0.9120532070322764,1.7233585608492326 -793,29.0,26.0,-0.6874559028276572,1.293971494797717 -793,29.0,28.0,-0.9120532070322764,1.7233585608492326 -793,29.0,29.0,1.5995091098599337,-3.0173300556469496 -794,0.0,0.0,6.765516048652632,-21.23160167089863 -794,0.0,1.0,-5.224646179885656,15.646726840803398 -794,0.0,2.0,-1.5408698687669766,5.631674830095234 -794,1.0,0.0,-5.224646179885656,15.646726840803398 -794,1.0,1.0,9.75228216552403,-30.648662892676068 -794,1.0,3.0,-1.7055303166990268,5.1973792282565086 -794,1.0,4.0,-1.1359607881738778,4.772479328281356 -794,1.0,5.0,-1.6861448807654689,5.116477495334806 -794,2.0,0.0,-1.5408698687669766,5.631674830095234 -794,2.0,2.0,9.736318911079088,-29.13794745915803 -794,2.0,3.0,-8.19544904231211,23.5308726290628 -794,3.0,1.0,-1.7055303166990268,5.1973792282565086 -794,3.0,2.0,-8.19544904231211,23.5308726290628 -794,3.0,3.0,16.314103089185693,-55.509410535254254 -794,3.0,5.0,-6.413123730174556,22.31120356548123 -794,3.0,11.0,0.0,4.191255364806866 -794,4.0,1.0,-1.1359607881738778,4.772479328281356 -794,4.0,4.0,4.089980824135861,-12.190647245055052 -794,4.0,6.0,-2.954020035961983,7.449267916773697 -794,5.0,1.0,-1.6861448807654689,5.116477495334806 -794,5.0,3.0,-6.413123730174556,22.31120356548123 -794,5.0,5.0,22.341631269034565,-82.8291478657789 -794,5.0,6.0,-3.590210423980992,11.02611441072814 -794,5.0,7.0,-6.289308176100628,22.0125786163522 -794,5.0,8.0,0.0,4.915840805411357 -794,5.0,9.0,0.0,1.8561002591115965 -794,5.0,27.0,-4.362844058012917,15.463571542897856 -794,6.0,4.0,-2.954020035961983,7.449267916773697 -794,6.0,5.0,-3.590210423980992,11.02611441072814 -794,6.0,6.0,6.544230459942975,-18.45668232750184 -794,7.0,5.0,-6.289308176100628,22.0125786163522 -794,7.0,7.0,7.733287237496075,-26.527493274828448 -794,7.0,27.0,-1.4439790613954469,4.540814658476248 -794,8.0,5.0,0.0,4.915840805411357 -794,8.0,8.0,0.0,-18.706293706293707 -794,8.0,9.0,0.0,9.090909090909092 -794,8.0,10.0,0.0,4.807692307692308 -794,9.0,5.0,0.0,1.8561002591115965 -794,9.0,8.0,0.0,9.090909090909092 -794,9.0,9.0,13.462042814524237,-41.3837606675224 -794,9.0,16.0,-3.956039125715353,10.317447719844054 -794,9.0,19.0,-1.7848303152666305,3.98535828943083 -794,9.0,20.0,-5.101853820159654,10.98071411292983 -794,9.0,21.0,-2.619319553382597,5.400770303329455 -794,10.0,8.0,0.0,4.807692307692308 -794,10.0,10.0,0.0,-4.807692307692308 -794,11.0,3.0,0.0,4.191255364806866 -794,11.0,11.0,6.573961583776156,-24.424167659260668 -794,11.0,12.0,0.0,7.142857142857143 -794,11.0,13.0,-1.5265676088395577,3.1734252729654173 -794,11.0,14.0,-3.0953961826564296,6.097275864326261 -794,11.0,15.0,-1.9519977922801688,4.104359379111847 -794,12.0,11.0,0.0,7.142857142857143 -794,12.0,12.0,0.0,-7.142857142857143 -794,13.0,11.0,-1.5265676088395577,3.1734252729654173 -794,13.0,13.0,4.01751987283902,-5.424299332335067 -794,13.0,14.0,-2.4909522639994623,2.250874059369649 -794,14.0,11.0,-3.0953961826564296,6.097275864326261 -794,14.0,13.0,-2.4909522639994623,2.250874059369649 -794,14.0,14.0,9.365498545964757,-16.01163373210796 -794,14.0,17.0,-1.8108011504072024,3.687418931630696 -794,14.0,22.0,-1.9683489489016612,3.976064876781356 -794,15.0,11.0,-1.9519977922801688,4.104359379111847 -794,15.0,15.0,3.271064728633931,-8.94513365126506 -794,15.0,16.0,-1.3190669363537617,4.8407742721532125 -794,16.0,9.0,-3.956039125715353,10.317447719844054 -794,16.0,15.0,-1.3190669363537617,4.8407742721532125 -794,16.0,16.0,5.275106062069114,-15.158221991997266 -794,17.0,14.0,-1.8108011504072024,3.687418931630696 -794,17.0,17.0,4.886487584415919,-9.906177730909668 -794,17.0,18.0,-3.0756864340087167,6.218758799278971 -794,18.0,17.0,-3.0756864340087167,6.218758799278971 -794,18.0,18.0,8.958039375185187,-17.98346468163191 -794,18.0,19.0,-5.88235294117647,11.76470588235294 -794,19.0,9.0,-1.7848303152666305,3.98535828943083 -794,19.0,18.0,-5.88235294117647,11.76470588235294 -794,19.0,19.0,7.6671832564431,-15.75006417178377 -794,20.0,9.0,-5.101853820159654,10.98071411292983 -794,20.0,20.0,21.876495189895888,-45.10843276170355 -794,20.0,21.0,-16.774641369736234,34.127718648773715 -794,21.0,9.0,-2.619319553382597,5.400770303329455 -794,21.0,20.0,-16.774641369736234,34.127718648773715 -794,21.0,21.0,21.93449907537439,-43.48289181517921 -794,21.0,23.0,-2.5405381522555563,3.95440286307604 -794,22.0,14.0,-1.9683489489016612,3.976064876781356 -794,22.0,22.0,3.429754555384988,-6.965303617315433 -794,22.0,23.0,-1.4614056064833263,2.989238740534077 -794,23.0,21.0,-2.5405381522555563,3.95440286307604 -794,23.0,22.0,-1.4614056064833263,2.989238740534077 -794,23.0,23.0,5.311836702613133,-9.188263657315172 -794,23.0,24.0,-1.3098929438742493,2.287622053705056 -794,24.0,23.0,-1.3098929438742493,2.287622053705056 -794,24.0,24.0,4.495715080321987,-7.864978761969621 -794,24.0,25.0,-1.2165301194494855,1.8171440463475024 -794,24.0,26.0,-1.9692920169982515,3.760212661917064 -794,25.0,24.0,-1.2165301194494855,1.8171440463475024 -794,25.0,25.0,1.2165301194494855,-1.8171440463475024 -794,26.0,24.0,-1.9692920169982515,3.760212661917064 -794,26.0,26.0,3.652281470778589,-9.46044252232512 -794,26.0,27.0,0.0,2.608731947574922 -794,26.0,28.0,-0.99553355095268,1.881005840357816 -794,26.0,29.0,-0.6874559028276572,1.293971494797717 -794,27.0,5.0,-4.362844058012917,15.463571542897856 -794,27.0,7.0,-1.4439790613954469,4.540814658476248 -794,27.0,26.0,0.0,2.608731947574922 -794,27.0,27.0,5.806823119408364,-22.67145722159613 -794,28.0,26.0,-0.99553355095268,1.881005840357816 -794,28.0,28.0,1.9075867579849564,-3.604364401207048 -794,28.0,29.0,-0.9120532070322764,1.7233585608492326 -794,29.0,26.0,-0.6874559028276572,1.293971494797717 -794,29.0,28.0,-0.9120532070322764,1.7233585608492326 -794,29.0,29.0,1.5995091098599337,-3.0173300556469496 -795,0.0,0.0,6.765516048652632,-21.23160167089863 -795,0.0,1.0,-5.224646179885656,15.646726840803398 -795,0.0,2.0,-1.5408698687669766,5.631674830095234 -795,1.0,0.0,-5.224646179885656,15.646726840803398 -795,1.0,1.0,9.75228216552403,-30.648662892676068 -795,1.0,3.0,-1.7055303166990268,5.1973792282565086 -795,1.0,4.0,-1.1359607881738778,4.772479328281356 -795,1.0,5.0,-1.6861448807654689,5.116477495334806 -795,2.0,0.0,-1.5408698687669766,5.631674830095234 -795,2.0,2.0,9.736318911079088,-29.13794745915803 -795,2.0,3.0,-8.19544904231211,23.5308726290628 -795,3.0,1.0,-1.7055303166990268,5.1973792282565086 -795,3.0,2.0,-8.19544904231211,23.5308726290628 -795,3.0,3.0,16.314103089185693,-55.509410535254254 -795,3.0,5.0,-6.413123730174556,22.31120356548123 -795,3.0,11.0,0.0,4.191255364806866 -795,4.0,1.0,-1.1359607881738778,4.772479328281356 -795,4.0,4.0,4.089980824135861,-12.190647245055052 -795,4.0,6.0,-2.954020035961983,7.449267916773697 -795,5.0,1.0,-1.6861448807654689,5.116477495334806 -795,5.0,3.0,-6.413123730174556,22.31120356548123 -795,5.0,5.0,22.341631269034565,-82.8291478657789 -795,5.0,6.0,-3.590210423980992,11.02611441072814 -795,5.0,7.0,-6.289308176100628,22.0125786163522 -795,5.0,8.0,0.0,4.915840805411357 -795,5.0,9.0,0.0,1.8561002591115965 -795,5.0,27.0,-4.362844058012917,15.463571542897856 -795,6.0,4.0,-2.954020035961983,7.449267916773697 -795,6.0,5.0,-3.590210423980992,11.02611441072814 -795,6.0,6.0,6.544230459942975,-18.45668232750184 -795,7.0,5.0,-6.289308176100628,22.0125786163522 -795,7.0,7.0,7.733287237496075,-26.527493274828448 -795,7.0,27.0,-1.4439790613954469,4.540814658476248 -795,8.0,5.0,0.0,4.915840805411357 -795,8.0,8.0,0.0,-18.706293706293707 -795,8.0,9.0,0.0,9.090909090909092 -795,8.0,10.0,0.0,4.807692307692308 -795,9.0,5.0,0.0,1.8561002591115965 -795,9.0,8.0,0.0,9.090909090909092 -795,9.0,9.0,13.462042814524237,-41.3837606675224 -795,9.0,16.0,-3.956039125715353,10.317447719844054 -795,9.0,19.0,-1.7848303152666305,3.98535828943083 -795,9.0,20.0,-5.101853820159654,10.98071411292983 -795,9.0,21.0,-2.619319553382597,5.400770303329455 -795,10.0,8.0,0.0,4.807692307692308 -795,10.0,10.0,0.0,-4.807692307692308 -795,11.0,3.0,0.0,4.191255364806866 -795,11.0,11.0,6.573961583776156,-24.424167659260668 -795,11.0,12.0,0.0,7.142857142857143 -795,11.0,13.0,-1.5265676088395577,3.1734252729654173 -795,11.0,14.0,-3.0953961826564296,6.097275864326261 -795,11.0,15.0,-1.9519977922801688,4.104359379111847 -795,12.0,11.0,0.0,7.142857142857143 -795,12.0,12.0,0.0,-7.142857142857143 -795,13.0,11.0,-1.5265676088395577,3.1734252729654173 -795,13.0,13.0,4.01751987283902,-5.424299332335067 -795,13.0,14.0,-2.4909522639994623,2.250874059369649 -795,14.0,11.0,-3.0953961826564296,6.097275864326261 -795,14.0,13.0,-2.4909522639994623,2.250874059369649 -795,14.0,14.0,9.365498545964757,-16.01163373210796 -795,14.0,17.0,-1.8108011504072024,3.687418931630696 -795,14.0,22.0,-1.9683489489016612,3.976064876781356 -795,15.0,11.0,-1.9519977922801688,4.104359379111847 -795,15.0,15.0,3.271064728633931,-8.94513365126506 -795,15.0,16.0,-1.3190669363537617,4.8407742721532125 -795,16.0,9.0,-3.956039125715353,10.317447719844054 -795,16.0,15.0,-1.3190669363537617,4.8407742721532125 -795,16.0,16.0,5.275106062069114,-15.158221991997266 -795,17.0,14.0,-1.8108011504072024,3.687418931630696 -795,17.0,17.0,4.886487584415919,-9.906177730909668 -795,17.0,18.0,-3.0756864340087167,6.218758799278971 -795,18.0,17.0,-3.0756864340087167,6.218758799278971 -795,18.0,18.0,8.958039375185187,-17.98346468163191 -795,18.0,19.0,-5.88235294117647,11.76470588235294 -795,19.0,9.0,-1.7848303152666305,3.98535828943083 -795,19.0,18.0,-5.88235294117647,11.76470588235294 -795,19.0,19.0,7.6671832564431,-15.75006417178377 -795,20.0,9.0,-5.101853820159654,10.98071411292983 -795,20.0,20.0,21.876495189895888,-45.10843276170355 -795,20.0,21.0,-16.774641369736234,34.127718648773715 -795,21.0,9.0,-2.619319553382597,5.400770303329455 -795,21.0,20.0,-16.774641369736234,34.127718648773715 -795,21.0,21.0,21.93449907537439,-43.48289181517921 -795,21.0,23.0,-2.5405381522555563,3.95440286307604 -795,22.0,14.0,-1.9683489489016612,3.976064876781356 -795,22.0,22.0,3.429754555384988,-6.965303617315433 -795,22.0,23.0,-1.4614056064833263,2.989238740534077 -795,23.0,21.0,-2.5405381522555563,3.95440286307604 -795,23.0,22.0,-1.4614056064833263,2.989238740534077 -795,23.0,23.0,5.311836702613133,-9.188263657315172 -795,23.0,24.0,-1.3098929438742493,2.287622053705056 -795,24.0,23.0,-1.3098929438742493,2.287622053705056 -795,24.0,24.0,4.495715080321987,-7.864978761969621 -795,24.0,25.0,-1.2165301194494855,1.8171440463475024 -795,24.0,26.0,-1.9692920169982515,3.760212661917064 -795,25.0,24.0,-1.2165301194494855,1.8171440463475024 -795,25.0,25.0,1.2165301194494855,-1.8171440463475024 -795,26.0,24.0,-1.9692920169982515,3.760212661917064 -795,26.0,26.0,3.652281470778589,-9.46044252232512 -795,26.0,27.0,0.0,2.608731947574922 -795,26.0,28.0,-0.99553355095268,1.881005840357816 -795,26.0,29.0,-0.6874559028276572,1.293971494797717 -795,27.0,5.0,-4.362844058012917,15.463571542897856 -795,27.0,7.0,-1.4439790613954469,4.540814658476248 -795,27.0,26.0,0.0,2.608731947574922 -795,27.0,27.0,5.806823119408364,-22.67145722159613 -795,28.0,26.0,-0.99553355095268,1.881005840357816 -795,28.0,28.0,1.9075867579849564,-3.604364401207048 -795,28.0,29.0,-0.9120532070322764,1.7233585608492326 -795,29.0,26.0,-0.6874559028276572,1.293971494797717 -795,29.0,28.0,-0.9120532070322764,1.7233585608492326 -795,29.0,29.0,1.5995091098599337,-3.0173300556469496 -796,0.0,0.0,6.765516048652632,-21.23160167089863 -796,0.0,1.0,-5.224646179885656,15.646726840803398 -796,0.0,2.0,-1.5408698687669766,5.631674830095234 -796,1.0,0.0,-5.224646179885656,15.646726840803398 -796,1.0,1.0,9.75228216552403,-30.648662892676068 -796,1.0,3.0,-1.7055303166990268,5.1973792282565086 -796,1.0,4.0,-1.1359607881738778,4.772479328281356 -796,1.0,5.0,-1.6861448807654689,5.116477495334806 -796,2.0,0.0,-1.5408698687669766,5.631674830095234 -796,2.0,2.0,9.736318911079088,-29.13794745915803 -796,2.0,3.0,-8.19544904231211,23.5308726290628 -796,3.0,1.0,-1.7055303166990268,5.1973792282565086 -796,3.0,2.0,-8.19544904231211,23.5308726290628 -796,3.0,3.0,9.900979359011137,-33.202706969773025 -796,3.0,11.0,0.0,4.191255364806866 -796,4.0,1.0,-1.1359607881738778,4.772479328281356 -796,4.0,4.0,4.089980824135861,-12.190647245055052 -796,4.0,6.0,-2.954020035961983,7.449267916773697 -796,5.0,1.0,-1.6861448807654689,5.116477495334806 -796,5.0,5.0,15.928507538860009,-60.52244430029767 -796,5.0,6.0,-3.590210423980992,11.02611441072814 -796,5.0,7.0,-6.289308176100628,22.0125786163522 -796,5.0,8.0,0.0,4.915840805411357 -796,5.0,9.0,0.0,1.8561002591115965 -796,5.0,27.0,-4.362844058012917,15.463571542897856 -796,6.0,4.0,-2.954020035961983,7.449267916773697 -796,6.0,5.0,-3.590210423980992,11.02611441072814 -796,6.0,6.0,6.544230459942975,-18.45668232750184 -796,7.0,5.0,-6.289308176100628,22.0125786163522 -796,7.0,7.0,7.733287237496075,-26.527493274828448 -796,7.0,27.0,-1.4439790613954469,4.540814658476248 -796,8.0,5.0,0.0,4.915840805411357 -796,8.0,8.0,0.0,-18.706293706293707 -796,8.0,9.0,0.0,9.090909090909092 -796,8.0,10.0,0.0,4.807692307692308 -796,9.0,5.0,0.0,1.8561002591115965 -796,9.0,8.0,0.0,9.090909090909092 -796,9.0,9.0,11.677212499257603,-37.39840237809157 -796,9.0,16.0,-3.956039125715353,10.317447719844054 -796,9.0,20.0,-5.101853820159654,10.98071411292983 -796,9.0,21.0,-2.619319553382597,5.400770303329455 -796,10.0,8.0,0.0,4.807692307692308 -796,10.0,10.0,0.0,-4.807692307692308 -796,11.0,3.0,0.0,4.191255364806866 -796,11.0,11.0,6.573961583776156,-24.424167659260668 -796,11.0,12.0,0.0,7.142857142857143 -796,11.0,13.0,-1.5265676088395577,3.1734252729654173 -796,11.0,14.0,-3.0953961826564296,6.097275864326261 -796,11.0,15.0,-1.9519977922801688,4.104359379111847 -796,12.0,11.0,0.0,7.142857142857143 -796,12.0,12.0,0.0,-7.142857142857143 -796,13.0,11.0,-1.5265676088395577,3.1734252729654173 -796,13.0,13.0,4.01751987283902,-5.424299332335067 -796,13.0,14.0,-2.4909522639994623,2.250874059369649 -796,14.0,11.0,-3.0953961826564296,6.097275864326261 -796,14.0,13.0,-2.4909522639994623,2.250874059369649 -796,14.0,14.0,9.365498545964757,-16.01163373210796 -796,14.0,17.0,-1.8108011504072024,3.687418931630696 -796,14.0,22.0,-1.9683489489016612,3.976064876781356 -796,15.0,11.0,-1.9519977922801688,4.104359379111847 -796,15.0,15.0,3.271064728633931,-8.94513365126506 -796,15.0,16.0,-1.3190669363537617,4.8407742721532125 -796,16.0,9.0,-3.956039125715353,10.317447719844054 -796,16.0,15.0,-1.3190669363537617,4.8407742721532125 -796,16.0,16.0,5.275106062069114,-15.158221991997266 -796,17.0,14.0,-1.8108011504072024,3.687418931630696 -796,17.0,17.0,4.886487584415919,-9.906177730909668 -796,17.0,18.0,-3.0756864340087167,6.218758799278971 -796,18.0,17.0,-3.0756864340087167,6.218758799278971 -796,18.0,18.0,8.958039375185187,-17.98346468163191 -796,18.0,19.0,-5.88235294117647,11.76470588235294 -796,19.0,18.0,-5.88235294117647,11.76470588235294 -796,19.0,19.0,5.88235294117647,-11.76470588235294 -796,20.0,9.0,-5.101853820159654,10.98071411292983 -796,20.0,20.0,5.101853820159654,-10.98071411292983 -796,21.0,9.0,-2.619319553382597,5.400770303329455 -796,21.0,21.0,5.159857705638154,-9.355173166405494 -796,21.0,23.0,-2.5405381522555563,3.95440286307604 -796,22.0,14.0,-1.9683489489016612,3.976064876781356 -796,22.0,22.0,3.429754555384988,-6.965303617315433 -796,22.0,23.0,-1.4614056064833263,2.989238740534077 -796,23.0,21.0,-2.5405381522555563,3.95440286307604 -796,23.0,22.0,-1.4614056064833263,2.989238740534077 -796,23.0,23.0,5.311836702613133,-9.188263657315172 -796,23.0,24.0,-1.3098929438742493,2.287622053705056 -796,24.0,23.0,-1.3098929438742493,2.287622053705056 -796,24.0,24.0,4.495715080321987,-7.864978761969621 -796,24.0,25.0,-1.2165301194494855,1.8171440463475024 -796,24.0,26.0,-1.9692920169982515,3.760212661917064 -796,25.0,24.0,-1.2165301194494855,1.8171440463475024 -796,25.0,25.0,1.2165301194494855,-1.8171440463475024 -796,26.0,24.0,-1.9692920169982515,3.760212661917064 -796,26.0,26.0,3.652281470778589,-9.46044252232512 -796,26.0,27.0,0.0,2.608731947574922 -796,26.0,28.0,-0.99553355095268,1.881005840357816 -796,26.0,29.0,-0.6874559028276572,1.293971494797717 -796,27.0,5.0,-4.362844058012917,15.463571542897856 -796,27.0,7.0,-1.4439790613954469,4.540814658476248 -796,27.0,26.0,0.0,2.608731947574922 -796,27.0,27.0,5.806823119408364,-22.67145722159613 -796,28.0,26.0,-0.99553355095268,1.881005840357816 -796,28.0,28.0,1.9075867579849564,-3.604364401207048 -796,28.0,29.0,-0.9120532070322764,1.7233585608492326 -796,29.0,26.0,-0.6874559028276572,1.293971494797717 -796,29.0,28.0,-0.9120532070322764,1.7233585608492326 -796,29.0,29.0,1.5995091098599337,-3.0173300556469496 -797,0.0,0.0,6.765516048652632,-21.23160167089863 -797,0.0,1.0,-5.224646179885656,15.646726840803398 -797,0.0,2.0,-1.5408698687669766,5.631674830095234 -797,1.0,0.0,-5.224646179885656,15.646726840803398 -797,1.0,1.0,9.75228216552403,-30.648662892676068 -797,1.0,3.0,-1.7055303166990268,5.1973792282565086 -797,1.0,4.0,-1.1359607881738778,4.772479328281356 -797,1.0,5.0,-1.6861448807654689,5.116477495334806 -797,2.0,0.0,-1.5408698687669766,5.631674830095234 -797,2.0,2.0,9.736318911079088,-29.13794745915803 -797,2.0,3.0,-8.19544904231211,23.5308726290628 -797,3.0,1.0,-1.7055303166990268,5.1973792282565086 -797,3.0,2.0,-8.19544904231211,23.5308726290628 -797,3.0,3.0,16.314103089185693,-55.509410535254254 -797,3.0,5.0,-6.413123730174556,22.31120356548123 -797,3.0,11.0,0.0,4.191255364806866 -797,4.0,1.0,-1.1359607881738778,4.772479328281356 -797,4.0,4.0,4.089980824135861,-12.190647245055052 -797,4.0,6.0,-2.954020035961983,7.449267916773697 -797,5.0,1.0,-1.6861448807654689,5.116477495334806 -797,5.0,3.0,-6.413123730174556,22.31120356548123 -797,5.0,5.0,22.341631269034565,-82.8291478657789 -797,5.0,6.0,-3.590210423980992,11.02611441072814 -797,5.0,7.0,-6.289308176100628,22.0125786163522 -797,5.0,8.0,0.0,4.915840805411357 -797,5.0,9.0,0.0,1.8561002591115965 -797,5.0,27.0,-4.362844058012917,15.463571542897856 -797,6.0,4.0,-2.954020035961983,7.449267916773697 -797,6.0,5.0,-3.590210423980992,11.02611441072814 -797,6.0,6.0,6.544230459942975,-18.45668232750184 -797,7.0,5.0,-6.289308176100628,22.0125786163522 -797,7.0,7.0,7.733287237496075,-26.527493274828448 -797,7.0,27.0,-1.4439790613954469,4.540814658476248 -797,8.0,5.0,0.0,4.915840805411357 -797,8.0,8.0,0.0,-18.706293706293707 -797,8.0,9.0,0.0,9.090909090909092 -797,8.0,10.0,0.0,4.807692307692308 -797,9.0,5.0,0.0,1.8561002591115965 -797,9.0,8.0,0.0,9.090909090909092 -797,9.0,9.0,13.462042814524237,-41.3837606675224 -797,9.0,16.0,-3.956039125715353,10.317447719844054 -797,9.0,19.0,-1.7848303152666305,3.98535828943083 -797,9.0,20.0,-5.101853820159654,10.98071411292983 -797,9.0,21.0,-2.619319553382597,5.400770303329455 -797,10.0,8.0,0.0,4.807692307692308 -797,10.0,10.0,0.0,-4.807692307692308 -797,11.0,3.0,0.0,4.191255364806866 -797,11.0,11.0,6.573961583776156,-24.424167659260668 -797,11.0,12.0,0.0,7.142857142857143 -797,11.0,13.0,-1.5265676088395577,3.1734252729654173 -797,11.0,14.0,-3.0953961826564296,6.097275864326261 -797,11.0,15.0,-1.9519977922801688,4.104359379111847 -797,12.0,11.0,0.0,7.142857142857143 -797,12.0,12.0,0.0,-7.142857142857143 -797,13.0,11.0,-1.5265676088395577,3.1734252729654173 -797,13.0,13.0,4.01751987283902,-5.424299332335067 -797,13.0,14.0,-2.4909522639994623,2.250874059369649 -797,14.0,11.0,-3.0953961826564296,6.097275864326261 -797,14.0,13.0,-2.4909522639994623,2.250874059369649 -797,14.0,14.0,9.365498545964757,-16.01163373210796 -797,14.0,17.0,-1.8108011504072024,3.687418931630696 -797,14.0,22.0,-1.9683489489016612,3.976064876781356 -797,15.0,11.0,-1.9519977922801688,4.104359379111847 -797,15.0,15.0,3.271064728633931,-8.94513365126506 -797,15.0,16.0,-1.3190669363537617,4.8407742721532125 -797,16.0,9.0,-3.956039125715353,10.317447719844054 -797,16.0,15.0,-1.3190669363537617,4.8407742721532125 -797,16.0,16.0,5.275106062069114,-15.158221991997266 -797,17.0,14.0,-1.8108011504072024,3.687418931630696 -797,17.0,17.0,4.886487584415919,-9.906177730909668 -797,17.0,18.0,-3.0756864340087167,6.218758799278971 -797,18.0,17.0,-3.0756864340087167,6.218758799278971 -797,18.0,18.0,8.958039375185187,-17.98346468163191 -797,18.0,19.0,-5.88235294117647,11.76470588235294 -797,19.0,9.0,-1.7848303152666305,3.98535828943083 -797,19.0,18.0,-5.88235294117647,11.76470588235294 -797,19.0,19.0,7.6671832564431,-15.75006417178377 -797,20.0,9.0,-5.101853820159654,10.98071411292983 -797,20.0,20.0,21.876495189895888,-45.10843276170355 -797,20.0,21.0,-16.774641369736234,34.127718648773715 -797,21.0,9.0,-2.619319553382597,5.400770303329455 -797,21.0,20.0,-16.774641369736234,34.127718648773715 -797,21.0,21.0,21.93449907537439,-43.48289181517921 -797,21.0,23.0,-2.5405381522555563,3.95440286307604 -797,22.0,14.0,-1.9683489489016612,3.976064876781356 -797,22.0,22.0,3.429754555384988,-6.965303617315433 -797,22.0,23.0,-1.4614056064833263,2.989238740534077 -797,23.0,21.0,-2.5405381522555563,3.95440286307604 -797,23.0,22.0,-1.4614056064833263,2.989238740534077 -797,23.0,23.0,5.311836702613133,-9.188263657315172 -797,23.0,24.0,-1.3098929438742493,2.287622053705056 -797,24.0,23.0,-1.3098929438742493,2.287622053705056 -797,24.0,24.0,4.495715080321987,-7.864978761969621 -797,24.0,25.0,-1.2165301194494855,1.8171440463475024 -797,24.0,26.0,-1.9692920169982515,3.760212661917064 -797,25.0,24.0,-1.2165301194494855,1.8171440463475024 -797,25.0,25.0,1.2165301194494855,-1.8171440463475024 -797,26.0,24.0,-1.9692920169982515,3.760212661917064 -797,26.0,26.0,3.652281470778589,-9.46044252232512 -797,26.0,27.0,0.0,2.608731947574922 -797,26.0,28.0,-0.99553355095268,1.881005840357816 -797,26.0,29.0,-0.6874559028276572,1.293971494797717 -797,27.0,5.0,-4.362844058012917,15.463571542897856 -797,27.0,7.0,-1.4439790613954469,4.540814658476248 -797,27.0,26.0,0.0,2.608731947574922 -797,27.0,27.0,5.806823119408364,-22.67145722159613 -797,28.0,26.0,-0.99553355095268,1.881005840357816 -797,28.0,28.0,1.9075867579849564,-3.604364401207048 -797,28.0,29.0,-0.9120532070322764,1.7233585608492326 -797,29.0,26.0,-0.6874559028276572,1.293971494797717 -797,29.0,28.0,-0.9120532070322764,1.7233585608492326 -797,29.0,29.0,1.5995091098599337,-3.0173300556469496 -798,0.0,0.0,6.765516048652632,-21.23160167089863 -798,0.0,1.0,-5.224646179885656,15.646726840803398 -798,0.0,2.0,-1.5408698687669766,5.631674830095234 -798,1.0,0.0,-5.224646179885656,15.646726840803398 -798,1.0,1.0,9.75228216552403,-30.648662892676068 -798,1.0,3.0,-1.7055303166990268,5.1973792282565086 -798,1.0,4.0,-1.1359607881738778,4.772479328281356 -798,1.0,5.0,-1.6861448807654689,5.116477495334806 -798,2.0,0.0,-1.5408698687669766,5.631674830095234 -798,2.0,2.0,9.736318911079088,-29.13794745915803 -798,2.0,3.0,-8.19544904231211,23.5308726290628 -798,3.0,1.0,-1.7055303166990268,5.1973792282565086 -798,3.0,2.0,-8.19544904231211,23.5308726290628 -798,3.0,3.0,16.314103089185693,-55.509410535254254 -798,3.0,5.0,-6.413123730174556,22.31120356548123 -798,3.0,11.0,0.0,4.191255364806866 -798,4.0,1.0,-1.1359607881738778,4.772479328281356 -798,4.0,4.0,4.089980824135861,-12.190647245055052 -798,4.0,6.0,-2.954020035961983,7.449267916773697 -798,5.0,1.0,-1.6861448807654689,5.116477495334806 -798,5.0,3.0,-6.413123730174556,22.31120356548123 -798,5.0,5.0,22.341631269034565,-82.8291478657789 -798,5.0,6.0,-3.590210423980992,11.02611441072814 -798,5.0,7.0,-6.289308176100628,22.0125786163522 -798,5.0,8.0,0.0,4.915840805411357 -798,5.0,9.0,0.0,1.8561002591115965 -798,5.0,27.0,-4.362844058012917,15.463571542897856 -798,6.0,4.0,-2.954020035961983,7.449267916773697 -798,6.0,5.0,-3.590210423980992,11.02611441072814 -798,6.0,6.0,6.544230459942975,-18.45668232750184 -798,7.0,5.0,-6.289308176100628,22.0125786163522 -798,7.0,7.0,7.733287237496075,-26.527493274828448 -798,7.0,27.0,-1.4439790613954469,4.540814658476248 -798,8.0,5.0,0.0,4.915840805411357 -798,8.0,8.0,0.0,-9.615384615384617 -798,8.0,10.0,0.0,4.807692307692308 -798,9.0,5.0,0.0,1.8561002591115965 -798,9.0,9.0,13.462042814524237,-32.29285157661331 -798,9.0,16.0,-3.956039125715353,10.317447719844054 -798,9.0,19.0,-1.7848303152666305,3.98535828943083 -798,9.0,20.0,-5.101853820159654,10.98071411292983 -798,9.0,21.0,-2.619319553382597,5.400770303329455 -798,10.0,8.0,0.0,4.807692307692308 -798,10.0,10.0,0.0,-4.807692307692308 -798,11.0,3.0,0.0,4.191255364806866 -798,11.0,11.0,6.573961583776156,-24.424167659260668 -798,11.0,12.0,0.0,7.142857142857143 -798,11.0,13.0,-1.5265676088395577,3.1734252729654173 -798,11.0,14.0,-3.0953961826564296,6.097275864326261 -798,11.0,15.0,-1.9519977922801688,4.104359379111847 -798,12.0,11.0,0.0,7.142857142857143 -798,12.0,12.0,0.0,-7.142857142857143 -798,13.0,11.0,-1.5265676088395577,3.1734252729654173 -798,13.0,13.0,4.01751987283902,-5.424299332335067 -798,13.0,14.0,-2.4909522639994623,2.250874059369649 -798,14.0,11.0,-3.0953961826564296,6.097275864326261 -798,14.0,13.0,-2.4909522639994623,2.250874059369649 -798,14.0,14.0,9.365498545964757,-16.01163373210796 -798,14.0,17.0,-1.8108011504072024,3.687418931630696 -798,14.0,22.0,-1.9683489489016612,3.976064876781356 -798,15.0,11.0,-1.9519977922801688,4.104359379111847 -798,15.0,15.0,3.271064728633931,-8.94513365126506 -798,15.0,16.0,-1.3190669363537617,4.8407742721532125 -798,16.0,9.0,-3.956039125715353,10.317447719844054 -798,16.0,15.0,-1.3190669363537617,4.8407742721532125 -798,16.0,16.0,5.275106062069114,-15.158221991997266 -798,17.0,14.0,-1.8108011504072024,3.687418931630696 -798,17.0,17.0,4.886487584415919,-9.906177730909668 -798,17.0,18.0,-3.0756864340087167,6.218758799278971 -798,18.0,17.0,-3.0756864340087167,6.218758799278971 -798,18.0,18.0,8.958039375185187,-17.98346468163191 -798,18.0,19.0,-5.88235294117647,11.76470588235294 -798,19.0,9.0,-1.7848303152666305,3.98535828943083 -798,19.0,18.0,-5.88235294117647,11.76470588235294 -798,19.0,19.0,7.6671832564431,-15.75006417178377 -798,20.0,9.0,-5.101853820159654,10.98071411292983 -798,20.0,20.0,21.876495189895888,-45.10843276170355 -798,20.0,21.0,-16.774641369736234,34.127718648773715 -798,21.0,9.0,-2.619319553382597,5.400770303329455 -798,21.0,20.0,-16.774641369736234,34.127718648773715 -798,21.0,21.0,21.93449907537439,-43.48289181517921 -798,21.0,23.0,-2.5405381522555563,3.95440286307604 -798,22.0,14.0,-1.9683489489016612,3.976064876781356 -798,22.0,22.0,3.429754555384988,-6.965303617315433 -798,22.0,23.0,-1.4614056064833263,2.989238740534077 -798,23.0,21.0,-2.5405381522555563,3.95440286307604 -798,23.0,22.0,-1.4614056064833263,2.989238740534077 -798,23.0,23.0,5.311836702613133,-9.188263657315172 -798,23.0,24.0,-1.3098929438742493,2.287622053705056 -798,24.0,23.0,-1.3098929438742493,2.287622053705056 -798,24.0,24.0,4.495715080321987,-7.864978761969621 -798,24.0,25.0,-1.2165301194494855,1.8171440463475024 -798,24.0,26.0,-1.9692920169982515,3.760212661917064 -798,25.0,24.0,-1.2165301194494855,1.8171440463475024 -798,25.0,25.0,1.2165301194494855,-1.8171440463475024 -798,26.0,24.0,-1.9692920169982515,3.760212661917064 -798,26.0,26.0,3.652281470778589,-9.46044252232512 -798,26.0,27.0,0.0,2.608731947574922 -798,26.0,28.0,-0.99553355095268,1.881005840357816 -798,26.0,29.0,-0.6874559028276572,1.293971494797717 -798,27.0,5.0,-4.362844058012917,15.463571542897856 -798,27.0,7.0,-1.4439790613954469,4.540814658476248 -798,27.0,26.0,0.0,2.608731947574922 -798,27.0,27.0,5.806823119408364,-22.67145722159613 -798,28.0,26.0,-0.99553355095268,1.881005840357816 -798,28.0,28.0,1.9075867579849564,-3.604364401207048 -798,28.0,29.0,-0.9120532070322764,1.7233585608492326 -798,29.0,26.0,-0.6874559028276572,1.293971494797717 -798,29.0,28.0,-0.9120532070322764,1.7233585608492326 -798,29.0,29.0,1.5995091098599337,-3.0173300556469496 -799,0.0,0.0,6.765516048652632,-21.23160167089863 -799,0.0,1.0,-5.224646179885656,15.646726840803398 -799,0.0,2.0,-1.5408698687669766,5.631674830095234 -799,1.0,0.0,-5.224646179885656,15.646726840803398 -799,1.0,1.0,9.75228216552403,-30.648662892676068 -799,1.0,3.0,-1.7055303166990268,5.1973792282565086 -799,1.0,4.0,-1.1359607881738778,4.772479328281356 -799,1.0,5.0,-1.6861448807654689,5.116477495334806 -799,2.0,0.0,-1.5408698687669766,5.631674830095234 -799,2.0,2.0,9.736318911079088,-29.13794745915803 -799,2.0,3.0,-8.19544904231211,23.5308726290628 -799,3.0,1.0,-1.7055303166990268,5.1973792282565086 -799,3.0,2.0,-8.19544904231211,23.5308726290628 -799,3.0,3.0,16.314103089185693,-55.509410535254254 -799,3.0,5.0,-6.413123730174556,22.31120356548123 -799,3.0,11.0,0.0,4.191255364806866 -799,4.0,1.0,-1.1359607881738778,4.772479328281356 -799,4.0,4.0,4.089980824135861,-12.190647245055052 -799,4.0,6.0,-2.954020035961983,7.449267916773697 -799,5.0,1.0,-1.6861448807654689,5.116477495334806 -799,5.0,3.0,-6.413123730174556,22.31120356548123 -799,5.0,5.0,22.341631269034565,-82.8291478657789 -799,5.0,6.0,-3.590210423980992,11.02611441072814 -799,5.0,7.0,-6.289308176100628,22.0125786163522 -799,5.0,8.0,0.0,4.915840805411357 -799,5.0,9.0,0.0,1.8561002591115965 -799,5.0,27.0,-4.362844058012917,15.463571542897856 -799,6.0,4.0,-2.954020035961983,7.449267916773697 -799,6.0,5.0,-3.590210423980992,11.02611441072814 -799,6.0,6.0,6.544230459942975,-18.45668232750184 -799,7.0,5.0,-6.289308176100628,22.0125786163522 -799,7.0,7.0,7.733287237496075,-26.527493274828448 -799,7.0,27.0,-1.4439790613954469,4.540814658476248 -799,8.0,5.0,0.0,4.915840805411357 -799,8.0,8.0,0.0,-18.706293706293707 -799,8.0,9.0,0.0,9.090909090909092 -799,8.0,10.0,0.0,4.807692307692308 -799,9.0,5.0,0.0,1.8561002591115965 -799,9.0,8.0,0.0,9.090909090909092 -799,9.0,9.0,13.462042814524237,-41.3837606675224 -799,9.0,16.0,-3.956039125715353,10.317447719844054 -799,9.0,19.0,-1.7848303152666305,3.98535828943083 -799,9.0,20.0,-5.101853820159654,10.98071411292983 -799,9.0,21.0,-2.619319553382597,5.400770303329455 -799,10.0,8.0,0.0,4.807692307692308 -799,10.0,10.0,0.0,-4.807692307692308 -799,11.0,3.0,0.0,4.191255364806866 -799,11.0,11.0,6.573961583776156,-24.424167659260668 -799,11.0,12.0,0.0,7.142857142857143 -799,11.0,13.0,-1.5265676088395577,3.1734252729654173 -799,11.0,14.0,-3.0953961826564296,6.097275864326261 -799,11.0,15.0,-1.9519977922801688,4.104359379111847 -799,12.0,11.0,0.0,7.142857142857143 -799,12.0,12.0,0.0,-7.142857142857143 -799,13.0,11.0,-1.5265676088395577,3.1734252729654173 -799,13.0,13.0,4.01751987283902,-5.424299332335067 -799,13.0,14.0,-2.4909522639994623,2.250874059369649 -799,14.0,11.0,-3.0953961826564296,6.097275864326261 -799,14.0,13.0,-2.4909522639994623,2.250874059369649 -799,14.0,14.0,9.365498545964757,-16.01163373210796 -799,14.0,17.0,-1.8108011504072024,3.687418931630696 -799,14.0,22.0,-1.9683489489016612,3.976064876781356 -799,15.0,11.0,-1.9519977922801688,4.104359379111847 -799,15.0,15.0,3.271064728633931,-8.94513365126506 -799,15.0,16.0,-1.3190669363537617,4.8407742721532125 -799,16.0,9.0,-3.956039125715353,10.317447719844054 -799,16.0,15.0,-1.3190669363537617,4.8407742721532125 -799,16.0,16.0,5.275106062069114,-15.158221991997266 -799,17.0,14.0,-1.8108011504072024,3.687418931630696 -799,17.0,17.0,4.886487584415919,-9.906177730909668 -799,17.0,18.0,-3.0756864340087167,6.218758799278971 -799,18.0,17.0,-3.0756864340087167,6.218758799278971 -799,18.0,18.0,8.958039375185187,-17.98346468163191 -799,18.0,19.0,-5.88235294117647,11.76470588235294 -799,19.0,9.0,-1.7848303152666305,3.98535828943083 -799,19.0,18.0,-5.88235294117647,11.76470588235294 -799,19.0,19.0,7.6671832564431,-15.75006417178377 -799,20.0,9.0,-5.101853820159654,10.98071411292983 -799,20.0,20.0,21.876495189895888,-45.10843276170355 -799,20.0,21.0,-16.774641369736234,34.127718648773715 -799,21.0,9.0,-2.619319553382597,5.400770303329455 -799,21.0,20.0,-16.774641369736234,34.127718648773715 -799,21.0,21.0,21.93449907537439,-43.48289181517921 -799,21.0,23.0,-2.5405381522555563,3.95440286307604 -799,22.0,14.0,-1.9683489489016612,3.976064876781356 -799,22.0,22.0,3.429754555384988,-6.965303617315433 -799,22.0,23.0,-1.4614056064833263,2.989238740534077 -799,23.0,21.0,-2.5405381522555563,3.95440286307604 -799,23.0,22.0,-1.4614056064833263,2.989238740534077 -799,23.0,23.0,5.311836702613133,-9.188263657315172 -799,23.0,24.0,-1.3098929438742493,2.287622053705056 -799,24.0,23.0,-1.3098929438742493,2.287622053705056 -799,24.0,24.0,4.495715080321987,-7.864978761969621 -799,24.0,25.0,-1.2165301194494855,1.8171440463475024 -799,24.0,26.0,-1.9692920169982515,3.760212661917064 -799,25.0,24.0,-1.2165301194494855,1.8171440463475024 -799,25.0,25.0,1.2165301194494855,-1.8171440463475024 -799,26.0,24.0,-1.9692920169982515,3.760212661917064 -799,26.0,26.0,3.652281470778589,-9.46044252232512 -799,26.0,27.0,0.0,2.608731947574922 -799,26.0,28.0,-0.99553355095268,1.881005840357816 -799,26.0,29.0,-0.6874559028276572,1.293971494797717 -799,27.0,5.0,-4.362844058012917,15.463571542897856 -799,27.0,7.0,-1.4439790613954469,4.540814658476248 -799,27.0,26.0,0.0,2.608731947574922 -799,27.0,27.0,5.806823119408364,-22.67145722159613 -799,28.0,26.0,-0.99553355095268,1.881005840357816 -799,28.0,28.0,1.9075867579849564,-3.604364401207048 -799,28.0,29.0,-0.9120532070322764,1.7233585608492326 -799,29.0,26.0,-0.6874559028276572,1.293971494797717 -799,29.0,28.0,-0.9120532070322764,1.7233585608492326 -799,29.0,29.0,1.5995091098599337,-3.0173300556469496 -800,0.0,0.0,6.765516048652632,-21.23160167089863 -800,0.0,1.0,-5.224646179885656,15.646726840803398 -800,0.0,2.0,-1.5408698687669766,5.631674830095234 -800,1.0,0.0,-5.224646179885656,15.646726840803398 -800,1.0,1.0,9.75228216552403,-30.648662892676068 -800,1.0,3.0,-1.7055303166990268,5.1973792282565086 -800,1.0,4.0,-1.1359607881738778,4.772479328281356 -800,1.0,5.0,-1.6861448807654689,5.116477495334806 -800,2.0,0.0,-1.5408698687669766,5.631674830095234 -800,2.0,2.0,9.736318911079088,-29.13794745915803 -800,2.0,3.0,-8.19544904231211,23.5308726290628 -800,3.0,1.0,-1.7055303166990268,5.1973792282565086 -800,3.0,2.0,-8.19544904231211,23.5308726290628 -800,3.0,3.0,16.314103089185693,-55.509410535254254 -800,3.0,5.0,-6.413123730174556,22.31120356548123 -800,3.0,11.0,0.0,4.191255364806866 -800,4.0,1.0,-1.1359607881738778,4.772479328281356 -800,4.0,4.0,4.089980824135861,-12.190647245055052 -800,4.0,6.0,-2.954020035961983,7.449267916773697 -800,5.0,1.0,-1.6861448807654689,5.116477495334806 -800,5.0,3.0,-6.413123730174556,22.31120356548123 -800,5.0,5.0,22.341631269034565,-82.8291478657789 -800,5.0,6.0,-3.590210423980992,11.02611441072814 -800,5.0,7.0,-6.289308176100628,22.0125786163522 -800,5.0,8.0,0.0,4.915840805411357 -800,5.0,9.0,0.0,1.8561002591115965 -800,5.0,27.0,-4.362844058012917,15.463571542897856 -800,6.0,4.0,-2.954020035961983,7.449267916773697 -800,6.0,5.0,-3.590210423980992,11.02611441072814 -800,6.0,6.0,6.544230459942975,-18.45668232750184 -800,7.0,5.0,-6.289308176100628,22.0125786163522 -800,7.0,7.0,7.733287237496075,-26.527493274828448 -800,7.0,27.0,-1.4439790613954469,4.540814658476248 -800,8.0,5.0,0.0,4.915840805411357 -800,8.0,8.0,0.0,-18.706293706293707 -800,8.0,9.0,0.0,9.090909090909092 -800,8.0,10.0,0.0,4.807692307692308 -800,9.0,5.0,0.0,1.8561002591115965 -800,9.0,8.0,0.0,9.090909090909092 -800,9.0,9.0,13.462042814524237,-41.3837606675224 -800,9.0,16.0,-3.956039125715353,10.317447719844054 -800,9.0,19.0,-1.7848303152666305,3.98535828943083 -800,9.0,20.0,-5.101853820159654,10.98071411292983 -800,9.0,21.0,-2.619319553382597,5.400770303329455 -800,10.0,8.0,0.0,4.807692307692308 -800,10.0,10.0,0.0,-4.807692307692308 -800,11.0,3.0,0.0,4.191255364806866 -800,11.0,11.0,3.478565401119727,-18.326891794934408 -800,11.0,12.0,0.0,7.142857142857143 -800,11.0,13.0,-1.5265676088395577,3.1734252729654173 -800,11.0,15.0,-1.9519977922801688,4.104359379111847 -800,12.0,11.0,0.0,7.142857142857143 -800,12.0,12.0,0.0,-7.142857142857143 -800,13.0,11.0,-1.5265676088395577,3.1734252729654173 -800,13.0,13.0,4.01751987283902,-5.424299332335067 -800,13.0,14.0,-2.4909522639994623,2.250874059369649 -800,14.0,13.0,-2.4909522639994623,2.250874059369649 -800,14.0,14.0,6.270102363308326,-9.9143578677817 -800,14.0,17.0,-1.8108011504072024,3.687418931630696 -800,14.0,22.0,-1.9683489489016612,3.976064876781356 -800,15.0,11.0,-1.9519977922801688,4.104359379111847 -800,15.0,15.0,3.271064728633931,-8.94513365126506 -800,15.0,16.0,-1.3190669363537617,4.8407742721532125 -800,16.0,9.0,-3.956039125715353,10.317447719844054 -800,16.0,15.0,-1.3190669363537617,4.8407742721532125 -800,16.0,16.0,5.275106062069114,-15.158221991997266 -800,17.0,14.0,-1.8108011504072024,3.687418931630696 -800,17.0,17.0,4.886487584415919,-9.906177730909668 -800,17.0,18.0,-3.0756864340087167,6.218758799278971 -800,18.0,17.0,-3.0756864340087167,6.218758799278971 -800,18.0,18.0,8.958039375185187,-17.98346468163191 -800,18.0,19.0,-5.88235294117647,11.76470588235294 -800,19.0,9.0,-1.7848303152666305,3.98535828943083 -800,19.0,18.0,-5.88235294117647,11.76470588235294 -800,19.0,19.0,7.6671832564431,-15.75006417178377 -800,20.0,9.0,-5.101853820159654,10.98071411292983 -800,20.0,20.0,21.876495189895888,-45.10843276170355 -800,20.0,21.0,-16.774641369736234,34.127718648773715 -800,21.0,9.0,-2.619319553382597,5.400770303329455 -800,21.0,20.0,-16.774641369736234,34.127718648773715 -800,21.0,21.0,21.93449907537439,-43.48289181517921 -800,21.0,23.0,-2.5405381522555563,3.95440286307604 -800,22.0,14.0,-1.9683489489016612,3.976064876781356 -800,22.0,22.0,3.429754555384988,-6.965303617315433 -800,22.0,23.0,-1.4614056064833263,2.989238740534077 -800,23.0,21.0,-2.5405381522555563,3.95440286307604 -800,23.0,22.0,-1.4614056064833263,2.989238740534077 -800,23.0,23.0,5.311836702613133,-9.188263657315172 -800,23.0,24.0,-1.3098929438742493,2.287622053705056 -800,24.0,23.0,-1.3098929438742493,2.287622053705056 -800,24.0,24.0,4.495715080321987,-7.864978761969621 -800,24.0,25.0,-1.2165301194494855,1.8171440463475024 -800,24.0,26.0,-1.9692920169982515,3.760212661917064 -800,25.0,24.0,-1.2165301194494855,1.8171440463475024 -800,25.0,25.0,1.2165301194494855,-1.8171440463475024 -800,26.0,24.0,-1.9692920169982515,3.760212661917064 -800,26.0,26.0,3.652281470778589,-9.46044252232512 -800,26.0,27.0,0.0,2.608731947574922 -800,26.0,28.0,-0.99553355095268,1.881005840357816 -800,26.0,29.0,-0.6874559028276572,1.293971494797717 -800,27.0,5.0,-4.362844058012917,15.463571542897856 -800,27.0,7.0,-1.4439790613954469,4.540814658476248 -800,27.0,26.0,0.0,2.608731947574922 -800,27.0,27.0,5.806823119408364,-22.67145722159613 -800,28.0,26.0,-0.99553355095268,1.881005840357816 -800,28.0,28.0,1.9075867579849564,-3.604364401207048 -800,28.0,29.0,-0.9120532070322764,1.7233585608492326 -800,29.0,26.0,-0.6874559028276572,1.293971494797717 -800,29.0,28.0,-0.9120532070322764,1.7233585608492326 -800,29.0,29.0,1.5995091098599337,-3.0173300556469496 -801,0.0,0.0,6.765516048652632,-21.23160167089863 -801,0.0,1.0,-5.224646179885656,15.646726840803398 -801,0.0,2.0,-1.5408698687669766,5.631674830095234 -801,1.0,0.0,-5.224646179885656,15.646726840803398 -801,1.0,1.0,8.046751848825002,-25.46968366441956 -801,1.0,4.0,-1.1359607881738778,4.772479328281356 -801,1.0,5.0,-1.6861448807654689,5.116477495334806 -801,2.0,0.0,-1.5408698687669766,5.631674830095234 -801,2.0,2.0,9.736318911079088,-29.13794745915803 -801,2.0,3.0,-8.19544904231211,23.5308726290628 -801,3.0,2.0,-8.19544904231211,23.5308726290628 -801,3.0,3.0,14.608572772486664,-50.33043130699775 -801,3.0,5.0,-6.413123730174556,22.31120356548123 -801,3.0,11.0,0.0,4.191255364806866 -801,4.0,1.0,-1.1359607881738778,4.772479328281356 -801,4.0,4.0,4.089980824135861,-12.190647245055052 -801,4.0,6.0,-2.954020035961983,7.449267916773697 -801,5.0,1.0,-1.6861448807654689,5.116477495334806 -801,5.0,3.0,-6.413123730174556,22.31120356548123 -801,5.0,5.0,18.75142084505357,-71.81153345505078 -801,5.0,7.0,-6.289308176100628,22.0125786163522 -801,5.0,8.0,0.0,4.915840805411357 -801,5.0,9.0,0.0,1.8561002591115965 -801,5.0,27.0,-4.362844058012917,15.463571542897856 -801,6.0,4.0,-2.954020035961983,7.449267916773697 -801,6.0,6.0,2.954020035961983,-7.439067916773697 -801,7.0,5.0,-6.289308176100628,22.0125786163522 -801,7.0,7.0,7.733287237496075,-26.527493274828448 -801,7.0,27.0,-1.4439790613954469,4.540814658476248 -801,8.0,5.0,0.0,4.915840805411357 -801,8.0,8.0,0.0,-18.706293706293707 -801,8.0,9.0,0.0,9.090909090909092 -801,8.0,10.0,0.0,4.807692307692308 -801,9.0,5.0,0.0,1.8561002591115965 -801,9.0,8.0,0.0,9.090909090909092 -801,9.0,9.0,8.36018899436458,-30.40304655459257 -801,9.0,16.0,-3.956039125715353,10.317447719844054 -801,9.0,19.0,-1.7848303152666305,3.98535828943083 -801,9.0,21.0,-2.619319553382597,5.400770303329455 -801,10.0,8.0,0.0,4.807692307692308 -801,10.0,10.0,0.0,-4.807692307692308 -801,11.0,3.0,0.0,4.191255364806866 -801,11.0,11.0,6.573961583776156,-24.424167659260668 -801,11.0,12.0,0.0,7.142857142857143 -801,11.0,13.0,-1.5265676088395577,3.1734252729654173 -801,11.0,14.0,-3.0953961826564296,6.097275864326261 -801,11.0,15.0,-1.9519977922801688,4.104359379111847 -801,12.0,11.0,0.0,7.142857142857143 -801,12.0,12.0,0.0,-7.142857142857143 -801,13.0,11.0,-1.5265676088395577,3.1734252729654173 -801,13.0,13.0,4.01751987283902,-5.424299332335067 -801,13.0,14.0,-2.4909522639994623,2.250874059369649 -801,14.0,11.0,-3.0953961826564296,6.097275864326261 -801,14.0,13.0,-2.4909522639994623,2.250874059369649 -801,14.0,14.0,9.365498545964757,-16.01163373210796 -801,14.0,17.0,-1.8108011504072024,3.687418931630696 -801,14.0,22.0,-1.9683489489016612,3.976064876781356 -801,15.0,11.0,-1.9519977922801688,4.104359379111847 -801,15.0,15.0,3.271064728633931,-8.94513365126506 -801,15.0,16.0,-1.3190669363537617,4.8407742721532125 -801,16.0,9.0,-3.956039125715353,10.317447719844054 -801,16.0,15.0,-1.3190669363537617,4.8407742721532125 -801,16.0,16.0,5.275106062069114,-15.158221991997266 -801,17.0,14.0,-1.8108011504072024,3.687418931630696 -801,17.0,17.0,4.886487584415919,-9.906177730909668 -801,17.0,18.0,-3.0756864340087167,6.218758799278971 -801,18.0,17.0,-3.0756864340087167,6.218758799278971 -801,18.0,18.0,3.0756864340087167,-6.218758799278971 -801,19.0,9.0,-1.7848303152666305,3.98535828943083 -801,19.0,19.0,1.7848303152666305,-3.98535828943083 -801,20.0,20.0,16.774641369736234,-34.127718648773715 -801,20.0,21.0,-16.774641369736234,34.127718648773715 -801,21.0,9.0,-2.619319553382597,5.400770303329455 -801,21.0,20.0,-16.774641369736234,34.127718648773715 -801,21.0,21.0,19.393960923118836,-39.52848895210317 -801,22.0,14.0,-1.9683489489016612,3.976064876781356 -801,22.0,22.0,3.429754555384988,-6.965303617315433 -801,22.0,23.0,-1.4614056064833263,2.989238740534077 -801,23.0,22.0,-1.4614056064833263,2.989238740534077 -801,23.0,23.0,2.771298550357576,-5.233860794239132 -801,23.0,24.0,-1.3098929438742493,2.287622053705056 -801,24.0,23.0,-1.3098929438742493,2.287622053705056 -801,24.0,24.0,4.495715080321987,-7.864978761969621 -801,24.0,25.0,-1.2165301194494855,1.8171440463475024 -801,24.0,26.0,-1.9692920169982515,3.760212661917064 -801,25.0,24.0,-1.2165301194494855,1.8171440463475024 -801,25.0,25.0,1.2165301194494855,-1.8171440463475024 -801,26.0,24.0,-1.9692920169982515,3.760212661917064 -801,26.0,26.0,3.652281470778589,-9.46044252232512 -801,26.0,27.0,0.0,2.608731947574922 -801,26.0,28.0,-0.99553355095268,1.881005840357816 -801,26.0,29.0,-0.6874559028276572,1.293971494797717 -801,27.0,5.0,-4.362844058012917,15.463571542897856 -801,27.0,7.0,-1.4439790613954469,4.540814658476248 -801,27.0,26.0,0.0,2.608731947574922 -801,27.0,27.0,5.806823119408364,-22.67145722159613 -801,28.0,26.0,-0.99553355095268,1.881005840357816 -801,28.0,28.0,1.9075867579849564,-3.604364401207048 -801,28.0,29.0,-0.9120532070322764,1.7233585608492326 -801,29.0,26.0,-0.6874559028276572,1.293971494797717 -801,29.0,28.0,-0.9120532070322764,1.7233585608492326 -801,29.0,29.0,1.5995091098599337,-3.0173300556469496 -802,0.0,0.0,6.765516048652632,-21.23160167089863 -802,0.0,1.0,-5.224646179885656,15.646726840803398 -802,0.0,2.0,-1.5408698687669766,5.631674830095234 -802,1.0,0.0,-5.224646179885656,15.646726840803398 -802,1.0,1.0,8.61632137735015,-25.897083564394716 -802,1.0,3.0,-1.7055303166990268,5.1973792282565086 -802,1.0,5.0,-1.6861448807654689,5.116477495334806 -802,2.0,0.0,-1.5408698687669766,5.631674830095234 -802,2.0,2.0,9.736318911079088,-29.13794745915803 -802,2.0,3.0,-8.19544904231211,23.5308726290628 -802,3.0,1.0,-1.7055303166990268,5.1973792282565086 -802,3.0,2.0,-8.19544904231211,23.5308726290628 -802,3.0,3.0,16.314103089185693,-55.509410535254254 -802,3.0,5.0,-6.413123730174556,22.31120356548123 -802,3.0,11.0,0.0,4.191255364806866 -802,4.0,4.0,2.954020035961983,-7.439067916773697 -802,4.0,6.0,-2.954020035961983,7.449267916773697 -802,5.0,1.0,-1.6861448807654689,5.116477495334806 -802,5.0,3.0,-6.413123730174556,22.31120356548123 -802,5.0,5.0,22.341631269034565,-82.8291478657789 -802,5.0,6.0,-3.590210423980992,11.02611441072814 -802,5.0,7.0,-6.289308176100628,22.0125786163522 -802,5.0,8.0,0.0,4.915840805411357 -802,5.0,9.0,0.0,1.8561002591115965 -802,5.0,27.0,-4.362844058012917,15.463571542897856 -802,6.0,4.0,-2.954020035961983,7.449267916773697 -802,6.0,5.0,-3.590210423980992,11.02611441072814 -802,6.0,6.0,6.544230459942975,-18.45668232750184 -802,7.0,5.0,-6.289308176100628,22.0125786163522 -802,7.0,7.0,7.733287237496075,-26.527493274828448 -802,7.0,27.0,-1.4439790613954469,4.540814658476248 -802,8.0,5.0,0.0,4.915840805411357 -802,8.0,8.0,0.0,-18.706293706293707 -802,8.0,9.0,0.0,9.090909090909092 -802,8.0,10.0,0.0,4.807692307692308 -802,9.0,5.0,0.0,1.8561002591115965 -802,9.0,8.0,0.0,9.090909090909092 -802,9.0,9.0,13.462042814524237,-41.3837606675224 -802,9.0,16.0,-3.956039125715353,10.317447719844054 -802,9.0,19.0,-1.7848303152666305,3.98535828943083 -802,9.0,20.0,-5.101853820159654,10.98071411292983 -802,9.0,21.0,-2.619319553382597,5.400770303329455 -802,10.0,8.0,0.0,4.807692307692308 -802,10.0,10.0,0.0,-4.807692307692308 -802,11.0,3.0,0.0,4.191255364806866 -802,11.0,11.0,6.573961583776156,-24.424167659260668 -802,11.0,12.0,0.0,7.142857142857143 -802,11.0,13.0,-1.5265676088395577,3.1734252729654173 -802,11.0,14.0,-3.0953961826564296,6.097275864326261 -802,11.0,15.0,-1.9519977922801688,4.104359379111847 -802,12.0,11.0,0.0,7.142857142857143 -802,12.0,12.0,0.0,-7.142857142857143 -802,13.0,11.0,-1.5265676088395577,3.1734252729654173 -802,13.0,13.0,1.5265676088395577,-3.1734252729654173 -802,14.0,11.0,-3.0953961826564296,6.097275864326261 -802,14.0,14.0,6.874546281965293,-13.760759672738311 -802,14.0,17.0,-1.8108011504072024,3.687418931630696 -802,14.0,22.0,-1.9683489489016612,3.976064876781356 -802,15.0,11.0,-1.9519977922801688,4.104359379111847 -802,15.0,15.0,3.271064728633931,-8.94513365126506 -802,15.0,16.0,-1.3190669363537617,4.8407742721532125 -802,16.0,9.0,-3.956039125715353,10.317447719844054 -802,16.0,15.0,-1.3190669363537617,4.8407742721532125 -802,16.0,16.0,5.275106062069114,-15.158221991997266 -802,17.0,14.0,-1.8108011504072024,3.687418931630696 -802,17.0,17.0,4.886487584415919,-9.906177730909668 -802,17.0,18.0,-3.0756864340087167,6.218758799278971 -802,18.0,17.0,-3.0756864340087167,6.218758799278971 -802,18.0,18.0,8.958039375185187,-17.98346468163191 -802,18.0,19.0,-5.88235294117647,11.76470588235294 -802,19.0,9.0,-1.7848303152666305,3.98535828943083 -802,19.0,18.0,-5.88235294117647,11.76470588235294 -802,19.0,19.0,7.6671832564431,-15.75006417178377 -802,20.0,9.0,-5.101853820159654,10.98071411292983 -802,20.0,20.0,21.876495189895888,-45.10843276170355 -802,20.0,21.0,-16.774641369736234,34.127718648773715 -802,21.0,9.0,-2.619319553382597,5.400770303329455 -802,21.0,20.0,-16.774641369736234,34.127718648773715 -802,21.0,21.0,21.93449907537439,-43.48289181517921 -802,21.0,23.0,-2.5405381522555563,3.95440286307604 -802,22.0,14.0,-1.9683489489016612,3.976064876781356 -802,22.0,22.0,3.429754555384988,-6.965303617315433 -802,22.0,23.0,-1.4614056064833263,2.989238740534077 -802,23.0,21.0,-2.5405381522555563,3.95440286307604 -802,23.0,22.0,-1.4614056064833263,2.989238740534077 -802,23.0,23.0,5.311836702613133,-9.188263657315172 -802,23.0,24.0,-1.3098929438742493,2.287622053705056 -802,24.0,23.0,-1.3098929438742493,2.287622053705056 -802,24.0,24.0,4.495715080321987,-7.864978761969621 -802,24.0,25.0,-1.2165301194494855,1.8171440463475024 -802,24.0,26.0,-1.9692920169982515,3.760212661917064 -802,25.0,24.0,-1.2165301194494855,1.8171440463475024 -802,25.0,25.0,1.2165301194494855,-1.8171440463475024 -802,26.0,24.0,-1.9692920169982515,3.760212661917064 -802,26.0,26.0,3.652281470778589,-9.46044252232512 -802,26.0,27.0,0.0,2.608731947574922 -802,26.0,28.0,-0.99553355095268,1.881005840357816 -802,26.0,29.0,-0.6874559028276572,1.293971494797717 -802,27.0,5.0,-4.362844058012917,15.463571542897856 -802,27.0,7.0,-1.4439790613954469,4.540814658476248 -802,27.0,26.0,0.0,2.608731947574922 -802,27.0,27.0,5.806823119408364,-22.67145722159613 -802,28.0,26.0,-0.99553355095268,1.881005840357816 -802,28.0,28.0,1.9075867579849564,-3.604364401207048 -802,28.0,29.0,-0.9120532070322764,1.7233585608492326 -802,29.0,26.0,-0.6874559028276572,1.293971494797717 -802,29.0,28.0,-0.9120532070322764,1.7233585608492326 -802,29.0,29.0,1.5995091098599337,-3.0173300556469496 -803,0.0,0.0,6.765516048652632,-21.23160167089863 -803,0.0,1.0,-5.224646179885656,15.646726840803398 -803,0.0,2.0,-1.5408698687669766,5.631674830095234 -803,1.0,0.0,-5.224646179885656,15.646726840803398 -803,1.0,1.0,9.75228216552403,-30.648662892676068 -803,1.0,3.0,-1.7055303166990268,5.1973792282565086 -803,1.0,4.0,-1.1359607881738778,4.772479328281356 -803,1.0,5.0,-1.6861448807654689,5.116477495334806 -803,2.0,0.0,-1.5408698687669766,5.631674830095234 -803,2.0,2.0,9.736318911079088,-29.13794745915803 -803,2.0,3.0,-8.19544904231211,23.5308726290628 -803,3.0,1.0,-1.7055303166990268,5.1973792282565086 -803,3.0,2.0,-8.19544904231211,23.5308726290628 -803,3.0,3.0,16.314103089185693,-55.509410535254254 -803,3.0,5.0,-6.413123730174556,22.31120356548123 -803,3.0,11.0,0.0,4.191255364806866 -803,4.0,1.0,-1.1359607881738778,4.772479328281356 -803,4.0,4.0,4.089980824135861,-12.190647245055052 -803,4.0,6.0,-2.954020035961983,7.449267916773697 -803,5.0,1.0,-1.6861448807654689,5.116477495334806 -803,5.0,3.0,-6.413123730174556,22.31120356548123 -803,5.0,5.0,22.341631269034565,-80.91366772221689 -803,5.0,6.0,-3.590210423980992,11.02611441072814 -803,5.0,7.0,-6.289308176100628,22.0125786163522 -803,5.0,8.0,0.0,4.915840805411357 -803,5.0,27.0,-4.362844058012917,15.463571542897856 -803,6.0,4.0,-2.954020035961983,7.449267916773697 -803,6.0,5.0,-3.590210423980992,11.02611441072814 -803,6.0,6.0,6.544230459942975,-18.45668232750184 -803,7.0,5.0,-6.289308176100628,22.0125786163522 -803,7.0,7.0,7.733287237496075,-26.527493274828448 -803,7.0,27.0,-1.4439790613954469,4.540814658476248 -803,8.0,5.0,0.0,4.915840805411357 -803,8.0,8.0,0.0,-18.706293706293707 -803,8.0,9.0,0.0,9.090909090909092 -803,8.0,10.0,0.0,4.807692307692308 -803,9.0,8.0,0.0,9.090909090909092 -803,9.0,9.0,13.462042814524237,-39.58519951644326 -803,9.0,16.0,-3.956039125715353,10.317447719844054 -803,9.0,19.0,-1.7848303152666305,3.98535828943083 -803,9.0,20.0,-5.101853820159654,10.98071411292983 -803,9.0,21.0,-2.619319553382597,5.400770303329455 -803,10.0,8.0,0.0,4.807692307692308 -803,10.0,10.0,0.0,-4.807692307692308 -803,11.0,3.0,0.0,4.191255364806866 -803,11.0,11.0,6.573961583776156,-24.424167659260668 -803,11.0,12.0,0.0,7.142857142857143 -803,11.0,13.0,-1.5265676088395577,3.1734252729654173 -803,11.0,14.0,-3.0953961826564296,6.097275864326261 -803,11.0,15.0,-1.9519977922801688,4.104359379111847 -803,12.0,11.0,0.0,7.142857142857143 -803,12.0,12.0,0.0,-7.142857142857143 -803,13.0,11.0,-1.5265676088395577,3.1734252729654173 -803,13.0,13.0,4.01751987283902,-5.424299332335067 -803,13.0,14.0,-2.4909522639994623,2.250874059369649 -803,14.0,11.0,-3.0953961826564296,6.097275864326261 -803,14.0,13.0,-2.4909522639994623,2.250874059369649 -803,14.0,14.0,9.365498545964757,-16.01163373210796 -803,14.0,17.0,-1.8108011504072024,3.687418931630696 -803,14.0,22.0,-1.9683489489016612,3.976064876781356 -803,15.0,11.0,-1.9519977922801688,4.104359379111847 -803,15.0,15.0,3.271064728633931,-8.94513365126506 -803,15.0,16.0,-1.3190669363537617,4.8407742721532125 -803,16.0,9.0,-3.956039125715353,10.317447719844054 -803,16.0,15.0,-1.3190669363537617,4.8407742721532125 -803,16.0,16.0,5.275106062069114,-15.158221991997266 -803,17.0,14.0,-1.8108011504072024,3.687418931630696 -803,17.0,17.0,4.886487584415919,-9.906177730909668 -803,17.0,18.0,-3.0756864340087167,6.218758799278971 -803,18.0,17.0,-3.0756864340087167,6.218758799278971 -803,18.0,18.0,8.958039375185187,-17.98346468163191 -803,18.0,19.0,-5.88235294117647,11.76470588235294 -803,19.0,9.0,-1.7848303152666305,3.98535828943083 -803,19.0,18.0,-5.88235294117647,11.76470588235294 -803,19.0,19.0,7.6671832564431,-15.75006417178377 -803,20.0,9.0,-5.101853820159654,10.98071411292983 -803,20.0,20.0,21.876495189895888,-45.10843276170355 -803,20.0,21.0,-16.774641369736234,34.127718648773715 -803,21.0,9.0,-2.619319553382597,5.400770303329455 -803,21.0,20.0,-16.774641369736234,34.127718648773715 -803,21.0,21.0,21.93449907537439,-43.48289181517921 -803,21.0,23.0,-2.5405381522555563,3.95440286307604 -803,22.0,14.0,-1.9683489489016612,3.976064876781356 -803,22.0,22.0,3.429754555384988,-6.965303617315433 -803,22.0,23.0,-1.4614056064833263,2.989238740534077 -803,23.0,21.0,-2.5405381522555563,3.95440286307604 -803,23.0,22.0,-1.4614056064833263,2.989238740534077 -803,23.0,23.0,5.311836702613133,-9.188263657315172 -803,23.0,24.0,-1.3098929438742493,2.287622053705056 -803,24.0,23.0,-1.3098929438742493,2.287622053705056 -803,24.0,24.0,4.495715080321987,-7.864978761969621 -803,24.0,25.0,-1.2165301194494855,1.8171440463475024 -803,24.0,26.0,-1.9692920169982515,3.760212661917064 -803,25.0,24.0,-1.2165301194494855,1.8171440463475024 -803,25.0,25.0,1.2165301194494855,-1.8171440463475024 -803,26.0,24.0,-1.9692920169982515,3.760212661917064 -803,26.0,26.0,3.652281470778589,-9.46044252232512 -803,26.0,27.0,0.0,2.608731947574922 -803,26.0,28.0,-0.99553355095268,1.881005840357816 -803,26.0,29.0,-0.6874559028276572,1.293971494797717 -803,27.0,5.0,-4.362844058012917,15.463571542897856 -803,27.0,7.0,-1.4439790613954469,4.540814658476248 -803,27.0,26.0,0.0,2.608731947574922 -803,27.0,27.0,5.806823119408364,-22.67145722159613 -803,28.0,26.0,-0.99553355095268,1.881005840357816 -803,28.0,28.0,1.9075867579849564,-3.604364401207048 -803,28.0,29.0,-0.9120532070322764,1.7233585608492326 -803,29.0,26.0,-0.6874559028276572,1.293971494797717 -803,29.0,28.0,-0.9120532070322764,1.7233585608492326 -803,29.0,29.0,1.5995091098599337,-3.0173300556469496 -804,0.0,0.0,6.765516048652632,-21.23160167089863 -804,0.0,1.0,-5.224646179885656,15.646726840803398 -804,0.0,2.0,-1.5408698687669766,5.631674830095234 -804,1.0,0.0,-5.224646179885656,15.646726840803398 -804,1.0,1.0,9.75228216552403,-30.648662892676068 -804,1.0,3.0,-1.7055303166990268,5.1973792282565086 -804,1.0,4.0,-1.1359607881738778,4.772479328281356 -804,1.0,5.0,-1.6861448807654689,5.116477495334806 -804,2.0,0.0,-1.5408698687669766,5.631674830095234 -804,2.0,2.0,9.736318911079088,-29.13794745915803 -804,2.0,3.0,-8.19544904231211,23.5308726290628 -804,3.0,1.0,-1.7055303166990268,5.1973792282565086 -804,3.0,2.0,-8.19544904231211,23.5308726290628 -804,3.0,3.0,9.900979359011137,-33.202706969773025 -804,3.0,11.0,0.0,4.191255364806866 -804,4.0,1.0,-1.1359607881738778,4.772479328281356 -804,4.0,4.0,4.089980824135861,-12.190647245055052 -804,4.0,6.0,-2.954020035961983,7.449267916773697 -804,5.0,1.0,-1.6861448807654689,5.116477495334806 -804,5.0,5.0,15.928507538860009,-60.52244430029767 -804,5.0,6.0,-3.590210423980992,11.02611441072814 -804,5.0,7.0,-6.289308176100628,22.0125786163522 -804,5.0,8.0,0.0,4.915840805411357 -804,5.0,9.0,0.0,1.8561002591115965 -804,5.0,27.0,-4.362844058012917,15.463571542897856 -804,6.0,4.0,-2.954020035961983,7.449267916773697 -804,6.0,5.0,-3.590210423980992,11.02611441072814 -804,6.0,6.0,6.544230459942975,-18.45668232750184 -804,7.0,5.0,-6.289308176100628,22.0125786163522 -804,7.0,7.0,7.733287237496075,-26.527493274828448 -804,7.0,27.0,-1.4439790613954469,4.540814658476248 -804,8.0,5.0,0.0,4.915840805411357 -804,8.0,8.0,0.0,-18.706293706293707 -804,8.0,9.0,0.0,9.090909090909092 -804,8.0,10.0,0.0,4.807692307692308 -804,9.0,5.0,0.0,1.8561002591115965 -804,9.0,8.0,0.0,9.090909090909092 -804,9.0,9.0,13.462042814524237,-41.3837606675224 -804,9.0,16.0,-3.956039125715353,10.317447719844054 -804,9.0,19.0,-1.7848303152666305,3.98535828943083 -804,9.0,20.0,-5.101853820159654,10.98071411292983 -804,9.0,21.0,-2.619319553382597,5.400770303329455 -804,10.0,8.0,0.0,4.807692307692308 -804,10.0,10.0,0.0,-4.807692307692308 -804,11.0,3.0,0.0,4.191255364806866 -804,11.0,11.0,6.573961583776156,-24.424167659260668 -804,11.0,12.0,0.0,7.142857142857143 -804,11.0,13.0,-1.5265676088395577,3.1734252729654173 -804,11.0,14.0,-3.0953961826564296,6.097275864326261 -804,11.0,15.0,-1.9519977922801688,4.104359379111847 -804,12.0,11.0,0.0,7.142857142857143 -804,12.0,12.0,0.0,-7.142857142857143 -804,13.0,11.0,-1.5265676088395577,3.1734252729654173 -804,13.0,13.0,1.5265676088395577,-3.1734252729654173 -804,14.0,11.0,-3.0953961826564296,6.097275864326261 -804,14.0,14.0,6.874546281965293,-13.760759672738311 -804,14.0,17.0,-1.8108011504072024,3.687418931630696 -804,14.0,22.0,-1.9683489489016612,3.976064876781356 -804,15.0,11.0,-1.9519977922801688,4.104359379111847 -804,15.0,15.0,3.271064728633931,-8.94513365126506 -804,15.0,16.0,-1.3190669363537617,4.8407742721532125 -804,16.0,9.0,-3.956039125715353,10.317447719844054 -804,16.0,15.0,-1.3190669363537617,4.8407742721532125 -804,16.0,16.0,5.275106062069114,-15.158221991997266 -804,17.0,14.0,-1.8108011504072024,3.687418931630696 -804,17.0,17.0,1.8108011504072024,-3.687418931630696 -804,18.0,18.0,5.88235294117647,-11.76470588235294 -804,18.0,19.0,-5.88235294117647,11.76470588235294 -804,19.0,9.0,-1.7848303152666305,3.98535828943083 -804,19.0,18.0,-5.88235294117647,11.76470588235294 -804,19.0,19.0,7.6671832564431,-15.75006417178377 -804,20.0,9.0,-5.101853820159654,10.98071411292983 -804,20.0,20.0,21.876495189895888,-45.10843276170355 -804,20.0,21.0,-16.774641369736234,34.127718648773715 -804,21.0,9.0,-2.619319553382597,5.400770303329455 -804,21.0,20.0,-16.774641369736234,34.127718648773715 -804,21.0,21.0,21.93449907537439,-43.48289181517921 -804,21.0,23.0,-2.5405381522555563,3.95440286307604 -804,22.0,14.0,-1.9683489489016612,3.976064876781356 -804,22.0,22.0,3.429754555384988,-6.965303617315433 -804,22.0,23.0,-1.4614056064833263,2.989238740534077 -804,23.0,21.0,-2.5405381522555563,3.95440286307604 -804,23.0,22.0,-1.4614056064833263,2.989238740534077 -804,23.0,23.0,5.311836702613133,-9.188263657315172 -804,23.0,24.0,-1.3098929438742493,2.287622053705056 -804,24.0,23.0,-1.3098929438742493,2.287622053705056 -804,24.0,24.0,4.495715080321987,-7.864978761969621 -804,24.0,25.0,-1.2165301194494855,1.8171440463475024 -804,24.0,26.0,-1.9692920169982515,3.760212661917064 -804,25.0,24.0,-1.2165301194494855,1.8171440463475024 -804,25.0,25.0,1.2165301194494855,-1.8171440463475024 -804,26.0,24.0,-1.9692920169982515,3.760212661917064 -804,26.0,26.0,3.652281470778589,-9.46044252232512 -804,26.0,27.0,0.0,2.608731947574922 -804,26.0,28.0,-0.99553355095268,1.881005840357816 -804,26.0,29.0,-0.6874559028276572,1.293971494797717 -804,27.0,5.0,-4.362844058012917,15.463571542897856 -804,27.0,7.0,-1.4439790613954469,4.540814658476248 -804,27.0,26.0,0.0,2.608731947574922 -804,27.0,27.0,5.806823119408364,-22.67145722159613 -804,28.0,26.0,-0.99553355095268,1.881005840357816 -804,28.0,28.0,1.9075867579849564,-3.604364401207048 -804,28.0,29.0,-0.9120532070322764,1.7233585608492326 -804,29.0,26.0,-0.6874559028276572,1.293971494797717 -804,29.0,28.0,-0.9120532070322764,1.7233585608492326 -804,29.0,29.0,1.5995091098599337,-3.0173300556469496 -805,0.0,0.0,6.765516048652632,-21.23160167089863 -805,0.0,1.0,-5.224646179885656,15.646726840803398 -805,0.0,2.0,-1.5408698687669766,5.631674830095234 -805,1.0,0.0,-5.224646179885656,15.646726840803398 -805,1.0,1.0,8.046751848825002,-25.46968366441956 -805,1.0,4.0,-1.1359607881738778,4.772479328281356 -805,1.0,5.0,-1.6861448807654689,5.116477495334806 -805,2.0,0.0,-1.5408698687669766,5.631674830095234 -805,2.0,2.0,9.736318911079088,-29.13794745915803 -805,2.0,3.0,-8.19544904231211,23.5308726290628 -805,3.0,2.0,-8.19544904231211,23.5308726290628 -805,3.0,3.0,14.608572772486664,-50.33043130699775 -805,3.0,5.0,-6.413123730174556,22.31120356548123 -805,3.0,11.0,0.0,4.191255364806866 -805,4.0,1.0,-1.1359607881738778,4.772479328281356 -805,4.0,4.0,4.089980824135861,-12.190647245055052 -805,4.0,6.0,-2.954020035961983,7.449267916773697 -805,5.0,1.0,-1.6861448807654689,5.116477495334806 -805,5.0,3.0,-6.413123730174556,22.31120356548123 -805,5.0,5.0,22.341631269034565,-82.8291478657789 -805,5.0,6.0,-3.590210423980992,11.02611441072814 -805,5.0,7.0,-6.289308176100628,22.0125786163522 -805,5.0,8.0,0.0,4.915840805411357 -805,5.0,9.0,0.0,1.8561002591115965 -805,5.0,27.0,-4.362844058012917,15.463571542897856 -805,6.0,4.0,-2.954020035961983,7.449267916773697 -805,6.0,5.0,-3.590210423980992,11.02611441072814 -805,6.0,6.0,6.544230459942975,-18.45668232750184 -805,7.0,5.0,-6.289308176100628,22.0125786163522 -805,7.0,7.0,7.733287237496075,-26.527493274828448 -805,7.0,27.0,-1.4439790613954469,4.540814658476248 -805,8.0,5.0,0.0,4.915840805411357 -805,8.0,8.0,0.0,-18.706293706293707 -805,8.0,9.0,0.0,9.090909090909092 -805,8.0,10.0,0.0,4.807692307692308 -805,9.0,5.0,0.0,1.8561002591115965 -805,9.0,8.0,0.0,9.090909090909092 -805,9.0,9.0,13.462042814524237,-41.3837606675224 -805,9.0,16.0,-3.956039125715353,10.317447719844054 -805,9.0,19.0,-1.7848303152666305,3.98535828943083 -805,9.0,20.0,-5.101853820159654,10.98071411292983 -805,9.0,21.0,-2.619319553382597,5.400770303329455 -805,10.0,8.0,0.0,4.807692307692308 -805,10.0,10.0,0.0,-4.807692307692308 -805,11.0,3.0,0.0,4.191255364806866 -805,11.0,11.0,3.478565401119727,-18.326891794934408 -805,11.0,12.0,0.0,7.142857142857143 -805,11.0,13.0,-1.5265676088395577,3.1734252729654173 -805,11.0,15.0,-1.9519977922801688,4.104359379111847 -805,12.0,11.0,0.0,7.142857142857143 -805,12.0,12.0,0.0,-7.142857142857143 -805,13.0,11.0,-1.5265676088395577,3.1734252729654173 -805,13.0,13.0,4.01751987283902,-5.424299332335067 -805,13.0,14.0,-2.4909522639994623,2.250874059369649 -805,14.0,13.0,-2.4909522639994623,2.250874059369649 -805,14.0,14.0,6.270102363308326,-9.9143578677817 -805,14.0,17.0,-1.8108011504072024,3.687418931630696 -805,14.0,22.0,-1.9683489489016612,3.976064876781356 -805,15.0,11.0,-1.9519977922801688,4.104359379111847 -805,15.0,15.0,3.271064728633931,-8.94513365126506 -805,15.0,16.0,-1.3190669363537617,4.8407742721532125 -805,16.0,9.0,-3.956039125715353,10.317447719844054 -805,16.0,15.0,-1.3190669363537617,4.8407742721532125 -805,16.0,16.0,5.275106062069114,-15.158221991997266 -805,17.0,14.0,-1.8108011504072024,3.687418931630696 -805,17.0,17.0,4.886487584415919,-9.906177730909668 -805,17.0,18.0,-3.0756864340087167,6.218758799278971 -805,18.0,17.0,-3.0756864340087167,6.218758799278971 -805,18.0,18.0,8.958039375185187,-17.98346468163191 -805,18.0,19.0,-5.88235294117647,11.76470588235294 -805,19.0,9.0,-1.7848303152666305,3.98535828943083 -805,19.0,18.0,-5.88235294117647,11.76470588235294 -805,19.0,19.0,7.6671832564431,-15.75006417178377 -805,20.0,9.0,-5.101853820159654,10.98071411292983 -805,20.0,20.0,21.876495189895888,-45.10843276170355 -805,20.0,21.0,-16.774641369736234,34.127718648773715 -805,21.0,9.0,-2.619319553382597,5.400770303329455 -805,21.0,20.0,-16.774641369736234,34.127718648773715 -805,21.0,21.0,21.93449907537439,-43.48289181517921 -805,21.0,23.0,-2.5405381522555563,3.95440286307604 -805,22.0,14.0,-1.9683489489016612,3.976064876781356 -805,22.0,22.0,3.429754555384988,-6.965303617315433 -805,22.0,23.0,-1.4614056064833263,2.989238740534077 -805,23.0,21.0,-2.5405381522555563,3.95440286307604 -805,23.0,22.0,-1.4614056064833263,2.989238740534077 -805,23.0,23.0,5.311836702613133,-9.188263657315172 -805,23.0,24.0,-1.3098929438742493,2.287622053705056 -805,24.0,23.0,-1.3098929438742493,2.287622053705056 -805,24.0,24.0,4.495715080321987,-7.864978761969621 -805,24.0,25.0,-1.2165301194494855,1.8171440463475024 -805,24.0,26.0,-1.9692920169982515,3.760212661917064 -805,25.0,24.0,-1.2165301194494855,1.8171440463475024 -805,25.0,25.0,1.2165301194494855,-1.8171440463475024 -805,26.0,24.0,-1.9692920169982515,3.760212661917064 -805,26.0,26.0,3.652281470778589,-9.46044252232512 -805,26.0,27.0,0.0,2.608731947574922 -805,26.0,28.0,-0.99553355095268,1.881005840357816 -805,26.0,29.0,-0.6874559028276572,1.293971494797717 -805,27.0,5.0,-4.362844058012917,15.463571542897856 -805,27.0,7.0,-1.4439790613954469,4.540814658476248 -805,27.0,26.0,0.0,2.608731947574922 -805,27.0,27.0,5.806823119408364,-22.67145722159613 -805,28.0,26.0,-0.99553355095268,1.881005840357816 -805,28.0,28.0,1.9075867579849564,-3.604364401207048 -805,28.0,29.0,-0.9120532070322764,1.7233585608492326 -805,29.0,26.0,-0.6874559028276572,1.293971494797717 -805,29.0,28.0,-0.9120532070322764,1.7233585608492326 -805,29.0,29.0,1.5995091098599337,-3.0173300556469496 -806,0.0,0.0,6.765516048652632,-21.23160167089863 -806,0.0,1.0,-5.224646179885656,15.646726840803398 -806,0.0,2.0,-1.5408698687669766,5.631674830095234 -806,1.0,0.0,-5.224646179885656,15.646726840803398 -806,1.0,1.0,9.75228216552403,-30.648662892676068 -806,1.0,3.0,-1.7055303166990268,5.1973792282565086 -806,1.0,4.0,-1.1359607881738778,4.772479328281356 -806,1.0,5.0,-1.6861448807654689,5.116477495334806 -806,2.0,0.0,-1.5408698687669766,5.631674830095234 -806,2.0,2.0,9.736318911079088,-29.13794745915803 -806,2.0,3.0,-8.19544904231211,23.5308726290628 -806,3.0,1.0,-1.7055303166990268,5.1973792282565086 -806,3.0,2.0,-8.19544904231211,23.5308726290628 -806,3.0,3.0,16.314103089185693,-55.509410535254254 -806,3.0,5.0,-6.413123730174556,22.31120356548123 -806,3.0,11.0,0.0,4.191255364806866 -806,4.0,1.0,-1.1359607881738778,4.772479328281356 -806,4.0,4.0,4.089980824135861,-12.190647245055052 -806,4.0,6.0,-2.954020035961983,7.449267916773697 -806,5.0,1.0,-1.6861448807654689,5.116477495334806 -806,5.0,3.0,-6.413123730174556,22.31120356548123 -806,5.0,5.0,22.341631269034565,-82.8291478657789 -806,5.0,6.0,-3.590210423980992,11.02611441072814 -806,5.0,7.0,-6.289308176100628,22.0125786163522 -806,5.0,8.0,0.0,4.915840805411357 -806,5.0,9.0,0.0,1.8561002591115965 -806,5.0,27.0,-4.362844058012917,15.463571542897856 -806,6.0,4.0,-2.954020035961983,7.449267916773697 -806,6.0,5.0,-3.590210423980992,11.02611441072814 -806,6.0,6.0,6.544230459942975,-18.45668232750184 -806,7.0,5.0,-6.289308176100628,22.0125786163522 -806,7.0,7.0,7.733287237496075,-26.527493274828448 -806,7.0,27.0,-1.4439790613954469,4.540814658476248 -806,8.0,5.0,0.0,4.915840805411357 -806,8.0,8.0,0.0,-18.706293706293707 -806,8.0,9.0,0.0,9.090909090909092 -806,8.0,10.0,0.0,4.807692307692308 -806,9.0,5.0,0.0,1.8561002591115965 -806,9.0,8.0,0.0,9.090909090909092 -806,9.0,9.0,13.462042814524237,-41.3837606675224 -806,9.0,16.0,-3.956039125715353,10.317447719844054 -806,9.0,19.0,-1.7848303152666305,3.98535828943083 -806,9.0,20.0,-5.101853820159654,10.98071411292983 -806,9.0,21.0,-2.619319553382597,5.400770303329455 -806,10.0,8.0,0.0,4.807692307692308 -806,10.0,10.0,0.0,-4.807692307692308 -806,11.0,3.0,0.0,4.191255364806866 -806,11.0,11.0,6.573961583776156,-24.424167659260668 -806,11.0,12.0,0.0,7.142857142857143 -806,11.0,13.0,-1.5265676088395577,3.1734252729654173 -806,11.0,14.0,-3.0953961826564296,6.097275864326261 -806,11.0,15.0,-1.9519977922801688,4.104359379111847 -806,12.0,11.0,0.0,7.142857142857143 -806,12.0,12.0,0.0,-7.142857142857143 -806,13.0,11.0,-1.5265676088395577,3.1734252729654173 -806,13.0,13.0,4.01751987283902,-5.424299332335067 -806,13.0,14.0,-2.4909522639994623,2.250874059369649 -806,14.0,11.0,-3.0953961826564296,6.097275864326261 -806,14.0,13.0,-2.4909522639994623,2.250874059369649 -806,14.0,14.0,9.365498545964757,-16.01163373210796 -806,14.0,17.0,-1.8108011504072024,3.687418931630696 -806,14.0,22.0,-1.9683489489016612,3.976064876781356 -806,15.0,11.0,-1.9519977922801688,4.104359379111847 -806,15.0,15.0,3.271064728633931,-8.94513365126506 -806,15.0,16.0,-1.3190669363537617,4.8407742721532125 -806,16.0,9.0,-3.956039125715353,10.317447719844054 -806,16.0,15.0,-1.3190669363537617,4.8407742721532125 -806,16.0,16.0,5.275106062069114,-15.158221991997266 -806,17.0,14.0,-1.8108011504072024,3.687418931630696 -806,17.0,17.0,4.886487584415919,-9.906177730909668 -806,17.0,18.0,-3.0756864340087167,6.218758799278971 -806,18.0,17.0,-3.0756864340087167,6.218758799278971 -806,18.0,18.0,8.958039375185187,-17.98346468163191 -806,18.0,19.0,-5.88235294117647,11.76470588235294 -806,19.0,9.0,-1.7848303152666305,3.98535828943083 -806,19.0,18.0,-5.88235294117647,11.76470588235294 -806,19.0,19.0,7.6671832564431,-15.75006417178377 -806,20.0,9.0,-5.101853820159654,10.98071411292983 -806,20.0,20.0,21.876495189895888,-45.10843276170355 -806,20.0,21.0,-16.774641369736234,34.127718648773715 -806,21.0,9.0,-2.619319553382597,5.400770303329455 -806,21.0,20.0,-16.774641369736234,34.127718648773715 -806,21.0,21.0,21.93449907537439,-43.48289181517921 -806,21.0,23.0,-2.5405381522555563,3.95440286307604 -806,22.0,14.0,-1.9683489489016612,3.976064876781356 -806,22.0,22.0,3.429754555384988,-6.965303617315433 -806,22.0,23.0,-1.4614056064833263,2.989238740534077 -806,23.0,21.0,-2.5405381522555563,3.95440286307604 -806,23.0,22.0,-1.4614056064833263,2.989238740534077 -806,23.0,23.0,5.311836702613133,-9.188263657315172 -806,23.0,24.0,-1.3098929438742493,2.287622053705056 -806,24.0,23.0,-1.3098929438742493,2.287622053705056 -806,24.0,24.0,4.495715080321987,-7.864978761969621 -806,24.0,25.0,-1.2165301194494855,1.8171440463475024 -806,24.0,26.0,-1.9692920169982515,3.760212661917064 -806,25.0,24.0,-1.2165301194494855,1.8171440463475024 -806,25.0,25.0,1.2165301194494855,-1.8171440463475024 -806,26.0,24.0,-1.9692920169982515,3.760212661917064 -806,26.0,26.0,3.652281470778589,-9.46044252232512 -806,26.0,27.0,0.0,2.608731947574922 -806,26.0,28.0,-0.99553355095268,1.881005840357816 -806,26.0,29.0,-0.6874559028276572,1.293971494797717 -806,27.0,5.0,-4.362844058012917,15.463571542897856 -806,27.0,7.0,-1.4439790613954469,4.540814658476248 -806,27.0,26.0,0.0,2.608731947574922 -806,27.0,27.0,5.806823119408364,-22.67145722159613 -806,28.0,26.0,-0.99553355095268,1.881005840357816 -806,28.0,28.0,1.9075867579849564,-3.604364401207048 -806,28.0,29.0,-0.9120532070322764,1.7233585608492326 -806,29.0,26.0,-0.6874559028276572,1.293971494797717 -806,29.0,28.0,-0.9120532070322764,1.7233585608492326 -806,29.0,29.0,1.5995091098599337,-3.0173300556469496 -807,0.0,0.0,6.765516048652632,-21.23160167089863 -807,0.0,1.0,-5.224646179885656,15.646726840803398 -807,0.0,2.0,-1.5408698687669766,5.631674830095234 -807,1.0,0.0,-5.224646179885656,15.646726840803398 -807,1.0,1.0,9.75228216552403,-30.648662892676068 -807,1.0,3.0,-1.7055303166990268,5.1973792282565086 -807,1.0,4.0,-1.1359607881738778,4.772479328281356 -807,1.0,5.0,-1.6861448807654689,5.116477495334806 -807,2.0,0.0,-1.5408698687669766,5.631674830095234 -807,2.0,2.0,9.736318911079088,-29.13794745915803 -807,2.0,3.0,-8.19544904231211,23.5308726290628 -807,3.0,1.0,-1.7055303166990268,5.1973792282565086 -807,3.0,2.0,-8.19544904231211,23.5308726290628 -807,3.0,3.0,16.314103089185693,-55.509410535254254 -807,3.0,5.0,-6.413123730174556,22.31120356548123 -807,3.0,11.0,0.0,4.191255364806866 -807,4.0,1.0,-1.1359607881738778,4.772479328281356 -807,4.0,4.0,4.089980824135861,-12.190647245055052 -807,4.0,6.0,-2.954020035961983,7.449267916773697 -807,5.0,1.0,-1.6861448807654689,5.116477495334806 -807,5.0,3.0,-6.413123730174556,22.31120356548123 -807,5.0,5.0,22.341631269034565,-82.8291478657789 -807,5.0,6.0,-3.590210423980992,11.02611441072814 -807,5.0,7.0,-6.289308176100628,22.0125786163522 -807,5.0,8.0,0.0,4.915840805411357 -807,5.0,9.0,0.0,1.8561002591115965 -807,5.0,27.0,-4.362844058012917,15.463571542897856 -807,6.0,4.0,-2.954020035961983,7.449267916773697 -807,6.0,5.0,-3.590210423980992,11.02611441072814 -807,6.0,6.0,6.544230459942975,-18.45668232750184 -807,7.0,5.0,-6.289308176100628,22.0125786163522 -807,7.0,7.0,7.733287237496075,-26.527493274828448 -807,7.0,27.0,-1.4439790613954469,4.540814658476248 -807,8.0,5.0,0.0,4.915840805411357 -807,8.0,8.0,0.0,-18.706293706293707 -807,8.0,9.0,0.0,9.090909090909092 -807,8.0,10.0,0.0,4.807692307692308 -807,9.0,5.0,0.0,1.8561002591115965 -807,9.0,8.0,0.0,9.090909090909092 -807,9.0,9.0,13.462042814524237,-41.3837606675224 -807,9.0,16.0,-3.956039125715353,10.317447719844054 -807,9.0,19.0,-1.7848303152666305,3.98535828943083 -807,9.0,20.0,-5.101853820159654,10.98071411292983 -807,9.0,21.0,-2.619319553382597,5.400770303329455 -807,10.0,8.0,0.0,4.807692307692308 -807,10.0,10.0,0.0,-4.807692307692308 -807,11.0,3.0,0.0,4.191255364806866 -807,11.0,11.0,4.621963791495987,-20.31980828014882 -807,11.0,12.0,0.0,7.142857142857143 -807,11.0,13.0,-1.5265676088395577,3.1734252729654173 -807,11.0,14.0,-3.0953961826564296,6.097275864326261 -807,12.0,11.0,0.0,7.142857142857143 -807,12.0,12.0,0.0,-7.142857142857143 -807,13.0,11.0,-1.5265676088395577,3.1734252729654173 -807,13.0,13.0,4.01751987283902,-5.424299332335067 -807,13.0,14.0,-2.4909522639994623,2.250874059369649 -807,14.0,11.0,-3.0953961826564296,6.097275864326261 -807,14.0,13.0,-2.4909522639994623,2.250874059369649 -807,14.0,14.0,9.365498545964757,-16.01163373210796 -807,14.0,17.0,-1.8108011504072024,3.687418931630696 -807,14.0,22.0,-1.9683489489016612,3.976064876781356 -807,15.0,15.0,1.3190669363537617,-4.8407742721532125 -807,15.0,16.0,-1.3190669363537617,4.8407742721532125 -807,16.0,9.0,-3.956039125715353,10.317447719844054 -807,16.0,15.0,-1.3190669363537617,4.8407742721532125 -807,16.0,16.0,5.275106062069114,-15.158221991997266 -807,17.0,14.0,-1.8108011504072024,3.687418931630696 -807,17.0,17.0,4.886487584415919,-9.906177730909668 -807,17.0,18.0,-3.0756864340087167,6.218758799278971 -807,18.0,17.0,-3.0756864340087167,6.218758799278971 -807,18.0,18.0,3.0756864340087167,-6.218758799278971 -807,19.0,9.0,-1.7848303152666305,3.98535828943083 -807,19.0,19.0,1.7848303152666305,-3.98535828943083 -807,20.0,9.0,-5.101853820159654,10.98071411292983 -807,20.0,20.0,21.876495189895888,-45.10843276170355 -807,20.0,21.0,-16.774641369736234,34.127718648773715 -807,21.0,9.0,-2.619319553382597,5.400770303329455 -807,21.0,20.0,-16.774641369736234,34.127718648773715 -807,21.0,21.0,21.93449907537439,-43.48289181517921 -807,21.0,23.0,-2.5405381522555563,3.95440286307604 -807,22.0,14.0,-1.9683489489016612,3.976064876781356 -807,22.0,22.0,3.429754555384988,-6.965303617315433 -807,22.0,23.0,-1.4614056064833263,2.989238740534077 -807,23.0,21.0,-2.5405381522555563,3.95440286307604 -807,23.0,22.0,-1.4614056064833263,2.989238740534077 -807,23.0,23.0,5.311836702613133,-9.188263657315172 -807,23.0,24.0,-1.3098929438742493,2.287622053705056 -807,24.0,23.0,-1.3098929438742493,2.287622053705056 -807,24.0,24.0,4.495715080321987,-7.864978761969621 -807,24.0,25.0,-1.2165301194494855,1.8171440463475024 -807,24.0,26.0,-1.9692920169982515,3.760212661917064 -807,25.0,24.0,-1.2165301194494855,1.8171440463475024 -807,25.0,25.0,1.2165301194494855,-1.8171440463475024 -807,26.0,24.0,-1.9692920169982515,3.760212661917064 -807,26.0,26.0,3.652281470778589,-9.46044252232512 -807,26.0,27.0,0.0,2.608731947574922 -807,26.0,28.0,-0.99553355095268,1.881005840357816 -807,26.0,29.0,-0.6874559028276572,1.293971494797717 -807,27.0,5.0,-4.362844058012917,15.463571542897856 -807,27.0,7.0,-1.4439790613954469,4.540814658476248 -807,27.0,26.0,0.0,2.608731947574922 -807,27.0,27.0,5.806823119408364,-22.67145722159613 -807,28.0,26.0,-0.99553355095268,1.881005840357816 -807,28.0,28.0,1.9075867579849564,-3.604364401207048 -807,28.0,29.0,-0.9120532070322764,1.7233585608492326 -807,29.0,26.0,-0.6874559028276572,1.293971494797717 -807,29.0,28.0,-0.9120532070322764,1.7233585608492326 -807,29.0,29.0,1.5995091098599337,-3.0173300556469496 -808,0.0,0.0,6.765516048652632,-21.23160167089863 -808,0.0,1.0,-5.224646179885656,15.646726840803398 -808,0.0,2.0,-1.5408698687669766,5.631674830095234 -808,1.0,0.0,-5.224646179885656,15.646726840803398 -808,1.0,1.0,9.75228216552403,-30.648662892676068 -808,1.0,3.0,-1.7055303166990268,5.1973792282565086 -808,1.0,4.0,-1.1359607881738778,4.772479328281356 -808,1.0,5.0,-1.6861448807654689,5.116477495334806 -808,2.0,0.0,-1.5408698687669766,5.631674830095234 -808,2.0,2.0,9.736318911079088,-29.13794745915803 -808,2.0,3.0,-8.19544904231211,23.5308726290628 -808,3.0,1.0,-1.7055303166990268,5.1973792282565086 -808,3.0,2.0,-8.19544904231211,23.5308726290628 -808,3.0,3.0,16.314103089185693,-55.509410535254254 -808,3.0,5.0,-6.413123730174556,22.31120356548123 -808,3.0,11.0,0.0,4.191255364806866 -808,4.0,1.0,-1.1359607881738778,4.772479328281356 -808,4.0,4.0,4.089980824135861,-12.190647245055052 -808,4.0,6.0,-2.954020035961983,7.449267916773697 -808,5.0,1.0,-1.6861448807654689,5.116477495334806 -808,5.0,3.0,-6.413123730174556,22.31120356548123 -808,5.0,5.0,22.341631269034565,-82.8291478657789 -808,5.0,6.0,-3.590210423980992,11.02611441072814 -808,5.0,7.0,-6.289308176100628,22.0125786163522 -808,5.0,8.0,0.0,4.915840805411357 -808,5.0,9.0,0.0,1.8561002591115965 -808,5.0,27.0,-4.362844058012917,15.463571542897856 -808,6.0,4.0,-2.954020035961983,7.449267916773697 -808,6.0,5.0,-3.590210423980992,11.02611441072814 -808,6.0,6.0,6.544230459942975,-18.45668232750184 -808,7.0,5.0,-6.289308176100628,22.0125786163522 -808,7.0,7.0,7.733287237496075,-26.527493274828448 -808,7.0,27.0,-1.4439790613954469,4.540814658476248 -808,8.0,5.0,0.0,4.915840805411357 -808,8.0,8.0,0.0,-18.706293706293707 -808,8.0,9.0,0.0,9.090909090909092 -808,8.0,10.0,0.0,4.807692307692308 -808,9.0,5.0,0.0,1.8561002591115965 -808,9.0,8.0,0.0,9.090909090909092 -808,9.0,9.0,13.462042814524237,-41.3837606675224 -808,9.0,16.0,-3.956039125715353,10.317447719844054 -808,9.0,19.0,-1.7848303152666305,3.98535828943083 -808,9.0,20.0,-5.101853820159654,10.98071411292983 -808,9.0,21.0,-2.619319553382597,5.400770303329455 -808,10.0,8.0,0.0,4.807692307692308 -808,10.0,10.0,0.0,-4.807692307692308 -808,11.0,3.0,0.0,4.191255364806866 -808,11.0,11.0,6.573961583776156,-24.424167659260668 -808,11.0,12.0,0.0,7.142857142857143 -808,11.0,13.0,-1.5265676088395577,3.1734252729654173 -808,11.0,14.0,-3.0953961826564296,6.097275864326261 -808,11.0,15.0,-1.9519977922801688,4.104359379111847 -808,12.0,11.0,0.0,7.142857142857143 -808,12.0,12.0,0.0,-7.142857142857143 -808,13.0,11.0,-1.5265676088395577,3.1734252729654173 -808,13.0,13.0,4.01751987283902,-5.424299332335067 -808,13.0,14.0,-2.4909522639994623,2.250874059369649 -808,14.0,11.0,-3.0953961826564296,6.097275864326261 -808,14.0,13.0,-2.4909522639994623,2.250874059369649 -808,14.0,14.0,9.365498545964757,-16.01163373210796 -808,14.0,17.0,-1.8108011504072024,3.687418931630696 -808,14.0,22.0,-1.9683489489016612,3.976064876781356 -808,15.0,11.0,-1.9519977922801688,4.104359379111847 -808,15.0,15.0,3.271064728633931,-8.94513365126506 -808,15.0,16.0,-1.3190669363537617,4.8407742721532125 -808,16.0,9.0,-3.956039125715353,10.317447719844054 -808,16.0,15.0,-1.3190669363537617,4.8407742721532125 -808,16.0,16.0,5.275106062069114,-15.158221991997266 -808,17.0,14.0,-1.8108011504072024,3.687418931630696 -808,17.0,17.0,4.886487584415919,-9.906177730909668 -808,17.0,18.0,-3.0756864340087167,6.218758799278971 -808,18.0,17.0,-3.0756864340087167,6.218758799278971 -808,18.0,18.0,8.958039375185187,-17.98346468163191 -808,18.0,19.0,-5.88235294117647,11.76470588235294 -808,19.0,9.0,-1.7848303152666305,3.98535828943083 -808,19.0,18.0,-5.88235294117647,11.76470588235294 -808,19.0,19.0,7.6671832564431,-15.75006417178377 -808,20.0,9.0,-5.101853820159654,10.98071411292983 -808,20.0,20.0,21.876495189895888,-45.10843276170355 -808,20.0,21.0,-16.774641369736234,34.127718648773715 -808,21.0,9.0,-2.619319553382597,5.400770303329455 -808,21.0,20.0,-16.774641369736234,34.127718648773715 -808,21.0,21.0,21.93449907537439,-43.48289181517921 -808,21.0,23.0,-2.5405381522555563,3.95440286307604 -808,22.0,14.0,-1.9683489489016612,3.976064876781356 -808,22.0,22.0,3.429754555384988,-6.965303617315433 -808,22.0,23.0,-1.4614056064833263,2.989238740534077 -808,23.0,21.0,-2.5405381522555563,3.95440286307604 -808,23.0,22.0,-1.4614056064833263,2.989238740534077 -808,23.0,23.0,5.311836702613133,-9.188263657315172 -808,23.0,24.0,-1.3098929438742493,2.287622053705056 -808,24.0,23.0,-1.3098929438742493,2.287622053705056 -808,24.0,24.0,4.495715080321987,-7.864978761969621 -808,24.0,25.0,-1.2165301194494855,1.8171440463475024 -808,24.0,26.0,-1.9692920169982515,3.760212661917064 -808,25.0,24.0,-1.2165301194494855,1.8171440463475024 -808,25.0,25.0,1.2165301194494855,-1.8171440463475024 -808,26.0,24.0,-1.9692920169982515,3.760212661917064 -808,26.0,26.0,3.652281470778589,-9.46044252232512 -808,26.0,27.0,0.0,2.608731947574922 -808,26.0,28.0,-0.99553355095268,1.881005840357816 -808,26.0,29.0,-0.6874559028276572,1.293971494797717 -808,27.0,5.0,-4.362844058012917,15.463571542897856 -808,27.0,7.0,-1.4439790613954469,4.540814658476248 -808,27.0,26.0,0.0,2.608731947574922 -808,27.0,27.0,5.806823119408364,-22.67145722159613 -808,28.0,26.0,-0.99553355095268,1.881005840357816 -808,28.0,28.0,1.9075867579849564,-3.604364401207048 -808,28.0,29.0,-0.9120532070322764,1.7233585608492326 -808,29.0,26.0,-0.6874559028276572,1.293971494797717 -808,29.0,28.0,-0.9120532070322764,1.7233585608492326 -808,29.0,29.0,1.5995091098599337,-3.0173300556469496 -809,0.0,0.0,6.765516048652632,-21.23160167089863 -809,0.0,1.0,-5.224646179885656,15.646726840803398 -809,0.0,2.0,-1.5408698687669766,5.631674830095234 -809,1.0,0.0,-5.224646179885656,15.646726840803398 -809,1.0,1.0,9.75228216552403,-30.648662892676068 -809,1.0,3.0,-1.7055303166990268,5.1973792282565086 -809,1.0,4.0,-1.1359607881738778,4.772479328281356 -809,1.0,5.0,-1.6861448807654689,5.116477495334806 -809,2.0,0.0,-1.5408698687669766,5.631674830095234 -809,2.0,2.0,9.736318911079088,-29.13794745915803 -809,2.0,3.0,-8.19544904231211,23.5308726290628 -809,3.0,1.0,-1.7055303166990268,5.1973792282565086 -809,3.0,2.0,-8.19544904231211,23.5308726290628 -809,3.0,3.0,16.314103089185693,-55.509410535254254 -809,3.0,5.0,-6.413123730174556,22.31120356548123 -809,3.0,11.0,0.0,4.191255364806866 -809,4.0,1.0,-1.1359607881738778,4.772479328281356 -809,4.0,4.0,4.089980824135861,-12.190647245055052 -809,4.0,6.0,-2.954020035961983,7.449267916773697 -809,5.0,1.0,-1.6861448807654689,5.116477495334806 -809,5.0,3.0,-6.413123730174556,22.31120356548123 -809,5.0,5.0,22.341631269034565,-82.8291478657789 -809,5.0,6.0,-3.590210423980992,11.02611441072814 -809,5.0,7.0,-6.289308176100628,22.0125786163522 -809,5.0,8.0,0.0,4.915840805411357 -809,5.0,9.0,0.0,1.8561002591115965 -809,5.0,27.0,-4.362844058012917,15.463571542897856 -809,6.0,4.0,-2.954020035961983,7.449267916773697 -809,6.0,5.0,-3.590210423980992,11.02611441072814 -809,6.0,6.0,6.544230459942975,-18.45668232750184 -809,7.0,5.0,-6.289308176100628,22.0125786163522 -809,7.0,7.0,7.733287237496075,-26.527493274828448 -809,7.0,27.0,-1.4439790613954469,4.540814658476248 -809,8.0,5.0,0.0,4.915840805411357 -809,8.0,8.0,0.0,-18.706293706293707 -809,8.0,9.0,0.0,9.090909090909092 -809,8.0,10.0,0.0,4.807692307692308 -809,9.0,5.0,0.0,1.8561002591115965 -809,9.0,8.0,0.0,9.090909090909092 -809,9.0,9.0,13.462042814524237,-41.3837606675224 -809,9.0,16.0,-3.956039125715353,10.317447719844054 -809,9.0,19.0,-1.7848303152666305,3.98535828943083 -809,9.0,20.0,-5.101853820159654,10.98071411292983 -809,9.0,21.0,-2.619319553382597,5.400770303329455 -809,10.0,8.0,0.0,4.807692307692308 -809,10.0,10.0,0.0,-4.807692307692308 -809,11.0,3.0,0.0,4.191255364806866 -809,11.0,11.0,6.573961583776156,-24.424167659260668 -809,11.0,12.0,0.0,7.142857142857143 -809,11.0,13.0,-1.5265676088395577,3.1734252729654173 -809,11.0,14.0,-3.0953961826564296,6.097275864326261 -809,11.0,15.0,-1.9519977922801688,4.104359379111847 -809,12.0,11.0,0.0,7.142857142857143 -809,12.0,12.0,0.0,-7.142857142857143 -809,13.0,11.0,-1.5265676088395577,3.1734252729654173 -809,13.0,13.0,4.01751987283902,-5.424299332335067 -809,13.0,14.0,-2.4909522639994623,2.250874059369649 -809,14.0,11.0,-3.0953961826564296,6.097275864326261 -809,14.0,13.0,-2.4909522639994623,2.250874059369649 -809,14.0,14.0,9.365498545964757,-16.01163373210796 -809,14.0,17.0,-1.8108011504072024,3.687418931630696 -809,14.0,22.0,-1.9683489489016612,3.976064876781356 -809,15.0,11.0,-1.9519977922801688,4.104359379111847 -809,15.0,15.0,3.271064728633931,-8.94513365126506 -809,15.0,16.0,-1.3190669363537617,4.8407742721532125 -809,16.0,9.0,-3.956039125715353,10.317447719844054 -809,16.0,15.0,-1.3190669363537617,4.8407742721532125 -809,16.0,16.0,5.275106062069114,-15.158221991997266 -809,17.0,14.0,-1.8108011504072024,3.687418931630696 -809,17.0,17.0,4.886487584415919,-9.906177730909668 -809,17.0,18.0,-3.0756864340087167,6.218758799278971 -809,18.0,17.0,-3.0756864340087167,6.218758799278971 -809,18.0,18.0,8.958039375185187,-17.98346468163191 -809,18.0,19.0,-5.88235294117647,11.76470588235294 -809,19.0,9.0,-1.7848303152666305,3.98535828943083 -809,19.0,18.0,-5.88235294117647,11.76470588235294 -809,19.0,19.0,7.6671832564431,-15.75006417178377 -809,20.0,9.0,-5.101853820159654,10.98071411292983 -809,20.0,20.0,21.876495189895888,-45.10843276170355 -809,20.0,21.0,-16.774641369736234,34.127718648773715 -809,21.0,9.0,-2.619319553382597,5.400770303329455 -809,21.0,20.0,-16.774641369736234,34.127718648773715 -809,21.0,21.0,21.93449907537439,-43.48289181517921 -809,21.0,23.0,-2.5405381522555563,3.95440286307604 -809,22.0,14.0,-1.9683489489016612,3.976064876781356 -809,22.0,22.0,3.429754555384988,-6.965303617315433 -809,22.0,23.0,-1.4614056064833263,2.989238740534077 -809,23.0,21.0,-2.5405381522555563,3.95440286307604 -809,23.0,22.0,-1.4614056064833263,2.989238740534077 -809,23.0,23.0,5.311836702613133,-9.188263657315172 -809,23.0,24.0,-1.3098929438742493,2.287622053705056 -809,24.0,23.0,-1.3098929438742493,2.287622053705056 -809,24.0,24.0,4.495715080321987,-7.864978761969621 -809,24.0,25.0,-1.2165301194494855,1.8171440463475024 -809,24.0,26.0,-1.9692920169982515,3.760212661917064 -809,25.0,24.0,-1.2165301194494855,1.8171440463475024 -809,25.0,25.0,1.2165301194494855,-1.8171440463475024 -809,26.0,24.0,-1.9692920169982515,3.760212661917064 -809,26.0,26.0,3.652281470778589,-9.46044252232512 -809,26.0,27.0,0.0,2.608731947574922 -809,26.0,28.0,-0.99553355095268,1.881005840357816 -809,26.0,29.0,-0.6874559028276572,1.293971494797717 -809,27.0,5.0,-4.362844058012917,15.463571542897856 -809,27.0,7.0,-1.4439790613954469,4.540814658476248 -809,27.0,26.0,0.0,2.608731947574922 -809,27.0,27.0,5.806823119408364,-22.67145722159613 -809,28.0,26.0,-0.99553355095268,1.881005840357816 -809,28.0,28.0,1.9075867579849564,-3.604364401207048 -809,28.0,29.0,-0.9120532070322764,1.7233585608492326 -809,29.0,26.0,-0.6874559028276572,1.293971494797717 -809,29.0,28.0,-0.9120532070322764,1.7233585608492326 -809,29.0,29.0,1.5995091098599337,-3.0173300556469496 -810,0.0,0.0,6.765516048652632,-21.23160167089863 -810,0.0,1.0,-5.224646179885656,15.646726840803398 -810,0.0,2.0,-1.5408698687669766,5.631674830095234 -810,1.0,0.0,-5.224646179885656,15.646726840803398 -810,1.0,1.0,6.930176496584682,-20.799306069059902 -810,1.0,3.0,-1.7055303166990268,5.1973792282565086 -810,2.0,0.0,-1.5408698687669766,5.631674830095234 -810,2.0,2.0,9.736318911079088,-29.13794745915803 -810,2.0,3.0,-8.19544904231211,23.5308726290628 -810,3.0,1.0,-1.7055303166990268,5.1973792282565086 -810,3.0,2.0,-8.19544904231211,23.5308726290628 -810,3.0,3.0,16.314103089185693,-55.509410535254254 -810,3.0,5.0,-6.413123730174556,22.31120356548123 -810,3.0,11.0,0.0,4.191255364806866 -810,4.0,4.0,2.954020035961983,-7.439067916773697 -810,4.0,6.0,-2.954020035961983,7.449267916773697 -810,5.0,3.0,-6.413123730174556,22.31120356548123 -810,5.0,5.0,16.29264233025618,-60.35881868398423 -810,5.0,6.0,-3.590210423980992,11.02611441072814 -810,5.0,7.0,-6.289308176100628,22.0125786163522 -810,5.0,8.0,0.0,4.915840805411357 -810,6.0,4.0,-2.954020035961983,7.449267916773697 -810,6.0,5.0,-3.590210423980992,11.02611441072814 -810,6.0,6.0,6.544230459942975,-18.45668232750184 -810,7.0,5.0,-6.289308176100628,22.0125786163522 -810,7.0,7.0,7.733287237496075,-26.527493274828448 -810,7.0,27.0,-1.4439790613954469,4.540814658476248 -810,8.0,5.0,0.0,4.915840805411357 -810,8.0,8.0,0.0,-18.706293706293707 -810,8.0,9.0,0.0,9.090909090909092 -810,8.0,10.0,0.0,4.807692307692308 -810,9.0,8.0,0.0,9.090909090909092 -810,9.0,9.0,11.677212499257603,-35.59984122701243 -810,9.0,16.0,-3.956039125715353,10.317447719844054 -810,9.0,20.0,-5.101853820159654,10.98071411292983 -810,9.0,21.0,-2.619319553382597,5.400770303329455 -810,10.0,8.0,0.0,4.807692307692308 -810,10.0,10.0,0.0,-4.807692307692308 -810,11.0,3.0,0.0,4.191255364806866 -810,11.0,11.0,6.573961583776156,-24.424167659260668 -810,11.0,12.0,0.0,7.142857142857143 -810,11.0,13.0,-1.5265676088395577,3.1734252729654173 -810,11.0,14.0,-3.0953961826564296,6.097275864326261 -810,11.0,15.0,-1.9519977922801688,4.104359379111847 -810,12.0,11.0,0.0,7.142857142857143 -810,12.0,12.0,0.0,-7.142857142857143 -810,13.0,11.0,-1.5265676088395577,3.1734252729654173 -810,13.0,13.0,4.01751987283902,-5.424299332335067 -810,13.0,14.0,-2.4909522639994623,2.250874059369649 -810,14.0,11.0,-3.0953961826564296,6.097275864326261 -810,14.0,13.0,-2.4909522639994623,2.250874059369649 -810,14.0,14.0,9.365498545964757,-16.01163373210796 -810,14.0,17.0,-1.8108011504072024,3.687418931630696 -810,14.0,22.0,-1.9683489489016612,3.976064876781356 -810,15.0,11.0,-1.9519977922801688,4.104359379111847 -810,15.0,15.0,3.271064728633931,-8.94513365126506 -810,15.0,16.0,-1.3190669363537617,4.8407742721532125 -810,16.0,9.0,-3.956039125715353,10.317447719844054 -810,16.0,15.0,-1.3190669363537617,4.8407742721532125 -810,16.0,16.0,5.275106062069114,-15.158221991997266 -810,17.0,14.0,-1.8108011504072024,3.687418931630696 -810,17.0,17.0,4.886487584415919,-9.906177730909668 -810,17.0,18.0,-3.0756864340087167,6.218758799278971 -810,18.0,17.0,-3.0756864340087167,6.218758799278971 -810,18.0,18.0,8.958039375185187,-17.98346468163191 -810,18.0,19.0,-5.88235294117647,11.76470588235294 -810,19.0,18.0,-5.88235294117647,11.76470588235294 -810,19.0,19.0,5.88235294117647,-11.76470588235294 -810,20.0,9.0,-5.101853820159654,10.98071411292983 -810,20.0,20.0,21.876495189895888,-45.10843276170355 -810,20.0,21.0,-16.774641369736234,34.127718648773715 -810,21.0,9.0,-2.619319553382597,5.400770303329455 -810,21.0,20.0,-16.774641369736234,34.127718648773715 -810,21.0,21.0,21.93449907537439,-43.48289181517921 -810,21.0,23.0,-2.5405381522555563,3.95440286307604 -810,22.0,14.0,-1.9683489489016612,3.976064876781356 -810,22.0,22.0,3.429754555384988,-6.965303617315433 -810,22.0,23.0,-1.4614056064833263,2.989238740534077 -810,23.0,21.0,-2.5405381522555563,3.95440286307604 -810,23.0,22.0,-1.4614056064833263,2.989238740534077 -810,23.0,23.0,5.311836702613133,-9.188263657315172 -810,23.0,24.0,-1.3098929438742493,2.287622053705056 -810,24.0,23.0,-1.3098929438742493,2.287622053705056 -810,24.0,24.0,4.495715080321987,-7.864978761969621 -810,24.0,25.0,-1.2165301194494855,1.8171440463475024 -810,24.0,26.0,-1.9692920169982515,3.760212661917064 -810,25.0,24.0,-1.2165301194494855,1.8171440463475024 -810,25.0,25.0,1.2165301194494855,-1.8171440463475024 -810,26.0,24.0,-1.9692920169982515,3.760212661917064 -810,26.0,26.0,3.652281470778589,-9.46044252232512 -810,26.0,27.0,0.0,2.608731947574922 -810,26.0,28.0,-0.99553355095268,1.881005840357816 -810,26.0,29.0,-0.6874559028276572,1.293971494797717 -810,27.0,7.0,-1.4439790613954469,4.540814658476248 -810,27.0,26.0,0.0,2.608731947574922 -810,27.0,27.0,1.4439790613954469,-7.214385678698274 -810,28.0,26.0,-0.99553355095268,1.881005840357816 -810,28.0,28.0,1.9075867579849564,-3.604364401207048 -810,28.0,29.0,-0.9120532070322764,1.7233585608492326 -810,29.0,26.0,-0.6874559028276572,1.293971494797717 -810,29.0,28.0,-0.9120532070322764,1.7233585608492326 -810,29.0,29.0,1.5995091098599337,-3.0173300556469496 -811,0.0,0.0,6.765516048652632,-21.23160167089863 -811,0.0,1.0,-5.224646179885656,15.646726840803398 -811,0.0,2.0,-1.5408698687669766,5.631674830095234 -811,1.0,0.0,-5.224646179885656,15.646726840803398 -811,1.0,1.0,9.75228216552403,-30.648662892676068 -811,1.0,3.0,-1.7055303166990268,5.1973792282565086 -811,1.0,4.0,-1.1359607881738778,4.772479328281356 -811,1.0,5.0,-1.6861448807654689,5.116477495334806 -811,2.0,0.0,-1.5408698687669766,5.631674830095234 -811,2.0,2.0,9.736318911079088,-29.13794745915803 -811,2.0,3.0,-8.19544904231211,23.5308726290628 -811,3.0,1.0,-1.7055303166990268,5.1973792282565086 -811,3.0,2.0,-8.19544904231211,23.5308726290628 -811,3.0,3.0,16.314103089185693,-55.509410535254254 -811,3.0,5.0,-6.413123730174556,22.31120356548123 -811,3.0,11.0,0.0,4.191255364806866 -811,4.0,1.0,-1.1359607881738778,4.772479328281356 -811,4.0,4.0,4.089980824135861,-12.190647245055052 -811,4.0,6.0,-2.954020035961983,7.449267916773697 -811,5.0,1.0,-1.6861448807654689,5.116477495334806 -811,5.0,3.0,-6.413123730174556,22.31120356548123 -811,5.0,5.0,22.341631269034565,-82.8291478657789 -811,5.0,6.0,-3.590210423980992,11.02611441072814 -811,5.0,7.0,-6.289308176100628,22.0125786163522 -811,5.0,8.0,0.0,4.915840805411357 -811,5.0,9.0,0.0,1.8561002591115965 -811,5.0,27.0,-4.362844058012917,15.463571542897856 -811,6.0,4.0,-2.954020035961983,7.449267916773697 -811,6.0,5.0,-3.590210423980992,11.02611441072814 -811,6.0,6.0,6.544230459942975,-18.45668232750184 -811,7.0,5.0,-6.289308176100628,22.0125786163522 -811,7.0,7.0,7.733287237496075,-26.527493274828448 -811,7.0,27.0,-1.4439790613954469,4.540814658476248 -811,8.0,5.0,0.0,4.915840805411357 -811,8.0,8.0,0.0,-18.706293706293707 -811,8.0,9.0,0.0,9.090909090909092 -811,8.0,10.0,0.0,4.807692307692308 -811,9.0,5.0,0.0,1.8561002591115965 -811,9.0,8.0,0.0,9.090909090909092 -811,9.0,9.0,13.462042814524237,-41.3837606675224 -811,9.0,16.0,-3.956039125715353,10.317447719844054 -811,9.0,19.0,-1.7848303152666305,3.98535828943083 -811,9.0,20.0,-5.101853820159654,10.98071411292983 -811,9.0,21.0,-2.619319553382597,5.400770303329455 -811,10.0,8.0,0.0,4.807692307692308 -811,10.0,10.0,0.0,-4.807692307692308 -811,11.0,3.0,0.0,4.191255364806866 -811,11.0,11.0,3.478565401119727,-18.326891794934408 -811,11.0,12.0,0.0,7.142857142857143 -811,11.0,13.0,-1.5265676088395577,3.1734252729654173 -811,11.0,15.0,-1.9519977922801688,4.104359379111847 -811,12.0,11.0,0.0,7.142857142857143 -811,12.0,12.0,0.0,-7.142857142857143 -811,13.0,11.0,-1.5265676088395577,3.1734252729654173 -811,13.0,13.0,4.01751987283902,-5.424299332335067 -811,13.0,14.0,-2.4909522639994623,2.250874059369649 -811,14.0,13.0,-2.4909522639994623,2.250874059369649 -811,14.0,14.0,6.270102363308326,-9.9143578677817 -811,14.0,17.0,-1.8108011504072024,3.687418931630696 -811,14.0,22.0,-1.9683489489016612,3.976064876781356 -811,15.0,11.0,-1.9519977922801688,4.104359379111847 -811,15.0,15.0,3.271064728633931,-8.94513365126506 -811,15.0,16.0,-1.3190669363537617,4.8407742721532125 -811,16.0,9.0,-3.956039125715353,10.317447719844054 -811,16.0,15.0,-1.3190669363537617,4.8407742721532125 -811,16.0,16.0,5.275106062069114,-15.158221991997266 -811,17.0,14.0,-1.8108011504072024,3.687418931630696 -811,17.0,17.0,4.886487584415919,-9.906177730909668 -811,17.0,18.0,-3.0756864340087167,6.218758799278971 -811,18.0,17.0,-3.0756864340087167,6.218758799278971 -811,18.0,18.0,8.958039375185187,-17.98346468163191 -811,18.0,19.0,-5.88235294117647,11.76470588235294 -811,19.0,9.0,-1.7848303152666305,3.98535828943083 -811,19.0,18.0,-5.88235294117647,11.76470588235294 -811,19.0,19.0,7.6671832564431,-15.75006417178377 -811,20.0,9.0,-5.101853820159654,10.98071411292983 -811,20.0,20.0,21.876495189895888,-45.10843276170355 -811,20.0,21.0,-16.774641369736234,34.127718648773715 -811,21.0,9.0,-2.619319553382597,5.400770303329455 -811,21.0,20.0,-16.774641369736234,34.127718648773715 -811,21.0,21.0,21.93449907537439,-43.48289181517921 -811,21.0,23.0,-2.5405381522555563,3.95440286307604 -811,22.0,14.0,-1.9683489489016612,3.976064876781356 -811,22.0,22.0,3.429754555384988,-6.965303617315433 -811,22.0,23.0,-1.4614056064833263,2.989238740534077 -811,23.0,21.0,-2.5405381522555563,3.95440286307604 -811,23.0,22.0,-1.4614056064833263,2.989238740534077 -811,23.0,23.0,4.001943758738883,-6.900641603610116 -811,24.0,24.0,3.185822136447737,-5.577356708264566 -811,24.0,25.0,-1.2165301194494855,1.8171440463475024 -811,24.0,26.0,-1.9692920169982515,3.760212661917064 -811,25.0,24.0,-1.2165301194494855,1.8171440463475024 -811,25.0,25.0,1.2165301194494855,-1.8171440463475024 -811,26.0,24.0,-1.9692920169982515,3.760212661917064 -811,26.0,26.0,3.652281470778589,-9.46044252232512 -811,26.0,27.0,0.0,2.608731947574922 -811,26.0,28.0,-0.99553355095268,1.881005840357816 -811,26.0,29.0,-0.6874559028276572,1.293971494797717 -811,27.0,5.0,-4.362844058012917,15.463571542897856 -811,27.0,7.0,-1.4439790613954469,4.540814658476248 -811,27.0,26.0,0.0,2.608731947574922 -811,27.0,27.0,5.806823119408364,-22.67145722159613 -811,28.0,26.0,-0.99553355095268,1.881005840357816 -811,28.0,28.0,1.9075867579849564,-3.604364401207048 -811,28.0,29.0,-0.9120532070322764,1.7233585608492326 -811,29.0,26.0,-0.6874559028276572,1.293971494797717 -811,29.0,28.0,-0.9120532070322764,1.7233585608492326 -811,29.0,29.0,1.5995091098599337,-3.0173300556469496 -812,0.0,0.0,6.765516048652632,-21.23160167089863 -812,0.0,1.0,-5.224646179885656,15.646726840803398 -812,0.0,2.0,-1.5408698687669766,5.631674830095234 -812,1.0,0.0,-5.224646179885656,15.646726840803398 -812,1.0,1.0,8.046751848825002,-25.46968366441956 -812,1.0,4.0,-1.1359607881738778,4.772479328281356 -812,1.0,5.0,-1.6861448807654689,5.116477495334806 -812,2.0,0.0,-1.5408698687669766,5.631674830095234 -812,2.0,2.0,9.736318911079088,-29.13794745915803 -812,2.0,3.0,-8.19544904231211,23.5308726290628 -812,3.0,2.0,-8.19544904231211,23.5308726290628 -812,3.0,3.0,14.608572772486664,-50.33043130699775 -812,3.0,5.0,-6.413123730174556,22.31120356548123 -812,3.0,11.0,0.0,4.191255364806866 -812,4.0,1.0,-1.1359607881738778,4.772479328281356 -812,4.0,4.0,4.089980824135861,-12.190647245055052 -812,4.0,6.0,-2.954020035961983,7.449267916773697 -812,5.0,1.0,-1.6861448807654689,5.116477495334806 -812,5.0,3.0,-6.413123730174556,22.31120356548123 -812,5.0,5.0,18.75142084505357,-71.81153345505078 -812,5.0,7.0,-6.289308176100628,22.0125786163522 -812,5.0,8.0,0.0,4.915840805411357 -812,5.0,9.0,0.0,1.8561002591115965 -812,5.0,27.0,-4.362844058012917,15.463571542897856 -812,6.0,4.0,-2.954020035961983,7.449267916773697 -812,6.0,6.0,2.954020035961983,-7.439067916773697 -812,7.0,5.0,-6.289308176100628,22.0125786163522 -812,7.0,7.0,7.733287237496075,-26.527493274828448 -812,7.0,27.0,-1.4439790613954469,4.540814658476248 -812,8.0,5.0,0.0,4.915840805411357 -812,8.0,8.0,0.0,-18.706293706293707 -812,8.0,9.0,0.0,9.090909090909092 -812,8.0,10.0,0.0,4.807692307692308 -812,9.0,5.0,0.0,1.8561002591115965 -812,9.0,8.0,0.0,9.090909090909092 -812,9.0,9.0,13.462042814524237,-41.3837606675224 -812,9.0,16.0,-3.956039125715353,10.317447719844054 -812,9.0,19.0,-1.7848303152666305,3.98535828943083 -812,9.0,20.0,-5.101853820159654,10.98071411292983 -812,9.0,21.0,-2.619319553382597,5.400770303329455 -812,10.0,8.0,0.0,4.807692307692308 -812,10.0,10.0,0.0,-4.807692307692308 -812,11.0,3.0,0.0,4.191255364806866 -812,11.0,11.0,5.047393974936599,-21.25074238629525 -812,11.0,12.0,0.0,7.142857142857143 -812,11.0,14.0,-3.0953961826564296,6.097275864326261 -812,11.0,15.0,-1.9519977922801688,4.104359379111847 -812,12.0,11.0,0.0,7.142857142857143 -812,12.0,12.0,0.0,-7.142857142857143 -812,13.0,13.0,2.4909522639994623,-2.250874059369649 -812,13.0,14.0,-2.4909522639994623,2.250874059369649 -812,14.0,11.0,-3.0953961826564296,6.097275864326261 -812,14.0,13.0,-2.4909522639994623,2.250874059369649 -812,14.0,14.0,9.365498545964757,-16.01163373210796 -812,14.0,17.0,-1.8108011504072024,3.687418931630696 -812,14.0,22.0,-1.9683489489016612,3.976064876781356 -812,15.0,11.0,-1.9519977922801688,4.104359379111847 -812,15.0,15.0,3.271064728633931,-8.94513365126506 -812,15.0,16.0,-1.3190669363537617,4.8407742721532125 -812,16.0,9.0,-3.956039125715353,10.317447719844054 -812,16.0,15.0,-1.3190669363537617,4.8407742721532125 -812,16.0,16.0,5.275106062069114,-15.158221991997266 -812,17.0,14.0,-1.8108011504072024,3.687418931630696 -812,17.0,17.0,4.886487584415919,-9.906177730909668 -812,17.0,18.0,-3.0756864340087167,6.218758799278971 -812,18.0,17.0,-3.0756864340087167,6.218758799278971 -812,18.0,18.0,8.958039375185187,-17.98346468163191 -812,18.0,19.0,-5.88235294117647,11.76470588235294 -812,19.0,9.0,-1.7848303152666305,3.98535828943083 -812,19.0,18.0,-5.88235294117647,11.76470588235294 -812,19.0,19.0,7.6671832564431,-15.75006417178377 -812,20.0,9.0,-5.101853820159654,10.98071411292983 -812,20.0,20.0,21.876495189895888,-45.10843276170355 -812,20.0,21.0,-16.774641369736234,34.127718648773715 -812,21.0,9.0,-2.619319553382597,5.400770303329455 -812,21.0,20.0,-16.774641369736234,34.127718648773715 -812,21.0,21.0,21.93449907537439,-43.48289181517921 -812,21.0,23.0,-2.5405381522555563,3.95440286307604 -812,22.0,14.0,-1.9683489489016612,3.976064876781356 -812,22.0,22.0,3.429754555384988,-6.965303617315433 -812,22.0,23.0,-1.4614056064833263,2.989238740534077 -812,23.0,21.0,-2.5405381522555563,3.95440286307604 -812,23.0,22.0,-1.4614056064833263,2.989238740534077 -812,23.0,23.0,5.311836702613133,-9.188263657315172 -812,23.0,24.0,-1.3098929438742493,2.287622053705056 -812,24.0,23.0,-1.3098929438742493,2.287622053705056 -812,24.0,24.0,4.495715080321987,-7.864978761969621 -812,24.0,25.0,-1.2165301194494855,1.8171440463475024 -812,24.0,26.0,-1.9692920169982515,3.760212661917064 -812,25.0,24.0,-1.2165301194494855,1.8171440463475024 -812,25.0,25.0,1.2165301194494855,-1.8171440463475024 -812,26.0,24.0,-1.9692920169982515,3.760212661917064 -812,26.0,26.0,3.652281470778589,-9.46044252232512 -812,26.0,27.0,0.0,2.608731947574922 -812,26.0,28.0,-0.99553355095268,1.881005840357816 -812,26.0,29.0,-0.6874559028276572,1.293971494797717 -812,27.0,5.0,-4.362844058012917,15.463571542897856 -812,27.0,7.0,-1.4439790613954469,4.540814658476248 -812,27.0,26.0,0.0,2.608731947574922 -812,27.0,27.0,5.806823119408364,-22.67145722159613 -812,28.0,26.0,-0.99553355095268,1.881005840357816 -812,28.0,28.0,1.9075867579849564,-3.604364401207048 -812,28.0,29.0,-0.9120532070322764,1.7233585608492326 -812,29.0,26.0,-0.6874559028276572,1.293971494797717 -812,29.0,28.0,-0.9120532070322764,1.7233585608492326 -812,29.0,29.0,1.5995091098599337,-3.0173300556469496 -813,0.0,0.0,6.765516048652632,-21.23160167089863 -813,0.0,1.0,-5.224646179885656,15.646726840803398 -813,0.0,2.0,-1.5408698687669766,5.631674830095234 -813,1.0,0.0,-5.224646179885656,15.646726840803398 -813,1.0,1.0,9.75228216552403,-30.648662892676068 -813,1.0,3.0,-1.7055303166990268,5.1973792282565086 -813,1.0,4.0,-1.1359607881738778,4.772479328281356 -813,1.0,5.0,-1.6861448807654689,5.116477495334806 -813,2.0,0.0,-1.5408698687669766,5.631674830095234 -813,2.0,2.0,9.736318911079088,-29.13794745915803 -813,2.0,3.0,-8.19544904231211,23.5308726290628 -813,3.0,1.0,-1.7055303166990268,5.1973792282565086 -813,3.0,2.0,-8.19544904231211,23.5308726290628 -813,3.0,3.0,16.314103089185693,-55.509410535254254 -813,3.0,5.0,-6.413123730174556,22.31120356548123 -813,3.0,11.0,0.0,4.191255364806866 -813,4.0,1.0,-1.1359607881738778,4.772479328281356 -813,4.0,4.0,4.089980824135861,-12.190647245055052 -813,4.0,6.0,-2.954020035961983,7.449267916773697 -813,5.0,1.0,-1.6861448807654689,5.116477495334806 -813,5.0,3.0,-6.413123730174556,22.31120356548123 -813,5.0,5.0,22.341631269034565,-82.8291478657789 -813,5.0,6.0,-3.590210423980992,11.02611441072814 -813,5.0,7.0,-6.289308176100628,22.0125786163522 -813,5.0,8.0,0.0,4.915840805411357 -813,5.0,9.0,0.0,1.8561002591115965 -813,5.0,27.0,-4.362844058012917,15.463571542897856 -813,6.0,4.0,-2.954020035961983,7.449267916773697 -813,6.0,5.0,-3.590210423980992,11.02611441072814 -813,6.0,6.0,6.544230459942975,-18.45668232750184 -813,7.0,5.0,-6.289308176100628,22.0125786163522 -813,7.0,7.0,7.733287237496075,-26.527493274828448 -813,7.0,27.0,-1.4439790613954469,4.540814658476248 -813,8.0,5.0,0.0,4.915840805411357 -813,8.0,8.0,0.0,-18.706293706293707 -813,8.0,9.0,0.0,9.090909090909092 -813,8.0,10.0,0.0,4.807692307692308 -813,9.0,5.0,0.0,1.8561002591115965 -813,9.0,8.0,0.0,9.090909090909092 -813,9.0,9.0,13.462042814524237,-41.3837606675224 -813,9.0,16.0,-3.956039125715353,10.317447719844054 -813,9.0,19.0,-1.7848303152666305,3.98535828943083 -813,9.0,20.0,-5.101853820159654,10.98071411292983 -813,9.0,21.0,-2.619319553382597,5.400770303329455 -813,10.0,8.0,0.0,4.807692307692308 -813,10.0,10.0,0.0,-4.807692307692308 -813,11.0,3.0,0.0,4.191255364806866 -813,11.0,11.0,6.573961583776156,-24.424167659260668 -813,11.0,12.0,0.0,7.142857142857143 -813,11.0,13.0,-1.5265676088395577,3.1734252729654173 -813,11.0,14.0,-3.0953961826564296,6.097275864326261 -813,11.0,15.0,-1.9519977922801688,4.104359379111847 -813,12.0,11.0,0.0,7.142857142857143 -813,12.0,12.0,0.0,-7.142857142857143 -813,13.0,11.0,-1.5265676088395577,3.1734252729654173 -813,13.0,13.0,4.01751987283902,-5.424299332335067 -813,13.0,14.0,-2.4909522639994623,2.250874059369649 -813,14.0,11.0,-3.0953961826564296,6.097275864326261 -813,14.0,13.0,-2.4909522639994623,2.250874059369649 -813,14.0,14.0,9.365498545964757,-16.01163373210796 -813,14.0,17.0,-1.8108011504072024,3.687418931630696 -813,14.0,22.0,-1.9683489489016612,3.976064876781356 -813,15.0,11.0,-1.9519977922801688,4.104359379111847 -813,15.0,15.0,3.271064728633931,-8.94513365126506 -813,15.0,16.0,-1.3190669363537617,4.8407742721532125 -813,16.0,9.0,-3.956039125715353,10.317447719844054 -813,16.0,15.0,-1.3190669363537617,4.8407742721532125 -813,16.0,16.0,5.275106062069114,-15.158221991997266 -813,17.0,14.0,-1.8108011504072024,3.687418931630696 -813,17.0,17.0,4.886487584415919,-9.906177730909668 -813,17.0,18.0,-3.0756864340087167,6.218758799278971 -813,18.0,17.0,-3.0756864340087167,6.218758799278971 -813,18.0,18.0,8.958039375185187,-17.98346468163191 -813,18.0,19.0,-5.88235294117647,11.76470588235294 -813,19.0,9.0,-1.7848303152666305,3.98535828943083 -813,19.0,18.0,-5.88235294117647,11.76470588235294 -813,19.0,19.0,7.6671832564431,-15.75006417178377 -813,20.0,9.0,-5.101853820159654,10.98071411292983 -813,20.0,20.0,21.876495189895888,-45.10843276170355 -813,20.0,21.0,-16.774641369736234,34.127718648773715 -813,21.0,9.0,-2.619319553382597,5.400770303329455 -813,21.0,20.0,-16.774641369736234,34.127718648773715 -813,21.0,21.0,21.93449907537439,-43.48289181517921 -813,21.0,23.0,-2.5405381522555563,3.95440286307604 -813,22.0,14.0,-1.9683489489016612,3.976064876781356 -813,22.0,22.0,3.429754555384988,-6.965303617315433 -813,22.0,23.0,-1.4614056064833263,2.989238740534077 -813,23.0,21.0,-2.5405381522555563,3.95440286307604 -813,23.0,22.0,-1.4614056064833263,2.989238740534077 -813,23.0,23.0,5.311836702613133,-9.188263657315172 -813,23.0,24.0,-1.3098929438742493,2.287622053705056 -813,24.0,23.0,-1.3098929438742493,2.287622053705056 -813,24.0,24.0,4.495715080321987,-7.864978761969621 -813,24.0,25.0,-1.2165301194494855,1.8171440463475024 -813,24.0,26.0,-1.9692920169982515,3.760212661917064 -813,25.0,24.0,-1.2165301194494855,1.8171440463475024 -813,25.0,25.0,1.2165301194494855,-1.8171440463475024 -813,26.0,24.0,-1.9692920169982515,3.760212661917064 -813,26.0,26.0,3.652281470778589,-9.46044252232512 -813,26.0,27.0,0.0,2.608731947574922 -813,26.0,28.0,-0.99553355095268,1.881005840357816 -813,26.0,29.0,-0.6874559028276572,1.293971494797717 -813,27.0,5.0,-4.362844058012917,15.463571542897856 -813,27.0,7.0,-1.4439790613954469,4.540814658476248 -813,27.0,26.0,0.0,2.608731947574922 -813,27.0,27.0,5.806823119408364,-22.67145722159613 -813,28.0,26.0,-0.99553355095268,1.881005840357816 -813,28.0,28.0,1.9075867579849564,-3.604364401207048 -813,28.0,29.0,-0.9120532070322764,1.7233585608492326 -813,29.0,26.0,-0.6874559028276572,1.293971494797717 -813,29.0,28.0,-0.9120532070322764,1.7233585608492326 -813,29.0,29.0,1.5995091098599337,-3.0173300556469496 -814,0.0,0.0,5.224646179885656,-15.620326840803395 -814,0.0,1.0,-5.224646179885656,15.646726840803398 -814,1.0,0.0,-5.224646179885656,15.646726840803398 -814,1.0,1.0,9.75228216552403,-30.648662892676068 -814,1.0,3.0,-1.7055303166990268,5.1973792282565086 -814,1.0,4.0,-1.1359607881738778,4.772479328281356 -814,1.0,5.0,-1.6861448807654689,5.116477495334806 -814,2.0,2.0,8.19544904231211,-23.5266726290628 -814,2.0,3.0,-8.19544904231211,23.5308726290628 -814,3.0,1.0,-1.7055303166990268,5.1973792282565086 -814,3.0,2.0,-8.19544904231211,23.5308726290628 -814,3.0,3.0,16.314103089185693,-55.509410535254254 -814,3.0,5.0,-6.413123730174556,22.31120356548123 -814,3.0,11.0,0.0,4.191255364806866 -814,4.0,1.0,-1.1359607881738778,4.772479328281356 -814,4.0,4.0,4.089980824135861,-12.190647245055052 -814,4.0,6.0,-2.954020035961983,7.449267916773697 -814,5.0,1.0,-1.6861448807654689,5.116477495334806 -814,5.0,3.0,-6.413123730174556,22.31120356548123 -814,5.0,5.0,22.341631269034565,-82.8291478657789 -814,5.0,6.0,-3.590210423980992,11.02611441072814 -814,5.0,7.0,-6.289308176100628,22.0125786163522 -814,5.0,8.0,0.0,4.915840805411357 -814,5.0,9.0,0.0,1.8561002591115965 -814,5.0,27.0,-4.362844058012917,15.463571542897856 -814,6.0,4.0,-2.954020035961983,7.449267916773697 -814,6.0,5.0,-3.590210423980992,11.02611441072814 -814,6.0,6.0,6.544230459942975,-18.45668232750184 -814,7.0,5.0,-6.289308176100628,22.0125786163522 -814,7.0,7.0,7.733287237496075,-26.527493274828448 -814,7.0,27.0,-1.4439790613954469,4.540814658476248 -814,8.0,5.0,0.0,4.915840805411357 -814,8.0,8.0,0.0,-18.706293706293707 -814,8.0,9.0,0.0,9.090909090909092 -814,8.0,10.0,0.0,4.807692307692308 -814,9.0,5.0,0.0,1.8561002591115965 -814,9.0,8.0,0.0,9.090909090909092 -814,9.0,9.0,13.462042814524237,-41.3837606675224 -814,9.0,16.0,-3.956039125715353,10.317447719844054 -814,9.0,19.0,-1.7848303152666305,3.98535828943083 -814,9.0,20.0,-5.101853820159654,10.98071411292983 -814,9.0,21.0,-2.619319553382597,5.400770303329455 -814,10.0,8.0,0.0,4.807692307692308 -814,10.0,10.0,0.0,-4.807692307692308 -814,11.0,3.0,0.0,4.191255364806866 -814,11.0,11.0,6.573961583776156,-24.424167659260668 -814,11.0,12.0,0.0,7.142857142857143 -814,11.0,13.0,-1.5265676088395577,3.1734252729654173 -814,11.0,14.0,-3.0953961826564296,6.097275864326261 -814,11.0,15.0,-1.9519977922801688,4.104359379111847 -814,12.0,11.0,0.0,7.142857142857143 -814,12.0,12.0,0.0,-7.142857142857143 -814,13.0,11.0,-1.5265676088395577,3.1734252729654173 -814,13.0,13.0,1.5265676088395577,-3.1734252729654173 -814,14.0,11.0,-3.0953961826564296,6.097275864326261 -814,14.0,14.0,6.874546281965293,-13.760759672738311 -814,14.0,17.0,-1.8108011504072024,3.687418931630696 -814,14.0,22.0,-1.9683489489016612,3.976064876781356 -814,15.0,11.0,-1.9519977922801688,4.104359379111847 -814,15.0,15.0,3.271064728633931,-8.94513365126506 -814,15.0,16.0,-1.3190669363537617,4.8407742721532125 -814,16.0,9.0,-3.956039125715353,10.317447719844054 -814,16.0,15.0,-1.3190669363537617,4.8407742721532125 -814,16.0,16.0,5.275106062069114,-15.158221991997266 -814,17.0,14.0,-1.8108011504072024,3.687418931630696 -814,17.0,17.0,4.886487584415919,-9.906177730909668 -814,17.0,18.0,-3.0756864340087167,6.218758799278971 -814,18.0,17.0,-3.0756864340087167,6.218758799278971 -814,18.0,18.0,8.958039375185187,-17.98346468163191 -814,18.0,19.0,-5.88235294117647,11.76470588235294 -814,19.0,9.0,-1.7848303152666305,3.98535828943083 -814,19.0,18.0,-5.88235294117647,11.76470588235294 -814,19.0,19.0,7.6671832564431,-15.75006417178377 -814,20.0,9.0,-5.101853820159654,10.98071411292983 -814,20.0,20.0,21.876495189895888,-45.10843276170355 -814,20.0,21.0,-16.774641369736234,34.127718648773715 -814,21.0,9.0,-2.619319553382597,5.400770303329455 -814,21.0,20.0,-16.774641369736234,34.127718648773715 -814,21.0,21.0,21.93449907537439,-43.48289181517921 -814,21.0,23.0,-2.5405381522555563,3.95440286307604 -814,22.0,14.0,-1.9683489489016612,3.976064876781356 -814,22.0,22.0,3.429754555384988,-6.965303617315433 -814,22.0,23.0,-1.4614056064833263,2.989238740534077 -814,23.0,21.0,-2.5405381522555563,3.95440286307604 -814,23.0,22.0,-1.4614056064833263,2.989238740534077 -814,23.0,23.0,5.311836702613133,-9.188263657315172 -814,23.0,24.0,-1.3098929438742493,2.287622053705056 -814,24.0,23.0,-1.3098929438742493,2.287622053705056 -814,24.0,24.0,4.495715080321987,-7.864978761969621 -814,24.0,25.0,-1.2165301194494855,1.8171440463475024 -814,24.0,26.0,-1.9692920169982515,3.760212661917064 -814,25.0,24.0,-1.2165301194494855,1.8171440463475024 -814,25.0,25.0,1.2165301194494855,-1.8171440463475024 -814,26.0,24.0,-1.9692920169982515,3.760212661917064 -814,26.0,26.0,3.652281470778589,-9.46044252232512 -814,26.0,27.0,0.0,2.608731947574922 -814,26.0,28.0,-0.99553355095268,1.881005840357816 -814,26.0,29.0,-0.6874559028276572,1.293971494797717 -814,27.0,5.0,-4.362844058012917,15.463571542897856 -814,27.0,7.0,-1.4439790613954469,4.540814658476248 -814,27.0,26.0,0.0,2.608731947574922 -814,27.0,27.0,5.806823119408364,-22.67145722159613 -814,28.0,26.0,-0.99553355095268,1.881005840357816 -814,28.0,28.0,1.9075867579849564,-3.604364401207048 -814,28.0,29.0,-0.9120532070322764,1.7233585608492326 -814,29.0,26.0,-0.6874559028276572,1.293971494797717 -814,29.0,28.0,-0.9120532070322764,1.7233585608492326 -814,29.0,29.0,1.5995091098599337,-3.0173300556469496 -815,0.0,0.0,6.765516048652632,-21.23160167089863 -815,0.0,1.0,-5.224646179885656,15.646726840803398 -815,0.0,2.0,-1.5408698687669766,5.631674830095234 -815,1.0,0.0,-5.224646179885656,15.646726840803398 -815,1.0,1.0,9.75228216552403,-30.648662892676068 -815,1.0,3.0,-1.7055303166990268,5.1973792282565086 -815,1.0,4.0,-1.1359607881738778,4.772479328281356 -815,1.0,5.0,-1.6861448807654689,5.116477495334806 -815,2.0,0.0,-1.5408698687669766,5.631674830095234 -815,2.0,2.0,9.736318911079088,-29.13794745915803 -815,2.0,3.0,-8.19544904231211,23.5308726290628 -815,3.0,1.0,-1.7055303166990268,5.1973792282565086 -815,3.0,2.0,-8.19544904231211,23.5308726290628 -815,3.0,3.0,16.314103089185693,-55.509410535254254 -815,3.0,5.0,-6.413123730174556,22.31120356548123 -815,3.0,11.0,0.0,4.191255364806866 -815,4.0,1.0,-1.1359607881738778,4.772479328281356 -815,4.0,4.0,4.089980824135861,-12.190647245055052 -815,4.0,6.0,-2.954020035961983,7.449267916773697 -815,5.0,1.0,-1.6861448807654689,5.116477495334806 -815,5.0,3.0,-6.413123730174556,22.31120356548123 -815,5.0,5.0,22.341631269034565,-82.8291478657789 -815,5.0,6.0,-3.590210423980992,11.02611441072814 -815,5.0,7.0,-6.289308176100628,22.0125786163522 -815,5.0,8.0,0.0,4.915840805411357 -815,5.0,9.0,0.0,1.8561002591115965 -815,5.0,27.0,-4.362844058012917,15.463571542897856 -815,6.0,4.0,-2.954020035961983,7.449267916773697 -815,6.0,5.0,-3.590210423980992,11.02611441072814 -815,6.0,6.0,6.544230459942975,-18.45668232750184 -815,7.0,5.0,-6.289308176100628,22.0125786163522 -815,7.0,7.0,7.733287237496075,-26.527493274828448 -815,7.0,27.0,-1.4439790613954469,4.540814658476248 -815,8.0,5.0,0.0,4.915840805411357 -815,8.0,8.0,0.0,-18.706293706293707 -815,8.0,9.0,0.0,9.090909090909092 -815,8.0,10.0,0.0,4.807692307692308 -815,9.0,5.0,0.0,1.8561002591115965 -815,9.0,8.0,0.0,9.090909090909092 -815,9.0,9.0,13.462042814524237,-41.3837606675224 -815,9.0,16.0,-3.956039125715353,10.317447719844054 -815,9.0,19.0,-1.7848303152666305,3.98535828943083 -815,9.0,20.0,-5.101853820159654,10.98071411292983 -815,9.0,21.0,-2.619319553382597,5.400770303329455 -815,10.0,8.0,0.0,4.807692307692308 -815,10.0,10.0,0.0,-4.807692307692308 -815,11.0,3.0,0.0,4.191255364806866 -815,11.0,11.0,6.573961583776156,-24.424167659260668 -815,11.0,12.0,0.0,7.142857142857143 -815,11.0,13.0,-1.5265676088395577,3.1734252729654173 -815,11.0,14.0,-3.0953961826564296,6.097275864326261 -815,11.0,15.0,-1.9519977922801688,4.104359379111847 -815,12.0,11.0,0.0,7.142857142857143 -815,12.0,12.0,0.0,-7.142857142857143 -815,13.0,11.0,-1.5265676088395577,3.1734252729654173 -815,13.0,13.0,4.01751987283902,-5.424299332335067 -815,13.0,14.0,-2.4909522639994623,2.250874059369649 -815,14.0,11.0,-3.0953961826564296,6.097275864326261 -815,14.0,13.0,-2.4909522639994623,2.250874059369649 -815,14.0,14.0,9.365498545964757,-16.01163373210796 -815,14.0,17.0,-1.8108011504072024,3.687418931630696 -815,14.0,22.0,-1.9683489489016612,3.976064876781356 -815,15.0,11.0,-1.9519977922801688,4.104359379111847 -815,15.0,15.0,3.271064728633931,-8.94513365126506 -815,15.0,16.0,-1.3190669363537617,4.8407742721532125 -815,16.0,9.0,-3.956039125715353,10.317447719844054 -815,16.0,15.0,-1.3190669363537617,4.8407742721532125 -815,16.0,16.0,5.275106062069114,-15.158221991997266 -815,17.0,14.0,-1.8108011504072024,3.687418931630696 -815,17.0,17.0,4.886487584415919,-9.906177730909668 -815,17.0,18.0,-3.0756864340087167,6.218758799278971 -815,18.0,17.0,-3.0756864340087167,6.218758799278971 -815,18.0,18.0,8.958039375185187,-17.98346468163191 -815,18.0,19.0,-5.88235294117647,11.76470588235294 -815,19.0,9.0,-1.7848303152666305,3.98535828943083 -815,19.0,18.0,-5.88235294117647,11.76470588235294 -815,19.0,19.0,7.6671832564431,-15.75006417178377 -815,20.0,9.0,-5.101853820159654,10.98071411292983 -815,20.0,20.0,21.876495189895888,-45.10843276170355 -815,20.0,21.0,-16.774641369736234,34.127718648773715 -815,21.0,9.0,-2.619319553382597,5.400770303329455 -815,21.0,20.0,-16.774641369736234,34.127718648773715 -815,21.0,21.0,21.93449907537439,-43.48289181517921 -815,21.0,23.0,-2.5405381522555563,3.95440286307604 -815,22.0,14.0,-1.9683489489016612,3.976064876781356 -815,22.0,22.0,3.429754555384988,-6.965303617315433 -815,22.0,23.0,-1.4614056064833263,2.989238740534077 -815,23.0,21.0,-2.5405381522555563,3.95440286307604 -815,23.0,22.0,-1.4614056064833263,2.989238740534077 -815,23.0,23.0,5.311836702613133,-9.188263657315172 -815,23.0,24.0,-1.3098929438742493,2.287622053705056 -815,24.0,23.0,-1.3098929438742493,2.287622053705056 -815,24.0,24.0,4.495715080321987,-7.864978761969621 -815,24.0,25.0,-1.2165301194494855,1.8171440463475024 -815,24.0,26.0,-1.9692920169982515,3.760212661917064 -815,25.0,24.0,-1.2165301194494855,1.8171440463475024 -815,25.0,25.0,1.2165301194494855,-1.8171440463475024 -815,26.0,24.0,-1.9692920169982515,3.760212661917064 -815,26.0,26.0,3.652281470778589,-9.46044252232512 -815,26.0,27.0,0.0,2.608731947574922 -815,26.0,28.0,-0.99553355095268,1.881005840357816 -815,26.0,29.0,-0.6874559028276572,1.293971494797717 -815,27.0,5.0,-4.362844058012917,15.463571542897856 -815,27.0,7.0,-1.4439790613954469,4.540814658476248 -815,27.0,26.0,0.0,2.608731947574922 -815,27.0,27.0,5.806823119408364,-22.67145722159613 -815,28.0,26.0,-0.99553355095268,1.881005840357816 -815,28.0,28.0,1.9075867579849564,-3.604364401207048 -815,28.0,29.0,-0.9120532070322764,1.7233585608492326 -815,29.0,26.0,-0.6874559028276572,1.293971494797717 -815,29.0,28.0,-0.9120532070322764,1.7233585608492326 -815,29.0,29.0,1.5995091098599337,-3.0173300556469496 -816,0.0,0.0,6.765516048652632,-21.23160167089863 -816,0.0,1.0,-5.224646179885656,15.646726840803398 -816,0.0,2.0,-1.5408698687669766,5.631674830095234 -816,1.0,0.0,-5.224646179885656,15.646726840803398 -816,1.0,1.0,9.75228216552403,-30.648662892676068 -816,1.0,3.0,-1.7055303166990268,5.1973792282565086 -816,1.0,4.0,-1.1359607881738778,4.772479328281356 -816,1.0,5.0,-1.6861448807654689,5.116477495334806 -816,2.0,0.0,-1.5408698687669766,5.631674830095234 -816,2.0,2.0,9.736318911079088,-29.13794745915803 -816,2.0,3.0,-8.19544904231211,23.5308726290628 -816,3.0,1.0,-1.7055303166990268,5.1973792282565086 -816,3.0,2.0,-8.19544904231211,23.5308726290628 -816,3.0,3.0,16.314103089185693,-55.509410535254254 -816,3.0,5.0,-6.413123730174556,22.31120356548123 -816,3.0,11.0,0.0,4.191255364806866 -816,4.0,1.0,-1.1359607881738778,4.772479328281356 -816,4.0,4.0,4.089980824135861,-12.190647245055052 -816,4.0,6.0,-2.954020035961983,7.449267916773697 -816,5.0,1.0,-1.6861448807654689,5.116477495334806 -816,5.0,3.0,-6.413123730174556,22.31120356548123 -816,5.0,5.0,22.341631269034565,-82.8291478657789 -816,5.0,6.0,-3.590210423980992,11.02611441072814 -816,5.0,7.0,-6.289308176100628,22.0125786163522 -816,5.0,8.0,0.0,4.915840805411357 -816,5.0,9.0,0.0,1.8561002591115965 -816,5.0,27.0,-4.362844058012917,15.463571542897856 -816,6.0,4.0,-2.954020035961983,7.449267916773697 -816,6.0,5.0,-3.590210423980992,11.02611441072814 -816,6.0,6.0,6.544230459942975,-18.45668232750184 -816,7.0,5.0,-6.289308176100628,22.0125786163522 -816,7.0,7.0,7.733287237496075,-26.527493274828448 -816,7.0,27.0,-1.4439790613954469,4.540814658476248 -816,8.0,5.0,0.0,4.915840805411357 -816,8.0,8.0,0.0,-18.706293706293707 -816,8.0,9.0,0.0,9.090909090909092 -816,8.0,10.0,0.0,4.807692307692308 -816,9.0,5.0,0.0,1.8561002591115965 -816,9.0,8.0,0.0,9.090909090909092 -816,9.0,9.0,13.462042814524237,-41.3837606675224 -816,9.0,16.0,-3.956039125715353,10.317447719844054 -816,9.0,19.0,-1.7848303152666305,3.98535828943083 -816,9.0,20.0,-5.101853820159654,10.98071411292983 -816,9.0,21.0,-2.619319553382597,5.400770303329455 -816,10.0,8.0,0.0,4.807692307692308 -816,10.0,10.0,0.0,-4.807692307692308 -816,11.0,3.0,0.0,4.191255364806866 -816,11.0,11.0,6.573961583776156,-24.424167659260668 -816,11.0,12.0,0.0,7.142857142857143 -816,11.0,13.0,-1.5265676088395577,3.1734252729654173 -816,11.0,14.0,-3.0953961826564296,6.097275864326261 -816,11.0,15.0,-1.9519977922801688,4.104359379111847 -816,12.0,11.0,0.0,7.142857142857143 -816,12.0,12.0,0.0,-7.142857142857143 -816,13.0,11.0,-1.5265676088395577,3.1734252729654173 -816,13.0,13.0,1.5265676088395577,-3.1734252729654173 -816,14.0,11.0,-3.0953961826564296,6.097275864326261 -816,14.0,14.0,6.874546281965293,-13.760759672738311 -816,14.0,17.0,-1.8108011504072024,3.687418931630696 -816,14.0,22.0,-1.9683489489016612,3.976064876781356 -816,15.0,11.0,-1.9519977922801688,4.104359379111847 -816,15.0,15.0,3.271064728633931,-8.94513365126506 -816,15.0,16.0,-1.3190669363537617,4.8407742721532125 -816,16.0,9.0,-3.956039125715353,10.317447719844054 -816,16.0,15.0,-1.3190669363537617,4.8407742721532125 -816,16.0,16.0,5.275106062069114,-15.158221991997266 -816,17.0,14.0,-1.8108011504072024,3.687418931630696 -816,17.0,17.0,4.886487584415919,-9.906177730909668 -816,17.0,18.0,-3.0756864340087167,6.218758799278971 -816,18.0,17.0,-3.0756864340087167,6.218758799278971 -816,18.0,18.0,8.958039375185187,-17.98346468163191 -816,18.0,19.0,-5.88235294117647,11.76470588235294 -816,19.0,9.0,-1.7848303152666305,3.98535828943083 -816,19.0,18.0,-5.88235294117647,11.76470588235294 -816,19.0,19.0,7.6671832564431,-15.75006417178377 -816,20.0,9.0,-5.101853820159654,10.98071411292983 -816,20.0,20.0,21.876495189895888,-45.10843276170355 -816,20.0,21.0,-16.774641369736234,34.127718648773715 -816,21.0,9.0,-2.619319553382597,5.400770303329455 -816,21.0,20.0,-16.774641369736234,34.127718648773715 -816,21.0,21.0,21.93449907537439,-43.48289181517921 -816,21.0,23.0,-2.5405381522555563,3.95440286307604 -816,22.0,14.0,-1.9683489489016612,3.976064876781356 -816,22.0,22.0,3.429754555384988,-6.965303617315433 -816,22.0,23.0,-1.4614056064833263,2.989238740534077 -816,23.0,21.0,-2.5405381522555563,3.95440286307604 -816,23.0,22.0,-1.4614056064833263,2.989238740534077 -816,23.0,23.0,5.311836702613133,-9.188263657315172 -816,23.0,24.0,-1.3098929438742493,2.287622053705056 -816,24.0,23.0,-1.3098929438742493,2.287622053705056 -816,24.0,24.0,4.495715080321987,-7.864978761969621 -816,24.0,25.0,-1.2165301194494855,1.8171440463475024 -816,24.0,26.0,-1.9692920169982515,3.760212661917064 -816,25.0,24.0,-1.2165301194494855,1.8171440463475024 -816,25.0,25.0,1.2165301194494855,-1.8171440463475024 -816,26.0,24.0,-1.9692920169982515,3.760212661917064 -816,26.0,26.0,3.652281470778589,-9.46044252232512 -816,26.0,27.0,0.0,2.608731947574922 -816,26.0,28.0,-0.99553355095268,1.881005840357816 -816,26.0,29.0,-0.6874559028276572,1.293971494797717 -816,27.0,5.0,-4.362844058012917,15.463571542897856 -816,27.0,7.0,-1.4439790613954469,4.540814658476248 -816,27.0,26.0,0.0,2.608731947574922 -816,27.0,27.0,5.806823119408364,-22.67145722159613 -816,28.0,26.0,-0.99553355095268,1.881005840357816 -816,28.0,28.0,1.9075867579849564,-3.604364401207048 -816,28.0,29.0,-0.9120532070322764,1.7233585608492326 -816,29.0,26.0,-0.6874559028276572,1.293971494797717 -816,29.0,28.0,-0.9120532070322764,1.7233585608492326 -816,29.0,29.0,1.5995091098599337,-3.0173300556469496 -817,0.0,0.0,6.765516048652632,-21.23160167089863 -817,0.0,1.0,-5.224646179885656,15.646726840803398 -817,0.0,2.0,-1.5408698687669766,5.631674830095234 -817,1.0,0.0,-5.224646179885656,15.646726840803398 -817,1.0,1.0,9.75228216552403,-30.648662892676068 -817,1.0,3.0,-1.7055303166990268,5.1973792282565086 -817,1.0,4.0,-1.1359607881738778,4.772479328281356 -817,1.0,5.0,-1.6861448807654689,5.116477495334806 -817,2.0,0.0,-1.5408698687669766,5.631674830095234 -817,2.0,2.0,9.736318911079088,-29.13794745915803 -817,2.0,3.0,-8.19544904231211,23.5308726290628 -817,3.0,1.0,-1.7055303166990268,5.1973792282565086 -817,3.0,2.0,-8.19544904231211,23.5308726290628 -817,3.0,3.0,9.900979359011137,-33.202706969773025 -817,3.0,11.0,0.0,4.191255364806866 -817,4.0,1.0,-1.1359607881738778,4.772479328281356 -817,4.0,4.0,4.089980824135861,-12.190647245055052 -817,4.0,6.0,-2.954020035961983,7.449267916773697 -817,5.0,1.0,-1.6861448807654689,5.116477495334806 -817,5.0,5.0,15.928507538860009,-58.60696415673565 -817,5.0,6.0,-3.590210423980992,11.02611441072814 -817,5.0,7.0,-6.289308176100628,22.0125786163522 -817,5.0,8.0,0.0,4.915840805411357 -817,5.0,27.0,-4.362844058012917,15.463571542897856 -817,6.0,4.0,-2.954020035961983,7.449267916773697 -817,6.0,5.0,-3.590210423980992,11.02611441072814 -817,6.0,6.0,6.544230459942975,-18.45668232750184 -817,7.0,5.0,-6.289308176100628,22.0125786163522 -817,7.0,7.0,7.733287237496075,-26.527493274828448 -817,7.0,27.0,-1.4439790613954469,4.540814658476248 -817,8.0,5.0,0.0,4.915840805411357 -817,8.0,8.0,0.0,-18.706293706293707 -817,8.0,9.0,0.0,9.090909090909092 -817,8.0,10.0,0.0,4.807692307692308 -817,9.0,8.0,0.0,9.090909090909092 -817,9.0,9.0,13.462042814524237,-39.58519951644326 -817,9.0,16.0,-3.956039125715353,10.317447719844054 -817,9.0,19.0,-1.7848303152666305,3.98535828943083 -817,9.0,20.0,-5.101853820159654,10.98071411292983 -817,9.0,21.0,-2.619319553382597,5.400770303329455 -817,10.0,8.0,0.0,4.807692307692308 -817,10.0,10.0,0.0,-4.807692307692308 -817,11.0,3.0,0.0,4.191255364806866 -817,11.0,11.0,6.573961583776156,-24.424167659260668 -817,11.0,12.0,0.0,7.142857142857143 -817,11.0,13.0,-1.5265676088395577,3.1734252729654173 -817,11.0,14.0,-3.0953961826564296,6.097275864326261 -817,11.0,15.0,-1.9519977922801688,4.104359379111847 -817,12.0,11.0,0.0,7.142857142857143 -817,12.0,12.0,0.0,-7.142857142857143 -817,13.0,11.0,-1.5265676088395577,3.1734252729654173 -817,13.0,13.0,4.01751987283902,-5.424299332335067 -817,13.0,14.0,-2.4909522639994623,2.250874059369649 -817,14.0,11.0,-3.0953961826564296,6.097275864326261 -817,14.0,13.0,-2.4909522639994623,2.250874059369649 -817,14.0,14.0,9.365498545964757,-16.01163373210796 -817,14.0,17.0,-1.8108011504072024,3.687418931630696 -817,14.0,22.0,-1.9683489489016612,3.976064876781356 -817,15.0,11.0,-1.9519977922801688,4.104359379111847 -817,15.0,15.0,3.271064728633931,-8.94513365126506 -817,15.0,16.0,-1.3190669363537617,4.8407742721532125 -817,16.0,9.0,-3.956039125715353,10.317447719844054 -817,16.0,15.0,-1.3190669363537617,4.8407742721532125 -817,16.0,16.0,5.275106062069114,-15.158221991997266 -817,17.0,14.0,-1.8108011504072024,3.687418931630696 -817,17.0,17.0,4.886487584415919,-9.906177730909668 -817,17.0,18.0,-3.0756864340087167,6.218758799278971 -817,18.0,17.0,-3.0756864340087167,6.218758799278971 -817,18.0,18.0,8.958039375185187,-17.98346468163191 -817,18.0,19.0,-5.88235294117647,11.76470588235294 -817,19.0,9.0,-1.7848303152666305,3.98535828943083 -817,19.0,18.0,-5.88235294117647,11.76470588235294 -817,19.0,19.0,7.6671832564431,-15.75006417178377 -817,20.0,9.0,-5.101853820159654,10.98071411292983 -817,20.0,20.0,21.876495189895888,-45.10843276170355 -817,20.0,21.0,-16.774641369736234,34.127718648773715 -817,21.0,9.0,-2.619319553382597,5.400770303329455 -817,21.0,20.0,-16.774641369736234,34.127718648773715 -817,21.0,21.0,21.93449907537439,-43.48289181517921 -817,21.0,23.0,-2.5405381522555563,3.95440286307604 -817,22.0,14.0,-1.9683489489016612,3.976064876781356 -817,22.0,22.0,3.429754555384988,-6.965303617315433 -817,22.0,23.0,-1.4614056064833263,2.989238740534077 -817,23.0,21.0,-2.5405381522555563,3.95440286307604 -817,23.0,22.0,-1.4614056064833263,2.989238740534077 -817,23.0,23.0,5.311836702613133,-9.188263657315172 -817,23.0,24.0,-1.3098929438742493,2.287622053705056 -817,24.0,23.0,-1.3098929438742493,2.287622053705056 -817,24.0,24.0,4.495715080321987,-7.864978761969621 -817,24.0,25.0,-1.2165301194494855,1.8171440463475024 -817,24.0,26.0,-1.9692920169982515,3.760212661917064 -817,25.0,24.0,-1.2165301194494855,1.8171440463475024 -817,25.0,25.0,1.2165301194494855,-1.8171440463475024 -817,26.0,24.0,-1.9692920169982515,3.760212661917064 -817,26.0,26.0,3.652281470778589,-9.46044252232512 -817,26.0,27.0,0.0,2.608731947574922 -817,26.0,28.0,-0.99553355095268,1.881005840357816 -817,26.0,29.0,-0.6874559028276572,1.293971494797717 -817,27.0,5.0,-4.362844058012917,15.463571542897856 -817,27.0,7.0,-1.4439790613954469,4.540814658476248 -817,27.0,26.0,0.0,2.608731947574922 -817,27.0,27.0,5.806823119408364,-22.67145722159613 -817,28.0,26.0,-0.99553355095268,1.881005840357816 -817,28.0,28.0,1.9075867579849564,-3.604364401207048 -817,28.0,29.0,-0.9120532070322764,1.7233585608492326 -817,29.0,26.0,-0.6874559028276572,1.293971494797717 -817,29.0,28.0,-0.9120532070322764,1.7233585608492326 -817,29.0,29.0,1.5995091098599337,-3.0173300556469496 -818,0.0,0.0,6.765516048652632,-21.23160167089863 -818,0.0,1.0,-5.224646179885656,15.646726840803398 -818,0.0,2.0,-1.5408698687669766,5.631674830095234 -818,1.0,0.0,-5.224646179885656,15.646726840803398 -818,1.0,1.0,9.75228216552403,-30.648662892676068 -818,1.0,3.0,-1.7055303166990268,5.1973792282565086 -818,1.0,4.0,-1.1359607881738778,4.772479328281356 -818,1.0,5.0,-1.6861448807654689,5.116477495334806 -818,2.0,0.0,-1.5408698687669766,5.631674830095234 -818,2.0,2.0,9.736318911079088,-29.13794745915803 -818,2.0,3.0,-8.19544904231211,23.5308726290628 -818,3.0,1.0,-1.7055303166990268,5.1973792282565086 -818,3.0,2.0,-8.19544904231211,23.5308726290628 -818,3.0,3.0,16.314103089185693,-55.509410535254254 -818,3.0,5.0,-6.413123730174556,22.31120356548123 -818,3.0,11.0,0.0,4.191255364806866 -818,4.0,1.0,-1.1359607881738778,4.772479328281356 -818,4.0,4.0,4.089980824135861,-12.190647245055052 -818,4.0,6.0,-2.954020035961983,7.449267916773697 -818,5.0,1.0,-1.6861448807654689,5.116477495334806 -818,5.0,3.0,-6.413123730174556,22.31120356548123 -818,5.0,5.0,22.341631269034565,-82.8291478657789 -818,5.0,6.0,-3.590210423980992,11.02611441072814 -818,5.0,7.0,-6.289308176100628,22.0125786163522 -818,5.0,8.0,0.0,4.915840805411357 -818,5.0,9.0,0.0,1.8561002591115965 -818,5.0,27.0,-4.362844058012917,15.463571542897856 -818,6.0,4.0,-2.954020035961983,7.449267916773697 -818,6.0,5.0,-3.590210423980992,11.02611441072814 -818,6.0,6.0,6.544230459942975,-18.45668232750184 -818,7.0,5.0,-6.289308176100628,22.0125786163522 -818,7.0,7.0,7.733287237496075,-26.527493274828448 -818,7.0,27.0,-1.4439790613954469,4.540814658476248 -818,8.0,5.0,0.0,4.915840805411357 -818,8.0,8.0,0.0,-9.615384615384617 -818,8.0,10.0,0.0,4.807692307692308 -818,9.0,5.0,0.0,1.8561002591115965 -818,9.0,9.0,13.462042814524237,-32.29285157661331 -818,9.0,16.0,-3.956039125715353,10.317447719844054 -818,9.0,19.0,-1.7848303152666305,3.98535828943083 -818,9.0,20.0,-5.101853820159654,10.98071411292983 -818,9.0,21.0,-2.619319553382597,5.400770303329455 -818,10.0,8.0,0.0,4.807692307692308 -818,10.0,10.0,0.0,-4.807692307692308 -818,11.0,3.0,0.0,4.191255364806866 -818,11.0,11.0,3.478565401119727,-18.326891794934408 -818,11.0,12.0,0.0,7.142857142857143 -818,11.0,13.0,-1.5265676088395577,3.1734252729654173 -818,11.0,15.0,-1.9519977922801688,4.104359379111847 -818,12.0,11.0,0.0,7.142857142857143 -818,12.0,12.0,0.0,-7.142857142857143 -818,13.0,11.0,-1.5265676088395577,3.1734252729654173 -818,13.0,13.0,4.01751987283902,-5.424299332335067 -818,13.0,14.0,-2.4909522639994623,2.250874059369649 -818,14.0,13.0,-2.4909522639994623,2.250874059369649 -818,14.0,14.0,6.270102363308326,-9.9143578677817 -818,14.0,17.0,-1.8108011504072024,3.687418931630696 -818,14.0,22.0,-1.9683489489016612,3.976064876781356 -818,15.0,11.0,-1.9519977922801688,4.104359379111847 -818,15.0,15.0,3.271064728633931,-8.94513365126506 -818,15.0,16.0,-1.3190669363537617,4.8407742721532125 -818,16.0,9.0,-3.956039125715353,10.317447719844054 -818,16.0,15.0,-1.3190669363537617,4.8407742721532125 -818,16.0,16.0,5.275106062069114,-15.158221991997266 -818,17.0,14.0,-1.8108011504072024,3.687418931630696 -818,17.0,17.0,4.886487584415919,-9.906177730909668 -818,17.0,18.0,-3.0756864340087167,6.218758799278971 -818,18.0,17.0,-3.0756864340087167,6.218758799278971 -818,18.0,18.0,8.958039375185187,-17.98346468163191 -818,18.0,19.0,-5.88235294117647,11.76470588235294 -818,19.0,9.0,-1.7848303152666305,3.98535828943083 -818,19.0,18.0,-5.88235294117647,11.76470588235294 -818,19.0,19.0,7.6671832564431,-15.75006417178377 -818,20.0,9.0,-5.101853820159654,10.98071411292983 -818,20.0,20.0,21.876495189895888,-45.10843276170355 -818,20.0,21.0,-16.774641369736234,34.127718648773715 -818,21.0,9.0,-2.619319553382597,5.400770303329455 -818,21.0,20.0,-16.774641369736234,34.127718648773715 -818,21.0,21.0,21.93449907537439,-43.48289181517921 -818,21.0,23.0,-2.5405381522555563,3.95440286307604 -818,22.0,14.0,-1.9683489489016612,3.976064876781356 -818,22.0,22.0,3.429754555384988,-6.965303617315433 -818,22.0,23.0,-1.4614056064833263,2.989238740534077 -818,23.0,21.0,-2.5405381522555563,3.95440286307604 -818,23.0,22.0,-1.4614056064833263,2.989238740534077 -818,23.0,23.0,5.311836702613133,-9.188263657315172 -818,23.0,24.0,-1.3098929438742493,2.287622053705056 -818,24.0,23.0,-1.3098929438742493,2.287622053705056 -818,24.0,24.0,4.495715080321987,-7.864978761969621 -818,24.0,25.0,-1.2165301194494855,1.8171440463475024 -818,24.0,26.0,-1.9692920169982515,3.760212661917064 -818,25.0,24.0,-1.2165301194494855,1.8171440463475024 -818,25.0,25.0,1.2165301194494855,-1.8171440463475024 -818,26.0,24.0,-1.9692920169982515,3.760212661917064 -818,26.0,26.0,3.652281470778589,-9.46044252232512 -818,26.0,27.0,0.0,2.608731947574922 -818,26.0,28.0,-0.99553355095268,1.881005840357816 -818,26.0,29.0,-0.6874559028276572,1.293971494797717 -818,27.0,5.0,-4.362844058012917,15.463571542897856 -818,27.0,7.0,-1.4439790613954469,4.540814658476248 -818,27.0,26.0,0.0,2.608731947574922 -818,27.0,27.0,5.806823119408364,-22.67145722159613 -818,28.0,26.0,-0.99553355095268,1.881005840357816 -818,28.0,28.0,1.9075867579849564,-3.604364401207048 -818,28.0,29.0,-0.9120532070322764,1.7233585608492326 -818,29.0,26.0,-0.6874559028276572,1.293971494797717 -818,29.0,28.0,-0.9120532070322764,1.7233585608492326 -818,29.0,29.0,1.5995091098599337,-3.0173300556469496 -819,0.0,0.0,6.765516048652632,-21.23160167089863 -819,0.0,1.0,-5.224646179885656,15.646726840803398 -819,0.0,2.0,-1.5408698687669766,5.631674830095234 -819,1.0,0.0,-5.224646179885656,15.646726840803398 -819,1.0,1.0,9.75228216552403,-30.648662892676068 -819,1.0,3.0,-1.7055303166990268,5.1973792282565086 -819,1.0,4.0,-1.1359607881738778,4.772479328281356 -819,1.0,5.0,-1.6861448807654689,5.116477495334806 -819,2.0,0.0,-1.5408698687669766,5.631674830095234 -819,2.0,2.0,9.736318911079088,-29.13794745915803 -819,2.0,3.0,-8.19544904231211,23.5308726290628 -819,3.0,1.0,-1.7055303166990268,5.1973792282565086 -819,3.0,2.0,-8.19544904231211,23.5308726290628 -819,3.0,3.0,16.314103089185693,-55.509410535254254 -819,3.0,5.0,-6.413123730174556,22.31120356548123 -819,3.0,11.0,0.0,4.191255364806866 -819,4.0,1.0,-1.1359607881738778,4.772479328281356 -819,4.0,4.0,4.089980824135861,-12.190647245055052 -819,4.0,6.0,-2.954020035961983,7.449267916773697 -819,5.0,1.0,-1.6861448807654689,5.116477495334806 -819,5.0,3.0,-6.413123730174556,22.31120356548123 -819,5.0,5.0,22.341631269034565,-82.8291478657789 -819,5.0,6.0,-3.590210423980992,11.02611441072814 -819,5.0,7.0,-6.289308176100628,22.0125786163522 -819,5.0,8.0,0.0,4.915840805411357 -819,5.0,9.0,0.0,1.8561002591115965 -819,5.0,27.0,-4.362844058012917,15.463571542897856 -819,6.0,4.0,-2.954020035961983,7.449267916773697 -819,6.0,5.0,-3.590210423980992,11.02611441072814 -819,6.0,6.0,6.544230459942975,-18.45668232750184 -819,7.0,5.0,-6.289308176100628,22.0125786163522 -819,7.0,7.0,7.733287237496075,-26.527493274828448 -819,7.0,27.0,-1.4439790613954469,4.540814658476248 -819,8.0,5.0,0.0,4.915840805411357 -819,8.0,8.0,0.0,-18.706293706293707 -819,8.0,9.0,0.0,9.090909090909092 -819,8.0,10.0,0.0,4.807692307692308 -819,9.0,5.0,0.0,1.8561002591115965 -819,9.0,8.0,0.0,9.090909090909092 -819,9.0,9.0,11.677212499257603,-37.39840237809157 -819,9.0,16.0,-3.956039125715353,10.317447719844054 -819,9.0,20.0,-5.101853820159654,10.98071411292983 -819,9.0,21.0,-2.619319553382597,5.400770303329455 -819,10.0,8.0,0.0,4.807692307692308 -819,10.0,10.0,0.0,-4.807692307692308 -819,11.0,3.0,0.0,4.191255364806866 -819,11.0,11.0,6.573961583776156,-24.424167659260668 -819,11.0,12.0,0.0,7.142857142857143 -819,11.0,13.0,-1.5265676088395577,3.1734252729654173 -819,11.0,14.0,-3.0953961826564296,6.097275864326261 -819,11.0,15.0,-1.9519977922801688,4.104359379111847 -819,12.0,11.0,0.0,7.142857142857143 -819,12.0,12.0,0.0,-7.142857142857143 -819,13.0,11.0,-1.5265676088395577,3.1734252729654173 -819,13.0,13.0,4.01751987283902,-5.424299332335067 -819,13.0,14.0,-2.4909522639994623,2.250874059369649 -819,14.0,11.0,-3.0953961826564296,6.097275864326261 -819,14.0,13.0,-2.4909522639994623,2.250874059369649 -819,14.0,14.0,9.365498545964757,-16.01163373210796 -819,14.0,17.0,-1.8108011504072024,3.687418931630696 -819,14.0,22.0,-1.9683489489016612,3.976064876781356 -819,15.0,11.0,-1.9519977922801688,4.104359379111847 -819,15.0,15.0,3.271064728633931,-8.94513365126506 -819,15.0,16.0,-1.3190669363537617,4.8407742721532125 -819,16.0,9.0,-3.956039125715353,10.317447719844054 -819,16.0,15.0,-1.3190669363537617,4.8407742721532125 -819,16.0,16.0,5.275106062069114,-15.158221991997266 -819,17.0,14.0,-1.8108011504072024,3.687418931630696 -819,17.0,17.0,4.886487584415919,-9.906177730909668 -819,17.0,18.0,-3.0756864340087167,6.218758799278971 -819,18.0,17.0,-3.0756864340087167,6.218758799278971 -819,18.0,18.0,8.958039375185187,-17.98346468163191 -819,18.0,19.0,-5.88235294117647,11.76470588235294 -819,19.0,18.0,-5.88235294117647,11.76470588235294 -819,19.0,19.0,5.88235294117647,-11.76470588235294 -819,20.0,9.0,-5.101853820159654,10.98071411292983 -819,20.0,20.0,21.876495189895888,-45.10843276170355 -819,20.0,21.0,-16.774641369736234,34.127718648773715 -819,21.0,9.0,-2.619319553382597,5.400770303329455 -819,21.0,20.0,-16.774641369736234,34.127718648773715 -819,21.0,21.0,21.93449907537439,-43.48289181517921 -819,21.0,23.0,-2.5405381522555563,3.95440286307604 -819,22.0,14.0,-1.9683489489016612,3.976064876781356 -819,22.0,22.0,3.429754555384988,-6.965303617315433 -819,22.0,23.0,-1.4614056064833263,2.989238740534077 -819,23.0,21.0,-2.5405381522555563,3.95440286307604 -819,23.0,22.0,-1.4614056064833263,2.989238740534077 -819,23.0,23.0,5.311836702613133,-9.188263657315172 -819,23.0,24.0,-1.3098929438742493,2.287622053705056 -819,24.0,23.0,-1.3098929438742493,2.287622053705056 -819,24.0,24.0,4.495715080321987,-7.864978761969621 -819,24.0,25.0,-1.2165301194494855,1.8171440463475024 -819,24.0,26.0,-1.9692920169982515,3.760212661917064 -819,25.0,24.0,-1.2165301194494855,1.8171440463475024 -819,25.0,25.0,1.2165301194494855,-1.8171440463475024 -819,26.0,24.0,-1.9692920169982515,3.760212661917064 -819,26.0,26.0,3.652281470778589,-9.46044252232512 -819,26.0,27.0,0.0,2.608731947574922 -819,26.0,28.0,-0.99553355095268,1.881005840357816 -819,26.0,29.0,-0.6874559028276572,1.293971494797717 -819,27.0,5.0,-4.362844058012917,15.463571542897856 -819,27.0,7.0,-1.4439790613954469,4.540814658476248 -819,27.0,26.0,0.0,2.608731947574922 -819,27.0,27.0,5.806823119408364,-22.67145722159613 -819,28.0,26.0,-0.99553355095268,1.881005840357816 -819,28.0,28.0,1.9075867579849564,-3.604364401207048 -819,28.0,29.0,-0.9120532070322764,1.7233585608492326 -819,29.0,26.0,-0.6874559028276572,1.293971494797717 -819,29.0,28.0,-0.9120532070322764,1.7233585608492326 -819,29.0,29.0,1.5995091098599337,-3.0173300556469496 -820,0.0,0.0,6.765516048652632,-21.23160167089863 -820,0.0,1.0,-5.224646179885656,15.646726840803398 -820,0.0,2.0,-1.5408698687669766,5.631674830095234 -820,1.0,0.0,-5.224646179885656,15.646726840803398 -820,1.0,1.0,9.75228216552403,-30.648662892676068 -820,1.0,3.0,-1.7055303166990268,5.1973792282565086 -820,1.0,4.0,-1.1359607881738778,4.772479328281356 -820,1.0,5.0,-1.6861448807654689,5.116477495334806 -820,2.0,0.0,-1.5408698687669766,5.631674830095234 -820,2.0,2.0,9.736318911079088,-29.13794745915803 -820,2.0,3.0,-8.19544904231211,23.5308726290628 -820,3.0,1.0,-1.7055303166990268,5.1973792282565086 -820,3.0,2.0,-8.19544904231211,23.5308726290628 -820,3.0,3.0,16.314103089185693,-55.509410535254254 -820,3.0,5.0,-6.413123730174556,22.31120356548123 -820,3.0,11.0,0.0,4.191255364806866 -820,4.0,1.0,-1.1359607881738778,4.772479328281356 -820,4.0,4.0,4.089980824135861,-12.190647245055052 -820,4.0,6.0,-2.954020035961983,7.449267916773697 -820,5.0,1.0,-1.6861448807654689,5.116477495334806 -820,5.0,3.0,-6.413123730174556,22.31120356548123 -820,5.0,5.0,22.341631269034565,-82.8291478657789 -820,5.0,6.0,-3.590210423980992,11.02611441072814 -820,5.0,7.0,-6.289308176100628,22.0125786163522 -820,5.0,8.0,0.0,4.915840805411357 -820,5.0,9.0,0.0,1.8561002591115965 -820,5.0,27.0,-4.362844058012917,15.463571542897856 -820,6.0,4.0,-2.954020035961983,7.449267916773697 -820,6.0,5.0,-3.590210423980992,11.02611441072814 -820,6.0,6.0,6.544230459942975,-18.45668232750184 -820,7.0,5.0,-6.289308176100628,22.0125786163522 -820,7.0,7.0,7.733287237496075,-26.527493274828448 -820,7.0,27.0,-1.4439790613954469,4.540814658476248 -820,8.0,5.0,0.0,4.915840805411357 -820,8.0,8.0,0.0,-18.706293706293707 -820,8.0,9.0,0.0,9.090909090909092 -820,8.0,10.0,0.0,4.807692307692308 -820,9.0,5.0,0.0,1.8561002591115965 -820,9.0,8.0,0.0,9.090909090909092 -820,9.0,9.0,13.462042814524237,-41.3837606675224 -820,9.0,16.0,-3.956039125715353,10.317447719844054 -820,9.0,19.0,-1.7848303152666305,3.98535828943083 -820,9.0,20.0,-5.101853820159654,10.98071411292983 -820,9.0,21.0,-2.619319553382597,5.400770303329455 -820,10.0,8.0,0.0,4.807692307692308 -820,10.0,10.0,0.0,-4.807692307692308 -820,11.0,3.0,0.0,4.191255364806866 -820,11.0,11.0,6.573961583776156,-24.424167659260668 -820,11.0,12.0,0.0,7.142857142857143 -820,11.0,13.0,-1.5265676088395577,3.1734252729654173 -820,11.0,14.0,-3.0953961826564296,6.097275864326261 -820,11.0,15.0,-1.9519977922801688,4.104359379111847 -820,12.0,11.0,0.0,7.142857142857143 -820,12.0,12.0,0.0,-7.142857142857143 -820,13.0,11.0,-1.5265676088395577,3.1734252729654173 -820,13.0,13.0,4.01751987283902,-5.424299332335067 -820,13.0,14.0,-2.4909522639994623,2.250874059369649 -820,14.0,11.0,-3.0953961826564296,6.097275864326261 -820,14.0,13.0,-2.4909522639994623,2.250874059369649 -820,14.0,14.0,9.365498545964757,-16.01163373210796 -820,14.0,17.0,-1.8108011504072024,3.687418931630696 -820,14.0,22.0,-1.9683489489016612,3.976064876781356 -820,15.0,11.0,-1.9519977922801688,4.104359379111847 -820,15.0,15.0,1.9519977922801688,-4.104359379111847 -820,16.0,9.0,-3.956039125715353,10.317447719844054 -820,16.0,16.0,3.956039125715353,-10.317447719844054 -820,17.0,14.0,-1.8108011504072024,3.687418931630696 -820,17.0,17.0,4.886487584415919,-9.906177730909668 -820,17.0,18.0,-3.0756864340087167,6.218758799278971 -820,18.0,17.0,-3.0756864340087167,6.218758799278971 -820,18.0,18.0,8.958039375185187,-17.98346468163191 -820,18.0,19.0,-5.88235294117647,11.76470588235294 -820,19.0,9.0,-1.7848303152666305,3.98535828943083 -820,19.0,18.0,-5.88235294117647,11.76470588235294 -820,19.0,19.0,7.6671832564431,-15.75006417178377 -820,20.0,9.0,-5.101853820159654,10.98071411292983 -820,20.0,20.0,21.876495189895888,-45.10843276170355 -820,20.0,21.0,-16.774641369736234,34.127718648773715 -820,21.0,9.0,-2.619319553382597,5.400770303329455 -820,21.0,20.0,-16.774641369736234,34.127718648773715 -820,21.0,21.0,21.93449907537439,-43.48289181517921 -820,21.0,23.0,-2.5405381522555563,3.95440286307604 -820,22.0,14.0,-1.9683489489016612,3.976064876781356 -820,22.0,22.0,3.429754555384988,-6.965303617315433 -820,22.0,23.0,-1.4614056064833263,2.989238740534077 -820,23.0,21.0,-2.5405381522555563,3.95440286307604 -820,23.0,22.0,-1.4614056064833263,2.989238740534077 -820,23.0,23.0,5.311836702613133,-9.188263657315172 -820,23.0,24.0,-1.3098929438742493,2.287622053705056 -820,24.0,23.0,-1.3098929438742493,2.287622053705056 -820,24.0,24.0,2.526423063323735,-4.104766100052558 -820,24.0,25.0,-1.2165301194494855,1.8171440463475024 -820,25.0,24.0,-1.2165301194494855,1.8171440463475024 -820,25.0,25.0,1.2165301194494855,-1.8171440463475024 -820,26.0,26.0,1.6829894537803372,-5.700229860408058 -820,26.0,27.0,0.0,2.608731947574922 -820,26.0,28.0,-0.99553355095268,1.881005840357816 -820,26.0,29.0,-0.6874559028276572,1.293971494797717 -820,27.0,5.0,-4.362844058012917,15.463571542897856 -820,27.0,7.0,-1.4439790613954469,4.540814658476248 -820,27.0,26.0,0.0,2.608731947574922 -820,27.0,27.0,5.806823119408364,-22.67145722159613 -820,28.0,26.0,-0.99553355095268,1.881005840357816 -820,28.0,28.0,1.9075867579849564,-3.604364401207048 -820,28.0,29.0,-0.9120532070322764,1.7233585608492326 -820,29.0,26.0,-0.6874559028276572,1.293971494797717 -820,29.0,28.0,-0.9120532070322764,1.7233585608492326 -820,29.0,29.0,1.5995091098599337,-3.0173300556469496 -821,0.0,0.0,6.765516048652632,-21.23160167089863 -821,0.0,1.0,-5.224646179885656,15.646726840803398 -821,0.0,2.0,-1.5408698687669766,5.631674830095234 -821,1.0,0.0,-5.224646179885656,15.646726840803398 -821,1.0,1.0,9.75228216552403,-30.648662892676068 -821,1.0,3.0,-1.7055303166990268,5.1973792282565086 -821,1.0,4.0,-1.1359607881738778,4.772479328281356 -821,1.0,5.0,-1.6861448807654689,5.116477495334806 -821,2.0,0.0,-1.5408698687669766,5.631674830095234 -821,2.0,2.0,9.736318911079088,-29.13794745915803 -821,2.0,3.0,-8.19544904231211,23.5308726290628 -821,3.0,1.0,-1.7055303166990268,5.1973792282565086 -821,3.0,2.0,-8.19544904231211,23.5308726290628 -821,3.0,3.0,16.314103089185693,-55.509410535254254 -821,3.0,5.0,-6.413123730174556,22.31120356548123 -821,3.0,11.0,0.0,4.191255364806866 -821,4.0,1.0,-1.1359607881738778,4.772479328281356 -821,4.0,4.0,1.1359607881738778,-4.751579328281355 -821,5.0,1.0,-1.6861448807654689,5.116477495334806 -821,5.0,3.0,-6.413123730174556,22.31120356548123 -821,5.0,5.0,22.341631269034565,-82.8291478657789 -821,5.0,6.0,-3.590210423980992,11.02611441072814 -821,5.0,7.0,-6.289308176100628,22.0125786163522 -821,5.0,8.0,0.0,4.915840805411357 -821,5.0,9.0,0.0,1.8561002591115965 -821,5.0,27.0,-4.362844058012917,15.463571542897856 -821,6.0,5.0,-3.590210423980992,11.02611441072814 -821,6.0,6.0,3.590210423980992,-11.01761441072814 -821,7.0,5.0,-6.289308176100628,22.0125786163522 -821,7.0,7.0,7.733287237496075,-26.527493274828448 -821,7.0,27.0,-1.4439790613954469,4.540814658476248 -821,8.0,5.0,0.0,4.915840805411357 -821,8.0,8.0,0.0,-18.706293706293707 -821,8.0,9.0,0.0,9.090909090909092 -821,8.0,10.0,0.0,4.807692307692308 -821,9.0,5.0,0.0,1.8561002591115965 -821,9.0,8.0,0.0,9.090909090909092 -821,9.0,9.0,13.462042814524237,-41.3837606675224 -821,9.0,16.0,-3.956039125715353,10.317447719844054 -821,9.0,19.0,-1.7848303152666305,3.98535828943083 -821,9.0,20.0,-5.101853820159654,10.98071411292983 -821,9.0,21.0,-2.619319553382597,5.400770303329455 -821,10.0,8.0,0.0,4.807692307692308 -821,10.0,10.0,0.0,-4.807692307692308 -821,11.0,3.0,0.0,4.191255364806866 -821,11.0,11.0,6.573961583776156,-24.424167659260668 -821,11.0,12.0,0.0,7.142857142857143 -821,11.0,13.0,-1.5265676088395577,3.1734252729654173 -821,11.0,14.0,-3.0953961826564296,6.097275864326261 -821,11.0,15.0,-1.9519977922801688,4.104359379111847 -821,12.0,11.0,0.0,7.142857142857143 -821,12.0,12.0,0.0,-7.142857142857143 -821,13.0,11.0,-1.5265676088395577,3.1734252729654173 -821,13.0,13.0,4.01751987283902,-5.424299332335067 -821,13.0,14.0,-2.4909522639994623,2.250874059369649 -821,14.0,11.0,-3.0953961826564296,6.097275864326261 -821,14.0,13.0,-2.4909522639994623,2.250874059369649 -821,14.0,14.0,9.365498545964757,-16.01163373210796 -821,14.0,17.0,-1.8108011504072024,3.687418931630696 -821,14.0,22.0,-1.9683489489016612,3.976064876781356 -821,15.0,11.0,-1.9519977922801688,4.104359379111847 -821,15.0,15.0,3.271064728633931,-8.94513365126506 -821,15.0,16.0,-1.3190669363537617,4.8407742721532125 -821,16.0,9.0,-3.956039125715353,10.317447719844054 -821,16.0,15.0,-1.3190669363537617,4.8407742721532125 -821,16.0,16.0,5.275106062069114,-15.158221991997266 -821,17.0,14.0,-1.8108011504072024,3.687418931630696 -821,17.0,17.0,4.886487584415919,-9.906177730909668 -821,17.0,18.0,-3.0756864340087167,6.218758799278971 -821,18.0,17.0,-3.0756864340087167,6.218758799278971 -821,18.0,18.0,8.958039375185187,-17.98346468163191 -821,18.0,19.0,-5.88235294117647,11.76470588235294 -821,19.0,9.0,-1.7848303152666305,3.98535828943083 -821,19.0,18.0,-5.88235294117647,11.76470588235294 -821,19.0,19.0,7.6671832564431,-15.75006417178377 -821,20.0,9.0,-5.101853820159654,10.98071411292983 -821,20.0,20.0,21.876495189895888,-45.10843276170355 -821,20.0,21.0,-16.774641369736234,34.127718648773715 -821,21.0,9.0,-2.619319553382597,5.400770303329455 -821,21.0,20.0,-16.774641369736234,34.127718648773715 -821,21.0,21.0,21.93449907537439,-43.48289181517921 -821,21.0,23.0,-2.5405381522555563,3.95440286307604 -821,22.0,14.0,-1.9683489489016612,3.976064876781356 -821,22.0,22.0,3.429754555384988,-6.965303617315433 -821,22.0,23.0,-1.4614056064833263,2.989238740534077 -821,23.0,21.0,-2.5405381522555563,3.95440286307604 -821,23.0,22.0,-1.4614056064833263,2.989238740534077 -821,23.0,23.0,5.311836702613133,-9.188263657315172 -821,23.0,24.0,-1.3098929438742493,2.287622053705056 -821,24.0,23.0,-1.3098929438742493,2.287622053705056 -821,24.0,24.0,4.495715080321987,-7.864978761969621 -821,24.0,25.0,-1.2165301194494855,1.8171440463475024 -821,24.0,26.0,-1.9692920169982515,3.760212661917064 -821,25.0,24.0,-1.2165301194494855,1.8171440463475024 -821,25.0,25.0,1.2165301194494855,-1.8171440463475024 -821,26.0,24.0,-1.9692920169982515,3.760212661917064 -821,26.0,26.0,3.652281470778589,-9.46044252232512 -821,26.0,27.0,0.0,2.608731947574922 -821,26.0,28.0,-0.99553355095268,1.881005840357816 -821,26.0,29.0,-0.6874559028276572,1.293971494797717 -821,27.0,5.0,-4.362844058012917,15.463571542897856 -821,27.0,7.0,-1.4439790613954469,4.540814658476248 -821,27.0,26.0,0.0,2.608731947574922 -821,27.0,27.0,5.806823119408364,-22.67145722159613 -821,28.0,26.0,-0.99553355095268,1.881005840357816 -821,28.0,28.0,1.9075867579849564,-3.604364401207048 -821,28.0,29.0,-0.9120532070322764,1.7233585608492326 -821,29.0,26.0,-0.6874559028276572,1.293971494797717 -821,29.0,28.0,-0.9120532070322764,1.7233585608492326 -821,29.0,29.0,1.5995091098599337,-3.0173300556469496 -822,0.0,0.0,6.765516048652632,-21.23160167089863 -822,0.0,1.0,-5.224646179885656,15.646726840803398 -822,0.0,2.0,-1.5408698687669766,5.631674830095234 -822,1.0,0.0,-5.224646179885656,15.646726840803398 -822,1.0,1.0,9.75228216552403,-30.648662892676068 -822,1.0,3.0,-1.7055303166990268,5.1973792282565086 -822,1.0,4.0,-1.1359607881738778,4.772479328281356 -822,1.0,5.0,-1.6861448807654689,5.116477495334806 -822,2.0,0.0,-1.5408698687669766,5.631674830095234 -822,2.0,2.0,9.736318911079088,-29.13794745915803 -822,2.0,3.0,-8.19544904231211,23.5308726290628 -822,3.0,1.0,-1.7055303166990268,5.1973792282565086 -822,3.0,2.0,-8.19544904231211,23.5308726290628 -822,3.0,3.0,16.314103089185693,-55.509410535254254 -822,3.0,5.0,-6.413123730174556,22.31120356548123 -822,3.0,11.0,0.0,4.191255364806866 -822,4.0,1.0,-1.1359607881738778,4.772479328281356 -822,4.0,4.0,4.089980824135861,-12.190647245055052 -822,4.0,6.0,-2.954020035961983,7.449267916773697 -822,5.0,1.0,-1.6861448807654689,5.116477495334806 -822,5.0,3.0,-6.413123730174556,22.31120356548123 -822,5.0,5.0,22.341631269034565,-82.8291478657789 -822,5.0,6.0,-3.590210423980992,11.02611441072814 -822,5.0,7.0,-6.289308176100628,22.0125786163522 -822,5.0,8.0,0.0,4.915840805411357 -822,5.0,9.0,0.0,1.8561002591115965 -822,5.0,27.0,-4.362844058012917,15.463571542897856 -822,6.0,4.0,-2.954020035961983,7.449267916773697 -822,6.0,5.0,-3.590210423980992,11.02611441072814 -822,6.0,6.0,6.544230459942975,-18.45668232750184 -822,7.0,5.0,-6.289308176100628,22.0125786163522 -822,7.0,7.0,7.733287237496075,-26.527493274828448 -822,7.0,27.0,-1.4439790613954469,4.540814658476248 -822,8.0,5.0,0.0,4.915840805411357 -822,8.0,8.0,0.0,-18.706293706293707 -822,8.0,9.0,0.0,9.090909090909092 -822,8.0,10.0,0.0,4.807692307692308 -822,9.0,5.0,0.0,1.8561002591115965 -822,9.0,8.0,0.0,9.090909090909092 -822,9.0,9.0,13.462042814524237,-41.3837606675224 -822,9.0,16.0,-3.956039125715353,10.317447719844054 -822,9.0,19.0,-1.7848303152666305,3.98535828943083 -822,9.0,20.0,-5.101853820159654,10.98071411292983 -822,9.0,21.0,-2.619319553382597,5.400770303329455 -822,10.0,8.0,0.0,4.807692307692308 -822,10.0,10.0,0.0,-4.807692307692308 -822,11.0,3.0,0.0,4.191255364806866 -822,11.0,11.0,6.573961583776156,-24.424167659260668 -822,11.0,12.0,0.0,7.142857142857143 -822,11.0,13.0,-1.5265676088395577,3.1734252729654173 -822,11.0,14.0,-3.0953961826564296,6.097275864326261 -822,11.0,15.0,-1.9519977922801688,4.104359379111847 -822,12.0,11.0,0.0,7.142857142857143 -822,12.0,12.0,0.0,-7.142857142857143 -822,13.0,11.0,-1.5265676088395577,3.1734252729654173 -822,13.0,13.0,4.01751987283902,-5.424299332335067 -822,13.0,14.0,-2.4909522639994623,2.250874059369649 -822,14.0,11.0,-3.0953961826564296,6.097275864326261 -822,14.0,13.0,-2.4909522639994623,2.250874059369649 -822,14.0,14.0,9.365498545964757,-16.01163373210796 -822,14.0,17.0,-1.8108011504072024,3.687418931630696 -822,14.0,22.0,-1.9683489489016612,3.976064876781356 -822,15.0,11.0,-1.9519977922801688,4.104359379111847 -822,15.0,15.0,3.271064728633931,-8.94513365126506 -822,15.0,16.0,-1.3190669363537617,4.8407742721532125 -822,16.0,9.0,-3.956039125715353,10.317447719844054 -822,16.0,15.0,-1.3190669363537617,4.8407742721532125 -822,16.0,16.0,5.275106062069114,-15.158221991997266 -822,17.0,14.0,-1.8108011504072024,3.687418931630696 -822,17.0,17.0,4.886487584415919,-9.906177730909668 -822,17.0,18.0,-3.0756864340087167,6.218758799278971 -822,18.0,17.0,-3.0756864340087167,6.218758799278971 -822,18.0,18.0,8.958039375185187,-17.98346468163191 -822,18.0,19.0,-5.88235294117647,11.76470588235294 -822,19.0,9.0,-1.7848303152666305,3.98535828943083 -822,19.0,18.0,-5.88235294117647,11.76470588235294 -822,19.0,19.0,7.6671832564431,-15.75006417178377 -822,20.0,9.0,-5.101853820159654,10.98071411292983 -822,20.0,20.0,21.876495189895888,-45.10843276170355 -822,20.0,21.0,-16.774641369736234,34.127718648773715 -822,21.0,9.0,-2.619319553382597,5.400770303329455 -822,21.0,20.0,-16.774641369736234,34.127718648773715 -822,21.0,21.0,21.93449907537439,-43.48289181517921 -822,21.0,23.0,-2.5405381522555563,3.95440286307604 -822,22.0,14.0,-1.9683489489016612,3.976064876781356 -822,22.0,22.0,3.429754555384988,-6.965303617315433 -822,22.0,23.0,-1.4614056064833263,2.989238740534077 -822,23.0,21.0,-2.5405381522555563,3.95440286307604 -822,23.0,22.0,-1.4614056064833263,2.989238740534077 -822,23.0,23.0,5.311836702613133,-9.188263657315172 -822,23.0,24.0,-1.3098929438742493,2.287622053705056 -822,24.0,23.0,-1.3098929438742493,2.287622053705056 -822,24.0,24.0,4.495715080321987,-7.864978761969621 -822,24.0,25.0,-1.2165301194494855,1.8171440463475024 -822,24.0,26.0,-1.9692920169982515,3.760212661917064 -822,25.0,24.0,-1.2165301194494855,1.8171440463475024 -822,25.0,25.0,1.2165301194494855,-1.8171440463475024 -822,26.0,24.0,-1.9692920169982515,3.760212661917064 -822,26.0,26.0,3.652281470778589,-9.46044252232512 -822,26.0,27.0,0.0,2.608731947574922 -822,26.0,28.0,-0.99553355095268,1.881005840357816 -822,26.0,29.0,-0.6874559028276572,1.293971494797717 -822,27.0,5.0,-4.362844058012917,15.463571542897856 -822,27.0,7.0,-1.4439790613954469,4.540814658476248 -822,27.0,26.0,0.0,2.608731947574922 -822,27.0,27.0,5.806823119408364,-22.67145722159613 -822,28.0,26.0,-0.99553355095268,1.881005840357816 -822,28.0,28.0,1.9075867579849564,-3.604364401207048 -822,28.0,29.0,-0.9120532070322764,1.7233585608492326 -822,29.0,26.0,-0.6874559028276572,1.293971494797717 -822,29.0,28.0,-0.9120532070322764,1.7233585608492326 -822,29.0,29.0,1.5995091098599337,-3.0173300556469496 -823,0.0,0.0,6.765516048652632,-21.23160167089863 -823,0.0,1.0,-5.224646179885656,15.646726840803398 -823,0.0,2.0,-1.5408698687669766,5.631674830095234 -823,1.0,0.0,-5.224646179885656,15.646726840803398 -823,1.0,1.0,9.75228216552403,-30.648662892676068 -823,1.0,3.0,-1.7055303166990268,5.1973792282565086 -823,1.0,4.0,-1.1359607881738778,4.772479328281356 -823,1.0,5.0,-1.6861448807654689,5.116477495334806 -823,2.0,0.0,-1.5408698687669766,5.631674830095234 -823,2.0,2.0,9.736318911079088,-29.13794745915803 -823,2.0,3.0,-8.19544904231211,23.5308726290628 -823,3.0,1.0,-1.7055303166990268,5.1973792282565086 -823,3.0,2.0,-8.19544904231211,23.5308726290628 -823,3.0,3.0,9.900979359011137,-33.202706969773025 -823,3.0,11.0,0.0,4.191255364806866 -823,4.0,1.0,-1.1359607881738778,4.772479328281356 -823,4.0,4.0,4.089980824135861,-12.190647245055052 -823,4.0,6.0,-2.954020035961983,7.449267916773697 -823,5.0,1.0,-1.6861448807654689,5.116477495334806 -823,5.0,5.0,15.928507538860009,-60.52244430029767 -823,5.0,6.0,-3.590210423980992,11.02611441072814 -823,5.0,7.0,-6.289308176100628,22.0125786163522 -823,5.0,8.0,0.0,4.915840805411357 -823,5.0,9.0,0.0,1.8561002591115965 -823,5.0,27.0,-4.362844058012917,15.463571542897856 -823,6.0,4.0,-2.954020035961983,7.449267916773697 -823,6.0,5.0,-3.590210423980992,11.02611441072814 -823,6.0,6.0,6.544230459942975,-18.45668232750184 -823,7.0,5.0,-6.289308176100628,22.0125786163522 -823,7.0,7.0,7.733287237496075,-26.527493274828448 -823,7.0,27.0,-1.4439790613954469,4.540814658476248 -823,8.0,5.0,0.0,4.915840805411357 -823,8.0,8.0,0.0,-18.706293706293707 -823,8.0,9.0,0.0,9.090909090909092 -823,8.0,10.0,0.0,4.807692307692308 -823,9.0,5.0,0.0,1.8561002591115965 -823,9.0,8.0,0.0,9.090909090909092 -823,9.0,9.0,13.462042814524237,-41.3837606675224 -823,9.0,16.0,-3.956039125715353,10.317447719844054 -823,9.0,19.0,-1.7848303152666305,3.98535828943083 -823,9.0,20.0,-5.101853820159654,10.98071411292983 -823,9.0,21.0,-2.619319553382597,5.400770303329455 -823,10.0,8.0,0.0,4.807692307692308 -823,10.0,10.0,0.0,-4.807692307692308 -823,11.0,3.0,0.0,4.191255364806866 -823,11.0,11.0,6.573961583776156,-24.424167659260668 -823,11.0,12.0,0.0,7.142857142857143 -823,11.0,13.0,-1.5265676088395577,3.1734252729654173 -823,11.0,14.0,-3.0953961826564296,6.097275864326261 -823,11.0,15.0,-1.9519977922801688,4.104359379111847 -823,12.0,11.0,0.0,7.142857142857143 -823,12.0,12.0,0.0,-7.142857142857143 -823,13.0,11.0,-1.5265676088395577,3.1734252729654173 -823,13.0,13.0,4.01751987283902,-5.424299332335067 -823,13.0,14.0,-2.4909522639994623,2.250874059369649 -823,14.0,11.0,-3.0953961826564296,6.097275864326261 -823,14.0,13.0,-2.4909522639994623,2.250874059369649 -823,14.0,14.0,9.365498545964757,-16.01163373210796 -823,14.0,17.0,-1.8108011504072024,3.687418931630696 -823,14.0,22.0,-1.9683489489016612,3.976064876781356 -823,15.0,11.0,-1.9519977922801688,4.104359379111847 -823,15.0,15.0,3.271064728633931,-8.94513365126506 -823,15.0,16.0,-1.3190669363537617,4.8407742721532125 -823,16.0,9.0,-3.956039125715353,10.317447719844054 -823,16.0,15.0,-1.3190669363537617,4.8407742721532125 -823,16.0,16.0,5.275106062069114,-15.158221991997266 -823,17.0,14.0,-1.8108011504072024,3.687418931630696 -823,17.0,17.0,4.886487584415919,-9.906177730909668 -823,17.0,18.0,-3.0756864340087167,6.218758799278971 -823,18.0,17.0,-3.0756864340087167,6.218758799278971 -823,18.0,18.0,8.958039375185187,-17.98346468163191 -823,18.0,19.0,-5.88235294117647,11.76470588235294 -823,19.0,9.0,-1.7848303152666305,3.98535828943083 -823,19.0,18.0,-5.88235294117647,11.76470588235294 -823,19.0,19.0,7.6671832564431,-15.75006417178377 -823,20.0,9.0,-5.101853820159654,10.98071411292983 -823,20.0,20.0,21.876495189895888,-45.10843276170355 -823,20.0,21.0,-16.774641369736234,34.127718648773715 -823,21.0,9.0,-2.619319553382597,5.400770303329455 -823,21.0,20.0,-16.774641369736234,34.127718648773715 -823,21.0,21.0,21.93449907537439,-43.48289181517921 -823,21.0,23.0,-2.5405381522555563,3.95440286307604 -823,22.0,14.0,-1.9683489489016612,3.976064876781356 -823,22.0,22.0,3.429754555384988,-6.965303617315433 -823,22.0,23.0,-1.4614056064833263,2.989238740534077 -823,23.0,21.0,-2.5405381522555563,3.95440286307604 -823,23.0,22.0,-1.4614056064833263,2.989238740534077 -823,23.0,23.0,5.311836702613133,-9.188263657315172 -823,23.0,24.0,-1.3098929438742493,2.287622053705056 -823,24.0,23.0,-1.3098929438742493,2.287622053705056 -823,24.0,24.0,4.495715080321987,-7.864978761969621 -823,24.0,25.0,-1.2165301194494855,1.8171440463475024 -823,24.0,26.0,-1.9692920169982515,3.760212661917064 -823,25.0,24.0,-1.2165301194494855,1.8171440463475024 -823,25.0,25.0,1.2165301194494855,-1.8171440463475024 -823,26.0,24.0,-1.9692920169982515,3.760212661917064 -823,26.0,26.0,3.652281470778589,-9.46044252232512 -823,26.0,27.0,0.0,2.608731947574922 -823,26.0,28.0,-0.99553355095268,1.881005840357816 -823,26.0,29.0,-0.6874559028276572,1.293971494797717 -823,27.0,5.0,-4.362844058012917,15.463571542897856 -823,27.0,7.0,-1.4439790613954469,4.540814658476248 -823,27.0,26.0,0.0,2.608731947574922 -823,27.0,27.0,5.806823119408364,-22.67145722159613 -823,28.0,26.0,-0.99553355095268,1.881005840357816 -823,28.0,28.0,1.9075867579849564,-3.604364401207048 -823,28.0,29.0,-0.9120532070322764,1.7233585608492326 -823,29.0,26.0,-0.6874559028276572,1.293971494797717 -823,29.0,28.0,-0.9120532070322764,1.7233585608492326 -823,29.0,29.0,1.5995091098599337,-3.0173300556469496 -824,0.0,0.0,6.765516048652632,-21.23160167089863 -824,0.0,1.0,-5.224646179885656,15.646726840803398 -824,0.0,2.0,-1.5408698687669766,5.631674830095234 -824,1.0,0.0,-5.224646179885656,15.646726840803398 -824,1.0,1.0,9.75228216552403,-30.648662892676068 -824,1.0,3.0,-1.7055303166990268,5.1973792282565086 -824,1.0,4.0,-1.1359607881738778,4.772479328281356 -824,1.0,5.0,-1.6861448807654689,5.116477495334806 -824,2.0,0.0,-1.5408698687669766,5.631674830095234 -824,2.0,2.0,9.736318911079088,-29.13794745915803 -824,2.0,3.0,-8.19544904231211,23.5308726290628 -824,3.0,1.0,-1.7055303166990268,5.1973792282565086 -824,3.0,2.0,-8.19544904231211,23.5308726290628 -824,3.0,3.0,16.314103089185693,-55.509410535254254 -824,3.0,5.0,-6.413123730174556,22.31120356548123 -824,3.0,11.0,0.0,4.191255364806866 -824,4.0,1.0,-1.1359607881738778,4.772479328281356 -824,4.0,4.0,4.089980824135861,-12.190647245055052 -824,4.0,6.0,-2.954020035961983,7.449267916773697 -824,5.0,1.0,-1.6861448807654689,5.116477495334806 -824,5.0,3.0,-6.413123730174556,22.31120356548123 -824,5.0,5.0,22.341631269034565,-82.8291478657789 -824,5.0,6.0,-3.590210423980992,11.02611441072814 -824,5.0,7.0,-6.289308176100628,22.0125786163522 -824,5.0,8.0,0.0,4.915840805411357 -824,5.0,9.0,0.0,1.8561002591115965 -824,5.0,27.0,-4.362844058012917,15.463571542897856 -824,6.0,4.0,-2.954020035961983,7.449267916773697 -824,6.0,5.0,-3.590210423980992,11.02611441072814 -824,6.0,6.0,6.544230459942975,-18.45668232750184 -824,7.0,5.0,-6.289308176100628,22.0125786163522 -824,7.0,7.0,7.733287237496075,-26.527493274828448 -824,7.0,27.0,-1.4439790613954469,4.540814658476248 -824,8.0,5.0,0.0,4.915840805411357 -824,8.0,8.0,0.0,-18.706293706293707 -824,8.0,9.0,0.0,9.090909090909092 -824,8.0,10.0,0.0,4.807692307692308 -824,9.0,5.0,0.0,1.8561002591115965 -824,9.0,8.0,0.0,9.090909090909092 -824,9.0,9.0,13.462042814524237,-41.3837606675224 -824,9.0,16.0,-3.956039125715353,10.317447719844054 -824,9.0,19.0,-1.7848303152666305,3.98535828943083 -824,9.0,20.0,-5.101853820159654,10.98071411292983 -824,9.0,21.0,-2.619319553382597,5.400770303329455 -824,10.0,8.0,0.0,4.807692307692308 -824,10.0,10.0,0.0,-4.807692307692308 -824,11.0,3.0,0.0,4.191255364806866 -824,11.0,11.0,6.573961583776156,-24.424167659260668 -824,11.0,12.0,0.0,7.142857142857143 -824,11.0,13.0,-1.5265676088395577,3.1734252729654173 -824,11.0,14.0,-3.0953961826564296,6.097275864326261 -824,11.0,15.0,-1.9519977922801688,4.104359379111847 -824,12.0,11.0,0.0,7.142857142857143 -824,12.0,12.0,0.0,-7.142857142857143 -824,13.0,11.0,-1.5265676088395577,3.1734252729654173 -824,13.0,13.0,4.01751987283902,-5.424299332335067 -824,13.0,14.0,-2.4909522639994623,2.250874059369649 -824,14.0,11.0,-3.0953961826564296,6.097275864326261 -824,14.0,13.0,-2.4909522639994623,2.250874059369649 -824,14.0,14.0,9.365498545964757,-16.01163373210796 -824,14.0,17.0,-1.8108011504072024,3.687418931630696 -824,14.0,22.0,-1.9683489489016612,3.976064876781356 -824,15.0,11.0,-1.9519977922801688,4.104359379111847 -824,15.0,15.0,3.271064728633931,-8.94513365126506 -824,15.0,16.0,-1.3190669363537617,4.8407742721532125 -824,16.0,9.0,-3.956039125715353,10.317447719844054 -824,16.0,15.0,-1.3190669363537617,4.8407742721532125 -824,16.0,16.0,5.275106062069114,-15.158221991997266 -824,17.0,14.0,-1.8108011504072024,3.687418931630696 -824,17.0,17.0,4.886487584415919,-9.906177730909668 -824,17.0,18.0,-3.0756864340087167,6.218758799278971 -824,18.0,17.0,-3.0756864340087167,6.218758799278971 -824,18.0,18.0,8.958039375185187,-17.98346468163191 -824,18.0,19.0,-5.88235294117647,11.76470588235294 -824,19.0,9.0,-1.7848303152666305,3.98535828943083 -824,19.0,18.0,-5.88235294117647,11.76470588235294 -824,19.0,19.0,7.6671832564431,-15.75006417178377 -824,20.0,9.0,-5.101853820159654,10.98071411292983 -824,20.0,20.0,21.876495189895888,-45.10843276170355 -824,20.0,21.0,-16.774641369736234,34.127718648773715 -824,21.0,9.0,-2.619319553382597,5.400770303329455 -824,21.0,20.0,-16.774641369736234,34.127718648773715 -824,21.0,21.0,21.93449907537439,-43.48289181517921 -824,21.0,23.0,-2.5405381522555563,3.95440286307604 -824,22.0,14.0,-1.9683489489016612,3.976064876781356 -824,22.0,22.0,3.429754555384988,-6.965303617315433 -824,22.0,23.0,-1.4614056064833263,2.989238740534077 -824,23.0,21.0,-2.5405381522555563,3.95440286307604 -824,23.0,22.0,-1.4614056064833263,2.989238740534077 -824,23.0,23.0,5.311836702613133,-9.188263657315172 -824,23.0,24.0,-1.3098929438742493,2.287622053705056 -824,24.0,23.0,-1.3098929438742493,2.287622053705056 -824,24.0,24.0,4.495715080321987,-7.864978761969621 -824,24.0,25.0,-1.2165301194494855,1.8171440463475024 -824,24.0,26.0,-1.9692920169982515,3.760212661917064 -824,25.0,24.0,-1.2165301194494855,1.8171440463475024 -824,25.0,25.0,1.2165301194494855,-1.8171440463475024 -824,26.0,24.0,-1.9692920169982515,3.760212661917064 -824,26.0,26.0,3.652281470778589,-9.46044252232512 -824,26.0,27.0,0.0,2.608731947574922 -824,26.0,28.0,-0.99553355095268,1.881005840357816 -824,26.0,29.0,-0.6874559028276572,1.293971494797717 -824,27.0,5.0,-4.362844058012917,15.463571542897856 -824,27.0,7.0,-1.4439790613954469,4.540814658476248 -824,27.0,26.0,0.0,2.608731947574922 -824,27.0,27.0,5.806823119408364,-22.67145722159613 -824,28.0,26.0,-0.99553355095268,1.881005840357816 -824,28.0,28.0,1.9075867579849564,-3.604364401207048 -824,28.0,29.0,-0.9120532070322764,1.7233585608492326 -824,29.0,26.0,-0.6874559028276572,1.293971494797717 -824,29.0,28.0,-0.9120532070322764,1.7233585608492326 -824,29.0,29.0,1.5995091098599337,-3.0173300556469496 -825,0.0,0.0,6.765516048652632,-21.23160167089863 -825,0.0,1.0,-5.224646179885656,15.646726840803398 -825,0.0,2.0,-1.5408698687669766,5.631674830095234 -825,1.0,0.0,-5.224646179885656,15.646726840803398 -825,1.0,1.0,9.75228216552403,-30.648662892676068 -825,1.0,3.0,-1.7055303166990268,5.1973792282565086 -825,1.0,4.0,-1.1359607881738778,4.772479328281356 -825,1.0,5.0,-1.6861448807654689,5.116477495334806 -825,2.0,0.0,-1.5408698687669766,5.631674830095234 -825,2.0,2.0,9.736318911079088,-29.13794745915803 -825,2.0,3.0,-8.19544904231211,23.5308726290628 -825,3.0,1.0,-1.7055303166990268,5.1973792282565086 -825,3.0,2.0,-8.19544904231211,23.5308726290628 -825,3.0,3.0,16.314103089185693,-55.509410535254254 -825,3.0,5.0,-6.413123730174556,22.31120356548123 -825,3.0,11.0,0.0,4.191255364806866 -825,4.0,1.0,-1.1359607881738778,4.772479328281356 -825,4.0,4.0,4.089980824135861,-12.190647245055052 -825,4.0,6.0,-2.954020035961983,7.449267916773697 -825,5.0,1.0,-1.6861448807654689,5.116477495334806 -825,5.0,3.0,-6.413123730174556,22.31120356548123 -825,5.0,5.0,18.75142084505357,-71.81153345505078 -825,5.0,7.0,-6.289308176100628,22.0125786163522 -825,5.0,8.0,0.0,4.915840805411357 -825,5.0,9.0,0.0,1.8561002591115965 -825,5.0,27.0,-4.362844058012917,15.463571542897856 -825,6.0,4.0,-2.954020035961983,7.449267916773697 -825,6.0,6.0,2.954020035961983,-7.439067916773697 -825,7.0,5.0,-6.289308176100628,22.0125786163522 -825,7.0,7.0,7.733287237496075,-26.527493274828448 -825,7.0,27.0,-1.4439790613954469,4.540814658476248 -825,8.0,5.0,0.0,4.915840805411357 -825,8.0,8.0,0.0,-18.706293706293707 -825,8.0,9.0,0.0,9.090909090909092 -825,8.0,10.0,0.0,4.807692307692308 -825,9.0,5.0,0.0,1.8561002591115965 -825,9.0,8.0,0.0,9.090909090909092 -825,9.0,9.0,13.462042814524237,-41.3837606675224 -825,9.0,16.0,-3.956039125715353,10.317447719844054 -825,9.0,19.0,-1.7848303152666305,3.98535828943083 -825,9.0,20.0,-5.101853820159654,10.98071411292983 -825,9.0,21.0,-2.619319553382597,5.400770303329455 -825,10.0,8.0,0.0,4.807692307692308 -825,10.0,10.0,0.0,-4.807692307692308 -825,11.0,3.0,0.0,4.191255364806866 -825,11.0,11.0,6.573961583776156,-24.424167659260668 -825,11.0,12.0,0.0,7.142857142857143 -825,11.0,13.0,-1.5265676088395577,3.1734252729654173 -825,11.0,14.0,-3.0953961826564296,6.097275864326261 -825,11.0,15.0,-1.9519977922801688,4.104359379111847 -825,12.0,11.0,0.0,7.142857142857143 -825,12.0,12.0,0.0,-7.142857142857143 -825,13.0,11.0,-1.5265676088395577,3.1734252729654173 -825,13.0,13.0,1.5265676088395577,-3.1734252729654173 -825,14.0,11.0,-3.0953961826564296,6.097275864326261 -825,14.0,14.0,6.874546281965293,-13.760759672738311 -825,14.0,17.0,-1.8108011504072024,3.687418931630696 -825,14.0,22.0,-1.9683489489016612,3.976064876781356 -825,15.0,11.0,-1.9519977922801688,4.104359379111847 -825,15.0,15.0,3.271064728633931,-8.94513365126506 -825,15.0,16.0,-1.3190669363537617,4.8407742721532125 -825,16.0,9.0,-3.956039125715353,10.317447719844054 -825,16.0,15.0,-1.3190669363537617,4.8407742721532125 -825,16.0,16.0,5.275106062069114,-15.158221991997266 -825,17.0,14.0,-1.8108011504072024,3.687418931630696 -825,17.0,17.0,4.886487584415919,-9.906177730909668 -825,17.0,18.0,-3.0756864340087167,6.218758799278971 -825,18.0,17.0,-3.0756864340087167,6.218758799278971 -825,18.0,18.0,8.958039375185187,-17.98346468163191 -825,18.0,19.0,-5.88235294117647,11.76470588235294 -825,19.0,9.0,-1.7848303152666305,3.98535828943083 -825,19.0,18.0,-5.88235294117647,11.76470588235294 -825,19.0,19.0,7.6671832564431,-15.75006417178377 -825,20.0,9.0,-5.101853820159654,10.98071411292983 -825,20.0,20.0,21.876495189895888,-45.10843276170355 -825,20.0,21.0,-16.774641369736234,34.127718648773715 -825,21.0,9.0,-2.619319553382597,5.400770303329455 -825,21.0,20.0,-16.774641369736234,34.127718648773715 -825,21.0,21.0,21.93449907537439,-43.48289181517921 -825,21.0,23.0,-2.5405381522555563,3.95440286307604 -825,22.0,14.0,-1.9683489489016612,3.976064876781356 -825,22.0,22.0,3.429754555384988,-6.965303617315433 -825,22.0,23.0,-1.4614056064833263,2.989238740534077 -825,23.0,21.0,-2.5405381522555563,3.95440286307604 -825,23.0,22.0,-1.4614056064833263,2.989238740534077 -825,23.0,23.0,5.311836702613133,-9.188263657315172 -825,23.0,24.0,-1.3098929438742493,2.287622053705056 -825,24.0,23.0,-1.3098929438742493,2.287622053705056 -825,24.0,24.0,4.495715080321987,-7.864978761969621 -825,24.0,25.0,-1.2165301194494855,1.8171440463475024 -825,24.0,26.0,-1.9692920169982515,3.760212661917064 -825,25.0,24.0,-1.2165301194494855,1.8171440463475024 -825,25.0,25.0,1.2165301194494855,-1.8171440463475024 -825,26.0,24.0,-1.9692920169982515,3.760212661917064 -825,26.0,26.0,3.652281470778589,-9.46044252232512 -825,26.0,27.0,0.0,2.608731947574922 -825,26.0,28.0,-0.99553355095268,1.881005840357816 -825,26.0,29.0,-0.6874559028276572,1.293971494797717 -825,27.0,5.0,-4.362844058012917,15.463571542897856 -825,27.0,7.0,-1.4439790613954469,4.540814658476248 -825,27.0,26.0,0.0,2.608731947574922 -825,27.0,27.0,5.806823119408364,-22.67145722159613 -825,28.0,26.0,-0.99553355095268,1.881005840357816 -825,28.0,28.0,1.9075867579849564,-3.604364401207048 -825,28.0,29.0,-0.9120532070322764,1.7233585608492326 -825,29.0,26.0,-0.6874559028276572,1.293971494797717 -825,29.0,28.0,-0.9120532070322764,1.7233585608492326 -825,29.0,29.0,1.5995091098599337,-3.0173300556469496 -826,0.0,0.0,6.765516048652632,-21.23160167089863 -826,0.0,1.0,-5.224646179885656,15.646726840803398 -826,0.0,2.0,-1.5408698687669766,5.631674830095234 -826,1.0,0.0,-5.224646179885656,15.646726840803398 -826,1.0,1.0,9.75228216552403,-30.648662892676068 -826,1.0,3.0,-1.7055303166990268,5.1973792282565086 -826,1.0,4.0,-1.1359607881738778,4.772479328281356 -826,1.0,5.0,-1.6861448807654689,5.116477495334806 -826,2.0,0.0,-1.5408698687669766,5.631674830095234 -826,2.0,2.0,9.736318911079088,-29.13794745915803 -826,2.0,3.0,-8.19544904231211,23.5308726290628 -826,3.0,1.0,-1.7055303166990268,5.1973792282565086 -826,3.0,2.0,-8.19544904231211,23.5308726290628 -826,3.0,3.0,16.314103089185693,-55.509410535254254 -826,3.0,5.0,-6.413123730174556,22.31120356548123 -826,3.0,11.0,0.0,4.191255364806866 -826,4.0,1.0,-1.1359607881738778,4.772479328281356 -826,4.0,4.0,4.089980824135861,-12.190647245055052 -826,4.0,6.0,-2.954020035961983,7.449267916773697 -826,5.0,1.0,-1.6861448807654689,5.116477495334806 -826,5.0,3.0,-6.413123730174556,22.31120356548123 -826,5.0,5.0,22.341631269034565,-82.8291478657789 -826,5.0,6.0,-3.590210423980992,11.02611441072814 -826,5.0,7.0,-6.289308176100628,22.0125786163522 -826,5.0,8.0,0.0,4.915840805411357 -826,5.0,9.0,0.0,1.8561002591115965 -826,5.0,27.0,-4.362844058012917,15.463571542897856 -826,6.0,4.0,-2.954020035961983,7.449267916773697 -826,6.0,5.0,-3.590210423980992,11.02611441072814 -826,6.0,6.0,6.544230459942975,-18.45668232750184 -826,7.0,5.0,-6.289308176100628,22.0125786163522 -826,7.0,7.0,7.733287237496075,-26.527493274828448 -826,7.0,27.0,-1.4439790613954469,4.540814658476248 -826,8.0,5.0,0.0,4.915840805411357 -826,8.0,8.0,0.0,-18.706293706293707 -826,8.0,9.0,0.0,9.090909090909092 -826,8.0,10.0,0.0,4.807692307692308 -826,9.0,5.0,0.0,1.8561002591115965 -826,9.0,8.0,0.0,9.090909090909092 -826,9.0,9.0,11.677212499257603,-37.39840237809157 -826,9.0,16.0,-3.956039125715353,10.317447719844054 -826,9.0,20.0,-5.101853820159654,10.98071411292983 -826,9.0,21.0,-2.619319553382597,5.400770303329455 -826,10.0,8.0,0.0,4.807692307692308 -826,10.0,10.0,0.0,-4.807692307692308 -826,11.0,3.0,0.0,4.191255364806866 -826,11.0,11.0,4.621963791495987,-20.31980828014882 -826,11.0,12.0,0.0,7.142857142857143 -826,11.0,13.0,-1.5265676088395577,3.1734252729654173 -826,11.0,14.0,-3.0953961826564296,6.097275864326261 -826,12.0,11.0,0.0,7.142857142857143 -826,12.0,12.0,0.0,-7.142857142857143 -826,13.0,11.0,-1.5265676088395577,3.1734252729654173 -826,13.0,13.0,4.01751987283902,-5.424299332335067 -826,13.0,14.0,-2.4909522639994623,2.250874059369649 -826,14.0,11.0,-3.0953961826564296,6.097275864326261 -826,14.0,13.0,-2.4909522639994623,2.250874059369649 -826,14.0,14.0,9.365498545964757,-16.01163373210796 -826,14.0,17.0,-1.8108011504072024,3.687418931630696 -826,14.0,22.0,-1.9683489489016612,3.976064876781356 -826,15.0,15.0,1.3190669363537617,-4.8407742721532125 -826,15.0,16.0,-1.3190669363537617,4.8407742721532125 -826,16.0,9.0,-3.956039125715353,10.317447719844054 -826,16.0,15.0,-1.3190669363537617,4.8407742721532125 -826,16.0,16.0,5.275106062069114,-15.158221991997266 -826,17.0,14.0,-1.8108011504072024,3.687418931630696 -826,17.0,17.0,4.886487584415919,-9.906177730909668 -826,17.0,18.0,-3.0756864340087167,6.218758799278971 -826,18.0,17.0,-3.0756864340087167,6.218758799278971 -826,18.0,18.0,8.958039375185187,-17.98346468163191 -826,18.0,19.0,-5.88235294117647,11.76470588235294 -826,19.0,18.0,-5.88235294117647,11.76470588235294 -826,19.0,19.0,5.88235294117647,-11.76470588235294 -826,20.0,9.0,-5.101853820159654,10.98071411292983 -826,20.0,20.0,21.876495189895888,-45.10843276170355 -826,20.0,21.0,-16.774641369736234,34.127718648773715 -826,21.0,9.0,-2.619319553382597,5.400770303329455 -826,21.0,20.0,-16.774641369736234,34.127718648773715 -826,21.0,21.0,21.93449907537439,-43.48289181517921 -826,21.0,23.0,-2.5405381522555563,3.95440286307604 -826,22.0,14.0,-1.9683489489016612,3.976064876781356 -826,22.0,22.0,3.429754555384988,-6.965303617315433 -826,22.0,23.0,-1.4614056064833263,2.989238740534077 -826,23.0,21.0,-2.5405381522555563,3.95440286307604 -826,23.0,22.0,-1.4614056064833263,2.989238740534077 -826,23.0,23.0,5.311836702613133,-9.188263657315172 -826,23.0,24.0,-1.3098929438742493,2.287622053705056 -826,24.0,23.0,-1.3098929438742493,2.287622053705056 -826,24.0,24.0,4.495715080321987,-7.864978761969621 -826,24.0,25.0,-1.2165301194494855,1.8171440463475024 -826,24.0,26.0,-1.9692920169982515,3.760212661917064 -826,25.0,24.0,-1.2165301194494855,1.8171440463475024 -826,25.0,25.0,1.2165301194494855,-1.8171440463475024 -826,26.0,24.0,-1.9692920169982515,3.760212661917064 -826,26.0,26.0,3.652281470778589,-9.46044252232512 -826,26.0,27.0,0.0,2.608731947574922 -826,26.0,28.0,-0.99553355095268,1.881005840357816 -826,26.0,29.0,-0.6874559028276572,1.293971494797717 -826,27.0,5.0,-4.362844058012917,15.463571542897856 -826,27.0,7.0,-1.4439790613954469,4.540814658476248 -826,27.0,26.0,0.0,2.608731947574922 -826,27.0,27.0,5.806823119408364,-22.67145722159613 -826,28.0,26.0,-0.99553355095268,1.881005840357816 -826,28.0,28.0,1.9075867579849564,-3.604364401207048 -826,28.0,29.0,-0.9120532070322764,1.7233585608492326 -826,29.0,26.0,-0.6874559028276572,1.293971494797717 -826,29.0,28.0,-0.9120532070322764,1.7233585608492326 -826,29.0,29.0,1.5995091098599337,-3.0173300556469496 -827,0.0,0.0,6.765516048652632,-21.23160167089863 -827,0.0,1.0,-5.224646179885656,15.646726840803398 -827,0.0,2.0,-1.5408698687669766,5.631674830095234 -827,1.0,0.0,-5.224646179885656,15.646726840803398 -827,1.0,1.0,9.75228216552403,-30.648662892676068 -827,1.0,3.0,-1.7055303166990268,5.1973792282565086 -827,1.0,4.0,-1.1359607881738778,4.772479328281356 -827,1.0,5.0,-1.6861448807654689,5.116477495334806 -827,2.0,0.0,-1.5408698687669766,5.631674830095234 -827,2.0,2.0,9.736318911079088,-29.13794745915803 -827,2.0,3.0,-8.19544904231211,23.5308726290628 -827,3.0,1.0,-1.7055303166990268,5.1973792282565086 -827,3.0,2.0,-8.19544904231211,23.5308726290628 -827,3.0,3.0,16.314103089185693,-55.509410535254254 -827,3.0,5.0,-6.413123730174556,22.31120356548123 -827,3.0,11.0,0.0,4.191255364806866 -827,4.0,1.0,-1.1359607881738778,4.772479328281356 -827,4.0,4.0,4.089980824135861,-12.190647245055052 -827,4.0,6.0,-2.954020035961983,7.449267916773697 -827,5.0,1.0,-1.6861448807654689,5.116477495334806 -827,5.0,3.0,-6.413123730174556,22.31120356548123 -827,5.0,5.0,22.341631269034565,-82.8291478657789 -827,5.0,6.0,-3.590210423980992,11.02611441072814 -827,5.0,7.0,-6.289308176100628,22.0125786163522 -827,5.0,8.0,0.0,4.915840805411357 -827,5.0,9.0,0.0,1.8561002591115965 -827,5.0,27.0,-4.362844058012917,15.463571542897856 -827,6.0,4.0,-2.954020035961983,7.449267916773697 -827,6.0,5.0,-3.590210423980992,11.02611441072814 -827,6.0,6.0,6.544230459942975,-18.45668232750184 -827,7.0,5.0,-6.289308176100628,22.0125786163522 -827,7.0,7.0,7.733287237496075,-26.527493274828448 -827,7.0,27.0,-1.4439790613954469,4.540814658476248 -827,8.0,5.0,0.0,4.915840805411357 -827,8.0,8.0,0.0,-18.706293706293707 -827,8.0,9.0,0.0,9.090909090909092 -827,8.0,10.0,0.0,4.807692307692308 -827,9.0,5.0,0.0,1.8561002591115965 -827,9.0,8.0,0.0,9.090909090909092 -827,9.0,9.0,13.462042814524237,-41.3837606675224 -827,9.0,16.0,-3.956039125715353,10.317447719844054 -827,9.0,19.0,-1.7848303152666305,3.98535828943083 -827,9.0,20.0,-5.101853820159654,10.98071411292983 -827,9.0,21.0,-2.619319553382597,5.400770303329455 -827,10.0,8.0,0.0,4.807692307692308 -827,10.0,10.0,0.0,-4.807692307692308 -827,11.0,3.0,0.0,4.191255364806866 -827,11.0,11.0,6.573961583776156,-24.424167659260668 -827,11.0,12.0,0.0,7.142857142857143 -827,11.0,13.0,-1.5265676088395577,3.1734252729654173 -827,11.0,14.0,-3.0953961826564296,6.097275864326261 -827,11.0,15.0,-1.9519977922801688,4.104359379111847 -827,12.0,11.0,0.0,7.142857142857143 -827,12.0,12.0,0.0,-7.142857142857143 -827,13.0,11.0,-1.5265676088395577,3.1734252729654173 -827,13.0,13.0,4.01751987283902,-5.424299332335067 -827,13.0,14.0,-2.4909522639994623,2.250874059369649 -827,14.0,11.0,-3.0953961826564296,6.097275864326261 -827,14.0,13.0,-2.4909522639994623,2.250874059369649 -827,14.0,14.0,9.365498545964757,-16.01163373210796 -827,14.0,17.0,-1.8108011504072024,3.687418931630696 -827,14.0,22.0,-1.9683489489016612,3.976064876781356 -827,15.0,11.0,-1.9519977922801688,4.104359379111847 -827,15.0,15.0,3.271064728633931,-8.94513365126506 -827,15.0,16.0,-1.3190669363537617,4.8407742721532125 -827,16.0,9.0,-3.956039125715353,10.317447719844054 -827,16.0,15.0,-1.3190669363537617,4.8407742721532125 -827,16.0,16.0,5.275106062069114,-15.158221991997266 -827,17.0,14.0,-1.8108011504072024,3.687418931630696 -827,17.0,17.0,4.886487584415919,-9.906177730909668 -827,17.0,18.0,-3.0756864340087167,6.218758799278971 -827,18.0,17.0,-3.0756864340087167,6.218758799278971 -827,18.0,18.0,8.958039375185187,-17.98346468163191 -827,18.0,19.0,-5.88235294117647,11.76470588235294 -827,19.0,9.0,-1.7848303152666305,3.98535828943083 -827,19.0,18.0,-5.88235294117647,11.76470588235294 -827,19.0,19.0,7.6671832564431,-15.75006417178377 -827,20.0,9.0,-5.101853820159654,10.98071411292983 -827,20.0,20.0,21.876495189895888,-45.10843276170355 -827,20.0,21.0,-16.774641369736234,34.127718648773715 -827,21.0,9.0,-2.619319553382597,5.400770303329455 -827,21.0,20.0,-16.774641369736234,34.127718648773715 -827,21.0,21.0,21.93449907537439,-43.48289181517921 -827,21.0,23.0,-2.5405381522555563,3.95440286307604 -827,22.0,14.0,-1.9683489489016612,3.976064876781356 -827,22.0,22.0,3.429754555384988,-6.965303617315433 -827,22.0,23.0,-1.4614056064833263,2.989238740534077 -827,23.0,21.0,-2.5405381522555563,3.95440286307604 -827,23.0,22.0,-1.4614056064833263,2.989238740534077 -827,23.0,23.0,5.311836702613133,-9.188263657315172 -827,23.0,24.0,-1.3098929438742493,2.287622053705056 -827,24.0,23.0,-1.3098929438742493,2.287622053705056 -827,24.0,24.0,4.495715080321987,-7.864978761969621 -827,24.0,25.0,-1.2165301194494855,1.8171440463475024 -827,24.0,26.0,-1.9692920169982515,3.760212661917064 -827,25.0,24.0,-1.2165301194494855,1.8171440463475024 -827,25.0,25.0,1.2165301194494855,-1.8171440463475024 -827,26.0,24.0,-1.9692920169982515,3.760212661917064 -827,26.0,26.0,3.652281470778589,-9.46044252232512 -827,26.0,27.0,0.0,2.608731947574922 -827,26.0,28.0,-0.99553355095268,1.881005840357816 -827,26.0,29.0,-0.6874559028276572,1.293971494797717 -827,27.0,5.0,-4.362844058012917,15.463571542897856 -827,27.0,7.0,-1.4439790613954469,4.540814658476248 -827,27.0,26.0,0.0,2.608731947574922 -827,27.0,27.0,5.806823119408364,-22.67145722159613 -827,28.0,26.0,-0.99553355095268,1.881005840357816 -827,28.0,28.0,1.9075867579849564,-3.604364401207048 -827,28.0,29.0,-0.9120532070322764,1.7233585608492326 -827,29.0,26.0,-0.6874559028276572,1.293971494797717 -827,29.0,28.0,-0.9120532070322764,1.7233585608492326 -827,29.0,29.0,1.5995091098599337,-3.0173300556469496 -828,0.0,0.0,6.765516048652632,-21.23160167089863 -828,0.0,1.0,-5.224646179885656,15.646726840803398 -828,0.0,2.0,-1.5408698687669766,5.631674830095234 -828,1.0,0.0,-5.224646179885656,15.646726840803398 -828,1.0,1.0,9.75228216552403,-30.648662892676068 -828,1.0,3.0,-1.7055303166990268,5.1973792282565086 -828,1.0,4.0,-1.1359607881738778,4.772479328281356 -828,1.0,5.0,-1.6861448807654689,5.116477495334806 -828,2.0,0.0,-1.5408698687669766,5.631674830095234 -828,2.0,2.0,9.736318911079088,-29.13794745915803 -828,2.0,3.0,-8.19544904231211,23.5308726290628 -828,3.0,1.0,-1.7055303166990268,5.1973792282565086 -828,3.0,2.0,-8.19544904231211,23.5308726290628 -828,3.0,3.0,16.314103089185693,-55.509410535254254 -828,3.0,5.0,-6.413123730174556,22.31120356548123 -828,3.0,11.0,0.0,4.191255364806866 -828,4.0,1.0,-1.1359607881738778,4.772479328281356 -828,4.0,4.0,4.089980824135861,-12.190647245055052 -828,4.0,6.0,-2.954020035961983,7.449267916773697 -828,5.0,1.0,-1.6861448807654689,5.116477495334806 -828,5.0,3.0,-6.413123730174556,22.31120356548123 -828,5.0,5.0,22.341631269034565,-80.91366772221689 -828,5.0,6.0,-3.590210423980992,11.02611441072814 -828,5.0,7.0,-6.289308176100628,22.0125786163522 -828,5.0,8.0,0.0,4.915840805411357 -828,5.0,27.0,-4.362844058012917,15.463571542897856 -828,6.0,4.0,-2.954020035961983,7.449267916773697 -828,6.0,5.0,-3.590210423980992,11.02611441072814 -828,6.0,6.0,6.544230459942975,-18.45668232750184 -828,7.0,5.0,-6.289308176100628,22.0125786163522 -828,7.0,7.0,7.733287237496075,-26.527493274828448 -828,7.0,27.0,-1.4439790613954469,4.540814658476248 -828,8.0,5.0,0.0,4.915840805411357 -828,8.0,8.0,0.0,-18.706293706293707 -828,8.0,9.0,0.0,9.090909090909092 -828,8.0,10.0,0.0,4.807692307692308 -828,9.0,8.0,0.0,9.090909090909092 -828,9.0,9.0,13.462042814524237,-39.58519951644326 -828,9.0,16.0,-3.956039125715353,10.317447719844054 -828,9.0,19.0,-1.7848303152666305,3.98535828943083 -828,9.0,20.0,-5.101853820159654,10.98071411292983 -828,9.0,21.0,-2.619319553382597,5.400770303329455 -828,10.0,8.0,0.0,4.807692307692308 -828,10.0,10.0,0.0,-4.807692307692308 -828,11.0,3.0,0.0,4.191255364806866 -828,11.0,11.0,6.573961583776156,-24.424167659260668 -828,11.0,12.0,0.0,7.142857142857143 -828,11.0,13.0,-1.5265676088395577,3.1734252729654173 -828,11.0,14.0,-3.0953961826564296,6.097275864326261 -828,11.0,15.0,-1.9519977922801688,4.104359379111847 -828,12.0,11.0,0.0,7.142857142857143 -828,12.0,12.0,0.0,-7.142857142857143 -828,13.0,11.0,-1.5265676088395577,3.1734252729654173 -828,13.0,13.0,4.01751987283902,-5.424299332335067 -828,13.0,14.0,-2.4909522639994623,2.250874059369649 -828,14.0,11.0,-3.0953961826564296,6.097275864326261 -828,14.0,13.0,-2.4909522639994623,2.250874059369649 -828,14.0,14.0,9.365498545964757,-16.01163373210796 -828,14.0,17.0,-1.8108011504072024,3.687418931630696 -828,14.0,22.0,-1.9683489489016612,3.976064876781356 -828,15.0,11.0,-1.9519977922801688,4.104359379111847 -828,15.0,15.0,3.271064728633931,-8.94513365126506 -828,15.0,16.0,-1.3190669363537617,4.8407742721532125 -828,16.0,9.0,-3.956039125715353,10.317447719844054 -828,16.0,15.0,-1.3190669363537617,4.8407742721532125 -828,16.0,16.0,5.275106062069114,-15.158221991997266 -828,17.0,14.0,-1.8108011504072024,3.687418931630696 -828,17.0,17.0,4.886487584415919,-9.906177730909668 -828,17.0,18.0,-3.0756864340087167,6.218758799278971 -828,18.0,17.0,-3.0756864340087167,6.218758799278971 -828,18.0,18.0,8.958039375185187,-17.98346468163191 -828,18.0,19.0,-5.88235294117647,11.76470588235294 -828,19.0,9.0,-1.7848303152666305,3.98535828943083 -828,19.0,18.0,-5.88235294117647,11.76470588235294 -828,19.0,19.0,7.6671832564431,-15.75006417178377 -828,20.0,9.0,-5.101853820159654,10.98071411292983 -828,20.0,20.0,21.876495189895888,-45.10843276170355 -828,20.0,21.0,-16.774641369736234,34.127718648773715 -828,21.0,9.0,-2.619319553382597,5.400770303329455 -828,21.0,20.0,-16.774641369736234,34.127718648773715 -828,21.0,21.0,21.93449907537439,-43.48289181517921 -828,21.0,23.0,-2.5405381522555563,3.95440286307604 -828,22.0,14.0,-1.9683489489016612,3.976064876781356 -828,22.0,22.0,3.429754555384988,-6.965303617315433 -828,22.0,23.0,-1.4614056064833263,2.989238740534077 -828,23.0,21.0,-2.5405381522555563,3.95440286307604 -828,23.0,22.0,-1.4614056064833263,2.989238740534077 -828,23.0,23.0,5.311836702613133,-9.188263657315172 -828,23.0,24.0,-1.3098929438742493,2.287622053705056 -828,24.0,23.0,-1.3098929438742493,2.287622053705056 -828,24.0,24.0,4.495715080321987,-7.864978761969621 -828,24.0,25.0,-1.2165301194494855,1.8171440463475024 -828,24.0,26.0,-1.9692920169982515,3.760212661917064 -828,25.0,24.0,-1.2165301194494855,1.8171440463475024 -828,25.0,25.0,1.2165301194494855,-1.8171440463475024 -828,26.0,24.0,-1.9692920169982515,3.760212661917064 -828,26.0,26.0,3.652281470778589,-9.46044252232512 -828,26.0,27.0,0.0,2.608731947574922 -828,26.0,28.0,-0.99553355095268,1.881005840357816 -828,26.0,29.0,-0.6874559028276572,1.293971494797717 -828,27.0,5.0,-4.362844058012917,15.463571542897856 -828,27.0,7.0,-1.4439790613954469,4.540814658476248 -828,27.0,26.0,0.0,2.608731947574922 -828,27.0,27.0,5.806823119408364,-22.67145722159613 -828,28.0,26.0,-0.99553355095268,1.881005840357816 -828,28.0,28.0,1.9075867579849564,-3.604364401207048 -828,28.0,29.0,-0.9120532070322764,1.7233585608492326 -828,29.0,26.0,-0.6874559028276572,1.293971494797717 -828,29.0,28.0,-0.9120532070322764,1.7233585608492326 -828,29.0,29.0,1.5995091098599337,-3.0173300556469496 -829,0.0,0.0,6.765516048652632,-21.23160167089863 -829,0.0,1.0,-5.224646179885656,15.646726840803398 -829,0.0,2.0,-1.5408698687669766,5.631674830095234 -829,1.0,0.0,-5.224646179885656,15.646726840803398 -829,1.0,1.0,9.75228216552403,-30.648662892676068 -829,1.0,3.0,-1.7055303166990268,5.1973792282565086 -829,1.0,4.0,-1.1359607881738778,4.772479328281356 -829,1.0,5.0,-1.6861448807654689,5.116477495334806 -829,2.0,0.0,-1.5408698687669766,5.631674830095234 -829,2.0,2.0,9.736318911079088,-29.13794745915803 -829,2.0,3.0,-8.19544904231211,23.5308726290628 -829,3.0,1.0,-1.7055303166990268,5.1973792282565086 -829,3.0,2.0,-8.19544904231211,23.5308726290628 -829,3.0,3.0,16.314103089185693,-55.509410535254254 -829,3.0,5.0,-6.413123730174556,22.31120356548123 -829,3.0,11.0,0.0,4.191255364806866 -829,4.0,1.0,-1.1359607881738778,4.772479328281356 -829,4.0,4.0,4.089980824135861,-12.190647245055052 -829,4.0,6.0,-2.954020035961983,7.449267916773697 -829,5.0,1.0,-1.6861448807654689,5.116477495334806 -829,5.0,3.0,-6.413123730174556,22.31120356548123 -829,5.0,5.0,18.75142084505357,-71.81153345505078 -829,5.0,7.0,-6.289308176100628,22.0125786163522 -829,5.0,8.0,0.0,4.915840805411357 -829,5.0,9.0,0.0,1.8561002591115965 -829,5.0,27.0,-4.362844058012917,15.463571542897856 -829,6.0,4.0,-2.954020035961983,7.449267916773697 -829,6.0,6.0,2.954020035961983,-7.439067916773697 -829,7.0,5.0,-6.289308176100628,22.0125786163522 -829,7.0,7.0,7.733287237496075,-26.527493274828448 -829,7.0,27.0,-1.4439790613954469,4.540814658476248 -829,8.0,5.0,0.0,4.915840805411357 -829,8.0,8.0,0.0,-18.706293706293707 -829,8.0,9.0,0.0,9.090909090909092 -829,8.0,10.0,0.0,4.807692307692308 -829,9.0,5.0,0.0,1.8561002591115965 -829,9.0,8.0,0.0,9.090909090909092 -829,9.0,9.0,13.462042814524237,-41.3837606675224 -829,9.0,16.0,-3.956039125715353,10.317447719844054 -829,9.0,19.0,-1.7848303152666305,3.98535828943083 -829,9.0,20.0,-5.101853820159654,10.98071411292983 -829,9.0,21.0,-2.619319553382597,5.400770303329455 -829,10.0,8.0,0.0,4.807692307692308 -829,10.0,10.0,0.0,-4.807692307692308 -829,11.0,3.0,0.0,4.191255364806866 -829,11.0,11.0,4.621963791495987,-20.31980828014882 -829,11.0,12.0,0.0,7.142857142857143 -829,11.0,13.0,-1.5265676088395577,3.1734252729654173 -829,11.0,14.0,-3.0953961826564296,6.097275864326261 -829,12.0,11.0,0.0,7.142857142857143 -829,12.0,12.0,0.0,-7.142857142857143 -829,13.0,11.0,-1.5265676088395577,3.1734252729654173 -829,13.0,13.0,4.01751987283902,-5.424299332335067 -829,13.0,14.0,-2.4909522639994623,2.250874059369649 -829,14.0,11.0,-3.0953961826564296,6.097275864326261 -829,14.0,13.0,-2.4909522639994623,2.250874059369649 -829,14.0,14.0,9.365498545964757,-16.01163373210796 -829,14.0,17.0,-1.8108011504072024,3.687418931630696 -829,14.0,22.0,-1.9683489489016612,3.976064876781356 -829,15.0,15.0,1.3190669363537617,-4.8407742721532125 -829,15.0,16.0,-1.3190669363537617,4.8407742721532125 -829,16.0,9.0,-3.956039125715353,10.317447719844054 -829,16.0,15.0,-1.3190669363537617,4.8407742721532125 -829,16.0,16.0,5.275106062069114,-15.158221991997266 -829,17.0,14.0,-1.8108011504072024,3.687418931630696 -829,17.0,17.0,4.886487584415919,-9.906177730909668 -829,17.0,18.0,-3.0756864340087167,6.218758799278971 -829,18.0,17.0,-3.0756864340087167,6.218758799278971 -829,18.0,18.0,8.958039375185187,-17.98346468163191 -829,18.0,19.0,-5.88235294117647,11.76470588235294 -829,19.0,9.0,-1.7848303152666305,3.98535828943083 -829,19.0,18.0,-5.88235294117647,11.76470588235294 -829,19.0,19.0,7.6671832564431,-15.75006417178377 -829,20.0,9.0,-5.101853820159654,10.98071411292983 -829,20.0,20.0,21.876495189895888,-45.10843276170355 -829,20.0,21.0,-16.774641369736234,34.127718648773715 -829,21.0,9.0,-2.619319553382597,5.400770303329455 -829,21.0,20.0,-16.774641369736234,34.127718648773715 -829,21.0,21.0,21.93449907537439,-43.48289181517921 -829,21.0,23.0,-2.5405381522555563,3.95440286307604 -829,22.0,14.0,-1.9683489489016612,3.976064876781356 -829,22.0,22.0,3.429754555384988,-6.965303617315433 -829,22.0,23.0,-1.4614056064833263,2.989238740534077 -829,23.0,21.0,-2.5405381522555563,3.95440286307604 -829,23.0,22.0,-1.4614056064833263,2.989238740534077 -829,23.0,23.0,5.311836702613133,-9.188263657315172 -829,23.0,24.0,-1.3098929438742493,2.287622053705056 -829,24.0,23.0,-1.3098929438742493,2.287622053705056 -829,24.0,24.0,4.495715080321987,-7.864978761969621 -829,24.0,25.0,-1.2165301194494855,1.8171440463475024 -829,24.0,26.0,-1.9692920169982515,3.760212661917064 -829,25.0,24.0,-1.2165301194494855,1.8171440463475024 -829,25.0,25.0,1.2165301194494855,-1.8171440463475024 -829,26.0,24.0,-1.9692920169982515,3.760212661917064 -829,26.0,26.0,3.652281470778589,-9.46044252232512 -829,26.0,27.0,0.0,2.608731947574922 -829,26.0,28.0,-0.99553355095268,1.881005840357816 -829,26.0,29.0,-0.6874559028276572,1.293971494797717 -829,27.0,5.0,-4.362844058012917,15.463571542897856 -829,27.0,7.0,-1.4439790613954469,4.540814658476248 -829,27.0,26.0,0.0,2.608731947574922 -829,27.0,27.0,5.806823119408364,-22.67145722159613 -829,28.0,26.0,-0.99553355095268,1.881005840357816 -829,28.0,28.0,1.9075867579849564,-3.604364401207048 -829,28.0,29.0,-0.9120532070322764,1.7233585608492326 -829,29.0,26.0,-0.6874559028276572,1.293971494797717 -829,29.0,28.0,-0.9120532070322764,1.7233585608492326 -829,29.0,29.0,1.5995091098599337,-3.0173300556469496 -830,0.0,0.0,1.5408698687669766,-5.611274830095233 -830,0.0,2.0,-1.5408698687669766,5.631674830095234 -830,1.0,1.0,4.527635985638374,-15.028336051872673 -830,1.0,3.0,-1.7055303166990268,5.1973792282565086 -830,1.0,4.0,-1.1359607881738778,4.772479328281356 -830,1.0,5.0,-1.6861448807654689,5.116477495334806 -830,2.0,0.0,-1.5408698687669766,5.631674830095234 -830,2.0,2.0,9.736318911079088,-29.13794745915803 -830,2.0,3.0,-8.19544904231211,23.5308726290628 -830,3.0,1.0,-1.7055303166990268,5.1973792282565086 -830,3.0,2.0,-8.19544904231211,23.5308726290628 -830,3.0,3.0,16.314103089185693,-55.509410535254254 -830,3.0,5.0,-6.413123730174556,22.31120356548123 -830,3.0,11.0,0.0,4.191255364806866 -830,4.0,1.0,-1.1359607881738778,4.772479328281356 -830,4.0,4.0,4.089980824135861,-12.190647245055052 -830,4.0,6.0,-2.954020035961983,7.449267916773697 -830,5.0,1.0,-1.6861448807654689,5.116477495334806 -830,5.0,3.0,-6.413123730174556,22.31120356548123 -830,5.0,5.0,22.341631269034565,-82.8291478657789 -830,5.0,6.0,-3.590210423980992,11.02611441072814 -830,5.0,7.0,-6.289308176100628,22.0125786163522 -830,5.0,8.0,0.0,4.915840805411357 -830,5.0,9.0,0.0,1.8561002591115965 -830,5.0,27.0,-4.362844058012917,15.463571542897856 -830,6.0,4.0,-2.954020035961983,7.449267916773697 -830,6.0,5.0,-3.590210423980992,11.02611441072814 -830,6.0,6.0,6.544230459942975,-18.45668232750184 -830,7.0,5.0,-6.289308176100628,22.0125786163522 -830,7.0,7.0,7.733287237496075,-26.527493274828448 -830,7.0,27.0,-1.4439790613954469,4.540814658476248 -830,8.0,5.0,0.0,4.915840805411357 -830,8.0,8.0,0.0,-18.706293706293707 -830,8.0,9.0,0.0,9.090909090909092 -830,8.0,10.0,0.0,4.807692307692308 -830,9.0,5.0,0.0,1.8561002591115965 -830,9.0,8.0,0.0,9.090909090909092 -830,9.0,9.0,13.462042814524237,-41.3837606675224 -830,9.0,16.0,-3.956039125715353,10.317447719844054 -830,9.0,19.0,-1.7848303152666305,3.98535828943083 -830,9.0,20.0,-5.101853820159654,10.98071411292983 -830,9.0,21.0,-2.619319553382597,5.400770303329455 -830,10.0,8.0,0.0,4.807692307692308 -830,10.0,10.0,0.0,-4.807692307692308 -830,11.0,3.0,0.0,4.191255364806866 -830,11.0,11.0,6.573961583776156,-24.424167659260668 -830,11.0,12.0,0.0,7.142857142857143 -830,11.0,13.0,-1.5265676088395577,3.1734252729654173 -830,11.0,14.0,-3.0953961826564296,6.097275864326261 -830,11.0,15.0,-1.9519977922801688,4.104359379111847 -830,12.0,11.0,0.0,7.142857142857143 -830,12.0,12.0,0.0,-7.142857142857143 -830,13.0,11.0,-1.5265676088395577,3.1734252729654173 -830,13.0,13.0,4.01751987283902,-5.424299332335067 -830,13.0,14.0,-2.4909522639994623,2.250874059369649 -830,14.0,11.0,-3.0953961826564296,6.097275864326261 -830,14.0,13.0,-2.4909522639994623,2.250874059369649 -830,14.0,14.0,9.365498545964757,-16.01163373210796 -830,14.0,17.0,-1.8108011504072024,3.687418931630696 -830,14.0,22.0,-1.9683489489016612,3.976064876781356 -830,15.0,11.0,-1.9519977922801688,4.104359379111847 -830,15.0,15.0,3.271064728633931,-8.94513365126506 -830,15.0,16.0,-1.3190669363537617,4.8407742721532125 -830,16.0,9.0,-3.956039125715353,10.317447719844054 -830,16.0,15.0,-1.3190669363537617,4.8407742721532125 -830,16.0,16.0,5.275106062069114,-15.158221991997266 -830,17.0,14.0,-1.8108011504072024,3.687418931630696 -830,17.0,17.0,4.886487584415919,-9.906177730909668 -830,17.0,18.0,-3.0756864340087167,6.218758799278971 -830,18.0,17.0,-3.0756864340087167,6.218758799278971 -830,18.0,18.0,8.958039375185187,-17.98346468163191 -830,18.0,19.0,-5.88235294117647,11.76470588235294 -830,19.0,9.0,-1.7848303152666305,3.98535828943083 -830,19.0,18.0,-5.88235294117647,11.76470588235294 -830,19.0,19.0,7.6671832564431,-15.75006417178377 -830,20.0,9.0,-5.101853820159654,10.98071411292983 -830,20.0,20.0,21.876495189895888,-45.10843276170355 -830,20.0,21.0,-16.774641369736234,34.127718648773715 -830,21.0,9.0,-2.619319553382597,5.400770303329455 -830,21.0,20.0,-16.774641369736234,34.127718648773715 -830,21.0,21.0,21.93449907537439,-43.48289181517921 -830,21.0,23.0,-2.5405381522555563,3.95440286307604 -830,22.0,14.0,-1.9683489489016612,3.976064876781356 -830,22.0,22.0,3.429754555384988,-6.965303617315433 -830,22.0,23.0,-1.4614056064833263,2.989238740534077 -830,23.0,21.0,-2.5405381522555563,3.95440286307604 -830,23.0,22.0,-1.4614056064833263,2.989238740534077 -830,23.0,23.0,5.311836702613133,-9.188263657315172 -830,23.0,24.0,-1.3098929438742493,2.287622053705056 -830,24.0,23.0,-1.3098929438742493,2.287622053705056 -830,24.0,24.0,4.495715080321987,-7.864978761969621 -830,24.0,25.0,-1.2165301194494855,1.8171440463475024 -830,24.0,26.0,-1.9692920169982515,3.760212661917064 -830,25.0,24.0,-1.2165301194494855,1.8171440463475024 -830,25.0,25.0,1.2165301194494855,-1.8171440463475024 -830,26.0,24.0,-1.9692920169982515,3.760212661917064 -830,26.0,26.0,3.652281470778589,-9.46044252232512 -830,26.0,27.0,0.0,2.608731947574922 -830,26.0,28.0,-0.99553355095268,1.881005840357816 -830,26.0,29.0,-0.6874559028276572,1.293971494797717 -830,27.0,5.0,-4.362844058012917,15.463571542897856 -830,27.0,7.0,-1.4439790613954469,4.540814658476248 -830,27.0,26.0,0.0,2.608731947574922 -830,27.0,27.0,5.806823119408364,-22.67145722159613 -830,28.0,26.0,-0.99553355095268,1.881005840357816 -830,28.0,28.0,1.9075867579849564,-3.604364401207048 -830,28.0,29.0,-0.9120532070322764,1.7233585608492326 -830,29.0,26.0,-0.6874559028276572,1.293971494797717 -830,29.0,28.0,-0.9120532070322764,1.7233585608492326 -830,29.0,29.0,1.5995091098599337,-3.0173300556469496 -831,0.0,0.0,6.765516048652632,-21.23160167089863 -831,0.0,1.0,-5.224646179885656,15.646726840803398 -831,0.0,2.0,-1.5408698687669766,5.631674830095234 -831,1.0,0.0,-5.224646179885656,15.646726840803398 -831,1.0,1.0,8.61632137735015,-25.897083564394716 -831,1.0,3.0,-1.7055303166990268,5.1973792282565086 -831,1.0,5.0,-1.6861448807654689,5.116477495334806 -831,2.0,0.0,-1.5408698687669766,5.631674830095234 -831,2.0,2.0,9.736318911079088,-29.13794745915803 -831,2.0,3.0,-8.19544904231211,23.5308726290628 -831,3.0,1.0,-1.7055303166990268,5.1973792282565086 -831,3.0,2.0,-8.19544904231211,23.5308726290628 -831,3.0,3.0,16.314103089185693,-55.509410535254254 -831,3.0,5.0,-6.413123730174556,22.31120356548123 -831,3.0,11.0,0.0,4.191255364806866 -831,4.0,4.0,2.954020035961983,-7.439067916773697 -831,4.0,6.0,-2.954020035961983,7.449267916773697 -831,5.0,1.0,-1.6861448807654689,5.116477495334806 -831,5.0,3.0,-6.413123730174556,22.31120356548123 -831,5.0,5.0,22.341631269034565,-82.8291478657789 -831,5.0,6.0,-3.590210423980992,11.02611441072814 -831,5.0,7.0,-6.289308176100628,22.0125786163522 -831,5.0,8.0,0.0,4.915840805411357 -831,5.0,9.0,0.0,1.8561002591115965 -831,5.0,27.0,-4.362844058012917,15.463571542897856 -831,6.0,4.0,-2.954020035961983,7.449267916773697 -831,6.0,5.0,-3.590210423980992,11.02611441072814 -831,6.0,6.0,6.544230459942975,-18.45668232750184 -831,7.0,5.0,-6.289308176100628,22.0125786163522 -831,7.0,7.0,7.733287237496075,-26.527493274828448 -831,7.0,27.0,-1.4439790613954469,4.540814658476248 -831,8.0,5.0,0.0,4.915840805411357 -831,8.0,8.0,0.0,-18.706293706293707 -831,8.0,9.0,0.0,9.090909090909092 -831,8.0,10.0,0.0,4.807692307692308 -831,9.0,5.0,0.0,1.8561002591115965 -831,9.0,8.0,0.0,9.090909090909092 -831,9.0,9.0,13.462042814524237,-41.3837606675224 -831,9.0,16.0,-3.956039125715353,10.317447719844054 -831,9.0,19.0,-1.7848303152666305,3.98535828943083 -831,9.0,20.0,-5.101853820159654,10.98071411292983 -831,9.0,21.0,-2.619319553382597,5.400770303329455 -831,10.0,8.0,0.0,4.807692307692308 -831,10.0,10.0,0.0,-4.807692307692308 -831,11.0,3.0,0.0,4.191255364806866 -831,11.0,11.0,6.573961583776156,-24.424167659260668 -831,11.0,12.0,0.0,7.142857142857143 -831,11.0,13.0,-1.5265676088395577,3.1734252729654173 -831,11.0,14.0,-3.0953961826564296,6.097275864326261 -831,11.0,15.0,-1.9519977922801688,4.104359379111847 -831,12.0,11.0,0.0,7.142857142857143 -831,12.0,12.0,0.0,-7.142857142857143 -831,13.0,11.0,-1.5265676088395577,3.1734252729654173 -831,13.0,13.0,4.01751987283902,-5.424299332335067 -831,13.0,14.0,-2.4909522639994623,2.250874059369649 -831,14.0,11.0,-3.0953961826564296,6.097275864326261 -831,14.0,13.0,-2.4909522639994623,2.250874059369649 -831,14.0,14.0,7.554697395557554,-12.324214800477266 -831,14.0,22.0,-1.9683489489016612,3.976064876781356 -831,15.0,11.0,-1.9519977922801688,4.104359379111847 -831,15.0,15.0,3.271064728633931,-8.94513365126506 -831,15.0,16.0,-1.3190669363537617,4.8407742721532125 -831,16.0,9.0,-3.956039125715353,10.317447719844054 -831,16.0,15.0,-1.3190669363537617,4.8407742721532125 -831,16.0,16.0,5.275106062069114,-15.158221991997266 -831,17.0,17.0,3.0756864340087167,-6.218758799278971 -831,17.0,18.0,-3.0756864340087167,6.218758799278971 -831,18.0,17.0,-3.0756864340087167,6.218758799278971 -831,18.0,18.0,8.958039375185187,-17.98346468163191 -831,18.0,19.0,-5.88235294117647,11.76470588235294 -831,19.0,9.0,-1.7848303152666305,3.98535828943083 -831,19.0,18.0,-5.88235294117647,11.76470588235294 -831,19.0,19.0,7.6671832564431,-15.75006417178377 -831,20.0,9.0,-5.101853820159654,10.98071411292983 -831,20.0,20.0,21.876495189895888,-45.10843276170355 -831,20.0,21.0,-16.774641369736234,34.127718648773715 -831,21.0,9.0,-2.619319553382597,5.400770303329455 -831,21.0,20.0,-16.774641369736234,34.127718648773715 -831,21.0,21.0,21.93449907537439,-43.48289181517921 -831,21.0,23.0,-2.5405381522555563,3.95440286307604 -831,22.0,14.0,-1.9683489489016612,3.976064876781356 -831,22.0,22.0,3.429754555384988,-6.965303617315433 -831,22.0,23.0,-1.4614056064833263,2.989238740534077 -831,23.0,21.0,-2.5405381522555563,3.95440286307604 -831,23.0,22.0,-1.4614056064833263,2.989238740534077 -831,23.0,23.0,5.311836702613133,-9.188263657315172 -831,23.0,24.0,-1.3098929438742493,2.287622053705056 -831,24.0,23.0,-1.3098929438742493,2.287622053705056 -831,24.0,24.0,4.495715080321987,-7.864978761969621 -831,24.0,25.0,-1.2165301194494855,1.8171440463475024 -831,24.0,26.0,-1.9692920169982515,3.760212661917064 -831,25.0,24.0,-1.2165301194494855,1.8171440463475024 -831,25.0,25.0,1.2165301194494855,-1.8171440463475024 -831,26.0,24.0,-1.9692920169982515,3.760212661917064 -831,26.0,26.0,3.652281470778589,-9.46044252232512 -831,26.0,27.0,0.0,2.608731947574922 -831,26.0,28.0,-0.99553355095268,1.881005840357816 -831,26.0,29.0,-0.6874559028276572,1.293971494797717 -831,27.0,5.0,-4.362844058012917,15.463571542897856 -831,27.0,7.0,-1.4439790613954469,4.540814658476248 -831,27.0,26.0,0.0,2.608731947574922 -831,27.0,27.0,5.806823119408364,-22.67145722159613 -831,28.0,26.0,-0.99553355095268,1.881005840357816 -831,28.0,28.0,1.9075867579849564,-3.604364401207048 -831,28.0,29.0,-0.9120532070322764,1.7233585608492326 -831,29.0,26.0,-0.6874559028276572,1.293971494797717 -831,29.0,28.0,-0.9120532070322764,1.7233585608492326 -831,29.0,29.0,1.5995091098599337,-3.0173300556469496 -832,0.0,0.0,6.765516048652632,-21.23160167089863 -832,0.0,1.0,-5.224646179885656,15.646726840803398 -832,0.0,2.0,-1.5408698687669766,5.631674830095234 -832,1.0,0.0,-5.224646179885656,15.646726840803398 -832,1.0,1.0,9.75228216552403,-30.648662892676068 -832,1.0,3.0,-1.7055303166990268,5.1973792282565086 -832,1.0,4.0,-1.1359607881738778,4.772479328281356 -832,1.0,5.0,-1.6861448807654689,5.116477495334806 -832,2.0,0.0,-1.5408698687669766,5.631674830095234 -832,2.0,2.0,9.736318911079088,-29.13794745915803 -832,2.0,3.0,-8.19544904231211,23.5308726290628 -832,3.0,1.0,-1.7055303166990268,5.1973792282565086 -832,3.0,2.0,-8.19544904231211,23.5308726290628 -832,3.0,3.0,16.314103089185693,-55.509410535254254 -832,3.0,5.0,-6.413123730174556,22.31120356548123 -832,3.0,11.0,0.0,4.191255364806866 -832,4.0,1.0,-1.1359607881738778,4.772479328281356 -832,4.0,4.0,4.089980824135861,-12.190647245055052 -832,4.0,6.0,-2.954020035961983,7.449267916773697 -832,5.0,1.0,-1.6861448807654689,5.116477495334806 -832,5.0,3.0,-6.413123730174556,22.31120356548123 -832,5.0,5.0,22.341631269034565,-82.8291478657789 -832,5.0,6.0,-3.590210423980992,11.02611441072814 -832,5.0,7.0,-6.289308176100628,22.0125786163522 -832,5.0,8.0,0.0,4.915840805411357 -832,5.0,9.0,0.0,1.8561002591115965 -832,5.0,27.0,-4.362844058012917,15.463571542897856 -832,6.0,4.0,-2.954020035961983,7.449267916773697 -832,6.0,5.0,-3.590210423980992,11.02611441072814 -832,6.0,6.0,6.544230459942975,-18.45668232750184 -832,7.0,5.0,-6.289308176100628,22.0125786163522 -832,7.0,7.0,7.733287237496075,-26.527493274828448 -832,7.0,27.0,-1.4439790613954469,4.540814658476248 -832,8.0,5.0,0.0,4.915840805411357 -832,8.0,8.0,0.0,-18.706293706293707 -832,8.0,9.0,0.0,9.090909090909092 -832,8.0,10.0,0.0,4.807692307692308 -832,9.0,5.0,0.0,1.8561002591115965 -832,9.0,8.0,0.0,9.090909090909092 -832,9.0,9.0,13.462042814524237,-41.3837606675224 -832,9.0,16.0,-3.956039125715353,10.317447719844054 -832,9.0,19.0,-1.7848303152666305,3.98535828943083 -832,9.0,20.0,-5.101853820159654,10.98071411292983 -832,9.0,21.0,-2.619319553382597,5.400770303329455 -832,10.0,8.0,0.0,4.807692307692308 -832,10.0,10.0,0.0,-4.807692307692308 -832,11.0,3.0,0.0,4.191255364806866 -832,11.0,11.0,6.573961583776156,-24.424167659260668 -832,11.0,12.0,0.0,7.142857142857143 -832,11.0,13.0,-1.5265676088395577,3.1734252729654173 -832,11.0,14.0,-3.0953961826564296,6.097275864326261 -832,11.0,15.0,-1.9519977922801688,4.104359379111847 -832,12.0,11.0,0.0,7.142857142857143 -832,12.0,12.0,0.0,-7.142857142857143 -832,13.0,11.0,-1.5265676088395577,3.1734252729654173 -832,13.0,13.0,4.01751987283902,-5.424299332335067 -832,13.0,14.0,-2.4909522639994623,2.250874059369649 -832,14.0,11.0,-3.0953961826564296,6.097275864326261 -832,14.0,13.0,-2.4909522639994623,2.250874059369649 -832,14.0,14.0,9.365498545964757,-16.01163373210796 -832,14.0,17.0,-1.8108011504072024,3.687418931630696 -832,14.0,22.0,-1.9683489489016612,3.976064876781356 -832,15.0,11.0,-1.9519977922801688,4.104359379111847 -832,15.0,15.0,3.271064728633931,-8.94513365126506 -832,15.0,16.0,-1.3190669363537617,4.8407742721532125 -832,16.0,9.0,-3.956039125715353,10.317447719844054 -832,16.0,15.0,-1.3190669363537617,4.8407742721532125 -832,16.0,16.0,5.275106062069114,-15.158221991997266 -832,17.0,14.0,-1.8108011504072024,3.687418931630696 -832,17.0,17.0,4.886487584415919,-9.906177730909668 -832,17.0,18.0,-3.0756864340087167,6.218758799278971 -832,18.0,17.0,-3.0756864340087167,6.218758799278971 -832,18.0,18.0,8.958039375185187,-17.98346468163191 -832,18.0,19.0,-5.88235294117647,11.76470588235294 -832,19.0,9.0,-1.7848303152666305,3.98535828943083 -832,19.0,18.0,-5.88235294117647,11.76470588235294 -832,19.0,19.0,7.6671832564431,-15.75006417178377 -832,20.0,9.0,-5.101853820159654,10.98071411292983 -832,20.0,20.0,21.876495189895888,-45.10843276170355 -832,20.0,21.0,-16.774641369736234,34.127718648773715 -832,21.0,9.0,-2.619319553382597,5.400770303329455 -832,21.0,20.0,-16.774641369736234,34.127718648773715 -832,21.0,21.0,21.93449907537439,-43.48289181517921 -832,21.0,23.0,-2.5405381522555563,3.95440286307604 -832,22.0,14.0,-1.9683489489016612,3.976064876781356 -832,22.0,22.0,3.429754555384988,-6.965303617315433 -832,22.0,23.0,-1.4614056064833263,2.989238740534077 -832,23.0,21.0,-2.5405381522555563,3.95440286307604 -832,23.0,22.0,-1.4614056064833263,2.989238740534077 -832,23.0,23.0,5.311836702613133,-9.188263657315172 -832,23.0,24.0,-1.3098929438742493,2.287622053705056 -832,24.0,23.0,-1.3098929438742493,2.287622053705056 -832,24.0,24.0,4.495715080321987,-7.864978761969621 -832,24.0,25.0,-1.2165301194494855,1.8171440463475024 -832,24.0,26.0,-1.9692920169982515,3.760212661917064 -832,25.0,24.0,-1.2165301194494855,1.8171440463475024 -832,25.0,25.0,1.2165301194494855,-1.8171440463475024 -832,26.0,24.0,-1.9692920169982515,3.760212661917064 -832,26.0,26.0,3.652281470778589,-9.46044252232512 -832,26.0,27.0,0.0,2.608731947574922 -832,26.0,28.0,-0.99553355095268,1.881005840357816 -832,26.0,29.0,-0.6874559028276572,1.293971494797717 -832,27.0,5.0,-4.362844058012917,15.463571542897856 -832,27.0,7.0,-1.4439790613954469,4.540814658476248 -832,27.0,26.0,0.0,2.608731947574922 -832,27.0,27.0,5.806823119408364,-22.67145722159613 -832,28.0,26.0,-0.99553355095268,1.881005840357816 -832,28.0,28.0,1.9075867579849564,-3.604364401207048 -832,28.0,29.0,-0.9120532070322764,1.7233585608492326 -832,29.0,26.0,-0.6874559028276572,1.293971494797717 -832,29.0,28.0,-0.9120532070322764,1.7233585608492326 -832,29.0,29.0,1.5995091098599337,-3.0173300556469496 -833,0.0,0.0,6.765516048652632,-21.23160167089863 -833,0.0,1.0,-5.224646179885656,15.646726840803398 -833,0.0,2.0,-1.5408698687669766,5.631674830095234 -833,1.0,0.0,-5.224646179885656,15.646726840803398 -833,1.0,1.0,9.75228216552403,-30.648662892676068 -833,1.0,3.0,-1.7055303166990268,5.1973792282565086 -833,1.0,4.0,-1.1359607881738778,4.772479328281356 -833,1.0,5.0,-1.6861448807654689,5.116477495334806 -833,2.0,0.0,-1.5408698687669766,5.631674830095234 -833,2.0,2.0,9.736318911079088,-29.13794745915803 -833,2.0,3.0,-8.19544904231211,23.5308726290628 -833,3.0,1.0,-1.7055303166990268,5.1973792282565086 -833,3.0,2.0,-8.19544904231211,23.5308726290628 -833,3.0,3.0,16.314103089185693,-55.509410535254254 -833,3.0,5.0,-6.413123730174556,22.31120356548123 -833,3.0,11.0,0.0,4.191255364806866 -833,4.0,1.0,-1.1359607881738778,4.772479328281356 -833,4.0,4.0,4.089980824135861,-12.190647245055052 -833,4.0,6.0,-2.954020035961983,7.449267916773697 -833,5.0,1.0,-1.6861448807654689,5.116477495334806 -833,5.0,3.0,-6.413123730174556,22.31120356548123 -833,5.0,5.0,12.46211266895294,-47.88797469513655 -833,5.0,8.0,0.0,4.915840805411357 -833,5.0,27.0,-4.362844058012917,15.463571542897856 -833,6.0,4.0,-2.954020035961983,7.449267916773697 -833,6.0,6.0,2.954020035961983,-7.439067916773697 -833,7.0,7.0,1.4439790613954469,-4.519414658476248 -833,7.0,27.0,-1.4439790613954469,4.540814658476248 -833,8.0,5.0,0.0,4.915840805411357 -833,8.0,8.0,0.0,-18.706293706293707 -833,8.0,9.0,0.0,9.090909090909092 -833,8.0,10.0,0.0,4.807692307692308 -833,9.0,8.0,0.0,9.090909090909092 -833,9.0,9.0,10.842723261141638,-34.18442921311381 -833,9.0,16.0,-3.956039125715353,10.317447719844054 -833,9.0,19.0,-1.7848303152666305,3.98535828943083 -833,9.0,20.0,-5.101853820159654,10.98071411292983 -833,10.0,8.0,0.0,4.807692307692308 -833,10.0,10.0,0.0,-4.807692307692308 -833,11.0,3.0,0.0,4.191255364806866 -833,11.0,11.0,6.573961583776156,-24.424167659260668 -833,11.0,12.0,0.0,7.142857142857143 -833,11.0,13.0,-1.5265676088395577,3.1734252729654173 -833,11.0,14.0,-3.0953961826564296,6.097275864326261 -833,11.0,15.0,-1.9519977922801688,4.104359379111847 -833,12.0,11.0,0.0,7.142857142857143 -833,12.0,12.0,0.0,-7.142857142857143 -833,13.0,11.0,-1.5265676088395577,3.1734252729654173 -833,13.0,13.0,4.01751987283902,-5.424299332335067 -833,13.0,14.0,-2.4909522639994623,2.250874059369649 -833,14.0,11.0,-3.0953961826564296,6.097275864326261 -833,14.0,13.0,-2.4909522639994623,2.250874059369649 -833,14.0,14.0,9.365498545964757,-16.01163373210796 -833,14.0,17.0,-1.8108011504072024,3.687418931630696 -833,14.0,22.0,-1.9683489489016612,3.976064876781356 -833,15.0,11.0,-1.9519977922801688,4.104359379111847 -833,15.0,15.0,3.271064728633931,-8.94513365126506 -833,15.0,16.0,-1.3190669363537617,4.8407742721532125 -833,16.0,9.0,-3.956039125715353,10.317447719844054 -833,16.0,15.0,-1.3190669363537617,4.8407742721532125 -833,16.0,16.0,5.275106062069114,-15.158221991997266 -833,17.0,14.0,-1.8108011504072024,3.687418931630696 -833,17.0,17.0,4.886487584415919,-9.906177730909668 -833,17.0,18.0,-3.0756864340087167,6.218758799278971 -833,18.0,17.0,-3.0756864340087167,6.218758799278971 -833,18.0,18.0,8.958039375185187,-17.98346468163191 -833,18.0,19.0,-5.88235294117647,11.76470588235294 -833,19.0,9.0,-1.7848303152666305,3.98535828943083 -833,19.0,18.0,-5.88235294117647,11.76470588235294 -833,19.0,19.0,7.6671832564431,-15.75006417178377 -833,20.0,9.0,-5.101853820159654,10.98071411292983 -833,20.0,20.0,21.876495189895888,-45.10843276170355 -833,20.0,21.0,-16.774641369736234,34.127718648773715 -833,21.0,20.0,-16.774641369736234,34.127718648773715 -833,21.0,21.0,19.31517952199179,-38.08212151184976 -833,21.0,23.0,-2.5405381522555563,3.95440286307604 -833,22.0,14.0,-1.9683489489016612,3.976064876781356 -833,22.0,22.0,3.429754555384988,-6.965303617315433 -833,22.0,23.0,-1.4614056064833263,2.989238740534077 -833,23.0,21.0,-2.5405381522555563,3.95440286307604 -833,23.0,22.0,-1.4614056064833263,2.989238740534077 -833,23.0,23.0,5.311836702613133,-9.188263657315172 -833,23.0,24.0,-1.3098929438742493,2.287622053705056 -833,24.0,23.0,-1.3098929438742493,2.287622053705056 -833,24.0,24.0,4.495715080321987,-7.864978761969621 -833,24.0,25.0,-1.2165301194494855,1.8171440463475024 -833,24.0,26.0,-1.9692920169982515,3.760212661917064 -833,25.0,24.0,-1.2165301194494855,1.8171440463475024 -833,25.0,25.0,1.2165301194494855,-1.8171440463475024 -833,26.0,24.0,-1.9692920169982515,3.760212661917064 -833,26.0,26.0,3.652281470778589,-9.46044252232512 -833,26.0,27.0,0.0,2.608731947574922 -833,26.0,28.0,-0.99553355095268,1.881005840357816 -833,26.0,29.0,-0.6874559028276572,1.293971494797717 -833,27.0,5.0,-4.362844058012917,15.463571542897856 -833,27.0,7.0,-1.4439790613954469,4.540814658476248 -833,27.0,26.0,0.0,2.608731947574922 -833,27.0,27.0,5.806823119408364,-22.67145722159613 -833,28.0,26.0,-0.99553355095268,1.881005840357816 -833,28.0,28.0,1.9075867579849564,-3.604364401207048 -833,28.0,29.0,-0.9120532070322764,1.7233585608492326 -833,29.0,26.0,-0.6874559028276572,1.293971494797717 -833,29.0,28.0,-0.9120532070322764,1.7233585608492326 -833,29.0,29.0,1.5995091098599337,-3.0173300556469496 -834,0.0,0.0,6.765516048652632,-21.23160167089863 -834,0.0,1.0,-5.224646179885656,15.646726840803398 -834,0.0,2.0,-1.5408698687669766,5.631674830095234 -834,1.0,0.0,-5.224646179885656,15.646726840803398 -834,1.0,1.0,9.75228216552403,-30.648662892676068 -834,1.0,3.0,-1.7055303166990268,5.1973792282565086 -834,1.0,4.0,-1.1359607881738778,4.772479328281356 -834,1.0,5.0,-1.6861448807654689,5.116477495334806 -834,2.0,0.0,-1.5408698687669766,5.631674830095234 -834,2.0,2.0,9.736318911079088,-29.13794745915803 -834,2.0,3.0,-8.19544904231211,23.5308726290628 -834,3.0,1.0,-1.7055303166990268,5.1973792282565086 -834,3.0,2.0,-8.19544904231211,23.5308726290628 -834,3.0,3.0,16.314103089185693,-55.509410535254254 -834,3.0,5.0,-6.413123730174556,22.31120356548123 -834,3.0,11.0,0.0,4.191255364806866 -834,4.0,1.0,-1.1359607881738778,4.772479328281356 -834,4.0,4.0,4.089980824135861,-12.190647245055052 -834,4.0,6.0,-2.954020035961983,7.449267916773697 -834,5.0,1.0,-1.6861448807654689,5.116477495334806 -834,5.0,3.0,-6.413123730174556,22.31120356548123 -834,5.0,5.0,22.341631269034565,-82.8291478657789 -834,5.0,6.0,-3.590210423980992,11.02611441072814 -834,5.0,7.0,-6.289308176100628,22.0125786163522 -834,5.0,8.0,0.0,4.915840805411357 -834,5.0,9.0,0.0,1.8561002591115965 -834,5.0,27.0,-4.362844058012917,15.463571542897856 -834,6.0,4.0,-2.954020035961983,7.449267916773697 -834,6.0,5.0,-3.590210423980992,11.02611441072814 -834,6.0,6.0,6.544230459942975,-18.45668232750184 -834,7.0,5.0,-6.289308176100628,22.0125786163522 -834,7.0,7.0,7.733287237496075,-26.527493274828448 -834,7.0,27.0,-1.4439790613954469,4.540814658476248 -834,8.0,5.0,0.0,4.915840805411357 -834,8.0,8.0,0.0,-18.706293706293707 -834,8.0,9.0,0.0,9.090909090909092 -834,8.0,10.0,0.0,4.807692307692308 -834,9.0,5.0,0.0,1.8561002591115965 -834,9.0,8.0,0.0,9.090909090909092 -834,9.0,9.0,13.462042814524237,-41.3837606675224 -834,9.0,16.0,-3.956039125715353,10.317447719844054 -834,9.0,19.0,-1.7848303152666305,3.98535828943083 -834,9.0,20.0,-5.101853820159654,10.98071411292983 -834,9.0,21.0,-2.619319553382597,5.400770303329455 -834,10.0,8.0,0.0,4.807692307692308 -834,10.0,10.0,0.0,-4.807692307692308 -834,11.0,3.0,0.0,4.191255364806866 -834,11.0,11.0,6.573961583776156,-24.424167659260668 -834,11.0,12.0,0.0,7.142857142857143 -834,11.0,13.0,-1.5265676088395577,3.1734252729654173 -834,11.0,14.0,-3.0953961826564296,6.097275864326261 -834,11.0,15.0,-1.9519977922801688,4.104359379111847 -834,12.0,11.0,0.0,7.142857142857143 -834,12.0,12.0,0.0,-7.142857142857143 -834,13.0,11.0,-1.5265676088395577,3.1734252729654173 -834,13.0,13.0,4.01751987283902,-5.424299332335067 -834,13.0,14.0,-2.4909522639994623,2.250874059369649 -834,14.0,11.0,-3.0953961826564296,6.097275864326261 -834,14.0,13.0,-2.4909522639994623,2.250874059369649 -834,14.0,14.0,9.365498545964757,-16.01163373210796 -834,14.0,17.0,-1.8108011504072024,3.687418931630696 -834,14.0,22.0,-1.9683489489016612,3.976064876781356 -834,15.0,11.0,-1.9519977922801688,4.104359379111847 -834,15.0,15.0,3.271064728633931,-8.94513365126506 -834,15.0,16.0,-1.3190669363537617,4.8407742721532125 -834,16.0,9.0,-3.956039125715353,10.317447719844054 -834,16.0,15.0,-1.3190669363537617,4.8407742721532125 -834,16.0,16.0,5.275106062069114,-15.158221991997266 -834,17.0,14.0,-1.8108011504072024,3.687418931630696 -834,17.0,17.0,4.886487584415919,-9.906177730909668 -834,17.0,18.0,-3.0756864340087167,6.218758799278971 -834,18.0,17.0,-3.0756864340087167,6.218758799278971 -834,18.0,18.0,8.958039375185187,-17.98346468163191 -834,18.0,19.0,-5.88235294117647,11.76470588235294 -834,19.0,9.0,-1.7848303152666305,3.98535828943083 -834,19.0,18.0,-5.88235294117647,11.76470588235294 -834,19.0,19.0,7.6671832564431,-15.75006417178377 -834,20.0,9.0,-5.101853820159654,10.98071411292983 -834,20.0,20.0,21.876495189895888,-45.10843276170355 -834,20.0,21.0,-16.774641369736234,34.127718648773715 -834,21.0,9.0,-2.619319553382597,5.400770303329455 -834,21.0,20.0,-16.774641369736234,34.127718648773715 -834,21.0,21.0,21.93449907537439,-43.48289181517921 -834,21.0,23.0,-2.5405381522555563,3.95440286307604 -834,22.0,14.0,-1.9683489489016612,3.976064876781356 -834,22.0,22.0,3.429754555384988,-6.965303617315433 -834,22.0,23.0,-1.4614056064833263,2.989238740534077 -834,23.0,21.0,-2.5405381522555563,3.95440286307604 -834,23.0,22.0,-1.4614056064833263,2.989238740534077 -834,23.0,23.0,5.311836702613133,-9.188263657315172 -834,23.0,24.0,-1.3098929438742493,2.287622053705056 -834,24.0,23.0,-1.3098929438742493,2.287622053705056 -834,24.0,24.0,4.495715080321987,-7.864978761969621 -834,24.0,25.0,-1.2165301194494855,1.8171440463475024 -834,24.0,26.0,-1.9692920169982515,3.760212661917064 -834,25.0,24.0,-1.2165301194494855,1.8171440463475024 -834,25.0,25.0,1.2165301194494855,-1.8171440463475024 -834,26.0,24.0,-1.9692920169982515,3.760212661917064 -834,26.0,26.0,3.652281470778589,-9.46044252232512 -834,26.0,27.0,0.0,2.608731947574922 -834,26.0,28.0,-0.99553355095268,1.881005840357816 -834,26.0,29.0,-0.6874559028276572,1.293971494797717 -834,27.0,5.0,-4.362844058012917,15.463571542897856 -834,27.0,7.0,-1.4439790613954469,4.540814658476248 -834,27.0,26.0,0.0,2.608731947574922 -834,27.0,27.0,5.806823119408364,-22.67145722159613 -834,28.0,26.0,-0.99553355095268,1.881005840357816 -834,28.0,28.0,1.9075867579849564,-3.604364401207048 -834,28.0,29.0,-0.9120532070322764,1.7233585608492326 -834,29.0,26.0,-0.6874559028276572,1.293971494797717 -834,29.0,28.0,-0.9120532070322764,1.7233585608492326 -834,29.0,29.0,1.5995091098599337,-3.0173300556469496 -835,0.0,0.0,6.765516048652632,-21.23160167089863 -835,0.0,1.0,-5.224646179885656,15.646726840803398 -835,0.0,2.0,-1.5408698687669766,5.631674830095234 -835,1.0,0.0,-5.224646179885656,15.646726840803398 -835,1.0,1.0,9.75228216552403,-30.648662892676068 -835,1.0,3.0,-1.7055303166990268,5.1973792282565086 -835,1.0,4.0,-1.1359607881738778,4.772479328281356 -835,1.0,5.0,-1.6861448807654689,5.116477495334806 -835,2.0,0.0,-1.5408698687669766,5.631674830095234 -835,2.0,2.0,9.736318911079088,-29.13794745915803 -835,2.0,3.0,-8.19544904231211,23.5308726290628 -835,3.0,1.0,-1.7055303166990268,5.1973792282565086 -835,3.0,2.0,-8.19544904231211,23.5308726290628 -835,3.0,3.0,16.314103089185693,-55.509410535254254 -835,3.0,5.0,-6.413123730174556,22.31120356548123 -835,3.0,11.0,0.0,4.191255364806866 -835,4.0,1.0,-1.1359607881738778,4.772479328281356 -835,4.0,4.0,4.089980824135861,-12.190647245055052 -835,4.0,6.0,-2.954020035961983,7.449267916773697 -835,5.0,1.0,-1.6861448807654689,5.116477495334806 -835,5.0,3.0,-6.413123730174556,22.31120356548123 -835,5.0,5.0,16.052323092933932,-60.8210692494267 -835,5.0,6.0,-3.590210423980992,11.02611441072814 -835,5.0,8.0,0.0,4.915840805411357 -835,5.0,9.0,0.0,1.8561002591115965 -835,5.0,27.0,-4.362844058012917,15.463571542897856 -835,6.0,4.0,-2.954020035961983,7.449267916773697 -835,6.0,5.0,-3.590210423980992,11.02611441072814 -835,6.0,6.0,6.544230459942975,-18.45668232750184 -835,7.0,7.0,1.4439790613954469,-4.519414658476248 -835,7.0,27.0,-1.4439790613954469,4.540814658476248 -835,8.0,5.0,0.0,4.915840805411357 -835,8.0,8.0,0.0,-18.706293706293707 -835,8.0,9.0,0.0,9.090909090909092 -835,8.0,10.0,0.0,4.807692307692308 -835,9.0,5.0,0.0,1.8561002591115965 -835,9.0,8.0,0.0,9.090909090909092 -835,9.0,9.0,13.462042814524237,-41.3837606675224 -835,9.0,16.0,-3.956039125715353,10.317447719844054 -835,9.0,19.0,-1.7848303152666305,3.98535828943083 -835,9.0,20.0,-5.101853820159654,10.98071411292983 -835,9.0,21.0,-2.619319553382597,5.400770303329455 -835,10.0,8.0,0.0,4.807692307692308 -835,10.0,10.0,0.0,-4.807692307692308 -835,11.0,3.0,0.0,4.191255364806866 -835,11.0,11.0,6.573961583776156,-24.424167659260668 -835,11.0,12.0,0.0,7.142857142857143 -835,11.0,13.0,-1.5265676088395577,3.1734252729654173 -835,11.0,14.0,-3.0953961826564296,6.097275864326261 -835,11.0,15.0,-1.9519977922801688,4.104359379111847 -835,12.0,11.0,0.0,7.142857142857143 -835,12.0,12.0,0.0,-7.142857142857143 -835,13.0,11.0,-1.5265676088395577,3.1734252729654173 -835,13.0,13.0,4.01751987283902,-5.424299332335067 -835,13.0,14.0,-2.4909522639994623,2.250874059369649 -835,14.0,11.0,-3.0953961826564296,6.097275864326261 -835,14.0,13.0,-2.4909522639994623,2.250874059369649 -835,14.0,14.0,9.365498545964757,-16.01163373210796 -835,14.0,17.0,-1.8108011504072024,3.687418931630696 -835,14.0,22.0,-1.9683489489016612,3.976064876781356 -835,15.0,11.0,-1.9519977922801688,4.104359379111847 -835,15.0,15.0,3.271064728633931,-8.94513365126506 -835,15.0,16.0,-1.3190669363537617,4.8407742721532125 -835,16.0,9.0,-3.956039125715353,10.317447719844054 -835,16.0,15.0,-1.3190669363537617,4.8407742721532125 -835,16.0,16.0,5.275106062069114,-15.158221991997266 -835,17.0,14.0,-1.8108011504072024,3.687418931630696 -835,17.0,17.0,4.886487584415919,-9.906177730909668 -835,17.0,18.0,-3.0756864340087167,6.218758799278971 -835,18.0,17.0,-3.0756864340087167,6.218758799278971 -835,18.0,18.0,8.958039375185187,-17.98346468163191 -835,18.0,19.0,-5.88235294117647,11.76470588235294 -835,19.0,9.0,-1.7848303152666305,3.98535828943083 -835,19.0,18.0,-5.88235294117647,11.76470588235294 -835,19.0,19.0,7.6671832564431,-15.75006417178377 -835,20.0,9.0,-5.101853820159654,10.98071411292983 -835,20.0,20.0,21.876495189895888,-45.10843276170355 -835,20.0,21.0,-16.774641369736234,34.127718648773715 -835,21.0,9.0,-2.619319553382597,5.400770303329455 -835,21.0,20.0,-16.774641369736234,34.127718648773715 -835,21.0,21.0,21.93449907537439,-43.48289181517921 -835,21.0,23.0,-2.5405381522555563,3.95440286307604 -835,22.0,14.0,-1.9683489489016612,3.976064876781356 -835,22.0,22.0,3.429754555384988,-6.965303617315433 -835,22.0,23.0,-1.4614056064833263,2.989238740534077 -835,23.0,21.0,-2.5405381522555563,3.95440286307604 -835,23.0,22.0,-1.4614056064833263,2.989238740534077 -835,23.0,23.0,5.311836702613133,-9.188263657315172 -835,23.0,24.0,-1.3098929438742493,2.287622053705056 -835,24.0,23.0,-1.3098929438742493,2.287622053705056 -835,24.0,24.0,4.495715080321987,-7.864978761969621 -835,24.0,25.0,-1.2165301194494855,1.8171440463475024 -835,24.0,26.0,-1.9692920169982515,3.760212661917064 -835,25.0,24.0,-1.2165301194494855,1.8171440463475024 -835,25.0,25.0,1.2165301194494855,-1.8171440463475024 -835,26.0,24.0,-1.9692920169982515,3.760212661917064 -835,26.0,26.0,3.652281470778589,-9.46044252232512 -835,26.0,27.0,0.0,2.608731947574922 -835,26.0,28.0,-0.99553355095268,1.881005840357816 -835,26.0,29.0,-0.6874559028276572,1.293971494797717 -835,27.0,5.0,-4.362844058012917,15.463571542897856 -835,27.0,7.0,-1.4439790613954469,4.540814658476248 -835,27.0,26.0,0.0,2.608731947574922 -835,27.0,27.0,5.806823119408364,-22.67145722159613 -835,28.0,26.0,-0.99553355095268,1.881005840357816 -835,28.0,28.0,1.9075867579849564,-3.604364401207048 -835,28.0,29.0,-0.9120532070322764,1.7233585608492326 -835,29.0,26.0,-0.6874559028276572,1.293971494797717 -835,29.0,28.0,-0.9120532070322764,1.7233585608492326 -835,29.0,29.0,1.5995091098599337,-3.0173300556469496 -836,0.0,0.0,5.224646179885656,-15.620326840803395 -836,0.0,1.0,-5.224646179885656,15.646726840803398 -836,1.0,0.0,-5.224646179885656,15.646726840803398 -836,1.0,1.0,9.75228216552403,-30.648662892676068 -836,1.0,3.0,-1.7055303166990268,5.1973792282565086 -836,1.0,4.0,-1.1359607881738778,4.772479328281356 -836,1.0,5.0,-1.6861448807654689,5.116477495334806 -836,2.0,2.0,8.19544904231211,-23.5266726290628 -836,2.0,3.0,-8.19544904231211,23.5308726290628 -836,3.0,1.0,-1.7055303166990268,5.1973792282565086 -836,3.0,2.0,-8.19544904231211,23.5308726290628 -836,3.0,3.0,16.314103089185693,-55.509410535254254 -836,3.0,5.0,-6.413123730174556,22.31120356548123 -836,3.0,11.0,0.0,4.191255364806866 -836,4.0,1.0,-1.1359607881738778,4.772479328281356 -836,4.0,4.0,4.089980824135861,-12.190647245055052 -836,4.0,6.0,-2.954020035961983,7.449267916773697 -836,5.0,1.0,-1.6861448807654689,5.116477495334806 -836,5.0,3.0,-6.413123730174556,22.31120356548123 -836,5.0,5.0,22.341631269034565,-82.8291478657789 -836,5.0,6.0,-3.590210423980992,11.02611441072814 -836,5.0,7.0,-6.289308176100628,22.0125786163522 -836,5.0,8.0,0.0,4.915840805411357 -836,5.0,9.0,0.0,1.8561002591115965 -836,5.0,27.0,-4.362844058012917,15.463571542897856 -836,6.0,4.0,-2.954020035961983,7.449267916773697 -836,6.0,5.0,-3.590210423980992,11.02611441072814 -836,6.0,6.0,6.544230459942975,-18.45668232750184 -836,7.0,5.0,-6.289308176100628,22.0125786163522 -836,7.0,7.0,7.733287237496075,-26.527493274828448 -836,7.0,27.0,-1.4439790613954469,4.540814658476248 -836,8.0,5.0,0.0,4.915840805411357 -836,8.0,8.0,0.0,-18.706293706293707 -836,8.0,9.0,0.0,9.090909090909092 -836,8.0,10.0,0.0,4.807692307692308 -836,9.0,5.0,0.0,1.8561002591115965 -836,9.0,8.0,0.0,9.090909090909092 -836,9.0,9.0,13.462042814524237,-41.3837606675224 -836,9.0,16.0,-3.956039125715353,10.317447719844054 -836,9.0,19.0,-1.7848303152666305,3.98535828943083 -836,9.0,20.0,-5.101853820159654,10.98071411292983 -836,9.0,21.0,-2.619319553382597,5.400770303329455 -836,10.0,8.0,0.0,4.807692307692308 -836,10.0,10.0,0.0,-4.807692307692308 -836,11.0,3.0,0.0,4.191255364806866 -836,11.0,11.0,6.573961583776156,-24.424167659260668 -836,11.0,12.0,0.0,7.142857142857143 -836,11.0,13.0,-1.5265676088395577,3.1734252729654173 -836,11.0,14.0,-3.0953961826564296,6.097275864326261 -836,11.0,15.0,-1.9519977922801688,4.104359379111847 -836,12.0,11.0,0.0,7.142857142857143 -836,12.0,12.0,0.0,-7.142857142857143 -836,13.0,11.0,-1.5265676088395577,3.1734252729654173 -836,13.0,13.0,4.01751987283902,-5.424299332335067 -836,13.0,14.0,-2.4909522639994623,2.250874059369649 -836,14.0,11.0,-3.0953961826564296,6.097275864326261 -836,14.0,13.0,-2.4909522639994623,2.250874059369649 -836,14.0,14.0,9.365498545964757,-16.01163373210796 -836,14.0,17.0,-1.8108011504072024,3.687418931630696 -836,14.0,22.0,-1.9683489489016612,3.976064876781356 -836,15.0,11.0,-1.9519977922801688,4.104359379111847 -836,15.0,15.0,3.271064728633931,-8.94513365126506 -836,15.0,16.0,-1.3190669363537617,4.8407742721532125 -836,16.0,9.0,-3.956039125715353,10.317447719844054 -836,16.0,15.0,-1.3190669363537617,4.8407742721532125 -836,16.0,16.0,5.275106062069114,-15.158221991997266 -836,17.0,14.0,-1.8108011504072024,3.687418931630696 -836,17.0,17.0,4.886487584415919,-9.906177730909668 -836,17.0,18.0,-3.0756864340087167,6.218758799278971 -836,18.0,17.0,-3.0756864340087167,6.218758799278971 -836,18.0,18.0,8.958039375185187,-17.98346468163191 -836,18.0,19.0,-5.88235294117647,11.76470588235294 -836,19.0,9.0,-1.7848303152666305,3.98535828943083 -836,19.0,18.0,-5.88235294117647,11.76470588235294 -836,19.0,19.0,7.6671832564431,-15.75006417178377 -836,20.0,9.0,-5.101853820159654,10.98071411292983 -836,20.0,20.0,21.876495189895888,-45.10843276170355 -836,20.0,21.0,-16.774641369736234,34.127718648773715 -836,21.0,9.0,-2.619319553382597,5.400770303329455 -836,21.0,20.0,-16.774641369736234,34.127718648773715 -836,21.0,21.0,21.93449907537439,-43.48289181517921 -836,21.0,23.0,-2.5405381522555563,3.95440286307604 -836,22.0,14.0,-1.9683489489016612,3.976064876781356 -836,22.0,22.0,3.429754555384988,-6.965303617315433 -836,22.0,23.0,-1.4614056064833263,2.989238740534077 -836,23.0,21.0,-2.5405381522555563,3.95440286307604 -836,23.0,22.0,-1.4614056064833263,2.989238740534077 -836,23.0,23.0,5.311836702613133,-9.188263657315172 -836,23.0,24.0,-1.3098929438742493,2.287622053705056 -836,24.0,23.0,-1.3098929438742493,2.287622053705056 -836,24.0,24.0,4.495715080321987,-7.864978761969621 -836,24.0,25.0,-1.2165301194494855,1.8171440463475024 -836,24.0,26.0,-1.9692920169982515,3.760212661917064 -836,25.0,24.0,-1.2165301194494855,1.8171440463475024 -836,25.0,25.0,1.2165301194494855,-1.8171440463475024 -836,26.0,24.0,-1.9692920169982515,3.760212661917064 -836,26.0,26.0,3.652281470778589,-9.46044252232512 -836,26.0,27.0,0.0,2.608731947574922 -836,26.0,28.0,-0.99553355095268,1.881005840357816 -836,26.0,29.0,-0.6874559028276572,1.293971494797717 -836,27.0,5.0,-4.362844058012917,15.463571542897856 -836,27.0,7.0,-1.4439790613954469,4.540814658476248 -836,27.0,26.0,0.0,2.608731947574922 -836,27.0,27.0,5.806823119408364,-22.67145722159613 -836,28.0,26.0,-0.99553355095268,1.881005840357816 -836,28.0,28.0,0.99553355095268,-1.881005840357816 -836,29.0,26.0,-0.6874559028276572,1.293971494797717 -836,29.0,29.0,0.6874559028276572,-1.293971494797717 -837,0.0,0.0,6.765516048652632,-21.23160167089863 -837,0.0,1.0,-5.224646179885656,15.646726840803398 -837,0.0,2.0,-1.5408698687669766,5.631674830095234 -837,1.0,0.0,-5.224646179885656,15.646726840803398 -837,1.0,1.0,9.75228216552403,-30.648662892676068 -837,1.0,3.0,-1.7055303166990268,5.1973792282565086 -837,1.0,4.0,-1.1359607881738778,4.772479328281356 -837,1.0,5.0,-1.6861448807654689,5.116477495334806 -837,2.0,0.0,-1.5408698687669766,5.631674830095234 -837,2.0,2.0,9.736318911079088,-29.13794745915803 -837,2.0,3.0,-8.19544904231211,23.5308726290628 -837,3.0,1.0,-1.7055303166990268,5.1973792282565086 -837,3.0,2.0,-8.19544904231211,23.5308726290628 -837,3.0,3.0,16.314103089185693,-51.01235542280054 -837,3.0,5.0,-6.413123730174556,22.31120356548123 -837,4.0,1.0,-1.1359607881738778,4.772479328281356 -837,4.0,4.0,1.1359607881738778,-4.751579328281355 -837,5.0,1.0,-1.6861448807654689,5.116477495334806 -837,5.0,3.0,-6.413123730174556,22.31120356548123 -837,5.0,5.0,22.341631269034565,-82.8291478657789 -837,5.0,6.0,-3.590210423980992,11.02611441072814 -837,5.0,7.0,-6.289308176100628,22.0125786163522 -837,5.0,8.0,0.0,4.915840805411357 -837,5.0,9.0,0.0,1.8561002591115965 -837,5.0,27.0,-4.362844058012917,15.463571542897856 -837,6.0,5.0,-3.590210423980992,11.02611441072814 -837,6.0,6.0,3.590210423980992,-11.01761441072814 -837,7.0,5.0,-6.289308176100628,22.0125786163522 -837,7.0,7.0,7.733287237496075,-26.527493274828448 -837,7.0,27.0,-1.4439790613954469,4.540814658476248 -837,8.0,5.0,0.0,4.915840805411357 -837,8.0,8.0,0.0,-18.706293706293707 -837,8.0,9.0,0.0,9.090909090909092 -837,8.0,10.0,0.0,4.807692307692308 -837,9.0,5.0,0.0,1.8561002591115965 -837,9.0,8.0,0.0,9.090909090909092 -837,9.0,9.0,13.462042814524237,-41.3837606675224 -837,9.0,16.0,-3.956039125715353,10.317447719844054 -837,9.0,19.0,-1.7848303152666305,3.98535828943083 -837,9.0,20.0,-5.101853820159654,10.98071411292983 -837,9.0,21.0,-2.619319553382597,5.400770303329455 -837,10.0,8.0,0.0,4.807692307692308 -837,10.0,10.0,0.0,-4.807692307692308 -837,11.0,11.0,6.573961583776156,-20.517917659260668 -837,11.0,12.0,0.0,7.142857142857143 -837,11.0,13.0,-1.5265676088395577,3.1734252729654173 -837,11.0,14.0,-3.0953961826564296,6.097275864326261 -837,11.0,15.0,-1.9519977922801688,4.104359379111847 -837,12.0,11.0,0.0,7.142857142857143 -837,12.0,12.0,0.0,-7.142857142857143 -837,13.0,11.0,-1.5265676088395577,3.1734252729654173 -837,13.0,13.0,4.01751987283902,-5.424299332335067 -837,13.0,14.0,-2.4909522639994623,2.250874059369649 -837,14.0,11.0,-3.0953961826564296,6.097275864326261 -837,14.0,13.0,-2.4909522639994623,2.250874059369649 -837,14.0,14.0,9.365498545964757,-16.01163373210796 -837,14.0,17.0,-1.8108011504072024,3.687418931630696 -837,14.0,22.0,-1.9683489489016612,3.976064876781356 -837,15.0,11.0,-1.9519977922801688,4.104359379111847 -837,15.0,15.0,3.271064728633931,-8.94513365126506 -837,15.0,16.0,-1.3190669363537617,4.8407742721532125 -837,16.0,9.0,-3.956039125715353,10.317447719844054 -837,16.0,15.0,-1.3190669363537617,4.8407742721532125 -837,16.0,16.0,5.275106062069114,-15.158221991997266 -837,17.0,14.0,-1.8108011504072024,3.687418931630696 -837,17.0,17.0,4.886487584415919,-9.906177730909668 -837,17.0,18.0,-3.0756864340087167,6.218758799278971 -837,18.0,17.0,-3.0756864340087167,6.218758799278971 -837,18.0,18.0,8.958039375185187,-17.98346468163191 -837,18.0,19.0,-5.88235294117647,11.76470588235294 -837,19.0,9.0,-1.7848303152666305,3.98535828943083 -837,19.0,18.0,-5.88235294117647,11.76470588235294 -837,19.0,19.0,7.6671832564431,-15.75006417178377 -837,20.0,9.0,-5.101853820159654,10.98071411292983 -837,20.0,20.0,21.876495189895888,-45.10843276170355 -837,20.0,21.0,-16.774641369736234,34.127718648773715 -837,21.0,9.0,-2.619319553382597,5.400770303329455 -837,21.0,20.0,-16.774641369736234,34.127718648773715 -837,21.0,21.0,21.93449907537439,-43.48289181517921 -837,21.0,23.0,-2.5405381522555563,3.95440286307604 -837,22.0,14.0,-1.9683489489016612,3.976064876781356 -837,22.0,22.0,3.429754555384988,-6.965303617315433 -837,22.0,23.0,-1.4614056064833263,2.989238740534077 -837,23.0,21.0,-2.5405381522555563,3.95440286307604 -837,23.0,22.0,-1.4614056064833263,2.989238740534077 -837,23.0,23.0,5.311836702613133,-9.188263657315172 -837,23.0,24.0,-1.3098929438742493,2.287622053705056 -837,24.0,23.0,-1.3098929438742493,2.287622053705056 -837,24.0,24.0,4.495715080321987,-7.864978761969621 -837,24.0,25.0,-1.2165301194494855,1.8171440463475024 -837,24.0,26.0,-1.9692920169982515,3.760212661917064 -837,25.0,24.0,-1.2165301194494855,1.8171440463475024 -837,25.0,25.0,1.2165301194494855,-1.8171440463475024 -837,26.0,24.0,-1.9692920169982515,3.760212661917064 -837,26.0,26.0,3.652281470778589,-9.46044252232512 -837,26.0,27.0,0.0,2.608731947574922 -837,26.0,28.0,-0.99553355095268,1.881005840357816 -837,26.0,29.0,-0.6874559028276572,1.293971494797717 -837,27.0,5.0,-4.362844058012917,15.463571542897856 -837,27.0,7.0,-1.4439790613954469,4.540814658476248 -837,27.0,26.0,0.0,2.608731947574922 -837,27.0,27.0,5.806823119408364,-22.67145722159613 -837,28.0,26.0,-0.99553355095268,1.881005840357816 -837,28.0,28.0,1.9075867579849564,-3.604364401207048 -837,28.0,29.0,-0.9120532070322764,1.7233585608492326 -837,29.0,26.0,-0.6874559028276572,1.293971494797717 -837,29.0,28.0,-0.9120532070322764,1.7233585608492326 -837,29.0,29.0,1.5995091098599337,-3.0173300556469496 -838,0.0,0.0,6.765516048652632,-21.23160167089863 -838,0.0,1.0,-5.224646179885656,15.646726840803398 -838,0.0,2.0,-1.5408698687669766,5.631674830095234 -838,1.0,0.0,-5.224646179885656,15.646726840803398 -838,1.0,1.0,9.75228216552403,-30.648662892676068 -838,1.0,3.0,-1.7055303166990268,5.1973792282565086 -838,1.0,4.0,-1.1359607881738778,4.772479328281356 -838,1.0,5.0,-1.6861448807654689,5.116477495334806 -838,2.0,0.0,-1.5408698687669766,5.631674830095234 -838,2.0,2.0,9.736318911079088,-29.13794745915803 -838,2.0,3.0,-8.19544904231211,23.5308726290628 -838,3.0,1.0,-1.7055303166990268,5.1973792282565086 -838,3.0,2.0,-8.19544904231211,23.5308726290628 -838,3.0,3.0,16.314103089185693,-55.509410535254254 -838,3.0,5.0,-6.413123730174556,22.31120356548123 -838,3.0,11.0,0.0,4.191255364806866 -838,4.0,1.0,-1.1359607881738778,4.772479328281356 -838,4.0,4.0,4.089980824135861,-12.190647245055052 -838,4.0,6.0,-2.954020035961983,7.449267916773697 -838,5.0,1.0,-1.6861448807654689,5.116477495334806 -838,5.0,3.0,-6.413123730174556,22.31120356548123 -838,5.0,5.0,18.75142084505357,-71.81153345505078 -838,5.0,7.0,-6.289308176100628,22.0125786163522 -838,5.0,8.0,0.0,4.915840805411357 -838,5.0,9.0,0.0,1.8561002591115965 -838,5.0,27.0,-4.362844058012917,15.463571542897856 -838,6.0,4.0,-2.954020035961983,7.449267916773697 -838,6.0,6.0,2.954020035961983,-7.439067916773697 -838,7.0,5.0,-6.289308176100628,22.0125786163522 -838,7.0,7.0,7.733287237496075,-26.527493274828448 -838,7.0,27.0,-1.4439790613954469,4.540814658476248 -838,8.0,5.0,0.0,4.915840805411357 -838,8.0,8.0,0.0,-18.706293706293707 -838,8.0,9.0,0.0,9.090909090909092 -838,8.0,10.0,0.0,4.807692307692308 -838,9.0,5.0,0.0,1.8561002591115965 -838,9.0,8.0,0.0,9.090909090909092 -838,9.0,9.0,13.462042814524237,-41.3837606675224 -838,9.0,16.0,-3.956039125715353,10.317447719844054 -838,9.0,19.0,-1.7848303152666305,3.98535828943083 -838,9.0,20.0,-5.101853820159654,10.98071411292983 -838,9.0,21.0,-2.619319553382597,5.400770303329455 -838,10.0,8.0,0.0,4.807692307692308 -838,10.0,10.0,0.0,-4.807692307692308 -838,11.0,3.0,0.0,4.191255364806866 -838,11.0,11.0,6.573961583776156,-24.424167659260668 -838,11.0,12.0,0.0,7.142857142857143 -838,11.0,13.0,-1.5265676088395577,3.1734252729654173 -838,11.0,14.0,-3.0953961826564296,6.097275864326261 -838,11.0,15.0,-1.9519977922801688,4.104359379111847 -838,12.0,11.0,0.0,7.142857142857143 -838,12.0,12.0,0.0,-7.142857142857143 -838,13.0,11.0,-1.5265676088395577,3.1734252729654173 -838,13.0,13.0,4.01751987283902,-5.424299332335067 -838,13.0,14.0,-2.4909522639994623,2.250874059369649 -838,14.0,11.0,-3.0953961826564296,6.097275864326261 -838,14.0,13.0,-2.4909522639994623,2.250874059369649 -838,14.0,14.0,9.365498545964757,-16.01163373210796 -838,14.0,17.0,-1.8108011504072024,3.687418931630696 -838,14.0,22.0,-1.9683489489016612,3.976064876781356 -838,15.0,11.0,-1.9519977922801688,4.104359379111847 -838,15.0,15.0,3.271064728633931,-8.94513365126506 -838,15.0,16.0,-1.3190669363537617,4.8407742721532125 -838,16.0,9.0,-3.956039125715353,10.317447719844054 -838,16.0,15.0,-1.3190669363537617,4.8407742721532125 -838,16.0,16.0,5.275106062069114,-15.158221991997266 -838,17.0,14.0,-1.8108011504072024,3.687418931630696 -838,17.0,17.0,4.886487584415919,-9.906177730909668 -838,17.0,18.0,-3.0756864340087167,6.218758799278971 -838,18.0,17.0,-3.0756864340087167,6.218758799278971 -838,18.0,18.0,8.958039375185187,-17.98346468163191 -838,18.0,19.0,-5.88235294117647,11.76470588235294 -838,19.0,9.0,-1.7848303152666305,3.98535828943083 -838,19.0,18.0,-5.88235294117647,11.76470588235294 -838,19.0,19.0,7.6671832564431,-15.75006417178377 -838,20.0,9.0,-5.101853820159654,10.98071411292983 -838,20.0,20.0,21.876495189895888,-45.10843276170355 -838,20.0,21.0,-16.774641369736234,34.127718648773715 -838,21.0,9.0,-2.619319553382597,5.400770303329455 -838,21.0,20.0,-16.774641369736234,34.127718648773715 -838,21.0,21.0,21.93449907537439,-43.48289181517921 -838,21.0,23.0,-2.5405381522555563,3.95440286307604 -838,22.0,14.0,-1.9683489489016612,3.976064876781356 -838,22.0,22.0,3.429754555384988,-6.965303617315433 -838,22.0,23.0,-1.4614056064833263,2.989238740534077 -838,23.0,21.0,-2.5405381522555563,3.95440286307604 -838,23.0,22.0,-1.4614056064833263,2.989238740534077 -838,23.0,23.0,5.311836702613133,-9.188263657315172 -838,23.0,24.0,-1.3098929438742493,2.287622053705056 -838,24.0,23.0,-1.3098929438742493,2.287622053705056 -838,24.0,24.0,4.495715080321987,-7.864978761969621 -838,24.0,25.0,-1.2165301194494855,1.8171440463475024 -838,24.0,26.0,-1.9692920169982515,3.760212661917064 -838,25.0,24.0,-1.2165301194494855,1.8171440463475024 -838,25.0,25.0,1.2165301194494855,-1.8171440463475024 -838,26.0,24.0,-1.9692920169982515,3.760212661917064 -838,26.0,26.0,3.652281470778589,-9.46044252232512 -838,26.0,27.0,0.0,2.608731947574922 -838,26.0,28.0,-0.99553355095268,1.881005840357816 -838,26.0,29.0,-0.6874559028276572,1.293971494797717 -838,27.0,5.0,-4.362844058012917,15.463571542897856 -838,27.0,7.0,-1.4439790613954469,4.540814658476248 -838,27.0,26.0,0.0,2.608731947574922 -838,27.0,27.0,5.806823119408364,-22.67145722159613 -838,28.0,26.0,-0.99553355095268,1.881005840357816 -838,28.0,28.0,0.99553355095268,-1.881005840357816 -838,29.0,26.0,-0.6874559028276572,1.293971494797717 -838,29.0,29.0,0.6874559028276572,-1.293971494797717 -839,0.0,0.0,6.765516048652632,-21.23160167089863 -839,0.0,1.0,-5.224646179885656,15.646726840803398 -839,0.0,2.0,-1.5408698687669766,5.631674830095234 -839,1.0,0.0,-5.224646179885656,15.646726840803398 -839,1.0,1.0,9.75228216552403,-30.648662892676068 -839,1.0,3.0,-1.7055303166990268,5.1973792282565086 -839,1.0,4.0,-1.1359607881738778,4.772479328281356 -839,1.0,5.0,-1.6861448807654689,5.116477495334806 -839,2.0,0.0,-1.5408698687669766,5.631674830095234 -839,2.0,2.0,9.736318911079088,-29.13794745915803 -839,2.0,3.0,-8.19544904231211,23.5308726290628 -839,3.0,1.0,-1.7055303166990268,5.1973792282565086 -839,3.0,2.0,-8.19544904231211,23.5308726290628 -839,3.0,3.0,16.314103089185693,-55.509410535254254 -839,3.0,5.0,-6.413123730174556,22.31120356548123 -839,3.0,11.0,0.0,4.191255364806866 -839,4.0,1.0,-1.1359607881738778,4.772479328281356 -839,4.0,4.0,1.1359607881738778,-4.751579328281355 -839,5.0,1.0,-1.6861448807654689,5.116477495334806 -839,5.0,3.0,-6.413123730174556,22.31120356548123 -839,5.0,5.0,16.052323092933932,-60.8210692494267 -839,5.0,6.0,-3.590210423980992,11.02611441072814 -839,5.0,8.0,0.0,4.915840805411357 -839,5.0,9.0,0.0,1.8561002591115965 -839,5.0,27.0,-4.362844058012917,15.463571542897856 -839,6.0,5.0,-3.590210423980992,11.02611441072814 -839,6.0,6.0,3.590210423980992,-11.01761441072814 -839,7.0,7.0,1.4439790613954469,-4.519414658476248 -839,7.0,27.0,-1.4439790613954469,4.540814658476248 -839,8.0,5.0,0.0,4.915840805411357 -839,8.0,8.0,0.0,-18.706293706293707 -839,8.0,9.0,0.0,9.090909090909092 -839,8.0,10.0,0.0,4.807692307692308 -839,9.0,5.0,0.0,1.8561002591115965 -839,9.0,8.0,0.0,9.090909090909092 -839,9.0,9.0,13.462042814524237,-41.3837606675224 -839,9.0,16.0,-3.956039125715353,10.317447719844054 -839,9.0,19.0,-1.7848303152666305,3.98535828943083 -839,9.0,20.0,-5.101853820159654,10.98071411292983 -839,9.0,21.0,-2.619319553382597,5.400770303329455 -839,10.0,8.0,0.0,4.807692307692308 -839,10.0,10.0,0.0,-4.807692307692308 -839,11.0,3.0,0.0,4.191255364806866 -839,11.0,11.0,5.047393974936599,-21.25074238629525 -839,11.0,12.0,0.0,7.142857142857143 -839,11.0,14.0,-3.0953961826564296,6.097275864326261 -839,11.0,15.0,-1.9519977922801688,4.104359379111847 -839,12.0,11.0,0.0,7.142857142857143 -839,12.0,12.0,0.0,-7.142857142857143 -839,13.0,13.0,2.4909522639994623,-2.250874059369649 -839,13.0,14.0,-2.4909522639994623,2.250874059369649 -839,14.0,11.0,-3.0953961826564296,6.097275864326261 -839,14.0,13.0,-2.4909522639994623,2.250874059369649 -839,14.0,14.0,9.365498545964757,-16.01163373210796 -839,14.0,17.0,-1.8108011504072024,3.687418931630696 -839,14.0,22.0,-1.9683489489016612,3.976064876781356 -839,15.0,11.0,-1.9519977922801688,4.104359379111847 -839,15.0,15.0,3.271064728633931,-8.94513365126506 -839,15.0,16.0,-1.3190669363537617,4.8407742721532125 -839,16.0,9.0,-3.956039125715353,10.317447719844054 -839,16.0,15.0,-1.3190669363537617,4.8407742721532125 -839,16.0,16.0,5.275106062069114,-15.158221991997266 -839,17.0,14.0,-1.8108011504072024,3.687418931630696 -839,17.0,17.0,4.886487584415919,-9.906177730909668 -839,17.0,18.0,-3.0756864340087167,6.218758799278971 -839,18.0,17.0,-3.0756864340087167,6.218758799278971 -839,18.0,18.0,8.958039375185187,-17.98346468163191 -839,18.0,19.0,-5.88235294117647,11.76470588235294 -839,19.0,9.0,-1.7848303152666305,3.98535828943083 -839,19.0,18.0,-5.88235294117647,11.76470588235294 -839,19.0,19.0,7.6671832564431,-15.75006417178377 -839,20.0,9.0,-5.101853820159654,10.98071411292983 -839,20.0,20.0,21.876495189895888,-45.10843276170355 -839,20.0,21.0,-16.774641369736234,34.127718648773715 -839,21.0,9.0,-2.619319553382597,5.400770303329455 -839,21.0,20.0,-16.774641369736234,34.127718648773715 -839,21.0,21.0,21.93449907537439,-43.48289181517921 -839,21.0,23.0,-2.5405381522555563,3.95440286307604 -839,22.0,14.0,-1.9683489489016612,3.976064876781356 -839,22.0,22.0,3.429754555384988,-6.965303617315433 -839,22.0,23.0,-1.4614056064833263,2.989238740534077 -839,23.0,21.0,-2.5405381522555563,3.95440286307604 -839,23.0,22.0,-1.4614056064833263,2.989238740534077 -839,23.0,23.0,5.311836702613133,-9.188263657315172 -839,23.0,24.0,-1.3098929438742493,2.287622053705056 -839,24.0,23.0,-1.3098929438742493,2.287622053705056 -839,24.0,24.0,4.495715080321987,-7.864978761969621 -839,24.0,25.0,-1.2165301194494855,1.8171440463475024 -839,24.0,26.0,-1.9692920169982515,3.760212661917064 -839,25.0,24.0,-1.2165301194494855,1.8171440463475024 -839,25.0,25.0,1.2165301194494855,-1.8171440463475024 -839,26.0,24.0,-1.9692920169982515,3.760212661917064 -839,26.0,26.0,3.652281470778589,-9.46044252232512 -839,26.0,27.0,0.0,2.608731947574922 -839,26.0,28.0,-0.99553355095268,1.881005840357816 -839,26.0,29.0,-0.6874559028276572,1.293971494797717 -839,27.0,5.0,-4.362844058012917,15.463571542897856 -839,27.0,7.0,-1.4439790613954469,4.540814658476248 -839,27.0,26.0,0.0,2.608731947574922 -839,27.0,27.0,5.806823119408364,-22.67145722159613 -839,28.0,26.0,-0.99553355095268,1.881005840357816 -839,28.0,28.0,1.9075867579849564,-3.604364401207048 -839,28.0,29.0,-0.9120532070322764,1.7233585608492326 -839,29.0,26.0,-0.6874559028276572,1.293971494797717 -839,29.0,28.0,-0.9120532070322764,1.7233585608492326 -839,29.0,29.0,1.5995091098599337,-3.0173300556469496 -840,0.0,0.0,6.765516048652632,-21.23160167089863 -840,0.0,1.0,-5.224646179885656,15.646726840803398 -840,0.0,2.0,-1.5408698687669766,5.631674830095234 -840,1.0,0.0,-5.224646179885656,15.646726840803398 -840,1.0,1.0,9.75228216552403,-30.648662892676068 -840,1.0,3.0,-1.7055303166990268,5.1973792282565086 -840,1.0,4.0,-1.1359607881738778,4.772479328281356 -840,1.0,5.0,-1.6861448807654689,5.116477495334806 -840,2.0,0.0,-1.5408698687669766,5.631674830095234 -840,2.0,2.0,9.736318911079088,-29.13794745915803 -840,2.0,3.0,-8.19544904231211,23.5308726290628 -840,3.0,1.0,-1.7055303166990268,5.1973792282565086 -840,3.0,2.0,-8.19544904231211,23.5308726290628 -840,3.0,3.0,16.314103089185693,-55.509410535254254 -840,3.0,5.0,-6.413123730174556,22.31120356548123 -840,3.0,11.0,0.0,4.191255364806866 -840,4.0,1.0,-1.1359607881738778,4.772479328281356 -840,4.0,4.0,4.089980824135861,-12.190647245055052 -840,4.0,6.0,-2.954020035961983,7.449267916773697 -840,5.0,1.0,-1.6861448807654689,5.116477495334806 -840,5.0,3.0,-6.413123730174556,22.31120356548123 -840,5.0,5.0,22.341631269034565,-82.8291478657789 -840,5.0,6.0,-3.590210423980992,11.02611441072814 -840,5.0,7.0,-6.289308176100628,22.0125786163522 -840,5.0,8.0,0.0,4.915840805411357 -840,5.0,9.0,0.0,1.8561002591115965 -840,5.0,27.0,-4.362844058012917,15.463571542897856 -840,6.0,4.0,-2.954020035961983,7.449267916773697 -840,6.0,5.0,-3.590210423980992,11.02611441072814 -840,6.0,6.0,6.544230459942975,-18.45668232750184 -840,7.0,5.0,-6.289308176100628,22.0125786163522 -840,7.0,7.0,7.733287237496075,-26.527493274828448 -840,7.0,27.0,-1.4439790613954469,4.540814658476248 -840,8.0,5.0,0.0,4.915840805411357 -840,8.0,8.0,0.0,-18.706293706293707 -840,8.0,9.0,0.0,9.090909090909092 -840,8.0,10.0,0.0,4.807692307692308 -840,9.0,5.0,0.0,1.8561002591115965 -840,9.0,8.0,0.0,9.090909090909092 -840,9.0,9.0,13.462042814524237,-41.3837606675224 -840,9.0,16.0,-3.956039125715353,10.317447719844054 -840,9.0,19.0,-1.7848303152666305,3.98535828943083 -840,9.0,20.0,-5.101853820159654,10.98071411292983 -840,9.0,21.0,-2.619319553382597,5.400770303329455 -840,10.0,8.0,0.0,4.807692307692308 -840,10.0,10.0,0.0,-4.807692307692308 -840,11.0,3.0,0.0,4.191255364806866 -840,11.0,11.0,6.573961583776156,-24.424167659260668 -840,11.0,12.0,0.0,7.142857142857143 -840,11.0,13.0,-1.5265676088395577,3.1734252729654173 -840,11.0,14.0,-3.0953961826564296,6.097275864326261 -840,11.0,15.0,-1.9519977922801688,4.104359379111847 -840,12.0,11.0,0.0,7.142857142857143 -840,12.0,12.0,0.0,-7.142857142857143 -840,13.0,11.0,-1.5265676088395577,3.1734252729654173 -840,13.0,13.0,4.01751987283902,-5.424299332335067 -840,13.0,14.0,-2.4909522639994623,2.250874059369649 -840,14.0,11.0,-3.0953961826564296,6.097275864326261 -840,14.0,13.0,-2.4909522639994623,2.250874059369649 -840,14.0,14.0,7.554697395557554,-12.324214800477266 -840,14.0,22.0,-1.9683489489016612,3.976064876781356 -840,15.0,11.0,-1.9519977922801688,4.104359379111847 -840,15.0,15.0,3.271064728633931,-8.94513365126506 -840,15.0,16.0,-1.3190669363537617,4.8407742721532125 -840,16.0,9.0,-3.956039125715353,10.317447719844054 -840,16.0,15.0,-1.3190669363537617,4.8407742721532125 -840,16.0,16.0,5.275106062069114,-15.158221991997266 -840,17.0,17.0,3.0756864340087167,-6.218758799278971 -840,17.0,18.0,-3.0756864340087167,6.218758799278971 -840,18.0,17.0,-3.0756864340087167,6.218758799278971 -840,18.0,18.0,8.958039375185187,-17.98346468163191 -840,18.0,19.0,-5.88235294117647,11.76470588235294 -840,19.0,9.0,-1.7848303152666305,3.98535828943083 -840,19.0,18.0,-5.88235294117647,11.76470588235294 -840,19.0,19.0,7.6671832564431,-15.75006417178377 -840,20.0,9.0,-5.101853820159654,10.98071411292983 -840,20.0,20.0,21.876495189895888,-45.10843276170355 -840,20.0,21.0,-16.774641369736234,34.127718648773715 -840,21.0,9.0,-2.619319553382597,5.400770303329455 -840,21.0,20.0,-16.774641369736234,34.127718648773715 -840,21.0,21.0,21.93449907537439,-43.48289181517921 -840,21.0,23.0,-2.5405381522555563,3.95440286307604 -840,22.0,14.0,-1.9683489489016612,3.976064876781356 -840,22.0,22.0,3.429754555384988,-6.965303617315433 -840,22.0,23.0,-1.4614056064833263,2.989238740534077 -840,23.0,21.0,-2.5405381522555563,3.95440286307604 -840,23.0,22.0,-1.4614056064833263,2.989238740534077 -840,23.0,23.0,5.311836702613133,-9.188263657315172 -840,23.0,24.0,-1.3098929438742493,2.287622053705056 -840,24.0,23.0,-1.3098929438742493,2.287622053705056 -840,24.0,24.0,4.495715080321987,-7.864978761969621 -840,24.0,25.0,-1.2165301194494855,1.8171440463475024 -840,24.0,26.0,-1.9692920169982515,3.760212661917064 -840,25.0,24.0,-1.2165301194494855,1.8171440463475024 -840,25.0,25.0,1.2165301194494855,-1.8171440463475024 -840,26.0,24.0,-1.9692920169982515,3.760212661917064 -840,26.0,26.0,3.652281470778589,-9.46044252232512 -840,26.0,27.0,0.0,2.608731947574922 -840,26.0,28.0,-0.99553355095268,1.881005840357816 -840,26.0,29.0,-0.6874559028276572,1.293971494797717 -840,27.0,5.0,-4.362844058012917,15.463571542897856 -840,27.0,7.0,-1.4439790613954469,4.540814658476248 -840,27.0,26.0,0.0,2.608731947574922 -840,27.0,27.0,5.806823119408364,-22.67145722159613 -840,28.0,26.0,-0.99553355095268,1.881005840357816 -840,28.0,28.0,1.9075867579849564,-3.604364401207048 -840,28.0,29.0,-0.9120532070322764,1.7233585608492326 -840,29.0,26.0,-0.6874559028276572,1.293971494797717 -840,29.0,28.0,-0.9120532070322764,1.7233585608492326 -840,29.0,29.0,1.5995091098599337,-3.0173300556469496 -841,0.0,0.0,6.765516048652632,-21.23160167089863 -841,0.0,1.0,-5.224646179885656,15.646726840803398 -841,0.0,2.0,-1.5408698687669766,5.631674830095234 -841,1.0,0.0,-5.224646179885656,15.646726840803398 -841,1.0,1.0,9.75228216552403,-30.648662892676068 -841,1.0,3.0,-1.7055303166990268,5.1973792282565086 -841,1.0,4.0,-1.1359607881738778,4.772479328281356 -841,1.0,5.0,-1.6861448807654689,5.116477495334806 -841,2.0,0.0,-1.5408698687669766,5.631674830095234 -841,2.0,2.0,1.5408698687669766,-5.611274830095233 -841,3.0,1.0,-1.7055303166990268,5.1973792282565086 -841,3.0,3.0,1.7055303166990268,-9.676034340710228 -841,3.0,11.0,0.0,4.191255364806866 -841,4.0,1.0,-1.1359607881738778,4.772479328281356 -841,4.0,4.0,4.089980824135861,-12.190647245055052 -841,4.0,6.0,-2.954020035961983,7.449267916773697 -841,5.0,1.0,-1.6861448807654689,5.116477495334806 -841,5.0,5.0,12.338297114879014,-49.50482988956954 -841,5.0,7.0,-6.289308176100628,22.0125786163522 -841,5.0,8.0,0.0,4.915840805411357 -841,5.0,9.0,0.0,1.8561002591115965 -841,5.0,27.0,-4.362844058012917,15.463571542897856 -841,6.0,4.0,-2.954020035961983,7.449267916773697 -841,6.0,6.0,2.954020035961983,-7.439067916773697 -841,7.0,5.0,-6.289308176100628,22.0125786163522 -841,7.0,7.0,7.733287237496075,-26.527493274828448 -841,7.0,27.0,-1.4439790613954469,4.540814658476248 -841,8.0,5.0,0.0,4.915840805411357 -841,8.0,8.0,0.0,-18.706293706293707 -841,8.0,9.0,0.0,9.090909090909092 -841,8.0,10.0,0.0,4.807692307692308 -841,9.0,5.0,0.0,1.8561002591115965 -841,9.0,8.0,0.0,9.090909090909092 -841,9.0,9.0,13.462042814524237,-41.3837606675224 -841,9.0,16.0,-3.956039125715353,10.317447719844054 -841,9.0,19.0,-1.7848303152666305,3.98535828943083 -841,9.0,20.0,-5.101853820159654,10.98071411292983 -841,9.0,21.0,-2.619319553382597,5.400770303329455 -841,10.0,8.0,0.0,4.807692307692308 -841,10.0,10.0,0.0,-4.807692307692308 -841,11.0,3.0,0.0,4.191255364806866 -841,11.0,11.0,6.573961583776156,-24.424167659260668 -841,11.0,12.0,0.0,7.142857142857143 -841,11.0,13.0,-1.5265676088395577,3.1734252729654173 -841,11.0,14.0,-3.0953961826564296,6.097275864326261 -841,11.0,15.0,-1.9519977922801688,4.104359379111847 -841,12.0,11.0,0.0,7.142857142857143 -841,12.0,12.0,0.0,-7.142857142857143 -841,13.0,11.0,-1.5265676088395577,3.1734252729654173 -841,13.0,13.0,4.01751987283902,-5.424299332335067 -841,13.0,14.0,-2.4909522639994623,2.250874059369649 -841,14.0,11.0,-3.0953961826564296,6.097275864326261 -841,14.0,13.0,-2.4909522639994623,2.250874059369649 -841,14.0,14.0,9.365498545964757,-16.01163373210796 -841,14.0,17.0,-1.8108011504072024,3.687418931630696 -841,14.0,22.0,-1.9683489489016612,3.976064876781356 -841,15.0,11.0,-1.9519977922801688,4.104359379111847 -841,15.0,15.0,3.271064728633931,-8.94513365126506 -841,15.0,16.0,-1.3190669363537617,4.8407742721532125 -841,16.0,9.0,-3.956039125715353,10.317447719844054 -841,16.0,15.0,-1.3190669363537617,4.8407742721532125 -841,16.0,16.0,5.275106062069114,-15.158221991997266 -841,17.0,14.0,-1.8108011504072024,3.687418931630696 -841,17.0,17.0,4.886487584415919,-9.906177730909668 -841,17.0,18.0,-3.0756864340087167,6.218758799278971 -841,18.0,17.0,-3.0756864340087167,6.218758799278971 -841,18.0,18.0,8.958039375185187,-17.98346468163191 -841,18.0,19.0,-5.88235294117647,11.76470588235294 -841,19.0,9.0,-1.7848303152666305,3.98535828943083 -841,19.0,18.0,-5.88235294117647,11.76470588235294 -841,19.0,19.0,7.6671832564431,-15.75006417178377 -841,20.0,9.0,-5.101853820159654,10.98071411292983 -841,20.0,20.0,21.876495189895888,-45.10843276170355 -841,20.0,21.0,-16.774641369736234,34.127718648773715 -841,21.0,9.0,-2.619319553382597,5.400770303329455 -841,21.0,20.0,-16.774641369736234,34.127718648773715 -841,21.0,21.0,19.393960923118836,-39.52848895210317 -841,22.0,14.0,-1.9683489489016612,3.976064876781356 -841,22.0,22.0,3.429754555384988,-6.965303617315433 -841,22.0,23.0,-1.4614056064833263,2.989238740534077 -841,23.0,22.0,-1.4614056064833263,2.989238740534077 -841,23.0,23.0,2.771298550357576,-5.233860794239132 -841,23.0,24.0,-1.3098929438742493,2.287622053705056 -841,24.0,23.0,-1.3098929438742493,2.287622053705056 -841,24.0,24.0,4.495715080321987,-7.864978761969621 -841,24.0,25.0,-1.2165301194494855,1.8171440463475024 -841,24.0,26.0,-1.9692920169982515,3.760212661917064 -841,25.0,24.0,-1.2165301194494855,1.8171440463475024 -841,25.0,25.0,1.2165301194494855,-1.8171440463475024 -841,26.0,24.0,-1.9692920169982515,3.760212661917064 -841,26.0,26.0,3.652281470778589,-9.46044252232512 -841,26.0,27.0,0.0,2.608731947574922 -841,26.0,28.0,-0.99553355095268,1.881005840357816 -841,26.0,29.0,-0.6874559028276572,1.293971494797717 -841,27.0,5.0,-4.362844058012917,15.463571542897856 -841,27.0,7.0,-1.4439790613954469,4.540814658476248 -841,27.0,26.0,0.0,2.608731947574922 -841,27.0,27.0,5.806823119408364,-22.67145722159613 -841,28.0,26.0,-0.99553355095268,1.881005840357816 -841,28.0,28.0,1.9075867579849564,-3.604364401207048 -841,28.0,29.0,-0.9120532070322764,1.7233585608492326 -841,29.0,26.0,-0.6874559028276572,1.293971494797717 -841,29.0,28.0,-0.9120532070322764,1.7233585608492326 -841,29.0,29.0,1.5995091098599337,-3.0173300556469496 -842,0.0,0.0,6.765516048652632,-21.23160167089863 -842,0.0,1.0,-5.224646179885656,15.646726840803398 -842,0.0,2.0,-1.5408698687669766,5.631674830095234 -842,1.0,0.0,-5.224646179885656,15.646726840803398 -842,1.0,1.0,9.75228216552403,-30.648662892676068 -842,1.0,3.0,-1.7055303166990268,5.1973792282565086 -842,1.0,4.0,-1.1359607881738778,4.772479328281356 -842,1.0,5.0,-1.6861448807654689,5.116477495334806 -842,2.0,0.0,-1.5408698687669766,5.631674830095234 -842,2.0,2.0,9.736318911079088,-29.13794745915803 -842,2.0,3.0,-8.19544904231211,23.5308726290628 -842,3.0,1.0,-1.7055303166990268,5.1973792282565086 -842,3.0,2.0,-8.19544904231211,23.5308726290628 -842,3.0,3.0,16.314103089185693,-55.509410535254254 -842,3.0,5.0,-6.413123730174556,22.31120356548123 -842,3.0,11.0,0.0,4.191255364806866 -842,4.0,1.0,-1.1359607881738778,4.772479328281356 -842,4.0,4.0,4.089980824135861,-12.190647245055052 -842,4.0,6.0,-2.954020035961983,7.449267916773697 -842,5.0,1.0,-1.6861448807654689,5.116477495334806 -842,5.0,3.0,-6.413123730174556,22.31120356548123 -842,5.0,5.0,22.341631269034565,-82.8291478657789 -842,5.0,6.0,-3.590210423980992,11.02611441072814 -842,5.0,7.0,-6.289308176100628,22.0125786163522 -842,5.0,8.0,0.0,4.915840805411357 -842,5.0,9.0,0.0,1.8561002591115965 -842,5.0,27.0,-4.362844058012917,15.463571542897856 -842,6.0,4.0,-2.954020035961983,7.449267916773697 -842,6.0,5.0,-3.590210423980992,11.02611441072814 -842,6.0,6.0,6.544230459942975,-18.45668232750184 -842,7.0,5.0,-6.289308176100628,22.0125786163522 -842,7.0,7.0,7.733287237496075,-26.527493274828448 -842,7.0,27.0,-1.4439790613954469,4.540814658476248 -842,8.0,5.0,0.0,4.915840805411357 -842,8.0,8.0,0.0,-18.706293706293707 -842,8.0,9.0,0.0,9.090909090909092 -842,8.0,10.0,0.0,4.807692307692308 -842,9.0,5.0,0.0,1.8561002591115965 -842,9.0,8.0,0.0,9.090909090909092 -842,9.0,9.0,13.462042814524237,-41.3837606675224 -842,9.0,16.0,-3.956039125715353,10.317447719844054 -842,9.0,19.0,-1.7848303152666305,3.98535828943083 -842,9.0,20.0,-5.101853820159654,10.98071411292983 -842,9.0,21.0,-2.619319553382597,5.400770303329455 -842,10.0,8.0,0.0,4.807692307692308 -842,10.0,10.0,0.0,-4.807692307692308 -842,11.0,3.0,0.0,4.191255364806866 -842,11.0,11.0,6.573961583776156,-24.424167659260668 -842,11.0,12.0,0.0,7.142857142857143 -842,11.0,13.0,-1.5265676088395577,3.1734252729654173 -842,11.0,14.0,-3.0953961826564296,6.097275864326261 -842,11.0,15.0,-1.9519977922801688,4.104359379111847 -842,12.0,11.0,0.0,7.142857142857143 -842,12.0,12.0,0.0,-7.142857142857143 -842,13.0,11.0,-1.5265676088395577,3.1734252729654173 -842,13.0,13.0,4.01751987283902,-5.424299332335067 -842,13.0,14.0,-2.4909522639994623,2.250874059369649 -842,14.0,11.0,-3.0953961826564296,6.097275864326261 -842,14.0,13.0,-2.4909522639994623,2.250874059369649 -842,14.0,14.0,9.365498545964757,-16.01163373210796 -842,14.0,17.0,-1.8108011504072024,3.687418931630696 -842,14.0,22.0,-1.9683489489016612,3.976064876781356 -842,15.0,11.0,-1.9519977922801688,4.104359379111847 -842,15.0,15.0,3.271064728633931,-8.94513365126506 -842,15.0,16.0,-1.3190669363537617,4.8407742721532125 -842,16.0,9.0,-3.956039125715353,10.317447719844054 -842,16.0,15.0,-1.3190669363537617,4.8407742721532125 -842,16.0,16.0,5.275106062069114,-15.158221991997266 -842,17.0,14.0,-1.8108011504072024,3.687418931630696 -842,17.0,17.0,4.886487584415919,-9.906177730909668 -842,17.0,18.0,-3.0756864340087167,6.218758799278971 -842,18.0,17.0,-3.0756864340087167,6.218758799278971 -842,18.0,18.0,8.958039375185187,-17.98346468163191 -842,18.0,19.0,-5.88235294117647,11.76470588235294 -842,19.0,9.0,-1.7848303152666305,3.98535828943083 -842,19.0,18.0,-5.88235294117647,11.76470588235294 -842,19.0,19.0,7.6671832564431,-15.75006417178377 -842,20.0,9.0,-5.101853820159654,10.98071411292983 -842,20.0,20.0,21.876495189895888,-45.10843276170355 -842,20.0,21.0,-16.774641369736234,34.127718648773715 -842,21.0,9.0,-2.619319553382597,5.400770303329455 -842,21.0,20.0,-16.774641369736234,34.127718648773715 -842,21.0,21.0,21.93449907537439,-43.48289181517921 -842,21.0,23.0,-2.5405381522555563,3.95440286307604 -842,22.0,14.0,-1.9683489489016612,3.976064876781356 -842,22.0,22.0,3.429754555384988,-6.965303617315433 -842,22.0,23.0,-1.4614056064833263,2.989238740534077 -842,23.0,21.0,-2.5405381522555563,3.95440286307604 -842,23.0,22.0,-1.4614056064833263,2.989238740534077 -842,23.0,23.0,5.311836702613133,-9.188263657315172 -842,23.0,24.0,-1.3098929438742493,2.287622053705056 -842,24.0,23.0,-1.3098929438742493,2.287622053705056 -842,24.0,24.0,4.495715080321987,-7.864978761969621 -842,24.0,25.0,-1.2165301194494855,1.8171440463475024 -842,24.0,26.0,-1.9692920169982515,3.760212661917064 -842,25.0,24.0,-1.2165301194494855,1.8171440463475024 -842,25.0,25.0,1.2165301194494855,-1.8171440463475024 -842,26.0,24.0,-1.9692920169982515,3.760212661917064 -842,26.0,26.0,3.652281470778589,-9.46044252232512 -842,26.0,27.0,0.0,2.608731947574922 -842,26.0,28.0,-0.99553355095268,1.881005840357816 -842,26.0,29.0,-0.6874559028276572,1.293971494797717 -842,27.0,5.0,-4.362844058012917,15.463571542897856 -842,27.0,7.0,-1.4439790613954469,4.540814658476248 -842,27.0,26.0,0.0,2.608731947574922 -842,27.0,27.0,5.806823119408364,-22.67145722159613 -842,28.0,26.0,-0.99553355095268,1.881005840357816 -842,28.0,28.0,1.9075867579849564,-3.604364401207048 -842,28.0,29.0,-0.9120532070322764,1.7233585608492326 -842,29.0,26.0,-0.6874559028276572,1.293971494797717 -842,29.0,28.0,-0.9120532070322764,1.7233585608492326 -842,29.0,29.0,1.5995091098599337,-3.0173300556469496 -843,0.0,0.0,6.765516048652632,-21.23160167089863 -843,0.0,1.0,-5.224646179885656,15.646726840803398 -843,0.0,2.0,-1.5408698687669766,5.631674830095234 -843,1.0,0.0,-5.224646179885656,15.646726840803398 -843,1.0,1.0,9.75228216552403,-30.648662892676068 -843,1.0,3.0,-1.7055303166990268,5.1973792282565086 -843,1.0,4.0,-1.1359607881738778,4.772479328281356 -843,1.0,5.0,-1.6861448807654689,5.116477495334806 -843,2.0,0.0,-1.5408698687669766,5.631674830095234 -843,2.0,2.0,9.736318911079088,-29.13794745915803 -843,2.0,3.0,-8.19544904231211,23.5308726290628 -843,3.0,1.0,-1.7055303166990268,5.1973792282565086 -843,3.0,2.0,-8.19544904231211,23.5308726290628 -843,3.0,3.0,16.314103089185693,-55.509410535254254 -843,3.0,5.0,-6.413123730174556,22.31120356548123 -843,3.0,11.0,0.0,4.191255364806866 -843,4.0,1.0,-1.1359607881738778,4.772479328281356 -843,4.0,4.0,4.089980824135861,-12.190647245055052 -843,4.0,6.0,-2.954020035961983,7.449267916773697 -843,5.0,1.0,-1.6861448807654689,5.116477495334806 -843,5.0,3.0,-6.413123730174556,22.31120356548123 -843,5.0,5.0,22.341631269034565,-82.8291478657789 -843,5.0,6.0,-3.590210423980992,11.02611441072814 -843,5.0,7.0,-6.289308176100628,22.0125786163522 -843,5.0,8.0,0.0,4.915840805411357 -843,5.0,9.0,0.0,1.8561002591115965 -843,5.0,27.0,-4.362844058012917,15.463571542897856 -843,6.0,4.0,-2.954020035961983,7.449267916773697 -843,6.0,5.0,-3.590210423980992,11.02611441072814 -843,6.0,6.0,6.544230459942975,-18.45668232750184 -843,7.0,5.0,-6.289308176100628,22.0125786163522 -843,7.0,7.0,7.733287237496075,-26.527493274828448 -843,7.0,27.0,-1.4439790613954469,4.540814658476248 -843,8.0,5.0,0.0,4.915840805411357 -843,8.0,8.0,0.0,-18.706293706293707 -843,8.0,9.0,0.0,9.090909090909092 -843,8.0,10.0,0.0,4.807692307692308 -843,9.0,5.0,0.0,1.8561002591115965 -843,9.0,8.0,0.0,9.090909090909092 -843,9.0,9.0,13.462042814524237,-41.3837606675224 -843,9.0,16.0,-3.956039125715353,10.317447719844054 -843,9.0,19.0,-1.7848303152666305,3.98535828943083 -843,9.0,20.0,-5.101853820159654,10.98071411292983 -843,9.0,21.0,-2.619319553382597,5.400770303329455 -843,10.0,8.0,0.0,4.807692307692308 -843,10.0,10.0,0.0,-4.807692307692308 -843,11.0,3.0,0.0,4.191255364806866 -843,11.0,11.0,6.573961583776156,-24.424167659260668 -843,11.0,12.0,0.0,7.142857142857143 -843,11.0,13.0,-1.5265676088395577,3.1734252729654173 -843,11.0,14.0,-3.0953961826564296,6.097275864326261 -843,11.0,15.0,-1.9519977922801688,4.104359379111847 -843,12.0,11.0,0.0,7.142857142857143 -843,12.0,12.0,0.0,-7.142857142857143 -843,13.0,11.0,-1.5265676088395577,3.1734252729654173 -843,13.0,13.0,4.01751987283902,-5.424299332335067 -843,13.0,14.0,-2.4909522639994623,2.250874059369649 -843,14.0,11.0,-3.0953961826564296,6.097275864326261 -843,14.0,13.0,-2.4909522639994623,2.250874059369649 -843,14.0,14.0,9.365498545964757,-16.01163373210796 -843,14.0,17.0,-1.8108011504072024,3.687418931630696 -843,14.0,22.0,-1.9683489489016612,3.976064876781356 -843,15.0,11.0,-1.9519977922801688,4.104359379111847 -843,15.0,15.0,3.271064728633931,-8.94513365126506 -843,15.0,16.0,-1.3190669363537617,4.8407742721532125 -843,16.0,9.0,-3.956039125715353,10.317447719844054 -843,16.0,15.0,-1.3190669363537617,4.8407742721532125 -843,16.0,16.0,5.275106062069114,-15.158221991997266 -843,17.0,14.0,-1.8108011504072024,3.687418931630696 -843,17.0,17.0,4.886487584415919,-9.906177730909668 -843,17.0,18.0,-3.0756864340087167,6.218758799278971 -843,18.0,17.0,-3.0756864340087167,6.218758799278971 -843,18.0,18.0,8.958039375185187,-17.98346468163191 -843,18.0,19.0,-5.88235294117647,11.76470588235294 -843,19.0,9.0,-1.7848303152666305,3.98535828943083 -843,19.0,18.0,-5.88235294117647,11.76470588235294 -843,19.0,19.0,7.6671832564431,-15.75006417178377 -843,20.0,9.0,-5.101853820159654,10.98071411292983 -843,20.0,20.0,21.876495189895888,-45.10843276170355 -843,20.0,21.0,-16.774641369736234,34.127718648773715 -843,21.0,9.0,-2.619319553382597,5.400770303329455 -843,21.0,20.0,-16.774641369736234,34.127718648773715 -843,21.0,21.0,21.93449907537439,-43.48289181517921 -843,21.0,23.0,-2.5405381522555563,3.95440286307604 -843,22.0,14.0,-1.9683489489016612,3.976064876781356 -843,22.0,22.0,3.429754555384988,-6.965303617315433 -843,22.0,23.0,-1.4614056064833263,2.989238740534077 -843,23.0,21.0,-2.5405381522555563,3.95440286307604 -843,23.0,22.0,-1.4614056064833263,2.989238740534077 -843,23.0,23.0,5.311836702613133,-9.188263657315172 -843,23.0,24.0,-1.3098929438742493,2.287622053705056 -843,24.0,23.0,-1.3098929438742493,2.287622053705056 -843,24.0,24.0,2.526423063323735,-4.104766100052558 -843,24.0,25.0,-1.2165301194494855,1.8171440463475024 -843,25.0,24.0,-1.2165301194494855,1.8171440463475024 -843,25.0,25.0,1.2165301194494855,-1.8171440463475024 -843,26.0,26.0,1.6829894537803372,-5.700229860408058 -843,26.0,27.0,0.0,2.608731947574922 -843,26.0,28.0,-0.99553355095268,1.881005840357816 -843,26.0,29.0,-0.6874559028276572,1.293971494797717 -843,27.0,5.0,-4.362844058012917,15.463571542897856 -843,27.0,7.0,-1.4439790613954469,4.540814658476248 -843,27.0,26.0,0.0,2.608731947574922 -843,27.0,27.0,5.806823119408364,-22.67145722159613 -843,28.0,26.0,-0.99553355095268,1.881005840357816 -843,28.0,28.0,1.9075867579849564,-3.604364401207048 -843,28.0,29.0,-0.9120532070322764,1.7233585608492326 -843,29.0,26.0,-0.6874559028276572,1.293971494797717 -843,29.0,28.0,-0.9120532070322764,1.7233585608492326 -843,29.0,29.0,1.5995091098599337,-3.0173300556469496 -844,0.0,0.0,6.765516048652632,-21.23160167089863 -844,0.0,1.0,-5.224646179885656,15.646726840803398 -844,0.0,2.0,-1.5408698687669766,5.631674830095234 -844,1.0,0.0,-5.224646179885656,15.646726840803398 -844,1.0,1.0,9.75228216552403,-30.648662892676068 -844,1.0,3.0,-1.7055303166990268,5.1973792282565086 -844,1.0,4.0,-1.1359607881738778,4.772479328281356 -844,1.0,5.0,-1.6861448807654689,5.116477495334806 -844,2.0,0.0,-1.5408698687669766,5.631674830095234 -844,2.0,2.0,9.736318911079088,-29.13794745915803 -844,2.0,3.0,-8.19544904231211,23.5308726290628 -844,3.0,1.0,-1.7055303166990268,5.1973792282565086 -844,3.0,2.0,-8.19544904231211,23.5308726290628 -844,3.0,3.0,16.314103089185693,-55.509410535254254 -844,3.0,5.0,-6.413123730174556,22.31120356548123 -844,3.0,11.0,0.0,4.191255364806866 -844,4.0,1.0,-1.1359607881738778,4.772479328281356 -844,4.0,4.0,4.089980824135861,-12.190647245055052 -844,4.0,6.0,-2.954020035961983,7.449267916773697 -844,5.0,1.0,-1.6861448807654689,5.116477495334806 -844,5.0,3.0,-6.413123730174556,22.31120356548123 -844,5.0,5.0,22.341631269034565,-82.8291478657789 -844,5.0,6.0,-3.590210423980992,11.02611441072814 -844,5.0,7.0,-6.289308176100628,22.0125786163522 -844,5.0,8.0,0.0,4.915840805411357 -844,5.0,9.0,0.0,1.8561002591115965 -844,5.0,27.0,-4.362844058012917,15.463571542897856 -844,6.0,4.0,-2.954020035961983,7.449267916773697 -844,6.0,5.0,-3.590210423980992,11.02611441072814 -844,6.0,6.0,6.544230459942975,-18.45668232750184 -844,7.0,5.0,-6.289308176100628,22.0125786163522 -844,7.0,7.0,7.733287237496075,-26.527493274828448 -844,7.0,27.0,-1.4439790613954469,4.540814658476248 -844,8.0,5.0,0.0,4.915840805411357 -844,8.0,8.0,0.0,-18.706293706293707 -844,8.0,9.0,0.0,9.090909090909092 -844,8.0,10.0,0.0,4.807692307692308 -844,9.0,5.0,0.0,1.8561002591115965 -844,9.0,8.0,0.0,9.090909090909092 -844,9.0,9.0,13.462042814524237,-41.3837606675224 -844,9.0,16.0,-3.956039125715353,10.317447719844054 -844,9.0,19.0,-1.7848303152666305,3.98535828943083 -844,9.0,20.0,-5.101853820159654,10.98071411292983 -844,9.0,21.0,-2.619319553382597,5.400770303329455 -844,10.0,8.0,0.0,4.807692307692308 -844,10.0,10.0,0.0,-4.807692307692308 -844,11.0,3.0,0.0,4.191255364806866 -844,11.0,11.0,6.573961583776156,-24.424167659260668 -844,11.0,12.0,0.0,7.142857142857143 -844,11.0,13.0,-1.5265676088395577,3.1734252729654173 -844,11.0,14.0,-3.0953961826564296,6.097275864326261 -844,11.0,15.0,-1.9519977922801688,4.104359379111847 -844,12.0,11.0,0.0,7.142857142857143 -844,12.0,12.0,0.0,-7.142857142857143 -844,13.0,11.0,-1.5265676088395577,3.1734252729654173 -844,13.0,13.0,4.01751987283902,-5.424299332335067 -844,13.0,14.0,-2.4909522639994623,2.250874059369649 -844,14.0,11.0,-3.0953961826564296,6.097275864326261 -844,14.0,13.0,-2.4909522639994623,2.250874059369649 -844,14.0,14.0,9.365498545964757,-16.01163373210796 -844,14.0,17.0,-1.8108011504072024,3.687418931630696 -844,14.0,22.0,-1.9683489489016612,3.976064876781356 -844,15.0,11.0,-1.9519977922801688,4.104359379111847 -844,15.0,15.0,3.271064728633931,-8.94513365126506 -844,15.0,16.0,-1.3190669363537617,4.8407742721532125 -844,16.0,9.0,-3.956039125715353,10.317447719844054 -844,16.0,15.0,-1.3190669363537617,4.8407742721532125 -844,16.0,16.0,5.275106062069114,-15.158221991997266 -844,17.0,14.0,-1.8108011504072024,3.687418931630696 -844,17.0,17.0,4.886487584415919,-9.906177730909668 -844,17.0,18.0,-3.0756864340087167,6.218758799278971 -844,18.0,17.0,-3.0756864340087167,6.218758799278971 -844,18.0,18.0,8.958039375185187,-17.98346468163191 -844,18.0,19.0,-5.88235294117647,11.76470588235294 -844,19.0,9.0,-1.7848303152666305,3.98535828943083 -844,19.0,18.0,-5.88235294117647,11.76470588235294 -844,19.0,19.0,7.6671832564431,-15.75006417178377 -844,20.0,9.0,-5.101853820159654,10.98071411292983 -844,20.0,20.0,21.876495189895888,-45.10843276170355 -844,20.0,21.0,-16.774641369736234,34.127718648773715 -844,21.0,9.0,-2.619319553382597,5.400770303329455 -844,21.0,20.0,-16.774641369736234,34.127718648773715 -844,21.0,21.0,21.93449907537439,-43.48289181517921 -844,21.0,23.0,-2.5405381522555563,3.95440286307604 -844,22.0,14.0,-1.9683489489016612,3.976064876781356 -844,22.0,22.0,3.429754555384988,-6.965303617315433 -844,22.0,23.0,-1.4614056064833263,2.989238740534077 -844,23.0,21.0,-2.5405381522555563,3.95440286307604 -844,23.0,22.0,-1.4614056064833263,2.989238740534077 -844,23.0,23.0,5.311836702613133,-9.188263657315172 -844,23.0,24.0,-1.3098929438742493,2.287622053705056 -844,24.0,23.0,-1.3098929438742493,2.287622053705056 -844,24.0,24.0,2.526423063323735,-4.104766100052558 -844,24.0,25.0,-1.2165301194494855,1.8171440463475024 -844,25.0,24.0,-1.2165301194494855,1.8171440463475024 -844,25.0,25.0,1.2165301194494855,-1.8171440463475024 -844,26.0,26.0,1.6829894537803372,-5.700229860408058 -844,26.0,27.0,0.0,2.608731947574922 -844,26.0,28.0,-0.99553355095268,1.881005840357816 -844,26.0,29.0,-0.6874559028276572,1.293971494797717 -844,27.0,5.0,-4.362844058012917,15.463571542897856 -844,27.0,7.0,-1.4439790613954469,4.540814658476248 -844,27.0,26.0,0.0,2.608731947574922 -844,27.0,27.0,5.806823119408364,-22.67145722159613 -844,28.0,26.0,-0.99553355095268,1.881005840357816 -844,28.0,28.0,1.9075867579849564,-3.604364401207048 -844,28.0,29.0,-0.9120532070322764,1.7233585608492326 -844,29.0,26.0,-0.6874559028276572,1.293971494797717 -844,29.0,28.0,-0.9120532070322764,1.7233585608492326 -844,29.0,29.0,1.5995091098599337,-3.0173300556469496 -845,0.0,0.0,6.765516048652632,-21.23160167089863 -845,0.0,1.0,-5.224646179885656,15.646726840803398 -845,0.0,2.0,-1.5408698687669766,5.631674830095234 -845,1.0,0.0,-5.224646179885656,15.646726840803398 -845,1.0,1.0,9.75228216552403,-30.648662892676068 -845,1.0,3.0,-1.7055303166990268,5.1973792282565086 -845,1.0,4.0,-1.1359607881738778,4.772479328281356 -845,1.0,5.0,-1.6861448807654689,5.116477495334806 -845,2.0,0.0,-1.5408698687669766,5.631674830095234 -845,2.0,2.0,9.736318911079088,-29.13794745915803 -845,2.0,3.0,-8.19544904231211,23.5308726290628 -845,3.0,1.0,-1.7055303166990268,5.1973792282565086 -845,3.0,2.0,-8.19544904231211,23.5308726290628 -845,3.0,3.0,16.314103089185693,-55.509410535254254 -845,3.0,5.0,-6.413123730174556,22.31120356548123 -845,3.0,11.0,0.0,4.191255364806866 -845,4.0,1.0,-1.1359607881738778,4.772479328281356 -845,4.0,4.0,4.089980824135861,-12.190647245055052 -845,4.0,6.0,-2.954020035961983,7.449267916773697 -845,5.0,1.0,-1.6861448807654689,5.116477495334806 -845,5.0,3.0,-6.413123730174556,22.31120356548123 -845,5.0,5.0,22.341631269034565,-82.8291478657789 -845,5.0,6.0,-3.590210423980992,11.02611441072814 -845,5.0,7.0,-6.289308176100628,22.0125786163522 -845,5.0,8.0,0.0,4.915840805411357 -845,5.0,9.0,0.0,1.8561002591115965 -845,5.0,27.0,-4.362844058012917,15.463571542897856 -845,6.0,4.0,-2.954020035961983,7.449267916773697 -845,6.0,5.0,-3.590210423980992,11.02611441072814 -845,6.0,6.0,6.544230459942975,-18.45668232750184 -845,7.0,5.0,-6.289308176100628,22.0125786163522 -845,7.0,7.0,7.733287237496075,-26.527493274828448 -845,7.0,27.0,-1.4439790613954469,4.540814658476248 -845,8.0,5.0,0.0,4.915840805411357 -845,8.0,8.0,0.0,-18.706293706293707 -845,8.0,9.0,0.0,9.090909090909092 -845,8.0,10.0,0.0,4.807692307692308 -845,9.0,5.0,0.0,1.8561002591115965 -845,9.0,8.0,0.0,9.090909090909092 -845,9.0,9.0,13.462042814524237,-41.3837606675224 -845,9.0,16.0,-3.956039125715353,10.317447719844054 -845,9.0,19.0,-1.7848303152666305,3.98535828943083 -845,9.0,20.0,-5.101853820159654,10.98071411292983 -845,9.0,21.0,-2.619319553382597,5.400770303329455 -845,10.0,8.0,0.0,4.807692307692308 -845,10.0,10.0,0.0,-4.807692307692308 -845,11.0,3.0,0.0,4.191255364806866 -845,11.0,11.0,6.573961583776156,-24.424167659260668 -845,11.0,12.0,0.0,7.142857142857143 -845,11.0,13.0,-1.5265676088395577,3.1734252729654173 -845,11.0,14.0,-3.0953961826564296,6.097275864326261 -845,11.0,15.0,-1.9519977922801688,4.104359379111847 -845,12.0,11.0,0.0,7.142857142857143 -845,12.0,12.0,0.0,-7.142857142857143 -845,13.0,11.0,-1.5265676088395577,3.1734252729654173 -845,13.0,13.0,4.01751987283902,-5.424299332335067 -845,13.0,14.0,-2.4909522639994623,2.250874059369649 -845,14.0,11.0,-3.0953961826564296,6.097275864326261 -845,14.0,13.0,-2.4909522639994623,2.250874059369649 -845,14.0,14.0,9.365498545964757,-16.01163373210796 -845,14.0,17.0,-1.8108011504072024,3.687418931630696 -845,14.0,22.0,-1.9683489489016612,3.976064876781356 -845,15.0,11.0,-1.9519977922801688,4.104359379111847 -845,15.0,15.0,3.271064728633931,-8.94513365126506 -845,15.0,16.0,-1.3190669363537617,4.8407742721532125 -845,16.0,9.0,-3.956039125715353,10.317447719844054 -845,16.0,15.0,-1.3190669363537617,4.8407742721532125 -845,16.0,16.0,5.275106062069114,-15.158221991997266 -845,17.0,14.0,-1.8108011504072024,3.687418931630696 -845,17.0,17.0,4.886487584415919,-9.906177730909668 -845,17.0,18.0,-3.0756864340087167,6.218758799278971 -845,18.0,17.0,-3.0756864340087167,6.218758799278971 -845,18.0,18.0,8.958039375185187,-17.98346468163191 -845,18.0,19.0,-5.88235294117647,11.76470588235294 -845,19.0,9.0,-1.7848303152666305,3.98535828943083 -845,19.0,18.0,-5.88235294117647,11.76470588235294 -845,19.0,19.0,7.6671832564431,-15.75006417178377 -845,20.0,9.0,-5.101853820159654,10.98071411292983 -845,20.0,20.0,21.876495189895888,-45.10843276170355 -845,20.0,21.0,-16.774641369736234,34.127718648773715 -845,21.0,9.0,-2.619319553382597,5.400770303329455 -845,21.0,20.0,-16.774641369736234,34.127718648773715 -845,21.0,21.0,21.93449907537439,-43.48289181517921 -845,21.0,23.0,-2.5405381522555563,3.95440286307604 -845,22.0,14.0,-1.9683489489016612,3.976064876781356 -845,22.0,22.0,3.429754555384988,-6.965303617315433 -845,22.0,23.0,-1.4614056064833263,2.989238740534077 -845,23.0,21.0,-2.5405381522555563,3.95440286307604 -845,23.0,22.0,-1.4614056064833263,2.989238740534077 -845,23.0,23.0,5.311836702613133,-9.188263657315172 -845,23.0,24.0,-1.3098929438742493,2.287622053705056 -845,24.0,23.0,-1.3098929438742493,2.287622053705056 -845,24.0,24.0,4.495715080321987,-7.864978761969621 -845,24.0,25.0,-1.2165301194494855,1.8171440463475024 -845,24.0,26.0,-1.9692920169982515,3.760212661917064 -845,25.0,24.0,-1.2165301194494855,1.8171440463475024 -845,25.0,25.0,1.2165301194494855,-1.8171440463475024 -845,26.0,24.0,-1.9692920169982515,3.760212661917064 -845,26.0,26.0,3.652281470778589,-9.46044252232512 -845,26.0,27.0,0.0,2.608731947574922 -845,26.0,28.0,-0.99553355095268,1.881005840357816 -845,26.0,29.0,-0.6874559028276572,1.293971494797717 -845,27.0,5.0,-4.362844058012917,15.463571542897856 -845,27.0,7.0,-1.4439790613954469,4.540814658476248 -845,27.0,26.0,0.0,2.608731947574922 -845,27.0,27.0,5.806823119408364,-22.67145722159613 -845,28.0,26.0,-0.99553355095268,1.881005840357816 -845,28.0,28.0,1.9075867579849564,-3.604364401207048 -845,28.0,29.0,-0.9120532070322764,1.7233585608492326 -845,29.0,26.0,-0.6874559028276572,1.293971494797717 -845,29.0,28.0,-0.9120532070322764,1.7233585608492326 -845,29.0,29.0,1.5995091098599337,-3.0173300556469496 -846,0.0,0.0,6.765516048652632,-21.23160167089863 -846,0.0,1.0,-5.224646179885656,15.646726840803398 -846,0.0,2.0,-1.5408698687669766,5.631674830095234 -846,1.0,0.0,-5.224646179885656,15.646726840803398 -846,1.0,1.0,9.75228216552403,-30.648662892676068 -846,1.0,3.0,-1.7055303166990268,5.1973792282565086 -846,1.0,4.0,-1.1359607881738778,4.772479328281356 -846,1.0,5.0,-1.6861448807654689,5.116477495334806 -846,2.0,0.0,-1.5408698687669766,5.631674830095234 -846,2.0,2.0,9.736318911079088,-29.13794745915803 -846,2.0,3.0,-8.19544904231211,23.5308726290628 -846,3.0,1.0,-1.7055303166990268,5.1973792282565086 -846,3.0,2.0,-8.19544904231211,23.5308726290628 -846,3.0,3.0,16.314103089185693,-55.509410535254254 -846,3.0,5.0,-6.413123730174556,22.31120356548123 -846,3.0,11.0,0.0,4.191255364806866 -846,4.0,1.0,-1.1359607881738778,4.772479328281356 -846,4.0,4.0,4.089980824135861,-12.190647245055052 -846,4.0,6.0,-2.954020035961983,7.449267916773697 -846,5.0,1.0,-1.6861448807654689,5.116477495334806 -846,5.0,3.0,-6.413123730174556,22.31120356548123 -846,5.0,5.0,22.341631269034565,-82.8291478657789 -846,5.0,6.0,-3.590210423980992,11.02611441072814 -846,5.0,7.0,-6.289308176100628,22.0125786163522 -846,5.0,8.0,0.0,4.915840805411357 -846,5.0,9.0,0.0,1.8561002591115965 -846,5.0,27.0,-4.362844058012917,15.463571542897856 -846,6.0,4.0,-2.954020035961983,7.449267916773697 -846,6.0,5.0,-3.590210423980992,11.02611441072814 -846,6.0,6.0,6.544230459942975,-18.45668232750184 -846,7.0,5.0,-6.289308176100628,22.0125786163522 -846,7.0,7.0,7.733287237496075,-26.527493274828448 -846,7.0,27.0,-1.4439790613954469,4.540814658476248 -846,8.0,5.0,0.0,4.915840805411357 -846,8.0,8.0,0.0,-18.706293706293707 -846,8.0,9.0,0.0,9.090909090909092 -846,8.0,10.0,0.0,4.807692307692308 -846,9.0,5.0,0.0,1.8561002591115965 -846,9.0,8.0,0.0,9.090909090909092 -846,9.0,9.0,13.462042814524237,-41.3837606675224 -846,9.0,16.0,-3.956039125715353,10.317447719844054 -846,9.0,19.0,-1.7848303152666305,3.98535828943083 -846,9.0,20.0,-5.101853820159654,10.98071411292983 -846,9.0,21.0,-2.619319553382597,5.400770303329455 -846,10.0,8.0,0.0,4.807692307692308 -846,10.0,10.0,0.0,-4.807692307692308 -846,11.0,3.0,0.0,4.191255364806866 -846,11.0,11.0,6.573961583776156,-24.424167659260668 -846,11.0,12.0,0.0,7.142857142857143 -846,11.0,13.0,-1.5265676088395577,3.1734252729654173 -846,11.0,14.0,-3.0953961826564296,6.097275864326261 -846,11.0,15.0,-1.9519977922801688,4.104359379111847 -846,12.0,11.0,0.0,7.142857142857143 -846,12.0,12.0,0.0,-7.142857142857143 -846,13.0,11.0,-1.5265676088395577,3.1734252729654173 -846,13.0,13.0,4.01751987283902,-5.424299332335067 -846,13.0,14.0,-2.4909522639994623,2.250874059369649 -846,14.0,11.0,-3.0953961826564296,6.097275864326261 -846,14.0,13.0,-2.4909522639994623,2.250874059369649 -846,14.0,14.0,9.365498545964757,-16.01163373210796 -846,14.0,17.0,-1.8108011504072024,3.687418931630696 -846,14.0,22.0,-1.9683489489016612,3.976064876781356 -846,15.0,11.0,-1.9519977922801688,4.104359379111847 -846,15.0,15.0,3.271064728633931,-8.94513365126506 -846,15.0,16.0,-1.3190669363537617,4.8407742721532125 -846,16.0,9.0,-3.956039125715353,10.317447719844054 -846,16.0,15.0,-1.3190669363537617,4.8407742721532125 -846,16.0,16.0,5.275106062069114,-15.158221991997266 -846,17.0,14.0,-1.8108011504072024,3.687418931630696 -846,17.0,17.0,4.886487584415919,-9.906177730909668 -846,17.0,18.0,-3.0756864340087167,6.218758799278971 -846,18.0,17.0,-3.0756864340087167,6.218758799278971 -846,18.0,18.0,8.958039375185187,-17.98346468163191 -846,18.0,19.0,-5.88235294117647,11.76470588235294 -846,19.0,9.0,-1.7848303152666305,3.98535828943083 -846,19.0,18.0,-5.88235294117647,11.76470588235294 -846,19.0,19.0,7.6671832564431,-15.75006417178377 -846,20.0,9.0,-5.101853820159654,10.98071411292983 -846,20.0,20.0,21.876495189895888,-45.10843276170355 -846,20.0,21.0,-16.774641369736234,34.127718648773715 -846,21.0,9.0,-2.619319553382597,5.400770303329455 -846,21.0,20.0,-16.774641369736234,34.127718648773715 -846,21.0,21.0,21.93449907537439,-43.48289181517921 -846,21.0,23.0,-2.5405381522555563,3.95440286307604 -846,22.0,14.0,-1.9683489489016612,3.976064876781356 -846,22.0,22.0,3.429754555384988,-6.965303617315433 -846,22.0,23.0,-1.4614056064833263,2.989238740534077 -846,23.0,21.0,-2.5405381522555563,3.95440286307604 -846,23.0,22.0,-1.4614056064833263,2.989238740534077 -846,23.0,23.0,5.311836702613133,-9.188263657315172 -846,23.0,24.0,-1.3098929438742493,2.287622053705056 -846,24.0,23.0,-1.3098929438742493,2.287622053705056 -846,24.0,24.0,4.495715080321987,-7.864978761969621 -846,24.0,25.0,-1.2165301194494855,1.8171440463475024 -846,24.0,26.0,-1.9692920169982515,3.760212661917064 -846,25.0,24.0,-1.2165301194494855,1.8171440463475024 -846,25.0,25.0,1.2165301194494855,-1.8171440463475024 -846,26.0,24.0,-1.9692920169982515,3.760212661917064 -846,26.0,26.0,3.652281470778589,-9.46044252232512 -846,26.0,27.0,0.0,2.608731947574922 -846,26.0,28.0,-0.99553355095268,1.881005840357816 -846,26.0,29.0,-0.6874559028276572,1.293971494797717 -846,27.0,5.0,-4.362844058012917,15.463571542897856 -846,27.0,7.0,-1.4439790613954469,4.540814658476248 -846,27.0,26.0,0.0,2.608731947574922 -846,27.0,27.0,5.806823119408364,-22.67145722159613 -846,28.0,26.0,-0.99553355095268,1.881005840357816 -846,28.0,28.0,1.9075867579849564,-3.604364401207048 -846,28.0,29.0,-0.9120532070322764,1.7233585608492326 -846,29.0,26.0,-0.6874559028276572,1.293971494797717 -846,29.0,28.0,-0.9120532070322764,1.7233585608492326 -846,29.0,29.0,1.5995091098599337,-3.0173300556469496 -847,0.0,0.0,6.765516048652632,-21.23160167089863 -847,0.0,1.0,-5.224646179885656,15.646726840803398 -847,0.0,2.0,-1.5408698687669766,5.631674830095234 -847,1.0,0.0,-5.224646179885656,15.646726840803398 -847,1.0,1.0,9.75228216552403,-30.648662892676068 -847,1.0,3.0,-1.7055303166990268,5.1973792282565086 -847,1.0,4.0,-1.1359607881738778,4.772479328281356 -847,1.0,5.0,-1.6861448807654689,5.116477495334806 -847,2.0,0.0,-1.5408698687669766,5.631674830095234 -847,2.0,2.0,9.736318911079088,-29.13794745915803 -847,2.0,3.0,-8.19544904231211,23.5308726290628 -847,3.0,1.0,-1.7055303166990268,5.1973792282565086 -847,3.0,2.0,-8.19544904231211,23.5308726290628 -847,3.0,3.0,16.314103089185693,-55.509410535254254 -847,3.0,5.0,-6.413123730174556,22.31120356548123 -847,3.0,11.0,0.0,4.191255364806866 -847,4.0,1.0,-1.1359607881738778,4.772479328281356 -847,4.0,4.0,4.089980824135861,-12.190647245055052 -847,4.0,6.0,-2.954020035961983,7.449267916773697 -847,5.0,1.0,-1.6861448807654689,5.116477495334806 -847,5.0,3.0,-6.413123730174556,22.31120356548123 -847,5.0,5.0,22.341631269034565,-82.8291478657789 -847,5.0,6.0,-3.590210423980992,11.02611441072814 -847,5.0,7.0,-6.289308176100628,22.0125786163522 -847,5.0,8.0,0.0,4.915840805411357 -847,5.0,9.0,0.0,1.8561002591115965 -847,5.0,27.0,-4.362844058012917,15.463571542897856 -847,6.0,4.0,-2.954020035961983,7.449267916773697 -847,6.0,5.0,-3.590210423980992,11.02611441072814 -847,6.0,6.0,6.544230459942975,-18.45668232750184 -847,7.0,5.0,-6.289308176100628,22.0125786163522 -847,7.0,7.0,7.733287237496075,-26.527493274828448 -847,7.0,27.0,-1.4439790613954469,4.540814658476248 -847,8.0,5.0,0.0,4.915840805411357 -847,8.0,8.0,0.0,-18.706293706293707 -847,8.0,9.0,0.0,9.090909090909092 -847,8.0,10.0,0.0,4.807692307692308 -847,9.0,5.0,0.0,1.8561002591115965 -847,9.0,8.0,0.0,9.090909090909092 -847,9.0,9.0,8.36018899436458,-30.40304655459257 -847,9.0,16.0,-3.956039125715353,10.317447719844054 -847,9.0,19.0,-1.7848303152666305,3.98535828943083 -847,9.0,21.0,-2.619319553382597,5.400770303329455 -847,10.0,8.0,0.0,4.807692307692308 -847,10.0,10.0,0.0,-4.807692307692308 -847,11.0,3.0,0.0,4.191255364806866 -847,11.0,11.0,6.573961583776156,-24.424167659260668 -847,11.0,12.0,0.0,7.142857142857143 -847,11.0,13.0,-1.5265676088395577,3.1734252729654173 -847,11.0,14.0,-3.0953961826564296,6.097275864326261 -847,11.0,15.0,-1.9519977922801688,4.104359379111847 -847,12.0,11.0,0.0,7.142857142857143 -847,12.0,12.0,0.0,-7.142857142857143 -847,13.0,11.0,-1.5265676088395577,3.1734252729654173 -847,13.0,13.0,4.01751987283902,-5.424299332335067 -847,13.0,14.0,-2.4909522639994623,2.250874059369649 -847,14.0,11.0,-3.0953961826564296,6.097275864326261 -847,14.0,13.0,-2.4909522639994623,2.250874059369649 -847,14.0,14.0,9.365498545964757,-16.01163373210796 -847,14.0,17.0,-1.8108011504072024,3.687418931630696 -847,14.0,22.0,-1.9683489489016612,3.976064876781356 -847,15.0,11.0,-1.9519977922801688,4.104359379111847 -847,15.0,15.0,3.271064728633931,-8.94513365126506 -847,15.0,16.0,-1.3190669363537617,4.8407742721532125 -847,16.0,9.0,-3.956039125715353,10.317447719844054 -847,16.0,15.0,-1.3190669363537617,4.8407742721532125 -847,16.0,16.0,5.275106062069114,-15.158221991997266 -847,17.0,14.0,-1.8108011504072024,3.687418931630696 -847,17.0,17.0,4.886487584415919,-9.906177730909668 -847,17.0,18.0,-3.0756864340087167,6.218758799278971 -847,18.0,17.0,-3.0756864340087167,6.218758799278971 -847,18.0,18.0,8.958039375185187,-17.98346468163191 -847,18.0,19.0,-5.88235294117647,11.76470588235294 -847,19.0,9.0,-1.7848303152666305,3.98535828943083 -847,19.0,18.0,-5.88235294117647,11.76470588235294 -847,19.0,19.0,7.6671832564431,-15.75006417178377 -847,20.0,20.0,16.774641369736234,-34.127718648773715 -847,20.0,21.0,-16.774641369736234,34.127718648773715 -847,21.0,9.0,-2.619319553382597,5.400770303329455 -847,21.0,20.0,-16.774641369736234,34.127718648773715 -847,21.0,21.0,21.93449907537439,-43.48289181517921 -847,21.0,23.0,-2.5405381522555563,3.95440286307604 -847,22.0,14.0,-1.9683489489016612,3.976064876781356 -847,22.0,22.0,3.429754555384988,-6.965303617315433 -847,22.0,23.0,-1.4614056064833263,2.989238740534077 -847,23.0,21.0,-2.5405381522555563,3.95440286307604 -847,23.0,22.0,-1.4614056064833263,2.989238740534077 -847,23.0,23.0,5.311836702613133,-9.188263657315172 -847,23.0,24.0,-1.3098929438742493,2.287622053705056 -847,24.0,23.0,-1.3098929438742493,2.287622053705056 -847,24.0,24.0,4.495715080321987,-7.864978761969621 -847,24.0,25.0,-1.2165301194494855,1.8171440463475024 -847,24.0,26.0,-1.9692920169982515,3.760212661917064 -847,25.0,24.0,-1.2165301194494855,1.8171440463475024 -847,25.0,25.0,1.2165301194494855,-1.8171440463475024 -847,26.0,24.0,-1.9692920169982515,3.760212661917064 -847,26.0,26.0,3.652281470778589,-9.46044252232512 -847,26.0,27.0,0.0,2.608731947574922 -847,26.0,28.0,-0.99553355095268,1.881005840357816 -847,26.0,29.0,-0.6874559028276572,1.293971494797717 -847,27.0,5.0,-4.362844058012917,15.463571542897856 -847,27.0,7.0,-1.4439790613954469,4.540814658476248 -847,27.0,26.0,0.0,2.608731947574922 -847,27.0,27.0,5.806823119408364,-22.67145722159613 -847,28.0,26.0,-0.99553355095268,1.881005840357816 -847,28.0,28.0,1.9075867579849564,-3.604364401207048 -847,28.0,29.0,-0.9120532070322764,1.7233585608492326 -847,29.0,26.0,-0.6874559028276572,1.293971494797717 -847,29.0,28.0,-0.9120532070322764,1.7233585608492326 -847,29.0,29.0,1.5995091098599337,-3.0173300556469496 -848,0.0,0.0,6.765516048652632,-21.23160167089863 -848,0.0,1.0,-5.224646179885656,15.646726840803398 -848,0.0,2.0,-1.5408698687669766,5.631674830095234 -848,1.0,0.0,-5.224646179885656,15.646726840803398 -848,1.0,1.0,9.75228216552403,-30.648662892676068 -848,1.0,3.0,-1.7055303166990268,5.1973792282565086 -848,1.0,4.0,-1.1359607881738778,4.772479328281356 -848,1.0,5.0,-1.6861448807654689,5.116477495334806 -848,2.0,0.0,-1.5408698687669766,5.631674830095234 -848,2.0,2.0,9.736318911079088,-29.13794745915803 -848,2.0,3.0,-8.19544904231211,23.5308726290628 -848,3.0,1.0,-1.7055303166990268,5.1973792282565086 -848,3.0,2.0,-8.19544904231211,23.5308726290628 -848,3.0,3.0,16.314103089185693,-55.509410535254254 -848,3.0,5.0,-6.413123730174556,22.31120356548123 -848,3.0,11.0,0.0,4.191255364806866 -848,4.0,1.0,-1.1359607881738778,4.772479328281356 -848,4.0,4.0,4.089980824135861,-12.190647245055052 -848,4.0,6.0,-2.954020035961983,7.449267916773697 -848,5.0,1.0,-1.6861448807654689,5.116477495334806 -848,5.0,3.0,-6.413123730174556,22.31120356548123 -848,5.0,5.0,22.341631269034565,-82.8291478657789 -848,5.0,6.0,-3.590210423980992,11.02611441072814 -848,5.0,7.0,-6.289308176100628,22.0125786163522 -848,5.0,8.0,0.0,4.915840805411357 -848,5.0,9.0,0.0,1.8561002591115965 -848,5.0,27.0,-4.362844058012917,15.463571542897856 -848,6.0,4.0,-2.954020035961983,7.449267916773697 -848,6.0,5.0,-3.590210423980992,11.02611441072814 -848,6.0,6.0,6.544230459942975,-18.45668232750184 -848,7.0,5.0,-6.289308176100628,22.0125786163522 -848,7.0,7.0,7.733287237496075,-26.527493274828448 -848,7.0,27.0,-1.4439790613954469,4.540814658476248 -848,8.0,5.0,0.0,4.915840805411357 -848,8.0,8.0,0.0,-18.706293706293707 -848,8.0,9.0,0.0,9.090909090909092 -848,8.0,10.0,0.0,4.807692307692308 -848,9.0,5.0,0.0,1.8561002591115965 -848,9.0,8.0,0.0,9.090909090909092 -848,9.0,9.0,13.462042814524237,-41.3837606675224 -848,9.0,16.0,-3.956039125715353,10.317447719844054 -848,9.0,19.0,-1.7848303152666305,3.98535828943083 -848,9.0,20.0,-5.101853820159654,10.98071411292983 -848,9.0,21.0,-2.619319553382597,5.400770303329455 -848,10.0,8.0,0.0,4.807692307692308 -848,10.0,10.0,0.0,-4.807692307692308 -848,11.0,3.0,0.0,4.191255364806866 -848,11.0,11.0,6.573961583776156,-24.424167659260668 -848,11.0,12.0,0.0,7.142857142857143 -848,11.0,13.0,-1.5265676088395577,3.1734252729654173 -848,11.0,14.0,-3.0953961826564296,6.097275864326261 -848,11.0,15.0,-1.9519977922801688,4.104359379111847 -848,12.0,11.0,0.0,7.142857142857143 -848,12.0,12.0,0.0,-7.142857142857143 -848,13.0,11.0,-1.5265676088395577,3.1734252729654173 -848,13.0,13.0,4.01751987283902,-5.424299332335067 -848,13.0,14.0,-2.4909522639994623,2.250874059369649 -848,14.0,11.0,-3.0953961826564296,6.097275864326261 -848,14.0,13.0,-2.4909522639994623,2.250874059369649 -848,14.0,14.0,9.365498545964757,-16.01163373210796 -848,14.0,17.0,-1.8108011504072024,3.687418931630696 -848,14.0,22.0,-1.9683489489016612,3.976064876781356 -848,15.0,11.0,-1.9519977922801688,4.104359379111847 -848,15.0,15.0,3.271064728633931,-8.94513365126506 -848,15.0,16.0,-1.3190669363537617,4.8407742721532125 -848,16.0,9.0,-3.956039125715353,10.317447719844054 -848,16.0,15.0,-1.3190669363537617,4.8407742721532125 -848,16.0,16.0,5.275106062069114,-15.158221991997266 -848,17.0,14.0,-1.8108011504072024,3.687418931630696 -848,17.0,17.0,4.886487584415919,-9.906177730909668 -848,17.0,18.0,-3.0756864340087167,6.218758799278971 -848,18.0,17.0,-3.0756864340087167,6.218758799278971 -848,18.0,18.0,8.958039375185187,-17.98346468163191 -848,18.0,19.0,-5.88235294117647,11.76470588235294 -848,19.0,9.0,-1.7848303152666305,3.98535828943083 -848,19.0,18.0,-5.88235294117647,11.76470588235294 -848,19.0,19.0,7.6671832564431,-15.75006417178377 -848,20.0,9.0,-5.101853820159654,10.98071411292983 -848,20.0,20.0,21.876495189895888,-45.10843276170355 -848,20.0,21.0,-16.774641369736234,34.127718648773715 -848,21.0,9.0,-2.619319553382597,5.400770303329455 -848,21.0,20.0,-16.774641369736234,34.127718648773715 -848,21.0,21.0,21.93449907537439,-43.48289181517921 -848,21.0,23.0,-2.5405381522555563,3.95440286307604 -848,22.0,14.0,-1.9683489489016612,3.976064876781356 -848,22.0,22.0,3.429754555384988,-6.965303617315433 -848,22.0,23.0,-1.4614056064833263,2.989238740534077 -848,23.0,21.0,-2.5405381522555563,3.95440286307604 -848,23.0,22.0,-1.4614056064833263,2.989238740534077 -848,23.0,23.0,5.311836702613133,-9.188263657315172 -848,23.0,24.0,-1.3098929438742493,2.287622053705056 -848,24.0,23.0,-1.3098929438742493,2.287622053705056 -848,24.0,24.0,4.495715080321987,-7.864978761969621 -848,24.0,25.0,-1.2165301194494855,1.8171440463475024 -848,24.0,26.0,-1.9692920169982515,3.760212661917064 -848,25.0,24.0,-1.2165301194494855,1.8171440463475024 -848,25.0,25.0,1.2165301194494855,-1.8171440463475024 -848,26.0,24.0,-1.9692920169982515,3.760212661917064 -848,26.0,26.0,3.652281470778589,-9.46044252232512 -848,26.0,27.0,0.0,2.608731947574922 -848,26.0,28.0,-0.99553355095268,1.881005840357816 -848,26.0,29.0,-0.6874559028276572,1.293971494797717 -848,27.0,5.0,-4.362844058012917,15.463571542897856 -848,27.0,7.0,-1.4439790613954469,4.540814658476248 -848,27.0,26.0,0.0,2.608731947574922 -848,27.0,27.0,5.806823119408364,-22.67145722159613 -848,28.0,26.0,-0.99553355095268,1.881005840357816 -848,28.0,28.0,1.9075867579849564,-3.604364401207048 -848,28.0,29.0,-0.9120532070322764,1.7233585608492326 -848,29.0,26.0,-0.6874559028276572,1.293971494797717 -848,29.0,28.0,-0.9120532070322764,1.7233585608492326 -848,29.0,29.0,1.5995091098599337,-3.0173300556469496 -849,0.0,0.0,6.765516048652632,-21.23160167089863 -849,0.0,1.0,-5.224646179885656,15.646726840803398 -849,0.0,2.0,-1.5408698687669766,5.631674830095234 -849,1.0,0.0,-5.224646179885656,15.646726840803398 -849,1.0,1.0,9.75228216552403,-30.648662892676068 -849,1.0,3.0,-1.7055303166990268,5.1973792282565086 -849,1.0,4.0,-1.1359607881738778,4.772479328281356 -849,1.0,5.0,-1.6861448807654689,5.116477495334806 -849,2.0,0.0,-1.5408698687669766,5.631674830095234 -849,2.0,2.0,9.736318911079088,-29.13794745915803 -849,2.0,3.0,-8.19544904231211,23.5308726290628 -849,3.0,1.0,-1.7055303166990268,5.1973792282565086 -849,3.0,2.0,-8.19544904231211,23.5308726290628 -849,3.0,3.0,16.314103089185693,-55.509410535254254 -849,3.0,5.0,-6.413123730174556,22.31120356548123 -849,3.0,11.0,0.0,4.191255364806866 -849,4.0,1.0,-1.1359607881738778,4.772479328281356 -849,4.0,4.0,4.089980824135861,-12.190647245055052 -849,4.0,6.0,-2.954020035961983,7.449267916773697 -849,5.0,1.0,-1.6861448807654689,5.116477495334806 -849,5.0,3.0,-6.413123730174556,22.31120356548123 -849,5.0,5.0,22.341631269034565,-82.8291478657789 -849,5.0,6.0,-3.590210423980992,11.02611441072814 -849,5.0,7.0,-6.289308176100628,22.0125786163522 -849,5.0,8.0,0.0,4.915840805411357 -849,5.0,9.0,0.0,1.8561002591115965 -849,5.0,27.0,-4.362844058012917,15.463571542897856 -849,6.0,4.0,-2.954020035961983,7.449267916773697 -849,6.0,5.0,-3.590210423980992,11.02611441072814 -849,6.0,6.0,6.544230459942975,-18.45668232750184 -849,7.0,5.0,-6.289308176100628,22.0125786163522 -849,7.0,7.0,7.733287237496075,-26.527493274828448 -849,7.0,27.0,-1.4439790613954469,4.540814658476248 -849,8.0,5.0,0.0,4.915840805411357 -849,8.0,8.0,0.0,-18.706293706293707 -849,8.0,9.0,0.0,9.090909090909092 -849,8.0,10.0,0.0,4.807692307692308 -849,9.0,5.0,0.0,1.8561002591115965 -849,9.0,8.0,0.0,9.090909090909092 -849,9.0,9.0,13.462042814524237,-41.3837606675224 -849,9.0,16.0,-3.956039125715353,10.317447719844054 -849,9.0,19.0,-1.7848303152666305,3.98535828943083 -849,9.0,20.0,-5.101853820159654,10.98071411292983 -849,9.0,21.0,-2.619319553382597,5.400770303329455 -849,10.0,8.0,0.0,4.807692307692308 -849,10.0,10.0,0.0,-4.807692307692308 -849,11.0,3.0,0.0,4.191255364806866 -849,11.0,11.0,6.573961583776156,-24.424167659260668 -849,11.0,12.0,0.0,7.142857142857143 -849,11.0,13.0,-1.5265676088395577,3.1734252729654173 -849,11.0,14.0,-3.0953961826564296,6.097275864326261 -849,11.0,15.0,-1.9519977922801688,4.104359379111847 -849,12.0,11.0,0.0,7.142857142857143 -849,12.0,12.0,0.0,-7.142857142857143 -849,13.0,11.0,-1.5265676088395577,3.1734252729654173 -849,13.0,13.0,1.5265676088395577,-3.1734252729654173 -849,14.0,11.0,-3.0953961826564296,6.097275864326261 -849,14.0,14.0,6.874546281965293,-13.760759672738311 -849,14.0,17.0,-1.8108011504072024,3.687418931630696 -849,14.0,22.0,-1.9683489489016612,3.976064876781356 -849,15.0,11.0,-1.9519977922801688,4.104359379111847 -849,15.0,15.0,3.271064728633931,-8.94513365126506 -849,15.0,16.0,-1.3190669363537617,4.8407742721532125 -849,16.0,9.0,-3.956039125715353,10.317447719844054 -849,16.0,15.0,-1.3190669363537617,4.8407742721532125 -849,16.0,16.0,5.275106062069114,-15.158221991997266 -849,17.0,14.0,-1.8108011504072024,3.687418931630696 -849,17.0,17.0,4.886487584415919,-9.906177730909668 -849,17.0,18.0,-3.0756864340087167,6.218758799278971 -849,18.0,17.0,-3.0756864340087167,6.218758799278971 -849,18.0,18.0,8.958039375185187,-17.98346468163191 -849,18.0,19.0,-5.88235294117647,11.76470588235294 -849,19.0,9.0,-1.7848303152666305,3.98535828943083 -849,19.0,18.0,-5.88235294117647,11.76470588235294 -849,19.0,19.0,7.6671832564431,-15.75006417178377 -849,20.0,9.0,-5.101853820159654,10.98071411292983 -849,20.0,20.0,21.876495189895888,-45.10843276170355 -849,20.0,21.0,-16.774641369736234,34.127718648773715 -849,21.0,9.0,-2.619319553382597,5.400770303329455 -849,21.0,20.0,-16.774641369736234,34.127718648773715 -849,21.0,21.0,21.93449907537439,-43.48289181517921 -849,21.0,23.0,-2.5405381522555563,3.95440286307604 -849,22.0,14.0,-1.9683489489016612,3.976064876781356 -849,22.0,22.0,3.429754555384988,-6.965303617315433 -849,22.0,23.0,-1.4614056064833263,2.989238740534077 -849,23.0,21.0,-2.5405381522555563,3.95440286307604 -849,23.0,22.0,-1.4614056064833263,2.989238740534077 -849,23.0,23.0,5.311836702613133,-9.188263657315172 -849,23.0,24.0,-1.3098929438742493,2.287622053705056 -849,24.0,23.0,-1.3098929438742493,2.287622053705056 -849,24.0,24.0,2.526423063323735,-4.104766100052558 -849,24.0,25.0,-1.2165301194494855,1.8171440463475024 -849,25.0,24.0,-1.2165301194494855,1.8171440463475024 -849,25.0,25.0,1.2165301194494855,-1.8171440463475024 -849,26.0,26.0,1.6829894537803372,-5.700229860408058 -849,26.0,27.0,0.0,2.608731947574922 -849,26.0,28.0,-0.99553355095268,1.881005840357816 -849,26.0,29.0,-0.6874559028276572,1.293971494797717 -849,27.0,5.0,-4.362844058012917,15.463571542897856 -849,27.0,7.0,-1.4439790613954469,4.540814658476248 -849,27.0,26.0,0.0,2.608731947574922 -849,27.0,27.0,5.806823119408364,-22.67145722159613 -849,28.0,26.0,-0.99553355095268,1.881005840357816 -849,28.0,28.0,1.9075867579849564,-3.604364401207048 -849,28.0,29.0,-0.9120532070322764,1.7233585608492326 -849,29.0,26.0,-0.6874559028276572,1.293971494797717 -849,29.0,28.0,-0.9120532070322764,1.7233585608492326 -849,29.0,29.0,1.5995091098599337,-3.0173300556469496 -850,0.0,0.0,6.765516048652632,-21.23160167089863 -850,0.0,1.0,-5.224646179885656,15.646726840803398 -850,0.0,2.0,-1.5408698687669766,5.631674830095234 -850,1.0,0.0,-5.224646179885656,15.646726840803398 -850,1.0,1.0,9.75228216552403,-30.648662892676068 -850,1.0,3.0,-1.7055303166990268,5.1973792282565086 -850,1.0,4.0,-1.1359607881738778,4.772479328281356 -850,1.0,5.0,-1.6861448807654689,5.116477495334806 -850,2.0,0.0,-1.5408698687669766,5.631674830095234 -850,2.0,2.0,9.736318911079088,-29.13794745915803 -850,2.0,3.0,-8.19544904231211,23.5308726290628 -850,3.0,1.0,-1.7055303166990268,5.1973792282565086 -850,3.0,2.0,-8.19544904231211,23.5308726290628 -850,3.0,3.0,16.314103089185693,-55.509410535254254 -850,3.0,5.0,-6.413123730174556,22.31120356548123 -850,3.0,11.0,0.0,4.191255364806866 -850,4.0,1.0,-1.1359607881738778,4.772479328281356 -850,4.0,4.0,4.089980824135861,-12.190647245055052 -850,4.0,6.0,-2.954020035961983,7.449267916773697 -850,5.0,1.0,-1.6861448807654689,5.116477495334806 -850,5.0,3.0,-6.413123730174556,22.31120356548123 -850,5.0,5.0,22.341631269034565,-82.8291478657789 -850,5.0,6.0,-3.590210423980992,11.02611441072814 -850,5.0,7.0,-6.289308176100628,22.0125786163522 -850,5.0,8.0,0.0,4.915840805411357 -850,5.0,9.0,0.0,1.8561002591115965 -850,5.0,27.0,-4.362844058012917,15.463571542897856 -850,6.0,4.0,-2.954020035961983,7.449267916773697 -850,6.0,5.0,-3.590210423980992,11.02611441072814 -850,6.0,6.0,6.544230459942975,-18.45668232750184 -850,7.0,5.0,-6.289308176100628,22.0125786163522 -850,7.0,7.0,7.733287237496075,-26.527493274828448 -850,7.0,27.0,-1.4439790613954469,4.540814658476248 -850,8.0,5.0,0.0,4.915840805411357 -850,8.0,8.0,0.0,-18.706293706293707 -850,8.0,9.0,0.0,9.090909090909092 -850,8.0,10.0,0.0,4.807692307692308 -850,9.0,5.0,0.0,1.8561002591115965 -850,9.0,8.0,0.0,9.090909090909092 -850,9.0,9.0,13.462042814524237,-41.3837606675224 -850,9.0,16.0,-3.956039125715353,10.317447719844054 -850,9.0,19.0,-1.7848303152666305,3.98535828943083 -850,9.0,20.0,-5.101853820159654,10.98071411292983 -850,9.0,21.0,-2.619319553382597,5.400770303329455 -850,10.0,8.0,0.0,4.807692307692308 -850,10.0,10.0,0.0,-4.807692307692308 -850,11.0,3.0,0.0,4.191255364806866 -850,11.0,11.0,6.573961583776156,-24.424167659260668 -850,11.0,12.0,0.0,7.142857142857143 -850,11.0,13.0,-1.5265676088395577,3.1734252729654173 -850,11.0,14.0,-3.0953961826564296,6.097275864326261 -850,11.0,15.0,-1.9519977922801688,4.104359379111847 -850,12.0,11.0,0.0,7.142857142857143 -850,12.0,12.0,0.0,-7.142857142857143 -850,13.0,11.0,-1.5265676088395577,3.1734252729654173 -850,13.0,13.0,4.01751987283902,-5.424299332335067 -850,13.0,14.0,-2.4909522639994623,2.250874059369649 -850,14.0,11.0,-3.0953961826564296,6.097275864326261 -850,14.0,13.0,-2.4909522639994623,2.250874059369649 -850,14.0,14.0,9.365498545964757,-16.01163373210796 -850,14.0,17.0,-1.8108011504072024,3.687418931630696 -850,14.0,22.0,-1.9683489489016612,3.976064876781356 -850,15.0,11.0,-1.9519977922801688,4.104359379111847 -850,15.0,15.0,3.271064728633931,-8.94513365126506 -850,15.0,16.0,-1.3190669363537617,4.8407742721532125 -850,16.0,9.0,-3.956039125715353,10.317447719844054 -850,16.0,15.0,-1.3190669363537617,4.8407742721532125 -850,16.0,16.0,5.275106062069114,-15.158221991997266 -850,17.0,14.0,-1.8108011504072024,3.687418931630696 -850,17.0,17.0,4.886487584415919,-9.906177730909668 -850,17.0,18.0,-3.0756864340087167,6.218758799278971 -850,18.0,17.0,-3.0756864340087167,6.218758799278971 -850,18.0,18.0,8.958039375185187,-17.98346468163191 -850,18.0,19.0,-5.88235294117647,11.76470588235294 -850,19.0,9.0,-1.7848303152666305,3.98535828943083 -850,19.0,18.0,-5.88235294117647,11.76470588235294 -850,19.0,19.0,7.6671832564431,-15.75006417178377 -850,20.0,9.0,-5.101853820159654,10.98071411292983 -850,20.0,20.0,21.876495189895888,-45.10843276170355 -850,20.0,21.0,-16.774641369736234,34.127718648773715 -850,21.0,9.0,-2.619319553382597,5.400770303329455 -850,21.0,20.0,-16.774641369736234,34.127718648773715 -850,21.0,21.0,21.93449907537439,-43.48289181517921 -850,21.0,23.0,-2.5405381522555563,3.95440286307604 -850,22.0,14.0,-1.9683489489016612,3.976064876781356 -850,22.0,22.0,3.429754555384988,-6.965303617315433 -850,22.0,23.0,-1.4614056064833263,2.989238740534077 -850,23.0,21.0,-2.5405381522555563,3.95440286307604 -850,23.0,22.0,-1.4614056064833263,2.989238740534077 -850,23.0,23.0,5.311836702613133,-9.188263657315172 -850,23.0,24.0,-1.3098929438742493,2.287622053705056 -850,24.0,23.0,-1.3098929438742493,2.287622053705056 -850,24.0,24.0,4.495715080321987,-7.864978761969621 -850,24.0,25.0,-1.2165301194494855,1.8171440463475024 -850,24.0,26.0,-1.9692920169982515,3.760212661917064 -850,25.0,24.0,-1.2165301194494855,1.8171440463475024 -850,25.0,25.0,1.2165301194494855,-1.8171440463475024 -850,26.0,24.0,-1.9692920169982515,3.760212661917064 -850,26.0,26.0,3.652281470778589,-9.46044252232512 -850,26.0,27.0,0.0,2.608731947574922 -850,26.0,28.0,-0.99553355095268,1.881005840357816 -850,26.0,29.0,-0.6874559028276572,1.293971494797717 -850,27.0,5.0,-4.362844058012917,15.463571542897856 -850,27.0,7.0,-1.4439790613954469,4.540814658476248 -850,27.0,26.0,0.0,2.608731947574922 -850,27.0,27.0,5.806823119408364,-22.67145722159613 -850,28.0,26.0,-0.99553355095268,1.881005840357816 -850,28.0,28.0,1.9075867579849564,-3.604364401207048 -850,28.0,29.0,-0.9120532070322764,1.7233585608492326 -850,29.0,26.0,-0.6874559028276572,1.293971494797717 -850,29.0,28.0,-0.9120532070322764,1.7233585608492326 -850,29.0,29.0,1.5995091098599337,-3.0173300556469496 -851,0.0,0.0,6.765516048652632,-21.23160167089863 -851,0.0,1.0,-5.224646179885656,15.646726840803398 -851,0.0,2.0,-1.5408698687669766,5.631674830095234 -851,1.0,0.0,-5.224646179885656,15.646726840803398 -851,1.0,1.0,9.75228216552403,-30.648662892676068 -851,1.0,3.0,-1.7055303166990268,5.1973792282565086 -851,1.0,4.0,-1.1359607881738778,4.772479328281356 -851,1.0,5.0,-1.6861448807654689,5.116477495334806 -851,2.0,0.0,-1.5408698687669766,5.631674830095234 -851,2.0,2.0,9.736318911079088,-29.13794745915803 -851,2.0,3.0,-8.19544904231211,23.5308726290628 -851,3.0,1.0,-1.7055303166990268,5.1973792282565086 -851,3.0,2.0,-8.19544904231211,23.5308726290628 -851,3.0,3.0,16.314103089185693,-55.509410535254254 -851,3.0,5.0,-6.413123730174556,22.31120356548123 -851,3.0,11.0,0.0,4.191255364806866 -851,4.0,1.0,-1.1359607881738778,4.772479328281356 -851,4.0,4.0,4.089980824135861,-12.190647245055052 -851,4.0,6.0,-2.954020035961983,7.449267916773697 -851,5.0,1.0,-1.6861448807654689,5.116477495334806 -851,5.0,3.0,-6.413123730174556,22.31120356548123 -851,5.0,5.0,18.75142084505357,-71.81153345505078 -851,5.0,7.0,-6.289308176100628,22.0125786163522 -851,5.0,8.0,0.0,4.915840805411357 -851,5.0,9.0,0.0,1.8561002591115965 -851,5.0,27.0,-4.362844058012917,15.463571542897856 -851,6.0,4.0,-2.954020035961983,7.449267916773697 -851,6.0,6.0,2.954020035961983,-7.439067916773697 -851,7.0,5.0,-6.289308176100628,22.0125786163522 -851,7.0,7.0,7.733287237496075,-26.527493274828448 -851,7.0,27.0,-1.4439790613954469,4.540814658476248 -851,8.0,5.0,0.0,4.915840805411357 -851,8.0,8.0,0.0,-18.706293706293707 -851,8.0,9.0,0.0,9.090909090909092 -851,8.0,10.0,0.0,4.807692307692308 -851,9.0,5.0,0.0,1.8561002591115965 -851,9.0,8.0,0.0,9.090909090909092 -851,9.0,9.0,13.462042814524237,-41.3837606675224 -851,9.0,16.0,-3.956039125715353,10.317447719844054 -851,9.0,19.0,-1.7848303152666305,3.98535828943083 -851,9.0,20.0,-5.101853820159654,10.98071411292983 -851,9.0,21.0,-2.619319553382597,5.400770303329455 -851,10.0,8.0,0.0,4.807692307692308 -851,10.0,10.0,0.0,-4.807692307692308 -851,11.0,3.0,0.0,4.191255364806866 -851,11.0,11.0,6.573961583776156,-24.424167659260668 -851,11.0,12.0,0.0,7.142857142857143 -851,11.0,13.0,-1.5265676088395577,3.1734252729654173 -851,11.0,14.0,-3.0953961826564296,6.097275864326261 -851,11.0,15.0,-1.9519977922801688,4.104359379111847 -851,12.0,11.0,0.0,7.142857142857143 -851,12.0,12.0,0.0,-7.142857142857143 -851,13.0,11.0,-1.5265676088395577,3.1734252729654173 -851,13.0,13.0,4.01751987283902,-5.424299332335067 -851,13.0,14.0,-2.4909522639994623,2.250874059369649 -851,14.0,11.0,-3.0953961826564296,6.097275864326261 -851,14.0,13.0,-2.4909522639994623,2.250874059369649 -851,14.0,14.0,9.365498545964757,-16.01163373210796 -851,14.0,17.0,-1.8108011504072024,3.687418931630696 -851,14.0,22.0,-1.9683489489016612,3.976064876781356 -851,15.0,11.0,-1.9519977922801688,4.104359379111847 -851,15.0,15.0,3.271064728633931,-8.94513365126506 -851,15.0,16.0,-1.3190669363537617,4.8407742721532125 -851,16.0,9.0,-3.956039125715353,10.317447719844054 -851,16.0,15.0,-1.3190669363537617,4.8407742721532125 -851,16.0,16.0,5.275106062069114,-15.158221991997266 -851,17.0,14.0,-1.8108011504072024,3.687418931630696 -851,17.0,17.0,4.886487584415919,-9.906177730909668 -851,17.0,18.0,-3.0756864340087167,6.218758799278971 -851,18.0,17.0,-3.0756864340087167,6.218758799278971 -851,18.0,18.0,8.958039375185187,-17.98346468163191 -851,18.0,19.0,-5.88235294117647,11.76470588235294 -851,19.0,9.0,-1.7848303152666305,3.98535828943083 -851,19.0,18.0,-5.88235294117647,11.76470588235294 -851,19.0,19.0,7.6671832564431,-15.75006417178377 -851,20.0,9.0,-5.101853820159654,10.98071411292983 -851,20.0,20.0,21.876495189895888,-45.10843276170355 -851,20.0,21.0,-16.774641369736234,34.127718648773715 -851,21.0,9.0,-2.619319553382597,5.400770303329455 -851,21.0,20.0,-16.774641369736234,34.127718648773715 -851,21.0,21.0,21.93449907537439,-43.48289181517921 -851,21.0,23.0,-2.5405381522555563,3.95440286307604 -851,22.0,14.0,-1.9683489489016612,3.976064876781356 -851,22.0,22.0,3.429754555384988,-6.965303617315433 -851,22.0,23.0,-1.4614056064833263,2.989238740534077 -851,23.0,21.0,-2.5405381522555563,3.95440286307604 -851,23.0,22.0,-1.4614056064833263,2.989238740534077 -851,23.0,23.0,5.311836702613133,-9.188263657315172 -851,23.0,24.0,-1.3098929438742493,2.287622053705056 -851,24.0,23.0,-1.3098929438742493,2.287622053705056 -851,24.0,24.0,4.495715080321987,-7.864978761969621 -851,24.0,25.0,-1.2165301194494855,1.8171440463475024 -851,24.0,26.0,-1.9692920169982515,3.760212661917064 -851,25.0,24.0,-1.2165301194494855,1.8171440463475024 -851,25.0,25.0,1.2165301194494855,-1.8171440463475024 -851,26.0,24.0,-1.9692920169982515,3.760212661917064 -851,26.0,26.0,2.9648255679509314,-8.166471027527404 -851,26.0,27.0,0.0,2.608731947574922 -851,26.0,28.0,-0.99553355095268,1.881005840357816 -851,27.0,5.0,-4.362844058012917,15.463571542897856 -851,27.0,7.0,-1.4439790613954469,4.540814658476248 -851,27.0,26.0,0.0,2.608731947574922 -851,27.0,27.0,5.806823119408364,-22.67145722159613 -851,28.0,26.0,-0.99553355095268,1.881005840357816 -851,28.0,28.0,1.9075867579849564,-3.604364401207048 -851,28.0,29.0,-0.9120532070322764,1.7233585608492326 -851,29.0,28.0,-0.9120532070322764,1.7233585608492326 -851,29.0,29.0,0.9120532070322764,-1.7233585608492326 -852,0.0,0.0,6.765516048652632,-21.23160167089863 -852,0.0,1.0,-5.224646179885656,15.646726840803398 -852,0.0,2.0,-1.5408698687669766,5.631674830095234 -852,1.0,0.0,-5.224646179885656,15.646726840803398 -852,1.0,1.0,9.75228216552403,-30.648662892676068 -852,1.0,3.0,-1.7055303166990268,5.1973792282565086 -852,1.0,4.0,-1.1359607881738778,4.772479328281356 -852,1.0,5.0,-1.6861448807654689,5.116477495334806 -852,2.0,0.0,-1.5408698687669766,5.631674830095234 -852,2.0,2.0,9.736318911079088,-29.13794745915803 -852,2.0,3.0,-8.19544904231211,23.5308726290628 -852,3.0,1.0,-1.7055303166990268,5.1973792282565086 -852,3.0,2.0,-8.19544904231211,23.5308726290628 -852,3.0,3.0,16.314103089185693,-55.509410535254254 -852,3.0,5.0,-6.413123730174556,22.31120356548123 -852,3.0,11.0,0.0,4.191255364806866 -852,4.0,1.0,-1.1359607881738778,4.772479328281356 -852,4.0,4.0,4.089980824135861,-12.190647245055052 -852,4.0,6.0,-2.954020035961983,7.449267916773697 -852,5.0,1.0,-1.6861448807654689,5.116477495334806 -852,5.0,3.0,-6.413123730174556,22.31120356548123 -852,5.0,5.0,22.341631269034565,-82.8291478657789 -852,5.0,6.0,-3.590210423980992,11.02611441072814 -852,5.0,7.0,-6.289308176100628,22.0125786163522 -852,5.0,8.0,0.0,4.915840805411357 -852,5.0,9.0,0.0,1.8561002591115965 -852,5.0,27.0,-4.362844058012917,15.463571542897856 -852,6.0,4.0,-2.954020035961983,7.449267916773697 -852,6.0,5.0,-3.590210423980992,11.02611441072814 -852,6.0,6.0,6.544230459942975,-18.45668232750184 -852,7.0,5.0,-6.289308176100628,22.0125786163522 -852,7.0,7.0,7.733287237496075,-26.527493274828448 -852,7.0,27.0,-1.4439790613954469,4.540814658476248 -852,8.0,5.0,0.0,4.915840805411357 -852,8.0,8.0,0.0,-18.706293706293707 -852,8.0,9.0,0.0,9.090909090909092 -852,8.0,10.0,0.0,4.807692307692308 -852,9.0,5.0,0.0,1.8561002591115965 -852,9.0,8.0,0.0,9.090909090909092 -852,9.0,9.0,13.462042814524237,-41.3837606675224 -852,9.0,16.0,-3.956039125715353,10.317447719844054 -852,9.0,19.0,-1.7848303152666305,3.98535828943083 -852,9.0,20.0,-5.101853820159654,10.98071411292983 -852,9.0,21.0,-2.619319553382597,5.400770303329455 -852,10.0,8.0,0.0,4.807692307692308 -852,10.0,10.0,0.0,-4.807692307692308 -852,11.0,3.0,0.0,4.191255364806866 -852,11.0,11.0,6.573961583776156,-24.424167659260668 -852,11.0,12.0,0.0,7.142857142857143 -852,11.0,13.0,-1.5265676088395577,3.1734252729654173 -852,11.0,14.0,-3.0953961826564296,6.097275864326261 -852,11.0,15.0,-1.9519977922801688,4.104359379111847 -852,12.0,11.0,0.0,7.142857142857143 -852,12.0,12.0,0.0,-7.142857142857143 -852,13.0,11.0,-1.5265676088395577,3.1734252729654173 -852,13.0,13.0,4.01751987283902,-5.424299332335067 -852,13.0,14.0,-2.4909522639994623,2.250874059369649 -852,14.0,11.0,-3.0953961826564296,6.097275864326261 -852,14.0,13.0,-2.4909522639994623,2.250874059369649 -852,14.0,14.0,9.365498545964757,-16.01163373210796 -852,14.0,17.0,-1.8108011504072024,3.687418931630696 -852,14.0,22.0,-1.9683489489016612,3.976064876781356 -852,15.0,11.0,-1.9519977922801688,4.104359379111847 -852,15.0,15.0,3.271064728633931,-8.94513365126506 -852,15.0,16.0,-1.3190669363537617,4.8407742721532125 -852,16.0,9.0,-3.956039125715353,10.317447719844054 -852,16.0,15.0,-1.3190669363537617,4.8407742721532125 -852,16.0,16.0,5.275106062069114,-15.158221991997266 -852,17.0,14.0,-1.8108011504072024,3.687418931630696 -852,17.0,17.0,4.886487584415919,-9.906177730909668 -852,17.0,18.0,-3.0756864340087167,6.218758799278971 -852,18.0,17.0,-3.0756864340087167,6.218758799278971 -852,18.0,18.0,8.958039375185187,-17.98346468163191 -852,18.0,19.0,-5.88235294117647,11.76470588235294 -852,19.0,9.0,-1.7848303152666305,3.98535828943083 -852,19.0,18.0,-5.88235294117647,11.76470588235294 -852,19.0,19.0,7.6671832564431,-15.75006417178377 -852,20.0,9.0,-5.101853820159654,10.98071411292983 -852,20.0,20.0,21.876495189895888,-45.10843276170355 -852,20.0,21.0,-16.774641369736234,34.127718648773715 -852,21.0,9.0,-2.619319553382597,5.400770303329455 -852,21.0,20.0,-16.774641369736234,34.127718648773715 -852,21.0,21.0,21.93449907537439,-43.48289181517921 -852,21.0,23.0,-2.5405381522555563,3.95440286307604 -852,22.0,14.0,-1.9683489489016612,3.976064876781356 -852,22.0,22.0,3.429754555384988,-6.965303617315433 -852,22.0,23.0,-1.4614056064833263,2.989238740534077 -852,23.0,21.0,-2.5405381522555563,3.95440286307604 -852,23.0,22.0,-1.4614056064833263,2.989238740534077 -852,23.0,23.0,5.311836702613133,-9.188263657315172 -852,23.0,24.0,-1.3098929438742493,2.287622053705056 -852,24.0,23.0,-1.3098929438742493,2.287622053705056 -852,24.0,24.0,4.495715080321987,-7.864978761969621 -852,24.0,25.0,-1.2165301194494855,1.8171440463475024 -852,24.0,26.0,-1.9692920169982515,3.760212661917064 -852,25.0,24.0,-1.2165301194494855,1.8171440463475024 -852,25.0,25.0,1.2165301194494855,-1.8171440463475024 -852,26.0,24.0,-1.9692920169982515,3.760212661917064 -852,26.0,26.0,3.652281470778589,-9.46044252232512 -852,26.0,27.0,0.0,2.608731947574922 -852,26.0,28.0,-0.99553355095268,1.881005840357816 -852,26.0,29.0,-0.6874559028276572,1.293971494797717 -852,27.0,5.0,-4.362844058012917,15.463571542897856 -852,27.0,7.0,-1.4439790613954469,4.540814658476248 -852,27.0,26.0,0.0,2.608731947574922 -852,27.0,27.0,5.806823119408364,-22.67145722159613 -852,28.0,26.0,-0.99553355095268,1.881005840357816 -852,28.0,28.0,1.9075867579849564,-3.604364401207048 -852,28.0,29.0,-0.9120532070322764,1.7233585608492326 -852,29.0,26.0,-0.6874559028276572,1.293971494797717 -852,29.0,28.0,-0.9120532070322764,1.7233585608492326 -852,29.0,29.0,1.5995091098599337,-3.0173300556469496 -853,0.0,0.0,6.765516048652632,-21.23160167089863 -853,0.0,1.0,-5.224646179885656,15.646726840803398 -853,0.0,2.0,-1.5408698687669766,5.631674830095234 -853,1.0,0.0,-5.224646179885656,15.646726840803398 -853,1.0,1.0,9.75228216552403,-30.648662892676068 -853,1.0,3.0,-1.7055303166990268,5.1973792282565086 -853,1.0,4.0,-1.1359607881738778,4.772479328281356 -853,1.0,5.0,-1.6861448807654689,5.116477495334806 -853,2.0,0.0,-1.5408698687669766,5.631674830095234 -853,2.0,2.0,9.736318911079088,-29.13794745915803 -853,2.0,3.0,-8.19544904231211,23.5308726290628 -853,3.0,1.0,-1.7055303166990268,5.1973792282565086 -853,3.0,2.0,-8.19544904231211,23.5308726290628 -853,3.0,3.0,16.314103089185693,-55.509410535254254 -853,3.0,5.0,-6.413123730174556,22.31120356548123 -853,3.0,11.0,0.0,4.191255364806866 -853,4.0,1.0,-1.1359607881738778,4.772479328281356 -853,4.0,4.0,4.089980824135861,-12.190647245055052 -853,4.0,6.0,-2.954020035961983,7.449267916773697 -853,5.0,1.0,-1.6861448807654689,5.116477495334806 -853,5.0,3.0,-6.413123730174556,22.31120356548123 -853,5.0,5.0,22.341631269034565,-82.8291478657789 -853,5.0,6.0,-3.590210423980992,11.02611441072814 -853,5.0,7.0,-6.289308176100628,22.0125786163522 -853,5.0,8.0,0.0,4.915840805411357 -853,5.0,9.0,0.0,1.8561002591115965 -853,5.0,27.0,-4.362844058012917,15.463571542897856 -853,6.0,4.0,-2.954020035961983,7.449267916773697 -853,6.0,5.0,-3.590210423980992,11.02611441072814 -853,6.0,6.0,6.544230459942975,-18.45668232750184 -853,7.0,5.0,-6.289308176100628,22.0125786163522 -853,7.0,7.0,7.733287237496075,-26.527493274828448 -853,7.0,27.0,-1.4439790613954469,4.540814658476248 -853,8.0,5.0,0.0,4.915840805411357 -853,8.0,8.0,0.0,-18.706293706293707 -853,8.0,9.0,0.0,9.090909090909092 -853,8.0,10.0,0.0,4.807692307692308 -853,9.0,5.0,0.0,1.8561002591115965 -853,9.0,8.0,0.0,9.090909090909092 -853,9.0,9.0,13.462042814524237,-41.3837606675224 -853,9.0,16.0,-3.956039125715353,10.317447719844054 -853,9.0,19.0,-1.7848303152666305,3.98535828943083 -853,9.0,20.0,-5.101853820159654,10.98071411292983 -853,9.0,21.0,-2.619319553382597,5.400770303329455 -853,10.0,8.0,0.0,4.807692307692308 -853,10.0,10.0,0.0,-4.807692307692308 -853,11.0,3.0,0.0,4.191255364806866 -853,11.0,11.0,6.573961583776156,-24.424167659260668 -853,11.0,12.0,0.0,7.142857142857143 -853,11.0,13.0,-1.5265676088395577,3.1734252729654173 -853,11.0,14.0,-3.0953961826564296,6.097275864326261 -853,11.0,15.0,-1.9519977922801688,4.104359379111847 -853,12.0,11.0,0.0,7.142857142857143 -853,12.0,12.0,0.0,-7.142857142857143 -853,13.0,11.0,-1.5265676088395577,3.1734252729654173 -853,13.0,13.0,4.01751987283902,-5.424299332335067 -853,13.0,14.0,-2.4909522639994623,2.250874059369649 -853,14.0,11.0,-3.0953961826564296,6.097275864326261 -853,14.0,13.0,-2.4909522639994623,2.250874059369649 -853,14.0,14.0,9.365498545964757,-16.01163373210796 -853,14.0,17.0,-1.8108011504072024,3.687418931630696 -853,14.0,22.0,-1.9683489489016612,3.976064876781356 -853,15.0,11.0,-1.9519977922801688,4.104359379111847 -853,15.0,15.0,3.271064728633931,-8.94513365126506 -853,15.0,16.0,-1.3190669363537617,4.8407742721532125 -853,16.0,9.0,-3.956039125715353,10.317447719844054 -853,16.0,15.0,-1.3190669363537617,4.8407742721532125 -853,16.0,16.0,5.275106062069114,-15.158221991997266 -853,17.0,14.0,-1.8108011504072024,3.687418931630696 -853,17.0,17.0,1.8108011504072024,-3.687418931630696 -853,18.0,18.0,5.88235294117647,-11.76470588235294 -853,18.0,19.0,-5.88235294117647,11.76470588235294 -853,19.0,9.0,-1.7848303152666305,3.98535828943083 -853,19.0,18.0,-5.88235294117647,11.76470588235294 -853,19.0,19.0,7.6671832564431,-15.75006417178377 -853,20.0,9.0,-5.101853820159654,10.98071411292983 -853,20.0,20.0,21.876495189895888,-45.10843276170355 -853,20.0,21.0,-16.774641369736234,34.127718648773715 -853,21.0,9.0,-2.619319553382597,5.400770303329455 -853,21.0,20.0,-16.774641369736234,34.127718648773715 -853,21.0,21.0,21.93449907537439,-43.48289181517921 -853,21.0,23.0,-2.5405381522555563,3.95440286307604 -853,22.0,14.0,-1.9683489489016612,3.976064876781356 -853,22.0,22.0,1.9683489489016612,-3.976064876781356 -853,23.0,21.0,-2.5405381522555563,3.95440286307604 -853,23.0,23.0,3.850431096129806,-6.199024916781094 -853,23.0,24.0,-1.3098929438742493,2.287622053705056 -853,24.0,23.0,-1.3098929438742493,2.287622053705056 -853,24.0,24.0,4.495715080321987,-7.864978761969621 -853,24.0,25.0,-1.2165301194494855,1.8171440463475024 -853,24.0,26.0,-1.9692920169982515,3.760212661917064 -853,25.0,24.0,-1.2165301194494855,1.8171440463475024 -853,25.0,25.0,1.2165301194494855,-1.8171440463475024 -853,26.0,24.0,-1.9692920169982515,3.760212661917064 -853,26.0,26.0,3.652281470778589,-9.46044252232512 -853,26.0,27.0,0.0,2.608731947574922 -853,26.0,28.0,-0.99553355095268,1.881005840357816 -853,26.0,29.0,-0.6874559028276572,1.293971494797717 -853,27.0,5.0,-4.362844058012917,15.463571542897856 -853,27.0,7.0,-1.4439790613954469,4.540814658476248 -853,27.0,26.0,0.0,2.608731947574922 -853,27.0,27.0,5.806823119408364,-22.67145722159613 -853,28.0,26.0,-0.99553355095268,1.881005840357816 -853,28.0,28.0,1.9075867579849564,-3.604364401207048 -853,28.0,29.0,-0.9120532070322764,1.7233585608492326 -853,29.0,26.0,-0.6874559028276572,1.293971494797717 -853,29.0,28.0,-0.9120532070322764,1.7233585608492326 -853,29.0,29.0,1.5995091098599337,-3.0173300556469496 -854,0.0,0.0,6.765516048652632,-21.23160167089863 -854,0.0,1.0,-5.224646179885656,15.646726840803398 -854,0.0,2.0,-1.5408698687669766,5.631674830095234 -854,1.0,0.0,-5.224646179885656,15.646726840803398 -854,1.0,1.0,9.75228216552403,-30.648662892676068 -854,1.0,3.0,-1.7055303166990268,5.1973792282565086 -854,1.0,4.0,-1.1359607881738778,4.772479328281356 -854,1.0,5.0,-1.6861448807654689,5.116477495334806 -854,2.0,0.0,-1.5408698687669766,5.631674830095234 -854,2.0,2.0,9.736318911079088,-29.13794745915803 -854,2.0,3.0,-8.19544904231211,23.5308726290628 -854,3.0,1.0,-1.7055303166990268,5.1973792282565086 -854,3.0,2.0,-8.19544904231211,23.5308726290628 -854,3.0,3.0,16.314103089185693,-55.509410535254254 -854,3.0,5.0,-6.413123730174556,22.31120356548123 -854,3.0,11.0,0.0,4.191255364806866 -854,4.0,1.0,-1.1359607881738778,4.772479328281356 -854,4.0,4.0,4.089980824135861,-12.190647245055052 -854,4.0,6.0,-2.954020035961983,7.449267916773697 -854,5.0,1.0,-1.6861448807654689,5.116477495334806 -854,5.0,3.0,-6.413123730174556,22.31120356548123 -854,5.0,5.0,22.341631269034565,-82.8291478657789 -854,5.0,6.0,-3.590210423980992,11.02611441072814 -854,5.0,7.0,-6.289308176100628,22.0125786163522 -854,5.0,8.0,0.0,4.915840805411357 -854,5.0,9.0,0.0,1.8561002591115965 -854,5.0,27.0,-4.362844058012917,15.463571542897856 -854,6.0,4.0,-2.954020035961983,7.449267916773697 -854,6.0,5.0,-3.590210423980992,11.02611441072814 -854,6.0,6.0,6.544230459942975,-18.45668232750184 -854,7.0,5.0,-6.289308176100628,22.0125786163522 -854,7.0,7.0,7.733287237496075,-26.527493274828448 -854,7.0,27.0,-1.4439790613954469,4.540814658476248 -854,8.0,5.0,0.0,4.915840805411357 -854,8.0,8.0,0.0,-18.706293706293707 -854,8.0,9.0,0.0,9.090909090909092 -854,8.0,10.0,0.0,4.807692307692308 -854,9.0,5.0,0.0,1.8561002591115965 -854,9.0,8.0,0.0,9.090909090909092 -854,9.0,9.0,13.462042814524237,-41.3837606675224 -854,9.0,16.0,-3.956039125715353,10.317447719844054 -854,9.0,19.0,-1.7848303152666305,3.98535828943083 -854,9.0,20.0,-5.101853820159654,10.98071411292983 -854,9.0,21.0,-2.619319553382597,5.400770303329455 -854,10.0,8.0,0.0,4.807692307692308 -854,10.0,10.0,0.0,-4.807692307692308 -854,11.0,3.0,0.0,4.191255364806866 -854,11.0,11.0,6.573961583776156,-24.424167659260668 -854,11.0,12.0,0.0,7.142857142857143 -854,11.0,13.0,-1.5265676088395577,3.1734252729654173 -854,11.0,14.0,-3.0953961826564296,6.097275864326261 -854,11.0,15.0,-1.9519977922801688,4.104359379111847 -854,12.0,11.0,0.0,7.142857142857143 -854,12.0,12.0,0.0,-7.142857142857143 -854,13.0,11.0,-1.5265676088395577,3.1734252729654173 -854,13.0,13.0,4.01751987283902,-5.424299332335067 -854,13.0,14.0,-2.4909522639994623,2.250874059369649 -854,14.0,11.0,-3.0953961826564296,6.097275864326261 -854,14.0,13.0,-2.4909522639994623,2.250874059369649 -854,14.0,14.0,9.365498545964757,-16.01163373210796 -854,14.0,17.0,-1.8108011504072024,3.687418931630696 -854,14.0,22.0,-1.9683489489016612,3.976064876781356 -854,15.0,11.0,-1.9519977922801688,4.104359379111847 -854,15.0,15.0,3.271064728633931,-8.94513365126506 -854,15.0,16.0,-1.3190669363537617,4.8407742721532125 -854,16.0,9.0,-3.956039125715353,10.317447719844054 -854,16.0,15.0,-1.3190669363537617,4.8407742721532125 -854,16.0,16.0,5.275106062069114,-15.158221991997266 -854,17.0,14.0,-1.8108011504072024,3.687418931630696 -854,17.0,17.0,4.886487584415919,-9.906177730909668 -854,17.0,18.0,-3.0756864340087167,6.218758799278971 -854,18.0,17.0,-3.0756864340087167,6.218758799278971 -854,18.0,18.0,8.958039375185187,-17.98346468163191 -854,18.0,19.0,-5.88235294117647,11.76470588235294 -854,19.0,9.0,-1.7848303152666305,3.98535828943083 -854,19.0,18.0,-5.88235294117647,11.76470588235294 -854,19.0,19.0,7.6671832564431,-15.75006417178377 -854,20.0,9.0,-5.101853820159654,10.98071411292983 -854,20.0,20.0,21.876495189895888,-45.10843276170355 -854,20.0,21.0,-16.774641369736234,34.127718648773715 -854,21.0,9.0,-2.619319553382597,5.400770303329455 -854,21.0,20.0,-16.774641369736234,34.127718648773715 -854,21.0,21.0,21.93449907537439,-43.48289181517921 -854,21.0,23.0,-2.5405381522555563,3.95440286307604 -854,22.0,14.0,-1.9683489489016612,3.976064876781356 -854,22.0,22.0,3.429754555384988,-6.965303617315433 -854,22.0,23.0,-1.4614056064833263,2.989238740534077 -854,23.0,21.0,-2.5405381522555563,3.95440286307604 -854,23.0,22.0,-1.4614056064833263,2.989238740534077 -854,23.0,23.0,5.311836702613133,-9.188263657315172 -854,23.0,24.0,-1.3098929438742493,2.287622053705056 -854,24.0,23.0,-1.3098929438742493,2.287622053705056 -854,24.0,24.0,4.495715080321987,-7.864978761969621 -854,24.0,25.0,-1.2165301194494855,1.8171440463475024 -854,24.0,26.0,-1.9692920169982515,3.760212661917064 -854,25.0,24.0,-1.2165301194494855,1.8171440463475024 -854,25.0,25.0,1.2165301194494855,-1.8171440463475024 -854,26.0,24.0,-1.9692920169982515,3.760212661917064 -854,26.0,26.0,3.652281470778589,-9.46044252232512 -854,26.0,27.0,0.0,2.608731947574922 -854,26.0,28.0,-0.99553355095268,1.881005840357816 -854,26.0,29.0,-0.6874559028276572,1.293971494797717 -854,27.0,5.0,-4.362844058012917,15.463571542897856 -854,27.0,7.0,-1.4439790613954469,4.540814658476248 -854,27.0,26.0,0.0,2.608731947574922 -854,27.0,27.0,5.806823119408364,-22.67145722159613 -854,28.0,26.0,-0.99553355095268,1.881005840357816 -854,28.0,28.0,1.9075867579849564,-3.604364401207048 -854,28.0,29.0,-0.9120532070322764,1.7233585608492326 -854,29.0,26.0,-0.6874559028276572,1.293971494797717 -854,29.0,28.0,-0.9120532070322764,1.7233585608492326 -854,29.0,29.0,1.5995091098599337,-3.0173300556469496 -855,0.0,0.0,6.765516048652632,-21.23160167089863 -855,0.0,1.0,-5.224646179885656,15.646726840803398 -855,0.0,2.0,-1.5408698687669766,5.631674830095234 -855,1.0,0.0,-5.224646179885656,15.646726840803398 -855,1.0,1.0,9.75228216552403,-30.648662892676068 -855,1.0,3.0,-1.7055303166990268,5.1973792282565086 -855,1.0,4.0,-1.1359607881738778,4.772479328281356 -855,1.0,5.0,-1.6861448807654689,5.116477495334806 -855,2.0,0.0,-1.5408698687669766,5.631674830095234 -855,2.0,2.0,9.736318911079088,-29.13794745915803 -855,2.0,3.0,-8.19544904231211,23.5308726290628 -855,3.0,1.0,-1.7055303166990268,5.1973792282565086 -855,3.0,2.0,-8.19544904231211,23.5308726290628 -855,3.0,3.0,16.314103089185693,-55.509410535254254 -855,3.0,5.0,-6.413123730174556,22.31120356548123 -855,3.0,11.0,0.0,4.191255364806866 -855,4.0,1.0,-1.1359607881738778,4.772479328281356 -855,4.0,4.0,4.089980824135861,-12.190647245055052 -855,4.0,6.0,-2.954020035961983,7.449267916773697 -855,5.0,1.0,-1.6861448807654689,5.116477495334806 -855,5.0,3.0,-6.413123730174556,22.31120356548123 -855,5.0,5.0,16.052323092933932,-60.8210692494267 -855,5.0,6.0,-3.590210423980992,11.02611441072814 -855,5.0,8.0,0.0,4.915840805411357 -855,5.0,9.0,0.0,1.8561002591115965 -855,5.0,27.0,-4.362844058012917,15.463571542897856 -855,6.0,4.0,-2.954020035961983,7.449267916773697 -855,6.0,5.0,-3.590210423980992,11.02611441072814 -855,6.0,6.0,6.544230459942975,-18.45668232750184 -855,7.0,7.0,1.4439790613954469,-4.519414658476248 -855,7.0,27.0,-1.4439790613954469,4.540814658476248 -855,8.0,5.0,0.0,4.915840805411357 -855,8.0,8.0,0.0,-18.706293706293707 -855,8.0,9.0,0.0,9.090909090909092 -855,8.0,10.0,0.0,4.807692307692308 -855,9.0,5.0,0.0,1.8561002591115965 -855,9.0,8.0,0.0,9.090909090909092 -855,9.0,9.0,13.462042814524237,-41.3837606675224 -855,9.0,16.0,-3.956039125715353,10.317447719844054 -855,9.0,19.0,-1.7848303152666305,3.98535828943083 -855,9.0,20.0,-5.101853820159654,10.98071411292983 -855,9.0,21.0,-2.619319553382597,5.400770303329455 -855,10.0,8.0,0.0,4.807692307692308 -855,10.0,10.0,0.0,-4.807692307692308 -855,11.0,3.0,0.0,4.191255364806866 -855,11.0,11.0,6.573961583776156,-24.424167659260668 -855,11.0,12.0,0.0,7.142857142857143 -855,11.0,13.0,-1.5265676088395577,3.1734252729654173 -855,11.0,14.0,-3.0953961826564296,6.097275864326261 -855,11.0,15.0,-1.9519977922801688,4.104359379111847 -855,12.0,11.0,0.0,7.142857142857143 -855,12.0,12.0,0.0,-7.142857142857143 -855,13.0,11.0,-1.5265676088395577,3.1734252729654173 -855,13.0,13.0,4.01751987283902,-5.424299332335067 -855,13.0,14.0,-2.4909522639994623,2.250874059369649 -855,14.0,11.0,-3.0953961826564296,6.097275864326261 -855,14.0,13.0,-2.4909522639994623,2.250874059369649 -855,14.0,14.0,9.365498545964757,-16.01163373210796 -855,14.0,17.0,-1.8108011504072024,3.687418931630696 -855,14.0,22.0,-1.9683489489016612,3.976064876781356 -855,15.0,11.0,-1.9519977922801688,4.104359379111847 -855,15.0,15.0,3.271064728633931,-8.94513365126506 -855,15.0,16.0,-1.3190669363537617,4.8407742721532125 -855,16.0,9.0,-3.956039125715353,10.317447719844054 -855,16.0,15.0,-1.3190669363537617,4.8407742721532125 -855,16.0,16.0,5.275106062069114,-15.158221991997266 -855,17.0,14.0,-1.8108011504072024,3.687418931630696 -855,17.0,17.0,4.886487584415919,-9.906177730909668 -855,17.0,18.0,-3.0756864340087167,6.218758799278971 -855,18.0,17.0,-3.0756864340087167,6.218758799278971 -855,18.0,18.0,8.958039375185187,-17.98346468163191 -855,18.0,19.0,-5.88235294117647,11.76470588235294 -855,19.0,9.0,-1.7848303152666305,3.98535828943083 -855,19.0,18.0,-5.88235294117647,11.76470588235294 -855,19.0,19.0,7.6671832564431,-15.75006417178377 -855,20.0,9.0,-5.101853820159654,10.98071411292983 -855,20.0,20.0,21.876495189895888,-45.10843276170355 -855,20.0,21.0,-16.774641369736234,34.127718648773715 -855,21.0,9.0,-2.619319553382597,5.400770303329455 -855,21.0,20.0,-16.774641369736234,34.127718648773715 -855,21.0,21.0,21.93449907537439,-43.48289181517921 -855,21.0,23.0,-2.5405381522555563,3.95440286307604 -855,22.0,14.0,-1.9683489489016612,3.976064876781356 -855,22.0,22.0,3.429754555384988,-6.965303617315433 -855,22.0,23.0,-1.4614056064833263,2.989238740534077 -855,23.0,21.0,-2.5405381522555563,3.95440286307604 -855,23.0,22.0,-1.4614056064833263,2.989238740534077 -855,23.0,23.0,5.311836702613133,-9.188263657315172 -855,23.0,24.0,-1.3098929438742493,2.287622053705056 -855,24.0,23.0,-1.3098929438742493,2.287622053705056 -855,24.0,24.0,4.495715080321987,-7.864978761969621 -855,24.0,25.0,-1.2165301194494855,1.8171440463475024 -855,24.0,26.0,-1.9692920169982515,3.760212661917064 -855,25.0,24.0,-1.2165301194494855,1.8171440463475024 -855,25.0,25.0,1.2165301194494855,-1.8171440463475024 -855,26.0,24.0,-1.9692920169982515,3.760212661917064 -855,26.0,26.0,3.652281470778589,-9.46044252232512 -855,26.0,27.0,0.0,2.608731947574922 -855,26.0,28.0,-0.99553355095268,1.881005840357816 -855,26.0,29.0,-0.6874559028276572,1.293971494797717 -855,27.0,5.0,-4.362844058012917,15.463571542897856 -855,27.0,7.0,-1.4439790613954469,4.540814658476248 -855,27.0,26.0,0.0,2.608731947574922 -855,27.0,27.0,5.806823119408364,-22.67145722159613 -855,28.0,26.0,-0.99553355095268,1.881005840357816 -855,28.0,28.0,1.9075867579849564,-3.604364401207048 -855,28.0,29.0,-0.9120532070322764,1.7233585608492326 -855,29.0,26.0,-0.6874559028276572,1.293971494797717 -855,29.0,28.0,-0.9120532070322764,1.7233585608492326 -855,29.0,29.0,1.5995091098599337,-3.0173300556469496 -856,0.0,0.0,6.765516048652632,-21.23160167089863 -856,0.0,1.0,-5.224646179885656,15.646726840803398 -856,0.0,2.0,-1.5408698687669766,5.631674830095234 -856,1.0,0.0,-5.224646179885656,15.646726840803398 -856,1.0,1.0,9.75228216552403,-30.648662892676068 -856,1.0,3.0,-1.7055303166990268,5.1973792282565086 -856,1.0,4.0,-1.1359607881738778,4.772479328281356 -856,1.0,5.0,-1.6861448807654689,5.116477495334806 -856,2.0,0.0,-1.5408698687669766,5.631674830095234 -856,2.0,2.0,9.736318911079088,-29.13794745915803 -856,2.0,3.0,-8.19544904231211,23.5308726290628 -856,3.0,1.0,-1.7055303166990268,5.1973792282565086 -856,3.0,2.0,-8.19544904231211,23.5308726290628 -856,3.0,3.0,16.314103089185693,-55.509410535254254 -856,3.0,5.0,-6.413123730174556,22.31120356548123 -856,3.0,11.0,0.0,4.191255364806866 -856,4.0,1.0,-1.1359607881738778,4.772479328281356 -856,4.0,4.0,4.089980824135861,-12.190647245055052 -856,4.0,6.0,-2.954020035961983,7.449267916773697 -856,5.0,1.0,-1.6861448807654689,5.116477495334806 -856,5.0,3.0,-6.413123730174556,22.31120356548123 -856,5.0,5.0,22.341631269034565,-82.8291478657789 -856,5.0,6.0,-3.590210423980992,11.02611441072814 -856,5.0,7.0,-6.289308176100628,22.0125786163522 -856,5.0,8.0,0.0,4.915840805411357 -856,5.0,9.0,0.0,1.8561002591115965 -856,5.0,27.0,-4.362844058012917,15.463571542897856 -856,6.0,4.0,-2.954020035961983,7.449267916773697 -856,6.0,5.0,-3.590210423980992,11.02611441072814 -856,6.0,6.0,6.544230459942975,-18.45668232750184 -856,7.0,5.0,-6.289308176100628,22.0125786163522 -856,7.0,7.0,7.733287237496075,-26.527493274828448 -856,7.0,27.0,-1.4439790613954469,4.540814658476248 -856,8.0,5.0,0.0,4.915840805411357 -856,8.0,8.0,0.0,-18.706293706293707 -856,8.0,9.0,0.0,9.090909090909092 -856,8.0,10.0,0.0,4.807692307692308 -856,9.0,5.0,0.0,1.8561002591115965 -856,9.0,8.0,0.0,9.090909090909092 -856,9.0,9.0,13.462042814524237,-41.3837606675224 -856,9.0,16.0,-3.956039125715353,10.317447719844054 -856,9.0,19.0,-1.7848303152666305,3.98535828943083 -856,9.0,20.0,-5.101853820159654,10.98071411292983 -856,9.0,21.0,-2.619319553382597,5.400770303329455 -856,10.0,8.0,0.0,4.807692307692308 -856,10.0,10.0,0.0,-4.807692307692308 -856,11.0,3.0,0.0,4.191255364806866 -856,11.0,11.0,6.573961583776156,-24.424167659260668 -856,11.0,12.0,0.0,7.142857142857143 -856,11.0,13.0,-1.5265676088395577,3.1734252729654173 -856,11.0,14.0,-3.0953961826564296,6.097275864326261 -856,11.0,15.0,-1.9519977922801688,4.104359379111847 -856,12.0,11.0,0.0,7.142857142857143 -856,12.0,12.0,0.0,-7.142857142857143 -856,13.0,11.0,-1.5265676088395577,3.1734252729654173 -856,13.0,13.0,4.01751987283902,-5.424299332335067 -856,13.0,14.0,-2.4909522639994623,2.250874059369649 -856,14.0,11.0,-3.0953961826564296,6.097275864326261 -856,14.0,13.0,-2.4909522639994623,2.250874059369649 -856,14.0,14.0,9.365498545964757,-16.01163373210796 -856,14.0,17.0,-1.8108011504072024,3.687418931630696 -856,14.0,22.0,-1.9683489489016612,3.976064876781356 -856,15.0,11.0,-1.9519977922801688,4.104359379111847 -856,15.0,15.0,3.271064728633931,-8.94513365126506 -856,15.0,16.0,-1.3190669363537617,4.8407742721532125 -856,16.0,9.0,-3.956039125715353,10.317447719844054 -856,16.0,15.0,-1.3190669363537617,4.8407742721532125 -856,16.0,16.0,5.275106062069114,-15.158221991997266 -856,17.0,14.0,-1.8108011504072024,3.687418931630696 -856,17.0,17.0,4.886487584415919,-9.906177730909668 -856,17.0,18.0,-3.0756864340087167,6.218758799278971 -856,18.0,17.0,-3.0756864340087167,6.218758799278971 -856,18.0,18.0,8.958039375185187,-17.98346468163191 -856,18.0,19.0,-5.88235294117647,11.76470588235294 -856,19.0,9.0,-1.7848303152666305,3.98535828943083 -856,19.0,18.0,-5.88235294117647,11.76470588235294 -856,19.0,19.0,7.6671832564431,-15.75006417178377 -856,20.0,9.0,-5.101853820159654,10.98071411292983 -856,20.0,20.0,21.876495189895888,-45.10843276170355 -856,20.0,21.0,-16.774641369736234,34.127718648773715 -856,21.0,9.0,-2.619319553382597,5.400770303329455 -856,21.0,20.0,-16.774641369736234,34.127718648773715 -856,21.0,21.0,21.93449907537439,-43.48289181517921 -856,21.0,23.0,-2.5405381522555563,3.95440286307604 -856,22.0,14.0,-1.9683489489016612,3.976064876781356 -856,22.0,22.0,3.429754555384988,-6.965303617315433 -856,22.0,23.0,-1.4614056064833263,2.989238740534077 -856,23.0,21.0,-2.5405381522555563,3.95440286307604 -856,23.0,22.0,-1.4614056064833263,2.989238740534077 -856,23.0,23.0,5.311836702613133,-9.188263657315172 -856,23.0,24.0,-1.3098929438742493,2.287622053705056 -856,24.0,23.0,-1.3098929438742493,2.287622053705056 -856,24.0,24.0,4.495715080321987,-7.864978761969621 -856,24.0,25.0,-1.2165301194494855,1.8171440463475024 -856,24.0,26.0,-1.9692920169982515,3.760212661917064 -856,25.0,24.0,-1.2165301194494855,1.8171440463475024 -856,25.0,25.0,1.2165301194494855,-1.8171440463475024 -856,26.0,24.0,-1.9692920169982515,3.760212661917064 -856,26.0,26.0,3.652281470778589,-9.46044252232512 -856,26.0,27.0,0.0,2.608731947574922 -856,26.0,28.0,-0.99553355095268,1.881005840357816 -856,26.0,29.0,-0.6874559028276572,1.293971494797717 -856,27.0,5.0,-4.362844058012917,15.463571542897856 -856,27.0,7.0,-1.4439790613954469,4.540814658476248 -856,27.0,26.0,0.0,2.608731947574922 -856,27.0,27.0,5.806823119408364,-22.67145722159613 -856,28.0,26.0,-0.99553355095268,1.881005840357816 -856,28.0,28.0,1.9075867579849564,-3.604364401207048 -856,28.0,29.0,-0.9120532070322764,1.7233585608492326 -856,29.0,26.0,-0.6874559028276572,1.293971494797717 -856,29.0,28.0,-0.9120532070322764,1.7233585608492326 -856,29.0,29.0,1.5995091098599337,-3.0173300556469496 -857,0.0,0.0,6.765516048652632,-21.23160167089863 -857,0.0,1.0,-5.224646179885656,15.646726840803398 -857,0.0,2.0,-1.5408698687669766,5.631674830095234 -857,1.0,0.0,-5.224646179885656,15.646726840803398 -857,1.0,1.0,9.75228216552403,-30.648662892676068 -857,1.0,3.0,-1.7055303166990268,5.1973792282565086 -857,1.0,4.0,-1.1359607881738778,4.772479328281356 -857,1.0,5.0,-1.6861448807654689,5.116477495334806 -857,2.0,0.0,-1.5408698687669766,5.631674830095234 -857,2.0,2.0,9.736318911079088,-29.13794745915803 -857,2.0,3.0,-8.19544904231211,23.5308726290628 -857,3.0,1.0,-1.7055303166990268,5.1973792282565086 -857,3.0,2.0,-8.19544904231211,23.5308726290628 -857,3.0,3.0,16.314103089185693,-55.509410535254254 -857,3.0,5.0,-6.413123730174556,22.31120356548123 -857,3.0,11.0,0.0,4.191255364806866 -857,4.0,1.0,-1.1359607881738778,4.772479328281356 -857,4.0,4.0,4.089980824135861,-12.190647245055052 -857,4.0,6.0,-2.954020035961983,7.449267916773697 -857,5.0,1.0,-1.6861448807654689,5.116477495334806 -857,5.0,3.0,-6.413123730174556,22.31120356548123 -857,5.0,5.0,22.341631269034565,-82.8291478657789 -857,5.0,6.0,-3.590210423980992,11.02611441072814 -857,5.0,7.0,-6.289308176100628,22.0125786163522 -857,5.0,8.0,0.0,4.915840805411357 -857,5.0,9.0,0.0,1.8561002591115965 -857,5.0,27.0,-4.362844058012917,15.463571542897856 -857,6.0,4.0,-2.954020035961983,7.449267916773697 -857,6.0,5.0,-3.590210423980992,11.02611441072814 -857,6.0,6.0,6.544230459942975,-18.45668232750184 -857,7.0,5.0,-6.289308176100628,22.0125786163522 -857,7.0,7.0,7.733287237496075,-26.527493274828448 -857,7.0,27.0,-1.4439790613954469,4.540814658476248 -857,8.0,5.0,0.0,4.915840805411357 -857,8.0,8.0,0.0,-18.706293706293707 -857,8.0,9.0,0.0,9.090909090909092 -857,8.0,10.0,0.0,4.807692307692308 -857,9.0,5.0,0.0,1.8561002591115965 -857,9.0,8.0,0.0,9.090909090909092 -857,9.0,9.0,13.462042814524237,-41.3837606675224 -857,9.0,16.0,-3.956039125715353,10.317447719844054 -857,9.0,19.0,-1.7848303152666305,3.98535828943083 -857,9.0,20.0,-5.101853820159654,10.98071411292983 -857,9.0,21.0,-2.619319553382597,5.400770303329455 -857,10.0,8.0,0.0,4.807692307692308 -857,10.0,10.0,0.0,-4.807692307692308 -857,11.0,3.0,0.0,4.191255364806866 -857,11.0,11.0,5.047393974936599,-21.25074238629525 -857,11.0,12.0,0.0,7.142857142857143 -857,11.0,14.0,-3.0953961826564296,6.097275864326261 -857,11.0,15.0,-1.9519977922801688,4.104359379111847 -857,12.0,11.0,0.0,7.142857142857143 -857,12.0,12.0,0.0,-7.142857142857143 -857,13.0,13.0,2.4909522639994623,-2.250874059369649 -857,13.0,14.0,-2.4909522639994623,2.250874059369649 -857,14.0,11.0,-3.0953961826564296,6.097275864326261 -857,14.0,13.0,-2.4909522639994623,2.250874059369649 -857,14.0,14.0,9.365498545964757,-16.01163373210796 -857,14.0,17.0,-1.8108011504072024,3.687418931630696 -857,14.0,22.0,-1.9683489489016612,3.976064876781356 -857,15.0,11.0,-1.9519977922801688,4.104359379111847 -857,15.0,15.0,1.9519977922801688,-4.104359379111847 -857,16.0,9.0,-3.956039125715353,10.317447719844054 -857,16.0,16.0,3.956039125715353,-10.317447719844054 -857,17.0,14.0,-1.8108011504072024,3.687418931630696 -857,17.0,17.0,4.886487584415919,-9.906177730909668 -857,17.0,18.0,-3.0756864340087167,6.218758799278971 -857,18.0,17.0,-3.0756864340087167,6.218758799278971 -857,18.0,18.0,8.958039375185187,-17.98346468163191 -857,18.0,19.0,-5.88235294117647,11.76470588235294 -857,19.0,9.0,-1.7848303152666305,3.98535828943083 -857,19.0,18.0,-5.88235294117647,11.76470588235294 -857,19.0,19.0,7.6671832564431,-15.75006417178377 -857,20.0,9.0,-5.101853820159654,10.98071411292983 -857,20.0,20.0,21.876495189895888,-45.10843276170355 -857,20.0,21.0,-16.774641369736234,34.127718648773715 -857,21.0,9.0,-2.619319553382597,5.400770303329455 -857,21.0,20.0,-16.774641369736234,34.127718648773715 -857,21.0,21.0,21.93449907537439,-43.48289181517921 -857,21.0,23.0,-2.5405381522555563,3.95440286307604 -857,22.0,14.0,-1.9683489489016612,3.976064876781356 -857,22.0,22.0,3.429754555384988,-6.965303617315433 -857,22.0,23.0,-1.4614056064833263,2.989238740534077 -857,23.0,21.0,-2.5405381522555563,3.95440286307604 -857,23.0,22.0,-1.4614056064833263,2.989238740534077 -857,23.0,23.0,5.311836702613133,-9.188263657315172 -857,23.0,24.0,-1.3098929438742493,2.287622053705056 -857,24.0,23.0,-1.3098929438742493,2.287622053705056 -857,24.0,24.0,4.495715080321987,-7.864978761969621 -857,24.0,25.0,-1.2165301194494855,1.8171440463475024 -857,24.0,26.0,-1.9692920169982515,3.760212661917064 -857,25.0,24.0,-1.2165301194494855,1.8171440463475024 -857,25.0,25.0,1.2165301194494855,-1.8171440463475024 -857,26.0,24.0,-1.9692920169982515,3.760212661917064 -857,26.0,26.0,3.652281470778589,-9.46044252232512 -857,26.0,27.0,0.0,2.608731947574922 -857,26.0,28.0,-0.99553355095268,1.881005840357816 -857,26.0,29.0,-0.6874559028276572,1.293971494797717 -857,27.0,5.0,-4.362844058012917,15.463571542897856 -857,27.0,7.0,-1.4439790613954469,4.540814658476248 -857,27.0,26.0,0.0,2.608731947574922 -857,27.0,27.0,5.806823119408364,-22.67145722159613 -857,28.0,26.0,-0.99553355095268,1.881005840357816 -857,28.0,28.0,1.9075867579849564,-3.604364401207048 -857,28.0,29.0,-0.9120532070322764,1.7233585608492326 -857,29.0,26.0,-0.6874559028276572,1.293971494797717 -857,29.0,28.0,-0.9120532070322764,1.7233585608492326 -857,29.0,29.0,1.5995091098599337,-3.0173300556469496 -858,0.0,0.0,6.765516048652632,-21.23160167089863 -858,0.0,1.0,-5.224646179885656,15.646726840803398 -858,0.0,2.0,-1.5408698687669766,5.631674830095234 -858,1.0,0.0,-5.224646179885656,15.646726840803398 -858,1.0,1.0,9.75228216552403,-30.648662892676068 -858,1.0,3.0,-1.7055303166990268,5.1973792282565086 -858,1.0,4.0,-1.1359607881738778,4.772479328281356 -858,1.0,5.0,-1.6861448807654689,5.116477495334806 -858,2.0,0.0,-1.5408698687669766,5.631674830095234 -858,2.0,2.0,9.736318911079088,-29.13794745915803 -858,2.0,3.0,-8.19544904231211,23.5308726290628 -858,3.0,1.0,-1.7055303166990268,5.1973792282565086 -858,3.0,2.0,-8.19544904231211,23.5308726290628 -858,3.0,3.0,16.314103089185693,-55.509410535254254 -858,3.0,5.0,-6.413123730174556,22.31120356548123 -858,3.0,11.0,0.0,4.191255364806866 -858,4.0,1.0,-1.1359607881738778,4.772479328281356 -858,4.0,4.0,4.089980824135861,-12.190647245055052 -858,4.0,6.0,-2.954020035961983,7.449267916773697 -858,5.0,1.0,-1.6861448807654689,5.116477495334806 -858,5.0,3.0,-6.413123730174556,22.31120356548123 -858,5.0,5.0,22.341631269034565,-80.91366772221689 -858,5.0,6.0,-3.590210423980992,11.02611441072814 -858,5.0,7.0,-6.289308176100628,22.0125786163522 -858,5.0,8.0,0.0,4.915840805411357 -858,5.0,27.0,-4.362844058012917,15.463571542897856 -858,6.0,4.0,-2.954020035961983,7.449267916773697 -858,6.0,5.0,-3.590210423980992,11.02611441072814 -858,6.0,6.0,6.544230459942975,-18.45668232750184 -858,7.0,5.0,-6.289308176100628,22.0125786163522 -858,7.0,7.0,7.733287237496075,-26.527493274828448 -858,7.0,27.0,-1.4439790613954469,4.540814658476248 -858,8.0,5.0,0.0,4.915840805411357 -858,8.0,8.0,0.0,-18.706293706293707 -858,8.0,9.0,0.0,9.090909090909092 -858,8.0,10.0,0.0,4.807692307692308 -858,9.0,8.0,0.0,9.090909090909092 -858,9.0,9.0,13.462042814524237,-39.58519951644326 -858,9.0,16.0,-3.956039125715353,10.317447719844054 -858,9.0,19.0,-1.7848303152666305,3.98535828943083 -858,9.0,20.0,-5.101853820159654,10.98071411292983 -858,9.0,21.0,-2.619319553382597,5.400770303329455 -858,10.0,8.0,0.0,4.807692307692308 -858,10.0,10.0,0.0,-4.807692307692308 -858,11.0,3.0,0.0,4.191255364806866 -858,11.0,11.0,6.573961583776156,-24.424167659260668 -858,11.0,12.0,0.0,7.142857142857143 -858,11.0,13.0,-1.5265676088395577,3.1734252729654173 -858,11.0,14.0,-3.0953961826564296,6.097275864326261 -858,11.0,15.0,-1.9519977922801688,4.104359379111847 -858,12.0,11.0,0.0,7.142857142857143 -858,12.0,12.0,0.0,-7.142857142857143 -858,13.0,11.0,-1.5265676088395577,3.1734252729654173 -858,13.0,13.0,4.01751987283902,-5.424299332335067 -858,13.0,14.0,-2.4909522639994623,2.250874059369649 -858,14.0,11.0,-3.0953961826564296,6.097275864326261 -858,14.0,13.0,-2.4909522639994623,2.250874059369649 -858,14.0,14.0,9.365498545964757,-16.01163373210796 -858,14.0,17.0,-1.8108011504072024,3.687418931630696 -858,14.0,22.0,-1.9683489489016612,3.976064876781356 -858,15.0,11.0,-1.9519977922801688,4.104359379111847 -858,15.0,15.0,3.271064728633931,-8.94513365126506 -858,15.0,16.0,-1.3190669363537617,4.8407742721532125 -858,16.0,9.0,-3.956039125715353,10.317447719844054 -858,16.0,15.0,-1.3190669363537617,4.8407742721532125 -858,16.0,16.0,5.275106062069114,-15.158221991997266 -858,17.0,14.0,-1.8108011504072024,3.687418931630696 -858,17.0,17.0,4.886487584415919,-9.906177730909668 -858,17.0,18.0,-3.0756864340087167,6.218758799278971 -858,18.0,17.0,-3.0756864340087167,6.218758799278971 -858,18.0,18.0,8.958039375185187,-17.98346468163191 -858,18.0,19.0,-5.88235294117647,11.76470588235294 -858,19.0,9.0,-1.7848303152666305,3.98535828943083 -858,19.0,18.0,-5.88235294117647,11.76470588235294 -858,19.0,19.0,7.6671832564431,-15.75006417178377 -858,20.0,9.0,-5.101853820159654,10.98071411292983 -858,20.0,20.0,5.101853820159654,-10.98071411292983 -858,21.0,9.0,-2.619319553382597,5.400770303329455 -858,21.0,21.0,5.159857705638154,-9.355173166405494 -858,21.0,23.0,-2.5405381522555563,3.95440286307604 -858,22.0,14.0,-1.9683489489016612,3.976064876781356 -858,22.0,22.0,3.429754555384988,-6.965303617315433 -858,22.0,23.0,-1.4614056064833263,2.989238740534077 -858,23.0,21.0,-2.5405381522555563,3.95440286307604 -858,23.0,22.0,-1.4614056064833263,2.989238740534077 -858,23.0,23.0,5.311836702613133,-9.188263657315172 -858,23.0,24.0,-1.3098929438742493,2.287622053705056 -858,24.0,23.0,-1.3098929438742493,2.287622053705056 -858,24.0,24.0,4.495715080321987,-7.864978761969621 -858,24.0,25.0,-1.2165301194494855,1.8171440463475024 -858,24.0,26.0,-1.9692920169982515,3.760212661917064 -858,25.0,24.0,-1.2165301194494855,1.8171440463475024 -858,25.0,25.0,1.2165301194494855,-1.8171440463475024 -858,26.0,24.0,-1.9692920169982515,3.760212661917064 -858,26.0,26.0,3.652281470778589,-9.46044252232512 -858,26.0,27.0,0.0,2.608731947574922 -858,26.0,28.0,-0.99553355095268,1.881005840357816 -858,26.0,29.0,-0.6874559028276572,1.293971494797717 -858,27.0,5.0,-4.362844058012917,15.463571542897856 -858,27.0,7.0,-1.4439790613954469,4.540814658476248 -858,27.0,26.0,0.0,2.608731947574922 -858,27.0,27.0,5.806823119408364,-22.67145722159613 -858,28.0,26.0,-0.99553355095268,1.881005840357816 -858,28.0,28.0,0.99553355095268,-1.881005840357816 -858,29.0,26.0,-0.6874559028276572,1.293971494797717 -858,29.0,29.0,0.6874559028276572,-1.293971494797717 -859,0.0,0.0,6.765516048652632,-21.23160167089863 -859,0.0,1.0,-5.224646179885656,15.646726840803398 -859,0.0,2.0,-1.5408698687669766,5.631674830095234 -859,1.0,0.0,-5.224646179885656,15.646726840803398 -859,1.0,1.0,9.75228216552403,-30.648662892676068 -859,1.0,3.0,-1.7055303166990268,5.1973792282565086 -859,1.0,4.0,-1.1359607881738778,4.772479328281356 -859,1.0,5.0,-1.6861448807654689,5.116477495334806 -859,2.0,0.0,-1.5408698687669766,5.631674830095234 -859,2.0,2.0,9.736318911079088,-29.13794745915803 -859,2.0,3.0,-8.19544904231211,23.5308726290628 -859,3.0,1.0,-1.7055303166990268,5.1973792282565086 -859,3.0,2.0,-8.19544904231211,23.5308726290628 -859,3.0,3.0,16.314103089185693,-55.509410535254254 -859,3.0,5.0,-6.413123730174556,22.31120356548123 -859,3.0,11.0,0.0,4.191255364806866 -859,4.0,1.0,-1.1359607881738778,4.772479328281356 -859,4.0,4.0,4.089980824135861,-12.190647245055052 -859,4.0,6.0,-2.954020035961983,7.449267916773697 -859,5.0,1.0,-1.6861448807654689,5.116477495334806 -859,5.0,3.0,-6.413123730174556,22.31120356548123 -859,5.0,5.0,22.341631269034565,-82.8291478657789 -859,5.0,6.0,-3.590210423980992,11.02611441072814 -859,5.0,7.0,-6.289308176100628,22.0125786163522 -859,5.0,8.0,0.0,4.915840805411357 -859,5.0,9.0,0.0,1.8561002591115965 -859,5.0,27.0,-4.362844058012917,15.463571542897856 -859,6.0,4.0,-2.954020035961983,7.449267916773697 -859,6.0,5.0,-3.590210423980992,11.02611441072814 -859,6.0,6.0,6.544230459942975,-18.45668232750184 -859,7.0,5.0,-6.289308176100628,22.0125786163522 -859,7.0,7.0,7.733287237496075,-26.527493274828448 -859,7.0,27.0,-1.4439790613954469,4.540814658476248 -859,8.0,5.0,0.0,4.915840805411357 -859,8.0,8.0,0.0,-18.706293706293707 -859,8.0,9.0,0.0,9.090909090909092 -859,8.0,10.0,0.0,4.807692307692308 -859,9.0,5.0,0.0,1.8561002591115965 -859,9.0,8.0,0.0,9.090909090909092 -859,9.0,9.0,13.462042814524237,-41.3837606675224 -859,9.0,16.0,-3.956039125715353,10.317447719844054 -859,9.0,19.0,-1.7848303152666305,3.98535828943083 -859,9.0,20.0,-5.101853820159654,10.98071411292983 -859,9.0,21.0,-2.619319553382597,5.400770303329455 -859,10.0,8.0,0.0,4.807692307692308 -859,10.0,10.0,0.0,-4.807692307692308 -859,11.0,3.0,0.0,4.191255364806866 -859,11.0,11.0,6.573961583776156,-24.424167659260668 -859,11.0,12.0,0.0,7.142857142857143 -859,11.0,13.0,-1.5265676088395577,3.1734252729654173 -859,11.0,14.0,-3.0953961826564296,6.097275864326261 -859,11.0,15.0,-1.9519977922801688,4.104359379111847 -859,12.0,11.0,0.0,7.142857142857143 -859,12.0,12.0,0.0,-7.142857142857143 -859,13.0,11.0,-1.5265676088395577,3.1734252729654173 -859,13.0,13.0,4.01751987283902,-5.424299332335067 -859,13.0,14.0,-2.4909522639994623,2.250874059369649 -859,14.0,11.0,-3.0953961826564296,6.097275864326261 -859,14.0,13.0,-2.4909522639994623,2.250874059369649 -859,14.0,14.0,9.365498545964757,-16.01163373210796 -859,14.0,17.0,-1.8108011504072024,3.687418931630696 -859,14.0,22.0,-1.9683489489016612,3.976064876781356 -859,15.0,11.0,-1.9519977922801688,4.104359379111847 -859,15.0,15.0,3.271064728633931,-8.94513365126506 -859,15.0,16.0,-1.3190669363537617,4.8407742721532125 -859,16.0,9.0,-3.956039125715353,10.317447719844054 -859,16.0,15.0,-1.3190669363537617,4.8407742721532125 -859,16.0,16.0,5.275106062069114,-15.158221991997266 -859,17.0,14.0,-1.8108011504072024,3.687418931630696 -859,17.0,17.0,4.886487584415919,-9.906177730909668 -859,17.0,18.0,-3.0756864340087167,6.218758799278971 -859,18.0,17.0,-3.0756864340087167,6.218758799278971 -859,18.0,18.0,8.958039375185187,-17.98346468163191 -859,18.0,19.0,-5.88235294117647,11.76470588235294 -859,19.0,9.0,-1.7848303152666305,3.98535828943083 -859,19.0,18.0,-5.88235294117647,11.76470588235294 -859,19.0,19.0,7.6671832564431,-15.75006417178377 -859,20.0,9.0,-5.101853820159654,10.98071411292983 -859,20.0,20.0,21.876495189895888,-45.10843276170355 -859,20.0,21.0,-16.774641369736234,34.127718648773715 -859,21.0,9.0,-2.619319553382597,5.400770303329455 -859,21.0,20.0,-16.774641369736234,34.127718648773715 -859,21.0,21.0,21.93449907537439,-43.48289181517921 -859,21.0,23.0,-2.5405381522555563,3.95440286307604 -859,22.0,14.0,-1.9683489489016612,3.976064876781356 -859,22.0,22.0,3.429754555384988,-6.965303617315433 -859,22.0,23.0,-1.4614056064833263,2.989238740534077 -859,23.0,21.0,-2.5405381522555563,3.95440286307604 -859,23.0,22.0,-1.4614056064833263,2.989238740534077 -859,23.0,23.0,5.311836702613133,-9.188263657315172 -859,23.0,24.0,-1.3098929438742493,2.287622053705056 -859,24.0,23.0,-1.3098929438742493,2.287622053705056 -859,24.0,24.0,4.495715080321987,-7.864978761969621 -859,24.0,25.0,-1.2165301194494855,1.8171440463475024 -859,24.0,26.0,-1.9692920169982515,3.760212661917064 -859,25.0,24.0,-1.2165301194494855,1.8171440463475024 -859,25.0,25.0,1.2165301194494855,-1.8171440463475024 -859,26.0,24.0,-1.9692920169982515,3.760212661917064 -859,26.0,26.0,3.652281470778589,-9.46044252232512 -859,26.0,27.0,0.0,2.608731947574922 -859,26.0,28.0,-0.99553355095268,1.881005840357816 -859,26.0,29.0,-0.6874559028276572,1.293971494797717 -859,27.0,5.0,-4.362844058012917,15.463571542897856 -859,27.0,7.0,-1.4439790613954469,4.540814658476248 -859,27.0,26.0,0.0,2.608731947574922 -859,27.0,27.0,5.806823119408364,-22.67145722159613 -859,28.0,26.0,-0.99553355095268,1.881005840357816 -859,28.0,28.0,1.9075867579849564,-3.604364401207048 -859,28.0,29.0,-0.9120532070322764,1.7233585608492326 -859,29.0,26.0,-0.6874559028276572,1.293971494797717 -859,29.0,28.0,-0.9120532070322764,1.7233585608492326 -859,29.0,29.0,1.5995091098599337,-3.0173300556469496 -860,0.0,0.0,1.5408698687669766,-5.611274830095233 -860,0.0,2.0,-1.5408698687669766,5.631674830095234 -860,1.0,1.0,4.527635985638374,-15.028336051872673 -860,1.0,3.0,-1.7055303166990268,5.1973792282565086 -860,1.0,4.0,-1.1359607881738778,4.772479328281356 -860,1.0,5.0,-1.6861448807654689,5.116477495334806 -860,2.0,0.0,-1.5408698687669766,5.631674830095234 -860,2.0,2.0,9.736318911079088,-29.13794745915803 -860,2.0,3.0,-8.19544904231211,23.5308726290628 -860,3.0,1.0,-1.7055303166990268,5.1973792282565086 -860,3.0,2.0,-8.19544904231211,23.5308726290628 -860,3.0,3.0,16.314103089185693,-55.509410535254254 -860,3.0,5.0,-6.413123730174556,22.31120356548123 -860,3.0,11.0,0.0,4.191255364806866 -860,4.0,1.0,-1.1359607881738778,4.772479328281356 -860,4.0,4.0,4.089980824135861,-12.190647245055052 -860,4.0,6.0,-2.954020035961983,7.449267916773697 -860,5.0,1.0,-1.6861448807654689,5.116477495334806 -860,5.0,3.0,-6.413123730174556,22.31120356548123 -860,5.0,5.0,18.75142084505357,-71.81153345505078 -860,5.0,7.0,-6.289308176100628,22.0125786163522 -860,5.0,8.0,0.0,4.915840805411357 -860,5.0,9.0,0.0,1.8561002591115965 -860,5.0,27.0,-4.362844058012917,15.463571542897856 -860,6.0,4.0,-2.954020035961983,7.449267916773697 -860,6.0,6.0,2.954020035961983,-7.439067916773697 -860,7.0,5.0,-6.289308176100628,22.0125786163522 -860,7.0,7.0,7.733287237496075,-26.527493274828448 -860,7.0,27.0,-1.4439790613954469,4.540814658476248 -860,8.0,5.0,0.0,4.915840805411357 -860,8.0,8.0,0.0,-18.706293706293707 -860,8.0,9.0,0.0,9.090909090909092 -860,8.0,10.0,0.0,4.807692307692308 -860,9.0,5.0,0.0,1.8561002591115965 -860,9.0,8.0,0.0,9.090909090909092 -860,9.0,9.0,13.462042814524237,-41.3837606675224 -860,9.0,16.0,-3.956039125715353,10.317447719844054 -860,9.0,19.0,-1.7848303152666305,3.98535828943083 -860,9.0,20.0,-5.101853820159654,10.98071411292983 -860,9.0,21.0,-2.619319553382597,5.400770303329455 -860,10.0,8.0,0.0,4.807692307692308 -860,10.0,10.0,0.0,-4.807692307692308 -860,11.0,3.0,0.0,4.191255364806866 -860,11.0,11.0,6.573961583776156,-24.424167659260668 -860,11.0,12.0,0.0,7.142857142857143 -860,11.0,13.0,-1.5265676088395577,3.1734252729654173 -860,11.0,14.0,-3.0953961826564296,6.097275864326261 -860,11.0,15.0,-1.9519977922801688,4.104359379111847 -860,12.0,11.0,0.0,7.142857142857143 -860,12.0,12.0,0.0,-7.142857142857143 -860,13.0,11.0,-1.5265676088395577,3.1734252729654173 -860,13.0,13.0,1.5265676088395577,-3.1734252729654173 -860,14.0,11.0,-3.0953961826564296,6.097275864326261 -860,14.0,14.0,6.874546281965293,-13.760759672738311 -860,14.0,17.0,-1.8108011504072024,3.687418931630696 -860,14.0,22.0,-1.9683489489016612,3.976064876781356 -860,15.0,11.0,-1.9519977922801688,4.104359379111847 -860,15.0,15.0,3.271064728633931,-8.94513365126506 -860,15.0,16.0,-1.3190669363537617,4.8407742721532125 -860,16.0,9.0,-3.956039125715353,10.317447719844054 -860,16.0,15.0,-1.3190669363537617,4.8407742721532125 -860,16.0,16.0,5.275106062069114,-15.158221991997266 -860,17.0,14.0,-1.8108011504072024,3.687418931630696 -860,17.0,17.0,4.886487584415919,-9.906177730909668 -860,17.0,18.0,-3.0756864340087167,6.218758799278971 -860,18.0,17.0,-3.0756864340087167,6.218758799278971 -860,18.0,18.0,8.958039375185187,-17.98346468163191 -860,18.0,19.0,-5.88235294117647,11.76470588235294 -860,19.0,9.0,-1.7848303152666305,3.98535828943083 -860,19.0,18.0,-5.88235294117647,11.76470588235294 -860,19.0,19.0,7.6671832564431,-15.75006417178377 -860,20.0,9.0,-5.101853820159654,10.98071411292983 -860,20.0,20.0,21.876495189895888,-45.10843276170355 -860,20.0,21.0,-16.774641369736234,34.127718648773715 -860,21.0,9.0,-2.619319553382597,5.400770303329455 -860,21.0,20.0,-16.774641369736234,34.127718648773715 -860,21.0,21.0,21.93449907537439,-43.48289181517921 -860,21.0,23.0,-2.5405381522555563,3.95440286307604 -860,22.0,14.0,-1.9683489489016612,3.976064876781356 -860,22.0,22.0,3.429754555384988,-6.965303617315433 -860,22.0,23.0,-1.4614056064833263,2.989238740534077 -860,23.0,21.0,-2.5405381522555563,3.95440286307604 -860,23.0,22.0,-1.4614056064833263,2.989238740534077 -860,23.0,23.0,5.311836702613133,-9.188263657315172 -860,23.0,24.0,-1.3098929438742493,2.287622053705056 -860,24.0,23.0,-1.3098929438742493,2.287622053705056 -860,24.0,24.0,4.495715080321987,-7.864978761969621 -860,24.0,25.0,-1.2165301194494855,1.8171440463475024 -860,24.0,26.0,-1.9692920169982515,3.760212661917064 -860,25.0,24.0,-1.2165301194494855,1.8171440463475024 -860,25.0,25.0,1.2165301194494855,-1.8171440463475024 -860,26.0,24.0,-1.9692920169982515,3.760212661917064 -860,26.0,26.0,3.652281470778589,-9.46044252232512 -860,26.0,27.0,0.0,2.608731947574922 -860,26.0,28.0,-0.99553355095268,1.881005840357816 -860,26.0,29.0,-0.6874559028276572,1.293971494797717 -860,27.0,5.0,-4.362844058012917,15.463571542897856 -860,27.0,7.0,-1.4439790613954469,4.540814658476248 -860,27.0,26.0,0.0,2.608731947574922 -860,27.0,27.0,5.806823119408364,-22.67145722159613 -860,28.0,26.0,-0.99553355095268,1.881005840357816 -860,28.0,28.0,1.9075867579849564,-3.604364401207048 -860,28.0,29.0,-0.9120532070322764,1.7233585608492326 -860,29.0,26.0,-0.6874559028276572,1.293971494797717 -860,29.0,28.0,-0.9120532070322764,1.7233585608492326 -860,29.0,29.0,1.5995091098599337,-3.0173300556469496 -861,0.0,0.0,6.765516048652632,-21.23160167089863 -861,0.0,1.0,-5.224646179885656,15.646726840803398 -861,0.0,2.0,-1.5408698687669766,5.631674830095234 -861,1.0,0.0,-5.224646179885656,15.646726840803398 -861,1.0,1.0,9.75228216552403,-30.648662892676068 -861,1.0,3.0,-1.7055303166990268,5.1973792282565086 -861,1.0,4.0,-1.1359607881738778,4.772479328281356 -861,1.0,5.0,-1.6861448807654689,5.116477495334806 -861,2.0,0.0,-1.5408698687669766,5.631674830095234 -861,2.0,2.0,9.736318911079088,-29.13794745915803 -861,2.0,3.0,-8.19544904231211,23.5308726290628 -861,3.0,1.0,-1.7055303166990268,5.1973792282565086 -861,3.0,2.0,-8.19544904231211,23.5308726290628 -861,3.0,3.0,16.314103089185693,-55.509410535254254 -861,3.0,5.0,-6.413123730174556,22.31120356548123 -861,3.0,11.0,0.0,4.191255364806866 -861,4.0,1.0,-1.1359607881738778,4.772479328281356 -861,4.0,4.0,4.089980824135861,-12.190647245055052 -861,4.0,6.0,-2.954020035961983,7.449267916773697 -861,5.0,1.0,-1.6861448807654689,5.116477495334806 -861,5.0,3.0,-6.413123730174556,22.31120356548123 -861,5.0,5.0,22.341631269034565,-82.8291478657789 -861,5.0,6.0,-3.590210423980992,11.02611441072814 -861,5.0,7.0,-6.289308176100628,22.0125786163522 -861,5.0,8.0,0.0,4.915840805411357 -861,5.0,9.0,0.0,1.8561002591115965 -861,5.0,27.0,-4.362844058012917,15.463571542897856 -861,6.0,4.0,-2.954020035961983,7.449267916773697 -861,6.0,5.0,-3.590210423980992,11.02611441072814 -861,6.0,6.0,6.544230459942975,-18.45668232750184 -861,7.0,5.0,-6.289308176100628,22.0125786163522 -861,7.0,7.0,7.733287237496075,-26.527493274828448 -861,7.0,27.0,-1.4439790613954469,4.540814658476248 -861,8.0,5.0,0.0,4.915840805411357 -861,8.0,8.0,0.0,-18.706293706293707 -861,8.0,9.0,0.0,9.090909090909092 -861,8.0,10.0,0.0,4.807692307692308 -861,9.0,5.0,0.0,1.8561002591115965 -861,9.0,8.0,0.0,9.090909090909092 -861,9.0,9.0,8.36018899436458,-30.40304655459257 -861,9.0,16.0,-3.956039125715353,10.317447719844054 -861,9.0,19.0,-1.7848303152666305,3.98535828943083 -861,9.0,21.0,-2.619319553382597,5.400770303329455 -861,10.0,8.0,0.0,4.807692307692308 -861,10.0,10.0,0.0,-4.807692307692308 -861,11.0,3.0,0.0,4.191255364806866 -861,11.0,11.0,6.573961583776156,-24.424167659260668 -861,11.0,12.0,0.0,7.142857142857143 -861,11.0,13.0,-1.5265676088395577,3.1734252729654173 -861,11.0,14.0,-3.0953961826564296,6.097275864326261 -861,11.0,15.0,-1.9519977922801688,4.104359379111847 -861,12.0,11.0,0.0,7.142857142857143 -861,12.0,12.0,0.0,-7.142857142857143 -861,13.0,11.0,-1.5265676088395577,3.1734252729654173 -861,13.0,13.0,4.01751987283902,-5.424299332335067 -861,13.0,14.0,-2.4909522639994623,2.250874059369649 -861,14.0,11.0,-3.0953961826564296,6.097275864326261 -861,14.0,13.0,-2.4909522639994623,2.250874059369649 -861,14.0,14.0,9.365498545964757,-16.01163373210796 -861,14.0,17.0,-1.8108011504072024,3.687418931630696 -861,14.0,22.0,-1.9683489489016612,3.976064876781356 -861,15.0,11.0,-1.9519977922801688,4.104359379111847 -861,15.0,15.0,3.271064728633931,-8.94513365126506 -861,15.0,16.0,-1.3190669363537617,4.8407742721532125 -861,16.0,9.0,-3.956039125715353,10.317447719844054 -861,16.0,15.0,-1.3190669363537617,4.8407742721532125 -861,16.0,16.0,5.275106062069114,-15.158221991997266 -861,17.0,14.0,-1.8108011504072024,3.687418931630696 -861,17.0,17.0,4.886487584415919,-9.906177730909668 -861,17.0,18.0,-3.0756864340087167,6.218758799278971 -861,18.0,17.0,-3.0756864340087167,6.218758799278971 -861,18.0,18.0,3.0756864340087167,-6.218758799278971 -861,19.0,9.0,-1.7848303152666305,3.98535828943083 -861,19.0,19.0,1.7848303152666305,-3.98535828943083 -861,20.0,20.0,16.774641369736234,-34.127718648773715 -861,20.0,21.0,-16.774641369736234,34.127718648773715 -861,21.0,9.0,-2.619319553382597,5.400770303329455 -861,21.0,20.0,-16.774641369736234,34.127718648773715 -861,21.0,21.0,21.93449907537439,-43.48289181517921 -861,21.0,23.0,-2.5405381522555563,3.95440286307604 -861,22.0,14.0,-1.9683489489016612,3.976064876781356 -861,22.0,22.0,3.429754555384988,-6.965303617315433 -861,22.0,23.0,-1.4614056064833263,2.989238740534077 -861,23.0,21.0,-2.5405381522555563,3.95440286307604 -861,23.0,22.0,-1.4614056064833263,2.989238740534077 -861,23.0,23.0,5.311836702613133,-9.188263657315172 -861,23.0,24.0,-1.3098929438742493,2.287622053705056 -861,24.0,23.0,-1.3098929438742493,2.287622053705056 -861,24.0,24.0,2.526423063323735,-4.104766100052558 -861,24.0,25.0,-1.2165301194494855,1.8171440463475024 -861,25.0,24.0,-1.2165301194494855,1.8171440463475024 -861,25.0,25.0,1.2165301194494855,-1.8171440463475024 -861,26.0,26.0,1.6829894537803372,-5.700229860408058 -861,26.0,27.0,0.0,2.608731947574922 -861,26.0,28.0,-0.99553355095268,1.881005840357816 -861,26.0,29.0,-0.6874559028276572,1.293971494797717 -861,27.0,5.0,-4.362844058012917,15.463571542897856 -861,27.0,7.0,-1.4439790613954469,4.540814658476248 -861,27.0,26.0,0.0,2.608731947574922 -861,27.0,27.0,5.806823119408364,-22.67145722159613 -861,28.0,26.0,-0.99553355095268,1.881005840357816 -861,28.0,28.0,1.9075867579849564,-3.604364401207048 -861,28.0,29.0,-0.9120532070322764,1.7233585608492326 -861,29.0,26.0,-0.6874559028276572,1.293971494797717 -861,29.0,28.0,-0.9120532070322764,1.7233585608492326 -861,29.0,29.0,1.5995091098599337,-3.0173300556469496 -862,0.0,0.0,6.765516048652632,-21.23160167089863 -862,0.0,1.0,-5.224646179885656,15.646726840803398 -862,0.0,2.0,-1.5408698687669766,5.631674830095234 -862,1.0,0.0,-5.224646179885656,15.646726840803398 -862,1.0,1.0,9.75228216552403,-30.648662892676068 -862,1.0,3.0,-1.7055303166990268,5.1973792282565086 -862,1.0,4.0,-1.1359607881738778,4.772479328281356 -862,1.0,5.0,-1.6861448807654689,5.116477495334806 -862,2.0,0.0,-1.5408698687669766,5.631674830095234 -862,2.0,2.0,1.5408698687669766,-5.611274830095233 -862,3.0,1.0,-1.7055303166990268,5.1973792282565086 -862,3.0,3.0,8.118654046873583,-31.982737906191456 -862,3.0,5.0,-6.413123730174556,22.31120356548123 -862,3.0,11.0,0.0,4.191255364806866 -862,4.0,1.0,-1.1359607881738778,4.772479328281356 -862,4.0,4.0,4.089980824135861,-12.190647245055052 -862,4.0,6.0,-2.954020035961983,7.449267916773697 -862,5.0,1.0,-1.6861448807654689,5.116477495334806 -862,5.0,3.0,-6.413123730174556,22.31120356548123 -862,5.0,5.0,22.341631269034565,-82.8291478657789 -862,5.0,6.0,-3.590210423980992,11.02611441072814 -862,5.0,7.0,-6.289308176100628,22.0125786163522 -862,5.0,8.0,0.0,4.915840805411357 -862,5.0,9.0,0.0,1.8561002591115965 -862,5.0,27.0,-4.362844058012917,15.463571542897856 -862,6.0,4.0,-2.954020035961983,7.449267916773697 -862,6.0,5.0,-3.590210423980992,11.02611441072814 -862,6.0,6.0,6.544230459942975,-18.45668232750184 -862,7.0,5.0,-6.289308176100628,22.0125786163522 -862,7.0,7.0,7.733287237496075,-26.527493274828448 -862,7.0,27.0,-1.4439790613954469,4.540814658476248 -862,8.0,5.0,0.0,4.915840805411357 -862,8.0,8.0,0.0,-18.706293706293707 -862,8.0,9.0,0.0,9.090909090909092 -862,8.0,10.0,0.0,4.807692307692308 -862,9.0,5.0,0.0,1.8561002591115965 -862,9.0,8.0,0.0,9.090909090909092 -862,9.0,9.0,13.462042814524237,-41.3837606675224 -862,9.0,16.0,-3.956039125715353,10.317447719844054 -862,9.0,19.0,-1.7848303152666305,3.98535828943083 -862,9.0,20.0,-5.101853820159654,10.98071411292983 -862,9.0,21.0,-2.619319553382597,5.400770303329455 -862,10.0,8.0,0.0,4.807692307692308 -862,10.0,10.0,0.0,-4.807692307692308 -862,11.0,3.0,0.0,4.191255364806866 -862,11.0,11.0,5.047393974936599,-21.25074238629525 -862,11.0,12.0,0.0,7.142857142857143 -862,11.0,14.0,-3.0953961826564296,6.097275864326261 -862,11.0,15.0,-1.9519977922801688,4.104359379111847 -862,12.0,11.0,0.0,7.142857142857143 -862,12.0,12.0,0.0,-7.142857142857143 -862,13.0,13.0,2.4909522639994623,-2.250874059369649 -862,13.0,14.0,-2.4909522639994623,2.250874059369649 -862,14.0,11.0,-3.0953961826564296,6.097275864326261 -862,14.0,13.0,-2.4909522639994623,2.250874059369649 -862,14.0,14.0,9.365498545964757,-16.01163373210796 -862,14.0,17.0,-1.8108011504072024,3.687418931630696 -862,14.0,22.0,-1.9683489489016612,3.976064876781356 -862,15.0,11.0,-1.9519977922801688,4.104359379111847 -862,15.0,15.0,3.271064728633931,-8.94513365126506 -862,15.0,16.0,-1.3190669363537617,4.8407742721532125 -862,16.0,9.0,-3.956039125715353,10.317447719844054 -862,16.0,15.0,-1.3190669363537617,4.8407742721532125 -862,16.0,16.0,5.275106062069114,-15.158221991997266 -862,17.0,14.0,-1.8108011504072024,3.687418931630696 -862,17.0,17.0,4.886487584415919,-9.906177730909668 -862,17.0,18.0,-3.0756864340087167,6.218758799278971 -862,18.0,17.0,-3.0756864340087167,6.218758799278971 -862,18.0,18.0,8.958039375185187,-17.98346468163191 -862,18.0,19.0,-5.88235294117647,11.76470588235294 -862,19.0,9.0,-1.7848303152666305,3.98535828943083 -862,19.0,18.0,-5.88235294117647,11.76470588235294 -862,19.0,19.0,7.6671832564431,-15.75006417178377 -862,20.0,9.0,-5.101853820159654,10.98071411292983 -862,20.0,20.0,5.101853820159654,-10.98071411292983 -862,21.0,9.0,-2.619319553382597,5.400770303329455 -862,21.0,21.0,5.159857705638154,-9.355173166405494 -862,21.0,23.0,-2.5405381522555563,3.95440286307604 -862,22.0,14.0,-1.9683489489016612,3.976064876781356 -862,22.0,22.0,3.429754555384988,-6.965303617315433 -862,22.0,23.0,-1.4614056064833263,2.989238740534077 -862,23.0,21.0,-2.5405381522555563,3.95440286307604 -862,23.0,22.0,-1.4614056064833263,2.989238740534077 -862,23.0,23.0,5.311836702613133,-9.188263657315172 -862,23.0,24.0,-1.3098929438742493,2.287622053705056 -862,24.0,23.0,-1.3098929438742493,2.287622053705056 -862,24.0,24.0,4.495715080321987,-7.864978761969621 -862,24.0,25.0,-1.2165301194494855,1.8171440463475024 -862,24.0,26.0,-1.9692920169982515,3.760212661917064 -862,25.0,24.0,-1.2165301194494855,1.8171440463475024 -862,25.0,25.0,1.2165301194494855,-1.8171440463475024 -862,26.0,24.0,-1.9692920169982515,3.760212661917064 -862,26.0,26.0,3.652281470778589,-9.46044252232512 -862,26.0,27.0,0.0,2.608731947574922 -862,26.0,28.0,-0.99553355095268,1.881005840357816 -862,26.0,29.0,-0.6874559028276572,1.293971494797717 -862,27.0,5.0,-4.362844058012917,15.463571542897856 -862,27.0,7.0,-1.4439790613954469,4.540814658476248 -862,27.0,26.0,0.0,2.608731947574922 -862,27.0,27.0,5.806823119408364,-22.67145722159613 -862,28.0,26.0,-0.99553355095268,1.881005840357816 -862,28.0,28.0,1.9075867579849564,-3.604364401207048 -862,28.0,29.0,-0.9120532070322764,1.7233585608492326 -862,29.0,26.0,-0.6874559028276572,1.293971494797717 -862,29.0,28.0,-0.9120532070322764,1.7233585608492326 -862,29.0,29.0,1.5995091098599337,-3.0173300556469496 -863,0.0,0.0,5.224646179885656,-15.620326840803395 -863,0.0,1.0,-5.224646179885656,15.646726840803398 -863,1.0,0.0,-5.224646179885656,15.646726840803398 -863,1.0,1.0,9.75228216552403,-30.648662892676068 -863,1.0,3.0,-1.7055303166990268,5.1973792282565086 -863,1.0,4.0,-1.1359607881738778,4.772479328281356 -863,1.0,5.0,-1.6861448807654689,5.116477495334806 -863,2.0,2.0,8.19544904231211,-23.5266726290628 -863,2.0,3.0,-8.19544904231211,23.5308726290628 -863,3.0,1.0,-1.7055303166990268,5.1973792282565086 -863,3.0,2.0,-8.19544904231211,23.5308726290628 -863,3.0,3.0,16.314103089185693,-51.01235542280054 -863,3.0,5.0,-6.413123730174556,22.31120356548123 -863,4.0,1.0,-1.1359607881738778,4.772479328281356 -863,4.0,4.0,1.1359607881738778,-4.751579328281355 -863,5.0,1.0,-1.6861448807654689,5.116477495334806 -863,5.0,3.0,-6.413123730174556,22.31120356548123 -863,5.0,5.0,22.341631269034565,-80.91366772221689 -863,5.0,6.0,-3.590210423980992,11.02611441072814 -863,5.0,7.0,-6.289308176100628,22.0125786163522 -863,5.0,8.0,0.0,4.915840805411357 -863,5.0,27.0,-4.362844058012917,15.463571542897856 -863,6.0,5.0,-3.590210423980992,11.02611441072814 -863,6.0,6.0,3.590210423980992,-11.01761441072814 -863,7.0,5.0,-6.289308176100628,22.0125786163522 -863,7.0,7.0,7.733287237496075,-26.527493274828448 -863,7.0,27.0,-1.4439790613954469,4.540814658476248 -863,8.0,5.0,0.0,4.915840805411357 -863,8.0,8.0,0.0,-18.706293706293707 -863,8.0,9.0,0.0,9.090909090909092 -863,8.0,10.0,0.0,4.807692307692308 -863,9.0,8.0,0.0,9.090909090909092 -863,9.0,9.0,10.842723261141638,-34.18442921311381 -863,9.0,16.0,-3.956039125715353,10.317447719844054 -863,9.0,19.0,-1.7848303152666305,3.98535828943083 -863,9.0,20.0,-5.101853820159654,10.98071411292983 -863,10.0,8.0,0.0,4.807692307692308 -863,10.0,10.0,0.0,-4.807692307692308 -863,11.0,11.0,4.621963791495987,-16.41355828014882 -863,11.0,12.0,0.0,7.142857142857143 -863,11.0,13.0,-1.5265676088395577,3.1734252729654173 -863,11.0,14.0,-3.0953961826564296,6.097275864326261 -863,12.0,11.0,0.0,7.142857142857143 -863,12.0,12.0,0.0,-7.142857142857143 -863,13.0,11.0,-1.5265676088395577,3.1734252729654173 -863,13.0,13.0,4.01751987283902,-5.424299332335067 -863,13.0,14.0,-2.4909522639994623,2.250874059369649 -863,14.0,11.0,-3.0953961826564296,6.097275864326261 -863,14.0,13.0,-2.4909522639994623,2.250874059369649 -863,14.0,14.0,9.365498545964757,-16.01163373210796 -863,14.0,17.0,-1.8108011504072024,3.687418931630696 -863,14.0,22.0,-1.9683489489016612,3.976064876781356 -863,15.0,15.0,1.3190669363537617,-4.8407742721532125 -863,15.0,16.0,-1.3190669363537617,4.8407742721532125 -863,16.0,9.0,-3.956039125715353,10.317447719844054 -863,16.0,15.0,-1.3190669363537617,4.8407742721532125 -863,16.0,16.0,5.275106062069114,-15.158221991997266 -863,17.0,14.0,-1.8108011504072024,3.687418931630696 -863,17.0,17.0,4.886487584415919,-9.906177730909668 -863,17.0,18.0,-3.0756864340087167,6.218758799278971 -863,18.0,17.0,-3.0756864340087167,6.218758799278971 -863,18.0,18.0,8.958039375185187,-17.98346468163191 -863,18.0,19.0,-5.88235294117647,11.76470588235294 -863,19.0,9.0,-1.7848303152666305,3.98535828943083 -863,19.0,18.0,-5.88235294117647,11.76470588235294 -863,19.0,19.0,7.6671832564431,-15.75006417178377 -863,20.0,9.0,-5.101853820159654,10.98071411292983 -863,20.0,20.0,21.876495189895888,-45.10843276170355 -863,20.0,21.0,-16.774641369736234,34.127718648773715 -863,21.0,20.0,-16.774641369736234,34.127718648773715 -863,21.0,21.0,19.31517952199179,-38.08212151184976 -863,21.0,23.0,-2.5405381522555563,3.95440286307604 -863,22.0,14.0,-1.9683489489016612,3.976064876781356 -863,22.0,22.0,3.429754555384988,-6.965303617315433 -863,22.0,23.0,-1.4614056064833263,2.989238740534077 -863,23.0,21.0,-2.5405381522555563,3.95440286307604 -863,23.0,22.0,-1.4614056064833263,2.989238740534077 -863,23.0,23.0,5.311836702613133,-9.188263657315172 -863,23.0,24.0,-1.3098929438742493,2.287622053705056 -863,24.0,23.0,-1.3098929438742493,2.287622053705056 -863,24.0,24.0,4.495715080321987,-7.864978761969621 -863,24.0,25.0,-1.2165301194494855,1.8171440463475024 -863,24.0,26.0,-1.9692920169982515,3.760212661917064 -863,25.0,24.0,-1.2165301194494855,1.8171440463475024 -863,25.0,25.0,1.2165301194494855,-1.8171440463475024 -863,26.0,24.0,-1.9692920169982515,3.760212661917064 -863,26.0,26.0,3.652281470778589,-9.46044252232512 -863,26.0,27.0,0.0,2.608731947574922 -863,26.0,28.0,-0.99553355095268,1.881005840357816 -863,26.0,29.0,-0.6874559028276572,1.293971494797717 -863,27.0,5.0,-4.362844058012917,15.463571542897856 -863,27.0,7.0,-1.4439790613954469,4.540814658476248 -863,27.0,26.0,0.0,2.608731947574922 -863,27.0,27.0,5.806823119408364,-22.67145722159613 -863,28.0,26.0,-0.99553355095268,1.881005840357816 -863,28.0,28.0,1.9075867579849564,-3.604364401207048 -863,28.0,29.0,-0.9120532070322764,1.7233585608492326 -863,29.0,26.0,-0.6874559028276572,1.293971494797717 -863,29.0,28.0,-0.9120532070322764,1.7233585608492326 -863,29.0,29.0,1.5995091098599337,-3.0173300556469496 -864,0.0,0.0,6.765516048652632,-21.23160167089863 -864,0.0,1.0,-5.224646179885656,15.646726840803398 -864,0.0,2.0,-1.5408698687669766,5.631674830095234 -864,1.0,0.0,-5.224646179885656,15.646726840803398 -864,1.0,1.0,9.75228216552403,-30.648662892676068 -864,1.0,3.0,-1.7055303166990268,5.1973792282565086 -864,1.0,4.0,-1.1359607881738778,4.772479328281356 -864,1.0,5.0,-1.6861448807654689,5.116477495334806 -864,2.0,0.0,-1.5408698687669766,5.631674830095234 -864,2.0,2.0,9.736318911079088,-29.13794745915803 -864,2.0,3.0,-8.19544904231211,23.5308726290628 -864,3.0,1.0,-1.7055303166990268,5.1973792282565086 -864,3.0,2.0,-8.19544904231211,23.5308726290628 -864,3.0,3.0,16.314103089185693,-55.509410535254254 -864,3.0,5.0,-6.413123730174556,22.31120356548123 -864,3.0,11.0,0.0,4.191255364806866 -864,4.0,1.0,-1.1359607881738778,4.772479328281356 -864,4.0,4.0,4.089980824135861,-12.190647245055052 -864,4.0,6.0,-2.954020035961983,7.449267916773697 -864,5.0,1.0,-1.6861448807654689,5.116477495334806 -864,5.0,3.0,-6.413123730174556,22.31120356548123 -864,5.0,5.0,22.341631269034565,-82.8291478657789 -864,5.0,6.0,-3.590210423980992,11.02611441072814 -864,5.0,7.0,-6.289308176100628,22.0125786163522 -864,5.0,8.0,0.0,4.915840805411357 -864,5.0,9.0,0.0,1.8561002591115965 -864,5.0,27.0,-4.362844058012917,15.463571542897856 -864,6.0,4.0,-2.954020035961983,7.449267916773697 -864,6.0,5.0,-3.590210423980992,11.02611441072814 -864,6.0,6.0,6.544230459942975,-18.45668232750184 -864,7.0,5.0,-6.289308176100628,22.0125786163522 -864,7.0,7.0,7.733287237496075,-26.527493274828448 -864,7.0,27.0,-1.4439790613954469,4.540814658476248 -864,8.0,5.0,0.0,4.915840805411357 -864,8.0,8.0,0.0,-18.706293706293707 -864,8.0,9.0,0.0,9.090909090909092 -864,8.0,10.0,0.0,4.807692307692308 -864,9.0,5.0,0.0,1.8561002591115965 -864,9.0,8.0,0.0,9.090909090909092 -864,9.0,9.0,13.462042814524237,-41.3837606675224 -864,9.0,16.0,-3.956039125715353,10.317447719844054 -864,9.0,19.0,-1.7848303152666305,3.98535828943083 -864,9.0,20.0,-5.101853820159654,10.98071411292983 -864,9.0,21.0,-2.619319553382597,5.400770303329455 -864,10.0,8.0,0.0,4.807692307692308 -864,10.0,10.0,0.0,-4.807692307692308 -864,11.0,3.0,0.0,4.191255364806866 -864,11.0,11.0,6.573961583776156,-24.424167659260668 -864,11.0,12.0,0.0,7.142857142857143 -864,11.0,13.0,-1.5265676088395577,3.1734252729654173 -864,11.0,14.0,-3.0953961826564296,6.097275864326261 -864,11.0,15.0,-1.9519977922801688,4.104359379111847 -864,12.0,11.0,0.0,7.142857142857143 -864,12.0,12.0,0.0,-7.142857142857143 -864,13.0,11.0,-1.5265676088395577,3.1734252729654173 -864,13.0,13.0,4.01751987283902,-5.424299332335067 -864,13.0,14.0,-2.4909522639994623,2.250874059369649 -864,14.0,11.0,-3.0953961826564296,6.097275864326261 -864,14.0,13.0,-2.4909522639994623,2.250874059369649 -864,14.0,14.0,9.365498545964757,-16.01163373210796 -864,14.0,17.0,-1.8108011504072024,3.687418931630696 -864,14.0,22.0,-1.9683489489016612,3.976064876781356 -864,15.0,11.0,-1.9519977922801688,4.104359379111847 -864,15.0,15.0,3.271064728633931,-8.94513365126506 -864,15.0,16.0,-1.3190669363537617,4.8407742721532125 -864,16.0,9.0,-3.956039125715353,10.317447719844054 -864,16.0,15.0,-1.3190669363537617,4.8407742721532125 -864,16.0,16.0,5.275106062069114,-15.158221991997266 -864,17.0,14.0,-1.8108011504072024,3.687418931630696 -864,17.0,17.0,4.886487584415919,-9.906177730909668 -864,17.0,18.0,-3.0756864340087167,6.218758799278971 -864,18.0,17.0,-3.0756864340087167,6.218758799278971 -864,18.0,18.0,8.958039375185187,-17.98346468163191 -864,18.0,19.0,-5.88235294117647,11.76470588235294 -864,19.0,9.0,-1.7848303152666305,3.98535828943083 -864,19.0,18.0,-5.88235294117647,11.76470588235294 -864,19.0,19.0,7.6671832564431,-15.75006417178377 -864,20.0,9.0,-5.101853820159654,10.98071411292983 -864,20.0,20.0,21.876495189895888,-45.10843276170355 -864,20.0,21.0,-16.774641369736234,34.127718648773715 -864,21.0,9.0,-2.619319553382597,5.400770303329455 -864,21.0,20.0,-16.774641369736234,34.127718648773715 -864,21.0,21.0,21.93449907537439,-43.48289181517921 -864,21.0,23.0,-2.5405381522555563,3.95440286307604 -864,22.0,14.0,-1.9683489489016612,3.976064876781356 -864,22.0,22.0,1.9683489489016612,-3.976064876781356 -864,23.0,21.0,-2.5405381522555563,3.95440286307604 -864,23.0,23.0,3.850431096129806,-6.199024916781094 -864,23.0,24.0,-1.3098929438742493,2.287622053705056 -864,24.0,23.0,-1.3098929438742493,2.287622053705056 -864,24.0,24.0,4.495715080321987,-7.864978761969621 -864,24.0,25.0,-1.2165301194494855,1.8171440463475024 -864,24.0,26.0,-1.9692920169982515,3.760212661917064 -864,25.0,24.0,-1.2165301194494855,1.8171440463475024 -864,25.0,25.0,1.2165301194494855,-1.8171440463475024 -864,26.0,24.0,-1.9692920169982515,3.760212661917064 -864,26.0,26.0,3.652281470778589,-9.46044252232512 -864,26.0,27.0,0.0,2.608731947574922 -864,26.0,28.0,-0.99553355095268,1.881005840357816 -864,26.0,29.0,-0.6874559028276572,1.293971494797717 -864,27.0,5.0,-4.362844058012917,15.463571542897856 -864,27.0,7.0,-1.4439790613954469,4.540814658476248 -864,27.0,26.0,0.0,2.608731947574922 -864,27.0,27.0,5.806823119408364,-22.67145722159613 -864,28.0,26.0,-0.99553355095268,1.881005840357816 -864,28.0,28.0,1.9075867579849564,-3.604364401207048 -864,28.0,29.0,-0.9120532070322764,1.7233585608492326 -864,29.0,26.0,-0.6874559028276572,1.293971494797717 -864,29.0,28.0,-0.9120532070322764,1.7233585608492326 -864,29.0,29.0,1.5995091098599337,-3.0173300556469496 -865,0.0,0.0,6.765516048652632,-21.23160167089863 -865,0.0,1.0,-5.224646179885656,15.646726840803398 -865,0.0,2.0,-1.5408698687669766,5.631674830095234 -865,1.0,0.0,-5.224646179885656,15.646726840803398 -865,1.0,1.0,9.75228216552403,-30.648662892676068 -865,1.0,3.0,-1.7055303166990268,5.1973792282565086 -865,1.0,4.0,-1.1359607881738778,4.772479328281356 -865,1.0,5.0,-1.6861448807654689,5.116477495334806 -865,2.0,0.0,-1.5408698687669766,5.631674830095234 -865,2.0,2.0,9.736318911079088,-29.13794745915803 -865,2.0,3.0,-8.19544904231211,23.5308726290628 -865,3.0,1.0,-1.7055303166990268,5.1973792282565086 -865,3.0,2.0,-8.19544904231211,23.5308726290628 -865,3.0,3.0,16.314103089185693,-55.509410535254254 -865,3.0,5.0,-6.413123730174556,22.31120356548123 -865,3.0,11.0,0.0,4.191255364806866 -865,4.0,1.0,-1.1359607881738778,4.772479328281356 -865,4.0,4.0,4.089980824135861,-12.190647245055052 -865,4.0,6.0,-2.954020035961983,7.449267916773697 -865,5.0,1.0,-1.6861448807654689,5.116477495334806 -865,5.0,3.0,-6.413123730174556,22.31120356548123 -865,5.0,5.0,22.341631269034565,-82.8291478657789 -865,5.0,6.0,-3.590210423980992,11.02611441072814 -865,5.0,7.0,-6.289308176100628,22.0125786163522 -865,5.0,8.0,0.0,4.915840805411357 -865,5.0,9.0,0.0,1.8561002591115965 -865,5.0,27.0,-4.362844058012917,15.463571542897856 -865,6.0,4.0,-2.954020035961983,7.449267916773697 -865,6.0,5.0,-3.590210423980992,11.02611441072814 -865,6.0,6.0,6.544230459942975,-18.45668232750184 -865,7.0,5.0,-6.289308176100628,22.0125786163522 -865,7.0,7.0,7.733287237496075,-26.527493274828448 -865,7.0,27.0,-1.4439790613954469,4.540814658476248 -865,8.0,5.0,0.0,4.915840805411357 -865,8.0,8.0,0.0,-18.706293706293707 -865,8.0,9.0,0.0,9.090909090909092 -865,8.0,10.0,0.0,4.807692307692308 -865,9.0,5.0,0.0,1.8561002591115965 -865,9.0,8.0,0.0,9.090909090909092 -865,9.0,9.0,13.462042814524237,-41.3837606675224 -865,9.0,16.0,-3.956039125715353,10.317447719844054 -865,9.0,19.0,-1.7848303152666305,3.98535828943083 -865,9.0,20.0,-5.101853820159654,10.98071411292983 -865,9.0,21.0,-2.619319553382597,5.400770303329455 -865,10.0,8.0,0.0,4.807692307692308 -865,10.0,10.0,0.0,-4.807692307692308 -865,11.0,3.0,0.0,4.191255364806866 -865,11.0,11.0,4.621963791495987,-20.31980828014882 -865,11.0,12.0,0.0,7.142857142857143 -865,11.0,13.0,-1.5265676088395577,3.1734252729654173 -865,11.0,14.0,-3.0953961826564296,6.097275864326261 -865,12.0,11.0,0.0,7.142857142857143 -865,12.0,12.0,0.0,-7.142857142857143 -865,13.0,11.0,-1.5265676088395577,3.1734252729654173 -865,13.0,13.0,4.01751987283902,-5.424299332335067 -865,13.0,14.0,-2.4909522639994623,2.250874059369649 -865,14.0,11.0,-3.0953961826564296,6.097275864326261 -865,14.0,13.0,-2.4909522639994623,2.250874059369649 -865,14.0,14.0,7.397149597063095,-12.035568855326606 -865,14.0,17.0,-1.8108011504072024,3.687418931630696 -865,15.0,15.0,1.3190669363537617,-4.8407742721532125 -865,15.0,16.0,-1.3190669363537617,4.8407742721532125 -865,16.0,9.0,-3.956039125715353,10.317447719844054 -865,16.0,15.0,-1.3190669363537617,4.8407742721532125 -865,16.0,16.0,5.275106062069114,-15.158221991997266 -865,17.0,14.0,-1.8108011504072024,3.687418931630696 -865,17.0,17.0,4.886487584415919,-9.906177730909668 -865,17.0,18.0,-3.0756864340087167,6.218758799278971 -865,18.0,17.0,-3.0756864340087167,6.218758799278971 -865,18.0,18.0,8.958039375185187,-17.98346468163191 -865,18.0,19.0,-5.88235294117647,11.76470588235294 -865,19.0,9.0,-1.7848303152666305,3.98535828943083 -865,19.0,18.0,-5.88235294117647,11.76470588235294 -865,19.0,19.0,7.6671832564431,-15.75006417178377 -865,20.0,9.0,-5.101853820159654,10.98071411292983 -865,20.0,20.0,21.876495189895888,-45.10843276170355 -865,20.0,21.0,-16.774641369736234,34.127718648773715 -865,21.0,9.0,-2.619319553382597,5.400770303329455 -865,21.0,20.0,-16.774641369736234,34.127718648773715 -865,21.0,21.0,21.93449907537439,-43.48289181517921 -865,21.0,23.0,-2.5405381522555563,3.95440286307604 -865,22.0,22.0,1.4614056064833263,-2.989238740534077 -865,22.0,23.0,-1.4614056064833263,2.989238740534077 -865,23.0,21.0,-2.5405381522555563,3.95440286307604 -865,23.0,22.0,-1.4614056064833263,2.989238740534077 -865,23.0,23.0,5.311836702613133,-9.188263657315172 -865,23.0,24.0,-1.3098929438742493,2.287622053705056 -865,24.0,23.0,-1.3098929438742493,2.287622053705056 -865,24.0,24.0,2.526423063323735,-4.104766100052558 -865,24.0,25.0,-1.2165301194494855,1.8171440463475024 -865,25.0,24.0,-1.2165301194494855,1.8171440463475024 -865,25.0,25.0,1.2165301194494855,-1.8171440463475024 -865,26.0,26.0,1.6829894537803372,-5.700229860408058 -865,26.0,27.0,0.0,2.608731947574922 -865,26.0,28.0,-0.99553355095268,1.881005840357816 -865,26.0,29.0,-0.6874559028276572,1.293971494797717 -865,27.0,5.0,-4.362844058012917,15.463571542897856 -865,27.0,7.0,-1.4439790613954469,4.540814658476248 -865,27.0,26.0,0.0,2.608731947574922 -865,27.0,27.0,5.806823119408364,-22.67145722159613 -865,28.0,26.0,-0.99553355095268,1.881005840357816 -865,28.0,28.0,0.99553355095268,-1.881005840357816 -865,29.0,26.0,-0.6874559028276572,1.293971494797717 -865,29.0,29.0,0.6874559028276572,-1.293971494797717 -866,0.0,0.0,6.765516048652632,-21.23160167089863 -866,0.0,1.0,-5.224646179885656,15.646726840803398 -866,0.0,2.0,-1.5408698687669766,5.631674830095234 -866,1.0,0.0,-5.224646179885656,15.646726840803398 -866,1.0,1.0,9.75228216552403,-30.648662892676068 -866,1.0,3.0,-1.7055303166990268,5.1973792282565086 -866,1.0,4.0,-1.1359607881738778,4.772479328281356 -866,1.0,5.0,-1.6861448807654689,5.116477495334806 -866,2.0,0.0,-1.5408698687669766,5.631674830095234 -866,2.0,2.0,9.736318911079088,-29.13794745915803 -866,2.0,3.0,-8.19544904231211,23.5308726290628 -866,3.0,1.0,-1.7055303166990268,5.1973792282565086 -866,3.0,2.0,-8.19544904231211,23.5308726290628 -866,3.0,3.0,16.314103089185693,-55.509410535254254 -866,3.0,5.0,-6.413123730174556,22.31120356548123 -866,3.0,11.0,0.0,4.191255364806866 -866,4.0,1.0,-1.1359607881738778,4.772479328281356 -866,4.0,4.0,4.089980824135861,-12.190647245055052 -866,4.0,6.0,-2.954020035961983,7.449267916773697 -866,5.0,1.0,-1.6861448807654689,5.116477495334806 -866,5.0,3.0,-6.413123730174556,22.31120356548123 -866,5.0,5.0,17.978787211021647,-67.37207632288106 -866,5.0,6.0,-3.590210423980992,11.02611441072814 -866,5.0,7.0,-6.289308176100628,22.0125786163522 -866,5.0,8.0,0.0,4.915840805411357 -866,5.0,9.0,0.0,1.8561002591115965 -866,6.0,4.0,-2.954020035961983,7.449267916773697 -866,6.0,5.0,-3.590210423980992,11.02611441072814 -866,6.0,6.0,6.544230459942975,-18.45668232750184 -866,7.0,5.0,-6.289308176100628,22.0125786163522 -866,7.0,7.0,7.733287237496075,-26.527493274828448 -866,7.0,27.0,-1.4439790613954469,4.540814658476248 -866,8.0,5.0,0.0,4.915840805411357 -866,8.0,8.0,0.0,-18.706293706293707 -866,8.0,9.0,0.0,9.090909090909092 -866,8.0,10.0,0.0,4.807692307692308 -866,9.0,5.0,0.0,1.8561002591115965 -866,9.0,8.0,0.0,9.090909090909092 -866,9.0,9.0,8.36018899436458,-30.40304655459257 -866,9.0,16.0,-3.956039125715353,10.317447719844054 -866,9.0,19.0,-1.7848303152666305,3.98535828943083 -866,9.0,21.0,-2.619319553382597,5.400770303329455 -866,10.0,8.0,0.0,4.807692307692308 -866,10.0,10.0,0.0,-4.807692307692308 -866,11.0,3.0,0.0,4.191255364806866 -866,11.0,11.0,6.573961583776156,-24.424167659260668 -866,11.0,12.0,0.0,7.142857142857143 -866,11.0,13.0,-1.5265676088395577,3.1734252729654173 -866,11.0,14.0,-3.0953961826564296,6.097275864326261 -866,11.0,15.0,-1.9519977922801688,4.104359379111847 -866,12.0,11.0,0.0,7.142857142857143 -866,12.0,12.0,0.0,-7.142857142857143 -866,13.0,11.0,-1.5265676088395577,3.1734252729654173 -866,13.0,13.0,4.01751987283902,-5.424299332335067 -866,13.0,14.0,-2.4909522639994623,2.250874059369649 -866,14.0,11.0,-3.0953961826564296,6.097275864326261 -866,14.0,13.0,-2.4909522639994623,2.250874059369649 -866,14.0,14.0,9.365498545964757,-16.01163373210796 -866,14.0,17.0,-1.8108011504072024,3.687418931630696 -866,14.0,22.0,-1.9683489489016612,3.976064876781356 -866,15.0,11.0,-1.9519977922801688,4.104359379111847 -866,15.0,15.0,3.271064728633931,-8.94513365126506 -866,15.0,16.0,-1.3190669363537617,4.8407742721532125 -866,16.0,9.0,-3.956039125715353,10.317447719844054 -866,16.0,15.0,-1.3190669363537617,4.8407742721532125 -866,16.0,16.0,5.275106062069114,-15.158221991997266 -866,17.0,14.0,-1.8108011504072024,3.687418931630696 -866,17.0,17.0,4.886487584415919,-9.906177730909668 -866,17.0,18.0,-3.0756864340087167,6.218758799278971 -866,18.0,17.0,-3.0756864340087167,6.218758799278971 -866,18.0,18.0,8.958039375185187,-17.98346468163191 -866,18.0,19.0,-5.88235294117647,11.76470588235294 -866,19.0,9.0,-1.7848303152666305,3.98535828943083 -866,19.0,18.0,-5.88235294117647,11.76470588235294 -866,19.0,19.0,7.6671832564431,-15.75006417178377 -866,20.0,20.0,16.774641369736234,-34.127718648773715 -866,20.0,21.0,-16.774641369736234,34.127718648773715 -866,21.0,9.0,-2.619319553382597,5.400770303329455 -866,21.0,20.0,-16.774641369736234,34.127718648773715 -866,21.0,21.0,21.93449907537439,-43.48289181517921 -866,21.0,23.0,-2.5405381522555563,3.95440286307604 -866,22.0,14.0,-1.9683489489016612,3.976064876781356 -866,22.0,22.0,3.429754555384988,-6.965303617315433 -866,22.0,23.0,-1.4614056064833263,2.989238740534077 -866,23.0,21.0,-2.5405381522555563,3.95440286307604 -866,23.0,22.0,-1.4614056064833263,2.989238740534077 -866,23.0,23.0,5.311836702613133,-9.188263657315172 -866,23.0,24.0,-1.3098929438742493,2.287622053705056 -866,24.0,23.0,-1.3098929438742493,2.287622053705056 -866,24.0,24.0,4.495715080321987,-7.864978761969621 -866,24.0,25.0,-1.2165301194494855,1.8171440463475024 -866,24.0,26.0,-1.9692920169982515,3.760212661917064 -866,25.0,24.0,-1.2165301194494855,1.8171440463475024 -866,25.0,25.0,1.2165301194494855,-1.8171440463475024 -866,26.0,24.0,-1.9692920169982515,3.760212661917064 -866,26.0,26.0,3.652281470778589,-9.46044252232512 -866,26.0,27.0,0.0,2.608731947574922 -866,26.0,28.0,-0.99553355095268,1.881005840357816 -866,26.0,29.0,-0.6874559028276572,1.293971494797717 -866,27.0,7.0,-1.4439790613954469,4.540814658476248 -866,27.0,26.0,0.0,2.608731947574922 -866,27.0,27.0,1.4439790613954469,-7.214385678698274 -866,28.0,26.0,-0.99553355095268,1.881005840357816 -866,28.0,28.0,1.9075867579849564,-3.604364401207048 -866,28.0,29.0,-0.9120532070322764,1.7233585608492326 -866,29.0,26.0,-0.6874559028276572,1.293971494797717 -866,29.0,28.0,-0.9120532070322764,1.7233585608492326 -866,29.0,29.0,1.5995091098599337,-3.0173300556469496 -867,0.0,0.0,6.765516048652632,-21.23160167089863 -867,0.0,1.0,-5.224646179885656,15.646726840803398 -867,0.0,2.0,-1.5408698687669766,5.631674830095234 -867,1.0,0.0,-5.224646179885656,15.646726840803398 -867,1.0,1.0,9.75228216552403,-30.648662892676068 -867,1.0,3.0,-1.7055303166990268,5.1973792282565086 -867,1.0,4.0,-1.1359607881738778,4.772479328281356 -867,1.0,5.0,-1.6861448807654689,5.116477495334806 -867,2.0,0.0,-1.5408698687669766,5.631674830095234 -867,2.0,2.0,1.5408698687669766,-5.611274830095233 -867,3.0,1.0,-1.7055303166990268,5.1973792282565086 -867,3.0,3.0,8.118654046873583,-31.982737906191456 -867,3.0,5.0,-6.413123730174556,22.31120356548123 -867,3.0,11.0,0.0,4.191255364806866 -867,4.0,1.0,-1.1359607881738778,4.772479328281356 -867,4.0,4.0,4.089980824135861,-12.190647245055052 -867,4.0,6.0,-2.954020035961983,7.449267916773697 -867,5.0,1.0,-1.6861448807654689,5.116477495334806 -867,5.0,3.0,-6.413123730174556,22.31120356548123 -867,5.0,5.0,22.341631269034565,-82.8291478657789 -867,5.0,6.0,-3.590210423980992,11.02611441072814 -867,5.0,7.0,-6.289308176100628,22.0125786163522 -867,5.0,8.0,0.0,4.915840805411357 -867,5.0,9.0,0.0,1.8561002591115965 -867,5.0,27.0,-4.362844058012917,15.463571542897856 -867,6.0,4.0,-2.954020035961983,7.449267916773697 -867,6.0,5.0,-3.590210423980992,11.02611441072814 -867,6.0,6.0,6.544230459942975,-18.45668232750184 -867,7.0,5.0,-6.289308176100628,22.0125786163522 -867,7.0,7.0,6.289308176100628,-22.0080786163522 -867,8.0,5.0,0.0,4.915840805411357 -867,8.0,8.0,0.0,-18.706293706293707 -867,8.0,9.0,0.0,9.090909090909092 -867,8.0,10.0,0.0,4.807692307692308 -867,9.0,5.0,0.0,1.8561002591115965 -867,9.0,8.0,0.0,9.090909090909092 -867,9.0,9.0,13.462042814524237,-41.3837606675224 -867,9.0,16.0,-3.956039125715353,10.317447719844054 -867,9.0,19.0,-1.7848303152666305,3.98535828943083 -867,9.0,20.0,-5.101853820159654,10.98071411292983 -867,9.0,21.0,-2.619319553382597,5.400770303329455 -867,10.0,8.0,0.0,4.807692307692308 -867,10.0,10.0,0.0,-4.807692307692308 -867,11.0,3.0,0.0,4.191255364806866 -867,11.0,11.0,6.573961583776156,-24.424167659260668 -867,11.0,12.0,0.0,7.142857142857143 -867,11.0,13.0,-1.5265676088395577,3.1734252729654173 -867,11.0,14.0,-3.0953961826564296,6.097275864326261 -867,11.0,15.0,-1.9519977922801688,4.104359379111847 -867,12.0,11.0,0.0,7.142857142857143 -867,12.0,12.0,0.0,-7.142857142857143 -867,13.0,11.0,-1.5265676088395577,3.1734252729654173 -867,13.0,13.0,4.01751987283902,-5.424299332335067 -867,13.0,14.0,-2.4909522639994623,2.250874059369649 -867,14.0,11.0,-3.0953961826564296,6.097275864326261 -867,14.0,13.0,-2.4909522639994623,2.250874059369649 -867,14.0,14.0,7.554697395557554,-12.324214800477266 -867,14.0,22.0,-1.9683489489016612,3.976064876781356 -867,15.0,11.0,-1.9519977922801688,4.104359379111847 -867,15.0,15.0,3.271064728633931,-8.94513365126506 -867,15.0,16.0,-1.3190669363537617,4.8407742721532125 -867,16.0,9.0,-3.956039125715353,10.317447719844054 -867,16.0,15.0,-1.3190669363537617,4.8407742721532125 -867,16.0,16.0,5.275106062069114,-15.158221991997266 -867,17.0,17.0,3.0756864340087167,-6.218758799278971 -867,17.0,18.0,-3.0756864340087167,6.218758799278971 -867,18.0,17.0,-3.0756864340087167,6.218758799278971 -867,18.0,18.0,8.958039375185187,-17.98346468163191 -867,18.0,19.0,-5.88235294117647,11.76470588235294 -867,19.0,9.0,-1.7848303152666305,3.98535828943083 -867,19.0,18.0,-5.88235294117647,11.76470588235294 -867,19.0,19.0,7.6671832564431,-15.75006417178377 -867,20.0,9.0,-5.101853820159654,10.98071411292983 -867,20.0,20.0,21.876495189895888,-45.10843276170355 -867,20.0,21.0,-16.774641369736234,34.127718648773715 -867,21.0,9.0,-2.619319553382597,5.400770303329455 -867,21.0,20.0,-16.774641369736234,34.127718648773715 -867,21.0,21.0,21.93449907537439,-43.48289181517921 -867,21.0,23.0,-2.5405381522555563,3.95440286307604 -867,22.0,14.0,-1.9683489489016612,3.976064876781356 -867,22.0,22.0,3.429754555384988,-6.965303617315433 -867,22.0,23.0,-1.4614056064833263,2.989238740534077 -867,23.0,21.0,-2.5405381522555563,3.95440286307604 -867,23.0,22.0,-1.4614056064833263,2.989238740534077 -867,23.0,23.0,5.311836702613133,-9.188263657315172 -867,23.0,24.0,-1.3098929438742493,2.287622053705056 -867,24.0,23.0,-1.3098929438742493,2.287622053705056 -867,24.0,24.0,4.495715080321987,-7.864978761969621 -867,24.0,25.0,-1.2165301194494855,1.8171440463475024 -867,24.0,26.0,-1.9692920169982515,3.760212661917064 -867,25.0,24.0,-1.2165301194494855,1.8171440463475024 -867,25.0,25.0,1.2165301194494855,-1.8171440463475024 -867,26.0,24.0,-1.9692920169982515,3.760212661917064 -867,26.0,26.0,3.652281470778589,-9.46044252232512 -867,26.0,27.0,0.0,2.608731947574922 -867,26.0,28.0,-0.99553355095268,1.881005840357816 -867,26.0,29.0,-0.6874559028276572,1.293971494797717 -867,27.0,5.0,-4.362844058012917,15.463571542897856 -867,27.0,26.0,0.0,2.608731947574922 -867,27.0,27.0,4.362844058012917,-18.15204256311988 -867,28.0,26.0,-0.99553355095268,1.881005840357816 -867,28.0,28.0,1.9075867579849564,-3.604364401207048 -867,28.0,29.0,-0.9120532070322764,1.7233585608492326 -867,29.0,26.0,-0.6874559028276572,1.293971494797717 -867,29.0,28.0,-0.9120532070322764,1.7233585608492326 -867,29.0,29.0,1.5995091098599337,-3.0173300556469496 -868,0.0,0.0,6.765516048652632,-21.23160167089863 -868,0.0,1.0,-5.224646179885656,15.646726840803398 -868,0.0,2.0,-1.5408698687669766,5.631674830095234 -868,1.0,0.0,-5.224646179885656,15.646726840803398 -868,1.0,1.0,8.61632137735015,-25.897083564394716 -868,1.0,3.0,-1.7055303166990268,5.1973792282565086 -868,1.0,5.0,-1.6861448807654689,5.116477495334806 -868,2.0,0.0,-1.5408698687669766,5.631674830095234 -868,2.0,2.0,9.736318911079088,-29.13794745915803 -868,2.0,3.0,-8.19544904231211,23.5308726290628 -868,3.0,1.0,-1.7055303166990268,5.1973792282565086 -868,3.0,2.0,-8.19544904231211,23.5308726290628 -868,3.0,3.0,9.900979359011137,-33.202706969773025 -868,3.0,11.0,0.0,4.191255364806866 -868,4.0,4.0,2.954020035961983,-7.439067916773697 -868,4.0,6.0,-2.954020035961983,7.449267916773697 -868,5.0,1.0,-1.6861448807654689,5.116477495334806 -868,5.0,5.0,15.928507538860009,-58.60696415673565 -868,5.0,6.0,-3.590210423980992,11.02611441072814 -868,5.0,7.0,-6.289308176100628,22.0125786163522 -868,5.0,8.0,0.0,4.915840805411357 -868,5.0,27.0,-4.362844058012917,15.463571542897856 -868,6.0,4.0,-2.954020035961983,7.449267916773697 -868,6.0,5.0,-3.590210423980992,11.02611441072814 -868,6.0,6.0,6.544230459942975,-18.45668232750184 -868,7.0,5.0,-6.289308176100628,22.0125786163522 -868,7.0,7.0,7.733287237496075,-26.527493274828448 -868,7.0,27.0,-1.4439790613954469,4.540814658476248 -868,8.0,5.0,0.0,4.915840805411357 -868,8.0,8.0,0.0,-18.706293706293707 -868,8.0,9.0,0.0,9.090909090909092 -868,8.0,10.0,0.0,4.807692307692308 -868,9.0,8.0,0.0,9.090909090909092 -868,9.0,9.0,13.462042814524237,-39.58519951644326 -868,9.0,16.0,-3.956039125715353,10.317447719844054 -868,9.0,19.0,-1.7848303152666305,3.98535828943083 -868,9.0,20.0,-5.101853820159654,10.98071411292983 -868,9.0,21.0,-2.619319553382597,5.400770303329455 -868,10.0,8.0,0.0,4.807692307692308 -868,10.0,10.0,0.0,-4.807692307692308 -868,11.0,3.0,0.0,4.191255364806866 -868,11.0,11.0,3.478565401119727,-18.326891794934408 -868,11.0,12.0,0.0,7.142857142857143 -868,11.0,13.0,-1.5265676088395577,3.1734252729654173 -868,11.0,15.0,-1.9519977922801688,4.104359379111847 -868,12.0,11.0,0.0,7.142857142857143 -868,12.0,12.0,0.0,-7.142857142857143 -868,13.0,11.0,-1.5265676088395577,3.1734252729654173 -868,13.0,13.0,4.01751987283902,-5.424299332335067 -868,13.0,14.0,-2.4909522639994623,2.250874059369649 -868,14.0,13.0,-2.4909522639994623,2.250874059369649 -868,14.0,14.0,6.270102363308326,-9.9143578677817 -868,14.0,17.0,-1.8108011504072024,3.687418931630696 -868,14.0,22.0,-1.9683489489016612,3.976064876781356 -868,15.0,11.0,-1.9519977922801688,4.104359379111847 -868,15.0,15.0,3.271064728633931,-8.94513365126506 -868,15.0,16.0,-1.3190669363537617,4.8407742721532125 -868,16.0,9.0,-3.956039125715353,10.317447719844054 -868,16.0,15.0,-1.3190669363537617,4.8407742721532125 -868,16.0,16.0,5.275106062069114,-15.158221991997266 -868,17.0,14.0,-1.8108011504072024,3.687418931630696 -868,17.0,17.0,4.886487584415919,-9.906177730909668 -868,17.0,18.0,-3.0756864340087167,6.218758799278971 -868,18.0,17.0,-3.0756864340087167,6.218758799278971 -868,18.0,18.0,8.958039375185187,-17.98346468163191 -868,18.0,19.0,-5.88235294117647,11.76470588235294 -868,19.0,9.0,-1.7848303152666305,3.98535828943083 -868,19.0,18.0,-5.88235294117647,11.76470588235294 -868,19.0,19.0,7.6671832564431,-15.75006417178377 -868,20.0,9.0,-5.101853820159654,10.98071411292983 -868,20.0,20.0,21.876495189895888,-45.10843276170355 -868,20.0,21.0,-16.774641369736234,34.127718648773715 -868,21.0,9.0,-2.619319553382597,5.400770303329455 -868,21.0,20.0,-16.774641369736234,34.127718648773715 -868,21.0,21.0,21.93449907537439,-43.48289181517921 -868,21.0,23.0,-2.5405381522555563,3.95440286307604 -868,22.0,14.0,-1.9683489489016612,3.976064876781356 -868,22.0,22.0,1.9683489489016612,-3.976064876781356 -868,23.0,21.0,-2.5405381522555563,3.95440286307604 -868,23.0,23.0,3.850431096129806,-6.199024916781094 -868,23.0,24.0,-1.3098929438742493,2.287622053705056 -868,24.0,23.0,-1.3098929438742493,2.287622053705056 -868,24.0,24.0,4.495715080321987,-7.864978761969621 -868,24.0,25.0,-1.2165301194494855,1.8171440463475024 -868,24.0,26.0,-1.9692920169982515,3.760212661917064 -868,25.0,24.0,-1.2165301194494855,1.8171440463475024 -868,25.0,25.0,1.2165301194494855,-1.8171440463475024 -868,26.0,24.0,-1.9692920169982515,3.760212661917064 -868,26.0,26.0,3.652281470778589,-9.46044252232512 -868,26.0,27.0,0.0,2.608731947574922 -868,26.0,28.0,-0.99553355095268,1.881005840357816 -868,26.0,29.0,-0.6874559028276572,1.293971494797717 -868,27.0,5.0,-4.362844058012917,15.463571542897856 -868,27.0,7.0,-1.4439790613954469,4.540814658476248 -868,27.0,26.0,0.0,2.608731947574922 -868,27.0,27.0,5.806823119408364,-22.67145722159613 -868,28.0,26.0,-0.99553355095268,1.881005840357816 -868,28.0,28.0,1.9075867579849564,-3.604364401207048 -868,28.0,29.0,-0.9120532070322764,1.7233585608492326 -868,29.0,26.0,-0.6874559028276572,1.293971494797717 -868,29.0,28.0,-0.9120532070322764,1.7233585608492326 -868,29.0,29.0,1.5995091098599337,-3.0173300556469496 -869,0.0,0.0,6.765516048652632,-21.23160167089863 -869,0.0,1.0,-5.224646179885656,15.646726840803398 -869,0.0,2.0,-1.5408698687669766,5.631674830095234 -869,1.0,0.0,-5.224646179885656,15.646726840803398 -869,1.0,1.0,9.75228216552403,-30.648662892676068 -869,1.0,3.0,-1.7055303166990268,5.1973792282565086 -869,1.0,4.0,-1.1359607881738778,4.772479328281356 -869,1.0,5.0,-1.6861448807654689,5.116477495334806 -869,2.0,0.0,-1.5408698687669766,5.631674830095234 -869,2.0,2.0,9.736318911079088,-29.13794745915803 -869,2.0,3.0,-8.19544904231211,23.5308726290628 -869,3.0,1.0,-1.7055303166990268,5.1973792282565086 -869,3.0,2.0,-8.19544904231211,23.5308726290628 -869,3.0,3.0,16.314103089185693,-55.509410535254254 -869,3.0,5.0,-6.413123730174556,22.31120356548123 -869,3.0,11.0,0.0,4.191255364806866 -869,4.0,1.0,-1.1359607881738778,4.772479328281356 -869,4.0,4.0,4.089980824135861,-12.190647245055052 -869,4.0,6.0,-2.954020035961983,7.449267916773697 -869,5.0,1.0,-1.6861448807654689,5.116477495334806 -869,5.0,3.0,-6.413123730174556,22.31120356548123 -869,5.0,5.0,16.052323092933932,-60.8210692494267 -869,5.0,6.0,-3.590210423980992,11.02611441072814 -869,5.0,8.0,0.0,4.915840805411357 -869,5.0,9.0,0.0,1.8561002591115965 -869,5.0,27.0,-4.362844058012917,15.463571542897856 -869,6.0,4.0,-2.954020035961983,7.449267916773697 -869,6.0,5.0,-3.590210423980992,11.02611441072814 -869,6.0,6.0,6.544230459942975,-18.45668232750184 -869,7.0,7.0,1.4439790613954469,-4.519414658476248 -869,7.0,27.0,-1.4439790613954469,4.540814658476248 -869,8.0,5.0,0.0,4.915840805411357 -869,8.0,8.0,0.0,-9.615384615384617 -869,8.0,10.0,0.0,4.807692307692308 -869,9.0,5.0,0.0,1.8561002591115965 -869,9.0,9.0,8.36018899436458,-21.31213746368348 -869,9.0,16.0,-3.956039125715353,10.317447719844054 -869,9.0,19.0,-1.7848303152666305,3.98535828943083 -869,9.0,21.0,-2.619319553382597,5.400770303329455 -869,10.0,8.0,0.0,4.807692307692308 -869,10.0,10.0,0.0,-4.807692307692308 -869,11.0,3.0,0.0,4.191255364806866 -869,11.0,11.0,6.573961583776156,-24.424167659260668 -869,11.0,12.0,0.0,7.142857142857143 -869,11.0,13.0,-1.5265676088395577,3.1734252729654173 -869,11.0,14.0,-3.0953961826564296,6.097275864326261 -869,11.0,15.0,-1.9519977922801688,4.104359379111847 -869,12.0,11.0,0.0,7.142857142857143 -869,12.0,12.0,0.0,-7.142857142857143 -869,13.0,11.0,-1.5265676088395577,3.1734252729654173 -869,13.0,13.0,4.01751987283902,-5.424299332335067 -869,13.0,14.0,-2.4909522639994623,2.250874059369649 -869,14.0,11.0,-3.0953961826564296,6.097275864326261 -869,14.0,13.0,-2.4909522639994623,2.250874059369649 -869,14.0,14.0,9.365498545964757,-16.01163373210796 -869,14.0,17.0,-1.8108011504072024,3.687418931630696 -869,14.0,22.0,-1.9683489489016612,3.976064876781356 -869,15.0,11.0,-1.9519977922801688,4.104359379111847 -869,15.0,15.0,3.271064728633931,-8.94513365126506 -869,15.0,16.0,-1.3190669363537617,4.8407742721532125 -869,16.0,9.0,-3.956039125715353,10.317447719844054 -869,16.0,15.0,-1.3190669363537617,4.8407742721532125 -869,16.0,16.0,5.275106062069114,-15.158221991997266 -869,17.0,14.0,-1.8108011504072024,3.687418931630696 -869,17.0,17.0,4.886487584415919,-9.906177730909668 -869,17.0,18.0,-3.0756864340087167,6.218758799278971 -869,18.0,17.0,-3.0756864340087167,6.218758799278971 -869,18.0,18.0,8.958039375185187,-17.98346468163191 -869,18.0,19.0,-5.88235294117647,11.76470588235294 -869,19.0,9.0,-1.7848303152666305,3.98535828943083 -869,19.0,18.0,-5.88235294117647,11.76470588235294 -869,19.0,19.0,7.6671832564431,-15.75006417178377 -869,20.0,20.0,16.774641369736234,-34.127718648773715 -869,20.0,21.0,-16.774641369736234,34.127718648773715 -869,21.0,9.0,-2.619319553382597,5.400770303329455 -869,21.0,20.0,-16.774641369736234,34.127718648773715 -869,21.0,21.0,21.93449907537439,-43.48289181517921 -869,21.0,23.0,-2.5405381522555563,3.95440286307604 -869,22.0,14.0,-1.9683489489016612,3.976064876781356 -869,22.0,22.0,3.429754555384988,-6.965303617315433 -869,22.0,23.0,-1.4614056064833263,2.989238740534077 -869,23.0,21.0,-2.5405381522555563,3.95440286307604 -869,23.0,22.0,-1.4614056064833263,2.989238740534077 -869,23.0,23.0,5.311836702613133,-9.188263657315172 -869,23.0,24.0,-1.3098929438742493,2.287622053705056 -869,24.0,23.0,-1.3098929438742493,2.287622053705056 -869,24.0,24.0,4.495715080321987,-7.864978761969621 -869,24.0,25.0,-1.2165301194494855,1.8171440463475024 -869,24.0,26.0,-1.9692920169982515,3.760212661917064 -869,25.0,24.0,-1.2165301194494855,1.8171440463475024 -869,25.0,25.0,1.2165301194494855,-1.8171440463475024 -869,26.0,24.0,-1.9692920169982515,3.760212661917064 -869,26.0,26.0,3.652281470778589,-9.46044252232512 -869,26.0,27.0,0.0,2.608731947574922 -869,26.0,28.0,-0.99553355095268,1.881005840357816 -869,26.0,29.0,-0.6874559028276572,1.293971494797717 -869,27.0,5.0,-4.362844058012917,15.463571542897856 -869,27.0,7.0,-1.4439790613954469,4.540814658476248 -869,27.0,26.0,0.0,2.608731947574922 -869,27.0,27.0,5.806823119408364,-22.67145722159613 -869,28.0,26.0,-0.99553355095268,1.881005840357816 -869,28.0,28.0,1.9075867579849564,-3.604364401207048 -869,28.0,29.0,-0.9120532070322764,1.7233585608492326 -869,29.0,26.0,-0.6874559028276572,1.293971494797717 -869,29.0,28.0,-0.9120532070322764,1.7233585608492326 -869,29.0,29.0,1.5995091098599337,-3.0173300556469496 -870,0.0,0.0,6.765516048652632,-21.23160167089863 -870,0.0,1.0,-5.224646179885656,15.646726840803398 -870,0.0,2.0,-1.5408698687669766,5.631674830095234 -870,1.0,0.0,-5.224646179885656,15.646726840803398 -870,1.0,1.0,8.066137284758561,-25.55088539734126 -870,1.0,3.0,-1.7055303166990268,5.1973792282565086 -870,1.0,4.0,-1.1359607881738778,4.772479328281356 -870,2.0,0.0,-1.5408698687669766,5.631674830095234 -870,2.0,2.0,9.736318911079088,-29.13794745915803 -870,2.0,3.0,-8.19544904231211,23.5308726290628 -870,3.0,1.0,-1.7055303166990268,5.1973792282565086 -870,3.0,2.0,-8.19544904231211,23.5308726290628 -870,3.0,3.0,16.314103089185693,-55.509410535254254 -870,3.0,5.0,-6.413123730174556,22.31120356548123 -870,3.0,11.0,0.0,4.191255364806866 -870,4.0,1.0,-1.1359607881738778,4.772479328281356 -870,4.0,4.0,4.089980824135861,-12.190647245055052 -870,4.0,6.0,-2.954020035961983,7.449267916773697 -870,5.0,3.0,-6.413123730174556,22.31120356548123 -870,5.0,5.0,20.655486388269097,-77.7313703704441 -870,5.0,6.0,-3.590210423980992,11.02611441072814 -870,5.0,7.0,-6.289308176100628,22.0125786163522 -870,5.0,8.0,0.0,4.915840805411357 -870,5.0,9.0,0.0,1.8561002591115965 -870,5.0,27.0,-4.362844058012917,15.463571542897856 -870,6.0,4.0,-2.954020035961983,7.449267916773697 -870,6.0,5.0,-3.590210423980992,11.02611441072814 -870,6.0,6.0,6.544230459942975,-18.45668232750184 -870,7.0,5.0,-6.289308176100628,22.0125786163522 -870,7.0,7.0,7.733287237496075,-26.527493274828448 -870,7.0,27.0,-1.4439790613954469,4.540814658476248 -870,8.0,5.0,0.0,4.915840805411357 -870,8.0,8.0,0.0,-9.615384615384617 -870,8.0,10.0,0.0,4.807692307692308 -870,9.0,5.0,0.0,1.8561002591115965 -870,9.0,9.0,13.462042814524237,-32.29285157661331 -870,9.0,16.0,-3.956039125715353,10.317447719844054 -870,9.0,19.0,-1.7848303152666305,3.98535828943083 -870,9.0,20.0,-5.101853820159654,10.98071411292983 -870,9.0,21.0,-2.619319553382597,5.400770303329455 -870,10.0,8.0,0.0,4.807692307692308 -870,10.0,10.0,0.0,-4.807692307692308 -870,11.0,3.0,0.0,4.191255364806866 -870,11.0,11.0,6.573961583776156,-24.424167659260668 -870,11.0,12.0,0.0,7.142857142857143 -870,11.0,13.0,-1.5265676088395577,3.1734252729654173 -870,11.0,14.0,-3.0953961826564296,6.097275864326261 -870,11.0,15.0,-1.9519977922801688,4.104359379111847 -870,12.0,11.0,0.0,7.142857142857143 -870,12.0,12.0,0.0,-7.142857142857143 -870,13.0,11.0,-1.5265676088395577,3.1734252729654173 -870,13.0,13.0,4.01751987283902,-5.424299332335067 -870,13.0,14.0,-2.4909522639994623,2.250874059369649 -870,14.0,11.0,-3.0953961826564296,6.097275864326261 -870,14.0,13.0,-2.4909522639994623,2.250874059369649 -870,14.0,14.0,9.365498545964757,-16.01163373210796 -870,14.0,17.0,-1.8108011504072024,3.687418931630696 -870,14.0,22.0,-1.9683489489016612,3.976064876781356 -870,15.0,11.0,-1.9519977922801688,4.104359379111847 -870,15.0,15.0,3.271064728633931,-8.94513365126506 -870,15.0,16.0,-1.3190669363537617,4.8407742721532125 -870,16.0,9.0,-3.956039125715353,10.317447719844054 -870,16.0,15.0,-1.3190669363537617,4.8407742721532125 -870,16.0,16.0,5.275106062069114,-15.158221991997266 -870,17.0,14.0,-1.8108011504072024,3.687418931630696 -870,17.0,17.0,4.886487584415919,-9.906177730909668 -870,17.0,18.0,-3.0756864340087167,6.218758799278971 -870,18.0,17.0,-3.0756864340087167,6.218758799278971 -870,18.0,18.0,8.958039375185187,-17.98346468163191 -870,18.0,19.0,-5.88235294117647,11.76470588235294 -870,19.0,9.0,-1.7848303152666305,3.98535828943083 -870,19.0,18.0,-5.88235294117647,11.76470588235294 -870,19.0,19.0,7.6671832564431,-15.75006417178377 -870,20.0,9.0,-5.101853820159654,10.98071411292983 -870,20.0,20.0,21.876495189895888,-45.10843276170355 -870,20.0,21.0,-16.774641369736234,34.127718648773715 -870,21.0,9.0,-2.619319553382597,5.400770303329455 -870,21.0,20.0,-16.774641369736234,34.127718648773715 -870,21.0,21.0,21.93449907537439,-43.48289181517921 -870,21.0,23.0,-2.5405381522555563,3.95440286307604 -870,22.0,14.0,-1.9683489489016612,3.976064876781356 -870,22.0,22.0,3.429754555384988,-6.965303617315433 -870,22.0,23.0,-1.4614056064833263,2.989238740534077 -870,23.0,21.0,-2.5405381522555563,3.95440286307604 -870,23.0,22.0,-1.4614056064833263,2.989238740534077 -870,23.0,23.0,5.311836702613133,-9.188263657315172 -870,23.0,24.0,-1.3098929438742493,2.287622053705056 -870,24.0,23.0,-1.3098929438742493,2.287622053705056 -870,24.0,24.0,4.495715080321987,-7.864978761969621 -870,24.0,25.0,-1.2165301194494855,1.8171440463475024 -870,24.0,26.0,-1.9692920169982515,3.760212661917064 -870,25.0,24.0,-1.2165301194494855,1.8171440463475024 -870,25.0,25.0,1.2165301194494855,-1.8171440463475024 -870,26.0,24.0,-1.9692920169982515,3.760212661917064 -870,26.0,26.0,3.652281470778589,-9.46044252232512 -870,26.0,27.0,0.0,2.608731947574922 -870,26.0,28.0,-0.99553355095268,1.881005840357816 -870,26.0,29.0,-0.6874559028276572,1.293971494797717 -870,27.0,5.0,-4.362844058012917,15.463571542897856 -870,27.0,7.0,-1.4439790613954469,4.540814658476248 -870,27.0,26.0,0.0,2.608731947574922 -870,27.0,27.0,5.806823119408364,-22.67145722159613 -870,28.0,26.0,-0.99553355095268,1.881005840357816 -870,28.0,28.0,1.9075867579849564,-3.604364401207048 -870,28.0,29.0,-0.9120532070322764,1.7233585608492326 -870,29.0,26.0,-0.6874559028276572,1.293971494797717 -870,29.0,28.0,-0.9120532070322764,1.7233585608492326 -870,29.0,29.0,1.5995091098599337,-3.0173300556469496 -871,0.0,0.0,6.765516048652632,-21.23160167089863 -871,0.0,1.0,-5.224646179885656,15.646726840803398 -871,0.0,2.0,-1.5408698687669766,5.631674830095234 -871,1.0,0.0,-5.224646179885656,15.646726840803398 -871,1.0,1.0,9.75228216552403,-30.648662892676068 -871,1.0,3.0,-1.7055303166990268,5.1973792282565086 -871,1.0,4.0,-1.1359607881738778,4.772479328281356 -871,1.0,5.0,-1.6861448807654689,5.116477495334806 -871,2.0,0.0,-1.5408698687669766,5.631674830095234 -871,2.0,2.0,9.736318911079088,-29.13794745915803 -871,2.0,3.0,-8.19544904231211,23.5308726290628 -871,3.0,1.0,-1.7055303166990268,5.1973792282565086 -871,3.0,2.0,-8.19544904231211,23.5308726290628 -871,3.0,3.0,16.314103089185693,-55.509410535254254 -871,3.0,5.0,-6.413123730174556,22.31120356548123 -871,3.0,11.0,0.0,4.191255364806866 -871,4.0,1.0,-1.1359607881738778,4.772479328281356 -871,4.0,4.0,4.089980824135861,-12.190647245055052 -871,4.0,6.0,-2.954020035961983,7.449267916773697 -871,5.0,1.0,-1.6861448807654689,5.116477495334806 -871,5.0,3.0,-6.413123730174556,22.31120356548123 -871,5.0,5.0,18.75142084505357,-71.81153345505078 -871,5.0,7.0,-6.289308176100628,22.0125786163522 -871,5.0,8.0,0.0,4.915840805411357 -871,5.0,9.0,0.0,1.8561002591115965 -871,5.0,27.0,-4.362844058012917,15.463571542897856 -871,6.0,4.0,-2.954020035961983,7.449267916773697 -871,6.0,6.0,2.954020035961983,-7.439067916773697 -871,7.0,5.0,-6.289308176100628,22.0125786163522 -871,7.0,7.0,7.733287237496075,-26.527493274828448 -871,7.0,27.0,-1.4439790613954469,4.540814658476248 -871,8.0,5.0,0.0,4.915840805411357 -871,8.0,8.0,0.0,-18.706293706293707 -871,8.0,9.0,0.0,9.090909090909092 -871,8.0,10.0,0.0,4.807692307692308 -871,9.0,5.0,0.0,1.8561002591115965 -871,9.0,8.0,0.0,9.090909090909092 -871,9.0,9.0,13.462042814524237,-41.3837606675224 -871,9.0,16.0,-3.956039125715353,10.317447719844054 -871,9.0,19.0,-1.7848303152666305,3.98535828943083 -871,9.0,20.0,-5.101853820159654,10.98071411292983 -871,9.0,21.0,-2.619319553382597,5.400770303329455 -871,10.0,8.0,0.0,4.807692307692308 -871,10.0,10.0,0.0,-4.807692307692308 -871,11.0,3.0,0.0,4.191255364806866 -871,11.0,11.0,6.573961583776156,-24.424167659260668 -871,11.0,12.0,0.0,7.142857142857143 -871,11.0,13.0,-1.5265676088395577,3.1734252729654173 -871,11.0,14.0,-3.0953961826564296,6.097275864326261 -871,11.0,15.0,-1.9519977922801688,4.104359379111847 -871,12.0,11.0,0.0,7.142857142857143 -871,12.0,12.0,0.0,-7.142857142857143 -871,13.0,11.0,-1.5265676088395577,3.1734252729654173 -871,13.0,13.0,4.01751987283902,-5.424299332335067 -871,13.0,14.0,-2.4909522639994623,2.250874059369649 -871,14.0,11.0,-3.0953961826564296,6.097275864326261 -871,14.0,13.0,-2.4909522639994623,2.250874059369649 -871,14.0,14.0,9.365498545964757,-16.01163373210796 -871,14.0,17.0,-1.8108011504072024,3.687418931630696 -871,14.0,22.0,-1.9683489489016612,3.976064876781356 -871,15.0,11.0,-1.9519977922801688,4.104359379111847 -871,15.0,15.0,3.271064728633931,-8.94513365126506 -871,15.0,16.0,-1.3190669363537617,4.8407742721532125 -871,16.0,9.0,-3.956039125715353,10.317447719844054 -871,16.0,15.0,-1.3190669363537617,4.8407742721532125 -871,16.0,16.0,5.275106062069114,-15.158221991997266 -871,17.0,14.0,-1.8108011504072024,3.687418931630696 -871,17.0,17.0,4.886487584415919,-9.906177730909668 -871,17.0,18.0,-3.0756864340087167,6.218758799278971 -871,18.0,17.0,-3.0756864340087167,6.218758799278971 -871,18.0,18.0,8.958039375185187,-17.98346468163191 -871,18.0,19.0,-5.88235294117647,11.76470588235294 -871,19.0,9.0,-1.7848303152666305,3.98535828943083 -871,19.0,18.0,-5.88235294117647,11.76470588235294 -871,19.0,19.0,7.6671832564431,-15.75006417178377 -871,20.0,9.0,-5.101853820159654,10.98071411292983 -871,20.0,20.0,21.876495189895888,-45.10843276170355 -871,20.0,21.0,-16.774641369736234,34.127718648773715 -871,21.0,9.0,-2.619319553382597,5.400770303329455 -871,21.0,20.0,-16.774641369736234,34.127718648773715 -871,21.0,21.0,21.93449907537439,-43.48289181517921 -871,21.0,23.0,-2.5405381522555563,3.95440286307604 -871,22.0,14.0,-1.9683489489016612,3.976064876781356 -871,22.0,22.0,3.429754555384988,-6.965303617315433 -871,22.0,23.0,-1.4614056064833263,2.989238740534077 -871,23.0,21.0,-2.5405381522555563,3.95440286307604 -871,23.0,22.0,-1.4614056064833263,2.989238740534077 -871,23.0,23.0,5.311836702613133,-9.188263657315172 -871,23.0,24.0,-1.3098929438742493,2.287622053705056 -871,24.0,23.0,-1.3098929438742493,2.287622053705056 -871,24.0,24.0,4.495715080321987,-7.864978761969621 -871,24.0,25.0,-1.2165301194494855,1.8171440463475024 -871,24.0,26.0,-1.9692920169982515,3.760212661917064 -871,25.0,24.0,-1.2165301194494855,1.8171440463475024 -871,25.0,25.0,1.2165301194494855,-1.8171440463475024 -871,26.0,24.0,-1.9692920169982515,3.760212661917064 -871,26.0,26.0,3.652281470778589,-9.46044252232512 -871,26.0,27.0,0.0,2.608731947574922 -871,26.0,28.0,-0.99553355095268,1.881005840357816 -871,26.0,29.0,-0.6874559028276572,1.293971494797717 -871,27.0,5.0,-4.362844058012917,15.463571542897856 -871,27.0,7.0,-1.4439790613954469,4.540814658476248 -871,27.0,26.0,0.0,2.608731947574922 -871,27.0,27.0,5.806823119408364,-22.67145722159613 -871,28.0,26.0,-0.99553355095268,1.881005840357816 -871,28.0,28.0,1.9075867579849564,-3.604364401207048 -871,28.0,29.0,-0.9120532070322764,1.7233585608492326 -871,29.0,26.0,-0.6874559028276572,1.293971494797717 -871,29.0,28.0,-0.9120532070322764,1.7233585608492326 -871,29.0,29.0,1.5995091098599337,-3.0173300556469496 -872,0.0,0.0,6.765516048652632,-21.23160167089863 -872,0.0,1.0,-5.224646179885656,15.646726840803398 -872,0.0,2.0,-1.5408698687669766,5.631674830095234 -872,1.0,0.0,-5.224646179885656,15.646726840803398 -872,1.0,1.0,9.75228216552403,-30.648662892676068 -872,1.0,3.0,-1.7055303166990268,5.1973792282565086 -872,1.0,4.0,-1.1359607881738778,4.772479328281356 -872,1.0,5.0,-1.6861448807654689,5.116477495334806 -872,2.0,0.0,-1.5408698687669766,5.631674830095234 -872,2.0,2.0,9.736318911079088,-29.13794745915803 -872,2.0,3.0,-8.19544904231211,23.5308726290628 -872,3.0,1.0,-1.7055303166990268,5.1973792282565086 -872,3.0,2.0,-8.19544904231211,23.5308726290628 -872,3.0,3.0,16.314103089185693,-55.509410535254254 -872,3.0,5.0,-6.413123730174556,22.31120356548123 -872,3.0,11.0,0.0,4.191255364806866 -872,4.0,1.0,-1.1359607881738778,4.772479328281356 -872,4.0,4.0,4.089980824135861,-12.190647245055052 -872,4.0,6.0,-2.954020035961983,7.449267916773697 -872,5.0,1.0,-1.6861448807654689,5.116477495334806 -872,5.0,3.0,-6.413123730174556,22.31120356548123 -872,5.0,5.0,22.341631269034565,-82.8291478657789 -872,5.0,6.0,-3.590210423980992,11.02611441072814 -872,5.0,7.0,-6.289308176100628,22.0125786163522 -872,5.0,8.0,0.0,4.915840805411357 -872,5.0,9.0,0.0,1.8561002591115965 -872,5.0,27.0,-4.362844058012917,15.463571542897856 -872,6.0,4.0,-2.954020035961983,7.449267916773697 -872,6.0,5.0,-3.590210423980992,11.02611441072814 -872,6.0,6.0,6.544230459942975,-18.45668232750184 -872,7.0,5.0,-6.289308176100628,22.0125786163522 -872,7.0,7.0,7.733287237496075,-26.527493274828448 -872,7.0,27.0,-1.4439790613954469,4.540814658476248 -872,8.0,5.0,0.0,4.915840805411357 -872,8.0,8.0,0.0,-18.706293706293707 -872,8.0,9.0,0.0,9.090909090909092 -872,8.0,10.0,0.0,4.807692307692308 -872,9.0,5.0,0.0,1.8561002591115965 -872,9.0,8.0,0.0,9.090909090909092 -872,9.0,9.0,11.677212499257603,-37.39840237809157 -872,9.0,16.0,-3.956039125715353,10.317447719844054 -872,9.0,20.0,-5.101853820159654,10.98071411292983 -872,9.0,21.0,-2.619319553382597,5.400770303329455 -872,10.0,8.0,0.0,4.807692307692308 -872,10.0,10.0,0.0,-4.807692307692308 -872,11.0,3.0,0.0,4.191255364806866 -872,11.0,11.0,6.573961583776156,-24.424167659260668 -872,11.0,12.0,0.0,7.142857142857143 -872,11.0,13.0,-1.5265676088395577,3.1734252729654173 -872,11.0,14.0,-3.0953961826564296,6.097275864326261 -872,11.0,15.0,-1.9519977922801688,4.104359379111847 -872,12.0,11.0,0.0,7.142857142857143 -872,12.0,12.0,0.0,-7.142857142857143 -872,13.0,11.0,-1.5265676088395577,3.1734252729654173 -872,13.0,13.0,4.01751987283902,-5.424299332335067 -872,13.0,14.0,-2.4909522639994623,2.250874059369649 -872,14.0,11.0,-3.0953961826564296,6.097275864326261 -872,14.0,13.0,-2.4909522639994623,2.250874059369649 -872,14.0,14.0,9.365498545964757,-16.01163373210796 -872,14.0,17.0,-1.8108011504072024,3.687418931630696 -872,14.0,22.0,-1.9683489489016612,3.976064876781356 -872,15.0,11.0,-1.9519977922801688,4.104359379111847 -872,15.0,15.0,3.271064728633931,-8.94513365126506 -872,15.0,16.0,-1.3190669363537617,4.8407742721532125 -872,16.0,9.0,-3.956039125715353,10.317447719844054 -872,16.0,15.0,-1.3190669363537617,4.8407742721532125 -872,16.0,16.0,5.275106062069114,-15.158221991997266 -872,17.0,14.0,-1.8108011504072024,3.687418931630696 -872,17.0,17.0,4.886487584415919,-9.906177730909668 -872,17.0,18.0,-3.0756864340087167,6.218758799278971 -872,18.0,17.0,-3.0756864340087167,6.218758799278971 -872,18.0,18.0,8.958039375185187,-17.98346468163191 -872,18.0,19.0,-5.88235294117647,11.76470588235294 -872,19.0,18.0,-5.88235294117647,11.76470588235294 -872,19.0,19.0,5.88235294117647,-11.76470588235294 -872,20.0,9.0,-5.101853820159654,10.98071411292983 -872,20.0,20.0,21.876495189895888,-45.10843276170355 -872,20.0,21.0,-16.774641369736234,34.127718648773715 -872,21.0,9.0,-2.619319553382597,5.400770303329455 -872,21.0,20.0,-16.774641369736234,34.127718648773715 -872,21.0,21.0,21.93449907537439,-43.48289181517921 -872,21.0,23.0,-2.5405381522555563,3.95440286307604 -872,22.0,14.0,-1.9683489489016612,3.976064876781356 -872,22.0,22.0,3.429754555384988,-6.965303617315433 -872,22.0,23.0,-1.4614056064833263,2.989238740534077 -872,23.0,21.0,-2.5405381522555563,3.95440286307604 -872,23.0,22.0,-1.4614056064833263,2.989238740534077 -872,23.0,23.0,5.311836702613133,-9.188263657315172 -872,23.0,24.0,-1.3098929438742493,2.287622053705056 -872,24.0,23.0,-1.3098929438742493,2.287622053705056 -872,24.0,24.0,4.495715080321987,-7.864978761969621 -872,24.0,25.0,-1.2165301194494855,1.8171440463475024 -872,24.0,26.0,-1.9692920169982515,3.760212661917064 -872,25.0,24.0,-1.2165301194494855,1.8171440463475024 -872,25.0,25.0,1.2165301194494855,-1.8171440463475024 -872,26.0,24.0,-1.9692920169982515,3.760212661917064 -872,26.0,26.0,3.652281470778589,-9.46044252232512 -872,26.0,27.0,0.0,2.608731947574922 -872,26.0,28.0,-0.99553355095268,1.881005840357816 -872,26.0,29.0,-0.6874559028276572,1.293971494797717 -872,27.0,5.0,-4.362844058012917,15.463571542897856 -872,27.0,7.0,-1.4439790613954469,4.540814658476248 -872,27.0,26.0,0.0,2.608731947574922 -872,27.0,27.0,5.806823119408364,-22.67145722159613 -872,28.0,26.0,-0.99553355095268,1.881005840357816 -872,28.0,28.0,1.9075867579849564,-3.604364401207048 -872,28.0,29.0,-0.9120532070322764,1.7233585608492326 -872,29.0,26.0,-0.6874559028276572,1.293971494797717 -872,29.0,28.0,-0.9120532070322764,1.7233585608492326 -872,29.0,29.0,1.5995091098599337,-3.0173300556469496 -873,0.0,0.0,6.765516048652632,-21.23160167089863 -873,0.0,1.0,-5.224646179885656,15.646726840803398 -873,0.0,2.0,-1.5408698687669766,5.631674830095234 -873,1.0,0.0,-5.224646179885656,15.646726840803398 -873,1.0,1.0,9.75228216552403,-30.648662892676068 -873,1.0,3.0,-1.7055303166990268,5.1973792282565086 -873,1.0,4.0,-1.1359607881738778,4.772479328281356 -873,1.0,5.0,-1.6861448807654689,5.116477495334806 -873,2.0,0.0,-1.5408698687669766,5.631674830095234 -873,2.0,2.0,9.736318911079088,-29.13794745915803 -873,2.0,3.0,-8.19544904231211,23.5308726290628 -873,3.0,1.0,-1.7055303166990268,5.1973792282565086 -873,3.0,2.0,-8.19544904231211,23.5308726290628 -873,3.0,3.0,16.314103089185693,-55.509410535254254 -873,3.0,5.0,-6.413123730174556,22.31120356548123 -873,3.0,11.0,0.0,4.191255364806866 -873,4.0,1.0,-1.1359607881738778,4.772479328281356 -873,4.0,4.0,4.089980824135861,-12.190647245055052 -873,4.0,6.0,-2.954020035961983,7.449267916773697 -873,5.0,1.0,-1.6861448807654689,5.116477495334806 -873,5.0,3.0,-6.413123730174556,22.31120356548123 -873,5.0,5.0,16.052323092933932,-60.8210692494267 -873,5.0,6.0,-3.590210423980992,11.02611441072814 -873,5.0,8.0,0.0,4.915840805411357 -873,5.0,9.0,0.0,1.8561002591115965 -873,5.0,27.0,-4.362844058012917,15.463571542897856 -873,6.0,4.0,-2.954020035961983,7.449267916773697 -873,6.0,5.0,-3.590210423980992,11.02611441072814 -873,6.0,6.0,6.544230459942975,-18.45668232750184 -873,7.0,7.0,1.4439790613954469,-4.519414658476248 -873,7.0,27.0,-1.4439790613954469,4.540814658476248 -873,8.0,5.0,0.0,4.915840805411357 -873,8.0,8.0,0.0,-18.706293706293707 -873,8.0,9.0,0.0,9.090909090909092 -873,8.0,10.0,0.0,4.807692307692308 -873,9.0,5.0,0.0,1.8561002591115965 -873,9.0,8.0,0.0,9.090909090909092 -873,9.0,9.0,13.462042814524237,-41.3837606675224 -873,9.0,16.0,-3.956039125715353,10.317447719844054 -873,9.0,19.0,-1.7848303152666305,3.98535828943083 -873,9.0,20.0,-5.101853820159654,10.98071411292983 -873,9.0,21.0,-2.619319553382597,5.400770303329455 -873,10.0,8.0,0.0,4.807692307692308 -873,10.0,10.0,0.0,-4.807692307692308 -873,11.0,3.0,0.0,4.191255364806866 -873,11.0,11.0,4.621963791495987,-20.31980828014882 -873,11.0,12.0,0.0,7.142857142857143 -873,11.0,13.0,-1.5265676088395577,3.1734252729654173 -873,11.0,14.0,-3.0953961826564296,6.097275864326261 -873,12.0,11.0,0.0,7.142857142857143 -873,12.0,12.0,0.0,-7.142857142857143 -873,13.0,11.0,-1.5265676088395577,3.1734252729654173 -873,13.0,13.0,4.01751987283902,-5.424299332335067 -873,13.0,14.0,-2.4909522639994623,2.250874059369649 -873,14.0,11.0,-3.0953961826564296,6.097275864326261 -873,14.0,13.0,-2.4909522639994623,2.250874059369649 -873,14.0,14.0,9.365498545964757,-16.01163373210796 -873,14.0,17.0,-1.8108011504072024,3.687418931630696 -873,14.0,22.0,-1.9683489489016612,3.976064876781356 -873,15.0,15.0,1.3190669363537617,-4.8407742721532125 -873,15.0,16.0,-1.3190669363537617,4.8407742721532125 -873,16.0,9.0,-3.956039125715353,10.317447719844054 -873,16.0,15.0,-1.3190669363537617,4.8407742721532125 -873,16.0,16.0,5.275106062069114,-15.158221991997266 -873,17.0,14.0,-1.8108011504072024,3.687418931630696 -873,17.0,17.0,1.8108011504072024,-3.687418931630696 -873,18.0,18.0,5.88235294117647,-11.76470588235294 -873,18.0,19.0,-5.88235294117647,11.76470588235294 -873,19.0,9.0,-1.7848303152666305,3.98535828943083 -873,19.0,18.0,-5.88235294117647,11.76470588235294 -873,19.0,19.0,7.6671832564431,-15.75006417178377 -873,20.0,9.0,-5.101853820159654,10.98071411292983 -873,20.0,20.0,21.876495189895888,-45.10843276170355 -873,20.0,21.0,-16.774641369736234,34.127718648773715 -873,21.0,9.0,-2.619319553382597,5.400770303329455 -873,21.0,20.0,-16.774641369736234,34.127718648773715 -873,21.0,21.0,19.393960923118836,-39.52848895210317 -873,22.0,14.0,-1.9683489489016612,3.976064876781356 -873,22.0,22.0,3.429754555384988,-6.965303617315433 -873,22.0,23.0,-1.4614056064833263,2.989238740534077 -873,23.0,22.0,-1.4614056064833263,2.989238740534077 -873,23.0,23.0,2.771298550357576,-5.233860794239132 -873,23.0,24.0,-1.3098929438742493,2.287622053705056 -873,24.0,23.0,-1.3098929438742493,2.287622053705056 -873,24.0,24.0,4.495715080321987,-7.864978761969621 -873,24.0,25.0,-1.2165301194494855,1.8171440463475024 -873,24.0,26.0,-1.9692920169982515,3.760212661917064 -873,25.0,24.0,-1.2165301194494855,1.8171440463475024 -873,25.0,25.0,1.2165301194494855,-1.8171440463475024 -873,26.0,24.0,-1.9692920169982515,3.760212661917064 -873,26.0,26.0,3.652281470778589,-9.46044252232512 -873,26.0,27.0,0.0,2.608731947574922 -873,26.0,28.0,-0.99553355095268,1.881005840357816 -873,26.0,29.0,-0.6874559028276572,1.293971494797717 -873,27.0,5.0,-4.362844058012917,15.463571542897856 -873,27.0,7.0,-1.4439790613954469,4.540814658476248 -873,27.0,26.0,0.0,2.608731947574922 -873,27.0,27.0,5.806823119408364,-22.67145722159613 -873,28.0,26.0,-0.99553355095268,1.881005840357816 -873,28.0,28.0,1.9075867579849564,-3.604364401207048 -873,28.0,29.0,-0.9120532070322764,1.7233585608492326 -873,29.0,26.0,-0.6874559028276572,1.293971494797717 -873,29.0,28.0,-0.9120532070322764,1.7233585608492326 -873,29.0,29.0,1.5995091098599337,-3.0173300556469496 -874,0.0,0.0,6.765516048652632,-21.23160167089863 -874,0.0,1.0,-5.224646179885656,15.646726840803398 -874,0.0,2.0,-1.5408698687669766,5.631674830095234 -874,1.0,0.0,-5.224646179885656,15.646726840803398 -874,1.0,1.0,9.75228216552403,-30.648662892676068 -874,1.0,3.0,-1.7055303166990268,5.1973792282565086 -874,1.0,4.0,-1.1359607881738778,4.772479328281356 -874,1.0,5.0,-1.6861448807654689,5.116477495334806 -874,2.0,0.0,-1.5408698687669766,5.631674830095234 -874,2.0,2.0,9.736318911079088,-29.13794745915803 -874,2.0,3.0,-8.19544904231211,23.5308726290628 -874,3.0,1.0,-1.7055303166990268,5.1973792282565086 -874,3.0,2.0,-8.19544904231211,23.5308726290628 -874,3.0,3.0,16.314103089185693,-55.509410535254254 -874,3.0,5.0,-6.413123730174556,22.31120356548123 -874,3.0,11.0,0.0,4.191255364806866 -874,4.0,1.0,-1.1359607881738778,4.772479328281356 -874,4.0,4.0,4.089980824135861,-12.190647245055052 -874,4.0,6.0,-2.954020035961983,7.449267916773697 -874,5.0,1.0,-1.6861448807654689,5.116477495334806 -874,5.0,3.0,-6.413123730174556,22.31120356548123 -874,5.0,5.0,22.341631269034565,-82.8291478657789 -874,5.0,6.0,-3.590210423980992,11.02611441072814 -874,5.0,7.0,-6.289308176100628,22.0125786163522 -874,5.0,8.0,0.0,4.915840805411357 -874,5.0,9.0,0.0,1.8561002591115965 -874,5.0,27.0,-4.362844058012917,15.463571542897856 -874,6.0,4.0,-2.954020035961983,7.449267916773697 -874,6.0,5.0,-3.590210423980992,11.02611441072814 -874,6.0,6.0,6.544230459942975,-18.45668232750184 -874,7.0,5.0,-6.289308176100628,22.0125786163522 -874,7.0,7.0,7.733287237496075,-26.527493274828448 -874,7.0,27.0,-1.4439790613954469,4.540814658476248 -874,8.0,5.0,0.0,4.915840805411357 -874,8.0,8.0,0.0,-18.706293706293707 -874,8.0,9.0,0.0,9.090909090909092 -874,8.0,10.0,0.0,4.807692307692308 -874,9.0,5.0,0.0,1.8561002591115965 -874,9.0,8.0,0.0,9.090909090909092 -874,9.0,9.0,10.842723261141638,-35.98299036419294 -874,9.0,16.0,-3.956039125715353,10.317447719844054 -874,9.0,19.0,-1.7848303152666305,3.98535828943083 -874,9.0,20.0,-5.101853820159654,10.98071411292983 -874,10.0,8.0,0.0,4.807692307692308 -874,10.0,10.0,0.0,-4.807692307692308 -874,11.0,3.0,0.0,4.191255364806866 -874,11.0,11.0,5.047393974936599,-21.25074238629525 -874,11.0,12.0,0.0,7.142857142857143 -874,11.0,14.0,-3.0953961826564296,6.097275864326261 -874,11.0,15.0,-1.9519977922801688,4.104359379111847 -874,12.0,11.0,0.0,7.142857142857143 -874,12.0,12.0,0.0,-7.142857142857143 -874,13.0,13.0,2.4909522639994623,-2.250874059369649 -874,13.0,14.0,-2.4909522639994623,2.250874059369649 -874,14.0,11.0,-3.0953961826564296,6.097275864326261 -874,14.0,13.0,-2.4909522639994623,2.250874059369649 -874,14.0,14.0,9.365498545964757,-16.01163373210796 -874,14.0,17.0,-1.8108011504072024,3.687418931630696 -874,14.0,22.0,-1.9683489489016612,3.976064876781356 -874,15.0,11.0,-1.9519977922801688,4.104359379111847 -874,15.0,15.0,3.271064728633931,-8.94513365126506 -874,15.0,16.0,-1.3190669363537617,4.8407742721532125 -874,16.0,9.0,-3.956039125715353,10.317447719844054 -874,16.0,15.0,-1.3190669363537617,4.8407742721532125 -874,16.0,16.0,5.275106062069114,-15.158221991997266 -874,17.0,14.0,-1.8108011504072024,3.687418931630696 -874,17.0,17.0,4.886487584415919,-9.906177730909668 -874,17.0,18.0,-3.0756864340087167,6.218758799278971 -874,18.0,17.0,-3.0756864340087167,6.218758799278971 -874,18.0,18.0,8.958039375185187,-17.98346468163191 -874,18.0,19.0,-5.88235294117647,11.76470588235294 -874,19.0,9.0,-1.7848303152666305,3.98535828943083 -874,19.0,18.0,-5.88235294117647,11.76470588235294 -874,19.0,19.0,7.6671832564431,-15.75006417178377 -874,20.0,9.0,-5.101853820159654,10.98071411292983 -874,20.0,20.0,21.876495189895888,-45.10843276170355 -874,20.0,21.0,-16.774641369736234,34.127718648773715 -874,21.0,20.0,-16.774641369736234,34.127718648773715 -874,21.0,21.0,19.31517952199179,-38.08212151184976 -874,21.0,23.0,-2.5405381522555563,3.95440286307604 -874,22.0,14.0,-1.9683489489016612,3.976064876781356 -874,22.0,22.0,3.429754555384988,-6.965303617315433 -874,22.0,23.0,-1.4614056064833263,2.989238740534077 -874,23.0,21.0,-2.5405381522555563,3.95440286307604 -874,23.0,22.0,-1.4614056064833263,2.989238740534077 -874,23.0,23.0,5.311836702613133,-9.188263657315172 -874,23.0,24.0,-1.3098929438742493,2.287622053705056 -874,24.0,23.0,-1.3098929438742493,2.287622053705056 -874,24.0,24.0,4.495715080321987,-7.864978761969621 -874,24.0,25.0,-1.2165301194494855,1.8171440463475024 -874,24.0,26.0,-1.9692920169982515,3.760212661917064 -874,25.0,24.0,-1.2165301194494855,1.8171440463475024 -874,25.0,25.0,1.2165301194494855,-1.8171440463475024 -874,26.0,24.0,-1.9692920169982515,3.760212661917064 -874,26.0,26.0,3.652281470778589,-9.46044252232512 -874,26.0,27.0,0.0,2.608731947574922 -874,26.0,28.0,-0.99553355095268,1.881005840357816 -874,26.0,29.0,-0.6874559028276572,1.293971494797717 -874,27.0,5.0,-4.362844058012917,15.463571542897856 -874,27.0,7.0,-1.4439790613954469,4.540814658476248 -874,27.0,26.0,0.0,2.608731947574922 -874,27.0,27.0,5.806823119408364,-22.67145722159613 -874,28.0,26.0,-0.99553355095268,1.881005840357816 -874,28.0,28.0,0.99553355095268,-1.881005840357816 -874,29.0,26.0,-0.6874559028276572,1.293971494797717 -874,29.0,29.0,0.6874559028276572,-1.293971494797717 -875,0.0,0.0,6.765516048652632,-21.23160167089863 -875,0.0,1.0,-5.224646179885656,15.646726840803398 -875,0.0,2.0,-1.5408698687669766,5.631674830095234 -875,1.0,0.0,-5.224646179885656,15.646726840803398 -875,1.0,1.0,8.046751848825002,-25.46968366441956 -875,1.0,4.0,-1.1359607881738778,4.772479328281356 -875,1.0,5.0,-1.6861448807654689,5.116477495334806 -875,2.0,0.0,-1.5408698687669766,5.631674830095234 -875,2.0,2.0,9.736318911079088,-29.13794745915803 -875,2.0,3.0,-8.19544904231211,23.5308726290628 -875,3.0,2.0,-8.19544904231211,23.5308726290628 -875,3.0,3.0,14.608572772486664,-50.33043130699775 -875,3.0,5.0,-6.413123730174556,22.31120356548123 -875,3.0,11.0,0.0,4.191255364806866 -875,4.0,1.0,-1.1359607881738778,4.772479328281356 -875,4.0,4.0,4.089980824135861,-12.190647245055052 -875,4.0,6.0,-2.954020035961983,7.449267916773697 -875,5.0,1.0,-1.6861448807654689,5.116477495334806 -875,5.0,3.0,-6.413123730174556,22.31120356548123 -875,5.0,5.0,18.75142084505357,-71.81153345505078 -875,5.0,7.0,-6.289308176100628,22.0125786163522 -875,5.0,8.0,0.0,4.915840805411357 -875,5.0,9.0,0.0,1.8561002591115965 -875,5.0,27.0,-4.362844058012917,15.463571542897856 -875,6.0,4.0,-2.954020035961983,7.449267916773697 -875,6.0,6.0,2.954020035961983,-7.439067916773697 -875,7.0,5.0,-6.289308176100628,22.0125786163522 -875,7.0,7.0,6.289308176100628,-22.0080786163522 -875,8.0,5.0,0.0,4.915840805411357 -875,8.0,8.0,0.0,-18.706293706293707 -875,8.0,9.0,0.0,9.090909090909092 -875,8.0,10.0,0.0,4.807692307692308 -875,9.0,5.0,0.0,1.8561002591115965 -875,9.0,8.0,0.0,9.090909090909092 -875,9.0,9.0,10.842723261141638,-35.98299036419294 -875,9.0,16.0,-3.956039125715353,10.317447719844054 -875,9.0,19.0,-1.7848303152666305,3.98535828943083 -875,9.0,20.0,-5.101853820159654,10.98071411292983 -875,10.0,8.0,0.0,4.807692307692308 -875,10.0,10.0,0.0,-4.807692307692308 -875,11.0,3.0,0.0,4.191255364806866 -875,11.0,11.0,6.573961583776156,-24.424167659260668 -875,11.0,12.0,0.0,7.142857142857143 -875,11.0,13.0,-1.5265676088395577,3.1734252729654173 -875,11.0,14.0,-3.0953961826564296,6.097275864326261 -875,11.0,15.0,-1.9519977922801688,4.104359379111847 -875,12.0,11.0,0.0,7.142857142857143 -875,12.0,12.0,0.0,-7.142857142857143 -875,13.0,11.0,-1.5265676088395577,3.1734252729654173 -875,13.0,13.0,4.01751987283902,-5.424299332335067 -875,13.0,14.0,-2.4909522639994623,2.250874059369649 -875,14.0,11.0,-3.0953961826564296,6.097275864326261 -875,14.0,13.0,-2.4909522639994623,2.250874059369649 -875,14.0,14.0,9.365498545964757,-16.01163373210796 -875,14.0,17.0,-1.8108011504072024,3.687418931630696 -875,14.0,22.0,-1.9683489489016612,3.976064876781356 -875,15.0,11.0,-1.9519977922801688,4.104359379111847 -875,15.0,15.0,3.271064728633931,-8.94513365126506 -875,15.0,16.0,-1.3190669363537617,4.8407742721532125 -875,16.0,9.0,-3.956039125715353,10.317447719844054 -875,16.0,15.0,-1.3190669363537617,4.8407742721532125 -875,16.0,16.0,5.275106062069114,-15.158221991997266 -875,17.0,14.0,-1.8108011504072024,3.687418931630696 -875,17.0,17.0,4.886487584415919,-9.906177730909668 -875,17.0,18.0,-3.0756864340087167,6.218758799278971 -875,18.0,17.0,-3.0756864340087167,6.218758799278971 -875,18.0,18.0,8.958039375185187,-17.98346468163191 -875,18.0,19.0,-5.88235294117647,11.76470588235294 -875,19.0,9.0,-1.7848303152666305,3.98535828943083 -875,19.0,18.0,-5.88235294117647,11.76470588235294 -875,19.0,19.0,7.6671832564431,-15.75006417178377 -875,20.0,9.0,-5.101853820159654,10.98071411292983 -875,20.0,20.0,21.876495189895888,-45.10843276170355 -875,20.0,21.0,-16.774641369736234,34.127718648773715 -875,21.0,20.0,-16.774641369736234,34.127718648773715 -875,21.0,21.0,19.31517952199179,-38.08212151184976 -875,21.0,23.0,-2.5405381522555563,3.95440286307604 -875,22.0,14.0,-1.9683489489016612,3.976064876781356 -875,22.0,22.0,3.429754555384988,-6.965303617315433 -875,22.0,23.0,-1.4614056064833263,2.989238740534077 -875,23.0,21.0,-2.5405381522555563,3.95440286307604 -875,23.0,22.0,-1.4614056064833263,2.989238740534077 -875,23.0,23.0,5.311836702613133,-9.188263657315172 -875,23.0,24.0,-1.3098929438742493,2.287622053705056 -875,24.0,23.0,-1.3098929438742493,2.287622053705056 -875,24.0,24.0,4.495715080321987,-7.864978761969621 -875,24.0,25.0,-1.2165301194494855,1.8171440463475024 -875,24.0,26.0,-1.9692920169982515,3.760212661917064 -875,25.0,24.0,-1.2165301194494855,1.8171440463475024 -875,25.0,25.0,1.2165301194494855,-1.8171440463475024 -875,26.0,24.0,-1.9692920169982515,3.760212661917064 -875,26.0,26.0,3.652281470778589,-9.46044252232512 -875,26.0,27.0,0.0,2.608731947574922 -875,26.0,28.0,-0.99553355095268,1.881005840357816 -875,26.0,29.0,-0.6874559028276572,1.293971494797717 -875,27.0,5.0,-4.362844058012917,15.463571542897856 -875,27.0,26.0,0.0,2.608731947574922 -875,27.0,27.0,4.362844058012917,-18.15204256311988 -875,28.0,26.0,-0.99553355095268,1.881005840357816 -875,28.0,28.0,1.9075867579849564,-3.604364401207048 -875,28.0,29.0,-0.9120532070322764,1.7233585608492326 -875,29.0,26.0,-0.6874559028276572,1.293971494797717 -875,29.0,28.0,-0.9120532070322764,1.7233585608492326 -875,29.0,29.0,1.5995091098599337,-3.0173300556469496 -876,0.0,0.0,6.765516048652632,-21.23160167089863 -876,0.0,1.0,-5.224646179885656,15.646726840803398 -876,0.0,2.0,-1.5408698687669766,5.631674830095234 -876,1.0,0.0,-5.224646179885656,15.646726840803398 -876,1.0,1.0,9.75228216552403,-30.648662892676068 -876,1.0,3.0,-1.7055303166990268,5.1973792282565086 -876,1.0,4.0,-1.1359607881738778,4.772479328281356 -876,1.0,5.0,-1.6861448807654689,5.116477495334806 -876,2.0,0.0,-1.5408698687669766,5.631674830095234 -876,2.0,2.0,1.5408698687669766,-5.611274830095233 -876,3.0,1.0,-1.7055303166990268,5.1973792282565086 -876,3.0,3.0,8.118654046873583,-31.982737906191456 -876,3.0,5.0,-6.413123730174556,22.31120356548123 -876,3.0,11.0,0.0,4.191255364806866 -876,4.0,1.0,-1.1359607881738778,4.772479328281356 -876,4.0,4.0,4.089980824135861,-12.190647245055052 -876,4.0,6.0,-2.954020035961983,7.449267916773697 -876,5.0,1.0,-1.6861448807654689,5.116477495334806 -876,5.0,3.0,-6.413123730174556,22.31120356548123 -876,5.0,5.0,17.978787211021647,-67.37207632288106 -876,5.0,6.0,-3.590210423980992,11.02611441072814 -876,5.0,7.0,-6.289308176100628,22.0125786163522 -876,5.0,8.0,0.0,4.915840805411357 -876,5.0,9.0,0.0,1.8561002591115965 -876,6.0,4.0,-2.954020035961983,7.449267916773697 -876,6.0,5.0,-3.590210423980992,11.02611441072814 -876,6.0,6.0,6.544230459942975,-18.45668232750184 -876,7.0,5.0,-6.289308176100628,22.0125786163522 -876,7.0,7.0,7.733287237496075,-26.527493274828448 -876,7.0,27.0,-1.4439790613954469,4.540814658476248 -876,8.0,5.0,0.0,4.915840805411357 -876,8.0,8.0,0.0,-18.706293706293707 -876,8.0,9.0,0.0,9.090909090909092 -876,8.0,10.0,0.0,4.807692307692308 -876,9.0,5.0,0.0,1.8561002591115965 -876,9.0,8.0,0.0,9.090909090909092 -876,9.0,9.0,10.842723261141638,-35.98299036419294 -876,9.0,16.0,-3.956039125715353,10.317447719844054 -876,9.0,19.0,-1.7848303152666305,3.98535828943083 -876,9.0,20.0,-5.101853820159654,10.98071411292983 -876,10.0,8.0,0.0,4.807692307692308 -876,10.0,10.0,0.0,-4.807692307692308 -876,11.0,3.0,0.0,4.191255364806866 -876,11.0,11.0,6.573961583776156,-24.424167659260668 -876,11.0,12.0,0.0,7.142857142857143 -876,11.0,13.0,-1.5265676088395577,3.1734252729654173 -876,11.0,14.0,-3.0953961826564296,6.097275864326261 -876,11.0,15.0,-1.9519977922801688,4.104359379111847 -876,12.0,11.0,0.0,7.142857142857143 -876,12.0,12.0,0.0,-7.142857142857143 -876,13.0,11.0,-1.5265676088395577,3.1734252729654173 -876,13.0,13.0,4.01751987283902,-5.424299332335067 -876,13.0,14.0,-2.4909522639994623,2.250874059369649 -876,14.0,11.0,-3.0953961826564296,6.097275864326261 -876,14.0,13.0,-2.4909522639994623,2.250874059369649 -876,14.0,14.0,9.365498545964757,-16.01163373210796 -876,14.0,17.0,-1.8108011504072024,3.687418931630696 -876,14.0,22.0,-1.9683489489016612,3.976064876781356 -876,15.0,11.0,-1.9519977922801688,4.104359379111847 -876,15.0,15.0,1.9519977922801688,-4.104359379111847 -876,16.0,9.0,-3.956039125715353,10.317447719844054 -876,16.0,16.0,3.956039125715353,-10.317447719844054 -876,17.0,14.0,-1.8108011504072024,3.687418931630696 -876,17.0,17.0,4.886487584415919,-9.906177730909668 -876,17.0,18.0,-3.0756864340087167,6.218758799278971 -876,18.0,17.0,-3.0756864340087167,6.218758799278971 -876,18.0,18.0,8.958039375185187,-17.98346468163191 -876,18.0,19.0,-5.88235294117647,11.76470588235294 -876,19.0,9.0,-1.7848303152666305,3.98535828943083 -876,19.0,18.0,-5.88235294117647,11.76470588235294 -876,19.0,19.0,7.6671832564431,-15.75006417178377 -876,20.0,9.0,-5.101853820159654,10.98071411292983 -876,20.0,20.0,21.876495189895888,-45.10843276170355 -876,20.0,21.0,-16.774641369736234,34.127718648773715 -876,21.0,20.0,-16.774641369736234,34.127718648773715 -876,21.0,21.0,16.774641369736234,-34.127718648773715 -876,22.0,14.0,-1.9683489489016612,3.976064876781356 -876,22.0,22.0,3.429754555384988,-6.965303617315433 -876,22.0,23.0,-1.4614056064833263,2.989238740534077 -876,23.0,22.0,-1.4614056064833263,2.989238740534077 -876,23.0,23.0,2.771298550357576,-5.233860794239132 -876,23.0,24.0,-1.3098929438742493,2.287622053705056 -876,24.0,23.0,-1.3098929438742493,2.287622053705056 -876,24.0,24.0,4.495715080321987,-7.864978761969621 -876,24.0,25.0,-1.2165301194494855,1.8171440463475024 -876,24.0,26.0,-1.9692920169982515,3.760212661917064 -876,25.0,24.0,-1.2165301194494855,1.8171440463475024 -876,25.0,25.0,1.2165301194494855,-1.8171440463475024 -876,26.0,24.0,-1.9692920169982515,3.760212661917064 -876,26.0,26.0,3.652281470778589,-9.46044252232512 -876,26.0,27.0,0.0,2.608731947574922 -876,26.0,28.0,-0.99553355095268,1.881005840357816 -876,26.0,29.0,-0.6874559028276572,1.293971494797717 -876,27.0,7.0,-1.4439790613954469,4.540814658476248 -876,27.0,26.0,0.0,2.608731947574922 -876,27.0,27.0,1.4439790613954469,-7.214385678698274 -876,28.0,26.0,-0.99553355095268,1.881005840357816 -876,28.0,28.0,1.9075867579849564,-3.604364401207048 -876,28.0,29.0,-0.9120532070322764,1.7233585608492326 -876,29.0,26.0,-0.6874559028276572,1.293971494797717 -876,29.0,28.0,-0.9120532070322764,1.7233585608492326 -876,29.0,29.0,1.5995091098599337,-3.0173300556469496 -877,0.0,0.0,6.765516048652632,-21.23160167089863 -877,0.0,1.0,-5.224646179885656,15.646726840803398 -877,0.0,2.0,-1.5408698687669766,5.631674830095234 -877,1.0,0.0,-5.224646179885656,15.646726840803398 -877,1.0,1.0,9.75228216552403,-30.648662892676068 -877,1.0,3.0,-1.7055303166990268,5.1973792282565086 -877,1.0,4.0,-1.1359607881738778,4.772479328281356 -877,1.0,5.0,-1.6861448807654689,5.116477495334806 -877,2.0,0.0,-1.5408698687669766,5.631674830095234 -877,2.0,2.0,9.736318911079088,-29.13794745915803 -877,2.0,3.0,-8.19544904231211,23.5308726290628 -877,3.0,1.0,-1.7055303166990268,5.1973792282565086 -877,3.0,2.0,-8.19544904231211,23.5308726290628 -877,3.0,3.0,16.314103089185693,-55.509410535254254 -877,3.0,5.0,-6.413123730174556,22.31120356548123 -877,3.0,11.0,0.0,4.191255364806866 -877,4.0,1.0,-1.1359607881738778,4.772479328281356 -877,4.0,4.0,4.089980824135861,-12.190647245055052 -877,4.0,6.0,-2.954020035961983,7.449267916773697 -877,5.0,1.0,-1.6861448807654689,5.116477495334806 -877,5.0,3.0,-6.413123730174556,22.31120356548123 -877,5.0,5.0,22.341631269034565,-82.8291478657789 -877,5.0,6.0,-3.590210423980992,11.02611441072814 -877,5.0,7.0,-6.289308176100628,22.0125786163522 -877,5.0,8.0,0.0,4.915840805411357 -877,5.0,9.0,0.0,1.8561002591115965 -877,5.0,27.0,-4.362844058012917,15.463571542897856 -877,6.0,4.0,-2.954020035961983,7.449267916773697 -877,6.0,5.0,-3.590210423980992,11.02611441072814 -877,6.0,6.0,6.544230459942975,-18.45668232750184 -877,7.0,5.0,-6.289308176100628,22.0125786163522 -877,7.0,7.0,7.733287237496075,-26.527493274828448 -877,7.0,27.0,-1.4439790613954469,4.540814658476248 -877,8.0,5.0,0.0,4.915840805411357 -877,8.0,8.0,0.0,-18.706293706293707 -877,8.0,9.0,0.0,9.090909090909092 -877,8.0,10.0,0.0,4.807692307692308 -877,9.0,5.0,0.0,1.8561002591115965 -877,9.0,8.0,0.0,9.090909090909092 -877,9.0,9.0,13.462042814524237,-41.3837606675224 -877,9.0,16.0,-3.956039125715353,10.317447719844054 -877,9.0,19.0,-1.7848303152666305,3.98535828943083 -877,9.0,20.0,-5.101853820159654,10.98071411292983 -877,9.0,21.0,-2.619319553382597,5.400770303329455 -877,10.0,8.0,0.0,4.807692307692308 -877,10.0,10.0,0.0,-4.807692307692308 -877,11.0,3.0,0.0,4.191255364806866 -877,11.0,11.0,6.573961583776156,-24.424167659260668 -877,11.0,12.0,0.0,7.142857142857143 -877,11.0,13.0,-1.5265676088395577,3.1734252729654173 -877,11.0,14.0,-3.0953961826564296,6.097275864326261 -877,11.0,15.0,-1.9519977922801688,4.104359379111847 -877,12.0,11.0,0.0,7.142857142857143 -877,12.0,12.0,0.0,-7.142857142857143 -877,13.0,11.0,-1.5265676088395577,3.1734252729654173 -877,13.0,13.0,4.01751987283902,-5.424299332335067 -877,13.0,14.0,-2.4909522639994623,2.250874059369649 -877,14.0,11.0,-3.0953961826564296,6.097275864326261 -877,14.0,13.0,-2.4909522639994623,2.250874059369649 -877,14.0,14.0,9.365498545964757,-16.01163373210796 -877,14.0,17.0,-1.8108011504072024,3.687418931630696 -877,14.0,22.0,-1.9683489489016612,3.976064876781356 -877,15.0,11.0,-1.9519977922801688,4.104359379111847 -877,15.0,15.0,3.271064728633931,-8.94513365126506 -877,15.0,16.0,-1.3190669363537617,4.8407742721532125 -877,16.0,9.0,-3.956039125715353,10.317447719844054 -877,16.0,15.0,-1.3190669363537617,4.8407742721532125 -877,16.0,16.0,5.275106062069114,-15.158221991997266 -877,17.0,14.0,-1.8108011504072024,3.687418931630696 -877,17.0,17.0,4.886487584415919,-9.906177730909668 -877,17.0,18.0,-3.0756864340087167,6.218758799278971 -877,18.0,17.0,-3.0756864340087167,6.218758799278971 -877,18.0,18.0,8.958039375185187,-17.98346468163191 -877,18.0,19.0,-5.88235294117647,11.76470588235294 -877,19.0,9.0,-1.7848303152666305,3.98535828943083 -877,19.0,18.0,-5.88235294117647,11.76470588235294 -877,19.0,19.0,7.6671832564431,-15.75006417178377 -877,20.0,9.0,-5.101853820159654,10.98071411292983 -877,20.0,20.0,21.876495189895888,-45.10843276170355 -877,20.0,21.0,-16.774641369736234,34.127718648773715 -877,21.0,9.0,-2.619319553382597,5.400770303329455 -877,21.0,20.0,-16.774641369736234,34.127718648773715 -877,21.0,21.0,21.93449907537439,-43.48289181517921 -877,21.0,23.0,-2.5405381522555563,3.95440286307604 -877,22.0,14.0,-1.9683489489016612,3.976064876781356 -877,22.0,22.0,3.429754555384988,-6.965303617315433 -877,22.0,23.0,-1.4614056064833263,2.989238740534077 -877,23.0,21.0,-2.5405381522555563,3.95440286307604 -877,23.0,22.0,-1.4614056064833263,2.989238740534077 -877,23.0,23.0,5.311836702613133,-9.188263657315172 -877,23.0,24.0,-1.3098929438742493,2.287622053705056 -877,24.0,23.0,-1.3098929438742493,2.287622053705056 -877,24.0,24.0,4.495715080321987,-7.864978761969621 -877,24.0,25.0,-1.2165301194494855,1.8171440463475024 -877,24.0,26.0,-1.9692920169982515,3.760212661917064 -877,25.0,24.0,-1.2165301194494855,1.8171440463475024 -877,25.0,25.0,1.2165301194494855,-1.8171440463475024 -877,26.0,24.0,-1.9692920169982515,3.760212661917064 -877,26.0,26.0,3.652281470778589,-9.46044252232512 -877,26.0,27.0,0.0,2.608731947574922 -877,26.0,28.0,-0.99553355095268,1.881005840357816 -877,26.0,29.0,-0.6874559028276572,1.293971494797717 -877,27.0,5.0,-4.362844058012917,15.463571542897856 -877,27.0,7.0,-1.4439790613954469,4.540814658476248 -877,27.0,26.0,0.0,2.608731947574922 -877,27.0,27.0,5.806823119408364,-22.67145722159613 -877,28.0,26.0,-0.99553355095268,1.881005840357816 -877,28.0,28.0,1.9075867579849564,-3.604364401207048 -877,28.0,29.0,-0.9120532070322764,1.7233585608492326 -877,29.0,26.0,-0.6874559028276572,1.293971494797717 -877,29.0,28.0,-0.9120532070322764,1.7233585608492326 -877,29.0,29.0,1.5995091098599337,-3.0173300556469496 -878,0.0,0.0,6.765516048652632,-21.23160167089863 -878,0.0,1.0,-5.224646179885656,15.646726840803398 -878,0.0,2.0,-1.5408698687669766,5.631674830095234 -878,1.0,0.0,-5.224646179885656,15.646726840803398 -878,1.0,1.0,9.75228216552403,-30.648662892676068 -878,1.0,3.0,-1.7055303166990268,5.1973792282565086 -878,1.0,4.0,-1.1359607881738778,4.772479328281356 -878,1.0,5.0,-1.6861448807654689,5.116477495334806 -878,2.0,0.0,-1.5408698687669766,5.631674830095234 -878,2.0,2.0,9.736318911079088,-29.13794745915803 -878,2.0,3.0,-8.19544904231211,23.5308726290628 -878,3.0,1.0,-1.7055303166990268,5.1973792282565086 -878,3.0,2.0,-8.19544904231211,23.5308726290628 -878,3.0,3.0,16.314103089185693,-55.509410535254254 -878,3.0,5.0,-6.413123730174556,22.31120356548123 -878,3.0,11.0,0.0,4.191255364806866 -878,4.0,1.0,-1.1359607881738778,4.772479328281356 -878,4.0,4.0,4.089980824135861,-12.190647245055052 -878,4.0,6.0,-2.954020035961983,7.449267916773697 -878,5.0,1.0,-1.6861448807654689,5.116477495334806 -878,5.0,3.0,-6.413123730174556,22.31120356548123 -878,5.0,5.0,17.978787211021647,-67.37207632288106 -878,5.0,6.0,-3.590210423980992,11.02611441072814 -878,5.0,7.0,-6.289308176100628,22.0125786163522 -878,5.0,8.0,0.0,4.915840805411357 -878,5.0,9.0,0.0,1.8561002591115965 -878,6.0,4.0,-2.954020035961983,7.449267916773697 -878,6.0,5.0,-3.590210423980992,11.02611441072814 -878,6.0,6.0,6.544230459942975,-18.45668232750184 -878,7.0,5.0,-6.289308176100628,22.0125786163522 -878,7.0,7.0,7.733287237496075,-26.527493274828448 -878,7.0,27.0,-1.4439790613954469,4.540814658476248 -878,8.0,5.0,0.0,4.915840805411357 -878,8.0,8.0,0.0,-18.706293706293707 -878,8.0,9.0,0.0,9.090909090909092 -878,8.0,10.0,0.0,4.807692307692308 -878,9.0,5.0,0.0,1.8561002591115965 -878,9.0,8.0,0.0,9.090909090909092 -878,9.0,9.0,13.462042814524237,-41.3837606675224 -878,9.0,16.0,-3.956039125715353,10.317447719844054 -878,9.0,19.0,-1.7848303152666305,3.98535828943083 -878,9.0,20.0,-5.101853820159654,10.98071411292983 -878,9.0,21.0,-2.619319553382597,5.400770303329455 -878,10.0,8.0,0.0,4.807692307692308 -878,10.0,10.0,0.0,-4.807692307692308 -878,11.0,3.0,0.0,4.191255364806866 -878,11.0,11.0,6.573961583776156,-24.424167659260668 -878,11.0,12.0,0.0,7.142857142857143 -878,11.0,13.0,-1.5265676088395577,3.1734252729654173 -878,11.0,14.0,-3.0953961826564296,6.097275864326261 -878,11.0,15.0,-1.9519977922801688,4.104359379111847 -878,12.0,11.0,0.0,7.142857142857143 -878,12.0,12.0,0.0,-7.142857142857143 -878,13.0,11.0,-1.5265676088395577,3.1734252729654173 -878,13.0,13.0,4.01751987283902,-5.424299332335067 -878,13.0,14.0,-2.4909522639994623,2.250874059369649 -878,14.0,11.0,-3.0953961826564296,6.097275864326261 -878,14.0,13.0,-2.4909522639994623,2.250874059369649 -878,14.0,14.0,9.365498545964757,-16.01163373210796 -878,14.0,17.0,-1.8108011504072024,3.687418931630696 -878,14.0,22.0,-1.9683489489016612,3.976064876781356 -878,15.0,11.0,-1.9519977922801688,4.104359379111847 -878,15.0,15.0,3.271064728633931,-8.94513365126506 -878,15.0,16.0,-1.3190669363537617,4.8407742721532125 -878,16.0,9.0,-3.956039125715353,10.317447719844054 -878,16.0,15.0,-1.3190669363537617,4.8407742721532125 -878,16.0,16.0,5.275106062069114,-15.158221991997266 -878,17.0,14.0,-1.8108011504072024,3.687418931630696 -878,17.0,17.0,4.886487584415919,-9.906177730909668 -878,17.0,18.0,-3.0756864340087167,6.218758799278971 -878,18.0,17.0,-3.0756864340087167,6.218758799278971 -878,18.0,18.0,8.958039375185187,-17.98346468163191 -878,18.0,19.0,-5.88235294117647,11.76470588235294 -878,19.0,9.0,-1.7848303152666305,3.98535828943083 -878,19.0,18.0,-5.88235294117647,11.76470588235294 -878,19.0,19.0,7.6671832564431,-15.75006417178377 -878,20.0,9.0,-5.101853820159654,10.98071411292983 -878,20.0,20.0,21.876495189895888,-45.10843276170355 -878,20.0,21.0,-16.774641369736234,34.127718648773715 -878,21.0,9.0,-2.619319553382597,5.400770303329455 -878,21.0,20.0,-16.774641369736234,34.127718648773715 -878,21.0,21.0,21.93449907537439,-43.48289181517921 -878,21.0,23.0,-2.5405381522555563,3.95440286307604 -878,22.0,14.0,-1.9683489489016612,3.976064876781356 -878,22.0,22.0,3.429754555384988,-6.965303617315433 -878,22.0,23.0,-1.4614056064833263,2.989238740534077 -878,23.0,21.0,-2.5405381522555563,3.95440286307604 -878,23.0,22.0,-1.4614056064833263,2.989238740534077 -878,23.0,23.0,5.311836702613133,-9.188263657315172 -878,23.0,24.0,-1.3098929438742493,2.287622053705056 -878,24.0,23.0,-1.3098929438742493,2.287622053705056 -878,24.0,24.0,4.495715080321987,-7.864978761969621 -878,24.0,25.0,-1.2165301194494855,1.8171440463475024 -878,24.0,26.0,-1.9692920169982515,3.760212661917064 -878,25.0,24.0,-1.2165301194494855,1.8171440463475024 -878,25.0,25.0,1.2165301194494855,-1.8171440463475024 -878,26.0,24.0,-1.9692920169982515,3.760212661917064 -878,26.0,26.0,3.652281470778589,-9.46044252232512 -878,26.0,27.0,0.0,2.608731947574922 -878,26.0,28.0,-0.99553355095268,1.881005840357816 -878,26.0,29.0,-0.6874559028276572,1.293971494797717 -878,27.0,7.0,-1.4439790613954469,4.540814658476248 -878,27.0,26.0,0.0,2.608731947574922 -878,27.0,27.0,1.4439790613954469,-7.214385678698274 -878,28.0,26.0,-0.99553355095268,1.881005840357816 -878,28.0,28.0,1.9075867579849564,-3.604364401207048 -878,28.0,29.0,-0.9120532070322764,1.7233585608492326 -878,29.0,26.0,-0.6874559028276572,1.293971494797717 -878,29.0,28.0,-0.9120532070322764,1.7233585608492326 -878,29.0,29.0,1.5995091098599337,-3.0173300556469496 -879,0.0,0.0,6.765516048652632,-21.23160167089863 -879,0.0,1.0,-5.224646179885656,15.646726840803398 -879,0.0,2.0,-1.5408698687669766,5.631674830095234 -879,1.0,0.0,-5.224646179885656,15.646726840803398 -879,1.0,1.0,9.75228216552403,-30.648662892676068 -879,1.0,3.0,-1.7055303166990268,5.1973792282565086 -879,1.0,4.0,-1.1359607881738778,4.772479328281356 -879,1.0,5.0,-1.6861448807654689,5.116477495334806 -879,2.0,0.0,-1.5408698687669766,5.631674830095234 -879,2.0,2.0,9.736318911079088,-29.13794745915803 -879,2.0,3.0,-8.19544904231211,23.5308726290628 -879,3.0,1.0,-1.7055303166990268,5.1973792282565086 -879,3.0,2.0,-8.19544904231211,23.5308726290628 -879,3.0,3.0,16.314103089185693,-55.509410535254254 -879,3.0,5.0,-6.413123730174556,22.31120356548123 -879,3.0,11.0,0.0,4.191255364806866 -879,4.0,1.0,-1.1359607881738778,4.772479328281356 -879,4.0,4.0,4.089980824135861,-12.190647245055052 -879,4.0,6.0,-2.954020035961983,7.449267916773697 -879,5.0,1.0,-1.6861448807654689,5.116477495334806 -879,5.0,3.0,-6.413123730174556,22.31120356548123 -879,5.0,5.0,18.75142084505357,-64.8696312200661 -879,5.0,7.0,-6.289308176100628,22.0125786163522 -879,5.0,27.0,-4.362844058012917,15.463571542897856 -879,6.0,4.0,-2.954020035961983,7.449267916773697 -879,6.0,6.0,2.954020035961983,-7.439067916773697 -879,7.0,5.0,-6.289308176100628,22.0125786163522 -879,7.0,7.0,7.733287237496075,-26.527493274828448 -879,7.0,27.0,-1.4439790613954469,4.540814658476248 -879,8.0,8.0,0.0,-13.8986013986014 -879,8.0,9.0,0.0,9.090909090909092 -879,8.0,10.0,0.0,4.807692307692308 -879,9.0,8.0,0.0,9.090909090909092 -879,9.0,9.0,13.462042814524237,-39.58519951644326 -879,9.0,16.0,-3.956039125715353,10.317447719844054 -879,9.0,19.0,-1.7848303152666305,3.98535828943083 -879,9.0,20.0,-5.101853820159654,10.98071411292983 -879,9.0,21.0,-2.619319553382597,5.400770303329455 -879,10.0,8.0,0.0,4.807692307692308 -879,10.0,10.0,0.0,-4.807692307692308 -879,11.0,3.0,0.0,4.191255364806866 -879,11.0,11.0,5.047393974936599,-21.25074238629525 -879,11.0,12.0,0.0,7.142857142857143 -879,11.0,14.0,-3.0953961826564296,6.097275864326261 -879,11.0,15.0,-1.9519977922801688,4.104359379111847 -879,12.0,11.0,0.0,7.142857142857143 -879,12.0,12.0,0.0,-7.142857142857143 -879,13.0,13.0,2.4909522639994623,-2.250874059369649 -879,13.0,14.0,-2.4909522639994623,2.250874059369649 -879,14.0,11.0,-3.0953961826564296,6.097275864326261 -879,14.0,13.0,-2.4909522639994623,2.250874059369649 -879,14.0,14.0,9.365498545964757,-16.01163373210796 -879,14.0,17.0,-1.8108011504072024,3.687418931630696 -879,14.0,22.0,-1.9683489489016612,3.976064876781356 -879,15.0,11.0,-1.9519977922801688,4.104359379111847 -879,15.0,15.0,3.271064728633931,-8.94513365126506 -879,15.0,16.0,-1.3190669363537617,4.8407742721532125 -879,16.0,9.0,-3.956039125715353,10.317447719844054 -879,16.0,15.0,-1.3190669363537617,4.8407742721532125 -879,16.0,16.0,5.275106062069114,-15.158221991997266 -879,17.0,14.0,-1.8108011504072024,3.687418931630696 -879,17.0,17.0,4.886487584415919,-9.906177730909668 -879,17.0,18.0,-3.0756864340087167,6.218758799278971 -879,18.0,17.0,-3.0756864340087167,6.218758799278971 -879,18.0,18.0,8.958039375185187,-17.98346468163191 -879,18.0,19.0,-5.88235294117647,11.76470588235294 -879,19.0,9.0,-1.7848303152666305,3.98535828943083 -879,19.0,18.0,-5.88235294117647,11.76470588235294 -879,19.0,19.0,7.6671832564431,-15.75006417178377 -879,20.0,9.0,-5.101853820159654,10.98071411292983 -879,20.0,20.0,21.876495189895888,-45.10843276170355 -879,20.0,21.0,-16.774641369736234,34.127718648773715 -879,21.0,9.0,-2.619319553382597,5.400770303329455 -879,21.0,20.0,-16.774641369736234,34.127718648773715 -879,21.0,21.0,21.93449907537439,-43.48289181517921 -879,21.0,23.0,-2.5405381522555563,3.95440286307604 -879,22.0,14.0,-1.9683489489016612,3.976064876781356 -879,22.0,22.0,3.429754555384988,-6.965303617315433 -879,22.0,23.0,-1.4614056064833263,2.989238740534077 -879,23.0,21.0,-2.5405381522555563,3.95440286307604 -879,23.0,22.0,-1.4614056064833263,2.989238740534077 -879,23.0,23.0,5.311836702613133,-9.188263657315172 -879,23.0,24.0,-1.3098929438742493,2.287622053705056 -879,24.0,23.0,-1.3098929438742493,2.287622053705056 -879,24.0,24.0,4.495715080321987,-7.864978761969621 -879,24.0,25.0,-1.2165301194494855,1.8171440463475024 -879,24.0,26.0,-1.9692920169982515,3.760212661917064 -879,25.0,24.0,-1.2165301194494855,1.8171440463475024 -879,25.0,25.0,1.2165301194494855,-1.8171440463475024 -879,26.0,24.0,-1.9692920169982515,3.760212661917064 -879,26.0,26.0,3.652281470778589,-9.46044252232512 -879,26.0,27.0,0.0,2.608731947574922 -879,26.0,28.0,-0.99553355095268,1.881005840357816 -879,26.0,29.0,-0.6874559028276572,1.293971494797717 -879,27.0,5.0,-4.362844058012917,15.463571542897856 -879,27.0,7.0,-1.4439790613954469,4.540814658476248 -879,27.0,26.0,0.0,2.608731947574922 -879,27.0,27.0,5.806823119408364,-22.67145722159613 -879,28.0,26.0,-0.99553355095268,1.881005840357816 -879,28.0,28.0,1.9075867579849564,-3.604364401207048 -879,28.0,29.0,-0.9120532070322764,1.7233585608492326 -879,29.0,26.0,-0.6874559028276572,1.293971494797717 -879,29.0,28.0,-0.9120532070322764,1.7233585608492326 -879,29.0,29.0,1.5995091098599337,-3.0173300556469496 -880,0.0,0.0,6.765516048652632,-21.23160167089863 -880,0.0,1.0,-5.224646179885656,15.646726840803398 -880,0.0,2.0,-1.5408698687669766,5.631674830095234 -880,1.0,0.0,-5.224646179885656,15.646726840803398 -880,1.0,1.0,8.046751848825002,-25.46968366441956 -880,1.0,4.0,-1.1359607881738778,4.772479328281356 -880,1.0,5.0,-1.6861448807654689,5.116477495334806 -880,2.0,0.0,-1.5408698687669766,5.631674830095234 -880,2.0,2.0,9.736318911079088,-29.13794745915803 -880,2.0,3.0,-8.19544904231211,23.5308726290628 -880,3.0,2.0,-8.19544904231211,23.5308726290628 -880,3.0,3.0,14.608572772486664,-50.33043130699775 -880,3.0,5.0,-6.413123730174556,22.31120356548123 -880,3.0,11.0,0.0,4.191255364806866 -880,4.0,1.0,-1.1359607881738778,4.772479328281356 -880,4.0,4.0,4.089980824135861,-12.190647245055052 -880,4.0,6.0,-2.954020035961983,7.449267916773697 -880,5.0,1.0,-1.6861448807654689,5.116477495334806 -880,5.0,3.0,-6.413123730174556,22.31120356548123 -880,5.0,5.0,16.052323092933932,-60.8210692494267 -880,5.0,6.0,-3.590210423980992,11.02611441072814 -880,5.0,8.0,0.0,4.915840805411357 -880,5.0,9.0,0.0,1.8561002591115965 -880,5.0,27.0,-4.362844058012917,15.463571542897856 -880,6.0,4.0,-2.954020035961983,7.449267916773697 -880,6.0,5.0,-3.590210423980992,11.02611441072814 -880,6.0,6.0,6.544230459942975,-18.45668232750184 -880,7.0,7.0,1.4439790613954469,-4.519414658476248 -880,7.0,27.0,-1.4439790613954469,4.540814658476248 -880,8.0,5.0,0.0,4.915840805411357 -880,8.0,8.0,0.0,-18.706293706293707 -880,8.0,9.0,0.0,9.090909090909092 -880,8.0,10.0,0.0,4.807692307692308 -880,9.0,5.0,0.0,1.8561002591115965 -880,9.0,8.0,0.0,9.090909090909092 -880,9.0,9.0,10.842723261141638,-35.98299036419294 -880,9.0,16.0,-3.956039125715353,10.317447719844054 -880,9.0,19.0,-1.7848303152666305,3.98535828943083 -880,9.0,20.0,-5.101853820159654,10.98071411292983 -880,10.0,8.0,0.0,4.807692307692308 -880,10.0,10.0,0.0,-4.807692307692308 -880,11.0,3.0,0.0,4.191255364806866 -880,11.0,11.0,4.621963791495987,-20.31980828014882 -880,11.0,12.0,0.0,7.142857142857143 -880,11.0,13.0,-1.5265676088395577,3.1734252729654173 -880,11.0,14.0,-3.0953961826564296,6.097275864326261 -880,12.0,11.0,0.0,7.142857142857143 -880,12.0,12.0,0.0,-7.142857142857143 -880,13.0,11.0,-1.5265676088395577,3.1734252729654173 -880,13.0,13.0,1.5265676088395577,-3.1734252729654173 -880,14.0,11.0,-3.0953961826564296,6.097275864326261 -880,14.0,14.0,4.906197333063632,-9.784694795956955 -880,14.0,17.0,-1.8108011504072024,3.687418931630696 -880,15.0,15.0,1.3190669363537617,-4.8407742721532125 -880,15.0,16.0,-1.3190669363537617,4.8407742721532125 -880,16.0,9.0,-3.956039125715353,10.317447719844054 -880,16.0,15.0,-1.3190669363537617,4.8407742721532125 -880,16.0,16.0,5.275106062069114,-15.158221991997266 -880,17.0,14.0,-1.8108011504072024,3.687418931630696 -880,17.0,17.0,4.886487584415919,-9.906177730909668 -880,17.0,18.0,-3.0756864340087167,6.218758799278971 -880,18.0,17.0,-3.0756864340087167,6.218758799278971 -880,18.0,18.0,8.958039375185187,-17.98346468163191 -880,18.0,19.0,-5.88235294117647,11.76470588235294 -880,19.0,9.0,-1.7848303152666305,3.98535828943083 -880,19.0,18.0,-5.88235294117647,11.76470588235294 -880,19.0,19.0,7.6671832564431,-15.75006417178377 -880,20.0,9.0,-5.101853820159654,10.98071411292983 -880,20.0,20.0,21.876495189895888,-45.10843276170355 -880,20.0,21.0,-16.774641369736234,34.127718648773715 -880,21.0,20.0,-16.774641369736234,34.127718648773715 -880,21.0,21.0,19.31517952199179,-38.08212151184976 -880,21.0,23.0,-2.5405381522555563,3.95440286307604 -880,22.0,22.0,1.4614056064833263,-2.989238740534077 -880,22.0,23.0,-1.4614056064833263,2.989238740534077 -880,23.0,21.0,-2.5405381522555563,3.95440286307604 -880,23.0,22.0,-1.4614056064833263,2.989238740534077 -880,23.0,23.0,5.311836702613133,-9.188263657315172 -880,23.0,24.0,-1.3098929438742493,2.287622053705056 -880,24.0,23.0,-1.3098929438742493,2.287622053705056 -880,24.0,24.0,4.495715080321987,-7.864978761969621 -880,24.0,25.0,-1.2165301194494855,1.8171440463475024 -880,24.0,26.0,-1.9692920169982515,3.760212661917064 -880,25.0,24.0,-1.2165301194494855,1.8171440463475024 -880,25.0,25.0,1.2165301194494855,-1.8171440463475024 -880,26.0,24.0,-1.9692920169982515,3.760212661917064 -880,26.0,26.0,3.652281470778589,-9.46044252232512 -880,26.0,27.0,0.0,2.608731947574922 -880,26.0,28.0,-0.99553355095268,1.881005840357816 -880,26.0,29.0,-0.6874559028276572,1.293971494797717 -880,27.0,5.0,-4.362844058012917,15.463571542897856 -880,27.0,7.0,-1.4439790613954469,4.540814658476248 -880,27.0,26.0,0.0,2.608731947574922 -880,27.0,27.0,5.806823119408364,-22.67145722159613 -880,28.0,26.0,-0.99553355095268,1.881005840357816 -880,28.0,28.0,1.9075867579849564,-3.604364401207048 -880,28.0,29.0,-0.9120532070322764,1.7233585608492326 -880,29.0,26.0,-0.6874559028276572,1.293971494797717 -880,29.0,28.0,-0.9120532070322764,1.7233585608492326 -880,29.0,29.0,1.5995091098599337,-3.0173300556469496 -881,0.0,0.0,6.765516048652632,-21.23160167089863 -881,0.0,1.0,-5.224646179885656,15.646726840803398 -881,0.0,2.0,-1.5408698687669766,5.631674830095234 -881,1.0,0.0,-5.224646179885656,15.646726840803398 -881,1.0,1.0,9.75228216552403,-30.648662892676068 -881,1.0,3.0,-1.7055303166990268,5.1973792282565086 -881,1.0,4.0,-1.1359607881738778,4.772479328281356 -881,1.0,5.0,-1.6861448807654689,5.116477495334806 -881,2.0,0.0,-1.5408698687669766,5.631674830095234 -881,2.0,2.0,9.736318911079088,-29.13794745915803 -881,2.0,3.0,-8.19544904231211,23.5308726290628 -881,3.0,1.0,-1.7055303166990268,5.1973792282565086 -881,3.0,2.0,-8.19544904231211,23.5308726290628 -881,3.0,3.0,16.314103089185693,-55.509410535254254 -881,3.0,5.0,-6.413123730174556,22.31120356548123 -881,3.0,11.0,0.0,4.191255364806866 -881,4.0,1.0,-1.1359607881738778,4.772479328281356 -881,4.0,4.0,4.089980824135861,-12.190647245055052 -881,4.0,6.0,-2.954020035961983,7.449267916773697 -881,5.0,1.0,-1.6861448807654689,5.116477495334806 -881,5.0,3.0,-6.413123730174556,22.31120356548123 -881,5.0,5.0,22.341631269034565,-82.8291478657789 -881,5.0,6.0,-3.590210423980992,11.02611441072814 -881,5.0,7.0,-6.289308176100628,22.0125786163522 -881,5.0,8.0,0.0,4.915840805411357 -881,5.0,9.0,0.0,1.8561002591115965 -881,5.0,27.0,-4.362844058012917,15.463571542897856 -881,6.0,4.0,-2.954020035961983,7.449267916773697 -881,6.0,5.0,-3.590210423980992,11.02611441072814 -881,6.0,6.0,6.544230459942975,-18.45668232750184 -881,7.0,5.0,-6.289308176100628,22.0125786163522 -881,7.0,7.0,7.733287237496075,-26.527493274828448 -881,7.0,27.0,-1.4439790613954469,4.540814658476248 -881,8.0,5.0,0.0,4.915840805411357 -881,8.0,8.0,0.0,-18.706293706293707 -881,8.0,9.0,0.0,9.090909090909092 -881,8.0,10.0,0.0,4.807692307692308 -881,9.0,5.0,0.0,1.8561002591115965 -881,9.0,8.0,0.0,9.090909090909092 -881,9.0,9.0,13.462042814524237,-41.3837606675224 -881,9.0,16.0,-3.956039125715353,10.317447719844054 -881,9.0,19.0,-1.7848303152666305,3.98535828943083 -881,9.0,20.0,-5.101853820159654,10.98071411292983 -881,9.0,21.0,-2.619319553382597,5.400770303329455 -881,10.0,8.0,0.0,4.807692307692308 -881,10.0,10.0,0.0,-4.807692307692308 -881,11.0,3.0,0.0,4.191255364806866 -881,11.0,11.0,6.573961583776156,-24.424167659260668 -881,11.0,12.0,0.0,7.142857142857143 -881,11.0,13.0,-1.5265676088395577,3.1734252729654173 -881,11.0,14.0,-3.0953961826564296,6.097275864326261 -881,11.0,15.0,-1.9519977922801688,4.104359379111847 -881,12.0,11.0,0.0,7.142857142857143 -881,12.0,12.0,0.0,-7.142857142857143 -881,13.0,11.0,-1.5265676088395577,3.1734252729654173 -881,13.0,13.0,4.01751987283902,-5.424299332335067 -881,13.0,14.0,-2.4909522639994623,2.250874059369649 -881,14.0,11.0,-3.0953961826564296,6.097275864326261 -881,14.0,13.0,-2.4909522639994623,2.250874059369649 -881,14.0,14.0,9.365498545964757,-16.01163373210796 -881,14.0,17.0,-1.8108011504072024,3.687418931630696 -881,14.0,22.0,-1.9683489489016612,3.976064876781356 -881,15.0,11.0,-1.9519977922801688,4.104359379111847 -881,15.0,15.0,3.271064728633931,-8.94513365126506 -881,15.0,16.0,-1.3190669363537617,4.8407742721532125 -881,16.0,9.0,-3.956039125715353,10.317447719844054 -881,16.0,15.0,-1.3190669363537617,4.8407742721532125 -881,16.0,16.0,5.275106062069114,-15.158221991997266 -881,17.0,14.0,-1.8108011504072024,3.687418931630696 -881,17.0,17.0,4.886487584415919,-9.906177730909668 -881,17.0,18.0,-3.0756864340087167,6.218758799278971 -881,18.0,17.0,-3.0756864340087167,6.218758799278971 -881,18.0,18.0,8.958039375185187,-17.98346468163191 -881,18.0,19.0,-5.88235294117647,11.76470588235294 -881,19.0,9.0,-1.7848303152666305,3.98535828943083 -881,19.0,18.0,-5.88235294117647,11.76470588235294 -881,19.0,19.0,7.6671832564431,-15.75006417178377 -881,20.0,9.0,-5.101853820159654,10.98071411292983 -881,20.0,20.0,21.876495189895888,-45.10843276170355 -881,20.0,21.0,-16.774641369736234,34.127718648773715 -881,21.0,9.0,-2.619319553382597,5.400770303329455 -881,21.0,20.0,-16.774641369736234,34.127718648773715 -881,21.0,21.0,21.93449907537439,-43.48289181517921 -881,21.0,23.0,-2.5405381522555563,3.95440286307604 -881,22.0,14.0,-1.9683489489016612,3.976064876781356 -881,22.0,22.0,3.429754555384988,-6.965303617315433 -881,22.0,23.0,-1.4614056064833263,2.989238740534077 -881,23.0,21.0,-2.5405381522555563,3.95440286307604 -881,23.0,22.0,-1.4614056064833263,2.989238740534077 -881,23.0,23.0,5.311836702613133,-9.188263657315172 -881,23.0,24.0,-1.3098929438742493,2.287622053705056 -881,24.0,23.0,-1.3098929438742493,2.287622053705056 -881,24.0,24.0,4.495715080321987,-7.864978761969621 -881,24.0,25.0,-1.2165301194494855,1.8171440463475024 -881,24.0,26.0,-1.9692920169982515,3.760212661917064 -881,25.0,24.0,-1.2165301194494855,1.8171440463475024 -881,25.0,25.0,1.2165301194494855,-1.8171440463475024 -881,26.0,24.0,-1.9692920169982515,3.760212661917064 -881,26.0,26.0,3.652281470778589,-9.46044252232512 -881,26.0,27.0,0.0,2.608731947574922 -881,26.0,28.0,-0.99553355095268,1.881005840357816 -881,26.0,29.0,-0.6874559028276572,1.293971494797717 -881,27.0,5.0,-4.362844058012917,15.463571542897856 -881,27.0,7.0,-1.4439790613954469,4.540814658476248 -881,27.0,26.0,0.0,2.608731947574922 -881,27.0,27.0,5.806823119408364,-22.67145722159613 -881,28.0,26.0,-0.99553355095268,1.881005840357816 -881,28.0,28.0,1.9075867579849564,-3.604364401207048 -881,28.0,29.0,-0.9120532070322764,1.7233585608492326 -881,29.0,26.0,-0.6874559028276572,1.293971494797717 -881,29.0,28.0,-0.9120532070322764,1.7233585608492326 -881,29.0,29.0,1.5995091098599337,-3.0173300556469496 -882,0.0,0.0,1.5408698687669766,-5.611274830095233 -882,0.0,2.0,-1.5408698687669766,5.631674830095234 -882,1.0,1.0,4.527635985638374,-15.028336051872673 -882,1.0,3.0,-1.7055303166990268,5.1973792282565086 -882,1.0,4.0,-1.1359607881738778,4.772479328281356 -882,1.0,5.0,-1.6861448807654689,5.116477495334806 -882,2.0,0.0,-1.5408698687669766,5.631674830095234 -882,2.0,2.0,9.736318911079088,-29.13794745915803 -882,2.0,3.0,-8.19544904231211,23.5308726290628 -882,3.0,1.0,-1.7055303166990268,5.1973792282565086 -882,3.0,2.0,-8.19544904231211,23.5308726290628 -882,3.0,3.0,16.314103089185693,-55.509410535254254 -882,3.0,5.0,-6.413123730174556,22.31120356548123 -882,3.0,11.0,0.0,4.191255364806866 -882,4.0,1.0,-1.1359607881738778,4.772479328281356 -882,4.0,4.0,4.089980824135861,-12.190647245055052 -882,4.0,6.0,-2.954020035961983,7.449267916773697 -882,5.0,1.0,-1.6861448807654689,5.116477495334806 -882,5.0,3.0,-6.413123730174556,22.31120356548123 -882,5.0,5.0,22.341631269034565,-82.8291478657789 -882,5.0,6.0,-3.590210423980992,11.02611441072814 -882,5.0,7.0,-6.289308176100628,22.0125786163522 -882,5.0,8.0,0.0,4.915840805411357 -882,5.0,9.0,0.0,1.8561002591115965 -882,5.0,27.0,-4.362844058012917,15.463571542897856 -882,6.0,4.0,-2.954020035961983,7.449267916773697 -882,6.0,5.0,-3.590210423980992,11.02611441072814 -882,6.0,6.0,6.544230459942975,-18.45668232750184 -882,7.0,5.0,-6.289308176100628,22.0125786163522 -882,7.0,7.0,7.733287237496075,-26.527493274828448 -882,7.0,27.0,-1.4439790613954469,4.540814658476248 -882,8.0,5.0,0.0,4.915840805411357 -882,8.0,8.0,0.0,-18.706293706293707 -882,8.0,9.0,0.0,9.090909090909092 -882,8.0,10.0,0.0,4.807692307692308 -882,9.0,5.0,0.0,1.8561002591115965 -882,9.0,8.0,0.0,9.090909090909092 -882,9.0,9.0,13.462042814524237,-41.3837606675224 -882,9.0,16.0,-3.956039125715353,10.317447719844054 -882,9.0,19.0,-1.7848303152666305,3.98535828943083 -882,9.0,20.0,-5.101853820159654,10.98071411292983 -882,9.0,21.0,-2.619319553382597,5.400770303329455 -882,10.0,8.0,0.0,4.807692307692308 -882,10.0,10.0,0.0,-4.807692307692308 -882,11.0,3.0,0.0,4.191255364806866 -882,11.0,11.0,6.573961583776156,-24.424167659260668 -882,11.0,12.0,0.0,7.142857142857143 -882,11.0,13.0,-1.5265676088395577,3.1734252729654173 -882,11.0,14.0,-3.0953961826564296,6.097275864326261 -882,11.0,15.0,-1.9519977922801688,4.104359379111847 -882,12.0,11.0,0.0,7.142857142857143 -882,12.0,12.0,0.0,-7.142857142857143 -882,13.0,11.0,-1.5265676088395577,3.1734252729654173 -882,13.0,13.0,4.01751987283902,-5.424299332335067 -882,13.0,14.0,-2.4909522639994623,2.250874059369649 -882,14.0,11.0,-3.0953961826564296,6.097275864326261 -882,14.0,13.0,-2.4909522639994623,2.250874059369649 -882,14.0,14.0,9.365498545964757,-16.01163373210796 -882,14.0,17.0,-1.8108011504072024,3.687418931630696 -882,14.0,22.0,-1.9683489489016612,3.976064876781356 -882,15.0,11.0,-1.9519977922801688,4.104359379111847 -882,15.0,15.0,3.271064728633931,-8.94513365126506 -882,15.0,16.0,-1.3190669363537617,4.8407742721532125 -882,16.0,9.0,-3.956039125715353,10.317447719844054 -882,16.0,15.0,-1.3190669363537617,4.8407742721532125 -882,16.0,16.0,5.275106062069114,-15.158221991997266 -882,17.0,14.0,-1.8108011504072024,3.687418931630696 -882,17.0,17.0,1.8108011504072024,-3.687418931630696 -882,18.0,18.0,5.88235294117647,-11.76470588235294 -882,18.0,19.0,-5.88235294117647,11.76470588235294 -882,19.0,9.0,-1.7848303152666305,3.98535828943083 -882,19.0,18.0,-5.88235294117647,11.76470588235294 -882,19.0,19.0,7.6671832564431,-15.75006417178377 -882,20.0,9.0,-5.101853820159654,10.98071411292983 -882,20.0,20.0,21.876495189895888,-45.10843276170355 -882,20.0,21.0,-16.774641369736234,34.127718648773715 -882,21.0,9.0,-2.619319553382597,5.400770303329455 -882,21.0,20.0,-16.774641369736234,34.127718648773715 -882,21.0,21.0,21.93449907537439,-43.48289181517921 -882,21.0,23.0,-2.5405381522555563,3.95440286307604 -882,22.0,14.0,-1.9683489489016612,3.976064876781356 -882,22.0,22.0,3.429754555384988,-6.965303617315433 -882,22.0,23.0,-1.4614056064833263,2.989238740534077 -882,23.0,21.0,-2.5405381522555563,3.95440286307604 -882,23.0,22.0,-1.4614056064833263,2.989238740534077 -882,23.0,23.0,5.311836702613133,-9.188263657315172 -882,23.0,24.0,-1.3098929438742493,2.287622053705056 -882,24.0,23.0,-1.3098929438742493,2.287622053705056 -882,24.0,24.0,4.495715080321987,-7.864978761969621 -882,24.0,25.0,-1.2165301194494855,1.8171440463475024 -882,24.0,26.0,-1.9692920169982515,3.760212661917064 -882,25.0,24.0,-1.2165301194494855,1.8171440463475024 -882,25.0,25.0,1.2165301194494855,-1.8171440463475024 -882,26.0,24.0,-1.9692920169982515,3.760212661917064 -882,26.0,26.0,3.652281470778589,-9.46044252232512 -882,26.0,27.0,0.0,2.608731947574922 -882,26.0,28.0,-0.99553355095268,1.881005840357816 -882,26.0,29.0,-0.6874559028276572,1.293971494797717 -882,27.0,5.0,-4.362844058012917,15.463571542897856 -882,27.0,7.0,-1.4439790613954469,4.540814658476248 -882,27.0,26.0,0.0,2.608731947574922 -882,27.0,27.0,5.806823119408364,-22.67145722159613 -882,28.0,26.0,-0.99553355095268,1.881005840357816 -882,28.0,28.0,0.99553355095268,-1.881005840357816 -882,29.0,26.0,-0.6874559028276572,1.293971494797717 -882,29.0,29.0,0.6874559028276572,-1.293971494797717 -883,0.0,0.0,6.765516048652632,-21.23160167089863 -883,0.0,1.0,-5.224646179885656,15.646726840803398 -883,0.0,2.0,-1.5408698687669766,5.631674830095234 -883,1.0,0.0,-5.224646179885656,15.646726840803398 -883,1.0,1.0,9.75228216552403,-30.648662892676068 -883,1.0,3.0,-1.7055303166990268,5.1973792282565086 -883,1.0,4.0,-1.1359607881738778,4.772479328281356 -883,1.0,5.0,-1.6861448807654689,5.116477495334806 -883,2.0,0.0,-1.5408698687669766,5.631674830095234 -883,2.0,2.0,9.736318911079088,-29.13794745915803 -883,2.0,3.0,-8.19544904231211,23.5308726290628 -883,3.0,1.0,-1.7055303166990268,5.1973792282565086 -883,3.0,2.0,-8.19544904231211,23.5308726290628 -883,3.0,3.0,16.314103089185693,-55.509410535254254 -883,3.0,5.0,-6.413123730174556,22.31120356548123 -883,3.0,11.0,0.0,4.191255364806866 -883,4.0,1.0,-1.1359607881738778,4.772479328281356 -883,4.0,4.0,4.089980824135861,-12.190647245055052 -883,4.0,6.0,-2.954020035961983,7.449267916773697 -883,5.0,1.0,-1.6861448807654689,5.116477495334806 -883,5.0,3.0,-6.413123730174556,22.31120356548123 -883,5.0,5.0,22.341631269034565,-82.8291478657789 -883,5.0,6.0,-3.590210423980992,11.02611441072814 -883,5.0,7.0,-6.289308176100628,22.0125786163522 -883,5.0,8.0,0.0,4.915840805411357 -883,5.0,9.0,0.0,1.8561002591115965 -883,5.0,27.0,-4.362844058012917,15.463571542897856 -883,6.0,4.0,-2.954020035961983,7.449267916773697 -883,6.0,5.0,-3.590210423980992,11.02611441072814 -883,6.0,6.0,6.544230459942975,-18.45668232750184 -883,7.0,5.0,-6.289308176100628,22.0125786163522 -883,7.0,7.0,7.733287237496075,-26.527493274828448 -883,7.0,27.0,-1.4439790613954469,4.540814658476248 -883,8.0,5.0,0.0,4.915840805411357 -883,8.0,8.0,0.0,-18.706293706293707 -883,8.0,9.0,0.0,9.090909090909092 -883,8.0,10.0,0.0,4.807692307692308 -883,9.0,5.0,0.0,1.8561002591115965 -883,9.0,8.0,0.0,9.090909090909092 -883,9.0,9.0,13.462042814524237,-41.3837606675224 -883,9.0,16.0,-3.956039125715353,10.317447719844054 -883,9.0,19.0,-1.7848303152666305,3.98535828943083 -883,9.0,20.0,-5.101853820159654,10.98071411292983 -883,9.0,21.0,-2.619319553382597,5.400770303329455 -883,10.0,8.0,0.0,4.807692307692308 -883,10.0,10.0,0.0,-4.807692307692308 -883,11.0,3.0,0.0,4.191255364806866 -883,11.0,11.0,5.047393974936599,-21.25074238629525 -883,11.0,12.0,0.0,7.142857142857143 -883,11.0,14.0,-3.0953961826564296,6.097275864326261 -883,11.0,15.0,-1.9519977922801688,4.104359379111847 -883,12.0,11.0,0.0,7.142857142857143 -883,12.0,12.0,0.0,-7.142857142857143 -883,13.0,13.0,2.4909522639994623,-2.250874059369649 -883,13.0,14.0,-2.4909522639994623,2.250874059369649 -883,14.0,11.0,-3.0953961826564296,6.097275864326261 -883,14.0,13.0,-2.4909522639994623,2.250874059369649 -883,14.0,14.0,9.365498545964757,-16.01163373210796 -883,14.0,17.0,-1.8108011504072024,3.687418931630696 -883,14.0,22.0,-1.9683489489016612,3.976064876781356 -883,15.0,11.0,-1.9519977922801688,4.104359379111847 -883,15.0,15.0,3.271064728633931,-8.94513365126506 -883,15.0,16.0,-1.3190669363537617,4.8407742721532125 -883,16.0,9.0,-3.956039125715353,10.317447719844054 -883,16.0,15.0,-1.3190669363537617,4.8407742721532125 -883,16.0,16.0,5.275106062069114,-15.158221991997266 -883,17.0,14.0,-1.8108011504072024,3.687418931630696 -883,17.0,17.0,4.886487584415919,-9.906177730909668 -883,17.0,18.0,-3.0756864340087167,6.218758799278971 -883,18.0,17.0,-3.0756864340087167,6.218758799278971 -883,18.0,18.0,8.958039375185187,-17.98346468163191 -883,18.0,19.0,-5.88235294117647,11.76470588235294 -883,19.0,9.0,-1.7848303152666305,3.98535828943083 -883,19.0,18.0,-5.88235294117647,11.76470588235294 -883,19.0,19.0,7.6671832564431,-15.75006417178377 -883,20.0,9.0,-5.101853820159654,10.98071411292983 -883,20.0,20.0,21.876495189895888,-45.10843276170355 -883,20.0,21.0,-16.774641369736234,34.127718648773715 -883,21.0,9.0,-2.619319553382597,5.400770303329455 -883,21.0,20.0,-16.774641369736234,34.127718648773715 -883,21.0,21.0,21.93449907537439,-43.48289181517921 -883,21.0,23.0,-2.5405381522555563,3.95440286307604 -883,22.0,14.0,-1.9683489489016612,3.976064876781356 -883,22.0,22.0,3.429754555384988,-6.965303617315433 -883,22.0,23.0,-1.4614056064833263,2.989238740534077 -883,23.0,21.0,-2.5405381522555563,3.95440286307604 -883,23.0,22.0,-1.4614056064833263,2.989238740534077 -883,23.0,23.0,5.311836702613133,-9.188263657315172 -883,23.0,24.0,-1.3098929438742493,2.287622053705056 -883,24.0,23.0,-1.3098929438742493,2.287622053705056 -883,24.0,24.0,4.495715080321987,-7.864978761969621 -883,24.0,25.0,-1.2165301194494855,1.8171440463475024 -883,24.0,26.0,-1.9692920169982515,3.760212661917064 -883,25.0,24.0,-1.2165301194494855,1.8171440463475024 -883,25.0,25.0,1.2165301194494855,-1.8171440463475024 -883,26.0,24.0,-1.9692920169982515,3.760212661917064 -883,26.0,26.0,3.652281470778589,-9.46044252232512 -883,26.0,27.0,0.0,2.608731947574922 -883,26.0,28.0,-0.99553355095268,1.881005840357816 -883,26.0,29.0,-0.6874559028276572,1.293971494797717 -883,27.0,5.0,-4.362844058012917,15.463571542897856 -883,27.0,7.0,-1.4439790613954469,4.540814658476248 -883,27.0,26.0,0.0,2.608731947574922 -883,27.0,27.0,5.806823119408364,-22.67145722159613 -883,28.0,26.0,-0.99553355095268,1.881005840357816 -883,28.0,28.0,1.9075867579849564,-3.604364401207048 -883,28.0,29.0,-0.9120532070322764,1.7233585608492326 -883,29.0,26.0,-0.6874559028276572,1.293971494797717 -883,29.0,28.0,-0.9120532070322764,1.7233585608492326 -883,29.0,29.0,1.5995091098599337,-3.0173300556469496 -884,0.0,0.0,6.765516048652632,-21.23160167089863 -884,0.0,1.0,-5.224646179885656,15.646726840803398 -884,0.0,2.0,-1.5408698687669766,5.631674830095234 -884,1.0,0.0,-5.224646179885656,15.646726840803398 -884,1.0,1.0,9.75228216552403,-30.648662892676068 -884,1.0,3.0,-1.7055303166990268,5.1973792282565086 -884,1.0,4.0,-1.1359607881738778,4.772479328281356 -884,1.0,5.0,-1.6861448807654689,5.116477495334806 -884,2.0,0.0,-1.5408698687669766,5.631674830095234 -884,2.0,2.0,9.736318911079088,-29.13794745915803 -884,2.0,3.0,-8.19544904231211,23.5308726290628 -884,3.0,1.0,-1.7055303166990268,5.1973792282565086 -884,3.0,2.0,-8.19544904231211,23.5308726290628 -884,3.0,3.0,9.900979359011137,-33.202706969773025 -884,3.0,11.0,0.0,4.191255364806866 -884,4.0,1.0,-1.1359607881738778,4.772479328281356 -884,4.0,4.0,4.089980824135861,-12.190647245055052 -884,4.0,6.0,-2.954020035961983,7.449267916773697 -884,5.0,1.0,-1.6861448807654689,5.116477495334806 -884,5.0,5.0,15.928507538860009,-58.60696415673565 -884,5.0,6.0,-3.590210423980992,11.02611441072814 -884,5.0,7.0,-6.289308176100628,22.0125786163522 -884,5.0,8.0,0.0,4.915840805411357 -884,5.0,27.0,-4.362844058012917,15.463571542897856 -884,6.0,4.0,-2.954020035961983,7.449267916773697 -884,6.0,5.0,-3.590210423980992,11.02611441072814 -884,6.0,6.0,6.544230459942975,-18.45668232750184 -884,7.0,5.0,-6.289308176100628,22.0125786163522 -884,7.0,7.0,7.733287237496075,-26.527493274828448 -884,7.0,27.0,-1.4439790613954469,4.540814658476248 -884,8.0,5.0,0.0,4.915840805411357 -884,8.0,8.0,0.0,-18.706293706293707 -884,8.0,9.0,0.0,9.090909090909092 -884,8.0,10.0,0.0,4.807692307692308 -884,9.0,8.0,0.0,9.090909090909092 -884,9.0,9.0,13.462042814524237,-39.58519951644326 -884,9.0,16.0,-3.956039125715353,10.317447719844054 -884,9.0,19.0,-1.7848303152666305,3.98535828943083 -884,9.0,20.0,-5.101853820159654,10.98071411292983 -884,9.0,21.0,-2.619319553382597,5.400770303329455 -884,10.0,8.0,0.0,4.807692307692308 -884,10.0,10.0,0.0,-4.807692307692308 -884,11.0,3.0,0.0,4.191255364806866 -884,11.0,11.0,6.573961583776156,-24.424167659260668 -884,11.0,12.0,0.0,7.142857142857143 -884,11.0,13.0,-1.5265676088395577,3.1734252729654173 -884,11.0,14.0,-3.0953961826564296,6.097275864326261 -884,11.0,15.0,-1.9519977922801688,4.104359379111847 -884,12.0,11.0,0.0,7.142857142857143 -884,12.0,12.0,0.0,-7.142857142857143 -884,13.0,11.0,-1.5265676088395577,3.1734252729654173 -884,13.0,13.0,4.01751987283902,-5.424299332335067 -884,13.0,14.0,-2.4909522639994623,2.250874059369649 -884,14.0,11.0,-3.0953961826564296,6.097275864326261 -884,14.0,13.0,-2.4909522639994623,2.250874059369649 -884,14.0,14.0,9.365498545964757,-16.01163373210796 -884,14.0,17.0,-1.8108011504072024,3.687418931630696 -884,14.0,22.0,-1.9683489489016612,3.976064876781356 -884,15.0,11.0,-1.9519977922801688,4.104359379111847 -884,15.0,15.0,3.271064728633931,-8.94513365126506 -884,15.0,16.0,-1.3190669363537617,4.8407742721532125 -884,16.0,9.0,-3.956039125715353,10.317447719844054 -884,16.0,15.0,-1.3190669363537617,4.8407742721532125 -884,16.0,16.0,5.275106062069114,-15.158221991997266 -884,17.0,14.0,-1.8108011504072024,3.687418931630696 -884,17.0,17.0,4.886487584415919,-9.906177730909668 -884,17.0,18.0,-3.0756864340087167,6.218758799278971 -884,18.0,17.0,-3.0756864340087167,6.218758799278971 -884,18.0,18.0,8.958039375185187,-17.98346468163191 -884,18.0,19.0,-5.88235294117647,11.76470588235294 -884,19.0,9.0,-1.7848303152666305,3.98535828943083 -884,19.0,18.0,-5.88235294117647,11.76470588235294 -884,19.0,19.0,7.6671832564431,-15.75006417178377 -884,20.0,9.0,-5.101853820159654,10.98071411292983 -884,20.0,20.0,21.876495189895888,-45.10843276170355 -884,20.0,21.0,-16.774641369736234,34.127718648773715 -884,21.0,9.0,-2.619319553382597,5.400770303329455 -884,21.0,20.0,-16.774641369736234,34.127718648773715 -884,21.0,21.0,21.93449907537439,-43.48289181517921 -884,21.0,23.0,-2.5405381522555563,3.95440286307604 -884,22.0,14.0,-1.9683489489016612,3.976064876781356 -884,22.0,22.0,3.429754555384988,-6.965303617315433 -884,22.0,23.0,-1.4614056064833263,2.989238740534077 -884,23.0,21.0,-2.5405381522555563,3.95440286307604 -884,23.0,22.0,-1.4614056064833263,2.989238740534077 -884,23.0,23.0,5.311836702613133,-9.188263657315172 -884,23.0,24.0,-1.3098929438742493,2.287622053705056 -884,24.0,23.0,-1.3098929438742493,2.287622053705056 -884,24.0,24.0,4.495715080321987,-7.864978761969621 -884,24.0,25.0,-1.2165301194494855,1.8171440463475024 -884,24.0,26.0,-1.9692920169982515,3.760212661917064 -884,25.0,24.0,-1.2165301194494855,1.8171440463475024 -884,25.0,25.0,1.2165301194494855,-1.8171440463475024 -884,26.0,24.0,-1.9692920169982515,3.760212661917064 -884,26.0,26.0,3.652281470778589,-9.46044252232512 -884,26.0,27.0,0.0,2.608731947574922 -884,26.0,28.0,-0.99553355095268,1.881005840357816 -884,26.0,29.0,-0.6874559028276572,1.293971494797717 -884,27.0,5.0,-4.362844058012917,15.463571542897856 -884,27.0,7.0,-1.4439790613954469,4.540814658476248 -884,27.0,26.0,0.0,2.608731947574922 -884,27.0,27.0,5.806823119408364,-22.67145722159613 -884,28.0,26.0,-0.99553355095268,1.881005840357816 -884,28.0,28.0,1.9075867579849564,-3.604364401207048 -884,28.0,29.0,-0.9120532070322764,1.7233585608492326 -884,29.0,26.0,-0.6874559028276572,1.293971494797717 -884,29.0,28.0,-0.9120532070322764,1.7233585608492326 -884,29.0,29.0,1.5995091098599337,-3.0173300556469496 -885,0.0,0.0,6.765516048652632,-21.23160167089863 -885,0.0,1.0,-5.224646179885656,15.646726840803398 -885,0.0,2.0,-1.5408698687669766,5.631674830095234 -885,1.0,0.0,-5.224646179885656,15.646726840803398 -885,1.0,1.0,9.75228216552403,-30.648662892676068 -885,1.0,3.0,-1.7055303166990268,5.1973792282565086 -885,1.0,4.0,-1.1359607881738778,4.772479328281356 -885,1.0,5.0,-1.6861448807654689,5.116477495334806 -885,2.0,0.0,-1.5408698687669766,5.631674830095234 -885,2.0,2.0,9.736318911079088,-29.13794745915803 -885,2.0,3.0,-8.19544904231211,23.5308726290628 -885,3.0,1.0,-1.7055303166990268,5.1973792282565086 -885,3.0,2.0,-8.19544904231211,23.5308726290628 -885,3.0,3.0,16.314103089185693,-55.509410535254254 -885,3.0,5.0,-6.413123730174556,22.31120356548123 -885,3.0,11.0,0.0,4.191255364806866 -885,4.0,1.0,-1.1359607881738778,4.772479328281356 -885,4.0,4.0,4.089980824135861,-12.190647245055052 -885,4.0,6.0,-2.954020035961983,7.449267916773697 -885,5.0,1.0,-1.6861448807654689,5.116477495334806 -885,5.0,3.0,-6.413123730174556,22.31120356548123 -885,5.0,5.0,22.341631269034565,-82.8291478657789 -885,5.0,6.0,-3.590210423980992,11.02611441072814 -885,5.0,7.0,-6.289308176100628,22.0125786163522 -885,5.0,8.0,0.0,4.915840805411357 -885,5.0,9.0,0.0,1.8561002591115965 -885,5.0,27.0,-4.362844058012917,15.463571542897856 -885,6.0,4.0,-2.954020035961983,7.449267916773697 -885,6.0,5.0,-3.590210423980992,11.02611441072814 -885,6.0,6.0,6.544230459942975,-18.45668232750184 -885,7.0,5.0,-6.289308176100628,22.0125786163522 -885,7.0,7.0,7.733287237496075,-26.527493274828448 -885,7.0,27.0,-1.4439790613954469,4.540814658476248 -885,8.0,5.0,0.0,4.915840805411357 -885,8.0,8.0,0.0,-18.706293706293707 -885,8.0,9.0,0.0,9.090909090909092 -885,8.0,10.0,0.0,4.807692307692308 -885,9.0,5.0,0.0,1.8561002591115965 -885,9.0,8.0,0.0,9.090909090909092 -885,9.0,9.0,13.462042814524237,-41.3837606675224 -885,9.0,16.0,-3.956039125715353,10.317447719844054 -885,9.0,19.0,-1.7848303152666305,3.98535828943083 -885,9.0,20.0,-5.101853820159654,10.98071411292983 -885,9.0,21.0,-2.619319553382597,5.400770303329455 -885,10.0,8.0,0.0,4.807692307692308 -885,10.0,10.0,0.0,-4.807692307692308 -885,11.0,3.0,0.0,4.191255364806866 -885,11.0,11.0,6.573961583776156,-24.424167659260668 -885,11.0,12.0,0.0,7.142857142857143 -885,11.0,13.0,-1.5265676088395577,3.1734252729654173 -885,11.0,14.0,-3.0953961826564296,6.097275864326261 -885,11.0,15.0,-1.9519977922801688,4.104359379111847 -885,12.0,11.0,0.0,7.142857142857143 -885,12.0,12.0,0.0,-7.142857142857143 -885,13.0,11.0,-1.5265676088395577,3.1734252729654173 -885,13.0,13.0,4.01751987283902,-5.424299332335067 -885,13.0,14.0,-2.4909522639994623,2.250874059369649 -885,14.0,11.0,-3.0953961826564296,6.097275864326261 -885,14.0,13.0,-2.4909522639994623,2.250874059369649 -885,14.0,14.0,9.365498545964757,-16.01163373210796 -885,14.0,17.0,-1.8108011504072024,3.687418931630696 -885,14.0,22.0,-1.9683489489016612,3.976064876781356 -885,15.0,11.0,-1.9519977922801688,4.104359379111847 -885,15.0,15.0,3.271064728633931,-8.94513365126506 -885,15.0,16.0,-1.3190669363537617,4.8407742721532125 -885,16.0,9.0,-3.956039125715353,10.317447719844054 -885,16.0,15.0,-1.3190669363537617,4.8407742721532125 -885,16.0,16.0,5.275106062069114,-15.158221991997266 -885,17.0,14.0,-1.8108011504072024,3.687418931630696 -885,17.0,17.0,4.886487584415919,-9.906177730909668 -885,17.0,18.0,-3.0756864340087167,6.218758799278971 -885,18.0,17.0,-3.0756864340087167,6.218758799278971 -885,18.0,18.0,8.958039375185187,-17.98346468163191 -885,18.0,19.0,-5.88235294117647,11.76470588235294 -885,19.0,9.0,-1.7848303152666305,3.98535828943083 -885,19.0,18.0,-5.88235294117647,11.76470588235294 -885,19.0,19.0,7.6671832564431,-15.75006417178377 -885,20.0,9.0,-5.101853820159654,10.98071411292983 -885,20.0,20.0,21.876495189895888,-45.10843276170355 -885,20.0,21.0,-16.774641369736234,34.127718648773715 -885,21.0,9.0,-2.619319553382597,5.400770303329455 -885,21.0,20.0,-16.774641369736234,34.127718648773715 -885,21.0,21.0,21.93449907537439,-43.48289181517921 -885,21.0,23.0,-2.5405381522555563,3.95440286307604 -885,22.0,14.0,-1.9683489489016612,3.976064876781356 -885,22.0,22.0,3.429754555384988,-6.965303617315433 -885,22.0,23.0,-1.4614056064833263,2.989238740534077 -885,23.0,21.0,-2.5405381522555563,3.95440286307604 -885,23.0,22.0,-1.4614056064833263,2.989238740534077 -885,23.0,23.0,5.311836702613133,-9.188263657315172 -885,23.0,24.0,-1.3098929438742493,2.287622053705056 -885,24.0,23.0,-1.3098929438742493,2.287622053705056 -885,24.0,24.0,4.495715080321987,-7.864978761969621 -885,24.0,25.0,-1.2165301194494855,1.8171440463475024 -885,24.0,26.0,-1.9692920169982515,3.760212661917064 -885,25.0,24.0,-1.2165301194494855,1.8171440463475024 -885,25.0,25.0,1.2165301194494855,-1.8171440463475024 -885,26.0,24.0,-1.9692920169982515,3.760212661917064 -885,26.0,26.0,3.652281470778589,-9.46044252232512 -885,26.0,27.0,0.0,2.608731947574922 -885,26.0,28.0,-0.99553355095268,1.881005840357816 -885,26.0,29.0,-0.6874559028276572,1.293971494797717 -885,27.0,5.0,-4.362844058012917,15.463571542897856 -885,27.0,7.0,-1.4439790613954469,4.540814658476248 -885,27.0,26.0,0.0,2.608731947574922 -885,27.0,27.0,5.806823119408364,-22.67145722159613 -885,28.0,26.0,-0.99553355095268,1.881005840357816 -885,28.0,28.0,1.9075867579849564,-3.604364401207048 -885,28.0,29.0,-0.9120532070322764,1.7233585608492326 -885,29.0,26.0,-0.6874559028276572,1.293971494797717 -885,29.0,28.0,-0.9120532070322764,1.7233585608492326 -885,29.0,29.0,1.5995091098599337,-3.0173300556469496 -886,0.0,0.0,6.765516048652632,-21.23160167089863 -886,0.0,1.0,-5.224646179885656,15.646726840803398 -886,0.0,2.0,-1.5408698687669766,5.631674830095234 -886,1.0,0.0,-5.224646179885656,15.646726840803398 -886,1.0,1.0,9.75228216552403,-30.648662892676068 -886,1.0,3.0,-1.7055303166990268,5.1973792282565086 -886,1.0,4.0,-1.1359607881738778,4.772479328281356 -886,1.0,5.0,-1.6861448807654689,5.116477495334806 -886,2.0,0.0,-1.5408698687669766,5.631674830095234 -886,2.0,2.0,9.736318911079088,-29.13794745915803 -886,2.0,3.0,-8.19544904231211,23.5308726290628 -886,3.0,1.0,-1.7055303166990268,5.1973792282565086 -886,3.0,2.0,-8.19544904231211,23.5308726290628 -886,3.0,3.0,16.314103089185693,-55.509410535254254 -886,3.0,5.0,-6.413123730174556,22.31120356548123 -886,3.0,11.0,0.0,4.191255364806866 -886,4.0,1.0,-1.1359607881738778,4.772479328281356 -886,4.0,4.0,4.089980824135861,-12.190647245055052 -886,4.0,6.0,-2.954020035961983,7.449267916773697 -886,5.0,1.0,-1.6861448807654689,5.116477495334806 -886,5.0,3.0,-6.413123730174556,22.31120356548123 -886,5.0,5.0,22.341631269034565,-82.8291478657789 -886,5.0,6.0,-3.590210423980992,11.02611441072814 -886,5.0,7.0,-6.289308176100628,22.0125786163522 -886,5.0,8.0,0.0,4.915840805411357 -886,5.0,9.0,0.0,1.8561002591115965 -886,5.0,27.0,-4.362844058012917,15.463571542897856 -886,6.0,4.0,-2.954020035961983,7.449267916773697 -886,6.0,5.0,-3.590210423980992,11.02611441072814 -886,6.0,6.0,6.544230459942975,-18.45668232750184 -886,7.0,5.0,-6.289308176100628,22.0125786163522 -886,7.0,7.0,7.733287237496075,-26.527493274828448 -886,7.0,27.0,-1.4439790613954469,4.540814658476248 -886,8.0,5.0,0.0,4.915840805411357 -886,8.0,8.0,0.0,-18.706293706293707 -886,8.0,9.0,0.0,9.090909090909092 -886,8.0,10.0,0.0,4.807692307692308 -886,9.0,5.0,0.0,1.8561002591115965 -886,9.0,8.0,0.0,9.090909090909092 -886,9.0,9.0,13.462042814524237,-41.3837606675224 -886,9.0,16.0,-3.956039125715353,10.317447719844054 -886,9.0,19.0,-1.7848303152666305,3.98535828943083 -886,9.0,20.0,-5.101853820159654,10.98071411292983 -886,9.0,21.0,-2.619319553382597,5.400770303329455 -886,10.0,8.0,0.0,4.807692307692308 -886,10.0,10.0,0.0,-4.807692307692308 -886,11.0,3.0,0.0,4.191255364806866 -886,11.0,11.0,6.573961583776156,-24.424167659260668 -886,11.0,12.0,0.0,7.142857142857143 -886,11.0,13.0,-1.5265676088395577,3.1734252729654173 -886,11.0,14.0,-3.0953961826564296,6.097275864326261 -886,11.0,15.0,-1.9519977922801688,4.104359379111847 -886,12.0,11.0,0.0,7.142857142857143 -886,12.0,12.0,0.0,-7.142857142857143 -886,13.0,11.0,-1.5265676088395577,3.1734252729654173 -886,13.0,13.0,4.01751987283902,-5.424299332335067 -886,13.0,14.0,-2.4909522639994623,2.250874059369649 -886,14.0,11.0,-3.0953961826564296,6.097275864326261 -886,14.0,13.0,-2.4909522639994623,2.250874059369649 -886,14.0,14.0,9.365498545964757,-16.01163373210796 -886,14.0,17.0,-1.8108011504072024,3.687418931630696 -886,14.0,22.0,-1.9683489489016612,3.976064876781356 -886,15.0,11.0,-1.9519977922801688,4.104359379111847 -886,15.0,15.0,3.271064728633931,-8.94513365126506 -886,15.0,16.0,-1.3190669363537617,4.8407742721532125 -886,16.0,9.0,-3.956039125715353,10.317447719844054 -886,16.0,15.0,-1.3190669363537617,4.8407742721532125 -886,16.0,16.0,5.275106062069114,-15.158221991997266 -886,17.0,14.0,-1.8108011504072024,3.687418931630696 -886,17.0,17.0,1.8108011504072024,-3.687418931630696 -886,18.0,18.0,5.88235294117647,-11.76470588235294 -886,18.0,19.0,-5.88235294117647,11.76470588235294 -886,19.0,9.0,-1.7848303152666305,3.98535828943083 -886,19.0,18.0,-5.88235294117647,11.76470588235294 -886,19.0,19.0,7.6671832564431,-15.75006417178377 -886,20.0,9.0,-5.101853820159654,10.98071411292983 -886,20.0,20.0,21.876495189895888,-45.10843276170355 -886,20.0,21.0,-16.774641369736234,34.127718648773715 -886,21.0,9.0,-2.619319553382597,5.400770303329455 -886,21.0,20.0,-16.774641369736234,34.127718648773715 -886,21.0,21.0,21.93449907537439,-43.48289181517921 -886,21.0,23.0,-2.5405381522555563,3.95440286307604 -886,22.0,14.0,-1.9683489489016612,3.976064876781356 -886,22.0,22.0,3.429754555384988,-6.965303617315433 -886,22.0,23.0,-1.4614056064833263,2.989238740534077 -886,23.0,21.0,-2.5405381522555563,3.95440286307604 -886,23.0,22.0,-1.4614056064833263,2.989238740534077 -886,23.0,23.0,5.311836702613133,-9.188263657315172 -886,23.0,24.0,-1.3098929438742493,2.287622053705056 -886,24.0,23.0,-1.3098929438742493,2.287622053705056 -886,24.0,24.0,4.495715080321987,-7.864978761969621 -886,24.0,25.0,-1.2165301194494855,1.8171440463475024 -886,24.0,26.0,-1.9692920169982515,3.760212661917064 -886,25.0,24.0,-1.2165301194494855,1.8171440463475024 -886,25.0,25.0,1.2165301194494855,-1.8171440463475024 -886,26.0,24.0,-1.9692920169982515,3.760212661917064 -886,26.0,26.0,3.652281470778589,-9.46044252232512 -886,26.0,27.0,0.0,2.608731947574922 -886,26.0,28.0,-0.99553355095268,1.881005840357816 -886,26.0,29.0,-0.6874559028276572,1.293971494797717 -886,27.0,5.0,-4.362844058012917,15.463571542897856 -886,27.0,7.0,-1.4439790613954469,4.540814658476248 -886,27.0,26.0,0.0,2.608731947574922 -886,27.0,27.0,5.806823119408364,-22.67145722159613 -886,28.0,26.0,-0.99553355095268,1.881005840357816 -886,28.0,28.0,1.9075867579849564,-3.604364401207048 -886,28.0,29.0,-0.9120532070322764,1.7233585608492326 -886,29.0,26.0,-0.6874559028276572,1.293971494797717 -886,29.0,28.0,-0.9120532070322764,1.7233585608492326 -886,29.0,29.0,1.5995091098599337,-3.0173300556469496 -887,0.0,0.0,6.765516048652632,-21.23160167089863 -887,0.0,1.0,-5.224646179885656,15.646726840803398 -887,0.0,2.0,-1.5408698687669766,5.631674830095234 -887,1.0,0.0,-5.224646179885656,15.646726840803398 -887,1.0,1.0,9.75228216552403,-30.648662892676068 -887,1.0,3.0,-1.7055303166990268,5.1973792282565086 -887,1.0,4.0,-1.1359607881738778,4.772479328281356 -887,1.0,5.0,-1.6861448807654689,5.116477495334806 -887,2.0,0.0,-1.5408698687669766,5.631674830095234 -887,2.0,2.0,9.736318911079088,-29.13794745915803 -887,2.0,3.0,-8.19544904231211,23.5308726290628 -887,3.0,1.0,-1.7055303166990268,5.1973792282565086 -887,3.0,2.0,-8.19544904231211,23.5308726290628 -887,3.0,3.0,16.314103089185693,-55.509410535254254 -887,3.0,5.0,-6.413123730174556,22.31120356548123 -887,3.0,11.0,0.0,4.191255364806866 -887,4.0,1.0,-1.1359607881738778,4.772479328281356 -887,4.0,4.0,4.089980824135861,-12.190647245055052 -887,4.0,6.0,-2.954020035961983,7.449267916773697 -887,5.0,1.0,-1.6861448807654689,5.116477495334806 -887,5.0,3.0,-6.413123730174556,22.31120356548123 -887,5.0,5.0,22.341631269034565,-82.8291478657789 -887,5.0,6.0,-3.590210423980992,11.02611441072814 -887,5.0,7.0,-6.289308176100628,22.0125786163522 -887,5.0,8.0,0.0,4.915840805411357 -887,5.0,9.0,0.0,1.8561002591115965 -887,5.0,27.0,-4.362844058012917,15.463571542897856 -887,6.0,4.0,-2.954020035961983,7.449267916773697 -887,6.0,5.0,-3.590210423980992,11.02611441072814 -887,6.0,6.0,6.544230459942975,-18.45668232750184 -887,7.0,5.0,-6.289308176100628,22.0125786163522 -887,7.0,7.0,7.733287237496075,-26.527493274828448 -887,7.0,27.0,-1.4439790613954469,4.540814658476248 -887,8.0,5.0,0.0,4.915840805411357 -887,8.0,8.0,0.0,-18.706293706293707 -887,8.0,9.0,0.0,9.090909090909092 -887,8.0,10.0,0.0,4.807692307692308 -887,9.0,5.0,0.0,1.8561002591115965 -887,9.0,8.0,0.0,9.090909090909092 -887,9.0,9.0,6.886684135426284,-25.66554264434889 -887,9.0,19.0,-1.7848303152666305,3.98535828943083 -887,9.0,20.0,-5.101853820159654,10.98071411292983 -887,10.0,8.0,0.0,4.807692307692308 -887,10.0,10.0,0.0,-4.807692307692308 -887,11.0,3.0,0.0,4.191255364806866 -887,11.0,11.0,5.047393974936599,-21.25074238629525 -887,11.0,12.0,0.0,7.142857142857143 -887,11.0,14.0,-3.0953961826564296,6.097275864326261 -887,11.0,15.0,-1.9519977922801688,4.104359379111847 -887,12.0,11.0,0.0,7.142857142857143 -887,12.0,12.0,0.0,-7.142857142857143 -887,13.0,13.0,2.4909522639994623,-2.250874059369649 -887,13.0,14.0,-2.4909522639994623,2.250874059369649 -887,14.0,11.0,-3.0953961826564296,6.097275864326261 -887,14.0,13.0,-2.4909522639994623,2.250874059369649 -887,14.0,14.0,9.365498545964757,-16.01163373210796 -887,14.0,17.0,-1.8108011504072024,3.687418931630696 -887,14.0,22.0,-1.9683489489016612,3.976064876781356 -887,15.0,11.0,-1.9519977922801688,4.104359379111847 -887,15.0,15.0,3.271064728633931,-8.94513365126506 -887,15.0,16.0,-1.3190669363537617,4.8407742721532125 -887,16.0,15.0,-1.3190669363537617,4.8407742721532125 -887,16.0,16.0,1.3190669363537617,-4.8407742721532125 -887,17.0,14.0,-1.8108011504072024,3.687418931630696 -887,17.0,17.0,4.886487584415919,-9.906177730909668 -887,17.0,18.0,-3.0756864340087167,6.218758799278971 -887,18.0,17.0,-3.0756864340087167,6.218758799278971 -887,18.0,18.0,8.958039375185187,-17.98346468163191 -887,18.0,19.0,-5.88235294117647,11.76470588235294 -887,19.0,9.0,-1.7848303152666305,3.98535828943083 -887,19.0,18.0,-5.88235294117647,11.76470588235294 -887,19.0,19.0,7.6671832564431,-15.75006417178377 -887,20.0,9.0,-5.101853820159654,10.98071411292983 -887,20.0,20.0,21.876495189895888,-45.10843276170355 -887,20.0,21.0,-16.774641369736234,34.127718648773715 -887,21.0,20.0,-16.774641369736234,34.127718648773715 -887,21.0,21.0,19.31517952199179,-38.08212151184976 -887,21.0,23.0,-2.5405381522555563,3.95440286307604 -887,22.0,14.0,-1.9683489489016612,3.976064876781356 -887,22.0,22.0,3.429754555384988,-6.965303617315433 -887,22.0,23.0,-1.4614056064833263,2.989238740534077 -887,23.0,21.0,-2.5405381522555563,3.95440286307604 -887,23.0,22.0,-1.4614056064833263,2.989238740534077 -887,23.0,23.0,5.311836702613133,-9.188263657315172 -887,23.0,24.0,-1.3098929438742493,2.287622053705056 -887,24.0,23.0,-1.3098929438742493,2.287622053705056 -887,24.0,24.0,4.495715080321987,-7.864978761969621 -887,24.0,25.0,-1.2165301194494855,1.8171440463475024 -887,24.0,26.0,-1.9692920169982515,3.760212661917064 -887,25.0,24.0,-1.2165301194494855,1.8171440463475024 -887,25.0,25.0,1.2165301194494855,-1.8171440463475024 -887,26.0,24.0,-1.9692920169982515,3.760212661917064 -887,26.0,26.0,3.652281470778589,-9.46044252232512 -887,26.0,27.0,0.0,2.608731947574922 -887,26.0,28.0,-0.99553355095268,1.881005840357816 -887,26.0,29.0,-0.6874559028276572,1.293971494797717 -887,27.0,5.0,-4.362844058012917,15.463571542897856 -887,27.0,7.0,-1.4439790613954469,4.540814658476248 -887,27.0,26.0,0.0,2.608731947574922 -887,27.0,27.0,5.806823119408364,-22.67145722159613 -887,28.0,26.0,-0.99553355095268,1.881005840357816 -887,28.0,28.0,1.9075867579849564,-3.604364401207048 -887,28.0,29.0,-0.9120532070322764,1.7233585608492326 -887,29.0,26.0,-0.6874559028276572,1.293971494797717 -887,29.0,28.0,-0.9120532070322764,1.7233585608492326 -887,29.0,29.0,1.5995091098599337,-3.0173300556469496 -888,0.0,0.0,6.765516048652632,-21.23160167089863 -888,0.0,1.0,-5.224646179885656,15.646726840803398 -888,0.0,2.0,-1.5408698687669766,5.631674830095234 -888,1.0,0.0,-5.224646179885656,15.646726840803398 -888,1.0,1.0,9.75228216552403,-30.648662892676068 -888,1.0,3.0,-1.7055303166990268,5.1973792282565086 -888,1.0,4.0,-1.1359607881738778,4.772479328281356 -888,1.0,5.0,-1.6861448807654689,5.116477495334806 -888,2.0,0.0,-1.5408698687669766,5.631674830095234 -888,2.0,2.0,9.736318911079088,-29.13794745915803 -888,2.0,3.0,-8.19544904231211,23.5308726290628 -888,3.0,1.0,-1.7055303166990268,5.1973792282565086 -888,3.0,2.0,-8.19544904231211,23.5308726290628 -888,3.0,3.0,9.900979359011137,-33.202706969773025 -888,3.0,11.0,0.0,4.191255364806866 -888,4.0,1.0,-1.1359607881738778,4.772479328281356 -888,4.0,4.0,4.089980824135861,-12.190647245055052 -888,4.0,6.0,-2.954020035961983,7.449267916773697 -888,5.0,1.0,-1.6861448807654689,5.116477495334806 -888,5.0,5.0,15.928507538860009,-60.52244430029767 -888,5.0,6.0,-3.590210423980992,11.02611441072814 -888,5.0,7.0,-6.289308176100628,22.0125786163522 -888,5.0,8.0,0.0,4.915840805411357 -888,5.0,9.0,0.0,1.8561002591115965 -888,5.0,27.0,-4.362844058012917,15.463571542897856 -888,6.0,4.0,-2.954020035961983,7.449267916773697 -888,6.0,5.0,-3.590210423980992,11.02611441072814 -888,6.0,6.0,6.544230459942975,-18.45668232750184 -888,7.0,5.0,-6.289308176100628,22.0125786163522 -888,7.0,7.0,7.733287237496075,-26.527493274828448 -888,7.0,27.0,-1.4439790613954469,4.540814658476248 -888,8.0,5.0,0.0,4.915840805411357 -888,8.0,8.0,0.0,-18.706293706293707 -888,8.0,9.0,0.0,9.090909090909092 -888,8.0,10.0,0.0,4.807692307692308 -888,9.0,5.0,0.0,1.8561002591115965 -888,9.0,8.0,0.0,9.090909090909092 -888,9.0,9.0,13.462042814524237,-41.3837606675224 -888,9.0,16.0,-3.956039125715353,10.317447719844054 -888,9.0,19.0,-1.7848303152666305,3.98535828943083 -888,9.0,20.0,-5.101853820159654,10.98071411292983 -888,9.0,21.0,-2.619319553382597,5.400770303329455 -888,10.0,8.0,0.0,4.807692307692308 -888,10.0,10.0,0.0,-4.807692307692308 -888,11.0,3.0,0.0,4.191255364806866 -888,11.0,11.0,6.573961583776156,-24.424167659260668 -888,11.0,12.0,0.0,7.142857142857143 -888,11.0,13.0,-1.5265676088395577,3.1734252729654173 -888,11.0,14.0,-3.0953961826564296,6.097275864326261 -888,11.0,15.0,-1.9519977922801688,4.104359379111847 -888,12.0,11.0,0.0,7.142857142857143 -888,12.0,12.0,0.0,-7.142857142857143 -888,13.0,11.0,-1.5265676088395577,3.1734252729654173 -888,13.0,13.0,4.01751987283902,-5.424299332335067 -888,13.0,14.0,-2.4909522639994623,2.250874059369649 -888,14.0,11.0,-3.0953961826564296,6.097275864326261 -888,14.0,13.0,-2.4909522639994623,2.250874059369649 -888,14.0,14.0,9.365498545964757,-16.01163373210796 -888,14.0,17.0,-1.8108011504072024,3.687418931630696 -888,14.0,22.0,-1.9683489489016612,3.976064876781356 -888,15.0,11.0,-1.9519977922801688,4.104359379111847 -888,15.0,15.0,3.271064728633931,-8.94513365126506 -888,15.0,16.0,-1.3190669363537617,4.8407742721532125 -888,16.0,9.0,-3.956039125715353,10.317447719844054 -888,16.0,15.0,-1.3190669363537617,4.8407742721532125 -888,16.0,16.0,5.275106062069114,-15.158221991997266 -888,17.0,14.0,-1.8108011504072024,3.687418931630696 -888,17.0,17.0,4.886487584415919,-9.906177730909668 -888,17.0,18.0,-3.0756864340087167,6.218758799278971 -888,18.0,17.0,-3.0756864340087167,6.218758799278971 -888,18.0,18.0,8.958039375185187,-17.98346468163191 -888,18.0,19.0,-5.88235294117647,11.76470588235294 -888,19.0,9.0,-1.7848303152666305,3.98535828943083 -888,19.0,18.0,-5.88235294117647,11.76470588235294 -888,19.0,19.0,7.6671832564431,-15.75006417178377 -888,20.0,9.0,-5.101853820159654,10.98071411292983 -888,20.0,20.0,21.876495189895888,-45.10843276170355 -888,20.0,21.0,-16.774641369736234,34.127718648773715 -888,21.0,9.0,-2.619319553382597,5.400770303329455 -888,21.0,20.0,-16.774641369736234,34.127718648773715 -888,21.0,21.0,21.93449907537439,-43.48289181517921 -888,21.0,23.0,-2.5405381522555563,3.95440286307604 -888,22.0,14.0,-1.9683489489016612,3.976064876781356 -888,22.0,22.0,3.429754555384988,-6.965303617315433 -888,22.0,23.0,-1.4614056064833263,2.989238740534077 -888,23.0,21.0,-2.5405381522555563,3.95440286307604 -888,23.0,22.0,-1.4614056064833263,2.989238740534077 -888,23.0,23.0,5.311836702613133,-9.188263657315172 -888,23.0,24.0,-1.3098929438742493,2.287622053705056 -888,24.0,23.0,-1.3098929438742493,2.287622053705056 -888,24.0,24.0,4.495715080321987,-7.864978761969621 -888,24.0,25.0,-1.2165301194494855,1.8171440463475024 -888,24.0,26.0,-1.9692920169982515,3.760212661917064 -888,25.0,24.0,-1.2165301194494855,1.8171440463475024 -888,25.0,25.0,1.2165301194494855,-1.8171440463475024 -888,26.0,24.0,-1.9692920169982515,3.760212661917064 -888,26.0,26.0,3.652281470778589,-9.46044252232512 -888,26.0,27.0,0.0,2.608731947574922 -888,26.0,28.0,-0.99553355095268,1.881005840357816 -888,26.0,29.0,-0.6874559028276572,1.293971494797717 -888,27.0,5.0,-4.362844058012917,15.463571542897856 -888,27.0,7.0,-1.4439790613954469,4.540814658476248 -888,27.0,26.0,0.0,2.608731947574922 -888,27.0,27.0,5.806823119408364,-22.67145722159613 -888,28.0,26.0,-0.99553355095268,1.881005840357816 -888,28.0,28.0,1.9075867579849564,-3.604364401207048 -888,28.0,29.0,-0.9120532070322764,1.7233585608492326 -888,29.0,26.0,-0.6874559028276572,1.293971494797717 -888,29.0,28.0,-0.9120532070322764,1.7233585608492326 -888,29.0,29.0,1.5995091098599337,-3.0173300556469496 -889,0.0,0.0,6.765516048652632,-21.23160167089863 -889,0.0,1.0,-5.224646179885656,15.646726840803398 -889,0.0,2.0,-1.5408698687669766,5.631674830095234 -889,1.0,0.0,-5.224646179885656,15.646726840803398 -889,1.0,1.0,9.75228216552403,-30.648662892676068 -889,1.0,3.0,-1.7055303166990268,5.1973792282565086 -889,1.0,4.0,-1.1359607881738778,4.772479328281356 -889,1.0,5.0,-1.6861448807654689,5.116477495334806 -889,2.0,0.0,-1.5408698687669766,5.631674830095234 -889,2.0,2.0,9.736318911079088,-29.13794745915803 -889,2.0,3.0,-8.19544904231211,23.5308726290628 -889,3.0,1.0,-1.7055303166990268,5.1973792282565086 -889,3.0,2.0,-8.19544904231211,23.5308726290628 -889,3.0,3.0,16.314103089185693,-55.509410535254254 -889,3.0,5.0,-6.413123730174556,22.31120356548123 -889,3.0,11.0,0.0,4.191255364806866 -889,4.0,1.0,-1.1359607881738778,4.772479328281356 -889,4.0,4.0,4.089980824135861,-12.190647245055052 -889,4.0,6.0,-2.954020035961983,7.449267916773697 -889,5.0,1.0,-1.6861448807654689,5.116477495334806 -889,5.0,3.0,-6.413123730174556,22.31120356548123 -889,5.0,5.0,22.341631269034565,-82.8291478657789 -889,5.0,6.0,-3.590210423980992,11.02611441072814 -889,5.0,7.0,-6.289308176100628,22.0125786163522 -889,5.0,8.0,0.0,4.915840805411357 -889,5.0,9.0,0.0,1.8561002591115965 -889,5.0,27.0,-4.362844058012917,15.463571542897856 -889,6.0,4.0,-2.954020035961983,7.449267916773697 -889,6.0,5.0,-3.590210423980992,11.02611441072814 -889,6.0,6.0,6.544230459942975,-18.45668232750184 -889,7.0,5.0,-6.289308176100628,22.0125786163522 -889,7.0,7.0,7.733287237496075,-26.527493274828448 -889,7.0,27.0,-1.4439790613954469,4.540814658476248 -889,8.0,5.0,0.0,4.915840805411357 -889,8.0,8.0,0.0,-18.706293706293707 -889,8.0,9.0,0.0,9.090909090909092 -889,8.0,10.0,0.0,4.807692307692308 -889,9.0,5.0,0.0,1.8561002591115965 -889,9.0,8.0,0.0,9.090909090909092 -889,9.0,9.0,13.462042814524237,-41.3837606675224 -889,9.0,16.0,-3.956039125715353,10.317447719844054 -889,9.0,19.0,-1.7848303152666305,3.98535828943083 -889,9.0,20.0,-5.101853820159654,10.98071411292983 -889,9.0,21.0,-2.619319553382597,5.400770303329455 -889,10.0,8.0,0.0,4.807692307692308 -889,10.0,10.0,0.0,-4.807692307692308 -889,11.0,3.0,0.0,4.191255364806866 -889,11.0,11.0,6.573961583776156,-24.424167659260668 -889,11.0,12.0,0.0,7.142857142857143 -889,11.0,13.0,-1.5265676088395577,3.1734252729654173 -889,11.0,14.0,-3.0953961826564296,6.097275864326261 -889,11.0,15.0,-1.9519977922801688,4.104359379111847 -889,12.0,11.0,0.0,7.142857142857143 -889,12.0,12.0,0.0,-7.142857142857143 -889,13.0,11.0,-1.5265676088395577,3.1734252729654173 -889,13.0,13.0,4.01751987283902,-5.424299332335067 -889,13.0,14.0,-2.4909522639994623,2.250874059369649 -889,14.0,11.0,-3.0953961826564296,6.097275864326261 -889,14.0,13.0,-2.4909522639994623,2.250874059369649 -889,14.0,14.0,9.365498545964757,-16.01163373210796 -889,14.0,17.0,-1.8108011504072024,3.687418931630696 -889,14.0,22.0,-1.9683489489016612,3.976064876781356 -889,15.0,11.0,-1.9519977922801688,4.104359379111847 -889,15.0,15.0,3.271064728633931,-8.94513365126506 -889,15.0,16.0,-1.3190669363537617,4.8407742721532125 -889,16.0,9.0,-3.956039125715353,10.317447719844054 -889,16.0,15.0,-1.3190669363537617,4.8407742721532125 -889,16.0,16.0,5.275106062069114,-15.158221991997266 -889,17.0,14.0,-1.8108011504072024,3.687418931630696 -889,17.0,17.0,4.886487584415919,-9.906177730909668 -889,17.0,18.0,-3.0756864340087167,6.218758799278971 -889,18.0,17.0,-3.0756864340087167,6.218758799278971 -889,18.0,18.0,8.958039375185187,-17.98346468163191 -889,18.0,19.0,-5.88235294117647,11.76470588235294 -889,19.0,9.0,-1.7848303152666305,3.98535828943083 -889,19.0,18.0,-5.88235294117647,11.76470588235294 -889,19.0,19.0,7.6671832564431,-15.75006417178377 -889,20.0,9.0,-5.101853820159654,10.98071411292983 -889,20.0,20.0,21.876495189895888,-45.10843276170355 -889,20.0,21.0,-16.774641369736234,34.127718648773715 -889,21.0,9.0,-2.619319553382597,5.400770303329455 -889,21.0,20.0,-16.774641369736234,34.127718648773715 -889,21.0,21.0,21.93449907537439,-43.48289181517921 -889,21.0,23.0,-2.5405381522555563,3.95440286307604 -889,22.0,14.0,-1.9683489489016612,3.976064876781356 -889,22.0,22.0,3.429754555384988,-6.965303617315433 -889,22.0,23.0,-1.4614056064833263,2.989238740534077 -889,23.0,21.0,-2.5405381522555563,3.95440286307604 -889,23.0,22.0,-1.4614056064833263,2.989238740534077 -889,23.0,23.0,5.311836702613133,-9.188263657315172 -889,23.0,24.0,-1.3098929438742493,2.287622053705056 -889,24.0,23.0,-1.3098929438742493,2.287622053705056 -889,24.0,24.0,4.495715080321987,-7.864978761969621 -889,24.0,25.0,-1.2165301194494855,1.8171440463475024 -889,24.0,26.0,-1.9692920169982515,3.760212661917064 -889,25.0,24.0,-1.2165301194494855,1.8171440463475024 -889,25.0,25.0,1.2165301194494855,-1.8171440463475024 -889,26.0,24.0,-1.9692920169982515,3.760212661917064 -889,26.0,26.0,3.652281470778589,-9.46044252232512 -889,26.0,27.0,0.0,2.608731947574922 -889,26.0,28.0,-0.99553355095268,1.881005840357816 -889,26.0,29.0,-0.6874559028276572,1.293971494797717 -889,27.0,5.0,-4.362844058012917,15.463571542897856 -889,27.0,7.0,-1.4439790613954469,4.540814658476248 -889,27.0,26.0,0.0,2.608731947574922 -889,27.0,27.0,5.806823119408364,-22.67145722159613 -889,28.0,26.0,-0.99553355095268,1.881005840357816 -889,28.0,28.0,1.9075867579849564,-3.604364401207048 -889,28.0,29.0,-0.9120532070322764,1.7233585608492326 -889,29.0,26.0,-0.6874559028276572,1.293971494797717 -889,29.0,28.0,-0.9120532070322764,1.7233585608492326 -889,29.0,29.0,1.5995091098599337,-3.0173300556469496 -890,0.0,0.0,6.765516048652632,-21.23160167089863 -890,0.0,1.0,-5.224646179885656,15.646726840803398 -890,0.0,2.0,-1.5408698687669766,5.631674830095234 -890,1.0,0.0,-5.224646179885656,15.646726840803398 -890,1.0,1.0,9.75228216552403,-30.648662892676068 -890,1.0,3.0,-1.7055303166990268,5.1973792282565086 -890,1.0,4.0,-1.1359607881738778,4.772479328281356 -890,1.0,5.0,-1.6861448807654689,5.116477495334806 -890,2.0,0.0,-1.5408698687669766,5.631674830095234 -890,2.0,2.0,9.736318911079088,-29.13794745915803 -890,2.0,3.0,-8.19544904231211,23.5308726290628 -890,3.0,1.0,-1.7055303166990268,5.1973792282565086 -890,3.0,2.0,-8.19544904231211,23.5308726290628 -890,3.0,3.0,16.314103089185693,-55.509410535254254 -890,3.0,5.0,-6.413123730174556,22.31120356548123 -890,3.0,11.0,0.0,4.191255364806866 -890,4.0,1.0,-1.1359607881738778,4.772479328281356 -890,4.0,4.0,4.089980824135861,-12.190647245055052 -890,4.0,6.0,-2.954020035961983,7.449267916773697 -890,5.0,1.0,-1.6861448807654689,5.116477495334806 -890,5.0,3.0,-6.413123730174556,22.31120356548123 -890,5.0,5.0,22.341631269034565,-82.8291478657789 -890,5.0,6.0,-3.590210423980992,11.02611441072814 -890,5.0,7.0,-6.289308176100628,22.0125786163522 -890,5.0,8.0,0.0,4.915840805411357 -890,5.0,9.0,0.0,1.8561002591115965 -890,5.0,27.0,-4.362844058012917,15.463571542897856 -890,6.0,4.0,-2.954020035961983,7.449267916773697 -890,6.0,5.0,-3.590210423980992,11.02611441072814 -890,6.0,6.0,6.544230459942975,-18.45668232750184 -890,7.0,5.0,-6.289308176100628,22.0125786163522 -890,7.0,7.0,7.733287237496075,-26.527493274828448 -890,7.0,27.0,-1.4439790613954469,4.540814658476248 -890,8.0,5.0,0.0,4.915840805411357 -890,8.0,8.0,0.0,-18.706293706293707 -890,8.0,9.0,0.0,9.090909090909092 -890,8.0,10.0,0.0,4.807692307692308 -890,9.0,5.0,0.0,1.8561002591115965 -890,9.0,8.0,0.0,9.090909090909092 -890,9.0,9.0,13.462042814524237,-41.3837606675224 -890,9.0,16.0,-3.956039125715353,10.317447719844054 -890,9.0,19.0,-1.7848303152666305,3.98535828943083 -890,9.0,20.0,-5.101853820159654,10.98071411292983 -890,9.0,21.0,-2.619319553382597,5.400770303329455 -890,10.0,8.0,0.0,4.807692307692308 -890,10.0,10.0,0.0,-4.807692307692308 -890,11.0,3.0,0.0,4.191255364806866 -890,11.0,11.0,6.573961583776156,-24.424167659260668 -890,11.0,12.0,0.0,7.142857142857143 -890,11.0,13.0,-1.5265676088395577,3.1734252729654173 -890,11.0,14.0,-3.0953961826564296,6.097275864326261 -890,11.0,15.0,-1.9519977922801688,4.104359379111847 -890,12.0,11.0,0.0,7.142857142857143 -890,12.0,12.0,0.0,-7.142857142857143 -890,13.0,11.0,-1.5265676088395577,3.1734252729654173 -890,13.0,13.0,4.01751987283902,-5.424299332335067 -890,13.0,14.0,-2.4909522639994623,2.250874059369649 -890,14.0,11.0,-3.0953961826564296,6.097275864326261 -890,14.0,13.0,-2.4909522639994623,2.250874059369649 -890,14.0,14.0,9.365498545964757,-16.01163373210796 -890,14.0,17.0,-1.8108011504072024,3.687418931630696 -890,14.0,22.0,-1.9683489489016612,3.976064876781356 -890,15.0,11.0,-1.9519977922801688,4.104359379111847 -890,15.0,15.0,3.271064728633931,-8.94513365126506 -890,15.0,16.0,-1.3190669363537617,4.8407742721532125 -890,16.0,9.0,-3.956039125715353,10.317447719844054 -890,16.0,15.0,-1.3190669363537617,4.8407742721532125 -890,16.0,16.0,5.275106062069114,-15.158221991997266 -890,17.0,14.0,-1.8108011504072024,3.687418931630696 -890,17.0,17.0,4.886487584415919,-9.906177730909668 -890,17.0,18.0,-3.0756864340087167,6.218758799278971 -890,18.0,17.0,-3.0756864340087167,6.218758799278971 -890,18.0,18.0,8.958039375185187,-17.98346468163191 -890,18.0,19.0,-5.88235294117647,11.76470588235294 -890,19.0,9.0,-1.7848303152666305,3.98535828943083 -890,19.0,18.0,-5.88235294117647,11.76470588235294 -890,19.0,19.0,7.6671832564431,-15.75006417178377 -890,20.0,9.0,-5.101853820159654,10.98071411292983 -890,20.0,20.0,21.876495189895888,-45.10843276170355 -890,20.0,21.0,-16.774641369736234,34.127718648773715 -890,21.0,9.0,-2.619319553382597,5.400770303329455 -890,21.0,20.0,-16.774641369736234,34.127718648773715 -890,21.0,21.0,21.93449907537439,-43.48289181517921 -890,21.0,23.0,-2.5405381522555563,3.95440286307604 -890,22.0,14.0,-1.9683489489016612,3.976064876781356 -890,22.0,22.0,3.429754555384988,-6.965303617315433 -890,22.0,23.0,-1.4614056064833263,2.989238740534077 -890,23.0,21.0,-2.5405381522555563,3.95440286307604 -890,23.0,22.0,-1.4614056064833263,2.989238740534077 -890,23.0,23.0,5.311836702613133,-9.188263657315172 -890,23.0,24.0,-1.3098929438742493,2.287622053705056 -890,24.0,23.0,-1.3098929438742493,2.287622053705056 -890,24.0,24.0,4.495715080321987,-7.864978761969621 -890,24.0,25.0,-1.2165301194494855,1.8171440463475024 -890,24.0,26.0,-1.9692920169982515,3.760212661917064 -890,25.0,24.0,-1.2165301194494855,1.8171440463475024 -890,25.0,25.0,1.2165301194494855,-1.8171440463475024 -890,26.0,24.0,-1.9692920169982515,3.760212661917064 -890,26.0,26.0,3.652281470778589,-9.46044252232512 -890,26.0,27.0,0.0,2.608731947574922 -890,26.0,28.0,-0.99553355095268,1.881005840357816 -890,26.0,29.0,-0.6874559028276572,1.293971494797717 -890,27.0,5.0,-4.362844058012917,15.463571542897856 -890,27.0,7.0,-1.4439790613954469,4.540814658476248 -890,27.0,26.0,0.0,2.608731947574922 -890,27.0,27.0,5.806823119408364,-22.67145722159613 -890,28.0,26.0,-0.99553355095268,1.881005840357816 -890,28.0,28.0,1.9075867579849564,-3.604364401207048 -890,28.0,29.0,-0.9120532070322764,1.7233585608492326 -890,29.0,26.0,-0.6874559028276572,1.293971494797717 -890,29.0,28.0,-0.9120532070322764,1.7233585608492326 -890,29.0,29.0,1.5995091098599337,-3.0173300556469496 -891,0.0,0.0,6.765516048652632,-21.23160167089863 -891,0.0,1.0,-5.224646179885656,15.646726840803398 -891,0.0,2.0,-1.5408698687669766,5.631674830095234 -891,1.0,0.0,-5.224646179885656,15.646726840803398 -891,1.0,1.0,9.75228216552403,-30.648662892676068 -891,1.0,3.0,-1.7055303166990268,5.1973792282565086 -891,1.0,4.0,-1.1359607881738778,4.772479328281356 -891,1.0,5.0,-1.6861448807654689,5.116477495334806 -891,2.0,0.0,-1.5408698687669766,5.631674830095234 -891,2.0,2.0,9.736318911079088,-29.13794745915803 -891,2.0,3.0,-8.19544904231211,23.5308726290628 -891,3.0,1.0,-1.7055303166990268,5.1973792282565086 -891,3.0,2.0,-8.19544904231211,23.5308726290628 -891,3.0,3.0,16.314103089185693,-55.509410535254254 -891,3.0,5.0,-6.413123730174556,22.31120356548123 -891,3.0,11.0,0.0,4.191255364806866 -891,4.0,1.0,-1.1359607881738778,4.772479328281356 -891,4.0,4.0,4.089980824135861,-12.190647245055052 -891,4.0,6.0,-2.954020035961983,7.449267916773697 -891,5.0,1.0,-1.6861448807654689,5.116477495334806 -891,5.0,3.0,-6.413123730174556,22.31120356548123 -891,5.0,5.0,22.341631269034565,-82.8291478657789 -891,5.0,6.0,-3.590210423980992,11.02611441072814 -891,5.0,7.0,-6.289308176100628,22.0125786163522 -891,5.0,8.0,0.0,4.915840805411357 -891,5.0,9.0,0.0,1.8561002591115965 -891,5.0,27.0,-4.362844058012917,15.463571542897856 -891,6.0,4.0,-2.954020035961983,7.449267916773697 -891,6.0,5.0,-3.590210423980992,11.02611441072814 -891,6.0,6.0,6.544230459942975,-18.45668232750184 -891,7.0,5.0,-6.289308176100628,22.0125786163522 -891,7.0,7.0,7.733287237496075,-26.527493274828448 -891,7.0,27.0,-1.4439790613954469,4.540814658476248 -891,8.0,5.0,0.0,4.915840805411357 -891,8.0,8.0,0.0,-18.706293706293707 -891,8.0,9.0,0.0,9.090909090909092 -891,8.0,10.0,0.0,4.807692307692308 -891,9.0,5.0,0.0,1.8561002591115965 -891,9.0,8.0,0.0,9.090909090909092 -891,9.0,9.0,13.462042814524237,-41.3837606675224 -891,9.0,16.0,-3.956039125715353,10.317447719844054 -891,9.0,19.0,-1.7848303152666305,3.98535828943083 -891,9.0,20.0,-5.101853820159654,10.98071411292983 -891,9.0,21.0,-2.619319553382597,5.400770303329455 -891,10.0,8.0,0.0,4.807692307692308 -891,10.0,10.0,0.0,-4.807692307692308 -891,11.0,3.0,0.0,4.191255364806866 -891,11.0,11.0,6.573961583776156,-24.424167659260668 -891,11.0,12.0,0.0,7.142857142857143 -891,11.0,13.0,-1.5265676088395577,3.1734252729654173 -891,11.0,14.0,-3.0953961826564296,6.097275864326261 -891,11.0,15.0,-1.9519977922801688,4.104359379111847 -891,12.0,11.0,0.0,7.142857142857143 -891,12.0,12.0,0.0,-7.142857142857143 -891,13.0,11.0,-1.5265676088395577,3.1734252729654173 -891,13.0,13.0,4.01751987283902,-5.424299332335067 -891,13.0,14.0,-2.4909522639994623,2.250874059369649 -891,14.0,11.0,-3.0953961826564296,6.097275864326261 -891,14.0,13.0,-2.4909522639994623,2.250874059369649 -891,14.0,14.0,9.365498545964757,-16.01163373210796 -891,14.0,17.0,-1.8108011504072024,3.687418931630696 -891,14.0,22.0,-1.9683489489016612,3.976064876781356 -891,15.0,11.0,-1.9519977922801688,4.104359379111847 -891,15.0,15.0,3.271064728633931,-8.94513365126506 -891,15.0,16.0,-1.3190669363537617,4.8407742721532125 -891,16.0,9.0,-3.956039125715353,10.317447719844054 -891,16.0,15.0,-1.3190669363537617,4.8407742721532125 -891,16.0,16.0,5.275106062069114,-15.158221991997266 -891,17.0,14.0,-1.8108011504072024,3.687418931630696 -891,17.0,17.0,4.886487584415919,-9.906177730909668 -891,17.0,18.0,-3.0756864340087167,6.218758799278971 -891,18.0,17.0,-3.0756864340087167,6.218758799278971 -891,18.0,18.0,8.958039375185187,-17.98346468163191 -891,18.0,19.0,-5.88235294117647,11.76470588235294 -891,19.0,9.0,-1.7848303152666305,3.98535828943083 -891,19.0,18.0,-5.88235294117647,11.76470588235294 -891,19.0,19.0,7.6671832564431,-15.75006417178377 -891,20.0,9.0,-5.101853820159654,10.98071411292983 -891,20.0,20.0,21.876495189895888,-45.10843276170355 -891,20.0,21.0,-16.774641369736234,34.127718648773715 -891,21.0,9.0,-2.619319553382597,5.400770303329455 -891,21.0,20.0,-16.774641369736234,34.127718648773715 -891,21.0,21.0,21.93449907537439,-43.48289181517921 -891,21.0,23.0,-2.5405381522555563,3.95440286307604 -891,22.0,14.0,-1.9683489489016612,3.976064876781356 -891,22.0,22.0,3.429754555384988,-6.965303617315433 -891,22.0,23.0,-1.4614056064833263,2.989238740534077 -891,23.0,21.0,-2.5405381522555563,3.95440286307604 -891,23.0,22.0,-1.4614056064833263,2.989238740534077 -891,23.0,23.0,5.311836702613133,-9.188263657315172 -891,23.0,24.0,-1.3098929438742493,2.287622053705056 -891,24.0,23.0,-1.3098929438742493,2.287622053705056 -891,24.0,24.0,4.495715080321987,-7.864978761969621 -891,24.0,25.0,-1.2165301194494855,1.8171440463475024 -891,24.0,26.0,-1.9692920169982515,3.760212661917064 -891,25.0,24.0,-1.2165301194494855,1.8171440463475024 -891,25.0,25.0,1.2165301194494855,-1.8171440463475024 -891,26.0,24.0,-1.9692920169982515,3.760212661917064 -891,26.0,26.0,3.652281470778589,-9.46044252232512 -891,26.0,27.0,0.0,2.608731947574922 -891,26.0,28.0,-0.99553355095268,1.881005840357816 -891,26.0,29.0,-0.6874559028276572,1.293971494797717 -891,27.0,5.0,-4.362844058012917,15.463571542897856 -891,27.0,7.0,-1.4439790613954469,4.540814658476248 -891,27.0,26.0,0.0,2.608731947574922 -891,27.0,27.0,5.806823119408364,-22.67145722159613 -891,28.0,26.0,-0.99553355095268,1.881005840357816 -891,28.0,28.0,1.9075867579849564,-3.604364401207048 -891,28.0,29.0,-0.9120532070322764,1.7233585608492326 -891,29.0,26.0,-0.6874559028276572,1.293971494797717 -891,29.0,28.0,-0.9120532070322764,1.7233585608492326 -891,29.0,29.0,1.5995091098599337,-3.0173300556469496 -892,0.0,0.0,6.765516048652632,-21.23160167089863 -892,0.0,1.0,-5.224646179885656,15.646726840803398 -892,0.0,2.0,-1.5408698687669766,5.631674830095234 -892,1.0,0.0,-5.224646179885656,15.646726840803398 -892,1.0,1.0,9.75228216552403,-30.648662892676068 -892,1.0,3.0,-1.7055303166990268,5.1973792282565086 -892,1.0,4.0,-1.1359607881738778,4.772479328281356 -892,1.0,5.0,-1.6861448807654689,5.116477495334806 -892,2.0,0.0,-1.5408698687669766,5.631674830095234 -892,2.0,2.0,9.736318911079088,-29.13794745915803 -892,2.0,3.0,-8.19544904231211,23.5308726290628 -892,3.0,1.0,-1.7055303166990268,5.1973792282565086 -892,3.0,2.0,-8.19544904231211,23.5308726290628 -892,3.0,3.0,9.900979359011137,-33.202706969773025 -892,3.0,11.0,0.0,4.191255364806866 -892,4.0,1.0,-1.1359607881738778,4.772479328281356 -892,4.0,4.0,1.1359607881738778,-4.751579328281355 -892,5.0,1.0,-1.6861448807654689,5.116477495334806 -892,5.0,5.0,15.928507538860009,-60.52244430029767 -892,5.0,6.0,-3.590210423980992,11.02611441072814 -892,5.0,7.0,-6.289308176100628,22.0125786163522 -892,5.0,8.0,0.0,4.915840805411357 -892,5.0,9.0,0.0,1.8561002591115965 -892,5.0,27.0,-4.362844058012917,15.463571542897856 -892,6.0,5.0,-3.590210423980992,11.02611441072814 -892,6.0,6.0,3.590210423980992,-11.01761441072814 -892,7.0,5.0,-6.289308176100628,22.0125786163522 -892,7.0,7.0,7.733287237496075,-26.527493274828448 -892,7.0,27.0,-1.4439790613954469,4.540814658476248 -892,8.0,5.0,0.0,4.915840805411357 -892,8.0,8.0,0.0,-18.706293706293707 -892,8.0,9.0,0.0,9.090909090909092 -892,8.0,10.0,0.0,4.807692307692308 -892,9.0,5.0,0.0,1.8561002591115965 -892,9.0,8.0,0.0,9.090909090909092 -892,9.0,9.0,13.462042814524237,-41.3837606675224 -892,9.0,16.0,-3.956039125715353,10.317447719844054 -892,9.0,19.0,-1.7848303152666305,3.98535828943083 -892,9.0,20.0,-5.101853820159654,10.98071411292983 -892,9.0,21.0,-2.619319553382597,5.400770303329455 -892,10.0,8.0,0.0,4.807692307692308 -892,10.0,10.0,0.0,-4.807692307692308 -892,11.0,3.0,0.0,4.191255364806866 -892,11.0,11.0,6.573961583776156,-24.424167659260668 -892,11.0,12.0,0.0,7.142857142857143 -892,11.0,13.0,-1.5265676088395577,3.1734252729654173 -892,11.0,14.0,-3.0953961826564296,6.097275864326261 -892,11.0,15.0,-1.9519977922801688,4.104359379111847 -892,12.0,11.0,0.0,7.142857142857143 -892,12.0,12.0,0.0,-7.142857142857143 -892,13.0,11.0,-1.5265676088395577,3.1734252729654173 -892,13.0,13.0,4.01751987283902,-5.424299332335067 -892,13.0,14.0,-2.4909522639994623,2.250874059369649 -892,14.0,11.0,-3.0953961826564296,6.097275864326261 -892,14.0,13.0,-2.4909522639994623,2.250874059369649 -892,14.0,14.0,7.397149597063095,-12.035568855326606 -892,14.0,17.0,-1.8108011504072024,3.687418931630696 -892,15.0,11.0,-1.9519977922801688,4.104359379111847 -892,15.0,15.0,3.271064728633931,-8.94513365126506 -892,15.0,16.0,-1.3190669363537617,4.8407742721532125 -892,16.0,9.0,-3.956039125715353,10.317447719844054 -892,16.0,15.0,-1.3190669363537617,4.8407742721532125 -892,16.0,16.0,5.275106062069114,-15.158221991997266 -892,17.0,14.0,-1.8108011504072024,3.687418931630696 -892,17.0,17.0,4.886487584415919,-9.906177730909668 -892,17.0,18.0,-3.0756864340087167,6.218758799278971 -892,18.0,17.0,-3.0756864340087167,6.218758799278971 -892,18.0,18.0,3.0756864340087167,-6.218758799278971 -892,19.0,9.0,-1.7848303152666305,3.98535828943083 -892,19.0,19.0,1.7848303152666305,-3.98535828943083 -892,20.0,9.0,-5.101853820159654,10.98071411292983 -892,20.0,20.0,21.876495189895888,-45.10843276170355 -892,20.0,21.0,-16.774641369736234,34.127718648773715 -892,21.0,9.0,-2.619319553382597,5.400770303329455 -892,21.0,20.0,-16.774641369736234,34.127718648773715 -892,21.0,21.0,21.93449907537439,-43.48289181517921 -892,21.0,23.0,-2.5405381522555563,3.95440286307604 -892,22.0,22.0,1.4614056064833263,-2.989238740534077 -892,22.0,23.0,-1.4614056064833263,2.989238740534077 -892,23.0,21.0,-2.5405381522555563,3.95440286307604 -892,23.0,22.0,-1.4614056064833263,2.989238740534077 -892,23.0,23.0,5.311836702613133,-9.188263657315172 -892,23.0,24.0,-1.3098929438742493,2.287622053705056 -892,24.0,23.0,-1.3098929438742493,2.287622053705056 -892,24.0,24.0,4.495715080321987,-7.864978761969621 -892,24.0,25.0,-1.2165301194494855,1.8171440463475024 -892,24.0,26.0,-1.9692920169982515,3.760212661917064 -892,25.0,24.0,-1.2165301194494855,1.8171440463475024 -892,25.0,25.0,1.2165301194494855,-1.8171440463475024 -892,26.0,24.0,-1.9692920169982515,3.760212661917064 -892,26.0,26.0,3.652281470778589,-9.46044252232512 -892,26.0,27.0,0.0,2.608731947574922 -892,26.0,28.0,-0.99553355095268,1.881005840357816 -892,26.0,29.0,-0.6874559028276572,1.293971494797717 -892,27.0,5.0,-4.362844058012917,15.463571542897856 -892,27.0,7.0,-1.4439790613954469,4.540814658476248 -892,27.0,26.0,0.0,2.608731947574922 -892,27.0,27.0,5.806823119408364,-22.67145722159613 -892,28.0,26.0,-0.99553355095268,1.881005840357816 -892,28.0,28.0,1.9075867579849564,-3.604364401207048 -892,28.0,29.0,-0.9120532070322764,1.7233585608492326 -892,29.0,26.0,-0.6874559028276572,1.293971494797717 -892,29.0,28.0,-0.9120532070322764,1.7233585608492326 -892,29.0,29.0,1.5995091098599337,-3.0173300556469496 -893,0.0,0.0,6.765516048652632,-21.23160167089863 -893,0.0,1.0,-5.224646179885656,15.646726840803398 -893,0.0,2.0,-1.5408698687669766,5.631674830095234 -893,1.0,0.0,-5.224646179885656,15.646726840803398 -893,1.0,1.0,9.75228216552403,-30.648662892676068 -893,1.0,3.0,-1.7055303166990268,5.1973792282565086 -893,1.0,4.0,-1.1359607881738778,4.772479328281356 -893,1.0,5.0,-1.6861448807654689,5.116477495334806 -893,2.0,0.0,-1.5408698687669766,5.631674830095234 -893,2.0,2.0,9.736318911079088,-29.13794745915803 -893,2.0,3.0,-8.19544904231211,23.5308726290628 -893,3.0,1.0,-1.7055303166990268,5.1973792282565086 -893,3.0,2.0,-8.19544904231211,23.5308726290628 -893,3.0,3.0,16.314103089185693,-55.509410535254254 -893,3.0,5.0,-6.413123730174556,22.31120356548123 -893,3.0,11.0,0.0,4.191255364806866 -893,4.0,1.0,-1.1359607881738778,4.772479328281356 -893,4.0,4.0,4.089980824135861,-12.190647245055052 -893,4.0,6.0,-2.954020035961983,7.449267916773697 -893,5.0,1.0,-1.6861448807654689,5.116477495334806 -893,5.0,3.0,-6.413123730174556,22.31120356548123 -893,5.0,5.0,22.341631269034565,-82.8291478657789 -893,5.0,6.0,-3.590210423980992,11.02611441072814 -893,5.0,7.0,-6.289308176100628,22.0125786163522 -893,5.0,8.0,0.0,4.915840805411357 -893,5.0,9.0,0.0,1.8561002591115965 -893,5.0,27.0,-4.362844058012917,15.463571542897856 -893,6.0,4.0,-2.954020035961983,7.449267916773697 -893,6.0,5.0,-3.590210423980992,11.02611441072814 -893,6.0,6.0,6.544230459942975,-18.45668232750184 -893,7.0,5.0,-6.289308176100628,22.0125786163522 -893,7.0,7.0,7.733287237496075,-26.527493274828448 -893,7.0,27.0,-1.4439790613954469,4.540814658476248 -893,8.0,5.0,0.0,4.915840805411357 -893,8.0,8.0,0.0,-18.706293706293707 -893,8.0,9.0,0.0,9.090909090909092 -893,8.0,10.0,0.0,4.807692307692308 -893,9.0,5.0,0.0,1.8561002591115965 -893,9.0,8.0,0.0,9.090909090909092 -893,9.0,9.0,13.462042814524237,-41.3837606675224 -893,9.0,16.0,-3.956039125715353,10.317447719844054 -893,9.0,19.0,-1.7848303152666305,3.98535828943083 -893,9.0,20.0,-5.101853820159654,10.98071411292983 -893,9.0,21.0,-2.619319553382597,5.400770303329455 -893,10.0,8.0,0.0,4.807692307692308 -893,10.0,10.0,0.0,-4.807692307692308 -893,11.0,3.0,0.0,4.191255364806866 -893,11.0,11.0,6.573961583776156,-24.424167659260668 -893,11.0,12.0,0.0,7.142857142857143 -893,11.0,13.0,-1.5265676088395577,3.1734252729654173 -893,11.0,14.0,-3.0953961826564296,6.097275864326261 -893,11.0,15.0,-1.9519977922801688,4.104359379111847 -893,12.0,11.0,0.0,7.142857142857143 -893,12.0,12.0,0.0,-7.142857142857143 -893,13.0,11.0,-1.5265676088395577,3.1734252729654173 -893,13.0,13.0,4.01751987283902,-5.424299332335067 -893,13.0,14.0,-2.4909522639994623,2.250874059369649 -893,14.0,11.0,-3.0953961826564296,6.097275864326261 -893,14.0,13.0,-2.4909522639994623,2.250874059369649 -893,14.0,14.0,9.365498545964757,-16.01163373210796 -893,14.0,17.0,-1.8108011504072024,3.687418931630696 -893,14.0,22.0,-1.9683489489016612,3.976064876781356 -893,15.0,11.0,-1.9519977922801688,4.104359379111847 -893,15.0,15.0,3.271064728633931,-8.94513365126506 -893,15.0,16.0,-1.3190669363537617,4.8407742721532125 -893,16.0,9.0,-3.956039125715353,10.317447719844054 -893,16.0,15.0,-1.3190669363537617,4.8407742721532125 -893,16.0,16.0,5.275106062069114,-15.158221991997266 -893,17.0,14.0,-1.8108011504072024,3.687418931630696 -893,17.0,17.0,4.886487584415919,-9.906177730909668 -893,17.0,18.0,-3.0756864340087167,6.218758799278971 -893,18.0,17.0,-3.0756864340087167,6.218758799278971 -893,18.0,18.0,8.958039375185187,-17.98346468163191 -893,18.0,19.0,-5.88235294117647,11.76470588235294 -893,19.0,9.0,-1.7848303152666305,3.98535828943083 -893,19.0,18.0,-5.88235294117647,11.76470588235294 -893,19.0,19.0,7.6671832564431,-15.75006417178377 -893,20.0,9.0,-5.101853820159654,10.98071411292983 -893,20.0,20.0,21.876495189895888,-45.10843276170355 -893,20.0,21.0,-16.774641369736234,34.127718648773715 -893,21.0,9.0,-2.619319553382597,5.400770303329455 -893,21.0,20.0,-16.774641369736234,34.127718648773715 -893,21.0,21.0,21.93449907537439,-43.48289181517921 -893,21.0,23.0,-2.5405381522555563,3.95440286307604 -893,22.0,14.0,-1.9683489489016612,3.976064876781356 -893,22.0,22.0,3.429754555384988,-6.965303617315433 -893,22.0,23.0,-1.4614056064833263,2.989238740534077 -893,23.0,21.0,-2.5405381522555563,3.95440286307604 -893,23.0,22.0,-1.4614056064833263,2.989238740534077 -893,23.0,23.0,5.311836702613133,-9.188263657315172 -893,23.0,24.0,-1.3098929438742493,2.287622053705056 -893,24.0,23.0,-1.3098929438742493,2.287622053705056 -893,24.0,24.0,4.495715080321987,-7.864978761969621 -893,24.0,25.0,-1.2165301194494855,1.8171440463475024 -893,24.0,26.0,-1.9692920169982515,3.760212661917064 -893,25.0,24.0,-1.2165301194494855,1.8171440463475024 -893,25.0,25.0,1.2165301194494855,-1.8171440463475024 -893,26.0,24.0,-1.9692920169982515,3.760212661917064 -893,26.0,26.0,3.652281470778589,-9.46044252232512 -893,26.0,27.0,0.0,2.608731947574922 -893,26.0,28.0,-0.99553355095268,1.881005840357816 -893,26.0,29.0,-0.6874559028276572,1.293971494797717 -893,27.0,5.0,-4.362844058012917,15.463571542897856 -893,27.0,7.0,-1.4439790613954469,4.540814658476248 -893,27.0,26.0,0.0,2.608731947574922 -893,27.0,27.0,5.806823119408364,-22.67145722159613 -893,28.0,26.0,-0.99553355095268,1.881005840357816 -893,28.0,28.0,1.9075867579849564,-3.604364401207048 -893,28.0,29.0,-0.9120532070322764,1.7233585608492326 -893,29.0,26.0,-0.6874559028276572,1.293971494797717 -893,29.0,28.0,-0.9120532070322764,1.7233585608492326 -893,29.0,29.0,1.5995091098599337,-3.0173300556469496 -894,0.0,0.0,6.765516048652632,-21.23160167089863 -894,0.0,1.0,-5.224646179885656,15.646726840803398 -894,0.0,2.0,-1.5408698687669766,5.631674830095234 -894,1.0,0.0,-5.224646179885656,15.646726840803398 -894,1.0,1.0,9.75228216552403,-30.648662892676068 -894,1.0,3.0,-1.7055303166990268,5.1973792282565086 -894,1.0,4.0,-1.1359607881738778,4.772479328281356 -894,1.0,5.0,-1.6861448807654689,5.116477495334806 -894,2.0,0.0,-1.5408698687669766,5.631674830095234 -894,2.0,2.0,9.736318911079088,-29.13794745915803 -894,2.0,3.0,-8.19544904231211,23.5308726290628 -894,3.0,1.0,-1.7055303166990268,5.1973792282565086 -894,3.0,2.0,-8.19544904231211,23.5308726290628 -894,3.0,3.0,16.314103089185693,-55.509410535254254 -894,3.0,5.0,-6.413123730174556,22.31120356548123 -894,3.0,11.0,0.0,4.191255364806866 -894,4.0,1.0,-1.1359607881738778,4.772479328281356 -894,4.0,4.0,4.089980824135861,-12.190647245055052 -894,4.0,6.0,-2.954020035961983,7.449267916773697 -894,5.0,1.0,-1.6861448807654689,5.116477495334806 -894,5.0,3.0,-6.413123730174556,22.31120356548123 -894,5.0,5.0,16.052323092933932,-60.8210692494267 -894,5.0,6.0,-3.590210423980992,11.02611441072814 -894,5.0,8.0,0.0,4.915840805411357 -894,5.0,9.0,0.0,1.8561002591115965 -894,5.0,27.0,-4.362844058012917,15.463571542897856 -894,6.0,4.0,-2.954020035961983,7.449267916773697 -894,6.0,5.0,-3.590210423980992,11.02611441072814 -894,6.0,6.0,6.544230459942975,-18.45668232750184 -894,7.0,7.0,1.4439790613954469,-4.519414658476248 -894,7.0,27.0,-1.4439790613954469,4.540814658476248 -894,8.0,5.0,0.0,4.915840805411357 -894,8.0,8.0,0.0,-18.706293706293707 -894,8.0,9.0,0.0,9.090909090909092 -894,8.0,10.0,0.0,4.807692307692308 -894,9.0,5.0,0.0,1.8561002591115965 -894,9.0,8.0,0.0,9.090909090909092 -894,9.0,9.0,13.462042814524237,-41.3837606675224 -894,9.0,16.0,-3.956039125715353,10.317447719844054 -894,9.0,19.0,-1.7848303152666305,3.98535828943083 -894,9.0,20.0,-5.101853820159654,10.98071411292983 -894,9.0,21.0,-2.619319553382597,5.400770303329455 -894,10.0,8.0,0.0,4.807692307692308 -894,10.0,10.0,0.0,-4.807692307692308 -894,11.0,3.0,0.0,4.191255364806866 -894,11.0,11.0,6.573961583776156,-24.424167659260668 -894,11.0,12.0,0.0,7.142857142857143 -894,11.0,13.0,-1.5265676088395577,3.1734252729654173 -894,11.0,14.0,-3.0953961826564296,6.097275864326261 -894,11.0,15.0,-1.9519977922801688,4.104359379111847 -894,12.0,11.0,0.0,7.142857142857143 -894,12.0,12.0,0.0,-7.142857142857143 -894,13.0,11.0,-1.5265676088395577,3.1734252729654173 -894,13.0,13.0,4.01751987283902,-5.424299332335067 -894,13.0,14.0,-2.4909522639994623,2.250874059369649 -894,14.0,11.0,-3.0953961826564296,6.097275864326261 -894,14.0,13.0,-2.4909522639994623,2.250874059369649 -894,14.0,14.0,9.365498545964757,-16.01163373210796 -894,14.0,17.0,-1.8108011504072024,3.687418931630696 -894,14.0,22.0,-1.9683489489016612,3.976064876781356 -894,15.0,11.0,-1.9519977922801688,4.104359379111847 -894,15.0,15.0,3.271064728633931,-8.94513365126506 -894,15.0,16.0,-1.3190669363537617,4.8407742721532125 -894,16.0,9.0,-3.956039125715353,10.317447719844054 -894,16.0,15.0,-1.3190669363537617,4.8407742721532125 -894,16.0,16.0,5.275106062069114,-15.158221991997266 -894,17.0,14.0,-1.8108011504072024,3.687418931630696 -894,17.0,17.0,4.886487584415919,-9.906177730909668 -894,17.0,18.0,-3.0756864340087167,6.218758799278971 -894,18.0,17.0,-3.0756864340087167,6.218758799278971 -894,18.0,18.0,8.958039375185187,-17.98346468163191 -894,18.0,19.0,-5.88235294117647,11.76470588235294 -894,19.0,9.0,-1.7848303152666305,3.98535828943083 -894,19.0,18.0,-5.88235294117647,11.76470588235294 -894,19.0,19.0,7.6671832564431,-15.75006417178377 -894,20.0,9.0,-5.101853820159654,10.98071411292983 -894,20.0,20.0,21.876495189895888,-45.10843276170355 -894,20.0,21.0,-16.774641369736234,34.127718648773715 -894,21.0,9.0,-2.619319553382597,5.400770303329455 -894,21.0,20.0,-16.774641369736234,34.127718648773715 -894,21.0,21.0,21.93449907537439,-43.48289181517921 -894,21.0,23.0,-2.5405381522555563,3.95440286307604 -894,22.0,14.0,-1.9683489489016612,3.976064876781356 -894,22.0,22.0,3.429754555384988,-6.965303617315433 -894,22.0,23.0,-1.4614056064833263,2.989238740534077 -894,23.0,21.0,-2.5405381522555563,3.95440286307604 -894,23.0,22.0,-1.4614056064833263,2.989238740534077 -894,23.0,23.0,5.311836702613133,-9.188263657315172 -894,23.0,24.0,-1.3098929438742493,2.287622053705056 -894,24.0,23.0,-1.3098929438742493,2.287622053705056 -894,24.0,24.0,4.495715080321987,-7.864978761969621 -894,24.0,25.0,-1.2165301194494855,1.8171440463475024 -894,24.0,26.0,-1.9692920169982515,3.760212661917064 -894,25.0,24.0,-1.2165301194494855,1.8171440463475024 -894,25.0,25.0,1.2165301194494855,-1.8171440463475024 -894,26.0,24.0,-1.9692920169982515,3.760212661917064 -894,26.0,26.0,3.652281470778589,-9.46044252232512 -894,26.0,27.0,0.0,2.608731947574922 -894,26.0,28.0,-0.99553355095268,1.881005840357816 -894,26.0,29.0,-0.6874559028276572,1.293971494797717 -894,27.0,5.0,-4.362844058012917,15.463571542897856 -894,27.0,7.0,-1.4439790613954469,4.540814658476248 -894,27.0,26.0,0.0,2.608731947574922 -894,27.0,27.0,5.806823119408364,-22.67145722159613 -894,28.0,26.0,-0.99553355095268,1.881005840357816 -894,28.0,28.0,1.9075867579849564,-3.604364401207048 -894,28.0,29.0,-0.9120532070322764,1.7233585608492326 -894,29.0,26.0,-0.6874559028276572,1.293971494797717 -894,29.0,28.0,-0.9120532070322764,1.7233585608492326 -894,29.0,29.0,1.5995091098599337,-3.0173300556469496 -895,0.0,0.0,6.765516048652632,-21.23160167089863 -895,0.0,1.0,-5.224646179885656,15.646726840803398 -895,0.0,2.0,-1.5408698687669766,5.631674830095234 -895,1.0,0.0,-5.224646179885656,15.646726840803398 -895,1.0,1.0,9.75228216552403,-30.648662892676068 -895,1.0,3.0,-1.7055303166990268,5.1973792282565086 -895,1.0,4.0,-1.1359607881738778,4.772479328281356 -895,1.0,5.0,-1.6861448807654689,5.116477495334806 -895,2.0,0.0,-1.5408698687669766,5.631674830095234 -895,2.0,2.0,9.736318911079088,-29.13794745915803 -895,2.0,3.0,-8.19544904231211,23.5308726290628 -895,3.0,1.0,-1.7055303166990268,5.1973792282565086 -895,3.0,2.0,-8.19544904231211,23.5308726290628 -895,3.0,3.0,16.314103089185693,-55.509410535254254 -895,3.0,5.0,-6.413123730174556,22.31120356548123 -895,3.0,11.0,0.0,4.191255364806866 -895,4.0,1.0,-1.1359607881738778,4.772479328281356 -895,4.0,4.0,1.1359607881738778,-4.751579328281355 -895,5.0,1.0,-1.6861448807654689,5.116477495334806 -895,5.0,3.0,-6.413123730174556,22.31120356548123 -895,5.0,5.0,22.341631269034565,-82.8291478657789 -895,5.0,6.0,-3.590210423980992,11.02611441072814 -895,5.0,7.0,-6.289308176100628,22.0125786163522 -895,5.0,8.0,0.0,4.915840805411357 -895,5.0,9.0,0.0,1.8561002591115965 -895,5.0,27.0,-4.362844058012917,15.463571542897856 -895,6.0,5.0,-3.590210423980992,11.02611441072814 -895,6.0,6.0,3.590210423980992,-11.01761441072814 -895,7.0,5.0,-6.289308176100628,22.0125786163522 -895,7.0,7.0,7.733287237496075,-26.527493274828448 -895,7.0,27.0,-1.4439790613954469,4.540814658476248 -895,8.0,5.0,0.0,4.915840805411357 -895,8.0,8.0,0.0,-18.706293706293707 -895,8.0,9.0,0.0,9.090909090909092 -895,8.0,10.0,0.0,4.807692307692308 -895,9.0,5.0,0.0,1.8561002591115965 -895,9.0,8.0,0.0,9.090909090909092 -895,9.0,9.0,13.462042814524237,-41.3837606675224 -895,9.0,16.0,-3.956039125715353,10.317447719844054 -895,9.0,19.0,-1.7848303152666305,3.98535828943083 -895,9.0,20.0,-5.101853820159654,10.98071411292983 -895,9.0,21.0,-2.619319553382597,5.400770303329455 -895,10.0,8.0,0.0,4.807692307692308 -895,10.0,10.0,0.0,-4.807692307692308 -895,11.0,3.0,0.0,4.191255364806866 -895,11.0,11.0,6.573961583776156,-24.424167659260668 -895,11.0,12.0,0.0,7.142857142857143 -895,11.0,13.0,-1.5265676088395577,3.1734252729654173 -895,11.0,14.0,-3.0953961826564296,6.097275864326261 -895,11.0,15.0,-1.9519977922801688,4.104359379111847 -895,12.0,11.0,0.0,7.142857142857143 -895,12.0,12.0,0.0,-7.142857142857143 -895,13.0,11.0,-1.5265676088395577,3.1734252729654173 -895,13.0,13.0,4.01751987283902,-5.424299332335067 -895,13.0,14.0,-2.4909522639994623,2.250874059369649 -895,14.0,11.0,-3.0953961826564296,6.097275864326261 -895,14.0,13.0,-2.4909522639994623,2.250874059369649 -895,14.0,14.0,9.365498545964757,-16.01163373210796 -895,14.0,17.0,-1.8108011504072024,3.687418931630696 -895,14.0,22.0,-1.9683489489016612,3.976064876781356 -895,15.0,11.0,-1.9519977922801688,4.104359379111847 -895,15.0,15.0,3.271064728633931,-8.94513365126506 -895,15.0,16.0,-1.3190669363537617,4.8407742721532125 -895,16.0,9.0,-3.956039125715353,10.317447719844054 -895,16.0,15.0,-1.3190669363537617,4.8407742721532125 -895,16.0,16.0,5.275106062069114,-15.158221991997266 -895,17.0,14.0,-1.8108011504072024,3.687418931630696 -895,17.0,17.0,4.886487584415919,-9.906177730909668 -895,17.0,18.0,-3.0756864340087167,6.218758799278971 -895,18.0,17.0,-3.0756864340087167,6.218758799278971 -895,18.0,18.0,3.0756864340087167,-6.218758799278971 -895,19.0,9.0,-1.7848303152666305,3.98535828943083 -895,19.0,19.0,1.7848303152666305,-3.98535828943083 -895,20.0,9.0,-5.101853820159654,10.98071411292983 -895,20.0,20.0,21.876495189895888,-45.10843276170355 -895,20.0,21.0,-16.774641369736234,34.127718648773715 -895,21.0,9.0,-2.619319553382597,5.400770303329455 -895,21.0,20.0,-16.774641369736234,34.127718648773715 -895,21.0,21.0,21.93449907537439,-43.48289181517921 -895,21.0,23.0,-2.5405381522555563,3.95440286307604 -895,22.0,14.0,-1.9683489489016612,3.976064876781356 -895,22.0,22.0,3.429754555384988,-6.965303617315433 -895,22.0,23.0,-1.4614056064833263,2.989238740534077 -895,23.0,21.0,-2.5405381522555563,3.95440286307604 -895,23.0,22.0,-1.4614056064833263,2.989238740534077 -895,23.0,23.0,5.311836702613133,-9.188263657315172 -895,23.0,24.0,-1.3098929438742493,2.287622053705056 -895,24.0,23.0,-1.3098929438742493,2.287622053705056 -895,24.0,24.0,4.495715080321987,-7.864978761969621 -895,24.0,25.0,-1.2165301194494855,1.8171440463475024 -895,24.0,26.0,-1.9692920169982515,3.760212661917064 -895,25.0,24.0,-1.2165301194494855,1.8171440463475024 -895,25.0,25.0,1.2165301194494855,-1.8171440463475024 -895,26.0,24.0,-1.9692920169982515,3.760212661917064 -895,26.0,26.0,3.652281470778589,-9.46044252232512 -895,26.0,27.0,0.0,2.608731947574922 -895,26.0,28.0,-0.99553355095268,1.881005840357816 -895,26.0,29.0,-0.6874559028276572,1.293971494797717 -895,27.0,5.0,-4.362844058012917,15.463571542897856 -895,27.0,7.0,-1.4439790613954469,4.540814658476248 -895,27.0,26.0,0.0,2.608731947574922 -895,27.0,27.0,5.806823119408364,-22.67145722159613 -895,28.0,26.0,-0.99553355095268,1.881005840357816 -895,28.0,28.0,1.9075867579849564,-3.604364401207048 -895,28.0,29.0,-0.9120532070322764,1.7233585608492326 -895,29.0,26.0,-0.6874559028276572,1.293971494797717 -895,29.0,28.0,-0.9120532070322764,1.7233585608492326 -895,29.0,29.0,1.5995091098599337,-3.0173300556469496 -896,0.0,0.0,6.765516048652632,-21.23160167089863 -896,0.0,1.0,-5.224646179885656,15.646726840803398 -896,0.0,2.0,-1.5408698687669766,5.631674830095234 -896,1.0,0.0,-5.224646179885656,15.646726840803398 -896,1.0,1.0,8.046751848825002,-25.46968366441956 -896,1.0,4.0,-1.1359607881738778,4.772479328281356 -896,1.0,5.0,-1.6861448807654689,5.116477495334806 -896,2.0,0.0,-1.5408698687669766,5.631674830095234 -896,2.0,2.0,9.736318911079088,-29.13794745915803 -896,2.0,3.0,-8.19544904231211,23.5308726290628 -896,3.0,2.0,-8.19544904231211,23.5308726290628 -896,3.0,3.0,14.608572772486664,-50.33043130699775 -896,3.0,5.0,-6.413123730174556,22.31120356548123 -896,3.0,11.0,0.0,4.191255364806866 -896,4.0,1.0,-1.1359607881738778,4.772479328281356 -896,4.0,4.0,4.089980824135861,-12.190647245055052 -896,4.0,6.0,-2.954020035961983,7.449267916773697 -896,5.0,1.0,-1.6861448807654689,5.116477495334806 -896,5.0,3.0,-6.413123730174556,22.31120356548123 -896,5.0,5.0,22.341631269034565,-82.8291478657789 -896,5.0,6.0,-3.590210423980992,11.02611441072814 -896,5.0,7.0,-6.289308176100628,22.0125786163522 -896,5.0,8.0,0.0,4.915840805411357 -896,5.0,9.0,0.0,1.8561002591115965 -896,5.0,27.0,-4.362844058012917,15.463571542897856 -896,6.0,4.0,-2.954020035961983,7.449267916773697 -896,6.0,5.0,-3.590210423980992,11.02611441072814 -896,6.0,6.0,6.544230459942975,-18.45668232750184 -896,7.0,5.0,-6.289308176100628,22.0125786163522 -896,7.0,7.0,7.733287237496075,-26.527493274828448 -896,7.0,27.0,-1.4439790613954469,4.540814658476248 -896,8.0,5.0,0.0,4.915840805411357 -896,8.0,8.0,0.0,-18.706293706293707 -896,8.0,9.0,0.0,9.090909090909092 -896,8.0,10.0,0.0,4.807692307692308 -896,9.0,5.0,0.0,1.8561002591115965 -896,9.0,8.0,0.0,9.090909090909092 -896,9.0,9.0,13.462042814524237,-41.3837606675224 -896,9.0,16.0,-3.956039125715353,10.317447719844054 -896,9.0,19.0,-1.7848303152666305,3.98535828943083 -896,9.0,20.0,-5.101853820159654,10.98071411292983 -896,9.0,21.0,-2.619319553382597,5.400770303329455 -896,10.0,8.0,0.0,4.807692307692308 -896,10.0,10.0,0.0,-4.807692307692308 -896,11.0,3.0,0.0,4.191255364806866 -896,11.0,11.0,3.0953961826564296,-17.146383007183402 -896,11.0,12.0,0.0,7.142857142857143 -896,11.0,14.0,-3.0953961826564296,6.097275864326261 -896,12.0,11.0,0.0,7.142857142857143 -896,12.0,12.0,0.0,-7.142857142857143 -896,13.0,13.0,2.4909522639994623,-2.250874059369649 -896,13.0,14.0,-2.4909522639994623,2.250874059369649 -896,14.0,11.0,-3.0953961826564296,6.097275864326261 -896,14.0,13.0,-2.4909522639994623,2.250874059369649 -896,14.0,14.0,7.554697395557554,-12.324214800477266 -896,14.0,22.0,-1.9683489489016612,3.976064876781356 -896,15.0,15.0,1.3190669363537617,-4.8407742721532125 -896,15.0,16.0,-1.3190669363537617,4.8407742721532125 -896,16.0,9.0,-3.956039125715353,10.317447719844054 -896,16.0,15.0,-1.3190669363537617,4.8407742721532125 -896,16.0,16.0,5.275106062069114,-15.158221991997266 -896,17.0,17.0,3.0756864340087167,-6.218758799278971 -896,17.0,18.0,-3.0756864340087167,6.218758799278971 -896,18.0,17.0,-3.0756864340087167,6.218758799278971 -896,18.0,18.0,8.958039375185187,-17.98346468163191 -896,18.0,19.0,-5.88235294117647,11.76470588235294 -896,19.0,9.0,-1.7848303152666305,3.98535828943083 -896,19.0,18.0,-5.88235294117647,11.76470588235294 -896,19.0,19.0,7.6671832564431,-15.75006417178377 -896,20.0,9.0,-5.101853820159654,10.98071411292983 -896,20.0,20.0,21.876495189895888,-45.10843276170355 -896,20.0,21.0,-16.774641369736234,34.127718648773715 -896,21.0,9.0,-2.619319553382597,5.400770303329455 -896,21.0,20.0,-16.774641369736234,34.127718648773715 -896,21.0,21.0,19.393960923118836,-39.52848895210317 -896,22.0,14.0,-1.9683489489016612,3.976064876781356 -896,22.0,22.0,3.429754555384988,-6.965303617315433 -896,22.0,23.0,-1.4614056064833263,2.989238740534077 -896,23.0,22.0,-1.4614056064833263,2.989238740534077 -896,23.0,23.0,2.771298550357576,-5.233860794239132 -896,23.0,24.0,-1.3098929438742493,2.287622053705056 -896,24.0,23.0,-1.3098929438742493,2.287622053705056 -896,24.0,24.0,4.495715080321987,-7.864978761969621 -896,24.0,25.0,-1.2165301194494855,1.8171440463475024 -896,24.0,26.0,-1.9692920169982515,3.760212661917064 -896,25.0,24.0,-1.2165301194494855,1.8171440463475024 -896,25.0,25.0,1.2165301194494855,-1.8171440463475024 -896,26.0,24.0,-1.9692920169982515,3.760212661917064 -896,26.0,26.0,3.652281470778589,-9.46044252232512 -896,26.0,27.0,0.0,2.608731947574922 -896,26.0,28.0,-0.99553355095268,1.881005840357816 -896,26.0,29.0,-0.6874559028276572,1.293971494797717 -896,27.0,5.0,-4.362844058012917,15.463571542897856 -896,27.0,7.0,-1.4439790613954469,4.540814658476248 -896,27.0,26.0,0.0,2.608731947574922 -896,27.0,27.0,5.806823119408364,-22.67145722159613 -896,28.0,26.0,-0.99553355095268,1.881005840357816 -896,28.0,28.0,0.99553355095268,-1.881005840357816 -896,29.0,26.0,-0.6874559028276572,1.293971494797717 -896,29.0,29.0,0.6874559028276572,-1.293971494797717 -897,0.0,0.0,6.765516048652632,-21.23160167089863 -897,0.0,1.0,-5.224646179885656,15.646726840803398 -897,0.0,2.0,-1.5408698687669766,5.631674830095234 -897,1.0,0.0,-5.224646179885656,15.646726840803398 -897,1.0,1.0,9.75228216552403,-30.648662892676068 -897,1.0,3.0,-1.7055303166990268,5.1973792282565086 -897,1.0,4.0,-1.1359607881738778,4.772479328281356 -897,1.0,5.0,-1.6861448807654689,5.116477495334806 -897,2.0,0.0,-1.5408698687669766,5.631674830095234 -897,2.0,2.0,9.736318911079088,-29.13794745915803 -897,2.0,3.0,-8.19544904231211,23.5308726290628 -897,3.0,1.0,-1.7055303166990268,5.1973792282565086 -897,3.0,2.0,-8.19544904231211,23.5308726290628 -897,3.0,3.0,16.314103089185693,-55.509410535254254 -897,3.0,5.0,-6.413123730174556,22.31120356548123 -897,3.0,11.0,0.0,4.191255364806866 -897,4.0,1.0,-1.1359607881738778,4.772479328281356 -897,4.0,4.0,4.089980824135861,-12.190647245055052 -897,4.0,6.0,-2.954020035961983,7.449267916773697 -897,5.0,1.0,-1.6861448807654689,5.116477495334806 -897,5.0,3.0,-6.413123730174556,22.31120356548123 -897,5.0,5.0,22.341631269034565,-82.8291478657789 -897,5.0,6.0,-3.590210423980992,11.02611441072814 -897,5.0,7.0,-6.289308176100628,22.0125786163522 -897,5.0,8.0,0.0,4.915840805411357 -897,5.0,9.0,0.0,1.8561002591115965 -897,5.0,27.0,-4.362844058012917,15.463571542897856 -897,6.0,4.0,-2.954020035961983,7.449267916773697 -897,6.0,5.0,-3.590210423980992,11.02611441072814 -897,6.0,6.0,6.544230459942975,-18.45668232750184 -897,7.0,5.0,-6.289308176100628,22.0125786163522 -897,7.0,7.0,7.733287237496075,-26.527493274828448 -897,7.0,27.0,-1.4439790613954469,4.540814658476248 -897,8.0,5.0,0.0,4.915840805411357 -897,8.0,8.0,0.0,-18.706293706293707 -897,8.0,9.0,0.0,9.090909090909092 -897,8.0,10.0,0.0,4.807692307692308 -897,9.0,5.0,0.0,1.8561002591115965 -897,9.0,8.0,0.0,9.090909090909092 -897,9.0,9.0,13.462042814524237,-41.3837606675224 -897,9.0,16.0,-3.956039125715353,10.317447719844054 -897,9.0,19.0,-1.7848303152666305,3.98535828943083 -897,9.0,20.0,-5.101853820159654,10.98071411292983 -897,9.0,21.0,-2.619319553382597,5.400770303329455 -897,10.0,8.0,0.0,4.807692307692308 -897,10.0,10.0,0.0,-4.807692307692308 -897,11.0,3.0,0.0,4.191255364806866 -897,11.0,11.0,6.573961583776156,-24.424167659260668 -897,11.0,12.0,0.0,7.142857142857143 -897,11.0,13.0,-1.5265676088395577,3.1734252729654173 -897,11.0,14.0,-3.0953961826564296,6.097275864326261 -897,11.0,15.0,-1.9519977922801688,4.104359379111847 -897,12.0,11.0,0.0,7.142857142857143 -897,12.0,12.0,0.0,-7.142857142857143 -897,13.0,11.0,-1.5265676088395577,3.1734252729654173 -897,13.0,13.0,4.01751987283902,-5.424299332335067 -897,13.0,14.0,-2.4909522639994623,2.250874059369649 -897,14.0,11.0,-3.0953961826564296,6.097275864326261 -897,14.0,13.0,-2.4909522639994623,2.250874059369649 -897,14.0,14.0,9.365498545964757,-16.01163373210796 -897,14.0,17.0,-1.8108011504072024,3.687418931630696 -897,14.0,22.0,-1.9683489489016612,3.976064876781356 -897,15.0,11.0,-1.9519977922801688,4.104359379111847 -897,15.0,15.0,3.271064728633931,-8.94513365126506 -897,15.0,16.0,-1.3190669363537617,4.8407742721532125 -897,16.0,9.0,-3.956039125715353,10.317447719844054 -897,16.0,15.0,-1.3190669363537617,4.8407742721532125 -897,16.0,16.0,5.275106062069114,-15.158221991997266 -897,17.0,14.0,-1.8108011504072024,3.687418931630696 -897,17.0,17.0,4.886487584415919,-9.906177730909668 -897,17.0,18.0,-3.0756864340087167,6.218758799278971 -897,18.0,17.0,-3.0756864340087167,6.218758799278971 -897,18.0,18.0,8.958039375185187,-17.98346468163191 -897,18.0,19.0,-5.88235294117647,11.76470588235294 -897,19.0,9.0,-1.7848303152666305,3.98535828943083 -897,19.0,18.0,-5.88235294117647,11.76470588235294 -897,19.0,19.0,7.6671832564431,-15.75006417178377 -897,20.0,9.0,-5.101853820159654,10.98071411292983 -897,20.0,20.0,21.876495189895888,-45.10843276170355 -897,20.0,21.0,-16.774641369736234,34.127718648773715 -897,21.0,9.0,-2.619319553382597,5.400770303329455 -897,21.0,20.0,-16.774641369736234,34.127718648773715 -897,21.0,21.0,21.93449907537439,-43.48289181517921 -897,21.0,23.0,-2.5405381522555563,3.95440286307604 -897,22.0,14.0,-1.9683489489016612,3.976064876781356 -897,22.0,22.0,3.429754555384988,-6.965303617315433 -897,22.0,23.0,-1.4614056064833263,2.989238740534077 -897,23.0,21.0,-2.5405381522555563,3.95440286307604 -897,23.0,22.0,-1.4614056064833263,2.989238740534077 -897,23.0,23.0,5.311836702613133,-9.188263657315172 -897,23.0,24.0,-1.3098929438742493,2.287622053705056 -897,24.0,23.0,-1.3098929438742493,2.287622053705056 -897,24.0,24.0,4.495715080321987,-7.864978761969621 -897,24.0,25.0,-1.2165301194494855,1.8171440463475024 -897,24.0,26.0,-1.9692920169982515,3.760212661917064 -897,25.0,24.0,-1.2165301194494855,1.8171440463475024 -897,25.0,25.0,1.2165301194494855,-1.8171440463475024 -897,26.0,24.0,-1.9692920169982515,3.760212661917064 -897,26.0,26.0,3.652281470778589,-9.46044252232512 -897,26.0,27.0,0.0,2.608731947574922 -897,26.0,28.0,-0.99553355095268,1.881005840357816 -897,26.0,29.0,-0.6874559028276572,1.293971494797717 -897,27.0,5.0,-4.362844058012917,15.463571542897856 -897,27.0,7.0,-1.4439790613954469,4.540814658476248 -897,27.0,26.0,0.0,2.608731947574922 -897,27.0,27.0,5.806823119408364,-22.67145722159613 -897,28.0,26.0,-0.99553355095268,1.881005840357816 -897,28.0,28.0,1.9075867579849564,-3.604364401207048 -897,28.0,29.0,-0.9120532070322764,1.7233585608492326 -897,29.0,26.0,-0.6874559028276572,1.293971494797717 -897,29.0,28.0,-0.9120532070322764,1.7233585608492326 -897,29.0,29.0,1.5995091098599337,-3.0173300556469496 -898,0.0,0.0,6.765516048652632,-21.23160167089863 -898,0.0,1.0,-5.224646179885656,15.646726840803398 -898,0.0,2.0,-1.5408698687669766,5.631674830095234 -898,1.0,0.0,-5.224646179885656,15.646726840803398 -898,1.0,1.0,9.75228216552403,-30.648662892676068 -898,1.0,3.0,-1.7055303166990268,5.1973792282565086 -898,1.0,4.0,-1.1359607881738778,4.772479328281356 -898,1.0,5.0,-1.6861448807654689,5.116477495334806 -898,2.0,0.0,-1.5408698687669766,5.631674830095234 -898,2.0,2.0,9.736318911079088,-29.13794745915803 -898,2.0,3.0,-8.19544904231211,23.5308726290628 -898,3.0,1.0,-1.7055303166990268,5.1973792282565086 -898,3.0,2.0,-8.19544904231211,23.5308726290628 -898,3.0,3.0,16.314103089185693,-55.509410535254254 -898,3.0,5.0,-6.413123730174556,22.31120356548123 -898,3.0,11.0,0.0,4.191255364806866 -898,4.0,1.0,-1.1359607881738778,4.772479328281356 -898,4.0,4.0,4.089980824135861,-12.190647245055052 -898,4.0,6.0,-2.954020035961983,7.449267916773697 -898,5.0,1.0,-1.6861448807654689,5.116477495334806 -898,5.0,3.0,-6.413123730174556,22.31120356548123 -898,5.0,5.0,22.341631269034565,-82.8291478657789 -898,5.0,6.0,-3.590210423980992,11.02611441072814 -898,5.0,7.0,-6.289308176100628,22.0125786163522 -898,5.0,8.0,0.0,4.915840805411357 -898,5.0,9.0,0.0,1.8561002591115965 -898,5.0,27.0,-4.362844058012917,15.463571542897856 -898,6.0,4.0,-2.954020035961983,7.449267916773697 -898,6.0,5.0,-3.590210423980992,11.02611441072814 -898,6.0,6.0,6.544230459942975,-18.45668232750184 -898,7.0,5.0,-6.289308176100628,22.0125786163522 -898,7.0,7.0,7.733287237496075,-26.527493274828448 -898,7.0,27.0,-1.4439790613954469,4.540814658476248 -898,8.0,5.0,0.0,4.915840805411357 -898,8.0,8.0,0.0,-18.706293706293707 -898,8.0,9.0,0.0,9.090909090909092 -898,8.0,10.0,0.0,4.807692307692308 -898,9.0,5.0,0.0,1.8561002591115965 -898,9.0,8.0,0.0,9.090909090909092 -898,9.0,9.0,13.462042814524237,-41.3837606675224 -898,9.0,16.0,-3.956039125715353,10.317447719844054 -898,9.0,19.0,-1.7848303152666305,3.98535828943083 -898,9.0,20.0,-5.101853820159654,10.98071411292983 -898,9.0,21.0,-2.619319553382597,5.400770303329455 -898,10.0,8.0,0.0,4.807692307692308 -898,10.0,10.0,0.0,-4.807692307692308 -898,11.0,3.0,0.0,4.191255364806866 -898,11.0,11.0,6.573961583776156,-24.424167659260668 -898,11.0,12.0,0.0,7.142857142857143 -898,11.0,13.0,-1.5265676088395577,3.1734252729654173 -898,11.0,14.0,-3.0953961826564296,6.097275864326261 -898,11.0,15.0,-1.9519977922801688,4.104359379111847 -898,12.0,11.0,0.0,7.142857142857143 -898,12.0,12.0,0.0,-7.142857142857143 -898,13.0,11.0,-1.5265676088395577,3.1734252729654173 -898,13.0,13.0,4.01751987283902,-5.424299332335067 -898,13.0,14.0,-2.4909522639994623,2.250874059369649 -898,14.0,11.0,-3.0953961826564296,6.097275864326261 -898,14.0,13.0,-2.4909522639994623,2.250874059369649 -898,14.0,14.0,9.365498545964757,-16.01163373210796 -898,14.0,17.0,-1.8108011504072024,3.687418931630696 -898,14.0,22.0,-1.9683489489016612,3.976064876781356 -898,15.0,11.0,-1.9519977922801688,4.104359379111847 -898,15.0,15.0,3.271064728633931,-8.94513365126506 -898,15.0,16.0,-1.3190669363537617,4.8407742721532125 -898,16.0,9.0,-3.956039125715353,10.317447719844054 -898,16.0,15.0,-1.3190669363537617,4.8407742721532125 -898,16.0,16.0,5.275106062069114,-15.158221991997266 -898,17.0,14.0,-1.8108011504072024,3.687418931630696 -898,17.0,17.0,4.886487584415919,-9.906177730909668 -898,17.0,18.0,-3.0756864340087167,6.218758799278971 -898,18.0,17.0,-3.0756864340087167,6.218758799278971 -898,18.0,18.0,8.958039375185187,-17.98346468163191 -898,18.0,19.0,-5.88235294117647,11.76470588235294 -898,19.0,9.0,-1.7848303152666305,3.98535828943083 -898,19.0,18.0,-5.88235294117647,11.76470588235294 -898,19.0,19.0,7.6671832564431,-15.75006417178377 -898,20.0,9.0,-5.101853820159654,10.98071411292983 -898,20.0,20.0,21.876495189895888,-45.10843276170355 -898,20.0,21.0,-16.774641369736234,34.127718648773715 -898,21.0,9.0,-2.619319553382597,5.400770303329455 -898,21.0,20.0,-16.774641369736234,34.127718648773715 -898,21.0,21.0,21.93449907537439,-43.48289181517921 -898,21.0,23.0,-2.5405381522555563,3.95440286307604 -898,22.0,14.0,-1.9683489489016612,3.976064876781356 -898,22.0,22.0,3.429754555384988,-6.965303617315433 -898,22.0,23.0,-1.4614056064833263,2.989238740534077 -898,23.0,21.0,-2.5405381522555563,3.95440286307604 -898,23.0,22.0,-1.4614056064833263,2.989238740534077 -898,23.0,23.0,5.311836702613133,-9.188263657315172 -898,23.0,24.0,-1.3098929438742493,2.287622053705056 -898,24.0,23.0,-1.3098929438742493,2.287622053705056 -898,24.0,24.0,4.495715080321987,-7.864978761969621 -898,24.0,25.0,-1.2165301194494855,1.8171440463475024 -898,24.0,26.0,-1.9692920169982515,3.760212661917064 -898,25.0,24.0,-1.2165301194494855,1.8171440463475024 -898,25.0,25.0,1.2165301194494855,-1.8171440463475024 -898,26.0,24.0,-1.9692920169982515,3.760212661917064 -898,26.0,26.0,3.652281470778589,-9.46044252232512 -898,26.0,27.0,0.0,2.608731947574922 -898,26.0,28.0,-0.99553355095268,1.881005840357816 -898,26.0,29.0,-0.6874559028276572,1.293971494797717 -898,27.0,5.0,-4.362844058012917,15.463571542897856 -898,27.0,7.0,-1.4439790613954469,4.540814658476248 -898,27.0,26.0,0.0,2.608731947574922 -898,27.0,27.0,5.806823119408364,-22.67145722159613 -898,28.0,26.0,-0.99553355095268,1.881005840357816 -898,28.0,28.0,1.9075867579849564,-3.604364401207048 -898,28.0,29.0,-0.9120532070322764,1.7233585608492326 -898,29.0,26.0,-0.6874559028276572,1.293971494797717 -898,29.0,28.0,-0.9120532070322764,1.7233585608492326 -898,29.0,29.0,1.5995091098599337,-3.0173300556469496 -899,0.0,0.0,6.765516048652632,-21.23160167089863 -899,0.0,1.0,-5.224646179885656,15.646726840803398 -899,0.0,2.0,-1.5408698687669766,5.631674830095234 -899,1.0,0.0,-5.224646179885656,15.646726840803398 -899,1.0,1.0,6.360606968059534,-20.371906169084752 -899,1.0,4.0,-1.1359607881738778,4.772479328281356 -899,2.0,0.0,-1.5408698687669766,5.631674830095234 -899,2.0,2.0,9.736318911079088,-29.13794745915803 -899,2.0,3.0,-8.19544904231211,23.5308726290628 -899,3.0,2.0,-8.19544904231211,23.5308726290628 -899,3.0,3.0,14.608572772486664,-50.33043130699775 -899,3.0,5.0,-6.413123730174556,22.31120356548123 -899,3.0,11.0,0.0,4.191255364806866 -899,4.0,1.0,-1.1359607881738778,4.772479328281356 -899,4.0,4.0,4.089980824135861,-12.190647245055052 -899,4.0,6.0,-2.954020035961983,7.449267916773697 -899,5.0,3.0,-6.413123730174556,22.31120356548123 -899,5.0,5.0,20.655486388269097,-77.7313703704441 -899,5.0,6.0,-3.590210423980992,11.02611441072814 -899,5.0,7.0,-6.289308176100628,22.0125786163522 -899,5.0,8.0,0.0,4.915840805411357 -899,5.0,9.0,0.0,1.8561002591115965 -899,5.0,27.0,-4.362844058012917,15.463571542897856 -899,6.0,4.0,-2.954020035961983,7.449267916773697 -899,6.0,5.0,-3.590210423980992,11.02611441072814 -899,6.0,6.0,6.544230459942975,-18.45668232750184 -899,7.0,5.0,-6.289308176100628,22.0125786163522 -899,7.0,7.0,7.733287237496075,-26.527493274828448 -899,7.0,27.0,-1.4439790613954469,4.540814658476248 -899,8.0,5.0,0.0,4.915840805411357 -899,8.0,8.0,0.0,-18.706293706293707 -899,8.0,9.0,0.0,9.090909090909092 -899,8.0,10.0,0.0,4.807692307692308 -899,9.0,5.0,0.0,1.8561002591115965 -899,9.0,8.0,0.0,9.090909090909092 -899,9.0,9.0,13.462042814524237,-41.3837606675224 -899,9.0,16.0,-3.956039125715353,10.317447719844054 -899,9.0,19.0,-1.7848303152666305,3.98535828943083 -899,9.0,20.0,-5.101853820159654,10.98071411292983 -899,9.0,21.0,-2.619319553382597,5.400770303329455 -899,10.0,8.0,0.0,4.807692307692308 -899,10.0,10.0,0.0,-4.807692307692308 -899,11.0,3.0,0.0,4.191255364806866 -899,11.0,11.0,6.573961583776156,-24.424167659260668 -899,11.0,12.0,0.0,7.142857142857143 -899,11.0,13.0,-1.5265676088395577,3.1734252729654173 -899,11.0,14.0,-3.0953961826564296,6.097275864326261 -899,11.0,15.0,-1.9519977922801688,4.104359379111847 -899,12.0,11.0,0.0,7.142857142857143 -899,12.0,12.0,0.0,-7.142857142857143 -899,13.0,11.0,-1.5265676088395577,3.1734252729654173 -899,13.0,13.0,4.01751987283902,-5.424299332335067 -899,13.0,14.0,-2.4909522639994623,2.250874059369649 -899,14.0,11.0,-3.0953961826564296,6.097275864326261 -899,14.0,13.0,-2.4909522639994623,2.250874059369649 -899,14.0,14.0,9.365498545964757,-16.01163373210796 -899,14.0,17.0,-1.8108011504072024,3.687418931630696 -899,14.0,22.0,-1.9683489489016612,3.976064876781356 -899,15.0,11.0,-1.9519977922801688,4.104359379111847 -899,15.0,15.0,3.271064728633931,-8.94513365126506 -899,15.0,16.0,-1.3190669363537617,4.8407742721532125 -899,16.0,9.0,-3.956039125715353,10.317447719844054 -899,16.0,15.0,-1.3190669363537617,4.8407742721532125 -899,16.0,16.0,5.275106062069114,-15.158221991997266 -899,17.0,14.0,-1.8108011504072024,3.687418931630696 -899,17.0,17.0,4.886487584415919,-9.906177730909668 -899,17.0,18.0,-3.0756864340087167,6.218758799278971 -899,18.0,17.0,-3.0756864340087167,6.218758799278971 -899,18.0,18.0,8.958039375185187,-17.98346468163191 -899,18.0,19.0,-5.88235294117647,11.76470588235294 -899,19.0,9.0,-1.7848303152666305,3.98535828943083 -899,19.0,18.0,-5.88235294117647,11.76470588235294 -899,19.0,19.0,7.6671832564431,-15.75006417178377 -899,20.0,9.0,-5.101853820159654,10.98071411292983 -899,20.0,20.0,5.101853820159654,-10.98071411292983 -899,21.0,9.0,-2.619319553382597,5.400770303329455 -899,21.0,21.0,5.159857705638154,-9.355173166405494 -899,21.0,23.0,-2.5405381522555563,3.95440286307604 -899,22.0,14.0,-1.9683489489016612,3.976064876781356 -899,22.0,22.0,3.429754555384988,-6.965303617315433 -899,22.0,23.0,-1.4614056064833263,2.989238740534077 -899,23.0,21.0,-2.5405381522555563,3.95440286307604 -899,23.0,22.0,-1.4614056064833263,2.989238740534077 -899,23.0,23.0,5.311836702613133,-9.188263657315172 -899,23.0,24.0,-1.3098929438742493,2.287622053705056 -899,24.0,23.0,-1.3098929438742493,2.287622053705056 -899,24.0,24.0,4.495715080321987,-7.864978761969621 -899,24.0,25.0,-1.2165301194494855,1.8171440463475024 -899,24.0,26.0,-1.9692920169982515,3.760212661917064 -899,25.0,24.0,-1.2165301194494855,1.8171440463475024 -899,25.0,25.0,1.2165301194494855,-1.8171440463475024 -899,26.0,24.0,-1.9692920169982515,3.760212661917064 -899,26.0,26.0,3.652281470778589,-9.46044252232512 -899,26.0,27.0,0.0,2.608731947574922 -899,26.0,28.0,-0.99553355095268,1.881005840357816 -899,26.0,29.0,-0.6874559028276572,1.293971494797717 -899,27.0,5.0,-4.362844058012917,15.463571542897856 -899,27.0,7.0,-1.4439790613954469,4.540814658476248 -899,27.0,26.0,0.0,2.608731947574922 -899,27.0,27.0,5.806823119408364,-22.67145722159613 -899,28.0,26.0,-0.99553355095268,1.881005840357816 -899,28.0,28.0,1.9075867579849564,-3.604364401207048 -899,28.0,29.0,-0.9120532070322764,1.7233585608492326 -899,29.0,26.0,-0.6874559028276572,1.293971494797717 -899,29.0,28.0,-0.9120532070322764,1.7233585608492326 -899,29.0,29.0,1.5995091098599337,-3.0173300556469496 -900,0.0,0.0,6.765516048652632,-21.23160167089863 -900,0.0,1.0,-5.224646179885656,15.646726840803398 -900,0.0,2.0,-1.5408698687669766,5.631674830095234 -900,1.0,0.0,-5.224646179885656,15.646726840803398 -900,1.0,1.0,9.75228216552403,-30.648662892676068 -900,1.0,3.0,-1.7055303166990268,5.1973792282565086 -900,1.0,4.0,-1.1359607881738778,4.772479328281356 -900,1.0,5.0,-1.6861448807654689,5.116477495334806 -900,2.0,0.0,-1.5408698687669766,5.631674830095234 -900,2.0,2.0,9.736318911079088,-29.13794745915803 -900,2.0,3.0,-8.19544904231211,23.5308726290628 -900,3.0,1.0,-1.7055303166990268,5.1973792282565086 -900,3.0,2.0,-8.19544904231211,23.5308726290628 -900,3.0,3.0,16.314103089185693,-55.509410535254254 -900,3.0,5.0,-6.413123730174556,22.31120356548123 -900,3.0,11.0,0.0,4.191255364806866 -900,4.0,1.0,-1.1359607881738778,4.772479328281356 -900,4.0,4.0,4.089980824135861,-12.190647245055052 -900,4.0,6.0,-2.954020035961983,7.449267916773697 -900,5.0,1.0,-1.6861448807654689,5.116477495334806 -900,5.0,3.0,-6.413123730174556,22.31120356548123 -900,5.0,5.0,22.341631269034565,-82.8291478657789 -900,5.0,6.0,-3.590210423980992,11.02611441072814 -900,5.0,7.0,-6.289308176100628,22.0125786163522 -900,5.0,8.0,0.0,4.915840805411357 -900,5.0,9.0,0.0,1.8561002591115965 -900,5.0,27.0,-4.362844058012917,15.463571542897856 -900,6.0,4.0,-2.954020035961983,7.449267916773697 -900,6.0,5.0,-3.590210423980992,11.02611441072814 -900,6.0,6.0,6.544230459942975,-18.45668232750184 -900,7.0,5.0,-6.289308176100628,22.0125786163522 -900,7.0,7.0,7.733287237496075,-26.527493274828448 -900,7.0,27.0,-1.4439790613954469,4.540814658476248 -900,8.0,5.0,0.0,4.915840805411357 -900,8.0,8.0,0.0,-18.706293706293707 -900,8.0,9.0,0.0,9.090909090909092 -900,8.0,10.0,0.0,4.807692307692308 -900,9.0,5.0,0.0,1.8561002591115965 -900,9.0,8.0,0.0,9.090909090909092 -900,9.0,9.0,13.462042814524237,-41.3837606675224 -900,9.0,16.0,-3.956039125715353,10.317447719844054 -900,9.0,19.0,-1.7848303152666305,3.98535828943083 -900,9.0,20.0,-5.101853820159654,10.98071411292983 -900,9.0,21.0,-2.619319553382597,5.400770303329455 -900,10.0,8.0,0.0,4.807692307692308 -900,10.0,10.0,0.0,-4.807692307692308 -900,11.0,3.0,0.0,4.191255364806866 -900,11.0,11.0,6.573961583776156,-24.424167659260668 -900,11.0,12.0,0.0,7.142857142857143 -900,11.0,13.0,-1.5265676088395577,3.1734252729654173 -900,11.0,14.0,-3.0953961826564296,6.097275864326261 -900,11.0,15.0,-1.9519977922801688,4.104359379111847 -900,12.0,11.0,0.0,7.142857142857143 -900,12.0,12.0,0.0,-7.142857142857143 -900,13.0,11.0,-1.5265676088395577,3.1734252729654173 -900,13.0,13.0,4.01751987283902,-5.424299332335067 -900,13.0,14.0,-2.4909522639994623,2.250874059369649 -900,14.0,11.0,-3.0953961826564296,6.097275864326261 -900,14.0,13.0,-2.4909522639994623,2.250874059369649 -900,14.0,14.0,9.365498545964757,-16.01163373210796 -900,14.0,17.0,-1.8108011504072024,3.687418931630696 -900,14.0,22.0,-1.9683489489016612,3.976064876781356 -900,15.0,11.0,-1.9519977922801688,4.104359379111847 -900,15.0,15.0,3.271064728633931,-8.94513365126506 -900,15.0,16.0,-1.3190669363537617,4.8407742721532125 -900,16.0,9.0,-3.956039125715353,10.317447719844054 -900,16.0,15.0,-1.3190669363537617,4.8407742721532125 -900,16.0,16.0,5.275106062069114,-15.158221991997266 -900,17.0,14.0,-1.8108011504072024,3.687418931630696 -900,17.0,17.0,4.886487584415919,-9.906177730909668 -900,17.0,18.0,-3.0756864340087167,6.218758799278971 -900,18.0,17.0,-3.0756864340087167,6.218758799278971 -900,18.0,18.0,8.958039375185187,-17.98346468163191 -900,18.0,19.0,-5.88235294117647,11.76470588235294 -900,19.0,9.0,-1.7848303152666305,3.98535828943083 -900,19.0,18.0,-5.88235294117647,11.76470588235294 -900,19.0,19.0,7.6671832564431,-15.75006417178377 -900,20.0,9.0,-5.101853820159654,10.98071411292983 -900,20.0,20.0,21.876495189895888,-45.10843276170355 -900,20.0,21.0,-16.774641369736234,34.127718648773715 -900,21.0,9.0,-2.619319553382597,5.400770303329455 -900,21.0,20.0,-16.774641369736234,34.127718648773715 -900,21.0,21.0,21.93449907537439,-43.48289181517921 -900,21.0,23.0,-2.5405381522555563,3.95440286307604 -900,22.0,14.0,-1.9683489489016612,3.976064876781356 -900,22.0,22.0,3.429754555384988,-6.965303617315433 -900,22.0,23.0,-1.4614056064833263,2.989238740534077 -900,23.0,21.0,-2.5405381522555563,3.95440286307604 -900,23.0,22.0,-1.4614056064833263,2.989238740534077 -900,23.0,23.0,5.311836702613133,-9.188263657315172 -900,23.0,24.0,-1.3098929438742493,2.287622053705056 -900,24.0,23.0,-1.3098929438742493,2.287622053705056 -900,24.0,24.0,4.495715080321987,-7.864978761969621 -900,24.0,25.0,-1.2165301194494855,1.8171440463475024 -900,24.0,26.0,-1.9692920169982515,3.760212661917064 -900,25.0,24.0,-1.2165301194494855,1.8171440463475024 -900,25.0,25.0,1.2165301194494855,-1.8171440463475024 -900,26.0,24.0,-1.9692920169982515,3.760212661917064 -900,26.0,26.0,2.656747919825909,-7.579436681967305 -900,26.0,27.0,0.0,2.608731947574922 -900,26.0,29.0,-0.6874559028276572,1.293971494797717 -900,27.0,5.0,-4.362844058012917,15.463571542897856 -900,27.0,7.0,-1.4439790613954469,4.540814658476248 -900,27.0,26.0,0.0,2.608731947574922 -900,27.0,27.0,5.806823119408364,-22.67145722159613 -900,28.0,28.0,0.9120532070322764,-1.7233585608492326 -900,28.0,29.0,-0.9120532070322764,1.7233585608492326 -900,29.0,26.0,-0.6874559028276572,1.293971494797717 -900,29.0,28.0,-0.9120532070322764,1.7233585608492326 -900,29.0,29.0,1.5995091098599337,-3.0173300556469496 -901,0.0,0.0,6.765516048652632,-21.23160167089863 -901,0.0,1.0,-5.224646179885656,15.646726840803398 -901,0.0,2.0,-1.5408698687669766,5.631674830095234 -901,1.0,0.0,-5.224646179885656,15.646726840803398 -901,1.0,1.0,9.75228216552403,-30.648662892676068 -901,1.0,3.0,-1.7055303166990268,5.1973792282565086 -901,1.0,4.0,-1.1359607881738778,4.772479328281356 -901,1.0,5.0,-1.6861448807654689,5.116477495334806 -901,2.0,0.0,-1.5408698687669766,5.631674830095234 -901,2.0,2.0,9.736318911079088,-29.13794745915803 -901,2.0,3.0,-8.19544904231211,23.5308726290628 -901,3.0,1.0,-1.7055303166990268,5.1973792282565086 -901,3.0,2.0,-8.19544904231211,23.5308726290628 -901,3.0,3.0,16.314103089185693,-55.509410535254254 -901,3.0,5.0,-6.413123730174556,22.31120356548123 -901,3.0,11.0,0.0,4.191255364806866 -901,4.0,1.0,-1.1359607881738778,4.772479328281356 -901,4.0,4.0,1.1359607881738778,-4.751579328281355 -901,5.0,1.0,-1.6861448807654689,5.116477495334806 -901,5.0,3.0,-6.413123730174556,22.31120356548123 -901,5.0,5.0,22.341631269034565,-82.8291478657789 -901,5.0,6.0,-3.590210423980992,11.02611441072814 -901,5.0,7.0,-6.289308176100628,22.0125786163522 -901,5.0,8.0,0.0,4.915840805411357 -901,5.0,9.0,0.0,1.8561002591115965 -901,5.0,27.0,-4.362844058012917,15.463571542897856 -901,6.0,5.0,-3.590210423980992,11.02611441072814 -901,6.0,6.0,3.590210423980992,-11.01761441072814 -901,7.0,5.0,-6.289308176100628,22.0125786163522 -901,7.0,7.0,7.733287237496075,-26.527493274828448 -901,7.0,27.0,-1.4439790613954469,4.540814658476248 -901,8.0,5.0,0.0,4.915840805411357 -901,8.0,8.0,0.0,-18.706293706293707 -901,8.0,9.0,0.0,9.090909090909092 -901,8.0,10.0,0.0,4.807692307692308 -901,9.0,5.0,0.0,1.8561002591115965 -901,9.0,8.0,0.0,9.090909090909092 -901,9.0,9.0,13.462042814524237,-41.3837606675224 -901,9.0,16.0,-3.956039125715353,10.317447719844054 -901,9.0,19.0,-1.7848303152666305,3.98535828943083 -901,9.0,20.0,-5.101853820159654,10.98071411292983 -901,9.0,21.0,-2.619319553382597,5.400770303329455 -901,10.0,8.0,0.0,4.807692307692308 -901,10.0,10.0,0.0,-4.807692307692308 -901,11.0,3.0,0.0,4.191255364806866 -901,11.0,11.0,6.573961583776156,-24.424167659260668 -901,11.0,12.0,0.0,7.142857142857143 -901,11.0,13.0,-1.5265676088395577,3.1734252729654173 -901,11.0,14.0,-3.0953961826564296,6.097275864326261 -901,11.0,15.0,-1.9519977922801688,4.104359379111847 -901,12.0,11.0,0.0,7.142857142857143 -901,12.0,12.0,0.0,-7.142857142857143 -901,13.0,11.0,-1.5265676088395577,3.1734252729654173 -901,13.0,13.0,4.01751987283902,-5.424299332335067 -901,13.0,14.0,-2.4909522639994623,2.250874059369649 -901,14.0,11.0,-3.0953961826564296,6.097275864326261 -901,14.0,13.0,-2.4909522639994623,2.250874059369649 -901,14.0,14.0,9.365498545964757,-16.01163373210796 -901,14.0,17.0,-1.8108011504072024,3.687418931630696 -901,14.0,22.0,-1.9683489489016612,3.976064876781356 -901,15.0,11.0,-1.9519977922801688,4.104359379111847 -901,15.0,15.0,3.271064728633931,-8.94513365126506 -901,15.0,16.0,-1.3190669363537617,4.8407742721532125 -901,16.0,9.0,-3.956039125715353,10.317447719844054 -901,16.0,15.0,-1.3190669363537617,4.8407742721532125 -901,16.0,16.0,5.275106062069114,-15.158221991997266 -901,17.0,14.0,-1.8108011504072024,3.687418931630696 -901,17.0,17.0,4.886487584415919,-9.906177730909668 -901,17.0,18.0,-3.0756864340087167,6.218758799278971 -901,18.0,17.0,-3.0756864340087167,6.218758799278971 -901,18.0,18.0,8.958039375185187,-17.98346468163191 -901,18.0,19.0,-5.88235294117647,11.76470588235294 -901,19.0,9.0,-1.7848303152666305,3.98535828943083 -901,19.0,18.0,-5.88235294117647,11.76470588235294 -901,19.0,19.0,7.6671832564431,-15.75006417178377 -901,20.0,9.0,-5.101853820159654,10.98071411292983 -901,20.0,20.0,21.876495189895888,-45.10843276170355 -901,20.0,21.0,-16.774641369736234,34.127718648773715 -901,21.0,9.0,-2.619319553382597,5.400770303329455 -901,21.0,20.0,-16.774641369736234,34.127718648773715 -901,21.0,21.0,21.93449907537439,-43.48289181517921 -901,21.0,23.0,-2.5405381522555563,3.95440286307604 -901,22.0,14.0,-1.9683489489016612,3.976064876781356 -901,22.0,22.0,3.429754555384988,-6.965303617315433 -901,22.0,23.0,-1.4614056064833263,2.989238740534077 -901,23.0,21.0,-2.5405381522555563,3.95440286307604 -901,23.0,22.0,-1.4614056064833263,2.989238740534077 -901,23.0,23.0,5.311836702613133,-9.188263657315172 -901,23.0,24.0,-1.3098929438742493,2.287622053705056 -901,24.0,23.0,-1.3098929438742493,2.287622053705056 -901,24.0,24.0,4.495715080321987,-7.864978761969621 -901,24.0,25.0,-1.2165301194494855,1.8171440463475024 -901,24.0,26.0,-1.9692920169982515,3.760212661917064 -901,25.0,24.0,-1.2165301194494855,1.8171440463475024 -901,25.0,25.0,1.2165301194494855,-1.8171440463475024 -901,26.0,24.0,-1.9692920169982515,3.760212661917064 -901,26.0,26.0,3.652281470778589,-9.46044252232512 -901,26.0,27.0,0.0,2.608731947574922 -901,26.0,28.0,-0.99553355095268,1.881005840357816 -901,26.0,29.0,-0.6874559028276572,1.293971494797717 -901,27.0,5.0,-4.362844058012917,15.463571542897856 -901,27.0,7.0,-1.4439790613954469,4.540814658476248 -901,27.0,26.0,0.0,2.608731947574922 -901,27.0,27.0,5.806823119408364,-22.67145722159613 -901,28.0,26.0,-0.99553355095268,1.881005840357816 -901,28.0,28.0,0.99553355095268,-1.881005840357816 -901,29.0,26.0,-0.6874559028276572,1.293971494797717 -901,29.0,29.0,0.6874559028276572,-1.293971494797717 -902,0.0,0.0,6.765516048652632,-21.23160167089863 -902,0.0,1.0,-5.224646179885656,15.646726840803398 -902,0.0,2.0,-1.5408698687669766,5.631674830095234 -902,1.0,0.0,-5.224646179885656,15.646726840803398 -902,1.0,1.0,9.75228216552403,-30.648662892676068 -902,1.0,3.0,-1.7055303166990268,5.1973792282565086 -902,1.0,4.0,-1.1359607881738778,4.772479328281356 -902,1.0,5.0,-1.6861448807654689,5.116477495334806 -902,2.0,0.0,-1.5408698687669766,5.631674830095234 -902,2.0,2.0,9.736318911079088,-29.13794745915803 -902,2.0,3.0,-8.19544904231211,23.5308726290628 -902,3.0,1.0,-1.7055303166990268,5.1973792282565086 -902,3.0,2.0,-8.19544904231211,23.5308726290628 -902,3.0,3.0,16.314103089185693,-55.509410535254254 -902,3.0,5.0,-6.413123730174556,22.31120356548123 -902,3.0,11.0,0.0,4.191255364806866 -902,4.0,1.0,-1.1359607881738778,4.772479328281356 -902,4.0,4.0,4.089980824135861,-12.190647245055052 -902,4.0,6.0,-2.954020035961983,7.449267916773697 -902,5.0,1.0,-1.6861448807654689,5.116477495334806 -902,5.0,3.0,-6.413123730174556,22.31120356548123 -902,5.0,5.0,22.341631269034565,-82.8291478657789 -902,5.0,6.0,-3.590210423980992,11.02611441072814 -902,5.0,7.0,-6.289308176100628,22.0125786163522 -902,5.0,8.0,0.0,4.915840805411357 -902,5.0,9.0,0.0,1.8561002591115965 -902,5.0,27.0,-4.362844058012917,15.463571542897856 -902,6.0,4.0,-2.954020035961983,7.449267916773697 -902,6.0,5.0,-3.590210423980992,11.02611441072814 -902,6.0,6.0,6.544230459942975,-18.45668232750184 -902,7.0,5.0,-6.289308176100628,22.0125786163522 -902,7.0,7.0,7.733287237496075,-26.527493274828448 -902,7.0,27.0,-1.4439790613954469,4.540814658476248 -902,8.0,5.0,0.0,4.915840805411357 -902,8.0,8.0,0.0,-18.706293706293707 -902,8.0,9.0,0.0,9.090909090909092 -902,8.0,10.0,0.0,4.807692307692308 -902,9.0,5.0,0.0,1.8561002591115965 -902,9.0,8.0,0.0,9.090909090909092 -902,9.0,9.0,13.462042814524237,-41.3837606675224 -902,9.0,16.0,-3.956039125715353,10.317447719844054 -902,9.0,19.0,-1.7848303152666305,3.98535828943083 -902,9.0,20.0,-5.101853820159654,10.98071411292983 -902,9.0,21.0,-2.619319553382597,5.400770303329455 -902,10.0,8.0,0.0,4.807692307692308 -902,10.0,10.0,0.0,-4.807692307692308 -902,11.0,3.0,0.0,4.191255364806866 -902,11.0,11.0,6.573961583776156,-24.424167659260668 -902,11.0,12.0,0.0,7.142857142857143 -902,11.0,13.0,-1.5265676088395577,3.1734252729654173 -902,11.0,14.0,-3.0953961826564296,6.097275864326261 -902,11.0,15.0,-1.9519977922801688,4.104359379111847 -902,12.0,11.0,0.0,7.142857142857143 -902,12.0,12.0,0.0,-7.142857142857143 -902,13.0,11.0,-1.5265676088395577,3.1734252729654173 -902,13.0,13.0,4.01751987283902,-5.424299332335067 -902,13.0,14.0,-2.4909522639994623,2.250874059369649 -902,14.0,11.0,-3.0953961826564296,6.097275864326261 -902,14.0,13.0,-2.4909522639994623,2.250874059369649 -902,14.0,14.0,9.365498545964757,-16.01163373210796 -902,14.0,17.0,-1.8108011504072024,3.687418931630696 -902,14.0,22.0,-1.9683489489016612,3.976064876781356 -902,15.0,11.0,-1.9519977922801688,4.104359379111847 -902,15.0,15.0,3.271064728633931,-8.94513365126506 -902,15.0,16.0,-1.3190669363537617,4.8407742721532125 -902,16.0,9.0,-3.956039125715353,10.317447719844054 -902,16.0,15.0,-1.3190669363537617,4.8407742721532125 -902,16.0,16.0,5.275106062069114,-15.158221991997266 -902,17.0,14.0,-1.8108011504072024,3.687418931630696 -902,17.0,17.0,4.886487584415919,-9.906177730909668 -902,17.0,18.0,-3.0756864340087167,6.218758799278971 -902,18.0,17.0,-3.0756864340087167,6.218758799278971 -902,18.0,18.0,8.958039375185187,-17.98346468163191 -902,18.0,19.0,-5.88235294117647,11.76470588235294 -902,19.0,9.0,-1.7848303152666305,3.98535828943083 -902,19.0,18.0,-5.88235294117647,11.76470588235294 -902,19.0,19.0,7.6671832564431,-15.75006417178377 -902,20.0,9.0,-5.101853820159654,10.98071411292983 -902,20.0,20.0,21.876495189895888,-45.10843276170355 -902,20.0,21.0,-16.774641369736234,34.127718648773715 -902,21.0,9.0,-2.619319553382597,5.400770303329455 -902,21.0,20.0,-16.774641369736234,34.127718648773715 -902,21.0,21.0,21.93449907537439,-43.48289181517921 -902,21.0,23.0,-2.5405381522555563,3.95440286307604 -902,22.0,14.0,-1.9683489489016612,3.976064876781356 -902,22.0,22.0,3.429754555384988,-6.965303617315433 -902,22.0,23.0,-1.4614056064833263,2.989238740534077 -902,23.0,21.0,-2.5405381522555563,3.95440286307604 -902,23.0,22.0,-1.4614056064833263,2.989238740534077 -902,23.0,23.0,5.311836702613133,-9.188263657315172 -902,23.0,24.0,-1.3098929438742493,2.287622053705056 -902,24.0,23.0,-1.3098929438742493,2.287622053705056 -902,24.0,24.0,4.495715080321987,-7.864978761969621 -902,24.0,25.0,-1.2165301194494855,1.8171440463475024 -902,24.0,26.0,-1.9692920169982515,3.760212661917064 -902,25.0,24.0,-1.2165301194494855,1.8171440463475024 -902,25.0,25.0,1.2165301194494855,-1.8171440463475024 -902,26.0,24.0,-1.9692920169982515,3.760212661917064 -902,26.0,26.0,3.652281470778589,-9.46044252232512 -902,26.0,27.0,0.0,2.608731947574922 -902,26.0,28.0,-0.99553355095268,1.881005840357816 -902,26.0,29.0,-0.6874559028276572,1.293971494797717 -902,27.0,5.0,-4.362844058012917,15.463571542897856 -902,27.0,7.0,-1.4439790613954469,4.540814658476248 -902,27.0,26.0,0.0,2.608731947574922 -902,27.0,27.0,5.806823119408364,-22.67145722159613 -902,28.0,26.0,-0.99553355095268,1.881005840357816 -902,28.0,28.0,1.9075867579849564,-3.604364401207048 -902,28.0,29.0,-0.9120532070322764,1.7233585608492326 -902,29.0,26.0,-0.6874559028276572,1.293971494797717 -902,29.0,28.0,-0.9120532070322764,1.7233585608492326 -902,29.0,29.0,1.5995091098599337,-3.0173300556469496 -903,0.0,0.0,6.765516048652632,-21.23160167089863 -903,0.0,1.0,-5.224646179885656,15.646726840803398 -903,0.0,2.0,-1.5408698687669766,5.631674830095234 -903,1.0,0.0,-5.224646179885656,15.646726840803398 -903,1.0,1.0,9.75228216552403,-30.648662892676068 -903,1.0,3.0,-1.7055303166990268,5.1973792282565086 -903,1.0,4.0,-1.1359607881738778,4.772479328281356 -903,1.0,5.0,-1.6861448807654689,5.116477495334806 -903,2.0,0.0,-1.5408698687669766,5.631674830095234 -903,2.0,2.0,9.736318911079088,-29.13794745915803 -903,2.0,3.0,-8.19544904231211,23.5308726290628 -903,3.0,1.0,-1.7055303166990268,5.1973792282565086 -903,3.0,2.0,-8.19544904231211,23.5308726290628 -903,3.0,3.0,16.314103089185693,-51.01235542280054 -903,3.0,5.0,-6.413123730174556,22.31120356548123 -903,4.0,1.0,-1.1359607881738778,4.772479328281356 -903,4.0,4.0,4.089980824135861,-12.190647245055052 -903,4.0,6.0,-2.954020035961983,7.449267916773697 -903,5.0,1.0,-1.6861448807654689,5.116477495334806 -903,5.0,3.0,-6.413123730174556,22.31120356548123 -903,5.0,5.0,22.341631269034565,-80.91366772221689 -903,5.0,6.0,-3.590210423980992,11.02611441072814 -903,5.0,7.0,-6.289308176100628,22.0125786163522 -903,5.0,8.0,0.0,4.915840805411357 -903,5.0,27.0,-4.362844058012917,15.463571542897856 -903,6.0,4.0,-2.954020035961983,7.449267916773697 -903,6.0,5.0,-3.590210423980992,11.02611441072814 -903,6.0,6.0,6.544230459942975,-18.45668232750184 -903,7.0,5.0,-6.289308176100628,22.0125786163522 -903,7.0,7.0,7.733287237496075,-26.527493274828448 -903,7.0,27.0,-1.4439790613954469,4.540814658476248 -903,8.0,5.0,0.0,4.915840805411357 -903,8.0,8.0,0.0,-18.706293706293707 -903,8.0,9.0,0.0,9.090909090909092 -903,8.0,10.0,0.0,4.807692307692308 -903,9.0,8.0,0.0,9.090909090909092 -903,9.0,9.0,13.462042814524237,-39.58519951644326 -903,9.0,16.0,-3.956039125715353,10.317447719844054 -903,9.0,19.0,-1.7848303152666305,3.98535828943083 -903,9.0,20.0,-5.101853820159654,10.98071411292983 -903,9.0,21.0,-2.619319553382597,5.400770303329455 -903,10.0,8.0,0.0,4.807692307692308 -903,10.0,10.0,0.0,-4.807692307692308 -903,11.0,11.0,6.573961583776156,-20.517917659260668 -903,11.0,12.0,0.0,7.142857142857143 -903,11.0,13.0,-1.5265676088395577,3.1734252729654173 -903,11.0,14.0,-3.0953961826564296,6.097275864326261 -903,11.0,15.0,-1.9519977922801688,4.104359379111847 -903,12.0,11.0,0.0,7.142857142857143 -903,12.0,12.0,0.0,-7.142857142857143 -903,13.0,11.0,-1.5265676088395577,3.1734252729654173 -903,13.0,13.0,4.01751987283902,-5.424299332335067 -903,13.0,14.0,-2.4909522639994623,2.250874059369649 -903,14.0,11.0,-3.0953961826564296,6.097275864326261 -903,14.0,13.0,-2.4909522639994623,2.250874059369649 -903,14.0,14.0,7.554697395557554,-12.324214800477266 -903,14.0,22.0,-1.9683489489016612,3.976064876781356 -903,15.0,11.0,-1.9519977922801688,4.104359379111847 -903,15.0,15.0,3.271064728633931,-8.94513365126506 -903,15.0,16.0,-1.3190669363537617,4.8407742721532125 -903,16.0,9.0,-3.956039125715353,10.317447719844054 -903,16.0,15.0,-1.3190669363537617,4.8407742721532125 -903,16.0,16.0,5.275106062069114,-15.158221991997266 -903,17.0,17.0,3.0756864340087167,-6.218758799278971 -903,17.0,18.0,-3.0756864340087167,6.218758799278971 -903,18.0,17.0,-3.0756864340087167,6.218758799278971 -903,18.0,18.0,8.958039375185187,-17.98346468163191 -903,18.0,19.0,-5.88235294117647,11.76470588235294 -903,19.0,9.0,-1.7848303152666305,3.98535828943083 -903,19.0,18.0,-5.88235294117647,11.76470588235294 -903,19.0,19.0,7.6671832564431,-15.75006417178377 -903,20.0,9.0,-5.101853820159654,10.98071411292983 -903,20.0,20.0,5.101853820159654,-10.98071411292983 -903,21.0,9.0,-2.619319553382597,5.400770303329455 -903,21.0,21.0,5.159857705638154,-9.355173166405494 -903,21.0,23.0,-2.5405381522555563,3.95440286307604 -903,22.0,14.0,-1.9683489489016612,3.976064876781356 -903,22.0,22.0,3.429754555384988,-6.965303617315433 -903,22.0,23.0,-1.4614056064833263,2.989238740534077 -903,23.0,21.0,-2.5405381522555563,3.95440286307604 -903,23.0,22.0,-1.4614056064833263,2.989238740534077 -903,23.0,23.0,5.311836702613133,-9.188263657315172 -903,23.0,24.0,-1.3098929438742493,2.287622053705056 -903,24.0,23.0,-1.3098929438742493,2.287622053705056 -903,24.0,24.0,4.495715080321987,-7.864978761969621 -903,24.0,25.0,-1.2165301194494855,1.8171440463475024 -903,24.0,26.0,-1.9692920169982515,3.760212661917064 -903,25.0,24.0,-1.2165301194494855,1.8171440463475024 -903,25.0,25.0,1.2165301194494855,-1.8171440463475024 -903,26.0,24.0,-1.9692920169982515,3.760212661917064 -903,26.0,26.0,3.652281470778589,-9.46044252232512 -903,26.0,27.0,0.0,2.608731947574922 -903,26.0,28.0,-0.99553355095268,1.881005840357816 -903,26.0,29.0,-0.6874559028276572,1.293971494797717 -903,27.0,5.0,-4.362844058012917,15.463571542897856 -903,27.0,7.0,-1.4439790613954469,4.540814658476248 -903,27.0,26.0,0.0,2.608731947574922 -903,27.0,27.0,5.806823119408364,-22.67145722159613 -903,28.0,26.0,-0.99553355095268,1.881005840357816 -903,28.0,28.0,1.9075867579849564,-3.604364401207048 -903,28.0,29.0,-0.9120532070322764,1.7233585608492326 -903,29.0,26.0,-0.6874559028276572,1.293971494797717 -903,29.0,28.0,-0.9120532070322764,1.7233585608492326 -903,29.0,29.0,1.5995091098599337,-3.0173300556469496 -904,0.0,0.0,1.5408698687669766,-5.611274830095233 -904,0.0,2.0,-1.5408698687669766,5.631674830095234 -904,1.0,1.0,4.527635985638374,-15.028336051872673 -904,1.0,3.0,-1.7055303166990268,5.1973792282565086 -904,1.0,4.0,-1.1359607881738778,4.772479328281356 -904,1.0,5.0,-1.6861448807654689,5.116477495334806 -904,2.0,0.0,-1.5408698687669766,5.631674830095234 -904,2.0,2.0,9.736318911079088,-29.13794745915803 -904,2.0,3.0,-8.19544904231211,23.5308726290628 -904,3.0,1.0,-1.7055303166990268,5.1973792282565086 -904,3.0,2.0,-8.19544904231211,23.5308726290628 -904,3.0,3.0,16.314103089185693,-55.509410535254254 -904,3.0,5.0,-6.413123730174556,22.31120356548123 -904,3.0,11.0,0.0,4.191255364806866 -904,4.0,1.0,-1.1359607881738778,4.772479328281356 -904,4.0,4.0,4.089980824135861,-12.190647245055052 -904,4.0,6.0,-2.954020035961983,7.449267916773697 -904,5.0,1.0,-1.6861448807654689,5.116477495334806 -904,5.0,3.0,-6.413123730174556,22.31120356548123 -904,5.0,5.0,22.341631269034565,-82.8291478657789 -904,5.0,6.0,-3.590210423980992,11.02611441072814 -904,5.0,7.0,-6.289308176100628,22.0125786163522 -904,5.0,8.0,0.0,4.915840805411357 -904,5.0,9.0,0.0,1.8561002591115965 -904,5.0,27.0,-4.362844058012917,15.463571542897856 -904,6.0,4.0,-2.954020035961983,7.449267916773697 -904,6.0,5.0,-3.590210423980992,11.02611441072814 -904,6.0,6.0,6.544230459942975,-18.45668232750184 -904,7.0,5.0,-6.289308176100628,22.0125786163522 -904,7.0,7.0,7.733287237496075,-26.527493274828448 -904,7.0,27.0,-1.4439790613954469,4.540814658476248 -904,8.0,5.0,0.0,4.915840805411357 -904,8.0,8.0,0.0,-18.706293706293707 -904,8.0,9.0,0.0,9.090909090909092 -904,8.0,10.0,0.0,4.807692307692308 -904,9.0,5.0,0.0,1.8561002591115965 -904,9.0,8.0,0.0,9.090909090909092 -904,9.0,9.0,10.842723261141638,-35.98299036419294 -904,9.0,16.0,-3.956039125715353,10.317447719844054 -904,9.0,19.0,-1.7848303152666305,3.98535828943083 -904,9.0,20.0,-5.101853820159654,10.98071411292983 -904,10.0,8.0,0.0,4.807692307692308 -904,10.0,10.0,0.0,-4.807692307692308 -904,11.0,3.0,0.0,4.191255364806866 -904,11.0,11.0,6.573961583776156,-24.424167659260668 -904,11.0,12.0,0.0,7.142857142857143 -904,11.0,13.0,-1.5265676088395577,3.1734252729654173 -904,11.0,14.0,-3.0953961826564296,6.097275864326261 -904,11.0,15.0,-1.9519977922801688,4.104359379111847 -904,12.0,11.0,0.0,7.142857142857143 -904,12.0,12.0,0.0,-7.142857142857143 -904,13.0,11.0,-1.5265676088395577,3.1734252729654173 -904,13.0,13.0,4.01751987283902,-5.424299332335067 -904,13.0,14.0,-2.4909522639994623,2.250874059369649 -904,14.0,11.0,-3.0953961826564296,6.097275864326261 -904,14.0,13.0,-2.4909522639994623,2.250874059369649 -904,14.0,14.0,9.365498545964757,-16.01163373210796 -904,14.0,17.0,-1.8108011504072024,3.687418931630696 -904,14.0,22.0,-1.9683489489016612,3.976064876781356 -904,15.0,11.0,-1.9519977922801688,4.104359379111847 -904,15.0,15.0,3.271064728633931,-8.94513365126506 -904,15.0,16.0,-1.3190669363537617,4.8407742721532125 -904,16.0,9.0,-3.956039125715353,10.317447719844054 -904,16.0,15.0,-1.3190669363537617,4.8407742721532125 -904,16.0,16.0,5.275106062069114,-15.158221991997266 -904,17.0,14.0,-1.8108011504072024,3.687418931630696 -904,17.0,17.0,4.886487584415919,-9.906177730909668 -904,17.0,18.0,-3.0756864340087167,6.218758799278971 -904,18.0,17.0,-3.0756864340087167,6.218758799278971 -904,18.0,18.0,8.958039375185187,-17.98346468163191 -904,18.0,19.0,-5.88235294117647,11.76470588235294 -904,19.0,9.0,-1.7848303152666305,3.98535828943083 -904,19.0,18.0,-5.88235294117647,11.76470588235294 -904,19.0,19.0,7.6671832564431,-15.75006417178377 -904,20.0,9.0,-5.101853820159654,10.98071411292983 -904,20.0,20.0,21.876495189895888,-45.10843276170355 -904,20.0,21.0,-16.774641369736234,34.127718648773715 -904,21.0,20.0,-16.774641369736234,34.127718648773715 -904,21.0,21.0,19.31517952199179,-38.08212151184976 -904,21.0,23.0,-2.5405381522555563,3.95440286307604 -904,22.0,14.0,-1.9683489489016612,3.976064876781356 -904,22.0,22.0,3.429754555384988,-6.965303617315433 -904,22.0,23.0,-1.4614056064833263,2.989238740534077 -904,23.0,21.0,-2.5405381522555563,3.95440286307604 -904,23.0,22.0,-1.4614056064833263,2.989238740534077 -904,23.0,23.0,4.001943758738883,-6.900641603610116 -904,24.0,24.0,3.185822136447737,-5.577356708264566 -904,24.0,25.0,-1.2165301194494855,1.8171440463475024 -904,24.0,26.0,-1.9692920169982515,3.760212661917064 -904,25.0,24.0,-1.2165301194494855,1.8171440463475024 -904,25.0,25.0,1.2165301194494855,-1.8171440463475024 -904,26.0,24.0,-1.9692920169982515,3.760212661917064 -904,26.0,26.0,3.652281470778589,-9.46044252232512 -904,26.0,27.0,0.0,2.608731947574922 -904,26.0,28.0,-0.99553355095268,1.881005840357816 -904,26.0,29.0,-0.6874559028276572,1.293971494797717 -904,27.0,5.0,-4.362844058012917,15.463571542897856 -904,27.0,7.0,-1.4439790613954469,4.540814658476248 -904,27.0,26.0,0.0,2.608731947574922 -904,27.0,27.0,5.806823119408364,-22.67145722159613 -904,28.0,26.0,-0.99553355095268,1.881005840357816 -904,28.0,28.0,1.9075867579849564,-3.604364401207048 -904,28.0,29.0,-0.9120532070322764,1.7233585608492326 -904,29.0,26.0,-0.6874559028276572,1.293971494797717 -904,29.0,28.0,-0.9120532070322764,1.7233585608492326 -904,29.0,29.0,1.5995091098599337,-3.0173300556469496 -905,0.0,0.0,6.765516048652632,-21.23160167089863 -905,0.0,1.0,-5.224646179885656,15.646726840803398 -905,0.0,2.0,-1.5408698687669766,5.631674830095234 -905,1.0,0.0,-5.224646179885656,15.646726840803398 -905,1.0,1.0,9.75228216552403,-30.648662892676068 -905,1.0,3.0,-1.7055303166990268,5.1973792282565086 -905,1.0,4.0,-1.1359607881738778,4.772479328281356 -905,1.0,5.0,-1.6861448807654689,5.116477495334806 -905,2.0,0.0,-1.5408698687669766,5.631674830095234 -905,2.0,2.0,9.736318911079088,-29.13794745915803 -905,2.0,3.0,-8.19544904231211,23.5308726290628 -905,3.0,1.0,-1.7055303166990268,5.1973792282565086 -905,3.0,2.0,-8.19544904231211,23.5308726290628 -905,3.0,3.0,16.314103089185693,-55.509410535254254 -905,3.0,5.0,-6.413123730174556,22.31120356548123 -905,3.0,11.0,0.0,4.191255364806866 -905,4.0,1.0,-1.1359607881738778,4.772479328281356 -905,4.0,4.0,4.089980824135861,-12.190647245055052 -905,4.0,6.0,-2.954020035961983,7.449267916773697 -905,5.0,1.0,-1.6861448807654689,5.116477495334806 -905,5.0,3.0,-6.413123730174556,22.31120356548123 -905,5.0,5.0,22.341631269034565,-82.8291478657789 -905,5.0,6.0,-3.590210423980992,11.02611441072814 -905,5.0,7.0,-6.289308176100628,22.0125786163522 -905,5.0,8.0,0.0,4.915840805411357 -905,5.0,9.0,0.0,1.8561002591115965 -905,5.0,27.0,-4.362844058012917,15.463571542897856 -905,6.0,4.0,-2.954020035961983,7.449267916773697 -905,6.0,5.0,-3.590210423980992,11.02611441072814 -905,6.0,6.0,6.544230459942975,-18.45668232750184 -905,7.0,5.0,-6.289308176100628,22.0125786163522 -905,7.0,7.0,7.733287237496075,-26.527493274828448 -905,7.0,27.0,-1.4439790613954469,4.540814658476248 -905,8.0,5.0,0.0,4.915840805411357 -905,8.0,8.0,0.0,-18.706293706293707 -905,8.0,9.0,0.0,9.090909090909092 -905,8.0,10.0,0.0,4.807692307692308 -905,9.0,5.0,0.0,1.8561002591115965 -905,9.0,8.0,0.0,9.090909090909092 -905,9.0,9.0,13.462042814524237,-41.3837606675224 -905,9.0,16.0,-3.956039125715353,10.317447719844054 -905,9.0,19.0,-1.7848303152666305,3.98535828943083 -905,9.0,20.0,-5.101853820159654,10.98071411292983 -905,9.0,21.0,-2.619319553382597,5.400770303329455 -905,10.0,8.0,0.0,4.807692307692308 -905,10.0,10.0,0.0,-4.807692307692308 -905,11.0,3.0,0.0,4.191255364806866 -905,11.0,11.0,6.573961583776156,-24.424167659260668 -905,11.0,12.0,0.0,7.142857142857143 -905,11.0,13.0,-1.5265676088395577,3.1734252729654173 -905,11.0,14.0,-3.0953961826564296,6.097275864326261 -905,11.0,15.0,-1.9519977922801688,4.104359379111847 -905,12.0,11.0,0.0,7.142857142857143 -905,12.0,12.0,0.0,-7.142857142857143 -905,13.0,11.0,-1.5265676088395577,3.1734252729654173 -905,13.0,13.0,4.01751987283902,-5.424299332335067 -905,13.0,14.0,-2.4909522639994623,2.250874059369649 -905,14.0,11.0,-3.0953961826564296,6.097275864326261 -905,14.0,13.0,-2.4909522639994623,2.250874059369649 -905,14.0,14.0,9.365498545964757,-16.01163373210796 -905,14.0,17.0,-1.8108011504072024,3.687418931630696 -905,14.0,22.0,-1.9683489489016612,3.976064876781356 -905,15.0,11.0,-1.9519977922801688,4.104359379111847 -905,15.0,15.0,3.271064728633931,-8.94513365126506 -905,15.0,16.0,-1.3190669363537617,4.8407742721532125 -905,16.0,9.0,-3.956039125715353,10.317447719844054 -905,16.0,15.0,-1.3190669363537617,4.8407742721532125 -905,16.0,16.0,5.275106062069114,-15.158221991997266 -905,17.0,14.0,-1.8108011504072024,3.687418931630696 -905,17.0,17.0,4.886487584415919,-9.906177730909668 -905,17.0,18.0,-3.0756864340087167,6.218758799278971 -905,18.0,17.0,-3.0756864340087167,6.218758799278971 -905,18.0,18.0,8.958039375185187,-17.98346468163191 -905,18.0,19.0,-5.88235294117647,11.76470588235294 -905,19.0,9.0,-1.7848303152666305,3.98535828943083 -905,19.0,18.0,-5.88235294117647,11.76470588235294 -905,19.0,19.0,7.6671832564431,-15.75006417178377 -905,20.0,9.0,-5.101853820159654,10.98071411292983 -905,20.0,20.0,21.876495189895888,-45.10843276170355 -905,20.0,21.0,-16.774641369736234,34.127718648773715 -905,21.0,9.0,-2.619319553382597,5.400770303329455 -905,21.0,20.0,-16.774641369736234,34.127718648773715 -905,21.0,21.0,21.93449907537439,-43.48289181517921 -905,21.0,23.0,-2.5405381522555563,3.95440286307604 -905,22.0,14.0,-1.9683489489016612,3.976064876781356 -905,22.0,22.0,3.429754555384988,-6.965303617315433 -905,22.0,23.0,-1.4614056064833263,2.989238740534077 -905,23.0,21.0,-2.5405381522555563,3.95440286307604 -905,23.0,22.0,-1.4614056064833263,2.989238740534077 -905,23.0,23.0,5.311836702613133,-9.188263657315172 -905,23.0,24.0,-1.3098929438742493,2.287622053705056 -905,24.0,23.0,-1.3098929438742493,2.287622053705056 -905,24.0,24.0,4.495715080321987,-7.864978761969621 -905,24.0,25.0,-1.2165301194494855,1.8171440463475024 -905,24.0,26.0,-1.9692920169982515,3.760212661917064 -905,25.0,24.0,-1.2165301194494855,1.8171440463475024 -905,25.0,25.0,1.2165301194494855,-1.8171440463475024 -905,26.0,24.0,-1.9692920169982515,3.760212661917064 -905,26.0,26.0,3.652281470778589,-9.46044252232512 -905,26.0,27.0,0.0,2.608731947574922 -905,26.0,28.0,-0.99553355095268,1.881005840357816 -905,26.0,29.0,-0.6874559028276572,1.293971494797717 -905,27.0,5.0,-4.362844058012917,15.463571542897856 -905,27.0,7.0,-1.4439790613954469,4.540814658476248 -905,27.0,26.0,0.0,2.608731947574922 -905,27.0,27.0,5.806823119408364,-22.67145722159613 -905,28.0,26.0,-0.99553355095268,1.881005840357816 -905,28.0,28.0,1.9075867579849564,-3.604364401207048 -905,28.0,29.0,-0.9120532070322764,1.7233585608492326 -905,29.0,26.0,-0.6874559028276572,1.293971494797717 -905,29.0,28.0,-0.9120532070322764,1.7233585608492326 -905,29.0,29.0,1.5995091098599337,-3.0173300556469496 -906,0.0,0.0,6.765516048652632,-21.23160167089863 -906,0.0,1.0,-5.224646179885656,15.646726840803398 -906,0.0,2.0,-1.5408698687669766,5.631674830095234 -906,1.0,0.0,-5.224646179885656,15.646726840803398 -906,1.0,1.0,9.75228216552403,-30.648662892676068 -906,1.0,3.0,-1.7055303166990268,5.1973792282565086 -906,1.0,4.0,-1.1359607881738778,4.772479328281356 -906,1.0,5.0,-1.6861448807654689,5.116477495334806 -906,2.0,0.0,-1.5408698687669766,5.631674830095234 -906,2.0,2.0,9.736318911079088,-29.13794745915803 -906,2.0,3.0,-8.19544904231211,23.5308726290628 -906,3.0,1.0,-1.7055303166990268,5.1973792282565086 -906,3.0,2.0,-8.19544904231211,23.5308726290628 -906,3.0,3.0,16.314103089185693,-55.509410535254254 -906,3.0,5.0,-6.413123730174556,22.31120356548123 -906,3.0,11.0,0.0,4.191255364806866 -906,4.0,1.0,-1.1359607881738778,4.772479328281356 -906,4.0,4.0,4.089980824135861,-12.190647245055052 -906,4.0,6.0,-2.954020035961983,7.449267916773697 -906,5.0,1.0,-1.6861448807654689,5.116477495334806 -906,5.0,3.0,-6.413123730174556,22.31120356548123 -906,5.0,5.0,22.341631269034565,-82.8291478657789 -906,5.0,6.0,-3.590210423980992,11.02611441072814 -906,5.0,7.0,-6.289308176100628,22.0125786163522 -906,5.0,8.0,0.0,4.915840805411357 -906,5.0,9.0,0.0,1.8561002591115965 -906,5.0,27.0,-4.362844058012917,15.463571542897856 -906,6.0,4.0,-2.954020035961983,7.449267916773697 -906,6.0,5.0,-3.590210423980992,11.02611441072814 -906,6.0,6.0,6.544230459942975,-18.45668232750184 -906,7.0,5.0,-6.289308176100628,22.0125786163522 -906,7.0,7.0,7.733287237496075,-26.527493274828448 -906,7.0,27.0,-1.4439790613954469,4.540814658476248 -906,8.0,5.0,0.0,4.915840805411357 -906,8.0,8.0,0.0,-18.706293706293707 -906,8.0,9.0,0.0,9.090909090909092 -906,8.0,10.0,0.0,4.807692307692308 -906,9.0,5.0,0.0,1.8561002591115965 -906,9.0,8.0,0.0,9.090909090909092 -906,9.0,9.0,9.506003688808882,-31.06631294767834 -906,9.0,19.0,-1.7848303152666305,3.98535828943083 -906,9.0,20.0,-5.101853820159654,10.98071411292983 -906,9.0,21.0,-2.619319553382597,5.400770303329455 -906,10.0,8.0,0.0,4.807692307692308 -906,10.0,10.0,0.0,-4.807692307692308 -906,11.0,3.0,0.0,4.191255364806866 -906,11.0,11.0,6.573961583776156,-24.424167659260668 -906,11.0,12.0,0.0,7.142857142857143 -906,11.0,13.0,-1.5265676088395577,3.1734252729654173 -906,11.0,14.0,-3.0953961826564296,6.097275864326261 -906,11.0,15.0,-1.9519977922801688,4.104359379111847 -906,12.0,11.0,0.0,7.142857142857143 -906,12.0,12.0,0.0,-7.142857142857143 -906,13.0,11.0,-1.5265676088395577,3.1734252729654173 -906,13.0,13.0,4.01751987283902,-5.424299332335067 -906,13.0,14.0,-2.4909522639994623,2.250874059369649 -906,14.0,11.0,-3.0953961826564296,6.097275864326261 -906,14.0,13.0,-2.4909522639994623,2.250874059369649 -906,14.0,14.0,9.365498545964757,-16.01163373210796 -906,14.0,17.0,-1.8108011504072024,3.687418931630696 -906,14.0,22.0,-1.9683489489016612,3.976064876781356 -906,15.0,11.0,-1.9519977922801688,4.104359379111847 -906,15.0,15.0,3.271064728633931,-8.94513365126506 -906,15.0,16.0,-1.3190669363537617,4.8407742721532125 -906,16.0,15.0,-1.3190669363537617,4.8407742721532125 -906,16.0,16.0,1.3190669363537617,-4.8407742721532125 -906,17.0,14.0,-1.8108011504072024,3.687418931630696 -906,17.0,17.0,4.886487584415919,-9.906177730909668 -906,17.0,18.0,-3.0756864340087167,6.218758799278971 -906,18.0,17.0,-3.0756864340087167,6.218758799278971 -906,18.0,18.0,3.0756864340087167,-6.218758799278971 -906,19.0,9.0,-1.7848303152666305,3.98535828943083 -906,19.0,19.0,1.7848303152666305,-3.98535828943083 -906,20.0,9.0,-5.101853820159654,10.98071411292983 -906,20.0,20.0,21.876495189895888,-45.10843276170355 -906,20.0,21.0,-16.774641369736234,34.127718648773715 -906,21.0,9.0,-2.619319553382597,5.400770303329455 -906,21.0,20.0,-16.774641369736234,34.127718648773715 -906,21.0,21.0,21.93449907537439,-43.48289181517921 -906,21.0,23.0,-2.5405381522555563,3.95440286307604 -906,22.0,14.0,-1.9683489489016612,3.976064876781356 -906,22.0,22.0,3.429754555384988,-6.965303617315433 -906,22.0,23.0,-1.4614056064833263,2.989238740534077 -906,23.0,21.0,-2.5405381522555563,3.95440286307604 -906,23.0,22.0,-1.4614056064833263,2.989238740534077 -906,23.0,23.0,5.311836702613133,-9.188263657315172 -906,23.0,24.0,-1.3098929438742493,2.287622053705056 -906,24.0,23.0,-1.3098929438742493,2.287622053705056 -906,24.0,24.0,4.495715080321987,-7.864978761969621 -906,24.0,25.0,-1.2165301194494855,1.8171440463475024 -906,24.0,26.0,-1.9692920169982515,3.760212661917064 -906,25.0,24.0,-1.2165301194494855,1.8171440463475024 -906,25.0,25.0,1.2165301194494855,-1.8171440463475024 -906,26.0,24.0,-1.9692920169982515,3.760212661917064 -906,26.0,26.0,3.652281470778589,-9.46044252232512 -906,26.0,27.0,0.0,2.608731947574922 -906,26.0,28.0,-0.99553355095268,1.881005840357816 -906,26.0,29.0,-0.6874559028276572,1.293971494797717 -906,27.0,5.0,-4.362844058012917,15.463571542897856 -906,27.0,7.0,-1.4439790613954469,4.540814658476248 -906,27.0,26.0,0.0,2.608731947574922 -906,27.0,27.0,5.806823119408364,-22.67145722159613 -906,28.0,26.0,-0.99553355095268,1.881005840357816 -906,28.0,28.0,1.9075867579849564,-3.604364401207048 -906,28.0,29.0,-0.9120532070322764,1.7233585608492326 -906,29.0,26.0,-0.6874559028276572,1.293971494797717 -906,29.0,28.0,-0.9120532070322764,1.7233585608492326 -906,29.0,29.0,1.5995091098599337,-3.0173300556469496 -907,0.0,0.0,6.765516048652632,-21.23160167089863 -907,0.0,1.0,-5.224646179885656,15.646726840803398 -907,0.0,2.0,-1.5408698687669766,5.631674830095234 -907,1.0,0.0,-5.224646179885656,15.646726840803398 -907,1.0,1.0,8.066137284758561,-25.55088539734126 -907,1.0,3.0,-1.7055303166990268,5.1973792282565086 -907,1.0,4.0,-1.1359607881738778,4.772479328281356 -907,2.0,0.0,-1.5408698687669766,5.631674830095234 -907,2.0,2.0,9.736318911079088,-29.13794745915803 -907,2.0,3.0,-8.19544904231211,23.5308726290628 -907,3.0,1.0,-1.7055303166990268,5.1973792282565086 -907,3.0,2.0,-8.19544904231211,23.5308726290628 -907,3.0,3.0,16.314103089185693,-55.509410535254254 -907,3.0,5.0,-6.413123730174556,22.31120356548123 -907,3.0,11.0,0.0,4.191255364806866 -907,4.0,1.0,-1.1359607881738778,4.772479328281356 -907,4.0,4.0,4.089980824135861,-12.190647245055052 -907,4.0,6.0,-2.954020035961983,7.449267916773697 -907,5.0,3.0,-6.413123730174556,22.31120356548123 -907,5.0,5.0,20.655486388269097,-77.7313703704441 -907,5.0,6.0,-3.590210423980992,11.02611441072814 -907,5.0,7.0,-6.289308176100628,22.0125786163522 -907,5.0,8.0,0.0,4.915840805411357 -907,5.0,9.0,0.0,1.8561002591115965 -907,5.0,27.0,-4.362844058012917,15.463571542897856 -907,6.0,4.0,-2.954020035961983,7.449267916773697 -907,6.0,5.0,-3.590210423980992,11.02611441072814 -907,6.0,6.0,6.544230459942975,-18.45668232750184 -907,7.0,5.0,-6.289308176100628,22.0125786163522 -907,7.0,7.0,7.733287237496075,-26.527493274828448 -907,7.0,27.0,-1.4439790613954469,4.540814658476248 -907,8.0,5.0,0.0,4.915840805411357 -907,8.0,8.0,0.0,-18.706293706293707 -907,8.0,9.0,0.0,9.090909090909092 -907,8.0,10.0,0.0,4.807692307692308 -907,9.0,5.0,0.0,1.8561002591115965 -907,9.0,8.0,0.0,9.090909090909092 -907,9.0,9.0,6.575358679097951,-26.417688265161736 -907,9.0,16.0,-3.956039125715353,10.317447719844054 -907,9.0,21.0,-2.619319553382597,5.400770303329455 -907,10.0,8.0,0.0,4.807692307692308 -907,10.0,10.0,0.0,-4.807692307692308 -907,11.0,3.0,0.0,4.191255364806866 -907,11.0,11.0,4.621963791495987,-20.31980828014882 -907,11.0,12.0,0.0,7.142857142857143 -907,11.0,13.0,-1.5265676088395577,3.1734252729654173 -907,11.0,14.0,-3.0953961826564296,6.097275864326261 -907,12.0,11.0,0.0,7.142857142857143 -907,12.0,12.0,0.0,-7.142857142857143 -907,13.0,11.0,-1.5265676088395577,3.1734252729654173 -907,13.0,13.0,4.01751987283902,-5.424299332335067 -907,13.0,14.0,-2.4909522639994623,2.250874059369649 -907,14.0,11.0,-3.0953961826564296,6.097275864326261 -907,14.0,13.0,-2.4909522639994623,2.250874059369649 -907,14.0,14.0,9.365498545964757,-16.01163373210796 -907,14.0,17.0,-1.8108011504072024,3.687418931630696 -907,14.0,22.0,-1.9683489489016612,3.976064876781356 -907,15.0,15.0,1.3190669363537617,-4.8407742721532125 -907,15.0,16.0,-1.3190669363537617,4.8407742721532125 -907,16.0,9.0,-3.956039125715353,10.317447719844054 -907,16.0,15.0,-1.3190669363537617,4.8407742721532125 -907,16.0,16.0,5.275106062069114,-15.158221991997266 -907,17.0,14.0,-1.8108011504072024,3.687418931630696 -907,17.0,17.0,4.886487584415919,-9.906177730909668 -907,17.0,18.0,-3.0756864340087167,6.218758799278971 -907,18.0,17.0,-3.0756864340087167,6.218758799278971 -907,18.0,18.0,8.958039375185187,-17.98346468163191 -907,18.0,19.0,-5.88235294117647,11.76470588235294 -907,19.0,18.0,-5.88235294117647,11.76470588235294 -907,19.0,19.0,5.88235294117647,-11.76470588235294 -907,20.0,20.0,16.774641369736234,-34.127718648773715 -907,20.0,21.0,-16.774641369736234,34.127718648773715 -907,21.0,9.0,-2.619319553382597,5.400770303329455 -907,21.0,20.0,-16.774641369736234,34.127718648773715 -907,21.0,21.0,21.93449907537439,-43.48289181517921 -907,21.0,23.0,-2.5405381522555563,3.95440286307604 -907,22.0,14.0,-1.9683489489016612,3.976064876781356 -907,22.0,22.0,3.429754555384988,-6.965303617315433 -907,22.0,23.0,-1.4614056064833263,2.989238740534077 -907,23.0,21.0,-2.5405381522555563,3.95440286307604 -907,23.0,22.0,-1.4614056064833263,2.989238740534077 -907,23.0,23.0,4.001943758738883,-6.900641603610116 -907,24.0,24.0,3.185822136447737,-5.577356708264566 -907,24.0,25.0,-1.2165301194494855,1.8171440463475024 -907,24.0,26.0,-1.9692920169982515,3.760212661917064 -907,25.0,24.0,-1.2165301194494855,1.8171440463475024 -907,25.0,25.0,1.2165301194494855,-1.8171440463475024 -907,26.0,24.0,-1.9692920169982515,3.760212661917064 -907,26.0,26.0,3.652281470778589,-9.46044252232512 -907,26.0,27.0,0.0,2.608731947574922 -907,26.0,28.0,-0.99553355095268,1.881005840357816 -907,26.0,29.0,-0.6874559028276572,1.293971494797717 -907,27.0,5.0,-4.362844058012917,15.463571542897856 -907,27.0,7.0,-1.4439790613954469,4.540814658476248 -907,27.0,26.0,0.0,2.608731947574922 -907,27.0,27.0,5.806823119408364,-22.67145722159613 -907,28.0,26.0,-0.99553355095268,1.881005840357816 -907,28.0,28.0,1.9075867579849564,-3.604364401207048 -907,28.0,29.0,-0.9120532070322764,1.7233585608492326 -907,29.0,26.0,-0.6874559028276572,1.293971494797717 -907,29.0,28.0,-0.9120532070322764,1.7233585608492326 -907,29.0,29.0,1.5995091098599337,-3.0173300556469496 -908,0.0,0.0,6.765516048652632,-21.23160167089863 -908,0.0,1.0,-5.224646179885656,15.646726840803398 -908,0.0,2.0,-1.5408698687669766,5.631674830095234 -908,1.0,0.0,-5.224646179885656,15.646726840803398 -908,1.0,1.0,9.75228216552403,-30.648662892676068 -908,1.0,3.0,-1.7055303166990268,5.1973792282565086 -908,1.0,4.0,-1.1359607881738778,4.772479328281356 -908,1.0,5.0,-1.6861448807654689,5.116477495334806 -908,2.0,0.0,-1.5408698687669766,5.631674830095234 -908,2.0,2.0,9.736318911079088,-29.13794745915803 -908,2.0,3.0,-8.19544904231211,23.5308726290628 -908,3.0,1.0,-1.7055303166990268,5.1973792282565086 -908,3.0,2.0,-8.19544904231211,23.5308726290628 -908,3.0,3.0,16.314103089185693,-55.509410535254254 -908,3.0,5.0,-6.413123730174556,22.31120356548123 -908,3.0,11.0,0.0,4.191255364806866 -908,4.0,1.0,-1.1359607881738778,4.772479328281356 -908,4.0,4.0,4.089980824135861,-12.190647245055052 -908,4.0,6.0,-2.954020035961983,7.449267916773697 -908,5.0,1.0,-1.6861448807654689,5.116477495334806 -908,5.0,3.0,-6.413123730174556,22.31120356548123 -908,5.0,5.0,22.341631269034565,-82.8291478657789 -908,5.0,6.0,-3.590210423980992,11.02611441072814 -908,5.0,7.0,-6.289308176100628,22.0125786163522 -908,5.0,8.0,0.0,4.915840805411357 -908,5.0,9.0,0.0,1.8561002591115965 -908,5.0,27.0,-4.362844058012917,15.463571542897856 -908,6.0,4.0,-2.954020035961983,7.449267916773697 -908,6.0,5.0,-3.590210423980992,11.02611441072814 -908,6.0,6.0,6.544230459942975,-18.45668232750184 -908,7.0,5.0,-6.289308176100628,22.0125786163522 -908,7.0,7.0,7.733287237496075,-26.527493274828448 -908,7.0,27.0,-1.4439790613954469,4.540814658476248 -908,8.0,5.0,0.0,4.915840805411357 -908,8.0,8.0,0.0,-18.706293706293707 -908,8.0,9.0,0.0,9.090909090909092 -908,8.0,10.0,0.0,4.807692307692308 -908,9.0,5.0,0.0,1.8561002591115965 -908,9.0,8.0,0.0,9.090909090909092 -908,9.0,9.0,13.462042814524237,-41.3837606675224 -908,9.0,16.0,-3.956039125715353,10.317447719844054 -908,9.0,19.0,-1.7848303152666305,3.98535828943083 -908,9.0,20.0,-5.101853820159654,10.98071411292983 -908,9.0,21.0,-2.619319553382597,5.400770303329455 -908,10.0,8.0,0.0,4.807692307692308 -908,10.0,10.0,0.0,-4.807692307692308 -908,11.0,3.0,0.0,4.191255364806866 -908,11.0,11.0,6.573961583776156,-24.424167659260668 -908,11.0,12.0,0.0,7.142857142857143 -908,11.0,13.0,-1.5265676088395577,3.1734252729654173 -908,11.0,14.0,-3.0953961826564296,6.097275864326261 -908,11.0,15.0,-1.9519977922801688,4.104359379111847 -908,12.0,11.0,0.0,7.142857142857143 -908,12.0,12.0,0.0,-7.142857142857143 -908,13.0,11.0,-1.5265676088395577,3.1734252729654173 -908,13.0,13.0,4.01751987283902,-5.424299332335067 -908,13.0,14.0,-2.4909522639994623,2.250874059369649 -908,14.0,11.0,-3.0953961826564296,6.097275864326261 -908,14.0,13.0,-2.4909522639994623,2.250874059369649 -908,14.0,14.0,7.397149597063095,-12.035568855326606 -908,14.0,17.0,-1.8108011504072024,3.687418931630696 -908,15.0,11.0,-1.9519977922801688,4.104359379111847 -908,15.0,15.0,3.271064728633931,-8.94513365126506 -908,15.0,16.0,-1.3190669363537617,4.8407742721532125 -908,16.0,9.0,-3.956039125715353,10.317447719844054 -908,16.0,15.0,-1.3190669363537617,4.8407742721532125 -908,16.0,16.0,5.275106062069114,-15.158221991997266 -908,17.0,14.0,-1.8108011504072024,3.687418931630696 -908,17.0,17.0,4.886487584415919,-9.906177730909668 -908,17.0,18.0,-3.0756864340087167,6.218758799278971 -908,18.0,17.0,-3.0756864340087167,6.218758799278971 -908,18.0,18.0,8.958039375185187,-17.98346468163191 -908,18.0,19.0,-5.88235294117647,11.76470588235294 -908,19.0,9.0,-1.7848303152666305,3.98535828943083 -908,19.0,18.0,-5.88235294117647,11.76470588235294 -908,19.0,19.0,7.6671832564431,-15.75006417178377 -908,20.0,9.0,-5.101853820159654,10.98071411292983 -908,20.0,20.0,21.876495189895888,-45.10843276170355 -908,20.0,21.0,-16.774641369736234,34.127718648773715 -908,21.0,9.0,-2.619319553382597,5.400770303329455 -908,21.0,20.0,-16.774641369736234,34.127718648773715 -908,21.0,21.0,21.93449907537439,-43.48289181517921 -908,21.0,23.0,-2.5405381522555563,3.95440286307604 -908,22.0,22.0,1.4614056064833263,-2.989238740534077 -908,22.0,23.0,-1.4614056064833263,2.989238740534077 -908,23.0,21.0,-2.5405381522555563,3.95440286307604 -908,23.0,22.0,-1.4614056064833263,2.989238740534077 -908,23.0,23.0,5.311836702613133,-9.188263657315172 -908,23.0,24.0,-1.3098929438742493,2.287622053705056 -908,24.0,23.0,-1.3098929438742493,2.287622053705056 -908,24.0,24.0,4.495715080321987,-7.864978761969621 -908,24.0,25.0,-1.2165301194494855,1.8171440463475024 -908,24.0,26.0,-1.9692920169982515,3.760212661917064 -908,25.0,24.0,-1.2165301194494855,1.8171440463475024 -908,25.0,25.0,1.2165301194494855,-1.8171440463475024 -908,26.0,24.0,-1.9692920169982515,3.760212661917064 -908,26.0,26.0,3.652281470778589,-9.46044252232512 -908,26.0,27.0,0.0,2.608731947574922 -908,26.0,28.0,-0.99553355095268,1.881005840357816 -908,26.0,29.0,-0.6874559028276572,1.293971494797717 -908,27.0,5.0,-4.362844058012917,15.463571542897856 -908,27.0,7.0,-1.4439790613954469,4.540814658476248 -908,27.0,26.0,0.0,2.608731947574922 -908,27.0,27.0,5.806823119408364,-22.67145722159613 -908,28.0,26.0,-0.99553355095268,1.881005840357816 -908,28.0,28.0,1.9075867579849564,-3.604364401207048 -908,28.0,29.0,-0.9120532070322764,1.7233585608492326 -908,29.0,26.0,-0.6874559028276572,1.293971494797717 -908,29.0,28.0,-0.9120532070322764,1.7233585608492326 -908,29.0,29.0,1.5995091098599337,-3.0173300556469496 -909,0.0,0.0,6.765516048652632,-21.23160167089863 -909,0.0,1.0,-5.224646179885656,15.646726840803398 -909,0.0,2.0,-1.5408698687669766,5.631674830095234 -909,1.0,0.0,-5.224646179885656,15.646726840803398 -909,1.0,1.0,9.75228216552403,-30.648662892676068 -909,1.0,3.0,-1.7055303166990268,5.1973792282565086 -909,1.0,4.0,-1.1359607881738778,4.772479328281356 -909,1.0,5.0,-1.6861448807654689,5.116477495334806 -909,2.0,0.0,-1.5408698687669766,5.631674830095234 -909,2.0,2.0,9.736318911079088,-29.13794745915803 -909,2.0,3.0,-8.19544904231211,23.5308726290628 -909,3.0,1.0,-1.7055303166990268,5.1973792282565086 -909,3.0,2.0,-8.19544904231211,23.5308726290628 -909,3.0,3.0,9.900979359011137,-33.202706969773025 -909,3.0,11.0,0.0,4.191255364806866 -909,4.0,1.0,-1.1359607881738778,4.772479328281356 -909,4.0,4.0,4.089980824135861,-12.190647245055052 -909,4.0,6.0,-2.954020035961983,7.449267916773697 -909,5.0,1.0,-1.6861448807654689,5.116477495334806 -909,5.0,5.0,11.565663480847087,-45.06537275739982 -909,5.0,6.0,-3.590210423980992,11.02611441072814 -909,5.0,7.0,-6.289308176100628,22.0125786163522 -909,5.0,8.0,0.0,4.915840805411357 -909,5.0,9.0,0.0,1.8561002591115965 -909,6.0,4.0,-2.954020035961983,7.449267916773697 -909,6.0,5.0,-3.590210423980992,11.02611441072814 -909,6.0,6.0,6.544230459942975,-18.45668232750184 -909,7.0,5.0,-6.289308176100628,22.0125786163522 -909,7.0,7.0,7.733287237496075,-26.527493274828448 -909,7.0,27.0,-1.4439790613954469,4.540814658476248 -909,8.0,5.0,0.0,4.915840805411357 -909,8.0,8.0,0.0,-18.706293706293707 -909,8.0,9.0,0.0,9.090909090909092 -909,8.0,10.0,0.0,4.807692307692308 -909,9.0,5.0,0.0,1.8561002591115965 -909,9.0,8.0,0.0,9.090909090909092 -909,9.0,9.0,13.462042814524237,-41.3837606675224 -909,9.0,16.0,-3.956039125715353,10.317447719844054 -909,9.0,19.0,-1.7848303152666305,3.98535828943083 -909,9.0,20.0,-5.101853820159654,10.98071411292983 -909,9.0,21.0,-2.619319553382597,5.400770303329455 -909,10.0,8.0,0.0,4.807692307692308 -909,10.0,10.0,0.0,-4.807692307692308 -909,11.0,3.0,0.0,4.191255364806866 -909,11.0,11.0,6.573961583776156,-24.424167659260668 -909,11.0,12.0,0.0,7.142857142857143 -909,11.0,13.0,-1.5265676088395577,3.1734252729654173 -909,11.0,14.0,-3.0953961826564296,6.097275864326261 -909,11.0,15.0,-1.9519977922801688,4.104359379111847 -909,12.0,11.0,0.0,7.142857142857143 -909,12.0,12.0,0.0,-7.142857142857143 -909,13.0,11.0,-1.5265676088395577,3.1734252729654173 -909,13.0,13.0,4.01751987283902,-5.424299332335067 -909,13.0,14.0,-2.4909522639994623,2.250874059369649 -909,14.0,11.0,-3.0953961826564296,6.097275864326261 -909,14.0,13.0,-2.4909522639994623,2.250874059369649 -909,14.0,14.0,9.365498545964757,-16.01163373210796 -909,14.0,17.0,-1.8108011504072024,3.687418931630696 -909,14.0,22.0,-1.9683489489016612,3.976064876781356 -909,15.0,11.0,-1.9519977922801688,4.104359379111847 -909,15.0,15.0,3.271064728633931,-8.94513365126506 -909,15.0,16.0,-1.3190669363537617,4.8407742721532125 -909,16.0,9.0,-3.956039125715353,10.317447719844054 -909,16.0,15.0,-1.3190669363537617,4.8407742721532125 -909,16.0,16.0,5.275106062069114,-15.158221991997266 -909,17.0,14.0,-1.8108011504072024,3.687418931630696 -909,17.0,17.0,4.886487584415919,-9.906177730909668 -909,17.0,18.0,-3.0756864340087167,6.218758799278971 -909,18.0,17.0,-3.0756864340087167,6.218758799278971 -909,18.0,18.0,8.958039375185187,-17.98346468163191 -909,18.0,19.0,-5.88235294117647,11.76470588235294 -909,19.0,9.0,-1.7848303152666305,3.98535828943083 -909,19.0,18.0,-5.88235294117647,11.76470588235294 -909,19.0,19.0,7.6671832564431,-15.75006417178377 -909,20.0,9.0,-5.101853820159654,10.98071411292983 -909,20.0,20.0,21.876495189895888,-45.10843276170355 -909,20.0,21.0,-16.774641369736234,34.127718648773715 -909,21.0,9.0,-2.619319553382597,5.400770303329455 -909,21.0,20.0,-16.774641369736234,34.127718648773715 -909,21.0,21.0,21.93449907537439,-43.48289181517921 -909,21.0,23.0,-2.5405381522555563,3.95440286307604 -909,22.0,14.0,-1.9683489489016612,3.976064876781356 -909,22.0,22.0,3.429754555384988,-6.965303617315433 -909,22.0,23.0,-1.4614056064833263,2.989238740534077 -909,23.0,21.0,-2.5405381522555563,3.95440286307604 -909,23.0,22.0,-1.4614056064833263,2.989238740534077 -909,23.0,23.0,5.311836702613133,-9.188263657315172 -909,23.0,24.0,-1.3098929438742493,2.287622053705056 -909,24.0,23.0,-1.3098929438742493,2.287622053705056 -909,24.0,24.0,4.495715080321987,-7.864978761969621 -909,24.0,25.0,-1.2165301194494855,1.8171440463475024 -909,24.0,26.0,-1.9692920169982515,3.760212661917064 -909,25.0,24.0,-1.2165301194494855,1.8171440463475024 -909,25.0,25.0,1.2165301194494855,-1.8171440463475024 -909,26.0,24.0,-1.9692920169982515,3.760212661917064 -909,26.0,26.0,3.652281470778589,-9.46044252232512 -909,26.0,27.0,0.0,2.608731947574922 -909,26.0,28.0,-0.99553355095268,1.881005840357816 -909,26.0,29.0,-0.6874559028276572,1.293971494797717 -909,27.0,7.0,-1.4439790613954469,4.540814658476248 -909,27.0,26.0,0.0,2.608731947574922 -909,27.0,27.0,1.4439790613954469,-7.214385678698274 -909,28.0,26.0,-0.99553355095268,1.881005840357816 -909,28.0,28.0,1.9075867579849564,-3.604364401207048 -909,28.0,29.0,-0.9120532070322764,1.7233585608492326 -909,29.0,26.0,-0.6874559028276572,1.293971494797717 -909,29.0,28.0,-0.9120532070322764,1.7233585608492326 -909,29.0,29.0,1.5995091098599337,-3.0173300556469496 -910,0.0,0.0,6.765516048652632,-21.23160167089863 -910,0.0,1.0,-5.224646179885656,15.646726840803398 -910,0.0,2.0,-1.5408698687669766,5.631674830095234 -910,1.0,0.0,-5.224646179885656,15.646726840803398 -910,1.0,1.0,9.75228216552403,-30.648662892676068 -910,1.0,3.0,-1.7055303166990268,5.1973792282565086 -910,1.0,4.0,-1.1359607881738778,4.772479328281356 -910,1.0,5.0,-1.6861448807654689,5.116477495334806 -910,2.0,0.0,-1.5408698687669766,5.631674830095234 -910,2.0,2.0,9.736318911079088,-29.13794745915803 -910,2.0,3.0,-8.19544904231211,23.5308726290628 -910,3.0,1.0,-1.7055303166990268,5.1973792282565086 -910,3.0,2.0,-8.19544904231211,23.5308726290628 -910,3.0,3.0,16.314103089185693,-55.509410535254254 -910,3.0,5.0,-6.413123730174556,22.31120356548123 -910,3.0,11.0,0.0,4.191255364806866 -910,4.0,1.0,-1.1359607881738778,4.772479328281356 -910,4.0,4.0,4.089980824135861,-12.190647245055052 -910,4.0,6.0,-2.954020035961983,7.449267916773697 -910,5.0,1.0,-1.6861448807654689,5.116477495334806 -910,5.0,3.0,-6.413123730174556,22.31120356548123 -910,5.0,5.0,22.341631269034565,-82.8291478657789 -910,5.0,6.0,-3.590210423980992,11.02611441072814 -910,5.0,7.0,-6.289308176100628,22.0125786163522 -910,5.0,8.0,0.0,4.915840805411357 -910,5.0,9.0,0.0,1.8561002591115965 -910,5.0,27.0,-4.362844058012917,15.463571542897856 -910,6.0,4.0,-2.954020035961983,7.449267916773697 -910,6.0,5.0,-3.590210423980992,11.02611441072814 -910,6.0,6.0,6.544230459942975,-18.45668232750184 -910,7.0,5.0,-6.289308176100628,22.0125786163522 -910,7.0,7.0,7.733287237496075,-26.527493274828448 -910,7.0,27.0,-1.4439790613954469,4.540814658476248 -910,8.0,5.0,0.0,4.915840805411357 -910,8.0,8.0,0.0,-18.706293706293707 -910,8.0,9.0,0.0,9.090909090909092 -910,8.0,10.0,0.0,4.807692307692308 -910,9.0,5.0,0.0,1.8561002591115965 -910,9.0,8.0,0.0,9.090909090909092 -910,9.0,9.0,13.462042814524237,-41.3837606675224 -910,9.0,16.0,-3.956039125715353,10.317447719844054 -910,9.0,19.0,-1.7848303152666305,3.98535828943083 -910,9.0,20.0,-5.101853820159654,10.98071411292983 -910,9.0,21.0,-2.619319553382597,5.400770303329455 -910,10.0,8.0,0.0,4.807692307692308 -910,10.0,10.0,0.0,-4.807692307692308 -910,11.0,3.0,0.0,4.191255364806866 -910,11.0,11.0,6.573961583776156,-24.424167659260668 -910,11.0,12.0,0.0,7.142857142857143 -910,11.0,13.0,-1.5265676088395577,3.1734252729654173 -910,11.0,14.0,-3.0953961826564296,6.097275864326261 -910,11.0,15.0,-1.9519977922801688,4.104359379111847 -910,12.0,11.0,0.0,7.142857142857143 -910,12.0,12.0,0.0,-7.142857142857143 -910,13.0,11.0,-1.5265676088395577,3.1734252729654173 -910,13.0,13.0,4.01751987283902,-5.424299332335067 -910,13.0,14.0,-2.4909522639994623,2.250874059369649 -910,14.0,11.0,-3.0953961826564296,6.097275864326261 -910,14.0,13.0,-2.4909522639994623,2.250874059369649 -910,14.0,14.0,9.365498545964757,-16.01163373210796 -910,14.0,17.0,-1.8108011504072024,3.687418931630696 -910,14.0,22.0,-1.9683489489016612,3.976064876781356 -910,15.0,11.0,-1.9519977922801688,4.104359379111847 -910,15.0,15.0,3.271064728633931,-8.94513365126506 -910,15.0,16.0,-1.3190669363537617,4.8407742721532125 -910,16.0,9.0,-3.956039125715353,10.317447719844054 -910,16.0,15.0,-1.3190669363537617,4.8407742721532125 -910,16.0,16.0,5.275106062069114,-15.158221991997266 -910,17.0,14.0,-1.8108011504072024,3.687418931630696 -910,17.0,17.0,4.886487584415919,-9.906177730909668 -910,17.0,18.0,-3.0756864340087167,6.218758799278971 -910,18.0,17.0,-3.0756864340087167,6.218758799278971 -910,18.0,18.0,8.958039375185187,-17.98346468163191 -910,18.0,19.0,-5.88235294117647,11.76470588235294 -910,19.0,9.0,-1.7848303152666305,3.98535828943083 -910,19.0,18.0,-5.88235294117647,11.76470588235294 -910,19.0,19.0,7.6671832564431,-15.75006417178377 -910,20.0,9.0,-5.101853820159654,10.98071411292983 -910,20.0,20.0,21.876495189895888,-45.10843276170355 -910,20.0,21.0,-16.774641369736234,34.127718648773715 -910,21.0,9.0,-2.619319553382597,5.400770303329455 -910,21.0,20.0,-16.774641369736234,34.127718648773715 -910,21.0,21.0,21.93449907537439,-43.48289181517921 -910,21.0,23.0,-2.5405381522555563,3.95440286307604 -910,22.0,14.0,-1.9683489489016612,3.976064876781356 -910,22.0,22.0,3.429754555384988,-6.965303617315433 -910,22.0,23.0,-1.4614056064833263,2.989238740534077 -910,23.0,21.0,-2.5405381522555563,3.95440286307604 -910,23.0,22.0,-1.4614056064833263,2.989238740534077 -910,23.0,23.0,5.311836702613133,-9.188263657315172 -910,23.0,24.0,-1.3098929438742493,2.287622053705056 -910,24.0,23.0,-1.3098929438742493,2.287622053705056 -910,24.0,24.0,4.495715080321987,-7.864978761969621 -910,24.0,25.0,-1.2165301194494855,1.8171440463475024 -910,24.0,26.0,-1.9692920169982515,3.760212661917064 -910,25.0,24.0,-1.2165301194494855,1.8171440463475024 -910,25.0,25.0,1.2165301194494855,-1.8171440463475024 -910,26.0,24.0,-1.9692920169982515,3.760212661917064 -910,26.0,26.0,3.652281470778589,-9.46044252232512 -910,26.0,27.0,0.0,2.608731947574922 -910,26.0,28.0,-0.99553355095268,1.881005840357816 -910,26.0,29.0,-0.6874559028276572,1.293971494797717 -910,27.0,5.0,-4.362844058012917,15.463571542897856 -910,27.0,7.0,-1.4439790613954469,4.540814658476248 -910,27.0,26.0,0.0,2.608731947574922 -910,27.0,27.0,5.806823119408364,-22.67145722159613 -910,28.0,26.0,-0.99553355095268,1.881005840357816 -910,28.0,28.0,1.9075867579849564,-3.604364401207048 -910,28.0,29.0,-0.9120532070322764,1.7233585608492326 -910,29.0,26.0,-0.6874559028276572,1.293971494797717 -910,29.0,28.0,-0.9120532070322764,1.7233585608492326 -910,29.0,29.0,1.5995091098599337,-3.0173300556469496 -911,0.0,0.0,6.765516048652632,-21.23160167089863 -911,0.0,1.0,-5.224646179885656,15.646726840803398 -911,0.0,2.0,-1.5408698687669766,5.631674830095234 -911,1.0,0.0,-5.224646179885656,15.646726840803398 -911,1.0,1.0,9.75228216552403,-30.648662892676068 -911,1.0,3.0,-1.7055303166990268,5.1973792282565086 -911,1.0,4.0,-1.1359607881738778,4.772479328281356 -911,1.0,5.0,-1.6861448807654689,5.116477495334806 -911,2.0,0.0,-1.5408698687669766,5.631674830095234 -911,2.0,2.0,9.736318911079088,-29.13794745915803 -911,2.0,3.0,-8.19544904231211,23.5308726290628 -911,3.0,1.0,-1.7055303166990268,5.1973792282565086 -911,3.0,2.0,-8.19544904231211,23.5308726290628 -911,3.0,3.0,16.314103089185693,-55.509410535254254 -911,3.0,5.0,-6.413123730174556,22.31120356548123 -911,3.0,11.0,0.0,4.191255364806866 -911,4.0,1.0,-1.1359607881738778,4.772479328281356 -911,4.0,4.0,4.089980824135861,-12.190647245055052 -911,4.0,6.0,-2.954020035961983,7.449267916773697 -911,5.0,1.0,-1.6861448807654689,5.116477495334806 -911,5.0,3.0,-6.413123730174556,22.31120356548123 -911,5.0,5.0,22.341631269034565,-82.8291478657789 -911,5.0,6.0,-3.590210423980992,11.02611441072814 -911,5.0,7.0,-6.289308176100628,22.0125786163522 -911,5.0,8.0,0.0,4.915840805411357 -911,5.0,9.0,0.0,1.8561002591115965 -911,5.0,27.0,-4.362844058012917,15.463571542897856 -911,6.0,4.0,-2.954020035961983,7.449267916773697 -911,6.0,5.0,-3.590210423980992,11.02611441072814 -911,6.0,6.0,6.544230459942975,-18.45668232750184 -911,7.0,5.0,-6.289308176100628,22.0125786163522 -911,7.0,7.0,7.733287237496075,-26.527493274828448 -911,7.0,27.0,-1.4439790613954469,4.540814658476248 -911,8.0,5.0,0.0,4.915840805411357 -911,8.0,8.0,0.0,-18.706293706293707 -911,8.0,9.0,0.0,9.090909090909092 -911,8.0,10.0,0.0,4.807692307692308 -911,9.0,5.0,0.0,1.8561002591115965 -911,9.0,8.0,0.0,9.090909090909092 -911,9.0,9.0,13.462042814524237,-41.3837606675224 -911,9.0,16.0,-3.956039125715353,10.317447719844054 -911,9.0,19.0,-1.7848303152666305,3.98535828943083 -911,9.0,20.0,-5.101853820159654,10.98071411292983 -911,9.0,21.0,-2.619319553382597,5.400770303329455 -911,10.0,8.0,0.0,4.807692307692308 -911,10.0,10.0,0.0,-4.807692307692308 -911,11.0,3.0,0.0,4.191255364806866 -911,11.0,11.0,6.573961583776156,-24.424167659260668 -911,11.0,12.0,0.0,7.142857142857143 -911,11.0,13.0,-1.5265676088395577,3.1734252729654173 -911,11.0,14.0,-3.0953961826564296,6.097275864326261 -911,11.0,15.0,-1.9519977922801688,4.104359379111847 -911,12.0,11.0,0.0,7.142857142857143 -911,12.0,12.0,0.0,-7.142857142857143 -911,13.0,11.0,-1.5265676088395577,3.1734252729654173 -911,13.0,13.0,4.01751987283902,-5.424299332335067 -911,13.0,14.0,-2.4909522639994623,2.250874059369649 -911,14.0,11.0,-3.0953961826564296,6.097275864326261 -911,14.0,13.0,-2.4909522639994623,2.250874059369649 -911,14.0,14.0,9.365498545964757,-16.01163373210796 -911,14.0,17.0,-1.8108011504072024,3.687418931630696 -911,14.0,22.0,-1.9683489489016612,3.976064876781356 -911,15.0,11.0,-1.9519977922801688,4.104359379111847 -911,15.0,15.0,3.271064728633931,-8.94513365126506 -911,15.0,16.0,-1.3190669363537617,4.8407742721532125 -911,16.0,9.0,-3.956039125715353,10.317447719844054 -911,16.0,15.0,-1.3190669363537617,4.8407742721532125 -911,16.0,16.0,5.275106062069114,-15.158221991997266 -911,17.0,14.0,-1.8108011504072024,3.687418931630696 -911,17.0,17.0,4.886487584415919,-9.906177730909668 -911,17.0,18.0,-3.0756864340087167,6.218758799278971 -911,18.0,17.0,-3.0756864340087167,6.218758799278971 -911,18.0,18.0,8.958039375185187,-17.98346468163191 -911,18.0,19.0,-5.88235294117647,11.76470588235294 -911,19.0,9.0,-1.7848303152666305,3.98535828943083 -911,19.0,18.0,-5.88235294117647,11.76470588235294 -911,19.0,19.0,7.6671832564431,-15.75006417178377 -911,20.0,9.0,-5.101853820159654,10.98071411292983 -911,20.0,20.0,21.876495189895888,-45.10843276170355 -911,20.0,21.0,-16.774641369736234,34.127718648773715 -911,21.0,9.0,-2.619319553382597,5.400770303329455 -911,21.0,20.0,-16.774641369736234,34.127718648773715 -911,21.0,21.0,21.93449907537439,-43.48289181517921 -911,21.0,23.0,-2.5405381522555563,3.95440286307604 -911,22.0,14.0,-1.9683489489016612,3.976064876781356 -911,22.0,22.0,3.429754555384988,-6.965303617315433 -911,22.0,23.0,-1.4614056064833263,2.989238740534077 -911,23.0,21.0,-2.5405381522555563,3.95440286307604 -911,23.0,22.0,-1.4614056064833263,2.989238740534077 -911,23.0,23.0,5.311836702613133,-9.188263657315172 -911,23.0,24.0,-1.3098929438742493,2.287622053705056 -911,24.0,23.0,-1.3098929438742493,2.287622053705056 -911,24.0,24.0,4.495715080321987,-7.864978761969621 -911,24.0,25.0,-1.2165301194494855,1.8171440463475024 -911,24.0,26.0,-1.9692920169982515,3.760212661917064 -911,25.0,24.0,-1.2165301194494855,1.8171440463475024 -911,25.0,25.0,1.2165301194494855,-1.8171440463475024 -911,26.0,24.0,-1.9692920169982515,3.760212661917064 -911,26.0,26.0,3.652281470778589,-9.46044252232512 -911,26.0,27.0,0.0,2.608731947574922 -911,26.0,28.0,-0.99553355095268,1.881005840357816 -911,26.0,29.0,-0.6874559028276572,1.293971494797717 -911,27.0,5.0,-4.362844058012917,15.463571542897856 -911,27.0,7.0,-1.4439790613954469,4.540814658476248 -911,27.0,26.0,0.0,2.608731947574922 -911,27.0,27.0,5.806823119408364,-22.67145722159613 -911,28.0,26.0,-0.99553355095268,1.881005840357816 -911,28.0,28.0,1.9075867579849564,-3.604364401207048 -911,28.0,29.0,-0.9120532070322764,1.7233585608492326 -911,29.0,26.0,-0.6874559028276572,1.293971494797717 -911,29.0,28.0,-0.9120532070322764,1.7233585608492326 -911,29.0,29.0,1.5995091098599337,-3.0173300556469496 -912,0.0,0.0,6.765516048652632,-21.23160167089863 -912,0.0,1.0,-5.224646179885656,15.646726840803398 -912,0.0,2.0,-1.5408698687669766,5.631674830095234 -912,1.0,0.0,-5.224646179885656,15.646726840803398 -912,1.0,1.0,8.066137284758561,-25.55088539734126 -912,1.0,3.0,-1.7055303166990268,5.1973792282565086 -912,1.0,4.0,-1.1359607881738778,4.772479328281356 -912,2.0,0.0,-1.5408698687669766,5.631674830095234 -912,2.0,2.0,9.736318911079088,-29.13794745915803 -912,2.0,3.0,-8.19544904231211,23.5308726290628 -912,3.0,1.0,-1.7055303166990268,5.1973792282565086 -912,3.0,2.0,-8.19544904231211,23.5308726290628 -912,3.0,3.0,16.314103089185693,-55.509410535254254 -912,3.0,5.0,-6.413123730174556,22.31120356548123 -912,3.0,11.0,0.0,4.191255364806866 -912,4.0,1.0,-1.1359607881738778,4.772479328281356 -912,4.0,4.0,4.089980824135861,-12.190647245055052 -912,4.0,6.0,-2.954020035961983,7.449267916773697 -912,5.0,3.0,-6.413123730174556,22.31120356548123 -912,5.0,5.0,20.655486388269097,-75.81589022688208 -912,5.0,6.0,-3.590210423980992,11.02611441072814 -912,5.0,7.0,-6.289308176100628,22.0125786163522 -912,5.0,8.0,0.0,4.915840805411357 -912,5.0,27.0,-4.362844058012917,15.463571542897856 -912,6.0,4.0,-2.954020035961983,7.449267916773697 -912,6.0,5.0,-3.590210423980992,11.02611441072814 -912,6.0,6.0,6.544230459942975,-18.45668232750184 -912,7.0,5.0,-6.289308176100628,22.0125786163522 -912,7.0,7.0,7.733287237496075,-26.527493274828448 -912,7.0,27.0,-1.4439790613954469,4.540814658476248 -912,8.0,5.0,0.0,4.915840805411357 -912,8.0,8.0,0.0,-9.615384615384617 -912,8.0,10.0,0.0,4.807692307692308 -912,9.0,9.0,13.462042814524237,-30.494290425534167 -912,9.0,16.0,-3.956039125715353,10.317447719844054 -912,9.0,19.0,-1.7848303152666305,3.98535828943083 -912,9.0,20.0,-5.101853820159654,10.98071411292983 -912,9.0,21.0,-2.619319553382597,5.400770303329455 -912,10.0,8.0,0.0,4.807692307692308 -912,10.0,10.0,0.0,-4.807692307692308 -912,11.0,3.0,0.0,4.191255364806866 -912,11.0,11.0,6.573961583776156,-24.424167659260668 -912,11.0,12.0,0.0,7.142857142857143 -912,11.0,13.0,-1.5265676088395577,3.1734252729654173 -912,11.0,14.0,-3.0953961826564296,6.097275864326261 -912,11.0,15.0,-1.9519977922801688,4.104359379111847 -912,12.0,11.0,0.0,7.142857142857143 -912,12.0,12.0,0.0,-7.142857142857143 -912,13.0,11.0,-1.5265676088395577,3.1734252729654173 -912,13.0,13.0,4.01751987283902,-5.424299332335067 -912,13.0,14.0,-2.4909522639994623,2.250874059369649 -912,14.0,11.0,-3.0953961826564296,6.097275864326261 -912,14.0,13.0,-2.4909522639994623,2.250874059369649 -912,14.0,14.0,9.365498545964757,-16.01163373210796 -912,14.0,17.0,-1.8108011504072024,3.687418931630696 -912,14.0,22.0,-1.9683489489016612,3.976064876781356 -912,15.0,11.0,-1.9519977922801688,4.104359379111847 -912,15.0,15.0,3.271064728633931,-8.94513365126506 -912,15.0,16.0,-1.3190669363537617,4.8407742721532125 -912,16.0,9.0,-3.956039125715353,10.317447719844054 -912,16.0,15.0,-1.3190669363537617,4.8407742721532125 -912,16.0,16.0,5.275106062069114,-15.158221991997266 -912,17.0,14.0,-1.8108011504072024,3.687418931630696 -912,17.0,17.0,4.886487584415919,-9.906177730909668 -912,17.0,18.0,-3.0756864340087167,6.218758799278971 -912,18.0,17.0,-3.0756864340087167,6.218758799278971 -912,18.0,18.0,8.958039375185187,-17.98346468163191 -912,18.0,19.0,-5.88235294117647,11.76470588235294 -912,19.0,9.0,-1.7848303152666305,3.98535828943083 -912,19.0,18.0,-5.88235294117647,11.76470588235294 -912,19.0,19.0,7.6671832564431,-15.75006417178377 -912,20.0,9.0,-5.101853820159654,10.98071411292983 -912,20.0,20.0,21.876495189895888,-45.10843276170355 -912,20.0,21.0,-16.774641369736234,34.127718648773715 -912,21.0,9.0,-2.619319553382597,5.400770303329455 -912,21.0,20.0,-16.774641369736234,34.127718648773715 -912,21.0,21.0,21.93449907537439,-43.48289181517921 -912,21.0,23.0,-2.5405381522555563,3.95440286307604 -912,22.0,14.0,-1.9683489489016612,3.976064876781356 -912,22.0,22.0,3.429754555384988,-6.965303617315433 -912,22.0,23.0,-1.4614056064833263,2.989238740534077 -912,23.0,21.0,-2.5405381522555563,3.95440286307604 -912,23.0,22.0,-1.4614056064833263,2.989238740534077 -912,23.0,23.0,4.001943758738883,-6.900641603610116 -912,24.0,24.0,3.185822136447737,-5.577356708264566 -912,24.0,25.0,-1.2165301194494855,1.8171440463475024 -912,24.0,26.0,-1.9692920169982515,3.760212661917064 -912,25.0,24.0,-1.2165301194494855,1.8171440463475024 -912,25.0,25.0,1.2165301194494855,-1.8171440463475024 -912,26.0,24.0,-1.9692920169982515,3.760212661917064 -912,26.0,26.0,3.652281470778589,-9.46044252232512 -912,26.0,27.0,0.0,2.608731947574922 -912,26.0,28.0,-0.99553355095268,1.881005840357816 -912,26.0,29.0,-0.6874559028276572,1.293971494797717 -912,27.0,5.0,-4.362844058012917,15.463571542897856 -912,27.0,7.0,-1.4439790613954469,4.540814658476248 -912,27.0,26.0,0.0,2.608731947574922 -912,27.0,27.0,5.806823119408364,-22.67145722159613 -912,28.0,26.0,-0.99553355095268,1.881005840357816 -912,28.0,28.0,1.9075867579849564,-3.604364401207048 -912,28.0,29.0,-0.9120532070322764,1.7233585608492326 -912,29.0,26.0,-0.6874559028276572,1.293971494797717 -912,29.0,28.0,-0.9120532070322764,1.7233585608492326 -912,29.0,29.0,1.5995091098599337,-3.0173300556469496 -913,0.0,0.0,6.765516048652632,-21.23160167089863 -913,0.0,1.0,-5.224646179885656,15.646726840803398 -913,0.0,2.0,-1.5408698687669766,5.631674830095234 -913,1.0,0.0,-5.224646179885656,15.646726840803398 -913,1.0,1.0,9.75228216552403,-30.648662892676068 -913,1.0,3.0,-1.7055303166990268,5.1973792282565086 -913,1.0,4.0,-1.1359607881738778,4.772479328281356 -913,1.0,5.0,-1.6861448807654689,5.116477495334806 -913,2.0,0.0,-1.5408698687669766,5.631674830095234 -913,2.0,2.0,9.736318911079088,-29.13794745915803 -913,2.0,3.0,-8.19544904231211,23.5308726290628 -913,3.0,1.0,-1.7055303166990268,5.1973792282565086 -913,3.0,2.0,-8.19544904231211,23.5308726290628 -913,3.0,3.0,16.314103089185693,-55.509410535254254 -913,3.0,5.0,-6.413123730174556,22.31120356548123 -913,3.0,11.0,0.0,4.191255364806866 -913,4.0,1.0,-1.1359607881738778,4.772479328281356 -913,4.0,4.0,4.089980824135861,-12.190647245055052 -913,4.0,6.0,-2.954020035961983,7.449267916773697 -913,5.0,1.0,-1.6861448807654689,5.116477495334806 -913,5.0,3.0,-6.413123730174556,22.31120356548123 -913,5.0,5.0,16.052323092933932,-58.905589105864685 -913,5.0,6.0,-3.590210423980992,11.02611441072814 -913,5.0,8.0,0.0,4.915840805411357 -913,5.0,27.0,-4.362844058012917,15.463571542897856 -913,6.0,4.0,-2.954020035961983,7.449267916773697 -913,6.0,5.0,-3.590210423980992,11.02611441072814 -913,6.0,6.0,6.544230459942975,-18.45668232750184 -913,7.0,7.0,1.4439790613954469,-4.519414658476248 -913,7.0,27.0,-1.4439790613954469,4.540814658476248 -913,8.0,5.0,0.0,4.915840805411357 -913,8.0,8.0,0.0,-18.706293706293707 -913,8.0,9.0,0.0,9.090909090909092 -913,8.0,10.0,0.0,4.807692307692308 -913,9.0,8.0,0.0,9.090909090909092 -913,9.0,9.0,13.462042814524237,-39.58519951644326 -913,9.0,16.0,-3.956039125715353,10.317447719844054 -913,9.0,19.0,-1.7848303152666305,3.98535828943083 -913,9.0,20.0,-5.101853820159654,10.98071411292983 -913,9.0,21.0,-2.619319553382597,5.400770303329455 -913,10.0,8.0,0.0,4.807692307692308 -913,10.0,10.0,0.0,-4.807692307692308 -913,11.0,3.0,0.0,4.191255364806866 -913,11.0,11.0,3.478565401119727,-18.326891794934408 -913,11.0,12.0,0.0,7.142857142857143 -913,11.0,13.0,-1.5265676088395577,3.1734252729654173 -913,11.0,15.0,-1.9519977922801688,4.104359379111847 -913,12.0,11.0,0.0,7.142857142857143 -913,12.0,12.0,0.0,-7.142857142857143 -913,13.0,11.0,-1.5265676088395577,3.1734252729654173 -913,13.0,13.0,4.01751987283902,-5.424299332335067 -913,13.0,14.0,-2.4909522639994623,2.250874059369649 -913,14.0,13.0,-2.4909522639994623,2.250874059369649 -913,14.0,14.0,6.270102363308326,-9.9143578677817 -913,14.0,17.0,-1.8108011504072024,3.687418931630696 -913,14.0,22.0,-1.9683489489016612,3.976064876781356 -913,15.0,11.0,-1.9519977922801688,4.104359379111847 -913,15.0,15.0,3.271064728633931,-8.94513365126506 -913,15.0,16.0,-1.3190669363537617,4.8407742721532125 -913,16.0,9.0,-3.956039125715353,10.317447719844054 -913,16.0,15.0,-1.3190669363537617,4.8407742721532125 -913,16.0,16.0,5.275106062069114,-15.158221991997266 -913,17.0,14.0,-1.8108011504072024,3.687418931630696 -913,17.0,17.0,4.886487584415919,-9.906177730909668 -913,17.0,18.0,-3.0756864340087167,6.218758799278971 -913,18.0,17.0,-3.0756864340087167,6.218758799278971 -913,18.0,18.0,3.0756864340087167,-6.218758799278971 -913,19.0,9.0,-1.7848303152666305,3.98535828943083 -913,19.0,19.0,1.7848303152666305,-3.98535828943083 -913,20.0,9.0,-5.101853820159654,10.98071411292983 -913,20.0,20.0,21.876495189895888,-45.10843276170355 -913,20.0,21.0,-16.774641369736234,34.127718648773715 -913,21.0,9.0,-2.619319553382597,5.400770303329455 -913,21.0,20.0,-16.774641369736234,34.127718648773715 -913,21.0,21.0,21.93449907537439,-43.48289181517921 -913,21.0,23.0,-2.5405381522555563,3.95440286307604 -913,22.0,14.0,-1.9683489489016612,3.976064876781356 -913,22.0,22.0,3.429754555384988,-6.965303617315433 -913,22.0,23.0,-1.4614056064833263,2.989238740534077 -913,23.0,21.0,-2.5405381522555563,3.95440286307604 -913,23.0,22.0,-1.4614056064833263,2.989238740534077 -913,23.0,23.0,5.311836702613133,-9.188263657315172 -913,23.0,24.0,-1.3098929438742493,2.287622053705056 -913,24.0,23.0,-1.3098929438742493,2.287622053705056 -913,24.0,24.0,4.495715080321987,-7.864978761969621 -913,24.0,25.0,-1.2165301194494855,1.8171440463475024 -913,24.0,26.0,-1.9692920169982515,3.760212661917064 -913,25.0,24.0,-1.2165301194494855,1.8171440463475024 -913,25.0,25.0,1.2165301194494855,-1.8171440463475024 -913,26.0,24.0,-1.9692920169982515,3.760212661917064 -913,26.0,26.0,3.652281470778589,-9.46044252232512 -913,26.0,27.0,0.0,2.608731947574922 -913,26.0,28.0,-0.99553355095268,1.881005840357816 -913,26.0,29.0,-0.6874559028276572,1.293971494797717 -913,27.0,5.0,-4.362844058012917,15.463571542897856 -913,27.0,7.0,-1.4439790613954469,4.540814658476248 -913,27.0,26.0,0.0,2.608731947574922 -913,27.0,27.0,5.806823119408364,-22.67145722159613 -913,28.0,26.0,-0.99553355095268,1.881005840357816 -913,28.0,28.0,1.9075867579849564,-3.604364401207048 -913,28.0,29.0,-0.9120532070322764,1.7233585608492326 -913,29.0,26.0,-0.6874559028276572,1.293971494797717 -913,29.0,28.0,-0.9120532070322764,1.7233585608492326 -913,29.0,29.0,1.5995091098599337,-3.0173300556469496 -914,0.0,0.0,1.5408698687669766,-5.611274830095233 -914,0.0,2.0,-1.5408698687669766,5.631674830095234 -914,1.0,1.0,4.527635985638374,-15.028336051872673 -914,1.0,3.0,-1.7055303166990268,5.1973792282565086 -914,1.0,4.0,-1.1359607881738778,4.772479328281356 -914,1.0,5.0,-1.6861448807654689,5.116477495334806 -914,2.0,0.0,-1.5408698687669766,5.631674830095234 -914,2.0,2.0,9.736318911079088,-29.13794745915803 -914,2.0,3.0,-8.19544904231211,23.5308726290628 -914,3.0,1.0,-1.7055303166990268,5.1973792282565086 -914,3.0,2.0,-8.19544904231211,23.5308726290628 -914,3.0,3.0,16.314103089185693,-55.509410535254254 -914,3.0,5.0,-6.413123730174556,22.31120356548123 -914,3.0,11.0,0.0,4.191255364806866 -914,4.0,1.0,-1.1359607881738778,4.772479328281356 -914,4.0,4.0,4.089980824135861,-12.190647245055052 -914,4.0,6.0,-2.954020035961983,7.449267916773697 -914,5.0,1.0,-1.6861448807654689,5.116477495334806 -914,5.0,3.0,-6.413123730174556,22.31120356548123 -914,5.0,5.0,22.341631269034565,-77.80272577435625 -914,5.0,6.0,-3.590210423980992,11.02611441072814 -914,5.0,7.0,-6.289308176100628,22.0125786163522 -914,5.0,9.0,0.0,1.8561002591115965 -914,5.0,27.0,-4.362844058012917,15.463571542897856 -914,6.0,4.0,-2.954020035961983,7.449267916773697 -914,6.0,5.0,-3.590210423980992,11.02611441072814 -914,6.0,6.0,6.544230459942975,-18.45668232750184 -914,7.0,5.0,-6.289308176100628,22.0125786163522 -914,7.0,7.0,7.733287237496075,-26.527493274828448 -914,7.0,27.0,-1.4439790613954469,4.540814658476248 -914,8.0,8.0,0.0,-13.8986013986014 -914,8.0,9.0,0.0,9.090909090909092 -914,8.0,10.0,0.0,4.807692307692308 -914,9.0,5.0,0.0,1.8561002591115965 -914,9.0,8.0,0.0,9.090909090909092 -914,9.0,9.0,8.36018899436458,-30.40304655459257 -914,9.0,16.0,-3.956039125715353,10.317447719844054 -914,9.0,19.0,-1.7848303152666305,3.98535828943083 -914,9.0,21.0,-2.619319553382597,5.400770303329455 -914,10.0,8.0,0.0,4.807692307692308 -914,10.0,10.0,0.0,-4.807692307692308 -914,11.0,3.0,0.0,4.191255364806866 -914,11.0,11.0,3.478565401119727,-18.326891794934408 -914,11.0,12.0,0.0,7.142857142857143 -914,11.0,13.0,-1.5265676088395577,3.1734252729654173 -914,11.0,15.0,-1.9519977922801688,4.104359379111847 -914,12.0,11.0,0.0,7.142857142857143 -914,12.0,12.0,0.0,-7.142857142857143 -914,13.0,11.0,-1.5265676088395577,3.1734252729654173 -914,13.0,13.0,4.01751987283902,-5.424299332335067 -914,13.0,14.0,-2.4909522639994623,2.250874059369649 -914,14.0,13.0,-2.4909522639994623,2.250874059369649 -914,14.0,14.0,6.270102363308326,-9.9143578677817 -914,14.0,17.0,-1.8108011504072024,3.687418931630696 -914,14.0,22.0,-1.9683489489016612,3.976064876781356 -914,15.0,11.0,-1.9519977922801688,4.104359379111847 -914,15.0,15.0,3.271064728633931,-8.94513365126506 -914,15.0,16.0,-1.3190669363537617,4.8407742721532125 -914,16.0,9.0,-3.956039125715353,10.317447719844054 -914,16.0,15.0,-1.3190669363537617,4.8407742721532125 -914,16.0,16.0,5.275106062069114,-15.158221991997266 -914,17.0,14.0,-1.8108011504072024,3.687418931630696 -914,17.0,17.0,4.886487584415919,-9.906177730909668 -914,17.0,18.0,-3.0756864340087167,6.218758799278971 -914,18.0,17.0,-3.0756864340087167,6.218758799278971 -914,18.0,18.0,8.958039375185187,-17.98346468163191 -914,18.0,19.0,-5.88235294117647,11.76470588235294 -914,19.0,9.0,-1.7848303152666305,3.98535828943083 -914,19.0,18.0,-5.88235294117647,11.76470588235294 -914,19.0,19.0,7.6671832564431,-15.75006417178377 -914,20.0,20.0,16.774641369736234,-34.127718648773715 -914,20.0,21.0,-16.774641369736234,34.127718648773715 -914,21.0,9.0,-2.619319553382597,5.400770303329455 -914,21.0,20.0,-16.774641369736234,34.127718648773715 -914,21.0,21.0,21.93449907537439,-43.48289181517921 -914,21.0,23.0,-2.5405381522555563,3.95440286307604 -914,22.0,14.0,-1.9683489489016612,3.976064876781356 -914,22.0,22.0,3.429754555384988,-6.965303617315433 -914,22.0,23.0,-1.4614056064833263,2.989238740534077 -914,23.0,21.0,-2.5405381522555563,3.95440286307604 -914,23.0,22.0,-1.4614056064833263,2.989238740534077 -914,23.0,23.0,5.311836702613133,-9.188263657315172 -914,23.0,24.0,-1.3098929438742493,2.287622053705056 -914,24.0,23.0,-1.3098929438742493,2.287622053705056 -914,24.0,24.0,4.495715080321987,-7.864978761969621 -914,24.0,25.0,-1.2165301194494855,1.8171440463475024 -914,24.0,26.0,-1.9692920169982515,3.760212661917064 -914,25.0,24.0,-1.2165301194494855,1.8171440463475024 -914,25.0,25.0,1.2165301194494855,-1.8171440463475024 -914,26.0,24.0,-1.9692920169982515,3.760212661917064 -914,26.0,26.0,3.652281470778589,-9.46044252232512 -914,26.0,27.0,0.0,2.608731947574922 -914,26.0,28.0,-0.99553355095268,1.881005840357816 -914,26.0,29.0,-0.6874559028276572,1.293971494797717 -914,27.0,5.0,-4.362844058012917,15.463571542897856 -914,27.0,7.0,-1.4439790613954469,4.540814658476248 -914,27.0,26.0,0.0,2.608731947574922 -914,27.0,27.0,5.806823119408364,-22.67145722159613 -914,28.0,26.0,-0.99553355095268,1.881005840357816 -914,28.0,28.0,1.9075867579849564,-3.604364401207048 -914,28.0,29.0,-0.9120532070322764,1.7233585608492326 -914,29.0,26.0,-0.6874559028276572,1.293971494797717 -914,29.0,28.0,-0.9120532070322764,1.7233585608492326 -914,29.0,29.0,1.5995091098599337,-3.0173300556469496 -915,0.0,0.0,5.224646179885656,-15.620326840803395 -915,0.0,1.0,-5.224646179885656,15.646726840803398 -915,1.0,0.0,-5.224646179885656,15.646726840803398 -915,1.0,1.0,8.066137284758561,-25.55088539734126 -915,1.0,3.0,-1.7055303166990268,5.1973792282565086 -915,1.0,4.0,-1.1359607881738778,4.772479328281356 -915,2.0,2.0,8.19544904231211,-23.5266726290628 -915,2.0,3.0,-8.19544904231211,23.5308726290628 -915,3.0,1.0,-1.7055303166990268,5.1973792282565086 -915,3.0,2.0,-8.19544904231211,23.5308726290628 -915,3.0,3.0,16.314103089185693,-55.509410535254254 -915,3.0,5.0,-6.413123730174556,22.31120356548123 -915,3.0,11.0,0.0,4.191255364806866 -915,4.0,1.0,-1.1359607881738778,4.772479328281356 -915,4.0,4.0,4.089980824135861,-12.190647245055052 -915,4.0,6.0,-2.954020035961983,7.449267916773697 -915,5.0,3.0,-6.413123730174556,22.31120356548123 -915,5.0,5.0,14.366178212168466,-55.723291754091896 -915,5.0,6.0,-3.590210423980992,11.02611441072814 -915,5.0,8.0,0.0,4.915840805411357 -915,5.0,9.0,0.0,1.8561002591115965 -915,5.0,27.0,-4.362844058012917,15.463571542897856 -915,6.0,4.0,-2.954020035961983,7.449267916773697 -915,6.0,5.0,-3.590210423980992,11.02611441072814 -915,6.0,6.0,6.544230459942975,-18.45668232750184 -915,7.0,7.0,1.4439790613954469,-4.519414658476248 -915,7.0,27.0,-1.4439790613954469,4.540814658476248 -915,8.0,5.0,0.0,4.915840805411357 -915,8.0,8.0,0.0,-18.706293706293707 -915,8.0,9.0,0.0,9.090909090909092 -915,8.0,10.0,0.0,4.807692307692308 -915,9.0,5.0,0.0,1.8561002591115965 -915,9.0,8.0,0.0,9.090909090909092 -915,9.0,9.0,13.462042814524237,-41.3837606675224 -915,9.0,16.0,-3.956039125715353,10.317447719844054 -915,9.0,19.0,-1.7848303152666305,3.98535828943083 -915,9.0,20.0,-5.101853820159654,10.98071411292983 -915,9.0,21.0,-2.619319553382597,5.400770303329455 -915,10.0,8.0,0.0,4.807692307692308 -915,10.0,10.0,0.0,-4.807692307692308 -915,11.0,3.0,0.0,4.191255364806866 -915,11.0,11.0,6.573961583776156,-24.424167659260668 -915,11.0,12.0,0.0,7.142857142857143 -915,11.0,13.0,-1.5265676088395577,3.1734252729654173 -915,11.0,14.0,-3.0953961826564296,6.097275864326261 -915,11.0,15.0,-1.9519977922801688,4.104359379111847 -915,12.0,11.0,0.0,7.142857142857143 -915,12.0,12.0,0.0,-7.142857142857143 -915,13.0,11.0,-1.5265676088395577,3.1734252729654173 -915,13.0,13.0,4.01751987283902,-5.424299332335067 -915,13.0,14.0,-2.4909522639994623,2.250874059369649 -915,14.0,11.0,-3.0953961826564296,6.097275864326261 -915,14.0,13.0,-2.4909522639994623,2.250874059369649 -915,14.0,14.0,9.365498545964757,-16.01163373210796 -915,14.0,17.0,-1.8108011504072024,3.687418931630696 -915,14.0,22.0,-1.9683489489016612,3.976064876781356 -915,15.0,11.0,-1.9519977922801688,4.104359379111847 -915,15.0,15.0,3.271064728633931,-8.94513365126506 -915,15.0,16.0,-1.3190669363537617,4.8407742721532125 -915,16.0,9.0,-3.956039125715353,10.317447719844054 -915,16.0,15.0,-1.3190669363537617,4.8407742721532125 -915,16.0,16.0,5.275106062069114,-15.158221991997266 -915,17.0,14.0,-1.8108011504072024,3.687418931630696 -915,17.0,17.0,1.8108011504072024,-3.687418931630696 -915,18.0,18.0,5.88235294117647,-11.76470588235294 -915,18.0,19.0,-5.88235294117647,11.76470588235294 -915,19.0,9.0,-1.7848303152666305,3.98535828943083 -915,19.0,18.0,-5.88235294117647,11.76470588235294 -915,19.0,19.0,7.6671832564431,-15.75006417178377 -915,20.0,9.0,-5.101853820159654,10.98071411292983 -915,20.0,20.0,21.876495189895888,-45.10843276170355 -915,20.0,21.0,-16.774641369736234,34.127718648773715 -915,21.0,9.0,-2.619319553382597,5.400770303329455 -915,21.0,20.0,-16.774641369736234,34.127718648773715 -915,21.0,21.0,21.93449907537439,-43.48289181517921 -915,21.0,23.0,-2.5405381522555563,3.95440286307604 -915,22.0,14.0,-1.9683489489016612,3.976064876781356 -915,22.0,22.0,3.429754555384988,-6.965303617315433 -915,22.0,23.0,-1.4614056064833263,2.989238740534077 -915,23.0,21.0,-2.5405381522555563,3.95440286307604 -915,23.0,22.0,-1.4614056064833263,2.989238740534077 -915,23.0,23.0,4.001943758738883,-6.900641603610116 -915,24.0,24.0,3.185822136447737,-5.577356708264566 -915,24.0,25.0,-1.2165301194494855,1.8171440463475024 -915,24.0,26.0,-1.9692920169982515,3.760212661917064 -915,25.0,24.0,-1.2165301194494855,1.8171440463475024 -915,25.0,25.0,1.2165301194494855,-1.8171440463475024 -915,26.0,24.0,-1.9692920169982515,3.760212661917064 -915,26.0,26.0,3.652281470778589,-9.46044252232512 -915,26.0,27.0,0.0,2.608731947574922 -915,26.0,28.0,-0.99553355095268,1.881005840357816 -915,26.0,29.0,-0.6874559028276572,1.293971494797717 -915,27.0,5.0,-4.362844058012917,15.463571542897856 -915,27.0,7.0,-1.4439790613954469,4.540814658476248 -915,27.0,26.0,0.0,2.608731947574922 -915,27.0,27.0,5.806823119408364,-22.67145722159613 -915,28.0,26.0,-0.99553355095268,1.881005840357816 -915,28.0,28.0,1.9075867579849564,-3.604364401207048 -915,28.0,29.0,-0.9120532070322764,1.7233585608492326 -915,29.0,26.0,-0.6874559028276572,1.293971494797717 -915,29.0,28.0,-0.9120532070322764,1.7233585608492326 -915,29.0,29.0,1.5995091098599337,-3.0173300556469496 -916,0.0,0.0,6.765516048652632,-21.23160167089863 -916,0.0,1.0,-5.224646179885656,15.646726840803398 -916,0.0,2.0,-1.5408698687669766,5.631674830095234 -916,1.0,0.0,-5.224646179885656,15.646726840803398 -916,1.0,1.0,9.75228216552403,-30.648662892676068 -916,1.0,3.0,-1.7055303166990268,5.1973792282565086 -916,1.0,4.0,-1.1359607881738778,4.772479328281356 -916,1.0,5.0,-1.6861448807654689,5.116477495334806 -916,2.0,0.0,-1.5408698687669766,5.631674830095234 -916,2.0,2.0,9.736318911079088,-29.13794745915803 -916,2.0,3.0,-8.19544904231211,23.5308726290628 -916,3.0,1.0,-1.7055303166990268,5.1973792282565086 -916,3.0,2.0,-8.19544904231211,23.5308726290628 -916,3.0,3.0,16.314103089185693,-55.509410535254254 -916,3.0,5.0,-6.413123730174556,22.31120356548123 -916,3.0,11.0,0.0,4.191255364806866 -916,4.0,1.0,-1.1359607881738778,4.772479328281356 -916,4.0,4.0,4.089980824135861,-12.190647245055052 -916,4.0,6.0,-2.954020035961983,7.449267916773697 -916,5.0,1.0,-1.6861448807654689,5.116477495334806 -916,5.0,3.0,-6.413123730174556,22.31120356548123 -916,5.0,5.0,22.341631269034565,-82.8291478657789 -916,5.0,6.0,-3.590210423980992,11.02611441072814 -916,5.0,7.0,-6.289308176100628,22.0125786163522 -916,5.0,8.0,0.0,4.915840805411357 -916,5.0,9.0,0.0,1.8561002591115965 -916,5.0,27.0,-4.362844058012917,15.463571542897856 -916,6.0,4.0,-2.954020035961983,7.449267916773697 -916,6.0,5.0,-3.590210423980992,11.02611441072814 -916,6.0,6.0,6.544230459942975,-18.45668232750184 -916,7.0,5.0,-6.289308176100628,22.0125786163522 -916,7.0,7.0,7.733287237496075,-26.527493274828448 -916,7.0,27.0,-1.4439790613954469,4.540814658476248 -916,8.0,5.0,0.0,4.915840805411357 -916,8.0,8.0,0.0,-18.706293706293707 -916,8.0,9.0,0.0,9.090909090909092 -916,8.0,10.0,0.0,4.807692307692308 -916,9.0,5.0,0.0,1.8561002591115965 -916,9.0,8.0,0.0,9.090909090909092 -916,9.0,9.0,13.462042814524237,-41.3837606675224 -916,9.0,16.0,-3.956039125715353,10.317447719844054 -916,9.0,19.0,-1.7848303152666305,3.98535828943083 -916,9.0,20.0,-5.101853820159654,10.98071411292983 -916,9.0,21.0,-2.619319553382597,5.400770303329455 -916,10.0,8.0,0.0,4.807692307692308 -916,10.0,10.0,0.0,-4.807692307692308 -916,11.0,3.0,0.0,4.191255364806866 -916,11.0,11.0,6.573961583776156,-24.424167659260668 -916,11.0,12.0,0.0,7.142857142857143 -916,11.0,13.0,-1.5265676088395577,3.1734252729654173 -916,11.0,14.0,-3.0953961826564296,6.097275864326261 -916,11.0,15.0,-1.9519977922801688,4.104359379111847 -916,12.0,11.0,0.0,7.142857142857143 -916,12.0,12.0,0.0,-7.142857142857143 -916,13.0,11.0,-1.5265676088395577,3.1734252729654173 -916,13.0,13.0,4.01751987283902,-5.424299332335067 -916,13.0,14.0,-2.4909522639994623,2.250874059369649 -916,14.0,11.0,-3.0953961826564296,6.097275864326261 -916,14.0,13.0,-2.4909522639994623,2.250874059369649 -916,14.0,14.0,9.365498545964757,-16.01163373210796 -916,14.0,17.0,-1.8108011504072024,3.687418931630696 -916,14.0,22.0,-1.9683489489016612,3.976064876781356 -916,15.0,11.0,-1.9519977922801688,4.104359379111847 -916,15.0,15.0,3.271064728633931,-8.94513365126506 -916,15.0,16.0,-1.3190669363537617,4.8407742721532125 -916,16.0,9.0,-3.956039125715353,10.317447719844054 -916,16.0,15.0,-1.3190669363537617,4.8407742721532125 -916,16.0,16.0,5.275106062069114,-15.158221991997266 -916,17.0,14.0,-1.8108011504072024,3.687418931630696 -916,17.0,17.0,4.886487584415919,-9.906177730909668 -916,17.0,18.0,-3.0756864340087167,6.218758799278971 -916,18.0,17.0,-3.0756864340087167,6.218758799278971 -916,18.0,18.0,8.958039375185187,-17.98346468163191 -916,18.0,19.0,-5.88235294117647,11.76470588235294 -916,19.0,9.0,-1.7848303152666305,3.98535828943083 -916,19.0,18.0,-5.88235294117647,11.76470588235294 -916,19.0,19.0,7.6671832564431,-15.75006417178377 -916,20.0,9.0,-5.101853820159654,10.98071411292983 -916,20.0,20.0,21.876495189895888,-45.10843276170355 -916,20.0,21.0,-16.774641369736234,34.127718648773715 -916,21.0,9.0,-2.619319553382597,5.400770303329455 -916,21.0,20.0,-16.774641369736234,34.127718648773715 -916,21.0,21.0,21.93449907537439,-43.48289181517921 -916,21.0,23.0,-2.5405381522555563,3.95440286307604 -916,22.0,14.0,-1.9683489489016612,3.976064876781356 -916,22.0,22.0,3.429754555384988,-6.965303617315433 -916,22.0,23.0,-1.4614056064833263,2.989238740534077 -916,23.0,21.0,-2.5405381522555563,3.95440286307604 -916,23.0,22.0,-1.4614056064833263,2.989238740534077 -916,23.0,23.0,5.311836702613133,-9.188263657315172 -916,23.0,24.0,-1.3098929438742493,2.287622053705056 -916,24.0,23.0,-1.3098929438742493,2.287622053705056 -916,24.0,24.0,4.495715080321987,-7.864978761969621 -916,24.0,25.0,-1.2165301194494855,1.8171440463475024 -916,24.0,26.0,-1.9692920169982515,3.760212661917064 -916,25.0,24.0,-1.2165301194494855,1.8171440463475024 -916,25.0,25.0,1.2165301194494855,-1.8171440463475024 -916,26.0,24.0,-1.9692920169982515,3.760212661917064 -916,26.0,26.0,3.652281470778589,-9.46044252232512 -916,26.0,27.0,0.0,2.608731947574922 -916,26.0,28.0,-0.99553355095268,1.881005840357816 -916,26.0,29.0,-0.6874559028276572,1.293971494797717 -916,27.0,5.0,-4.362844058012917,15.463571542897856 -916,27.0,7.0,-1.4439790613954469,4.540814658476248 -916,27.0,26.0,0.0,2.608731947574922 -916,27.0,27.0,5.806823119408364,-22.67145722159613 -916,28.0,26.0,-0.99553355095268,1.881005840357816 -916,28.0,28.0,1.9075867579849564,-3.604364401207048 -916,28.0,29.0,-0.9120532070322764,1.7233585608492326 -916,29.0,26.0,-0.6874559028276572,1.293971494797717 -916,29.0,28.0,-0.9120532070322764,1.7233585608492326 -916,29.0,29.0,1.5995091098599337,-3.0173300556469496 -917,0.0,0.0,6.765516048652632,-21.23160167089863 -917,0.0,1.0,-5.224646179885656,15.646726840803398 -917,0.0,2.0,-1.5408698687669766,5.631674830095234 -917,1.0,0.0,-5.224646179885656,15.646726840803398 -917,1.0,1.0,6.910791060651125,-20.718104336138204 -917,1.0,5.0,-1.6861448807654689,5.116477495334806 -917,2.0,0.0,-1.5408698687669766,5.631674830095234 -917,2.0,2.0,9.736318911079088,-29.13794745915803 -917,2.0,3.0,-8.19544904231211,23.5308726290628 -917,3.0,2.0,-8.19544904231211,23.5308726290628 -917,3.0,3.0,14.608572772486664,-45.83337619454403 -917,3.0,5.0,-6.413123730174556,22.31120356548123 -917,4.0,4.0,2.954020035961983,-7.439067916773697 -917,4.0,6.0,-2.954020035961983,7.449267916773697 -917,5.0,1.0,-1.6861448807654689,5.116477495334806 -917,5.0,3.0,-6.413123730174556,22.31120356548123 -917,5.0,5.0,22.341631269034565,-77.80272577435625 -917,5.0,6.0,-3.590210423980992,11.02611441072814 -917,5.0,7.0,-6.289308176100628,22.0125786163522 -917,5.0,9.0,0.0,1.8561002591115965 -917,5.0,27.0,-4.362844058012917,15.463571542897856 -917,6.0,4.0,-2.954020035961983,7.449267916773697 -917,6.0,5.0,-3.590210423980992,11.02611441072814 -917,6.0,6.0,6.544230459942975,-18.45668232750184 -917,7.0,5.0,-6.289308176100628,22.0125786163522 -917,7.0,7.0,7.733287237496075,-26.527493274828448 -917,7.0,27.0,-1.4439790613954469,4.540814658476248 -917,8.0,8.0,0.0,-13.8986013986014 -917,8.0,9.0,0.0,9.090909090909092 -917,8.0,10.0,0.0,4.807692307692308 -917,9.0,5.0,0.0,1.8561002591115965 -917,9.0,8.0,0.0,9.090909090909092 -917,9.0,9.0,10.842723261141638,-35.98299036419294 -917,9.0,16.0,-3.956039125715353,10.317447719844054 -917,9.0,19.0,-1.7848303152666305,3.98535828943083 -917,9.0,20.0,-5.101853820159654,10.98071411292983 -917,10.0,8.0,0.0,4.807692307692308 -917,10.0,10.0,0.0,-4.807692307692308 -917,11.0,11.0,6.573961583776156,-20.517917659260668 -917,11.0,12.0,0.0,7.142857142857143 -917,11.0,13.0,-1.5265676088395577,3.1734252729654173 -917,11.0,14.0,-3.0953961826564296,6.097275864326261 -917,11.0,15.0,-1.9519977922801688,4.104359379111847 -917,12.0,11.0,0.0,7.142857142857143 -917,12.0,12.0,0.0,-7.142857142857143 -917,13.0,11.0,-1.5265676088395577,3.1734252729654173 -917,13.0,13.0,4.01751987283902,-5.424299332335067 -917,13.0,14.0,-2.4909522639994623,2.250874059369649 -917,14.0,11.0,-3.0953961826564296,6.097275864326261 -917,14.0,13.0,-2.4909522639994623,2.250874059369649 -917,14.0,14.0,9.365498545964757,-16.01163373210796 -917,14.0,17.0,-1.8108011504072024,3.687418931630696 -917,14.0,22.0,-1.9683489489016612,3.976064876781356 -917,15.0,11.0,-1.9519977922801688,4.104359379111847 -917,15.0,15.0,3.271064728633931,-8.94513365126506 -917,15.0,16.0,-1.3190669363537617,4.8407742721532125 -917,16.0,9.0,-3.956039125715353,10.317447719844054 -917,16.0,15.0,-1.3190669363537617,4.8407742721532125 -917,16.0,16.0,5.275106062069114,-15.158221991997266 -917,17.0,14.0,-1.8108011504072024,3.687418931630696 -917,17.0,17.0,4.886487584415919,-9.906177730909668 -917,17.0,18.0,-3.0756864340087167,6.218758799278971 -917,18.0,17.0,-3.0756864340087167,6.218758799278971 -917,18.0,18.0,8.958039375185187,-17.98346468163191 -917,18.0,19.0,-5.88235294117647,11.76470588235294 -917,19.0,9.0,-1.7848303152666305,3.98535828943083 -917,19.0,18.0,-5.88235294117647,11.76470588235294 -917,19.0,19.0,7.6671832564431,-15.75006417178377 -917,20.0,9.0,-5.101853820159654,10.98071411292983 -917,20.0,20.0,21.876495189895888,-45.10843276170355 -917,20.0,21.0,-16.774641369736234,34.127718648773715 -917,21.0,20.0,-16.774641369736234,34.127718648773715 -917,21.0,21.0,19.31517952199179,-38.08212151184976 -917,21.0,23.0,-2.5405381522555563,3.95440286307604 -917,22.0,14.0,-1.9683489489016612,3.976064876781356 -917,22.0,22.0,3.429754555384988,-6.965303617315433 -917,22.0,23.0,-1.4614056064833263,2.989238740534077 -917,23.0,21.0,-2.5405381522555563,3.95440286307604 -917,23.0,22.0,-1.4614056064833263,2.989238740534077 -917,23.0,23.0,5.311836702613133,-9.188263657315172 -917,23.0,24.0,-1.3098929438742493,2.287622053705056 -917,24.0,23.0,-1.3098929438742493,2.287622053705056 -917,24.0,24.0,4.495715080321987,-7.864978761969621 -917,24.0,25.0,-1.2165301194494855,1.8171440463475024 -917,24.0,26.0,-1.9692920169982515,3.760212661917064 -917,25.0,24.0,-1.2165301194494855,1.8171440463475024 -917,25.0,25.0,1.2165301194494855,-1.8171440463475024 -917,26.0,24.0,-1.9692920169982515,3.760212661917064 -917,26.0,26.0,3.652281470778589,-9.46044252232512 -917,26.0,27.0,0.0,2.608731947574922 -917,26.0,28.0,-0.99553355095268,1.881005840357816 -917,26.0,29.0,-0.6874559028276572,1.293971494797717 -917,27.0,5.0,-4.362844058012917,15.463571542897856 -917,27.0,7.0,-1.4439790613954469,4.540814658476248 -917,27.0,26.0,0.0,2.608731947574922 -917,27.0,27.0,5.806823119408364,-22.67145722159613 -917,28.0,26.0,-0.99553355095268,1.881005840357816 -917,28.0,28.0,1.9075867579849564,-3.604364401207048 -917,28.0,29.0,-0.9120532070322764,1.7233585608492326 -917,29.0,26.0,-0.6874559028276572,1.293971494797717 -917,29.0,28.0,-0.9120532070322764,1.7233585608492326 -917,29.0,29.0,1.5995091098599337,-3.0173300556469496 -918,0.0,0.0,6.765516048652632,-21.23160167089863 -918,0.0,1.0,-5.224646179885656,15.646726840803398 -918,0.0,2.0,-1.5408698687669766,5.631674830095234 -918,1.0,0.0,-5.224646179885656,15.646726840803398 -918,1.0,1.0,9.75228216552403,-30.648662892676068 -918,1.0,3.0,-1.7055303166990268,5.1973792282565086 -918,1.0,4.0,-1.1359607881738778,4.772479328281356 -918,1.0,5.0,-1.6861448807654689,5.116477495334806 -918,2.0,0.0,-1.5408698687669766,5.631674830095234 -918,2.0,2.0,9.736318911079088,-29.13794745915803 -918,2.0,3.0,-8.19544904231211,23.5308726290628 -918,3.0,1.0,-1.7055303166990268,5.1973792282565086 -918,3.0,2.0,-8.19544904231211,23.5308726290628 -918,3.0,3.0,16.314103089185693,-55.509410535254254 -918,3.0,5.0,-6.413123730174556,22.31120356548123 -918,3.0,11.0,0.0,4.191255364806866 -918,4.0,1.0,-1.1359607881738778,4.772479328281356 -918,4.0,4.0,1.1359607881738778,-4.751579328281355 -918,5.0,1.0,-1.6861448807654689,5.116477495334806 -918,5.0,3.0,-6.413123730174556,22.31120356548123 -918,5.0,5.0,22.341631269034565,-82.8291478657789 -918,5.0,6.0,-3.590210423980992,11.02611441072814 -918,5.0,7.0,-6.289308176100628,22.0125786163522 -918,5.0,8.0,0.0,4.915840805411357 -918,5.0,9.0,0.0,1.8561002591115965 -918,5.0,27.0,-4.362844058012917,15.463571542897856 -918,6.0,5.0,-3.590210423980992,11.02611441072814 -918,6.0,6.0,3.590210423980992,-11.01761441072814 -918,7.0,5.0,-6.289308176100628,22.0125786163522 -918,7.0,7.0,7.733287237496075,-26.527493274828448 -918,7.0,27.0,-1.4439790613954469,4.540814658476248 -918,8.0,5.0,0.0,4.915840805411357 -918,8.0,8.0,0.0,-18.706293706293707 -918,8.0,9.0,0.0,9.090909090909092 -918,8.0,10.0,0.0,4.807692307692308 -918,9.0,5.0,0.0,1.8561002591115965 -918,9.0,8.0,0.0,9.090909090909092 -918,9.0,9.0,13.462042814524237,-41.3837606675224 -918,9.0,16.0,-3.956039125715353,10.317447719844054 -918,9.0,19.0,-1.7848303152666305,3.98535828943083 -918,9.0,20.0,-5.101853820159654,10.98071411292983 -918,9.0,21.0,-2.619319553382597,5.400770303329455 -918,10.0,8.0,0.0,4.807692307692308 -918,10.0,10.0,0.0,-4.807692307692308 -918,11.0,3.0,0.0,4.191255364806866 -918,11.0,11.0,4.621963791495987,-20.31980828014882 -918,11.0,12.0,0.0,7.142857142857143 -918,11.0,13.0,-1.5265676088395577,3.1734252729654173 -918,11.0,14.0,-3.0953961826564296,6.097275864326261 -918,12.0,11.0,0.0,7.142857142857143 -918,12.0,12.0,0.0,-7.142857142857143 -918,13.0,11.0,-1.5265676088395577,3.1734252729654173 -918,13.0,13.0,1.5265676088395577,-3.1734252729654173 -918,14.0,11.0,-3.0953961826564296,6.097275864326261 -918,14.0,14.0,4.906197333063632,-9.784694795956955 -918,14.0,17.0,-1.8108011504072024,3.687418931630696 -918,15.0,15.0,1.3190669363537617,-4.8407742721532125 -918,15.0,16.0,-1.3190669363537617,4.8407742721532125 -918,16.0,9.0,-3.956039125715353,10.317447719844054 -918,16.0,15.0,-1.3190669363537617,4.8407742721532125 -918,16.0,16.0,5.275106062069114,-15.158221991997266 -918,17.0,14.0,-1.8108011504072024,3.687418931630696 -918,17.0,17.0,4.886487584415919,-9.906177730909668 -918,17.0,18.0,-3.0756864340087167,6.218758799278971 -918,18.0,17.0,-3.0756864340087167,6.218758799278971 -918,18.0,18.0,8.958039375185187,-17.98346468163191 -918,18.0,19.0,-5.88235294117647,11.76470588235294 -918,19.0,9.0,-1.7848303152666305,3.98535828943083 -918,19.0,18.0,-5.88235294117647,11.76470588235294 -918,19.0,19.0,7.6671832564431,-15.75006417178377 -918,20.0,9.0,-5.101853820159654,10.98071411292983 -918,20.0,20.0,21.876495189895888,-45.10843276170355 -918,20.0,21.0,-16.774641369736234,34.127718648773715 -918,21.0,9.0,-2.619319553382597,5.400770303329455 -918,21.0,20.0,-16.774641369736234,34.127718648773715 -918,21.0,21.0,21.93449907537439,-43.48289181517921 -918,21.0,23.0,-2.5405381522555563,3.95440286307604 -918,22.0,22.0,1.4614056064833263,-2.989238740534077 -918,22.0,23.0,-1.4614056064833263,2.989238740534077 -918,23.0,21.0,-2.5405381522555563,3.95440286307604 -918,23.0,22.0,-1.4614056064833263,2.989238740534077 -918,23.0,23.0,5.311836702613133,-9.188263657315172 -918,23.0,24.0,-1.3098929438742493,2.287622053705056 -918,24.0,23.0,-1.3098929438742493,2.287622053705056 -918,24.0,24.0,4.495715080321987,-7.864978761969621 -918,24.0,25.0,-1.2165301194494855,1.8171440463475024 -918,24.0,26.0,-1.9692920169982515,3.760212661917064 -918,25.0,24.0,-1.2165301194494855,1.8171440463475024 -918,25.0,25.0,1.2165301194494855,-1.8171440463475024 -918,26.0,24.0,-1.9692920169982515,3.760212661917064 -918,26.0,26.0,3.652281470778589,-9.46044252232512 -918,26.0,27.0,0.0,2.608731947574922 -918,26.0,28.0,-0.99553355095268,1.881005840357816 -918,26.0,29.0,-0.6874559028276572,1.293971494797717 -918,27.0,5.0,-4.362844058012917,15.463571542897856 -918,27.0,7.0,-1.4439790613954469,4.540814658476248 -918,27.0,26.0,0.0,2.608731947574922 -918,27.0,27.0,5.806823119408364,-22.67145722159613 -918,28.0,26.0,-0.99553355095268,1.881005840357816 -918,28.0,28.0,0.99553355095268,-1.881005840357816 -918,29.0,26.0,-0.6874559028276572,1.293971494797717 -918,29.0,29.0,0.6874559028276572,-1.293971494797717 -919,0.0,0.0,6.765516048652632,-21.23160167089863 -919,0.0,1.0,-5.224646179885656,15.646726840803398 -919,0.0,2.0,-1.5408698687669766,5.631674830095234 -919,1.0,0.0,-5.224646179885656,15.646726840803398 -919,1.0,1.0,9.75228216552403,-30.648662892676068 -919,1.0,3.0,-1.7055303166990268,5.1973792282565086 -919,1.0,4.0,-1.1359607881738778,4.772479328281356 -919,1.0,5.0,-1.6861448807654689,5.116477495334806 -919,2.0,0.0,-1.5408698687669766,5.631674830095234 -919,2.0,2.0,9.736318911079088,-29.13794745915803 -919,2.0,3.0,-8.19544904231211,23.5308726290628 -919,3.0,1.0,-1.7055303166990268,5.1973792282565086 -919,3.0,2.0,-8.19544904231211,23.5308726290628 -919,3.0,3.0,16.314103089185693,-55.509410535254254 -919,3.0,5.0,-6.413123730174556,22.31120356548123 -919,3.0,11.0,0.0,4.191255364806866 -919,4.0,1.0,-1.1359607881738778,4.772479328281356 -919,4.0,4.0,4.089980824135861,-12.190647245055052 -919,4.0,6.0,-2.954020035961983,7.449267916773697 -919,5.0,1.0,-1.6861448807654689,5.116477495334806 -919,5.0,3.0,-6.413123730174556,22.31120356548123 -919,5.0,5.0,22.341631269034565,-82.8291478657789 -919,5.0,6.0,-3.590210423980992,11.02611441072814 -919,5.0,7.0,-6.289308176100628,22.0125786163522 -919,5.0,8.0,0.0,4.915840805411357 -919,5.0,9.0,0.0,1.8561002591115965 -919,5.0,27.0,-4.362844058012917,15.463571542897856 -919,6.0,4.0,-2.954020035961983,7.449267916773697 -919,6.0,5.0,-3.590210423980992,11.02611441072814 -919,6.0,6.0,6.544230459942975,-18.45668232750184 -919,7.0,5.0,-6.289308176100628,22.0125786163522 -919,7.0,7.0,7.733287237496075,-26.527493274828448 -919,7.0,27.0,-1.4439790613954469,4.540814658476248 -919,8.0,5.0,0.0,4.915840805411357 -919,8.0,8.0,0.0,-18.706293706293707 -919,8.0,9.0,0.0,9.090909090909092 -919,8.0,10.0,0.0,4.807692307692308 -919,9.0,5.0,0.0,1.8561002591115965 -919,9.0,8.0,0.0,9.090909090909092 -919,9.0,9.0,9.506003688808882,-31.06631294767834 -919,9.0,19.0,-1.7848303152666305,3.98535828943083 -919,9.0,20.0,-5.101853820159654,10.98071411292983 -919,9.0,21.0,-2.619319553382597,5.400770303329455 -919,10.0,8.0,0.0,4.807692307692308 -919,10.0,10.0,0.0,-4.807692307692308 -919,11.0,3.0,0.0,4.191255364806866 -919,11.0,11.0,6.573961583776156,-24.424167659260668 -919,11.0,12.0,0.0,7.142857142857143 -919,11.0,13.0,-1.5265676088395577,3.1734252729654173 -919,11.0,14.0,-3.0953961826564296,6.097275864326261 -919,11.0,15.0,-1.9519977922801688,4.104359379111847 -919,12.0,11.0,0.0,7.142857142857143 -919,12.0,12.0,0.0,-7.142857142857143 -919,13.0,11.0,-1.5265676088395577,3.1734252729654173 -919,13.0,13.0,4.01751987283902,-5.424299332335067 -919,13.0,14.0,-2.4909522639994623,2.250874059369649 -919,14.0,11.0,-3.0953961826564296,6.097275864326261 -919,14.0,13.0,-2.4909522639994623,2.250874059369649 -919,14.0,14.0,9.365498545964757,-16.01163373210796 -919,14.0,17.0,-1.8108011504072024,3.687418931630696 -919,14.0,22.0,-1.9683489489016612,3.976064876781356 -919,15.0,11.0,-1.9519977922801688,4.104359379111847 -919,15.0,15.0,3.271064728633931,-8.94513365126506 -919,15.0,16.0,-1.3190669363537617,4.8407742721532125 -919,16.0,15.0,-1.3190669363537617,4.8407742721532125 -919,16.0,16.0,1.3190669363537617,-4.8407742721532125 -919,17.0,14.0,-1.8108011504072024,3.687418931630696 -919,17.0,17.0,4.886487584415919,-9.906177730909668 -919,17.0,18.0,-3.0756864340087167,6.218758799278971 -919,18.0,17.0,-3.0756864340087167,6.218758799278971 -919,18.0,18.0,8.958039375185187,-17.98346468163191 -919,18.0,19.0,-5.88235294117647,11.76470588235294 -919,19.0,9.0,-1.7848303152666305,3.98535828943083 -919,19.0,18.0,-5.88235294117647,11.76470588235294 -919,19.0,19.0,7.6671832564431,-15.75006417178377 -919,20.0,9.0,-5.101853820159654,10.98071411292983 -919,20.0,20.0,21.876495189895888,-45.10843276170355 -919,20.0,21.0,-16.774641369736234,34.127718648773715 -919,21.0,9.0,-2.619319553382597,5.400770303329455 -919,21.0,20.0,-16.774641369736234,34.127718648773715 -919,21.0,21.0,21.93449907537439,-43.48289181517921 -919,21.0,23.0,-2.5405381522555563,3.95440286307604 -919,22.0,14.0,-1.9683489489016612,3.976064876781356 -919,22.0,22.0,3.429754555384988,-6.965303617315433 -919,22.0,23.0,-1.4614056064833263,2.989238740534077 -919,23.0,21.0,-2.5405381522555563,3.95440286307604 -919,23.0,22.0,-1.4614056064833263,2.989238740534077 -919,23.0,23.0,5.311836702613133,-9.188263657315172 -919,23.0,24.0,-1.3098929438742493,2.287622053705056 -919,24.0,23.0,-1.3098929438742493,2.287622053705056 -919,24.0,24.0,4.495715080321987,-7.864978761969621 -919,24.0,25.0,-1.2165301194494855,1.8171440463475024 -919,24.0,26.0,-1.9692920169982515,3.760212661917064 -919,25.0,24.0,-1.2165301194494855,1.8171440463475024 -919,25.0,25.0,1.2165301194494855,-1.8171440463475024 -919,26.0,24.0,-1.9692920169982515,3.760212661917064 -919,26.0,26.0,3.652281470778589,-9.46044252232512 -919,26.0,27.0,0.0,2.608731947574922 -919,26.0,28.0,-0.99553355095268,1.881005840357816 -919,26.0,29.0,-0.6874559028276572,1.293971494797717 -919,27.0,5.0,-4.362844058012917,15.463571542897856 -919,27.0,7.0,-1.4439790613954469,4.540814658476248 -919,27.0,26.0,0.0,2.608731947574922 -919,27.0,27.0,5.806823119408364,-22.67145722159613 -919,28.0,26.0,-0.99553355095268,1.881005840357816 -919,28.0,28.0,1.9075867579849564,-3.604364401207048 -919,28.0,29.0,-0.9120532070322764,1.7233585608492326 -919,29.0,26.0,-0.6874559028276572,1.293971494797717 -919,29.0,28.0,-0.9120532070322764,1.7233585608492326 -919,29.0,29.0,1.5995091098599337,-3.0173300556469496 -920,0.0,0.0,6.765516048652632,-21.23160167089863 -920,0.0,1.0,-5.224646179885656,15.646726840803398 -920,0.0,2.0,-1.5408698687669766,5.631674830095234 -920,1.0,0.0,-5.224646179885656,15.646726840803398 -920,1.0,1.0,9.75228216552403,-30.648662892676068 -920,1.0,3.0,-1.7055303166990268,5.1973792282565086 -920,1.0,4.0,-1.1359607881738778,4.772479328281356 -920,1.0,5.0,-1.6861448807654689,5.116477495334806 -920,2.0,0.0,-1.5408698687669766,5.631674830095234 -920,2.0,2.0,9.736318911079088,-29.13794745915803 -920,2.0,3.0,-8.19544904231211,23.5308726290628 -920,3.0,1.0,-1.7055303166990268,5.1973792282565086 -920,3.0,2.0,-8.19544904231211,23.5308726290628 -920,3.0,3.0,16.314103089185693,-55.509410535254254 -920,3.0,5.0,-6.413123730174556,22.31120356548123 -920,3.0,11.0,0.0,4.191255364806866 -920,4.0,1.0,-1.1359607881738778,4.772479328281356 -920,4.0,4.0,4.089980824135861,-12.190647245055052 -920,4.0,6.0,-2.954020035961983,7.449267916773697 -920,5.0,1.0,-1.6861448807654689,5.116477495334806 -920,5.0,3.0,-6.413123730174556,22.31120356548123 -920,5.0,5.0,22.341631269034565,-82.8291478657789 -920,5.0,6.0,-3.590210423980992,11.02611441072814 -920,5.0,7.0,-6.289308176100628,22.0125786163522 -920,5.0,8.0,0.0,4.915840805411357 -920,5.0,9.0,0.0,1.8561002591115965 -920,5.0,27.0,-4.362844058012917,15.463571542897856 -920,6.0,4.0,-2.954020035961983,7.449267916773697 -920,6.0,5.0,-3.590210423980992,11.02611441072814 -920,6.0,6.0,6.544230459942975,-18.45668232750184 -920,7.0,5.0,-6.289308176100628,22.0125786163522 -920,7.0,7.0,7.733287237496075,-26.527493274828448 -920,7.0,27.0,-1.4439790613954469,4.540814658476248 -920,8.0,5.0,0.0,4.915840805411357 -920,8.0,8.0,0.0,-18.706293706293707 -920,8.0,9.0,0.0,9.090909090909092 -920,8.0,10.0,0.0,4.807692307692308 -920,9.0,5.0,0.0,1.8561002591115965 -920,9.0,8.0,0.0,9.090909090909092 -920,9.0,9.0,9.506003688808882,-31.06631294767834 -920,9.0,19.0,-1.7848303152666305,3.98535828943083 -920,9.0,20.0,-5.101853820159654,10.98071411292983 -920,9.0,21.0,-2.619319553382597,5.400770303329455 -920,10.0,8.0,0.0,4.807692307692308 -920,10.0,10.0,0.0,-4.807692307692308 -920,11.0,3.0,0.0,4.191255364806866 -920,11.0,11.0,6.573961583776156,-24.424167659260668 -920,11.0,12.0,0.0,7.142857142857143 -920,11.0,13.0,-1.5265676088395577,3.1734252729654173 -920,11.0,14.0,-3.0953961826564296,6.097275864326261 -920,11.0,15.0,-1.9519977922801688,4.104359379111847 -920,12.0,11.0,0.0,7.142857142857143 -920,12.0,12.0,0.0,-7.142857142857143 -920,13.0,11.0,-1.5265676088395577,3.1734252729654173 -920,13.0,13.0,4.01751987283902,-5.424299332335067 -920,13.0,14.0,-2.4909522639994623,2.250874059369649 -920,14.0,11.0,-3.0953961826564296,6.097275864326261 -920,14.0,13.0,-2.4909522639994623,2.250874059369649 -920,14.0,14.0,9.365498545964757,-16.01163373210796 -920,14.0,17.0,-1.8108011504072024,3.687418931630696 -920,14.0,22.0,-1.9683489489016612,3.976064876781356 -920,15.0,11.0,-1.9519977922801688,4.104359379111847 -920,15.0,15.0,3.271064728633931,-8.94513365126506 -920,15.0,16.0,-1.3190669363537617,4.8407742721532125 -920,16.0,15.0,-1.3190669363537617,4.8407742721532125 -920,16.0,16.0,1.3190669363537617,-4.8407742721532125 -920,17.0,14.0,-1.8108011504072024,3.687418931630696 -920,17.0,17.0,4.886487584415919,-9.906177730909668 -920,17.0,18.0,-3.0756864340087167,6.218758799278971 -920,18.0,17.0,-3.0756864340087167,6.218758799278971 -920,18.0,18.0,8.958039375185187,-17.98346468163191 -920,18.0,19.0,-5.88235294117647,11.76470588235294 -920,19.0,9.0,-1.7848303152666305,3.98535828943083 -920,19.0,18.0,-5.88235294117647,11.76470588235294 -920,19.0,19.0,7.6671832564431,-15.75006417178377 -920,20.0,9.0,-5.101853820159654,10.98071411292983 -920,20.0,20.0,21.876495189895888,-45.10843276170355 -920,20.0,21.0,-16.774641369736234,34.127718648773715 -920,21.0,9.0,-2.619319553382597,5.400770303329455 -920,21.0,20.0,-16.774641369736234,34.127718648773715 -920,21.0,21.0,21.93449907537439,-43.48289181517921 -920,21.0,23.0,-2.5405381522555563,3.95440286307604 -920,22.0,14.0,-1.9683489489016612,3.976064876781356 -920,22.0,22.0,1.9683489489016612,-3.976064876781356 -920,23.0,21.0,-2.5405381522555563,3.95440286307604 -920,23.0,23.0,3.850431096129806,-6.199024916781094 -920,23.0,24.0,-1.3098929438742493,2.287622053705056 -920,24.0,23.0,-1.3098929438742493,2.287622053705056 -920,24.0,24.0,2.526423063323735,-4.104766100052558 -920,24.0,25.0,-1.2165301194494855,1.8171440463475024 -920,25.0,24.0,-1.2165301194494855,1.8171440463475024 -920,25.0,25.0,1.2165301194494855,-1.8171440463475024 -920,26.0,26.0,1.6829894537803372,-5.700229860408058 -920,26.0,27.0,0.0,2.608731947574922 -920,26.0,28.0,-0.99553355095268,1.881005840357816 -920,26.0,29.0,-0.6874559028276572,1.293971494797717 -920,27.0,5.0,-4.362844058012917,15.463571542897856 -920,27.0,7.0,-1.4439790613954469,4.540814658476248 -920,27.0,26.0,0.0,2.608731947574922 -920,27.0,27.0,5.806823119408364,-22.67145722159613 -920,28.0,26.0,-0.99553355095268,1.881005840357816 -920,28.0,28.0,1.9075867579849564,-3.604364401207048 -920,28.0,29.0,-0.9120532070322764,1.7233585608492326 -920,29.0,26.0,-0.6874559028276572,1.293971494797717 -920,29.0,28.0,-0.9120532070322764,1.7233585608492326 -920,29.0,29.0,1.5995091098599337,-3.0173300556469496 -921,0.0,0.0,6.765516048652632,-21.23160167089863 -921,0.0,1.0,-5.224646179885656,15.646726840803398 -921,0.0,2.0,-1.5408698687669766,5.631674830095234 -921,1.0,0.0,-5.224646179885656,15.646726840803398 -921,1.0,1.0,9.75228216552403,-30.648662892676068 -921,1.0,3.0,-1.7055303166990268,5.1973792282565086 -921,1.0,4.0,-1.1359607881738778,4.772479328281356 -921,1.0,5.0,-1.6861448807654689,5.116477495334806 -921,2.0,0.0,-1.5408698687669766,5.631674830095234 -921,2.0,2.0,9.736318911079088,-29.13794745915803 -921,2.0,3.0,-8.19544904231211,23.5308726290628 -921,3.0,1.0,-1.7055303166990268,5.1973792282565086 -921,3.0,2.0,-8.19544904231211,23.5308726290628 -921,3.0,3.0,16.314103089185693,-55.509410535254254 -921,3.0,5.0,-6.413123730174556,22.31120356548123 -921,3.0,11.0,0.0,4.191255364806866 -921,4.0,1.0,-1.1359607881738778,4.772479328281356 -921,4.0,4.0,4.089980824135861,-12.190647245055052 -921,4.0,6.0,-2.954020035961983,7.449267916773697 -921,5.0,1.0,-1.6861448807654689,5.116477495334806 -921,5.0,3.0,-6.413123730174556,22.31120356548123 -921,5.0,5.0,22.341631269034565,-82.8291478657789 -921,5.0,6.0,-3.590210423980992,11.02611441072814 -921,5.0,7.0,-6.289308176100628,22.0125786163522 -921,5.0,8.0,0.0,4.915840805411357 -921,5.0,9.0,0.0,1.8561002591115965 -921,5.0,27.0,-4.362844058012917,15.463571542897856 -921,6.0,4.0,-2.954020035961983,7.449267916773697 -921,6.0,5.0,-3.590210423980992,11.02611441072814 -921,6.0,6.0,6.544230459942975,-18.45668232750184 -921,7.0,5.0,-6.289308176100628,22.0125786163522 -921,7.0,7.0,7.733287237496075,-26.527493274828448 -921,7.0,27.0,-1.4439790613954469,4.540814658476248 -921,8.0,5.0,0.0,4.915840805411357 -921,8.0,8.0,0.0,-18.706293706293707 -921,8.0,9.0,0.0,9.090909090909092 -921,8.0,10.0,0.0,4.807692307692308 -921,9.0,5.0,0.0,1.8561002591115965 -921,9.0,8.0,0.0,9.090909090909092 -921,9.0,9.0,13.462042814524237,-41.3837606675224 -921,9.0,16.0,-3.956039125715353,10.317447719844054 -921,9.0,19.0,-1.7848303152666305,3.98535828943083 -921,9.0,20.0,-5.101853820159654,10.98071411292983 -921,9.0,21.0,-2.619319553382597,5.400770303329455 -921,10.0,8.0,0.0,4.807692307692308 -921,10.0,10.0,0.0,-4.807692307692308 -921,11.0,3.0,0.0,4.191255364806866 -921,11.0,11.0,6.573961583776156,-24.424167659260668 -921,11.0,12.0,0.0,7.142857142857143 -921,11.0,13.0,-1.5265676088395577,3.1734252729654173 -921,11.0,14.0,-3.0953961826564296,6.097275864326261 -921,11.0,15.0,-1.9519977922801688,4.104359379111847 -921,12.0,11.0,0.0,7.142857142857143 -921,12.0,12.0,0.0,-7.142857142857143 -921,13.0,11.0,-1.5265676088395577,3.1734252729654173 -921,13.0,13.0,4.01751987283902,-5.424299332335067 -921,13.0,14.0,-2.4909522639994623,2.250874059369649 -921,14.0,11.0,-3.0953961826564296,6.097275864326261 -921,14.0,13.0,-2.4909522639994623,2.250874059369649 -921,14.0,14.0,9.365498545964757,-16.01163373210796 -921,14.0,17.0,-1.8108011504072024,3.687418931630696 -921,14.0,22.0,-1.9683489489016612,3.976064876781356 -921,15.0,11.0,-1.9519977922801688,4.104359379111847 -921,15.0,15.0,3.271064728633931,-8.94513365126506 -921,15.0,16.0,-1.3190669363537617,4.8407742721532125 -921,16.0,9.0,-3.956039125715353,10.317447719844054 -921,16.0,15.0,-1.3190669363537617,4.8407742721532125 -921,16.0,16.0,5.275106062069114,-15.158221991997266 -921,17.0,14.0,-1.8108011504072024,3.687418931630696 -921,17.0,17.0,4.886487584415919,-9.906177730909668 -921,17.0,18.0,-3.0756864340087167,6.218758799278971 -921,18.0,17.0,-3.0756864340087167,6.218758799278971 -921,18.0,18.0,8.958039375185187,-17.98346468163191 -921,18.0,19.0,-5.88235294117647,11.76470588235294 -921,19.0,9.0,-1.7848303152666305,3.98535828943083 -921,19.0,18.0,-5.88235294117647,11.76470588235294 -921,19.0,19.0,7.6671832564431,-15.75006417178377 -921,20.0,9.0,-5.101853820159654,10.98071411292983 -921,20.0,20.0,21.876495189895888,-45.10843276170355 -921,20.0,21.0,-16.774641369736234,34.127718648773715 -921,21.0,9.0,-2.619319553382597,5.400770303329455 -921,21.0,20.0,-16.774641369736234,34.127718648773715 -921,21.0,21.0,21.93449907537439,-43.48289181517921 -921,21.0,23.0,-2.5405381522555563,3.95440286307604 -921,22.0,14.0,-1.9683489489016612,3.976064876781356 -921,22.0,22.0,3.429754555384988,-6.965303617315433 -921,22.0,23.0,-1.4614056064833263,2.989238740534077 -921,23.0,21.0,-2.5405381522555563,3.95440286307604 -921,23.0,22.0,-1.4614056064833263,2.989238740534077 -921,23.0,23.0,5.311836702613133,-9.188263657315172 -921,23.0,24.0,-1.3098929438742493,2.287622053705056 -921,24.0,23.0,-1.3098929438742493,2.287622053705056 -921,24.0,24.0,4.495715080321987,-7.864978761969621 -921,24.0,25.0,-1.2165301194494855,1.8171440463475024 -921,24.0,26.0,-1.9692920169982515,3.760212661917064 -921,25.0,24.0,-1.2165301194494855,1.8171440463475024 -921,25.0,25.0,1.2165301194494855,-1.8171440463475024 -921,26.0,24.0,-1.9692920169982515,3.760212661917064 -921,26.0,26.0,3.652281470778589,-9.46044252232512 -921,26.0,27.0,0.0,2.608731947574922 -921,26.0,28.0,-0.99553355095268,1.881005840357816 -921,26.0,29.0,-0.6874559028276572,1.293971494797717 -921,27.0,5.0,-4.362844058012917,15.463571542897856 -921,27.0,7.0,-1.4439790613954469,4.540814658476248 -921,27.0,26.0,0.0,2.608731947574922 -921,27.0,27.0,5.806823119408364,-22.67145722159613 -921,28.0,26.0,-0.99553355095268,1.881005840357816 -921,28.0,28.0,1.9075867579849564,-3.604364401207048 -921,28.0,29.0,-0.9120532070322764,1.7233585608492326 -921,29.0,26.0,-0.6874559028276572,1.293971494797717 -921,29.0,28.0,-0.9120532070322764,1.7233585608492326 -921,29.0,29.0,1.5995091098599337,-3.0173300556469496 -922,0.0,0.0,6.765516048652632,-21.23160167089863 -922,0.0,1.0,-5.224646179885656,15.646726840803398 -922,0.0,2.0,-1.5408698687669766,5.631674830095234 -922,1.0,0.0,-5.224646179885656,15.646726840803398 -922,1.0,1.0,9.75228216552403,-30.648662892676068 -922,1.0,3.0,-1.7055303166990268,5.1973792282565086 -922,1.0,4.0,-1.1359607881738778,4.772479328281356 -922,1.0,5.0,-1.6861448807654689,5.116477495334806 -922,2.0,0.0,-1.5408698687669766,5.631674830095234 -922,2.0,2.0,9.736318911079088,-29.13794745915803 -922,2.0,3.0,-8.19544904231211,23.5308726290628 -922,3.0,1.0,-1.7055303166990268,5.1973792282565086 -922,3.0,2.0,-8.19544904231211,23.5308726290628 -922,3.0,3.0,16.314103089185693,-55.509410535254254 -922,3.0,5.0,-6.413123730174556,22.31120356548123 -922,3.0,11.0,0.0,4.191255364806866 -922,4.0,1.0,-1.1359607881738778,4.772479328281356 -922,4.0,4.0,4.089980824135861,-12.190647245055052 -922,4.0,6.0,-2.954020035961983,7.449267916773697 -922,5.0,1.0,-1.6861448807654689,5.116477495334806 -922,5.0,3.0,-6.413123730174556,22.31120356548123 -922,5.0,5.0,16.052323092933932,-60.8210692494267 -922,5.0,6.0,-3.590210423980992,11.02611441072814 -922,5.0,8.0,0.0,4.915840805411357 -922,5.0,9.0,0.0,1.8561002591115965 -922,5.0,27.0,-4.362844058012917,15.463571542897856 -922,6.0,4.0,-2.954020035961983,7.449267916773697 -922,6.0,5.0,-3.590210423980992,11.02611441072814 -922,6.0,6.0,6.544230459942975,-18.45668232750184 -922,7.0,7.0,1.4439790613954469,-4.519414658476248 -922,7.0,27.0,-1.4439790613954469,4.540814658476248 -922,8.0,5.0,0.0,4.915840805411357 -922,8.0,8.0,0.0,-18.706293706293707 -922,8.0,9.0,0.0,9.090909090909092 -922,8.0,10.0,0.0,4.807692307692308 -922,9.0,5.0,0.0,1.8561002591115965 -922,9.0,8.0,0.0,9.090909090909092 -922,9.0,9.0,13.462042814524237,-41.3837606675224 -922,9.0,16.0,-3.956039125715353,10.317447719844054 -922,9.0,19.0,-1.7848303152666305,3.98535828943083 -922,9.0,20.0,-5.101853820159654,10.98071411292983 -922,9.0,21.0,-2.619319553382597,5.400770303329455 -922,10.0,8.0,0.0,4.807692307692308 -922,10.0,10.0,0.0,-4.807692307692308 -922,11.0,3.0,0.0,4.191255364806866 -922,11.0,11.0,4.621963791495987,-20.31980828014882 -922,11.0,12.0,0.0,7.142857142857143 -922,11.0,13.0,-1.5265676088395577,3.1734252729654173 -922,11.0,14.0,-3.0953961826564296,6.097275864326261 -922,12.0,11.0,0.0,7.142857142857143 -922,12.0,12.0,0.0,-7.142857142857143 -922,13.0,11.0,-1.5265676088395577,3.1734252729654173 -922,13.0,13.0,4.01751987283902,-5.424299332335067 -922,13.0,14.0,-2.4909522639994623,2.250874059369649 -922,14.0,11.0,-3.0953961826564296,6.097275864326261 -922,14.0,13.0,-2.4909522639994623,2.250874059369649 -922,14.0,14.0,9.365498545964757,-16.01163373210796 -922,14.0,17.0,-1.8108011504072024,3.687418931630696 -922,14.0,22.0,-1.9683489489016612,3.976064876781356 -922,15.0,15.0,1.3190669363537617,-4.8407742721532125 -922,15.0,16.0,-1.3190669363537617,4.8407742721532125 -922,16.0,9.0,-3.956039125715353,10.317447719844054 -922,16.0,15.0,-1.3190669363537617,4.8407742721532125 -922,16.0,16.0,5.275106062069114,-15.158221991997266 -922,17.0,14.0,-1.8108011504072024,3.687418931630696 -922,17.0,17.0,4.886487584415919,-9.906177730909668 -922,17.0,18.0,-3.0756864340087167,6.218758799278971 -922,18.0,17.0,-3.0756864340087167,6.218758799278971 -922,18.0,18.0,8.958039375185187,-17.98346468163191 -922,18.0,19.0,-5.88235294117647,11.76470588235294 -922,19.0,9.0,-1.7848303152666305,3.98535828943083 -922,19.0,18.0,-5.88235294117647,11.76470588235294 -922,19.0,19.0,7.6671832564431,-15.75006417178377 -922,20.0,9.0,-5.101853820159654,10.98071411292983 -922,20.0,20.0,21.876495189895888,-45.10843276170355 -922,20.0,21.0,-16.774641369736234,34.127718648773715 -922,21.0,9.0,-2.619319553382597,5.400770303329455 -922,21.0,20.0,-16.774641369736234,34.127718648773715 -922,21.0,21.0,21.93449907537439,-43.48289181517921 -922,21.0,23.0,-2.5405381522555563,3.95440286307604 -922,22.0,14.0,-1.9683489489016612,3.976064876781356 -922,22.0,22.0,3.429754555384988,-6.965303617315433 -922,22.0,23.0,-1.4614056064833263,2.989238740534077 -922,23.0,21.0,-2.5405381522555563,3.95440286307604 -922,23.0,22.0,-1.4614056064833263,2.989238740534077 -922,23.0,23.0,5.311836702613133,-9.188263657315172 -922,23.0,24.0,-1.3098929438742493,2.287622053705056 -922,24.0,23.0,-1.3098929438742493,2.287622053705056 -922,24.0,24.0,4.495715080321987,-7.864978761969621 -922,24.0,25.0,-1.2165301194494855,1.8171440463475024 -922,24.0,26.0,-1.9692920169982515,3.760212661917064 -922,25.0,24.0,-1.2165301194494855,1.8171440463475024 -922,25.0,25.0,1.2165301194494855,-1.8171440463475024 -922,26.0,24.0,-1.9692920169982515,3.760212661917064 -922,26.0,26.0,3.652281470778589,-9.46044252232512 -922,26.0,27.0,0.0,2.608731947574922 -922,26.0,28.0,-0.99553355095268,1.881005840357816 -922,26.0,29.0,-0.6874559028276572,1.293971494797717 -922,27.0,5.0,-4.362844058012917,15.463571542897856 -922,27.0,7.0,-1.4439790613954469,4.540814658476248 -922,27.0,26.0,0.0,2.608731947574922 -922,27.0,27.0,5.806823119408364,-22.67145722159613 -922,28.0,26.0,-0.99553355095268,1.881005840357816 -922,28.0,28.0,1.9075867579849564,-3.604364401207048 -922,28.0,29.0,-0.9120532070322764,1.7233585608492326 -922,29.0,26.0,-0.6874559028276572,1.293971494797717 -922,29.0,28.0,-0.9120532070322764,1.7233585608492326 -922,29.0,29.0,1.5995091098599337,-3.0173300556469496 -923,0.0,0.0,6.765516048652632,-21.23160167089863 -923,0.0,1.0,-5.224646179885656,15.646726840803398 -923,0.0,2.0,-1.5408698687669766,5.631674830095234 -923,1.0,0.0,-5.224646179885656,15.646726840803398 -923,1.0,1.0,9.75228216552403,-30.648662892676068 -923,1.0,3.0,-1.7055303166990268,5.1973792282565086 -923,1.0,4.0,-1.1359607881738778,4.772479328281356 -923,1.0,5.0,-1.6861448807654689,5.116477495334806 -923,2.0,0.0,-1.5408698687669766,5.631674830095234 -923,2.0,2.0,9.736318911079088,-29.13794745915803 -923,2.0,3.0,-8.19544904231211,23.5308726290628 -923,3.0,1.0,-1.7055303166990268,5.1973792282565086 -923,3.0,2.0,-8.19544904231211,23.5308726290628 -923,3.0,3.0,16.314103089185693,-55.509410535254254 -923,3.0,5.0,-6.413123730174556,22.31120356548123 -923,3.0,11.0,0.0,4.191255364806866 -923,4.0,1.0,-1.1359607881738778,4.772479328281356 -923,4.0,4.0,4.089980824135861,-12.190647245055052 -923,4.0,6.0,-2.954020035961983,7.449267916773697 -923,5.0,1.0,-1.6861448807654689,5.116477495334806 -923,5.0,3.0,-6.413123730174556,22.31120356548123 -923,5.0,5.0,22.341631269034565,-82.8291478657789 -923,5.0,6.0,-3.590210423980992,11.02611441072814 -923,5.0,7.0,-6.289308176100628,22.0125786163522 -923,5.0,8.0,0.0,4.915840805411357 -923,5.0,9.0,0.0,1.8561002591115965 -923,5.0,27.0,-4.362844058012917,15.463571542897856 -923,6.0,4.0,-2.954020035961983,7.449267916773697 -923,6.0,5.0,-3.590210423980992,11.02611441072814 -923,6.0,6.0,6.544230459942975,-18.45668232750184 -923,7.0,5.0,-6.289308176100628,22.0125786163522 -923,7.0,7.0,7.733287237496075,-26.527493274828448 -923,7.0,27.0,-1.4439790613954469,4.540814658476248 -923,8.0,5.0,0.0,4.915840805411357 -923,8.0,8.0,0.0,-18.706293706293707 -923,8.0,9.0,0.0,9.090909090909092 -923,8.0,10.0,0.0,4.807692307692308 -923,9.0,5.0,0.0,1.8561002591115965 -923,9.0,8.0,0.0,9.090909090909092 -923,9.0,9.0,9.506003688808882,-31.06631294767834 -923,9.0,19.0,-1.7848303152666305,3.98535828943083 -923,9.0,20.0,-5.101853820159654,10.98071411292983 -923,9.0,21.0,-2.619319553382597,5.400770303329455 -923,10.0,8.0,0.0,4.807692307692308 -923,10.0,10.0,0.0,-4.807692307692308 -923,11.0,3.0,0.0,4.191255364806866 -923,11.0,11.0,6.573961583776156,-24.424167659260668 -923,11.0,12.0,0.0,7.142857142857143 -923,11.0,13.0,-1.5265676088395577,3.1734252729654173 -923,11.0,14.0,-3.0953961826564296,6.097275864326261 -923,11.0,15.0,-1.9519977922801688,4.104359379111847 -923,12.0,11.0,0.0,7.142857142857143 -923,12.0,12.0,0.0,-7.142857142857143 -923,13.0,11.0,-1.5265676088395577,3.1734252729654173 -923,13.0,13.0,1.5265676088395577,-3.1734252729654173 -923,14.0,11.0,-3.0953961826564296,6.097275864326261 -923,14.0,14.0,6.874546281965293,-13.760759672738311 -923,14.0,17.0,-1.8108011504072024,3.687418931630696 -923,14.0,22.0,-1.9683489489016612,3.976064876781356 -923,15.0,11.0,-1.9519977922801688,4.104359379111847 -923,15.0,15.0,3.271064728633931,-8.94513365126506 -923,15.0,16.0,-1.3190669363537617,4.8407742721532125 -923,16.0,15.0,-1.3190669363537617,4.8407742721532125 -923,16.0,16.0,1.3190669363537617,-4.8407742721532125 -923,17.0,14.0,-1.8108011504072024,3.687418931630696 -923,17.0,17.0,4.886487584415919,-9.906177730909668 -923,17.0,18.0,-3.0756864340087167,6.218758799278971 -923,18.0,17.0,-3.0756864340087167,6.218758799278971 -923,18.0,18.0,8.958039375185187,-17.98346468163191 -923,18.0,19.0,-5.88235294117647,11.76470588235294 -923,19.0,9.0,-1.7848303152666305,3.98535828943083 -923,19.0,18.0,-5.88235294117647,11.76470588235294 -923,19.0,19.0,7.6671832564431,-15.75006417178377 -923,20.0,9.0,-5.101853820159654,10.98071411292983 -923,20.0,20.0,21.876495189895888,-45.10843276170355 -923,20.0,21.0,-16.774641369736234,34.127718648773715 -923,21.0,9.0,-2.619319553382597,5.400770303329455 -923,21.0,20.0,-16.774641369736234,34.127718648773715 -923,21.0,21.0,21.93449907537439,-43.48289181517921 -923,21.0,23.0,-2.5405381522555563,3.95440286307604 -923,22.0,14.0,-1.9683489489016612,3.976064876781356 -923,22.0,22.0,3.429754555384988,-6.965303617315433 -923,22.0,23.0,-1.4614056064833263,2.989238740534077 -923,23.0,21.0,-2.5405381522555563,3.95440286307604 -923,23.0,22.0,-1.4614056064833263,2.989238740534077 -923,23.0,23.0,5.311836702613133,-9.188263657315172 -923,23.0,24.0,-1.3098929438742493,2.287622053705056 -923,24.0,23.0,-1.3098929438742493,2.287622053705056 -923,24.0,24.0,2.526423063323735,-4.104766100052558 -923,24.0,25.0,-1.2165301194494855,1.8171440463475024 -923,25.0,24.0,-1.2165301194494855,1.8171440463475024 -923,25.0,25.0,1.2165301194494855,-1.8171440463475024 -923,26.0,26.0,1.6829894537803372,-5.700229860408058 -923,26.0,27.0,0.0,2.608731947574922 -923,26.0,28.0,-0.99553355095268,1.881005840357816 -923,26.0,29.0,-0.6874559028276572,1.293971494797717 -923,27.0,5.0,-4.362844058012917,15.463571542897856 -923,27.0,7.0,-1.4439790613954469,4.540814658476248 -923,27.0,26.0,0.0,2.608731947574922 -923,27.0,27.0,5.806823119408364,-22.67145722159613 -923,28.0,26.0,-0.99553355095268,1.881005840357816 -923,28.0,28.0,0.99553355095268,-1.881005840357816 -923,29.0,26.0,-0.6874559028276572,1.293971494797717 -923,29.0,29.0,0.6874559028276572,-1.293971494797717 -924,0.0,0.0,6.765516048652632,-21.23160167089863 -924,0.0,1.0,-5.224646179885656,15.646726840803398 -924,0.0,2.0,-1.5408698687669766,5.631674830095234 -924,1.0,0.0,-5.224646179885656,15.646726840803398 -924,1.0,1.0,9.75228216552403,-30.648662892676068 -924,1.0,3.0,-1.7055303166990268,5.1973792282565086 -924,1.0,4.0,-1.1359607881738778,4.772479328281356 -924,1.0,5.0,-1.6861448807654689,5.116477495334806 -924,2.0,0.0,-1.5408698687669766,5.631674830095234 -924,2.0,2.0,9.736318911079088,-29.13794745915803 -924,2.0,3.0,-8.19544904231211,23.5308726290628 -924,3.0,1.0,-1.7055303166990268,5.1973792282565086 -924,3.0,2.0,-8.19544904231211,23.5308726290628 -924,3.0,3.0,16.314103089185693,-55.509410535254254 -924,3.0,5.0,-6.413123730174556,22.31120356548123 -924,3.0,11.0,0.0,4.191255364806866 -924,4.0,1.0,-1.1359607881738778,4.772479328281356 -924,4.0,4.0,4.089980824135861,-12.190647245055052 -924,4.0,6.0,-2.954020035961983,7.449267916773697 -924,5.0,1.0,-1.6861448807654689,5.116477495334806 -924,5.0,3.0,-6.413123730174556,22.31120356548123 -924,5.0,5.0,16.052323092933932,-60.8210692494267 -924,5.0,6.0,-3.590210423980992,11.02611441072814 -924,5.0,8.0,0.0,4.915840805411357 -924,5.0,9.0,0.0,1.8561002591115965 -924,5.0,27.0,-4.362844058012917,15.463571542897856 -924,6.0,4.0,-2.954020035961983,7.449267916773697 -924,6.0,5.0,-3.590210423980992,11.02611441072814 -924,6.0,6.0,6.544230459942975,-18.45668232750184 -924,7.0,7.0,1.4439790613954469,-4.519414658476248 -924,7.0,27.0,-1.4439790613954469,4.540814658476248 -924,8.0,5.0,0.0,4.915840805411357 -924,8.0,8.0,0.0,-18.706293706293707 -924,8.0,9.0,0.0,9.090909090909092 -924,8.0,10.0,0.0,4.807692307692308 -924,9.0,5.0,0.0,1.8561002591115965 -924,9.0,8.0,0.0,9.090909090909092 -924,9.0,9.0,10.842723261141638,-35.98299036419294 -924,9.0,16.0,-3.956039125715353,10.317447719844054 -924,9.0,19.0,-1.7848303152666305,3.98535828943083 -924,9.0,20.0,-5.101853820159654,10.98071411292983 -924,10.0,8.0,0.0,4.807692307692308 -924,10.0,10.0,0.0,-4.807692307692308 -924,11.0,3.0,0.0,4.191255364806866 -924,11.0,11.0,6.573961583776156,-24.424167659260668 -924,11.0,12.0,0.0,7.142857142857143 -924,11.0,13.0,-1.5265676088395577,3.1734252729654173 -924,11.0,14.0,-3.0953961826564296,6.097275864326261 -924,11.0,15.0,-1.9519977922801688,4.104359379111847 -924,12.0,11.0,0.0,7.142857142857143 -924,12.0,12.0,0.0,-7.142857142857143 -924,13.0,11.0,-1.5265676088395577,3.1734252729654173 -924,13.0,13.0,4.01751987283902,-5.424299332335067 -924,13.0,14.0,-2.4909522639994623,2.250874059369649 -924,14.0,11.0,-3.0953961826564296,6.097275864326261 -924,14.0,13.0,-2.4909522639994623,2.250874059369649 -924,14.0,14.0,9.365498545964757,-16.01163373210796 -924,14.0,17.0,-1.8108011504072024,3.687418931630696 -924,14.0,22.0,-1.9683489489016612,3.976064876781356 -924,15.0,11.0,-1.9519977922801688,4.104359379111847 -924,15.0,15.0,3.271064728633931,-8.94513365126506 -924,15.0,16.0,-1.3190669363537617,4.8407742721532125 -924,16.0,9.0,-3.956039125715353,10.317447719844054 -924,16.0,15.0,-1.3190669363537617,4.8407742721532125 -924,16.0,16.0,5.275106062069114,-15.158221991997266 -924,17.0,14.0,-1.8108011504072024,3.687418931630696 -924,17.0,17.0,4.886487584415919,-9.906177730909668 -924,17.0,18.0,-3.0756864340087167,6.218758799278971 -924,18.0,17.0,-3.0756864340087167,6.218758799278971 -924,18.0,18.0,8.958039375185187,-17.98346468163191 -924,18.0,19.0,-5.88235294117647,11.76470588235294 -924,19.0,9.0,-1.7848303152666305,3.98535828943083 -924,19.0,18.0,-5.88235294117647,11.76470588235294 -924,19.0,19.0,7.6671832564431,-15.75006417178377 -924,20.0,9.0,-5.101853820159654,10.98071411292983 -924,20.0,20.0,21.876495189895888,-45.10843276170355 -924,20.0,21.0,-16.774641369736234,34.127718648773715 -924,21.0,20.0,-16.774641369736234,34.127718648773715 -924,21.0,21.0,19.31517952199179,-38.08212151184976 -924,21.0,23.0,-2.5405381522555563,3.95440286307604 -924,22.0,14.0,-1.9683489489016612,3.976064876781356 -924,22.0,22.0,3.429754555384988,-6.965303617315433 -924,22.0,23.0,-1.4614056064833263,2.989238740534077 -924,23.0,21.0,-2.5405381522555563,3.95440286307604 -924,23.0,22.0,-1.4614056064833263,2.989238740534077 -924,23.0,23.0,5.311836702613133,-9.188263657315172 -924,23.0,24.0,-1.3098929438742493,2.287622053705056 -924,24.0,23.0,-1.3098929438742493,2.287622053705056 -924,24.0,24.0,4.495715080321987,-7.864978761969621 -924,24.0,25.0,-1.2165301194494855,1.8171440463475024 -924,24.0,26.0,-1.9692920169982515,3.760212661917064 -924,25.0,24.0,-1.2165301194494855,1.8171440463475024 -924,25.0,25.0,1.2165301194494855,-1.8171440463475024 -924,26.0,24.0,-1.9692920169982515,3.760212661917064 -924,26.0,26.0,3.652281470778589,-9.46044252232512 -924,26.0,27.0,0.0,2.608731947574922 -924,26.0,28.0,-0.99553355095268,1.881005840357816 -924,26.0,29.0,-0.6874559028276572,1.293971494797717 -924,27.0,5.0,-4.362844058012917,15.463571542897856 -924,27.0,7.0,-1.4439790613954469,4.540814658476248 -924,27.0,26.0,0.0,2.608731947574922 -924,27.0,27.0,5.806823119408364,-22.67145722159613 -924,28.0,26.0,-0.99553355095268,1.881005840357816 -924,28.0,28.0,1.9075867579849564,-3.604364401207048 -924,28.0,29.0,-0.9120532070322764,1.7233585608492326 -924,29.0,26.0,-0.6874559028276572,1.293971494797717 -924,29.0,28.0,-0.9120532070322764,1.7233585608492326 -924,29.0,29.0,1.5995091098599337,-3.0173300556469496 -925,0.0,0.0,6.765516048652632,-21.23160167089863 -925,0.0,1.0,-5.224646179885656,15.646726840803398 -925,0.0,2.0,-1.5408698687669766,5.631674830095234 -925,1.0,0.0,-5.224646179885656,15.646726840803398 -925,1.0,1.0,9.75228216552403,-30.648662892676068 -925,1.0,3.0,-1.7055303166990268,5.1973792282565086 -925,1.0,4.0,-1.1359607881738778,4.772479328281356 -925,1.0,5.0,-1.6861448807654689,5.116477495334806 -925,2.0,0.0,-1.5408698687669766,5.631674830095234 -925,2.0,2.0,9.736318911079088,-29.13794745915803 -925,2.0,3.0,-8.19544904231211,23.5308726290628 -925,3.0,1.0,-1.7055303166990268,5.1973792282565086 -925,3.0,2.0,-8.19544904231211,23.5308726290628 -925,3.0,3.0,16.314103089185693,-55.509410535254254 -925,3.0,5.0,-6.413123730174556,22.31120356548123 -925,3.0,11.0,0.0,4.191255364806866 -925,4.0,1.0,-1.1359607881738778,4.772479328281356 -925,4.0,4.0,4.089980824135861,-12.190647245055052 -925,4.0,6.0,-2.954020035961983,7.449267916773697 -925,5.0,1.0,-1.6861448807654689,5.116477495334806 -925,5.0,3.0,-6.413123730174556,22.31120356548123 -925,5.0,5.0,17.978787211021647,-65.45659617931904 -925,5.0,6.0,-3.590210423980992,11.02611441072814 -925,5.0,7.0,-6.289308176100628,22.0125786163522 -925,5.0,8.0,0.0,4.915840805411357 -925,6.0,4.0,-2.954020035961983,7.449267916773697 -925,6.0,5.0,-3.590210423980992,11.02611441072814 -925,6.0,6.0,6.544230459942975,-18.45668232750184 -925,7.0,5.0,-6.289308176100628,22.0125786163522 -925,7.0,7.0,7.733287237496075,-26.527493274828448 -925,7.0,27.0,-1.4439790613954469,4.540814658476248 -925,8.0,5.0,0.0,4.915840805411357 -925,8.0,8.0,0.0,-18.706293706293707 -925,8.0,9.0,0.0,9.090909090909092 -925,8.0,10.0,0.0,4.807692307692308 -925,9.0,8.0,0.0,9.090909090909092 -925,9.0,9.0,11.677212499257603,-35.59984122701243 -925,9.0,16.0,-3.956039125715353,10.317447719844054 -925,9.0,20.0,-5.101853820159654,10.98071411292983 -925,9.0,21.0,-2.619319553382597,5.400770303329455 -925,10.0,8.0,0.0,4.807692307692308 -925,10.0,10.0,0.0,-4.807692307692308 -925,11.0,3.0,0.0,4.191255364806866 -925,11.0,11.0,6.573961583776156,-24.424167659260668 -925,11.0,12.0,0.0,7.142857142857143 -925,11.0,13.0,-1.5265676088395577,3.1734252729654173 -925,11.0,14.0,-3.0953961826564296,6.097275864326261 -925,11.0,15.0,-1.9519977922801688,4.104359379111847 -925,12.0,11.0,0.0,7.142857142857143 -925,12.0,12.0,0.0,-7.142857142857143 -925,13.0,11.0,-1.5265676088395577,3.1734252729654173 -925,13.0,13.0,4.01751987283902,-5.424299332335067 -925,13.0,14.0,-2.4909522639994623,2.250874059369649 -925,14.0,11.0,-3.0953961826564296,6.097275864326261 -925,14.0,13.0,-2.4909522639994623,2.250874059369649 -925,14.0,14.0,9.365498545964757,-16.01163373210796 -925,14.0,17.0,-1.8108011504072024,3.687418931630696 -925,14.0,22.0,-1.9683489489016612,3.976064876781356 -925,15.0,11.0,-1.9519977922801688,4.104359379111847 -925,15.0,15.0,3.271064728633931,-8.94513365126506 -925,15.0,16.0,-1.3190669363537617,4.8407742721532125 -925,16.0,9.0,-3.956039125715353,10.317447719844054 -925,16.0,15.0,-1.3190669363537617,4.8407742721532125 -925,16.0,16.0,5.275106062069114,-15.158221991997266 -925,17.0,14.0,-1.8108011504072024,3.687418931630696 -925,17.0,17.0,4.886487584415919,-9.906177730909668 -925,17.0,18.0,-3.0756864340087167,6.218758799278971 -925,18.0,17.0,-3.0756864340087167,6.218758799278971 -925,18.0,18.0,8.958039375185187,-17.98346468163191 -925,18.0,19.0,-5.88235294117647,11.76470588235294 -925,19.0,18.0,-5.88235294117647,11.76470588235294 -925,19.0,19.0,5.88235294117647,-11.76470588235294 -925,20.0,9.0,-5.101853820159654,10.98071411292983 -925,20.0,20.0,21.876495189895888,-45.10843276170355 -925,20.0,21.0,-16.774641369736234,34.127718648773715 -925,21.0,9.0,-2.619319553382597,5.400770303329455 -925,21.0,20.0,-16.774641369736234,34.127718648773715 -925,21.0,21.0,21.93449907537439,-43.48289181517921 -925,21.0,23.0,-2.5405381522555563,3.95440286307604 -925,22.0,14.0,-1.9683489489016612,3.976064876781356 -925,22.0,22.0,3.429754555384988,-6.965303617315433 -925,22.0,23.0,-1.4614056064833263,2.989238740534077 -925,23.0,21.0,-2.5405381522555563,3.95440286307604 -925,23.0,22.0,-1.4614056064833263,2.989238740534077 -925,23.0,23.0,5.311836702613133,-9.188263657315172 -925,23.0,24.0,-1.3098929438742493,2.287622053705056 -925,24.0,23.0,-1.3098929438742493,2.287622053705056 -925,24.0,24.0,4.495715080321987,-7.864978761969621 -925,24.0,25.0,-1.2165301194494855,1.8171440463475024 -925,24.0,26.0,-1.9692920169982515,3.760212661917064 -925,25.0,24.0,-1.2165301194494855,1.8171440463475024 -925,25.0,25.0,1.2165301194494855,-1.8171440463475024 -925,26.0,24.0,-1.9692920169982515,3.760212661917064 -925,26.0,26.0,3.652281470778589,-9.46044252232512 -925,26.0,27.0,0.0,2.608731947574922 -925,26.0,28.0,-0.99553355095268,1.881005840357816 -925,26.0,29.0,-0.6874559028276572,1.293971494797717 -925,27.0,7.0,-1.4439790613954469,4.540814658476248 -925,27.0,26.0,0.0,2.608731947574922 -925,27.0,27.0,1.4439790613954469,-7.214385678698274 -925,28.0,26.0,-0.99553355095268,1.881005840357816 -925,28.0,28.0,1.9075867579849564,-3.604364401207048 -925,28.0,29.0,-0.9120532070322764,1.7233585608492326 -925,29.0,26.0,-0.6874559028276572,1.293971494797717 -925,29.0,28.0,-0.9120532070322764,1.7233585608492326 -925,29.0,29.0,1.5995091098599337,-3.0173300556469496 -926,0.0,0.0,6.765516048652632,-21.23160167089863 -926,0.0,1.0,-5.224646179885656,15.646726840803398 -926,0.0,2.0,-1.5408698687669766,5.631674830095234 -926,1.0,0.0,-5.224646179885656,15.646726840803398 -926,1.0,1.0,9.75228216552403,-30.648662892676068 -926,1.0,3.0,-1.7055303166990268,5.1973792282565086 -926,1.0,4.0,-1.1359607881738778,4.772479328281356 -926,1.0,5.0,-1.6861448807654689,5.116477495334806 -926,2.0,0.0,-1.5408698687669766,5.631674830095234 -926,2.0,2.0,9.736318911079088,-29.13794745915803 -926,2.0,3.0,-8.19544904231211,23.5308726290628 -926,3.0,1.0,-1.7055303166990268,5.1973792282565086 -926,3.0,2.0,-8.19544904231211,23.5308726290628 -926,3.0,3.0,16.314103089185693,-55.509410535254254 -926,3.0,5.0,-6.413123730174556,22.31120356548123 -926,3.0,11.0,0.0,4.191255364806866 -926,4.0,1.0,-1.1359607881738778,4.772479328281356 -926,4.0,4.0,4.089980824135861,-12.190647245055052 -926,4.0,6.0,-2.954020035961983,7.449267916773697 -926,5.0,1.0,-1.6861448807654689,5.116477495334806 -926,5.0,3.0,-6.413123730174556,22.31120356548123 -926,5.0,5.0,22.341631269034565,-82.8291478657789 -926,5.0,6.0,-3.590210423980992,11.02611441072814 -926,5.0,7.0,-6.289308176100628,22.0125786163522 -926,5.0,8.0,0.0,4.915840805411357 -926,5.0,9.0,0.0,1.8561002591115965 -926,5.0,27.0,-4.362844058012917,15.463571542897856 -926,6.0,4.0,-2.954020035961983,7.449267916773697 -926,6.0,5.0,-3.590210423980992,11.02611441072814 -926,6.0,6.0,6.544230459942975,-18.45668232750184 -926,7.0,5.0,-6.289308176100628,22.0125786163522 -926,7.0,7.0,7.733287237496075,-26.527493274828448 -926,7.0,27.0,-1.4439790613954469,4.540814658476248 -926,8.0,5.0,0.0,4.915840805411357 -926,8.0,8.0,0.0,-18.706293706293707 -926,8.0,9.0,0.0,9.090909090909092 -926,8.0,10.0,0.0,4.807692307692308 -926,9.0,5.0,0.0,1.8561002591115965 -926,9.0,8.0,0.0,9.090909090909092 -926,9.0,9.0,9.506003688808882,-31.06631294767834 -926,9.0,19.0,-1.7848303152666305,3.98535828943083 -926,9.0,20.0,-5.101853820159654,10.98071411292983 -926,9.0,21.0,-2.619319553382597,5.400770303329455 -926,10.0,8.0,0.0,4.807692307692308 -926,10.0,10.0,0.0,-4.807692307692308 -926,11.0,3.0,0.0,4.191255364806866 -926,11.0,11.0,6.573961583776156,-24.424167659260668 -926,11.0,12.0,0.0,7.142857142857143 -926,11.0,13.0,-1.5265676088395577,3.1734252729654173 -926,11.0,14.0,-3.0953961826564296,6.097275864326261 -926,11.0,15.0,-1.9519977922801688,4.104359379111847 -926,12.0,11.0,0.0,7.142857142857143 -926,12.0,12.0,0.0,-7.142857142857143 -926,13.0,11.0,-1.5265676088395577,3.1734252729654173 -926,13.0,13.0,4.01751987283902,-5.424299332335067 -926,13.0,14.0,-2.4909522639994623,2.250874059369649 -926,14.0,11.0,-3.0953961826564296,6.097275864326261 -926,14.0,13.0,-2.4909522639994623,2.250874059369649 -926,14.0,14.0,9.365498545964757,-16.01163373210796 -926,14.0,17.0,-1.8108011504072024,3.687418931630696 -926,14.0,22.0,-1.9683489489016612,3.976064876781356 -926,15.0,11.0,-1.9519977922801688,4.104359379111847 -926,15.0,15.0,3.271064728633931,-8.94513365126506 -926,15.0,16.0,-1.3190669363537617,4.8407742721532125 -926,16.0,15.0,-1.3190669363537617,4.8407742721532125 -926,16.0,16.0,1.3190669363537617,-4.8407742721532125 -926,17.0,14.0,-1.8108011504072024,3.687418931630696 -926,17.0,17.0,4.886487584415919,-9.906177730909668 -926,17.0,18.0,-3.0756864340087167,6.218758799278971 -926,18.0,17.0,-3.0756864340087167,6.218758799278971 -926,18.0,18.0,8.958039375185187,-17.98346468163191 -926,18.0,19.0,-5.88235294117647,11.76470588235294 -926,19.0,9.0,-1.7848303152666305,3.98535828943083 -926,19.0,18.0,-5.88235294117647,11.76470588235294 -926,19.0,19.0,7.6671832564431,-15.75006417178377 -926,20.0,9.0,-5.101853820159654,10.98071411292983 -926,20.0,20.0,21.876495189895888,-45.10843276170355 -926,20.0,21.0,-16.774641369736234,34.127718648773715 -926,21.0,9.0,-2.619319553382597,5.400770303329455 -926,21.0,20.0,-16.774641369736234,34.127718648773715 -926,21.0,21.0,21.93449907537439,-43.48289181517921 -926,21.0,23.0,-2.5405381522555563,3.95440286307604 -926,22.0,14.0,-1.9683489489016612,3.976064876781356 -926,22.0,22.0,3.429754555384988,-6.965303617315433 -926,22.0,23.0,-1.4614056064833263,2.989238740534077 -926,23.0,21.0,-2.5405381522555563,3.95440286307604 -926,23.0,22.0,-1.4614056064833263,2.989238740534077 -926,23.0,23.0,5.311836702613133,-9.188263657315172 -926,23.0,24.0,-1.3098929438742493,2.287622053705056 -926,24.0,23.0,-1.3098929438742493,2.287622053705056 -926,24.0,24.0,4.495715080321987,-7.864978761969621 -926,24.0,25.0,-1.2165301194494855,1.8171440463475024 -926,24.0,26.0,-1.9692920169982515,3.760212661917064 -926,25.0,24.0,-1.2165301194494855,1.8171440463475024 -926,25.0,25.0,1.2165301194494855,-1.8171440463475024 -926,26.0,24.0,-1.9692920169982515,3.760212661917064 -926,26.0,26.0,3.652281470778589,-9.46044252232512 -926,26.0,27.0,0.0,2.608731947574922 -926,26.0,28.0,-0.99553355095268,1.881005840357816 -926,26.0,29.0,-0.6874559028276572,1.293971494797717 -926,27.0,5.0,-4.362844058012917,15.463571542897856 -926,27.0,7.0,-1.4439790613954469,4.540814658476248 -926,27.0,26.0,0.0,2.608731947574922 -926,27.0,27.0,5.806823119408364,-22.67145722159613 -926,28.0,26.0,-0.99553355095268,1.881005840357816 -926,28.0,28.0,1.9075867579849564,-3.604364401207048 -926,28.0,29.0,-0.9120532070322764,1.7233585608492326 -926,29.0,26.0,-0.6874559028276572,1.293971494797717 -926,29.0,28.0,-0.9120532070322764,1.7233585608492326 -926,29.0,29.0,1.5995091098599337,-3.0173300556469496 -927,0.0,0.0,6.765516048652632,-21.23160167089863 -927,0.0,1.0,-5.224646179885656,15.646726840803398 -927,0.0,2.0,-1.5408698687669766,5.631674830095234 -927,1.0,0.0,-5.224646179885656,15.646726840803398 -927,1.0,1.0,9.75228216552403,-30.648662892676068 -927,1.0,3.0,-1.7055303166990268,5.1973792282565086 -927,1.0,4.0,-1.1359607881738778,4.772479328281356 -927,1.0,5.0,-1.6861448807654689,5.116477495334806 -927,2.0,0.0,-1.5408698687669766,5.631674830095234 -927,2.0,2.0,9.736318911079088,-29.13794745915803 -927,2.0,3.0,-8.19544904231211,23.5308726290628 -927,3.0,1.0,-1.7055303166990268,5.1973792282565086 -927,3.0,2.0,-8.19544904231211,23.5308726290628 -927,3.0,3.0,16.314103089185693,-55.509410535254254 -927,3.0,5.0,-6.413123730174556,22.31120356548123 -927,3.0,11.0,0.0,4.191255364806866 -927,4.0,1.0,-1.1359607881738778,4.772479328281356 -927,4.0,4.0,4.089980824135861,-12.190647245055052 -927,4.0,6.0,-2.954020035961983,7.449267916773697 -927,5.0,1.0,-1.6861448807654689,5.116477495334806 -927,5.0,3.0,-6.413123730174556,22.31120356548123 -927,5.0,5.0,16.052323092933932,-60.8210692494267 -927,5.0,6.0,-3.590210423980992,11.02611441072814 -927,5.0,8.0,0.0,4.915840805411357 -927,5.0,9.0,0.0,1.8561002591115965 -927,5.0,27.0,-4.362844058012917,15.463571542897856 -927,6.0,4.0,-2.954020035961983,7.449267916773697 -927,6.0,5.0,-3.590210423980992,11.02611441072814 -927,6.0,6.0,6.544230459942975,-18.45668232750184 -927,7.0,7.0,1.4439790613954469,-4.519414658476248 -927,7.0,27.0,-1.4439790613954469,4.540814658476248 -927,8.0,5.0,0.0,4.915840805411357 -927,8.0,8.0,0.0,-9.615384615384617 -927,8.0,10.0,0.0,4.807692307692308 -927,9.0,5.0,0.0,1.8561002591115965 -927,9.0,9.0,13.462042814524237,-32.29285157661331 -927,9.0,16.0,-3.956039125715353,10.317447719844054 -927,9.0,19.0,-1.7848303152666305,3.98535828943083 -927,9.0,20.0,-5.101853820159654,10.98071411292983 -927,9.0,21.0,-2.619319553382597,5.400770303329455 -927,10.0,8.0,0.0,4.807692307692308 -927,10.0,10.0,0.0,-4.807692307692308 -927,11.0,3.0,0.0,4.191255364806866 -927,11.0,11.0,6.573961583776156,-24.424167659260668 -927,11.0,12.0,0.0,7.142857142857143 -927,11.0,13.0,-1.5265676088395577,3.1734252729654173 -927,11.0,14.0,-3.0953961826564296,6.097275864326261 -927,11.0,15.0,-1.9519977922801688,4.104359379111847 -927,12.0,11.0,0.0,7.142857142857143 -927,12.0,12.0,0.0,-7.142857142857143 -927,13.0,11.0,-1.5265676088395577,3.1734252729654173 -927,13.0,13.0,4.01751987283902,-5.424299332335067 -927,13.0,14.0,-2.4909522639994623,2.250874059369649 -927,14.0,11.0,-3.0953961826564296,6.097275864326261 -927,14.0,13.0,-2.4909522639994623,2.250874059369649 -927,14.0,14.0,9.365498545964757,-16.01163373210796 -927,14.0,17.0,-1.8108011504072024,3.687418931630696 -927,14.0,22.0,-1.9683489489016612,3.976064876781356 -927,15.0,11.0,-1.9519977922801688,4.104359379111847 -927,15.0,15.0,3.271064728633931,-8.94513365126506 -927,15.0,16.0,-1.3190669363537617,4.8407742721532125 -927,16.0,9.0,-3.956039125715353,10.317447719844054 -927,16.0,15.0,-1.3190669363537617,4.8407742721532125 -927,16.0,16.0,5.275106062069114,-15.158221991997266 -927,17.0,14.0,-1.8108011504072024,3.687418931630696 -927,17.0,17.0,4.886487584415919,-9.906177730909668 -927,17.0,18.0,-3.0756864340087167,6.218758799278971 -927,18.0,17.0,-3.0756864340087167,6.218758799278971 -927,18.0,18.0,8.958039375185187,-17.98346468163191 -927,18.0,19.0,-5.88235294117647,11.76470588235294 -927,19.0,9.0,-1.7848303152666305,3.98535828943083 -927,19.0,18.0,-5.88235294117647,11.76470588235294 -927,19.0,19.0,7.6671832564431,-15.75006417178377 -927,20.0,9.0,-5.101853820159654,10.98071411292983 -927,20.0,20.0,21.876495189895888,-45.10843276170355 -927,20.0,21.0,-16.774641369736234,34.127718648773715 -927,21.0,9.0,-2.619319553382597,5.400770303329455 -927,21.0,20.0,-16.774641369736234,34.127718648773715 -927,21.0,21.0,21.93449907537439,-43.48289181517921 -927,21.0,23.0,-2.5405381522555563,3.95440286307604 -927,22.0,14.0,-1.9683489489016612,3.976064876781356 -927,22.0,22.0,3.429754555384988,-6.965303617315433 -927,22.0,23.0,-1.4614056064833263,2.989238740534077 -927,23.0,21.0,-2.5405381522555563,3.95440286307604 -927,23.0,22.0,-1.4614056064833263,2.989238740534077 -927,23.0,23.0,5.311836702613133,-9.188263657315172 -927,23.0,24.0,-1.3098929438742493,2.287622053705056 -927,24.0,23.0,-1.3098929438742493,2.287622053705056 -927,24.0,24.0,4.495715080321987,-7.864978761969621 -927,24.0,25.0,-1.2165301194494855,1.8171440463475024 -927,24.0,26.0,-1.9692920169982515,3.760212661917064 -927,25.0,24.0,-1.2165301194494855,1.8171440463475024 -927,25.0,25.0,1.2165301194494855,-1.8171440463475024 -927,26.0,24.0,-1.9692920169982515,3.760212661917064 -927,26.0,26.0,3.652281470778589,-9.46044252232512 -927,26.0,27.0,0.0,2.608731947574922 -927,26.0,28.0,-0.99553355095268,1.881005840357816 -927,26.0,29.0,-0.6874559028276572,1.293971494797717 -927,27.0,5.0,-4.362844058012917,15.463571542897856 -927,27.0,7.0,-1.4439790613954469,4.540814658476248 -927,27.0,26.0,0.0,2.608731947574922 -927,27.0,27.0,5.806823119408364,-22.67145722159613 -927,28.0,26.0,-0.99553355095268,1.881005840357816 -927,28.0,28.0,1.9075867579849564,-3.604364401207048 -927,28.0,29.0,-0.9120532070322764,1.7233585608492326 -927,29.0,26.0,-0.6874559028276572,1.293971494797717 -927,29.0,28.0,-0.9120532070322764,1.7233585608492326 -927,29.0,29.0,1.5995091098599337,-3.0173300556469496 -928,0.0,0.0,6.765516048652632,-21.23160167089863 -928,0.0,1.0,-5.224646179885656,15.646726840803398 -928,0.0,2.0,-1.5408698687669766,5.631674830095234 -928,1.0,0.0,-5.224646179885656,15.646726840803398 -928,1.0,1.0,9.75228216552403,-30.648662892676068 -928,1.0,3.0,-1.7055303166990268,5.1973792282565086 -928,1.0,4.0,-1.1359607881738778,4.772479328281356 -928,1.0,5.0,-1.6861448807654689,5.116477495334806 -928,2.0,0.0,-1.5408698687669766,5.631674830095234 -928,2.0,2.0,9.736318911079088,-29.13794745915803 -928,2.0,3.0,-8.19544904231211,23.5308726290628 -928,3.0,1.0,-1.7055303166990268,5.1973792282565086 -928,3.0,2.0,-8.19544904231211,23.5308726290628 -928,3.0,3.0,16.314103089185693,-55.509410535254254 -928,3.0,5.0,-6.413123730174556,22.31120356548123 -928,3.0,11.0,0.0,4.191255364806866 -928,4.0,1.0,-1.1359607881738778,4.772479328281356 -928,4.0,4.0,4.089980824135861,-12.190647245055052 -928,4.0,6.0,-2.954020035961983,7.449267916773697 -928,5.0,1.0,-1.6861448807654689,5.116477495334806 -928,5.0,3.0,-6.413123730174556,22.31120356548123 -928,5.0,5.0,18.75142084505357,-71.81153345505078 -928,5.0,7.0,-6.289308176100628,22.0125786163522 -928,5.0,8.0,0.0,4.915840805411357 -928,5.0,9.0,0.0,1.8561002591115965 -928,5.0,27.0,-4.362844058012917,15.463571542897856 -928,6.0,4.0,-2.954020035961983,7.449267916773697 -928,6.0,6.0,2.954020035961983,-7.439067916773697 -928,7.0,5.0,-6.289308176100628,22.0125786163522 -928,7.0,7.0,7.733287237496075,-26.527493274828448 -928,7.0,27.0,-1.4439790613954469,4.540814658476248 -928,8.0,5.0,0.0,4.915840805411357 -928,8.0,8.0,0.0,-9.615384615384617 -928,8.0,10.0,0.0,4.807692307692308 -928,9.0,5.0,0.0,1.8561002591115965 -928,9.0,9.0,8.36018899436458,-21.31213746368348 -928,9.0,16.0,-3.956039125715353,10.317447719844054 -928,9.0,19.0,-1.7848303152666305,3.98535828943083 -928,9.0,21.0,-2.619319553382597,5.400770303329455 -928,10.0,8.0,0.0,4.807692307692308 -928,10.0,10.0,0.0,-4.807692307692308 -928,11.0,3.0,0.0,4.191255364806866 -928,11.0,11.0,6.573961583776156,-24.424167659260668 -928,11.0,12.0,0.0,7.142857142857143 -928,11.0,13.0,-1.5265676088395577,3.1734252729654173 -928,11.0,14.0,-3.0953961826564296,6.097275864326261 -928,11.0,15.0,-1.9519977922801688,4.104359379111847 -928,12.0,11.0,0.0,7.142857142857143 -928,12.0,12.0,0.0,-7.142857142857143 -928,13.0,11.0,-1.5265676088395577,3.1734252729654173 -928,13.0,13.0,4.01751987283902,-5.424299332335067 -928,13.0,14.0,-2.4909522639994623,2.250874059369649 -928,14.0,11.0,-3.0953961826564296,6.097275864326261 -928,14.0,13.0,-2.4909522639994623,2.250874059369649 -928,14.0,14.0,9.365498545964757,-16.01163373210796 -928,14.0,17.0,-1.8108011504072024,3.687418931630696 -928,14.0,22.0,-1.9683489489016612,3.976064876781356 -928,15.0,11.0,-1.9519977922801688,4.104359379111847 -928,15.0,15.0,3.271064728633931,-8.94513365126506 -928,15.0,16.0,-1.3190669363537617,4.8407742721532125 -928,16.0,9.0,-3.956039125715353,10.317447719844054 -928,16.0,15.0,-1.3190669363537617,4.8407742721532125 -928,16.0,16.0,5.275106062069114,-15.158221991997266 -928,17.0,14.0,-1.8108011504072024,3.687418931630696 -928,17.0,17.0,4.886487584415919,-9.906177730909668 -928,17.0,18.0,-3.0756864340087167,6.218758799278971 -928,18.0,17.0,-3.0756864340087167,6.218758799278971 -928,18.0,18.0,3.0756864340087167,-6.218758799278971 -928,19.0,9.0,-1.7848303152666305,3.98535828943083 -928,19.0,19.0,1.7848303152666305,-3.98535828943083 -928,20.0,20.0,16.774641369736234,-34.127718648773715 -928,20.0,21.0,-16.774641369736234,34.127718648773715 -928,21.0,9.0,-2.619319553382597,5.400770303329455 -928,21.0,20.0,-16.774641369736234,34.127718648773715 -928,21.0,21.0,21.93449907537439,-43.48289181517921 -928,21.0,23.0,-2.5405381522555563,3.95440286307604 -928,22.0,14.0,-1.9683489489016612,3.976064876781356 -928,22.0,22.0,3.429754555384988,-6.965303617315433 -928,22.0,23.0,-1.4614056064833263,2.989238740534077 -928,23.0,21.0,-2.5405381522555563,3.95440286307604 -928,23.0,22.0,-1.4614056064833263,2.989238740534077 -928,23.0,23.0,5.311836702613133,-9.188263657315172 -928,23.0,24.0,-1.3098929438742493,2.287622053705056 -928,24.0,23.0,-1.3098929438742493,2.287622053705056 -928,24.0,24.0,4.495715080321987,-7.864978761969621 -928,24.0,25.0,-1.2165301194494855,1.8171440463475024 -928,24.0,26.0,-1.9692920169982515,3.760212661917064 -928,25.0,24.0,-1.2165301194494855,1.8171440463475024 -928,25.0,25.0,1.2165301194494855,-1.8171440463475024 -928,26.0,24.0,-1.9692920169982515,3.760212661917064 -928,26.0,26.0,3.652281470778589,-9.46044252232512 -928,26.0,27.0,0.0,2.608731947574922 -928,26.0,28.0,-0.99553355095268,1.881005840357816 -928,26.0,29.0,-0.6874559028276572,1.293971494797717 -928,27.0,5.0,-4.362844058012917,15.463571542897856 -928,27.0,7.0,-1.4439790613954469,4.540814658476248 -928,27.0,26.0,0.0,2.608731947574922 -928,27.0,27.0,5.806823119408364,-22.67145722159613 -928,28.0,26.0,-0.99553355095268,1.881005840357816 -928,28.0,28.0,1.9075867579849564,-3.604364401207048 -928,28.0,29.0,-0.9120532070322764,1.7233585608492326 -928,29.0,26.0,-0.6874559028276572,1.293971494797717 -928,29.0,28.0,-0.9120532070322764,1.7233585608492326 -928,29.0,29.0,1.5995091098599337,-3.0173300556469496 -929,0.0,0.0,6.765516048652632,-21.23160167089863 -929,0.0,1.0,-5.224646179885656,15.646726840803398 -929,0.0,2.0,-1.5408698687669766,5.631674830095234 -929,1.0,0.0,-5.224646179885656,15.646726840803398 -929,1.0,1.0,9.75228216552403,-30.648662892676068 -929,1.0,3.0,-1.7055303166990268,5.1973792282565086 -929,1.0,4.0,-1.1359607881738778,4.772479328281356 -929,1.0,5.0,-1.6861448807654689,5.116477495334806 -929,2.0,0.0,-1.5408698687669766,5.631674830095234 -929,2.0,2.0,9.736318911079088,-29.13794745915803 -929,2.0,3.0,-8.19544904231211,23.5308726290628 -929,3.0,1.0,-1.7055303166990268,5.1973792282565086 -929,3.0,2.0,-8.19544904231211,23.5308726290628 -929,3.0,3.0,16.314103089185693,-55.509410535254254 -929,3.0,5.0,-6.413123730174556,22.31120356548123 -929,3.0,11.0,0.0,4.191255364806866 -929,4.0,1.0,-1.1359607881738778,4.772479328281356 -929,4.0,4.0,4.089980824135861,-12.190647245055052 -929,4.0,6.0,-2.954020035961983,7.449267916773697 -929,5.0,1.0,-1.6861448807654689,5.116477495334806 -929,5.0,3.0,-6.413123730174556,22.31120356548123 -929,5.0,5.0,17.978787211021647,-65.45659617931904 -929,5.0,6.0,-3.590210423980992,11.02611441072814 -929,5.0,7.0,-6.289308176100628,22.0125786163522 -929,5.0,8.0,0.0,4.915840805411357 -929,6.0,4.0,-2.954020035961983,7.449267916773697 -929,6.0,5.0,-3.590210423980992,11.02611441072814 -929,6.0,6.0,6.544230459942975,-18.45668232750184 -929,7.0,5.0,-6.289308176100628,22.0125786163522 -929,7.0,7.0,7.733287237496075,-26.527493274828448 -929,7.0,27.0,-1.4439790613954469,4.540814658476248 -929,8.0,5.0,0.0,4.915840805411357 -929,8.0,8.0,0.0,-18.706293706293707 -929,8.0,9.0,0.0,9.090909090909092 -929,8.0,10.0,0.0,4.807692307692308 -929,9.0,8.0,0.0,9.090909090909092 -929,9.0,9.0,9.506003688808882,-29.267751796599203 -929,9.0,19.0,-1.7848303152666305,3.98535828943083 -929,9.0,20.0,-5.101853820159654,10.98071411292983 -929,9.0,21.0,-2.619319553382597,5.400770303329455 -929,10.0,8.0,0.0,4.807692307692308 -929,10.0,10.0,0.0,-4.807692307692308 -929,11.0,3.0,0.0,4.191255364806866 -929,11.0,11.0,6.573961583776156,-24.424167659260668 -929,11.0,12.0,0.0,7.142857142857143 -929,11.0,13.0,-1.5265676088395577,3.1734252729654173 -929,11.0,14.0,-3.0953961826564296,6.097275864326261 -929,11.0,15.0,-1.9519977922801688,4.104359379111847 -929,12.0,11.0,0.0,7.142857142857143 -929,12.0,12.0,0.0,-7.142857142857143 -929,13.0,11.0,-1.5265676088395577,3.1734252729654173 -929,13.0,13.0,4.01751987283902,-5.424299332335067 -929,13.0,14.0,-2.4909522639994623,2.250874059369649 -929,14.0,11.0,-3.0953961826564296,6.097275864326261 -929,14.0,13.0,-2.4909522639994623,2.250874059369649 -929,14.0,14.0,9.365498545964757,-16.01163373210796 -929,14.0,17.0,-1.8108011504072024,3.687418931630696 -929,14.0,22.0,-1.9683489489016612,3.976064876781356 -929,15.0,11.0,-1.9519977922801688,4.104359379111847 -929,15.0,15.0,3.271064728633931,-8.94513365126506 -929,15.0,16.0,-1.3190669363537617,4.8407742721532125 -929,16.0,15.0,-1.3190669363537617,4.8407742721532125 -929,16.0,16.0,1.3190669363537617,-4.8407742721532125 -929,17.0,14.0,-1.8108011504072024,3.687418931630696 -929,17.0,17.0,4.886487584415919,-9.906177730909668 -929,17.0,18.0,-3.0756864340087167,6.218758799278971 -929,18.0,17.0,-3.0756864340087167,6.218758799278971 -929,18.0,18.0,8.958039375185187,-17.98346468163191 -929,18.0,19.0,-5.88235294117647,11.76470588235294 -929,19.0,9.0,-1.7848303152666305,3.98535828943083 -929,19.0,18.0,-5.88235294117647,11.76470588235294 -929,19.0,19.0,7.6671832564431,-15.75006417178377 -929,20.0,9.0,-5.101853820159654,10.98071411292983 -929,20.0,20.0,21.876495189895888,-45.10843276170355 -929,20.0,21.0,-16.774641369736234,34.127718648773715 -929,21.0,9.0,-2.619319553382597,5.400770303329455 -929,21.0,20.0,-16.774641369736234,34.127718648773715 -929,21.0,21.0,21.93449907537439,-43.48289181517921 -929,21.0,23.0,-2.5405381522555563,3.95440286307604 -929,22.0,14.0,-1.9683489489016612,3.976064876781356 -929,22.0,22.0,3.429754555384988,-6.965303617315433 -929,22.0,23.0,-1.4614056064833263,2.989238740534077 -929,23.0,21.0,-2.5405381522555563,3.95440286307604 -929,23.0,22.0,-1.4614056064833263,2.989238740534077 -929,23.0,23.0,5.311836702613133,-9.188263657315172 -929,23.0,24.0,-1.3098929438742493,2.287622053705056 -929,24.0,23.0,-1.3098929438742493,2.287622053705056 -929,24.0,24.0,4.495715080321987,-7.864978761969621 -929,24.0,25.0,-1.2165301194494855,1.8171440463475024 -929,24.0,26.0,-1.9692920169982515,3.760212661917064 -929,25.0,24.0,-1.2165301194494855,1.8171440463475024 -929,25.0,25.0,1.2165301194494855,-1.8171440463475024 -929,26.0,24.0,-1.9692920169982515,3.760212661917064 -929,26.0,26.0,2.9648255679509314,-8.166471027527404 -929,26.0,27.0,0.0,2.608731947574922 -929,26.0,28.0,-0.99553355095268,1.881005840357816 -929,27.0,7.0,-1.4439790613954469,4.540814658476248 -929,27.0,26.0,0.0,2.608731947574922 -929,27.0,27.0,1.4439790613954469,-7.214385678698274 -929,28.0,26.0,-0.99553355095268,1.881005840357816 -929,28.0,28.0,1.9075867579849564,-3.604364401207048 -929,28.0,29.0,-0.9120532070322764,1.7233585608492326 -929,29.0,28.0,-0.9120532070322764,1.7233585608492326 -929,29.0,29.0,0.9120532070322764,-1.7233585608492326 -930,0.0,0.0,6.765516048652632,-21.23160167089863 -930,0.0,1.0,-5.224646179885656,15.646726840803398 -930,0.0,2.0,-1.5408698687669766,5.631674830095234 -930,1.0,0.0,-5.224646179885656,15.646726840803398 -930,1.0,1.0,9.75228216552403,-30.648662892676068 -930,1.0,3.0,-1.7055303166990268,5.1973792282565086 -930,1.0,4.0,-1.1359607881738778,4.772479328281356 -930,1.0,5.0,-1.6861448807654689,5.116477495334806 -930,2.0,0.0,-1.5408698687669766,5.631674830095234 -930,2.0,2.0,9.736318911079088,-29.13794745915803 -930,2.0,3.0,-8.19544904231211,23.5308726290628 -930,3.0,1.0,-1.7055303166990268,5.1973792282565086 -930,3.0,2.0,-8.19544904231211,23.5308726290628 -930,3.0,3.0,16.314103089185693,-55.509410535254254 -930,3.0,5.0,-6.413123730174556,22.31120356548123 -930,3.0,11.0,0.0,4.191255364806866 -930,4.0,1.0,-1.1359607881738778,4.772479328281356 -930,4.0,4.0,4.089980824135861,-12.190647245055052 -930,4.0,6.0,-2.954020035961983,7.449267916773697 -930,5.0,1.0,-1.6861448807654689,5.116477495334806 -930,5.0,3.0,-6.413123730174556,22.31120356548123 -930,5.0,5.0,16.052323092933932,-60.8210692494267 -930,5.0,6.0,-3.590210423980992,11.02611441072814 -930,5.0,8.0,0.0,4.915840805411357 -930,5.0,9.0,0.0,1.8561002591115965 -930,5.0,27.0,-4.362844058012917,15.463571542897856 -930,6.0,4.0,-2.954020035961983,7.449267916773697 -930,6.0,5.0,-3.590210423980992,11.02611441072814 -930,6.0,6.0,6.544230459942975,-18.45668232750184 -930,7.0,7.0,1.4439790613954469,-4.519414658476248 -930,7.0,27.0,-1.4439790613954469,4.540814658476248 -930,8.0,5.0,0.0,4.915840805411357 -930,8.0,8.0,0.0,-18.706293706293707 -930,8.0,9.0,0.0,9.090909090909092 -930,8.0,10.0,0.0,4.807692307692308 -930,9.0,5.0,0.0,1.8561002591115965 -930,9.0,8.0,0.0,9.090909090909092 -930,9.0,9.0,13.462042814524237,-41.3837606675224 -930,9.0,16.0,-3.956039125715353,10.317447719844054 -930,9.0,19.0,-1.7848303152666305,3.98535828943083 -930,9.0,20.0,-5.101853820159654,10.98071411292983 -930,9.0,21.0,-2.619319553382597,5.400770303329455 -930,10.0,8.0,0.0,4.807692307692308 -930,10.0,10.0,0.0,-4.807692307692308 -930,11.0,3.0,0.0,4.191255364806866 -930,11.0,11.0,6.573961583776156,-24.424167659260668 -930,11.0,12.0,0.0,7.142857142857143 -930,11.0,13.0,-1.5265676088395577,3.1734252729654173 -930,11.0,14.0,-3.0953961826564296,6.097275864326261 -930,11.0,15.0,-1.9519977922801688,4.104359379111847 -930,12.0,11.0,0.0,7.142857142857143 -930,12.0,12.0,0.0,-7.142857142857143 -930,13.0,11.0,-1.5265676088395577,3.1734252729654173 -930,13.0,13.0,4.01751987283902,-5.424299332335067 -930,13.0,14.0,-2.4909522639994623,2.250874059369649 -930,14.0,11.0,-3.0953961826564296,6.097275864326261 -930,14.0,13.0,-2.4909522639994623,2.250874059369649 -930,14.0,14.0,9.365498545964757,-16.01163373210796 -930,14.0,17.0,-1.8108011504072024,3.687418931630696 -930,14.0,22.0,-1.9683489489016612,3.976064876781356 -930,15.0,11.0,-1.9519977922801688,4.104359379111847 -930,15.0,15.0,3.271064728633931,-8.94513365126506 -930,15.0,16.0,-1.3190669363537617,4.8407742721532125 -930,16.0,9.0,-3.956039125715353,10.317447719844054 -930,16.0,15.0,-1.3190669363537617,4.8407742721532125 -930,16.0,16.0,5.275106062069114,-15.158221991997266 -930,17.0,14.0,-1.8108011504072024,3.687418931630696 -930,17.0,17.0,4.886487584415919,-9.906177730909668 -930,17.0,18.0,-3.0756864340087167,6.218758799278971 -930,18.0,17.0,-3.0756864340087167,6.218758799278971 -930,18.0,18.0,8.958039375185187,-17.98346468163191 -930,18.0,19.0,-5.88235294117647,11.76470588235294 -930,19.0,9.0,-1.7848303152666305,3.98535828943083 -930,19.0,18.0,-5.88235294117647,11.76470588235294 -930,19.0,19.0,7.6671832564431,-15.75006417178377 -930,20.0,9.0,-5.101853820159654,10.98071411292983 -930,20.0,20.0,21.876495189895888,-45.10843276170355 -930,20.0,21.0,-16.774641369736234,34.127718648773715 -930,21.0,9.0,-2.619319553382597,5.400770303329455 -930,21.0,20.0,-16.774641369736234,34.127718648773715 -930,21.0,21.0,21.93449907537439,-43.48289181517921 -930,21.0,23.0,-2.5405381522555563,3.95440286307604 -930,22.0,14.0,-1.9683489489016612,3.976064876781356 -930,22.0,22.0,3.429754555384988,-6.965303617315433 -930,22.0,23.0,-1.4614056064833263,2.989238740534077 -930,23.0,21.0,-2.5405381522555563,3.95440286307604 -930,23.0,22.0,-1.4614056064833263,2.989238740534077 -930,23.0,23.0,5.311836702613133,-9.188263657315172 -930,23.0,24.0,-1.3098929438742493,2.287622053705056 -930,24.0,23.0,-1.3098929438742493,2.287622053705056 -930,24.0,24.0,4.495715080321987,-7.864978761969621 -930,24.0,25.0,-1.2165301194494855,1.8171440463475024 -930,24.0,26.0,-1.9692920169982515,3.760212661917064 -930,25.0,24.0,-1.2165301194494855,1.8171440463475024 -930,25.0,25.0,1.2165301194494855,-1.8171440463475024 -930,26.0,24.0,-1.9692920169982515,3.760212661917064 -930,26.0,26.0,3.652281470778589,-9.46044252232512 -930,26.0,27.0,0.0,2.608731947574922 -930,26.0,28.0,-0.99553355095268,1.881005840357816 -930,26.0,29.0,-0.6874559028276572,1.293971494797717 -930,27.0,5.0,-4.362844058012917,15.463571542897856 -930,27.0,7.0,-1.4439790613954469,4.540814658476248 -930,27.0,26.0,0.0,2.608731947574922 -930,27.0,27.0,5.806823119408364,-22.67145722159613 -930,28.0,26.0,-0.99553355095268,1.881005840357816 -930,28.0,28.0,1.9075867579849564,-3.604364401207048 -930,28.0,29.0,-0.9120532070322764,1.7233585608492326 -930,29.0,26.0,-0.6874559028276572,1.293971494797717 -930,29.0,28.0,-0.9120532070322764,1.7233585608492326 -930,29.0,29.0,1.5995091098599337,-3.0173300556469496 -931,0.0,0.0,6.765516048652632,-21.23160167089863 -931,0.0,1.0,-5.224646179885656,15.646726840803398 -931,0.0,2.0,-1.5408698687669766,5.631674830095234 -931,1.0,0.0,-5.224646179885656,15.646726840803398 -931,1.0,1.0,9.75228216552403,-30.648662892676068 -931,1.0,3.0,-1.7055303166990268,5.1973792282565086 -931,1.0,4.0,-1.1359607881738778,4.772479328281356 -931,1.0,5.0,-1.6861448807654689,5.116477495334806 -931,2.0,0.0,-1.5408698687669766,5.631674830095234 -931,2.0,2.0,9.736318911079088,-29.13794745915803 -931,2.0,3.0,-8.19544904231211,23.5308726290628 -931,3.0,1.0,-1.7055303166990268,5.1973792282565086 -931,3.0,2.0,-8.19544904231211,23.5308726290628 -931,3.0,3.0,16.314103089185693,-55.509410535254254 -931,3.0,5.0,-6.413123730174556,22.31120356548123 -931,3.0,11.0,0.0,4.191255364806866 -931,4.0,1.0,-1.1359607881738778,4.772479328281356 -931,4.0,4.0,4.089980824135861,-12.190647245055052 -931,4.0,6.0,-2.954020035961983,7.449267916773697 -931,5.0,1.0,-1.6861448807654689,5.116477495334806 -931,5.0,3.0,-6.413123730174556,22.31120356548123 -931,5.0,5.0,22.341631269034565,-82.8291478657789 -931,5.0,6.0,-3.590210423980992,11.02611441072814 -931,5.0,7.0,-6.289308176100628,22.0125786163522 -931,5.0,8.0,0.0,4.915840805411357 -931,5.0,9.0,0.0,1.8561002591115965 -931,5.0,27.0,-4.362844058012917,15.463571542897856 -931,6.0,4.0,-2.954020035961983,7.449267916773697 -931,6.0,5.0,-3.590210423980992,11.02611441072814 -931,6.0,6.0,6.544230459942975,-18.45668232750184 -931,7.0,5.0,-6.289308176100628,22.0125786163522 -931,7.0,7.0,7.733287237496075,-26.527493274828448 -931,7.0,27.0,-1.4439790613954469,4.540814658476248 -931,8.0,5.0,0.0,4.915840805411357 -931,8.0,8.0,0.0,-18.706293706293707 -931,8.0,9.0,0.0,9.090909090909092 -931,8.0,10.0,0.0,4.807692307692308 -931,9.0,5.0,0.0,1.8561002591115965 -931,9.0,8.0,0.0,9.090909090909092 -931,9.0,9.0,13.462042814524237,-41.3837606675224 -931,9.0,16.0,-3.956039125715353,10.317447719844054 -931,9.0,19.0,-1.7848303152666305,3.98535828943083 -931,9.0,20.0,-5.101853820159654,10.98071411292983 -931,9.0,21.0,-2.619319553382597,5.400770303329455 -931,10.0,8.0,0.0,4.807692307692308 -931,10.0,10.0,0.0,-4.807692307692308 -931,11.0,3.0,0.0,4.191255364806866 -931,11.0,11.0,6.573961583776156,-24.424167659260668 -931,11.0,12.0,0.0,7.142857142857143 -931,11.0,13.0,-1.5265676088395577,3.1734252729654173 -931,11.0,14.0,-3.0953961826564296,6.097275864326261 -931,11.0,15.0,-1.9519977922801688,4.104359379111847 -931,12.0,11.0,0.0,7.142857142857143 -931,12.0,12.0,0.0,-7.142857142857143 -931,13.0,11.0,-1.5265676088395577,3.1734252729654173 -931,13.0,13.0,4.01751987283902,-5.424299332335067 -931,13.0,14.0,-2.4909522639994623,2.250874059369649 -931,14.0,11.0,-3.0953961826564296,6.097275864326261 -931,14.0,13.0,-2.4909522639994623,2.250874059369649 -931,14.0,14.0,9.365498545964757,-16.01163373210796 -931,14.0,17.0,-1.8108011504072024,3.687418931630696 -931,14.0,22.0,-1.9683489489016612,3.976064876781356 -931,15.0,11.0,-1.9519977922801688,4.104359379111847 -931,15.0,15.0,3.271064728633931,-8.94513365126506 -931,15.0,16.0,-1.3190669363537617,4.8407742721532125 -931,16.0,9.0,-3.956039125715353,10.317447719844054 -931,16.0,15.0,-1.3190669363537617,4.8407742721532125 -931,16.0,16.0,5.275106062069114,-15.158221991997266 -931,17.0,14.0,-1.8108011504072024,3.687418931630696 -931,17.0,17.0,4.886487584415919,-9.906177730909668 -931,17.0,18.0,-3.0756864340087167,6.218758799278971 -931,18.0,17.0,-3.0756864340087167,6.218758799278971 -931,18.0,18.0,8.958039375185187,-17.98346468163191 -931,18.0,19.0,-5.88235294117647,11.76470588235294 -931,19.0,9.0,-1.7848303152666305,3.98535828943083 -931,19.0,18.0,-5.88235294117647,11.76470588235294 -931,19.0,19.0,7.6671832564431,-15.75006417178377 -931,20.0,9.0,-5.101853820159654,10.98071411292983 -931,20.0,20.0,21.876495189895888,-45.10843276170355 -931,20.0,21.0,-16.774641369736234,34.127718648773715 -931,21.0,9.0,-2.619319553382597,5.400770303329455 -931,21.0,20.0,-16.774641369736234,34.127718648773715 -931,21.0,21.0,21.93449907537439,-43.48289181517921 -931,21.0,23.0,-2.5405381522555563,3.95440286307604 -931,22.0,14.0,-1.9683489489016612,3.976064876781356 -931,22.0,22.0,3.429754555384988,-6.965303617315433 -931,22.0,23.0,-1.4614056064833263,2.989238740534077 -931,23.0,21.0,-2.5405381522555563,3.95440286307604 -931,23.0,22.0,-1.4614056064833263,2.989238740534077 -931,23.0,23.0,5.311836702613133,-9.188263657315172 -931,23.0,24.0,-1.3098929438742493,2.287622053705056 -931,24.0,23.0,-1.3098929438742493,2.287622053705056 -931,24.0,24.0,4.495715080321987,-7.864978761969621 -931,24.0,25.0,-1.2165301194494855,1.8171440463475024 -931,24.0,26.0,-1.9692920169982515,3.760212661917064 -931,25.0,24.0,-1.2165301194494855,1.8171440463475024 -931,25.0,25.0,1.2165301194494855,-1.8171440463475024 -931,26.0,24.0,-1.9692920169982515,3.760212661917064 -931,26.0,26.0,3.652281470778589,-9.46044252232512 -931,26.0,27.0,0.0,2.608731947574922 -931,26.0,28.0,-0.99553355095268,1.881005840357816 -931,26.0,29.0,-0.6874559028276572,1.293971494797717 -931,27.0,5.0,-4.362844058012917,15.463571542897856 -931,27.0,7.0,-1.4439790613954469,4.540814658476248 -931,27.0,26.0,0.0,2.608731947574922 -931,27.0,27.0,5.806823119408364,-22.67145722159613 -931,28.0,26.0,-0.99553355095268,1.881005840357816 -931,28.0,28.0,1.9075867579849564,-3.604364401207048 -931,28.0,29.0,-0.9120532070322764,1.7233585608492326 -931,29.0,26.0,-0.6874559028276572,1.293971494797717 -931,29.0,28.0,-0.9120532070322764,1.7233585608492326 -931,29.0,29.0,1.5995091098599337,-3.0173300556469496 -932,0.0,0.0,6.765516048652632,-21.23160167089863 -932,0.0,1.0,-5.224646179885656,15.646726840803398 -932,0.0,2.0,-1.5408698687669766,5.631674830095234 -932,1.0,0.0,-5.224646179885656,15.646726840803398 -932,1.0,1.0,9.75228216552403,-30.648662892676068 -932,1.0,3.0,-1.7055303166990268,5.1973792282565086 -932,1.0,4.0,-1.1359607881738778,4.772479328281356 -932,1.0,5.0,-1.6861448807654689,5.116477495334806 -932,2.0,0.0,-1.5408698687669766,5.631674830095234 -932,2.0,2.0,9.736318911079088,-29.13794745915803 -932,2.0,3.0,-8.19544904231211,23.5308726290628 -932,3.0,1.0,-1.7055303166990268,5.1973792282565086 -932,3.0,2.0,-8.19544904231211,23.5308726290628 -932,3.0,3.0,16.314103089185693,-55.509410535254254 -932,3.0,5.0,-6.413123730174556,22.31120356548123 -932,3.0,11.0,0.0,4.191255364806866 -932,4.0,1.0,-1.1359607881738778,4.772479328281356 -932,4.0,4.0,1.1359607881738778,-4.751579328281355 -932,5.0,1.0,-1.6861448807654689,5.116477495334806 -932,5.0,3.0,-6.413123730174556,22.31120356548123 -932,5.0,5.0,22.341631269034565,-82.8291478657789 -932,5.0,6.0,-3.590210423980992,11.02611441072814 -932,5.0,7.0,-6.289308176100628,22.0125786163522 -932,5.0,8.0,0.0,4.915840805411357 -932,5.0,9.0,0.0,1.8561002591115965 -932,5.0,27.0,-4.362844058012917,15.463571542897856 -932,6.0,5.0,-3.590210423980992,11.02611441072814 -932,6.0,6.0,3.590210423980992,-11.01761441072814 -932,7.0,5.0,-6.289308176100628,22.0125786163522 -932,7.0,7.0,7.733287237496075,-26.527493274828448 -932,7.0,27.0,-1.4439790613954469,4.540814658476248 -932,8.0,5.0,0.0,4.915840805411357 -932,8.0,8.0,0.0,-18.706293706293707 -932,8.0,9.0,0.0,9.090909090909092 -932,8.0,10.0,0.0,4.807692307692308 -932,9.0,5.0,0.0,1.8561002591115965 -932,9.0,8.0,0.0,9.090909090909092 -932,9.0,9.0,9.506003688808882,-31.06631294767834 -932,9.0,19.0,-1.7848303152666305,3.98535828943083 -932,9.0,20.0,-5.101853820159654,10.98071411292983 -932,9.0,21.0,-2.619319553382597,5.400770303329455 -932,10.0,8.0,0.0,4.807692307692308 -932,10.0,10.0,0.0,-4.807692307692308 -932,11.0,3.0,0.0,4.191255364806866 -932,11.0,11.0,6.573961583776156,-24.424167659260668 -932,11.0,12.0,0.0,7.142857142857143 -932,11.0,13.0,-1.5265676088395577,3.1734252729654173 -932,11.0,14.0,-3.0953961826564296,6.097275864326261 -932,11.0,15.0,-1.9519977922801688,4.104359379111847 -932,12.0,11.0,0.0,7.142857142857143 -932,12.0,12.0,0.0,-7.142857142857143 -932,13.0,11.0,-1.5265676088395577,3.1734252729654173 -932,13.0,13.0,4.01751987283902,-5.424299332335067 -932,13.0,14.0,-2.4909522639994623,2.250874059369649 -932,14.0,11.0,-3.0953961826564296,6.097275864326261 -932,14.0,13.0,-2.4909522639994623,2.250874059369649 -932,14.0,14.0,9.365498545964757,-16.01163373210796 -932,14.0,17.0,-1.8108011504072024,3.687418931630696 -932,14.0,22.0,-1.9683489489016612,3.976064876781356 -932,15.0,11.0,-1.9519977922801688,4.104359379111847 -932,15.0,15.0,3.271064728633931,-8.94513365126506 -932,15.0,16.0,-1.3190669363537617,4.8407742721532125 -932,16.0,15.0,-1.3190669363537617,4.8407742721532125 -932,16.0,16.0,1.3190669363537617,-4.8407742721532125 -932,17.0,14.0,-1.8108011504072024,3.687418931630696 -932,17.0,17.0,4.886487584415919,-9.906177730909668 -932,17.0,18.0,-3.0756864340087167,6.218758799278971 -932,18.0,17.0,-3.0756864340087167,6.218758799278971 -932,18.0,18.0,3.0756864340087167,-6.218758799278971 -932,19.0,9.0,-1.7848303152666305,3.98535828943083 -932,19.0,19.0,1.7848303152666305,-3.98535828943083 -932,20.0,9.0,-5.101853820159654,10.98071411292983 -932,20.0,20.0,21.876495189895888,-45.10843276170355 -932,20.0,21.0,-16.774641369736234,34.127718648773715 -932,21.0,9.0,-2.619319553382597,5.400770303329455 -932,21.0,20.0,-16.774641369736234,34.127718648773715 -932,21.0,21.0,21.93449907537439,-43.48289181517921 -932,21.0,23.0,-2.5405381522555563,3.95440286307604 -932,22.0,14.0,-1.9683489489016612,3.976064876781356 -932,22.0,22.0,3.429754555384988,-6.965303617315433 -932,22.0,23.0,-1.4614056064833263,2.989238740534077 -932,23.0,21.0,-2.5405381522555563,3.95440286307604 -932,23.0,22.0,-1.4614056064833263,2.989238740534077 -932,23.0,23.0,5.311836702613133,-9.188263657315172 -932,23.0,24.0,-1.3098929438742493,2.287622053705056 -932,24.0,23.0,-1.3098929438742493,2.287622053705056 -932,24.0,24.0,4.495715080321987,-7.864978761969621 -932,24.0,25.0,-1.2165301194494855,1.8171440463475024 -932,24.0,26.0,-1.9692920169982515,3.760212661917064 -932,25.0,24.0,-1.2165301194494855,1.8171440463475024 -932,25.0,25.0,1.2165301194494855,-1.8171440463475024 -932,26.0,24.0,-1.9692920169982515,3.760212661917064 -932,26.0,26.0,3.652281470778589,-9.46044252232512 -932,26.0,27.0,0.0,2.608731947574922 -932,26.0,28.0,-0.99553355095268,1.881005840357816 -932,26.0,29.0,-0.6874559028276572,1.293971494797717 -932,27.0,5.0,-4.362844058012917,15.463571542897856 -932,27.0,7.0,-1.4439790613954469,4.540814658476248 -932,27.0,26.0,0.0,2.608731947574922 -932,27.0,27.0,5.806823119408364,-22.67145722159613 -932,28.0,26.0,-0.99553355095268,1.881005840357816 -932,28.0,28.0,1.9075867579849564,-3.604364401207048 -932,28.0,29.0,-0.9120532070322764,1.7233585608492326 -932,29.0,26.0,-0.6874559028276572,1.293971494797717 -932,29.0,28.0,-0.9120532070322764,1.7233585608492326 -932,29.0,29.0,1.5995091098599337,-3.0173300556469496 -933,0.0,0.0,6.765516048652632,-21.23160167089863 -933,0.0,1.0,-5.224646179885656,15.646726840803398 -933,0.0,2.0,-1.5408698687669766,5.631674830095234 -933,1.0,0.0,-5.224646179885656,15.646726840803398 -933,1.0,1.0,9.75228216552403,-30.648662892676068 -933,1.0,3.0,-1.7055303166990268,5.1973792282565086 -933,1.0,4.0,-1.1359607881738778,4.772479328281356 -933,1.0,5.0,-1.6861448807654689,5.116477495334806 -933,2.0,0.0,-1.5408698687669766,5.631674830095234 -933,2.0,2.0,9.736318911079088,-29.13794745915803 -933,2.0,3.0,-8.19544904231211,23.5308726290628 -933,3.0,1.0,-1.7055303166990268,5.1973792282565086 -933,3.0,2.0,-8.19544904231211,23.5308726290628 -933,3.0,3.0,16.314103089185693,-55.509410535254254 -933,3.0,5.0,-6.413123730174556,22.31120356548123 -933,3.0,11.0,0.0,4.191255364806866 -933,4.0,1.0,-1.1359607881738778,4.772479328281356 -933,4.0,4.0,4.089980824135861,-12.190647245055052 -933,4.0,6.0,-2.954020035961983,7.449267916773697 -933,5.0,1.0,-1.6861448807654689,5.116477495334806 -933,5.0,3.0,-6.413123730174556,22.31120356548123 -933,5.0,5.0,22.341631269034565,-82.8291478657789 -933,5.0,6.0,-3.590210423980992,11.02611441072814 -933,5.0,7.0,-6.289308176100628,22.0125786163522 -933,5.0,8.0,0.0,4.915840805411357 -933,5.0,9.0,0.0,1.8561002591115965 -933,5.0,27.0,-4.362844058012917,15.463571542897856 -933,6.0,4.0,-2.954020035961983,7.449267916773697 -933,6.0,5.0,-3.590210423980992,11.02611441072814 -933,6.0,6.0,6.544230459942975,-18.45668232750184 -933,7.0,5.0,-6.289308176100628,22.0125786163522 -933,7.0,7.0,6.289308176100628,-22.0080786163522 -933,8.0,5.0,0.0,4.915840805411357 -933,8.0,8.0,0.0,-18.706293706293707 -933,8.0,9.0,0.0,9.090909090909092 -933,8.0,10.0,0.0,4.807692307692308 -933,9.0,5.0,0.0,1.8561002591115965 -933,9.0,8.0,0.0,9.090909090909092 -933,9.0,9.0,8.36018899436458,-30.40304655459257 -933,9.0,16.0,-3.956039125715353,10.317447719844054 -933,9.0,19.0,-1.7848303152666305,3.98535828943083 -933,9.0,21.0,-2.619319553382597,5.400770303329455 -933,10.0,8.0,0.0,4.807692307692308 -933,10.0,10.0,0.0,-4.807692307692308 -933,11.0,3.0,0.0,4.191255364806866 -933,11.0,11.0,6.573961583776156,-24.424167659260668 -933,11.0,12.0,0.0,7.142857142857143 -933,11.0,13.0,-1.5265676088395577,3.1734252729654173 -933,11.0,14.0,-3.0953961826564296,6.097275864326261 -933,11.0,15.0,-1.9519977922801688,4.104359379111847 -933,12.0,11.0,0.0,7.142857142857143 -933,12.0,12.0,0.0,-7.142857142857143 -933,13.0,11.0,-1.5265676088395577,3.1734252729654173 -933,13.0,13.0,4.01751987283902,-5.424299332335067 -933,13.0,14.0,-2.4909522639994623,2.250874059369649 -933,14.0,11.0,-3.0953961826564296,6.097275864326261 -933,14.0,13.0,-2.4909522639994623,2.250874059369649 -933,14.0,14.0,9.365498545964757,-16.01163373210796 -933,14.0,17.0,-1.8108011504072024,3.687418931630696 -933,14.0,22.0,-1.9683489489016612,3.976064876781356 -933,15.0,11.0,-1.9519977922801688,4.104359379111847 -933,15.0,15.0,3.271064728633931,-8.94513365126506 -933,15.0,16.0,-1.3190669363537617,4.8407742721532125 -933,16.0,9.0,-3.956039125715353,10.317447719844054 -933,16.0,15.0,-1.3190669363537617,4.8407742721532125 -933,16.0,16.0,5.275106062069114,-15.158221991997266 -933,17.0,14.0,-1.8108011504072024,3.687418931630696 -933,17.0,17.0,4.886487584415919,-9.906177730909668 -933,17.0,18.0,-3.0756864340087167,6.218758799278971 -933,18.0,17.0,-3.0756864340087167,6.218758799278971 -933,18.0,18.0,8.958039375185187,-17.98346468163191 -933,18.0,19.0,-5.88235294117647,11.76470588235294 -933,19.0,9.0,-1.7848303152666305,3.98535828943083 -933,19.0,18.0,-5.88235294117647,11.76470588235294 -933,19.0,19.0,7.6671832564431,-15.75006417178377 -933,20.0,20.0,16.774641369736234,-34.127718648773715 -933,20.0,21.0,-16.774641369736234,34.127718648773715 -933,21.0,9.0,-2.619319553382597,5.400770303329455 -933,21.0,20.0,-16.774641369736234,34.127718648773715 -933,21.0,21.0,21.93449907537439,-43.48289181517921 -933,21.0,23.0,-2.5405381522555563,3.95440286307604 -933,22.0,14.0,-1.9683489489016612,3.976064876781356 -933,22.0,22.0,3.429754555384988,-6.965303617315433 -933,22.0,23.0,-1.4614056064833263,2.989238740534077 -933,23.0,21.0,-2.5405381522555563,3.95440286307604 -933,23.0,22.0,-1.4614056064833263,2.989238740534077 -933,23.0,23.0,5.311836702613133,-9.188263657315172 -933,23.0,24.0,-1.3098929438742493,2.287622053705056 -933,24.0,23.0,-1.3098929438742493,2.287622053705056 -933,24.0,24.0,4.495715080321987,-7.864978761969621 -933,24.0,25.0,-1.2165301194494855,1.8171440463475024 -933,24.0,26.0,-1.9692920169982515,3.760212661917064 -933,25.0,24.0,-1.2165301194494855,1.8171440463475024 -933,25.0,25.0,1.2165301194494855,-1.8171440463475024 -933,26.0,24.0,-1.9692920169982515,3.760212661917064 -933,26.0,26.0,3.652281470778589,-9.46044252232512 -933,26.0,27.0,0.0,2.608731947574922 -933,26.0,28.0,-0.99553355095268,1.881005840357816 -933,26.0,29.0,-0.6874559028276572,1.293971494797717 -933,27.0,5.0,-4.362844058012917,15.463571542897856 -933,27.0,26.0,0.0,2.608731947574922 -933,27.0,27.0,4.362844058012917,-18.15204256311988 -933,28.0,26.0,-0.99553355095268,1.881005840357816 -933,28.0,28.0,1.9075867579849564,-3.604364401207048 -933,28.0,29.0,-0.9120532070322764,1.7233585608492326 -933,29.0,26.0,-0.6874559028276572,1.293971494797717 -933,29.0,28.0,-0.9120532070322764,1.7233585608492326 -933,29.0,29.0,1.5995091098599337,-3.0173300556469496 -934,0.0,0.0,6.765516048652632,-21.23160167089863 -934,0.0,1.0,-5.224646179885656,15.646726840803398 -934,0.0,2.0,-1.5408698687669766,5.631674830095234 -934,1.0,0.0,-5.224646179885656,15.646726840803398 -934,1.0,1.0,9.75228216552403,-30.648662892676068 -934,1.0,3.0,-1.7055303166990268,5.1973792282565086 -934,1.0,4.0,-1.1359607881738778,4.772479328281356 -934,1.0,5.0,-1.6861448807654689,5.116477495334806 -934,2.0,0.0,-1.5408698687669766,5.631674830095234 -934,2.0,2.0,9.736318911079088,-29.13794745915803 -934,2.0,3.0,-8.19544904231211,23.5308726290628 -934,3.0,1.0,-1.7055303166990268,5.1973792282565086 -934,3.0,2.0,-8.19544904231211,23.5308726290628 -934,3.0,3.0,16.314103089185693,-55.509410535254254 -934,3.0,5.0,-6.413123730174556,22.31120356548123 -934,3.0,11.0,0.0,4.191255364806866 -934,4.0,1.0,-1.1359607881738778,4.772479328281356 -934,4.0,4.0,4.089980824135861,-12.190647245055052 -934,4.0,6.0,-2.954020035961983,7.449267916773697 -934,5.0,1.0,-1.6861448807654689,5.116477495334806 -934,5.0,3.0,-6.413123730174556,22.31120356548123 -934,5.0,5.0,22.341631269034565,-77.80272577435625 -934,5.0,6.0,-3.590210423980992,11.02611441072814 -934,5.0,7.0,-6.289308176100628,22.0125786163522 -934,5.0,9.0,0.0,1.8561002591115965 -934,5.0,27.0,-4.362844058012917,15.463571542897856 -934,6.0,4.0,-2.954020035961983,7.449267916773697 -934,6.0,5.0,-3.590210423980992,11.02611441072814 -934,6.0,6.0,6.544230459942975,-18.45668232750184 -934,7.0,5.0,-6.289308176100628,22.0125786163522 -934,7.0,7.0,7.733287237496075,-26.527493274828448 -934,7.0,27.0,-1.4439790613954469,4.540814658476248 -934,8.0,8.0,0.0,-13.8986013986014 -934,8.0,9.0,0.0,9.090909090909092 -934,8.0,10.0,0.0,4.807692307692308 -934,9.0,5.0,0.0,1.8561002591115965 -934,9.0,8.0,0.0,9.090909090909092 -934,9.0,9.0,13.462042814524237,-41.3837606675224 -934,9.0,16.0,-3.956039125715353,10.317447719844054 -934,9.0,19.0,-1.7848303152666305,3.98535828943083 -934,9.0,20.0,-5.101853820159654,10.98071411292983 -934,9.0,21.0,-2.619319553382597,5.400770303329455 -934,10.0,8.0,0.0,4.807692307692308 -934,10.0,10.0,0.0,-4.807692307692308 -934,11.0,3.0,0.0,4.191255364806866 -934,11.0,11.0,6.573961583776156,-24.424167659260668 -934,11.0,12.0,0.0,7.142857142857143 -934,11.0,13.0,-1.5265676088395577,3.1734252729654173 -934,11.0,14.0,-3.0953961826564296,6.097275864326261 -934,11.0,15.0,-1.9519977922801688,4.104359379111847 -934,12.0,11.0,0.0,7.142857142857143 -934,12.0,12.0,0.0,-7.142857142857143 -934,13.0,11.0,-1.5265676088395577,3.1734252729654173 -934,13.0,13.0,4.01751987283902,-5.424299332335067 -934,13.0,14.0,-2.4909522639994623,2.250874059369649 -934,14.0,11.0,-3.0953961826564296,6.097275864326261 -934,14.0,13.0,-2.4909522639994623,2.250874059369649 -934,14.0,14.0,9.365498545964757,-16.01163373210796 -934,14.0,17.0,-1.8108011504072024,3.687418931630696 -934,14.0,22.0,-1.9683489489016612,3.976064876781356 -934,15.0,11.0,-1.9519977922801688,4.104359379111847 -934,15.0,15.0,3.271064728633931,-8.94513365126506 -934,15.0,16.0,-1.3190669363537617,4.8407742721532125 -934,16.0,9.0,-3.956039125715353,10.317447719844054 -934,16.0,15.0,-1.3190669363537617,4.8407742721532125 -934,16.0,16.0,5.275106062069114,-15.158221991997266 -934,17.0,14.0,-1.8108011504072024,3.687418931630696 -934,17.0,17.0,4.886487584415919,-9.906177730909668 -934,17.0,18.0,-3.0756864340087167,6.218758799278971 -934,18.0,17.0,-3.0756864340087167,6.218758799278971 -934,18.0,18.0,8.958039375185187,-17.98346468163191 -934,18.0,19.0,-5.88235294117647,11.76470588235294 -934,19.0,9.0,-1.7848303152666305,3.98535828943083 -934,19.0,18.0,-5.88235294117647,11.76470588235294 -934,19.0,19.0,7.6671832564431,-15.75006417178377 -934,20.0,9.0,-5.101853820159654,10.98071411292983 -934,20.0,20.0,21.876495189895888,-45.10843276170355 -934,20.0,21.0,-16.774641369736234,34.127718648773715 -934,21.0,9.0,-2.619319553382597,5.400770303329455 -934,21.0,20.0,-16.774641369736234,34.127718648773715 -934,21.0,21.0,21.93449907537439,-43.48289181517921 -934,21.0,23.0,-2.5405381522555563,3.95440286307604 -934,22.0,14.0,-1.9683489489016612,3.976064876781356 -934,22.0,22.0,3.429754555384988,-6.965303617315433 -934,22.0,23.0,-1.4614056064833263,2.989238740534077 -934,23.0,21.0,-2.5405381522555563,3.95440286307604 -934,23.0,22.0,-1.4614056064833263,2.989238740534077 -934,23.0,23.0,5.311836702613133,-9.188263657315172 -934,23.0,24.0,-1.3098929438742493,2.287622053705056 -934,24.0,23.0,-1.3098929438742493,2.287622053705056 -934,24.0,24.0,4.495715080321987,-7.864978761969621 -934,24.0,25.0,-1.2165301194494855,1.8171440463475024 -934,24.0,26.0,-1.9692920169982515,3.760212661917064 -934,25.0,24.0,-1.2165301194494855,1.8171440463475024 -934,25.0,25.0,1.2165301194494855,-1.8171440463475024 -934,26.0,24.0,-1.9692920169982515,3.760212661917064 -934,26.0,26.0,3.652281470778589,-9.46044252232512 -934,26.0,27.0,0.0,2.608731947574922 -934,26.0,28.0,-0.99553355095268,1.881005840357816 -934,26.0,29.0,-0.6874559028276572,1.293971494797717 -934,27.0,5.0,-4.362844058012917,15.463571542897856 -934,27.0,7.0,-1.4439790613954469,4.540814658476248 -934,27.0,26.0,0.0,2.608731947574922 -934,27.0,27.0,5.806823119408364,-22.67145722159613 -934,28.0,26.0,-0.99553355095268,1.881005840357816 -934,28.0,28.0,1.9075867579849564,-3.604364401207048 -934,28.0,29.0,-0.9120532070322764,1.7233585608492326 -934,29.0,26.0,-0.6874559028276572,1.293971494797717 -934,29.0,28.0,-0.9120532070322764,1.7233585608492326 -934,29.0,29.0,1.5995091098599337,-3.0173300556469496 -935,0.0,0.0,6.765516048652632,-21.23160167089863 -935,0.0,1.0,-5.224646179885656,15.646726840803398 -935,0.0,2.0,-1.5408698687669766,5.631674830095234 -935,1.0,0.0,-5.224646179885656,15.646726840803398 -935,1.0,1.0,9.75228216552403,-30.648662892676068 -935,1.0,3.0,-1.7055303166990268,5.1973792282565086 -935,1.0,4.0,-1.1359607881738778,4.772479328281356 -935,1.0,5.0,-1.6861448807654689,5.116477495334806 -935,2.0,0.0,-1.5408698687669766,5.631674830095234 -935,2.0,2.0,9.736318911079088,-29.13794745915803 -935,2.0,3.0,-8.19544904231211,23.5308726290628 -935,3.0,1.0,-1.7055303166990268,5.1973792282565086 -935,3.0,2.0,-8.19544904231211,23.5308726290628 -935,3.0,3.0,16.314103089185693,-55.509410535254254 -935,3.0,5.0,-6.413123730174556,22.31120356548123 -935,3.0,11.0,0.0,4.191255364806866 -935,4.0,1.0,-1.1359607881738778,4.772479328281356 -935,4.0,4.0,4.089980824135861,-12.190647245055052 -935,4.0,6.0,-2.954020035961983,7.449267916773697 -935,5.0,1.0,-1.6861448807654689,5.116477495334806 -935,5.0,3.0,-6.413123730174556,22.31120356548123 -935,5.0,5.0,22.341631269034565,-82.8291478657789 -935,5.0,6.0,-3.590210423980992,11.02611441072814 -935,5.0,7.0,-6.289308176100628,22.0125786163522 -935,5.0,8.0,0.0,4.915840805411357 -935,5.0,9.0,0.0,1.8561002591115965 -935,5.0,27.0,-4.362844058012917,15.463571542897856 -935,6.0,4.0,-2.954020035961983,7.449267916773697 -935,6.0,5.0,-3.590210423980992,11.02611441072814 -935,6.0,6.0,6.544230459942975,-18.45668232750184 -935,7.0,5.0,-6.289308176100628,22.0125786163522 -935,7.0,7.0,7.733287237496075,-26.527493274828448 -935,7.0,27.0,-1.4439790613954469,4.540814658476248 -935,8.0,5.0,0.0,4.915840805411357 -935,8.0,8.0,0.0,-18.706293706293707 -935,8.0,9.0,0.0,9.090909090909092 -935,8.0,10.0,0.0,4.807692307692308 -935,9.0,5.0,0.0,1.8561002591115965 -935,9.0,8.0,0.0,9.090909090909092 -935,9.0,9.0,6.886684135426284,-25.66554264434889 -935,9.0,19.0,-1.7848303152666305,3.98535828943083 -935,9.0,20.0,-5.101853820159654,10.98071411292983 -935,10.0,8.0,0.0,4.807692307692308 -935,10.0,10.0,0.0,-4.807692307692308 -935,11.0,3.0,0.0,4.191255364806866 -935,11.0,11.0,6.573961583776156,-24.424167659260668 -935,11.0,12.0,0.0,7.142857142857143 -935,11.0,13.0,-1.5265676088395577,3.1734252729654173 -935,11.0,14.0,-3.0953961826564296,6.097275864326261 -935,11.0,15.0,-1.9519977922801688,4.104359379111847 -935,12.0,11.0,0.0,7.142857142857143 -935,12.0,12.0,0.0,-7.142857142857143 -935,13.0,11.0,-1.5265676088395577,3.1734252729654173 -935,13.0,13.0,4.01751987283902,-5.424299332335067 -935,13.0,14.0,-2.4909522639994623,2.250874059369649 -935,14.0,11.0,-3.0953961826564296,6.097275864326261 -935,14.0,13.0,-2.4909522639994623,2.250874059369649 -935,14.0,14.0,7.554697395557554,-12.324214800477266 -935,14.0,22.0,-1.9683489489016612,3.976064876781356 -935,15.0,11.0,-1.9519977922801688,4.104359379111847 -935,15.0,15.0,3.271064728633931,-8.94513365126506 -935,15.0,16.0,-1.3190669363537617,4.8407742721532125 -935,16.0,15.0,-1.3190669363537617,4.8407742721532125 -935,16.0,16.0,1.3190669363537617,-4.8407742721532125 -935,17.0,17.0,3.0756864340087167,-6.218758799278971 -935,17.0,18.0,-3.0756864340087167,6.218758799278971 -935,18.0,17.0,-3.0756864340087167,6.218758799278971 -935,18.0,18.0,8.958039375185187,-17.98346468163191 -935,18.0,19.0,-5.88235294117647,11.76470588235294 -935,19.0,9.0,-1.7848303152666305,3.98535828943083 -935,19.0,18.0,-5.88235294117647,11.76470588235294 -935,19.0,19.0,7.6671832564431,-15.75006417178377 -935,20.0,9.0,-5.101853820159654,10.98071411292983 -935,20.0,20.0,21.876495189895888,-45.10843276170355 -935,20.0,21.0,-16.774641369736234,34.127718648773715 -935,21.0,20.0,-16.774641369736234,34.127718648773715 -935,21.0,21.0,19.31517952199179,-38.08212151184976 -935,21.0,23.0,-2.5405381522555563,3.95440286307604 -935,22.0,14.0,-1.9683489489016612,3.976064876781356 -935,22.0,22.0,3.429754555384988,-6.965303617315433 -935,22.0,23.0,-1.4614056064833263,2.989238740534077 -935,23.0,21.0,-2.5405381522555563,3.95440286307604 -935,23.0,22.0,-1.4614056064833263,2.989238740534077 -935,23.0,23.0,5.311836702613133,-9.188263657315172 -935,23.0,24.0,-1.3098929438742493,2.287622053705056 -935,24.0,23.0,-1.3098929438742493,2.287622053705056 -935,24.0,24.0,4.495715080321987,-7.864978761969621 -935,24.0,25.0,-1.2165301194494855,1.8171440463475024 -935,24.0,26.0,-1.9692920169982515,3.760212661917064 -935,25.0,24.0,-1.2165301194494855,1.8171440463475024 -935,25.0,25.0,1.2165301194494855,-1.8171440463475024 -935,26.0,24.0,-1.9692920169982515,3.760212661917064 -935,26.0,26.0,3.652281470778589,-9.46044252232512 -935,26.0,27.0,0.0,2.608731947574922 -935,26.0,28.0,-0.99553355095268,1.881005840357816 -935,26.0,29.0,-0.6874559028276572,1.293971494797717 -935,27.0,5.0,-4.362844058012917,15.463571542897856 -935,27.0,7.0,-1.4439790613954469,4.540814658476248 -935,27.0,26.0,0.0,2.608731947574922 -935,27.0,27.0,5.806823119408364,-22.67145722159613 -935,28.0,26.0,-0.99553355095268,1.881005840357816 -935,28.0,28.0,1.9075867579849564,-3.604364401207048 -935,28.0,29.0,-0.9120532070322764,1.7233585608492326 -935,29.0,26.0,-0.6874559028276572,1.293971494797717 -935,29.0,28.0,-0.9120532070322764,1.7233585608492326 -935,29.0,29.0,1.5995091098599337,-3.0173300556469496 -936,0.0,0.0,6.765516048652632,-21.23160167089863 -936,0.0,1.0,-5.224646179885656,15.646726840803398 -936,0.0,2.0,-1.5408698687669766,5.631674830095234 -936,1.0,0.0,-5.224646179885656,15.646726840803398 -936,1.0,1.0,9.75228216552403,-30.648662892676068 -936,1.0,3.0,-1.7055303166990268,5.1973792282565086 -936,1.0,4.0,-1.1359607881738778,4.772479328281356 -936,1.0,5.0,-1.6861448807654689,5.116477495334806 -936,2.0,0.0,-1.5408698687669766,5.631674830095234 -936,2.0,2.0,9.736318911079088,-29.13794745915803 -936,2.0,3.0,-8.19544904231211,23.5308726290628 -936,3.0,1.0,-1.7055303166990268,5.1973792282565086 -936,3.0,2.0,-8.19544904231211,23.5308726290628 -936,3.0,3.0,16.314103089185693,-55.509410535254254 -936,3.0,5.0,-6.413123730174556,22.31120356548123 -936,3.0,11.0,0.0,4.191255364806866 -936,4.0,1.0,-1.1359607881738778,4.772479328281356 -936,4.0,4.0,4.089980824135861,-12.190647245055052 -936,4.0,6.0,-2.954020035961983,7.449267916773697 -936,5.0,1.0,-1.6861448807654689,5.116477495334806 -936,5.0,3.0,-6.413123730174556,22.31120356548123 -936,5.0,5.0,18.75142084505357,-71.81153345505078 -936,5.0,7.0,-6.289308176100628,22.0125786163522 -936,5.0,8.0,0.0,4.915840805411357 -936,5.0,9.0,0.0,1.8561002591115965 -936,5.0,27.0,-4.362844058012917,15.463571542897856 -936,6.0,4.0,-2.954020035961983,7.449267916773697 -936,6.0,6.0,2.954020035961983,-7.439067916773697 -936,7.0,5.0,-6.289308176100628,22.0125786163522 -936,7.0,7.0,7.733287237496075,-26.527493274828448 -936,7.0,27.0,-1.4439790613954469,4.540814658476248 -936,8.0,5.0,0.0,4.915840805411357 -936,8.0,8.0,0.0,-18.706293706293707 -936,8.0,9.0,0.0,9.090909090909092 -936,8.0,10.0,0.0,4.807692307692308 -936,9.0,5.0,0.0,1.8561002591115965 -936,9.0,8.0,0.0,9.090909090909092 -936,9.0,9.0,13.462042814524237,-41.3837606675224 -936,9.0,16.0,-3.956039125715353,10.317447719844054 -936,9.0,19.0,-1.7848303152666305,3.98535828943083 -936,9.0,20.0,-5.101853820159654,10.98071411292983 -936,9.0,21.0,-2.619319553382597,5.400770303329455 -936,10.0,8.0,0.0,4.807692307692308 -936,10.0,10.0,0.0,-4.807692307692308 -936,11.0,3.0,0.0,4.191255364806866 -936,11.0,11.0,3.478565401119727,-18.326891794934408 -936,11.0,12.0,0.0,7.142857142857143 -936,11.0,13.0,-1.5265676088395577,3.1734252729654173 -936,11.0,15.0,-1.9519977922801688,4.104359379111847 -936,12.0,11.0,0.0,7.142857142857143 -936,12.0,12.0,0.0,-7.142857142857143 -936,13.0,11.0,-1.5265676088395577,3.1734252729654173 -936,13.0,13.0,1.5265676088395577,-3.1734252729654173 -936,14.0,14.0,3.779150099308864,-7.663483808412051 -936,14.0,17.0,-1.8108011504072024,3.687418931630696 -936,14.0,22.0,-1.9683489489016612,3.976064876781356 -936,15.0,11.0,-1.9519977922801688,4.104359379111847 -936,15.0,15.0,3.271064728633931,-8.94513365126506 -936,15.0,16.0,-1.3190669363537617,4.8407742721532125 -936,16.0,9.0,-3.956039125715353,10.317447719844054 -936,16.0,15.0,-1.3190669363537617,4.8407742721532125 -936,16.0,16.0,5.275106062069114,-15.158221991997266 -936,17.0,14.0,-1.8108011504072024,3.687418931630696 -936,17.0,17.0,4.886487584415919,-9.906177730909668 -936,17.0,18.0,-3.0756864340087167,6.218758799278971 -936,18.0,17.0,-3.0756864340087167,6.218758799278971 -936,18.0,18.0,8.958039375185187,-17.98346468163191 -936,18.0,19.0,-5.88235294117647,11.76470588235294 -936,19.0,9.0,-1.7848303152666305,3.98535828943083 -936,19.0,18.0,-5.88235294117647,11.76470588235294 -936,19.0,19.0,7.6671832564431,-15.75006417178377 -936,20.0,9.0,-5.101853820159654,10.98071411292983 -936,20.0,20.0,21.876495189895888,-45.10843276170355 -936,20.0,21.0,-16.774641369736234,34.127718648773715 -936,21.0,9.0,-2.619319553382597,5.400770303329455 -936,21.0,20.0,-16.774641369736234,34.127718648773715 -936,21.0,21.0,21.93449907537439,-43.48289181517921 -936,21.0,23.0,-2.5405381522555563,3.95440286307604 -936,22.0,14.0,-1.9683489489016612,3.976064876781356 -936,22.0,22.0,3.429754555384988,-6.965303617315433 -936,22.0,23.0,-1.4614056064833263,2.989238740534077 -936,23.0,21.0,-2.5405381522555563,3.95440286307604 -936,23.0,22.0,-1.4614056064833263,2.989238740534077 -936,23.0,23.0,5.311836702613133,-9.188263657315172 -936,23.0,24.0,-1.3098929438742493,2.287622053705056 -936,24.0,23.0,-1.3098929438742493,2.287622053705056 -936,24.0,24.0,4.495715080321987,-7.864978761969621 -936,24.0,25.0,-1.2165301194494855,1.8171440463475024 -936,24.0,26.0,-1.9692920169982515,3.760212661917064 -936,25.0,24.0,-1.2165301194494855,1.8171440463475024 -936,25.0,25.0,1.2165301194494855,-1.8171440463475024 -936,26.0,24.0,-1.9692920169982515,3.760212661917064 -936,26.0,26.0,3.652281470778589,-9.46044252232512 -936,26.0,27.0,0.0,2.608731947574922 -936,26.0,28.0,-0.99553355095268,1.881005840357816 -936,26.0,29.0,-0.6874559028276572,1.293971494797717 -936,27.0,5.0,-4.362844058012917,15.463571542897856 -936,27.0,7.0,-1.4439790613954469,4.540814658476248 -936,27.0,26.0,0.0,2.608731947574922 -936,27.0,27.0,5.806823119408364,-22.67145722159613 -936,28.0,26.0,-0.99553355095268,1.881005840357816 -936,28.0,28.0,1.9075867579849564,-3.604364401207048 -936,28.0,29.0,-0.9120532070322764,1.7233585608492326 -936,29.0,26.0,-0.6874559028276572,1.293971494797717 -936,29.0,28.0,-0.9120532070322764,1.7233585608492326 -936,29.0,29.0,1.5995091098599337,-3.0173300556469496 -937,0.0,0.0,6.765516048652632,-21.23160167089863 -937,0.0,1.0,-5.224646179885656,15.646726840803398 -937,0.0,2.0,-1.5408698687669766,5.631674830095234 -937,1.0,0.0,-5.224646179885656,15.646726840803398 -937,1.0,1.0,9.75228216552403,-30.648662892676068 -937,1.0,3.0,-1.7055303166990268,5.1973792282565086 -937,1.0,4.0,-1.1359607881738778,4.772479328281356 -937,1.0,5.0,-1.6861448807654689,5.116477495334806 -937,2.0,0.0,-1.5408698687669766,5.631674830095234 -937,2.0,2.0,9.736318911079088,-29.13794745915803 -937,2.0,3.0,-8.19544904231211,23.5308726290628 -937,3.0,1.0,-1.7055303166990268,5.1973792282565086 -937,3.0,2.0,-8.19544904231211,23.5308726290628 -937,3.0,3.0,16.314103089185693,-55.509410535254254 -937,3.0,5.0,-6.413123730174556,22.31120356548123 -937,3.0,11.0,0.0,4.191255364806866 -937,4.0,1.0,-1.1359607881738778,4.772479328281356 -937,4.0,4.0,4.089980824135861,-12.190647245055052 -937,4.0,6.0,-2.954020035961983,7.449267916773697 -937,5.0,1.0,-1.6861448807654689,5.116477495334806 -937,5.0,3.0,-6.413123730174556,22.31120356548123 -937,5.0,5.0,22.341631269034565,-82.8291478657789 -937,5.0,6.0,-3.590210423980992,11.02611441072814 -937,5.0,7.0,-6.289308176100628,22.0125786163522 -937,5.0,8.0,0.0,4.915840805411357 -937,5.0,9.0,0.0,1.8561002591115965 -937,5.0,27.0,-4.362844058012917,15.463571542897856 -937,6.0,4.0,-2.954020035961983,7.449267916773697 -937,6.0,5.0,-3.590210423980992,11.02611441072814 -937,6.0,6.0,6.544230459942975,-18.45668232750184 -937,7.0,5.0,-6.289308176100628,22.0125786163522 -937,7.0,7.0,7.733287237496075,-26.527493274828448 -937,7.0,27.0,-1.4439790613954469,4.540814658476248 -937,8.0,5.0,0.0,4.915840805411357 -937,8.0,8.0,0.0,-18.706293706293707 -937,8.0,9.0,0.0,9.090909090909092 -937,8.0,10.0,0.0,4.807692307692308 -937,9.0,5.0,0.0,1.8561002591115965 -937,9.0,8.0,0.0,9.090909090909092 -937,9.0,9.0,13.462042814524237,-41.3837606675224 -937,9.0,16.0,-3.956039125715353,10.317447719844054 -937,9.0,19.0,-1.7848303152666305,3.98535828943083 -937,9.0,20.0,-5.101853820159654,10.98071411292983 -937,9.0,21.0,-2.619319553382597,5.400770303329455 -937,10.0,8.0,0.0,4.807692307692308 -937,10.0,10.0,0.0,-4.807692307692308 -937,11.0,3.0,0.0,4.191255364806866 -937,11.0,11.0,6.573961583776156,-24.424167659260668 -937,11.0,12.0,0.0,7.142857142857143 -937,11.0,13.0,-1.5265676088395577,3.1734252729654173 -937,11.0,14.0,-3.0953961826564296,6.097275864326261 -937,11.0,15.0,-1.9519977922801688,4.104359379111847 -937,12.0,11.0,0.0,7.142857142857143 -937,12.0,12.0,0.0,-7.142857142857143 -937,13.0,11.0,-1.5265676088395577,3.1734252729654173 -937,13.0,13.0,4.01751987283902,-5.424299332335067 -937,13.0,14.0,-2.4909522639994623,2.250874059369649 -937,14.0,11.0,-3.0953961826564296,6.097275864326261 -937,14.0,13.0,-2.4909522639994623,2.250874059369649 -937,14.0,14.0,9.365498545964757,-16.01163373210796 -937,14.0,17.0,-1.8108011504072024,3.687418931630696 -937,14.0,22.0,-1.9683489489016612,3.976064876781356 -937,15.0,11.0,-1.9519977922801688,4.104359379111847 -937,15.0,15.0,3.271064728633931,-8.94513365126506 -937,15.0,16.0,-1.3190669363537617,4.8407742721532125 -937,16.0,9.0,-3.956039125715353,10.317447719844054 -937,16.0,15.0,-1.3190669363537617,4.8407742721532125 -937,16.0,16.0,5.275106062069114,-15.158221991997266 -937,17.0,14.0,-1.8108011504072024,3.687418931630696 -937,17.0,17.0,4.886487584415919,-9.906177730909668 -937,17.0,18.0,-3.0756864340087167,6.218758799278971 -937,18.0,17.0,-3.0756864340087167,6.218758799278971 -937,18.0,18.0,8.958039375185187,-17.98346468163191 -937,18.0,19.0,-5.88235294117647,11.76470588235294 -937,19.0,9.0,-1.7848303152666305,3.98535828943083 -937,19.0,18.0,-5.88235294117647,11.76470588235294 -937,19.0,19.0,7.6671832564431,-15.75006417178377 -937,20.0,9.0,-5.101853820159654,10.98071411292983 -937,20.0,20.0,21.876495189895888,-45.10843276170355 -937,20.0,21.0,-16.774641369736234,34.127718648773715 -937,21.0,9.0,-2.619319553382597,5.400770303329455 -937,21.0,20.0,-16.774641369736234,34.127718648773715 -937,21.0,21.0,21.93449907537439,-43.48289181517921 -937,21.0,23.0,-2.5405381522555563,3.95440286307604 -937,22.0,14.0,-1.9683489489016612,3.976064876781356 -937,22.0,22.0,3.429754555384988,-6.965303617315433 -937,22.0,23.0,-1.4614056064833263,2.989238740534077 -937,23.0,21.0,-2.5405381522555563,3.95440286307604 -937,23.0,22.0,-1.4614056064833263,2.989238740534077 -937,23.0,23.0,5.311836702613133,-9.188263657315172 -937,23.0,24.0,-1.3098929438742493,2.287622053705056 -937,24.0,23.0,-1.3098929438742493,2.287622053705056 -937,24.0,24.0,4.495715080321987,-7.864978761969621 -937,24.0,25.0,-1.2165301194494855,1.8171440463475024 -937,24.0,26.0,-1.9692920169982515,3.760212661917064 -937,25.0,24.0,-1.2165301194494855,1.8171440463475024 -937,25.0,25.0,1.2165301194494855,-1.8171440463475024 -937,26.0,24.0,-1.9692920169982515,3.760212661917064 -937,26.0,26.0,3.652281470778589,-9.46044252232512 -937,26.0,27.0,0.0,2.608731947574922 -937,26.0,28.0,-0.99553355095268,1.881005840357816 -937,26.0,29.0,-0.6874559028276572,1.293971494797717 -937,27.0,5.0,-4.362844058012917,15.463571542897856 -937,27.0,7.0,-1.4439790613954469,4.540814658476248 -937,27.0,26.0,0.0,2.608731947574922 -937,27.0,27.0,5.806823119408364,-22.67145722159613 -937,28.0,26.0,-0.99553355095268,1.881005840357816 -937,28.0,28.0,1.9075867579849564,-3.604364401207048 -937,28.0,29.0,-0.9120532070322764,1.7233585608492326 -937,29.0,26.0,-0.6874559028276572,1.293971494797717 -937,29.0,28.0,-0.9120532070322764,1.7233585608492326 -937,29.0,29.0,1.5995091098599337,-3.0173300556469496 -938,0.0,0.0,6.765516048652632,-21.23160167089863 -938,0.0,1.0,-5.224646179885656,15.646726840803398 -938,0.0,2.0,-1.5408698687669766,5.631674830095234 -938,1.0,0.0,-5.224646179885656,15.646726840803398 -938,1.0,1.0,9.75228216552403,-30.648662892676068 -938,1.0,3.0,-1.7055303166990268,5.1973792282565086 -938,1.0,4.0,-1.1359607881738778,4.772479328281356 -938,1.0,5.0,-1.6861448807654689,5.116477495334806 -938,2.0,0.0,-1.5408698687669766,5.631674830095234 -938,2.0,2.0,9.736318911079088,-29.13794745915803 -938,2.0,3.0,-8.19544904231211,23.5308726290628 -938,3.0,1.0,-1.7055303166990268,5.1973792282565086 -938,3.0,2.0,-8.19544904231211,23.5308726290628 -938,3.0,3.0,16.314103089185693,-55.509410535254254 -938,3.0,5.0,-6.413123730174556,22.31120356548123 -938,3.0,11.0,0.0,4.191255364806866 -938,4.0,1.0,-1.1359607881738778,4.772479328281356 -938,4.0,4.0,4.089980824135861,-12.190647245055052 -938,4.0,6.0,-2.954020035961983,7.449267916773697 -938,5.0,1.0,-1.6861448807654689,5.116477495334806 -938,5.0,3.0,-6.413123730174556,22.31120356548123 -938,5.0,5.0,22.341631269034565,-82.8291478657789 -938,5.0,6.0,-3.590210423980992,11.02611441072814 -938,5.0,7.0,-6.289308176100628,22.0125786163522 -938,5.0,8.0,0.0,4.915840805411357 -938,5.0,9.0,0.0,1.8561002591115965 -938,5.0,27.0,-4.362844058012917,15.463571542897856 -938,6.0,4.0,-2.954020035961983,7.449267916773697 -938,6.0,5.0,-3.590210423980992,11.02611441072814 -938,6.0,6.0,6.544230459942975,-18.45668232750184 -938,7.0,5.0,-6.289308176100628,22.0125786163522 -938,7.0,7.0,7.733287237496075,-26.527493274828448 -938,7.0,27.0,-1.4439790613954469,4.540814658476248 -938,8.0,5.0,0.0,4.915840805411357 -938,8.0,8.0,0.0,-18.706293706293707 -938,8.0,9.0,0.0,9.090909090909092 -938,8.0,10.0,0.0,4.807692307692308 -938,9.0,5.0,0.0,1.8561002591115965 -938,9.0,8.0,0.0,9.090909090909092 -938,9.0,9.0,13.462042814524237,-41.3837606675224 -938,9.0,16.0,-3.956039125715353,10.317447719844054 -938,9.0,19.0,-1.7848303152666305,3.98535828943083 -938,9.0,20.0,-5.101853820159654,10.98071411292983 -938,9.0,21.0,-2.619319553382597,5.400770303329455 -938,10.0,8.0,0.0,4.807692307692308 -938,10.0,10.0,0.0,-4.807692307692308 -938,11.0,3.0,0.0,4.191255364806866 -938,11.0,11.0,6.573961583776156,-24.424167659260668 -938,11.0,12.0,0.0,7.142857142857143 -938,11.0,13.0,-1.5265676088395577,3.1734252729654173 -938,11.0,14.0,-3.0953961826564296,6.097275864326261 -938,11.0,15.0,-1.9519977922801688,4.104359379111847 -938,12.0,11.0,0.0,7.142857142857143 -938,12.0,12.0,0.0,-7.142857142857143 -938,13.0,11.0,-1.5265676088395577,3.1734252729654173 -938,13.0,13.0,4.01751987283902,-5.424299332335067 -938,13.0,14.0,-2.4909522639994623,2.250874059369649 -938,14.0,11.0,-3.0953961826564296,6.097275864326261 -938,14.0,13.0,-2.4909522639994623,2.250874059369649 -938,14.0,14.0,9.365498545964757,-16.01163373210796 -938,14.0,17.0,-1.8108011504072024,3.687418931630696 -938,14.0,22.0,-1.9683489489016612,3.976064876781356 -938,15.0,11.0,-1.9519977922801688,4.104359379111847 -938,15.0,15.0,3.271064728633931,-8.94513365126506 -938,15.0,16.0,-1.3190669363537617,4.8407742721532125 -938,16.0,9.0,-3.956039125715353,10.317447719844054 -938,16.0,15.0,-1.3190669363537617,4.8407742721532125 -938,16.0,16.0,5.275106062069114,-15.158221991997266 -938,17.0,14.0,-1.8108011504072024,3.687418931630696 -938,17.0,17.0,4.886487584415919,-9.906177730909668 -938,17.0,18.0,-3.0756864340087167,6.218758799278971 -938,18.0,17.0,-3.0756864340087167,6.218758799278971 -938,18.0,18.0,8.958039375185187,-17.98346468163191 -938,18.0,19.0,-5.88235294117647,11.76470588235294 -938,19.0,9.0,-1.7848303152666305,3.98535828943083 -938,19.0,18.0,-5.88235294117647,11.76470588235294 -938,19.0,19.0,7.6671832564431,-15.75006417178377 -938,20.0,9.0,-5.101853820159654,10.98071411292983 -938,20.0,20.0,21.876495189895888,-45.10843276170355 -938,20.0,21.0,-16.774641369736234,34.127718648773715 -938,21.0,9.0,-2.619319553382597,5.400770303329455 -938,21.0,20.0,-16.774641369736234,34.127718648773715 -938,21.0,21.0,21.93449907537439,-43.48289181517921 -938,21.0,23.0,-2.5405381522555563,3.95440286307604 -938,22.0,14.0,-1.9683489489016612,3.976064876781356 -938,22.0,22.0,3.429754555384988,-6.965303617315433 -938,22.0,23.0,-1.4614056064833263,2.989238740534077 -938,23.0,21.0,-2.5405381522555563,3.95440286307604 -938,23.0,22.0,-1.4614056064833263,2.989238740534077 -938,23.0,23.0,5.311836702613133,-9.188263657315172 -938,23.0,24.0,-1.3098929438742493,2.287622053705056 -938,24.0,23.0,-1.3098929438742493,2.287622053705056 -938,24.0,24.0,4.495715080321987,-7.864978761969621 -938,24.0,25.0,-1.2165301194494855,1.8171440463475024 -938,24.0,26.0,-1.9692920169982515,3.760212661917064 -938,25.0,24.0,-1.2165301194494855,1.8171440463475024 -938,25.0,25.0,1.2165301194494855,-1.8171440463475024 -938,26.0,24.0,-1.9692920169982515,3.760212661917064 -938,26.0,26.0,3.652281470778589,-9.46044252232512 -938,26.0,27.0,0.0,2.608731947574922 -938,26.0,28.0,-0.99553355095268,1.881005840357816 -938,26.0,29.0,-0.6874559028276572,1.293971494797717 -938,27.0,5.0,-4.362844058012917,15.463571542897856 -938,27.0,7.0,-1.4439790613954469,4.540814658476248 -938,27.0,26.0,0.0,2.608731947574922 -938,27.0,27.0,5.806823119408364,-22.67145722159613 -938,28.0,26.0,-0.99553355095268,1.881005840357816 -938,28.0,28.0,1.9075867579849564,-3.604364401207048 -938,28.0,29.0,-0.9120532070322764,1.7233585608492326 -938,29.0,26.0,-0.6874559028276572,1.293971494797717 -938,29.0,28.0,-0.9120532070322764,1.7233585608492326 -938,29.0,29.0,1.5995091098599337,-3.0173300556469496 -939,0.0,0.0,1.5408698687669766,-5.611274830095233 -939,0.0,2.0,-1.5408698687669766,5.631674830095234 -939,1.0,1.0,1.6861448807654689,-5.097777495334806 -939,1.0,5.0,-1.6861448807654689,5.116477495334806 -939,2.0,0.0,-1.5408698687669766,5.631674830095234 -939,2.0,2.0,9.736318911079088,-29.13794745915803 -939,2.0,3.0,-8.19544904231211,23.5308726290628 -939,3.0,2.0,-8.19544904231211,23.5308726290628 -939,3.0,3.0,14.608572772486664,-50.33043130699775 -939,3.0,5.0,-6.413123730174556,22.31120356548123 -939,3.0,11.0,0.0,4.191255364806866 -939,4.0,4.0,2.954020035961983,-7.439067916773697 -939,4.0,6.0,-2.954020035961983,7.449267916773697 -939,5.0,1.0,-1.6861448807654689,5.116477495334806 -939,5.0,3.0,-6.413123730174556,22.31120356548123 -939,5.0,5.0,22.341631269034565,-80.91366772221689 -939,5.0,6.0,-3.590210423980992,11.02611441072814 -939,5.0,7.0,-6.289308176100628,22.0125786163522 -939,5.0,8.0,0.0,4.915840805411357 -939,5.0,27.0,-4.362844058012917,15.463571542897856 -939,6.0,4.0,-2.954020035961983,7.449267916773697 -939,6.0,5.0,-3.590210423980992,11.02611441072814 -939,6.0,6.0,6.544230459942975,-18.45668232750184 -939,7.0,5.0,-6.289308176100628,22.0125786163522 -939,7.0,7.0,7.733287237496075,-26.527493274828448 -939,7.0,27.0,-1.4439790613954469,4.540814658476248 -939,8.0,5.0,0.0,4.915840805411357 -939,8.0,8.0,0.0,-18.706293706293707 -939,8.0,9.0,0.0,9.090909090909092 -939,8.0,10.0,0.0,4.807692307692308 -939,9.0,8.0,0.0,9.090909090909092 -939,9.0,9.0,13.462042814524237,-39.58519951644326 -939,9.0,16.0,-3.956039125715353,10.317447719844054 -939,9.0,19.0,-1.7848303152666305,3.98535828943083 -939,9.0,20.0,-5.101853820159654,10.98071411292983 -939,9.0,21.0,-2.619319553382597,5.400770303329455 -939,10.0,8.0,0.0,4.807692307692308 -939,10.0,10.0,0.0,-4.807692307692308 -939,11.0,3.0,0.0,4.191255364806866 -939,11.0,11.0,5.047393974936599,-21.25074238629525 -939,11.0,12.0,0.0,7.142857142857143 -939,11.0,14.0,-3.0953961826564296,6.097275864326261 -939,11.0,15.0,-1.9519977922801688,4.104359379111847 -939,12.0,11.0,0.0,7.142857142857143 -939,12.0,12.0,0.0,-7.142857142857143 -939,13.0,13.0,2.4909522639994623,-2.250874059369649 -939,13.0,14.0,-2.4909522639994623,2.250874059369649 -939,14.0,11.0,-3.0953961826564296,6.097275864326261 -939,14.0,13.0,-2.4909522639994623,2.250874059369649 -939,14.0,14.0,7.397149597063095,-12.035568855326606 -939,14.0,17.0,-1.8108011504072024,3.687418931630696 -939,15.0,11.0,-1.9519977922801688,4.104359379111847 -939,15.0,15.0,1.9519977922801688,-4.104359379111847 -939,16.0,9.0,-3.956039125715353,10.317447719844054 -939,16.0,16.0,3.956039125715353,-10.317447719844054 -939,17.0,14.0,-1.8108011504072024,3.687418931630696 -939,17.0,17.0,4.886487584415919,-9.906177730909668 -939,17.0,18.0,-3.0756864340087167,6.218758799278971 -939,18.0,17.0,-3.0756864340087167,6.218758799278971 -939,18.0,18.0,8.958039375185187,-17.98346468163191 -939,18.0,19.0,-5.88235294117647,11.76470588235294 -939,19.0,9.0,-1.7848303152666305,3.98535828943083 -939,19.0,18.0,-5.88235294117647,11.76470588235294 -939,19.0,19.0,7.6671832564431,-15.75006417178377 -939,20.0,9.0,-5.101853820159654,10.98071411292983 -939,20.0,20.0,21.876495189895888,-45.10843276170355 -939,20.0,21.0,-16.774641369736234,34.127718648773715 -939,21.0,9.0,-2.619319553382597,5.400770303329455 -939,21.0,20.0,-16.774641369736234,34.127718648773715 -939,21.0,21.0,21.93449907537439,-43.48289181517921 -939,21.0,23.0,-2.5405381522555563,3.95440286307604 -939,22.0,22.0,1.4614056064833263,-2.989238740534077 -939,22.0,23.0,-1.4614056064833263,2.989238740534077 -939,23.0,21.0,-2.5405381522555563,3.95440286307604 -939,23.0,22.0,-1.4614056064833263,2.989238740534077 -939,23.0,23.0,4.001943758738883,-6.900641603610116 -939,24.0,24.0,3.185822136447737,-5.577356708264566 -939,24.0,25.0,-1.2165301194494855,1.8171440463475024 -939,24.0,26.0,-1.9692920169982515,3.760212661917064 -939,25.0,24.0,-1.2165301194494855,1.8171440463475024 -939,25.0,25.0,1.2165301194494855,-1.8171440463475024 -939,26.0,24.0,-1.9692920169982515,3.760212661917064 -939,26.0,26.0,3.652281470778589,-9.46044252232512 -939,26.0,27.0,0.0,2.608731947574922 -939,26.0,28.0,-0.99553355095268,1.881005840357816 -939,26.0,29.0,-0.6874559028276572,1.293971494797717 -939,27.0,5.0,-4.362844058012917,15.463571542897856 -939,27.0,7.0,-1.4439790613954469,4.540814658476248 -939,27.0,26.0,0.0,2.608731947574922 -939,27.0,27.0,5.806823119408364,-22.67145722159613 -939,28.0,26.0,-0.99553355095268,1.881005840357816 -939,28.0,28.0,0.99553355095268,-1.881005840357816 -939,29.0,26.0,-0.6874559028276572,1.293971494797717 -939,29.0,29.0,0.6874559028276572,-1.293971494797717 -940,0.0,0.0,6.765516048652632,-21.23160167089863 -940,0.0,1.0,-5.224646179885656,15.646726840803398 -940,0.0,2.0,-1.5408698687669766,5.631674830095234 -940,1.0,0.0,-5.224646179885656,15.646726840803398 -940,1.0,1.0,9.75228216552403,-30.648662892676068 -940,1.0,3.0,-1.7055303166990268,5.1973792282565086 -940,1.0,4.0,-1.1359607881738778,4.772479328281356 -940,1.0,5.0,-1.6861448807654689,5.116477495334806 -940,2.0,0.0,-1.5408698687669766,5.631674830095234 -940,2.0,2.0,9.736318911079088,-29.13794745915803 -940,2.0,3.0,-8.19544904231211,23.5308726290628 -940,3.0,1.0,-1.7055303166990268,5.1973792282565086 -940,3.0,2.0,-8.19544904231211,23.5308726290628 -940,3.0,3.0,16.314103089185693,-55.509410535254254 -940,3.0,5.0,-6.413123730174556,22.31120356548123 -940,3.0,11.0,0.0,4.191255364806866 -940,4.0,1.0,-1.1359607881738778,4.772479328281356 -940,4.0,4.0,4.089980824135861,-12.190647245055052 -940,4.0,6.0,-2.954020035961983,7.449267916773697 -940,5.0,1.0,-1.6861448807654689,5.116477495334806 -940,5.0,3.0,-6.413123730174556,22.31120356548123 -940,5.0,5.0,18.75142084505357,-66.78511136362812 -940,5.0,7.0,-6.289308176100628,22.0125786163522 -940,5.0,9.0,0.0,1.8561002591115965 -940,5.0,27.0,-4.362844058012917,15.463571542897856 -940,6.0,4.0,-2.954020035961983,7.449267916773697 -940,6.0,6.0,2.954020035961983,-7.439067916773697 -940,7.0,5.0,-6.289308176100628,22.0125786163522 -940,7.0,7.0,7.733287237496075,-26.527493274828448 -940,7.0,27.0,-1.4439790613954469,4.540814658476248 -940,8.0,8.0,0.0,-13.8986013986014 -940,8.0,9.0,0.0,9.090909090909092 -940,8.0,10.0,0.0,4.807692307692308 -940,9.0,5.0,0.0,1.8561002591115965 -940,9.0,8.0,0.0,9.090909090909092 -940,9.0,9.0,8.36018899436458,-30.40304655459257 -940,9.0,16.0,-3.956039125715353,10.317447719844054 -940,9.0,19.0,-1.7848303152666305,3.98535828943083 -940,9.0,21.0,-2.619319553382597,5.400770303329455 -940,10.0,8.0,0.0,4.807692307692308 -940,10.0,10.0,0.0,-4.807692307692308 -940,11.0,3.0,0.0,4.191255364806866 -940,11.0,11.0,6.573961583776156,-24.424167659260668 -940,11.0,12.0,0.0,7.142857142857143 -940,11.0,13.0,-1.5265676088395577,3.1734252729654173 -940,11.0,14.0,-3.0953961826564296,6.097275864326261 -940,11.0,15.0,-1.9519977922801688,4.104359379111847 -940,12.0,11.0,0.0,7.142857142857143 -940,12.0,12.0,0.0,-7.142857142857143 -940,13.0,11.0,-1.5265676088395577,3.1734252729654173 -940,13.0,13.0,4.01751987283902,-5.424299332335067 -940,13.0,14.0,-2.4909522639994623,2.250874059369649 -940,14.0,11.0,-3.0953961826564296,6.097275864326261 -940,14.0,13.0,-2.4909522639994623,2.250874059369649 -940,14.0,14.0,9.365498545964757,-16.01163373210796 -940,14.0,17.0,-1.8108011504072024,3.687418931630696 -940,14.0,22.0,-1.9683489489016612,3.976064876781356 -940,15.0,11.0,-1.9519977922801688,4.104359379111847 -940,15.0,15.0,3.271064728633931,-8.94513365126506 -940,15.0,16.0,-1.3190669363537617,4.8407742721532125 -940,16.0,9.0,-3.956039125715353,10.317447719844054 -940,16.0,15.0,-1.3190669363537617,4.8407742721532125 -940,16.0,16.0,5.275106062069114,-15.158221991997266 -940,17.0,14.0,-1.8108011504072024,3.687418931630696 -940,17.0,17.0,4.886487584415919,-9.906177730909668 -940,17.0,18.0,-3.0756864340087167,6.218758799278971 -940,18.0,17.0,-3.0756864340087167,6.218758799278971 -940,18.0,18.0,8.958039375185187,-17.98346468163191 -940,18.0,19.0,-5.88235294117647,11.76470588235294 -940,19.0,9.0,-1.7848303152666305,3.98535828943083 -940,19.0,18.0,-5.88235294117647,11.76470588235294 -940,19.0,19.0,7.6671832564431,-15.75006417178377 -940,20.0,20.0,16.774641369736234,-34.127718648773715 -940,20.0,21.0,-16.774641369736234,34.127718648773715 -940,21.0,9.0,-2.619319553382597,5.400770303329455 -940,21.0,20.0,-16.774641369736234,34.127718648773715 -940,21.0,21.0,21.93449907537439,-43.48289181517921 -940,21.0,23.0,-2.5405381522555563,3.95440286307604 -940,22.0,14.0,-1.9683489489016612,3.976064876781356 -940,22.0,22.0,3.429754555384988,-6.965303617315433 -940,22.0,23.0,-1.4614056064833263,2.989238740534077 -940,23.0,21.0,-2.5405381522555563,3.95440286307604 -940,23.0,22.0,-1.4614056064833263,2.989238740534077 -940,23.0,23.0,5.311836702613133,-9.188263657315172 -940,23.0,24.0,-1.3098929438742493,2.287622053705056 -940,24.0,23.0,-1.3098929438742493,2.287622053705056 -940,24.0,24.0,2.526423063323735,-4.104766100052558 -940,24.0,25.0,-1.2165301194494855,1.8171440463475024 -940,25.0,24.0,-1.2165301194494855,1.8171440463475024 -940,25.0,25.0,1.2165301194494855,-1.8171440463475024 -940,26.0,26.0,1.6829894537803372,-5.700229860408058 -940,26.0,27.0,0.0,2.608731947574922 -940,26.0,28.0,-0.99553355095268,1.881005840357816 -940,26.0,29.0,-0.6874559028276572,1.293971494797717 -940,27.0,5.0,-4.362844058012917,15.463571542897856 -940,27.0,7.0,-1.4439790613954469,4.540814658476248 -940,27.0,26.0,0.0,2.608731947574922 -940,27.0,27.0,5.806823119408364,-22.67145722159613 -940,28.0,26.0,-0.99553355095268,1.881005840357816 -940,28.0,28.0,1.9075867579849564,-3.604364401207048 -940,28.0,29.0,-0.9120532070322764,1.7233585608492326 -940,29.0,26.0,-0.6874559028276572,1.293971494797717 -940,29.0,28.0,-0.9120532070322764,1.7233585608492326 -940,29.0,29.0,1.5995091098599337,-3.0173300556469496 -941,0.0,0.0,6.765516048652632,-21.23160167089863 -941,0.0,1.0,-5.224646179885656,15.646726840803398 -941,0.0,2.0,-1.5408698687669766,5.631674830095234 -941,1.0,0.0,-5.224646179885656,15.646726840803398 -941,1.0,1.0,9.75228216552403,-30.648662892676068 -941,1.0,3.0,-1.7055303166990268,5.1973792282565086 -941,1.0,4.0,-1.1359607881738778,4.772479328281356 -941,1.0,5.0,-1.6861448807654689,5.116477495334806 -941,2.0,0.0,-1.5408698687669766,5.631674830095234 -941,2.0,2.0,9.736318911079088,-29.13794745915803 -941,2.0,3.0,-8.19544904231211,23.5308726290628 -941,3.0,1.0,-1.7055303166990268,5.1973792282565086 -941,3.0,2.0,-8.19544904231211,23.5308726290628 -941,3.0,3.0,16.314103089185693,-55.509410535254254 -941,3.0,5.0,-6.413123730174556,22.31120356548123 -941,3.0,11.0,0.0,4.191255364806866 -941,4.0,1.0,-1.1359607881738778,4.772479328281356 -941,4.0,4.0,4.089980824135861,-12.190647245055052 -941,4.0,6.0,-2.954020035961983,7.449267916773697 -941,5.0,1.0,-1.6861448807654689,5.116477495334806 -941,5.0,3.0,-6.413123730174556,22.31120356548123 -941,5.0,5.0,22.341631269034565,-82.8291478657789 -941,5.0,6.0,-3.590210423980992,11.02611441072814 -941,5.0,7.0,-6.289308176100628,22.0125786163522 -941,5.0,8.0,0.0,4.915840805411357 -941,5.0,9.0,0.0,1.8561002591115965 -941,5.0,27.0,-4.362844058012917,15.463571542897856 -941,6.0,4.0,-2.954020035961983,7.449267916773697 -941,6.0,5.0,-3.590210423980992,11.02611441072814 -941,6.0,6.0,6.544230459942975,-18.45668232750184 -941,7.0,5.0,-6.289308176100628,22.0125786163522 -941,7.0,7.0,7.733287237496075,-26.527493274828448 -941,7.0,27.0,-1.4439790613954469,4.540814658476248 -941,8.0,5.0,0.0,4.915840805411357 -941,8.0,8.0,0.0,-18.706293706293707 -941,8.0,9.0,0.0,9.090909090909092 -941,8.0,10.0,0.0,4.807692307692308 -941,9.0,5.0,0.0,1.8561002591115965 -941,9.0,8.0,0.0,9.090909090909092 -941,9.0,9.0,13.462042814524237,-41.3837606675224 -941,9.0,16.0,-3.956039125715353,10.317447719844054 -941,9.0,19.0,-1.7848303152666305,3.98535828943083 -941,9.0,20.0,-5.101853820159654,10.98071411292983 -941,9.0,21.0,-2.619319553382597,5.400770303329455 -941,10.0,8.0,0.0,4.807692307692308 -941,10.0,10.0,0.0,-4.807692307692308 -941,11.0,3.0,0.0,4.191255364806866 -941,11.0,11.0,6.573961583776156,-24.424167659260668 -941,11.0,12.0,0.0,7.142857142857143 -941,11.0,13.0,-1.5265676088395577,3.1734252729654173 -941,11.0,14.0,-3.0953961826564296,6.097275864326261 -941,11.0,15.0,-1.9519977922801688,4.104359379111847 -941,12.0,11.0,0.0,7.142857142857143 -941,12.0,12.0,0.0,-7.142857142857143 -941,13.0,11.0,-1.5265676088395577,3.1734252729654173 -941,13.0,13.0,4.01751987283902,-5.424299332335067 -941,13.0,14.0,-2.4909522639994623,2.250874059369649 -941,14.0,11.0,-3.0953961826564296,6.097275864326261 -941,14.0,13.0,-2.4909522639994623,2.250874059369649 -941,14.0,14.0,9.365498545964757,-16.01163373210796 -941,14.0,17.0,-1.8108011504072024,3.687418931630696 -941,14.0,22.0,-1.9683489489016612,3.976064876781356 -941,15.0,11.0,-1.9519977922801688,4.104359379111847 -941,15.0,15.0,3.271064728633931,-8.94513365126506 -941,15.0,16.0,-1.3190669363537617,4.8407742721532125 -941,16.0,9.0,-3.956039125715353,10.317447719844054 -941,16.0,15.0,-1.3190669363537617,4.8407742721532125 -941,16.0,16.0,5.275106062069114,-15.158221991997266 -941,17.0,14.0,-1.8108011504072024,3.687418931630696 -941,17.0,17.0,4.886487584415919,-9.906177730909668 -941,17.0,18.0,-3.0756864340087167,6.218758799278971 -941,18.0,17.0,-3.0756864340087167,6.218758799278971 -941,18.0,18.0,8.958039375185187,-17.98346468163191 -941,18.0,19.0,-5.88235294117647,11.76470588235294 -941,19.0,9.0,-1.7848303152666305,3.98535828943083 -941,19.0,18.0,-5.88235294117647,11.76470588235294 -941,19.0,19.0,7.6671832564431,-15.75006417178377 -941,20.0,9.0,-5.101853820159654,10.98071411292983 -941,20.0,20.0,21.876495189895888,-45.10843276170355 -941,20.0,21.0,-16.774641369736234,34.127718648773715 -941,21.0,9.0,-2.619319553382597,5.400770303329455 -941,21.0,20.0,-16.774641369736234,34.127718648773715 -941,21.0,21.0,21.93449907537439,-43.48289181517921 -941,21.0,23.0,-2.5405381522555563,3.95440286307604 -941,22.0,14.0,-1.9683489489016612,3.976064876781356 -941,22.0,22.0,3.429754555384988,-6.965303617315433 -941,22.0,23.0,-1.4614056064833263,2.989238740534077 -941,23.0,21.0,-2.5405381522555563,3.95440286307604 -941,23.0,22.0,-1.4614056064833263,2.989238740534077 -941,23.0,23.0,5.311836702613133,-9.188263657315172 -941,23.0,24.0,-1.3098929438742493,2.287622053705056 -941,24.0,23.0,-1.3098929438742493,2.287622053705056 -941,24.0,24.0,4.495715080321987,-7.864978761969621 -941,24.0,25.0,-1.2165301194494855,1.8171440463475024 -941,24.0,26.0,-1.9692920169982515,3.760212661917064 -941,25.0,24.0,-1.2165301194494855,1.8171440463475024 -941,25.0,25.0,1.2165301194494855,-1.8171440463475024 -941,26.0,24.0,-1.9692920169982515,3.760212661917064 -941,26.0,26.0,3.652281470778589,-9.46044252232512 -941,26.0,27.0,0.0,2.608731947574922 -941,26.0,28.0,-0.99553355095268,1.881005840357816 -941,26.0,29.0,-0.6874559028276572,1.293971494797717 -941,27.0,5.0,-4.362844058012917,15.463571542897856 -941,27.0,7.0,-1.4439790613954469,4.540814658476248 -941,27.0,26.0,0.0,2.608731947574922 -941,27.0,27.0,5.806823119408364,-22.67145722159613 -941,28.0,26.0,-0.99553355095268,1.881005840357816 -941,28.0,28.0,1.9075867579849564,-3.604364401207048 -941,28.0,29.0,-0.9120532070322764,1.7233585608492326 -941,29.0,26.0,-0.6874559028276572,1.293971494797717 -941,29.0,28.0,-0.9120532070322764,1.7233585608492326 -941,29.0,29.0,1.5995091098599337,-3.0173300556469496 -942,0.0,0.0,6.765516048652632,-21.23160167089863 -942,0.0,1.0,-5.224646179885656,15.646726840803398 -942,0.0,2.0,-1.5408698687669766,5.631674830095234 -942,1.0,0.0,-5.224646179885656,15.646726840803398 -942,1.0,1.0,8.61632137735015,-25.897083564394716 -942,1.0,3.0,-1.7055303166990268,5.1973792282565086 -942,1.0,5.0,-1.6861448807654689,5.116477495334806 -942,2.0,0.0,-1.5408698687669766,5.631674830095234 -942,2.0,2.0,9.736318911079088,-29.13794745915803 -942,2.0,3.0,-8.19544904231211,23.5308726290628 -942,3.0,1.0,-1.7055303166990268,5.1973792282565086 -942,3.0,2.0,-8.19544904231211,23.5308726290628 -942,3.0,3.0,16.314103089185693,-55.509410535254254 -942,3.0,5.0,-6.413123730174556,22.31120356548123 -942,3.0,11.0,0.0,4.191255364806866 -942,4.0,4.0,2.954020035961983,-7.439067916773697 -942,4.0,6.0,-2.954020035961983,7.449267916773697 -942,5.0,1.0,-1.6861448807654689,5.116477495334806 -942,5.0,3.0,-6.413123730174556,22.31120356548123 -942,5.0,5.0,16.052323092933932,-58.905589105864685 -942,5.0,6.0,-3.590210423980992,11.02611441072814 -942,5.0,8.0,0.0,4.915840805411357 -942,5.0,27.0,-4.362844058012917,15.463571542897856 -942,6.0,4.0,-2.954020035961983,7.449267916773697 -942,6.0,5.0,-3.590210423980992,11.02611441072814 -942,6.0,6.0,6.544230459942975,-18.45668232750184 -942,7.0,7.0,1.4439790613954469,-4.519414658476248 -942,7.0,27.0,-1.4439790613954469,4.540814658476248 -942,8.0,5.0,0.0,4.915840805411357 -942,8.0,8.0,0.0,-18.706293706293707 -942,8.0,9.0,0.0,9.090909090909092 -942,8.0,10.0,0.0,4.807692307692308 -942,9.0,8.0,0.0,9.090909090909092 -942,9.0,9.0,13.462042814524237,-39.58519951644326 -942,9.0,16.0,-3.956039125715353,10.317447719844054 -942,9.0,19.0,-1.7848303152666305,3.98535828943083 -942,9.0,20.0,-5.101853820159654,10.98071411292983 -942,9.0,21.0,-2.619319553382597,5.400770303329455 -942,10.0,8.0,0.0,4.807692307692308 -942,10.0,10.0,0.0,-4.807692307692308 -942,11.0,3.0,0.0,4.191255364806866 -942,11.0,11.0,6.573961583776156,-24.424167659260668 -942,11.0,12.0,0.0,7.142857142857143 -942,11.0,13.0,-1.5265676088395577,3.1734252729654173 -942,11.0,14.0,-3.0953961826564296,6.097275864326261 -942,11.0,15.0,-1.9519977922801688,4.104359379111847 -942,12.0,11.0,0.0,7.142857142857143 -942,12.0,12.0,0.0,-7.142857142857143 -942,13.0,11.0,-1.5265676088395577,3.1734252729654173 -942,13.0,13.0,4.01751987283902,-5.424299332335067 -942,13.0,14.0,-2.4909522639994623,2.250874059369649 -942,14.0,11.0,-3.0953961826564296,6.097275864326261 -942,14.0,13.0,-2.4909522639994623,2.250874059369649 -942,14.0,14.0,9.365498545964757,-16.01163373210796 -942,14.0,17.0,-1.8108011504072024,3.687418931630696 -942,14.0,22.0,-1.9683489489016612,3.976064876781356 -942,15.0,11.0,-1.9519977922801688,4.104359379111847 -942,15.0,15.0,3.271064728633931,-8.94513365126506 -942,15.0,16.0,-1.3190669363537617,4.8407742721532125 -942,16.0,9.0,-3.956039125715353,10.317447719844054 -942,16.0,15.0,-1.3190669363537617,4.8407742721532125 -942,16.0,16.0,5.275106062069114,-15.158221991997266 -942,17.0,14.0,-1.8108011504072024,3.687418931630696 -942,17.0,17.0,4.886487584415919,-9.906177730909668 -942,17.0,18.0,-3.0756864340087167,6.218758799278971 -942,18.0,17.0,-3.0756864340087167,6.218758799278971 -942,18.0,18.0,8.958039375185187,-17.98346468163191 -942,18.0,19.0,-5.88235294117647,11.76470588235294 -942,19.0,9.0,-1.7848303152666305,3.98535828943083 -942,19.0,18.0,-5.88235294117647,11.76470588235294 -942,19.0,19.0,7.6671832564431,-15.75006417178377 -942,20.0,9.0,-5.101853820159654,10.98071411292983 -942,20.0,20.0,21.876495189895888,-45.10843276170355 -942,20.0,21.0,-16.774641369736234,34.127718648773715 -942,21.0,9.0,-2.619319553382597,5.400770303329455 -942,21.0,20.0,-16.774641369736234,34.127718648773715 -942,21.0,21.0,21.93449907537439,-43.48289181517921 -942,21.0,23.0,-2.5405381522555563,3.95440286307604 -942,22.0,14.0,-1.9683489489016612,3.976064876781356 -942,22.0,22.0,3.429754555384988,-6.965303617315433 -942,22.0,23.0,-1.4614056064833263,2.989238740534077 -942,23.0,21.0,-2.5405381522555563,3.95440286307604 -942,23.0,22.0,-1.4614056064833263,2.989238740534077 -942,23.0,23.0,5.311836702613133,-9.188263657315172 -942,23.0,24.0,-1.3098929438742493,2.287622053705056 -942,24.0,23.0,-1.3098929438742493,2.287622053705056 -942,24.0,24.0,4.495715080321987,-7.864978761969621 -942,24.0,25.0,-1.2165301194494855,1.8171440463475024 -942,24.0,26.0,-1.9692920169982515,3.760212661917064 -942,25.0,24.0,-1.2165301194494855,1.8171440463475024 -942,25.0,25.0,1.2165301194494855,-1.8171440463475024 -942,26.0,24.0,-1.9692920169982515,3.760212661917064 -942,26.0,26.0,3.652281470778589,-9.46044252232512 -942,26.0,27.0,0.0,2.608731947574922 -942,26.0,28.0,-0.99553355095268,1.881005840357816 -942,26.0,29.0,-0.6874559028276572,1.293971494797717 -942,27.0,5.0,-4.362844058012917,15.463571542897856 -942,27.0,7.0,-1.4439790613954469,4.540814658476248 -942,27.0,26.0,0.0,2.608731947574922 -942,27.0,27.0,5.806823119408364,-22.67145722159613 -942,28.0,26.0,-0.99553355095268,1.881005840357816 -942,28.0,28.0,1.9075867579849564,-3.604364401207048 -942,28.0,29.0,-0.9120532070322764,1.7233585608492326 -942,29.0,26.0,-0.6874559028276572,1.293971494797717 -942,29.0,28.0,-0.9120532070322764,1.7233585608492326 -942,29.0,29.0,1.5995091098599337,-3.0173300556469496 -943,0.0,0.0,6.765516048652632,-21.23160167089863 -943,0.0,1.0,-5.224646179885656,15.646726840803398 -943,0.0,2.0,-1.5408698687669766,5.631674830095234 -943,1.0,0.0,-5.224646179885656,15.646726840803398 -943,1.0,1.0,9.75228216552403,-30.648662892676068 -943,1.0,3.0,-1.7055303166990268,5.1973792282565086 -943,1.0,4.0,-1.1359607881738778,4.772479328281356 -943,1.0,5.0,-1.6861448807654689,5.116477495334806 -943,2.0,0.0,-1.5408698687669766,5.631674830095234 -943,2.0,2.0,9.736318911079088,-29.13794745915803 -943,2.0,3.0,-8.19544904231211,23.5308726290628 -943,3.0,1.0,-1.7055303166990268,5.1973792282565086 -943,3.0,2.0,-8.19544904231211,23.5308726290628 -943,3.0,3.0,16.314103089185693,-55.509410535254254 -943,3.0,5.0,-6.413123730174556,22.31120356548123 -943,3.0,11.0,0.0,4.191255364806866 -943,4.0,1.0,-1.1359607881738778,4.772479328281356 -943,4.0,4.0,4.089980824135861,-12.190647245055052 -943,4.0,6.0,-2.954020035961983,7.449267916773697 -943,5.0,1.0,-1.6861448807654689,5.116477495334806 -943,5.0,3.0,-6.413123730174556,22.31120356548123 -943,5.0,5.0,22.341631269034565,-82.8291478657789 -943,5.0,6.0,-3.590210423980992,11.02611441072814 -943,5.0,7.0,-6.289308176100628,22.0125786163522 -943,5.0,8.0,0.0,4.915840805411357 -943,5.0,9.0,0.0,1.8561002591115965 -943,5.0,27.0,-4.362844058012917,15.463571542897856 -943,6.0,4.0,-2.954020035961983,7.449267916773697 -943,6.0,5.0,-3.590210423980992,11.02611441072814 -943,6.0,6.0,6.544230459942975,-18.45668232750184 -943,7.0,5.0,-6.289308176100628,22.0125786163522 -943,7.0,7.0,6.289308176100628,-22.0080786163522 -943,8.0,5.0,0.0,4.915840805411357 -943,8.0,8.0,0.0,-18.706293706293707 -943,8.0,9.0,0.0,9.090909090909092 -943,8.0,10.0,0.0,4.807692307692308 -943,9.0,5.0,0.0,1.8561002591115965 -943,9.0,8.0,0.0,9.090909090909092 -943,9.0,9.0,13.462042814524237,-41.3837606675224 -943,9.0,16.0,-3.956039125715353,10.317447719844054 -943,9.0,19.0,-1.7848303152666305,3.98535828943083 -943,9.0,20.0,-5.101853820159654,10.98071411292983 -943,9.0,21.0,-2.619319553382597,5.400770303329455 -943,10.0,8.0,0.0,4.807692307692308 -943,10.0,10.0,0.0,-4.807692307692308 -943,11.0,3.0,0.0,4.191255364806866 -943,11.0,11.0,6.573961583776156,-24.424167659260668 -943,11.0,12.0,0.0,7.142857142857143 -943,11.0,13.0,-1.5265676088395577,3.1734252729654173 -943,11.0,14.0,-3.0953961826564296,6.097275864326261 -943,11.0,15.0,-1.9519977922801688,4.104359379111847 -943,12.0,11.0,0.0,7.142857142857143 -943,12.0,12.0,0.0,-7.142857142857143 -943,13.0,11.0,-1.5265676088395577,3.1734252729654173 -943,13.0,13.0,4.01751987283902,-5.424299332335067 -943,13.0,14.0,-2.4909522639994623,2.250874059369649 -943,14.0,11.0,-3.0953961826564296,6.097275864326261 -943,14.0,13.0,-2.4909522639994623,2.250874059369649 -943,14.0,14.0,9.365498545964757,-16.01163373210796 -943,14.0,17.0,-1.8108011504072024,3.687418931630696 -943,14.0,22.0,-1.9683489489016612,3.976064876781356 -943,15.0,11.0,-1.9519977922801688,4.104359379111847 -943,15.0,15.0,1.9519977922801688,-4.104359379111847 -943,16.0,9.0,-3.956039125715353,10.317447719844054 -943,16.0,16.0,3.956039125715353,-10.317447719844054 -943,17.0,14.0,-1.8108011504072024,3.687418931630696 -943,17.0,17.0,4.886487584415919,-9.906177730909668 -943,17.0,18.0,-3.0756864340087167,6.218758799278971 -943,18.0,17.0,-3.0756864340087167,6.218758799278971 -943,18.0,18.0,8.958039375185187,-17.98346468163191 -943,18.0,19.0,-5.88235294117647,11.76470588235294 -943,19.0,9.0,-1.7848303152666305,3.98535828943083 -943,19.0,18.0,-5.88235294117647,11.76470588235294 -943,19.0,19.0,7.6671832564431,-15.75006417178377 -943,20.0,9.0,-5.101853820159654,10.98071411292983 -943,20.0,20.0,21.876495189895888,-45.10843276170355 -943,20.0,21.0,-16.774641369736234,34.127718648773715 -943,21.0,9.0,-2.619319553382597,5.400770303329455 -943,21.0,20.0,-16.774641369736234,34.127718648773715 -943,21.0,21.0,21.93449907537439,-43.48289181517921 -943,21.0,23.0,-2.5405381522555563,3.95440286307604 -943,22.0,14.0,-1.9683489489016612,3.976064876781356 -943,22.0,22.0,3.429754555384988,-6.965303617315433 -943,22.0,23.0,-1.4614056064833263,2.989238740534077 -943,23.0,21.0,-2.5405381522555563,3.95440286307604 -943,23.0,22.0,-1.4614056064833263,2.989238740534077 -943,23.0,23.0,5.311836702613133,-9.188263657315172 -943,23.0,24.0,-1.3098929438742493,2.287622053705056 -943,24.0,23.0,-1.3098929438742493,2.287622053705056 -943,24.0,24.0,4.495715080321987,-7.864978761969621 -943,24.0,25.0,-1.2165301194494855,1.8171440463475024 -943,24.0,26.0,-1.9692920169982515,3.760212661917064 -943,25.0,24.0,-1.2165301194494855,1.8171440463475024 -943,25.0,25.0,1.2165301194494855,-1.8171440463475024 -943,26.0,24.0,-1.9692920169982515,3.760212661917064 -943,26.0,26.0,3.652281470778589,-9.46044252232512 -943,26.0,27.0,0.0,2.608731947574922 -943,26.0,28.0,-0.99553355095268,1.881005840357816 -943,26.0,29.0,-0.6874559028276572,1.293971494797717 -943,27.0,5.0,-4.362844058012917,15.463571542897856 -943,27.0,26.0,0.0,2.608731947574922 -943,27.0,27.0,4.362844058012917,-18.15204256311988 -943,28.0,26.0,-0.99553355095268,1.881005840357816 -943,28.0,28.0,1.9075867579849564,-3.604364401207048 -943,28.0,29.0,-0.9120532070322764,1.7233585608492326 -943,29.0,26.0,-0.6874559028276572,1.293971494797717 -943,29.0,28.0,-0.9120532070322764,1.7233585608492326 -943,29.0,29.0,1.5995091098599337,-3.0173300556469496 -944,0.0,0.0,6.765516048652632,-21.23160167089863 -944,0.0,1.0,-5.224646179885656,15.646726840803398 -944,0.0,2.0,-1.5408698687669766,5.631674830095234 -944,1.0,0.0,-5.224646179885656,15.646726840803398 -944,1.0,1.0,9.75228216552403,-30.648662892676068 -944,1.0,3.0,-1.7055303166990268,5.1973792282565086 -944,1.0,4.0,-1.1359607881738778,4.772479328281356 -944,1.0,5.0,-1.6861448807654689,5.116477495334806 -944,2.0,0.0,-1.5408698687669766,5.631674830095234 -944,2.0,2.0,9.736318911079088,-29.13794745915803 -944,2.0,3.0,-8.19544904231211,23.5308726290628 -944,3.0,1.0,-1.7055303166990268,5.1973792282565086 -944,3.0,2.0,-8.19544904231211,23.5308726290628 -944,3.0,3.0,9.900979359011137,-33.202706969773025 -944,3.0,11.0,0.0,4.191255364806866 -944,4.0,1.0,-1.1359607881738778,4.772479328281356 -944,4.0,4.0,4.089980824135861,-12.190647245055052 -944,4.0,6.0,-2.954020035961983,7.449267916773697 -944,5.0,1.0,-1.6861448807654689,5.116477495334806 -944,5.0,5.0,9.639199362759378,-33.48794359252282 -944,5.0,6.0,-3.590210423980992,11.02611441072814 -944,5.0,9.0,0.0,1.8561002591115965 -944,5.0,27.0,-4.362844058012917,15.463571542897856 -944,6.0,4.0,-2.954020035961983,7.449267916773697 -944,6.0,5.0,-3.590210423980992,11.02611441072814 -944,6.0,6.0,6.544230459942975,-18.45668232750184 -944,7.0,7.0,1.4439790613954469,-4.519414658476248 -944,7.0,27.0,-1.4439790613954469,4.540814658476248 -944,8.0,8.0,0.0,-13.8986013986014 -944,8.0,9.0,0.0,9.090909090909092 -944,8.0,10.0,0.0,4.807692307692308 -944,9.0,5.0,0.0,1.8561002591115965 -944,9.0,8.0,0.0,9.090909090909092 -944,9.0,9.0,13.462042814524237,-41.3837606675224 -944,9.0,16.0,-3.956039125715353,10.317447719844054 -944,9.0,19.0,-1.7848303152666305,3.98535828943083 -944,9.0,20.0,-5.101853820159654,10.98071411292983 -944,9.0,21.0,-2.619319553382597,5.400770303329455 -944,10.0,8.0,0.0,4.807692307692308 -944,10.0,10.0,0.0,-4.807692307692308 -944,11.0,3.0,0.0,4.191255364806866 -944,11.0,11.0,6.573961583776156,-24.424167659260668 -944,11.0,12.0,0.0,7.142857142857143 -944,11.0,13.0,-1.5265676088395577,3.1734252729654173 -944,11.0,14.0,-3.0953961826564296,6.097275864326261 -944,11.0,15.0,-1.9519977922801688,4.104359379111847 -944,12.0,11.0,0.0,7.142857142857143 -944,12.0,12.0,0.0,-7.142857142857143 -944,13.0,11.0,-1.5265676088395577,3.1734252729654173 -944,13.0,13.0,4.01751987283902,-5.424299332335067 -944,13.0,14.0,-2.4909522639994623,2.250874059369649 -944,14.0,11.0,-3.0953961826564296,6.097275864326261 -944,14.0,13.0,-2.4909522639994623,2.250874059369649 -944,14.0,14.0,9.365498545964757,-16.01163373210796 -944,14.0,17.0,-1.8108011504072024,3.687418931630696 -944,14.0,22.0,-1.9683489489016612,3.976064876781356 -944,15.0,11.0,-1.9519977922801688,4.104359379111847 -944,15.0,15.0,3.271064728633931,-8.94513365126506 -944,15.0,16.0,-1.3190669363537617,4.8407742721532125 -944,16.0,9.0,-3.956039125715353,10.317447719844054 -944,16.0,15.0,-1.3190669363537617,4.8407742721532125 -944,16.0,16.0,5.275106062069114,-15.158221991997266 -944,17.0,14.0,-1.8108011504072024,3.687418931630696 -944,17.0,17.0,4.886487584415919,-9.906177730909668 -944,17.0,18.0,-3.0756864340087167,6.218758799278971 -944,18.0,17.0,-3.0756864340087167,6.218758799278971 -944,18.0,18.0,8.958039375185187,-17.98346468163191 -944,18.0,19.0,-5.88235294117647,11.76470588235294 -944,19.0,9.0,-1.7848303152666305,3.98535828943083 -944,19.0,18.0,-5.88235294117647,11.76470588235294 -944,19.0,19.0,7.6671832564431,-15.75006417178377 -944,20.0,9.0,-5.101853820159654,10.98071411292983 -944,20.0,20.0,21.876495189895888,-45.10843276170355 -944,20.0,21.0,-16.774641369736234,34.127718648773715 -944,21.0,9.0,-2.619319553382597,5.400770303329455 -944,21.0,20.0,-16.774641369736234,34.127718648773715 -944,21.0,21.0,21.93449907537439,-43.48289181517921 -944,21.0,23.0,-2.5405381522555563,3.95440286307604 -944,22.0,14.0,-1.9683489489016612,3.976064876781356 -944,22.0,22.0,3.429754555384988,-6.965303617315433 -944,22.0,23.0,-1.4614056064833263,2.989238740534077 -944,23.0,21.0,-2.5405381522555563,3.95440286307604 -944,23.0,22.0,-1.4614056064833263,2.989238740534077 -944,23.0,23.0,5.311836702613133,-9.188263657315172 -944,23.0,24.0,-1.3098929438742493,2.287622053705056 -944,24.0,23.0,-1.3098929438742493,2.287622053705056 -944,24.0,24.0,2.526423063323735,-4.104766100052558 -944,24.0,25.0,-1.2165301194494855,1.8171440463475024 -944,25.0,24.0,-1.2165301194494855,1.8171440463475024 -944,25.0,25.0,1.2165301194494855,-1.8171440463475024 -944,26.0,26.0,1.6829894537803372,-5.700229860408058 -944,26.0,27.0,0.0,2.608731947574922 -944,26.0,28.0,-0.99553355095268,1.881005840357816 -944,26.0,29.0,-0.6874559028276572,1.293971494797717 -944,27.0,5.0,-4.362844058012917,15.463571542897856 -944,27.0,7.0,-1.4439790613954469,4.540814658476248 -944,27.0,26.0,0.0,2.608731947574922 -944,27.0,27.0,5.806823119408364,-22.67145722159613 -944,28.0,26.0,-0.99553355095268,1.881005840357816 -944,28.0,28.0,1.9075867579849564,-3.604364401207048 -944,28.0,29.0,-0.9120532070322764,1.7233585608492326 -944,29.0,26.0,-0.6874559028276572,1.293971494797717 -944,29.0,28.0,-0.9120532070322764,1.7233585608492326 -944,29.0,29.0,1.5995091098599337,-3.0173300556469496 -945,0.0,0.0,6.765516048652632,-21.23160167089863 -945,0.0,1.0,-5.224646179885656,15.646726840803398 -945,0.0,2.0,-1.5408698687669766,5.631674830095234 -945,1.0,0.0,-5.224646179885656,15.646726840803398 -945,1.0,1.0,8.066137284758561,-25.55088539734126 -945,1.0,3.0,-1.7055303166990268,5.1973792282565086 -945,1.0,4.0,-1.1359607881738778,4.772479328281356 -945,2.0,0.0,-1.5408698687669766,5.631674830095234 -945,2.0,2.0,1.5408698687669766,-5.611274830095233 -945,3.0,1.0,-1.7055303166990268,5.1973792282565086 -945,3.0,3.0,1.7055303166990268,-9.676034340710228 -945,3.0,11.0,0.0,4.191255364806866 -945,4.0,1.0,-1.1359607881738778,4.772479328281356 -945,4.0,4.0,4.089980824135861,-12.190647245055052 -945,4.0,6.0,-2.954020035961983,7.449267916773697 -945,5.0,5.0,14.24236265809454,-55.42466680496287 -945,5.0,6.0,-3.590210423980992,11.02611441072814 -945,5.0,7.0,-6.289308176100628,22.0125786163522 -945,5.0,8.0,0.0,4.915840805411357 -945,5.0,9.0,0.0,1.8561002591115965 -945,5.0,27.0,-4.362844058012917,15.463571542897856 -945,6.0,4.0,-2.954020035961983,7.449267916773697 -945,6.0,5.0,-3.590210423980992,11.02611441072814 -945,6.0,6.0,6.544230459942975,-18.45668232750184 -945,7.0,5.0,-6.289308176100628,22.0125786163522 -945,7.0,7.0,7.733287237496075,-26.527493274828448 -945,7.0,27.0,-1.4439790613954469,4.540814658476248 -945,8.0,5.0,0.0,4.915840805411357 -945,8.0,8.0,0.0,-18.706293706293707 -945,8.0,9.0,0.0,9.090909090909092 -945,8.0,10.0,0.0,4.807692307692308 -945,9.0,5.0,0.0,1.8561002591115965 -945,9.0,8.0,0.0,9.090909090909092 -945,9.0,9.0,13.462042814524237,-41.3837606675224 -945,9.0,16.0,-3.956039125715353,10.317447719844054 -945,9.0,19.0,-1.7848303152666305,3.98535828943083 -945,9.0,20.0,-5.101853820159654,10.98071411292983 -945,9.0,21.0,-2.619319553382597,5.400770303329455 -945,10.0,8.0,0.0,4.807692307692308 -945,10.0,10.0,0.0,-4.807692307692308 -945,11.0,3.0,0.0,4.191255364806866 -945,11.0,11.0,6.573961583776156,-24.424167659260668 -945,11.0,12.0,0.0,7.142857142857143 -945,11.0,13.0,-1.5265676088395577,3.1734252729654173 -945,11.0,14.0,-3.0953961826564296,6.097275864326261 -945,11.0,15.0,-1.9519977922801688,4.104359379111847 -945,12.0,11.0,0.0,7.142857142857143 -945,12.0,12.0,0.0,-7.142857142857143 -945,13.0,11.0,-1.5265676088395577,3.1734252729654173 -945,13.0,13.0,4.01751987283902,-5.424299332335067 -945,13.0,14.0,-2.4909522639994623,2.250874059369649 -945,14.0,11.0,-3.0953961826564296,6.097275864326261 -945,14.0,13.0,-2.4909522639994623,2.250874059369649 -945,14.0,14.0,9.365498545964757,-16.01163373210796 -945,14.0,17.0,-1.8108011504072024,3.687418931630696 -945,14.0,22.0,-1.9683489489016612,3.976064876781356 -945,15.0,11.0,-1.9519977922801688,4.104359379111847 -945,15.0,15.0,3.271064728633931,-8.94513365126506 -945,15.0,16.0,-1.3190669363537617,4.8407742721532125 -945,16.0,9.0,-3.956039125715353,10.317447719844054 -945,16.0,15.0,-1.3190669363537617,4.8407742721532125 -945,16.0,16.0,5.275106062069114,-15.158221991997266 -945,17.0,14.0,-1.8108011504072024,3.687418931630696 -945,17.0,17.0,4.886487584415919,-9.906177730909668 -945,17.0,18.0,-3.0756864340087167,6.218758799278971 -945,18.0,17.0,-3.0756864340087167,6.218758799278971 -945,18.0,18.0,8.958039375185187,-17.98346468163191 -945,18.0,19.0,-5.88235294117647,11.76470588235294 -945,19.0,9.0,-1.7848303152666305,3.98535828943083 -945,19.0,18.0,-5.88235294117647,11.76470588235294 -945,19.0,19.0,7.6671832564431,-15.75006417178377 -945,20.0,9.0,-5.101853820159654,10.98071411292983 -945,20.0,20.0,21.876495189895888,-45.10843276170355 -945,20.0,21.0,-16.774641369736234,34.127718648773715 -945,21.0,9.0,-2.619319553382597,5.400770303329455 -945,21.0,20.0,-16.774641369736234,34.127718648773715 -945,21.0,21.0,21.93449907537439,-43.48289181517921 -945,21.0,23.0,-2.5405381522555563,3.95440286307604 -945,22.0,14.0,-1.9683489489016612,3.976064876781356 -945,22.0,22.0,3.429754555384988,-6.965303617315433 -945,22.0,23.0,-1.4614056064833263,2.989238740534077 -945,23.0,21.0,-2.5405381522555563,3.95440286307604 -945,23.0,22.0,-1.4614056064833263,2.989238740534077 -945,23.0,23.0,5.311836702613133,-9.188263657315172 -945,23.0,24.0,-1.3098929438742493,2.287622053705056 -945,24.0,23.0,-1.3098929438742493,2.287622053705056 -945,24.0,24.0,2.526423063323735,-4.104766100052558 -945,24.0,25.0,-1.2165301194494855,1.8171440463475024 -945,25.0,24.0,-1.2165301194494855,1.8171440463475024 -945,25.0,25.0,1.2165301194494855,-1.8171440463475024 -945,26.0,26.0,1.6829894537803372,-5.700229860408058 -945,26.0,27.0,0.0,2.608731947574922 -945,26.0,28.0,-0.99553355095268,1.881005840357816 -945,26.0,29.0,-0.6874559028276572,1.293971494797717 -945,27.0,5.0,-4.362844058012917,15.463571542897856 -945,27.0,7.0,-1.4439790613954469,4.540814658476248 -945,27.0,26.0,0.0,2.608731947574922 -945,27.0,27.0,5.806823119408364,-22.67145722159613 -945,28.0,26.0,-0.99553355095268,1.881005840357816 -945,28.0,28.0,1.9075867579849564,-3.604364401207048 -945,28.0,29.0,-0.9120532070322764,1.7233585608492326 -945,29.0,26.0,-0.6874559028276572,1.293971494797717 -945,29.0,28.0,-0.9120532070322764,1.7233585608492326 -945,29.0,29.0,1.5995091098599337,-3.0173300556469496 -946,0.0,0.0,6.765516048652632,-21.23160167089863 -946,0.0,1.0,-5.224646179885656,15.646726840803398 -946,0.0,2.0,-1.5408698687669766,5.631674830095234 -946,1.0,0.0,-5.224646179885656,15.646726840803398 -946,1.0,1.0,9.75228216552403,-30.648662892676068 -946,1.0,3.0,-1.7055303166990268,5.1973792282565086 -946,1.0,4.0,-1.1359607881738778,4.772479328281356 -946,1.0,5.0,-1.6861448807654689,5.116477495334806 -946,2.0,0.0,-1.5408698687669766,5.631674830095234 -946,2.0,2.0,9.736318911079088,-29.13794745915803 -946,2.0,3.0,-8.19544904231211,23.5308726290628 -946,3.0,1.0,-1.7055303166990268,5.1973792282565086 -946,3.0,2.0,-8.19544904231211,23.5308726290628 -946,3.0,3.0,16.314103089185693,-55.509410535254254 -946,3.0,5.0,-6.413123730174556,22.31120356548123 -946,3.0,11.0,0.0,4.191255364806866 -946,4.0,1.0,-1.1359607881738778,4.772479328281356 -946,4.0,4.0,4.089980824135861,-12.190647245055052 -946,4.0,6.0,-2.954020035961983,7.449267916773697 -946,5.0,1.0,-1.6861448807654689,5.116477495334806 -946,5.0,3.0,-6.413123730174556,22.31120356548123 -946,5.0,5.0,22.341631269034565,-82.8291478657789 -946,5.0,6.0,-3.590210423980992,11.02611441072814 -946,5.0,7.0,-6.289308176100628,22.0125786163522 -946,5.0,8.0,0.0,4.915840805411357 -946,5.0,9.0,0.0,1.8561002591115965 -946,5.0,27.0,-4.362844058012917,15.463571542897856 -946,6.0,4.0,-2.954020035961983,7.449267916773697 -946,6.0,5.0,-3.590210423980992,11.02611441072814 -946,6.0,6.0,6.544230459942975,-18.45668232750184 -946,7.0,5.0,-6.289308176100628,22.0125786163522 -946,7.0,7.0,7.733287237496075,-26.527493274828448 -946,7.0,27.0,-1.4439790613954469,4.540814658476248 -946,8.0,5.0,0.0,4.915840805411357 -946,8.0,8.0,0.0,-18.706293706293707 -946,8.0,9.0,0.0,9.090909090909092 -946,8.0,10.0,0.0,4.807692307692308 -946,9.0,5.0,0.0,1.8561002591115965 -946,9.0,8.0,0.0,9.090909090909092 -946,9.0,9.0,13.462042814524237,-41.3837606675224 -946,9.0,16.0,-3.956039125715353,10.317447719844054 -946,9.0,19.0,-1.7848303152666305,3.98535828943083 -946,9.0,20.0,-5.101853820159654,10.98071411292983 -946,9.0,21.0,-2.619319553382597,5.400770303329455 -946,10.0,8.0,0.0,4.807692307692308 -946,10.0,10.0,0.0,-4.807692307692308 -946,11.0,3.0,0.0,4.191255364806866 -946,11.0,11.0,6.573961583776156,-24.424167659260668 -946,11.0,12.0,0.0,7.142857142857143 -946,11.0,13.0,-1.5265676088395577,3.1734252729654173 -946,11.0,14.0,-3.0953961826564296,6.097275864326261 -946,11.0,15.0,-1.9519977922801688,4.104359379111847 -946,12.0,11.0,0.0,7.142857142857143 -946,12.0,12.0,0.0,-7.142857142857143 -946,13.0,11.0,-1.5265676088395577,3.1734252729654173 -946,13.0,13.0,4.01751987283902,-5.424299332335067 -946,13.0,14.0,-2.4909522639994623,2.250874059369649 -946,14.0,11.0,-3.0953961826564296,6.097275864326261 -946,14.0,13.0,-2.4909522639994623,2.250874059369649 -946,14.0,14.0,9.365498545964757,-16.01163373210796 -946,14.0,17.0,-1.8108011504072024,3.687418931630696 -946,14.0,22.0,-1.9683489489016612,3.976064876781356 -946,15.0,11.0,-1.9519977922801688,4.104359379111847 -946,15.0,15.0,1.9519977922801688,-4.104359379111847 -946,16.0,9.0,-3.956039125715353,10.317447719844054 -946,16.0,16.0,3.956039125715353,-10.317447719844054 -946,17.0,14.0,-1.8108011504072024,3.687418931630696 -946,17.0,17.0,4.886487584415919,-9.906177730909668 -946,17.0,18.0,-3.0756864340087167,6.218758799278971 -946,18.0,17.0,-3.0756864340087167,6.218758799278971 -946,18.0,18.0,3.0756864340087167,-6.218758799278971 -946,19.0,9.0,-1.7848303152666305,3.98535828943083 -946,19.0,19.0,1.7848303152666305,-3.98535828943083 -946,20.0,9.0,-5.101853820159654,10.98071411292983 -946,20.0,20.0,21.876495189895888,-45.10843276170355 -946,20.0,21.0,-16.774641369736234,34.127718648773715 -946,21.0,9.0,-2.619319553382597,5.400770303329455 -946,21.0,20.0,-16.774641369736234,34.127718648773715 -946,21.0,21.0,21.93449907537439,-43.48289181517921 -946,21.0,23.0,-2.5405381522555563,3.95440286307604 -946,22.0,14.0,-1.9683489489016612,3.976064876781356 -946,22.0,22.0,3.429754555384988,-6.965303617315433 -946,22.0,23.0,-1.4614056064833263,2.989238740534077 -946,23.0,21.0,-2.5405381522555563,3.95440286307604 -946,23.0,22.0,-1.4614056064833263,2.989238740534077 -946,23.0,23.0,5.311836702613133,-9.188263657315172 -946,23.0,24.0,-1.3098929438742493,2.287622053705056 -946,24.0,23.0,-1.3098929438742493,2.287622053705056 -946,24.0,24.0,2.526423063323735,-4.104766100052558 -946,24.0,25.0,-1.2165301194494855,1.8171440463475024 -946,25.0,24.0,-1.2165301194494855,1.8171440463475024 -946,25.0,25.0,1.2165301194494855,-1.8171440463475024 -946,26.0,26.0,1.6829894537803372,-5.700229860408058 -946,26.0,27.0,0.0,2.608731947574922 -946,26.0,28.0,-0.99553355095268,1.881005840357816 -946,26.0,29.0,-0.6874559028276572,1.293971494797717 -946,27.0,5.0,-4.362844058012917,15.463571542897856 -946,27.0,7.0,-1.4439790613954469,4.540814658476248 -946,27.0,26.0,0.0,2.608731947574922 -946,27.0,27.0,5.806823119408364,-22.67145722159613 -946,28.0,26.0,-0.99553355095268,1.881005840357816 -946,28.0,28.0,1.9075867579849564,-3.604364401207048 -946,28.0,29.0,-0.9120532070322764,1.7233585608492326 -946,29.0,26.0,-0.6874559028276572,1.293971494797717 -946,29.0,28.0,-0.9120532070322764,1.7233585608492326 -946,29.0,29.0,1.5995091098599337,-3.0173300556469496 -947,0.0,0.0,6.765516048652632,-21.23160167089863 -947,0.0,1.0,-5.224646179885656,15.646726840803398 -947,0.0,2.0,-1.5408698687669766,5.631674830095234 -947,1.0,0.0,-5.224646179885656,15.646726840803398 -947,1.0,1.0,8.046751848825002,-25.46968366441956 -947,1.0,4.0,-1.1359607881738778,4.772479328281356 -947,1.0,5.0,-1.6861448807654689,5.116477495334806 -947,2.0,0.0,-1.5408698687669766,5.631674830095234 -947,2.0,2.0,9.736318911079088,-29.13794745915803 -947,2.0,3.0,-8.19544904231211,23.5308726290628 -947,3.0,2.0,-8.19544904231211,23.5308726290628 -947,3.0,3.0,8.19544904231211,-28.02372774151652 -947,3.0,11.0,0.0,4.191255364806866 -947,4.0,1.0,-1.1359607881738778,4.772479328281356 -947,4.0,4.0,4.089980824135861,-12.190647245055052 -947,4.0,6.0,-2.954020035961983,7.449267916773697 -947,5.0,1.0,-1.6861448807654689,5.116477495334806 -947,5.0,5.0,6.048988938778386,-27.49675127321733 -947,5.0,8.0,0.0,4.915840805411357 -947,5.0,9.0,0.0,1.8561002591115965 -947,5.0,27.0,-4.362844058012917,15.463571542897856 -947,6.0,4.0,-2.954020035961983,7.449267916773697 -947,6.0,6.0,2.954020035961983,-7.439067916773697 -947,7.0,7.0,1.4439790613954469,-4.519414658476248 -947,7.0,27.0,-1.4439790613954469,4.540814658476248 -947,8.0,5.0,0.0,4.915840805411357 -947,8.0,8.0,0.0,-18.706293706293707 -947,8.0,9.0,0.0,9.090909090909092 -947,8.0,10.0,0.0,4.807692307692308 -947,9.0,5.0,0.0,1.8561002591115965 -947,9.0,8.0,0.0,9.090909090909092 -947,9.0,9.0,10.842723261141638,-35.98299036419294 -947,9.0,16.0,-3.956039125715353,10.317447719844054 -947,9.0,19.0,-1.7848303152666305,3.98535828943083 -947,9.0,20.0,-5.101853820159654,10.98071411292983 -947,10.0,8.0,0.0,4.807692307692308 -947,10.0,10.0,0.0,-4.807692307692308 -947,11.0,3.0,0.0,4.191255364806866 -947,11.0,11.0,6.573961583776156,-24.424167659260668 -947,11.0,12.0,0.0,7.142857142857143 -947,11.0,13.0,-1.5265676088395577,3.1734252729654173 -947,11.0,14.0,-3.0953961826564296,6.097275864326261 -947,11.0,15.0,-1.9519977922801688,4.104359379111847 -947,12.0,11.0,0.0,7.142857142857143 -947,12.0,12.0,0.0,-7.142857142857143 -947,13.0,11.0,-1.5265676088395577,3.1734252729654173 -947,13.0,13.0,4.01751987283902,-5.424299332335067 -947,13.0,14.0,-2.4909522639994623,2.250874059369649 -947,14.0,11.0,-3.0953961826564296,6.097275864326261 -947,14.0,13.0,-2.4909522639994623,2.250874059369649 -947,14.0,14.0,9.365498545964757,-16.01163373210796 -947,14.0,17.0,-1.8108011504072024,3.687418931630696 -947,14.0,22.0,-1.9683489489016612,3.976064876781356 -947,15.0,11.0,-1.9519977922801688,4.104359379111847 -947,15.0,15.0,3.271064728633931,-8.94513365126506 -947,15.0,16.0,-1.3190669363537617,4.8407742721532125 -947,16.0,9.0,-3.956039125715353,10.317447719844054 -947,16.0,15.0,-1.3190669363537617,4.8407742721532125 -947,16.0,16.0,5.275106062069114,-15.158221991997266 -947,17.0,14.0,-1.8108011504072024,3.687418931630696 -947,17.0,17.0,4.886487584415919,-9.906177730909668 -947,17.0,18.0,-3.0756864340087167,6.218758799278971 -947,18.0,17.0,-3.0756864340087167,6.218758799278971 -947,18.0,18.0,8.958039375185187,-17.98346468163191 -947,18.0,19.0,-5.88235294117647,11.76470588235294 -947,19.0,9.0,-1.7848303152666305,3.98535828943083 -947,19.0,18.0,-5.88235294117647,11.76470588235294 -947,19.0,19.0,7.6671832564431,-15.75006417178377 -947,20.0,9.0,-5.101853820159654,10.98071411292983 -947,20.0,20.0,21.876495189895888,-45.10843276170355 -947,20.0,21.0,-16.774641369736234,34.127718648773715 -947,21.0,20.0,-16.774641369736234,34.127718648773715 -947,21.0,21.0,19.31517952199179,-38.08212151184976 -947,21.0,23.0,-2.5405381522555563,3.95440286307604 -947,22.0,14.0,-1.9683489489016612,3.976064876781356 -947,22.0,22.0,1.9683489489016612,-3.976064876781356 -947,23.0,21.0,-2.5405381522555563,3.95440286307604 -947,23.0,23.0,3.850431096129806,-6.199024916781094 -947,23.0,24.0,-1.3098929438742493,2.287622053705056 -947,24.0,23.0,-1.3098929438742493,2.287622053705056 -947,24.0,24.0,4.495715080321987,-7.864978761969621 -947,24.0,25.0,-1.2165301194494855,1.8171440463475024 -947,24.0,26.0,-1.9692920169982515,3.760212661917064 -947,25.0,24.0,-1.2165301194494855,1.8171440463475024 -947,25.0,25.0,1.2165301194494855,-1.8171440463475024 -947,26.0,24.0,-1.9692920169982515,3.760212661917064 -947,26.0,26.0,3.652281470778589,-9.46044252232512 -947,26.0,27.0,0.0,2.608731947574922 -947,26.0,28.0,-0.99553355095268,1.881005840357816 -947,26.0,29.0,-0.6874559028276572,1.293971494797717 -947,27.0,5.0,-4.362844058012917,15.463571542897856 -947,27.0,7.0,-1.4439790613954469,4.540814658476248 -947,27.0,26.0,0.0,2.608731947574922 -947,27.0,27.0,5.806823119408364,-22.67145722159613 -947,28.0,26.0,-0.99553355095268,1.881005840357816 -947,28.0,28.0,1.9075867579849564,-3.604364401207048 -947,28.0,29.0,-0.9120532070322764,1.7233585608492326 -947,29.0,26.0,-0.6874559028276572,1.293971494797717 -947,29.0,28.0,-0.9120532070322764,1.7233585608492326 -947,29.0,29.0,1.5995091098599337,-3.0173300556469496 -948,0.0,0.0,6.765516048652632,-21.23160167089863 -948,0.0,1.0,-5.224646179885656,15.646726840803398 -948,0.0,2.0,-1.5408698687669766,5.631674830095234 -948,1.0,0.0,-5.224646179885656,15.646726840803398 -948,1.0,1.0,9.75228216552403,-30.648662892676068 -948,1.0,3.0,-1.7055303166990268,5.1973792282565086 -948,1.0,4.0,-1.1359607881738778,4.772479328281356 -948,1.0,5.0,-1.6861448807654689,5.116477495334806 -948,2.0,0.0,-1.5408698687669766,5.631674830095234 -948,2.0,2.0,9.736318911079088,-29.13794745915803 -948,2.0,3.0,-8.19544904231211,23.5308726290628 -948,3.0,1.0,-1.7055303166990268,5.1973792282565086 -948,3.0,2.0,-8.19544904231211,23.5308726290628 -948,3.0,3.0,16.314103089185693,-55.509410535254254 -948,3.0,5.0,-6.413123730174556,22.31120356548123 -948,3.0,11.0,0.0,4.191255364806866 -948,4.0,1.0,-1.1359607881738778,4.772479328281356 -948,4.0,4.0,4.089980824135861,-12.190647245055052 -948,4.0,6.0,-2.954020035961983,7.449267916773697 -948,5.0,1.0,-1.6861448807654689,5.116477495334806 -948,5.0,3.0,-6.413123730174556,22.31120356548123 -948,5.0,5.0,22.341631269034565,-82.8291478657789 -948,5.0,6.0,-3.590210423980992,11.02611441072814 -948,5.0,7.0,-6.289308176100628,22.0125786163522 -948,5.0,8.0,0.0,4.915840805411357 -948,5.0,9.0,0.0,1.8561002591115965 -948,5.0,27.0,-4.362844058012917,15.463571542897856 -948,6.0,4.0,-2.954020035961983,7.449267916773697 -948,6.0,5.0,-3.590210423980992,11.02611441072814 -948,6.0,6.0,6.544230459942975,-18.45668232750184 -948,7.0,5.0,-6.289308176100628,22.0125786163522 -948,7.0,7.0,7.733287237496075,-26.527493274828448 -948,7.0,27.0,-1.4439790613954469,4.540814658476248 -948,8.0,5.0,0.0,4.915840805411357 -948,8.0,8.0,0.0,-18.706293706293707 -948,8.0,9.0,0.0,9.090909090909092 -948,8.0,10.0,0.0,4.807692307692308 -948,9.0,5.0,0.0,1.8561002591115965 -948,9.0,8.0,0.0,9.090909090909092 -948,9.0,9.0,13.462042814524237,-41.3837606675224 -948,9.0,16.0,-3.956039125715353,10.317447719844054 -948,9.0,19.0,-1.7848303152666305,3.98535828943083 -948,9.0,20.0,-5.101853820159654,10.98071411292983 -948,9.0,21.0,-2.619319553382597,5.400770303329455 -948,10.0,8.0,0.0,4.807692307692308 -948,10.0,10.0,0.0,-4.807692307692308 -948,11.0,3.0,0.0,4.191255364806866 -948,11.0,11.0,6.573961583776156,-24.424167659260668 -948,11.0,12.0,0.0,7.142857142857143 -948,11.0,13.0,-1.5265676088395577,3.1734252729654173 -948,11.0,14.0,-3.0953961826564296,6.097275864326261 -948,11.0,15.0,-1.9519977922801688,4.104359379111847 -948,12.0,11.0,0.0,7.142857142857143 -948,12.0,12.0,0.0,-7.142857142857143 -948,13.0,11.0,-1.5265676088395577,3.1734252729654173 -948,13.0,13.0,4.01751987283902,-5.424299332335067 -948,13.0,14.0,-2.4909522639994623,2.250874059369649 -948,14.0,11.0,-3.0953961826564296,6.097275864326261 -948,14.0,13.0,-2.4909522639994623,2.250874059369649 -948,14.0,14.0,9.365498545964757,-16.01163373210796 -948,14.0,17.0,-1.8108011504072024,3.687418931630696 -948,14.0,22.0,-1.9683489489016612,3.976064876781356 -948,15.0,11.0,-1.9519977922801688,4.104359379111847 -948,15.0,15.0,3.271064728633931,-8.94513365126506 -948,15.0,16.0,-1.3190669363537617,4.8407742721532125 -948,16.0,9.0,-3.956039125715353,10.317447719844054 -948,16.0,15.0,-1.3190669363537617,4.8407742721532125 -948,16.0,16.0,5.275106062069114,-15.158221991997266 -948,17.0,14.0,-1.8108011504072024,3.687418931630696 -948,17.0,17.0,4.886487584415919,-9.906177730909668 -948,17.0,18.0,-3.0756864340087167,6.218758799278971 -948,18.0,17.0,-3.0756864340087167,6.218758799278971 -948,18.0,18.0,8.958039375185187,-17.98346468163191 -948,18.0,19.0,-5.88235294117647,11.76470588235294 -948,19.0,9.0,-1.7848303152666305,3.98535828943083 -948,19.0,18.0,-5.88235294117647,11.76470588235294 -948,19.0,19.0,7.6671832564431,-15.75006417178377 -948,20.0,9.0,-5.101853820159654,10.98071411292983 -948,20.0,20.0,21.876495189895888,-45.10843276170355 -948,20.0,21.0,-16.774641369736234,34.127718648773715 -948,21.0,9.0,-2.619319553382597,5.400770303329455 -948,21.0,20.0,-16.774641369736234,34.127718648773715 -948,21.0,21.0,21.93449907537439,-43.48289181517921 -948,21.0,23.0,-2.5405381522555563,3.95440286307604 -948,22.0,14.0,-1.9683489489016612,3.976064876781356 -948,22.0,22.0,3.429754555384988,-6.965303617315433 -948,22.0,23.0,-1.4614056064833263,2.989238740534077 -948,23.0,21.0,-2.5405381522555563,3.95440286307604 -948,23.0,22.0,-1.4614056064833263,2.989238740534077 -948,23.0,23.0,5.311836702613133,-9.188263657315172 -948,23.0,24.0,-1.3098929438742493,2.287622053705056 -948,24.0,23.0,-1.3098929438742493,2.287622053705056 -948,24.0,24.0,4.495715080321987,-7.864978761969621 -948,24.0,25.0,-1.2165301194494855,1.8171440463475024 -948,24.0,26.0,-1.9692920169982515,3.760212661917064 -948,25.0,24.0,-1.2165301194494855,1.8171440463475024 -948,25.0,25.0,1.2165301194494855,-1.8171440463475024 -948,26.0,24.0,-1.9692920169982515,3.760212661917064 -948,26.0,26.0,3.652281470778589,-9.46044252232512 -948,26.0,27.0,0.0,2.608731947574922 -948,26.0,28.0,-0.99553355095268,1.881005840357816 -948,26.0,29.0,-0.6874559028276572,1.293971494797717 -948,27.0,5.0,-4.362844058012917,15.463571542897856 -948,27.0,7.0,-1.4439790613954469,4.540814658476248 -948,27.0,26.0,0.0,2.608731947574922 -948,27.0,27.0,5.806823119408364,-22.67145722159613 -948,28.0,26.0,-0.99553355095268,1.881005840357816 -948,28.0,28.0,1.9075867579849564,-3.604364401207048 -948,28.0,29.0,-0.9120532070322764,1.7233585608492326 -948,29.0,26.0,-0.6874559028276572,1.293971494797717 -948,29.0,28.0,-0.9120532070322764,1.7233585608492326 -948,29.0,29.0,1.5995091098599337,-3.0173300556469496 -949,0.0,0.0,6.765516048652632,-21.23160167089863 -949,0.0,1.0,-5.224646179885656,15.646726840803398 -949,0.0,2.0,-1.5408698687669766,5.631674830095234 -949,1.0,0.0,-5.224646179885656,15.646726840803398 -949,1.0,1.0,9.75228216552403,-30.648662892676068 -949,1.0,3.0,-1.7055303166990268,5.1973792282565086 -949,1.0,4.0,-1.1359607881738778,4.772479328281356 -949,1.0,5.0,-1.6861448807654689,5.116477495334806 -949,2.0,0.0,-1.5408698687669766,5.631674830095234 -949,2.0,2.0,9.736318911079088,-29.13794745915803 -949,2.0,3.0,-8.19544904231211,23.5308726290628 -949,3.0,1.0,-1.7055303166990268,5.1973792282565086 -949,3.0,2.0,-8.19544904231211,23.5308726290628 -949,3.0,3.0,16.314103089185693,-55.509410535254254 -949,3.0,5.0,-6.413123730174556,22.31120356548123 -949,3.0,11.0,0.0,4.191255364806866 -949,4.0,1.0,-1.1359607881738778,4.772479328281356 -949,4.0,4.0,4.089980824135861,-12.190647245055052 -949,4.0,6.0,-2.954020035961983,7.449267916773697 -949,5.0,1.0,-1.6861448807654689,5.116477495334806 -949,5.0,3.0,-6.413123730174556,22.31120356548123 -949,5.0,5.0,22.341631269034565,-82.8291478657789 -949,5.0,6.0,-3.590210423980992,11.02611441072814 -949,5.0,7.0,-6.289308176100628,22.0125786163522 -949,5.0,8.0,0.0,4.915840805411357 -949,5.0,9.0,0.0,1.8561002591115965 -949,5.0,27.0,-4.362844058012917,15.463571542897856 -949,6.0,4.0,-2.954020035961983,7.449267916773697 -949,6.0,5.0,-3.590210423980992,11.02611441072814 -949,6.0,6.0,6.544230459942975,-18.45668232750184 -949,7.0,5.0,-6.289308176100628,22.0125786163522 -949,7.0,7.0,7.733287237496075,-26.527493274828448 -949,7.0,27.0,-1.4439790613954469,4.540814658476248 -949,8.0,5.0,0.0,4.915840805411357 -949,8.0,8.0,0.0,-18.706293706293707 -949,8.0,9.0,0.0,9.090909090909092 -949,8.0,10.0,0.0,4.807692307692308 -949,9.0,5.0,0.0,1.8561002591115965 -949,9.0,8.0,0.0,9.090909090909092 -949,9.0,9.0,13.462042814524237,-41.3837606675224 -949,9.0,16.0,-3.956039125715353,10.317447719844054 -949,9.0,19.0,-1.7848303152666305,3.98535828943083 -949,9.0,20.0,-5.101853820159654,10.98071411292983 -949,9.0,21.0,-2.619319553382597,5.400770303329455 -949,10.0,8.0,0.0,4.807692307692308 -949,10.0,10.0,0.0,-4.807692307692308 -949,11.0,3.0,0.0,4.191255364806866 -949,11.0,11.0,6.573961583776156,-24.424167659260668 -949,11.0,12.0,0.0,7.142857142857143 -949,11.0,13.0,-1.5265676088395577,3.1734252729654173 -949,11.0,14.0,-3.0953961826564296,6.097275864326261 -949,11.0,15.0,-1.9519977922801688,4.104359379111847 -949,12.0,11.0,0.0,7.142857142857143 -949,12.0,12.0,0.0,-7.142857142857143 -949,13.0,11.0,-1.5265676088395577,3.1734252729654173 -949,13.0,13.0,4.01751987283902,-5.424299332335067 -949,13.0,14.0,-2.4909522639994623,2.250874059369649 -949,14.0,11.0,-3.0953961826564296,6.097275864326261 -949,14.0,13.0,-2.4909522639994623,2.250874059369649 -949,14.0,14.0,9.365498545964757,-16.01163373210796 -949,14.0,17.0,-1.8108011504072024,3.687418931630696 -949,14.0,22.0,-1.9683489489016612,3.976064876781356 -949,15.0,11.0,-1.9519977922801688,4.104359379111847 -949,15.0,15.0,3.271064728633931,-8.94513365126506 -949,15.0,16.0,-1.3190669363537617,4.8407742721532125 -949,16.0,9.0,-3.956039125715353,10.317447719844054 -949,16.0,15.0,-1.3190669363537617,4.8407742721532125 -949,16.0,16.0,5.275106062069114,-15.158221991997266 -949,17.0,14.0,-1.8108011504072024,3.687418931630696 -949,17.0,17.0,4.886487584415919,-9.906177730909668 -949,17.0,18.0,-3.0756864340087167,6.218758799278971 -949,18.0,17.0,-3.0756864340087167,6.218758799278971 -949,18.0,18.0,8.958039375185187,-17.98346468163191 -949,18.0,19.0,-5.88235294117647,11.76470588235294 -949,19.0,9.0,-1.7848303152666305,3.98535828943083 -949,19.0,18.0,-5.88235294117647,11.76470588235294 -949,19.0,19.0,7.6671832564431,-15.75006417178377 -949,20.0,9.0,-5.101853820159654,10.98071411292983 -949,20.0,20.0,21.876495189895888,-45.10843276170355 -949,20.0,21.0,-16.774641369736234,34.127718648773715 -949,21.0,9.0,-2.619319553382597,5.400770303329455 -949,21.0,20.0,-16.774641369736234,34.127718648773715 -949,21.0,21.0,21.93449907537439,-43.48289181517921 -949,21.0,23.0,-2.5405381522555563,3.95440286307604 -949,22.0,14.0,-1.9683489489016612,3.976064876781356 -949,22.0,22.0,3.429754555384988,-6.965303617315433 -949,22.0,23.0,-1.4614056064833263,2.989238740534077 -949,23.0,21.0,-2.5405381522555563,3.95440286307604 -949,23.0,22.0,-1.4614056064833263,2.989238740534077 -949,23.0,23.0,5.311836702613133,-9.188263657315172 -949,23.0,24.0,-1.3098929438742493,2.287622053705056 -949,24.0,23.0,-1.3098929438742493,2.287622053705056 -949,24.0,24.0,4.495715080321987,-7.864978761969621 -949,24.0,25.0,-1.2165301194494855,1.8171440463475024 -949,24.0,26.0,-1.9692920169982515,3.760212661917064 -949,25.0,24.0,-1.2165301194494855,1.8171440463475024 -949,25.0,25.0,1.2165301194494855,-1.8171440463475024 -949,26.0,24.0,-1.9692920169982515,3.760212661917064 -949,26.0,26.0,3.652281470778589,-9.46044252232512 -949,26.0,27.0,0.0,2.608731947574922 -949,26.0,28.0,-0.99553355095268,1.881005840357816 -949,26.0,29.0,-0.6874559028276572,1.293971494797717 -949,27.0,5.0,-4.362844058012917,15.463571542897856 -949,27.0,7.0,-1.4439790613954469,4.540814658476248 -949,27.0,26.0,0.0,2.608731947574922 -949,27.0,27.0,5.806823119408364,-22.67145722159613 -949,28.0,26.0,-0.99553355095268,1.881005840357816 -949,28.0,28.0,1.9075867579849564,-3.604364401207048 -949,28.0,29.0,-0.9120532070322764,1.7233585608492326 -949,29.0,26.0,-0.6874559028276572,1.293971494797717 -949,29.0,28.0,-0.9120532070322764,1.7233585608492326 -949,29.0,29.0,1.5995091098599337,-3.0173300556469496 -950,0.0,0.0,6.765516048652632,-21.23160167089863 -950,0.0,1.0,-5.224646179885656,15.646726840803398 -950,0.0,2.0,-1.5408698687669766,5.631674830095234 -950,1.0,0.0,-5.224646179885656,15.646726840803398 -950,1.0,1.0,9.75228216552403,-30.648662892676068 -950,1.0,3.0,-1.7055303166990268,5.1973792282565086 -950,1.0,4.0,-1.1359607881738778,4.772479328281356 -950,1.0,5.0,-1.6861448807654689,5.116477495334806 -950,2.0,0.0,-1.5408698687669766,5.631674830095234 -950,2.0,2.0,9.736318911079088,-29.13794745915803 -950,2.0,3.0,-8.19544904231211,23.5308726290628 -950,3.0,1.0,-1.7055303166990268,5.1973792282565086 -950,3.0,2.0,-8.19544904231211,23.5308726290628 -950,3.0,3.0,16.314103089185693,-55.509410535254254 -950,3.0,5.0,-6.413123730174556,22.31120356548123 -950,3.0,11.0,0.0,4.191255364806866 -950,4.0,1.0,-1.1359607881738778,4.772479328281356 -950,4.0,4.0,4.089980824135861,-12.190647245055052 -950,4.0,6.0,-2.954020035961983,7.449267916773697 -950,5.0,1.0,-1.6861448807654689,5.116477495334806 -950,5.0,3.0,-6.413123730174556,22.31120356548123 -950,5.0,5.0,22.341631269034565,-82.8291478657789 -950,5.0,6.0,-3.590210423980992,11.02611441072814 -950,5.0,7.0,-6.289308176100628,22.0125786163522 -950,5.0,8.0,0.0,4.915840805411357 -950,5.0,9.0,0.0,1.8561002591115965 -950,5.0,27.0,-4.362844058012917,15.463571542897856 -950,6.0,4.0,-2.954020035961983,7.449267916773697 -950,6.0,5.0,-3.590210423980992,11.02611441072814 -950,6.0,6.0,6.544230459942975,-18.45668232750184 -950,7.0,5.0,-6.289308176100628,22.0125786163522 -950,7.0,7.0,7.733287237496075,-26.527493274828448 -950,7.0,27.0,-1.4439790613954469,4.540814658476248 -950,8.0,5.0,0.0,4.915840805411357 -950,8.0,8.0,0.0,-18.706293706293707 -950,8.0,9.0,0.0,9.090909090909092 -950,8.0,10.0,0.0,4.807692307692308 -950,9.0,5.0,0.0,1.8561002591115965 -950,9.0,8.0,0.0,9.090909090909092 -950,9.0,9.0,13.462042814524237,-41.3837606675224 -950,9.0,16.0,-3.956039125715353,10.317447719844054 -950,9.0,19.0,-1.7848303152666305,3.98535828943083 -950,9.0,20.0,-5.101853820159654,10.98071411292983 -950,9.0,21.0,-2.619319553382597,5.400770303329455 -950,10.0,8.0,0.0,4.807692307692308 -950,10.0,10.0,0.0,-4.807692307692308 -950,11.0,3.0,0.0,4.191255364806866 -950,11.0,11.0,5.047393974936599,-21.25074238629525 -950,11.0,12.0,0.0,7.142857142857143 -950,11.0,14.0,-3.0953961826564296,6.097275864326261 -950,11.0,15.0,-1.9519977922801688,4.104359379111847 -950,12.0,11.0,0.0,7.142857142857143 -950,12.0,12.0,0.0,-7.142857142857143 -950,13.0,13.0,2.4909522639994623,-2.250874059369649 -950,13.0,14.0,-2.4909522639994623,2.250874059369649 -950,14.0,11.0,-3.0953961826564296,6.097275864326261 -950,14.0,13.0,-2.4909522639994623,2.250874059369649 -950,14.0,14.0,9.365498545964757,-16.01163373210796 -950,14.0,17.0,-1.8108011504072024,3.687418931630696 -950,14.0,22.0,-1.9683489489016612,3.976064876781356 -950,15.0,11.0,-1.9519977922801688,4.104359379111847 -950,15.0,15.0,3.271064728633931,-8.94513365126506 -950,15.0,16.0,-1.3190669363537617,4.8407742721532125 -950,16.0,9.0,-3.956039125715353,10.317447719844054 -950,16.0,15.0,-1.3190669363537617,4.8407742721532125 -950,16.0,16.0,5.275106062069114,-15.158221991997266 -950,17.0,14.0,-1.8108011504072024,3.687418931630696 -950,17.0,17.0,4.886487584415919,-9.906177730909668 -950,17.0,18.0,-3.0756864340087167,6.218758799278971 -950,18.0,17.0,-3.0756864340087167,6.218758799278971 -950,18.0,18.0,8.958039375185187,-17.98346468163191 -950,18.0,19.0,-5.88235294117647,11.76470588235294 -950,19.0,9.0,-1.7848303152666305,3.98535828943083 -950,19.0,18.0,-5.88235294117647,11.76470588235294 -950,19.0,19.0,7.6671832564431,-15.75006417178377 -950,20.0,9.0,-5.101853820159654,10.98071411292983 -950,20.0,20.0,21.876495189895888,-45.10843276170355 -950,20.0,21.0,-16.774641369736234,34.127718648773715 -950,21.0,9.0,-2.619319553382597,5.400770303329455 -950,21.0,20.0,-16.774641369736234,34.127718648773715 -950,21.0,21.0,21.93449907537439,-43.48289181517921 -950,21.0,23.0,-2.5405381522555563,3.95440286307604 -950,22.0,14.0,-1.9683489489016612,3.976064876781356 -950,22.0,22.0,3.429754555384988,-6.965303617315433 -950,22.0,23.0,-1.4614056064833263,2.989238740534077 -950,23.0,21.0,-2.5405381522555563,3.95440286307604 -950,23.0,22.0,-1.4614056064833263,2.989238740534077 -950,23.0,23.0,5.311836702613133,-9.188263657315172 -950,23.0,24.0,-1.3098929438742493,2.287622053705056 -950,24.0,23.0,-1.3098929438742493,2.287622053705056 -950,24.0,24.0,4.495715080321987,-7.864978761969621 -950,24.0,25.0,-1.2165301194494855,1.8171440463475024 -950,24.0,26.0,-1.9692920169982515,3.760212661917064 -950,25.0,24.0,-1.2165301194494855,1.8171440463475024 -950,25.0,25.0,1.2165301194494855,-1.8171440463475024 -950,26.0,24.0,-1.9692920169982515,3.760212661917064 -950,26.0,26.0,3.652281470778589,-9.46044252232512 -950,26.0,27.0,0.0,2.608731947574922 -950,26.0,28.0,-0.99553355095268,1.881005840357816 -950,26.0,29.0,-0.6874559028276572,1.293971494797717 -950,27.0,5.0,-4.362844058012917,15.463571542897856 -950,27.0,7.0,-1.4439790613954469,4.540814658476248 -950,27.0,26.0,0.0,2.608731947574922 -950,27.0,27.0,5.806823119408364,-22.67145722159613 -950,28.0,26.0,-0.99553355095268,1.881005840357816 -950,28.0,28.0,1.9075867579849564,-3.604364401207048 -950,28.0,29.0,-0.9120532070322764,1.7233585608492326 -950,29.0,26.0,-0.6874559028276572,1.293971494797717 -950,29.0,28.0,-0.9120532070322764,1.7233585608492326 -950,29.0,29.0,1.5995091098599337,-3.0173300556469496 -951,0.0,0.0,6.765516048652632,-21.23160167089863 -951,0.0,1.0,-5.224646179885656,15.646726840803398 -951,0.0,2.0,-1.5408698687669766,5.631674830095234 -951,1.0,0.0,-5.224646179885656,15.646726840803398 -951,1.0,1.0,9.75228216552403,-30.648662892676068 -951,1.0,3.0,-1.7055303166990268,5.1973792282565086 -951,1.0,4.0,-1.1359607881738778,4.772479328281356 -951,1.0,5.0,-1.6861448807654689,5.116477495334806 -951,2.0,0.0,-1.5408698687669766,5.631674830095234 -951,2.0,2.0,9.736318911079088,-29.13794745915803 -951,2.0,3.0,-8.19544904231211,23.5308726290628 -951,3.0,1.0,-1.7055303166990268,5.1973792282565086 -951,3.0,2.0,-8.19544904231211,23.5308726290628 -951,3.0,3.0,16.314103089185693,-51.01235542280054 -951,3.0,5.0,-6.413123730174556,22.31120356548123 -951,4.0,1.0,-1.1359607881738778,4.772479328281356 -951,4.0,4.0,4.089980824135861,-12.190647245055052 -951,4.0,6.0,-2.954020035961983,7.449267916773697 -951,5.0,1.0,-1.6861448807654689,5.116477495334806 -951,5.0,3.0,-6.413123730174556,22.31120356548123 -951,5.0,5.0,22.341631269034565,-77.80272577435625 -951,5.0,6.0,-3.590210423980992,11.02611441072814 -951,5.0,7.0,-6.289308176100628,22.0125786163522 -951,5.0,9.0,0.0,1.8561002591115965 -951,5.0,27.0,-4.362844058012917,15.463571542897856 -951,6.0,4.0,-2.954020035961983,7.449267916773697 -951,6.0,5.0,-3.590210423980992,11.02611441072814 -951,6.0,6.0,6.544230459942975,-18.45668232750184 -951,7.0,5.0,-6.289308176100628,22.0125786163522 -951,7.0,7.0,7.733287237496075,-26.527493274828448 -951,7.0,27.0,-1.4439790613954469,4.540814658476248 -951,8.0,8.0,0.0,-13.8986013986014 -951,8.0,9.0,0.0,9.090909090909092 -951,8.0,10.0,0.0,4.807692307692308 -951,9.0,5.0,0.0,1.8561002591115965 -951,9.0,8.0,0.0,9.090909090909092 -951,9.0,9.0,13.462042814524237,-41.3837606675224 -951,9.0,16.0,-3.956039125715353,10.317447719844054 -951,9.0,19.0,-1.7848303152666305,3.98535828943083 -951,9.0,20.0,-5.101853820159654,10.98071411292983 -951,9.0,21.0,-2.619319553382597,5.400770303329455 -951,10.0,8.0,0.0,4.807692307692308 -951,10.0,10.0,0.0,-4.807692307692308 -951,11.0,11.0,6.573961583776156,-20.517917659260668 -951,11.0,12.0,0.0,7.142857142857143 -951,11.0,13.0,-1.5265676088395577,3.1734252729654173 -951,11.0,14.0,-3.0953961826564296,6.097275864326261 -951,11.0,15.0,-1.9519977922801688,4.104359379111847 -951,12.0,11.0,0.0,7.142857142857143 -951,12.0,12.0,0.0,-7.142857142857143 -951,13.0,11.0,-1.5265676088395577,3.1734252729654173 -951,13.0,13.0,4.01751987283902,-5.424299332335067 -951,13.0,14.0,-2.4909522639994623,2.250874059369649 -951,14.0,11.0,-3.0953961826564296,6.097275864326261 -951,14.0,13.0,-2.4909522639994623,2.250874059369649 -951,14.0,14.0,9.365498545964757,-16.01163373210796 -951,14.0,17.0,-1.8108011504072024,3.687418931630696 -951,14.0,22.0,-1.9683489489016612,3.976064876781356 -951,15.0,11.0,-1.9519977922801688,4.104359379111847 -951,15.0,15.0,3.271064728633931,-8.94513365126506 -951,15.0,16.0,-1.3190669363537617,4.8407742721532125 -951,16.0,9.0,-3.956039125715353,10.317447719844054 -951,16.0,15.0,-1.3190669363537617,4.8407742721532125 -951,16.0,16.0,5.275106062069114,-15.158221991997266 -951,17.0,14.0,-1.8108011504072024,3.687418931630696 -951,17.0,17.0,1.8108011504072024,-3.687418931630696 -951,18.0,18.0,5.88235294117647,-11.76470588235294 -951,18.0,19.0,-5.88235294117647,11.76470588235294 -951,19.0,9.0,-1.7848303152666305,3.98535828943083 -951,19.0,18.0,-5.88235294117647,11.76470588235294 -951,19.0,19.0,7.6671832564431,-15.75006417178377 -951,20.0,9.0,-5.101853820159654,10.98071411292983 -951,20.0,20.0,21.876495189895888,-45.10843276170355 -951,20.0,21.0,-16.774641369736234,34.127718648773715 -951,21.0,9.0,-2.619319553382597,5.400770303329455 -951,21.0,20.0,-16.774641369736234,34.127718648773715 -951,21.0,21.0,21.93449907537439,-43.48289181517921 -951,21.0,23.0,-2.5405381522555563,3.95440286307604 -951,22.0,14.0,-1.9683489489016612,3.976064876781356 -951,22.0,22.0,3.429754555384988,-6.965303617315433 -951,22.0,23.0,-1.4614056064833263,2.989238740534077 -951,23.0,21.0,-2.5405381522555563,3.95440286307604 -951,23.0,22.0,-1.4614056064833263,2.989238740534077 -951,23.0,23.0,5.311836702613133,-9.188263657315172 -951,23.0,24.0,-1.3098929438742493,2.287622053705056 -951,24.0,23.0,-1.3098929438742493,2.287622053705056 -951,24.0,24.0,4.495715080321987,-7.864978761969621 -951,24.0,25.0,-1.2165301194494855,1.8171440463475024 -951,24.0,26.0,-1.9692920169982515,3.760212661917064 -951,25.0,24.0,-1.2165301194494855,1.8171440463475024 -951,25.0,25.0,1.2165301194494855,-1.8171440463475024 -951,26.0,24.0,-1.9692920169982515,3.760212661917064 -951,26.0,26.0,3.652281470778589,-9.46044252232512 -951,26.0,27.0,0.0,2.608731947574922 -951,26.0,28.0,-0.99553355095268,1.881005840357816 -951,26.0,29.0,-0.6874559028276572,1.293971494797717 -951,27.0,5.0,-4.362844058012917,15.463571542897856 -951,27.0,7.0,-1.4439790613954469,4.540814658476248 -951,27.0,26.0,0.0,2.608731947574922 -951,27.0,27.0,5.806823119408364,-22.67145722159613 -951,28.0,26.0,-0.99553355095268,1.881005840357816 -951,28.0,28.0,1.9075867579849564,-3.604364401207048 -951,28.0,29.0,-0.9120532070322764,1.7233585608492326 -951,29.0,26.0,-0.6874559028276572,1.293971494797717 -951,29.0,28.0,-0.9120532070322764,1.7233585608492326 -951,29.0,29.0,1.5995091098599337,-3.0173300556469496 -952,0.0,0.0,5.224646179885656,-15.620326840803395 -952,0.0,1.0,-5.224646179885656,15.646726840803398 -952,1.0,0.0,-5.224646179885656,15.646726840803398 -952,1.0,1.0,9.75228216552403,-30.648662892676068 -952,1.0,3.0,-1.7055303166990268,5.1973792282565086 -952,1.0,4.0,-1.1359607881738778,4.772479328281356 -952,1.0,5.0,-1.6861448807654689,5.116477495334806 -952,2.0,2.0,8.19544904231211,-23.5266726290628 -952,2.0,3.0,-8.19544904231211,23.5308726290628 -952,3.0,1.0,-1.7055303166990268,5.1973792282565086 -952,3.0,2.0,-8.19544904231211,23.5308726290628 -952,3.0,3.0,16.314103089185693,-55.509410535254254 -952,3.0,5.0,-6.413123730174556,22.31120356548123 -952,3.0,11.0,0.0,4.191255364806866 -952,4.0,1.0,-1.1359607881738778,4.772479328281356 -952,4.0,4.0,4.089980824135861,-12.190647245055052 -952,4.0,6.0,-2.954020035961983,7.449267916773697 -952,5.0,1.0,-1.6861448807654689,5.116477495334806 -952,5.0,3.0,-6.413123730174556,22.31120356548123 -952,5.0,5.0,16.052323092933932,-60.8210692494267 -952,5.0,6.0,-3.590210423980992,11.02611441072814 -952,5.0,8.0,0.0,4.915840805411357 -952,5.0,9.0,0.0,1.8561002591115965 -952,5.0,27.0,-4.362844058012917,15.463571542897856 -952,6.0,4.0,-2.954020035961983,7.449267916773697 -952,6.0,5.0,-3.590210423980992,11.02611441072814 -952,6.0,6.0,6.544230459942975,-18.45668232750184 -952,7.0,7.0,1.4439790613954469,-4.519414658476248 -952,7.0,27.0,-1.4439790613954469,4.540814658476248 -952,8.0,5.0,0.0,4.915840805411357 -952,8.0,8.0,0.0,-18.706293706293707 -952,8.0,9.0,0.0,9.090909090909092 -952,8.0,10.0,0.0,4.807692307692308 -952,9.0,5.0,0.0,1.8561002591115965 -952,9.0,8.0,0.0,9.090909090909092 -952,9.0,9.0,13.462042814524237,-41.3837606675224 -952,9.0,16.0,-3.956039125715353,10.317447719844054 -952,9.0,19.0,-1.7848303152666305,3.98535828943083 -952,9.0,20.0,-5.101853820159654,10.98071411292983 -952,9.0,21.0,-2.619319553382597,5.400770303329455 -952,10.0,8.0,0.0,4.807692307692308 -952,10.0,10.0,0.0,-4.807692307692308 -952,11.0,3.0,0.0,4.191255364806866 -952,11.0,11.0,6.573961583776156,-24.424167659260668 -952,11.0,12.0,0.0,7.142857142857143 -952,11.0,13.0,-1.5265676088395577,3.1734252729654173 -952,11.0,14.0,-3.0953961826564296,6.097275864326261 -952,11.0,15.0,-1.9519977922801688,4.104359379111847 -952,12.0,11.0,0.0,7.142857142857143 -952,12.0,12.0,0.0,-7.142857142857143 -952,13.0,11.0,-1.5265676088395577,3.1734252729654173 -952,13.0,13.0,4.01751987283902,-5.424299332335067 -952,13.0,14.0,-2.4909522639994623,2.250874059369649 -952,14.0,11.0,-3.0953961826564296,6.097275864326261 -952,14.0,13.0,-2.4909522639994623,2.250874059369649 -952,14.0,14.0,7.554697395557554,-12.324214800477266 -952,14.0,22.0,-1.9683489489016612,3.976064876781356 -952,15.0,11.0,-1.9519977922801688,4.104359379111847 -952,15.0,15.0,3.271064728633931,-8.94513365126506 -952,15.0,16.0,-1.3190669363537617,4.8407742721532125 -952,16.0,9.0,-3.956039125715353,10.317447719844054 -952,16.0,15.0,-1.3190669363537617,4.8407742721532125 -952,16.0,16.0,5.275106062069114,-15.158221991997266 -952,17.0,17.0,3.0756864340087167,-6.218758799278971 -952,17.0,18.0,-3.0756864340087167,6.218758799278971 -952,18.0,17.0,-3.0756864340087167,6.218758799278971 -952,18.0,18.0,8.958039375185187,-17.98346468163191 -952,18.0,19.0,-5.88235294117647,11.76470588235294 -952,19.0,9.0,-1.7848303152666305,3.98535828943083 -952,19.0,18.0,-5.88235294117647,11.76470588235294 -952,19.0,19.0,7.6671832564431,-15.75006417178377 -952,20.0,9.0,-5.101853820159654,10.98071411292983 -952,20.0,20.0,21.876495189895888,-45.10843276170355 -952,20.0,21.0,-16.774641369736234,34.127718648773715 -952,21.0,9.0,-2.619319553382597,5.400770303329455 -952,21.0,20.0,-16.774641369736234,34.127718648773715 -952,21.0,21.0,21.93449907537439,-43.48289181517921 -952,21.0,23.0,-2.5405381522555563,3.95440286307604 -952,22.0,14.0,-1.9683489489016612,3.976064876781356 -952,22.0,22.0,3.429754555384988,-6.965303617315433 -952,22.0,23.0,-1.4614056064833263,2.989238740534077 -952,23.0,21.0,-2.5405381522555563,3.95440286307604 -952,23.0,22.0,-1.4614056064833263,2.989238740534077 -952,23.0,23.0,5.311836702613133,-9.188263657315172 -952,23.0,24.0,-1.3098929438742493,2.287622053705056 -952,24.0,23.0,-1.3098929438742493,2.287622053705056 -952,24.0,24.0,4.495715080321987,-7.864978761969621 -952,24.0,25.0,-1.2165301194494855,1.8171440463475024 -952,24.0,26.0,-1.9692920169982515,3.760212661917064 -952,25.0,24.0,-1.2165301194494855,1.8171440463475024 -952,25.0,25.0,1.2165301194494855,-1.8171440463475024 -952,26.0,24.0,-1.9692920169982515,3.760212661917064 -952,26.0,26.0,3.652281470778589,-9.46044252232512 -952,26.0,27.0,0.0,2.608731947574922 -952,26.0,28.0,-0.99553355095268,1.881005840357816 -952,26.0,29.0,-0.6874559028276572,1.293971494797717 -952,27.0,5.0,-4.362844058012917,15.463571542897856 -952,27.0,7.0,-1.4439790613954469,4.540814658476248 -952,27.0,26.0,0.0,2.608731947574922 -952,27.0,27.0,5.806823119408364,-22.67145722159613 -952,28.0,26.0,-0.99553355095268,1.881005840357816 -952,28.0,28.0,0.99553355095268,-1.881005840357816 -952,29.0,26.0,-0.6874559028276572,1.293971494797717 -952,29.0,29.0,0.6874559028276572,-1.293971494797717 -953,0.0,0.0,6.765516048652632,-21.23160167089863 -953,0.0,1.0,-5.224646179885656,15.646726840803398 -953,0.0,2.0,-1.5408698687669766,5.631674830095234 -953,1.0,0.0,-5.224646179885656,15.646726840803398 -953,1.0,1.0,9.75228216552403,-30.648662892676068 -953,1.0,3.0,-1.7055303166990268,5.1973792282565086 -953,1.0,4.0,-1.1359607881738778,4.772479328281356 -953,1.0,5.0,-1.6861448807654689,5.116477495334806 -953,2.0,0.0,-1.5408698687669766,5.631674830095234 -953,2.0,2.0,9.736318911079088,-29.13794745915803 -953,2.0,3.0,-8.19544904231211,23.5308726290628 -953,3.0,1.0,-1.7055303166990268,5.1973792282565086 -953,3.0,2.0,-8.19544904231211,23.5308726290628 -953,3.0,3.0,16.314103089185693,-55.509410535254254 -953,3.0,5.0,-6.413123730174556,22.31120356548123 -953,3.0,11.0,0.0,4.191255364806866 -953,4.0,1.0,-1.1359607881738778,4.772479328281356 -953,4.0,4.0,4.089980824135861,-12.190647245055052 -953,4.0,6.0,-2.954020035961983,7.449267916773697 -953,5.0,1.0,-1.6861448807654689,5.116477495334806 -953,5.0,3.0,-6.413123730174556,22.31120356548123 -953,5.0,5.0,22.341631269034565,-82.8291478657789 -953,5.0,6.0,-3.590210423980992,11.02611441072814 -953,5.0,7.0,-6.289308176100628,22.0125786163522 -953,5.0,8.0,0.0,4.915840805411357 -953,5.0,9.0,0.0,1.8561002591115965 -953,5.0,27.0,-4.362844058012917,15.463571542897856 -953,6.0,4.0,-2.954020035961983,7.449267916773697 -953,6.0,5.0,-3.590210423980992,11.02611441072814 -953,6.0,6.0,6.544230459942975,-18.45668232750184 -953,7.0,5.0,-6.289308176100628,22.0125786163522 -953,7.0,7.0,7.733287237496075,-26.527493274828448 -953,7.0,27.0,-1.4439790613954469,4.540814658476248 -953,8.0,5.0,0.0,4.915840805411357 -953,8.0,8.0,0.0,-18.706293706293707 -953,8.0,9.0,0.0,9.090909090909092 -953,8.0,10.0,0.0,4.807692307692308 -953,9.0,5.0,0.0,1.8561002591115965 -953,9.0,8.0,0.0,9.090909090909092 -953,9.0,9.0,13.462042814524237,-41.3837606675224 -953,9.0,16.0,-3.956039125715353,10.317447719844054 -953,9.0,19.0,-1.7848303152666305,3.98535828943083 -953,9.0,20.0,-5.101853820159654,10.98071411292983 -953,9.0,21.0,-2.619319553382597,5.400770303329455 -953,10.0,8.0,0.0,4.807692307692308 -953,10.0,10.0,0.0,-4.807692307692308 -953,11.0,3.0,0.0,4.191255364806866 -953,11.0,11.0,6.573961583776156,-24.424167659260668 -953,11.0,12.0,0.0,7.142857142857143 -953,11.0,13.0,-1.5265676088395577,3.1734252729654173 -953,11.0,14.0,-3.0953961826564296,6.097275864326261 -953,11.0,15.0,-1.9519977922801688,4.104359379111847 -953,12.0,11.0,0.0,7.142857142857143 -953,12.0,12.0,0.0,-7.142857142857143 -953,13.0,11.0,-1.5265676088395577,3.1734252729654173 -953,13.0,13.0,4.01751987283902,-5.424299332335067 -953,13.0,14.0,-2.4909522639994623,2.250874059369649 -953,14.0,11.0,-3.0953961826564296,6.097275864326261 -953,14.0,13.0,-2.4909522639994623,2.250874059369649 -953,14.0,14.0,9.365498545964757,-16.01163373210796 -953,14.0,17.0,-1.8108011504072024,3.687418931630696 -953,14.0,22.0,-1.9683489489016612,3.976064876781356 -953,15.0,11.0,-1.9519977922801688,4.104359379111847 -953,15.0,15.0,3.271064728633931,-8.94513365126506 -953,15.0,16.0,-1.3190669363537617,4.8407742721532125 -953,16.0,9.0,-3.956039125715353,10.317447719844054 -953,16.0,15.0,-1.3190669363537617,4.8407742721532125 -953,16.0,16.0,5.275106062069114,-15.158221991997266 -953,17.0,14.0,-1.8108011504072024,3.687418931630696 -953,17.0,17.0,4.886487584415919,-9.906177730909668 -953,17.0,18.0,-3.0756864340087167,6.218758799278971 -953,18.0,17.0,-3.0756864340087167,6.218758799278971 -953,18.0,18.0,8.958039375185187,-17.98346468163191 -953,18.0,19.0,-5.88235294117647,11.76470588235294 -953,19.0,9.0,-1.7848303152666305,3.98535828943083 -953,19.0,18.0,-5.88235294117647,11.76470588235294 -953,19.0,19.0,7.6671832564431,-15.75006417178377 -953,20.0,9.0,-5.101853820159654,10.98071411292983 -953,20.0,20.0,21.876495189895888,-45.10843276170355 -953,20.0,21.0,-16.774641369736234,34.127718648773715 -953,21.0,9.0,-2.619319553382597,5.400770303329455 -953,21.0,20.0,-16.774641369736234,34.127718648773715 -953,21.0,21.0,21.93449907537439,-43.48289181517921 -953,21.0,23.0,-2.5405381522555563,3.95440286307604 -953,22.0,14.0,-1.9683489489016612,3.976064876781356 -953,22.0,22.0,3.429754555384988,-6.965303617315433 -953,22.0,23.0,-1.4614056064833263,2.989238740534077 -953,23.0,21.0,-2.5405381522555563,3.95440286307604 -953,23.0,22.0,-1.4614056064833263,2.989238740534077 -953,23.0,23.0,5.311836702613133,-9.188263657315172 -953,23.0,24.0,-1.3098929438742493,2.287622053705056 -953,24.0,23.0,-1.3098929438742493,2.287622053705056 -953,24.0,24.0,4.495715080321987,-7.864978761969621 -953,24.0,25.0,-1.2165301194494855,1.8171440463475024 -953,24.0,26.0,-1.9692920169982515,3.760212661917064 -953,25.0,24.0,-1.2165301194494855,1.8171440463475024 -953,25.0,25.0,1.2165301194494855,-1.8171440463475024 -953,26.0,24.0,-1.9692920169982515,3.760212661917064 -953,26.0,26.0,3.652281470778589,-9.46044252232512 -953,26.0,27.0,0.0,2.608731947574922 -953,26.0,28.0,-0.99553355095268,1.881005840357816 -953,26.0,29.0,-0.6874559028276572,1.293971494797717 -953,27.0,5.0,-4.362844058012917,15.463571542897856 -953,27.0,7.0,-1.4439790613954469,4.540814658476248 -953,27.0,26.0,0.0,2.608731947574922 -953,27.0,27.0,5.806823119408364,-22.67145722159613 -953,28.0,26.0,-0.99553355095268,1.881005840357816 -953,28.0,28.0,1.9075867579849564,-3.604364401207048 -953,28.0,29.0,-0.9120532070322764,1.7233585608492326 -953,29.0,26.0,-0.6874559028276572,1.293971494797717 -953,29.0,28.0,-0.9120532070322764,1.7233585608492326 -953,29.0,29.0,1.5995091098599337,-3.0173300556469496 -954,0.0,0.0,6.765516048652632,-21.23160167089863 -954,0.0,1.0,-5.224646179885656,15.646726840803398 -954,0.0,2.0,-1.5408698687669766,5.631674830095234 -954,1.0,0.0,-5.224646179885656,15.646726840803398 -954,1.0,1.0,9.75228216552403,-30.648662892676068 -954,1.0,3.0,-1.7055303166990268,5.1973792282565086 -954,1.0,4.0,-1.1359607881738778,4.772479328281356 -954,1.0,5.0,-1.6861448807654689,5.116477495334806 -954,2.0,0.0,-1.5408698687669766,5.631674830095234 -954,2.0,2.0,9.736318911079088,-29.13794745915803 -954,2.0,3.0,-8.19544904231211,23.5308726290628 -954,3.0,1.0,-1.7055303166990268,5.1973792282565086 -954,3.0,2.0,-8.19544904231211,23.5308726290628 -954,3.0,3.0,16.314103089185693,-51.01235542280054 -954,3.0,5.0,-6.413123730174556,22.31120356548123 -954,4.0,1.0,-1.1359607881738778,4.772479328281356 -954,4.0,4.0,4.089980824135861,-12.190647245055052 -954,4.0,6.0,-2.954020035961983,7.449267916773697 -954,5.0,1.0,-1.6861448807654689,5.116477495334806 -954,5.0,3.0,-6.413123730174556,22.31120356548123 -954,5.0,5.0,22.341631269034565,-82.8291478657789 -954,5.0,6.0,-3.590210423980992,11.02611441072814 -954,5.0,7.0,-6.289308176100628,22.0125786163522 -954,5.0,8.0,0.0,4.915840805411357 -954,5.0,9.0,0.0,1.8561002591115965 -954,5.0,27.0,-4.362844058012917,15.463571542897856 -954,6.0,4.0,-2.954020035961983,7.449267916773697 -954,6.0,5.0,-3.590210423980992,11.02611441072814 -954,6.0,6.0,6.544230459942975,-18.45668232750184 -954,7.0,5.0,-6.289308176100628,22.0125786163522 -954,7.0,7.0,7.733287237496075,-26.527493274828448 -954,7.0,27.0,-1.4439790613954469,4.540814658476248 -954,8.0,5.0,0.0,4.915840805411357 -954,8.0,8.0,0.0,-18.706293706293707 -954,8.0,9.0,0.0,9.090909090909092 -954,8.0,10.0,0.0,4.807692307692308 -954,9.0,5.0,0.0,1.8561002591115965 -954,9.0,8.0,0.0,9.090909090909092 -954,9.0,9.0,13.462042814524237,-41.3837606675224 -954,9.0,16.0,-3.956039125715353,10.317447719844054 -954,9.0,19.0,-1.7848303152666305,3.98535828943083 -954,9.0,20.0,-5.101853820159654,10.98071411292983 -954,9.0,21.0,-2.619319553382597,5.400770303329455 -954,10.0,8.0,0.0,4.807692307692308 -954,10.0,10.0,0.0,-4.807692307692308 -954,11.0,11.0,6.573961583776156,-20.517917659260668 -954,11.0,12.0,0.0,7.142857142857143 -954,11.0,13.0,-1.5265676088395577,3.1734252729654173 -954,11.0,14.0,-3.0953961826564296,6.097275864326261 -954,11.0,15.0,-1.9519977922801688,4.104359379111847 -954,12.0,11.0,0.0,7.142857142857143 -954,12.0,12.0,0.0,-7.142857142857143 -954,13.0,11.0,-1.5265676088395577,3.1734252729654173 -954,13.0,13.0,4.01751987283902,-5.424299332335067 -954,13.0,14.0,-2.4909522639994623,2.250874059369649 -954,14.0,11.0,-3.0953961826564296,6.097275864326261 -954,14.0,13.0,-2.4909522639994623,2.250874059369649 -954,14.0,14.0,9.365498545964757,-16.01163373210796 -954,14.0,17.0,-1.8108011504072024,3.687418931630696 -954,14.0,22.0,-1.9683489489016612,3.976064876781356 -954,15.0,11.0,-1.9519977922801688,4.104359379111847 -954,15.0,15.0,3.271064728633931,-8.94513365126506 -954,15.0,16.0,-1.3190669363537617,4.8407742721532125 -954,16.0,9.0,-3.956039125715353,10.317447719844054 -954,16.0,15.0,-1.3190669363537617,4.8407742721532125 -954,16.0,16.0,5.275106062069114,-15.158221991997266 -954,17.0,14.0,-1.8108011504072024,3.687418931630696 -954,17.0,17.0,4.886487584415919,-9.906177730909668 -954,17.0,18.0,-3.0756864340087167,6.218758799278971 -954,18.0,17.0,-3.0756864340087167,6.218758799278971 -954,18.0,18.0,8.958039375185187,-17.98346468163191 -954,18.0,19.0,-5.88235294117647,11.76470588235294 -954,19.0,9.0,-1.7848303152666305,3.98535828943083 -954,19.0,18.0,-5.88235294117647,11.76470588235294 -954,19.0,19.0,7.6671832564431,-15.75006417178377 -954,20.0,9.0,-5.101853820159654,10.98071411292983 -954,20.0,20.0,21.876495189895888,-45.10843276170355 -954,20.0,21.0,-16.774641369736234,34.127718648773715 -954,21.0,9.0,-2.619319553382597,5.400770303329455 -954,21.0,20.0,-16.774641369736234,34.127718648773715 -954,21.0,21.0,21.93449907537439,-43.48289181517921 -954,21.0,23.0,-2.5405381522555563,3.95440286307604 -954,22.0,14.0,-1.9683489489016612,3.976064876781356 -954,22.0,22.0,3.429754555384988,-6.965303617315433 -954,22.0,23.0,-1.4614056064833263,2.989238740534077 -954,23.0,21.0,-2.5405381522555563,3.95440286307604 -954,23.0,22.0,-1.4614056064833263,2.989238740534077 -954,23.0,23.0,5.311836702613133,-9.188263657315172 -954,23.0,24.0,-1.3098929438742493,2.287622053705056 -954,24.0,23.0,-1.3098929438742493,2.287622053705056 -954,24.0,24.0,4.495715080321987,-7.864978761969621 -954,24.0,25.0,-1.2165301194494855,1.8171440463475024 -954,24.0,26.0,-1.9692920169982515,3.760212661917064 -954,25.0,24.0,-1.2165301194494855,1.8171440463475024 -954,25.0,25.0,1.2165301194494855,-1.8171440463475024 -954,26.0,24.0,-1.9692920169982515,3.760212661917064 -954,26.0,26.0,3.652281470778589,-9.46044252232512 -954,26.0,27.0,0.0,2.608731947574922 -954,26.0,28.0,-0.99553355095268,1.881005840357816 -954,26.0,29.0,-0.6874559028276572,1.293971494797717 -954,27.0,5.0,-4.362844058012917,15.463571542897856 -954,27.0,7.0,-1.4439790613954469,4.540814658476248 -954,27.0,26.0,0.0,2.608731947574922 -954,27.0,27.0,5.806823119408364,-22.67145722159613 -954,28.0,26.0,-0.99553355095268,1.881005840357816 -954,28.0,28.0,1.9075867579849564,-3.604364401207048 -954,28.0,29.0,-0.9120532070322764,1.7233585608492326 -954,29.0,26.0,-0.6874559028276572,1.293971494797717 -954,29.0,28.0,-0.9120532070322764,1.7233585608492326 -954,29.0,29.0,1.5995091098599337,-3.0173300556469496 -955,0.0,0.0,6.765516048652632,-21.23160167089863 -955,0.0,1.0,-5.224646179885656,15.646726840803398 -955,0.0,2.0,-1.5408698687669766,5.631674830095234 -955,1.0,0.0,-5.224646179885656,15.646726840803398 -955,1.0,1.0,9.75228216552403,-30.648662892676068 -955,1.0,3.0,-1.7055303166990268,5.1973792282565086 -955,1.0,4.0,-1.1359607881738778,4.772479328281356 -955,1.0,5.0,-1.6861448807654689,5.116477495334806 -955,2.0,0.0,-1.5408698687669766,5.631674830095234 -955,2.0,2.0,9.736318911079088,-29.13794745915803 -955,2.0,3.0,-8.19544904231211,23.5308726290628 -955,3.0,1.0,-1.7055303166990268,5.1973792282565086 -955,3.0,2.0,-8.19544904231211,23.5308726290628 -955,3.0,3.0,16.314103089185693,-51.01235542280054 -955,3.0,5.0,-6.413123730174556,22.31120356548123 -955,4.0,1.0,-1.1359607881738778,4.772479328281356 -955,4.0,4.0,4.089980824135861,-12.190647245055052 -955,4.0,6.0,-2.954020035961983,7.449267916773697 -955,5.0,1.0,-1.6861448807654689,5.116477495334806 -955,5.0,3.0,-6.413123730174556,22.31120356548123 -955,5.0,5.0,22.341631269034565,-82.8291478657789 -955,5.0,6.0,-3.590210423980992,11.02611441072814 -955,5.0,7.0,-6.289308176100628,22.0125786163522 -955,5.0,8.0,0.0,4.915840805411357 -955,5.0,9.0,0.0,1.8561002591115965 -955,5.0,27.0,-4.362844058012917,15.463571542897856 -955,6.0,4.0,-2.954020035961983,7.449267916773697 -955,6.0,5.0,-3.590210423980992,11.02611441072814 -955,6.0,6.0,6.544230459942975,-18.45668232750184 -955,7.0,5.0,-6.289308176100628,22.0125786163522 -955,7.0,7.0,7.733287237496075,-26.527493274828448 -955,7.0,27.0,-1.4439790613954469,4.540814658476248 -955,8.0,5.0,0.0,4.915840805411357 -955,8.0,8.0,0.0,-18.706293706293707 -955,8.0,9.0,0.0,9.090909090909092 -955,8.0,10.0,0.0,4.807692307692308 -955,9.0,5.0,0.0,1.8561002591115965 -955,9.0,8.0,0.0,9.090909090909092 -955,9.0,9.0,10.842723261141638,-35.98299036419294 -955,9.0,16.0,-3.956039125715353,10.317447719844054 -955,9.0,19.0,-1.7848303152666305,3.98535828943083 -955,9.0,20.0,-5.101853820159654,10.98071411292983 -955,10.0,8.0,0.0,4.807692307692308 -955,10.0,10.0,0.0,-4.807692307692308 -955,11.0,11.0,6.573961583776156,-20.517917659260668 -955,11.0,12.0,0.0,7.142857142857143 -955,11.0,13.0,-1.5265676088395577,3.1734252729654173 -955,11.0,14.0,-3.0953961826564296,6.097275864326261 -955,11.0,15.0,-1.9519977922801688,4.104359379111847 -955,12.0,11.0,0.0,7.142857142857143 -955,12.0,12.0,0.0,-7.142857142857143 -955,13.0,11.0,-1.5265676088395577,3.1734252729654173 -955,13.0,13.0,4.01751987283902,-5.424299332335067 -955,13.0,14.0,-2.4909522639994623,2.250874059369649 -955,14.0,11.0,-3.0953961826564296,6.097275864326261 -955,14.0,13.0,-2.4909522639994623,2.250874059369649 -955,14.0,14.0,7.397149597063095,-12.035568855326606 -955,14.0,17.0,-1.8108011504072024,3.687418931630696 -955,15.0,11.0,-1.9519977922801688,4.104359379111847 -955,15.0,15.0,1.9519977922801688,-4.104359379111847 -955,16.0,9.0,-3.956039125715353,10.317447719844054 -955,16.0,16.0,3.956039125715353,-10.317447719844054 -955,17.0,14.0,-1.8108011504072024,3.687418931630696 -955,17.0,17.0,4.886487584415919,-9.906177730909668 -955,17.0,18.0,-3.0756864340087167,6.218758799278971 -955,18.0,17.0,-3.0756864340087167,6.218758799278971 -955,18.0,18.0,8.958039375185187,-17.98346468163191 -955,18.0,19.0,-5.88235294117647,11.76470588235294 -955,19.0,9.0,-1.7848303152666305,3.98535828943083 -955,19.0,18.0,-5.88235294117647,11.76470588235294 -955,19.0,19.0,7.6671832564431,-15.75006417178377 -955,20.0,9.0,-5.101853820159654,10.98071411292983 -955,20.0,20.0,21.876495189895888,-45.10843276170355 -955,20.0,21.0,-16.774641369736234,34.127718648773715 -955,21.0,20.0,-16.774641369736234,34.127718648773715 -955,21.0,21.0,19.31517952199179,-38.08212151184976 -955,21.0,23.0,-2.5405381522555563,3.95440286307604 -955,22.0,22.0,1.4614056064833263,-2.989238740534077 -955,22.0,23.0,-1.4614056064833263,2.989238740534077 -955,23.0,21.0,-2.5405381522555563,3.95440286307604 -955,23.0,22.0,-1.4614056064833263,2.989238740534077 -955,23.0,23.0,5.311836702613133,-9.188263657315172 -955,23.0,24.0,-1.3098929438742493,2.287622053705056 -955,24.0,23.0,-1.3098929438742493,2.287622053705056 -955,24.0,24.0,4.495715080321987,-7.864978761969621 -955,24.0,25.0,-1.2165301194494855,1.8171440463475024 -955,24.0,26.0,-1.9692920169982515,3.760212661917064 -955,25.0,24.0,-1.2165301194494855,1.8171440463475024 -955,25.0,25.0,1.2165301194494855,-1.8171440463475024 -955,26.0,24.0,-1.9692920169982515,3.760212661917064 -955,26.0,26.0,3.652281470778589,-9.46044252232512 -955,26.0,27.0,0.0,2.608731947574922 -955,26.0,28.0,-0.99553355095268,1.881005840357816 -955,26.0,29.0,-0.6874559028276572,1.293971494797717 -955,27.0,5.0,-4.362844058012917,15.463571542897856 -955,27.0,7.0,-1.4439790613954469,4.540814658476248 -955,27.0,26.0,0.0,2.608731947574922 -955,27.0,27.0,5.806823119408364,-22.67145722159613 -955,28.0,26.0,-0.99553355095268,1.881005840357816 -955,28.0,28.0,1.9075867579849564,-3.604364401207048 -955,28.0,29.0,-0.9120532070322764,1.7233585608492326 -955,29.0,26.0,-0.6874559028276572,1.293971494797717 -955,29.0,28.0,-0.9120532070322764,1.7233585608492326 -955,29.0,29.0,1.5995091098599337,-3.0173300556469496 -956,0.0,0.0,6.765516048652632,-21.23160167089863 -956,0.0,1.0,-5.224646179885656,15.646726840803398 -956,0.0,2.0,-1.5408698687669766,5.631674830095234 -956,1.0,0.0,-5.224646179885656,15.646726840803398 -956,1.0,1.0,9.75228216552403,-30.648662892676068 -956,1.0,3.0,-1.7055303166990268,5.1973792282565086 -956,1.0,4.0,-1.1359607881738778,4.772479328281356 -956,1.0,5.0,-1.6861448807654689,5.116477495334806 -956,2.0,0.0,-1.5408698687669766,5.631674830095234 -956,2.0,2.0,9.736318911079088,-29.13794745915803 -956,2.0,3.0,-8.19544904231211,23.5308726290628 -956,3.0,1.0,-1.7055303166990268,5.1973792282565086 -956,3.0,2.0,-8.19544904231211,23.5308726290628 -956,3.0,3.0,16.314103089185693,-55.509410535254254 -956,3.0,5.0,-6.413123730174556,22.31120356548123 -956,3.0,11.0,0.0,4.191255364806866 -956,4.0,1.0,-1.1359607881738778,4.772479328281356 -956,4.0,4.0,4.089980824135861,-12.190647245055052 -956,4.0,6.0,-2.954020035961983,7.449267916773697 -956,5.0,1.0,-1.6861448807654689,5.116477495334806 -956,5.0,3.0,-6.413123730174556,22.31120356548123 -956,5.0,5.0,22.341631269034565,-82.8291478657789 -956,5.0,6.0,-3.590210423980992,11.02611441072814 -956,5.0,7.0,-6.289308176100628,22.0125786163522 -956,5.0,8.0,0.0,4.915840805411357 -956,5.0,9.0,0.0,1.8561002591115965 -956,5.0,27.0,-4.362844058012917,15.463571542897856 -956,6.0,4.0,-2.954020035961983,7.449267916773697 -956,6.0,5.0,-3.590210423980992,11.02611441072814 -956,6.0,6.0,6.544230459942975,-18.45668232750184 -956,7.0,5.0,-6.289308176100628,22.0125786163522 -956,7.0,7.0,7.733287237496075,-26.527493274828448 -956,7.0,27.0,-1.4439790613954469,4.540814658476248 -956,8.0,5.0,0.0,4.915840805411357 -956,8.0,8.0,0.0,-18.706293706293707 -956,8.0,9.0,0.0,9.090909090909092 -956,8.0,10.0,0.0,4.807692307692308 -956,9.0,5.0,0.0,1.8561002591115965 -956,9.0,8.0,0.0,9.090909090909092 -956,9.0,9.0,13.462042814524237,-41.3837606675224 -956,9.0,16.0,-3.956039125715353,10.317447719844054 -956,9.0,19.0,-1.7848303152666305,3.98535828943083 -956,9.0,20.0,-5.101853820159654,10.98071411292983 -956,9.0,21.0,-2.619319553382597,5.400770303329455 -956,10.0,8.0,0.0,4.807692307692308 -956,10.0,10.0,0.0,-4.807692307692308 -956,11.0,3.0,0.0,4.191255364806866 -956,11.0,11.0,6.573961583776156,-24.424167659260668 -956,11.0,12.0,0.0,7.142857142857143 -956,11.0,13.0,-1.5265676088395577,3.1734252729654173 -956,11.0,14.0,-3.0953961826564296,6.097275864326261 -956,11.0,15.0,-1.9519977922801688,4.104359379111847 -956,12.0,11.0,0.0,7.142857142857143 -956,12.0,12.0,0.0,-7.142857142857143 -956,13.0,11.0,-1.5265676088395577,3.1734252729654173 -956,13.0,13.0,4.01751987283902,-5.424299332335067 -956,13.0,14.0,-2.4909522639994623,2.250874059369649 -956,14.0,11.0,-3.0953961826564296,6.097275864326261 -956,14.0,13.0,-2.4909522639994623,2.250874059369649 -956,14.0,14.0,9.365498545964757,-16.01163373210796 -956,14.0,17.0,-1.8108011504072024,3.687418931630696 -956,14.0,22.0,-1.9683489489016612,3.976064876781356 -956,15.0,11.0,-1.9519977922801688,4.104359379111847 -956,15.0,15.0,3.271064728633931,-8.94513365126506 -956,15.0,16.0,-1.3190669363537617,4.8407742721532125 -956,16.0,9.0,-3.956039125715353,10.317447719844054 -956,16.0,15.0,-1.3190669363537617,4.8407742721532125 -956,16.0,16.0,5.275106062069114,-15.158221991997266 -956,17.0,14.0,-1.8108011504072024,3.687418931630696 -956,17.0,17.0,4.886487584415919,-9.906177730909668 -956,17.0,18.0,-3.0756864340087167,6.218758799278971 -956,18.0,17.0,-3.0756864340087167,6.218758799278971 -956,18.0,18.0,8.958039375185187,-17.98346468163191 -956,18.0,19.0,-5.88235294117647,11.76470588235294 -956,19.0,9.0,-1.7848303152666305,3.98535828943083 -956,19.0,18.0,-5.88235294117647,11.76470588235294 -956,19.0,19.0,7.6671832564431,-15.75006417178377 -956,20.0,9.0,-5.101853820159654,10.98071411292983 -956,20.0,20.0,21.876495189895888,-45.10843276170355 -956,20.0,21.0,-16.774641369736234,34.127718648773715 -956,21.0,9.0,-2.619319553382597,5.400770303329455 -956,21.0,20.0,-16.774641369736234,34.127718648773715 -956,21.0,21.0,19.393960923118836,-39.52848895210317 -956,22.0,14.0,-1.9683489489016612,3.976064876781356 -956,22.0,22.0,3.429754555384988,-6.965303617315433 -956,22.0,23.0,-1.4614056064833263,2.989238740534077 -956,23.0,22.0,-1.4614056064833263,2.989238740534077 -956,23.0,23.0,2.771298550357576,-5.233860794239132 -956,23.0,24.0,-1.3098929438742493,2.287622053705056 -956,24.0,23.0,-1.3098929438742493,2.287622053705056 -956,24.0,24.0,4.495715080321987,-7.864978761969621 -956,24.0,25.0,-1.2165301194494855,1.8171440463475024 -956,24.0,26.0,-1.9692920169982515,3.760212661917064 -956,25.0,24.0,-1.2165301194494855,1.8171440463475024 -956,25.0,25.0,1.2165301194494855,-1.8171440463475024 -956,26.0,24.0,-1.9692920169982515,3.760212661917064 -956,26.0,26.0,3.652281470778589,-9.46044252232512 -956,26.0,27.0,0.0,2.608731947574922 -956,26.0,28.0,-0.99553355095268,1.881005840357816 -956,26.0,29.0,-0.6874559028276572,1.293971494797717 -956,27.0,5.0,-4.362844058012917,15.463571542897856 -956,27.0,7.0,-1.4439790613954469,4.540814658476248 -956,27.0,26.0,0.0,2.608731947574922 -956,27.0,27.0,5.806823119408364,-22.67145722159613 -956,28.0,26.0,-0.99553355095268,1.881005840357816 -956,28.0,28.0,0.99553355095268,-1.881005840357816 -956,29.0,26.0,-0.6874559028276572,1.293971494797717 -956,29.0,29.0,0.6874559028276572,-1.293971494797717 -957,0.0,0.0,6.765516048652632,-21.23160167089863 -957,0.0,1.0,-5.224646179885656,15.646726840803398 -957,0.0,2.0,-1.5408698687669766,5.631674830095234 -957,1.0,0.0,-5.224646179885656,15.646726840803398 -957,1.0,1.0,9.75228216552403,-30.648662892676068 -957,1.0,3.0,-1.7055303166990268,5.1973792282565086 -957,1.0,4.0,-1.1359607881738778,4.772479328281356 -957,1.0,5.0,-1.6861448807654689,5.116477495334806 -957,2.0,0.0,-1.5408698687669766,5.631674830095234 -957,2.0,2.0,9.736318911079088,-29.13794745915803 -957,2.0,3.0,-8.19544904231211,23.5308726290628 -957,3.0,1.0,-1.7055303166990268,5.1973792282565086 -957,3.0,2.0,-8.19544904231211,23.5308726290628 -957,3.0,3.0,16.314103089185693,-55.509410535254254 -957,3.0,5.0,-6.413123730174556,22.31120356548123 -957,3.0,11.0,0.0,4.191255364806866 -957,4.0,1.0,-1.1359607881738778,4.772479328281356 -957,4.0,4.0,4.089980824135861,-12.190647245055052 -957,4.0,6.0,-2.954020035961983,7.449267916773697 -957,5.0,1.0,-1.6861448807654689,5.116477495334806 -957,5.0,3.0,-6.413123730174556,22.31120356548123 -957,5.0,5.0,22.341631269034565,-82.8291478657789 -957,5.0,6.0,-3.590210423980992,11.02611441072814 -957,5.0,7.0,-6.289308176100628,22.0125786163522 -957,5.0,8.0,0.0,4.915840805411357 -957,5.0,9.0,0.0,1.8561002591115965 -957,5.0,27.0,-4.362844058012917,15.463571542897856 -957,6.0,4.0,-2.954020035961983,7.449267916773697 -957,6.0,5.0,-3.590210423980992,11.02611441072814 -957,6.0,6.0,6.544230459942975,-18.45668232750184 -957,7.0,5.0,-6.289308176100628,22.0125786163522 -957,7.0,7.0,7.733287237496075,-26.527493274828448 -957,7.0,27.0,-1.4439790613954469,4.540814658476248 -957,8.0,5.0,0.0,4.915840805411357 -957,8.0,8.0,0.0,-18.706293706293707 -957,8.0,9.0,0.0,9.090909090909092 -957,8.0,10.0,0.0,4.807692307692308 -957,9.0,5.0,0.0,1.8561002591115965 -957,9.0,8.0,0.0,9.090909090909092 -957,9.0,9.0,13.462042814524237,-41.3837606675224 -957,9.0,16.0,-3.956039125715353,10.317447719844054 -957,9.0,19.0,-1.7848303152666305,3.98535828943083 -957,9.0,20.0,-5.101853820159654,10.98071411292983 -957,9.0,21.0,-2.619319553382597,5.400770303329455 -957,10.0,8.0,0.0,4.807692307692308 -957,10.0,10.0,0.0,-4.807692307692308 -957,11.0,3.0,0.0,4.191255364806866 -957,11.0,11.0,6.573961583776156,-24.424167659260668 -957,11.0,12.0,0.0,7.142857142857143 -957,11.0,13.0,-1.5265676088395577,3.1734252729654173 -957,11.0,14.0,-3.0953961826564296,6.097275864326261 -957,11.0,15.0,-1.9519977922801688,4.104359379111847 -957,12.0,11.0,0.0,7.142857142857143 -957,12.0,12.0,0.0,-7.142857142857143 -957,13.0,11.0,-1.5265676088395577,3.1734252729654173 -957,13.0,13.0,4.01751987283902,-5.424299332335067 -957,13.0,14.0,-2.4909522639994623,2.250874059369649 -957,14.0,11.0,-3.0953961826564296,6.097275864326261 -957,14.0,13.0,-2.4909522639994623,2.250874059369649 -957,14.0,14.0,9.365498545964757,-16.01163373210796 -957,14.0,17.0,-1.8108011504072024,3.687418931630696 -957,14.0,22.0,-1.9683489489016612,3.976064876781356 -957,15.0,11.0,-1.9519977922801688,4.104359379111847 -957,15.0,15.0,3.271064728633931,-8.94513365126506 -957,15.0,16.0,-1.3190669363537617,4.8407742721532125 -957,16.0,9.0,-3.956039125715353,10.317447719844054 -957,16.0,15.0,-1.3190669363537617,4.8407742721532125 -957,16.0,16.0,5.275106062069114,-15.158221991997266 -957,17.0,14.0,-1.8108011504072024,3.687418931630696 -957,17.0,17.0,4.886487584415919,-9.906177730909668 -957,17.0,18.0,-3.0756864340087167,6.218758799278971 -957,18.0,17.0,-3.0756864340087167,6.218758799278971 -957,18.0,18.0,8.958039375185187,-17.98346468163191 -957,18.0,19.0,-5.88235294117647,11.76470588235294 -957,19.0,9.0,-1.7848303152666305,3.98535828943083 -957,19.0,18.0,-5.88235294117647,11.76470588235294 -957,19.0,19.0,7.6671832564431,-15.75006417178377 -957,20.0,9.0,-5.101853820159654,10.98071411292983 -957,20.0,20.0,21.876495189895888,-45.10843276170355 -957,20.0,21.0,-16.774641369736234,34.127718648773715 -957,21.0,9.0,-2.619319553382597,5.400770303329455 -957,21.0,20.0,-16.774641369736234,34.127718648773715 -957,21.0,21.0,21.93449907537439,-43.48289181517921 -957,21.0,23.0,-2.5405381522555563,3.95440286307604 -957,22.0,14.0,-1.9683489489016612,3.976064876781356 -957,22.0,22.0,3.429754555384988,-6.965303617315433 -957,22.0,23.0,-1.4614056064833263,2.989238740534077 -957,23.0,21.0,-2.5405381522555563,3.95440286307604 -957,23.0,22.0,-1.4614056064833263,2.989238740534077 -957,23.0,23.0,5.311836702613133,-9.188263657315172 -957,23.0,24.0,-1.3098929438742493,2.287622053705056 -957,24.0,23.0,-1.3098929438742493,2.287622053705056 -957,24.0,24.0,4.495715080321987,-7.864978761969621 -957,24.0,25.0,-1.2165301194494855,1.8171440463475024 -957,24.0,26.0,-1.9692920169982515,3.760212661917064 -957,25.0,24.0,-1.2165301194494855,1.8171440463475024 -957,25.0,25.0,1.2165301194494855,-1.8171440463475024 -957,26.0,24.0,-1.9692920169982515,3.760212661917064 -957,26.0,26.0,3.652281470778589,-9.46044252232512 -957,26.0,27.0,0.0,2.608731947574922 -957,26.0,28.0,-0.99553355095268,1.881005840357816 -957,26.0,29.0,-0.6874559028276572,1.293971494797717 -957,27.0,5.0,-4.362844058012917,15.463571542897856 -957,27.0,7.0,-1.4439790613954469,4.540814658476248 -957,27.0,26.0,0.0,2.608731947574922 -957,27.0,27.0,5.806823119408364,-22.67145722159613 -957,28.0,26.0,-0.99553355095268,1.881005840357816 -957,28.0,28.0,1.9075867579849564,-3.604364401207048 -957,28.0,29.0,-0.9120532070322764,1.7233585608492326 -957,29.0,26.0,-0.6874559028276572,1.293971494797717 -957,29.0,28.0,-0.9120532070322764,1.7233585608492326 -957,29.0,29.0,1.5995091098599337,-3.0173300556469496 -958,0.0,0.0,6.765516048652632,-21.23160167089863 -958,0.0,1.0,-5.224646179885656,15.646726840803398 -958,0.0,2.0,-1.5408698687669766,5.631674830095234 -958,1.0,0.0,-5.224646179885656,15.646726840803398 -958,1.0,1.0,9.75228216552403,-30.648662892676068 -958,1.0,3.0,-1.7055303166990268,5.1973792282565086 -958,1.0,4.0,-1.1359607881738778,4.772479328281356 -958,1.0,5.0,-1.6861448807654689,5.116477495334806 -958,2.0,0.0,-1.5408698687669766,5.631674830095234 -958,2.0,2.0,9.736318911079088,-29.13794745915803 -958,2.0,3.0,-8.19544904231211,23.5308726290628 -958,3.0,1.0,-1.7055303166990268,5.1973792282565086 -958,3.0,2.0,-8.19544904231211,23.5308726290628 -958,3.0,3.0,16.314103089185693,-55.509410535254254 -958,3.0,5.0,-6.413123730174556,22.31120356548123 -958,3.0,11.0,0.0,4.191255364806866 -958,4.0,1.0,-1.1359607881738778,4.772479328281356 -958,4.0,4.0,4.089980824135861,-12.190647245055052 -958,4.0,6.0,-2.954020035961983,7.449267916773697 -958,5.0,1.0,-1.6861448807654689,5.116477495334806 -958,5.0,3.0,-6.413123730174556,22.31120356548123 -958,5.0,5.0,17.978787211021647,-67.37207632288106 -958,5.0,6.0,-3.590210423980992,11.02611441072814 -958,5.0,7.0,-6.289308176100628,22.0125786163522 -958,5.0,8.0,0.0,4.915840805411357 -958,5.0,9.0,0.0,1.8561002591115965 -958,6.0,4.0,-2.954020035961983,7.449267916773697 -958,6.0,5.0,-3.590210423980992,11.02611441072814 -958,6.0,6.0,6.544230459942975,-18.45668232750184 -958,7.0,5.0,-6.289308176100628,22.0125786163522 -958,7.0,7.0,7.733287237496075,-26.527493274828448 -958,7.0,27.0,-1.4439790613954469,4.540814658476248 -958,8.0,5.0,0.0,4.915840805411357 -958,8.0,8.0,0.0,-18.706293706293707 -958,8.0,9.0,0.0,9.090909090909092 -958,8.0,10.0,0.0,4.807692307692308 -958,9.0,5.0,0.0,1.8561002591115965 -958,9.0,8.0,0.0,9.090909090909092 -958,9.0,9.0,13.462042814524237,-41.3837606675224 -958,9.0,16.0,-3.956039125715353,10.317447719844054 -958,9.0,19.0,-1.7848303152666305,3.98535828943083 -958,9.0,20.0,-5.101853820159654,10.98071411292983 -958,9.0,21.0,-2.619319553382597,5.400770303329455 -958,10.0,8.0,0.0,4.807692307692308 -958,10.0,10.0,0.0,-4.807692307692308 -958,11.0,3.0,0.0,4.191255364806866 -958,11.0,11.0,6.573961583776156,-24.424167659260668 -958,11.0,12.0,0.0,7.142857142857143 -958,11.0,13.0,-1.5265676088395577,3.1734252729654173 -958,11.0,14.0,-3.0953961826564296,6.097275864326261 -958,11.0,15.0,-1.9519977922801688,4.104359379111847 -958,12.0,11.0,0.0,7.142857142857143 -958,12.0,12.0,0.0,-7.142857142857143 -958,13.0,11.0,-1.5265676088395577,3.1734252729654173 -958,13.0,13.0,4.01751987283902,-5.424299332335067 -958,13.0,14.0,-2.4909522639994623,2.250874059369649 -958,14.0,11.0,-3.0953961826564296,6.097275864326261 -958,14.0,13.0,-2.4909522639994623,2.250874059369649 -958,14.0,14.0,9.365498545964757,-16.01163373210796 -958,14.0,17.0,-1.8108011504072024,3.687418931630696 -958,14.0,22.0,-1.9683489489016612,3.976064876781356 -958,15.0,11.0,-1.9519977922801688,4.104359379111847 -958,15.0,15.0,3.271064728633931,-8.94513365126506 -958,15.0,16.0,-1.3190669363537617,4.8407742721532125 -958,16.0,9.0,-3.956039125715353,10.317447719844054 -958,16.0,15.0,-1.3190669363537617,4.8407742721532125 -958,16.0,16.0,5.275106062069114,-15.158221991997266 -958,17.0,14.0,-1.8108011504072024,3.687418931630696 -958,17.0,17.0,4.886487584415919,-9.906177730909668 -958,17.0,18.0,-3.0756864340087167,6.218758799278971 -958,18.0,17.0,-3.0756864340087167,6.218758799278971 -958,18.0,18.0,8.958039375185187,-17.98346468163191 -958,18.0,19.0,-5.88235294117647,11.76470588235294 -958,19.0,9.0,-1.7848303152666305,3.98535828943083 -958,19.0,18.0,-5.88235294117647,11.76470588235294 -958,19.0,19.0,7.6671832564431,-15.75006417178377 -958,20.0,9.0,-5.101853820159654,10.98071411292983 -958,20.0,20.0,21.876495189895888,-45.10843276170355 -958,20.0,21.0,-16.774641369736234,34.127718648773715 -958,21.0,9.0,-2.619319553382597,5.400770303329455 -958,21.0,20.0,-16.774641369736234,34.127718648773715 -958,21.0,21.0,21.93449907537439,-43.48289181517921 -958,21.0,23.0,-2.5405381522555563,3.95440286307604 -958,22.0,14.0,-1.9683489489016612,3.976064876781356 -958,22.0,22.0,3.429754555384988,-6.965303617315433 -958,22.0,23.0,-1.4614056064833263,2.989238740534077 -958,23.0,21.0,-2.5405381522555563,3.95440286307604 -958,23.0,22.0,-1.4614056064833263,2.989238740534077 -958,23.0,23.0,5.311836702613133,-9.188263657315172 -958,23.0,24.0,-1.3098929438742493,2.287622053705056 -958,24.0,23.0,-1.3098929438742493,2.287622053705056 -958,24.0,24.0,4.495715080321987,-7.864978761969621 -958,24.0,25.0,-1.2165301194494855,1.8171440463475024 -958,24.0,26.0,-1.9692920169982515,3.760212661917064 -958,25.0,24.0,-1.2165301194494855,1.8171440463475024 -958,25.0,25.0,1.2165301194494855,-1.8171440463475024 -958,26.0,24.0,-1.9692920169982515,3.760212661917064 -958,26.0,26.0,3.652281470778589,-9.46044252232512 -958,26.0,27.0,0.0,2.608731947574922 -958,26.0,28.0,-0.99553355095268,1.881005840357816 -958,26.0,29.0,-0.6874559028276572,1.293971494797717 -958,27.0,7.0,-1.4439790613954469,4.540814658476248 -958,27.0,26.0,0.0,2.608731947574922 -958,27.0,27.0,1.4439790613954469,-7.214385678698274 -958,28.0,26.0,-0.99553355095268,1.881005840357816 -958,28.0,28.0,1.9075867579849564,-3.604364401207048 -958,28.0,29.0,-0.9120532070322764,1.7233585608492326 -958,29.0,26.0,-0.6874559028276572,1.293971494797717 -958,29.0,28.0,-0.9120532070322764,1.7233585608492326 -958,29.0,29.0,1.5995091098599337,-3.0173300556469496 -959,0.0,0.0,6.765516048652632,-21.23160167089863 -959,0.0,1.0,-5.224646179885656,15.646726840803398 -959,0.0,2.0,-1.5408698687669766,5.631674830095234 -959,1.0,0.0,-5.224646179885656,15.646726840803398 -959,1.0,1.0,9.75228216552403,-30.648662892676068 -959,1.0,3.0,-1.7055303166990268,5.1973792282565086 -959,1.0,4.0,-1.1359607881738778,4.772479328281356 -959,1.0,5.0,-1.6861448807654689,5.116477495334806 -959,2.0,0.0,-1.5408698687669766,5.631674830095234 -959,2.0,2.0,9.736318911079088,-29.13794745915803 -959,2.0,3.0,-8.19544904231211,23.5308726290628 -959,3.0,1.0,-1.7055303166990268,5.1973792282565086 -959,3.0,2.0,-8.19544904231211,23.5308726290628 -959,3.0,3.0,16.314103089185693,-55.509410535254254 -959,3.0,5.0,-6.413123730174556,22.31120356548123 -959,3.0,11.0,0.0,4.191255364806866 -959,4.0,1.0,-1.1359607881738778,4.772479328281356 -959,4.0,4.0,4.089980824135861,-12.190647245055052 -959,4.0,6.0,-2.954020035961983,7.449267916773697 -959,5.0,1.0,-1.6861448807654689,5.116477495334806 -959,5.0,3.0,-6.413123730174556,22.31120356548123 -959,5.0,5.0,22.341631269034565,-82.8291478657789 -959,5.0,6.0,-3.590210423980992,11.02611441072814 -959,5.0,7.0,-6.289308176100628,22.0125786163522 -959,5.0,8.0,0.0,4.915840805411357 -959,5.0,9.0,0.0,1.8561002591115965 -959,5.0,27.0,-4.362844058012917,15.463571542897856 -959,6.0,4.0,-2.954020035961983,7.449267916773697 -959,6.0,5.0,-3.590210423980992,11.02611441072814 -959,6.0,6.0,6.544230459942975,-18.45668232750184 -959,7.0,5.0,-6.289308176100628,22.0125786163522 -959,7.0,7.0,7.733287237496075,-26.527493274828448 -959,7.0,27.0,-1.4439790613954469,4.540814658476248 -959,8.0,5.0,0.0,4.915840805411357 -959,8.0,8.0,0.0,-18.706293706293707 -959,8.0,9.0,0.0,9.090909090909092 -959,8.0,10.0,0.0,4.807692307692308 -959,9.0,5.0,0.0,1.8561002591115965 -959,9.0,8.0,0.0,9.090909090909092 -959,9.0,9.0,13.462042814524237,-41.3837606675224 -959,9.0,16.0,-3.956039125715353,10.317447719844054 -959,9.0,19.0,-1.7848303152666305,3.98535828943083 -959,9.0,20.0,-5.101853820159654,10.98071411292983 -959,9.0,21.0,-2.619319553382597,5.400770303329455 -959,10.0,8.0,0.0,4.807692307692308 -959,10.0,10.0,0.0,-4.807692307692308 -959,11.0,3.0,0.0,4.191255364806866 -959,11.0,11.0,6.573961583776156,-24.424167659260668 -959,11.0,12.0,0.0,7.142857142857143 -959,11.0,13.0,-1.5265676088395577,3.1734252729654173 -959,11.0,14.0,-3.0953961826564296,6.097275864326261 -959,11.0,15.0,-1.9519977922801688,4.104359379111847 -959,12.0,11.0,0.0,7.142857142857143 -959,12.0,12.0,0.0,-7.142857142857143 -959,13.0,11.0,-1.5265676088395577,3.1734252729654173 -959,13.0,13.0,4.01751987283902,-5.424299332335067 -959,13.0,14.0,-2.4909522639994623,2.250874059369649 -959,14.0,11.0,-3.0953961826564296,6.097275864326261 -959,14.0,13.0,-2.4909522639994623,2.250874059369649 -959,14.0,14.0,9.365498545964757,-16.01163373210796 -959,14.0,17.0,-1.8108011504072024,3.687418931630696 -959,14.0,22.0,-1.9683489489016612,3.976064876781356 -959,15.0,11.0,-1.9519977922801688,4.104359379111847 -959,15.0,15.0,3.271064728633931,-8.94513365126506 -959,15.0,16.0,-1.3190669363537617,4.8407742721532125 -959,16.0,9.0,-3.956039125715353,10.317447719844054 -959,16.0,15.0,-1.3190669363537617,4.8407742721532125 -959,16.0,16.0,5.275106062069114,-15.158221991997266 -959,17.0,14.0,-1.8108011504072024,3.687418931630696 -959,17.0,17.0,4.886487584415919,-9.906177730909668 -959,17.0,18.0,-3.0756864340087167,6.218758799278971 -959,18.0,17.0,-3.0756864340087167,6.218758799278971 -959,18.0,18.0,8.958039375185187,-17.98346468163191 -959,18.0,19.0,-5.88235294117647,11.76470588235294 -959,19.0,9.0,-1.7848303152666305,3.98535828943083 -959,19.0,18.0,-5.88235294117647,11.76470588235294 -959,19.0,19.0,7.6671832564431,-15.75006417178377 -959,20.0,9.0,-5.101853820159654,10.98071411292983 -959,20.0,20.0,21.876495189895888,-45.10843276170355 -959,20.0,21.0,-16.774641369736234,34.127718648773715 -959,21.0,9.0,-2.619319553382597,5.400770303329455 -959,21.0,20.0,-16.774641369736234,34.127718648773715 -959,21.0,21.0,21.93449907537439,-43.48289181517921 -959,21.0,23.0,-2.5405381522555563,3.95440286307604 -959,22.0,14.0,-1.9683489489016612,3.976064876781356 -959,22.0,22.0,3.429754555384988,-6.965303617315433 -959,22.0,23.0,-1.4614056064833263,2.989238740534077 -959,23.0,21.0,-2.5405381522555563,3.95440286307604 -959,23.0,22.0,-1.4614056064833263,2.989238740534077 -959,23.0,23.0,5.311836702613133,-9.188263657315172 -959,23.0,24.0,-1.3098929438742493,2.287622053705056 -959,24.0,23.0,-1.3098929438742493,2.287622053705056 -959,24.0,24.0,4.495715080321987,-7.864978761969621 -959,24.0,25.0,-1.2165301194494855,1.8171440463475024 -959,24.0,26.0,-1.9692920169982515,3.760212661917064 -959,25.0,24.0,-1.2165301194494855,1.8171440463475024 -959,25.0,25.0,1.2165301194494855,-1.8171440463475024 -959,26.0,24.0,-1.9692920169982515,3.760212661917064 -959,26.0,26.0,3.652281470778589,-9.46044252232512 -959,26.0,27.0,0.0,2.608731947574922 -959,26.0,28.0,-0.99553355095268,1.881005840357816 -959,26.0,29.0,-0.6874559028276572,1.293971494797717 -959,27.0,5.0,-4.362844058012917,15.463571542897856 -959,27.0,7.0,-1.4439790613954469,4.540814658476248 -959,27.0,26.0,0.0,2.608731947574922 -959,27.0,27.0,5.806823119408364,-22.67145722159613 -959,28.0,26.0,-0.99553355095268,1.881005840357816 -959,28.0,28.0,1.9075867579849564,-3.604364401207048 -959,28.0,29.0,-0.9120532070322764,1.7233585608492326 -959,29.0,26.0,-0.6874559028276572,1.293971494797717 -959,29.0,28.0,-0.9120532070322764,1.7233585608492326 -959,29.0,29.0,1.5995091098599337,-3.0173300556469496 -960,0.0,0.0,6.765516048652632,-21.23160167089863 -960,0.0,1.0,-5.224646179885656,15.646726840803398 -960,0.0,2.0,-1.5408698687669766,5.631674830095234 -960,1.0,0.0,-5.224646179885656,15.646726840803398 -960,1.0,1.0,9.75228216552403,-30.648662892676068 -960,1.0,3.0,-1.7055303166990268,5.1973792282565086 -960,1.0,4.0,-1.1359607881738778,4.772479328281356 -960,1.0,5.0,-1.6861448807654689,5.116477495334806 -960,2.0,0.0,-1.5408698687669766,5.631674830095234 -960,2.0,2.0,1.5408698687669766,-5.611274830095233 -960,3.0,1.0,-1.7055303166990268,5.1973792282565086 -960,3.0,3.0,8.118654046873583,-31.982737906191456 -960,3.0,5.0,-6.413123730174556,22.31120356548123 -960,3.0,11.0,0.0,4.191255364806866 -960,4.0,1.0,-1.1359607881738778,4.772479328281356 -960,4.0,4.0,4.089980824135861,-12.190647245055052 -960,4.0,6.0,-2.954020035961983,7.449267916773697 -960,5.0,1.0,-1.6861448807654689,5.116477495334806 -960,5.0,3.0,-6.413123730174556,22.31120356548123 -960,5.0,5.0,22.341631269034565,-82.8291478657789 -960,5.0,6.0,-3.590210423980992,11.02611441072814 -960,5.0,7.0,-6.289308176100628,22.0125786163522 -960,5.0,8.0,0.0,4.915840805411357 -960,5.0,9.0,0.0,1.8561002591115965 -960,5.0,27.0,-4.362844058012917,15.463571542897856 -960,6.0,4.0,-2.954020035961983,7.449267916773697 -960,6.0,5.0,-3.590210423980992,11.02611441072814 -960,6.0,6.0,6.544230459942975,-18.45668232750184 -960,7.0,5.0,-6.289308176100628,22.0125786163522 -960,7.0,7.0,7.733287237496075,-26.527493274828448 -960,7.0,27.0,-1.4439790613954469,4.540814658476248 -960,8.0,5.0,0.0,4.915840805411357 -960,8.0,8.0,0.0,-18.706293706293707 -960,8.0,9.0,0.0,9.090909090909092 -960,8.0,10.0,0.0,4.807692307692308 -960,9.0,5.0,0.0,1.8561002591115965 -960,9.0,8.0,0.0,9.090909090909092 -960,9.0,9.0,13.462042814524237,-41.3837606675224 -960,9.0,16.0,-3.956039125715353,10.317447719844054 -960,9.0,19.0,-1.7848303152666305,3.98535828943083 -960,9.0,20.0,-5.101853820159654,10.98071411292983 -960,9.0,21.0,-2.619319553382597,5.400770303329455 -960,10.0,8.0,0.0,4.807692307692308 -960,10.0,10.0,0.0,-4.807692307692308 -960,11.0,3.0,0.0,4.191255364806866 -960,11.0,11.0,6.573961583776156,-24.424167659260668 -960,11.0,12.0,0.0,7.142857142857143 -960,11.0,13.0,-1.5265676088395577,3.1734252729654173 -960,11.0,14.0,-3.0953961826564296,6.097275864326261 -960,11.0,15.0,-1.9519977922801688,4.104359379111847 -960,12.0,11.0,0.0,7.142857142857143 -960,12.0,12.0,0.0,-7.142857142857143 -960,13.0,11.0,-1.5265676088395577,3.1734252729654173 -960,13.0,13.0,4.01751987283902,-5.424299332335067 -960,13.0,14.0,-2.4909522639994623,2.250874059369649 -960,14.0,11.0,-3.0953961826564296,6.097275864326261 -960,14.0,13.0,-2.4909522639994623,2.250874059369649 -960,14.0,14.0,7.397149597063095,-12.035568855326606 -960,14.0,17.0,-1.8108011504072024,3.687418931630696 -960,15.0,11.0,-1.9519977922801688,4.104359379111847 -960,15.0,15.0,3.271064728633931,-8.94513365126506 -960,15.0,16.0,-1.3190669363537617,4.8407742721532125 -960,16.0,9.0,-3.956039125715353,10.317447719844054 -960,16.0,15.0,-1.3190669363537617,4.8407742721532125 -960,16.0,16.0,5.275106062069114,-15.158221991997266 -960,17.0,14.0,-1.8108011504072024,3.687418931630696 -960,17.0,17.0,4.886487584415919,-9.906177730909668 -960,17.0,18.0,-3.0756864340087167,6.218758799278971 -960,18.0,17.0,-3.0756864340087167,6.218758799278971 -960,18.0,18.0,8.958039375185187,-17.98346468163191 -960,18.0,19.0,-5.88235294117647,11.76470588235294 -960,19.0,9.0,-1.7848303152666305,3.98535828943083 -960,19.0,18.0,-5.88235294117647,11.76470588235294 -960,19.0,19.0,7.6671832564431,-15.75006417178377 -960,20.0,9.0,-5.101853820159654,10.98071411292983 -960,20.0,20.0,21.876495189895888,-45.10843276170355 -960,20.0,21.0,-16.774641369736234,34.127718648773715 -960,21.0,9.0,-2.619319553382597,5.400770303329455 -960,21.0,20.0,-16.774641369736234,34.127718648773715 -960,21.0,21.0,21.93449907537439,-43.48289181517921 -960,21.0,23.0,-2.5405381522555563,3.95440286307604 -960,22.0,22.0,1.4614056064833263,-2.989238740534077 -960,22.0,23.0,-1.4614056064833263,2.989238740534077 -960,23.0,21.0,-2.5405381522555563,3.95440286307604 -960,23.0,22.0,-1.4614056064833263,2.989238740534077 -960,23.0,23.0,5.311836702613133,-9.188263657315172 -960,23.0,24.0,-1.3098929438742493,2.287622053705056 -960,24.0,23.0,-1.3098929438742493,2.287622053705056 -960,24.0,24.0,4.495715080321987,-7.864978761969621 -960,24.0,25.0,-1.2165301194494855,1.8171440463475024 -960,24.0,26.0,-1.9692920169982515,3.760212661917064 -960,25.0,24.0,-1.2165301194494855,1.8171440463475024 -960,25.0,25.0,1.2165301194494855,-1.8171440463475024 -960,26.0,24.0,-1.9692920169982515,3.760212661917064 -960,26.0,26.0,2.656747919825909,-7.579436681967305 -960,26.0,27.0,0.0,2.608731947574922 -960,26.0,29.0,-0.6874559028276572,1.293971494797717 -960,27.0,5.0,-4.362844058012917,15.463571542897856 -960,27.0,7.0,-1.4439790613954469,4.540814658476248 -960,27.0,26.0,0.0,2.608731947574922 -960,27.0,27.0,5.806823119408364,-22.67145722159613 -960,28.0,28.0,0.9120532070322764,-1.7233585608492326 -960,28.0,29.0,-0.9120532070322764,1.7233585608492326 -960,29.0,26.0,-0.6874559028276572,1.293971494797717 -960,29.0,28.0,-0.9120532070322764,1.7233585608492326 -960,29.0,29.0,1.5995091098599337,-3.0173300556469496 -961,0.0,0.0,6.765516048652632,-21.23160167089863 -961,0.0,1.0,-5.224646179885656,15.646726840803398 -961,0.0,2.0,-1.5408698687669766,5.631674830095234 -961,1.0,0.0,-5.224646179885656,15.646726840803398 -961,1.0,1.0,8.046751848825002,-25.46968366441956 -961,1.0,4.0,-1.1359607881738778,4.772479328281356 -961,1.0,5.0,-1.6861448807654689,5.116477495334806 -961,2.0,0.0,-1.5408698687669766,5.631674830095234 -961,2.0,2.0,9.736318911079088,-29.13794745915803 -961,2.0,3.0,-8.19544904231211,23.5308726290628 -961,3.0,2.0,-8.19544904231211,23.5308726290628 -961,3.0,3.0,14.608572772486664,-50.33043130699775 -961,3.0,5.0,-6.413123730174556,22.31120356548123 -961,3.0,11.0,0.0,4.191255364806866 -961,4.0,1.0,-1.1359607881738778,4.772479328281356 -961,4.0,4.0,4.089980824135861,-12.190647245055052 -961,4.0,6.0,-2.954020035961983,7.449267916773697 -961,5.0,1.0,-1.6861448807654689,5.116477495334806 -961,5.0,3.0,-6.413123730174556,22.31120356548123 -961,5.0,5.0,22.341631269034565,-82.8291478657789 -961,5.0,6.0,-3.590210423980992,11.02611441072814 -961,5.0,7.0,-6.289308176100628,22.0125786163522 -961,5.0,8.0,0.0,4.915840805411357 -961,5.0,9.0,0.0,1.8561002591115965 -961,5.0,27.0,-4.362844058012917,15.463571542897856 -961,6.0,4.0,-2.954020035961983,7.449267916773697 -961,6.0,5.0,-3.590210423980992,11.02611441072814 -961,6.0,6.0,6.544230459942975,-18.45668232750184 -961,7.0,5.0,-6.289308176100628,22.0125786163522 -961,7.0,7.0,7.733287237496075,-26.527493274828448 -961,7.0,27.0,-1.4439790613954469,4.540814658476248 -961,8.0,5.0,0.0,4.915840805411357 -961,8.0,8.0,0.0,-18.706293706293707 -961,8.0,9.0,0.0,9.090909090909092 -961,8.0,10.0,0.0,4.807692307692308 -961,9.0,5.0,0.0,1.8561002591115965 -961,9.0,8.0,0.0,9.090909090909092 -961,9.0,9.0,13.462042814524237,-41.3837606675224 -961,9.0,16.0,-3.956039125715353,10.317447719844054 -961,9.0,19.0,-1.7848303152666305,3.98535828943083 -961,9.0,20.0,-5.101853820159654,10.98071411292983 -961,9.0,21.0,-2.619319553382597,5.400770303329455 -961,10.0,8.0,0.0,4.807692307692308 -961,10.0,10.0,0.0,-4.807692307692308 -961,11.0,3.0,0.0,4.191255364806866 -961,11.0,11.0,6.573961583776156,-24.424167659260668 -961,11.0,12.0,0.0,7.142857142857143 -961,11.0,13.0,-1.5265676088395577,3.1734252729654173 -961,11.0,14.0,-3.0953961826564296,6.097275864326261 -961,11.0,15.0,-1.9519977922801688,4.104359379111847 -961,12.0,11.0,0.0,7.142857142857143 -961,12.0,12.0,0.0,-7.142857142857143 -961,13.0,11.0,-1.5265676088395577,3.1734252729654173 -961,13.0,13.0,4.01751987283902,-5.424299332335067 -961,13.0,14.0,-2.4909522639994623,2.250874059369649 -961,14.0,11.0,-3.0953961826564296,6.097275864326261 -961,14.0,13.0,-2.4909522639994623,2.250874059369649 -961,14.0,14.0,9.365498545964757,-16.01163373210796 -961,14.0,17.0,-1.8108011504072024,3.687418931630696 -961,14.0,22.0,-1.9683489489016612,3.976064876781356 -961,15.0,11.0,-1.9519977922801688,4.104359379111847 -961,15.0,15.0,3.271064728633931,-8.94513365126506 -961,15.0,16.0,-1.3190669363537617,4.8407742721532125 -961,16.0,9.0,-3.956039125715353,10.317447719844054 -961,16.0,15.0,-1.3190669363537617,4.8407742721532125 -961,16.0,16.0,5.275106062069114,-15.158221991997266 -961,17.0,14.0,-1.8108011504072024,3.687418931630696 -961,17.0,17.0,4.886487584415919,-9.906177730909668 -961,17.0,18.0,-3.0756864340087167,6.218758799278971 -961,18.0,17.0,-3.0756864340087167,6.218758799278971 -961,18.0,18.0,8.958039375185187,-17.98346468163191 -961,18.0,19.0,-5.88235294117647,11.76470588235294 -961,19.0,9.0,-1.7848303152666305,3.98535828943083 -961,19.0,18.0,-5.88235294117647,11.76470588235294 -961,19.0,19.0,7.6671832564431,-15.75006417178377 -961,20.0,9.0,-5.101853820159654,10.98071411292983 -961,20.0,20.0,21.876495189895888,-45.10843276170355 -961,20.0,21.0,-16.774641369736234,34.127718648773715 -961,21.0,9.0,-2.619319553382597,5.400770303329455 -961,21.0,20.0,-16.774641369736234,34.127718648773715 -961,21.0,21.0,21.93449907537439,-43.48289181517921 -961,21.0,23.0,-2.5405381522555563,3.95440286307604 -961,22.0,14.0,-1.9683489489016612,3.976064876781356 -961,22.0,22.0,3.429754555384988,-6.965303617315433 -961,22.0,23.0,-1.4614056064833263,2.989238740534077 -961,23.0,21.0,-2.5405381522555563,3.95440286307604 -961,23.0,22.0,-1.4614056064833263,2.989238740534077 -961,23.0,23.0,5.311836702613133,-9.188263657315172 -961,23.0,24.0,-1.3098929438742493,2.287622053705056 -961,24.0,23.0,-1.3098929438742493,2.287622053705056 -961,24.0,24.0,4.495715080321987,-7.864978761969621 -961,24.0,25.0,-1.2165301194494855,1.8171440463475024 -961,24.0,26.0,-1.9692920169982515,3.760212661917064 -961,25.0,24.0,-1.2165301194494855,1.8171440463475024 -961,25.0,25.0,1.2165301194494855,-1.8171440463475024 -961,26.0,24.0,-1.9692920169982515,3.760212661917064 -961,26.0,26.0,2.9648255679509314,-8.166471027527404 -961,26.0,27.0,0.0,2.608731947574922 -961,26.0,28.0,-0.99553355095268,1.881005840357816 -961,27.0,5.0,-4.362844058012917,15.463571542897856 -961,27.0,7.0,-1.4439790613954469,4.540814658476248 -961,27.0,26.0,0.0,2.608731947574922 -961,27.0,27.0,5.806823119408364,-22.67145722159613 -961,28.0,26.0,-0.99553355095268,1.881005840357816 -961,28.0,28.0,1.9075867579849564,-3.604364401207048 -961,28.0,29.0,-0.9120532070322764,1.7233585608492326 -961,29.0,28.0,-0.9120532070322764,1.7233585608492326 -961,29.0,29.0,0.9120532070322764,-1.7233585608492326 -962,0.0,0.0,6.765516048652632,-21.23160167089863 -962,0.0,1.0,-5.224646179885656,15.646726840803398 -962,0.0,2.0,-1.5408698687669766,5.631674830095234 -962,1.0,0.0,-5.224646179885656,15.646726840803398 -962,1.0,1.0,9.75228216552403,-30.648662892676068 -962,1.0,3.0,-1.7055303166990268,5.1973792282565086 -962,1.0,4.0,-1.1359607881738778,4.772479328281356 -962,1.0,5.0,-1.6861448807654689,5.116477495334806 -962,2.0,0.0,-1.5408698687669766,5.631674830095234 -962,2.0,2.0,9.736318911079088,-29.13794745915803 -962,2.0,3.0,-8.19544904231211,23.5308726290628 -962,3.0,1.0,-1.7055303166990268,5.1973792282565086 -962,3.0,2.0,-8.19544904231211,23.5308726290628 -962,3.0,3.0,16.314103089185693,-55.509410535254254 -962,3.0,5.0,-6.413123730174556,22.31120356548123 -962,3.0,11.0,0.0,4.191255364806866 -962,4.0,1.0,-1.1359607881738778,4.772479328281356 -962,4.0,4.0,4.089980824135861,-12.190647245055052 -962,4.0,6.0,-2.954020035961983,7.449267916773697 -962,5.0,1.0,-1.6861448807654689,5.116477495334806 -962,5.0,3.0,-6.413123730174556,22.31120356548123 -962,5.0,5.0,22.341631269034565,-82.8291478657789 -962,5.0,6.0,-3.590210423980992,11.02611441072814 -962,5.0,7.0,-6.289308176100628,22.0125786163522 -962,5.0,8.0,0.0,4.915840805411357 -962,5.0,9.0,0.0,1.8561002591115965 -962,5.0,27.0,-4.362844058012917,15.463571542897856 -962,6.0,4.0,-2.954020035961983,7.449267916773697 -962,6.0,5.0,-3.590210423980992,11.02611441072814 -962,6.0,6.0,6.544230459942975,-18.45668232750184 -962,7.0,5.0,-6.289308176100628,22.0125786163522 -962,7.0,7.0,7.733287237496075,-26.527493274828448 -962,7.0,27.0,-1.4439790613954469,4.540814658476248 -962,8.0,5.0,0.0,4.915840805411357 -962,8.0,8.0,0.0,-18.706293706293707 -962,8.0,9.0,0.0,9.090909090909092 -962,8.0,10.0,0.0,4.807692307692308 -962,9.0,5.0,0.0,1.8561002591115965 -962,9.0,8.0,0.0,9.090909090909092 -962,9.0,9.0,13.462042814524237,-41.3837606675224 -962,9.0,16.0,-3.956039125715353,10.317447719844054 -962,9.0,19.0,-1.7848303152666305,3.98535828943083 -962,9.0,20.0,-5.101853820159654,10.98071411292983 -962,9.0,21.0,-2.619319553382597,5.400770303329455 -962,10.0,8.0,0.0,4.807692307692308 -962,10.0,10.0,0.0,-4.807692307692308 -962,11.0,3.0,0.0,4.191255364806866 -962,11.0,11.0,6.573961583776156,-24.424167659260668 -962,11.0,12.0,0.0,7.142857142857143 -962,11.0,13.0,-1.5265676088395577,3.1734252729654173 -962,11.0,14.0,-3.0953961826564296,6.097275864326261 -962,11.0,15.0,-1.9519977922801688,4.104359379111847 -962,12.0,11.0,0.0,7.142857142857143 -962,12.0,12.0,0.0,-7.142857142857143 -962,13.0,11.0,-1.5265676088395577,3.1734252729654173 -962,13.0,13.0,4.01751987283902,-5.424299332335067 -962,13.0,14.0,-2.4909522639994623,2.250874059369649 -962,14.0,11.0,-3.0953961826564296,6.097275864326261 -962,14.0,13.0,-2.4909522639994623,2.250874059369649 -962,14.0,14.0,9.365498545964757,-16.01163373210796 -962,14.0,17.0,-1.8108011504072024,3.687418931630696 -962,14.0,22.0,-1.9683489489016612,3.976064876781356 -962,15.0,11.0,-1.9519977922801688,4.104359379111847 -962,15.0,15.0,3.271064728633931,-8.94513365126506 -962,15.0,16.0,-1.3190669363537617,4.8407742721532125 -962,16.0,9.0,-3.956039125715353,10.317447719844054 -962,16.0,15.0,-1.3190669363537617,4.8407742721532125 -962,16.0,16.0,5.275106062069114,-15.158221991997266 -962,17.0,14.0,-1.8108011504072024,3.687418931630696 -962,17.0,17.0,4.886487584415919,-9.906177730909668 -962,17.0,18.0,-3.0756864340087167,6.218758799278971 -962,18.0,17.0,-3.0756864340087167,6.218758799278971 -962,18.0,18.0,8.958039375185187,-17.98346468163191 -962,18.0,19.0,-5.88235294117647,11.76470588235294 -962,19.0,9.0,-1.7848303152666305,3.98535828943083 -962,19.0,18.0,-5.88235294117647,11.76470588235294 -962,19.0,19.0,7.6671832564431,-15.75006417178377 -962,20.0,9.0,-5.101853820159654,10.98071411292983 -962,20.0,20.0,21.876495189895888,-45.10843276170355 -962,20.0,21.0,-16.774641369736234,34.127718648773715 -962,21.0,9.0,-2.619319553382597,5.400770303329455 -962,21.0,20.0,-16.774641369736234,34.127718648773715 -962,21.0,21.0,21.93449907537439,-43.48289181517921 -962,21.0,23.0,-2.5405381522555563,3.95440286307604 -962,22.0,14.0,-1.9683489489016612,3.976064876781356 -962,22.0,22.0,3.429754555384988,-6.965303617315433 -962,22.0,23.0,-1.4614056064833263,2.989238740534077 -962,23.0,21.0,-2.5405381522555563,3.95440286307604 -962,23.0,22.0,-1.4614056064833263,2.989238740534077 -962,23.0,23.0,5.311836702613133,-9.188263657315172 -962,23.0,24.0,-1.3098929438742493,2.287622053705056 -962,24.0,23.0,-1.3098929438742493,2.287622053705056 -962,24.0,24.0,4.495715080321987,-7.864978761969621 -962,24.0,25.0,-1.2165301194494855,1.8171440463475024 -962,24.0,26.0,-1.9692920169982515,3.760212661917064 -962,25.0,24.0,-1.2165301194494855,1.8171440463475024 -962,25.0,25.0,1.2165301194494855,-1.8171440463475024 -962,26.0,24.0,-1.9692920169982515,3.760212661917064 -962,26.0,26.0,3.652281470778589,-9.46044252232512 -962,26.0,27.0,0.0,2.608731947574922 -962,26.0,28.0,-0.99553355095268,1.881005840357816 -962,26.0,29.0,-0.6874559028276572,1.293971494797717 -962,27.0,5.0,-4.362844058012917,15.463571542897856 -962,27.0,7.0,-1.4439790613954469,4.540814658476248 -962,27.0,26.0,0.0,2.608731947574922 -962,27.0,27.0,5.806823119408364,-22.67145722159613 -962,28.0,26.0,-0.99553355095268,1.881005840357816 -962,28.0,28.0,1.9075867579849564,-3.604364401207048 -962,28.0,29.0,-0.9120532070322764,1.7233585608492326 -962,29.0,26.0,-0.6874559028276572,1.293971494797717 -962,29.0,28.0,-0.9120532070322764,1.7233585608492326 -962,29.0,29.0,1.5995091098599337,-3.0173300556469496 -963,0.0,0.0,6.765516048652632,-21.23160167089863 -963,0.0,1.0,-5.224646179885656,15.646726840803398 -963,0.0,2.0,-1.5408698687669766,5.631674830095234 -963,1.0,0.0,-5.224646179885656,15.646726840803398 -963,1.0,1.0,9.75228216552403,-30.648662892676068 -963,1.0,3.0,-1.7055303166990268,5.1973792282565086 -963,1.0,4.0,-1.1359607881738778,4.772479328281356 -963,1.0,5.0,-1.6861448807654689,5.116477495334806 -963,2.0,0.0,-1.5408698687669766,5.631674830095234 -963,2.0,2.0,9.736318911079088,-29.13794745915803 -963,2.0,3.0,-8.19544904231211,23.5308726290628 -963,3.0,1.0,-1.7055303166990268,5.1973792282565086 -963,3.0,2.0,-8.19544904231211,23.5308726290628 -963,3.0,3.0,16.314103089185693,-55.509410535254254 -963,3.0,5.0,-6.413123730174556,22.31120356548123 -963,3.0,11.0,0.0,4.191255364806866 -963,4.0,1.0,-1.1359607881738778,4.772479328281356 -963,4.0,4.0,4.089980824135861,-12.190647245055052 -963,4.0,6.0,-2.954020035961983,7.449267916773697 -963,5.0,1.0,-1.6861448807654689,5.116477495334806 -963,5.0,3.0,-6.413123730174556,22.31120356548123 -963,5.0,5.0,22.341631269034565,-80.91366772221689 -963,5.0,6.0,-3.590210423980992,11.02611441072814 -963,5.0,7.0,-6.289308176100628,22.0125786163522 -963,5.0,8.0,0.0,4.915840805411357 -963,5.0,27.0,-4.362844058012917,15.463571542897856 -963,6.0,4.0,-2.954020035961983,7.449267916773697 -963,6.0,5.0,-3.590210423980992,11.02611441072814 -963,6.0,6.0,6.544230459942975,-18.45668232750184 -963,7.0,5.0,-6.289308176100628,22.0125786163522 -963,7.0,7.0,7.733287237496075,-26.527493274828448 -963,7.0,27.0,-1.4439790613954469,4.540814658476248 -963,8.0,5.0,0.0,4.915840805411357 -963,8.0,8.0,0.0,-18.706293706293707 -963,8.0,9.0,0.0,9.090909090909092 -963,8.0,10.0,0.0,4.807692307692308 -963,9.0,8.0,0.0,9.090909090909092 -963,9.0,9.0,10.842723261141638,-34.18442921311381 -963,9.0,16.0,-3.956039125715353,10.317447719844054 -963,9.0,19.0,-1.7848303152666305,3.98535828943083 -963,9.0,20.0,-5.101853820159654,10.98071411292983 -963,10.0,8.0,0.0,4.807692307692308 -963,10.0,10.0,0.0,-4.807692307692308 -963,11.0,3.0,0.0,4.191255364806866 -963,11.0,11.0,5.047393974936599,-21.25074238629525 -963,11.0,12.0,0.0,7.142857142857143 -963,11.0,14.0,-3.0953961826564296,6.097275864326261 -963,11.0,15.0,-1.9519977922801688,4.104359379111847 -963,12.0,11.0,0.0,7.142857142857143 -963,12.0,12.0,0.0,-7.142857142857143 -963,13.0,13.0,2.4909522639994623,-2.250874059369649 -963,13.0,14.0,-2.4909522639994623,2.250874059369649 -963,14.0,11.0,-3.0953961826564296,6.097275864326261 -963,14.0,13.0,-2.4909522639994623,2.250874059369649 -963,14.0,14.0,9.365498545964757,-16.01163373210796 -963,14.0,17.0,-1.8108011504072024,3.687418931630696 -963,14.0,22.0,-1.9683489489016612,3.976064876781356 -963,15.0,11.0,-1.9519977922801688,4.104359379111847 -963,15.0,15.0,3.271064728633931,-8.94513365126506 -963,15.0,16.0,-1.3190669363537617,4.8407742721532125 -963,16.0,9.0,-3.956039125715353,10.317447719844054 -963,16.0,15.0,-1.3190669363537617,4.8407742721532125 -963,16.0,16.0,5.275106062069114,-15.158221991997266 -963,17.0,14.0,-1.8108011504072024,3.687418931630696 -963,17.0,17.0,4.886487584415919,-9.906177730909668 -963,17.0,18.0,-3.0756864340087167,6.218758799278971 -963,18.0,17.0,-3.0756864340087167,6.218758799278971 -963,18.0,18.0,8.958039375185187,-17.98346468163191 -963,18.0,19.0,-5.88235294117647,11.76470588235294 -963,19.0,9.0,-1.7848303152666305,3.98535828943083 -963,19.0,18.0,-5.88235294117647,11.76470588235294 -963,19.0,19.0,7.6671832564431,-15.75006417178377 -963,20.0,9.0,-5.101853820159654,10.98071411292983 -963,20.0,20.0,21.876495189895888,-45.10843276170355 -963,20.0,21.0,-16.774641369736234,34.127718648773715 -963,21.0,20.0,-16.774641369736234,34.127718648773715 -963,21.0,21.0,16.774641369736234,-34.127718648773715 -963,22.0,14.0,-1.9683489489016612,3.976064876781356 -963,22.0,22.0,3.429754555384988,-6.965303617315433 -963,22.0,23.0,-1.4614056064833263,2.989238740534077 -963,23.0,22.0,-1.4614056064833263,2.989238740534077 -963,23.0,23.0,2.771298550357576,-5.233860794239132 -963,23.0,24.0,-1.3098929438742493,2.287622053705056 -963,24.0,23.0,-1.3098929438742493,2.287622053705056 -963,24.0,24.0,4.495715080321987,-7.864978761969621 -963,24.0,25.0,-1.2165301194494855,1.8171440463475024 -963,24.0,26.0,-1.9692920169982515,3.760212661917064 -963,25.0,24.0,-1.2165301194494855,1.8171440463475024 -963,25.0,25.0,1.2165301194494855,-1.8171440463475024 -963,26.0,24.0,-1.9692920169982515,3.760212661917064 -963,26.0,26.0,3.652281470778589,-9.46044252232512 -963,26.0,27.0,0.0,2.608731947574922 -963,26.0,28.0,-0.99553355095268,1.881005840357816 -963,26.0,29.0,-0.6874559028276572,1.293971494797717 -963,27.0,5.0,-4.362844058012917,15.463571542897856 -963,27.0,7.0,-1.4439790613954469,4.540814658476248 -963,27.0,26.0,0.0,2.608731947574922 -963,27.0,27.0,5.806823119408364,-22.67145722159613 -963,28.0,26.0,-0.99553355095268,1.881005840357816 -963,28.0,28.0,1.9075867579849564,-3.604364401207048 -963,28.0,29.0,-0.9120532070322764,1.7233585608492326 -963,29.0,26.0,-0.6874559028276572,1.293971494797717 -963,29.0,28.0,-0.9120532070322764,1.7233585608492326 -963,29.0,29.0,1.5995091098599337,-3.0173300556469496 -964,0.0,0.0,5.224646179885656,-15.620326840803395 -964,0.0,1.0,-5.224646179885656,15.646726840803398 -964,1.0,0.0,-5.224646179885656,15.646726840803398 -964,1.0,1.0,9.75228216552403,-30.648662892676068 -964,1.0,3.0,-1.7055303166990268,5.1973792282565086 -964,1.0,4.0,-1.1359607881738778,4.772479328281356 -964,1.0,5.0,-1.6861448807654689,5.116477495334806 -964,2.0,2.0,8.19544904231211,-23.5266726290628 -964,2.0,3.0,-8.19544904231211,23.5308726290628 -964,3.0,1.0,-1.7055303166990268,5.1973792282565086 -964,3.0,2.0,-8.19544904231211,23.5308726290628 -964,3.0,3.0,9.900979359011137,-33.202706969773025 -964,3.0,11.0,0.0,4.191255364806866 -964,4.0,1.0,-1.1359607881738778,4.772479328281356 -964,4.0,4.0,4.089980824135861,-12.190647245055052 -964,4.0,6.0,-2.954020035961983,7.449267916773697 -964,5.0,1.0,-1.6861448807654689,5.116477495334806 -964,5.0,5.0,15.928507538860009,-58.60696415673565 -964,5.0,6.0,-3.590210423980992,11.02611441072814 -964,5.0,7.0,-6.289308176100628,22.0125786163522 -964,5.0,8.0,0.0,4.915840805411357 -964,5.0,27.0,-4.362844058012917,15.463571542897856 -964,6.0,4.0,-2.954020035961983,7.449267916773697 -964,6.0,5.0,-3.590210423980992,11.02611441072814 -964,6.0,6.0,6.544230459942975,-18.45668232750184 -964,7.0,5.0,-6.289308176100628,22.0125786163522 -964,7.0,7.0,7.733287237496075,-26.527493274828448 -964,7.0,27.0,-1.4439790613954469,4.540814658476248 -964,8.0,5.0,0.0,4.915840805411357 -964,8.0,8.0,0.0,-18.706293706293707 -964,8.0,9.0,0.0,9.090909090909092 -964,8.0,10.0,0.0,4.807692307692308 -964,9.0,8.0,0.0,9.090909090909092 -964,9.0,9.0,13.462042814524237,-39.58519951644326 -964,9.0,16.0,-3.956039125715353,10.317447719844054 -964,9.0,19.0,-1.7848303152666305,3.98535828943083 -964,9.0,20.0,-5.101853820159654,10.98071411292983 -964,9.0,21.0,-2.619319553382597,5.400770303329455 -964,10.0,8.0,0.0,4.807692307692308 -964,10.0,10.0,0.0,-4.807692307692308 -964,11.0,3.0,0.0,4.191255364806866 -964,11.0,11.0,6.573961583776156,-24.424167659260668 -964,11.0,12.0,0.0,7.142857142857143 -964,11.0,13.0,-1.5265676088395577,3.1734252729654173 -964,11.0,14.0,-3.0953961826564296,6.097275864326261 -964,11.0,15.0,-1.9519977922801688,4.104359379111847 -964,12.0,11.0,0.0,7.142857142857143 -964,12.0,12.0,0.0,-7.142857142857143 -964,13.0,11.0,-1.5265676088395577,3.1734252729654173 -964,13.0,13.0,4.01751987283902,-5.424299332335067 -964,13.0,14.0,-2.4909522639994623,2.250874059369649 -964,14.0,11.0,-3.0953961826564296,6.097275864326261 -964,14.0,13.0,-2.4909522639994623,2.250874059369649 -964,14.0,14.0,9.365498545964757,-16.01163373210796 -964,14.0,17.0,-1.8108011504072024,3.687418931630696 -964,14.0,22.0,-1.9683489489016612,3.976064876781356 -964,15.0,11.0,-1.9519977922801688,4.104359379111847 -964,15.0,15.0,3.271064728633931,-8.94513365126506 -964,15.0,16.0,-1.3190669363537617,4.8407742721532125 -964,16.0,9.0,-3.956039125715353,10.317447719844054 -964,16.0,15.0,-1.3190669363537617,4.8407742721532125 -964,16.0,16.0,5.275106062069114,-15.158221991997266 -964,17.0,14.0,-1.8108011504072024,3.687418931630696 -964,17.0,17.0,4.886487584415919,-9.906177730909668 -964,17.0,18.0,-3.0756864340087167,6.218758799278971 -964,18.0,17.0,-3.0756864340087167,6.218758799278971 -964,18.0,18.0,8.958039375185187,-17.98346468163191 -964,18.0,19.0,-5.88235294117647,11.76470588235294 -964,19.0,9.0,-1.7848303152666305,3.98535828943083 -964,19.0,18.0,-5.88235294117647,11.76470588235294 -964,19.0,19.0,7.6671832564431,-15.75006417178377 -964,20.0,9.0,-5.101853820159654,10.98071411292983 -964,20.0,20.0,21.876495189895888,-45.10843276170355 -964,20.0,21.0,-16.774641369736234,34.127718648773715 -964,21.0,9.0,-2.619319553382597,5.400770303329455 -964,21.0,20.0,-16.774641369736234,34.127718648773715 -964,21.0,21.0,21.93449907537439,-43.48289181517921 -964,21.0,23.0,-2.5405381522555563,3.95440286307604 -964,22.0,14.0,-1.9683489489016612,3.976064876781356 -964,22.0,22.0,3.429754555384988,-6.965303617315433 -964,22.0,23.0,-1.4614056064833263,2.989238740534077 -964,23.0,21.0,-2.5405381522555563,3.95440286307604 -964,23.0,22.0,-1.4614056064833263,2.989238740534077 -964,23.0,23.0,5.311836702613133,-9.188263657315172 -964,23.0,24.0,-1.3098929438742493,2.287622053705056 -964,24.0,23.0,-1.3098929438742493,2.287622053705056 -964,24.0,24.0,4.495715080321987,-7.864978761969621 -964,24.0,25.0,-1.2165301194494855,1.8171440463475024 -964,24.0,26.0,-1.9692920169982515,3.760212661917064 -964,25.0,24.0,-1.2165301194494855,1.8171440463475024 -964,25.0,25.0,1.2165301194494855,-1.8171440463475024 -964,26.0,24.0,-1.9692920169982515,3.760212661917064 -964,26.0,26.0,3.652281470778589,-9.46044252232512 -964,26.0,27.0,0.0,2.608731947574922 -964,26.0,28.0,-0.99553355095268,1.881005840357816 -964,26.0,29.0,-0.6874559028276572,1.293971494797717 -964,27.0,5.0,-4.362844058012917,15.463571542897856 -964,27.0,7.0,-1.4439790613954469,4.540814658476248 -964,27.0,26.0,0.0,2.608731947574922 -964,27.0,27.0,5.806823119408364,-22.67145722159613 -964,28.0,26.0,-0.99553355095268,1.881005840357816 -964,28.0,28.0,1.9075867579849564,-3.604364401207048 -964,28.0,29.0,-0.9120532070322764,1.7233585608492326 -964,29.0,26.0,-0.6874559028276572,1.293971494797717 -964,29.0,28.0,-0.9120532070322764,1.7233585608492326 -964,29.0,29.0,1.5995091098599337,-3.0173300556469496 -965,0.0,0.0,5.224646179885656,-15.620326840803395 -965,0.0,1.0,-5.224646179885656,15.646726840803398 -965,1.0,0.0,-5.224646179885656,15.646726840803398 -965,1.0,1.0,9.75228216552403,-30.648662892676068 -965,1.0,3.0,-1.7055303166990268,5.1973792282565086 -965,1.0,4.0,-1.1359607881738778,4.772479328281356 -965,1.0,5.0,-1.6861448807654689,5.116477495334806 -965,2.0,2.0,8.19544904231211,-23.5266726290628 -965,2.0,3.0,-8.19544904231211,23.5308726290628 -965,3.0,1.0,-1.7055303166990268,5.1973792282565086 -965,3.0,2.0,-8.19544904231211,23.5308726290628 -965,3.0,3.0,16.314103089185693,-55.509410535254254 -965,3.0,5.0,-6.413123730174556,22.31120356548123 -965,3.0,11.0,0.0,4.191255364806866 -965,4.0,1.0,-1.1359607881738778,4.772479328281356 -965,4.0,4.0,4.089980824135861,-12.190647245055052 -965,4.0,6.0,-2.954020035961983,7.449267916773697 -965,5.0,1.0,-1.6861448807654689,5.116477495334806 -965,5.0,3.0,-6.413123730174556,22.31120356548123 -965,5.0,5.0,18.75142084505357,-71.81153345505078 -965,5.0,7.0,-6.289308176100628,22.0125786163522 -965,5.0,8.0,0.0,4.915840805411357 -965,5.0,9.0,0.0,1.8561002591115965 -965,5.0,27.0,-4.362844058012917,15.463571542897856 -965,6.0,4.0,-2.954020035961983,7.449267916773697 -965,6.0,6.0,2.954020035961983,-7.439067916773697 -965,7.0,5.0,-6.289308176100628,22.0125786163522 -965,7.0,7.0,7.733287237496075,-26.527493274828448 -965,7.0,27.0,-1.4439790613954469,4.540814658476248 -965,8.0,5.0,0.0,4.915840805411357 -965,8.0,8.0,0.0,-18.706293706293707 -965,8.0,9.0,0.0,9.090909090909092 -965,8.0,10.0,0.0,4.807692307692308 -965,9.0,5.0,0.0,1.8561002591115965 -965,9.0,8.0,0.0,9.090909090909092 -965,9.0,9.0,13.462042814524237,-41.3837606675224 -965,9.0,16.0,-3.956039125715353,10.317447719844054 -965,9.0,19.0,-1.7848303152666305,3.98535828943083 -965,9.0,20.0,-5.101853820159654,10.98071411292983 -965,9.0,21.0,-2.619319553382597,5.400770303329455 -965,10.0,8.0,0.0,4.807692307692308 -965,10.0,10.0,0.0,-4.807692307692308 -965,11.0,3.0,0.0,4.191255364806866 -965,11.0,11.0,6.573961583776156,-24.424167659260668 -965,11.0,12.0,0.0,7.142857142857143 -965,11.0,13.0,-1.5265676088395577,3.1734252729654173 -965,11.0,14.0,-3.0953961826564296,6.097275864326261 -965,11.0,15.0,-1.9519977922801688,4.104359379111847 -965,12.0,11.0,0.0,7.142857142857143 -965,12.0,12.0,0.0,-7.142857142857143 -965,13.0,11.0,-1.5265676088395577,3.1734252729654173 -965,13.0,13.0,4.01751987283902,-5.424299332335067 -965,13.0,14.0,-2.4909522639994623,2.250874059369649 -965,14.0,11.0,-3.0953961826564296,6.097275864326261 -965,14.0,13.0,-2.4909522639994623,2.250874059369649 -965,14.0,14.0,9.365498545964757,-16.01163373210796 -965,14.0,17.0,-1.8108011504072024,3.687418931630696 -965,14.0,22.0,-1.9683489489016612,3.976064876781356 -965,15.0,11.0,-1.9519977922801688,4.104359379111847 -965,15.0,15.0,3.271064728633931,-8.94513365126506 -965,15.0,16.0,-1.3190669363537617,4.8407742721532125 -965,16.0,9.0,-3.956039125715353,10.317447719844054 -965,16.0,15.0,-1.3190669363537617,4.8407742721532125 -965,16.0,16.0,5.275106062069114,-15.158221991997266 -965,17.0,14.0,-1.8108011504072024,3.687418931630696 -965,17.0,17.0,1.8108011504072024,-3.687418931630696 -965,18.0,18.0,5.88235294117647,-11.76470588235294 -965,18.0,19.0,-5.88235294117647,11.76470588235294 -965,19.0,9.0,-1.7848303152666305,3.98535828943083 -965,19.0,18.0,-5.88235294117647,11.76470588235294 -965,19.0,19.0,7.6671832564431,-15.75006417178377 -965,20.0,9.0,-5.101853820159654,10.98071411292983 -965,20.0,20.0,21.876495189895888,-45.10843276170355 -965,20.0,21.0,-16.774641369736234,34.127718648773715 -965,21.0,9.0,-2.619319553382597,5.400770303329455 -965,21.0,20.0,-16.774641369736234,34.127718648773715 -965,21.0,21.0,21.93449907537439,-43.48289181517921 -965,21.0,23.0,-2.5405381522555563,3.95440286307604 -965,22.0,14.0,-1.9683489489016612,3.976064876781356 -965,22.0,22.0,3.429754555384988,-6.965303617315433 -965,22.0,23.0,-1.4614056064833263,2.989238740534077 -965,23.0,21.0,-2.5405381522555563,3.95440286307604 -965,23.0,22.0,-1.4614056064833263,2.989238740534077 -965,23.0,23.0,5.311836702613133,-9.188263657315172 -965,23.0,24.0,-1.3098929438742493,2.287622053705056 -965,24.0,23.0,-1.3098929438742493,2.287622053705056 -965,24.0,24.0,4.495715080321987,-7.864978761969621 -965,24.0,25.0,-1.2165301194494855,1.8171440463475024 -965,24.0,26.0,-1.9692920169982515,3.760212661917064 -965,25.0,24.0,-1.2165301194494855,1.8171440463475024 -965,25.0,25.0,1.2165301194494855,-1.8171440463475024 -965,26.0,24.0,-1.9692920169982515,3.760212661917064 -965,26.0,26.0,3.652281470778589,-9.46044252232512 -965,26.0,27.0,0.0,2.608731947574922 -965,26.0,28.0,-0.99553355095268,1.881005840357816 -965,26.0,29.0,-0.6874559028276572,1.293971494797717 -965,27.0,5.0,-4.362844058012917,15.463571542897856 -965,27.0,7.0,-1.4439790613954469,4.540814658476248 -965,27.0,26.0,0.0,2.608731947574922 -965,27.0,27.0,5.806823119408364,-22.67145722159613 -965,28.0,26.0,-0.99553355095268,1.881005840357816 -965,28.0,28.0,1.9075867579849564,-3.604364401207048 -965,28.0,29.0,-0.9120532070322764,1.7233585608492326 -965,29.0,26.0,-0.6874559028276572,1.293971494797717 -965,29.0,28.0,-0.9120532070322764,1.7233585608492326 -965,29.0,29.0,1.5995091098599337,-3.0173300556469496 -966,0.0,0.0,6.765516048652632,-21.23160167089863 -966,0.0,1.0,-5.224646179885656,15.646726840803398 -966,0.0,2.0,-1.5408698687669766,5.631674830095234 -966,1.0,0.0,-5.224646179885656,15.646726840803398 -966,1.0,1.0,9.75228216552403,-30.648662892676068 -966,1.0,3.0,-1.7055303166990268,5.1973792282565086 -966,1.0,4.0,-1.1359607881738778,4.772479328281356 -966,1.0,5.0,-1.6861448807654689,5.116477495334806 -966,2.0,0.0,-1.5408698687669766,5.631674830095234 -966,2.0,2.0,9.736318911079088,-29.13794745915803 -966,2.0,3.0,-8.19544904231211,23.5308726290628 -966,3.0,1.0,-1.7055303166990268,5.1973792282565086 -966,3.0,2.0,-8.19544904231211,23.5308726290628 -966,3.0,3.0,16.314103089185693,-55.509410535254254 -966,3.0,5.0,-6.413123730174556,22.31120356548123 -966,3.0,11.0,0.0,4.191255364806866 -966,4.0,1.0,-1.1359607881738778,4.772479328281356 -966,4.0,4.0,4.089980824135861,-12.190647245055052 -966,4.0,6.0,-2.954020035961983,7.449267916773697 -966,5.0,1.0,-1.6861448807654689,5.116477495334806 -966,5.0,3.0,-6.413123730174556,22.31120356548123 -966,5.0,5.0,22.341631269034565,-82.8291478657789 -966,5.0,6.0,-3.590210423980992,11.02611441072814 -966,5.0,7.0,-6.289308176100628,22.0125786163522 -966,5.0,8.0,0.0,4.915840805411357 -966,5.0,9.0,0.0,1.8561002591115965 -966,5.0,27.0,-4.362844058012917,15.463571542897856 -966,6.0,4.0,-2.954020035961983,7.449267916773697 -966,6.0,5.0,-3.590210423980992,11.02611441072814 -966,6.0,6.0,6.544230459942975,-18.45668232750184 -966,7.0,5.0,-6.289308176100628,22.0125786163522 -966,7.0,7.0,7.733287237496075,-26.527493274828448 -966,7.0,27.0,-1.4439790613954469,4.540814658476248 -966,8.0,5.0,0.0,4.915840805411357 -966,8.0,8.0,0.0,-18.706293706293707 -966,8.0,9.0,0.0,9.090909090909092 -966,8.0,10.0,0.0,4.807692307692308 -966,9.0,5.0,0.0,1.8561002591115965 -966,9.0,8.0,0.0,9.090909090909092 -966,9.0,9.0,13.462042814524237,-41.3837606675224 -966,9.0,16.0,-3.956039125715353,10.317447719844054 -966,9.0,19.0,-1.7848303152666305,3.98535828943083 -966,9.0,20.0,-5.101853820159654,10.98071411292983 -966,9.0,21.0,-2.619319553382597,5.400770303329455 -966,10.0,8.0,0.0,4.807692307692308 -966,10.0,10.0,0.0,-4.807692307692308 -966,11.0,3.0,0.0,4.191255364806866 -966,11.0,11.0,6.573961583776156,-24.424167659260668 -966,11.0,12.0,0.0,7.142857142857143 -966,11.0,13.0,-1.5265676088395577,3.1734252729654173 -966,11.0,14.0,-3.0953961826564296,6.097275864326261 -966,11.0,15.0,-1.9519977922801688,4.104359379111847 -966,12.0,11.0,0.0,7.142857142857143 -966,12.0,12.0,0.0,-7.142857142857143 -966,13.0,11.0,-1.5265676088395577,3.1734252729654173 -966,13.0,13.0,4.01751987283902,-5.424299332335067 -966,13.0,14.0,-2.4909522639994623,2.250874059369649 -966,14.0,11.0,-3.0953961826564296,6.097275864326261 -966,14.0,13.0,-2.4909522639994623,2.250874059369649 -966,14.0,14.0,9.365498545964757,-16.01163373210796 -966,14.0,17.0,-1.8108011504072024,3.687418931630696 -966,14.0,22.0,-1.9683489489016612,3.976064876781356 -966,15.0,11.0,-1.9519977922801688,4.104359379111847 -966,15.0,15.0,3.271064728633931,-8.94513365126506 -966,15.0,16.0,-1.3190669363537617,4.8407742721532125 -966,16.0,9.0,-3.956039125715353,10.317447719844054 -966,16.0,15.0,-1.3190669363537617,4.8407742721532125 -966,16.0,16.0,5.275106062069114,-15.158221991997266 -966,17.0,14.0,-1.8108011504072024,3.687418931630696 -966,17.0,17.0,4.886487584415919,-9.906177730909668 -966,17.0,18.0,-3.0756864340087167,6.218758799278971 -966,18.0,17.0,-3.0756864340087167,6.218758799278971 -966,18.0,18.0,8.958039375185187,-17.98346468163191 -966,18.0,19.0,-5.88235294117647,11.76470588235294 -966,19.0,9.0,-1.7848303152666305,3.98535828943083 -966,19.0,18.0,-5.88235294117647,11.76470588235294 -966,19.0,19.0,7.6671832564431,-15.75006417178377 -966,20.0,9.0,-5.101853820159654,10.98071411292983 -966,20.0,20.0,21.876495189895888,-45.10843276170355 -966,20.0,21.0,-16.774641369736234,34.127718648773715 -966,21.0,9.0,-2.619319553382597,5.400770303329455 -966,21.0,20.0,-16.774641369736234,34.127718648773715 -966,21.0,21.0,21.93449907537439,-43.48289181517921 -966,21.0,23.0,-2.5405381522555563,3.95440286307604 -966,22.0,14.0,-1.9683489489016612,3.976064876781356 -966,22.0,22.0,3.429754555384988,-6.965303617315433 -966,22.0,23.0,-1.4614056064833263,2.989238740534077 -966,23.0,21.0,-2.5405381522555563,3.95440286307604 -966,23.0,22.0,-1.4614056064833263,2.989238740534077 -966,23.0,23.0,5.311836702613133,-9.188263657315172 -966,23.0,24.0,-1.3098929438742493,2.287622053705056 -966,24.0,23.0,-1.3098929438742493,2.287622053705056 -966,24.0,24.0,4.495715080321987,-7.864978761969621 -966,24.0,25.0,-1.2165301194494855,1.8171440463475024 -966,24.0,26.0,-1.9692920169982515,3.760212661917064 -966,25.0,24.0,-1.2165301194494855,1.8171440463475024 -966,25.0,25.0,1.2165301194494855,-1.8171440463475024 -966,26.0,24.0,-1.9692920169982515,3.760212661917064 -966,26.0,26.0,3.652281470778589,-9.46044252232512 -966,26.0,27.0,0.0,2.608731947574922 -966,26.0,28.0,-0.99553355095268,1.881005840357816 -966,26.0,29.0,-0.6874559028276572,1.293971494797717 -966,27.0,5.0,-4.362844058012917,15.463571542897856 -966,27.0,7.0,-1.4439790613954469,4.540814658476248 -966,27.0,26.0,0.0,2.608731947574922 -966,27.0,27.0,5.806823119408364,-22.67145722159613 -966,28.0,26.0,-0.99553355095268,1.881005840357816 -966,28.0,28.0,1.9075867579849564,-3.604364401207048 -966,28.0,29.0,-0.9120532070322764,1.7233585608492326 -966,29.0,26.0,-0.6874559028276572,1.293971494797717 -966,29.0,28.0,-0.9120532070322764,1.7233585608492326 -966,29.0,29.0,1.5995091098599337,-3.0173300556469496 -967,0.0,0.0,6.765516048652632,-21.23160167089863 -967,0.0,1.0,-5.224646179885656,15.646726840803398 -967,0.0,2.0,-1.5408698687669766,5.631674830095234 -967,1.0,0.0,-5.224646179885656,15.646726840803398 -967,1.0,1.0,8.61632137735015,-25.897083564394716 -967,1.0,3.0,-1.7055303166990268,5.1973792282565086 -967,1.0,5.0,-1.6861448807654689,5.116477495334806 -967,2.0,0.0,-1.5408698687669766,5.631674830095234 -967,2.0,2.0,1.5408698687669766,-5.611274830095233 -967,3.0,1.0,-1.7055303166990268,5.1973792282565086 -967,3.0,3.0,8.118654046873583,-31.982737906191456 -967,3.0,5.0,-6.413123730174556,22.31120356548123 -967,3.0,11.0,0.0,4.191255364806866 -967,4.0,4.0,2.954020035961983,-7.439067916773697 -967,4.0,6.0,-2.954020035961983,7.449267916773697 -967,5.0,1.0,-1.6861448807654689,5.116477495334806 -967,5.0,3.0,-6.413123730174556,22.31120356548123 -967,5.0,5.0,16.052323092933932,-55.79464715800405 -967,5.0,6.0,-3.590210423980992,11.02611441072814 -967,5.0,9.0,0.0,1.8561002591115965 -967,5.0,27.0,-4.362844058012917,15.463571542897856 -967,6.0,4.0,-2.954020035961983,7.449267916773697 -967,6.0,5.0,-3.590210423980992,11.02611441072814 -967,6.0,6.0,6.544230459942975,-18.45668232750184 -967,7.0,7.0,1.4439790613954469,-4.519414658476248 -967,7.0,27.0,-1.4439790613954469,4.540814658476248 -967,8.0,8.0,0.0,-13.8986013986014 -967,8.0,9.0,0.0,9.090909090909092 -967,8.0,10.0,0.0,4.807692307692308 -967,9.0,5.0,0.0,1.8561002591115965 -967,9.0,8.0,0.0,9.090909090909092 -967,9.0,9.0,10.842723261141638,-35.98299036419294 -967,9.0,16.0,-3.956039125715353,10.317447719844054 -967,9.0,19.0,-1.7848303152666305,3.98535828943083 -967,9.0,20.0,-5.101853820159654,10.98071411292983 -967,10.0,8.0,0.0,4.807692307692308 -967,10.0,10.0,0.0,-4.807692307692308 -967,11.0,3.0,0.0,4.191255364806866 -967,11.0,11.0,4.621963791495987,-20.31980828014882 -967,11.0,12.0,0.0,7.142857142857143 -967,11.0,13.0,-1.5265676088395577,3.1734252729654173 -967,11.0,14.0,-3.0953961826564296,6.097275864326261 -967,12.0,11.0,0.0,7.142857142857143 -967,12.0,12.0,0.0,-7.142857142857143 -967,13.0,11.0,-1.5265676088395577,3.1734252729654173 -967,13.0,13.0,1.5265676088395577,-3.1734252729654173 -967,14.0,11.0,-3.0953961826564296,6.097275864326261 -967,14.0,14.0,6.874546281965293,-13.760759672738311 -967,14.0,17.0,-1.8108011504072024,3.687418931630696 -967,14.0,22.0,-1.9683489489016612,3.976064876781356 -967,15.0,15.0,1.3190669363537617,-4.8407742721532125 -967,15.0,16.0,-1.3190669363537617,4.8407742721532125 -967,16.0,9.0,-3.956039125715353,10.317447719844054 -967,16.0,15.0,-1.3190669363537617,4.8407742721532125 -967,16.0,16.0,5.275106062069114,-15.158221991997266 -967,17.0,14.0,-1.8108011504072024,3.687418931630696 -967,17.0,17.0,4.886487584415919,-9.906177730909668 -967,17.0,18.0,-3.0756864340087167,6.218758799278971 -967,18.0,17.0,-3.0756864340087167,6.218758799278971 -967,18.0,18.0,8.958039375185187,-17.98346468163191 -967,18.0,19.0,-5.88235294117647,11.76470588235294 -967,19.0,9.0,-1.7848303152666305,3.98535828943083 -967,19.0,18.0,-5.88235294117647,11.76470588235294 -967,19.0,19.0,7.6671832564431,-15.75006417178377 -967,20.0,9.0,-5.101853820159654,10.98071411292983 -967,20.0,20.0,21.876495189895888,-45.10843276170355 -967,20.0,21.0,-16.774641369736234,34.127718648773715 -967,21.0,20.0,-16.774641369736234,34.127718648773715 -967,21.0,21.0,16.774641369736234,-34.127718648773715 -967,22.0,14.0,-1.9683489489016612,3.976064876781356 -967,22.0,22.0,3.429754555384988,-6.965303617315433 -967,22.0,23.0,-1.4614056064833263,2.989238740534077 -967,23.0,22.0,-1.4614056064833263,2.989238740534077 -967,23.0,23.0,2.771298550357576,-5.233860794239132 -967,23.0,24.0,-1.3098929438742493,2.287622053705056 -967,24.0,23.0,-1.3098929438742493,2.287622053705056 -967,24.0,24.0,4.495715080321987,-7.864978761969621 -967,24.0,25.0,-1.2165301194494855,1.8171440463475024 -967,24.0,26.0,-1.9692920169982515,3.760212661917064 -967,25.0,24.0,-1.2165301194494855,1.8171440463475024 -967,25.0,25.0,1.2165301194494855,-1.8171440463475024 -967,26.0,24.0,-1.9692920169982515,3.760212661917064 -967,26.0,26.0,3.652281470778589,-9.46044252232512 -967,26.0,27.0,0.0,2.608731947574922 -967,26.0,28.0,-0.99553355095268,1.881005840357816 -967,26.0,29.0,-0.6874559028276572,1.293971494797717 -967,27.0,5.0,-4.362844058012917,15.463571542897856 -967,27.0,7.0,-1.4439790613954469,4.540814658476248 -967,27.0,26.0,0.0,2.608731947574922 -967,27.0,27.0,5.806823119408364,-22.67145722159613 -967,28.0,26.0,-0.99553355095268,1.881005840357816 -967,28.0,28.0,1.9075867579849564,-3.604364401207048 -967,28.0,29.0,-0.9120532070322764,1.7233585608492326 -967,29.0,26.0,-0.6874559028276572,1.293971494797717 -967,29.0,28.0,-0.9120532070322764,1.7233585608492326 -967,29.0,29.0,1.5995091098599337,-3.0173300556469496 -968,0.0,0.0,6.765516048652632,-21.23160167089863 -968,0.0,1.0,-5.224646179885656,15.646726840803398 -968,0.0,2.0,-1.5408698687669766,5.631674830095234 -968,1.0,0.0,-5.224646179885656,15.646726840803398 -968,1.0,1.0,9.75228216552403,-30.648662892676068 -968,1.0,3.0,-1.7055303166990268,5.1973792282565086 -968,1.0,4.0,-1.1359607881738778,4.772479328281356 -968,1.0,5.0,-1.6861448807654689,5.116477495334806 -968,2.0,0.0,-1.5408698687669766,5.631674830095234 -968,2.0,2.0,9.736318911079088,-29.13794745915803 -968,2.0,3.0,-8.19544904231211,23.5308726290628 -968,3.0,1.0,-1.7055303166990268,5.1973792282565086 -968,3.0,2.0,-8.19544904231211,23.5308726290628 -968,3.0,3.0,16.314103089185693,-55.509410535254254 -968,3.0,5.0,-6.413123730174556,22.31120356548123 -968,3.0,11.0,0.0,4.191255364806866 -968,4.0,1.0,-1.1359607881738778,4.772479328281356 -968,4.0,4.0,4.089980824135861,-12.190647245055052 -968,4.0,6.0,-2.954020035961983,7.449267916773697 -968,5.0,1.0,-1.6861448807654689,5.116477495334806 -968,5.0,3.0,-6.413123730174556,22.31120356548123 -968,5.0,5.0,22.341631269034565,-77.80272577435625 -968,5.0,6.0,-3.590210423980992,11.02611441072814 -968,5.0,7.0,-6.289308176100628,22.0125786163522 -968,5.0,9.0,0.0,1.8561002591115965 -968,5.0,27.0,-4.362844058012917,15.463571542897856 -968,6.0,4.0,-2.954020035961983,7.449267916773697 -968,6.0,5.0,-3.590210423980992,11.02611441072814 -968,6.0,6.0,6.544230459942975,-18.45668232750184 -968,7.0,5.0,-6.289308176100628,22.0125786163522 -968,7.0,7.0,7.733287237496075,-26.527493274828448 -968,7.0,27.0,-1.4439790613954469,4.540814658476248 -968,8.0,8.0,0.0,-13.8986013986014 -968,8.0,9.0,0.0,9.090909090909092 -968,8.0,10.0,0.0,4.807692307692308 -968,9.0,5.0,0.0,1.8561002591115965 -968,9.0,8.0,0.0,9.090909090909092 -968,9.0,9.0,11.677212499257603,-37.39840237809157 -968,9.0,16.0,-3.956039125715353,10.317447719844054 -968,9.0,20.0,-5.101853820159654,10.98071411292983 -968,9.0,21.0,-2.619319553382597,5.400770303329455 -968,10.0,8.0,0.0,4.807692307692308 -968,10.0,10.0,0.0,-4.807692307692308 -968,11.0,3.0,0.0,4.191255364806866 -968,11.0,11.0,6.573961583776156,-24.424167659260668 -968,11.0,12.0,0.0,7.142857142857143 -968,11.0,13.0,-1.5265676088395577,3.1734252729654173 -968,11.0,14.0,-3.0953961826564296,6.097275864326261 -968,11.0,15.0,-1.9519977922801688,4.104359379111847 -968,12.0,11.0,0.0,7.142857142857143 -968,12.0,12.0,0.0,-7.142857142857143 -968,13.0,11.0,-1.5265676088395577,3.1734252729654173 -968,13.0,13.0,4.01751987283902,-5.424299332335067 -968,13.0,14.0,-2.4909522639994623,2.250874059369649 -968,14.0,11.0,-3.0953961826564296,6.097275864326261 -968,14.0,13.0,-2.4909522639994623,2.250874059369649 -968,14.0,14.0,9.365498545964757,-16.01163373210796 -968,14.0,17.0,-1.8108011504072024,3.687418931630696 -968,14.0,22.0,-1.9683489489016612,3.976064876781356 -968,15.0,11.0,-1.9519977922801688,4.104359379111847 -968,15.0,15.0,1.9519977922801688,-4.104359379111847 -968,16.0,9.0,-3.956039125715353,10.317447719844054 -968,16.0,16.0,3.956039125715353,-10.317447719844054 -968,17.0,14.0,-1.8108011504072024,3.687418931630696 -968,17.0,17.0,4.886487584415919,-9.906177730909668 -968,17.0,18.0,-3.0756864340087167,6.218758799278971 -968,18.0,17.0,-3.0756864340087167,6.218758799278971 -968,18.0,18.0,8.958039375185187,-17.98346468163191 -968,18.0,19.0,-5.88235294117647,11.76470588235294 -968,19.0,18.0,-5.88235294117647,11.76470588235294 -968,19.0,19.0,5.88235294117647,-11.76470588235294 -968,20.0,9.0,-5.101853820159654,10.98071411292983 -968,20.0,20.0,21.876495189895888,-45.10843276170355 -968,20.0,21.0,-16.774641369736234,34.127718648773715 -968,21.0,9.0,-2.619319553382597,5.400770303329455 -968,21.0,20.0,-16.774641369736234,34.127718648773715 -968,21.0,21.0,21.93449907537439,-43.48289181517921 -968,21.0,23.0,-2.5405381522555563,3.95440286307604 -968,22.0,14.0,-1.9683489489016612,3.976064876781356 -968,22.0,22.0,3.429754555384988,-6.965303617315433 -968,22.0,23.0,-1.4614056064833263,2.989238740534077 -968,23.0,21.0,-2.5405381522555563,3.95440286307604 -968,23.0,22.0,-1.4614056064833263,2.989238740534077 -968,23.0,23.0,5.311836702613133,-9.188263657315172 -968,23.0,24.0,-1.3098929438742493,2.287622053705056 -968,24.0,23.0,-1.3098929438742493,2.287622053705056 -968,24.0,24.0,4.495715080321987,-7.864978761969621 -968,24.0,25.0,-1.2165301194494855,1.8171440463475024 -968,24.0,26.0,-1.9692920169982515,3.760212661917064 -968,25.0,24.0,-1.2165301194494855,1.8171440463475024 -968,25.0,25.0,1.2165301194494855,-1.8171440463475024 -968,26.0,24.0,-1.9692920169982515,3.760212661917064 -968,26.0,26.0,3.652281470778589,-9.46044252232512 -968,26.0,27.0,0.0,2.608731947574922 -968,26.0,28.0,-0.99553355095268,1.881005840357816 -968,26.0,29.0,-0.6874559028276572,1.293971494797717 -968,27.0,5.0,-4.362844058012917,15.463571542897856 -968,27.0,7.0,-1.4439790613954469,4.540814658476248 -968,27.0,26.0,0.0,2.608731947574922 -968,27.0,27.0,5.806823119408364,-22.67145722159613 -968,28.0,26.0,-0.99553355095268,1.881005840357816 -968,28.0,28.0,1.9075867579849564,-3.604364401207048 -968,28.0,29.0,-0.9120532070322764,1.7233585608492326 -968,29.0,26.0,-0.6874559028276572,1.293971494797717 -968,29.0,28.0,-0.9120532070322764,1.7233585608492326 -968,29.0,29.0,1.5995091098599337,-3.0173300556469496 -969,0.0,0.0,6.765516048652632,-21.23160167089863 -969,0.0,1.0,-5.224646179885656,15.646726840803398 -969,0.0,2.0,-1.5408698687669766,5.631674830095234 -969,1.0,0.0,-5.224646179885656,15.646726840803398 -969,1.0,1.0,9.75228216552403,-30.648662892676068 -969,1.0,3.0,-1.7055303166990268,5.1973792282565086 -969,1.0,4.0,-1.1359607881738778,4.772479328281356 -969,1.0,5.0,-1.6861448807654689,5.116477495334806 -969,2.0,0.0,-1.5408698687669766,5.631674830095234 -969,2.0,2.0,9.736318911079088,-29.13794745915803 -969,2.0,3.0,-8.19544904231211,23.5308726290628 -969,3.0,1.0,-1.7055303166990268,5.1973792282565086 -969,3.0,2.0,-8.19544904231211,23.5308726290628 -969,3.0,3.0,16.314103089185693,-55.509410535254254 -969,3.0,5.0,-6.413123730174556,22.31120356548123 -969,3.0,11.0,0.0,4.191255364806866 -969,4.0,1.0,-1.1359607881738778,4.772479328281356 -969,4.0,4.0,4.089980824135861,-12.190647245055052 -969,4.0,6.0,-2.954020035961983,7.449267916773697 -969,5.0,1.0,-1.6861448807654689,5.116477495334806 -969,5.0,3.0,-6.413123730174556,22.31120356548123 -969,5.0,5.0,22.341631269034565,-82.8291478657789 -969,5.0,6.0,-3.590210423980992,11.02611441072814 -969,5.0,7.0,-6.289308176100628,22.0125786163522 -969,5.0,8.0,0.0,4.915840805411357 -969,5.0,9.0,0.0,1.8561002591115965 -969,5.0,27.0,-4.362844058012917,15.463571542897856 -969,6.0,4.0,-2.954020035961983,7.449267916773697 -969,6.0,5.0,-3.590210423980992,11.02611441072814 -969,6.0,6.0,6.544230459942975,-18.45668232750184 -969,7.0,5.0,-6.289308176100628,22.0125786163522 -969,7.0,7.0,7.733287237496075,-26.527493274828448 -969,7.0,27.0,-1.4439790613954469,4.540814658476248 -969,8.0,5.0,0.0,4.915840805411357 -969,8.0,8.0,0.0,-18.706293706293707 -969,8.0,9.0,0.0,9.090909090909092 -969,8.0,10.0,0.0,4.807692307692308 -969,9.0,5.0,0.0,1.8561002591115965 -969,9.0,8.0,0.0,9.090909090909092 -969,9.0,9.0,13.462042814524237,-41.3837606675224 -969,9.0,16.0,-3.956039125715353,10.317447719844054 -969,9.0,19.0,-1.7848303152666305,3.98535828943083 -969,9.0,20.0,-5.101853820159654,10.98071411292983 -969,9.0,21.0,-2.619319553382597,5.400770303329455 -969,10.0,8.0,0.0,4.807692307692308 -969,10.0,10.0,0.0,-4.807692307692308 -969,11.0,3.0,0.0,4.191255364806866 -969,11.0,11.0,6.573961583776156,-24.424167659260668 -969,11.0,12.0,0.0,7.142857142857143 -969,11.0,13.0,-1.5265676088395577,3.1734252729654173 -969,11.0,14.0,-3.0953961826564296,6.097275864326261 -969,11.0,15.0,-1.9519977922801688,4.104359379111847 -969,12.0,11.0,0.0,7.142857142857143 -969,12.0,12.0,0.0,-7.142857142857143 -969,13.0,11.0,-1.5265676088395577,3.1734252729654173 -969,13.0,13.0,4.01751987283902,-5.424299332335067 -969,13.0,14.0,-2.4909522639994623,2.250874059369649 -969,14.0,11.0,-3.0953961826564296,6.097275864326261 -969,14.0,13.0,-2.4909522639994623,2.250874059369649 -969,14.0,14.0,9.365498545964757,-16.01163373210796 -969,14.0,17.0,-1.8108011504072024,3.687418931630696 -969,14.0,22.0,-1.9683489489016612,3.976064876781356 -969,15.0,11.0,-1.9519977922801688,4.104359379111847 -969,15.0,15.0,3.271064728633931,-8.94513365126506 -969,15.0,16.0,-1.3190669363537617,4.8407742721532125 -969,16.0,9.0,-3.956039125715353,10.317447719844054 -969,16.0,15.0,-1.3190669363537617,4.8407742721532125 -969,16.0,16.0,5.275106062069114,-15.158221991997266 -969,17.0,14.0,-1.8108011504072024,3.687418931630696 -969,17.0,17.0,4.886487584415919,-9.906177730909668 -969,17.0,18.0,-3.0756864340087167,6.218758799278971 -969,18.0,17.0,-3.0756864340087167,6.218758799278971 -969,18.0,18.0,8.958039375185187,-17.98346468163191 -969,18.0,19.0,-5.88235294117647,11.76470588235294 -969,19.0,9.0,-1.7848303152666305,3.98535828943083 -969,19.0,18.0,-5.88235294117647,11.76470588235294 -969,19.0,19.0,7.6671832564431,-15.75006417178377 -969,20.0,9.0,-5.101853820159654,10.98071411292983 -969,20.0,20.0,21.876495189895888,-45.10843276170355 -969,20.0,21.0,-16.774641369736234,34.127718648773715 -969,21.0,9.0,-2.619319553382597,5.400770303329455 -969,21.0,20.0,-16.774641369736234,34.127718648773715 -969,21.0,21.0,21.93449907537439,-43.48289181517921 -969,21.0,23.0,-2.5405381522555563,3.95440286307604 -969,22.0,14.0,-1.9683489489016612,3.976064876781356 -969,22.0,22.0,3.429754555384988,-6.965303617315433 -969,22.0,23.0,-1.4614056064833263,2.989238740534077 -969,23.0,21.0,-2.5405381522555563,3.95440286307604 -969,23.0,22.0,-1.4614056064833263,2.989238740534077 -969,23.0,23.0,5.311836702613133,-9.188263657315172 -969,23.0,24.0,-1.3098929438742493,2.287622053705056 -969,24.0,23.0,-1.3098929438742493,2.287622053705056 -969,24.0,24.0,4.495715080321987,-7.864978761969621 -969,24.0,25.0,-1.2165301194494855,1.8171440463475024 -969,24.0,26.0,-1.9692920169982515,3.760212661917064 -969,25.0,24.0,-1.2165301194494855,1.8171440463475024 -969,25.0,25.0,1.2165301194494855,-1.8171440463475024 -969,26.0,24.0,-1.9692920169982515,3.760212661917064 -969,26.0,26.0,3.652281470778589,-9.46044252232512 -969,26.0,27.0,0.0,2.608731947574922 -969,26.0,28.0,-0.99553355095268,1.881005840357816 -969,26.0,29.0,-0.6874559028276572,1.293971494797717 -969,27.0,5.0,-4.362844058012917,15.463571542897856 -969,27.0,7.0,-1.4439790613954469,4.540814658476248 -969,27.0,26.0,0.0,2.608731947574922 -969,27.0,27.0,5.806823119408364,-22.67145722159613 -969,28.0,26.0,-0.99553355095268,1.881005840357816 -969,28.0,28.0,1.9075867579849564,-3.604364401207048 -969,28.0,29.0,-0.9120532070322764,1.7233585608492326 -969,29.0,26.0,-0.6874559028276572,1.293971494797717 -969,29.0,28.0,-0.9120532070322764,1.7233585608492326 -969,29.0,29.0,1.5995091098599337,-3.0173300556469496 -970,0.0,0.0,6.765516048652632,-21.23160167089863 -970,0.0,1.0,-5.224646179885656,15.646726840803398 -970,0.0,2.0,-1.5408698687669766,5.631674830095234 -970,1.0,0.0,-5.224646179885656,15.646726840803398 -970,1.0,1.0,9.75228216552403,-30.648662892676068 -970,1.0,3.0,-1.7055303166990268,5.1973792282565086 -970,1.0,4.0,-1.1359607881738778,4.772479328281356 -970,1.0,5.0,-1.6861448807654689,5.116477495334806 -970,2.0,0.0,-1.5408698687669766,5.631674830095234 -970,2.0,2.0,9.736318911079088,-29.13794745915803 -970,2.0,3.0,-8.19544904231211,23.5308726290628 -970,3.0,1.0,-1.7055303166990268,5.1973792282565086 -970,3.0,2.0,-8.19544904231211,23.5308726290628 -970,3.0,3.0,16.314103089185693,-55.509410535254254 -970,3.0,5.0,-6.413123730174556,22.31120356548123 -970,3.0,11.0,0.0,4.191255364806866 -970,4.0,1.0,-1.1359607881738778,4.772479328281356 -970,4.0,4.0,4.089980824135861,-12.190647245055052 -970,4.0,6.0,-2.954020035961983,7.449267916773697 -970,5.0,1.0,-1.6861448807654689,5.116477495334806 -970,5.0,3.0,-6.413123730174556,22.31120356548123 -970,5.0,5.0,22.341631269034565,-82.8291478657789 -970,5.0,6.0,-3.590210423980992,11.02611441072814 -970,5.0,7.0,-6.289308176100628,22.0125786163522 -970,5.0,8.0,0.0,4.915840805411357 -970,5.0,9.0,0.0,1.8561002591115965 -970,5.0,27.0,-4.362844058012917,15.463571542897856 -970,6.0,4.0,-2.954020035961983,7.449267916773697 -970,6.0,5.0,-3.590210423980992,11.02611441072814 -970,6.0,6.0,6.544230459942975,-18.45668232750184 -970,7.0,5.0,-6.289308176100628,22.0125786163522 -970,7.0,7.0,7.733287237496075,-26.527493274828448 -970,7.0,27.0,-1.4439790613954469,4.540814658476248 -970,8.0,5.0,0.0,4.915840805411357 -970,8.0,8.0,0.0,-18.706293706293707 -970,8.0,9.0,0.0,9.090909090909092 -970,8.0,10.0,0.0,4.807692307692308 -970,9.0,5.0,0.0,1.8561002591115965 -970,9.0,8.0,0.0,9.090909090909092 -970,9.0,9.0,13.462042814524237,-41.3837606675224 -970,9.0,16.0,-3.956039125715353,10.317447719844054 -970,9.0,19.0,-1.7848303152666305,3.98535828943083 -970,9.0,20.0,-5.101853820159654,10.98071411292983 -970,9.0,21.0,-2.619319553382597,5.400770303329455 -970,10.0,8.0,0.0,4.807692307692308 -970,10.0,10.0,0.0,-4.807692307692308 -970,11.0,3.0,0.0,4.191255364806866 -970,11.0,11.0,6.573961583776156,-24.424167659260668 -970,11.0,12.0,0.0,7.142857142857143 -970,11.0,13.0,-1.5265676088395577,3.1734252729654173 -970,11.0,14.0,-3.0953961826564296,6.097275864326261 -970,11.0,15.0,-1.9519977922801688,4.104359379111847 -970,12.0,11.0,0.0,7.142857142857143 -970,12.0,12.0,0.0,-7.142857142857143 -970,13.0,11.0,-1.5265676088395577,3.1734252729654173 -970,13.0,13.0,4.01751987283902,-5.424299332335067 -970,13.0,14.0,-2.4909522639994623,2.250874059369649 -970,14.0,11.0,-3.0953961826564296,6.097275864326261 -970,14.0,13.0,-2.4909522639994623,2.250874059369649 -970,14.0,14.0,9.365498545964757,-16.01163373210796 -970,14.0,17.0,-1.8108011504072024,3.687418931630696 -970,14.0,22.0,-1.9683489489016612,3.976064876781356 -970,15.0,11.0,-1.9519977922801688,4.104359379111847 -970,15.0,15.0,3.271064728633931,-8.94513365126506 -970,15.0,16.0,-1.3190669363537617,4.8407742721532125 -970,16.0,9.0,-3.956039125715353,10.317447719844054 -970,16.0,15.0,-1.3190669363537617,4.8407742721532125 -970,16.0,16.0,5.275106062069114,-15.158221991997266 -970,17.0,14.0,-1.8108011504072024,3.687418931630696 -970,17.0,17.0,4.886487584415919,-9.906177730909668 -970,17.0,18.0,-3.0756864340087167,6.218758799278971 -970,18.0,17.0,-3.0756864340087167,6.218758799278971 -970,18.0,18.0,8.958039375185187,-17.98346468163191 -970,18.0,19.0,-5.88235294117647,11.76470588235294 -970,19.0,9.0,-1.7848303152666305,3.98535828943083 -970,19.0,18.0,-5.88235294117647,11.76470588235294 -970,19.0,19.0,7.6671832564431,-15.75006417178377 -970,20.0,9.0,-5.101853820159654,10.98071411292983 -970,20.0,20.0,21.876495189895888,-45.10843276170355 -970,20.0,21.0,-16.774641369736234,34.127718648773715 -970,21.0,9.0,-2.619319553382597,5.400770303329455 -970,21.0,20.0,-16.774641369736234,34.127718648773715 -970,21.0,21.0,21.93449907537439,-43.48289181517921 -970,21.0,23.0,-2.5405381522555563,3.95440286307604 -970,22.0,14.0,-1.9683489489016612,3.976064876781356 -970,22.0,22.0,3.429754555384988,-6.965303617315433 -970,22.0,23.0,-1.4614056064833263,2.989238740534077 -970,23.0,21.0,-2.5405381522555563,3.95440286307604 -970,23.0,22.0,-1.4614056064833263,2.989238740534077 -970,23.0,23.0,5.311836702613133,-9.188263657315172 -970,23.0,24.0,-1.3098929438742493,2.287622053705056 -970,24.0,23.0,-1.3098929438742493,2.287622053705056 -970,24.0,24.0,4.495715080321987,-7.864978761969621 -970,24.0,25.0,-1.2165301194494855,1.8171440463475024 -970,24.0,26.0,-1.9692920169982515,3.760212661917064 -970,25.0,24.0,-1.2165301194494855,1.8171440463475024 -970,25.0,25.0,1.2165301194494855,-1.8171440463475024 -970,26.0,24.0,-1.9692920169982515,3.760212661917064 -970,26.0,26.0,3.652281470778589,-9.46044252232512 -970,26.0,27.0,0.0,2.608731947574922 -970,26.0,28.0,-0.99553355095268,1.881005840357816 -970,26.0,29.0,-0.6874559028276572,1.293971494797717 -970,27.0,5.0,-4.362844058012917,15.463571542897856 -970,27.0,7.0,-1.4439790613954469,4.540814658476248 -970,27.0,26.0,0.0,2.608731947574922 -970,27.0,27.0,5.806823119408364,-22.67145722159613 -970,28.0,26.0,-0.99553355095268,1.881005840357816 -970,28.0,28.0,1.9075867579849564,-3.604364401207048 -970,28.0,29.0,-0.9120532070322764,1.7233585608492326 -970,29.0,26.0,-0.6874559028276572,1.293971494797717 -970,29.0,28.0,-0.9120532070322764,1.7233585608492326 -970,29.0,29.0,1.5995091098599337,-3.0173300556469496 -971,0.0,0.0,6.765516048652632,-21.23160167089863 -971,0.0,1.0,-5.224646179885656,15.646726840803398 -971,0.0,2.0,-1.5408698687669766,5.631674830095234 -971,1.0,0.0,-5.224646179885656,15.646726840803398 -971,1.0,1.0,9.75228216552403,-30.648662892676068 -971,1.0,3.0,-1.7055303166990268,5.1973792282565086 -971,1.0,4.0,-1.1359607881738778,4.772479328281356 -971,1.0,5.0,-1.6861448807654689,5.116477495334806 -971,2.0,0.0,-1.5408698687669766,5.631674830095234 -971,2.0,2.0,9.736318911079088,-29.13794745915803 -971,2.0,3.0,-8.19544904231211,23.5308726290628 -971,3.0,1.0,-1.7055303166990268,5.1973792282565086 -971,3.0,2.0,-8.19544904231211,23.5308726290628 -971,3.0,3.0,16.314103089185693,-51.01235542280054 -971,3.0,5.0,-6.413123730174556,22.31120356548123 -971,4.0,1.0,-1.1359607881738778,4.772479328281356 -971,4.0,4.0,4.089980824135861,-12.190647245055052 -971,4.0,6.0,-2.954020035961983,7.449267916773697 -971,5.0,1.0,-1.6861448807654689,5.116477495334806 -971,5.0,3.0,-6.413123730174556,22.31120356548123 -971,5.0,5.0,22.341631269034565,-82.8291478657789 -971,5.0,6.0,-3.590210423980992,11.02611441072814 -971,5.0,7.0,-6.289308176100628,22.0125786163522 -971,5.0,8.0,0.0,4.915840805411357 -971,5.0,9.0,0.0,1.8561002591115965 -971,5.0,27.0,-4.362844058012917,15.463571542897856 -971,6.0,4.0,-2.954020035961983,7.449267916773697 -971,6.0,5.0,-3.590210423980992,11.02611441072814 -971,6.0,6.0,6.544230459942975,-18.45668232750184 -971,7.0,5.0,-6.289308176100628,22.0125786163522 -971,7.0,7.0,7.733287237496075,-26.527493274828448 -971,7.0,27.0,-1.4439790613954469,4.540814658476248 -971,8.0,5.0,0.0,4.915840805411357 -971,8.0,8.0,0.0,-18.706293706293707 -971,8.0,9.0,0.0,9.090909090909092 -971,8.0,10.0,0.0,4.807692307692308 -971,9.0,5.0,0.0,1.8561002591115965 -971,9.0,8.0,0.0,9.090909090909092 -971,9.0,9.0,13.462042814524237,-41.3837606675224 -971,9.0,16.0,-3.956039125715353,10.317447719844054 -971,9.0,19.0,-1.7848303152666305,3.98535828943083 -971,9.0,20.0,-5.101853820159654,10.98071411292983 -971,9.0,21.0,-2.619319553382597,5.400770303329455 -971,10.0,8.0,0.0,4.807692307692308 -971,10.0,10.0,0.0,-4.807692307692308 -971,11.0,11.0,6.573961583776156,-20.517917659260668 -971,11.0,12.0,0.0,7.142857142857143 -971,11.0,13.0,-1.5265676088395577,3.1734252729654173 -971,11.0,14.0,-3.0953961826564296,6.097275864326261 -971,11.0,15.0,-1.9519977922801688,4.104359379111847 -971,12.0,11.0,0.0,7.142857142857143 -971,12.0,12.0,0.0,-7.142857142857143 -971,13.0,11.0,-1.5265676088395577,3.1734252729654173 -971,13.0,13.0,4.01751987283902,-5.424299332335067 -971,13.0,14.0,-2.4909522639994623,2.250874059369649 -971,14.0,11.0,-3.0953961826564296,6.097275864326261 -971,14.0,13.0,-2.4909522639994623,2.250874059369649 -971,14.0,14.0,9.365498545964757,-16.01163373210796 -971,14.0,17.0,-1.8108011504072024,3.687418931630696 -971,14.0,22.0,-1.9683489489016612,3.976064876781356 -971,15.0,11.0,-1.9519977922801688,4.104359379111847 -971,15.0,15.0,3.271064728633931,-8.94513365126506 -971,15.0,16.0,-1.3190669363537617,4.8407742721532125 -971,16.0,9.0,-3.956039125715353,10.317447719844054 -971,16.0,15.0,-1.3190669363537617,4.8407742721532125 -971,16.0,16.0,5.275106062069114,-15.158221991997266 -971,17.0,14.0,-1.8108011504072024,3.687418931630696 -971,17.0,17.0,1.8108011504072024,-3.687418931630696 -971,18.0,18.0,5.88235294117647,-11.76470588235294 -971,18.0,19.0,-5.88235294117647,11.76470588235294 -971,19.0,9.0,-1.7848303152666305,3.98535828943083 -971,19.0,18.0,-5.88235294117647,11.76470588235294 -971,19.0,19.0,7.6671832564431,-15.75006417178377 -971,20.0,9.0,-5.101853820159654,10.98071411292983 -971,20.0,20.0,21.876495189895888,-45.10843276170355 -971,20.0,21.0,-16.774641369736234,34.127718648773715 -971,21.0,9.0,-2.619319553382597,5.400770303329455 -971,21.0,20.0,-16.774641369736234,34.127718648773715 -971,21.0,21.0,21.93449907537439,-43.48289181517921 -971,21.0,23.0,-2.5405381522555563,3.95440286307604 -971,22.0,14.0,-1.9683489489016612,3.976064876781356 -971,22.0,22.0,3.429754555384988,-6.965303617315433 -971,22.0,23.0,-1.4614056064833263,2.989238740534077 -971,23.0,21.0,-2.5405381522555563,3.95440286307604 -971,23.0,22.0,-1.4614056064833263,2.989238740534077 -971,23.0,23.0,5.311836702613133,-9.188263657315172 -971,23.0,24.0,-1.3098929438742493,2.287622053705056 -971,24.0,23.0,-1.3098929438742493,2.287622053705056 -971,24.0,24.0,4.495715080321987,-7.864978761969621 -971,24.0,25.0,-1.2165301194494855,1.8171440463475024 -971,24.0,26.0,-1.9692920169982515,3.760212661917064 -971,25.0,24.0,-1.2165301194494855,1.8171440463475024 -971,25.0,25.0,1.2165301194494855,-1.8171440463475024 -971,26.0,24.0,-1.9692920169982515,3.760212661917064 -971,26.0,26.0,3.652281470778589,-9.46044252232512 -971,26.0,27.0,0.0,2.608731947574922 -971,26.0,28.0,-0.99553355095268,1.881005840357816 -971,26.0,29.0,-0.6874559028276572,1.293971494797717 -971,27.0,5.0,-4.362844058012917,15.463571542897856 -971,27.0,7.0,-1.4439790613954469,4.540814658476248 -971,27.0,26.0,0.0,2.608731947574922 -971,27.0,27.0,5.806823119408364,-22.67145722159613 -971,28.0,26.0,-0.99553355095268,1.881005840357816 -971,28.0,28.0,1.9075867579849564,-3.604364401207048 -971,28.0,29.0,-0.9120532070322764,1.7233585608492326 -971,29.0,26.0,-0.6874559028276572,1.293971494797717 -971,29.0,28.0,-0.9120532070322764,1.7233585608492326 -971,29.0,29.0,1.5995091098599337,-3.0173300556469496 -972,0.0,0.0,6.765516048652632,-21.23160167089863 -972,0.0,1.0,-5.224646179885656,15.646726840803398 -972,0.0,2.0,-1.5408698687669766,5.631674830095234 -972,1.0,0.0,-5.224646179885656,15.646726840803398 -972,1.0,1.0,9.75228216552403,-30.648662892676068 -972,1.0,3.0,-1.7055303166990268,5.1973792282565086 -972,1.0,4.0,-1.1359607881738778,4.772479328281356 -972,1.0,5.0,-1.6861448807654689,5.116477495334806 -972,2.0,0.0,-1.5408698687669766,5.631674830095234 -972,2.0,2.0,9.736318911079088,-29.13794745915803 -972,2.0,3.0,-8.19544904231211,23.5308726290628 -972,3.0,1.0,-1.7055303166990268,5.1973792282565086 -972,3.0,2.0,-8.19544904231211,23.5308726290628 -972,3.0,3.0,9.900979359011137,-33.202706969773025 -972,3.0,11.0,0.0,4.191255364806866 -972,4.0,1.0,-1.1359607881738778,4.772479328281356 -972,4.0,4.0,4.089980824135861,-12.190647245055052 -972,4.0,6.0,-2.954020035961983,7.449267916773697 -972,5.0,1.0,-1.6861448807654689,5.116477495334806 -972,5.0,5.0,15.928507538860009,-60.52244430029767 -972,5.0,6.0,-3.590210423980992,11.02611441072814 -972,5.0,7.0,-6.289308176100628,22.0125786163522 -972,5.0,8.0,0.0,4.915840805411357 -972,5.0,9.0,0.0,1.8561002591115965 -972,5.0,27.0,-4.362844058012917,15.463571542897856 -972,6.0,4.0,-2.954020035961983,7.449267916773697 -972,6.0,5.0,-3.590210423980992,11.02611441072814 -972,6.0,6.0,6.544230459942975,-18.45668232750184 -972,7.0,5.0,-6.289308176100628,22.0125786163522 -972,7.0,7.0,7.733287237496075,-26.527493274828448 -972,7.0,27.0,-1.4439790613954469,4.540814658476248 -972,8.0,5.0,0.0,4.915840805411357 -972,8.0,8.0,0.0,-18.706293706293707 -972,8.0,9.0,0.0,9.090909090909092 -972,8.0,10.0,0.0,4.807692307692308 -972,9.0,5.0,0.0,1.8561002591115965 -972,9.0,8.0,0.0,9.090909090909092 -972,9.0,9.0,10.842723261141638,-35.98299036419294 -972,9.0,16.0,-3.956039125715353,10.317447719844054 -972,9.0,19.0,-1.7848303152666305,3.98535828943083 -972,9.0,20.0,-5.101853820159654,10.98071411292983 -972,10.0,8.0,0.0,4.807692307692308 -972,10.0,10.0,0.0,-4.807692307692308 -972,11.0,3.0,0.0,4.191255364806866 -972,11.0,11.0,6.573961583776156,-24.424167659260668 -972,11.0,12.0,0.0,7.142857142857143 -972,11.0,13.0,-1.5265676088395577,3.1734252729654173 -972,11.0,14.0,-3.0953961826564296,6.097275864326261 -972,11.0,15.0,-1.9519977922801688,4.104359379111847 -972,12.0,11.0,0.0,7.142857142857143 -972,12.0,12.0,0.0,-7.142857142857143 -972,13.0,11.0,-1.5265676088395577,3.1734252729654173 -972,13.0,13.0,4.01751987283902,-5.424299332335067 -972,13.0,14.0,-2.4909522639994623,2.250874059369649 -972,14.0,11.0,-3.0953961826564296,6.097275864326261 -972,14.0,13.0,-2.4909522639994623,2.250874059369649 -972,14.0,14.0,9.365498545964757,-16.01163373210796 -972,14.0,17.0,-1.8108011504072024,3.687418931630696 -972,14.0,22.0,-1.9683489489016612,3.976064876781356 -972,15.0,11.0,-1.9519977922801688,4.104359379111847 -972,15.0,15.0,3.271064728633931,-8.94513365126506 -972,15.0,16.0,-1.3190669363537617,4.8407742721532125 -972,16.0,9.0,-3.956039125715353,10.317447719844054 -972,16.0,15.0,-1.3190669363537617,4.8407742721532125 -972,16.0,16.0,5.275106062069114,-15.158221991997266 -972,17.0,14.0,-1.8108011504072024,3.687418931630696 -972,17.0,17.0,4.886487584415919,-9.906177730909668 -972,17.0,18.0,-3.0756864340087167,6.218758799278971 -972,18.0,17.0,-3.0756864340087167,6.218758799278971 -972,18.0,18.0,8.958039375185187,-17.98346468163191 -972,18.0,19.0,-5.88235294117647,11.76470588235294 -972,19.0,9.0,-1.7848303152666305,3.98535828943083 -972,19.0,18.0,-5.88235294117647,11.76470588235294 -972,19.0,19.0,7.6671832564431,-15.75006417178377 -972,20.0,9.0,-5.101853820159654,10.98071411292983 -972,20.0,20.0,21.876495189895888,-45.10843276170355 -972,20.0,21.0,-16.774641369736234,34.127718648773715 -972,21.0,20.0,-16.774641369736234,34.127718648773715 -972,21.0,21.0,19.31517952199179,-38.08212151184976 -972,21.0,23.0,-2.5405381522555563,3.95440286307604 -972,22.0,14.0,-1.9683489489016612,3.976064876781356 -972,22.0,22.0,3.429754555384988,-6.965303617315433 -972,22.0,23.0,-1.4614056064833263,2.989238740534077 -972,23.0,21.0,-2.5405381522555563,3.95440286307604 -972,23.0,22.0,-1.4614056064833263,2.989238740534077 -972,23.0,23.0,5.311836702613133,-9.188263657315172 -972,23.0,24.0,-1.3098929438742493,2.287622053705056 -972,24.0,23.0,-1.3098929438742493,2.287622053705056 -972,24.0,24.0,4.495715080321987,-7.864978761969621 -972,24.0,25.0,-1.2165301194494855,1.8171440463475024 -972,24.0,26.0,-1.9692920169982515,3.760212661917064 -972,25.0,24.0,-1.2165301194494855,1.8171440463475024 -972,25.0,25.0,1.2165301194494855,-1.8171440463475024 -972,26.0,24.0,-1.9692920169982515,3.760212661917064 -972,26.0,26.0,3.652281470778589,-9.46044252232512 -972,26.0,27.0,0.0,2.608731947574922 -972,26.0,28.0,-0.99553355095268,1.881005840357816 -972,26.0,29.0,-0.6874559028276572,1.293971494797717 -972,27.0,5.0,-4.362844058012917,15.463571542897856 -972,27.0,7.0,-1.4439790613954469,4.540814658476248 -972,27.0,26.0,0.0,2.608731947574922 -972,27.0,27.0,5.806823119408364,-22.67145722159613 -972,28.0,26.0,-0.99553355095268,1.881005840357816 -972,28.0,28.0,1.9075867579849564,-3.604364401207048 -972,28.0,29.0,-0.9120532070322764,1.7233585608492326 -972,29.0,26.0,-0.6874559028276572,1.293971494797717 -972,29.0,28.0,-0.9120532070322764,1.7233585608492326 -972,29.0,29.0,1.5995091098599337,-3.0173300556469496 -973,0.0,0.0,6.765516048652632,-21.23160167089863 -973,0.0,1.0,-5.224646179885656,15.646726840803398 -973,0.0,2.0,-1.5408698687669766,5.631674830095234 -973,1.0,0.0,-5.224646179885656,15.646726840803398 -973,1.0,1.0,9.75228216552403,-30.648662892676068 -973,1.0,3.0,-1.7055303166990268,5.1973792282565086 -973,1.0,4.0,-1.1359607881738778,4.772479328281356 -973,1.0,5.0,-1.6861448807654689,5.116477495334806 -973,2.0,0.0,-1.5408698687669766,5.631674830095234 -973,2.0,2.0,9.736318911079088,-29.13794745915803 -973,2.0,3.0,-8.19544904231211,23.5308726290628 -973,3.0,1.0,-1.7055303166990268,5.1973792282565086 -973,3.0,2.0,-8.19544904231211,23.5308726290628 -973,3.0,3.0,16.314103089185693,-55.509410535254254 -973,3.0,5.0,-6.413123730174556,22.31120356548123 -973,3.0,11.0,0.0,4.191255364806866 -973,4.0,1.0,-1.1359607881738778,4.772479328281356 -973,4.0,4.0,4.089980824135861,-12.190647245055052 -973,4.0,6.0,-2.954020035961983,7.449267916773697 -973,5.0,1.0,-1.6861448807654689,5.116477495334806 -973,5.0,3.0,-6.413123730174556,22.31120356548123 -973,5.0,5.0,22.341631269034565,-82.8291478657789 -973,5.0,6.0,-3.590210423980992,11.02611441072814 -973,5.0,7.0,-6.289308176100628,22.0125786163522 -973,5.0,8.0,0.0,4.915840805411357 -973,5.0,9.0,0.0,1.8561002591115965 -973,5.0,27.0,-4.362844058012917,15.463571542897856 -973,6.0,4.0,-2.954020035961983,7.449267916773697 -973,6.0,5.0,-3.590210423980992,11.02611441072814 -973,6.0,6.0,6.544230459942975,-18.45668232750184 -973,7.0,5.0,-6.289308176100628,22.0125786163522 -973,7.0,7.0,7.733287237496075,-26.527493274828448 -973,7.0,27.0,-1.4439790613954469,4.540814658476248 -973,8.0,5.0,0.0,4.915840805411357 -973,8.0,8.0,0.0,-18.706293706293707 -973,8.0,9.0,0.0,9.090909090909092 -973,8.0,10.0,0.0,4.807692307692308 -973,9.0,5.0,0.0,1.8561002591115965 -973,9.0,8.0,0.0,9.090909090909092 -973,9.0,9.0,13.462042814524237,-41.3837606675224 -973,9.0,16.0,-3.956039125715353,10.317447719844054 -973,9.0,19.0,-1.7848303152666305,3.98535828943083 -973,9.0,20.0,-5.101853820159654,10.98071411292983 -973,9.0,21.0,-2.619319553382597,5.400770303329455 -973,10.0,8.0,0.0,4.807692307692308 -973,10.0,10.0,0.0,-4.807692307692308 -973,11.0,3.0,0.0,4.191255364806866 -973,11.0,11.0,6.573961583776156,-24.424167659260668 -973,11.0,12.0,0.0,7.142857142857143 -973,11.0,13.0,-1.5265676088395577,3.1734252729654173 -973,11.0,14.0,-3.0953961826564296,6.097275864326261 -973,11.0,15.0,-1.9519977922801688,4.104359379111847 -973,12.0,11.0,0.0,7.142857142857143 -973,12.0,12.0,0.0,-7.142857142857143 -973,13.0,11.0,-1.5265676088395577,3.1734252729654173 -973,13.0,13.0,4.01751987283902,-5.424299332335067 -973,13.0,14.0,-2.4909522639994623,2.250874059369649 -973,14.0,11.0,-3.0953961826564296,6.097275864326261 -973,14.0,13.0,-2.4909522639994623,2.250874059369649 -973,14.0,14.0,9.365498545964757,-16.01163373210796 -973,14.0,17.0,-1.8108011504072024,3.687418931630696 -973,14.0,22.0,-1.9683489489016612,3.976064876781356 -973,15.0,11.0,-1.9519977922801688,4.104359379111847 -973,15.0,15.0,3.271064728633931,-8.94513365126506 -973,15.0,16.0,-1.3190669363537617,4.8407742721532125 -973,16.0,9.0,-3.956039125715353,10.317447719844054 -973,16.0,15.0,-1.3190669363537617,4.8407742721532125 -973,16.0,16.0,5.275106062069114,-15.158221991997266 -973,17.0,14.0,-1.8108011504072024,3.687418931630696 -973,17.0,17.0,4.886487584415919,-9.906177730909668 -973,17.0,18.0,-3.0756864340087167,6.218758799278971 -973,18.0,17.0,-3.0756864340087167,6.218758799278971 -973,18.0,18.0,8.958039375185187,-17.98346468163191 -973,18.0,19.0,-5.88235294117647,11.76470588235294 -973,19.0,9.0,-1.7848303152666305,3.98535828943083 -973,19.0,18.0,-5.88235294117647,11.76470588235294 -973,19.0,19.0,7.6671832564431,-15.75006417178377 -973,20.0,9.0,-5.101853820159654,10.98071411292983 -973,20.0,20.0,21.876495189895888,-45.10843276170355 -973,20.0,21.0,-16.774641369736234,34.127718648773715 -973,21.0,9.0,-2.619319553382597,5.400770303329455 -973,21.0,20.0,-16.774641369736234,34.127718648773715 -973,21.0,21.0,21.93449907537439,-43.48289181517921 -973,21.0,23.0,-2.5405381522555563,3.95440286307604 -973,22.0,14.0,-1.9683489489016612,3.976064876781356 -973,22.0,22.0,3.429754555384988,-6.965303617315433 -973,22.0,23.0,-1.4614056064833263,2.989238740534077 -973,23.0,21.0,-2.5405381522555563,3.95440286307604 -973,23.0,22.0,-1.4614056064833263,2.989238740534077 -973,23.0,23.0,5.311836702613133,-9.188263657315172 -973,23.0,24.0,-1.3098929438742493,2.287622053705056 -973,24.0,23.0,-1.3098929438742493,2.287622053705056 -973,24.0,24.0,4.495715080321987,-7.864978761969621 -973,24.0,25.0,-1.2165301194494855,1.8171440463475024 -973,24.0,26.0,-1.9692920169982515,3.760212661917064 -973,25.0,24.0,-1.2165301194494855,1.8171440463475024 -973,25.0,25.0,1.2165301194494855,-1.8171440463475024 -973,26.0,24.0,-1.9692920169982515,3.760212661917064 -973,26.0,26.0,3.652281470778589,-9.46044252232512 -973,26.0,27.0,0.0,2.608731947574922 -973,26.0,28.0,-0.99553355095268,1.881005840357816 -973,26.0,29.0,-0.6874559028276572,1.293971494797717 -973,27.0,5.0,-4.362844058012917,15.463571542897856 -973,27.0,7.0,-1.4439790613954469,4.540814658476248 -973,27.0,26.0,0.0,2.608731947574922 -973,27.0,27.0,5.806823119408364,-22.67145722159613 -973,28.0,26.0,-0.99553355095268,1.881005840357816 -973,28.0,28.0,1.9075867579849564,-3.604364401207048 -973,28.0,29.0,-0.9120532070322764,1.7233585608492326 -973,29.0,26.0,-0.6874559028276572,1.293971494797717 -973,29.0,28.0,-0.9120532070322764,1.7233585608492326 -973,29.0,29.0,1.5995091098599337,-3.0173300556469496 -974,0.0,0.0,6.765516048652632,-21.23160167089863 -974,0.0,1.0,-5.224646179885656,15.646726840803398 -974,0.0,2.0,-1.5408698687669766,5.631674830095234 -974,1.0,0.0,-5.224646179885656,15.646726840803398 -974,1.0,1.0,9.75228216552403,-30.648662892676068 -974,1.0,3.0,-1.7055303166990268,5.1973792282565086 -974,1.0,4.0,-1.1359607881738778,4.772479328281356 -974,1.0,5.0,-1.6861448807654689,5.116477495334806 -974,2.0,0.0,-1.5408698687669766,5.631674830095234 -974,2.0,2.0,9.736318911079088,-29.13794745915803 -974,2.0,3.0,-8.19544904231211,23.5308726290628 -974,3.0,1.0,-1.7055303166990268,5.1973792282565086 -974,3.0,2.0,-8.19544904231211,23.5308726290628 -974,3.0,3.0,16.314103089185693,-55.509410535254254 -974,3.0,5.0,-6.413123730174556,22.31120356548123 -974,3.0,11.0,0.0,4.191255364806866 -974,4.0,1.0,-1.1359607881738778,4.772479328281356 -974,4.0,4.0,4.089980824135861,-12.190647245055052 -974,4.0,6.0,-2.954020035961983,7.449267916773697 -974,5.0,1.0,-1.6861448807654689,5.116477495334806 -974,5.0,3.0,-6.413123730174556,22.31120356548123 -974,5.0,5.0,22.341631269034565,-82.8291478657789 -974,5.0,6.0,-3.590210423980992,11.02611441072814 -974,5.0,7.0,-6.289308176100628,22.0125786163522 -974,5.0,8.0,0.0,4.915840805411357 -974,5.0,9.0,0.0,1.8561002591115965 -974,5.0,27.0,-4.362844058012917,15.463571542897856 -974,6.0,4.0,-2.954020035961983,7.449267916773697 -974,6.0,5.0,-3.590210423980992,11.02611441072814 -974,6.0,6.0,6.544230459942975,-18.45668232750184 -974,7.0,5.0,-6.289308176100628,22.0125786163522 -974,7.0,7.0,7.733287237496075,-26.527493274828448 -974,7.0,27.0,-1.4439790613954469,4.540814658476248 -974,8.0,5.0,0.0,4.915840805411357 -974,8.0,8.0,0.0,-18.706293706293707 -974,8.0,9.0,0.0,9.090909090909092 -974,8.0,10.0,0.0,4.807692307692308 -974,9.0,5.0,0.0,1.8561002591115965 -974,9.0,8.0,0.0,9.090909090909092 -974,9.0,9.0,13.462042814524237,-41.3837606675224 -974,9.0,16.0,-3.956039125715353,10.317447719844054 -974,9.0,19.0,-1.7848303152666305,3.98535828943083 -974,9.0,20.0,-5.101853820159654,10.98071411292983 -974,9.0,21.0,-2.619319553382597,5.400770303329455 -974,10.0,8.0,0.0,4.807692307692308 -974,10.0,10.0,0.0,-4.807692307692308 -974,11.0,3.0,0.0,4.191255364806866 -974,11.0,11.0,6.573961583776156,-24.424167659260668 -974,11.0,12.0,0.0,7.142857142857143 -974,11.0,13.0,-1.5265676088395577,3.1734252729654173 -974,11.0,14.0,-3.0953961826564296,6.097275864326261 -974,11.0,15.0,-1.9519977922801688,4.104359379111847 -974,12.0,11.0,0.0,7.142857142857143 -974,12.0,12.0,0.0,-7.142857142857143 -974,13.0,11.0,-1.5265676088395577,3.1734252729654173 -974,13.0,13.0,4.01751987283902,-5.424299332335067 -974,13.0,14.0,-2.4909522639994623,2.250874059369649 -974,14.0,11.0,-3.0953961826564296,6.097275864326261 -974,14.0,13.0,-2.4909522639994623,2.250874059369649 -974,14.0,14.0,9.365498545964757,-16.01163373210796 -974,14.0,17.0,-1.8108011504072024,3.687418931630696 -974,14.0,22.0,-1.9683489489016612,3.976064876781356 -974,15.0,11.0,-1.9519977922801688,4.104359379111847 -974,15.0,15.0,3.271064728633931,-8.94513365126506 -974,15.0,16.0,-1.3190669363537617,4.8407742721532125 -974,16.0,9.0,-3.956039125715353,10.317447719844054 -974,16.0,15.0,-1.3190669363537617,4.8407742721532125 -974,16.0,16.0,5.275106062069114,-15.158221991997266 -974,17.0,14.0,-1.8108011504072024,3.687418931630696 -974,17.0,17.0,4.886487584415919,-9.906177730909668 -974,17.0,18.0,-3.0756864340087167,6.218758799278971 -974,18.0,17.0,-3.0756864340087167,6.218758799278971 -974,18.0,18.0,8.958039375185187,-17.98346468163191 -974,18.0,19.0,-5.88235294117647,11.76470588235294 -974,19.0,9.0,-1.7848303152666305,3.98535828943083 -974,19.0,18.0,-5.88235294117647,11.76470588235294 -974,19.0,19.0,7.6671832564431,-15.75006417178377 -974,20.0,9.0,-5.101853820159654,10.98071411292983 -974,20.0,20.0,21.876495189895888,-45.10843276170355 -974,20.0,21.0,-16.774641369736234,34.127718648773715 -974,21.0,9.0,-2.619319553382597,5.400770303329455 -974,21.0,20.0,-16.774641369736234,34.127718648773715 -974,21.0,21.0,21.93449907537439,-43.48289181517921 -974,21.0,23.0,-2.5405381522555563,3.95440286307604 -974,22.0,14.0,-1.9683489489016612,3.976064876781356 -974,22.0,22.0,3.429754555384988,-6.965303617315433 -974,22.0,23.0,-1.4614056064833263,2.989238740534077 -974,23.0,21.0,-2.5405381522555563,3.95440286307604 -974,23.0,22.0,-1.4614056064833263,2.989238740534077 -974,23.0,23.0,5.311836702613133,-9.188263657315172 -974,23.0,24.0,-1.3098929438742493,2.287622053705056 -974,24.0,23.0,-1.3098929438742493,2.287622053705056 -974,24.0,24.0,4.495715080321987,-7.864978761969621 -974,24.0,25.0,-1.2165301194494855,1.8171440463475024 -974,24.0,26.0,-1.9692920169982515,3.760212661917064 -974,25.0,24.0,-1.2165301194494855,1.8171440463475024 -974,25.0,25.0,1.2165301194494855,-1.8171440463475024 -974,26.0,24.0,-1.9692920169982515,3.760212661917064 -974,26.0,26.0,3.652281470778589,-9.46044252232512 -974,26.0,27.0,0.0,2.608731947574922 -974,26.0,28.0,-0.99553355095268,1.881005840357816 -974,26.0,29.0,-0.6874559028276572,1.293971494797717 -974,27.0,5.0,-4.362844058012917,15.463571542897856 -974,27.0,7.0,-1.4439790613954469,4.540814658476248 -974,27.0,26.0,0.0,2.608731947574922 -974,27.0,27.0,5.806823119408364,-22.67145722159613 -974,28.0,26.0,-0.99553355095268,1.881005840357816 -974,28.0,28.0,1.9075867579849564,-3.604364401207048 -974,28.0,29.0,-0.9120532070322764,1.7233585608492326 -974,29.0,26.0,-0.6874559028276572,1.293971494797717 -974,29.0,28.0,-0.9120532070322764,1.7233585608492326 -974,29.0,29.0,1.5995091098599337,-3.0173300556469496 -975,0.0,0.0,6.765516048652632,-21.23160167089863 -975,0.0,1.0,-5.224646179885656,15.646726840803398 -975,0.0,2.0,-1.5408698687669766,5.631674830095234 -975,1.0,0.0,-5.224646179885656,15.646726840803398 -975,1.0,1.0,9.75228216552403,-30.648662892676068 -975,1.0,3.0,-1.7055303166990268,5.1973792282565086 -975,1.0,4.0,-1.1359607881738778,4.772479328281356 -975,1.0,5.0,-1.6861448807654689,5.116477495334806 -975,2.0,0.0,-1.5408698687669766,5.631674830095234 -975,2.0,2.0,9.736318911079088,-29.13794745915803 -975,2.0,3.0,-8.19544904231211,23.5308726290628 -975,3.0,1.0,-1.7055303166990268,5.1973792282565086 -975,3.0,2.0,-8.19544904231211,23.5308726290628 -975,3.0,3.0,16.314103089185693,-55.509410535254254 -975,3.0,5.0,-6.413123730174556,22.31120356548123 -975,3.0,11.0,0.0,4.191255364806866 -975,4.0,1.0,-1.1359607881738778,4.772479328281356 -975,4.0,4.0,4.089980824135861,-12.190647245055052 -975,4.0,6.0,-2.954020035961983,7.449267916773697 -975,5.0,1.0,-1.6861448807654689,5.116477495334806 -975,5.0,3.0,-6.413123730174556,22.31120356548123 -975,5.0,5.0,22.341631269034565,-82.8291478657789 -975,5.0,6.0,-3.590210423980992,11.02611441072814 -975,5.0,7.0,-6.289308176100628,22.0125786163522 -975,5.0,8.0,0.0,4.915840805411357 -975,5.0,9.0,0.0,1.8561002591115965 -975,5.0,27.0,-4.362844058012917,15.463571542897856 -975,6.0,4.0,-2.954020035961983,7.449267916773697 -975,6.0,5.0,-3.590210423980992,11.02611441072814 -975,6.0,6.0,6.544230459942975,-18.45668232750184 -975,7.0,5.0,-6.289308176100628,22.0125786163522 -975,7.0,7.0,7.733287237496075,-26.527493274828448 -975,7.0,27.0,-1.4439790613954469,4.540814658476248 -975,8.0,5.0,0.0,4.915840805411357 -975,8.0,8.0,0.0,-18.706293706293707 -975,8.0,9.0,0.0,9.090909090909092 -975,8.0,10.0,0.0,4.807692307692308 -975,9.0,5.0,0.0,1.8561002591115965 -975,9.0,8.0,0.0,9.090909090909092 -975,9.0,9.0,13.462042814524237,-41.3837606675224 -975,9.0,16.0,-3.956039125715353,10.317447719844054 -975,9.0,19.0,-1.7848303152666305,3.98535828943083 -975,9.0,20.0,-5.101853820159654,10.98071411292983 -975,9.0,21.0,-2.619319553382597,5.400770303329455 -975,10.0,8.0,0.0,4.807692307692308 -975,10.0,10.0,0.0,-4.807692307692308 -975,11.0,3.0,0.0,4.191255364806866 -975,11.0,11.0,6.573961583776156,-24.424167659260668 -975,11.0,12.0,0.0,7.142857142857143 -975,11.0,13.0,-1.5265676088395577,3.1734252729654173 -975,11.0,14.0,-3.0953961826564296,6.097275864326261 -975,11.0,15.0,-1.9519977922801688,4.104359379111847 -975,12.0,11.0,0.0,7.142857142857143 -975,12.0,12.0,0.0,-7.142857142857143 -975,13.0,11.0,-1.5265676088395577,3.1734252729654173 -975,13.0,13.0,1.5265676088395577,-3.1734252729654173 -975,14.0,11.0,-3.0953961826564296,6.097275864326261 -975,14.0,14.0,6.874546281965293,-13.760759672738311 -975,14.0,17.0,-1.8108011504072024,3.687418931630696 -975,14.0,22.0,-1.9683489489016612,3.976064876781356 -975,15.0,11.0,-1.9519977922801688,4.104359379111847 -975,15.0,15.0,3.271064728633931,-8.94513365126506 -975,15.0,16.0,-1.3190669363537617,4.8407742721532125 -975,16.0,9.0,-3.956039125715353,10.317447719844054 -975,16.0,15.0,-1.3190669363537617,4.8407742721532125 -975,16.0,16.0,5.275106062069114,-15.158221991997266 -975,17.0,14.0,-1.8108011504072024,3.687418931630696 -975,17.0,17.0,4.886487584415919,-9.906177730909668 -975,17.0,18.0,-3.0756864340087167,6.218758799278971 -975,18.0,17.0,-3.0756864340087167,6.218758799278971 -975,18.0,18.0,8.958039375185187,-17.98346468163191 -975,18.0,19.0,-5.88235294117647,11.76470588235294 -975,19.0,9.0,-1.7848303152666305,3.98535828943083 -975,19.0,18.0,-5.88235294117647,11.76470588235294 -975,19.0,19.0,7.6671832564431,-15.75006417178377 -975,20.0,9.0,-5.101853820159654,10.98071411292983 -975,20.0,20.0,21.876495189895888,-45.10843276170355 -975,20.0,21.0,-16.774641369736234,34.127718648773715 -975,21.0,9.0,-2.619319553382597,5.400770303329455 -975,21.0,20.0,-16.774641369736234,34.127718648773715 -975,21.0,21.0,21.93449907537439,-43.48289181517921 -975,21.0,23.0,-2.5405381522555563,3.95440286307604 -975,22.0,14.0,-1.9683489489016612,3.976064876781356 -975,22.0,22.0,3.429754555384988,-6.965303617315433 -975,22.0,23.0,-1.4614056064833263,2.989238740534077 -975,23.0,21.0,-2.5405381522555563,3.95440286307604 -975,23.0,22.0,-1.4614056064833263,2.989238740534077 -975,23.0,23.0,5.311836702613133,-9.188263657315172 -975,23.0,24.0,-1.3098929438742493,2.287622053705056 -975,24.0,23.0,-1.3098929438742493,2.287622053705056 -975,24.0,24.0,4.495715080321987,-7.864978761969621 -975,24.0,25.0,-1.2165301194494855,1.8171440463475024 -975,24.0,26.0,-1.9692920169982515,3.760212661917064 -975,25.0,24.0,-1.2165301194494855,1.8171440463475024 -975,25.0,25.0,1.2165301194494855,-1.8171440463475024 -975,26.0,24.0,-1.9692920169982515,3.760212661917064 -975,26.0,26.0,3.652281470778589,-9.46044252232512 -975,26.0,27.0,0.0,2.608731947574922 -975,26.0,28.0,-0.99553355095268,1.881005840357816 -975,26.0,29.0,-0.6874559028276572,1.293971494797717 -975,27.0,5.0,-4.362844058012917,15.463571542897856 -975,27.0,7.0,-1.4439790613954469,4.540814658476248 -975,27.0,26.0,0.0,2.608731947574922 -975,27.0,27.0,5.806823119408364,-22.67145722159613 -975,28.0,26.0,-0.99553355095268,1.881005840357816 -975,28.0,28.0,1.9075867579849564,-3.604364401207048 -975,28.0,29.0,-0.9120532070322764,1.7233585608492326 -975,29.0,26.0,-0.6874559028276572,1.293971494797717 -975,29.0,28.0,-0.9120532070322764,1.7233585608492326 -975,29.0,29.0,1.5995091098599337,-3.0173300556469496 -976,0.0,0.0,1.5408698687669766,-5.611274830095233 -976,0.0,2.0,-1.5408698687669766,5.631674830095234 -976,1.0,1.0,4.527635985638374,-15.028336051872673 -976,1.0,3.0,-1.7055303166990268,5.1973792282565086 -976,1.0,4.0,-1.1359607881738778,4.772479328281356 -976,1.0,5.0,-1.6861448807654689,5.116477495334806 -976,2.0,0.0,-1.5408698687669766,5.631674830095234 -976,2.0,2.0,9.736318911079088,-29.13794745915803 -976,2.0,3.0,-8.19544904231211,23.5308726290628 -976,3.0,1.0,-1.7055303166990268,5.1973792282565086 -976,3.0,2.0,-8.19544904231211,23.5308726290628 -976,3.0,3.0,16.314103089185693,-55.509410535254254 -976,3.0,5.0,-6.413123730174556,22.31120356548123 -976,3.0,11.0,0.0,4.191255364806866 -976,4.0,1.0,-1.1359607881738778,4.772479328281356 -976,4.0,4.0,4.089980824135861,-12.190647245055052 -976,4.0,6.0,-2.954020035961983,7.449267916773697 -976,5.0,1.0,-1.6861448807654689,5.116477495334806 -976,5.0,3.0,-6.413123730174556,22.31120356548123 -976,5.0,5.0,22.341631269034565,-82.8291478657789 -976,5.0,6.0,-3.590210423980992,11.02611441072814 -976,5.0,7.0,-6.289308176100628,22.0125786163522 -976,5.0,8.0,0.0,4.915840805411357 -976,5.0,9.0,0.0,1.8561002591115965 -976,5.0,27.0,-4.362844058012917,15.463571542897856 -976,6.0,4.0,-2.954020035961983,7.449267916773697 -976,6.0,5.0,-3.590210423980992,11.02611441072814 -976,6.0,6.0,6.544230459942975,-18.45668232750184 -976,7.0,5.0,-6.289308176100628,22.0125786163522 -976,7.0,7.0,7.733287237496075,-26.527493274828448 -976,7.0,27.0,-1.4439790613954469,4.540814658476248 -976,8.0,5.0,0.0,4.915840805411357 -976,8.0,8.0,0.0,-18.706293706293707 -976,8.0,9.0,0.0,9.090909090909092 -976,8.0,10.0,0.0,4.807692307692308 -976,9.0,5.0,0.0,1.8561002591115965 -976,9.0,8.0,0.0,9.090909090909092 -976,9.0,9.0,13.462042814524237,-41.3837606675224 -976,9.0,16.0,-3.956039125715353,10.317447719844054 -976,9.0,19.0,-1.7848303152666305,3.98535828943083 -976,9.0,20.0,-5.101853820159654,10.98071411292983 -976,9.0,21.0,-2.619319553382597,5.400770303329455 -976,10.0,8.0,0.0,4.807692307692308 -976,10.0,10.0,0.0,-4.807692307692308 -976,11.0,3.0,0.0,4.191255364806866 -976,11.0,11.0,6.573961583776156,-24.424167659260668 -976,11.0,12.0,0.0,7.142857142857143 -976,11.0,13.0,-1.5265676088395577,3.1734252729654173 -976,11.0,14.0,-3.0953961826564296,6.097275864326261 -976,11.0,15.0,-1.9519977922801688,4.104359379111847 -976,12.0,11.0,0.0,7.142857142857143 -976,12.0,12.0,0.0,-7.142857142857143 -976,13.0,11.0,-1.5265676088395577,3.1734252729654173 -976,13.0,13.0,4.01751987283902,-5.424299332335067 -976,13.0,14.0,-2.4909522639994623,2.250874059369649 -976,14.0,11.0,-3.0953961826564296,6.097275864326261 -976,14.0,13.0,-2.4909522639994623,2.250874059369649 -976,14.0,14.0,9.365498545964757,-16.01163373210796 -976,14.0,17.0,-1.8108011504072024,3.687418931630696 -976,14.0,22.0,-1.9683489489016612,3.976064876781356 -976,15.0,11.0,-1.9519977922801688,4.104359379111847 -976,15.0,15.0,1.9519977922801688,-4.104359379111847 -976,16.0,9.0,-3.956039125715353,10.317447719844054 -976,16.0,16.0,3.956039125715353,-10.317447719844054 -976,17.0,14.0,-1.8108011504072024,3.687418931630696 -976,17.0,17.0,4.886487584415919,-9.906177730909668 -976,17.0,18.0,-3.0756864340087167,6.218758799278971 -976,18.0,17.0,-3.0756864340087167,6.218758799278971 -976,18.0,18.0,8.958039375185187,-17.98346468163191 -976,18.0,19.0,-5.88235294117647,11.76470588235294 -976,19.0,9.0,-1.7848303152666305,3.98535828943083 -976,19.0,18.0,-5.88235294117647,11.76470588235294 -976,19.0,19.0,7.6671832564431,-15.75006417178377 -976,20.0,9.0,-5.101853820159654,10.98071411292983 -976,20.0,20.0,21.876495189895888,-45.10843276170355 -976,20.0,21.0,-16.774641369736234,34.127718648773715 -976,21.0,9.0,-2.619319553382597,5.400770303329455 -976,21.0,20.0,-16.774641369736234,34.127718648773715 -976,21.0,21.0,21.93449907537439,-43.48289181517921 -976,21.0,23.0,-2.5405381522555563,3.95440286307604 -976,22.0,14.0,-1.9683489489016612,3.976064876781356 -976,22.0,22.0,3.429754555384988,-6.965303617315433 -976,22.0,23.0,-1.4614056064833263,2.989238740534077 -976,23.0,21.0,-2.5405381522555563,3.95440286307604 -976,23.0,22.0,-1.4614056064833263,2.989238740534077 -976,23.0,23.0,5.311836702613133,-9.188263657315172 -976,23.0,24.0,-1.3098929438742493,2.287622053705056 -976,24.0,23.0,-1.3098929438742493,2.287622053705056 -976,24.0,24.0,4.495715080321987,-7.864978761969621 -976,24.0,25.0,-1.2165301194494855,1.8171440463475024 -976,24.0,26.0,-1.9692920169982515,3.760212661917064 -976,25.0,24.0,-1.2165301194494855,1.8171440463475024 -976,25.0,25.0,1.2165301194494855,-1.8171440463475024 -976,26.0,24.0,-1.9692920169982515,3.760212661917064 -976,26.0,26.0,3.652281470778589,-9.46044252232512 -976,26.0,27.0,0.0,2.608731947574922 -976,26.0,28.0,-0.99553355095268,1.881005840357816 -976,26.0,29.0,-0.6874559028276572,1.293971494797717 -976,27.0,5.0,-4.362844058012917,15.463571542897856 -976,27.0,7.0,-1.4439790613954469,4.540814658476248 -976,27.0,26.0,0.0,2.608731947574922 -976,27.0,27.0,5.806823119408364,-22.67145722159613 -976,28.0,26.0,-0.99553355095268,1.881005840357816 -976,28.0,28.0,1.9075867579849564,-3.604364401207048 -976,28.0,29.0,-0.9120532070322764,1.7233585608492326 -976,29.0,26.0,-0.6874559028276572,1.293971494797717 -976,29.0,28.0,-0.9120532070322764,1.7233585608492326 -976,29.0,29.0,1.5995091098599337,-3.0173300556469496 -977,0.0,0.0,6.765516048652632,-21.23160167089863 -977,0.0,1.0,-5.224646179885656,15.646726840803398 -977,0.0,2.0,-1.5408698687669766,5.631674830095234 -977,1.0,0.0,-5.224646179885656,15.646726840803398 -977,1.0,1.0,9.75228216552403,-30.648662892676068 -977,1.0,3.0,-1.7055303166990268,5.1973792282565086 -977,1.0,4.0,-1.1359607881738778,4.772479328281356 -977,1.0,5.0,-1.6861448807654689,5.116477495334806 -977,2.0,0.0,-1.5408698687669766,5.631674830095234 -977,2.0,2.0,9.736318911079088,-29.13794745915803 -977,2.0,3.0,-8.19544904231211,23.5308726290628 -977,3.0,1.0,-1.7055303166990268,5.1973792282565086 -977,3.0,2.0,-8.19544904231211,23.5308726290628 -977,3.0,3.0,16.314103089185693,-55.509410535254254 -977,3.0,5.0,-6.413123730174556,22.31120356548123 -977,3.0,11.0,0.0,4.191255364806866 -977,4.0,1.0,-1.1359607881738778,4.772479328281356 -977,4.0,4.0,1.1359607881738778,-4.751579328281355 -977,5.0,1.0,-1.6861448807654689,5.116477495334806 -977,5.0,3.0,-6.413123730174556,22.31120356548123 -977,5.0,5.0,22.341631269034565,-82.8291478657789 -977,5.0,6.0,-3.590210423980992,11.02611441072814 -977,5.0,7.0,-6.289308176100628,22.0125786163522 -977,5.0,8.0,0.0,4.915840805411357 -977,5.0,9.0,0.0,1.8561002591115965 -977,5.0,27.0,-4.362844058012917,15.463571542897856 -977,6.0,5.0,-3.590210423980992,11.02611441072814 -977,6.0,6.0,3.590210423980992,-11.01761441072814 -977,7.0,5.0,-6.289308176100628,22.0125786163522 -977,7.0,7.0,7.733287237496075,-26.527493274828448 -977,7.0,27.0,-1.4439790613954469,4.540814658476248 -977,8.0,5.0,0.0,4.915840805411357 -977,8.0,8.0,0.0,-18.706293706293707 -977,8.0,9.0,0.0,9.090909090909092 -977,8.0,10.0,0.0,4.807692307692308 -977,9.0,5.0,0.0,1.8561002591115965 -977,9.0,8.0,0.0,9.090909090909092 -977,9.0,9.0,13.462042814524237,-41.3837606675224 -977,9.0,16.0,-3.956039125715353,10.317447719844054 -977,9.0,19.0,-1.7848303152666305,3.98535828943083 -977,9.0,20.0,-5.101853820159654,10.98071411292983 -977,9.0,21.0,-2.619319553382597,5.400770303329455 -977,10.0,8.0,0.0,4.807692307692308 -977,10.0,10.0,0.0,-4.807692307692308 -977,11.0,3.0,0.0,4.191255364806866 -977,11.0,11.0,6.573961583776156,-24.424167659260668 -977,11.0,12.0,0.0,7.142857142857143 -977,11.0,13.0,-1.5265676088395577,3.1734252729654173 -977,11.0,14.0,-3.0953961826564296,6.097275864326261 -977,11.0,15.0,-1.9519977922801688,4.104359379111847 -977,12.0,11.0,0.0,7.142857142857143 -977,12.0,12.0,0.0,-7.142857142857143 -977,13.0,11.0,-1.5265676088395577,3.1734252729654173 -977,13.0,13.0,4.01751987283902,-5.424299332335067 -977,13.0,14.0,-2.4909522639994623,2.250874059369649 -977,14.0,11.0,-3.0953961826564296,6.097275864326261 -977,14.0,13.0,-2.4909522639994623,2.250874059369649 -977,14.0,14.0,9.365498545964757,-16.01163373210796 -977,14.0,17.0,-1.8108011504072024,3.687418931630696 -977,14.0,22.0,-1.9683489489016612,3.976064876781356 -977,15.0,11.0,-1.9519977922801688,4.104359379111847 -977,15.0,15.0,3.271064728633931,-8.94513365126506 -977,15.0,16.0,-1.3190669363537617,4.8407742721532125 -977,16.0,9.0,-3.956039125715353,10.317447719844054 -977,16.0,15.0,-1.3190669363537617,4.8407742721532125 -977,16.0,16.0,5.275106062069114,-15.158221991997266 -977,17.0,14.0,-1.8108011504072024,3.687418931630696 -977,17.0,17.0,4.886487584415919,-9.906177730909668 -977,17.0,18.0,-3.0756864340087167,6.218758799278971 -977,18.0,17.0,-3.0756864340087167,6.218758799278971 -977,18.0,18.0,8.958039375185187,-17.98346468163191 -977,18.0,19.0,-5.88235294117647,11.76470588235294 -977,19.0,9.0,-1.7848303152666305,3.98535828943083 -977,19.0,18.0,-5.88235294117647,11.76470588235294 -977,19.0,19.0,7.6671832564431,-15.75006417178377 -977,20.0,9.0,-5.101853820159654,10.98071411292983 -977,20.0,20.0,21.876495189895888,-45.10843276170355 -977,20.0,21.0,-16.774641369736234,34.127718648773715 -977,21.0,9.0,-2.619319553382597,5.400770303329455 -977,21.0,20.0,-16.774641369736234,34.127718648773715 -977,21.0,21.0,21.93449907537439,-43.48289181517921 -977,21.0,23.0,-2.5405381522555563,3.95440286307604 -977,22.0,14.0,-1.9683489489016612,3.976064876781356 -977,22.0,22.0,3.429754555384988,-6.965303617315433 -977,22.0,23.0,-1.4614056064833263,2.989238740534077 -977,23.0,21.0,-2.5405381522555563,3.95440286307604 -977,23.0,22.0,-1.4614056064833263,2.989238740534077 -977,23.0,23.0,5.311836702613133,-9.188263657315172 -977,23.0,24.0,-1.3098929438742493,2.287622053705056 -977,24.0,23.0,-1.3098929438742493,2.287622053705056 -977,24.0,24.0,4.495715080321987,-7.864978761969621 -977,24.0,25.0,-1.2165301194494855,1.8171440463475024 -977,24.0,26.0,-1.9692920169982515,3.760212661917064 -977,25.0,24.0,-1.2165301194494855,1.8171440463475024 -977,25.0,25.0,1.2165301194494855,-1.8171440463475024 -977,26.0,24.0,-1.9692920169982515,3.760212661917064 -977,26.0,26.0,3.652281470778589,-9.46044252232512 -977,26.0,27.0,0.0,2.608731947574922 -977,26.0,28.0,-0.99553355095268,1.881005840357816 -977,26.0,29.0,-0.6874559028276572,1.293971494797717 -977,27.0,5.0,-4.362844058012917,15.463571542897856 -977,27.0,7.0,-1.4439790613954469,4.540814658476248 -977,27.0,26.0,0.0,2.608731947574922 -977,27.0,27.0,5.806823119408364,-22.67145722159613 -977,28.0,26.0,-0.99553355095268,1.881005840357816 -977,28.0,28.0,1.9075867579849564,-3.604364401207048 -977,28.0,29.0,-0.9120532070322764,1.7233585608492326 -977,29.0,26.0,-0.6874559028276572,1.293971494797717 -977,29.0,28.0,-0.9120532070322764,1.7233585608492326 -977,29.0,29.0,1.5995091098599337,-3.0173300556469496 -978,0.0,0.0,6.765516048652632,-21.23160167089863 -978,0.0,1.0,-5.224646179885656,15.646726840803398 -978,0.0,2.0,-1.5408698687669766,5.631674830095234 -978,1.0,0.0,-5.224646179885656,15.646726840803398 -978,1.0,1.0,9.75228216552403,-30.648662892676068 -978,1.0,3.0,-1.7055303166990268,5.1973792282565086 -978,1.0,4.0,-1.1359607881738778,4.772479328281356 -978,1.0,5.0,-1.6861448807654689,5.116477495334806 -978,2.0,0.0,-1.5408698687669766,5.631674830095234 -978,2.0,2.0,9.736318911079088,-29.13794745915803 -978,2.0,3.0,-8.19544904231211,23.5308726290628 -978,3.0,1.0,-1.7055303166990268,5.1973792282565086 -978,3.0,2.0,-8.19544904231211,23.5308726290628 -978,3.0,3.0,16.314103089185693,-55.509410535254254 -978,3.0,5.0,-6.413123730174556,22.31120356548123 -978,3.0,11.0,0.0,4.191255364806866 -978,4.0,1.0,-1.1359607881738778,4.772479328281356 -978,4.0,4.0,4.089980824135861,-12.190647245055052 -978,4.0,6.0,-2.954020035961983,7.449267916773697 -978,5.0,1.0,-1.6861448807654689,5.116477495334806 -978,5.0,3.0,-6.413123730174556,22.31120356548123 -978,5.0,5.0,22.341631269034565,-82.8291478657789 -978,5.0,6.0,-3.590210423980992,11.02611441072814 -978,5.0,7.0,-6.289308176100628,22.0125786163522 -978,5.0,8.0,0.0,4.915840805411357 -978,5.0,9.0,0.0,1.8561002591115965 -978,5.0,27.0,-4.362844058012917,15.463571542897856 -978,6.0,4.0,-2.954020035961983,7.449267916773697 -978,6.0,5.0,-3.590210423980992,11.02611441072814 -978,6.0,6.0,6.544230459942975,-18.45668232750184 -978,7.0,5.0,-6.289308176100628,22.0125786163522 -978,7.0,7.0,7.733287237496075,-26.527493274828448 -978,7.0,27.0,-1.4439790613954469,4.540814658476248 -978,8.0,5.0,0.0,4.915840805411357 -978,8.0,8.0,0.0,-18.706293706293707 -978,8.0,9.0,0.0,9.090909090909092 -978,8.0,10.0,0.0,4.807692307692308 -978,9.0,5.0,0.0,1.8561002591115965 -978,9.0,8.0,0.0,9.090909090909092 -978,9.0,9.0,13.462042814524237,-41.3837606675224 -978,9.0,16.0,-3.956039125715353,10.317447719844054 -978,9.0,19.0,-1.7848303152666305,3.98535828943083 -978,9.0,20.0,-5.101853820159654,10.98071411292983 -978,9.0,21.0,-2.619319553382597,5.400770303329455 -978,10.0,8.0,0.0,4.807692307692308 -978,10.0,10.0,0.0,-4.807692307692308 -978,11.0,3.0,0.0,4.191255364806866 -978,11.0,11.0,6.573961583776156,-24.424167659260668 -978,11.0,12.0,0.0,7.142857142857143 -978,11.0,13.0,-1.5265676088395577,3.1734252729654173 -978,11.0,14.0,-3.0953961826564296,6.097275864326261 -978,11.0,15.0,-1.9519977922801688,4.104359379111847 -978,12.0,11.0,0.0,7.142857142857143 -978,12.0,12.0,0.0,-7.142857142857143 -978,13.0,11.0,-1.5265676088395577,3.1734252729654173 -978,13.0,13.0,4.01751987283902,-5.424299332335067 -978,13.0,14.0,-2.4909522639994623,2.250874059369649 -978,14.0,11.0,-3.0953961826564296,6.097275864326261 -978,14.0,13.0,-2.4909522639994623,2.250874059369649 -978,14.0,14.0,9.365498545964757,-16.01163373210796 -978,14.0,17.0,-1.8108011504072024,3.687418931630696 -978,14.0,22.0,-1.9683489489016612,3.976064876781356 -978,15.0,11.0,-1.9519977922801688,4.104359379111847 -978,15.0,15.0,3.271064728633931,-8.94513365126506 -978,15.0,16.0,-1.3190669363537617,4.8407742721532125 -978,16.0,9.0,-3.956039125715353,10.317447719844054 -978,16.0,15.0,-1.3190669363537617,4.8407742721532125 -978,16.0,16.0,5.275106062069114,-15.158221991997266 -978,17.0,14.0,-1.8108011504072024,3.687418931630696 -978,17.0,17.0,4.886487584415919,-9.906177730909668 -978,17.0,18.0,-3.0756864340087167,6.218758799278971 -978,18.0,17.0,-3.0756864340087167,6.218758799278971 -978,18.0,18.0,8.958039375185187,-17.98346468163191 -978,18.0,19.0,-5.88235294117647,11.76470588235294 -978,19.0,9.0,-1.7848303152666305,3.98535828943083 -978,19.0,18.0,-5.88235294117647,11.76470588235294 -978,19.0,19.0,7.6671832564431,-15.75006417178377 -978,20.0,9.0,-5.101853820159654,10.98071411292983 -978,20.0,20.0,21.876495189895888,-45.10843276170355 -978,20.0,21.0,-16.774641369736234,34.127718648773715 -978,21.0,9.0,-2.619319553382597,5.400770303329455 -978,21.0,20.0,-16.774641369736234,34.127718648773715 -978,21.0,21.0,21.93449907537439,-43.48289181517921 -978,21.0,23.0,-2.5405381522555563,3.95440286307604 -978,22.0,14.0,-1.9683489489016612,3.976064876781356 -978,22.0,22.0,3.429754555384988,-6.965303617315433 -978,22.0,23.0,-1.4614056064833263,2.989238740534077 -978,23.0,21.0,-2.5405381522555563,3.95440286307604 -978,23.0,22.0,-1.4614056064833263,2.989238740534077 -978,23.0,23.0,5.311836702613133,-9.188263657315172 -978,23.0,24.0,-1.3098929438742493,2.287622053705056 -978,24.0,23.0,-1.3098929438742493,2.287622053705056 -978,24.0,24.0,4.495715080321987,-7.864978761969621 -978,24.0,25.0,-1.2165301194494855,1.8171440463475024 -978,24.0,26.0,-1.9692920169982515,3.760212661917064 -978,25.0,24.0,-1.2165301194494855,1.8171440463475024 -978,25.0,25.0,1.2165301194494855,-1.8171440463475024 -978,26.0,24.0,-1.9692920169982515,3.760212661917064 -978,26.0,26.0,3.652281470778589,-9.46044252232512 -978,26.0,27.0,0.0,2.608731947574922 -978,26.0,28.0,-0.99553355095268,1.881005840357816 -978,26.0,29.0,-0.6874559028276572,1.293971494797717 -978,27.0,5.0,-4.362844058012917,15.463571542897856 -978,27.0,7.0,-1.4439790613954469,4.540814658476248 -978,27.0,26.0,0.0,2.608731947574922 -978,27.0,27.0,5.806823119408364,-22.67145722159613 -978,28.0,26.0,-0.99553355095268,1.881005840357816 -978,28.0,28.0,1.9075867579849564,-3.604364401207048 -978,28.0,29.0,-0.9120532070322764,1.7233585608492326 -978,29.0,26.0,-0.6874559028276572,1.293971494797717 -978,29.0,28.0,-0.9120532070322764,1.7233585608492326 -978,29.0,29.0,1.5995091098599337,-3.0173300556469496 -979,0.0,0.0,6.765516048652632,-21.23160167089863 -979,0.0,1.0,-5.224646179885656,15.646726840803398 -979,0.0,2.0,-1.5408698687669766,5.631674830095234 -979,1.0,0.0,-5.224646179885656,15.646726840803398 -979,1.0,1.0,9.75228216552403,-30.648662892676068 -979,1.0,3.0,-1.7055303166990268,5.1973792282565086 -979,1.0,4.0,-1.1359607881738778,4.772479328281356 -979,1.0,5.0,-1.6861448807654689,5.116477495334806 -979,2.0,0.0,-1.5408698687669766,5.631674830095234 -979,2.0,2.0,9.736318911079088,-29.13794745915803 -979,2.0,3.0,-8.19544904231211,23.5308726290628 -979,3.0,1.0,-1.7055303166990268,5.1973792282565086 -979,3.0,2.0,-8.19544904231211,23.5308726290628 -979,3.0,3.0,16.314103089185693,-55.509410535254254 -979,3.0,5.0,-6.413123730174556,22.31120356548123 -979,3.0,11.0,0.0,4.191255364806866 -979,4.0,1.0,-1.1359607881738778,4.772479328281356 -979,4.0,4.0,4.089980824135861,-12.190647245055052 -979,4.0,6.0,-2.954020035961983,7.449267916773697 -979,5.0,1.0,-1.6861448807654689,5.116477495334806 -979,5.0,3.0,-6.413123730174556,22.31120356548123 -979,5.0,5.0,22.341631269034565,-82.8291478657789 -979,5.0,6.0,-3.590210423980992,11.02611441072814 -979,5.0,7.0,-6.289308176100628,22.0125786163522 -979,5.0,8.0,0.0,4.915840805411357 -979,5.0,9.0,0.0,1.8561002591115965 -979,5.0,27.0,-4.362844058012917,15.463571542897856 -979,6.0,4.0,-2.954020035961983,7.449267916773697 -979,6.0,5.0,-3.590210423980992,11.02611441072814 -979,6.0,6.0,6.544230459942975,-18.45668232750184 -979,7.0,5.0,-6.289308176100628,22.0125786163522 -979,7.0,7.0,7.733287237496075,-26.527493274828448 -979,7.0,27.0,-1.4439790613954469,4.540814658476248 -979,8.0,5.0,0.0,4.915840805411357 -979,8.0,8.0,0.0,-18.706293706293707 -979,8.0,9.0,0.0,9.090909090909092 -979,8.0,10.0,0.0,4.807692307692308 -979,9.0,5.0,0.0,1.8561002591115965 -979,9.0,8.0,0.0,9.090909090909092 -979,9.0,9.0,8.36018899436458,-30.40304655459257 -979,9.0,16.0,-3.956039125715353,10.317447719844054 -979,9.0,19.0,-1.7848303152666305,3.98535828943083 -979,9.0,21.0,-2.619319553382597,5.400770303329455 -979,10.0,8.0,0.0,4.807692307692308 -979,10.0,10.0,0.0,-4.807692307692308 -979,11.0,3.0,0.0,4.191255364806866 -979,11.0,11.0,6.573961583776156,-24.424167659260668 -979,11.0,12.0,0.0,7.142857142857143 -979,11.0,13.0,-1.5265676088395577,3.1734252729654173 -979,11.0,14.0,-3.0953961826564296,6.097275864326261 -979,11.0,15.0,-1.9519977922801688,4.104359379111847 -979,12.0,11.0,0.0,7.142857142857143 -979,12.0,12.0,0.0,-7.142857142857143 -979,13.0,11.0,-1.5265676088395577,3.1734252729654173 -979,13.0,13.0,4.01751987283902,-5.424299332335067 -979,13.0,14.0,-2.4909522639994623,2.250874059369649 -979,14.0,11.0,-3.0953961826564296,6.097275864326261 -979,14.0,13.0,-2.4909522639994623,2.250874059369649 -979,14.0,14.0,9.365498545964757,-16.01163373210796 -979,14.0,17.0,-1.8108011504072024,3.687418931630696 -979,14.0,22.0,-1.9683489489016612,3.976064876781356 -979,15.0,11.0,-1.9519977922801688,4.104359379111847 -979,15.0,15.0,3.271064728633931,-8.94513365126506 -979,15.0,16.0,-1.3190669363537617,4.8407742721532125 -979,16.0,9.0,-3.956039125715353,10.317447719844054 -979,16.0,15.0,-1.3190669363537617,4.8407742721532125 -979,16.0,16.0,5.275106062069114,-15.158221991997266 -979,17.0,14.0,-1.8108011504072024,3.687418931630696 -979,17.0,17.0,4.886487584415919,-9.906177730909668 -979,17.0,18.0,-3.0756864340087167,6.218758799278971 -979,18.0,17.0,-3.0756864340087167,6.218758799278971 -979,18.0,18.0,8.958039375185187,-17.98346468163191 -979,18.0,19.0,-5.88235294117647,11.76470588235294 -979,19.0,9.0,-1.7848303152666305,3.98535828943083 -979,19.0,18.0,-5.88235294117647,11.76470588235294 -979,19.0,19.0,7.6671832564431,-15.75006417178377 -979,20.0,20.0,16.774641369736234,-34.127718648773715 -979,20.0,21.0,-16.774641369736234,34.127718648773715 -979,21.0,9.0,-2.619319553382597,5.400770303329455 -979,21.0,20.0,-16.774641369736234,34.127718648773715 -979,21.0,21.0,21.93449907537439,-43.48289181517921 -979,21.0,23.0,-2.5405381522555563,3.95440286307604 -979,22.0,14.0,-1.9683489489016612,3.976064876781356 -979,22.0,22.0,3.429754555384988,-6.965303617315433 -979,22.0,23.0,-1.4614056064833263,2.989238740534077 -979,23.0,21.0,-2.5405381522555563,3.95440286307604 -979,23.0,22.0,-1.4614056064833263,2.989238740534077 -979,23.0,23.0,5.311836702613133,-9.188263657315172 -979,23.0,24.0,-1.3098929438742493,2.287622053705056 -979,24.0,23.0,-1.3098929438742493,2.287622053705056 -979,24.0,24.0,4.495715080321987,-7.864978761969621 -979,24.0,25.0,-1.2165301194494855,1.8171440463475024 -979,24.0,26.0,-1.9692920169982515,3.760212661917064 -979,25.0,24.0,-1.2165301194494855,1.8171440463475024 -979,25.0,25.0,1.2165301194494855,-1.8171440463475024 -979,26.0,24.0,-1.9692920169982515,3.760212661917064 -979,26.0,26.0,3.652281470778589,-9.46044252232512 -979,26.0,27.0,0.0,2.608731947574922 -979,26.0,28.0,-0.99553355095268,1.881005840357816 -979,26.0,29.0,-0.6874559028276572,1.293971494797717 -979,27.0,5.0,-4.362844058012917,15.463571542897856 -979,27.0,7.0,-1.4439790613954469,4.540814658476248 -979,27.0,26.0,0.0,2.608731947574922 -979,27.0,27.0,5.806823119408364,-22.67145722159613 -979,28.0,26.0,-0.99553355095268,1.881005840357816 -979,28.0,28.0,1.9075867579849564,-3.604364401207048 -979,28.0,29.0,-0.9120532070322764,1.7233585608492326 -979,29.0,26.0,-0.6874559028276572,1.293971494797717 -979,29.0,28.0,-0.9120532070322764,1.7233585608492326 -979,29.0,29.0,1.5995091098599337,-3.0173300556469496 -980,0.0,0.0,6.765516048652632,-21.23160167089863 -980,0.0,1.0,-5.224646179885656,15.646726840803398 -980,0.0,2.0,-1.5408698687669766,5.631674830095234 -980,1.0,0.0,-5.224646179885656,15.646726840803398 -980,1.0,1.0,9.75228216552403,-30.648662892676068 -980,1.0,3.0,-1.7055303166990268,5.1973792282565086 -980,1.0,4.0,-1.1359607881738778,4.772479328281356 -980,1.0,5.0,-1.6861448807654689,5.116477495334806 -980,2.0,0.0,-1.5408698687669766,5.631674830095234 -980,2.0,2.0,9.736318911079088,-29.13794745915803 -980,2.0,3.0,-8.19544904231211,23.5308726290628 -980,3.0,1.0,-1.7055303166990268,5.1973792282565086 -980,3.0,2.0,-8.19544904231211,23.5308726290628 -980,3.0,3.0,16.314103089185693,-55.509410535254254 -980,3.0,5.0,-6.413123730174556,22.31120356548123 -980,3.0,11.0,0.0,4.191255364806866 -980,4.0,1.0,-1.1359607881738778,4.772479328281356 -980,4.0,4.0,4.089980824135861,-12.190647245055052 -980,4.0,6.0,-2.954020035961983,7.449267916773697 -980,5.0,1.0,-1.6861448807654689,5.116477495334806 -980,5.0,3.0,-6.413123730174556,22.31120356548123 -980,5.0,5.0,22.341631269034565,-82.8291478657789 -980,5.0,6.0,-3.590210423980992,11.02611441072814 -980,5.0,7.0,-6.289308176100628,22.0125786163522 -980,5.0,8.0,0.0,4.915840805411357 -980,5.0,9.0,0.0,1.8561002591115965 -980,5.0,27.0,-4.362844058012917,15.463571542897856 -980,6.0,4.0,-2.954020035961983,7.449267916773697 -980,6.0,5.0,-3.590210423980992,11.02611441072814 -980,6.0,6.0,6.544230459942975,-18.45668232750184 -980,7.0,5.0,-6.289308176100628,22.0125786163522 -980,7.0,7.0,7.733287237496075,-26.527493274828448 -980,7.0,27.0,-1.4439790613954469,4.540814658476248 -980,8.0,5.0,0.0,4.915840805411357 -980,8.0,8.0,0.0,-18.706293706293707 -980,8.0,9.0,0.0,9.090909090909092 -980,8.0,10.0,0.0,4.807692307692308 -980,9.0,5.0,0.0,1.8561002591115965 -980,9.0,8.0,0.0,9.090909090909092 -980,9.0,9.0,13.462042814524237,-41.3837606675224 -980,9.0,16.0,-3.956039125715353,10.317447719844054 -980,9.0,19.0,-1.7848303152666305,3.98535828943083 -980,9.0,20.0,-5.101853820159654,10.98071411292983 -980,9.0,21.0,-2.619319553382597,5.400770303329455 -980,10.0,8.0,0.0,4.807692307692308 -980,10.0,10.0,0.0,-4.807692307692308 -980,11.0,3.0,0.0,4.191255364806866 -980,11.0,11.0,6.573961583776156,-24.424167659260668 -980,11.0,12.0,0.0,7.142857142857143 -980,11.0,13.0,-1.5265676088395577,3.1734252729654173 -980,11.0,14.0,-3.0953961826564296,6.097275864326261 -980,11.0,15.0,-1.9519977922801688,4.104359379111847 -980,12.0,11.0,0.0,7.142857142857143 -980,12.0,12.0,0.0,-7.142857142857143 -980,13.0,11.0,-1.5265676088395577,3.1734252729654173 -980,13.0,13.0,4.01751987283902,-5.424299332335067 -980,13.0,14.0,-2.4909522639994623,2.250874059369649 -980,14.0,11.0,-3.0953961826564296,6.097275864326261 -980,14.0,13.0,-2.4909522639994623,2.250874059369649 -980,14.0,14.0,9.365498545964757,-16.01163373210796 -980,14.0,17.0,-1.8108011504072024,3.687418931630696 -980,14.0,22.0,-1.9683489489016612,3.976064876781356 -980,15.0,11.0,-1.9519977922801688,4.104359379111847 -980,15.0,15.0,3.271064728633931,-8.94513365126506 -980,15.0,16.0,-1.3190669363537617,4.8407742721532125 -980,16.0,9.0,-3.956039125715353,10.317447719844054 -980,16.0,15.0,-1.3190669363537617,4.8407742721532125 -980,16.0,16.0,5.275106062069114,-15.158221991997266 -980,17.0,14.0,-1.8108011504072024,3.687418931630696 -980,17.0,17.0,4.886487584415919,-9.906177730909668 -980,17.0,18.0,-3.0756864340087167,6.218758799278971 -980,18.0,17.0,-3.0756864340087167,6.218758799278971 -980,18.0,18.0,8.958039375185187,-17.98346468163191 -980,18.0,19.0,-5.88235294117647,11.76470588235294 -980,19.0,9.0,-1.7848303152666305,3.98535828943083 -980,19.0,18.0,-5.88235294117647,11.76470588235294 -980,19.0,19.0,7.6671832564431,-15.75006417178377 -980,20.0,9.0,-5.101853820159654,10.98071411292983 -980,20.0,20.0,21.876495189895888,-45.10843276170355 -980,20.0,21.0,-16.774641369736234,34.127718648773715 -980,21.0,9.0,-2.619319553382597,5.400770303329455 -980,21.0,20.0,-16.774641369736234,34.127718648773715 -980,21.0,21.0,21.93449907537439,-43.48289181517921 -980,21.0,23.0,-2.5405381522555563,3.95440286307604 -980,22.0,14.0,-1.9683489489016612,3.976064876781356 -980,22.0,22.0,3.429754555384988,-6.965303617315433 -980,22.0,23.0,-1.4614056064833263,2.989238740534077 -980,23.0,21.0,-2.5405381522555563,3.95440286307604 -980,23.0,22.0,-1.4614056064833263,2.989238740534077 -980,23.0,23.0,5.311836702613133,-9.188263657315172 -980,23.0,24.0,-1.3098929438742493,2.287622053705056 -980,24.0,23.0,-1.3098929438742493,2.287622053705056 -980,24.0,24.0,4.495715080321987,-7.864978761969621 -980,24.0,25.0,-1.2165301194494855,1.8171440463475024 -980,24.0,26.0,-1.9692920169982515,3.760212661917064 -980,25.0,24.0,-1.2165301194494855,1.8171440463475024 -980,25.0,25.0,1.2165301194494855,-1.8171440463475024 -980,26.0,24.0,-1.9692920169982515,3.760212661917064 -980,26.0,26.0,3.652281470778589,-9.46044252232512 -980,26.0,27.0,0.0,2.608731947574922 -980,26.0,28.0,-0.99553355095268,1.881005840357816 -980,26.0,29.0,-0.6874559028276572,1.293971494797717 -980,27.0,5.0,-4.362844058012917,15.463571542897856 -980,27.0,7.0,-1.4439790613954469,4.540814658476248 -980,27.0,26.0,0.0,2.608731947574922 -980,27.0,27.0,5.806823119408364,-22.67145722159613 -980,28.0,26.0,-0.99553355095268,1.881005840357816 -980,28.0,28.0,1.9075867579849564,-3.604364401207048 -980,28.0,29.0,-0.9120532070322764,1.7233585608492326 -980,29.0,26.0,-0.6874559028276572,1.293971494797717 -980,29.0,28.0,-0.9120532070322764,1.7233585608492326 -980,29.0,29.0,1.5995091098599337,-3.0173300556469496 -981,0.0,0.0,6.765516048652632,-21.23160167089863 -981,0.0,1.0,-5.224646179885656,15.646726840803398 -981,0.0,2.0,-1.5408698687669766,5.631674830095234 -981,1.0,0.0,-5.224646179885656,15.646726840803398 -981,1.0,1.0,9.75228216552403,-30.648662892676068 -981,1.0,3.0,-1.7055303166990268,5.1973792282565086 -981,1.0,4.0,-1.1359607881738778,4.772479328281356 -981,1.0,5.0,-1.6861448807654689,5.116477495334806 -981,2.0,0.0,-1.5408698687669766,5.631674830095234 -981,2.0,2.0,9.736318911079088,-29.13794745915803 -981,2.0,3.0,-8.19544904231211,23.5308726290628 -981,3.0,1.0,-1.7055303166990268,5.1973792282565086 -981,3.0,2.0,-8.19544904231211,23.5308726290628 -981,3.0,3.0,16.314103089185693,-55.509410535254254 -981,3.0,5.0,-6.413123730174556,22.31120356548123 -981,3.0,11.0,0.0,4.191255364806866 -981,4.0,1.0,-1.1359607881738778,4.772479328281356 -981,4.0,4.0,4.089980824135861,-12.190647245055052 -981,4.0,6.0,-2.954020035961983,7.449267916773697 -981,5.0,1.0,-1.6861448807654689,5.116477495334806 -981,5.0,3.0,-6.413123730174556,22.31120356548123 -981,5.0,5.0,22.341631269034565,-77.80272577435625 -981,5.0,6.0,-3.590210423980992,11.02611441072814 -981,5.0,7.0,-6.289308176100628,22.0125786163522 -981,5.0,9.0,0.0,1.8561002591115965 -981,5.0,27.0,-4.362844058012917,15.463571542897856 -981,6.0,4.0,-2.954020035961983,7.449267916773697 -981,6.0,5.0,-3.590210423980992,11.02611441072814 -981,6.0,6.0,6.544230459942975,-18.45668232750184 -981,7.0,5.0,-6.289308176100628,22.0125786163522 -981,7.0,7.0,7.733287237496075,-26.527493274828448 -981,7.0,27.0,-1.4439790613954469,4.540814658476248 -981,8.0,8.0,0.0,-13.8986013986014 -981,8.0,9.0,0.0,9.090909090909092 -981,8.0,10.0,0.0,4.807692307692308 -981,9.0,5.0,0.0,1.8561002591115965 -981,9.0,8.0,0.0,9.090909090909092 -981,9.0,9.0,13.462042814524237,-41.3837606675224 -981,9.0,16.0,-3.956039125715353,10.317447719844054 -981,9.0,19.0,-1.7848303152666305,3.98535828943083 -981,9.0,20.0,-5.101853820159654,10.98071411292983 -981,9.0,21.0,-2.619319553382597,5.400770303329455 -981,10.0,8.0,0.0,4.807692307692308 -981,10.0,10.0,0.0,-4.807692307692308 -981,11.0,3.0,0.0,4.191255364806866 -981,11.0,11.0,6.573961583776156,-24.424167659260668 -981,11.0,12.0,0.0,7.142857142857143 -981,11.0,13.0,-1.5265676088395577,3.1734252729654173 -981,11.0,14.0,-3.0953961826564296,6.097275864326261 -981,11.0,15.0,-1.9519977922801688,4.104359379111847 -981,12.0,11.0,0.0,7.142857142857143 -981,12.0,12.0,0.0,-7.142857142857143 -981,13.0,11.0,-1.5265676088395577,3.1734252729654173 -981,13.0,13.0,4.01751987283902,-5.424299332335067 -981,13.0,14.0,-2.4909522639994623,2.250874059369649 -981,14.0,11.0,-3.0953961826564296,6.097275864326261 -981,14.0,13.0,-2.4909522639994623,2.250874059369649 -981,14.0,14.0,9.365498545964757,-16.01163373210796 -981,14.0,17.0,-1.8108011504072024,3.687418931630696 -981,14.0,22.0,-1.9683489489016612,3.976064876781356 -981,15.0,11.0,-1.9519977922801688,4.104359379111847 -981,15.0,15.0,3.271064728633931,-8.94513365126506 -981,15.0,16.0,-1.3190669363537617,4.8407742721532125 -981,16.0,9.0,-3.956039125715353,10.317447719844054 -981,16.0,15.0,-1.3190669363537617,4.8407742721532125 -981,16.0,16.0,5.275106062069114,-15.158221991997266 -981,17.0,14.0,-1.8108011504072024,3.687418931630696 -981,17.0,17.0,1.8108011504072024,-3.687418931630696 -981,18.0,18.0,5.88235294117647,-11.76470588235294 -981,18.0,19.0,-5.88235294117647,11.76470588235294 -981,19.0,9.0,-1.7848303152666305,3.98535828943083 -981,19.0,18.0,-5.88235294117647,11.76470588235294 -981,19.0,19.0,7.6671832564431,-15.75006417178377 -981,20.0,9.0,-5.101853820159654,10.98071411292983 -981,20.0,20.0,21.876495189895888,-45.10843276170355 -981,20.0,21.0,-16.774641369736234,34.127718648773715 -981,21.0,9.0,-2.619319553382597,5.400770303329455 -981,21.0,20.0,-16.774641369736234,34.127718648773715 -981,21.0,21.0,21.93449907537439,-43.48289181517921 -981,21.0,23.0,-2.5405381522555563,3.95440286307604 -981,22.0,14.0,-1.9683489489016612,3.976064876781356 -981,22.0,22.0,3.429754555384988,-6.965303617315433 -981,22.0,23.0,-1.4614056064833263,2.989238740534077 -981,23.0,21.0,-2.5405381522555563,3.95440286307604 -981,23.0,22.0,-1.4614056064833263,2.989238740534077 -981,23.0,23.0,5.311836702613133,-9.188263657315172 -981,23.0,24.0,-1.3098929438742493,2.287622053705056 -981,24.0,23.0,-1.3098929438742493,2.287622053705056 -981,24.0,24.0,4.495715080321987,-7.864978761969621 -981,24.0,25.0,-1.2165301194494855,1.8171440463475024 -981,24.0,26.0,-1.9692920169982515,3.760212661917064 -981,25.0,24.0,-1.2165301194494855,1.8171440463475024 -981,25.0,25.0,1.2165301194494855,-1.8171440463475024 -981,26.0,24.0,-1.9692920169982515,3.760212661917064 -981,26.0,26.0,2.656747919825909,-7.579436681967305 -981,26.0,27.0,0.0,2.608731947574922 -981,26.0,29.0,-0.6874559028276572,1.293971494797717 -981,27.0,5.0,-4.362844058012917,15.463571542897856 -981,27.0,7.0,-1.4439790613954469,4.540814658476248 -981,27.0,26.0,0.0,2.608731947574922 -981,27.0,27.0,5.806823119408364,-22.67145722159613 -981,28.0,28.0,0.9120532070322764,-1.7233585608492326 -981,28.0,29.0,-0.9120532070322764,1.7233585608492326 -981,29.0,26.0,-0.6874559028276572,1.293971494797717 -981,29.0,28.0,-0.9120532070322764,1.7233585608492326 -981,29.0,29.0,1.5995091098599337,-3.0173300556469496 -982,0.0,0.0,6.765516048652632,-21.23160167089863 -982,0.0,1.0,-5.224646179885656,15.646726840803398 -982,0.0,2.0,-1.5408698687669766,5.631674830095234 -982,1.0,0.0,-5.224646179885656,15.646726840803398 -982,1.0,1.0,9.75228216552403,-30.648662892676068 -982,1.0,3.0,-1.7055303166990268,5.1973792282565086 -982,1.0,4.0,-1.1359607881738778,4.772479328281356 -982,1.0,5.0,-1.6861448807654689,5.116477495334806 -982,2.0,0.0,-1.5408698687669766,5.631674830095234 -982,2.0,2.0,9.736318911079088,-29.13794745915803 -982,2.0,3.0,-8.19544904231211,23.5308726290628 -982,3.0,1.0,-1.7055303166990268,5.1973792282565086 -982,3.0,2.0,-8.19544904231211,23.5308726290628 -982,3.0,3.0,16.314103089185693,-55.509410535254254 -982,3.0,5.0,-6.413123730174556,22.31120356548123 -982,3.0,11.0,0.0,4.191255364806866 -982,4.0,1.0,-1.1359607881738778,4.772479328281356 -982,4.0,4.0,4.089980824135861,-12.190647245055052 -982,4.0,6.0,-2.954020035961983,7.449267916773697 -982,5.0,1.0,-1.6861448807654689,5.116477495334806 -982,5.0,3.0,-6.413123730174556,22.31120356548123 -982,5.0,5.0,22.341631269034565,-82.8291478657789 -982,5.0,6.0,-3.590210423980992,11.02611441072814 -982,5.0,7.0,-6.289308176100628,22.0125786163522 -982,5.0,8.0,0.0,4.915840805411357 -982,5.0,9.0,0.0,1.8561002591115965 -982,5.0,27.0,-4.362844058012917,15.463571542897856 -982,6.0,4.0,-2.954020035961983,7.449267916773697 -982,6.0,5.0,-3.590210423980992,11.02611441072814 -982,6.0,6.0,6.544230459942975,-18.45668232750184 -982,7.0,5.0,-6.289308176100628,22.0125786163522 -982,7.0,7.0,7.733287237496075,-26.527493274828448 -982,7.0,27.0,-1.4439790613954469,4.540814658476248 -982,8.0,5.0,0.0,4.915840805411357 -982,8.0,8.0,0.0,-18.706293706293707 -982,8.0,9.0,0.0,9.090909090909092 -982,8.0,10.0,0.0,4.807692307692308 -982,9.0,5.0,0.0,1.8561002591115965 -982,9.0,8.0,0.0,9.090909090909092 -982,9.0,9.0,13.462042814524237,-41.3837606675224 -982,9.0,16.0,-3.956039125715353,10.317447719844054 -982,9.0,19.0,-1.7848303152666305,3.98535828943083 -982,9.0,20.0,-5.101853820159654,10.98071411292983 -982,9.0,21.0,-2.619319553382597,5.400770303329455 -982,10.0,8.0,0.0,4.807692307692308 -982,10.0,10.0,0.0,-4.807692307692308 -982,11.0,3.0,0.0,4.191255364806866 -982,11.0,11.0,6.573961583776156,-24.424167659260668 -982,11.0,12.0,0.0,7.142857142857143 -982,11.0,13.0,-1.5265676088395577,3.1734252729654173 -982,11.0,14.0,-3.0953961826564296,6.097275864326261 -982,11.0,15.0,-1.9519977922801688,4.104359379111847 -982,12.0,11.0,0.0,7.142857142857143 -982,12.0,12.0,0.0,-7.142857142857143 -982,13.0,11.0,-1.5265676088395577,3.1734252729654173 -982,13.0,13.0,4.01751987283902,-5.424299332335067 -982,13.0,14.0,-2.4909522639994623,2.250874059369649 -982,14.0,11.0,-3.0953961826564296,6.097275864326261 -982,14.0,13.0,-2.4909522639994623,2.250874059369649 -982,14.0,14.0,9.365498545964757,-16.01163373210796 -982,14.0,17.0,-1.8108011504072024,3.687418931630696 -982,14.0,22.0,-1.9683489489016612,3.976064876781356 -982,15.0,11.0,-1.9519977922801688,4.104359379111847 -982,15.0,15.0,3.271064728633931,-8.94513365126506 -982,15.0,16.0,-1.3190669363537617,4.8407742721532125 -982,16.0,9.0,-3.956039125715353,10.317447719844054 -982,16.0,15.0,-1.3190669363537617,4.8407742721532125 -982,16.0,16.0,5.275106062069114,-15.158221991997266 -982,17.0,14.0,-1.8108011504072024,3.687418931630696 -982,17.0,17.0,4.886487584415919,-9.906177730909668 -982,17.0,18.0,-3.0756864340087167,6.218758799278971 -982,18.0,17.0,-3.0756864340087167,6.218758799278971 -982,18.0,18.0,8.958039375185187,-17.98346468163191 -982,18.0,19.0,-5.88235294117647,11.76470588235294 -982,19.0,9.0,-1.7848303152666305,3.98535828943083 -982,19.0,18.0,-5.88235294117647,11.76470588235294 -982,19.0,19.0,7.6671832564431,-15.75006417178377 -982,20.0,9.0,-5.101853820159654,10.98071411292983 -982,20.0,20.0,21.876495189895888,-45.10843276170355 -982,20.0,21.0,-16.774641369736234,34.127718648773715 -982,21.0,9.0,-2.619319553382597,5.400770303329455 -982,21.0,20.0,-16.774641369736234,34.127718648773715 -982,21.0,21.0,21.93449907537439,-43.48289181517921 -982,21.0,23.0,-2.5405381522555563,3.95440286307604 -982,22.0,14.0,-1.9683489489016612,3.976064876781356 -982,22.0,22.0,3.429754555384988,-6.965303617315433 -982,22.0,23.0,-1.4614056064833263,2.989238740534077 -982,23.0,21.0,-2.5405381522555563,3.95440286307604 -982,23.0,22.0,-1.4614056064833263,2.989238740534077 -982,23.0,23.0,5.311836702613133,-9.188263657315172 -982,23.0,24.0,-1.3098929438742493,2.287622053705056 -982,24.0,23.0,-1.3098929438742493,2.287622053705056 -982,24.0,24.0,4.495715080321987,-7.864978761969621 -982,24.0,25.0,-1.2165301194494855,1.8171440463475024 -982,24.0,26.0,-1.9692920169982515,3.760212661917064 -982,25.0,24.0,-1.2165301194494855,1.8171440463475024 -982,25.0,25.0,1.2165301194494855,-1.8171440463475024 -982,26.0,24.0,-1.9692920169982515,3.760212661917064 -982,26.0,26.0,3.652281470778589,-9.46044252232512 -982,26.0,27.0,0.0,2.608731947574922 -982,26.0,28.0,-0.99553355095268,1.881005840357816 -982,26.0,29.0,-0.6874559028276572,1.293971494797717 -982,27.0,5.0,-4.362844058012917,15.463571542897856 -982,27.0,7.0,-1.4439790613954469,4.540814658476248 -982,27.0,26.0,0.0,2.608731947574922 -982,27.0,27.0,5.806823119408364,-22.67145722159613 -982,28.0,26.0,-0.99553355095268,1.881005840357816 -982,28.0,28.0,1.9075867579849564,-3.604364401207048 -982,28.0,29.0,-0.9120532070322764,1.7233585608492326 -982,29.0,26.0,-0.6874559028276572,1.293971494797717 -982,29.0,28.0,-0.9120532070322764,1.7233585608492326 -982,29.0,29.0,1.5995091098599337,-3.0173300556469496 -983,0.0,0.0,6.765516048652632,-21.23160167089863 -983,0.0,1.0,-5.224646179885656,15.646726840803398 -983,0.0,2.0,-1.5408698687669766,5.631674830095234 -983,1.0,0.0,-5.224646179885656,15.646726840803398 -983,1.0,1.0,9.75228216552403,-30.648662892676068 -983,1.0,3.0,-1.7055303166990268,5.1973792282565086 -983,1.0,4.0,-1.1359607881738778,4.772479328281356 -983,1.0,5.0,-1.6861448807654689,5.116477495334806 -983,2.0,0.0,-1.5408698687669766,5.631674830095234 -983,2.0,2.0,9.736318911079088,-29.13794745915803 -983,2.0,3.0,-8.19544904231211,23.5308726290628 -983,3.0,1.0,-1.7055303166990268,5.1973792282565086 -983,3.0,2.0,-8.19544904231211,23.5308726290628 -983,3.0,3.0,16.314103089185693,-55.509410535254254 -983,3.0,5.0,-6.413123730174556,22.31120356548123 -983,3.0,11.0,0.0,4.191255364806866 -983,4.0,1.0,-1.1359607881738778,4.772479328281356 -983,4.0,4.0,4.089980824135861,-12.190647245055052 -983,4.0,6.0,-2.954020035961983,7.449267916773697 -983,5.0,1.0,-1.6861448807654689,5.116477495334806 -983,5.0,3.0,-6.413123730174556,22.31120356548123 -983,5.0,5.0,22.341631269034565,-82.8291478657789 -983,5.0,6.0,-3.590210423980992,11.02611441072814 -983,5.0,7.0,-6.289308176100628,22.0125786163522 -983,5.0,8.0,0.0,4.915840805411357 -983,5.0,9.0,0.0,1.8561002591115965 -983,5.0,27.0,-4.362844058012917,15.463571542897856 -983,6.0,4.0,-2.954020035961983,7.449267916773697 -983,6.0,5.0,-3.590210423980992,11.02611441072814 -983,6.0,6.0,6.544230459942975,-18.45668232750184 -983,7.0,5.0,-6.289308176100628,22.0125786163522 -983,7.0,7.0,7.733287237496075,-26.527493274828448 -983,7.0,27.0,-1.4439790613954469,4.540814658476248 -983,8.0,5.0,0.0,4.915840805411357 -983,8.0,8.0,0.0,-18.706293706293707 -983,8.0,9.0,0.0,9.090909090909092 -983,8.0,10.0,0.0,4.807692307692308 -983,9.0,5.0,0.0,1.8561002591115965 -983,9.0,8.0,0.0,9.090909090909092 -983,9.0,9.0,13.462042814524237,-41.3837606675224 -983,9.0,16.0,-3.956039125715353,10.317447719844054 -983,9.0,19.0,-1.7848303152666305,3.98535828943083 -983,9.0,20.0,-5.101853820159654,10.98071411292983 -983,9.0,21.0,-2.619319553382597,5.400770303329455 -983,10.0,8.0,0.0,4.807692307692308 -983,10.0,10.0,0.0,-4.807692307692308 -983,11.0,3.0,0.0,4.191255364806866 -983,11.0,11.0,6.573961583776156,-24.424167659260668 -983,11.0,12.0,0.0,7.142857142857143 -983,11.0,13.0,-1.5265676088395577,3.1734252729654173 -983,11.0,14.0,-3.0953961826564296,6.097275864326261 -983,11.0,15.0,-1.9519977922801688,4.104359379111847 -983,12.0,11.0,0.0,7.142857142857143 -983,12.0,12.0,0.0,-7.142857142857143 -983,13.0,11.0,-1.5265676088395577,3.1734252729654173 -983,13.0,13.0,4.01751987283902,-5.424299332335067 -983,13.0,14.0,-2.4909522639994623,2.250874059369649 -983,14.0,11.0,-3.0953961826564296,6.097275864326261 -983,14.0,13.0,-2.4909522639994623,2.250874059369649 -983,14.0,14.0,9.365498545964757,-16.01163373210796 -983,14.0,17.0,-1.8108011504072024,3.687418931630696 -983,14.0,22.0,-1.9683489489016612,3.976064876781356 -983,15.0,11.0,-1.9519977922801688,4.104359379111847 -983,15.0,15.0,3.271064728633931,-8.94513365126506 -983,15.0,16.0,-1.3190669363537617,4.8407742721532125 -983,16.0,9.0,-3.956039125715353,10.317447719844054 -983,16.0,15.0,-1.3190669363537617,4.8407742721532125 -983,16.0,16.0,5.275106062069114,-15.158221991997266 -983,17.0,14.0,-1.8108011504072024,3.687418931630696 -983,17.0,17.0,4.886487584415919,-9.906177730909668 -983,17.0,18.0,-3.0756864340087167,6.218758799278971 -983,18.0,17.0,-3.0756864340087167,6.218758799278971 -983,18.0,18.0,8.958039375185187,-17.98346468163191 -983,18.0,19.0,-5.88235294117647,11.76470588235294 -983,19.0,9.0,-1.7848303152666305,3.98535828943083 -983,19.0,18.0,-5.88235294117647,11.76470588235294 -983,19.0,19.0,7.6671832564431,-15.75006417178377 -983,20.0,9.0,-5.101853820159654,10.98071411292983 -983,20.0,20.0,21.876495189895888,-45.10843276170355 -983,20.0,21.0,-16.774641369736234,34.127718648773715 -983,21.0,9.0,-2.619319553382597,5.400770303329455 -983,21.0,20.0,-16.774641369736234,34.127718648773715 -983,21.0,21.0,21.93449907537439,-43.48289181517921 -983,21.0,23.0,-2.5405381522555563,3.95440286307604 -983,22.0,14.0,-1.9683489489016612,3.976064876781356 -983,22.0,22.0,3.429754555384988,-6.965303617315433 -983,22.0,23.0,-1.4614056064833263,2.989238740534077 -983,23.0,21.0,-2.5405381522555563,3.95440286307604 -983,23.0,22.0,-1.4614056064833263,2.989238740534077 -983,23.0,23.0,5.311836702613133,-9.188263657315172 -983,23.0,24.0,-1.3098929438742493,2.287622053705056 -983,24.0,23.0,-1.3098929438742493,2.287622053705056 -983,24.0,24.0,4.495715080321987,-7.864978761969621 -983,24.0,25.0,-1.2165301194494855,1.8171440463475024 -983,24.0,26.0,-1.9692920169982515,3.760212661917064 -983,25.0,24.0,-1.2165301194494855,1.8171440463475024 -983,25.0,25.0,1.2165301194494855,-1.8171440463475024 -983,26.0,24.0,-1.9692920169982515,3.760212661917064 -983,26.0,26.0,3.652281470778589,-9.46044252232512 -983,26.0,27.0,0.0,2.608731947574922 -983,26.0,28.0,-0.99553355095268,1.881005840357816 -983,26.0,29.0,-0.6874559028276572,1.293971494797717 -983,27.0,5.0,-4.362844058012917,15.463571542897856 -983,27.0,7.0,-1.4439790613954469,4.540814658476248 -983,27.0,26.0,0.0,2.608731947574922 -983,27.0,27.0,5.806823119408364,-22.67145722159613 -983,28.0,26.0,-0.99553355095268,1.881005840357816 -983,28.0,28.0,1.9075867579849564,-3.604364401207048 -983,28.0,29.0,-0.9120532070322764,1.7233585608492326 -983,29.0,26.0,-0.6874559028276572,1.293971494797717 -983,29.0,28.0,-0.9120532070322764,1.7233585608492326 -983,29.0,29.0,1.5995091098599337,-3.0173300556469496 -984,0.0,0.0,6.765516048652632,-21.23160167089863 -984,0.0,1.0,-5.224646179885656,15.646726840803398 -984,0.0,2.0,-1.5408698687669766,5.631674830095234 -984,1.0,0.0,-5.224646179885656,15.646726840803398 -984,1.0,1.0,9.75228216552403,-30.648662892676068 -984,1.0,3.0,-1.7055303166990268,5.1973792282565086 -984,1.0,4.0,-1.1359607881738778,4.772479328281356 -984,1.0,5.0,-1.6861448807654689,5.116477495334806 -984,2.0,0.0,-1.5408698687669766,5.631674830095234 -984,2.0,2.0,9.736318911079088,-29.13794745915803 -984,2.0,3.0,-8.19544904231211,23.5308726290628 -984,3.0,1.0,-1.7055303166990268,5.1973792282565086 -984,3.0,2.0,-8.19544904231211,23.5308726290628 -984,3.0,3.0,16.314103089185693,-55.509410535254254 -984,3.0,5.0,-6.413123730174556,22.31120356548123 -984,3.0,11.0,0.0,4.191255364806866 -984,4.0,1.0,-1.1359607881738778,4.772479328281356 -984,4.0,4.0,4.089980824135861,-12.190647245055052 -984,4.0,6.0,-2.954020035961983,7.449267916773697 -984,5.0,1.0,-1.6861448807654689,5.116477495334806 -984,5.0,3.0,-6.413123730174556,22.31120356548123 -984,5.0,5.0,22.341631269034565,-82.8291478657789 -984,5.0,6.0,-3.590210423980992,11.02611441072814 -984,5.0,7.0,-6.289308176100628,22.0125786163522 -984,5.0,8.0,0.0,4.915840805411357 -984,5.0,9.0,0.0,1.8561002591115965 -984,5.0,27.0,-4.362844058012917,15.463571542897856 -984,6.0,4.0,-2.954020035961983,7.449267916773697 -984,6.0,5.0,-3.590210423980992,11.02611441072814 -984,6.0,6.0,6.544230459942975,-18.45668232750184 -984,7.0,5.0,-6.289308176100628,22.0125786163522 -984,7.0,7.0,7.733287237496075,-26.527493274828448 -984,7.0,27.0,-1.4439790613954469,4.540814658476248 -984,8.0,5.0,0.0,4.915840805411357 -984,8.0,8.0,0.0,-18.706293706293707 -984,8.0,9.0,0.0,9.090909090909092 -984,8.0,10.0,0.0,4.807692307692308 -984,9.0,5.0,0.0,1.8561002591115965 -984,9.0,8.0,0.0,9.090909090909092 -984,9.0,9.0,8.36018899436458,-30.40304655459257 -984,9.0,16.0,-3.956039125715353,10.317447719844054 -984,9.0,19.0,-1.7848303152666305,3.98535828943083 -984,9.0,21.0,-2.619319553382597,5.400770303329455 -984,10.0,8.0,0.0,4.807692307692308 -984,10.0,10.0,0.0,-4.807692307692308 -984,11.0,3.0,0.0,4.191255364806866 -984,11.0,11.0,6.573961583776156,-24.424167659260668 -984,11.0,12.0,0.0,7.142857142857143 -984,11.0,13.0,-1.5265676088395577,3.1734252729654173 -984,11.0,14.0,-3.0953961826564296,6.097275864326261 -984,11.0,15.0,-1.9519977922801688,4.104359379111847 -984,12.0,11.0,0.0,7.142857142857143 -984,12.0,12.0,0.0,-7.142857142857143 -984,13.0,11.0,-1.5265676088395577,3.1734252729654173 -984,13.0,13.0,4.01751987283902,-5.424299332335067 -984,13.0,14.0,-2.4909522639994623,2.250874059369649 -984,14.0,11.0,-3.0953961826564296,6.097275864326261 -984,14.0,13.0,-2.4909522639994623,2.250874059369649 -984,14.0,14.0,9.365498545964757,-16.01163373210796 -984,14.0,17.0,-1.8108011504072024,3.687418931630696 -984,14.0,22.0,-1.9683489489016612,3.976064876781356 -984,15.0,11.0,-1.9519977922801688,4.104359379111847 -984,15.0,15.0,3.271064728633931,-8.94513365126506 -984,15.0,16.0,-1.3190669363537617,4.8407742721532125 -984,16.0,9.0,-3.956039125715353,10.317447719844054 -984,16.0,15.0,-1.3190669363537617,4.8407742721532125 -984,16.0,16.0,5.275106062069114,-15.158221991997266 -984,17.0,14.0,-1.8108011504072024,3.687418931630696 -984,17.0,17.0,4.886487584415919,-9.906177730909668 -984,17.0,18.0,-3.0756864340087167,6.218758799278971 -984,18.0,17.0,-3.0756864340087167,6.218758799278971 -984,18.0,18.0,8.958039375185187,-17.98346468163191 -984,18.0,19.0,-5.88235294117647,11.76470588235294 -984,19.0,9.0,-1.7848303152666305,3.98535828943083 -984,19.0,18.0,-5.88235294117647,11.76470588235294 -984,19.0,19.0,7.6671832564431,-15.75006417178377 -984,20.0,20.0,16.774641369736234,-34.127718648773715 -984,20.0,21.0,-16.774641369736234,34.127718648773715 -984,21.0,9.0,-2.619319553382597,5.400770303329455 -984,21.0,20.0,-16.774641369736234,34.127718648773715 -984,21.0,21.0,21.93449907537439,-43.48289181517921 -984,21.0,23.0,-2.5405381522555563,3.95440286307604 -984,22.0,14.0,-1.9683489489016612,3.976064876781356 -984,22.0,22.0,3.429754555384988,-6.965303617315433 -984,22.0,23.0,-1.4614056064833263,2.989238740534077 -984,23.0,21.0,-2.5405381522555563,3.95440286307604 -984,23.0,22.0,-1.4614056064833263,2.989238740534077 -984,23.0,23.0,4.001943758738883,-6.900641603610116 -984,24.0,24.0,3.185822136447737,-5.577356708264566 -984,24.0,25.0,-1.2165301194494855,1.8171440463475024 -984,24.0,26.0,-1.9692920169982515,3.760212661917064 -984,25.0,24.0,-1.2165301194494855,1.8171440463475024 -984,25.0,25.0,1.2165301194494855,-1.8171440463475024 -984,26.0,24.0,-1.9692920169982515,3.760212661917064 -984,26.0,26.0,2.9648255679509314,-8.166471027527404 -984,26.0,27.0,0.0,2.608731947574922 -984,26.0,28.0,-0.99553355095268,1.881005840357816 -984,27.0,5.0,-4.362844058012917,15.463571542897856 -984,27.0,7.0,-1.4439790613954469,4.540814658476248 -984,27.0,26.0,0.0,2.608731947574922 -984,27.0,27.0,5.806823119408364,-22.67145722159613 -984,28.0,26.0,-0.99553355095268,1.881005840357816 -984,28.0,28.0,1.9075867579849564,-3.604364401207048 -984,28.0,29.0,-0.9120532070322764,1.7233585608492326 -984,29.0,28.0,-0.9120532070322764,1.7233585608492326 -984,29.0,29.0,0.9120532070322764,-1.7233585608492326 -985,0.0,0.0,6.765516048652632,-21.23160167089863 -985,0.0,1.0,-5.224646179885656,15.646726840803398 -985,0.0,2.0,-1.5408698687669766,5.631674830095234 -985,1.0,0.0,-5.224646179885656,15.646726840803398 -985,1.0,1.0,9.75228216552403,-30.648662892676068 -985,1.0,3.0,-1.7055303166990268,5.1973792282565086 -985,1.0,4.0,-1.1359607881738778,4.772479328281356 -985,1.0,5.0,-1.6861448807654689,5.116477495334806 -985,2.0,0.0,-1.5408698687669766,5.631674830095234 -985,2.0,2.0,9.736318911079088,-29.13794745915803 -985,2.0,3.0,-8.19544904231211,23.5308726290628 -985,3.0,1.0,-1.7055303166990268,5.1973792282565086 -985,3.0,2.0,-8.19544904231211,23.5308726290628 -985,3.0,3.0,16.314103089185693,-55.509410535254254 -985,3.0,5.0,-6.413123730174556,22.31120356548123 -985,3.0,11.0,0.0,4.191255364806866 -985,4.0,1.0,-1.1359607881738778,4.772479328281356 -985,4.0,4.0,4.089980824135861,-12.190647245055052 -985,4.0,6.0,-2.954020035961983,7.449267916773697 -985,5.0,1.0,-1.6861448807654689,5.116477495334806 -985,5.0,3.0,-6.413123730174556,22.31120356548123 -985,5.0,5.0,22.341631269034565,-82.8291478657789 -985,5.0,6.0,-3.590210423980992,11.02611441072814 -985,5.0,7.0,-6.289308176100628,22.0125786163522 -985,5.0,8.0,0.0,4.915840805411357 -985,5.0,9.0,0.0,1.8561002591115965 -985,5.0,27.0,-4.362844058012917,15.463571542897856 -985,6.0,4.0,-2.954020035961983,7.449267916773697 -985,6.0,5.0,-3.590210423980992,11.02611441072814 -985,6.0,6.0,6.544230459942975,-18.45668232750184 -985,7.0,5.0,-6.289308176100628,22.0125786163522 -985,7.0,7.0,7.733287237496075,-26.527493274828448 -985,7.0,27.0,-1.4439790613954469,4.540814658476248 -985,8.0,5.0,0.0,4.915840805411357 -985,8.0,8.0,0.0,-18.706293706293707 -985,8.0,9.0,0.0,9.090909090909092 -985,8.0,10.0,0.0,4.807692307692308 -985,9.0,5.0,0.0,1.8561002591115965 -985,9.0,8.0,0.0,9.090909090909092 -985,9.0,9.0,13.462042814524237,-41.3837606675224 -985,9.0,16.0,-3.956039125715353,10.317447719844054 -985,9.0,19.0,-1.7848303152666305,3.98535828943083 -985,9.0,20.0,-5.101853820159654,10.98071411292983 -985,9.0,21.0,-2.619319553382597,5.400770303329455 -985,10.0,8.0,0.0,4.807692307692308 -985,10.0,10.0,0.0,-4.807692307692308 -985,11.0,3.0,0.0,4.191255364806866 -985,11.0,11.0,6.573961583776156,-24.424167659260668 -985,11.0,12.0,0.0,7.142857142857143 -985,11.0,13.0,-1.5265676088395577,3.1734252729654173 -985,11.0,14.0,-3.0953961826564296,6.097275864326261 -985,11.0,15.0,-1.9519977922801688,4.104359379111847 -985,12.0,11.0,0.0,7.142857142857143 -985,12.0,12.0,0.0,-7.142857142857143 -985,13.0,11.0,-1.5265676088395577,3.1734252729654173 -985,13.0,13.0,4.01751987283902,-5.424299332335067 -985,13.0,14.0,-2.4909522639994623,2.250874059369649 -985,14.0,11.0,-3.0953961826564296,6.097275864326261 -985,14.0,13.0,-2.4909522639994623,2.250874059369649 -985,14.0,14.0,9.365498545964757,-16.01163373210796 -985,14.0,17.0,-1.8108011504072024,3.687418931630696 -985,14.0,22.0,-1.9683489489016612,3.976064876781356 -985,15.0,11.0,-1.9519977922801688,4.104359379111847 -985,15.0,15.0,3.271064728633931,-8.94513365126506 -985,15.0,16.0,-1.3190669363537617,4.8407742721532125 -985,16.0,9.0,-3.956039125715353,10.317447719844054 -985,16.0,15.0,-1.3190669363537617,4.8407742721532125 -985,16.0,16.0,5.275106062069114,-15.158221991997266 -985,17.0,14.0,-1.8108011504072024,3.687418931630696 -985,17.0,17.0,4.886487584415919,-9.906177730909668 -985,17.0,18.0,-3.0756864340087167,6.218758799278971 -985,18.0,17.0,-3.0756864340087167,6.218758799278971 -985,18.0,18.0,8.958039375185187,-17.98346468163191 -985,18.0,19.0,-5.88235294117647,11.76470588235294 -985,19.0,9.0,-1.7848303152666305,3.98535828943083 -985,19.0,18.0,-5.88235294117647,11.76470588235294 -985,19.0,19.0,7.6671832564431,-15.75006417178377 -985,20.0,9.0,-5.101853820159654,10.98071411292983 -985,20.0,20.0,21.876495189895888,-45.10843276170355 -985,20.0,21.0,-16.774641369736234,34.127718648773715 -985,21.0,9.0,-2.619319553382597,5.400770303329455 -985,21.0,20.0,-16.774641369736234,34.127718648773715 -985,21.0,21.0,21.93449907537439,-43.48289181517921 -985,21.0,23.0,-2.5405381522555563,3.95440286307604 -985,22.0,14.0,-1.9683489489016612,3.976064876781356 -985,22.0,22.0,3.429754555384988,-6.965303617315433 -985,22.0,23.0,-1.4614056064833263,2.989238740534077 -985,23.0,21.0,-2.5405381522555563,3.95440286307604 -985,23.0,22.0,-1.4614056064833263,2.989238740534077 -985,23.0,23.0,5.311836702613133,-9.188263657315172 -985,23.0,24.0,-1.3098929438742493,2.287622053705056 -985,24.0,23.0,-1.3098929438742493,2.287622053705056 -985,24.0,24.0,4.495715080321987,-7.864978761969621 -985,24.0,25.0,-1.2165301194494855,1.8171440463475024 -985,24.0,26.0,-1.9692920169982515,3.760212661917064 -985,25.0,24.0,-1.2165301194494855,1.8171440463475024 -985,25.0,25.0,1.2165301194494855,-1.8171440463475024 -985,26.0,24.0,-1.9692920169982515,3.760212661917064 -985,26.0,26.0,3.652281470778589,-9.46044252232512 -985,26.0,27.0,0.0,2.608731947574922 -985,26.0,28.0,-0.99553355095268,1.881005840357816 -985,26.0,29.0,-0.6874559028276572,1.293971494797717 -985,27.0,5.0,-4.362844058012917,15.463571542897856 -985,27.0,7.0,-1.4439790613954469,4.540814658476248 -985,27.0,26.0,0.0,2.608731947574922 -985,27.0,27.0,5.806823119408364,-22.67145722159613 -985,28.0,26.0,-0.99553355095268,1.881005840357816 -985,28.0,28.0,1.9075867579849564,-3.604364401207048 -985,28.0,29.0,-0.9120532070322764,1.7233585608492326 -985,29.0,26.0,-0.6874559028276572,1.293971494797717 -985,29.0,28.0,-0.9120532070322764,1.7233585608492326 -985,29.0,29.0,1.5995091098599337,-3.0173300556469496 -986,0.0,0.0,6.765516048652632,-21.23160167089863 -986,0.0,1.0,-5.224646179885656,15.646726840803398 -986,0.0,2.0,-1.5408698687669766,5.631674830095234 -986,1.0,0.0,-5.224646179885656,15.646726840803398 -986,1.0,1.0,9.75228216552403,-30.648662892676068 -986,1.0,3.0,-1.7055303166990268,5.1973792282565086 -986,1.0,4.0,-1.1359607881738778,4.772479328281356 -986,1.0,5.0,-1.6861448807654689,5.116477495334806 -986,2.0,0.0,-1.5408698687669766,5.631674830095234 -986,2.0,2.0,9.736318911079088,-29.13794745915803 -986,2.0,3.0,-8.19544904231211,23.5308726290628 -986,3.0,1.0,-1.7055303166990268,5.1973792282565086 -986,3.0,2.0,-8.19544904231211,23.5308726290628 -986,3.0,3.0,9.900979359011137,-33.202706969773025 -986,3.0,11.0,0.0,4.191255364806866 -986,4.0,1.0,-1.1359607881738778,4.772479328281356 -986,4.0,4.0,1.1359607881738778,-4.751579328281355 -986,5.0,1.0,-1.6861448807654689,5.116477495334806 -986,5.0,5.0,15.928507538860009,-60.52244430029767 -986,5.0,6.0,-3.590210423980992,11.02611441072814 -986,5.0,7.0,-6.289308176100628,22.0125786163522 -986,5.0,8.0,0.0,4.915840805411357 -986,5.0,9.0,0.0,1.8561002591115965 -986,5.0,27.0,-4.362844058012917,15.463571542897856 -986,6.0,5.0,-3.590210423980992,11.02611441072814 -986,6.0,6.0,3.590210423980992,-11.01761441072814 -986,7.0,5.0,-6.289308176100628,22.0125786163522 -986,7.0,7.0,7.733287237496075,-26.527493274828448 -986,7.0,27.0,-1.4439790613954469,4.540814658476248 -986,8.0,5.0,0.0,4.915840805411357 -986,8.0,8.0,0.0,-18.706293706293707 -986,8.0,9.0,0.0,9.090909090909092 -986,8.0,10.0,0.0,4.807692307692308 -986,9.0,5.0,0.0,1.8561002591115965 -986,9.0,8.0,0.0,9.090909090909092 -986,9.0,9.0,13.462042814524237,-41.3837606675224 -986,9.0,16.0,-3.956039125715353,10.317447719844054 -986,9.0,19.0,-1.7848303152666305,3.98535828943083 -986,9.0,20.0,-5.101853820159654,10.98071411292983 -986,9.0,21.0,-2.619319553382597,5.400770303329455 -986,10.0,8.0,0.0,4.807692307692308 -986,10.0,10.0,0.0,-4.807692307692308 -986,11.0,3.0,0.0,4.191255364806866 -986,11.0,11.0,5.047393974936599,-21.25074238629525 -986,11.0,12.0,0.0,7.142857142857143 -986,11.0,14.0,-3.0953961826564296,6.097275864326261 -986,11.0,15.0,-1.9519977922801688,4.104359379111847 -986,12.0,11.0,0.0,7.142857142857143 -986,12.0,12.0,0.0,-7.142857142857143 -986,13.0,13.0,2.4909522639994623,-2.250874059369649 -986,13.0,14.0,-2.4909522639994623,2.250874059369649 -986,14.0,11.0,-3.0953961826564296,6.097275864326261 -986,14.0,13.0,-2.4909522639994623,2.250874059369649 -986,14.0,14.0,7.397149597063095,-12.035568855326606 -986,14.0,17.0,-1.8108011504072024,3.687418931630696 -986,15.0,11.0,-1.9519977922801688,4.104359379111847 -986,15.0,15.0,3.271064728633931,-8.94513365126506 -986,15.0,16.0,-1.3190669363537617,4.8407742721532125 -986,16.0,9.0,-3.956039125715353,10.317447719844054 -986,16.0,15.0,-1.3190669363537617,4.8407742721532125 -986,16.0,16.0,5.275106062069114,-15.158221991997266 -986,17.0,14.0,-1.8108011504072024,3.687418931630696 -986,17.0,17.0,4.886487584415919,-9.906177730909668 -986,17.0,18.0,-3.0756864340087167,6.218758799278971 -986,18.0,17.0,-3.0756864340087167,6.218758799278971 -986,18.0,18.0,8.958039375185187,-17.98346468163191 -986,18.0,19.0,-5.88235294117647,11.76470588235294 -986,19.0,9.0,-1.7848303152666305,3.98535828943083 -986,19.0,18.0,-5.88235294117647,11.76470588235294 -986,19.0,19.0,7.6671832564431,-15.75006417178377 -986,20.0,9.0,-5.101853820159654,10.98071411292983 -986,20.0,20.0,21.876495189895888,-45.10843276170355 -986,20.0,21.0,-16.774641369736234,34.127718648773715 -986,21.0,9.0,-2.619319553382597,5.400770303329455 -986,21.0,20.0,-16.774641369736234,34.127718648773715 -986,21.0,21.0,21.93449907537439,-43.48289181517921 -986,21.0,23.0,-2.5405381522555563,3.95440286307604 -986,22.0,22.0,1.4614056064833263,-2.989238740534077 -986,22.0,23.0,-1.4614056064833263,2.989238740534077 -986,23.0,21.0,-2.5405381522555563,3.95440286307604 -986,23.0,22.0,-1.4614056064833263,2.989238740534077 -986,23.0,23.0,5.311836702613133,-9.188263657315172 -986,23.0,24.0,-1.3098929438742493,2.287622053705056 -986,24.0,23.0,-1.3098929438742493,2.287622053705056 -986,24.0,24.0,2.526423063323735,-4.104766100052558 -986,24.0,25.0,-1.2165301194494855,1.8171440463475024 -986,25.0,24.0,-1.2165301194494855,1.8171440463475024 -986,25.0,25.0,1.2165301194494855,-1.8171440463475024 -986,26.0,26.0,1.6829894537803372,-5.700229860408058 -986,26.0,27.0,0.0,2.608731947574922 -986,26.0,28.0,-0.99553355095268,1.881005840357816 -986,26.0,29.0,-0.6874559028276572,1.293971494797717 -986,27.0,5.0,-4.362844058012917,15.463571542897856 -986,27.0,7.0,-1.4439790613954469,4.540814658476248 -986,27.0,26.0,0.0,2.608731947574922 -986,27.0,27.0,5.806823119408364,-22.67145722159613 -986,28.0,26.0,-0.99553355095268,1.881005840357816 -986,28.0,28.0,1.9075867579849564,-3.604364401207048 -986,28.0,29.0,-0.9120532070322764,1.7233585608492326 -986,29.0,26.0,-0.6874559028276572,1.293971494797717 -986,29.0,28.0,-0.9120532070322764,1.7233585608492326 -986,29.0,29.0,1.5995091098599337,-3.0173300556469496 -987,0.0,0.0,6.765516048652632,-21.23160167089863 -987,0.0,1.0,-5.224646179885656,15.646726840803398 -987,0.0,2.0,-1.5408698687669766,5.631674830095234 -987,1.0,0.0,-5.224646179885656,15.646726840803398 -987,1.0,1.0,9.75228216552403,-30.648662892676068 -987,1.0,3.0,-1.7055303166990268,5.1973792282565086 -987,1.0,4.0,-1.1359607881738778,4.772479328281356 -987,1.0,5.0,-1.6861448807654689,5.116477495334806 -987,2.0,0.0,-1.5408698687669766,5.631674830095234 -987,2.0,2.0,9.736318911079088,-29.13794745915803 -987,2.0,3.0,-8.19544904231211,23.5308726290628 -987,3.0,1.0,-1.7055303166990268,5.1973792282565086 -987,3.0,2.0,-8.19544904231211,23.5308726290628 -987,3.0,3.0,16.314103089185693,-55.509410535254254 -987,3.0,5.0,-6.413123730174556,22.31120356548123 -987,3.0,11.0,0.0,4.191255364806866 -987,4.0,1.0,-1.1359607881738778,4.772479328281356 -987,4.0,4.0,4.089980824135861,-12.190647245055052 -987,4.0,6.0,-2.954020035961983,7.449267916773697 -987,5.0,1.0,-1.6861448807654689,5.116477495334806 -987,5.0,3.0,-6.413123730174556,22.31120356548123 -987,5.0,5.0,22.341631269034565,-82.8291478657789 -987,5.0,6.0,-3.590210423980992,11.02611441072814 -987,5.0,7.0,-6.289308176100628,22.0125786163522 -987,5.0,8.0,0.0,4.915840805411357 -987,5.0,9.0,0.0,1.8561002591115965 -987,5.0,27.0,-4.362844058012917,15.463571542897856 -987,6.0,4.0,-2.954020035961983,7.449267916773697 -987,6.0,5.0,-3.590210423980992,11.02611441072814 -987,6.0,6.0,6.544230459942975,-18.45668232750184 -987,7.0,5.0,-6.289308176100628,22.0125786163522 -987,7.0,7.0,7.733287237496075,-26.527493274828448 -987,7.0,27.0,-1.4439790613954469,4.540814658476248 -987,8.0,5.0,0.0,4.915840805411357 -987,8.0,8.0,0.0,-18.706293706293707 -987,8.0,9.0,0.0,9.090909090909092 -987,8.0,10.0,0.0,4.807692307692308 -987,9.0,5.0,0.0,1.8561002591115965 -987,9.0,8.0,0.0,9.090909090909092 -987,9.0,9.0,13.462042814524237,-41.3837606675224 -987,9.0,16.0,-3.956039125715353,10.317447719844054 -987,9.0,19.0,-1.7848303152666305,3.98535828943083 -987,9.0,20.0,-5.101853820159654,10.98071411292983 -987,9.0,21.0,-2.619319553382597,5.400770303329455 -987,10.0,8.0,0.0,4.807692307692308 -987,10.0,10.0,0.0,-4.807692307692308 -987,11.0,3.0,0.0,4.191255364806866 -987,11.0,11.0,6.573961583776156,-24.424167659260668 -987,11.0,12.0,0.0,7.142857142857143 -987,11.0,13.0,-1.5265676088395577,3.1734252729654173 -987,11.0,14.0,-3.0953961826564296,6.097275864326261 -987,11.0,15.0,-1.9519977922801688,4.104359379111847 -987,12.0,11.0,0.0,7.142857142857143 -987,12.0,12.0,0.0,-7.142857142857143 -987,13.0,11.0,-1.5265676088395577,3.1734252729654173 -987,13.0,13.0,4.01751987283902,-5.424299332335067 -987,13.0,14.0,-2.4909522639994623,2.250874059369649 -987,14.0,11.0,-3.0953961826564296,6.097275864326261 -987,14.0,13.0,-2.4909522639994623,2.250874059369649 -987,14.0,14.0,9.365498545964757,-16.01163373210796 -987,14.0,17.0,-1.8108011504072024,3.687418931630696 -987,14.0,22.0,-1.9683489489016612,3.976064876781356 -987,15.0,11.0,-1.9519977922801688,4.104359379111847 -987,15.0,15.0,3.271064728633931,-8.94513365126506 -987,15.0,16.0,-1.3190669363537617,4.8407742721532125 -987,16.0,9.0,-3.956039125715353,10.317447719844054 -987,16.0,15.0,-1.3190669363537617,4.8407742721532125 -987,16.0,16.0,5.275106062069114,-15.158221991997266 -987,17.0,14.0,-1.8108011504072024,3.687418931630696 -987,17.0,17.0,4.886487584415919,-9.906177730909668 -987,17.0,18.0,-3.0756864340087167,6.218758799278971 -987,18.0,17.0,-3.0756864340087167,6.218758799278971 -987,18.0,18.0,8.958039375185187,-17.98346468163191 -987,18.0,19.0,-5.88235294117647,11.76470588235294 -987,19.0,9.0,-1.7848303152666305,3.98535828943083 -987,19.0,18.0,-5.88235294117647,11.76470588235294 -987,19.0,19.0,7.6671832564431,-15.75006417178377 -987,20.0,9.0,-5.101853820159654,10.98071411292983 -987,20.0,20.0,21.876495189895888,-45.10843276170355 -987,20.0,21.0,-16.774641369736234,34.127718648773715 -987,21.0,9.0,-2.619319553382597,5.400770303329455 -987,21.0,20.0,-16.774641369736234,34.127718648773715 -987,21.0,21.0,21.93449907537439,-43.48289181517921 -987,21.0,23.0,-2.5405381522555563,3.95440286307604 -987,22.0,14.0,-1.9683489489016612,3.976064876781356 -987,22.0,22.0,3.429754555384988,-6.965303617315433 -987,22.0,23.0,-1.4614056064833263,2.989238740534077 -987,23.0,21.0,-2.5405381522555563,3.95440286307604 -987,23.0,22.0,-1.4614056064833263,2.989238740534077 -987,23.0,23.0,5.311836702613133,-9.188263657315172 -987,23.0,24.0,-1.3098929438742493,2.287622053705056 -987,24.0,23.0,-1.3098929438742493,2.287622053705056 -987,24.0,24.0,4.495715080321987,-7.864978761969621 -987,24.0,25.0,-1.2165301194494855,1.8171440463475024 -987,24.0,26.0,-1.9692920169982515,3.760212661917064 -987,25.0,24.0,-1.2165301194494855,1.8171440463475024 -987,25.0,25.0,1.2165301194494855,-1.8171440463475024 -987,26.0,24.0,-1.9692920169982515,3.760212661917064 -987,26.0,26.0,3.652281470778589,-9.46044252232512 -987,26.0,27.0,0.0,2.608731947574922 -987,26.0,28.0,-0.99553355095268,1.881005840357816 -987,26.0,29.0,-0.6874559028276572,1.293971494797717 -987,27.0,5.0,-4.362844058012917,15.463571542897856 -987,27.0,7.0,-1.4439790613954469,4.540814658476248 -987,27.0,26.0,0.0,2.608731947574922 -987,27.0,27.0,5.806823119408364,-22.67145722159613 -987,28.0,26.0,-0.99553355095268,1.881005840357816 -987,28.0,28.0,1.9075867579849564,-3.604364401207048 -987,28.0,29.0,-0.9120532070322764,1.7233585608492326 -987,29.0,26.0,-0.6874559028276572,1.293971494797717 -987,29.0,28.0,-0.9120532070322764,1.7233585608492326 -987,29.0,29.0,1.5995091098599337,-3.0173300556469496 -988,0.0,0.0,6.765516048652632,-21.23160167089863 -988,0.0,1.0,-5.224646179885656,15.646726840803398 -988,0.0,2.0,-1.5408698687669766,5.631674830095234 -988,1.0,0.0,-5.224646179885656,15.646726840803398 -988,1.0,1.0,8.066137284758561,-25.55088539734126 -988,1.0,3.0,-1.7055303166990268,5.1973792282565086 -988,1.0,4.0,-1.1359607881738778,4.772479328281356 -988,2.0,0.0,-1.5408698687669766,5.631674830095234 -988,2.0,2.0,9.736318911079088,-29.13794745915803 -988,2.0,3.0,-8.19544904231211,23.5308726290628 -988,3.0,1.0,-1.7055303166990268,5.1973792282565086 -988,3.0,2.0,-8.19544904231211,23.5308726290628 -988,3.0,3.0,16.314103089185693,-55.509410535254254 -988,3.0,5.0,-6.413123730174556,22.31120356548123 -988,3.0,11.0,0.0,4.191255364806866 -988,4.0,1.0,-1.1359607881738778,4.772479328281356 -988,4.0,4.0,4.089980824135861,-12.190647245055052 -988,4.0,6.0,-2.954020035961983,7.449267916773697 -988,5.0,3.0,-6.413123730174556,22.31120356548123 -988,5.0,5.0,20.655486388269097,-77.7313703704441 -988,5.0,6.0,-3.590210423980992,11.02611441072814 -988,5.0,7.0,-6.289308176100628,22.0125786163522 -988,5.0,8.0,0.0,4.915840805411357 -988,5.0,9.0,0.0,1.8561002591115965 -988,5.0,27.0,-4.362844058012917,15.463571542897856 -988,6.0,4.0,-2.954020035961983,7.449267916773697 -988,6.0,5.0,-3.590210423980992,11.02611441072814 -988,6.0,6.0,6.544230459942975,-18.45668232750184 -988,7.0,5.0,-6.289308176100628,22.0125786163522 -988,7.0,7.0,7.733287237496075,-26.527493274828448 -988,7.0,27.0,-1.4439790613954469,4.540814658476248 -988,8.0,5.0,0.0,4.915840805411357 -988,8.0,8.0,0.0,-18.706293706293707 -988,8.0,9.0,0.0,9.090909090909092 -988,8.0,10.0,0.0,4.807692307692308 -988,9.0,5.0,0.0,1.8561002591115965 -988,9.0,8.0,0.0,9.090909090909092 -988,9.0,9.0,13.462042814524237,-41.3837606675224 -988,9.0,16.0,-3.956039125715353,10.317447719844054 -988,9.0,19.0,-1.7848303152666305,3.98535828943083 -988,9.0,20.0,-5.101853820159654,10.98071411292983 -988,9.0,21.0,-2.619319553382597,5.400770303329455 -988,10.0,8.0,0.0,4.807692307692308 -988,10.0,10.0,0.0,-4.807692307692308 -988,11.0,3.0,0.0,4.191255364806866 -988,11.0,11.0,6.573961583776156,-24.424167659260668 -988,11.0,12.0,0.0,7.142857142857143 -988,11.0,13.0,-1.5265676088395577,3.1734252729654173 -988,11.0,14.0,-3.0953961826564296,6.097275864326261 -988,11.0,15.0,-1.9519977922801688,4.104359379111847 -988,12.0,11.0,0.0,7.142857142857143 -988,12.0,12.0,0.0,-7.142857142857143 -988,13.0,11.0,-1.5265676088395577,3.1734252729654173 -988,13.0,13.0,4.01751987283902,-5.424299332335067 -988,13.0,14.0,-2.4909522639994623,2.250874059369649 -988,14.0,11.0,-3.0953961826564296,6.097275864326261 -988,14.0,13.0,-2.4909522639994623,2.250874059369649 -988,14.0,14.0,9.365498545964757,-16.01163373210796 -988,14.0,17.0,-1.8108011504072024,3.687418931630696 -988,14.0,22.0,-1.9683489489016612,3.976064876781356 -988,15.0,11.0,-1.9519977922801688,4.104359379111847 -988,15.0,15.0,3.271064728633931,-8.94513365126506 -988,15.0,16.0,-1.3190669363537617,4.8407742721532125 -988,16.0,9.0,-3.956039125715353,10.317447719844054 -988,16.0,15.0,-1.3190669363537617,4.8407742721532125 -988,16.0,16.0,5.275106062069114,-15.158221991997266 -988,17.0,14.0,-1.8108011504072024,3.687418931630696 -988,17.0,17.0,4.886487584415919,-9.906177730909668 -988,17.0,18.0,-3.0756864340087167,6.218758799278971 -988,18.0,17.0,-3.0756864340087167,6.218758799278971 -988,18.0,18.0,8.958039375185187,-17.98346468163191 -988,18.0,19.0,-5.88235294117647,11.76470588235294 -988,19.0,9.0,-1.7848303152666305,3.98535828943083 -988,19.0,18.0,-5.88235294117647,11.76470588235294 -988,19.0,19.0,7.6671832564431,-15.75006417178377 -988,20.0,9.0,-5.101853820159654,10.98071411292983 -988,20.0,20.0,21.876495189895888,-45.10843276170355 -988,20.0,21.0,-16.774641369736234,34.127718648773715 -988,21.0,9.0,-2.619319553382597,5.400770303329455 -988,21.0,20.0,-16.774641369736234,34.127718648773715 -988,21.0,21.0,21.93449907537439,-43.48289181517921 -988,21.0,23.0,-2.5405381522555563,3.95440286307604 -988,22.0,14.0,-1.9683489489016612,3.976064876781356 -988,22.0,22.0,3.429754555384988,-6.965303617315433 -988,22.0,23.0,-1.4614056064833263,2.989238740534077 -988,23.0,21.0,-2.5405381522555563,3.95440286307604 -988,23.0,22.0,-1.4614056064833263,2.989238740534077 -988,23.0,23.0,5.311836702613133,-9.188263657315172 -988,23.0,24.0,-1.3098929438742493,2.287622053705056 -988,24.0,23.0,-1.3098929438742493,2.287622053705056 -988,24.0,24.0,4.495715080321987,-7.864978761969621 -988,24.0,25.0,-1.2165301194494855,1.8171440463475024 -988,24.0,26.0,-1.9692920169982515,3.760212661917064 -988,25.0,24.0,-1.2165301194494855,1.8171440463475024 -988,25.0,25.0,1.2165301194494855,-1.8171440463475024 -988,26.0,24.0,-1.9692920169982515,3.760212661917064 -988,26.0,26.0,3.652281470778589,-9.46044252232512 -988,26.0,27.0,0.0,2.608731947574922 -988,26.0,28.0,-0.99553355095268,1.881005840357816 -988,26.0,29.0,-0.6874559028276572,1.293971494797717 -988,27.0,5.0,-4.362844058012917,15.463571542897856 -988,27.0,7.0,-1.4439790613954469,4.540814658476248 -988,27.0,26.0,0.0,2.608731947574922 -988,27.0,27.0,5.806823119408364,-22.67145722159613 -988,28.0,26.0,-0.99553355095268,1.881005840357816 -988,28.0,28.0,1.9075867579849564,-3.604364401207048 -988,28.0,29.0,-0.9120532070322764,1.7233585608492326 -988,29.0,26.0,-0.6874559028276572,1.293971494797717 -988,29.0,28.0,-0.9120532070322764,1.7233585608492326 -988,29.0,29.0,1.5995091098599337,-3.0173300556469496 -989,0.0,0.0,1.5408698687669766,-5.611274830095233 -989,0.0,2.0,-1.5408698687669766,5.631674830095234 -989,1.0,1.0,4.527635985638374,-15.028336051872673 -989,1.0,3.0,-1.7055303166990268,5.1973792282565086 -989,1.0,4.0,-1.1359607881738778,4.772479328281356 -989,1.0,5.0,-1.6861448807654689,5.116477495334806 -989,2.0,0.0,-1.5408698687669766,5.631674830095234 -989,2.0,2.0,9.736318911079088,-29.13794745915803 -989,2.0,3.0,-8.19544904231211,23.5308726290628 -989,3.0,1.0,-1.7055303166990268,5.1973792282565086 -989,3.0,2.0,-8.19544904231211,23.5308726290628 -989,3.0,3.0,16.314103089185693,-55.509410535254254 -989,3.0,5.0,-6.413123730174556,22.31120356548123 -989,3.0,11.0,0.0,4.191255364806866 -989,4.0,1.0,-1.1359607881738778,4.772479328281356 -989,4.0,4.0,4.089980824135861,-12.190647245055052 -989,4.0,6.0,-2.954020035961983,7.449267916773697 -989,5.0,1.0,-1.6861448807654689,5.116477495334806 -989,5.0,3.0,-6.413123730174556,22.31120356548123 -989,5.0,5.0,22.341631269034565,-82.8291478657789 -989,5.0,6.0,-3.590210423980992,11.02611441072814 -989,5.0,7.0,-6.289308176100628,22.0125786163522 -989,5.0,8.0,0.0,4.915840805411357 -989,5.0,9.0,0.0,1.8561002591115965 -989,5.0,27.0,-4.362844058012917,15.463571542897856 -989,6.0,4.0,-2.954020035961983,7.449267916773697 -989,6.0,5.0,-3.590210423980992,11.02611441072814 -989,6.0,6.0,6.544230459942975,-18.45668232750184 -989,7.0,5.0,-6.289308176100628,22.0125786163522 -989,7.0,7.0,7.733287237496075,-26.527493274828448 -989,7.0,27.0,-1.4439790613954469,4.540814658476248 -989,8.0,5.0,0.0,4.915840805411357 -989,8.0,8.0,0.0,-18.706293706293707 -989,8.0,9.0,0.0,9.090909090909092 -989,8.0,10.0,0.0,4.807692307692308 -989,9.0,5.0,0.0,1.8561002591115965 -989,9.0,8.0,0.0,9.090909090909092 -989,9.0,9.0,13.462042814524237,-41.3837606675224 -989,9.0,16.0,-3.956039125715353,10.317447719844054 -989,9.0,19.0,-1.7848303152666305,3.98535828943083 -989,9.0,20.0,-5.101853820159654,10.98071411292983 -989,9.0,21.0,-2.619319553382597,5.400770303329455 -989,10.0,8.0,0.0,4.807692307692308 -989,10.0,10.0,0.0,-4.807692307692308 -989,11.0,3.0,0.0,4.191255364806866 -989,11.0,11.0,6.573961583776156,-24.424167659260668 -989,11.0,12.0,0.0,7.142857142857143 -989,11.0,13.0,-1.5265676088395577,3.1734252729654173 -989,11.0,14.0,-3.0953961826564296,6.097275864326261 -989,11.0,15.0,-1.9519977922801688,4.104359379111847 -989,12.0,11.0,0.0,7.142857142857143 -989,12.0,12.0,0.0,-7.142857142857143 -989,13.0,11.0,-1.5265676088395577,3.1734252729654173 -989,13.0,13.0,4.01751987283902,-5.424299332335067 -989,13.0,14.0,-2.4909522639994623,2.250874059369649 -989,14.0,11.0,-3.0953961826564296,6.097275864326261 -989,14.0,13.0,-2.4909522639994623,2.250874059369649 -989,14.0,14.0,9.365498545964757,-16.01163373210796 -989,14.0,17.0,-1.8108011504072024,3.687418931630696 -989,14.0,22.0,-1.9683489489016612,3.976064876781356 -989,15.0,11.0,-1.9519977922801688,4.104359379111847 -989,15.0,15.0,3.271064728633931,-8.94513365126506 -989,15.0,16.0,-1.3190669363537617,4.8407742721532125 -989,16.0,9.0,-3.956039125715353,10.317447719844054 -989,16.0,15.0,-1.3190669363537617,4.8407742721532125 -989,16.0,16.0,5.275106062069114,-15.158221991997266 -989,17.0,14.0,-1.8108011504072024,3.687418931630696 -989,17.0,17.0,4.886487584415919,-9.906177730909668 -989,17.0,18.0,-3.0756864340087167,6.218758799278971 -989,18.0,17.0,-3.0756864340087167,6.218758799278971 -989,18.0,18.0,8.958039375185187,-17.98346468163191 -989,18.0,19.0,-5.88235294117647,11.76470588235294 -989,19.0,9.0,-1.7848303152666305,3.98535828943083 -989,19.0,18.0,-5.88235294117647,11.76470588235294 -989,19.0,19.0,7.6671832564431,-15.75006417178377 -989,20.0,9.0,-5.101853820159654,10.98071411292983 -989,20.0,20.0,21.876495189895888,-45.10843276170355 -989,20.0,21.0,-16.774641369736234,34.127718648773715 -989,21.0,9.0,-2.619319553382597,5.400770303329455 -989,21.0,20.0,-16.774641369736234,34.127718648773715 -989,21.0,21.0,21.93449907537439,-43.48289181517921 -989,21.0,23.0,-2.5405381522555563,3.95440286307604 -989,22.0,14.0,-1.9683489489016612,3.976064876781356 -989,22.0,22.0,3.429754555384988,-6.965303617315433 -989,22.0,23.0,-1.4614056064833263,2.989238740534077 -989,23.0,21.0,-2.5405381522555563,3.95440286307604 -989,23.0,22.0,-1.4614056064833263,2.989238740534077 -989,23.0,23.0,5.311836702613133,-9.188263657315172 -989,23.0,24.0,-1.3098929438742493,2.287622053705056 -989,24.0,23.0,-1.3098929438742493,2.287622053705056 -989,24.0,24.0,4.495715080321987,-7.864978761969621 -989,24.0,25.0,-1.2165301194494855,1.8171440463475024 -989,24.0,26.0,-1.9692920169982515,3.760212661917064 -989,25.0,24.0,-1.2165301194494855,1.8171440463475024 -989,25.0,25.0,1.2165301194494855,-1.8171440463475024 -989,26.0,24.0,-1.9692920169982515,3.760212661917064 -989,26.0,26.0,3.652281470778589,-9.46044252232512 -989,26.0,27.0,0.0,2.608731947574922 -989,26.0,28.0,-0.99553355095268,1.881005840357816 -989,26.0,29.0,-0.6874559028276572,1.293971494797717 -989,27.0,5.0,-4.362844058012917,15.463571542897856 -989,27.0,7.0,-1.4439790613954469,4.540814658476248 -989,27.0,26.0,0.0,2.608731947574922 -989,27.0,27.0,5.806823119408364,-22.67145722159613 -989,28.0,26.0,-0.99553355095268,1.881005840357816 -989,28.0,28.0,1.9075867579849564,-3.604364401207048 -989,28.0,29.0,-0.9120532070322764,1.7233585608492326 -989,29.0,26.0,-0.6874559028276572,1.293971494797717 -989,29.0,28.0,-0.9120532070322764,1.7233585608492326 -989,29.0,29.0,1.5995091098599337,-3.0173300556469496 -990,0.0,0.0,6.765516048652632,-21.23160167089863 -990,0.0,1.0,-5.224646179885656,15.646726840803398 -990,0.0,2.0,-1.5408698687669766,5.631674830095234 -990,1.0,0.0,-5.224646179885656,15.646726840803398 -990,1.0,1.0,9.75228216552403,-30.648662892676068 -990,1.0,3.0,-1.7055303166990268,5.1973792282565086 -990,1.0,4.0,-1.1359607881738778,4.772479328281356 -990,1.0,5.0,-1.6861448807654689,5.116477495334806 -990,2.0,0.0,-1.5408698687669766,5.631674830095234 -990,2.0,2.0,9.736318911079088,-29.13794745915803 -990,2.0,3.0,-8.19544904231211,23.5308726290628 -990,3.0,1.0,-1.7055303166990268,5.1973792282565086 -990,3.0,2.0,-8.19544904231211,23.5308726290628 -990,3.0,3.0,16.314103089185693,-55.509410535254254 -990,3.0,5.0,-6.413123730174556,22.31120356548123 -990,3.0,11.0,0.0,4.191255364806866 -990,4.0,1.0,-1.1359607881738778,4.772479328281356 -990,4.0,4.0,4.089980824135861,-12.190647245055052 -990,4.0,6.0,-2.954020035961983,7.449267916773697 -990,5.0,1.0,-1.6861448807654689,5.116477495334806 -990,5.0,3.0,-6.413123730174556,22.31120356548123 -990,5.0,5.0,22.341631269034565,-82.8291478657789 -990,5.0,6.0,-3.590210423980992,11.02611441072814 -990,5.0,7.0,-6.289308176100628,22.0125786163522 -990,5.0,8.0,0.0,4.915840805411357 -990,5.0,9.0,0.0,1.8561002591115965 -990,5.0,27.0,-4.362844058012917,15.463571542897856 -990,6.0,4.0,-2.954020035961983,7.449267916773697 -990,6.0,5.0,-3.590210423980992,11.02611441072814 -990,6.0,6.0,6.544230459942975,-18.45668232750184 -990,7.0,5.0,-6.289308176100628,22.0125786163522 -990,7.0,7.0,7.733287237496075,-26.527493274828448 -990,7.0,27.0,-1.4439790613954469,4.540814658476248 -990,8.0,5.0,0.0,4.915840805411357 -990,8.0,8.0,0.0,-18.706293706293707 -990,8.0,9.0,0.0,9.090909090909092 -990,8.0,10.0,0.0,4.807692307692308 -990,9.0,5.0,0.0,1.8561002591115965 -990,9.0,8.0,0.0,9.090909090909092 -990,9.0,9.0,13.462042814524237,-41.3837606675224 -990,9.0,16.0,-3.956039125715353,10.317447719844054 -990,9.0,19.0,-1.7848303152666305,3.98535828943083 -990,9.0,20.0,-5.101853820159654,10.98071411292983 -990,9.0,21.0,-2.619319553382597,5.400770303329455 -990,10.0,8.0,0.0,4.807692307692308 -990,10.0,10.0,0.0,-4.807692307692308 -990,11.0,3.0,0.0,4.191255364806866 -990,11.0,11.0,4.621963791495987,-20.31980828014882 -990,11.0,12.0,0.0,7.142857142857143 -990,11.0,13.0,-1.5265676088395577,3.1734252729654173 -990,11.0,14.0,-3.0953961826564296,6.097275864326261 -990,12.0,11.0,0.0,7.142857142857143 -990,12.0,12.0,0.0,-7.142857142857143 -990,13.0,11.0,-1.5265676088395577,3.1734252729654173 -990,13.0,13.0,1.5265676088395577,-3.1734252729654173 -990,14.0,11.0,-3.0953961826564296,6.097275864326261 -990,14.0,14.0,3.0953961826564296,-6.097275864326261 -990,15.0,15.0,1.3190669363537617,-4.8407742721532125 -990,15.0,16.0,-1.3190669363537617,4.8407742721532125 -990,16.0,9.0,-3.956039125715353,10.317447719844054 -990,16.0,15.0,-1.3190669363537617,4.8407742721532125 -990,16.0,16.0,5.275106062069114,-15.158221991997266 -990,17.0,17.0,3.0756864340087167,-6.218758799278971 -990,17.0,18.0,-3.0756864340087167,6.218758799278971 -990,18.0,17.0,-3.0756864340087167,6.218758799278971 -990,18.0,18.0,8.958039375185187,-17.98346468163191 -990,18.0,19.0,-5.88235294117647,11.76470588235294 -990,19.0,9.0,-1.7848303152666305,3.98535828943083 -990,19.0,18.0,-5.88235294117647,11.76470588235294 -990,19.0,19.0,7.6671832564431,-15.75006417178377 -990,20.0,9.0,-5.101853820159654,10.98071411292983 -990,20.0,20.0,21.876495189895888,-45.10843276170355 -990,20.0,21.0,-16.774641369736234,34.127718648773715 -990,21.0,9.0,-2.619319553382597,5.400770303329455 -990,21.0,20.0,-16.774641369736234,34.127718648773715 -990,21.0,21.0,21.93449907537439,-43.48289181517921 -990,21.0,23.0,-2.5405381522555563,3.95440286307604 -990,22.0,22.0,1.4614056064833263,-2.989238740534077 -990,22.0,23.0,-1.4614056064833263,2.989238740534077 -990,23.0,21.0,-2.5405381522555563,3.95440286307604 -990,23.0,22.0,-1.4614056064833263,2.989238740534077 -990,23.0,23.0,5.311836702613133,-9.188263657315172 -990,23.0,24.0,-1.3098929438742493,2.287622053705056 -990,24.0,23.0,-1.3098929438742493,2.287622053705056 -990,24.0,24.0,4.495715080321987,-7.864978761969621 -990,24.0,25.0,-1.2165301194494855,1.8171440463475024 -990,24.0,26.0,-1.9692920169982515,3.760212661917064 -990,25.0,24.0,-1.2165301194494855,1.8171440463475024 -990,25.0,25.0,1.2165301194494855,-1.8171440463475024 -990,26.0,24.0,-1.9692920169982515,3.760212661917064 -990,26.0,26.0,3.652281470778589,-9.46044252232512 -990,26.0,27.0,0.0,2.608731947574922 -990,26.0,28.0,-0.99553355095268,1.881005840357816 -990,26.0,29.0,-0.6874559028276572,1.293971494797717 -990,27.0,5.0,-4.362844058012917,15.463571542897856 -990,27.0,7.0,-1.4439790613954469,4.540814658476248 -990,27.0,26.0,0.0,2.608731947574922 -990,27.0,27.0,5.806823119408364,-22.67145722159613 -990,28.0,26.0,-0.99553355095268,1.881005840357816 -990,28.0,28.0,1.9075867579849564,-3.604364401207048 -990,28.0,29.0,-0.9120532070322764,1.7233585608492326 -990,29.0,26.0,-0.6874559028276572,1.293971494797717 -990,29.0,28.0,-0.9120532070322764,1.7233585608492326 -990,29.0,29.0,1.5995091098599337,-3.0173300556469496 -991,0.0,0.0,6.765516048652632,-21.23160167089863 -991,0.0,1.0,-5.224646179885656,15.646726840803398 -991,0.0,2.0,-1.5408698687669766,5.631674830095234 -991,1.0,0.0,-5.224646179885656,15.646726840803398 -991,1.0,1.0,8.61632137735015,-25.897083564394716 -991,1.0,3.0,-1.7055303166990268,5.1973792282565086 -991,1.0,5.0,-1.6861448807654689,5.116477495334806 -991,2.0,0.0,-1.5408698687669766,5.631674830095234 -991,2.0,2.0,9.736318911079088,-29.13794745915803 -991,2.0,3.0,-8.19544904231211,23.5308726290628 -991,3.0,1.0,-1.7055303166990268,5.1973792282565086 -991,3.0,2.0,-8.19544904231211,23.5308726290628 -991,3.0,3.0,16.314103089185693,-55.509410535254254 -991,3.0,5.0,-6.413123730174556,22.31120356548123 -991,3.0,11.0,0.0,4.191255364806866 -991,4.0,4.0,2.954020035961983,-7.439067916773697 -991,4.0,6.0,-2.954020035961983,7.449267916773697 -991,5.0,1.0,-1.6861448807654689,5.116477495334806 -991,5.0,3.0,-6.413123730174556,22.31120356548123 -991,5.0,5.0,22.341631269034565,-82.8291478657789 -991,5.0,6.0,-3.590210423980992,11.02611441072814 -991,5.0,7.0,-6.289308176100628,22.0125786163522 -991,5.0,8.0,0.0,4.915840805411357 -991,5.0,9.0,0.0,1.8561002591115965 -991,5.0,27.0,-4.362844058012917,15.463571542897856 -991,6.0,4.0,-2.954020035961983,7.449267916773697 -991,6.0,5.0,-3.590210423980992,11.02611441072814 -991,6.0,6.0,6.544230459942975,-18.45668232750184 -991,7.0,5.0,-6.289308176100628,22.0125786163522 -991,7.0,7.0,7.733287237496075,-26.527493274828448 -991,7.0,27.0,-1.4439790613954469,4.540814658476248 -991,8.0,5.0,0.0,4.915840805411357 -991,8.0,8.0,0.0,-18.706293706293707 -991,8.0,9.0,0.0,9.090909090909092 -991,8.0,10.0,0.0,4.807692307692308 -991,9.0,5.0,0.0,1.8561002591115965 -991,9.0,8.0,0.0,9.090909090909092 -991,9.0,9.0,13.462042814524237,-41.3837606675224 -991,9.0,16.0,-3.956039125715353,10.317447719844054 -991,9.0,19.0,-1.7848303152666305,3.98535828943083 -991,9.0,20.0,-5.101853820159654,10.98071411292983 -991,9.0,21.0,-2.619319553382597,5.400770303329455 -991,10.0,8.0,0.0,4.807692307692308 -991,10.0,10.0,0.0,-4.807692307692308 -991,11.0,3.0,0.0,4.191255364806866 -991,11.0,11.0,6.573961583776156,-24.424167659260668 -991,11.0,12.0,0.0,7.142857142857143 -991,11.0,13.0,-1.5265676088395577,3.1734252729654173 -991,11.0,14.0,-3.0953961826564296,6.097275864326261 -991,11.0,15.0,-1.9519977922801688,4.104359379111847 -991,12.0,11.0,0.0,7.142857142857143 -991,12.0,12.0,0.0,-7.142857142857143 -991,13.0,11.0,-1.5265676088395577,3.1734252729654173 -991,13.0,13.0,4.01751987283902,-5.424299332335067 -991,13.0,14.0,-2.4909522639994623,2.250874059369649 -991,14.0,11.0,-3.0953961826564296,6.097275864326261 -991,14.0,13.0,-2.4909522639994623,2.250874059369649 -991,14.0,14.0,7.397149597063095,-12.035568855326606 -991,14.0,17.0,-1.8108011504072024,3.687418931630696 -991,15.0,11.0,-1.9519977922801688,4.104359379111847 -991,15.0,15.0,3.271064728633931,-8.94513365126506 -991,15.0,16.0,-1.3190669363537617,4.8407742721532125 -991,16.0,9.0,-3.956039125715353,10.317447719844054 -991,16.0,15.0,-1.3190669363537617,4.8407742721532125 -991,16.0,16.0,5.275106062069114,-15.158221991997266 -991,17.0,14.0,-1.8108011504072024,3.687418931630696 -991,17.0,17.0,4.886487584415919,-9.906177730909668 -991,17.0,18.0,-3.0756864340087167,6.218758799278971 -991,18.0,17.0,-3.0756864340087167,6.218758799278971 -991,18.0,18.0,8.958039375185187,-17.98346468163191 -991,18.0,19.0,-5.88235294117647,11.76470588235294 -991,19.0,9.0,-1.7848303152666305,3.98535828943083 -991,19.0,18.0,-5.88235294117647,11.76470588235294 -991,19.0,19.0,7.6671832564431,-15.75006417178377 -991,20.0,9.0,-5.101853820159654,10.98071411292983 -991,20.0,20.0,21.876495189895888,-45.10843276170355 -991,20.0,21.0,-16.774641369736234,34.127718648773715 -991,21.0,9.0,-2.619319553382597,5.400770303329455 -991,21.0,20.0,-16.774641369736234,34.127718648773715 -991,21.0,21.0,21.93449907537439,-43.48289181517921 -991,21.0,23.0,-2.5405381522555563,3.95440286307604 -991,22.0,22.0,1.4614056064833263,-2.989238740534077 -991,22.0,23.0,-1.4614056064833263,2.989238740534077 -991,23.0,21.0,-2.5405381522555563,3.95440286307604 -991,23.0,22.0,-1.4614056064833263,2.989238740534077 -991,23.0,23.0,5.311836702613133,-9.188263657315172 -991,23.0,24.0,-1.3098929438742493,2.287622053705056 -991,24.0,23.0,-1.3098929438742493,2.287622053705056 -991,24.0,24.0,4.495715080321987,-7.864978761969621 -991,24.0,25.0,-1.2165301194494855,1.8171440463475024 -991,24.0,26.0,-1.9692920169982515,3.760212661917064 -991,25.0,24.0,-1.2165301194494855,1.8171440463475024 -991,25.0,25.0,1.2165301194494855,-1.8171440463475024 -991,26.0,24.0,-1.9692920169982515,3.760212661917064 -991,26.0,26.0,2.9648255679509314,-8.166471027527404 -991,26.0,27.0,0.0,2.608731947574922 -991,26.0,28.0,-0.99553355095268,1.881005840357816 -991,27.0,5.0,-4.362844058012917,15.463571542897856 -991,27.0,7.0,-1.4439790613954469,4.540814658476248 -991,27.0,26.0,0.0,2.608731947574922 -991,27.0,27.0,5.806823119408364,-22.67145722159613 -991,28.0,26.0,-0.99553355095268,1.881005840357816 -991,28.0,28.0,1.9075867579849564,-3.604364401207048 -991,28.0,29.0,-0.9120532070322764,1.7233585608492326 -991,29.0,28.0,-0.9120532070322764,1.7233585608492326 -991,29.0,29.0,0.9120532070322764,-1.7233585608492326 -992,0.0,0.0,6.765516048652632,-21.23160167089863 -992,0.0,1.0,-5.224646179885656,15.646726840803398 -992,0.0,2.0,-1.5408698687669766,5.631674830095234 -992,1.0,0.0,-5.224646179885656,15.646726840803398 -992,1.0,1.0,9.75228216552403,-30.648662892676068 -992,1.0,3.0,-1.7055303166990268,5.1973792282565086 -992,1.0,4.0,-1.1359607881738778,4.772479328281356 -992,1.0,5.0,-1.6861448807654689,5.116477495334806 -992,2.0,0.0,-1.5408698687669766,5.631674830095234 -992,2.0,2.0,1.5408698687669766,-5.611274830095233 -992,3.0,1.0,-1.7055303166990268,5.1973792282565086 -992,3.0,3.0,1.7055303166990268,-9.676034340710228 -992,3.0,11.0,0.0,4.191255364806866 -992,4.0,1.0,-1.1359607881738778,4.772479328281356 -992,4.0,4.0,4.089980824135861,-12.190647245055052 -992,4.0,6.0,-2.954020035961983,7.449267916773697 -992,5.0,1.0,-1.6861448807654689,5.116477495334806 -992,5.0,5.0,15.928507538860009,-60.52244430029767 -992,5.0,6.0,-3.590210423980992,11.02611441072814 -992,5.0,7.0,-6.289308176100628,22.0125786163522 -992,5.0,8.0,0.0,4.915840805411357 -992,5.0,9.0,0.0,1.8561002591115965 -992,5.0,27.0,-4.362844058012917,15.463571542897856 -992,6.0,4.0,-2.954020035961983,7.449267916773697 -992,6.0,5.0,-3.590210423980992,11.02611441072814 -992,6.0,6.0,6.544230459942975,-18.45668232750184 -992,7.0,5.0,-6.289308176100628,22.0125786163522 -992,7.0,7.0,7.733287237496075,-26.527493274828448 -992,7.0,27.0,-1.4439790613954469,4.540814658476248 -992,8.0,5.0,0.0,4.915840805411357 -992,8.0,8.0,0.0,-18.706293706293707 -992,8.0,9.0,0.0,9.090909090909092 -992,8.0,10.0,0.0,4.807692307692308 -992,9.0,5.0,0.0,1.8561002591115965 -992,9.0,8.0,0.0,9.090909090909092 -992,9.0,9.0,4.404149868649228,-20.085598834748517 -992,9.0,19.0,-1.7848303152666305,3.98535828943083 -992,9.0,21.0,-2.619319553382597,5.400770303329455 -992,10.0,8.0,0.0,4.807692307692308 -992,10.0,10.0,0.0,-4.807692307692308 -992,11.0,3.0,0.0,4.191255364806866 -992,11.0,11.0,6.573961583776156,-24.424167659260668 -992,11.0,12.0,0.0,7.142857142857143 -992,11.0,13.0,-1.5265676088395577,3.1734252729654173 -992,11.0,14.0,-3.0953961826564296,6.097275864326261 -992,11.0,15.0,-1.9519977922801688,4.104359379111847 -992,12.0,11.0,0.0,7.142857142857143 -992,12.0,12.0,0.0,-7.142857142857143 -992,13.0,11.0,-1.5265676088395577,3.1734252729654173 -992,13.0,13.0,4.01751987283902,-5.424299332335067 -992,13.0,14.0,-2.4909522639994623,2.250874059369649 -992,14.0,11.0,-3.0953961826564296,6.097275864326261 -992,14.0,13.0,-2.4909522639994623,2.250874059369649 -992,14.0,14.0,9.365498545964757,-16.01163373210796 -992,14.0,17.0,-1.8108011504072024,3.687418931630696 -992,14.0,22.0,-1.9683489489016612,3.976064876781356 -992,15.0,11.0,-1.9519977922801688,4.104359379111847 -992,15.0,15.0,3.271064728633931,-8.94513365126506 -992,15.0,16.0,-1.3190669363537617,4.8407742721532125 -992,16.0,15.0,-1.3190669363537617,4.8407742721532125 -992,16.0,16.0,1.3190669363537617,-4.8407742721532125 -992,17.0,14.0,-1.8108011504072024,3.687418931630696 -992,17.0,17.0,4.886487584415919,-9.906177730909668 -992,17.0,18.0,-3.0756864340087167,6.218758799278971 -992,18.0,17.0,-3.0756864340087167,6.218758799278971 -992,18.0,18.0,8.958039375185187,-17.98346468163191 -992,18.0,19.0,-5.88235294117647,11.76470588235294 -992,19.0,9.0,-1.7848303152666305,3.98535828943083 -992,19.0,18.0,-5.88235294117647,11.76470588235294 -992,19.0,19.0,7.6671832564431,-15.75006417178377 -992,20.0,20.0,16.774641369736234,-34.127718648773715 -992,20.0,21.0,-16.774641369736234,34.127718648773715 -992,21.0,9.0,-2.619319553382597,5.400770303329455 -992,21.0,20.0,-16.774641369736234,34.127718648773715 -992,21.0,21.0,21.93449907537439,-43.48289181517921 -992,21.0,23.0,-2.5405381522555563,3.95440286307604 -992,22.0,14.0,-1.9683489489016612,3.976064876781356 -992,22.0,22.0,3.429754555384988,-6.965303617315433 -992,22.0,23.0,-1.4614056064833263,2.989238740534077 -992,23.0,21.0,-2.5405381522555563,3.95440286307604 -992,23.0,22.0,-1.4614056064833263,2.989238740534077 -992,23.0,23.0,5.311836702613133,-9.188263657315172 -992,23.0,24.0,-1.3098929438742493,2.287622053705056 -992,24.0,23.0,-1.3098929438742493,2.287622053705056 -992,24.0,24.0,4.495715080321987,-7.864978761969621 -992,24.0,25.0,-1.2165301194494855,1.8171440463475024 -992,24.0,26.0,-1.9692920169982515,3.760212661917064 -992,25.0,24.0,-1.2165301194494855,1.8171440463475024 -992,25.0,25.0,1.2165301194494855,-1.8171440463475024 -992,26.0,24.0,-1.9692920169982515,3.760212661917064 -992,26.0,26.0,3.652281470778589,-9.46044252232512 -992,26.0,27.0,0.0,2.608731947574922 -992,26.0,28.0,-0.99553355095268,1.881005840357816 -992,26.0,29.0,-0.6874559028276572,1.293971494797717 -992,27.0,5.0,-4.362844058012917,15.463571542897856 -992,27.0,7.0,-1.4439790613954469,4.540814658476248 -992,27.0,26.0,0.0,2.608731947574922 -992,27.0,27.0,5.806823119408364,-22.67145722159613 -992,28.0,26.0,-0.99553355095268,1.881005840357816 -992,28.0,28.0,1.9075867579849564,-3.604364401207048 -992,28.0,29.0,-0.9120532070322764,1.7233585608492326 -992,29.0,26.0,-0.6874559028276572,1.293971494797717 -992,29.0,28.0,-0.9120532070322764,1.7233585608492326 -992,29.0,29.0,1.5995091098599337,-3.0173300556469496 -993,0.0,0.0,6.765516048652632,-21.23160167089863 -993,0.0,1.0,-5.224646179885656,15.646726840803398 -993,0.0,2.0,-1.5408698687669766,5.631674830095234 -993,1.0,0.0,-5.224646179885656,15.646726840803398 -993,1.0,1.0,6.360606968059534,-20.371906169084752 -993,1.0,4.0,-1.1359607881738778,4.772479328281356 -993,2.0,0.0,-1.5408698687669766,5.631674830095234 -993,2.0,2.0,9.736318911079088,-29.13794745915803 -993,2.0,3.0,-8.19544904231211,23.5308726290628 -993,3.0,2.0,-8.19544904231211,23.5308726290628 -993,3.0,3.0,14.608572772486664,-50.33043130699775 -993,3.0,5.0,-6.413123730174556,22.31120356548123 -993,3.0,11.0,0.0,4.191255364806866 -993,4.0,1.0,-1.1359607881738778,4.772479328281356 -993,4.0,4.0,4.089980824135861,-12.190647245055052 -993,4.0,6.0,-2.954020035961983,7.449267916773697 -993,5.0,3.0,-6.413123730174556,22.31120356548123 -993,5.0,5.0,20.655486388269097,-77.7313703704441 -993,5.0,6.0,-3.590210423980992,11.02611441072814 -993,5.0,7.0,-6.289308176100628,22.0125786163522 -993,5.0,8.0,0.0,4.915840805411357 -993,5.0,9.0,0.0,1.8561002591115965 -993,5.0,27.0,-4.362844058012917,15.463571542897856 -993,6.0,4.0,-2.954020035961983,7.449267916773697 -993,6.0,5.0,-3.590210423980992,11.02611441072814 -993,6.0,6.0,6.544230459942975,-18.45668232750184 -993,7.0,5.0,-6.289308176100628,22.0125786163522 -993,7.0,7.0,7.733287237496075,-26.527493274828448 -993,7.0,27.0,-1.4439790613954469,4.540814658476248 -993,8.0,5.0,0.0,4.915840805411357 -993,8.0,8.0,0.0,-18.706293706293707 -993,8.0,9.0,0.0,9.090909090909092 -993,8.0,10.0,0.0,4.807692307692308 -993,9.0,5.0,0.0,1.8561002591115965 -993,9.0,8.0,0.0,9.090909090909092 -993,9.0,9.0,13.462042814524237,-41.3837606675224 -993,9.0,16.0,-3.956039125715353,10.317447719844054 -993,9.0,19.0,-1.7848303152666305,3.98535828943083 -993,9.0,20.0,-5.101853820159654,10.98071411292983 -993,9.0,21.0,-2.619319553382597,5.400770303329455 -993,10.0,8.0,0.0,4.807692307692308 -993,10.0,10.0,0.0,-4.807692307692308 -993,11.0,3.0,0.0,4.191255364806866 -993,11.0,11.0,6.573961583776156,-24.424167659260668 -993,11.0,12.0,0.0,7.142857142857143 -993,11.0,13.0,-1.5265676088395577,3.1734252729654173 -993,11.0,14.0,-3.0953961826564296,6.097275864326261 -993,11.0,15.0,-1.9519977922801688,4.104359379111847 -993,12.0,11.0,0.0,7.142857142857143 -993,12.0,12.0,0.0,-7.142857142857143 -993,13.0,11.0,-1.5265676088395577,3.1734252729654173 -993,13.0,13.0,4.01751987283902,-5.424299332335067 -993,13.0,14.0,-2.4909522639994623,2.250874059369649 -993,14.0,11.0,-3.0953961826564296,6.097275864326261 -993,14.0,13.0,-2.4909522639994623,2.250874059369649 -993,14.0,14.0,9.365498545964757,-16.01163373210796 -993,14.0,17.0,-1.8108011504072024,3.687418931630696 -993,14.0,22.0,-1.9683489489016612,3.976064876781356 -993,15.0,11.0,-1.9519977922801688,4.104359379111847 -993,15.0,15.0,3.271064728633931,-8.94513365126506 -993,15.0,16.0,-1.3190669363537617,4.8407742721532125 -993,16.0,9.0,-3.956039125715353,10.317447719844054 -993,16.0,15.0,-1.3190669363537617,4.8407742721532125 -993,16.0,16.0,5.275106062069114,-15.158221991997266 -993,17.0,14.0,-1.8108011504072024,3.687418931630696 -993,17.0,17.0,4.886487584415919,-9.906177730909668 -993,17.0,18.0,-3.0756864340087167,6.218758799278971 -993,18.0,17.0,-3.0756864340087167,6.218758799278971 -993,18.0,18.0,8.958039375185187,-17.98346468163191 -993,18.0,19.0,-5.88235294117647,11.76470588235294 -993,19.0,9.0,-1.7848303152666305,3.98535828943083 -993,19.0,18.0,-5.88235294117647,11.76470588235294 -993,19.0,19.0,7.6671832564431,-15.75006417178377 -993,20.0,9.0,-5.101853820159654,10.98071411292983 -993,20.0,20.0,21.876495189895888,-45.10843276170355 -993,20.0,21.0,-16.774641369736234,34.127718648773715 -993,21.0,9.0,-2.619319553382597,5.400770303329455 -993,21.0,20.0,-16.774641369736234,34.127718648773715 -993,21.0,21.0,21.93449907537439,-43.48289181517921 -993,21.0,23.0,-2.5405381522555563,3.95440286307604 -993,22.0,14.0,-1.9683489489016612,3.976064876781356 -993,22.0,22.0,3.429754555384988,-6.965303617315433 -993,22.0,23.0,-1.4614056064833263,2.989238740534077 -993,23.0,21.0,-2.5405381522555563,3.95440286307604 -993,23.0,22.0,-1.4614056064833263,2.989238740534077 -993,23.0,23.0,5.311836702613133,-9.188263657315172 -993,23.0,24.0,-1.3098929438742493,2.287622053705056 -993,24.0,23.0,-1.3098929438742493,2.287622053705056 -993,24.0,24.0,4.495715080321987,-7.864978761969621 -993,24.0,25.0,-1.2165301194494855,1.8171440463475024 -993,24.0,26.0,-1.9692920169982515,3.760212661917064 -993,25.0,24.0,-1.2165301194494855,1.8171440463475024 -993,25.0,25.0,1.2165301194494855,-1.8171440463475024 -993,26.0,24.0,-1.9692920169982515,3.760212661917064 -993,26.0,26.0,3.652281470778589,-9.46044252232512 -993,26.0,27.0,0.0,2.608731947574922 -993,26.0,28.0,-0.99553355095268,1.881005840357816 -993,26.0,29.0,-0.6874559028276572,1.293971494797717 -993,27.0,5.0,-4.362844058012917,15.463571542897856 -993,27.0,7.0,-1.4439790613954469,4.540814658476248 -993,27.0,26.0,0.0,2.608731947574922 -993,27.0,27.0,5.806823119408364,-22.67145722159613 -993,28.0,26.0,-0.99553355095268,1.881005840357816 -993,28.0,28.0,1.9075867579849564,-3.604364401207048 -993,28.0,29.0,-0.9120532070322764,1.7233585608492326 -993,29.0,26.0,-0.6874559028276572,1.293971494797717 -993,29.0,28.0,-0.9120532070322764,1.7233585608492326 -993,29.0,29.0,1.5995091098599337,-3.0173300556469496 -994,0.0,0.0,6.765516048652632,-21.23160167089863 -994,0.0,1.0,-5.224646179885656,15.646726840803398 -994,0.0,2.0,-1.5408698687669766,5.631674830095234 -994,1.0,0.0,-5.224646179885656,15.646726840803398 -994,1.0,1.0,8.61632137735015,-25.897083564394716 -994,1.0,3.0,-1.7055303166990268,5.1973792282565086 -994,1.0,5.0,-1.6861448807654689,5.116477495334806 -994,2.0,0.0,-1.5408698687669766,5.631674830095234 -994,2.0,2.0,9.736318911079088,-29.13794745915803 -994,2.0,3.0,-8.19544904231211,23.5308726290628 -994,3.0,1.0,-1.7055303166990268,5.1973792282565086 -994,3.0,2.0,-8.19544904231211,23.5308726290628 -994,3.0,3.0,16.314103089185693,-51.01235542280054 -994,3.0,5.0,-6.413123730174556,22.31120356548123 -994,4.0,4.0,2.954020035961983,-7.439067916773697 -994,4.0,6.0,-2.954020035961983,7.449267916773697 -994,5.0,1.0,-1.6861448807654689,5.116477495334806 -994,5.0,3.0,-6.413123730174556,22.31120356548123 -994,5.0,5.0,22.341631269034565,-77.80272577435625 -994,5.0,6.0,-3.590210423980992,11.02611441072814 -994,5.0,7.0,-6.289308176100628,22.0125786163522 -994,5.0,9.0,0.0,1.8561002591115965 -994,5.0,27.0,-4.362844058012917,15.463571542897856 -994,6.0,4.0,-2.954020035961983,7.449267916773697 -994,6.0,5.0,-3.590210423980992,11.02611441072814 -994,6.0,6.0,6.544230459942975,-18.45668232750184 -994,7.0,5.0,-6.289308176100628,22.0125786163522 -994,7.0,7.0,7.733287237496075,-26.527493274828448 -994,7.0,27.0,-1.4439790613954469,4.540814658476248 -994,8.0,8.0,0.0,-13.8986013986014 -994,8.0,9.0,0.0,9.090909090909092 -994,8.0,10.0,0.0,4.807692307692308 -994,9.0,5.0,0.0,1.8561002591115965 -994,9.0,8.0,0.0,9.090909090909092 -994,9.0,9.0,13.462042814524237,-41.3837606675224 -994,9.0,16.0,-3.956039125715353,10.317447719844054 -994,9.0,19.0,-1.7848303152666305,3.98535828943083 -994,9.0,20.0,-5.101853820159654,10.98071411292983 -994,9.0,21.0,-2.619319553382597,5.400770303329455 -994,10.0,8.0,0.0,4.807692307692308 -994,10.0,10.0,0.0,-4.807692307692308 -994,11.0,11.0,6.573961583776156,-20.517917659260668 -994,11.0,12.0,0.0,7.142857142857143 -994,11.0,13.0,-1.5265676088395577,3.1734252729654173 -994,11.0,14.0,-3.0953961826564296,6.097275864326261 -994,11.0,15.0,-1.9519977922801688,4.104359379111847 -994,12.0,11.0,0.0,7.142857142857143 -994,12.0,12.0,0.0,-7.142857142857143 -994,13.0,11.0,-1.5265676088395577,3.1734252729654173 -994,13.0,13.0,4.01751987283902,-5.424299332335067 -994,13.0,14.0,-2.4909522639994623,2.250874059369649 -994,14.0,11.0,-3.0953961826564296,6.097275864326261 -994,14.0,13.0,-2.4909522639994623,2.250874059369649 -994,14.0,14.0,9.365498545964757,-16.01163373210796 -994,14.0,17.0,-1.8108011504072024,3.687418931630696 -994,14.0,22.0,-1.9683489489016612,3.976064876781356 -994,15.0,11.0,-1.9519977922801688,4.104359379111847 -994,15.0,15.0,3.271064728633931,-8.94513365126506 -994,15.0,16.0,-1.3190669363537617,4.8407742721532125 -994,16.0,9.0,-3.956039125715353,10.317447719844054 -994,16.0,15.0,-1.3190669363537617,4.8407742721532125 -994,16.0,16.0,5.275106062069114,-15.158221991997266 -994,17.0,14.0,-1.8108011504072024,3.687418931630696 -994,17.0,17.0,4.886487584415919,-9.906177730909668 -994,17.0,18.0,-3.0756864340087167,6.218758799278971 -994,18.0,17.0,-3.0756864340087167,6.218758799278971 -994,18.0,18.0,8.958039375185187,-17.98346468163191 -994,18.0,19.0,-5.88235294117647,11.76470588235294 -994,19.0,9.0,-1.7848303152666305,3.98535828943083 -994,19.0,18.0,-5.88235294117647,11.76470588235294 -994,19.0,19.0,7.6671832564431,-15.75006417178377 -994,20.0,9.0,-5.101853820159654,10.98071411292983 -994,20.0,20.0,21.876495189895888,-45.10843276170355 -994,20.0,21.0,-16.774641369736234,34.127718648773715 -994,21.0,9.0,-2.619319553382597,5.400770303329455 -994,21.0,20.0,-16.774641369736234,34.127718648773715 -994,21.0,21.0,21.93449907537439,-43.48289181517921 -994,21.0,23.0,-2.5405381522555563,3.95440286307604 -994,22.0,14.0,-1.9683489489016612,3.976064876781356 -994,22.0,22.0,3.429754555384988,-6.965303617315433 -994,22.0,23.0,-1.4614056064833263,2.989238740534077 -994,23.0,21.0,-2.5405381522555563,3.95440286307604 -994,23.0,22.0,-1.4614056064833263,2.989238740534077 -994,23.0,23.0,5.311836702613133,-9.188263657315172 -994,23.0,24.0,-1.3098929438742493,2.287622053705056 -994,24.0,23.0,-1.3098929438742493,2.287622053705056 -994,24.0,24.0,4.495715080321987,-7.864978761969621 -994,24.0,25.0,-1.2165301194494855,1.8171440463475024 -994,24.0,26.0,-1.9692920169982515,3.760212661917064 -994,25.0,24.0,-1.2165301194494855,1.8171440463475024 -994,25.0,25.0,1.2165301194494855,-1.8171440463475024 -994,26.0,24.0,-1.9692920169982515,3.760212661917064 -994,26.0,26.0,3.652281470778589,-9.46044252232512 -994,26.0,27.0,0.0,2.608731947574922 -994,26.0,28.0,-0.99553355095268,1.881005840357816 -994,26.0,29.0,-0.6874559028276572,1.293971494797717 -994,27.0,5.0,-4.362844058012917,15.463571542897856 -994,27.0,7.0,-1.4439790613954469,4.540814658476248 -994,27.0,26.0,0.0,2.608731947574922 -994,27.0,27.0,5.806823119408364,-22.67145722159613 -994,28.0,26.0,-0.99553355095268,1.881005840357816 -994,28.0,28.0,1.9075867579849564,-3.604364401207048 -994,28.0,29.0,-0.9120532070322764,1.7233585608492326 -994,29.0,26.0,-0.6874559028276572,1.293971494797717 -994,29.0,28.0,-0.9120532070322764,1.7233585608492326 -994,29.0,29.0,1.5995091098599337,-3.0173300556469496 -995,0.0,0.0,6.765516048652632,-21.23160167089863 -995,0.0,1.0,-5.224646179885656,15.646726840803398 -995,0.0,2.0,-1.5408698687669766,5.631674830095234 -995,1.0,0.0,-5.224646179885656,15.646726840803398 -995,1.0,1.0,9.75228216552403,-30.648662892676068 -995,1.0,3.0,-1.7055303166990268,5.1973792282565086 -995,1.0,4.0,-1.1359607881738778,4.772479328281356 -995,1.0,5.0,-1.6861448807654689,5.116477495334806 -995,2.0,0.0,-1.5408698687669766,5.631674830095234 -995,2.0,2.0,9.736318911079088,-29.13794745915803 -995,2.0,3.0,-8.19544904231211,23.5308726290628 -995,3.0,1.0,-1.7055303166990268,5.1973792282565086 -995,3.0,2.0,-8.19544904231211,23.5308726290628 -995,3.0,3.0,16.314103089185693,-55.509410535254254 -995,3.0,5.0,-6.413123730174556,22.31120356548123 -995,3.0,11.0,0.0,4.191255364806866 -995,4.0,1.0,-1.1359607881738778,4.772479328281356 -995,4.0,4.0,4.089980824135861,-12.190647245055052 -995,4.0,6.0,-2.954020035961983,7.449267916773697 -995,5.0,1.0,-1.6861448807654689,5.116477495334806 -995,5.0,3.0,-6.413123730174556,22.31120356548123 -995,5.0,5.0,22.341631269034565,-82.8291478657789 -995,5.0,6.0,-3.590210423980992,11.02611441072814 -995,5.0,7.0,-6.289308176100628,22.0125786163522 -995,5.0,8.0,0.0,4.915840805411357 -995,5.0,9.0,0.0,1.8561002591115965 -995,5.0,27.0,-4.362844058012917,15.463571542897856 -995,6.0,4.0,-2.954020035961983,7.449267916773697 -995,6.0,5.0,-3.590210423980992,11.02611441072814 -995,6.0,6.0,6.544230459942975,-18.45668232750184 -995,7.0,5.0,-6.289308176100628,22.0125786163522 -995,7.0,7.0,7.733287237496075,-26.527493274828448 -995,7.0,27.0,-1.4439790613954469,4.540814658476248 -995,8.0,5.0,0.0,4.915840805411357 -995,8.0,8.0,0.0,-18.706293706293707 -995,8.0,9.0,0.0,9.090909090909092 -995,8.0,10.0,0.0,4.807692307692308 -995,9.0,5.0,0.0,1.8561002591115965 -995,9.0,8.0,0.0,9.090909090909092 -995,9.0,9.0,13.462042814524237,-41.3837606675224 -995,9.0,16.0,-3.956039125715353,10.317447719844054 -995,9.0,19.0,-1.7848303152666305,3.98535828943083 -995,9.0,20.0,-5.101853820159654,10.98071411292983 -995,9.0,21.0,-2.619319553382597,5.400770303329455 -995,10.0,8.0,0.0,4.807692307692308 -995,10.0,10.0,0.0,-4.807692307692308 -995,11.0,3.0,0.0,4.191255364806866 -995,11.0,11.0,6.573961583776156,-24.424167659260668 -995,11.0,12.0,0.0,7.142857142857143 -995,11.0,13.0,-1.5265676088395577,3.1734252729654173 -995,11.0,14.0,-3.0953961826564296,6.097275864326261 -995,11.0,15.0,-1.9519977922801688,4.104359379111847 -995,12.0,11.0,0.0,7.142857142857143 -995,12.0,12.0,0.0,-7.142857142857143 -995,13.0,11.0,-1.5265676088395577,3.1734252729654173 -995,13.0,13.0,4.01751987283902,-5.424299332335067 -995,13.0,14.0,-2.4909522639994623,2.250874059369649 -995,14.0,11.0,-3.0953961826564296,6.097275864326261 -995,14.0,13.0,-2.4909522639994623,2.250874059369649 -995,14.0,14.0,9.365498545964757,-16.01163373210796 -995,14.0,17.0,-1.8108011504072024,3.687418931630696 -995,14.0,22.0,-1.9683489489016612,3.976064876781356 -995,15.0,11.0,-1.9519977922801688,4.104359379111847 -995,15.0,15.0,3.271064728633931,-8.94513365126506 -995,15.0,16.0,-1.3190669363537617,4.8407742721532125 -995,16.0,9.0,-3.956039125715353,10.317447719844054 -995,16.0,15.0,-1.3190669363537617,4.8407742721532125 -995,16.0,16.0,5.275106062069114,-15.158221991997266 -995,17.0,14.0,-1.8108011504072024,3.687418931630696 -995,17.0,17.0,4.886487584415919,-9.906177730909668 -995,17.0,18.0,-3.0756864340087167,6.218758799278971 -995,18.0,17.0,-3.0756864340087167,6.218758799278971 -995,18.0,18.0,8.958039375185187,-17.98346468163191 -995,18.0,19.0,-5.88235294117647,11.76470588235294 -995,19.0,9.0,-1.7848303152666305,3.98535828943083 -995,19.0,18.0,-5.88235294117647,11.76470588235294 -995,19.0,19.0,7.6671832564431,-15.75006417178377 -995,20.0,9.0,-5.101853820159654,10.98071411292983 -995,20.0,20.0,21.876495189895888,-45.10843276170355 -995,20.0,21.0,-16.774641369736234,34.127718648773715 -995,21.0,9.0,-2.619319553382597,5.400770303329455 -995,21.0,20.0,-16.774641369736234,34.127718648773715 -995,21.0,21.0,21.93449907537439,-43.48289181517921 -995,21.0,23.0,-2.5405381522555563,3.95440286307604 -995,22.0,14.0,-1.9683489489016612,3.976064876781356 -995,22.0,22.0,3.429754555384988,-6.965303617315433 -995,22.0,23.0,-1.4614056064833263,2.989238740534077 -995,23.0,21.0,-2.5405381522555563,3.95440286307604 -995,23.0,22.0,-1.4614056064833263,2.989238740534077 -995,23.0,23.0,5.311836702613133,-9.188263657315172 -995,23.0,24.0,-1.3098929438742493,2.287622053705056 -995,24.0,23.0,-1.3098929438742493,2.287622053705056 -995,24.0,24.0,4.495715080321987,-7.864978761969621 -995,24.0,25.0,-1.2165301194494855,1.8171440463475024 -995,24.0,26.0,-1.9692920169982515,3.760212661917064 -995,25.0,24.0,-1.2165301194494855,1.8171440463475024 -995,25.0,25.0,1.2165301194494855,-1.8171440463475024 -995,26.0,24.0,-1.9692920169982515,3.760212661917064 -995,26.0,26.0,3.652281470778589,-9.46044252232512 -995,26.0,27.0,0.0,2.608731947574922 -995,26.0,28.0,-0.99553355095268,1.881005840357816 -995,26.0,29.0,-0.6874559028276572,1.293971494797717 -995,27.0,5.0,-4.362844058012917,15.463571542897856 -995,27.0,7.0,-1.4439790613954469,4.540814658476248 -995,27.0,26.0,0.0,2.608731947574922 -995,27.0,27.0,5.806823119408364,-22.67145722159613 -995,28.0,26.0,-0.99553355095268,1.881005840357816 -995,28.0,28.0,1.9075867579849564,-3.604364401207048 -995,28.0,29.0,-0.9120532070322764,1.7233585608492326 -995,29.0,26.0,-0.6874559028276572,1.293971494797717 -995,29.0,28.0,-0.9120532070322764,1.7233585608492326 -995,29.0,29.0,1.5995091098599337,-3.0173300556469496 -996,0.0,0.0,6.765516048652632,-21.23160167089863 -996,0.0,1.0,-5.224646179885656,15.646726840803398 -996,0.0,2.0,-1.5408698687669766,5.631674830095234 -996,1.0,0.0,-5.224646179885656,15.646726840803398 -996,1.0,1.0,9.75228216552403,-30.648662892676068 -996,1.0,3.0,-1.7055303166990268,5.1973792282565086 -996,1.0,4.0,-1.1359607881738778,4.772479328281356 -996,1.0,5.0,-1.6861448807654689,5.116477495334806 -996,2.0,0.0,-1.5408698687669766,5.631674830095234 -996,2.0,2.0,9.736318911079088,-29.13794745915803 -996,2.0,3.0,-8.19544904231211,23.5308726290628 -996,3.0,1.0,-1.7055303166990268,5.1973792282565086 -996,3.0,2.0,-8.19544904231211,23.5308726290628 -996,3.0,3.0,16.314103089185693,-55.509410535254254 -996,3.0,5.0,-6.413123730174556,22.31120356548123 -996,3.0,11.0,0.0,4.191255364806866 -996,4.0,1.0,-1.1359607881738778,4.772479328281356 -996,4.0,4.0,4.089980824135861,-12.190647245055052 -996,4.0,6.0,-2.954020035961983,7.449267916773697 -996,5.0,1.0,-1.6861448807654689,5.116477495334806 -996,5.0,3.0,-6.413123730174556,22.31120356548123 -996,5.0,5.0,22.341631269034565,-82.8291478657789 -996,5.0,6.0,-3.590210423980992,11.02611441072814 -996,5.0,7.0,-6.289308176100628,22.0125786163522 -996,5.0,8.0,0.0,4.915840805411357 -996,5.0,9.0,0.0,1.8561002591115965 -996,5.0,27.0,-4.362844058012917,15.463571542897856 -996,6.0,4.0,-2.954020035961983,7.449267916773697 -996,6.0,5.0,-3.590210423980992,11.02611441072814 -996,6.0,6.0,6.544230459942975,-18.45668232750184 -996,7.0,5.0,-6.289308176100628,22.0125786163522 -996,7.0,7.0,7.733287237496075,-26.527493274828448 -996,7.0,27.0,-1.4439790613954469,4.540814658476248 -996,8.0,5.0,0.0,4.915840805411357 -996,8.0,8.0,0.0,-18.706293706293707 -996,8.0,9.0,0.0,9.090909090909092 -996,8.0,10.0,0.0,4.807692307692308 -996,9.0,5.0,0.0,1.8561002591115965 -996,9.0,8.0,0.0,9.090909090909092 -996,9.0,9.0,13.462042814524237,-41.3837606675224 -996,9.0,16.0,-3.956039125715353,10.317447719844054 -996,9.0,19.0,-1.7848303152666305,3.98535828943083 -996,9.0,20.0,-5.101853820159654,10.98071411292983 -996,9.0,21.0,-2.619319553382597,5.400770303329455 -996,10.0,8.0,0.0,4.807692307692308 -996,10.0,10.0,0.0,-4.807692307692308 -996,11.0,3.0,0.0,4.191255364806866 -996,11.0,11.0,6.573961583776156,-24.424167659260668 -996,11.0,12.0,0.0,7.142857142857143 -996,11.0,13.0,-1.5265676088395577,3.1734252729654173 -996,11.0,14.0,-3.0953961826564296,6.097275864326261 -996,11.0,15.0,-1.9519977922801688,4.104359379111847 -996,12.0,11.0,0.0,7.142857142857143 -996,12.0,12.0,0.0,-7.142857142857143 -996,13.0,11.0,-1.5265676088395577,3.1734252729654173 -996,13.0,13.0,4.01751987283902,-5.424299332335067 -996,13.0,14.0,-2.4909522639994623,2.250874059369649 -996,14.0,11.0,-3.0953961826564296,6.097275864326261 -996,14.0,13.0,-2.4909522639994623,2.250874059369649 -996,14.0,14.0,9.365498545964757,-16.01163373210796 -996,14.0,17.0,-1.8108011504072024,3.687418931630696 -996,14.0,22.0,-1.9683489489016612,3.976064876781356 -996,15.0,11.0,-1.9519977922801688,4.104359379111847 -996,15.0,15.0,3.271064728633931,-8.94513365126506 -996,15.0,16.0,-1.3190669363537617,4.8407742721532125 -996,16.0,9.0,-3.956039125715353,10.317447719844054 -996,16.0,15.0,-1.3190669363537617,4.8407742721532125 -996,16.0,16.0,5.275106062069114,-15.158221991997266 -996,17.0,14.0,-1.8108011504072024,3.687418931630696 -996,17.0,17.0,4.886487584415919,-9.906177730909668 -996,17.0,18.0,-3.0756864340087167,6.218758799278971 -996,18.0,17.0,-3.0756864340087167,6.218758799278971 -996,18.0,18.0,8.958039375185187,-17.98346468163191 -996,18.0,19.0,-5.88235294117647,11.76470588235294 -996,19.0,9.0,-1.7848303152666305,3.98535828943083 -996,19.0,18.0,-5.88235294117647,11.76470588235294 -996,19.0,19.0,7.6671832564431,-15.75006417178377 -996,20.0,9.0,-5.101853820159654,10.98071411292983 -996,20.0,20.0,21.876495189895888,-45.10843276170355 -996,20.0,21.0,-16.774641369736234,34.127718648773715 -996,21.0,9.0,-2.619319553382597,5.400770303329455 -996,21.0,20.0,-16.774641369736234,34.127718648773715 -996,21.0,21.0,21.93449907537439,-43.48289181517921 -996,21.0,23.0,-2.5405381522555563,3.95440286307604 -996,22.0,14.0,-1.9683489489016612,3.976064876781356 -996,22.0,22.0,3.429754555384988,-6.965303617315433 -996,22.0,23.0,-1.4614056064833263,2.989238740534077 -996,23.0,21.0,-2.5405381522555563,3.95440286307604 -996,23.0,22.0,-1.4614056064833263,2.989238740534077 -996,23.0,23.0,5.311836702613133,-9.188263657315172 -996,23.0,24.0,-1.3098929438742493,2.287622053705056 -996,24.0,23.0,-1.3098929438742493,2.287622053705056 -996,24.0,24.0,4.495715080321987,-7.864978761969621 -996,24.0,25.0,-1.2165301194494855,1.8171440463475024 -996,24.0,26.0,-1.9692920169982515,3.760212661917064 -996,25.0,24.0,-1.2165301194494855,1.8171440463475024 -996,25.0,25.0,1.2165301194494855,-1.8171440463475024 -996,26.0,24.0,-1.9692920169982515,3.760212661917064 -996,26.0,26.0,3.652281470778589,-9.46044252232512 -996,26.0,27.0,0.0,2.608731947574922 -996,26.0,28.0,-0.99553355095268,1.881005840357816 -996,26.0,29.0,-0.6874559028276572,1.293971494797717 -996,27.0,5.0,-4.362844058012917,15.463571542897856 -996,27.0,7.0,-1.4439790613954469,4.540814658476248 -996,27.0,26.0,0.0,2.608731947574922 -996,27.0,27.0,5.806823119408364,-22.67145722159613 -996,28.0,26.0,-0.99553355095268,1.881005840357816 -996,28.0,28.0,1.9075867579849564,-3.604364401207048 -996,28.0,29.0,-0.9120532070322764,1.7233585608492326 -996,29.0,26.0,-0.6874559028276572,1.293971494797717 -996,29.0,28.0,-0.9120532070322764,1.7233585608492326 -996,29.0,29.0,1.5995091098599337,-3.0173300556469496 -997,0.0,0.0,6.765516048652632,-21.23160167089863 -997,0.0,1.0,-5.224646179885656,15.646726840803398 -997,0.0,2.0,-1.5408698687669766,5.631674830095234 -997,1.0,0.0,-5.224646179885656,15.646726840803398 -997,1.0,1.0,9.75228216552403,-30.648662892676068 -997,1.0,3.0,-1.7055303166990268,5.1973792282565086 -997,1.0,4.0,-1.1359607881738778,4.772479328281356 -997,1.0,5.0,-1.6861448807654689,5.116477495334806 -997,2.0,0.0,-1.5408698687669766,5.631674830095234 -997,2.0,2.0,9.736318911079088,-29.13794745915803 -997,2.0,3.0,-8.19544904231211,23.5308726290628 -997,3.0,1.0,-1.7055303166990268,5.1973792282565086 -997,3.0,2.0,-8.19544904231211,23.5308726290628 -997,3.0,3.0,16.314103089185693,-55.509410535254254 -997,3.0,5.0,-6.413123730174556,22.31120356548123 -997,3.0,11.0,0.0,4.191255364806866 -997,4.0,1.0,-1.1359607881738778,4.772479328281356 -997,4.0,4.0,4.089980824135861,-12.190647245055052 -997,4.0,6.0,-2.954020035961983,7.449267916773697 -997,5.0,1.0,-1.6861448807654689,5.116477495334806 -997,5.0,3.0,-6.413123730174556,22.31120356548123 -997,5.0,5.0,22.341631269034565,-82.8291478657789 -997,5.0,6.0,-3.590210423980992,11.02611441072814 -997,5.0,7.0,-6.289308176100628,22.0125786163522 -997,5.0,8.0,0.0,4.915840805411357 -997,5.0,9.0,0.0,1.8561002591115965 -997,5.0,27.0,-4.362844058012917,15.463571542897856 -997,6.0,4.0,-2.954020035961983,7.449267916773697 -997,6.0,5.0,-3.590210423980992,11.02611441072814 -997,6.0,6.0,6.544230459942975,-18.45668232750184 -997,7.0,5.0,-6.289308176100628,22.0125786163522 -997,7.0,7.0,7.733287237496075,-26.527493274828448 -997,7.0,27.0,-1.4439790613954469,4.540814658476248 -997,8.0,5.0,0.0,4.915840805411357 -997,8.0,8.0,0.0,-18.706293706293707 -997,8.0,9.0,0.0,9.090909090909092 -997,8.0,10.0,0.0,4.807692307692308 -997,9.0,5.0,0.0,1.8561002591115965 -997,9.0,8.0,0.0,9.090909090909092 -997,9.0,9.0,13.462042814524237,-41.3837606675224 -997,9.0,16.0,-3.956039125715353,10.317447719844054 -997,9.0,19.0,-1.7848303152666305,3.98535828943083 -997,9.0,20.0,-5.101853820159654,10.98071411292983 -997,9.0,21.0,-2.619319553382597,5.400770303329455 -997,10.0,8.0,0.0,4.807692307692308 -997,10.0,10.0,0.0,-4.807692307692308 -997,11.0,3.0,0.0,4.191255364806866 -997,11.0,11.0,6.573961583776156,-24.424167659260668 -997,11.0,12.0,0.0,7.142857142857143 -997,11.0,13.0,-1.5265676088395577,3.1734252729654173 -997,11.0,14.0,-3.0953961826564296,6.097275864326261 -997,11.0,15.0,-1.9519977922801688,4.104359379111847 -997,12.0,11.0,0.0,7.142857142857143 -997,12.0,12.0,0.0,-7.142857142857143 -997,13.0,11.0,-1.5265676088395577,3.1734252729654173 -997,13.0,13.0,4.01751987283902,-5.424299332335067 -997,13.0,14.0,-2.4909522639994623,2.250874059369649 -997,14.0,11.0,-3.0953961826564296,6.097275864326261 -997,14.0,13.0,-2.4909522639994623,2.250874059369649 -997,14.0,14.0,9.365498545964757,-16.01163373210796 -997,14.0,17.0,-1.8108011504072024,3.687418931630696 -997,14.0,22.0,-1.9683489489016612,3.976064876781356 -997,15.0,11.0,-1.9519977922801688,4.104359379111847 -997,15.0,15.0,3.271064728633931,-8.94513365126506 -997,15.0,16.0,-1.3190669363537617,4.8407742721532125 -997,16.0,9.0,-3.956039125715353,10.317447719844054 -997,16.0,15.0,-1.3190669363537617,4.8407742721532125 -997,16.0,16.0,5.275106062069114,-15.158221991997266 -997,17.0,14.0,-1.8108011504072024,3.687418931630696 -997,17.0,17.0,4.886487584415919,-9.906177730909668 -997,17.0,18.0,-3.0756864340087167,6.218758799278971 -997,18.0,17.0,-3.0756864340087167,6.218758799278971 -997,18.0,18.0,8.958039375185187,-17.98346468163191 -997,18.0,19.0,-5.88235294117647,11.76470588235294 -997,19.0,9.0,-1.7848303152666305,3.98535828943083 -997,19.0,18.0,-5.88235294117647,11.76470588235294 -997,19.0,19.0,7.6671832564431,-15.75006417178377 -997,20.0,9.0,-5.101853820159654,10.98071411292983 -997,20.0,20.0,21.876495189895888,-45.10843276170355 -997,20.0,21.0,-16.774641369736234,34.127718648773715 -997,21.0,9.0,-2.619319553382597,5.400770303329455 -997,21.0,20.0,-16.774641369736234,34.127718648773715 -997,21.0,21.0,21.93449907537439,-43.48289181517921 -997,21.0,23.0,-2.5405381522555563,3.95440286307604 -997,22.0,14.0,-1.9683489489016612,3.976064876781356 -997,22.0,22.0,3.429754555384988,-6.965303617315433 -997,22.0,23.0,-1.4614056064833263,2.989238740534077 -997,23.0,21.0,-2.5405381522555563,3.95440286307604 -997,23.0,22.0,-1.4614056064833263,2.989238740534077 -997,23.0,23.0,5.311836702613133,-9.188263657315172 -997,23.0,24.0,-1.3098929438742493,2.287622053705056 -997,24.0,23.0,-1.3098929438742493,2.287622053705056 -997,24.0,24.0,4.495715080321987,-7.864978761969621 -997,24.0,25.0,-1.2165301194494855,1.8171440463475024 -997,24.0,26.0,-1.9692920169982515,3.760212661917064 -997,25.0,24.0,-1.2165301194494855,1.8171440463475024 -997,25.0,25.0,1.2165301194494855,-1.8171440463475024 -997,26.0,24.0,-1.9692920169982515,3.760212661917064 -997,26.0,26.0,3.652281470778589,-9.46044252232512 -997,26.0,27.0,0.0,2.608731947574922 -997,26.0,28.0,-0.99553355095268,1.881005840357816 -997,26.0,29.0,-0.6874559028276572,1.293971494797717 -997,27.0,5.0,-4.362844058012917,15.463571542897856 -997,27.0,7.0,-1.4439790613954469,4.540814658476248 -997,27.0,26.0,0.0,2.608731947574922 -997,27.0,27.0,5.806823119408364,-22.67145722159613 -997,28.0,26.0,-0.99553355095268,1.881005840357816 -997,28.0,28.0,1.9075867579849564,-3.604364401207048 -997,28.0,29.0,-0.9120532070322764,1.7233585608492326 -997,29.0,26.0,-0.6874559028276572,1.293971494797717 -997,29.0,28.0,-0.9120532070322764,1.7233585608492326 -997,29.0,29.0,1.5995091098599337,-3.0173300556469496 -998,0.0,0.0,6.765516048652632,-21.23160167089863 -998,0.0,1.0,-5.224646179885656,15.646726840803398 -998,0.0,2.0,-1.5408698687669766,5.631674830095234 -998,1.0,0.0,-5.224646179885656,15.646726840803398 -998,1.0,1.0,9.75228216552403,-30.648662892676068 -998,1.0,3.0,-1.7055303166990268,5.1973792282565086 -998,1.0,4.0,-1.1359607881738778,4.772479328281356 -998,1.0,5.0,-1.6861448807654689,5.116477495334806 -998,2.0,0.0,-1.5408698687669766,5.631674830095234 -998,2.0,2.0,9.736318911079088,-29.13794745915803 -998,2.0,3.0,-8.19544904231211,23.5308726290628 -998,3.0,1.0,-1.7055303166990268,5.1973792282565086 -998,3.0,2.0,-8.19544904231211,23.5308726290628 -998,3.0,3.0,9.900979359011137,-33.202706969773025 -998,3.0,11.0,0.0,4.191255364806866 -998,4.0,1.0,-1.1359607881738778,4.772479328281356 -998,4.0,4.0,4.089980824135861,-12.190647245055052 -998,4.0,6.0,-2.954020035961983,7.449267916773697 -998,5.0,1.0,-1.6861448807654689,5.116477495334806 -998,5.0,5.0,15.928507538860009,-60.52244430029767 -998,5.0,6.0,-3.590210423980992,11.02611441072814 -998,5.0,7.0,-6.289308176100628,22.0125786163522 -998,5.0,8.0,0.0,4.915840805411357 -998,5.0,9.0,0.0,1.8561002591115965 -998,5.0,27.0,-4.362844058012917,15.463571542897856 -998,6.0,4.0,-2.954020035961983,7.449267916773697 -998,6.0,5.0,-3.590210423980992,11.02611441072814 -998,6.0,6.0,6.544230459942975,-18.45668232750184 -998,7.0,5.0,-6.289308176100628,22.0125786163522 -998,7.0,7.0,7.733287237496075,-26.527493274828448 -998,7.0,27.0,-1.4439790613954469,4.540814658476248 -998,8.0,5.0,0.0,4.915840805411357 -998,8.0,8.0,0.0,-18.706293706293707 -998,8.0,9.0,0.0,9.090909090909092 -998,8.0,10.0,0.0,4.807692307692308 -998,9.0,5.0,0.0,1.8561002591115965 -998,9.0,8.0,0.0,9.090909090909092 -998,9.0,9.0,13.462042814524237,-41.3837606675224 -998,9.0,16.0,-3.956039125715353,10.317447719844054 -998,9.0,19.0,-1.7848303152666305,3.98535828943083 -998,9.0,20.0,-5.101853820159654,10.98071411292983 -998,9.0,21.0,-2.619319553382597,5.400770303329455 -998,10.0,8.0,0.0,4.807692307692308 -998,10.0,10.0,0.0,-4.807692307692308 -998,11.0,3.0,0.0,4.191255364806866 -998,11.0,11.0,6.573961583776156,-24.424167659260668 -998,11.0,12.0,0.0,7.142857142857143 -998,11.0,13.0,-1.5265676088395577,3.1734252729654173 -998,11.0,14.0,-3.0953961826564296,6.097275864326261 -998,11.0,15.0,-1.9519977922801688,4.104359379111847 -998,12.0,11.0,0.0,7.142857142857143 -998,12.0,12.0,0.0,-7.142857142857143 -998,13.0,11.0,-1.5265676088395577,3.1734252729654173 -998,13.0,13.0,4.01751987283902,-5.424299332335067 -998,13.0,14.0,-2.4909522639994623,2.250874059369649 -998,14.0,11.0,-3.0953961826564296,6.097275864326261 -998,14.0,13.0,-2.4909522639994623,2.250874059369649 -998,14.0,14.0,9.365498545964757,-16.01163373210796 -998,14.0,17.0,-1.8108011504072024,3.687418931630696 -998,14.0,22.0,-1.9683489489016612,3.976064876781356 -998,15.0,11.0,-1.9519977922801688,4.104359379111847 -998,15.0,15.0,3.271064728633931,-8.94513365126506 -998,15.0,16.0,-1.3190669363537617,4.8407742721532125 -998,16.0,9.0,-3.956039125715353,10.317447719844054 -998,16.0,15.0,-1.3190669363537617,4.8407742721532125 -998,16.0,16.0,5.275106062069114,-15.158221991997266 -998,17.0,14.0,-1.8108011504072024,3.687418931630696 -998,17.0,17.0,4.886487584415919,-9.906177730909668 -998,17.0,18.0,-3.0756864340087167,6.218758799278971 -998,18.0,17.0,-3.0756864340087167,6.218758799278971 -998,18.0,18.0,8.958039375185187,-17.98346468163191 -998,18.0,19.0,-5.88235294117647,11.76470588235294 -998,19.0,9.0,-1.7848303152666305,3.98535828943083 -998,19.0,18.0,-5.88235294117647,11.76470588235294 -998,19.0,19.0,7.6671832564431,-15.75006417178377 -998,20.0,9.0,-5.101853820159654,10.98071411292983 -998,20.0,20.0,21.876495189895888,-45.10843276170355 -998,20.0,21.0,-16.774641369736234,34.127718648773715 -998,21.0,9.0,-2.619319553382597,5.400770303329455 -998,21.0,20.0,-16.774641369736234,34.127718648773715 -998,21.0,21.0,21.93449907537439,-43.48289181517921 -998,21.0,23.0,-2.5405381522555563,3.95440286307604 -998,22.0,14.0,-1.9683489489016612,3.976064876781356 -998,22.0,22.0,3.429754555384988,-6.965303617315433 -998,22.0,23.0,-1.4614056064833263,2.989238740534077 -998,23.0,21.0,-2.5405381522555563,3.95440286307604 -998,23.0,22.0,-1.4614056064833263,2.989238740534077 -998,23.0,23.0,5.311836702613133,-9.188263657315172 -998,23.0,24.0,-1.3098929438742493,2.287622053705056 -998,24.0,23.0,-1.3098929438742493,2.287622053705056 -998,24.0,24.0,4.495715080321987,-7.864978761969621 -998,24.0,25.0,-1.2165301194494855,1.8171440463475024 -998,24.0,26.0,-1.9692920169982515,3.760212661917064 -998,25.0,24.0,-1.2165301194494855,1.8171440463475024 -998,25.0,25.0,1.2165301194494855,-1.8171440463475024 -998,26.0,24.0,-1.9692920169982515,3.760212661917064 -998,26.0,26.0,3.652281470778589,-9.46044252232512 -998,26.0,27.0,0.0,2.608731947574922 -998,26.0,28.0,-0.99553355095268,1.881005840357816 -998,26.0,29.0,-0.6874559028276572,1.293971494797717 -998,27.0,5.0,-4.362844058012917,15.463571542897856 -998,27.0,7.0,-1.4439790613954469,4.540814658476248 -998,27.0,26.0,0.0,2.608731947574922 -998,27.0,27.0,5.806823119408364,-22.67145722159613 -998,28.0,26.0,-0.99553355095268,1.881005840357816 -998,28.0,28.0,1.9075867579849564,-3.604364401207048 -998,28.0,29.0,-0.9120532070322764,1.7233585608492326 -998,29.0,26.0,-0.6874559028276572,1.293971494797717 -998,29.0,28.0,-0.9120532070322764,1.7233585608492326 -998,29.0,29.0,1.5995091098599337,-3.0173300556469496 -999,0.0,0.0,6.765516048652632,-21.23160167089863 -999,0.0,1.0,-5.224646179885656,15.646726840803398 -999,0.0,2.0,-1.5408698687669766,5.631674830095234 -999,1.0,0.0,-5.224646179885656,15.646726840803398 -999,1.0,1.0,9.75228216552403,-30.648662892676068 -999,1.0,3.0,-1.7055303166990268,5.1973792282565086 -999,1.0,4.0,-1.1359607881738778,4.772479328281356 -999,1.0,5.0,-1.6861448807654689,5.116477495334806 -999,2.0,0.0,-1.5408698687669766,5.631674830095234 -999,2.0,2.0,9.736318911079088,-29.13794745915803 -999,2.0,3.0,-8.19544904231211,23.5308726290628 -999,3.0,1.0,-1.7055303166990268,5.1973792282565086 -999,3.0,2.0,-8.19544904231211,23.5308726290628 -999,3.0,3.0,16.314103089185693,-55.509410535254254 -999,3.0,5.0,-6.413123730174556,22.31120356548123 -999,3.0,11.0,0.0,4.191255364806866 -999,4.0,1.0,-1.1359607881738778,4.772479328281356 -999,4.0,4.0,4.089980824135861,-12.190647245055052 -999,4.0,6.0,-2.954020035961983,7.449267916773697 -999,5.0,1.0,-1.6861448807654689,5.116477495334806 -999,5.0,3.0,-6.413123730174556,22.31120356548123 -999,5.0,5.0,22.341631269034565,-82.8291478657789 -999,5.0,6.0,-3.590210423980992,11.02611441072814 -999,5.0,7.0,-6.289308176100628,22.0125786163522 -999,5.0,8.0,0.0,4.915840805411357 -999,5.0,9.0,0.0,1.8561002591115965 -999,5.0,27.0,-4.362844058012917,15.463571542897856 -999,6.0,4.0,-2.954020035961983,7.449267916773697 -999,6.0,5.0,-3.590210423980992,11.02611441072814 -999,6.0,6.0,6.544230459942975,-18.45668232750184 -999,7.0,5.0,-6.289308176100628,22.0125786163522 -999,7.0,7.0,7.733287237496075,-26.527493274828448 -999,7.0,27.0,-1.4439790613954469,4.540814658476248 -999,8.0,5.0,0.0,4.915840805411357 -999,8.0,8.0,0.0,-18.706293706293707 -999,8.0,9.0,0.0,9.090909090909092 -999,8.0,10.0,0.0,4.807692307692308 -999,9.0,5.0,0.0,1.8561002591115965 -999,9.0,8.0,0.0,9.090909090909092 -999,9.0,9.0,13.462042814524237,-41.3837606675224 -999,9.0,16.0,-3.956039125715353,10.317447719844054 -999,9.0,19.0,-1.7848303152666305,3.98535828943083 -999,9.0,20.0,-5.101853820159654,10.98071411292983 -999,9.0,21.0,-2.619319553382597,5.400770303329455 -999,10.0,8.0,0.0,4.807692307692308 -999,10.0,10.0,0.0,-4.807692307692308 -999,11.0,3.0,0.0,4.191255364806866 -999,11.0,11.0,6.573961583776156,-24.424167659260668 -999,11.0,12.0,0.0,7.142857142857143 -999,11.0,13.0,-1.5265676088395577,3.1734252729654173 -999,11.0,14.0,-3.0953961826564296,6.097275864326261 -999,11.0,15.0,-1.9519977922801688,4.104359379111847 -999,12.0,11.0,0.0,7.142857142857143 -999,12.0,12.0,0.0,-7.142857142857143 -999,13.0,11.0,-1.5265676088395577,3.1734252729654173 -999,13.0,13.0,4.01751987283902,-5.424299332335067 -999,13.0,14.0,-2.4909522639994623,2.250874059369649 -999,14.0,11.0,-3.0953961826564296,6.097275864326261 -999,14.0,13.0,-2.4909522639994623,2.250874059369649 -999,14.0,14.0,9.365498545964757,-16.01163373210796 -999,14.0,17.0,-1.8108011504072024,3.687418931630696 -999,14.0,22.0,-1.9683489489016612,3.976064876781356 -999,15.0,11.0,-1.9519977922801688,4.104359379111847 -999,15.0,15.0,3.271064728633931,-8.94513365126506 -999,15.0,16.0,-1.3190669363537617,4.8407742721532125 -999,16.0,9.0,-3.956039125715353,10.317447719844054 -999,16.0,15.0,-1.3190669363537617,4.8407742721532125 -999,16.0,16.0,5.275106062069114,-15.158221991997266 -999,17.0,14.0,-1.8108011504072024,3.687418931630696 -999,17.0,17.0,4.886487584415919,-9.906177730909668 -999,17.0,18.0,-3.0756864340087167,6.218758799278971 -999,18.0,17.0,-3.0756864340087167,6.218758799278971 -999,18.0,18.0,8.958039375185187,-17.98346468163191 -999,18.0,19.0,-5.88235294117647,11.76470588235294 -999,19.0,9.0,-1.7848303152666305,3.98535828943083 -999,19.0,18.0,-5.88235294117647,11.76470588235294 -999,19.0,19.0,7.6671832564431,-15.75006417178377 -999,20.0,9.0,-5.101853820159654,10.98071411292983 -999,20.0,20.0,21.876495189895888,-45.10843276170355 -999,20.0,21.0,-16.774641369736234,34.127718648773715 -999,21.0,9.0,-2.619319553382597,5.400770303329455 -999,21.0,20.0,-16.774641369736234,34.127718648773715 -999,21.0,21.0,21.93449907537439,-43.48289181517921 -999,21.0,23.0,-2.5405381522555563,3.95440286307604 -999,22.0,14.0,-1.9683489489016612,3.976064876781356 -999,22.0,22.0,3.429754555384988,-6.965303617315433 -999,22.0,23.0,-1.4614056064833263,2.989238740534077 -999,23.0,21.0,-2.5405381522555563,3.95440286307604 -999,23.0,22.0,-1.4614056064833263,2.989238740534077 -999,23.0,23.0,5.311836702613133,-9.188263657315172 -999,23.0,24.0,-1.3098929438742493,2.287622053705056 -999,24.0,23.0,-1.3098929438742493,2.287622053705056 -999,24.0,24.0,4.495715080321987,-7.864978761969621 -999,24.0,25.0,-1.2165301194494855,1.8171440463475024 -999,24.0,26.0,-1.9692920169982515,3.760212661917064 -999,25.0,24.0,-1.2165301194494855,1.8171440463475024 -999,25.0,25.0,1.2165301194494855,-1.8171440463475024 -999,26.0,24.0,-1.9692920169982515,3.760212661917064 -999,26.0,26.0,3.652281470778589,-9.46044252232512 -999,26.0,27.0,0.0,2.608731947574922 -999,26.0,28.0,-0.99553355095268,1.881005840357816 -999,26.0,29.0,-0.6874559028276572,1.293971494797717 -999,27.0,5.0,-4.362844058012917,15.463571542897856 -999,27.0,7.0,-1.4439790613954469,4.540814658476248 -999,27.0,26.0,0.0,2.608731947574922 -999,27.0,27.0,5.806823119408364,-22.67145722159613 -999,28.0,26.0,-0.99553355095268,1.881005840357816 -999,28.0,28.0,1.9075867579849564,-3.604364401207048 -999,28.0,29.0,-0.9120532070322764,1.7233585608492326 -999,29.0,26.0,-0.6874559028276572,1.293971494797717 -999,29.0,28.0,-0.9120532070322764,1.7233585608492326 -999,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1000,0.0,0.0,6.765516048652632,-21.23160167089863 -1000,0.0,1.0,-5.224646179885656,15.646726840803398 -1000,0.0,2.0,-1.5408698687669766,5.631674830095234 -1000,1.0,0.0,-5.224646179885656,15.646726840803398 -1000,1.0,1.0,9.75228216552403,-30.648662892676068 -1000,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1000,1.0,4.0,-1.1359607881738778,4.772479328281356 -1000,1.0,5.0,-1.6861448807654689,5.116477495334806 -1000,2.0,0.0,-1.5408698687669766,5.631674830095234 -1000,2.0,2.0,9.736318911079088,-29.13794745915803 -1000,2.0,3.0,-8.19544904231211,23.5308726290628 -1000,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1000,3.0,2.0,-8.19544904231211,23.5308726290628 -1000,3.0,3.0,16.314103089185693,-55.509410535254254 -1000,3.0,5.0,-6.413123730174556,22.31120356548123 -1000,3.0,11.0,0.0,4.191255364806866 -1000,4.0,1.0,-1.1359607881738778,4.772479328281356 -1000,4.0,4.0,4.089980824135861,-12.190647245055052 -1000,4.0,6.0,-2.954020035961983,7.449267916773697 -1000,5.0,1.0,-1.6861448807654689,5.116477495334806 -1000,5.0,3.0,-6.413123730174556,22.31120356548123 -1000,5.0,5.0,22.341631269034565,-82.8291478657789 -1000,5.0,6.0,-3.590210423980992,11.02611441072814 -1000,5.0,7.0,-6.289308176100628,22.0125786163522 -1000,5.0,8.0,0.0,4.915840805411357 -1000,5.0,9.0,0.0,1.8561002591115965 -1000,5.0,27.0,-4.362844058012917,15.463571542897856 -1000,6.0,4.0,-2.954020035961983,7.449267916773697 -1000,6.0,5.0,-3.590210423980992,11.02611441072814 -1000,6.0,6.0,6.544230459942975,-18.45668232750184 -1000,7.0,5.0,-6.289308176100628,22.0125786163522 -1000,7.0,7.0,7.733287237496075,-26.527493274828448 -1000,7.0,27.0,-1.4439790613954469,4.540814658476248 -1000,8.0,5.0,0.0,4.915840805411357 -1000,8.0,8.0,0.0,-18.706293706293707 -1000,8.0,9.0,0.0,9.090909090909092 -1000,8.0,10.0,0.0,4.807692307692308 -1000,9.0,5.0,0.0,1.8561002591115965 -1000,9.0,8.0,0.0,9.090909090909092 -1000,9.0,9.0,13.462042814524237,-41.3837606675224 -1000,9.0,16.0,-3.956039125715353,10.317447719844054 -1000,9.0,19.0,-1.7848303152666305,3.98535828943083 -1000,9.0,20.0,-5.101853820159654,10.98071411292983 -1000,9.0,21.0,-2.619319553382597,5.400770303329455 -1000,10.0,8.0,0.0,4.807692307692308 -1000,10.0,10.0,0.0,-4.807692307692308 -1000,11.0,3.0,0.0,4.191255364806866 -1000,11.0,11.0,6.573961583776156,-24.424167659260668 -1000,11.0,12.0,0.0,7.142857142857143 -1000,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1000,11.0,14.0,-3.0953961826564296,6.097275864326261 -1000,11.0,15.0,-1.9519977922801688,4.104359379111847 -1000,12.0,11.0,0.0,7.142857142857143 -1000,12.0,12.0,0.0,-7.142857142857143 -1000,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1000,13.0,13.0,4.01751987283902,-5.424299332335067 -1000,13.0,14.0,-2.4909522639994623,2.250874059369649 -1000,14.0,11.0,-3.0953961826564296,6.097275864326261 -1000,14.0,13.0,-2.4909522639994623,2.250874059369649 -1000,14.0,14.0,9.365498545964757,-16.01163373210796 -1000,14.0,17.0,-1.8108011504072024,3.687418931630696 -1000,14.0,22.0,-1.9683489489016612,3.976064876781356 -1000,15.0,11.0,-1.9519977922801688,4.104359379111847 -1000,15.0,15.0,3.271064728633931,-8.94513365126506 -1000,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1000,16.0,9.0,-3.956039125715353,10.317447719844054 -1000,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1000,16.0,16.0,5.275106062069114,-15.158221991997266 -1000,17.0,14.0,-1.8108011504072024,3.687418931630696 -1000,17.0,17.0,4.886487584415919,-9.906177730909668 -1000,17.0,18.0,-3.0756864340087167,6.218758799278971 -1000,18.0,17.0,-3.0756864340087167,6.218758799278971 -1000,18.0,18.0,8.958039375185187,-17.98346468163191 -1000,18.0,19.0,-5.88235294117647,11.76470588235294 -1000,19.0,9.0,-1.7848303152666305,3.98535828943083 -1000,19.0,18.0,-5.88235294117647,11.76470588235294 -1000,19.0,19.0,7.6671832564431,-15.75006417178377 -1000,20.0,9.0,-5.101853820159654,10.98071411292983 -1000,20.0,20.0,21.876495189895888,-45.10843276170355 -1000,20.0,21.0,-16.774641369736234,34.127718648773715 -1000,21.0,9.0,-2.619319553382597,5.400770303329455 -1000,21.0,20.0,-16.774641369736234,34.127718648773715 -1000,21.0,21.0,21.93449907537439,-43.48289181517921 -1000,21.0,23.0,-2.5405381522555563,3.95440286307604 -1000,22.0,14.0,-1.9683489489016612,3.976064876781356 -1000,22.0,22.0,3.429754555384988,-6.965303617315433 -1000,22.0,23.0,-1.4614056064833263,2.989238740534077 -1000,23.0,21.0,-2.5405381522555563,3.95440286307604 -1000,23.0,22.0,-1.4614056064833263,2.989238740534077 -1000,23.0,23.0,5.311836702613133,-9.188263657315172 -1000,23.0,24.0,-1.3098929438742493,2.287622053705056 -1000,24.0,23.0,-1.3098929438742493,2.287622053705056 -1000,24.0,24.0,4.495715080321987,-7.864978761969621 -1000,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1000,24.0,26.0,-1.9692920169982515,3.760212661917064 -1000,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1000,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1000,26.0,24.0,-1.9692920169982515,3.760212661917064 -1000,26.0,26.0,3.652281470778589,-9.46044252232512 -1000,26.0,27.0,0.0,2.608731947574922 -1000,26.0,28.0,-0.99553355095268,1.881005840357816 -1000,26.0,29.0,-0.6874559028276572,1.293971494797717 -1000,27.0,5.0,-4.362844058012917,15.463571542897856 -1000,27.0,7.0,-1.4439790613954469,4.540814658476248 -1000,27.0,26.0,0.0,2.608731947574922 -1000,27.0,27.0,5.806823119408364,-22.67145722159613 -1000,28.0,26.0,-0.99553355095268,1.881005840357816 -1000,28.0,28.0,1.9075867579849564,-3.604364401207048 -1000,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1000,29.0,26.0,-0.6874559028276572,1.293971494797717 -1000,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1000,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1001,0.0,0.0,6.765516048652632,-21.23160167089863 -1001,0.0,1.0,-5.224646179885656,15.646726840803398 -1001,0.0,2.0,-1.5408698687669766,5.631674830095234 -1001,1.0,0.0,-5.224646179885656,15.646726840803398 -1001,1.0,1.0,9.75228216552403,-30.648662892676068 -1001,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1001,1.0,4.0,-1.1359607881738778,4.772479328281356 -1001,1.0,5.0,-1.6861448807654689,5.116477495334806 -1001,2.0,0.0,-1.5408698687669766,5.631674830095234 -1001,2.0,2.0,9.736318911079088,-29.13794745915803 -1001,2.0,3.0,-8.19544904231211,23.5308726290628 -1001,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1001,3.0,2.0,-8.19544904231211,23.5308726290628 -1001,3.0,3.0,16.314103089185693,-55.509410535254254 -1001,3.0,5.0,-6.413123730174556,22.31120356548123 -1001,3.0,11.0,0.0,4.191255364806866 -1001,4.0,1.0,-1.1359607881738778,4.772479328281356 -1001,4.0,4.0,4.089980824135861,-12.190647245055052 -1001,4.0,6.0,-2.954020035961983,7.449267916773697 -1001,5.0,1.0,-1.6861448807654689,5.116477495334806 -1001,5.0,3.0,-6.413123730174556,22.31120356548123 -1001,5.0,5.0,22.341631269034565,-82.8291478657789 -1001,5.0,6.0,-3.590210423980992,11.02611441072814 -1001,5.0,7.0,-6.289308176100628,22.0125786163522 -1001,5.0,8.0,0.0,4.915840805411357 -1001,5.0,9.0,0.0,1.8561002591115965 -1001,5.0,27.0,-4.362844058012917,15.463571542897856 -1001,6.0,4.0,-2.954020035961983,7.449267916773697 -1001,6.0,5.0,-3.590210423980992,11.02611441072814 -1001,6.0,6.0,6.544230459942975,-18.45668232750184 -1001,7.0,5.0,-6.289308176100628,22.0125786163522 -1001,7.0,7.0,7.733287237496075,-26.527493274828448 -1001,7.0,27.0,-1.4439790613954469,4.540814658476248 -1001,8.0,5.0,0.0,4.915840805411357 -1001,8.0,8.0,0.0,-18.706293706293707 -1001,8.0,9.0,0.0,9.090909090909092 -1001,8.0,10.0,0.0,4.807692307692308 -1001,9.0,5.0,0.0,1.8561002591115965 -1001,9.0,8.0,0.0,9.090909090909092 -1001,9.0,9.0,13.462042814524237,-41.3837606675224 -1001,9.0,16.0,-3.956039125715353,10.317447719844054 -1001,9.0,19.0,-1.7848303152666305,3.98535828943083 -1001,9.0,20.0,-5.101853820159654,10.98071411292983 -1001,9.0,21.0,-2.619319553382597,5.400770303329455 -1001,10.0,8.0,0.0,4.807692307692308 -1001,10.0,10.0,0.0,-4.807692307692308 -1001,11.0,3.0,0.0,4.191255364806866 -1001,11.0,11.0,6.573961583776156,-24.424167659260668 -1001,11.0,12.0,0.0,7.142857142857143 -1001,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1001,11.0,14.0,-3.0953961826564296,6.097275864326261 -1001,11.0,15.0,-1.9519977922801688,4.104359379111847 -1001,12.0,11.0,0.0,7.142857142857143 -1001,12.0,12.0,0.0,-7.142857142857143 -1001,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1001,13.0,13.0,4.01751987283902,-5.424299332335067 -1001,13.0,14.0,-2.4909522639994623,2.250874059369649 -1001,14.0,11.0,-3.0953961826564296,6.097275864326261 -1001,14.0,13.0,-2.4909522639994623,2.250874059369649 -1001,14.0,14.0,9.365498545964757,-16.01163373210796 -1001,14.0,17.0,-1.8108011504072024,3.687418931630696 -1001,14.0,22.0,-1.9683489489016612,3.976064876781356 -1001,15.0,11.0,-1.9519977922801688,4.104359379111847 -1001,15.0,15.0,3.271064728633931,-8.94513365126506 -1001,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1001,16.0,9.0,-3.956039125715353,10.317447719844054 -1001,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1001,16.0,16.0,5.275106062069114,-15.158221991997266 -1001,17.0,14.0,-1.8108011504072024,3.687418931630696 -1001,17.0,17.0,4.886487584415919,-9.906177730909668 -1001,17.0,18.0,-3.0756864340087167,6.218758799278971 -1001,18.0,17.0,-3.0756864340087167,6.218758799278971 -1001,18.0,18.0,8.958039375185187,-17.98346468163191 -1001,18.0,19.0,-5.88235294117647,11.76470588235294 -1001,19.0,9.0,-1.7848303152666305,3.98535828943083 -1001,19.0,18.0,-5.88235294117647,11.76470588235294 -1001,19.0,19.0,7.6671832564431,-15.75006417178377 -1001,20.0,9.0,-5.101853820159654,10.98071411292983 -1001,20.0,20.0,21.876495189895888,-45.10843276170355 -1001,20.0,21.0,-16.774641369736234,34.127718648773715 -1001,21.0,9.0,-2.619319553382597,5.400770303329455 -1001,21.0,20.0,-16.774641369736234,34.127718648773715 -1001,21.0,21.0,21.93449907537439,-43.48289181517921 -1001,21.0,23.0,-2.5405381522555563,3.95440286307604 -1001,22.0,14.0,-1.9683489489016612,3.976064876781356 -1001,22.0,22.0,3.429754555384988,-6.965303617315433 -1001,22.0,23.0,-1.4614056064833263,2.989238740534077 -1001,23.0,21.0,-2.5405381522555563,3.95440286307604 -1001,23.0,22.0,-1.4614056064833263,2.989238740534077 -1001,23.0,23.0,5.311836702613133,-9.188263657315172 -1001,23.0,24.0,-1.3098929438742493,2.287622053705056 -1001,24.0,23.0,-1.3098929438742493,2.287622053705056 -1001,24.0,24.0,4.495715080321987,-7.864978761969621 -1001,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1001,24.0,26.0,-1.9692920169982515,3.760212661917064 -1001,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1001,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1001,26.0,24.0,-1.9692920169982515,3.760212661917064 -1001,26.0,26.0,2.656747919825909,-7.579436681967305 -1001,26.0,27.0,0.0,2.608731947574922 -1001,26.0,29.0,-0.6874559028276572,1.293971494797717 -1001,27.0,5.0,-4.362844058012917,15.463571542897856 -1001,27.0,7.0,-1.4439790613954469,4.540814658476248 -1001,27.0,26.0,0.0,2.608731947574922 -1001,27.0,27.0,5.806823119408364,-22.67145722159613 -1001,28.0,28.0,0.9120532070322764,-1.7233585608492326 -1001,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1001,29.0,26.0,-0.6874559028276572,1.293971494797717 -1001,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1001,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1002,0.0,0.0,6.765516048652632,-21.23160167089863 -1002,0.0,1.0,-5.224646179885656,15.646726840803398 -1002,0.0,2.0,-1.5408698687669766,5.631674830095234 -1002,1.0,0.0,-5.224646179885656,15.646726840803398 -1002,1.0,1.0,9.75228216552403,-30.648662892676068 -1002,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1002,1.0,4.0,-1.1359607881738778,4.772479328281356 -1002,1.0,5.0,-1.6861448807654689,5.116477495334806 -1002,2.0,0.0,-1.5408698687669766,5.631674830095234 -1002,2.0,2.0,9.736318911079088,-29.13794745915803 -1002,2.0,3.0,-8.19544904231211,23.5308726290628 -1002,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1002,3.0,2.0,-8.19544904231211,23.5308726290628 -1002,3.0,3.0,16.314103089185693,-55.509410535254254 -1002,3.0,5.0,-6.413123730174556,22.31120356548123 -1002,3.0,11.0,0.0,4.191255364806866 -1002,4.0,1.0,-1.1359607881738778,4.772479328281356 -1002,4.0,4.0,4.089980824135861,-12.190647245055052 -1002,4.0,6.0,-2.954020035961983,7.449267916773697 -1002,5.0,1.0,-1.6861448807654689,5.116477495334806 -1002,5.0,3.0,-6.413123730174556,22.31120356548123 -1002,5.0,5.0,22.341631269034565,-82.8291478657789 -1002,5.0,6.0,-3.590210423980992,11.02611441072814 -1002,5.0,7.0,-6.289308176100628,22.0125786163522 -1002,5.0,8.0,0.0,4.915840805411357 -1002,5.0,9.0,0.0,1.8561002591115965 -1002,5.0,27.0,-4.362844058012917,15.463571542897856 -1002,6.0,4.0,-2.954020035961983,7.449267916773697 -1002,6.0,5.0,-3.590210423980992,11.02611441072814 -1002,6.0,6.0,6.544230459942975,-18.45668232750184 -1002,7.0,5.0,-6.289308176100628,22.0125786163522 -1002,7.0,7.0,7.733287237496075,-26.527493274828448 -1002,7.0,27.0,-1.4439790613954469,4.540814658476248 -1002,8.0,5.0,0.0,4.915840805411357 -1002,8.0,8.0,0.0,-18.706293706293707 -1002,8.0,9.0,0.0,9.090909090909092 -1002,8.0,10.0,0.0,4.807692307692308 -1002,9.0,5.0,0.0,1.8561002591115965 -1002,9.0,8.0,0.0,9.090909090909092 -1002,9.0,9.0,9.506003688808882,-31.06631294767834 -1002,9.0,19.0,-1.7848303152666305,3.98535828943083 -1002,9.0,20.0,-5.101853820159654,10.98071411292983 -1002,9.0,21.0,-2.619319553382597,5.400770303329455 -1002,10.0,8.0,0.0,4.807692307692308 -1002,10.0,10.0,0.0,-4.807692307692308 -1002,11.0,3.0,0.0,4.191255364806866 -1002,11.0,11.0,6.573961583776156,-24.424167659260668 -1002,11.0,12.0,0.0,7.142857142857143 -1002,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1002,11.0,14.0,-3.0953961826564296,6.097275864326261 -1002,11.0,15.0,-1.9519977922801688,4.104359379111847 -1002,12.0,11.0,0.0,7.142857142857143 -1002,12.0,12.0,0.0,-7.142857142857143 -1002,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1002,13.0,13.0,1.5265676088395577,-3.1734252729654173 -1002,14.0,11.0,-3.0953961826564296,6.097275864326261 -1002,14.0,14.0,6.874546281965293,-13.760759672738311 -1002,14.0,17.0,-1.8108011504072024,3.687418931630696 -1002,14.0,22.0,-1.9683489489016612,3.976064876781356 -1002,15.0,11.0,-1.9519977922801688,4.104359379111847 -1002,15.0,15.0,3.271064728633931,-8.94513365126506 -1002,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1002,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1002,16.0,16.0,1.3190669363537617,-4.8407742721532125 -1002,17.0,14.0,-1.8108011504072024,3.687418931630696 -1002,17.0,17.0,4.886487584415919,-9.906177730909668 -1002,17.0,18.0,-3.0756864340087167,6.218758799278971 -1002,18.0,17.0,-3.0756864340087167,6.218758799278971 -1002,18.0,18.0,8.958039375185187,-17.98346468163191 -1002,18.0,19.0,-5.88235294117647,11.76470588235294 -1002,19.0,9.0,-1.7848303152666305,3.98535828943083 -1002,19.0,18.0,-5.88235294117647,11.76470588235294 -1002,19.0,19.0,7.6671832564431,-15.75006417178377 -1002,20.0,9.0,-5.101853820159654,10.98071411292983 -1002,20.0,20.0,21.876495189895888,-45.10843276170355 -1002,20.0,21.0,-16.774641369736234,34.127718648773715 -1002,21.0,9.0,-2.619319553382597,5.400770303329455 -1002,21.0,20.0,-16.774641369736234,34.127718648773715 -1002,21.0,21.0,21.93449907537439,-43.48289181517921 -1002,21.0,23.0,-2.5405381522555563,3.95440286307604 -1002,22.0,14.0,-1.9683489489016612,3.976064876781356 -1002,22.0,22.0,3.429754555384988,-6.965303617315433 -1002,22.0,23.0,-1.4614056064833263,2.989238740534077 -1002,23.0,21.0,-2.5405381522555563,3.95440286307604 -1002,23.0,22.0,-1.4614056064833263,2.989238740534077 -1002,23.0,23.0,4.001943758738883,-6.900641603610116 -1002,24.0,24.0,3.185822136447737,-5.577356708264566 -1002,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1002,24.0,26.0,-1.9692920169982515,3.760212661917064 -1002,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1002,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1002,26.0,24.0,-1.9692920169982515,3.760212661917064 -1002,26.0,26.0,3.652281470778589,-9.46044252232512 -1002,26.0,27.0,0.0,2.608731947574922 -1002,26.0,28.0,-0.99553355095268,1.881005840357816 -1002,26.0,29.0,-0.6874559028276572,1.293971494797717 -1002,27.0,5.0,-4.362844058012917,15.463571542897856 -1002,27.0,7.0,-1.4439790613954469,4.540814658476248 -1002,27.0,26.0,0.0,2.608731947574922 -1002,27.0,27.0,5.806823119408364,-22.67145722159613 -1002,28.0,26.0,-0.99553355095268,1.881005840357816 -1002,28.0,28.0,1.9075867579849564,-3.604364401207048 -1002,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1002,29.0,26.0,-0.6874559028276572,1.293971494797717 -1002,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1002,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1003,0.0,0.0,6.765516048652632,-21.23160167089863 -1003,0.0,1.0,-5.224646179885656,15.646726840803398 -1003,0.0,2.0,-1.5408698687669766,5.631674830095234 -1003,1.0,0.0,-5.224646179885656,15.646726840803398 -1003,1.0,1.0,9.75228216552403,-30.648662892676068 -1003,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1003,1.0,4.0,-1.1359607881738778,4.772479328281356 -1003,1.0,5.0,-1.6861448807654689,5.116477495334806 -1003,2.0,0.0,-1.5408698687669766,5.631674830095234 -1003,2.0,2.0,9.736318911079088,-29.13794745915803 -1003,2.0,3.0,-8.19544904231211,23.5308726290628 -1003,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1003,3.0,2.0,-8.19544904231211,23.5308726290628 -1003,3.0,3.0,16.314103089185693,-55.509410535254254 -1003,3.0,5.0,-6.413123730174556,22.31120356548123 -1003,3.0,11.0,0.0,4.191255364806866 -1003,4.0,1.0,-1.1359607881738778,4.772479328281356 -1003,4.0,4.0,4.089980824135861,-12.190647245055052 -1003,4.0,6.0,-2.954020035961983,7.449267916773697 -1003,5.0,1.0,-1.6861448807654689,5.116477495334806 -1003,5.0,3.0,-6.413123730174556,22.31120356548123 -1003,5.0,5.0,22.341631269034565,-82.8291478657789 -1003,5.0,6.0,-3.590210423980992,11.02611441072814 -1003,5.0,7.0,-6.289308176100628,22.0125786163522 -1003,5.0,8.0,0.0,4.915840805411357 -1003,5.0,9.0,0.0,1.8561002591115965 -1003,5.0,27.0,-4.362844058012917,15.463571542897856 -1003,6.0,4.0,-2.954020035961983,7.449267916773697 -1003,6.0,5.0,-3.590210423980992,11.02611441072814 -1003,6.0,6.0,6.544230459942975,-18.45668232750184 -1003,7.0,5.0,-6.289308176100628,22.0125786163522 -1003,7.0,7.0,7.733287237496075,-26.527493274828448 -1003,7.0,27.0,-1.4439790613954469,4.540814658476248 -1003,8.0,5.0,0.0,4.915840805411357 -1003,8.0,8.0,0.0,-18.706293706293707 -1003,8.0,9.0,0.0,9.090909090909092 -1003,8.0,10.0,0.0,4.807692307692308 -1003,9.0,5.0,0.0,1.8561002591115965 -1003,9.0,8.0,0.0,9.090909090909092 -1003,9.0,9.0,13.462042814524237,-41.3837606675224 -1003,9.0,16.0,-3.956039125715353,10.317447719844054 -1003,9.0,19.0,-1.7848303152666305,3.98535828943083 -1003,9.0,20.0,-5.101853820159654,10.98071411292983 -1003,9.0,21.0,-2.619319553382597,5.400770303329455 -1003,10.0,8.0,0.0,4.807692307692308 -1003,10.0,10.0,0.0,-4.807692307692308 -1003,11.0,3.0,0.0,4.191255364806866 -1003,11.0,11.0,6.573961583776156,-24.424167659260668 -1003,11.0,12.0,0.0,7.142857142857143 -1003,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1003,11.0,14.0,-3.0953961826564296,6.097275864326261 -1003,11.0,15.0,-1.9519977922801688,4.104359379111847 -1003,12.0,11.0,0.0,7.142857142857143 -1003,12.0,12.0,0.0,-7.142857142857143 -1003,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1003,13.0,13.0,4.01751987283902,-5.424299332335067 -1003,13.0,14.0,-2.4909522639994623,2.250874059369649 -1003,14.0,11.0,-3.0953961826564296,6.097275864326261 -1003,14.0,13.0,-2.4909522639994623,2.250874059369649 -1003,14.0,14.0,9.365498545964757,-16.01163373210796 -1003,14.0,17.0,-1.8108011504072024,3.687418931630696 -1003,14.0,22.0,-1.9683489489016612,3.976064876781356 -1003,15.0,11.0,-1.9519977922801688,4.104359379111847 -1003,15.0,15.0,3.271064728633931,-8.94513365126506 -1003,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1003,16.0,9.0,-3.956039125715353,10.317447719844054 -1003,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1003,16.0,16.0,5.275106062069114,-15.158221991997266 -1003,17.0,14.0,-1.8108011504072024,3.687418931630696 -1003,17.0,17.0,4.886487584415919,-9.906177730909668 -1003,17.0,18.0,-3.0756864340087167,6.218758799278971 -1003,18.0,17.0,-3.0756864340087167,6.218758799278971 -1003,18.0,18.0,8.958039375185187,-17.98346468163191 -1003,18.0,19.0,-5.88235294117647,11.76470588235294 -1003,19.0,9.0,-1.7848303152666305,3.98535828943083 -1003,19.0,18.0,-5.88235294117647,11.76470588235294 -1003,19.0,19.0,7.6671832564431,-15.75006417178377 -1003,20.0,9.0,-5.101853820159654,10.98071411292983 -1003,20.0,20.0,21.876495189895888,-45.10843276170355 -1003,20.0,21.0,-16.774641369736234,34.127718648773715 -1003,21.0,9.0,-2.619319553382597,5.400770303329455 -1003,21.0,20.0,-16.774641369736234,34.127718648773715 -1003,21.0,21.0,21.93449907537439,-43.48289181517921 -1003,21.0,23.0,-2.5405381522555563,3.95440286307604 -1003,22.0,14.0,-1.9683489489016612,3.976064876781356 -1003,22.0,22.0,3.429754555384988,-6.965303617315433 -1003,22.0,23.0,-1.4614056064833263,2.989238740534077 -1003,23.0,21.0,-2.5405381522555563,3.95440286307604 -1003,23.0,22.0,-1.4614056064833263,2.989238740534077 -1003,23.0,23.0,5.311836702613133,-9.188263657315172 -1003,23.0,24.0,-1.3098929438742493,2.287622053705056 -1003,24.0,23.0,-1.3098929438742493,2.287622053705056 -1003,24.0,24.0,4.495715080321987,-7.864978761969621 -1003,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1003,24.0,26.0,-1.9692920169982515,3.760212661917064 -1003,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1003,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1003,26.0,24.0,-1.9692920169982515,3.760212661917064 -1003,26.0,26.0,3.652281470778589,-9.46044252232512 -1003,26.0,27.0,0.0,2.608731947574922 -1003,26.0,28.0,-0.99553355095268,1.881005840357816 -1003,26.0,29.0,-0.6874559028276572,1.293971494797717 -1003,27.0,5.0,-4.362844058012917,15.463571542897856 -1003,27.0,7.0,-1.4439790613954469,4.540814658476248 -1003,27.0,26.0,0.0,2.608731947574922 -1003,27.0,27.0,5.806823119408364,-22.67145722159613 -1003,28.0,26.0,-0.99553355095268,1.881005840357816 -1003,28.0,28.0,1.9075867579849564,-3.604364401207048 -1003,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1003,29.0,26.0,-0.6874559028276572,1.293971494797717 -1003,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1003,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1004,0.0,0.0,6.765516048652632,-21.23160167089863 -1004,0.0,1.0,-5.224646179885656,15.646726840803398 -1004,0.0,2.0,-1.5408698687669766,5.631674830095234 -1004,1.0,0.0,-5.224646179885656,15.646726840803398 -1004,1.0,1.0,9.75228216552403,-30.648662892676068 -1004,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1004,1.0,4.0,-1.1359607881738778,4.772479328281356 -1004,1.0,5.0,-1.6861448807654689,5.116477495334806 -1004,2.0,0.0,-1.5408698687669766,5.631674830095234 -1004,2.0,2.0,9.736318911079088,-29.13794745915803 -1004,2.0,3.0,-8.19544904231211,23.5308726290628 -1004,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1004,3.0,2.0,-8.19544904231211,23.5308726290628 -1004,3.0,3.0,16.314103089185693,-55.509410535254254 -1004,3.0,5.0,-6.413123730174556,22.31120356548123 -1004,3.0,11.0,0.0,4.191255364806866 -1004,4.0,1.0,-1.1359607881738778,4.772479328281356 -1004,4.0,4.0,4.089980824135861,-12.190647245055052 -1004,4.0,6.0,-2.954020035961983,7.449267916773697 -1004,5.0,1.0,-1.6861448807654689,5.116477495334806 -1004,5.0,3.0,-6.413123730174556,22.31120356548123 -1004,5.0,5.0,22.341631269034565,-80.91366772221689 -1004,5.0,6.0,-3.590210423980992,11.02611441072814 -1004,5.0,7.0,-6.289308176100628,22.0125786163522 -1004,5.0,8.0,0.0,4.915840805411357 -1004,5.0,27.0,-4.362844058012917,15.463571542897856 -1004,6.0,4.0,-2.954020035961983,7.449267916773697 -1004,6.0,5.0,-3.590210423980992,11.02611441072814 -1004,6.0,6.0,6.544230459942975,-18.45668232750184 -1004,7.0,5.0,-6.289308176100628,22.0125786163522 -1004,7.0,7.0,7.733287237496075,-26.527493274828448 -1004,7.0,27.0,-1.4439790613954469,4.540814658476248 -1004,8.0,5.0,0.0,4.915840805411357 -1004,8.0,8.0,0.0,-18.706293706293707 -1004,8.0,9.0,0.0,9.090909090909092 -1004,8.0,10.0,0.0,4.807692307692308 -1004,9.0,8.0,0.0,9.090909090909092 -1004,9.0,9.0,13.462042814524237,-39.58519951644326 -1004,9.0,16.0,-3.956039125715353,10.317447719844054 -1004,9.0,19.0,-1.7848303152666305,3.98535828943083 -1004,9.0,20.0,-5.101853820159654,10.98071411292983 -1004,9.0,21.0,-2.619319553382597,5.400770303329455 -1004,10.0,8.0,0.0,4.807692307692308 -1004,10.0,10.0,0.0,-4.807692307692308 -1004,11.0,3.0,0.0,4.191255364806866 -1004,11.0,11.0,6.573961583776156,-24.424167659260668 -1004,11.0,12.0,0.0,7.142857142857143 -1004,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1004,11.0,14.0,-3.0953961826564296,6.097275864326261 -1004,11.0,15.0,-1.9519977922801688,4.104359379111847 -1004,12.0,11.0,0.0,7.142857142857143 -1004,12.0,12.0,0.0,-7.142857142857143 -1004,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1004,13.0,13.0,4.01751987283902,-5.424299332335067 -1004,13.0,14.0,-2.4909522639994623,2.250874059369649 -1004,14.0,11.0,-3.0953961826564296,6.097275864326261 -1004,14.0,13.0,-2.4909522639994623,2.250874059369649 -1004,14.0,14.0,9.365498545964757,-16.01163373210796 -1004,14.0,17.0,-1.8108011504072024,3.687418931630696 -1004,14.0,22.0,-1.9683489489016612,3.976064876781356 -1004,15.0,11.0,-1.9519977922801688,4.104359379111847 -1004,15.0,15.0,3.271064728633931,-8.94513365126506 -1004,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1004,16.0,9.0,-3.956039125715353,10.317447719844054 -1004,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1004,16.0,16.0,5.275106062069114,-15.158221991997266 -1004,17.0,14.0,-1.8108011504072024,3.687418931630696 -1004,17.0,17.0,4.886487584415919,-9.906177730909668 -1004,17.0,18.0,-3.0756864340087167,6.218758799278971 -1004,18.0,17.0,-3.0756864340087167,6.218758799278971 -1004,18.0,18.0,8.958039375185187,-17.98346468163191 -1004,18.0,19.0,-5.88235294117647,11.76470588235294 -1004,19.0,9.0,-1.7848303152666305,3.98535828943083 -1004,19.0,18.0,-5.88235294117647,11.76470588235294 -1004,19.0,19.0,7.6671832564431,-15.75006417178377 -1004,20.0,9.0,-5.101853820159654,10.98071411292983 -1004,20.0,20.0,21.876495189895888,-45.10843276170355 -1004,20.0,21.0,-16.774641369736234,34.127718648773715 -1004,21.0,9.0,-2.619319553382597,5.400770303329455 -1004,21.0,20.0,-16.774641369736234,34.127718648773715 -1004,21.0,21.0,21.93449907537439,-43.48289181517921 -1004,21.0,23.0,-2.5405381522555563,3.95440286307604 -1004,22.0,14.0,-1.9683489489016612,3.976064876781356 -1004,22.0,22.0,3.429754555384988,-6.965303617315433 -1004,22.0,23.0,-1.4614056064833263,2.989238740534077 -1004,23.0,21.0,-2.5405381522555563,3.95440286307604 -1004,23.0,22.0,-1.4614056064833263,2.989238740534077 -1004,23.0,23.0,5.311836702613133,-9.188263657315172 -1004,23.0,24.0,-1.3098929438742493,2.287622053705056 -1004,24.0,23.0,-1.3098929438742493,2.287622053705056 -1004,24.0,24.0,4.495715080321987,-7.864978761969621 -1004,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1004,24.0,26.0,-1.9692920169982515,3.760212661917064 -1004,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1004,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1004,26.0,24.0,-1.9692920169982515,3.760212661917064 -1004,26.0,26.0,3.652281470778589,-9.46044252232512 -1004,26.0,27.0,0.0,2.608731947574922 -1004,26.0,28.0,-0.99553355095268,1.881005840357816 -1004,26.0,29.0,-0.6874559028276572,1.293971494797717 -1004,27.0,5.0,-4.362844058012917,15.463571542897856 -1004,27.0,7.0,-1.4439790613954469,4.540814658476248 -1004,27.0,26.0,0.0,2.608731947574922 -1004,27.0,27.0,5.806823119408364,-22.67145722159613 -1004,28.0,26.0,-0.99553355095268,1.881005840357816 -1004,28.0,28.0,1.9075867579849564,-3.604364401207048 -1004,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1004,29.0,26.0,-0.6874559028276572,1.293971494797717 -1004,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1004,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1005,0.0,0.0,6.765516048652632,-21.23160167089863 -1005,0.0,1.0,-5.224646179885656,15.646726840803398 -1005,0.0,2.0,-1.5408698687669766,5.631674830095234 -1005,1.0,0.0,-5.224646179885656,15.646726840803398 -1005,1.0,1.0,9.75228216552403,-30.648662892676068 -1005,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1005,1.0,4.0,-1.1359607881738778,4.772479328281356 -1005,1.0,5.0,-1.6861448807654689,5.116477495334806 -1005,2.0,0.0,-1.5408698687669766,5.631674830095234 -1005,2.0,2.0,9.736318911079088,-29.13794745915803 -1005,2.0,3.0,-8.19544904231211,23.5308726290628 -1005,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1005,3.0,2.0,-8.19544904231211,23.5308726290628 -1005,3.0,3.0,16.314103089185693,-55.509410535254254 -1005,3.0,5.0,-6.413123730174556,22.31120356548123 -1005,3.0,11.0,0.0,4.191255364806866 -1005,4.0,1.0,-1.1359607881738778,4.772479328281356 -1005,4.0,4.0,4.089980824135861,-12.190647245055052 -1005,4.0,6.0,-2.954020035961983,7.449267916773697 -1005,5.0,1.0,-1.6861448807654689,5.116477495334806 -1005,5.0,3.0,-6.413123730174556,22.31120356548123 -1005,5.0,5.0,22.341631269034565,-77.80272577435625 -1005,5.0,6.0,-3.590210423980992,11.02611441072814 -1005,5.0,7.0,-6.289308176100628,22.0125786163522 -1005,5.0,9.0,0.0,1.8561002591115965 -1005,5.0,27.0,-4.362844058012917,15.463571542897856 -1005,6.0,4.0,-2.954020035961983,7.449267916773697 -1005,6.0,5.0,-3.590210423980992,11.02611441072814 -1005,6.0,6.0,6.544230459942975,-18.45668232750184 -1005,7.0,5.0,-6.289308176100628,22.0125786163522 -1005,7.0,7.0,7.733287237496075,-26.527493274828448 -1005,7.0,27.0,-1.4439790613954469,4.540814658476248 -1005,8.0,8.0,0.0,-13.8986013986014 -1005,8.0,9.0,0.0,9.090909090909092 -1005,8.0,10.0,0.0,4.807692307692308 -1005,9.0,5.0,0.0,1.8561002591115965 -1005,9.0,8.0,0.0,9.090909090909092 -1005,9.0,9.0,10.842723261141638,-35.98299036419294 -1005,9.0,16.0,-3.956039125715353,10.317447719844054 -1005,9.0,19.0,-1.7848303152666305,3.98535828943083 -1005,9.0,20.0,-5.101853820159654,10.98071411292983 -1005,10.0,8.0,0.0,4.807692307692308 -1005,10.0,10.0,0.0,-4.807692307692308 -1005,11.0,3.0,0.0,4.191255364806866 -1005,11.0,11.0,4.621963791495987,-20.31980828014882 -1005,11.0,12.0,0.0,7.142857142857143 -1005,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1005,11.0,14.0,-3.0953961826564296,6.097275864326261 -1005,12.0,11.0,0.0,7.142857142857143 -1005,12.0,12.0,0.0,-7.142857142857143 -1005,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1005,13.0,13.0,4.01751987283902,-5.424299332335067 -1005,13.0,14.0,-2.4909522639994623,2.250874059369649 -1005,14.0,11.0,-3.0953961826564296,6.097275864326261 -1005,14.0,13.0,-2.4909522639994623,2.250874059369649 -1005,14.0,14.0,9.365498545964757,-16.01163373210796 -1005,14.0,17.0,-1.8108011504072024,3.687418931630696 -1005,14.0,22.0,-1.9683489489016612,3.976064876781356 -1005,15.0,15.0,1.3190669363537617,-4.8407742721532125 -1005,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1005,16.0,9.0,-3.956039125715353,10.317447719844054 -1005,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1005,16.0,16.0,5.275106062069114,-15.158221991997266 -1005,17.0,14.0,-1.8108011504072024,3.687418931630696 -1005,17.0,17.0,4.886487584415919,-9.906177730909668 -1005,17.0,18.0,-3.0756864340087167,6.218758799278971 -1005,18.0,17.0,-3.0756864340087167,6.218758799278971 -1005,18.0,18.0,8.958039375185187,-17.98346468163191 -1005,18.0,19.0,-5.88235294117647,11.76470588235294 -1005,19.0,9.0,-1.7848303152666305,3.98535828943083 -1005,19.0,18.0,-5.88235294117647,11.76470588235294 -1005,19.0,19.0,7.6671832564431,-15.75006417178377 -1005,20.0,9.0,-5.101853820159654,10.98071411292983 -1005,20.0,20.0,21.876495189895888,-45.10843276170355 -1005,20.0,21.0,-16.774641369736234,34.127718648773715 -1005,21.0,20.0,-16.774641369736234,34.127718648773715 -1005,21.0,21.0,19.31517952199179,-38.08212151184976 -1005,21.0,23.0,-2.5405381522555563,3.95440286307604 -1005,22.0,14.0,-1.9683489489016612,3.976064876781356 -1005,22.0,22.0,3.429754555384988,-6.965303617315433 -1005,22.0,23.0,-1.4614056064833263,2.989238740534077 -1005,23.0,21.0,-2.5405381522555563,3.95440286307604 -1005,23.0,22.0,-1.4614056064833263,2.989238740534077 -1005,23.0,23.0,5.311836702613133,-9.188263657315172 -1005,23.0,24.0,-1.3098929438742493,2.287622053705056 -1005,24.0,23.0,-1.3098929438742493,2.287622053705056 -1005,24.0,24.0,4.495715080321987,-7.864978761969621 -1005,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1005,24.0,26.0,-1.9692920169982515,3.760212661917064 -1005,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1005,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1005,26.0,24.0,-1.9692920169982515,3.760212661917064 -1005,26.0,26.0,3.652281470778589,-9.46044252232512 -1005,26.0,27.0,0.0,2.608731947574922 -1005,26.0,28.0,-0.99553355095268,1.881005840357816 -1005,26.0,29.0,-0.6874559028276572,1.293971494797717 -1005,27.0,5.0,-4.362844058012917,15.463571542897856 -1005,27.0,7.0,-1.4439790613954469,4.540814658476248 -1005,27.0,26.0,0.0,2.608731947574922 -1005,27.0,27.0,5.806823119408364,-22.67145722159613 -1005,28.0,26.0,-0.99553355095268,1.881005840357816 -1005,28.0,28.0,1.9075867579849564,-3.604364401207048 -1005,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1005,29.0,26.0,-0.6874559028276572,1.293971494797717 -1005,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1005,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1006,0.0,0.0,6.765516048652632,-21.23160167089863 -1006,0.0,1.0,-5.224646179885656,15.646726840803398 -1006,0.0,2.0,-1.5408698687669766,5.631674830095234 -1006,1.0,0.0,-5.224646179885656,15.646726840803398 -1006,1.0,1.0,9.75228216552403,-30.648662892676068 -1006,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1006,1.0,4.0,-1.1359607881738778,4.772479328281356 -1006,1.0,5.0,-1.6861448807654689,5.116477495334806 -1006,2.0,0.0,-1.5408698687669766,5.631674830095234 -1006,2.0,2.0,9.736318911079088,-29.13794745915803 -1006,2.0,3.0,-8.19544904231211,23.5308726290628 -1006,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1006,3.0,2.0,-8.19544904231211,23.5308726290628 -1006,3.0,3.0,16.314103089185693,-55.509410535254254 -1006,3.0,5.0,-6.413123730174556,22.31120356548123 -1006,3.0,11.0,0.0,4.191255364806866 -1006,4.0,1.0,-1.1359607881738778,4.772479328281356 -1006,4.0,4.0,4.089980824135861,-12.190647245055052 -1006,4.0,6.0,-2.954020035961983,7.449267916773697 -1006,5.0,1.0,-1.6861448807654689,5.116477495334806 -1006,5.0,3.0,-6.413123730174556,22.31120356548123 -1006,5.0,5.0,16.052323092933932,-60.8210692494267 -1006,5.0,6.0,-3.590210423980992,11.02611441072814 -1006,5.0,8.0,0.0,4.915840805411357 -1006,5.0,9.0,0.0,1.8561002591115965 -1006,5.0,27.0,-4.362844058012917,15.463571542897856 -1006,6.0,4.0,-2.954020035961983,7.449267916773697 -1006,6.0,5.0,-3.590210423980992,11.02611441072814 -1006,6.0,6.0,6.544230459942975,-18.45668232750184 -1006,7.0,7.0,1.4439790613954469,-4.519414658476248 -1006,7.0,27.0,-1.4439790613954469,4.540814658476248 -1006,8.0,5.0,0.0,4.915840805411357 -1006,8.0,8.0,0.0,-18.706293706293707 -1006,8.0,9.0,0.0,9.090909090909092 -1006,8.0,10.0,0.0,4.807692307692308 -1006,9.0,5.0,0.0,1.8561002591115965 -1006,9.0,8.0,0.0,9.090909090909092 -1006,9.0,9.0,13.462042814524237,-41.3837606675224 -1006,9.0,16.0,-3.956039125715353,10.317447719844054 -1006,9.0,19.0,-1.7848303152666305,3.98535828943083 -1006,9.0,20.0,-5.101853820159654,10.98071411292983 -1006,9.0,21.0,-2.619319553382597,5.400770303329455 -1006,10.0,8.0,0.0,4.807692307692308 -1006,10.0,10.0,0.0,-4.807692307692308 -1006,11.0,3.0,0.0,4.191255364806866 -1006,11.0,11.0,6.573961583776156,-24.424167659260668 -1006,11.0,12.0,0.0,7.142857142857143 -1006,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1006,11.0,14.0,-3.0953961826564296,6.097275864326261 -1006,11.0,15.0,-1.9519977922801688,4.104359379111847 -1006,12.0,11.0,0.0,7.142857142857143 -1006,12.0,12.0,0.0,-7.142857142857143 -1006,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1006,13.0,13.0,4.01751987283902,-5.424299332335067 -1006,13.0,14.0,-2.4909522639994623,2.250874059369649 -1006,14.0,11.0,-3.0953961826564296,6.097275864326261 -1006,14.0,13.0,-2.4909522639994623,2.250874059369649 -1006,14.0,14.0,9.365498545964757,-16.01163373210796 -1006,14.0,17.0,-1.8108011504072024,3.687418931630696 -1006,14.0,22.0,-1.9683489489016612,3.976064876781356 -1006,15.0,11.0,-1.9519977922801688,4.104359379111847 -1006,15.0,15.0,3.271064728633931,-8.94513365126506 -1006,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1006,16.0,9.0,-3.956039125715353,10.317447719844054 -1006,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1006,16.0,16.0,5.275106062069114,-15.158221991997266 -1006,17.0,14.0,-1.8108011504072024,3.687418931630696 -1006,17.0,17.0,1.8108011504072024,-3.687418931630696 -1006,18.0,18.0,5.88235294117647,-11.76470588235294 -1006,18.0,19.0,-5.88235294117647,11.76470588235294 -1006,19.0,9.0,-1.7848303152666305,3.98535828943083 -1006,19.0,18.0,-5.88235294117647,11.76470588235294 -1006,19.0,19.0,7.6671832564431,-15.75006417178377 -1006,20.0,9.0,-5.101853820159654,10.98071411292983 -1006,20.0,20.0,21.876495189895888,-45.10843276170355 -1006,20.0,21.0,-16.774641369736234,34.127718648773715 -1006,21.0,9.0,-2.619319553382597,5.400770303329455 -1006,21.0,20.0,-16.774641369736234,34.127718648773715 -1006,21.0,21.0,21.93449907537439,-43.48289181517921 -1006,21.0,23.0,-2.5405381522555563,3.95440286307604 -1006,22.0,14.0,-1.9683489489016612,3.976064876781356 -1006,22.0,22.0,3.429754555384988,-6.965303617315433 -1006,22.0,23.0,-1.4614056064833263,2.989238740534077 -1006,23.0,21.0,-2.5405381522555563,3.95440286307604 -1006,23.0,22.0,-1.4614056064833263,2.989238740534077 -1006,23.0,23.0,5.311836702613133,-9.188263657315172 -1006,23.0,24.0,-1.3098929438742493,2.287622053705056 -1006,24.0,23.0,-1.3098929438742493,2.287622053705056 -1006,24.0,24.0,2.526423063323735,-4.104766100052558 -1006,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1006,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1006,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1006,26.0,26.0,1.6829894537803372,-5.700229860408058 -1006,26.0,27.0,0.0,2.608731947574922 -1006,26.0,28.0,-0.99553355095268,1.881005840357816 -1006,26.0,29.0,-0.6874559028276572,1.293971494797717 -1006,27.0,5.0,-4.362844058012917,15.463571542897856 -1006,27.0,7.0,-1.4439790613954469,4.540814658476248 -1006,27.0,26.0,0.0,2.608731947574922 -1006,27.0,27.0,5.806823119408364,-22.67145722159613 -1006,28.0,26.0,-0.99553355095268,1.881005840357816 -1006,28.0,28.0,1.9075867579849564,-3.604364401207048 -1006,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1006,29.0,26.0,-0.6874559028276572,1.293971494797717 -1006,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1006,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1007,0.0,0.0,1.5408698687669766,-5.611274830095233 -1007,0.0,2.0,-1.5408698687669766,5.631674830095234 -1007,1.0,1.0,4.527635985638374,-15.028336051872673 -1007,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1007,1.0,4.0,-1.1359607881738778,4.772479328281356 -1007,1.0,5.0,-1.6861448807654689,5.116477495334806 -1007,2.0,0.0,-1.5408698687669766,5.631674830095234 -1007,2.0,2.0,9.736318911079088,-29.13794745915803 -1007,2.0,3.0,-8.19544904231211,23.5308726290628 -1007,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1007,3.0,2.0,-8.19544904231211,23.5308726290628 -1007,3.0,3.0,9.900979359011137,-33.202706969773025 -1007,3.0,11.0,0.0,4.191255364806866 -1007,4.0,1.0,-1.1359607881738778,4.772479328281356 -1007,4.0,4.0,4.089980824135861,-12.190647245055052 -1007,4.0,6.0,-2.954020035961983,7.449267916773697 -1007,5.0,1.0,-1.6861448807654689,5.116477495334806 -1007,5.0,5.0,15.928507538860009,-60.52244430029767 -1007,5.0,6.0,-3.590210423980992,11.02611441072814 -1007,5.0,7.0,-6.289308176100628,22.0125786163522 -1007,5.0,8.0,0.0,4.915840805411357 -1007,5.0,9.0,0.0,1.8561002591115965 -1007,5.0,27.0,-4.362844058012917,15.463571542897856 -1007,6.0,4.0,-2.954020035961983,7.449267916773697 -1007,6.0,5.0,-3.590210423980992,11.02611441072814 -1007,6.0,6.0,6.544230459942975,-18.45668232750184 -1007,7.0,5.0,-6.289308176100628,22.0125786163522 -1007,7.0,7.0,7.733287237496075,-26.527493274828448 -1007,7.0,27.0,-1.4439790613954469,4.540814658476248 -1007,8.0,5.0,0.0,4.915840805411357 -1007,8.0,8.0,0.0,-18.706293706293707 -1007,8.0,9.0,0.0,9.090909090909092 -1007,8.0,10.0,0.0,4.807692307692308 -1007,9.0,5.0,0.0,1.8561002591115965 -1007,9.0,8.0,0.0,9.090909090909092 -1007,9.0,9.0,13.462042814524237,-41.3837606675224 -1007,9.0,16.0,-3.956039125715353,10.317447719844054 -1007,9.0,19.0,-1.7848303152666305,3.98535828943083 -1007,9.0,20.0,-5.101853820159654,10.98071411292983 -1007,9.0,21.0,-2.619319553382597,5.400770303329455 -1007,10.0,8.0,0.0,4.807692307692308 -1007,10.0,10.0,0.0,-4.807692307692308 -1007,11.0,3.0,0.0,4.191255364806866 -1007,11.0,11.0,6.573961583776156,-24.424167659260668 -1007,11.0,12.0,0.0,7.142857142857143 -1007,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1007,11.0,14.0,-3.0953961826564296,6.097275864326261 -1007,11.0,15.0,-1.9519977922801688,4.104359379111847 -1007,12.0,11.0,0.0,7.142857142857143 -1007,12.0,12.0,0.0,-7.142857142857143 -1007,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1007,13.0,13.0,4.01751987283902,-5.424299332335067 -1007,13.0,14.0,-2.4909522639994623,2.250874059369649 -1007,14.0,11.0,-3.0953961826564296,6.097275864326261 -1007,14.0,13.0,-2.4909522639994623,2.250874059369649 -1007,14.0,14.0,9.365498545964757,-16.01163373210796 -1007,14.0,17.0,-1.8108011504072024,3.687418931630696 -1007,14.0,22.0,-1.9683489489016612,3.976064876781356 -1007,15.0,11.0,-1.9519977922801688,4.104359379111847 -1007,15.0,15.0,3.271064728633931,-8.94513365126506 -1007,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1007,16.0,9.0,-3.956039125715353,10.317447719844054 -1007,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1007,16.0,16.0,5.275106062069114,-15.158221991997266 -1007,17.0,14.0,-1.8108011504072024,3.687418931630696 -1007,17.0,17.0,4.886487584415919,-9.906177730909668 -1007,17.0,18.0,-3.0756864340087167,6.218758799278971 -1007,18.0,17.0,-3.0756864340087167,6.218758799278971 -1007,18.0,18.0,8.958039375185187,-17.98346468163191 -1007,18.0,19.0,-5.88235294117647,11.76470588235294 -1007,19.0,9.0,-1.7848303152666305,3.98535828943083 -1007,19.0,18.0,-5.88235294117647,11.76470588235294 -1007,19.0,19.0,7.6671832564431,-15.75006417178377 -1007,20.0,9.0,-5.101853820159654,10.98071411292983 -1007,20.0,20.0,21.876495189895888,-45.10843276170355 -1007,20.0,21.0,-16.774641369736234,34.127718648773715 -1007,21.0,9.0,-2.619319553382597,5.400770303329455 -1007,21.0,20.0,-16.774641369736234,34.127718648773715 -1007,21.0,21.0,21.93449907537439,-43.48289181517921 -1007,21.0,23.0,-2.5405381522555563,3.95440286307604 -1007,22.0,14.0,-1.9683489489016612,3.976064876781356 -1007,22.0,22.0,3.429754555384988,-6.965303617315433 -1007,22.0,23.0,-1.4614056064833263,2.989238740534077 -1007,23.0,21.0,-2.5405381522555563,3.95440286307604 -1007,23.0,22.0,-1.4614056064833263,2.989238740534077 -1007,23.0,23.0,5.311836702613133,-9.188263657315172 -1007,23.0,24.0,-1.3098929438742493,2.287622053705056 -1007,24.0,23.0,-1.3098929438742493,2.287622053705056 -1007,24.0,24.0,4.495715080321987,-7.864978761969621 -1007,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1007,24.0,26.0,-1.9692920169982515,3.760212661917064 -1007,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1007,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1007,26.0,24.0,-1.9692920169982515,3.760212661917064 -1007,26.0,26.0,3.652281470778589,-9.46044252232512 -1007,26.0,27.0,0.0,2.608731947574922 -1007,26.0,28.0,-0.99553355095268,1.881005840357816 -1007,26.0,29.0,-0.6874559028276572,1.293971494797717 -1007,27.0,5.0,-4.362844058012917,15.463571542897856 -1007,27.0,7.0,-1.4439790613954469,4.540814658476248 -1007,27.0,26.0,0.0,2.608731947574922 -1007,27.0,27.0,5.806823119408364,-22.67145722159613 -1007,28.0,26.0,-0.99553355095268,1.881005840357816 -1007,28.0,28.0,1.9075867579849564,-3.604364401207048 -1007,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1007,29.0,26.0,-0.6874559028276572,1.293971494797717 -1007,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1007,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1008,0.0,0.0,6.765516048652632,-21.23160167089863 -1008,0.0,1.0,-5.224646179885656,15.646726840803398 -1008,0.0,2.0,-1.5408698687669766,5.631674830095234 -1008,1.0,0.0,-5.224646179885656,15.646726840803398 -1008,1.0,1.0,9.75228216552403,-30.648662892676068 -1008,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1008,1.0,4.0,-1.1359607881738778,4.772479328281356 -1008,1.0,5.0,-1.6861448807654689,5.116477495334806 -1008,2.0,0.0,-1.5408698687669766,5.631674830095234 -1008,2.0,2.0,9.736318911079088,-29.13794745915803 -1008,2.0,3.0,-8.19544904231211,23.5308726290628 -1008,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1008,3.0,2.0,-8.19544904231211,23.5308726290628 -1008,3.0,3.0,16.314103089185693,-55.509410535254254 -1008,3.0,5.0,-6.413123730174556,22.31120356548123 -1008,3.0,11.0,0.0,4.191255364806866 -1008,4.0,1.0,-1.1359607881738778,4.772479328281356 -1008,4.0,4.0,4.089980824135861,-12.190647245055052 -1008,4.0,6.0,-2.954020035961983,7.449267916773697 -1008,5.0,1.0,-1.6861448807654689,5.116477495334806 -1008,5.0,3.0,-6.413123730174556,22.31120356548123 -1008,5.0,5.0,22.341631269034565,-82.8291478657789 -1008,5.0,6.0,-3.590210423980992,11.02611441072814 -1008,5.0,7.0,-6.289308176100628,22.0125786163522 -1008,5.0,8.0,0.0,4.915840805411357 -1008,5.0,9.0,0.0,1.8561002591115965 -1008,5.0,27.0,-4.362844058012917,15.463571542897856 -1008,6.0,4.0,-2.954020035961983,7.449267916773697 -1008,6.0,5.0,-3.590210423980992,11.02611441072814 -1008,6.0,6.0,6.544230459942975,-18.45668232750184 -1008,7.0,5.0,-6.289308176100628,22.0125786163522 -1008,7.0,7.0,7.733287237496075,-26.527493274828448 -1008,7.0,27.0,-1.4439790613954469,4.540814658476248 -1008,8.0,5.0,0.0,4.915840805411357 -1008,8.0,8.0,0.0,-18.706293706293707 -1008,8.0,9.0,0.0,9.090909090909092 -1008,8.0,10.0,0.0,4.807692307692308 -1008,9.0,5.0,0.0,1.8561002591115965 -1008,9.0,8.0,0.0,9.090909090909092 -1008,9.0,9.0,13.462042814524237,-41.3837606675224 -1008,9.0,16.0,-3.956039125715353,10.317447719844054 -1008,9.0,19.0,-1.7848303152666305,3.98535828943083 -1008,9.0,20.0,-5.101853820159654,10.98071411292983 -1008,9.0,21.0,-2.619319553382597,5.400770303329455 -1008,10.0,8.0,0.0,4.807692307692308 -1008,10.0,10.0,0.0,-4.807692307692308 -1008,11.0,3.0,0.0,4.191255364806866 -1008,11.0,11.0,6.573961583776156,-24.424167659260668 -1008,11.0,12.0,0.0,7.142857142857143 -1008,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1008,11.0,14.0,-3.0953961826564296,6.097275864326261 -1008,11.0,15.0,-1.9519977922801688,4.104359379111847 -1008,12.0,11.0,0.0,7.142857142857143 -1008,12.0,12.0,0.0,-7.142857142857143 -1008,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1008,13.0,13.0,4.01751987283902,-5.424299332335067 -1008,13.0,14.0,-2.4909522639994623,2.250874059369649 -1008,14.0,11.0,-3.0953961826564296,6.097275864326261 -1008,14.0,13.0,-2.4909522639994623,2.250874059369649 -1008,14.0,14.0,9.365498545964757,-16.01163373210796 -1008,14.0,17.0,-1.8108011504072024,3.687418931630696 -1008,14.0,22.0,-1.9683489489016612,3.976064876781356 -1008,15.0,11.0,-1.9519977922801688,4.104359379111847 -1008,15.0,15.0,3.271064728633931,-8.94513365126506 -1008,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1008,16.0,9.0,-3.956039125715353,10.317447719844054 -1008,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1008,16.0,16.0,5.275106062069114,-15.158221991997266 -1008,17.0,14.0,-1.8108011504072024,3.687418931630696 -1008,17.0,17.0,4.886487584415919,-9.906177730909668 -1008,17.0,18.0,-3.0756864340087167,6.218758799278971 -1008,18.0,17.0,-3.0756864340087167,6.218758799278971 -1008,18.0,18.0,8.958039375185187,-17.98346468163191 -1008,18.0,19.0,-5.88235294117647,11.76470588235294 -1008,19.0,9.0,-1.7848303152666305,3.98535828943083 -1008,19.0,18.0,-5.88235294117647,11.76470588235294 -1008,19.0,19.0,7.6671832564431,-15.75006417178377 -1008,20.0,9.0,-5.101853820159654,10.98071411292983 -1008,20.0,20.0,21.876495189895888,-45.10843276170355 -1008,20.0,21.0,-16.774641369736234,34.127718648773715 -1008,21.0,9.0,-2.619319553382597,5.400770303329455 -1008,21.0,20.0,-16.774641369736234,34.127718648773715 -1008,21.0,21.0,21.93449907537439,-43.48289181517921 -1008,21.0,23.0,-2.5405381522555563,3.95440286307604 -1008,22.0,14.0,-1.9683489489016612,3.976064876781356 -1008,22.0,22.0,3.429754555384988,-6.965303617315433 -1008,22.0,23.0,-1.4614056064833263,2.989238740534077 -1008,23.0,21.0,-2.5405381522555563,3.95440286307604 -1008,23.0,22.0,-1.4614056064833263,2.989238740534077 -1008,23.0,23.0,5.311836702613133,-9.188263657315172 -1008,23.0,24.0,-1.3098929438742493,2.287622053705056 -1008,24.0,23.0,-1.3098929438742493,2.287622053705056 -1008,24.0,24.0,4.495715080321987,-7.864978761969621 -1008,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1008,24.0,26.0,-1.9692920169982515,3.760212661917064 -1008,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1008,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1008,26.0,24.0,-1.9692920169982515,3.760212661917064 -1008,26.0,26.0,3.652281470778589,-9.46044252232512 -1008,26.0,27.0,0.0,2.608731947574922 -1008,26.0,28.0,-0.99553355095268,1.881005840357816 -1008,26.0,29.0,-0.6874559028276572,1.293971494797717 -1008,27.0,5.0,-4.362844058012917,15.463571542897856 -1008,27.0,7.0,-1.4439790613954469,4.540814658476248 -1008,27.0,26.0,0.0,2.608731947574922 -1008,27.0,27.0,5.806823119408364,-22.67145722159613 -1008,28.0,26.0,-0.99553355095268,1.881005840357816 -1008,28.0,28.0,1.9075867579849564,-3.604364401207048 -1008,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1008,29.0,26.0,-0.6874559028276572,1.293971494797717 -1008,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1008,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1009,0.0,0.0,6.765516048652632,-21.23160167089863 -1009,0.0,1.0,-5.224646179885656,15.646726840803398 -1009,0.0,2.0,-1.5408698687669766,5.631674830095234 -1009,1.0,0.0,-5.224646179885656,15.646726840803398 -1009,1.0,1.0,9.75228216552403,-30.648662892676068 -1009,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1009,1.0,4.0,-1.1359607881738778,4.772479328281356 -1009,1.0,5.0,-1.6861448807654689,5.116477495334806 -1009,2.0,0.0,-1.5408698687669766,5.631674830095234 -1009,2.0,2.0,9.736318911079088,-29.13794745915803 -1009,2.0,3.0,-8.19544904231211,23.5308726290628 -1009,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1009,3.0,2.0,-8.19544904231211,23.5308726290628 -1009,3.0,3.0,16.314103089185693,-55.509410535254254 -1009,3.0,5.0,-6.413123730174556,22.31120356548123 -1009,3.0,11.0,0.0,4.191255364806866 -1009,4.0,1.0,-1.1359607881738778,4.772479328281356 -1009,4.0,4.0,4.089980824135861,-12.190647245055052 -1009,4.0,6.0,-2.954020035961983,7.449267916773697 -1009,5.0,1.0,-1.6861448807654689,5.116477495334806 -1009,5.0,3.0,-6.413123730174556,22.31120356548123 -1009,5.0,5.0,22.341631269034565,-80.91366772221689 -1009,5.0,6.0,-3.590210423980992,11.02611441072814 -1009,5.0,7.0,-6.289308176100628,22.0125786163522 -1009,5.0,8.0,0.0,4.915840805411357 -1009,5.0,27.0,-4.362844058012917,15.463571542897856 -1009,6.0,4.0,-2.954020035961983,7.449267916773697 -1009,6.0,5.0,-3.590210423980992,11.02611441072814 -1009,6.0,6.0,6.544230459942975,-18.45668232750184 -1009,7.0,5.0,-6.289308176100628,22.0125786163522 -1009,7.0,7.0,7.733287237496075,-26.527493274828448 -1009,7.0,27.0,-1.4439790613954469,4.540814658476248 -1009,8.0,5.0,0.0,4.915840805411357 -1009,8.0,8.0,0.0,-18.706293706293707 -1009,8.0,9.0,0.0,9.090909090909092 -1009,8.0,10.0,0.0,4.807692307692308 -1009,9.0,8.0,0.0,9.090909090909092 -1009,9.0,9.0,13.462042814524237,-39.58519951644326 -1009,9.0,16.0,-3.956039125715353,10.317447719844054 -1009,9.0,19.0,-1.7848303152666305,3.98535828943083 -1009,9.0,20.0,-5.101853820159654,10.98071411292983 -1009,9.0,21.0,-2.619319553382597,5.400770303329455 -1009,10.0,8.0,0.0,4.807692307692308 -1009,10.0,10.0,0.0,-4.807692307692308 -1009,11.0,3.0,0.0,4.191255364806866 -1009,11.0,11.0,6.573961583776156,-24.424167659260668 -1009,11.0,12.0,0.0,7.142857142857143 -1009,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1009,11.0,14.0,-3.0953961826564296,6.097275864326261 -1009,11.0,15.0,-1.9519977922801688,4.104359379111847 -1009,12.0,11.0,0.0,7.142857142857143 -1009,12.0,12.0,0.0,-7.142857142857143 -1009,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1009,13.0,13.0,4.01751987283902,-5.424299332335067 -1009,13.0,14.0,-2.4909522639994623,2.250874059369649 -1009,14.0,11.0,-3.0953961826564296,6.097275864326261 -1009,14.0,13.0,-2.4909522639994623,2.250874059369649 -1009,14.0,14.0,9.365498545964757,-16.01163373210796 -1009,14.0,17.0,-1.8108011504072024,3.687418931630696 -1009,14.0,22.0,-1.9683489489016612,3.976064876781356 -1009,15.0,11.0,-1.9519977922801688,4.104359379111847 -1009,15.0,15.0,3.271064728633931,-8.94513365126506 -1009,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1009,16.0,9.0,-3.956039125715353,10.317447719844054 -1009,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1009,16.0,16.0,5.275106062069114,-15.158221991997266 -1009,17.0,14.0,-1.8108011504072024,3.687418931630696 -1009,17.0,17.0,4.886487584415919,-9.906177730909668 -1009,17.0,18.0,-3.0756864340087167,6.218758799278971 -1009,18.0,17.0,-3.0756864340087167,6.218758799278971 -1009,18.0,18.0,8.958039375185187,-17.98346468163191 -1009,18.0,19.0,-5.88235294117647,11.76470588235294 -1009,19.0,9.0,-1.7848303152666305,3.98535828943083 -1009,19.0,18.0,-5.88235294117647,11.76470588235294 -1009,19.0,19.0,7.6671832564431,-15.75006417178377 -1009,20.0,9.0,-5.101853820159654,10.98071411292983 -1009,20.0,20.0,21.876495189895888,-45.10843276170355 -1009,20.0,21.0,-16.774641369736234,34.127718648773715 -1009,21.0,9.0,-2.619319553382597,5.400770303329455 -1009,21.0,20.0,-16.774641369736234,34.127718648773715 -1009,21.0,21.0,21.93449907537439,-43.48289181517921 -1009,21.0,23.0,-2.5405381522555563,3.95440286307604 -1009,22.0,14.0,-1.9683489489016612,3.976064876781356 -1009,22.0,22.0,3.429754555384988,-6.965303617315433 -1009,22.0,23.0,-1.4614056064833263,2.989238740534077 -1009,23.0,21.0,-2.5405381522555563,3.95440286307604 -1009,23.0,22.0,-1.4614056064833263,2.989238740534077 -1009,23.0,23.0,5.311836702613133,-9.188263657315172 -1009,23.0,24.0,-1.3098929438742493,2.287622053705056 -1009,24.0,23.0,-1.3098929438742493,2.287622053705056 -1009,24.0,24.0,4.495715080321987,-7.864978761969621 -1009,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1009,24.0,26.0,-1.9692920169982515,3.760212661917064 -1009,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1009,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1009,26.0,24.0,-1.9692920169982515,3.760212661917064 -1009,26.0,26.0,3.652281470778589,-9.46044252232512 -1009,26.0,27.0,0.0,2.608731947574922 -1009,26.0,28.0,-0.99553355095268,1.881005840357816 -1009,26.0,29.0,-0.6874559028276572,1.293971494797717 -1009,27.0,5.0,-4.362844058012917,15.463571542897856 -1009,27.0,7.0,-1.4439790613954469,4.540814658476248 -1009,27.0,26.0,0.0,2.608731947574922 -1009,27.0,27.0,5.806823119408364,-22.67145722159613 -1009,28.0,26.0,-0.99553355095268,1.881005840357816 -1009,28.0,28.0,1.9075867579849564,-3.604364401207048 -1009,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1009,29.0,26.0,-0.6874559028276572,1.293971494797717 -1009,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1009,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1010,0.0,0.0,6.765516048652632,-21.23160167089863 -1010,0.0,1.0,-5.224646179885656,15.646726840803398 -1010,0.0,2.0,-1.5408698687669766,5.631674830095234 -1010,1.0,0.0,-5.224646179885656,15.646726840803398 -1010,1.0,1.0,9.75228216552403,-30.648662892676068 -1010,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1010,1.0,4.0,-1.1359607881738778,4.772479328281356 -1010,1.0,5.0,-1.6861448807654689,5.116477495334806 -1010,2.0,0.0,-1.5408698687669766,5.631674830095234 -1010,2.0,2.0,9.736318911079088,-29.13794745915803 -1010,2.0,3.0,-8.19544904231211,23.5308726290628 -1010,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1010,3.0,2.0,-8.19544904231211,23.5308726290628 -1010,3.0,3.0,16.314103089185693,-55.509410535254254 -1010,3.0,5.0,-6.413123730174556,22.31120356548123 -1010,3.0,11.0,0.0,4.191255364806866 -1010,4.0,1.0,-1.1359607881738778,4.772479328281356 -1010,4.0,4.0,4.089980824135861,-12.190647245055052 -1010,4.0,6.0,-2.954020035961983,7.449267916773697 -1010,5.0,1.0,-1.6861448807654689,5.116477495334806 -1010,5.0,3.0,-6.413123730174556,22.31120356548123 -1010,5.0,5.0,22.341631269034565,-82.8291478657789 -1010,5.0,6.0,-3.590210423980992,11.02611441072814 -1010,5.0,7.0,-6.289308176100628,22.0125786163522 -1010,5.0,8.0,0.0,4.915840805411357 -1010,5.0,9.0,0.0,1.8561002591115965 -1010,5.0,27.0,-4.362844058012917,15.463571542897856 -1010,6.0,4.0,-2.954020035961983,7.449267916773697 -1010,6.0,5.0,-3.590210423980992,11.02611441072814 -1010,6.0,6.0,6.544230459942975,-18.45668232750184 -1010,7.0,5.0,-6.289308176100628,22.0125786163522 -1010,7.0,7.0,7.733287237496075,-26.527493274828448 -1010,7.0,27.0,-1.4439790613954469,4.540814658476248 -1010,8.0,5.0,0.0,4.915840805411357 -1010,8.0,8.0,0.0,-18.706293706293707 -1010,8.0,9.0,0.0,9.090909090909092 -1010,8.0,10.0,0.0,4.807692307692308 -1010,9.0,5.0,0.0,1.8561002591115965 -1010,9.0,8.0,0.0,9.090909090909092 -1010,9.0,9.0,13.462042814524237,-41.3837606675224 -1010,9.0,16.0,-3.956039125715353,10.317447719844054 -1010,9.0,19.0,-1.7848303152666305,3.98535828943083 -1010,9.0,20.0,-5.101853820159654,10.98071411292983 -1010,9.0,21.0,-2.619319553382597,5.400770303329455 -1010,10.0,8.0,0.0,4.807692307692308 -1010,10.0,10.0,0.0,-4.807692307692308 -1010,11.0,3.0,0.0,4.191255364806866 -1010,11.0,11.0,6.573961583776156,-24.424167659260668 -1010,11.0,12.0,0.0,7.142857142857143 -1010,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1010,11.0,14.0,-3.0953961826564296,6.097275864326261 -1010,11.0,15.0,-1.9519977922801688,4.104359379111847 -1010,12.0,11.0,0.0,7.142857142857143 -1010,12.0,12.0,0.0,-7.142857142857143 -1010,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1010,13.0,13.0,4.01751987283902,-5.424299332335067 -1010,13.0,14.0,-2.4909522639994623,2.250874059369649 -1010,14.0,11.0,-3.0953961826564296,6.097275864326261 -1010,14.0,13.0,-2.4909522639994623,2.250874059369649 -1010,14.0,14.0,9.365498545964757,-16.01163373210796 -1010,14.0,17.0,-1.8108011504072024,3.687418931630696 -1010,14.0,22.0,-1.9683489489016612,3.976064876781356 -1010,15.0,11.0,-1.9519977922801688,4.104359379111847 -1010,15.0,15.0,3.271064728633931,-8.94513365126506 -1010,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1010,16.0,9.0,-3.956039125715353,10.317447719844054 -1010,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1010,16.0,16.0,5.275106062069114,-15.158221991997266 -1010,17.0,14.0,-1.8108011504072024,3.687418931630696 -1010,17.0,17.0,4.886487584415919,-9.906177730909668 -1010,17.0,18.0,-3.0756864340087167,6.218758799278971 -1010,18.0,17.0,-3.0756864340087167,6.218758799278971 -1010,18.0,18.0,8.958039375185187,-17.98346468163191 -1010,18.0,19.0,-5.88235294117647,11.76470588235294 -1010,19.0,9.0,-1.7848303152666305,3.98535828943083 -1010,19.0,18.0,-5.88235294117647,11.76470588235294 -1010,19.0,19.0,7.6671832564431,-15.75006417178377 -1010,20.0,9.0,-5.101853820159654,10.98071411292983 -1010,20.0,20.0,21.876495189895888,-45.10843276170355 -1010,20.0,21.0,-16.774641369736234,34.127718648773715 -1010,21.0,9.0,-2.619319553382597,5.400770303329455 -1010,21.0,20.0,-16.774641369736234,34.127718648773715 -1010,21.0,21.0,21.93449907537439,-43.48289181517921 -1010,21.0,23.0,-2.5405381522555563,3.95440286307604 -1010,22.0,14.0,-1.9683489489016612,3.976064876781356 -1010,22.0,22.0,3.429754555384988,-6.965303617315433 -1010,22.0,23.0,-1.4614056064833263,2.989238740534077 -1010,23.0,21.0,-2.5405381522555563,3.95440286307604 -1010,23.0,22.0,-1.4614056064833263,2.989238740534077 -1010,23.0,23.0,5.311836702613133,-9.188263657315172 -1010,23.0,24.0,-1.3098929438742493,2.287622053705056 -1010,24.0,23.0,-1.3098929438742493,2.287622053705056 -1010,24.0,24.0,4.495715080321987,-7.864978761969621 -1010,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1010,24.0,26.0,-1.9692920169982515,3.760212661917064 -1010,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1010,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1010,26.0,24.0,-1.9692920169982515,3.760212661917064 -1010,26.0,26.0,3.652281470778589,-9.46044252232512 -1010,26.0,27.0,0.0,2.608731947574922 -1010,26.0,28.0,-0.99553355095268,1.881005840357816 -1010,26.0,29.0,-0.6874559028276572,1.293971494797717 -1010,27.0,5.0,-4.362844058012917,15.463571542897856 -1010,27.0,7.0,-1.4439790613954469,4.540814658476248 -1010,27.0,26.0,0.0,2.608731947574922 -1010,27.0,27.0,5.806823119408364,-22.67145722159613 -1010,28.0,26.0,-0.99553355095268,1.881005840357816 -1010,28.0,28.0,1.9075867579849564,-3.604364401207048 -1010,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1010,29.0,26.0,-0.6874559028276572,1.293971494797717 -1010,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1010,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1011,0.0,0.0,6.765516048652632,-21.23160167089863 -1011,0.0,1.0,-5.224646179885656,15.646726840803398 -1011,0.0,2.0,-1.5408698687669766,5.631674830095234 -1011,1.0,0.0,-5.224646179885656,15.646726840803398 -1011,1.0,1.0,9.75228216552403,-30.648662892676068 -1011,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1011,1.0,4.0,-1.1359607881738778,4.772479328281356 -1011,1.0,5.0,-1.6861448807654689,5.116477495334806 -1011,2.0,0.0,-1.5408698687669766,5.631674830095234 -1011,2.0,2.0,9.736318911079088,-29.13794745915803 -1011,2.0,3.0,-8.19544904231211,23.5308726290628 -1011,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1011,3.0,2.0,-8.19544904231211,23.5308726290628 -1011,3.0,3.0,16.314103089185693,-55.509410535254254 -1011,3.0,5.0,-6.413123730174556,22.31120356548123 -1011,3.0,11.0,0.0,4.191255364806866 -1011,4.0,1.0,-1.1359607881738778,4.772479328281356 -1011,4.0,4.0,4.089980824135861,-12.190647245055052 -1011,4.0,6.0,-2.954020035961983,7.449267916773697 -1011,5.0,1.0,-1.6861448807654689,5.116477495334806 -1011,5.0,3.0,-6.413123730174556,22.31120356548123 -1011,5.0,5.0,22.341631269034565,-75.88724563079423 -1011,5.0,6.0,-3.590210423980992,11.02611441072814 -1011,5.0,7.0,-6.289308176100628,22.0125786163522 -1011,5.0,27.0,-4.362844058012917,15.463571542897856 -1011,6.0,4.0,-2.954020035961983,7.449267916773697 -1011,6.0,5.0,-3.590210423980992,11.02611441072814 -1011,6.0,6.0,6.544230459942975,-18.45668232750184 -1011,7.0,5.0,-6.289308176100628,22.0125786163522 -1011,7.0,7.0,7.733287237496075,-26.527493274828448 -1011,7.0,27.0,-1.4439790613954469,4.540814658476248 -1011,8.0,8.0,0.0,-13.8986013986014 -1011,8.0,9.0,0.0,9.090909090909092 -1011,8.0,10.0,0.0,4.807692307692308 -1011,9.0,8.0,0.0,9.090909090909092 -1011,9.0,9.0,13.462042814524237,-39.58519951644326 -1011,9.0,16.0,-3.956039125715353,10.317447719844054 -1011,9.0,19.0,-1.7848303152666305,3.98535828943083 -1011,9.0,20.0,-5.101853820159654,10.98071411292983 -1011,9.0,21.0,-2.619319553382597,5.400770303329455 -1011,10.0,8.0,0.0,4.807692307692308 -1011,10.0,10.0,0.0,-4.807692307692308 -1011,11.0,3.0,0.0,4.191255364806866 -1011,11.0,11.0,6.573961583776156,-24.424167659260668 -1011,11.0,12.0,0.0,7.142857142857143 -1011,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1011,11.0,14.0,-3.0953961826564296,6.097275864326261 -1011,11.0,15.0,-1.9519977922801688,4.104359379111847 -1011,12.0,11.0,0.0,7.142857142857143 -1011,12.0,12.0,0.0,-7.142857142857143 -1011,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1011,13.0,13.0,4.01751987283902,-5.424299332335067 -1011,13.0,14.0,-2.4909522639994623,2.250874059369649 -1011,14.0,11.0,-3.0953961826564296,6.097275864326261 -1011,14.0,13.0,-2.4909522639994623,2.250874059369649 -1011,14.0,14.0,7.554697395557554,-12.324214800477266 -1011,14.0,22.0,-1.9683489489016612,3.976064876781356 -1011,15.0,11.0,-1.9519977922801688,4.104359379111847 -1011,15.0,15.0,3.271064728633931,-8.94513365126506 -1011,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1011,16.0,9.0,-3.956039125715353,10.317447719844054 -1011,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1011,16.0,16.0,5.275106062069114,-15.158221991997266 -1011,17.0,17.0,3.0756864340087167,-6.218758799278971 -1011,17.0,18.0,-3.0756864340087167,6.218758799278971 -1011,18.0,17.0,-3.0756864340087167,6.218758799278971 -1011,18.0,18.0,8.958039375185187,-17.98346468163191 -1011,18.0,19.0,-5.88235294117647,11.76470588235294 -1011,19.0,9.0,-1.7848303152666305,3.98535828943083 -1011,19.0,18.0,-5.88235294117647,11.76470588235294 -1011,19.0,19.0,7.6671832564431,-15.75006417178377 -1011,20.0,9.0,-5.101853820159654,10.98071411292983 -1011,20.0,20.0,21.876495189895888,-45.10843276170355 -1011,20.0,21.0,-16.774641369736234,34.127718648773715 -1011,21.0,9.0,-2.619319553382597,5.400770303329455 -1011,21.0,20.0,-16.774641369736234,34.127718648773715 -1011,21.0,21.0,19.393960923118836,-39.52848895210317 -1011,22.0,14.0,-1.9683489489016612,3.976064876781356 -1011,22.0,22.0,3.429754555384988,-6.965303617315433 -1011,22.0,23.0,-1.4614056064833263,2.989238740534077 -1011,23.0,22.0,-1.4614056064833263,2.989238740534077 -1011,23.0,23.0,2.771298550357576,-5.233860794239132 -1011,23.0,24.0,-1.3098929438742493,2.287622053705056 -1011,24.0,23.0,-1.3098929438742493,2.287622053705056 -1011,24.0,24.0,4.495715080321987,-7.864978761969621 -1011,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1011,24.0,26.0,-1.9692920169982515,3.760212661917064 -1011,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1011,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1011,26.0,24.0,-1.9692920169982515,3.760212661917064 -1011,26.0,26.0,3.652281470778589,-9.46044252232512 -1011,26.0,27.0,0.0,2.608731947574922 -1011,26.0,28.0,-0.99553355095268,1.881005840357816 -1011,26.0,29.0,-0.6874559028276572,1.293971494797717 -1011,27.0,5.0,-4.362844058012917,15.463571542897856 -1011,27.0,7.0,-1.4439790613954469,4.540814658476248 -1011,27.0,26.0,0.0,2.608731947574922 -1011,27.0,27.0,5.806823119408364,-22.67145722159613 -1011,28.0,26.0,-0.99553355095268,1.881005840357816 -1011,28.0,28.0,1.9075867579849564,-3.604364401207048 -1011,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1011,29.0,26.0,-0.6874559028276572,1.293971494797717 -1011,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1011,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1012,0.0,0.0,6.765516048652632,-21.23160167089863 -1012,0.0,1.0,-5.224646179885656,15.646726840803398 -1012,0.0,2.0,-1.5408698687669766,5.631674830095234 -1012,1.0,0.0,-5.224646179885656,15.646726840803398 -1012,1.0,1.0,8.066137284758561,-25.55088539734126 -1012,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1012,1.0,4.0,-1.1359607881738778,4.772479328281356 -1012,2.0,0.0,-1.5408698687669766,5.631674830095234 -1012,2.0,2.0,9.736318911079088,-29.13794745915803 -1012,2.0,3.0,-8.19544904231211,23.5308726290628 -1012,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1012,3.0,2.0,-8.19544904231211,23.5308726290628 -1012,3.0,3.0,16.314103089185693,-55.509410535254254 -1012,3.0,5.0,-6.413123730174556,22.31120356548123 -1012,3.0,11.0,0.0,4.191255364806866 -1012,4.0,1.0,-1.1359607881738778,4.772479328281356 -1012,4.0,4.0,4.089980824135861,-12.190647245055052 -1012,4.0,6.0,-2.954020035961983,7.449267916773697 -1012,5.0,3.0,-6.413123730174556,22.31120356548123 -1012,5.0,5.0,20.655486388269097,-77.7313703704441 -1012,5.0,6.0,-3.590210423980992,11.02611441072814 -1012,5.0,7.0,-6.289308176100628,22.0125786163522 -1012,5.0,8.0,0.0,4.915840805411357 -1012,5.0,9.0,0.0,1.8561002591115965 -1012,5.0,27.0,-4.362844058012917,15.463571542897856 -1012,6.0,4.0,-2.954020035961983,7.449267916773697 -1012,6.0,5.0,-3.590210423980992,11.02611441072814 -1012,6.0,6.0,6.544230459942975,-18.45668232750184 -1012,7.0,5.0,-6.289308176100628,22.0125786163522 -1012,7.0,7.0,7.733287237496075,-26.527493274828448 -1012,7.0,27.0,-1.4439790613954469,4.540814658476248 -1012,8.0,5.0,0.0,4.915840805411357 -1012,8.0,8.0,0.0,-18.706293706293707 -1012,8.0,9.0,0.0,9.090909090909092 -1012,8.0,10.0,0.0,4.807692307692308 -1012,9.0,5.0,0.0,1.8561002591115965 -1012,9.0,8.0,0.0,9.090909090909092 -1012,9.0,9.0,13.462042814524237,-41.3837606675224 -1012,9.0,16.0,-3.956039125715353,10.317447719844054 -1012,9.0,19.0,-1.7848303152666305,3.98535828943083 -1012,9.0,20.0,-5.101853820159654,10.98071411292983 -1012,9.0,21.0,-2.619319553382597,5.400770303329455 -1012,10.0,8.0,0.0,4.807692307692308 -1012,10.0,10.0,0.0,-4.807692307692308 -1012,11.0,3.0,0.0,4.191255364806866 -1012,11.0,11.0,6.573961583776156,-24.424167659260668 -1012,11.0,12.0,0.0,7.142857142857143 -1012,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1012,11.0,14.0,-3.0953961826564296,6.097275864326261 -1012,11.0,15.0,-1.9519977922801688,4.104359379111847 -1012,12.0,11.0,0.0,7.142857142857143 -1012,12.0,12.0,0.0,-7.142857142857143 -1012,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1012,13.0,13.0,1.5265676088395577,-3.1734252729654173 -1012,14.0,11.0,-3.0953961826564296,6.097275864326261 -1012,14.0,14.0,4.906197333063632,-9.784694795956955 -1012,14.0,17.0,-1.8108011504072024,3.687418931630696 -1012,15.0,11.0,-1.9519977922801688,4.104359379111847 -1012,15.0,15.0,3.271064728633931,-8.94513365126506 -1012,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1012,16.0,9.0,-3.956039125715353,10.317447719844054 -1012,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1012,16.0,16.0,5.275106062069114,-15.158221991997266 -1012,17.0,14.0,-1.8108011504072024,3.687418931630696 -1012,17.0,17.0,4.886487584415919,-9.906177730909668 -1012,17.0,18.0,-3.0756864340087167,6.218758799278971 -1012,18.0,17.0,-3.0756864340087167,6.218758799278971 -1012,18.0,18.0,8.958039375185187,-17.98346468163191 -1012,18.0,19.0,-5.88235294117647,11.76470588235294 -1012,19.0,9.0,-1.7848303152666305,3.98535828943083 -1012,19.0,18.0,-5.88235294117647,11.76470588235294 -1012,19.0,19.0,7.6671832564431,-15.75006417178377 -1012,20.0,9.0,-5.101853820159654,10.98071411292983 -1012,20.0,20.0,21.876495189895888,-45.10843276170355 -1012,20.0,21.0,-16.774641369736234,34.127718648773715 -1012,21.0,9.0,-2.619319553382597,5.400770303329455 -1012,21.0,20.0,-16.774641369736234,34.127718648773715 -1012,21.0,21.0,21.93449907537439,-43.48289181517921 -1012,21.0,23.0,-2.5405381522555563,3.95440286307604 -1012,22.0,22.0,1.4614056064833263,-2.989238740534077 -1012,22.0,23.0,-1.4614056064833263,2.989238740534077 -1012,23.0,21.0,-2.5405381522555563,3.95440286307604 -1012,23.0,22.0,-1.4614056064833263,2.989238740534077 -1012,23.0,23.0,5.311836702613133,-9.188263657315172 -1012,23.0,24.0,-1.3098929438742493,2.287622053705056 -1012,24.0,23.0,-1.3098929438742493,2.287622053705056 -1012,24.0,24.0,4.495715080321987,-7.864978761969621 -1012,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1012,24.0,26.0,-1.9692920169982515,3.760212661917064 -1012,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1012,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1012,26.0,24.0,-1.9692920169982515,3.760212661917064 -1012,26.0,26.0,3.652281470778589,-9.46044252232512 -1012,26.0,27.0,0.0,2.608731947574922 -1012,26.0,28.0,-0.99553355095268,1.881005840357816 -1012,26.0,29.0,-0.6874559028276572,1.293971494797717 -1012,27.0,5.0,-4.362844058012917,15.463571542897856 -1012,27.0,7.0,-1.4439790613954469,4.540814658476248 -1012,27.0,26.0,0.0,2.608731947574922 -1012,27.0,27.0,5.806823119408364,-22.67145722159613 -1012,28.0,26.0,-0.99553355095268,1.881005840357816 -1012,28.0,28.0,1.9075867579849564,-3.604364401207048 -1012,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1012,29.0,26.0,-0.6874559028276572,1.293971494797717 -1012,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1012,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1013,0.0,0.0,6.765516048652632,-21.23160167089863 -1013,0.0,1.0,-5.224646179885656,15.646726840803398 -1013,0.0,2.0,-1.5408698687669766,5.631674830095234 -1013,1.0,0.0,-5.224646179885656,15.646726840803398 -1013,1.0,1.0,9.75228216552403,-30.648662892676068 -1013,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1013,1.0,4.0,-1.1359607881738778,4.772479328281356 -1013,1.0,5.0,-1.6861448807654689,5.116477495334806 -1013,2.0,0.0,-1.5408698687669766,5.631674830095234 -1013,2.0,2.0,9.736318911079088,-29.13794745915803 -1013,2.0,3.0,-8.19544904231211,23.5308726290628 -1013,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1013,3.0,2.0,-8.19544904231211,23.5308726290628 -1013,3.0,3.0,16.314103089185693,-55.509410535254254 -1013,3.0,5.0,-6.413123730174556,22.31120356548123 -1013,3.0,11.0,0.0,4.191255364806866 -1013,4.0,1.0,-1.1359607881738778,4.772479328281356 -1013,4.0,4.0,4.089980824135861,-12.190647245055052 -1013,4.0,6.0,-2.954020035961983,7.449267916773697 -1013,5.0,1.0,-1.6861448807654689,5.116477495334806 -1013,5.0,3.0,-6.413123730174556,22.31120356548123 -1013,5.0,5.0,22.341631269034565,-82.8291478657789 -1013,5.0,6.0,-3.590210423980992,11.02611441072814 -1013,5.0,7.0,-6.289308176100628,22.0125786163522 -1013,5.0,8.0,0.0,4.915840805411357 -1013,5.0,9.0,0.0,1.8561002591115965 -1013,5.0,27.0,-4.362844058012917,15.463571542897856 -1013,6.0,4.0,-2.954020035961983,7.449267916773697 -1013,6.0,5.0,-3.590210423980992,11.02611441072814 -1013,6.0,6.0,6.544230459942975,-18.45668232750184 -1013,7.0,5.0,-6.289308176100628,22.0125786163522 -1013,7.0,7.0,7.733287237496075,-26.527493274828448 -1013,7.0,27.0,-1.4439790613954469,4.540814658476248 -1013,8.0,5.0,0.0,4.915840805411357 -1013,8.0,8.0,0.0,-18.706293706293707 -1013,8.0,9.0,0.0,9.090909090909092 -1013,8.0,10.0,0.0,4.807692307692308 -1013,9.0,5.0,0.0,1.8561002591115965 -1013,9.0,8.0,0.0,9.090909090909092 -1013,9.0,9.0,13.462042814524237,-41.3837606675224 -1013,9.0,16.0,-3.956039125715353,10.317447719844054 -1013,9.0,19.0,-1.7848303152666305,3.98535828943083 -1013,9.0,20.0,-5.101853820159654,10.98071411292983 -1013,9.0,21.0,-2.619319553382597,5.400770303329455 -1013,10.0,8.0,0.0,4.807692307692308 -1013,10.0,10.0,0.0,-4.807692307692308 -1013,11.0,3.0,0.0,4.191255364806866 -1013,11.0,11.0,3.478565401119727,-18.326891794934408 -1013,11.0,12.0,0.0,7.142857142857143 -1013,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1013,11.0,15.0,-1.9519977922801688,4.104359379111847 -1013,12.0,11.0,0.0,7.142857142857143 -1013,12.0,12.0,0.0,-7.142857142857143 -1013,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1013,13.0,13.0,4.01751987283902,-5.424299332335067 -1013,13.0,14.0,-2.4909522639994623,2.250874059369649 -1013,14.0,13.0,-2.4909522639994623,2.250874059369649 -1013,14.0,14.0,6.270102363308326,-9.9143578677817 -1013,14.0,17.0,-1.8108011504072024,3.687418931630696 -1013,14.0,22.0,-1.9683489489016612,3.976064876781356 -1013,15.0,11.0,-1.9519977922801688,4.104359379111847 -1013,15.0,15.0,3.271064728633931,-8.94513365126506 -1013,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1013,16.0,9.0,-3.956039125715353,10.317447719844054 -1013,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1013,16.0,16.0,5.275106062069114,-15.158221991997266 -1013,17.0,14.0,-1.8108011504072024,3.687418931630696 -1013,17.0,17.0,4.886487584415919,-9.906177730909668 -1013,17.0,18.0,-3.0756864340087167,6.218758799278971 -1013,18.0,17.0,-3.0756864340087167,6.218758799278971 -1013,18.0,18.0,8.958039375185187,-17.98346468163191 -1013,18.0,19.0,-5.88235294117647,11.76470588235294 -1013,19.0,9.0,-1.7848303152666305,3.98535828943083 -1013,19.0,18.0,-5.88235294117647,11.76470588235294 -1013,19.0,19.0,7.6671832564431,-15.75006417178377 -1013,20.0,9.0,-5.101853820159654,10.98071411292983 -1013,20.0,20.0,21.876495189895888,-45.10843276170355 -1013,20.0,21.0,-16.774641369736234,34.127718648773715 -1013,21.0,9.0,-2.619319553382597,5.400770303329455 -1013,21.0,20.0,-16.774641369736234,34.127718648773715 -1013,21.0,21.0,21.93449907537439,-43.48289181517921 -1013,21.0,23.0,-2.5405381522555563,3.95440286307604 -1013,22.0,14.0,-1.9683489489016612,3.976064876781356 -1013,22.0,22.0,3.429754555384988,-6.965303617315433 -1013,22.0,23.0,-1.4614056064833263,2.989238740534077 -1013,23.0,21.0,-2.5405381522555563,3.95440286307604 -1013,23.0,22.0,-1.4614056064833263,2.989238740534077 -1013,23.0,23.0,5.311836702613133,-9.188263657315172 -1013,23.0,24.0,-1.3098929438742493,2.287622053705056 -1013,24.0,23.0,-1.3098929438742493,2.287622053705056 -1013,24.0,24.0,4.495715080321987,-7.864978761969621 -1013,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1013,24.0,26.0,-1.9692920169982515,3.760212661917064 -1013,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1013,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1013,26.0,24.0,-1.9692920169982515,3.760212661917064 -1013,26.0,26.0,3.652281470778589,-9.46044252232512 -1013,26.0,27.0,0.0,2.608731947574922 -1013,26.0,28.0,-0.99553355095268,1.881005840357816 -1013,26.0,29.0,-0.6874559028276572,1.293971494797717 -1013,27.0,5.0,-4.362844058012917,15.463571542897856 -1013,27.0,7.0,-1.4439790613954469,4.540814658476248 -1013,27.0,26.0,0.0,2.608731947574922 -1013,27.0,27.0,5.806823119408364,-22.67145722159613 -1013,28.0,26.0,-0.99553355095268,1.881005840357816 -1013,28.0,28.0,1.9075867579849564,-3.604364401207048 -1013,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1013,29.0,26.0,-0.6874559028276572,1.293971494797717 -1013,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1013,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1014,0.0,0.0,6.765516048652632,-21.23160167089863 -1014,0.0,1.0,-5.224646179885656,15.646726840803398 -1014,0.0,2.0,-1.5408698687669766,5.631674830095234 -1014,1.0,0.0,-5.224646179885656,15.646726840803398 -1014,1.0,1.0,9.75228216552403,-30.648662892676068 -1014,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1014,1.0,4.0,-1.1359607881738778,4.772479328281356 -1014,1.0,5.0,-1.6861448807654689,5.116477495334806 -1014,2.0,0.0,-1.5408698687669766,5.631674830095234 -1014,2.0,2.0,9.736318911079088,-29.13794745915803 -1014,2.0,3.0,-8.19544904231211,23.5308726290628 -1014,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1014,3.0,2.0,-8.19544904231211,23.5308726290628 -1014,3.0,3.0,16.314103089185693,-55.509410535254254 -1014,3.0,5.0,-6.413123730174556,22.31120356548123 -1014,3.0,11.0,0.0,4.191255364806866 -1014,4.0,1.0,-1.1359607881738778,4.772479328281356 -1014,4.0,4.0,4.089980824135861,-12.190647245055052 -1014,4.0,6.0,-2.954020035961983,7.449267916773697 -1014,5.0,1.0,-1.6861448807654689,5.116477495334806 -1014,5.0,3.0,-6.413123730174556,22.31120356548123 -1014,5.0,5.0,22.341631269034565,-82.8291478657789 -1014,5.0,6.0,-3.590210423980992,11.02611441072814 -1014,5.0,7.0,-6.289308176100628,22.0125786163522 -1014,5.0,8.0,0.0,4.915840805411357 -1014,5.0,9.0,0.0,1.8561002591115965 -1014,5.0,27.0,-4.362844058012917,15.463571542897856 -1014,6.0,4.0,-2.954020035961983,7.449267916773697 -1014,6.0,5.0,-3.590210423980992,11.02611441072814 -1014,6.0,6.0,6.544230459942975,-18.45668232750184 -1014,7.0,5.0,-6.289308176100628,22.0125786163522 -1014,7.0,7.0,7.733287237496075,-26.527493274828448 -1014,7.0,27.0,-1.4439790613954469,4.540814658476248 -1014,8.0,5.0,0.0,4.915840805411357 -1014,8.0,8.0,0.0,-18.706293706293707 -1014,8.0,9.0,0.0,9.090909090909092 -1014,8.0,10.0,0.0,4.807692307692308 -1014,9.0,5.0,0.0,1.8561002591115965 -1014,9.0,8.0,0.0,9.090909090909092 -1014,9.0,9.0,13.462042814524237,-41.3837606675224 -1014,9.0,16.0,-3.956039125715353,10.317447719844054 -1014,9.0,19.0,-1.7848303152666305,3.98535828943083 -1014,9.0,20.0,-5.101853820159654,10.98071411292983 -1014,9.0,21.0,-2.619319553382597,5.400770303329455 -1014,10.0,8.0,0.0,4.807692307692308 -1014,10.0,10.0,0.0,-4.807692307692308 -1014,11.0,3.0,0.0,4.191255364806866 -1014,11.0,11.0,6.573961583776156,-24.424167659260668 -1014,11.0,12.0,0.0,7.142857142857143 -1014,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1014,11.0,14.0,-3.0953961826564296,6.097275864326261 -1014,11.0,15.0,-1.9519977922801688,4.104359379111847 -1014,12.0,11.0,0.0,7.142857142857143 -1014,12.0,12.0,0.0,-7.142857142857143 -1014,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1014,13.0,13.0,4.01751987283902,-5.424299332335067 -1014,13.0,14.0,-2.4909522639994623,2.250874059369649 -1014,14.0,11.0,-3.0953961826564296,6.097275864326261 -1014,14.0,13.0,-2.4909522639994623,2.250874059369649 -1014,14.0,14.0,9.365498545964757,-16.01163373210796 -1014,14.0,17.0,-1.8108011504072024,3.687418931630696 -1014,14.0,22.0,-1.9683489489016612,3.976064876781356 -1014,15.0,11.0,-1.9519977922801688,4.104359379111847 -1014,15.0,15.0,3.271064728633931,-8.94513365126506 -1014,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1014,16.0,9.0,-3.956039125715353,10.317447719844054 -1014,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1014,16.0,16.0,5.275106062069114,-15.158221991997266 -1014,17.0,14.0,-1.8108011504072024,3.687418931630696 -1014,17.0,17.0,1.8108011504072024,-3.687418931630696 -1014,18.0,18.0,5.88235294117647,-11.76470588235294 -1014,18.0,19.0,-5.88235294117647,11.76470588235294 -1014,19.0,9.0,-1.7848303152666305,3.98535828943083 -1014,19.0,18.0,-5.88235294117647,11.76470588235294 -1014,19.0,19.0,7.6671832564431,-15.75006417178377 -1014,20.0,9.0,-5.101853820159654,10.98071411292983 -1014,20.0,20.0,21.876495189895888,-45.10843276170355 -1014,20.0,21.0,-16.774641369736234,34.127718648773715 -1014,21.0,9.0,-2.619319553382597,5.400770303329455 -1014,21.0,20.0,-16.774641369736234,34.127718648773715 -1014,21.0,21.0,21.93449907537439,-43.48289181517921 -1014,21.0,23.0,-2.5405381522555563,3.95440286307604 -1014,22.0,14.0,-1.9683489489016612,3.976064876781356 -1014,22.0,22.0,3.429754555384988,-6.965303617315433 -1014,22.0,23.0,-1.4614056064833263,2.989238740534077 -1014,23.0,21.0,-2.5405381522555563,3.95440286307604 -1014,23.0,22.0,-1.4614056064833263,2.989238740534077 -1014,23.0,23.0,5.311836702613133,-9.188263657315172 -1014,23.0,24.0,-1.3098929438742493,2.287622053705056 -1014,24.0,23.0,-1.3098929438742493,2.287622053705056 -1014,24.0,24.0,4.495715080321987,-7.864978761969621 -1014,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1014,24.0,26.0,-1.9692920169982515,3.760212661917064 -1014,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1014,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1014,26.0,24.0,-1.9692920169982515,3.760212661917064 -1014,26.0,26.0,3.652281470778589,-9.46044252232512 -1014,26.0,27.0,0.0,2.608731947574922 -1014,26.0,28.0,-0.99553355095268,1.881005840357816 -1014,26.0,29.0,-0.6874559028276572,1.293971494797717 -1014,27.0,5.0,-4.362844058012917,15.463571542897856 -1014,27.0,7.0,-1.4439790613954469,4.540814658476248 -1014,27.0,26.0,0.0,2.608731947574922 -1014,27.0,27.0,5.806823119408364,-22.67145722159613 -1014,28.0,26.0,-0.99553355095268,1.881005840357816 -1014,28.0,28.0,1.9075867579849564,-3.604364401207048 -1014,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1014,29.0,26.0,-0.6874559028276572,1.293971494797717 -1014,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1014,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1015,0.0,0.0,6.765516048652632,-21.23160167089863 -1015,0.0,1.0,-5.224646179885656,15.646726840803398 -1015,0.0,2.0,-1.5408698687669766,5.631674830095234 -1015,1.0,0.0,-5.224646179885656,15.646726840803398 -1015,1.0,1.0,9.75228216552403,-30.648662892676068 -1015,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1015,1.0,4.0,-1.1359607881738778,4.772479328281356 -1015,1.0,5.0,-1.6861448807654689,5.116477495334806 -1015,2.0,0.0,-1.5408698687669766,5.631674830095234 -1015,2.0,2.0,9.736318911079088,-29.13794745915803 -1015,2.0,3.0,-8.19544904231211,23.5308726290628 -1015,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1015,3.0,2.0,-8.19544904231211,23.5308726290628 -1015,3.0,3.0,16.314103089185693,-55.509410535254254 -1015,3.0,5.0,-6.413123730174556,22.31120356548123 -1015,3.0,11.0,0.0,4.191255364806866 -1015,4.0,1.0,-1.1359607881738778,4.772479328281356 -1015,4.0,4.0,4.089980824135861,-12.190647245055052 -1015,4.0,6.0,-2.954020035961983,7.449267916773697 -1015,5.0,1.0,-1.6861448807654689,5.116477495334806 -1015,5.0,3.0,-6.413123730174556,22.31120356548123 -1015,5.0,5.0,22.341631269034565,-82.8291478657789 -1015,5.0,6.0,-3.590210423980992,11.02611441072814 -1015,5.0,7.0,-6.289308176100628,22.0125786163522 -1015,5.0,8.0,0.0,4.915840805411357 -1015,5.0,9.0,0.0,1.8561002591115965 -1015,5.0,27.0,-4.362844058012917,15.463571542897856 -1015,6.0,4.0,-2.954020035961983,7.449267916773697 -1015,6.0,5.0,-3.590210423980992,11.02611441072814 -1015,6.0,6.0,6.544230459942975,-18.45668232750184 -1015,7.0,5.0,-6.289308176100628,22.0125786163522 -1015,7.0,7.0,6.289308176100628,-22.0080786163522 -1015,8.0,5.0,0.0,4.915840805411357 -1015,8.0,8.0,0.0,-9.615384615384617 -1015,8.0,10.0,0.0,4.807692307692308 -1015,9.0,5.0,0.0,1.8561002591115965 -1015,9.0,9.0,13.462042814524237,-32.29285157661331 -1015,9.0,16.0,-3.956039125715353,10.317447719844054 -1015,9.0,19.0,-1.7848303152666305,3.98535828943083 -1015,9.0,20.0,-5.101853820159654,10.98071411292983 -1015,9.0,21.0,-2.619319553382597,5.400770303329455 -1015,10.0,8.0,0.0,4.807692307692308 -1015,10.0,10.0,0.0,-4.807692307692308 -1015,11.0,3.0,0.0,4.191255364806866 -1015,11.0,11.0,6.573961583776156,-24.424167659260668 -1015,11.0,12.0,0.0,7.142857142857143 -1015,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1015,11.0,14.0,-3.0953961826564296,6.097275864326261 -1015,11.0,15.0,-1.9519977922801688,4.104359379111847 -1015,12.0,11.0,0.0,7.142857142857143 -1015,12.0,12.0,0.0,-7.142857142857143 -1015,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1015,13.0,13.0,4.01751987283902,-5.424299332335067 -1015,13.0,14.0,-2.4909522639994623,2.250874059369649 -1015,14.0,11.0,-3.0953961826564296,6.097275864326261 -1015,14.0,13.0,-2.4909522639994623,2.250874059369649 -1015,14.0,14.0,9.365498545964757,-16.01163373210796 -1015,14.0,17.0,-1.8108011504072024,3.687418931630696 -1015,14.0,22.0,-1.9683489489016612,3.976064876781356 -1015,15.0,11.0,-1.9519977922801688,4.104359379111847 -1015,15.0,15.0,3.271064728633931,-8.94513365126506 -1015,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1015,16.0,9.0,-3.956039125715353,10.317447719844054 -1015,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1015,16.0,16.0,5.275106062069114,-15.158221991997266 -1015,17.0,14.0,-1.8108011504072024,3.687418931630696 -1015,17.0,17.0,1.8108011504072024,-3.687418931630696 -1015,18.0,18.0,5.88235294117647,-11.76470588235294 -1015,18.0,19.0,-5.88235294117647,11.76470588235294 -1015,19.0,9.0,-1.7848303152666305,3.98535828943083 -1015,19.0,18.0,-5.88235294117647,11.76470588235294 -1015,19.0,19.0,7.6671832564431,-15.75006417178377 -1015,20.0,9.0,-5.101853820159654,10.98071411292983 -1015,20.0,20.0,5.101853820159654,-10.98071411292983 -1015,21.0,9.0,-2.619319553382597,5.400770303329455 -1015,21.0,21.0,5.159857705638154,-9.355173166405494 -1015,21.0,23.0,-2.5405381522555563,3.95440286307604 -1015,22.0,14.0,-1.9683489489016612,3.976064876781356 -1015,22.0,22.0,3.429754555384988,-6.965303617315433 -1015,22.0,23.0,-1.4614056064833263,2.989238740534077 -1015,23.0,21.0,-2.5405381522555563,3.95440286307604 -1015,23.0,22.0,-1.4614056064833263,2.989238740534077 -1015,23.0,23.0,5.311836702613133,-9.188263657315172 -1015,23.0,24.0,-1.3098929438742493,2.287622053705056 -1015,24.0,23.0,-1.3098929438742493,2.287622053705056 -1015,24.0,24.0,4.495715080321987,-7.864978761969621 -1015,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1015,24.0,26.0,-1.9692920169982515,3.760212661917064 -1015,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1015,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1015,26.0,24.0,-1.9692920169982515,3.760212661917064 -1015,26.0,26.0,3.652281470778589,-9.46044252232512 -1015,26.0,27.0,0.0,2.608731947574922 -1015,26.0,28.0,-0.99553355095268,1.881005840357816 -1015,26.0,29.0,-0.6874559028276572,1.293971494797717 -1015,27.0,5.0,-4.362844058012917,15.463571542897856 -1015,27.0,26.0,0.0,2.608731947574922 -1015,27.0,27.0,4.362844058012917,-18.15204256311988 -1015,28.0,26.0,-0.99553355095268,1.881005840357816 -1015,28.0,28.0,1.9075867579849564,-3.604364401207048 -1015,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1015,29.0,26.0,-0.6874559028276572,1.293971494797717 -1015,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1015,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1016,0.0,0.0,6.765516048652632,-21.23160167089863 -1016,0.0,1.0,-5.224646179885656,15.646726840803398 -1016,0.0,2.0,-1.5408698687669766,5.631674830095234 -1016,1.0,0.0,-5.224646179885656,15.646726840803398 -1016,1.0,1.0,9.75228216552403,-30.648662892676068 -1016,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1016,1.0,4.0,-1.1359607881738778,4.772479328281356 -1016,1.0,5.0,-1.6861448807654689,5.116477495334806 -1016,2.0,0.0,-1.5408698687669766,5.631674830095234 -1016,2.0,2.0,9.736318911079088,-29.13794745915803 -1016,2.0,3.0,-8.19544904231211,23.5308726290628 -1016,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1016,3.0,2.0,-8.19544904231211,23.5308726290628 -1016,3.0,3.0,16.314103089185693,-55.509410535254254 -1016,3.0,5.0,-6.413123730174556,22.31120356548123 -1016,3.0,11.0,0.0,4.191255364806866 -1016,4.0,1.0,-1.1359607881738778,4.772479328281356 -1016,4.0,4.0,4.089980824135861,-12.190647245055052 -1016,4.0,6.0,-2.954020035961983,7.449267916773697 -1016,5.0,1.0,-1.6861448807654689,5.116477495334806 -1016,5.0,3.0,-6.413123730174556,22.31120356548123 -1016,5.0,5.0,22.341631269034565,-77.80272577435625 -1016,5.0,6.0,-3.590210423980992,11.02611441072814 -1016,5.0,7.0,-6.289308176100628,22.0125786163522 -1016,5.0,9.0,0.0,1.8561002591115965 -1016,5.0,27.0,-4.362844058012917,15.463571542897856 -1016,6.0,4.0,-2.954020035961983,7.449267916773697 -1016,6.0,5.0,-3.590210423980992,11.02611441072814 -1016,6.0,6.0,6.544230459942975,-18.45668232750184 -1016,7.0,5.0,-6.289308176100628,22.0125786163522 -1016,7.0,7.0,7.733287237496075,-26.527493274828448 -1016,7.0,27.0,-1.4439790613954469,4.540814658476248 -1016,8.0,8.0,0.0,-13.8986013986014 -1016,8.0,9.0,0.0,9.090909090909092 -1016,8.0,10.0,0.0,4.807692307692308 -1016,9.0,5.0,0.0,1.8561002591115965 -1016,9.0,8.0,0.0,9.090909090909092 -1016,9.0,9.0,13.462042814524237,-41.3837606675224 -1016,9.0,16.0,-3.956039125715353,10.317447719844054 -1016,9.0,19.0,-1.7848303152666305,3.98535828943083 -1016,9.0,20.0,-5.101853820159654,10.98071411292983 -1016,9.0,21.0,-2.619319553382597,5.400770303329455 -1016,10.0,8.0,0.0,4.807692307692308 -1016,10.0,10.0,0.0,-4.807692307692308 -1016,11.0,3.0,0.0,4.191255364806866 -1016,11.0,11.0,6.573961583776156,-24.424167659260668 -1016,11.0,12.0,0.0,7.142857142857143 -1016,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1016,11.0,14.0,-3.0953961826564296,6.097275864326261 -1016,11.0,15.0,-1.9519977922801688,4.104359379111847 -1016,12.0,11.0,0.0,7.142857142857143 -1016,12.0,12.0,0.0,-7.142857142857143 -1016,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1016,13.0,13.0,4.01751987283902,-5.424299332335067 -1016,13.0,14.0,-2.4909522639994623,2.250874059369649 -1016,14.0,11.0,-3.0953961826564296,6.097275864326261 -1016,14.0,13.0,-2.4909522639994623,2.250874059369649 -1016,14.0,14.0,9.365498545964757,-16.01163373210796 -1016,14.0,17.0,-1.8108011504072024,3.687418931630696 -1016,14.0,22.0,-1.9683489489016612,3.976064876781356 -1016,15.0,11.0,-1.9519977922801688,4.104359379111847 -1016,15.0,15.0,3.271064728633931,-8.94513365126506 -1016,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1016,16.0,9.0,-3.956039125715353,10.317447719844054 -1016,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1016,16.0,16.0,5.275106062069114,-15.158221991997266 -1016,17.0,14.0,-1.8108011504072024,3.687418931630696 -1016,17.0,17.0,4.886487584415919,-9.906177730909668 -1016,17.0,18.0,-3.0756864340087167,6.218758799278971 -1016,18.0,17.0,-3.0756864340087167,6.218758799278971 -1016,18.0,18.0,8.958039375185187,-17.98346468163191 -1016,18.0,19.0,-5.88235294117647,11.76470588235294 -1016,19.0,9.0,-1.7848303152666305,3.98535828943083 -1016,19.0,18.0,-5.88235294117647,11.76470588235294 -1016,19.0,19.0,7.6671832564431,-15.75006417178377 -1016,20.0,9.0,-5.101853820159654,10.98071411292983 -1016,20.0,20.0,21.876495189895888,-45.10843276170355 -1016,20.0,21.0,-16.774641369736234,34.127718648773715 -1016,21.0,9.0,-2.619319553382597,5.400770303329455 -1016,21.0,20.0,-16.774641369736234,34.127718648773715 -1016,21.0,21.0,21.93449907537439,-43.48289181517921 -1016,21.0,23.0,-2.5405381522555563,3.95440286307604 -1016,22.0,14.0,-1.9683489489016612,3.976064876781356 -1016,22.0,22.0,3.429754555384988,-6.965303617315433 -1016,22.0,23.0,-1.4614056064833263,2.989238740534077 -1016,23.0,21.0,-2.5405381522555563,3.95440286307604 -1016,23.0,22.0,-1.4614056064833263,2.989238740534077 -1016,23.0,23.0,5.311836702613133,-9.188263657315172 -1016,23.0,24.0,-1.3098929438742493,2.287622053705056 -1016,24.0,23.0,-1.3098929438742493,2.287622053705056 -1016,24.0,24.0,2.526423063323735,-4.104766100052558 -1016,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1016,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1016,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1016,26.0,26.0,1.6829894537803372,-5.700229860408058 -1016,26.0,27.0,0.0,2.608731947574922 -1016,26.0,28.0,-0.99553355095268,1.881005840357816 -1016,26.0,29.0,-0.6874559028276572,1.293971494797717 -1016,27.0,5.0,-4.362844058012917,15.463571542897856 -1016,27.0,7.0,-1.4439790613954469,4.540814658476248 -1016,27.0,26.0,0.0,2.608731947574922 -1016,27.0,27.0,5.806823119408364,-22.67145722159613 -1016,28.0,26.0,-0.99553355095268,1.881005840357816 -1016,28.0,28.0,1.9075867579849564,-3.604364401207048 -1016,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1016,29.0,26.0,-0.6874559028276572,1.293971494797717 -1016,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1016,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1017,0.0,0.0,6.765516048652632,-21.23160167089863 -1017,0.0,1.0,-5.224646179885656,15.646726840803398 -1017,0.0,2.0,-1.5408698687669766,5.631674830095234 -1017,1.0,0.0,-5.224646179885656,15.646726840803398 -1017,1.0,1.0,9.75228216552403,-30.648662892676068 -1017,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1017,1.0,4.0,-1.1359607881738778,4.772479328281356 -1017,1.0,5.0,-1.6861448807654689,5.116477495334806 -1017,2.0,0.0,-1.5408698687669766,5.631674830095234 -1017,2.0,2.0,1.5408698687669766,-5.611274830095233 -1017,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1017,3.0,3.0,8.118654046873583,-31.982737906191456 -1017,3.0,5.0,-6.413123730174556,22.31120356548123 -1017,3.0,11.0,0.0,4.191255364806866 -1017,4.0,1.0,-1.1359607881738778,4.772479328281356 -1017,4.0,4.0,4.089980824135861,-12.190647245055052 -1017,4.0,6.0,-2.954020035961983,7.449267916773697 -1017,5.0,1.0,-1.6861448807654689,5.116477495334806 -1017,5.0,3.0,-6.413123730174556,22.31120356548123 -1017,5.0,5.0,22.341631269034565,-82.8291478657789 -1017,5.0,6.0,-3.590210423980992,11.02611441072814 -1017,5.0,7.0,-6.289308176100628,22.0125786163522 -1017,5.0,8.0,0.0,4.915840805411357 -1017,5.0,9.0,0.0,1.8561002591115965 -1017,5.0,27.0,-4.362844058012917,15.463571542897856 -1017,6.0,4.0,-2.954020035961983,7.449267916773697 -1017,6.0,5.0,-3.590210423980992,11.02611441072814 -1017,6.0,6.0,6.544230459942975,-18.45668232750184 -1017,7.0,5.0,-6.289308176100628,22.0125786163522 -1017,7.0,7.0,7.733287237496075,-26.527493274828448 -1017,7.0,27.0,-1.4439790613954469,4.540814658476248 -1017,8.0,5.0,0.0,4.915840805411357 -1017,8.0,8.0,0.0,-18.706293706293707 -1017,8.0,9.0,0.0,9.090909090909092 -1017,8.0,10.0,0.0,4.807692307692308 -1017,9.0,5.0,0.0,1.8561002591115965 -1017,9.0,8.0,0.0,9.090909090909092 -1017,9.0,9.0,8.36018899436458,-30.40304655459257 -1017,9.0,16.0,-3.956039125715353,10.317447719844054 -1017,9.0,19.0,-1.7848303152666305,3.98535828943083 -1017,9.0,21.0,-2.619319553382597,5.400770303329455 -1017,10.0,8.0,0.0,4.807692307692308 -1017,10.0,10.0,0.0,-4.807692307692308 -1017,11.0,3.0,0.0,4.191255364806866 -1017,11.0,11.0,4.621963791495987,-20.31980828014882 -1017,11.0,12.0,0.0,7.142857142857143 -1017,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1017,11.0,14.0,-3.0953961826564296,6.097275864326261 -1017,12.0,11.0,0.0,7.142857142857143 -1017,12.0,12.0,0.0,-7.142857142857143 -1017,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1017,13.0,13.0,4.01751987283902,-5.424299332335067 -1017,13.0,14.0,-2.4909522639994623,2.250874059369649 -1017,14.0,11.0,-3.0953961826564296,6.097275864326261 -1017,14.0,13.0,-2.4909522639994623,2.250874059369649 -1017,14.0,14.0,9.365498545964757,-16.01163373210796 -1017,14.0,17.0,-1.8108011504072024,3.687418931630696 -1017,14.0,22.0,-1.9683489489016612,3.976064876781356 -1017,15.0,15.0,1.3190669363537617,-4.8407742721532125 -1017,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1017,16.0,9.0,-3.956039125715353,10.317447719844054 -1017,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1017,16.0,16.0,5.275106062069114,-15.158221991997266 -1017,17.0,14.0,-1.8108011504072024,3.687418931630696 -1017,17.0,17.0,4.886487584415919,-9.906177730909668 -1017,17.0,18.0,-3.0756864340087167,6.218758799278971 -1017,18.0,17.0,-3.0756864340087167,6.218758799278971 -1017,18.0,18.0,8.958039375185187,-17.98346468163191 -1017,18.0,19.0,-5.88235294117647,11.76470588235294 -1017,19.0,9.0,-1.7848303152666305,3.98535828943083 -1017,19.0,18.0,-5.88235294117647,11.76470588235294 -1017,19.0,19.0,7.6671832564431,-15.75006417178377 -1017,20.0,20.0,16.774641369736234,-34.127718648773715 -1017,20.0,21.0,-16.774641369736234,34.127718648773715 -1017,21.0,9.0,-2.619319553382597,5.400770303329455 -1017,21.0,20.0,-16.774641369736234,34.127718648773715 -1017,21.0,21.0,21.93449907537439,-43.48289181517921 -1017,21.0,23.0,-2.5405381522555563,3.95440286307604 -1017,22.0,14.0,-1.9683489489016612,3.976064876781356 -1017,22.0,22.0,3.429754555384988,-6.965303617315433 -1017,22.0,23.0,-1.4614056064833263,2.989238740534077 -1017,23.0,21.0,-2.5405381522555563,3.95440286307604 -1017,23.0,22.0,-1.4614056064833263,2.989238740534077 -1017,23.0,23.0,5.311836702613133,-9.188263657315172 -1017,23.0,24.0,-1.3098929438742493,2.287622053705056 -1017,24.0,23.0,-1.3098929438742493,2.287622053705056 -1017,24.0,24.0,4.495715080321987,-7.864978761969621 -1017,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1017,24.0,26.0,-1.9692920169982515,3.760212661917064 -1017,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1017,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1017,26.0,24.0,-1.9692920169982515,3.760212661917064 -1017,26.0,26.0,3.652281470778589,-9.46044252232512 -1017,26.0,27.0,0.0,2.608731947574922 -1017,26.0,28.0,-0.99553355095268,1.881005840357816 -1017,26.0,29.0,-0.6874559028276572,1.293971494797717 -1017,27.0,5.0,-4.362844058012917,15.463571542897856 -1017,27.0,7.0,-1.4439790613954469,4.540814658476248 -1017,27.0,26.0,0.0,2.608731947574922 -1017,27.0,27.0,5.806823119408364,-22.67145722159613 -1017,28.0,26.0,-0.99553355095268,1.881005840357816 -1017,28.0,28.0,1.9075867579849564,-3.604364401207048 -1017,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1017,29.0,26.0,-0.6874559028276572,1.293971494797717 -1017,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1017,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1018,0.0,0.0,1.5408698687669766,-5.611274830095233 -1018,0.0,2.0,-1.5408698687669766,5.631674830095234 -1018,1.0,1.0,4.527635985638374,-15.028336051872673 -1018,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1018,1.0,4.0,-1.1359607881738778,4.772479328281356 -1018,1.0,5.0,-1.6861448807654689,5.116477495334806 -1018,2.0,0.0,-1.5408698687669766,5.631674830095234 -1018,2.0,2.0,9.736318911079088,-29.13794745915803 -1018,2.0,3.0,-8.19544904231211,23.5308726290628 -1018,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1018,3.0,2.0,-8.19544904231211,23.5308726290628 -1018,3.0,3.0,9.900979359011137,-33.202706969773025 -1018,3.0,11.0,0.0,4.191255364806866 -1018,4.0,1.0,-1.1359607881738778,4.772479328281356 -1018,4.0,4.0,4.089980824135861,-12.190647245055052 -1018,4.0,6.0,-2.954020035961983,7.449267916773697 -1018,5.0,1.0,-1.6861448807654689,5.116477495334806 -1018,5.0,5.0,15.928507538860009,-60.52244430029767 -1018,5.0,6.0,-3.590210423980992,11.02611441072814 -1018,5.0,7.0,-6.289308176100628,22.0125786163522 -1018,5.0,8.0,0.0,4.915840805411357 -1018,5.0,9.0,0.0,1.8561002591115965 -1018,5.0,27.0,-4.362844058012917,15.463571542897856 -1018,6.0,4.0,-2.954020035961983,7.449267916773697 -1018,6.0,5.0,-3.590210423980992,11.02611441072814 -1018,6.0,6.0,6.544230459942975,-18.45668232750184 -1018,7.0,5.0,-6.289308176100628,22.0125786163522 -1018,7.0,7.0,7.733287237496075,-26.527493274828448 -1018,7.0,27.0,-1.4439790613954469,4.540814658476248 -1018,8.0,5.0,0.0,4.915840805411357 -1018,8.0,8.0,0.0,-18.706293706293707 -1018,8.0,9.0,0.0,9.090909090909092 -1018,8.0,10.0,0.0,4.807692307692308 -1018,9.0,5.0,0.0,1.8561002591115965 -1018,9.0,8.0,0.0,9.090909090909092 -1018,9.0,9.0,13.462042814524237,-41.3837606675224 -1018,9.0,16.0,-3.956039125715353,10.317447719844054 -1018,9.0,19.0,-1.7848303152666305,3.98535828943083 -1018,9.0,20.0,-5.101853820159654,10.98071411292983 -1018,9.0,21.0,-2.619319553382597,5.400770303329455 -1018,10.0,8.0,0.0,4.807692307692308 -1018,10.0,10.0,0.0,-4.807692307692308 -1018,11.0,3.0,0.0,4.191255364806866 -1018,11.0,11.0,6.573961583776156,-24.424167659260668 -1018,11.0,12.0,0.0,7.142857142857143 -1018,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1018,11.0,14.0,-3.0953961826564296,6.097275864326261 -1018,11.0,15.0,-1.9519977922801688,4.104359379111847 -1018,12.0,11.0,0.0,7.142857142857143 -1018,12.0,12.0,0.0,-7.142857142857143 -1018,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1018,13.0,13.0,4.01751987283902,-5.424299332335067 -1018,13.0,14.0,-2.4909522639994623,2.250874059369649 -1018,14.0,11.0,-3.0953961826564296,6.097275864326261 -1018,14.0,13.0,-2.4909522639994623,2.250874059369649 -1018,14.0,14.0,9.365498545964757,-16.01163373210796 -1018,14.0,17.0,-1.8108011504072024,3.687418931630696 -1018,14.0,22.0,-1.9683489489016612,3.976064876781356 -1018,15.0,11.0,-1.9519977922801688,4.104359379111847 -1018,15.0,15.0,3.271064728633931,-8.94513365126506 -1018,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1018,16.0,9.0,-3.956039125715353,10.317447719844054 -1018,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1018,16.0,16.0,5.275106062069114,-15.158221991997266 -1018,17.0,14.0,-1.8108011504072024,3.687418931630696 -1018,17.0,17.0,4.886487584415919,-9.906177730909668 -1018,17.0,18.0,-3.0756864340087167,6.218758799278971 -1018,18.0,17.0,-3.0756864340087167,6.218758799278971 -1018,18.0,18.0,8.958039375185187,-17.98346468163191 -1018,18.0,19.0,-5.88235294117647,11.76470588235294 -1018,19.0,9.0,-1.7848303152666305,3.98535828943083 -1018,19.0,18.0,-5.88235294117647,11.76470588235294 -1018,19.0,19.0,7.6671832564431,-15.75006417178377 -1018,20.0,9.0,-5.101853820159654,10.98071411292983 -1018,20.0,20.0,21.876495189895888,-45.10843276170355 -1018,20.0,21.0,-16.774641369736234,34.127718648773715 -1018,21.0,9.0,-2.619319553382597,5.400770303329455 -1018,21.0,20.0,-16.774641369736234,34.127718648773715 -1018,21.0,21.0,21.93449907537439,-43.48289181517921 -1018,21.0,23.0,-2.5405381522555563,3.95440286307604 -1018,22.0,14.0,-1.9683489489016612,3.976064876781356 -1018,22.0,22.0,1.9683489489016612,-3.976064876781356 -1018,23.0,21.0,-2.5405381522555563,3.95440286307604 -1018,23.0,23.0,3.850431096129806,-6.199024916781094 -1018,23.0,24.0,-1.3098929438742493,2.287622053705056 -1018,24.0,23.0,-1.3098929438742493,2.287622053705056 -1018,24.0,24.0,4.495715080321987,-7.864978761969621 -1018,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1018,24.0,26.0,-1.9692920169982515,3.760212661917064 -1018,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1018,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1018,26.0,24.0,-1.9692920169982515,3.760212661917064 -1018,26.0,26.0,3.652281470778589,-9.46044252232512 -1018,26.0,27.0,0.0,2.608731947574922 -1018,26.0,28.0,-0.99553355095268,1.881005840357816 -1018,26.0,29.0,-0.6874559028276572,1.293971494797717 -1018,27.0,5.0,-4.362844058012917,15.463571542897856 -1018,27.0,7.0,-1.4439790613954469,4.540814658476248 -1018,27.0,26.0,0.0,2.608731947574922 -1018,27.0,27.0,5.806823119408364,-22.67145722159613 -1018,28.0,26.0,-0.99553355095268,1.881005840357816 -1018,28.0,28.0,1.9075867579849564,-3.604364401207048 -1018,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1018,29.0,26.0,-0.6874559028276572,1.293971494797717 -1018,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1018,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1019,0.0,0.0,6.765516048652632,-21.23160167089863 -1019,0.0,1.0,-5.224646179885656,15.646726840803398 -1019,0.0,2.0,-1.5408698687669766,5.631674830095234 -1019,1.0,0.0,-5.224646179885656,15.646726840803398 -1019,1.0,1.0,9.75228216552403,-30.648662892676068 -1019,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1019,1.0,4.0,-1.1359607881738778,4.772479328281356 -1019,1.0,5.0,-1.6861448807654689,5.116477495334806 -1019,2.0,0.0,-1.5408698687669766,5.631674830095234 -1019,2.0,2.0,9.736318911079088,-29.13794745915803 -1019,2.0,3.0,-8.19544904231211,23.5308726290628 -1019,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1019,3.0,2.0,-8.19544904231211,23.5308726290628 -1019,3.0,3.0,16.314103089185693,-55.509410535254254 -1019,3.0,5.0,-6.413123730174556,22.31120356548123 -1019,3.0,11.0,0.0,4.191255364806866 -1019,4.0,1.0,-1.1359607881738778,4.772479328281356 -1019,4.0,4.0,4.089980824135861,-12.190647245055052 -1019,4.0,6.0,-2.954020035961983,7.449267916773697 -1019,5.0,1.0,-1.6861448807654689,5.116477495334806 -1019,5.0,3.0,-6.413123730174556,22.31120356548123 -1019,5.0,5.0,22.341631269034565,-82.8291478657789 -1019,5.0,6.0,-3.590210423980992,11.02611441072814 -1019,5.0,7.0,-6.289308176100628,22.0125786163522 -1019,5.0,8.0,0.0,4.915840805411357 -1019,5.0,9.0,0.0,1.8561002591115965 -1019,5.0,27.0,-4.362844058012917,15.463571542897856 -1019,6.0,4.0,-2.954020035961983,7.449267916773697 -1019,6.0,5.0,-3.590210423980992,11.02611441072814 -1019,6.0,6.0,6.544230459942975,-18.45668232750184 -1019,7.0,5.0,-6.289308176100628,22.0125786163522 -1019,7.0,7.0,6.289308176100628,-22.0080786163522 -1019,8.0,5.0,0.0,4.915840805411357 -1019,8.0,8.0,0.0,-18.706293706293707 -1019,8.0,9.0,0.0,9.090909090909092 -1019,8.0,10.0,0.0,4.807692307692308 -1019,9.0,5.0,0.0,1.8561002591115965 -1019,9.0,8.0,0.0,9.090909090909092 -1019,9.0,9.0,13.462042814524237,-41.3837606675224 -1019,9.0,16.0,-3.956039125715353,10.317447719844054 -1019,9.0,19.0,-1.7848303152666305,3.98535828943083 -1019,9.0,20.0,-5.101853820159654,10.98071411292983 -1019,9.0,21.0,-2.619319553382597,5.400770303329455 -1019,10.0,8.0,0.0,4.807692307692308 -1019,10.0,10.0,0.0,-4.807692307692308 -1019,11.0,3.0,0.0,4.191255364806866 -1019,11.0,11.0,6.573961583776156,-24.424167659260668 -1019,11.0,12.0,0.0,7.142857142857143 -1019,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1019,11.0,14.0,-3.0953961826564296,6.097275864326261 -1019,11.0,15.0,-1.9519977922801688,4.104359379111847 -1019,12.0,11.0,0.0,7.142857142857143 -1019,12.0,12.0,0.0,-7.142857142857143 -1019,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1019,13.0,13.0,4.01751987283902,-5.424299332335067 -1019,13.0,14.0,-2.4909522639994623,2.250874059369649 -1019,14.0,11.0,-3.0953961826564296,6.097275864326261 -1019,14.0,13.0,-2.4909522639994623,2.250874059369649 -1019,14.0,14.0,9.365498545964757,-16.01163373210796 -1019,14.0,17.0,-1.8108011504072024,3.687418931630696 -1019,14.0,22.0,-1.9683489489016612,3.976064876781356 -1019,15.0,11.0,-1.9519977922801688,4.104359379111847 -1019,15.0,15.0,3.271064728633931,-8.94513365126506 -1019,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1019,16.0,9.0,-3.956039125715353,10.317447719844054 -1019,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1019,16.0,16.0,5.275106062069114,-15.158221991997266 -1019,17.0,14.0,-1.8108011504072024,3.687418931630696 -1019,17.0,17.0,1.8108011504072024,-3.687418931630696 -1019,18.0,18.0,5.88235294117647,-11.76470588235294 -1019,18.0,19.0,-5.88235294117647,11.76470588235294 -1019,19.0,9.0,-1.7848303152666305,3.98535828943083 -1019,19.0,18.0,-5.88235294117647,11.76470588235294 -1019,19.0,19.0,7.6671832564431,-15.75006417178377 -1019,20.0,9.0,-5.101853820159654,10.98071411292983 -1019,20.0,20.0,21.876495189895888,-45.10843276170355 -1019,20.0,21.0,-16.774641369736234,34.127718648773715 -1019,21.0,9.0,-2.619319553382597,5.400770303329455 -1019,21.0,20.0,-16.774641369736234,34.127718648773715 -1019,21.0,21.0,21.93449907537439,-43.48289181517921 -1019,21.0,23.0,-2.5405381522555563,3.95440286307604 -1019,22.0,14.0,-1.9683489489016612,3.976064876781356 -1019,22.0,22.0,3.429754555384988,-6.965303617315433 -1019,22.0,23.0,-1.4614056064833263,2.989238740534077 -1019,23.0,21.0,-2.5405381522555563,3.95440286307604 -1019,23.0,22.0,-1.4614056064833263,2.989238740534077 -1019,23.0,23.0,5.311836702613133,-9.188263657315172 -1019,23.0,24.0,-1.3098929438742493,2.287622053705056 -1019,24.0,23.0,-1.3098929438742493,2.287622053705056 -1019,24.0,24.0,4.495715080321987,-7.864978761969621 -1019,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1019,24.0,26.0,-1.9692920169982515,3.760212661917064 -1019,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1019,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1019,26.0,24.0,-1.9692920169982515,3.760212661917064 -1019,26.0,26.0,3.652281470778589,-9.46044252232512 -1019,26.0,27.0,0.0,2.608731947574922 -1019,26.0,28.0,-0.99553355095268,1.881005840357816 -1019,26.0,29.0,-0.6874559028276572,1.293971494797717 -1019,27.0,5.0,-4.362844058012917,15.463571542897856 -1019,27.0,26.0,0.0,2.608731947574922 -1019,27.0,27.0,4.362844058012917,-18.15204256311988 -1019,28.0,26.0,-0.99553355095268,1.881005840357816 -1019,28.0,28.0,1.9075867579849564,-3.604364401207048 -1019,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1019,29.0,26.0,-0.6874559028276572,1.293971494797717 -1019,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1019,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1020,0.0,0.0,6.765516048652632,-21.23160167089863 -1020,0.0,1.0,-5.224646179885656,15.646726840803398 -1020,0.0,2.0,-1.5408698687669766,5.631674830095234 -1020,1.0,0.0,-5.224646179885656,15.646726840803398 -1020,1.0,1.0,9.75228216552403,-30.648662892676068 -1020,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1020,1.0,4.0,-1.1359607881738778,4.772479328281356 -1020,1.0,5.0,-1.6861448807654689,5.116477495334806 -1020,2.0,0.0,-1.5408698687669766,5.631674830095234 -1020,2.0,2.0,9.736318911079088,-29.13794745915803 -1020,2.0,3.0,-8.19544904231211,23.5308726290628 -1020,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1020,3.0,2.0,-8.19544904231211,23.5308726290628 -1020,3.0,3.0,16.314103089185693,-55.509410535254254 -1020,3.0,5.0,-6.413123730174556,22.31120356548123 -1020,3.0,11.0,0.0,4.191255364806866 -1020,4.0,1.0,-1.1359607881738778,4.772479328281356 -1020,4.0,4.0,4.089980824135861,-12.190647245055052 -1020,4.0,6.0,-2.954020035961983,7.449267916773697 -1020,5.0,1.0,-1.6861448807654689,5.116477495334806 -1020,5.0,3.0,-6.413123730174556,22.31120356548123 -1020,5.0,5.0,22.341631269034565,-82.8291478657789 -1020,5.0,6.0,-3.590210423980992,11.02611441072814 -1020,5.0,7.0,-6.289308176100628,22.0125786163522 -1020,5.0,8.0,0.0,4.915840805411357 -1020,5.0,9.0,0.0,1.8561002591115965 -1020,5.0,27.0,-4.362844058012917,15.463571542897856 -1020,6.0,4.0,-2.954020035961983,7.449267916773697 -1020,6.0,5.0,-3.590210423980992,11.02611441072814 -1020,6.0,6.0,6.544230459942975,-18.45668232750184 -1020,7.0,5.0,-6.289308176100628,22.0125786163522 -1020,7.0,7.0,7.733287237496075,-26.527493274828448 -1020,7.0,27.0,-1.4439790613954469,4.540814658476248 -1020,8.0,5.0,0.0,4.915840805411357 -1020,8.0,8.0,0.0,-18.706293706293707 -1020,8.0,9.0,0.0,9.090909090909092 -1020,8.0,10.0,0.0,4.807692307692308 -1020,9.0,5.0,0.0,1.8561002591115965 -1020,9.0,8.0,0.0,9.090909090909092 -1020,9.0,9.0,13.462042814524237,-41.3837606675224 -1020,9.0,16.0,-3.956039125715353,10.317447719844054 -1020,9.0,19.0,-1.7848303152666305,3.98535828943083 -1020,9.0,20.0,-5.101853820159654,10.98071411292983 -1020,9.0,21.0,-2.619319553382597,5.400770303329455 -1020,10.0,8.0,0.0,4.807692307692308 -1020,10.0,10.0,0.0,-4.807692307692308 -1020,11.0,3.0,0.0,4.191255364806866 -1020,11.0,11.0,6.573961583776156,-24.424167659260668 -1020,11.0,12.0,0.0,7.142857142857143 -1020,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1020,11.0,14.0,-3.0953961826564296,6.097275864326261 -1020,11.0,15.0,-1.9519977922801688,4.104359379111847 -1020,12.0,11.0,0.0,7.142857142857143 -1020,12.0,12.0,0.0,-7.142857142857143 -1020,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1020,13.0,13.0,4.01751987283902,-5.424299332335067 -1020,13.0,14.0,-2.4909522639994623,2.250874059369649 -1020,14.0,11.0,-3.0953961826564296,6.097275864326261 -1020,14.0,13.0,-2.4909522639994623,2.250874059369649 -1020,14.0,14.0,9.365498545964757,-16.01163373210796 -1020,14.0,17.0,-1.8108011504072024,3.687418931630696 -1020,14.0,22.0,-1.9683489489016612,3.976064876781356 -1020,15.0,11.0,-1.9519977922801688,4.104359379111847 -1020,15.0,15.0,3.271064728633931,-8.94513365126506 -1020,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1020,16.0,9.0,-3.956039125715353,10.317447719844054 -1020,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1020,16.0,16.0,5.275106062069114,-15.158221991997266 -1020,17.0,14.0,-1.8108011504072024,3.687418931630696 -1020,17.0,17.0,4.886487584415919,-9.906177730909668 -1020,17.0,18.0,-3.0756864340087167,6.218758799278971 -1020,18.0,17.0,-3.0756864340087167,6.218758799278971 -1020,18.0,18.0,8.958039375185187,-17.98346468163191 -1020,18.0,19.0,-5.88235294117647,11.76470588235294 -1020,19.0,9.0,-1.7848303152666305,3.98535828943083 -1020,19.0,18.0,-5.88235294117647,11.76470588235294 -1020,19.0,19.0,7.6671832564431,-15.75006417178377 -1020,20.0,9.0,-5.101853820159654,10.98071411292983 -1020,20.0,20.0,21.876495189895888,-45.10843276170355 -1020,20.0,21.0,-16.774641369736234,34.127718648773715 -1020,21.0,9.0,-2.619319553382597,5.400770303329455 -1020,21.0,20.0,-16.774641369736234,34.127718648773715 -1020,21.0,21.0,19.393960923118836,-39.52848895210317 -1020,22.0,14.0,-1.9683489489016612,3.976064876781356 -1020,22.0,22.0,3.429754555384988,-6.965303617315433 -1020,22.0,23.0,-1.4614056064833263,2.989238740534077 -1020,23.0,22.0,-1.4614056064833263,2.989238740534077 -1020,23.0,23.0,2.771298550357576,-5.233860794239132 -1020,23.0,24.0,-1.3098929438742493,2.287622053705056 -1020,24.0,23.0,-1.3098929438742493,2.287622053705056 -1020,24.0,24.0,4.495715080321987,-7.864978761969621 -1020,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1020,24.0,26.0,-1.9692920169982515,3.760212661917064 -1020,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1020,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1020,26.0,24.0,-1.9692920169982515,3.760212661917064 -1020,26.0,26.0,3.652281470778589,-9.46044252232512 -1020,26.0,27.0,0.0,2.608731947574922 -1020,26.0,28.0,-0.99553355095268,1.881005840357816 -1020,26.0,29.0,-0.6874559028276572,1.293971494797717 -1020,27.0,5.0,-4.362844058012917,15.463571542897856 -1020,27.0,7.0,-1.4439790613954469,4.540814658476248 -1020,27.0,26.0,0.0,2.608731947574922 -1020,27.0,27.0,5.806823119408364,-22.67145722159613 -1020,28.0,26.0,-0.99553355095268,1.881005840357816 -1020,28.0,28.0,1.9075867579849564,-3.604364401207048 -1020,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1020,29.0,26.0,-0.6874559028276572,1.293971494797717 -1020,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1020,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1021,0.0,0.0,6.765516048652632,-21.23160167089863 -1021,0.0,1.0,-5.224646179885656,15.646726840803398 -1021,0.0,2.0,-1.5408698687669766,5.631674830095234 -1021,1.0,0.0,-5.224646179885656,15.646726840803398 -1021,1.0,1.0,9.75228216552403,-30.648662892676068 -1021,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1021,1.0,4.0,-1.1359607881738778,4.772479328281356 -1021,1.0,5.0,-1.6861448807654689,5.116477495334806 -1021,2.0,0.0,-1.5408698687669766,5.631674830095234 -1021,2.0,2.0,9.736318911079088,-29.13794745915803 -1021,2.0,3.0,-8.19544904231211,23.5308726290628 -1021,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1021,3.0,2.0,-8.19544904231211,23.5308726290628 -1021,3.0,3.0,16.314103089185693,-55.509410535254254 -1021,3.0,5.0,-6.413123730174556,22.31120356548123 -1021,3.0,11.0,0.0,4.191255364806866 -1021,4.0,1.0,-1.1359607881738778,4.772479328281356 -1021,4.0,4.0,4.089980824135861,-12.190647245055052 -1021,4.0,6.0,-2.954020035961983,7.449267916773697 -1021,5.0,1.0,-1.6861448807654689,5.116477495334806 -1021,5.0,3.0,-6.413123730174556,22.31120356548123 -1021,5.0,5.0,22.341631269034565,-82.8291478657789 -1021,5.0,6.0,-3.590210423980992,11.02611441072814 -1021,5.0,7.0,-6.289308176100628,22.0125786163522 -1021,5.0,8.0,0.0,4.915840805411357 -1021,5.0,9.0,0.0,1.8561002591115965 -1021,5.0,27.0,-4.362844058012917,15.463571542897856 -1021,6.0,4.0,-2.954020035961983,7.449267916773697 -1021,6.0,5.0,-3.590210423980992,11.02611441072814 -1021,6.0,6.0,6.544230459942975,-18.45668232750184 -1021,7.0,5.0,-6.289308176100628,22.0125786163522 -1021,7.0,7.0,7.733287237496075,-26.527493274828448 -1021,7.0,27.0,-1.4439790613954469,4.540814658476248 -1021,8.0,5.0,0.0,4.915840805411357 -1021,8.0,8.0,0.0,-18.706293706293707 -1021,8.0,9.0,0.0,9.090909090909092 -1021,8.0,10.0,0.0,4.807692307692308 -1021,9.0,5.0,0.0,1.8561002591115965 -1021,9.0,8.0,0.0,9.090909090909092 -1021,9.0,9.0,13.462042814524237,-41.3837606675224 -1021,9.0,16.0,-3.956039125715353,10.317447719844054 -1021,9.0,19.0,-1.7848303152666305,3.98535828943083 -1021,9.0,20.0,-5.101853820159654,10.98071411292983 -1021,9.0,21.0,-2.619319553382597,5.400770303329455 -1021,10.0,8.0,0.0,4.807692307692308 -1021,10.0,10.0,0.0,-4.807692307692308 -1021,11.0,3.0,0.0,4.191255364806866 -1021,11.0,11.0,6.573961583776156,-24.424167659260668 -1021,11.0,12.0,0.0,7.142857142857143 -1021,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1021,11.0,14.0,-3.0953961826564296,6.097275864326261 -1021,11.0,15.0,-1.9519977922801688,4.104359379111847 -1021,12.0,11.0,0.0,7.142857142857143 -1021,12.0,12.0,0.0,-7.142857142857143 -1021,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1021,13.0,13.0,4.01751987283902,-5.424299332335067 -1021,13.0,14.0,-2.4909522639994623,2.250874059369649 -1021,14.0,11.0,-3.0953961826564296,6.097275864326261 -1021,14.0,13.0,-2.4909522639994623,2.250874059369649 -1021,14.0,14.0,9.365498545964757,-16.01163373210796 -1021,14.0,17.0,-1.8108011504072024,3.687418931630696 -1021,14.0,22.0,-1.9683489489016612,3.976064876781356 -1021,15.0,11.0,-1.9519977922801688,4.104359379111847 -1021,15.0,15.0,3.271064728633931,-8.94513365126506 -1021,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1021,16.0,9.0,-3.956039125715353,10.317447719844054 -1021,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1021,16.0,16.0,5.275106062069114,-15.158221991997266 -1021,17.0,14.0,-1.8108011504072024,3.687418931630696 -1021,17.0,17.0,4.886487584415919,-9.906177730909668 -1021,17.0,18.0,-3.0756864340087167,6.218758799278971 -1021,18.0,17.0,-3.0756864340087167,6.218758799278971 -1021,18.0,18.0,8.958039375185187,-17.98346468163191 -1021,18.0,19.0,-5.88235294117647,11.76470588235294 -1021,19.0,9.0,-1.7848303152666305,3.98535828943083 -1021,19.0,18.0,-5.88235294117647,11.76470588235294 -1021,19.0,19.0,7.6671832564431,-15.75006417178377 -1021,20.0,9.0,-5.101853820159654,10.98071411292983 -1021,20.0,20.0,21.876495189895888,-45.10843276170355 -1021,20.0,21.0,-16.774641369736234,34.127718648773715 -1021,21.0,9.0,-2.619319553382597,5.400770303329455 -1021,21.0,20.0,-16.774641369736234,34.127718648773715 -1021,21.0,21.0,21.93449907537439,-43.48289181517921 -1021,21.0,23.0,-2.5405381522555563,3.95440286307604 -1021,22.0,14.0,-1.9683489489016612,3.976064876781356 -1021,22.0,22.0,3.429754555384988,-6.965303617315433 -1021,22.0,23.0,-1.4614056064833263,2.989238740534077 -1021,23.0,21.0,-2.5405381522555563,3.95440286307604 -1021,23.0,22.0,-1.4614056064833263,2.989238740534077 -1021,23.0,23.0,5.311836702613133,-9.188263657315172 -1021,23.0,24.0,-1.3098929438742493,2.287622053705056 -1021,24.0,23.0,-1.3098929438742493,2.287622053705056 -1021,24.0,24.0,4.495715080321987,-7.864978761969621 -1021,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1021,24.0,26.0,-1.9692920169982515,3.760212661917064 -1021,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1021,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1021,26.0,24.0,-1.9692920169982515,3.760212661917064 -1021,26.0,26.0,3.652281470778589,-9.46044252232512 -1021,26.0,27.0,0.0,2.608731947574922 -1021,26.0,28.0,-0.99553355095268,1.881005840357816 -1021,26.0,29.0,-0.6874559028276572,1.293971494797717 -1021,27.0,5.0,-4.362844058012917,15.463571542897856 -1021,27.0,7.0,-1.4439790613954469,4.540814658476248 -1021,27.0,26.0,0.0,2.608731947574922 -1021,27.0,27.0,5.806823119408364,-22.67145722159613 -1021,28.0,26.0,-0.99553355095268,1.881005840357816 -1021,28.0,28.0,1.9075867579849564,-3.604364401207048 -1021,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1021,29.0,26.0,-0.6874559028276572,1.293971494797717 -1021,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1021,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1022,0.0,0.0,6.765516048652632,-21.23160167089863 -1022,0.0,1.0,-5.224646179885656,15.646726840803398 -1022,0.0,2.0,-1.5408698687669766,5.631674830095234 -1022,1.0,0.0,-5.224646179885656,15.646726840803398 -1022,1.0,1.0,9.75228216552403,-30.648662892676068 -1022,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1022,1.0,4.0,-1.1359607881738778,4.772479328281356 -1022,1.0,5.0,-1.6861448807654689,5.116477495334806 -1022,2.0,0.0,-1.5408698687669766,5.631674830095234 -1022,2.0,2.0,9.736318911079088,-29.13794745915803 -1022,2.0,3.0,-8.19544904231211,23.5308726290628 -1022,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1022,3.0,2.0,-8.19544904231211,23.5308726290628 -1022,3.0,3.0,16.314103089185693,-55.509410535254254 -1022,3.0,5.0,-6.413123730174556,22.31120356548123 -1022,3.0,11.0,0.0,4.191255364806866 -1022,4.0,1.0,-1.1359607881738778,4.772479328281356 -1022,4.0,4.0,4.089980824135861,-12.190647245055052 -1022,4.0,6.0,-2.954020035961983,7.449267916773697 -1022,5.0,1.0,-1.6861448807654689,5.116477495334806 -1022,5.0,3.0,-6.413123730174556,22.31120356548123 -1022,5.0,5.0,22.341631269034565,-77.80272577435625 -1022,5.0,6.0,-3.590210423980992,11.02611441072814 -1022,5.0,7.0,-6.289308176100628,22.0125786163522 -1022,5.0,9.0,0.0,1.8561002591115965 -1022,5.0,27.0,-4.362844058012917,15.463571542897856 -1022,6.0,4.0,-2.954020035961983,7.449267916773697 -1022,6.0,5.0,-3.590210423980992,11.02611441072814 -1022,6.0,6.0,6.544230459942975,-18.45668232750184 -1022,7.0,5.0,-6.289308176100628,22.0125786163522 -1022,7.0,7.0,6.289308176100628,-22.0080786163522 -1022,8.0,8.0,0.0,-13.8986013986014 -1022,8.0,9.0,0.0,9.090909090909092 -1022,8.0,10.0,0.0,4.807692307692308 -1022,9.0,5.0,0.0,1.8561002591115965 -1022,9.0,8.0,0.0,9.090909090909092 -1022,9.0,9.0,13.462042814524237,-41.3837606675224 -1022,9.0,16.0,-3.956039125715353,10.317447719844054 -1022,9.0,19.0,-1.7848303152666305,3.98535828943083 -1022,9.0,20.0,-5.101853820159654,10.98071411292983 -1022,9.0,21.0,-2.619319553382597,5.400770303329455 -1022,10.0,8.0,0.0,4.807692307692308 -1022,10.0,10.0,0.0,-4.807692307692308 -1022,11.0,3.0,0.0,4.191255364806866 -1022,11.0,11.0,3.0953961826564296,-17.146383007183402 -1022,11.0,12.0,0.0,7.142857142857143 -1022,11.0,14.0,-3.0953961826564296,6.097275864326261 -1022,12.0,11.0,0.0,7.142857142857143 -1022,12.0,12.0,0.0,-7.142857142857143 -1022,13.0,13.0,2.4909522639994623,-2.250874059369649 -1022,13.0,14.0,-2.4909522639994623,2.250874059369649 -1022,14.0,11.0,-3.0953961826564296,6.097275864326261 -1022,14.0,13.0,-2.4909522639994623,2.250874059369649 -1022,14.0,14.0,9.365498545964757,-16.01163373210796 -1022,14.0,17.0,-1.8108011504072024,3.687418931630696 -1022,14.0,22.0,-1.9683489489016612,3.976064876781356 -1022,15.0,15.0,1.3190669363537617,-4.8407742721532125 -1022,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1022,16.0,9.0,-3.956039125715353,10.317447719844054 -1022,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1022,16.0,16.0,5.275106062069114,-15.158221991997266 -1022,17.0,14.0,-1.8108011504072024,3.687418931630696 -1022,17.0,17.0,4.886487584415919,-9.906177730909668 -1022,17.0,18.0,-3.0756864340087167,6.218758799278971 -1022,18.0,17.0,-3.0756864340087167,6.218758799278971 -1022,18.0,18.0,3.0756864340087167,-6.218758799278971 -1022,19.0,9.0,-1.7848303152666305,3.98535828943083 -1022,19.0,19.0,1.7848303152666305,-3.98535828943083 -1022,20.0,9.0,-5.101853820159654,10.98071411292983 -1022,20.0,20.0,21.876495189895888,-45.10843276170355 -1022,20.0,21.0,-16.774641369736234,34.127718648773715 -1022,21.0,9.0,-2.619319553382597,5.400770303329455 -1022,21.0,20.0,-16.774641369736234,34.127718648773715 -1022,21.0,21.0,21.93449907537439,-43.48289181517921 -1022,21.0,23.0,-2.5405381522555563,3.95440286307604 -1022,22.0,14.0,-1.9683489489016612,3.976064876781356 -1022,22.0,22.0,3.429754555384988,-6.965303617315433 -1022,22.0,23.0,-1.4614056064833263,2.989238740534077 -1022,23.0,21.0,-2.5405381522555563,3.95440286307604 -1022,23.0,22.0,-1.4614056064833263,2.989238740534077 -1022,23.0,23.0,5.311836702613133,-9.188263657315172 -1022,23.0,24.0,-1.3098929438742493,2.287622053705056 -1022,24.0,23.0,-1.3098929438742493,2.287622053705056 -1022,24.0,24.0,4.495715080321987,-7.864978761969621 -1022,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1022,24.0,26.0,-1.9692920169982515,3.760212661917064 -1022,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1022,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1022,26.0,24.0,-1.9692920169982515,3.760212661917064 -1022,26.0,26.0,3.652281470778589,-9.46044252232512 -1022,26.0,27.0,0.0,2.608731947574922 -1022,26.0,28.0,-0.99553355095268,1.881005840357816 -1022,26.0,29.0,-0.6874559028276572,1.293971494797717 -1022,27.0,5.0,-4.362844058012917,15.463571542897856 -1022,27.0,26.0,0.0,2.608731947574922 -1022,27.0,27.0,4.362844058012917,-18.15204256311988 -1022,28.0,26.0,-0.99553355095268,1.881005840357816 -1022,28.0,28.0,1.9075867579849564,-3.604364401207048 -1022,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1022,29.0,26.0,-0.6874559028276572,1.293971494797717 -1022,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1022,29.0,29.0,1.5995091098599337,-3.0173300556469496 diff --git a/examples/data/case30_ieee/raw/pf_node.csv b/examples/data/case30_ieee/raw/pf_node.csv deleted file mode 100644 index dcac221..0000000 --- a/examples/data/case30_ieee/raw/pf_node.csv +++ /dev/null @@ -1,30691 +0,0 @@ -scenario,bus,Pd,Qd,Pg,Qg,Vm,Va,PQ,PV,REF -0,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -0,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -0,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -0,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -0,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -0,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -0,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -0,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -0,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -0,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -0,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -0,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -0,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -0,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -0,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -0,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -0,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -0,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -0,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -0,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -0,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -0,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -0,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -0,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -0,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -0,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -0,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -0,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -0,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -0,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -1,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -1,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -1,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -1,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -1,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -1,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -1,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -1,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -1,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -1,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -1,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -1,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -1,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -1,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -1,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -1,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -1,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -1,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -1,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -1,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -1,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -1,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -1,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -1,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -1,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -1,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -1,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -1,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -1,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -1,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -2,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -2,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -2,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -2,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -2,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -2,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -2,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -2,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -2,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -2,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -2,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -2,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -2,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -2,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -2,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -2,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -2,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -2,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -2,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -2,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -2,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -2,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -2,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -2,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -2,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -2,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -2,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -2,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -2,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -2,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -3,0.0,0.0,0.0,166.85378583612885,0.2785656830463168,1.0,0.0,0.0,0.0,1.0 -3,1.0,12.2157536527011,12.7,0.0,0.0,0.9784854757740444,-3.8875839886906336,0.0,1.0,0.0 -3,2.0,1.3510510952296149,1.2,0.0,0.0,0.9765884650676998,-4.848976749532711,1.0,0.0,0.0 -3,3.0,4.278328468227114,1.6,0.0,0.0,0.9705239441800654,-5.956912441887878,1.0,0.0,0.0 -3,4.0,53.02875548776239,19.0,-2.3087547262295526e-10,27.65615702676783,0.967724693950446,-10.56866759415301,0.0,1.0,0.0 -3,5.0,0.0,0.0,0.0,0.0,0.9706167775810371,-6.968732773765852,1.0,0.0,0.0 -3,6.0,12.834985404681342,10.9,0.0,0.0,0.958348072375546,-7.450592192203251,1.0,0.0,0.0 -3,7.0,16.888138690370187,30.0,-3.240768832349293e-10,37.48756000114886,0.9720767198627198,-7.4521286141973215,0.0,1.0,0.0 -3,8.0,0.0,0.0,0.0,0.0,1.0202011321429303,-8.77246050511815,1.0,0.0,0.0 -3,9.0,3.265040146804903,2.0,0.0,0.0,1.014224200486333,-9.705763740889529,1.0,0.0,0.0 -3,10.0,0.0,0.0,-3.808387547072581e-10,20.281892681678848,1.0599995788768362,-8.772460505160119,0.0,1.0,0.0 -3,11.0,6.304905111071536,7.5,0.0,0.0,1.0241817718811388,-9.453470562284908,1.0,0.0,0.0 -3,12.0,0.0,0.0,-5.07758661507633e-10,15.981710270006529,1.045580782603483,-9.45347056232294,0.0,1.0,0.0 -3,13.0,3.490215329343172,1.6,0.0,0.0,1.0117889099479092,-9.935464634918576,1.0,0.0,0.0 -3,14.0,4.616091242034518,2.5,0.0,0.0,1.0071549332597731,-9.939660518057703,1.0,0.0,0.0 -3,15.0,1.9702828472098552,1.8,0.0,0.0,1.0138647995216927,-9.666363137255392,1.0,0.0,0.0 -3,16.0,5.066441607111056,5.8,0.0,0.0,1.0097178589866684,-9.793400671190405,1.0,0.0,0.0 -3,17.0,1.8014014603061534,0.9,0.0,0.0,1.000432310170185,-10.212095539161004,1.0,0.0,0.0 -3,18.0,5.347910585283892,3.4,0.0,0.0,0.9987638921333194,-10.273641733700623,1.0,0.0,0.0 -3,19.0,1.2384635039604803,0.7,0.0,0.0,1.002018971231569,-10.163818338918066,1.0,0.0,0.0 -3,20.0,9.851414236049276,11.2,0.0,0.0,0.9828998938114762,-10.253613029955856,1.0,0.0,0.0 -3,21.0,0.0,0.0,0.0,0.0,0.9867522764174392,-10.193017590833897,1.0,0.0,0.0 -3,22.0,1.8014014603061534,1.6,0.0,0.0,0.9937187235088748,-10.160961837122956,1.0,0.0,0.0 -3,23.0,4.897560220207354,6.7,0.0,0.0,0.9825825528531464,-10.307118792880493,1.0,0.0,0.0 -3,24.0,0.0,0.0,0.0,0.0,0.9790572626377432,-9.99311092502493,1.0,0.0,0.0 -3,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648016736771668,-10.092337219733787,1.0,0.0,0.0 -3,26.0,0.0,0.0,0.0,0.0,0.983975341515412,-9.707562098493318,1.0,0.0,0.0 -3,27.0,0.0,0.0,0.0,0.0,0.9687003173346048,-7.351156617847395,1.0,0.0,0.0 -3,28.0,1.3510510952296149,0.9,0.0,0.0,0.9771038372005122,-9.924048231325171,1.0,0.0,0.0 -3,29.0,5.967142337264132,1.9,0.0,0.0,0.9513532940964032,-11.53672921111894,1.0,0.0,0.0 -4,0.0,0.0,0.0,136.51147306833082,7.40975676372102e-05,1.0,0.0,0.0,0.0,1.0 -4,1.0,12.2157536527011,12.7,37.43800808908671,36.60425556962919,0.9785582239522614,-18.72674660256231,0.0,1.0,0.0 -4,2.0,1.3510510952296149,1.2,0.0,0.0,0.9615251486812768,-13.50804346440142,1.0,0.0,0.0 -4,3.0,4.278328468227114,1.6,0.0,0.0,0.9565480250005844,-16.729547789702796,1.0,0.0,0.0 -4,4.0,53.02875548776239,19.0,-4.0116656931170135e-10,32.41327183213716,0.9608465411828114,-22.68628719519075,0.0,1.0,0.0 -4,5.0,0.0,0.0,0.0,0.0,0.9566736371450356,-18.91637044468913,1.0,0.0,0.0 -4,6.0,12.834985404681342,10.9,0.0,0.0,0.9518737503317084,-20.74611518711908,1.0,0.0,0.0 -4,7.0,16.888138690370187,30.0,-2.9567257550732648e-08,39.04718318913718,0.966692234211542,-22.51564693541758,0.0,1.0,0.0 -4,8.0,0.0,0.0,0.0,0.0,0.9802482418409904,-20.640180227309557,1.0,0.0,0.0 -4,9.0,3.265040146804903,2.0,0.0,0.0,0.9816921319646656,-21.54846284244307,1.0,0.0,0.0 -4,10.0,0.0,0.0,0.0,0.0,0.9802482418409904,-20.640180227309557,0.0,1.0,0.0 -4,11.0,6.304905111071536,7.5,0.0,0.0,1.0195913368376988,-20.704473740917276,1.0,0.0,0.0 -4,12.0,0.0,0.0,4.831053190283001e-11,23.999926904145564,1.051544245901454,-20.704473740913663,0.0,1.0,0.0 -4,13.0,3.490215329343172,1.6,0.0,0.0,1.0080487419089907,-21.174437121280786,1.0,0.0,0.0 -4,14.0,4.616091242034518,2.5,0.0,0.0,1.0043787771973738,-21.18311408404313,1.0,0.0,0.0 -4,15.0,1.9702828472098552,1.8,0.0,0.0,0.9966903150512152,-21.11144954593379,1.0,0.0,0.0 -4,16.0,5.066441607111056,5.8,0.0,0.0,0.9819923484043838,-21.53555043497685,1.0,0.0,0.0 -4,17.0,1.8014014603061534,0.9,0.0,0.0,0.9869726375710568,-21.668865124074777,1.0,0.0,0.0 -4,18.0,5.347910585283892,3.4,0.0,0.0,0.9790229702636478,-21.85833331542048,1.0,0.0,0.0 -4,19.0,1.2384635039604803,0.7,0.0,0.0,0.9790444347772956,-21.80973273337743,1.0,0.0,0.0 -4,20.0,9.851414236049276,11.2,0.0,0.0,0.9696948889041496,-21.822564144440143,1.0,0.0,0.0 -4,21.0,0.0,0.0,0.0,0.0,0.9697510288876648,-21.843456752048823,1.0,0.0,0.0 -4,22.0,1.8014014603061534,1.6,0.0,0.0,0.9469347739032434,-22.467632513748825,1.0,0.0,0.0 -4,23.0,4.897560220207354,6.7,0.0,0.0,0.9540123902173542,-22.29310513911952,1.0,0.0,0.0 -4,24.0,0.0,0.0,0.0,0.0,0.9551818609776734,-22.325266490276118,1.0,0.0,0.0 -4,25.0,1.9702828472098552,2.3,0.0,0.0,0.9405587565480044,-22.42959450477944,1.0,0.0,0.0 -4,26.0,0.0,0.0,0.0,0.0,0.9633173663272716,-22.243153389864293,1.0,0.0,0.0 -4,27.0,0.0,0.0,0.0,0.0,0.9558802405175504,-19.98486104797536,1.0,0.0,0.0 -4,28.0,1.3510510952296149,0.9,0.0,0.0,0.9489350850660884,-22.934817070060397,1.0,0.0,0.0 -4,29.0,5.967142337264132,1.9,0.0,0.0,0.9410672060366052,-23.4532081986312,1.0,0.0,0.0 -5,0.0,0.0,0.0,166.59865827582132,0.0023873535256235,1.0,0.0,0.0,0.0,1.0 -5,1.0,12.2157536527011,12.7,2.006628400883761e-06,10.743391401441684,0.9796743251623398,-3.825183477261709,0.0,1.0,0.0 -5,2.0,1.3510510952296149,1.2,0.0,0.0,0.9740055166223514,-5.01981744472546,1.0,0.0,0.0 -5,3.0,4.278328468227114,1.6,0.0,0.0,0.9673674585529256,-6.17030619856788,1.0,0.0,0.0 -5,4.0,53.02875548776239,19.0,1.1820284805049807e-09,24.362900875399504,0.9589618229103538,-9.211414124628464,0.0,1.0,0.0 -5,5.0,0.0,0.0,0.0,0.0,0.9659860222556492,-7.322949682624864,1.0,0.0,0.0 -5,6.0,12.834985404681342,10.9,0.0,0.0,0.9565530552441156,-8.384035492716578,1.0,0.0,0.0 -5,7.0,16.888138690370187,30.0,1.464157570359949e-09,29.992319510408805,0.9645338779501051,-7.7579688857823745,0.0,1.0,0.0 -5,8.0,0.0,0.0,0.0,0.0,1.0155107405375816,-9.260851542594066,1.0,0.0,0.0 -5,9.0,3.265040146804903,2.0,0.0,0.0,1.007136600079906,-10.265800951784868,1.0,0.0,0.0 -5,10.0,0.0,0.0,2.943134493535854e-09,22.671501893677192,1.0599982878111034,-9.260851542268226,0.0,1.0,0.0 -5,11.0,6.304905111071536,7.5,0.0,0.0,1.0202316846745525,-9.562634820261795,1.0,0.0,0.0 -5,12.0,0.0,0.0,1.5329267571385484e-09,11.521385847452333,1.0358040700824884,-9.56263482014544,0.0,1.0,0.0 -5,13.0,3.490215329343172,1.6,0.0,0.0,1.010477754829478,-10.00621320480483,1.0,0.0,0.0 -5,14.0,4.616091242034518,2.5,0.0,0.0,1.008699398744522,-10.029890434819242,1.0,0.0,0.0 -5,15.0,1.9702828472098552,1.8,0.0,0.0,1.0082203483824266,-9.962828898280678,1.0,0.0,0.0 -5,16.0,5.066441607111056,5.8,0.0,0.0,1.0031480946691849,-10.274235527134996,1.0,0.0,0.0 -5,17.0,1.8014014603061534,0.9,0.0,0.0,0.9988768916848428,-10.466838923324824,1.0,0.0,0.0 -5,18.0,5.347910585283892,3.4,0.0,0.0,0.9953856512768058,-10.627104644722962,1.0,0.0,0.0 -5,19.0,1.2384635039604803,0.7,0.0,0.0,0.9976898243708476,-10.56816203329806,1.0,0.0,0.0 -5,20.0,9.851414236049276,11.2,0.0,0.0,0.9953977534849722,-10.52551828021886,1.0,0.0,0.0 -5,21.0,0.0,0.0,0.0,0.0,0.9954359584791828,-10.545145023047374,1.0,0.0,0.0 -5,22.0,1.8014014603061534,1.6,0.0,0.0,0.9729997022850112,-11.132836636047696,1.0,0.0,0.0 -5,23.0,4.897560220207354,6.7,0.0,0.0,0.9798874957811452,-10.967469713145803,1.0,0.0,0.0 -5,24.0,0.0,0.0,0.0,0.0,0.9647378768229868,-9.976020400275734,1.0,0.0,0.0 -5,25.0,1.9702828472098552,2.3,0.0,0.0,0.9502641549708448,-10.078260030275509,1.0,0.0,0.0 -5,26.0,0.0,0.0,0.0,0.0,0.9720598626770992,-9.877665004615231,1.0,0.0,0.0 -5,27.0,0.0,0.0,0.0,0.0,0.9628079158788848,-7.6638342895323985,1.0,0.0,0.0 -5,28.0,1.3510510952296149,0.9,0.0,0.0,0.9578150996072764,-10.556761937463792,1.0,0.0,0.0 -5,29.0,5.967142337264132,1.9,0.0,0.0,0.9500226385319364,-11.065515840960783,1.0,0.0,0.0 -6,0.0,0.0,0.0,166.76074586442078,0.0065535498322333,1.0,0.0,0.0,0.0,1.0 -6,1.0,12.2157536527011,12.7,3.222887695952852e-06,19.39987006191287,0.981229482414347,-3.8553615034928055,0.0,1.0,0.0 -6,2.0,1.3510510952296149,1.2,0.0,0.0,0.9694576783687822,-4.969565861872128,1.0,0.0,0.0 -6,3.0,4.278328468227114,1.6,0.0,0.0,0.9617553505481242,-6.110192574137797,1.0,0.0,0.0 -6,4.0,53.02875548776239,19.0,2.772286788932345e-09,26.103820764974927,0.960510807096923,-9.22812834018723,0.0,1.0,0.0 -6,5.0,0.0,0.0,0.0,0.0,0.9639229745222092,-7.26184023613507,1.0,0.0,0.0 -6,6.0,12.834985404681342,10.9,0.0,0.0,0.9559697203683843,-8.353440021421985,1.0,0.0,0.0 -6,7.0,16.888138690370187,30.0,2.917365314573529e-09,39.96743168784079,0.9662587618520276,-7.771901329814907,0.0,1.0,0.0 -6,8.0,0.0,0.0,0.0,0.0,1.0017455207144326,-9.807050925721851,1.0,0.0,0.0 -6,9.0,3.265040146804903,2.0,0.0,0.0,0.994545764801076,-11.140658838416597,1.0,0.0,0.0 -6,10.0,0.0,0.0,4.910472036818109e-09,15.512088517178547,1.03298051841341,-9.807050925156318,0.0,1.0,0.0 -6,11.0,6.304905111071536,7.5,0.0,0.0,0.9799523680163048,-10.077152726627675,1.0,0.0,0.0 -6,12.0,0.0,0.0,0.0,0.0,0.9799523680163048,-10.077152726627675,0.0,1.0,0.0 -6,13.0,3.490215329343172,1.6,0.0,0.0,0.9713585391385384,-10.623099320614338,1.0,0.0,0.0 -6,14.0,4.616091242034518,2.5,0.0,0.0,0.9705868137197032,-10.749593779072049,1.0,0.0,0.0 -6,15.0,1.9702828472098552,1.8,0.0,0.0,0.9568949399069842,-10.489478379609244,1.0,0.0,0.0 -6,16.0,5.066441607111056,5.8,0.0,0.0,0.9422134072428144,-10.915487663777975,1.0,0.0,0.0 -6,17.0,1.8014014603061534,0.9,0.0,0.0,0.9694771642606758,-11.26860125490358,1.0,0.0,0.0 -6,18.0,5.347910585283892,3.4,0.0,0.0,0.9712216897654324,-11.468978694447427,1.0,0.0,0.0 -6,19.0,1.2384635039604803,0.7,0.0,0.0,0.9763901684786966,-11.424277746410544,1.0,0.0,0.0 -6,20.0,9.851414236049276,11.2,0.0,0.0,0.983092929761639,-11.287118402703916,1.0,0.0,0.0 -6,21.0,0.0,0.0,0.0,0.0,0.9832816234115972,-11.268825163277311,1.0,0.0,0.0 -6,22.0,1.8014014603061534,1.6,0.0,0.0,0.9675498530395988,-11.012120241435062,1.0,0.0,0.0 -6,23.0,4.897560220207354,6.7,0.0,0.0,0.9704709439639588,-11.195473397526223,1.0,0.0,0.0 -6,24.0,0.0,0.0,0.0,0.0,0.9695156887809704,-10.698963370512478,1.0,0.0,0.0 -6,25.0,1.9702828472098552,2.3,0.0,0.0,0.9551154989065952,-10.800182405101156,1.0,0.0,0.0 -6,26.0,0.0,0.0,0.0,0.0,0.9760566435459564,-10.296390159498916,1.0,0.0,0.0 -6,27.0,0.0,0.0,0.0,0.0,0.9619211540013916,-7.678958856432709,1.0,0.0,0.0 -6,28.0,1.3510510952296149,0.9,0.0,0.0,0.9618738511545128,-10.96985639621025,1.0,0.0,0.0 -6,29.0,5.967142337264132,1.9,0.0,0.0,0.9541153740332032,-11.474294946540054,1.0,0.0,0.0 -7,0.0,0.0,0.0,166.71582141681657,0.0139513770808896,1.0,0.0,0.0,0.0,1.0 -7,1.0,12.2157536527011,12.7,1.521137972142614e-05,11.174389614178004,0.979670830236552,-3.803473397313178,0.0,1.0,0.0 -7,2.0,1.3510510952296149,1.2,0.0,0.0,0.9740407255704892,-5.092692385557446,1.0,0.0,0.0 -7,3.0,4.278328468227114,1.6,0.0,0.0,0.9674228843608677,-6.260799860394815,1.0,0.0,0.0 -7,4.0,53.02875548776239,19.0,8.704763510973557e-09,24.617409747113868,0.9587172780315136,-9.130187049766564,0.0,1.0,0.0 -7,5.0,0.0,0.0,0.0,0.0,0.9650506587583624,-7.161567677992541,1.0,0.0,0.0 -7,6.0,12.834985404681342,10.9,0.0,0.0,0.9559033185395082,-8.255348274619339,1.0,0.0,0.0 -7,7.0,16.888138690370187,30.0,5.006557375827942e-09,33.354947882224934,0.9638400744291742,-7.823562419680005,0.0,1.0,0.0 -7,8.0,0.0,0.0,0.0,0.0,1.0346103904077166,-12.652919444940771,1.0,0.0,0.0 -7,9.0,3.265040146804903,2.0,0.0,0.0,1.021190999721979,-12.65291944356678,1.0,0.0,0.0 -7,10.0,0.0,0.0,-2.3033240570934937e-08,12.931232740938595,1.0599852382182058,-12.652919447443796,0.0,1.0,0.0 -7,11.0,6.304905111071536,7.5,0.0,0.0,1.0351236564912951,-11.004598883086937,1.0,0.0,0.0 -7,12.0,0.0,0.0,7.503742502845934e-09,18.82343094475297,1.0599851402259046,-11.004598882538362,0.0,1.0,0.0 -7,13.0,3.490215329343172,1.6,0.0,0.0,1.0236247096636142,-11.628366177357377,1.0,0.0,0.0 -7,14.0,4.616091242034518,2.5,0.0,0.0,1.0187111714044106,-11.800130535995388,1.0,0.0,0.0 -7,15.0,1.9702828472098552,1.8,0.0,0.0,1.022124888158393,-11.803482164143745,1.0,0.0,0.0 -7,16.0,5.066441607111056,5.8,0.0,0.0,1.01740814510383,-12.48777511657408,1.0,0.0,0.0 -7,17.0,1.8014014603061534,0.9,0.0,0.0,1.0103474591049264,-12.446242512535592,1.0,0.0,0.0 -7,18.0,5.347910585283892,3.4,0.0,0.0,1.0077171314006197,-12.733589241916736,1.0,0.0,0.0 -7,19.0,1.2384635039604803,0.7,0.0,0.0,1.0104235409322766,-12.7452144923836,1.0,0.0,0.0 -7,20.0,9.851414236049276,11.2,0.0,0.0,1.0094790480901403,-12.84639977514625,1.0,0.0,0.0 -7,21.0,0.0,0.0,0.0,0.0,1.012764158359262,-12.75469527770234,1.0,0.0,0.0 -7,22.0,1.8014014603061534,1.6,0.0,0.0,1.00855575504529,-12.294632046490944,1.0,0.0,0.0 -7,23.0,4.897560220207354,6.7,0.0,0.0,1.0018056826388244,-12.812886248169802,1.0,0.0,0.0 -7,24.0,0.0,0.0,0.0,0.0,0.9902382510922452,-12.937774898889964,1.0,0.0,0.0 -7,25.0,1.9702828472098552,2.3,0.0,0.0,0.976148401881846,-13.034740427656365,1.0,0.0,0.0 -7,26.0,0.0,0.0,0.0,0.0,0.9750170390584232,-10.444314499475407,1.0,0.0,0.0 -7,27.0,0.0,0.0,0.0,0.0,0.956050805418902,-8.694967370053915,1.0,0.0,0.0 -7,28.0,1.3510510952296149,0.9,0.0,0.0,0.9608181809724158,-11.119238545286722,1.0,0.0,0.0 -7,29.0,5.967142337264132,1.9,0.0,0.0,0.9530508937516956,-11.62479419474297,1.0,0.0,0.0 -8,0.0,0.0,0.0,166.75643089058082,0.000841523801931,1.0,0.0,0.0,0.0,1.0 -8,1.0,12.2157536527011,12.7,1.00297680656185e-06,10.155745698773272,0.9796918010361526,-3.82708407759797,0.0,1.0,0.0 -8,2.0,1.3510510952296149,1.2,0.0,0.0,0.9739036981269972,-5.030321913219034,1.0,0.0,0.0 -8,3.0,4.278328468227114,1.6,0.0,0.0,0.9672436988829946,-6.183406266396783,1.0,0.0,0.0 -8,4.0,53.02875548776239,19.0,3.7129797814245866e-10,24.48085798065378,0.9595119565189828,-9.214348543609193,0.0,1.0,0.0 -8,5.0,0.0,0.0,0.0,0.0,0.9668065677074176,-7.331390114189063,1.0,0.0,0.0 -8,6.0,12.834985404681342,10.9,0.0,0.0,0.9572691725263892,-8.38995169072919,1.0,0.0,0.0 -8,7.0,16.888138690370187,30.0,6.498304806663645e-10,30.85327119155708,0.9657732478010876,-7.776743143458487,0.0,1.0,0.0 -8,8.0,0.0,0.0,0.0,0.0,1.0166299386219544,-9.14570158350094,1.0,0.0,0.0 -8,9.0,3.265040146804903,2.0,0.0,0.0,1.0089501524805178,-10.085682687756352,1.0,0.0,0.0 -8,10.0,0.0,0.0,1.4867026092115427e-09,22.091017533792588,1.0599792009735969,-9.145701583336525,0.0,1.0,0.0 -8,11.0,6.304905111071536,7.5,0.0,0.0,1.015189002459253,-9.725260619436192,1.0,0.0,0.0 -8,12.0,0.0,0.0,8.698107232356292e-10,12.012664257777026,1.0314932582804914,-9.725260619369564,0.0,1.0,0.0 -8,13.0,3.490215329343172,1.6,0.0,0.0,1.0031834204085912,-10.222747991598627,1.0,0.0,0.0 -8,14.0,4.616091242034518,2.5,0.0,0.0,0.9989412213110994,-10.245237598111466,1.0,0.0,0.0 -8,15.0,1.9702828472098552,1.8,0.0,0.0,1.0063664658370846,-9.993992344666433,1.0,0.0,0.0 -8,16.0,5.066441607111056,5.8,0.0,0.0,1.003743319137223,-10.155530676374935,1.0,0.0,0.0 -8,17.0,1.8014014603061534,0.9,0.0,0.0,0.9931834246169234,-10.549288172382232,1.0,0.0,0.0 -8,18.0,5.347910585283892,3.4,0.0,0.0,0.9921042792673898,-10.628116143796603,1.0,0.0,0.0 -8,19.0,1.2384635039604803,0.7,0.0,0.0,0.9956972058347668,-10.525569771895649,1.0,0.0,0.0 -8,20.0,9.851414236049276,11.2,0.0,0.0,0.9770328240637156,-10.628798291406788,1.0,0.0,0.0 -8,21.0,0.0,0.0,0.0,0.0,0.9809083468368094,-10.567475801280498,1.0,0.0,0.0 -8,22.0,1.8014014603061534,1.6,0.0,0.0,0.9862772037195862,-10.48997797020986,1.0,0.0,0.0 -8,23.0,4.897560220207354,6.7,0.0,0.0,0.9762274859280804,-10.66505677488103,1.0,0.0,0.0 -8,24.0,0.0,0.0,0.0,0.0,0.9733910219579354,-10.363543180170632,1.0,0.0,0.0 -8,25.0,1.9702828472098552,2.3,0.0,0.0,0.9590499198222476,-10.463945646847622,1.0,0.0,0.0 -8,26.0,0.0,0.0,0.0,0.0,0.9787843048463056,-10.08397108846402,1.0,0.0,0.0 -8,27.0,0.0,0.0,0.0,0.0,0.9642353370668229,-7.706692557192071,1.0,0.0,0.0 -8,28.0,1.3510510952296149,0.9,0.0,0.0,0.9646434875220504,-10.75363490057616,1.0,0.0,0.0 -8,29.0,5.967142337264132,1.9,0.0,0.0,0.956908028280289,-11.25516023518735,1.0,0.0,0.0 -9,0.0,0.0,0.0,138.0000442701111,0.0006822769128334,1.0,0.0,0.0,0.0,1.0 -9,1.0,12.2157536527011,12.7,30.42964689106324,12.188798671863571,0.9751780483395672,-4.637417715520824,0.0,1.0,0.0 -9,2.0,1.3510510952296149,1.2,0.0,0.0,0.9500749550302288,-9.803754082213905,1.0,0.0,0.0 -9,3.0,4.278328468227114,1.6,0.0,0.0,0.9505902263189994,-9.778143447003057,1.0,0.0,0.0 -9,4.0,53.02875548776239,19.0,1.9913570584060619e-10,26.4635510389042,0.9528024951493538,-11.163317432056148,0.0,1.0,0.0 -9,5.0,0.0,0.0,0.0,0.0,0.9535546993444252,-10.280737417201562,1.0,0.0,0.0 -9,6.0,12.834985404681342,10.9,0.0,0.0,0.9464325754494688,-10.934020320429802,1.0,0.0,0.0 -9,7.0,16.888138690370187,30.0,6.021628926535452e-11,30.27274066270189,0.9523666990512218,-10.734069097982111,0.0,1.0,0.0 -9,8.0,0.0,0.0,0.0,0.0,1.0067719270183604,-12.2003027193894,1.0,0.0,0.0 -9,9.0,3.265040146804903,2.0,0.0,0.0,0.9991640538505466,-13.190775578478934,1.0,0.0,0.0 -9,10.0,0.0,0.0,-3.4443859412731964e-10,23.801853832397303,1.0537542803929305,-12.200302719428096,0.0,1.0,0.0 -9,11.0,6.304905111071536,7.5,0.0,0.0,1.003379398568761,-13.354322789676262,1.0,0.0,0.0 -9,12.0,0.0,0.0,-2.0350926215456297e-11,16.913923642204782,1.0264487368122144,-13.354322789677852,0.0,1.0,0.0 -9,13.0,3.490215329343172,1.6,0.0,0.0,0.9898891128725404,-13.887712645821631,1.0,0.0,0.0 -9,14.0,4.616091242034518,2.5,0.0,0.0,0.9841475591051242,-13.90346191285745,1.0,0.0,0.0 -9,15.0,1.9702828472098552,1.8,0.0,0.0,0.9957071292086176,-13.40503634439104,1.0,0.0,0.0 -9,16.0,5.066441607111056,5.8,0.0,0.0,0.9935231643402288,-13.356806447486507,1.0,0.0,0.0 -9,17.0,1.8014014603061534,0.9,0.0,0.0,0.9662601094902338,-14.566712737888166,1.0,0.0,0.0 -9,18.0,5.347910585283892,3.4,0.0,0.0,0.9580957547486204,-14.859880236718633,1.0,0.0,0.0 -9,19.0,1.2384635039604803,0.7,0.0,0.0,0.996530840287467,-13.302017789725651,1.0,0.0,0.0 -9,20.0,9.851414236049276,11.2,0.0,0.0,0.9878445922762528,-13.414972873442752,1.0,0.0,0.0 -9,21.0,0.0,0.0,0.0,0.0,0.9880490422323536,-13.422356770860915,1.0,0.0,0.0 -9,22.0,1.8014014603061534,1.6,0.0,0.0,0.9772406732205496,-13.88406739305334,1.0,0.0,0.0 -9,23.0,4.897560220207354,6.7,0.0,0.0,0.9748883206036408,-13.695152867337487,1.0,0.0,0.0 -9,24.0,0.0,0.0,0.0,0.0,0.9675240295097244,-13.330106725601798,1.0,0.0,0.0 -9,25.0,1.9702828472098552,2.3,0.0,0.0,0.9530932798208092,-13.43174932721419,1.0,0.0,0.0 -9,26.0,0.0,0.0,0.0,0.0,0.9701346317447612,-13.014310162724646,1.0,0.0,0.0 -9,27.0,0.0,0.0,0.0,0.0,0.9515050137153092,-10.664926884621332,1.0,0.0,0.0 -9,28.0,1.3510510952296149,0.9,0.0,0.0,0.955859818168018,-13.696144747373364,1.0,0.0,0.0 -9,29.0,5.967142337264132,1.9,0.0,0.0,0.9480508772961312,-14.206997391719854,1.0,0.0,0.0 -10,0.0,0.0,0.0,166.67635585570696,0.0021883699043101,1.0,0.0,0.0,0.0,1.0 -10,1.0,12.2157536527011,12.7,2.0070542407918613e-06,10.91005043874324,0.9797627763900923,-3.830032221503128,0.0,1.0,0.0 -10,2.0,1.3510510952296149,1.2,0.0,0.0,0.9737151351172209,-5.014898491153724,1.0,0.0,0.0 -10,3.0,4.278328468227114,1.6,0.0,0.0,0.9670088394229543,-6.164346884885416,1.0,0.0,0.0 -10,4.0,53.02875548776239,19.0,-6.71487619183057e-11,24.630317560454017,0.959406912728614,-9.223722640056424,0.0,1.0,0.0 -10,5.0,0.0,0.0,0.0,0.0,0.9662196904807692,-7.337847549991205,1.0,0.0,0.0 -10,6.0,12.834985404681342,10.9,0.0,0.0,0.9568758443330436,-8.397608730580783,1.0,0.0,0.0 -10,7.0,16.888138690370187,30.0,-8.619443319693531e-11,32.00691382301841,0.9655551109592856,-7.792326804828993,0.0,1.0,0.0 -10,8.0,0.0,0.0,0.0,0.0,1.014308228116349,-9.224302318792652,1.0,0.0,0.0 -10,9.0,3.265040146804903,2.0,0.0,0.0,1.0045117045407894,-10.205373520936387,1.0,0.0,0.0 -10,10.0,0.0,0.0,-1.50564427906716e-10,23.285224287852238,1.0599999894383427,-9.224302318809343,0.0,1.0,0.0 -10,11.0,6.304905111071536,7.5,0.0,0.0,1.015069552844319,-9.514977809387382,1.0,0.0,0.0 -10,12.0,0.0,0.0,-8.158595379837923e-11,8.823945868406296,1.0270971629491867,-9.51497780939366,0.0,1.0,0.0 -10,13.0,3.490215329343172,1.6,0.0,0.0,1.0054506366747908,-9.96001551325367,1.0,0.0,0.0 -10,14.0,4.616091242034518,2.5,0.0,0.0,1.0038630182167796,-9.98511111704383,1.0,0.0,0.0 -10,15.0,1.9702828472098552,1.8,0.0,0.0,1.0041423816509625,-9.916205130511278,1.0,0.0,0.0 -10,16.0,5.066441607111056,5.8,0.0,0.0,1.0000509460747042,-10.21705551965235,1.0,0.0,0.0 -10,17.0,1.8014014603061534,0.9,0.0,0.0,0.9947843422904652,-10.4199281471666,1.0,0.0,0.0 -10,18.0,5.347910585283892,3.4,0.0,0.0,0.9917428206641662,-10.577898145984689,1.0,0.0,0.0 -10,19.0,1.2384635039604803,0.7,0.0,0.0,0.9942995284600572,-10.516727034129008,1.0,0.0,0.0 -10,20.0,9.851414236049276,11.2,0.0,0.0,0.9866220315805598,-10.54490765915967,1.0,0.0,0.0 -10,21.0,0.0,0.0,0.0,0.0,0.9847289567880596,-10.587419609894267,1.0,0.0,0.0 -10,22.0,1.8014014603061534,1.6,0.0,0.0,0.9618810749320988,-11.001373511159532,1.0,0.0,0.0 -10,23.0,4.897560220207354,6.7,0.0,0.0,0.9688485814807076,-10.83218911340844,1.0,0.0,0.0 -10,24.0,0.0,0.0,0.0,0.0,0.9685797743207302,-10.505217131009688,1.0,0.0,0.0 -10,25.0,1.9702828472098552,2.3,0.0,0.0,0.9541652402776308,-10.60663487667191,1.0,0.0,0.0 -10,26.0,0.0,0.0,0.0,0.0,0.9755975757277808,-10.206445088487497,1.0,0.0,0.0 -10,27.0,0.0,0.0,0.0,0.0,0.9633862207803722,-7.722345815307735,1.0,0.0,0.0 -10,28.0,1.3510510952296149,0.9,0.0,0.0,0.9614076936832944,-10.8805544776064,1.0,0.0,0.0 -10,29.0,5.967142337264132,1.9,0.0,0.0,0.9536453287526508,-11.385485852751405,1.0,0.0,0.0 -11,0.0,0.0,0.0,112.11089332380024,2.2703581237237813e-06,1.0,0.0,0.0,0.0,1.0 -11,1.0,12.2157536527011,12.7,52.7923976089004,14.066851480023573,0.9860967572745866,-2.2569983031477627,0.0,1.0,0.0 -11,2.0,1.3510510952296149,1.2,0.0,0.0,0.9795150892163816,-4.171616618744915,1.0,0.0,0.0 -11,3.0,4.278328468227114,1.6,0.0,0.0,0.9740512772440684,-5.115326693429485,1.0,0.0,0.0 -11,4.0,53.02875548776239,19.0,0.0,0.0,0.9400000007768172,-7.409216962182934,0.0,1.0,0.0 -11,5.0,0.0,0.0,0.0,0.0,0.9728614818208876,-6.123126075305201,1.0,0.0,0.0 -11,6.0,12.834985404681342,10.9,0.0,0.0,0.95274959524715,-6.956296779391119,1.0,0.0,0.0 -11,7.0,16.888138690370187,30.0,-5.296727826849876e-09,39.99999469367812,0.9753758960735872,-6.617894786141676,0.0,1.0,0.0 -11,8.0,0.0,0.0,0.0,0.0,1.0221615626865217,-7.939565237632799,1.0,0.0,0.0 -11,9.0,3.265040146804903,2.0,0.0,0.0,1.0170505822968634,-8.87899975888732,1.0,0.0,0.0 -11,10.0,0.0,0.0,-1.2859802754126566e-08,19.283042682416053,1.059999986543683,-7.939565239047274,0.0,1.0,0.0 -11,11.0,6.304905111071536,7.5,0.0,0.0,1.0338098899105663,-8.59571211477096,1.0,0.0,0.0 -11,12.0,0.0,0.0,-1.256875855071313e-08,19.82963539338969,1.059999975009849,-8.59571211569098,0.0,1.0,0.0 -11,13.0,3.490215329343172,1.6,0.0,0.0,1.0215421071732325,-9.055535130405932,1.0,0.0,0.0 -11,14.0,4.616091242034518,2.5,0.0,0.0,1.017050293659882,-9.04679005595581,1.0,0.0,0.0 -11,15.0,1.9702828472098552,1.8,0.0,0.0,1.0205675404195418,-8.806304754827293,1.0,0.0,0.0 -11,16.0,5.066441607111056,5.8,0.0,0.0,1.013783535685027,-8.960090093958684,1.0,0.0,0.0 -11,17.0,1.8014014603061534,0.9,0.0,0.0,1.0078968968112865,-9.33649203135728,1.0,0.0,0.0 -11,18.0,5.347910585283892,3.4,0.0,0.0,1.004772647221947,-9.410116176222,1.0,0.0,0.0 -11,19.0,1.2384635039604803,0.7,0.0,0.0,1.0072345030988938,-9.308131917572643,1.0,0.0,0.0 -11,20.0,9.851414236049276,11.2,0.0,0.0,1.0068321026774605,-9.067181129187109,1.0,0.0,0.0 -11,21.0,0.0,0.0,0.0,0.0,1.007318020401021,-9.065665112944878,1.0,0.0,0.0 -11,22.0,1.8014014603061534,1.6,0.0,0.0,1.0062016484884253,-9.191494769069802,1.0,0.0,0.0 -11,23.0,4.897560220207354,6.7,0.0,0.0,0.9984146753932032,-9.235212878935108,1.0,0.0,0.0 -11,24.0,0.0,0.0,0.0,0.0,0.9901869773529112,-8.937287149487327,1.0,0.0,0.0 -11,25.0,1.9702828472098552,2.3,0.0,0.0,0.9760963769941244,-9.034262865642972,1.0,0.0,0.0 -11,26.0,0.0,0.0,0.0,0.0,0.9921056926800048,-8.66843459435862,1.0,0.0,0.0 -11,27.0,0.0,0.0,0.0,0.0,0.9718883450360946,-6.4971426634527445,1.0,0.0,0.0 -11,28.0,1.3510510952296149,0.9,0.0,0.0,0.9781662536213798,-9.319985173096388,1.0,0.0,0.0 -11,29.0,5.967142337264132,1.9,0.0,0.0,0.9705412160702164,-9.807643662475334,1.0,0.0,0.0 -12,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -12,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -12,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -12,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -12,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -12,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -12,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -12,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -12,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -12,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -12,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -12,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -12,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -12,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -12,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -12,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -12,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -12,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -12,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -12,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -12,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -12,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -12,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -12,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -12,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -12,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -12,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -12,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -12,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -12,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -13,0.0,0.0,0.0,170.99967019388967,0.000620093572401,1.0,0.0,0.0,0.0,1.0 -13,1.0,12.2157536527011,12.7,1.851299330296021e-06,1.462846896273554,0.9801792738605214,-3.550445908463533,0.0,1.0,0.0 -13,2.0,1.3510510952296149,1.2,0.0,0.0,0.9725028653083636,-6.243221184759641,1.0,0.0,0.0 -13,3.0,4.278328468227114,1.6,0.0,0.0,0.9657803351665016,-7.690939487103576,1.0,0.0,0.0 -13,4.0,53.02875548776239,19.0,-3.34551461456959e-09,35.307297753702784,0.9400007994411184,-17.51089537108292,0.0,1.0,0.0 -13,5.0,0.0,0.0,0.0,0.0,0.9650664650773144,-9.50590820481782,1.0,0.0,0.0 -13,6.0,12.834985404681342,10.9,0.0,0.0,0.947597872057358,-13.040418477905993,1.0,0.0,0.0 -13,7.0,16.888138690370187,30.0,9.761927536991442e-10,39.50374025194623,0.967354083109526,-10.003940497342182,0.0,1.0,0.0 -13,8.0,0.0,0.0,0.0,0.0,1.016189326323007,-11.220029261103535,1.0,0.0,0.0 -13,9.0,3.265040146804903,2.0,0.0,0.0,1.008932125346311,-12.10653142700457,1.0,0.0,0.0 -13,10.0,0.0,0.0,1.270219523615329e-09,22.32433853657736,1.0599957511195568,-11.220029260963,0.0,1.0,0.0 -13,11.0,6.304905111071536,7.5,0.0,0.0,1.021982848114055,-11.503176482343951,1.0,0.0,0.0 -13,12.0,0.0,0.0,6.780457265036478e-11,16.713214174169625,1.0443869014503648,-11.503176482338858,0.0,1.0,0.0 -13,13.0,3.490215329343172,1.6,0.0,0.0,1.0098612475929098,-12.016652529261666,1.0,0.0,0.0 -13,14.0,4.616091242034518,2.5,0.0,0.0,1.005300886232102,-12.056779536412323,1.0,0.0,0.0 -13,15.0,1.9702828472098552,1.8,0.0,0.0,1.0100696923177992,-11.860432604811557,1.0,0.0,0.0 -13,16.0,5.066441607111056,5.8,0.0,0.0,1.0049480337728274,-12.132416376367564,1.0,0.0,0.0 -13,17.0,1.8014014603061534,0.9,0.0,0.0,0.9973142887984948,-12.430584233804888,1.0,0.0,0.0 -13,18.0,5.347910585283892,3.4,0.0,0.0,0.9949093097733238,-12.552281788954106,1.0,0.0,0.0 -13,19.0,1.2384635039604803,0.7,0.0,0.0,0.9977895189668649,-12.472953860943464,1.0,0.0,0.0 -13,20.0,9.851414236049276,11.2,0.0,0.0,0.9941362058572436,-12.3716023715276,1.0,0.0,0.0 -13,21.0,0.0,0.0,0.0,0.0,0.993205523380634,-12.391848912938702,1.0,0.0,0.0 -13,22.0,1.8014014603061534,1.6,0.0,0.0,0.9938643293488844,-12.313510022949062,1.0,0.0,0.0 -13,23.0,4.897560220207354,6.7,0.0,0.0,0.9854033028550604,-12.506140537277314,1.0,0.0,0.0 -13,24.0,0.0,0.0,0.0,0.0,0.978578721383886,-12.284653193261857,1.0,0.0,0.0 -13,25.0,1.9702828472098552,2.3,0.0,0.0,0.9643159504870332,-12.38397801794558,1.0,0.0,0.0 -13,26.0,0.0,0.0,0.0,0.0,0.9814804164873732,-12.059923296356128,1.0,0.0,0.0 -13,27.0,0.0,0.0,0.0,0.0,0.9637690430318993,-9.87662796902492,1.0,0.0,0.0 -13,28.0,1.3510510952296149,0.9,0.0,0.0,0.9673808380946636,-12.725860391760914,1.0,0.0,0.0 -13,29.0,5.967142337264132,1.9,0.0,0.0,0.959667992480135,-13.224531260721548,1.0,0.0,0.0 -14,0.0,0.0,0.0,168.04682296013843,0.0003604432452952,1.0,0.0,0.0,0.0,1.0 -14,1.0,12.2157536527011,12.7,7.590835742206488e-07,10.020580976808477,0.978249159985974,-4.2963165935438505,0.0,1.0,0.0 -14,2.0,1.3510510952296149,1.2,0.0,0.0,0.9761635156315396,-3.814570751713068,1.0,0.0,0.0 -14,3.0,4.278328468227114,1.6,0.0,0.0,0.9698958601360538,-4.672888051198376,1.0,0.0,0.0 -14,4.0,53.02875548776239,19.0,5.715371195615842e-10,26.23911905846343,0.9593718524651428,-10.907119200630692,0.0,1.0,0.0 -14,5.0,0.0,0.0,0.0,0.0,0.9637814453676548,-10.231941583557855,1.0,0.0,0.0 -14,6.0,12.834985404681342,10.9,0.0,0.0,0.9552056117993786,-10.79822918723581,1.0,0.0,0.0 -14,7.0,16.888138690370187,30.0,4.4117380246034814e-10,29.58443925847625,0.9505023419422772,-13.291013845906136,0.0,1.0,0.0 -14,8.0,0.0,0.0,0.0,0.0,1.0137183816908897,-11.341608083291336,1.0,0.0,0.0 -14,9.0,3.265040146804903,2.0,0.0,0.0,1.006422296022967,-11.916202512601563,1.0,0.0,0.0 -14,10.0,0.0,0.0,9.230982665277637e-10,21.49346220037915,1.056051908132635,-11.341608083188577,0.0,1.0,0.0 -14,11.0,6.304905111071536,7.5,0.0,0.0,1.030058498225659,-9.963377821905953,1.0,0.0,0.0 -14,12.0,0.0,0.0,2.789065979986822e-10,19.12304896074148,1.055424841236566,-9.963377821885375,0.0,1.0,0.0 -14,13.0,3.490215329343172,1.6,0.0,0.0,1.0173120660335473,-10.648766556031768,1.0,0.0,0.0 -14,14.0,4.616091242034518,2.5,0.0,0.0,1.0108495970316704,-10.85086960290726,1.0,0.0,0.0 -14,15.0,1.9702828472098552,1.8,0.0,0.0,1.012581776763056,-10.87005258864795,1.0,0.0,0.0 -14,16.0,5.066441607111056,5.8,0.0,0.0,1.0042708552262165,-11.697472628586036,1.0,0.0,0.0 -14,17.0,1.8014014603061534,0.9,0.0,0.0,0.9999206973016754,-11.5759612570705,1.0,0.0,0.0 -14,18.0,5.347910585283892,3.4,0.0,0.0,0.9958069784914964,-11.909908419052044,1.0,0.0,0.0 -14,19.0,1.2384635039604803,0.7,0.0,0.0,0.9977806533094984,-11.942843672334243,1.0,0.0,0.0 -14,20.0,9.851414236049276,11.2,0.0,0.0,0.9960905210444776,-12.086754412644131,1.0,0.0,0.0 -14,21.0,0.0,0.0,0.0,0.0,0.9965830100497236,-12.078238464886,1.0,0.0,0.0 -14,22.0,1.8014014603061534,1.6,0.0,0.0,0.997989254107908,-11.46926328854126,1.0,0.0,0.0 -14,23.0,4.897560220207354,6.7,0.0,0.0,0.9877751671073708,-12.15803838236447,1.0,0.0,0.0 -14,24.0,0.0,0.0,0.0,0.0,0.9761681883937824,-12.510481190814131,1.0,0.0,0.0 -14,25.0,1.9702828472098552,2.3,0.0,0.0,0.9618691281843026,-12.610304576729972,1.0,0.0,0.0 -14,26.0,0.0,0.0,0.0,0.0,0.9763534107711116,-12.650875192367618,1.0,0.0,0.0 -14,27.0,0.0,0.0,0.0,0.0,0.9593053530212052,-11.107440638235897,1.0,0.0,0.0 -14,28.0,1.3510510952296149,0.9,0.0,0.0,0.9621751977065136,-13.323926152717508,1.0,0.0,0.0 -14,29.0,5.967142337264132,1.9,0.0,0.0,0.9544192317857698,-13.82804650227446,1.0,0.0,0.0 -15,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -15,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -15,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -15,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -15,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -15,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -15,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -15,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -15,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -15,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -15,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -15,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -15,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -15,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -15,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -15,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -15,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -15,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -15,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -15,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -15,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -15,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -15,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -15,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -15,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -15,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -15,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -15,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -15,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -15,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -16,0.0,0.0,0.0,166.75643089058082,0.000841523801931,1.0,0.0,0.0,0.0,1.0 -16,1.0,12.2157536527011,12.7,1.00297680656185e-06,10.155745698773272,0.9796918010361526,-3.82708407759797,0.0,1.0,0.0 -16,2.0,1.3510510952296149,1.2,0.0,0.0,0.9739036981269972,-5.030321913219034,1.0,0.0,0.0 -16,3.0,4.278328468227114,1.6,0.0,0.0,0.9672436988829946,-6.183406266396783,1.0,0.0,0.0 -16,4.0,53.02875548776239,19.0,3.7129797814245866e-10,24.48085798065378,0.9595119565189828,-9.214348543609193,0.0,1.0,0.0 -16,5.0,0.0,0.0,0.0,0.0,0.9668065677074176,-7.331390114189063,1.0,0.0,0.0 -16,6.0,12.834985404681342,10.9,0.0,0.0,0.9572691725263892,-8.38995169072919,1.0,0.0,0.0 -16,7.0,16.888138690370187,30.0,6.498304806663645e-10,30.85327119155708,0.9657732478010876,-7.776743143458487,0.0,1.0,0.0 -16,8.0,0.0,0.0,0.0,0.0,1.0166299386219544,-9.14570158350094,1.0,0.0,0.0 -16,9.0,3.265040146804903,2.0,0.0,0.0,1.0089501524805178,-10.085682687756352,1.0,0.0,0.0 -16,10.0,0.0,0.0,1.4867026092115427e-09,22.091017533792588,1.0599792009735969,-9.145701583336525,0.0,1.0,0.0 -16,11.0,6.304905111071536,7.5,0.0,0.0,1.015189002459253,-9.725260619436192,1.0,0.0,0.0 -16,12.0,0.0,0.0,8.698107232356292e-10,12.012664257777026,1.0314932582804914,-9.725260619369564,0.0,1.0,0.0 -16,13.0,3.490215329343172,1.6,0.0,0.0,1.0031834204085912,-10.222747991598627,1.0,0.0,0.0 -16,14.0,4.616091242034518,2.5,0.0,0.0,0.9989412213110994,-10.245237598111466,1.0,0.0,0.0 -16,15.0,1.9702828472098552,1.8,0.0,0.0,1.0063664658370846,-9.993992344666433,1.0,0.0,0.0 -16,16.0,5.066441607111056,5.8,0.0,0.0,1.003743319137223,-10.155530676374935,1.0,0.0,0.0 -16,17.0,1.8014014603061534,0.9,0.0,0.0,0.9931834246169234,-10.549288172382232,1.0,0.0,0.0 -16,18.0,5.347910585283892,3.4,0.0,0.0,0.9921042792673898,-10.628116143796603,1.0,0.0,0.0 -16,19.0,1.2384635039604803,0.7,0.0,0.0,0.9956972058347668,-10.525569771895649,1.0,0.0,0.0 -16,20.0,9.851414236049276,11.2,0.0,0.0,0.9770328240637156,-10.628798291406788,1.0,0.0,0.0 -16,21.0,0.0,0.0,0.0,0.0,0.9809083468368094,-10.567475801280498,1.0,0.0,0.0 -16,22.0,1.8014014603061534,1.6,0.0,0.0,0.9862772037195862,-10.48997797020986,1.0,0.0,0.0 -16,23.0,4.897560220207354,6.7,0.0,0.0,0.9762274859280804,-10.66505677488103,1.0,0.0,0.0 -16,24.0,0.0,0.0,0.0,0.0,0.9733910219579354,-10.363543180170632,1.0,0.0,0.0 -16,25.0,1.9702828472098552,2.3,0.0,0.0,0.9590499198222476,-10.463945646847622,1.0,0.0,0.0 -16,26.0,0.0,0.0,0.0,0.0,0.9787843048463056,-10.08397108846402,1.0,0.0,0.0 -16,27.0,0.0,0.0,0.0,0.0,0.9642353370668229,-7.706692557192071,1.0,0.0,0.0 -16,28.0,1.3510510952296149,0.9,0.0,0.0,0.9646434875220504,-10.75363490057616,1.0,0.0,0.0 -16,29.0,5.967142337264132,1.9,0.0,0.0,0.956908028280289,-11.25516023518735,1.0,0.0,0.0 -17,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -17,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -17,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -17,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -17,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -17,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -17,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -17,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -17,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -17,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -17,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -17,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -17,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -17,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -17,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -17,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -17,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -17,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -17,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -17,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -17,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -17,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -17,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -17,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -17,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -17,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -17,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -17,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -17,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -17,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -18,0.0,0.0,0.0,166.6549311241318,4.952926924171663,1.0,0.0,0.0,0.0,1.0 -18,1.0,12.2157536527011,12.7,0.0,0.0,0.977282039235782,-3.794455840575306,0.0,1.0,0.0 -18,2.0,1.3510510952296149,1.2,0.0,0.0,0.972497985203961,-4.992970263289221,1.0,0.0,0.0 -18,3.0,4.278328468227114,1.6,0.0,0.0,0.9655054820279922,-6.137731707817569,1.0,0.0,0.0 -18,4.0,53.02875548776239,19.0,2.0715691231782178e-10,31.154671761913463,0.9655101459481972,-9.320580786870911,0.0,1.0,0.0 -18,5.0,0.0,0.0,0.0,0.0,0.9674886087307568,-7.375219920394023,1.0,0.0,0.0 -18,6.0,12.834985404681342,10.9,0.0,0.0,0.960158161265185,-8.455369929726526,1.0,0.0,0.0 -18,7.0,16.888138690370187,30.0,2.2970190732632763e-10,39.98860294285537,0.969874623927928,-7.87602484952391,0.0,1.0,0.0 -18,8.0,0.0,0.0,0.0,0.0,1.012965628187903,-9.3668141528245,1.0,0.0,0.0 -18,9.0,3.265040146804903,2.0,0.0,0.0,1.0011137984081755,-10.407429401220943,1.0,0.0,0.0 -18,10.0,0.0,0.0,2.06873912284683e-10,23.969234318892823,1.0599996145217478,-9.36681415280154,0.0,1.0,0.0 -18,11.0,6.304905111071536,7.5,0.0,0.0,0.9964743748851947,-9.432644921169793,1.0,0.0,0.0 -18,12.0,0.0,0.0,0.0,0.0,0.9964743748851947,-9.432644921169793,0.0,1.0,0.0 -18,13.0,3.490215329343172,1.6,0.0,0.0,0.9867774660148386,-9.97587901617255,1.0,0.0,0.0 -18,14.0,4.616091242034518,2.5,0.0,0.0,0.98471504232068,-10.08456283567552,1.0,0.0,0.0 -18,15.0,1.9702828472098552,1.8,0.0,0.0,0.9909838726851236,-9.561102129248352,1.0,0.0,0.0 -18,16.0,5.066441607111056,5.8,0.0,0.0,0.9945323894447432,-10.545653383307176,1.0,0.0,0.0 -18,17.0,1.8014014603061534,0.9,0.0,0.0,0.9810558917999064,-10.568844811857728,1.0,0.0,0.0 -18,18.0,5.347910585283892,3.4,0.0,0.0,0.9812597300106778,-10.75196007585978,1.0,0.0,0.0 -18,19.0,1.2384635039604803,0.7,0.0,0.0,0.9855722612008344,-10.701167679259814,1.0,0.0,0.0 -18,20.0,9.851414236049276,11.2,0.0,0.0,0.9900632224240232,-10.57453557365287,1.0,0.0,0.0 -18,21.0,0.0,0.0,0.0,0.0,0.990350508762866,-10.563913516327512,1.0,0.0,0.0 -18,22.0,1.8014014603061534,1.6,0.0,0.0,0.9792113815174082,-10.374098706029732,1.0,0.0,0.0 -18,23.0,4.897560220207354,6.7,0.0,0.0,0.9787703576624652,-10.60011848735178,1.0,0.0,0.0 -18,24.0,0.0,0.0,0.0,0.0,0.9754652472881236,-10.33548176719432,1.0,0.0,0.0 -18,25.0,1.9702828472098552,2.3,0.0,0.0,0.9611555692948598,-10.435451246942002,1.0,0.0,0.0 -18,26.0,0.0,0.0,0.0,0.0,0.9805623904212718,-10.079626998826749,1.0,0.0,0.0 -18,27.0,0.0,0.0,0.0,0.0,0.9657639224330828,-7.756384166871485,1.0,0.0,0.0 -18,28.0,1.3510510952296149,0.9,0.0,0.0,0.9664487979800244,-10.746829521677451,1.0,0.0,0.0 -18,29.0,5.967142337264132,1.9,0.0,0.0,0.9587282677346388,-11.246469557834722,1.0,0.0,0.0 -19,0.0,0.0,0.0,166.63826575146044,0.004678266113256,1.0,0.0,0.0,0.0,1.0 -19,1.0,12.2157536527011,12.7,6.302577952378442e-06,9.762800081609306,0.9796321738421774,-3.819517602522751,0.0,1.0,0.0 -19,2.0,1.3510510952296149,1.2,0.0,0.0,0.97412915739604,-5.0392215664055,1.0,0.0,0.0 -19,3.0,4.278328468227114,1.6,0.0,0.0,0.9675229749463746,-6.194341938314787,1.0,0.0,0.0 -19,4.0,53.02875548776239,19.0,1.9155823034803754e-11,24.339562578041097,0.9593878160426867,-9.19520887497198,0.0,1.0,0.0 -19,5.0,0.0,0.0,0.0,0.0,0.966920831864558,-7.304979751942066,1.0,0.0,0.0 -19,6.0,12.834985404681342,10.9,0.0,0.0,0.9572870636425632,-8.36659105343097,1.0,0.0,0.0 -19,7.0,16.888138690370187,30.0,-2.7322905192590477e-09,29.82861683685963,0.9656230732808728,-7.7416476650031,0.0,1.0,0.0 -19,8.0,0.0,0.0,0.0,0.0,1.0143140901990793,-9.061247040786164,1.0,0.0,0.0 -19,9.0,3.265040146804903,2.0,0.0,0.0,1.0107216273918058,-9.969675330140255,1.0,0.0,0.0 -19,10.0,0.0,0.0,-9.03608831184774e-09,16.688842706151487,1.0474542422261686,-9.06124704179975,0.0,1.0,0.0 -19,11.0,6.304905111071536,7.5,0.0,0.0,1.0184195579984254,-9.9205869733376,1.0,0.0,0.0 -19,12.0,0.0,0.0,-5.223699611920925e-09,18.26680149402704,1.0429401614209604,-9.920586973732098,0.0,1.0,0.0 -19,13.0,3.490215329343172,1.6,0.0,0.0,1.0070185290526896,-10.35562429765793,1.0,0.0,0.0 -19,14.0,4.616091242034518,2.5,0.0,0.0,1.0037423164602288,-10.332255317522526,1.0,0.0,0.0 -19,15.0,1.9702828472098552,1.8,0.0,0.0,0.9962989763363884,-10.301879942474374,1.0,0.0,0.0 -19,16.0,5.066441607111056,5.8,0.0,0.0,0.9822173927234774,-10.694375452407764,1.0,0.0,0.0 -19,17.0,1.8014014603061534,0.9,0.0,0.0,0.9969632745612584,-10.561882180015028,1.0,0.0,0.0 -19,18.0,5.347910585283892,3.4,0.0,0.0,0.9952684215862372,-10.597171452169144,1.0,0.0,0.0 -19,19.0,1.2384635039604803,0.7,0.0,0.0,0.9985254544737828,-10.472519452641611,1.0,0.0,0.0 -19,20.0,9.851414236049276,11.2,0.0,0.0,1.0000297745296094,-10.174700116340144,1.0,0.0,0.0 -19,21.0,0.0,0.0,0.0,0.0,1.0003889707932991,-10.177626134822672,1.0,0.0,0.0 -19,22.0,1.8014014603061534,1.6,0.0,0.0,0.9947839217595054,-10.427193708901338,1.0,0.0,0.0 -19,23.0,4.897560220207354,6.7,0.0,0.0,0.9895850880320516,-10.398861117530313,1.0,0.0,0.0 -19,24.0,0.0,0.0,0.0,0.0,0.9818248188383694,-10.122322840177311,1.0,0.0,0.0 -19,25.0,1.9702828472098552,2.3,0.0,0.0,0.9676106218536804,-10.220982198298888,1.0,0.0,0.0 -19,26.0,0.0,0.0,0.0,0.0,0.9841036509550982,-9.864840024163836,1.0,0.0,0.0 -19,27.0,0.0,0.0,0.0,0.0,0.9649550796122364,-7.667625847061119,1.0,0.0,0.0 -19,28.0,1.3510510952296149,0.9,0.0,0.0,0.9700439598326056,-10.527181075230882,1.0,0.0,0.0 -19,29.0,5.967142337264132,1.9,0.0,0.0,0.9623529861134328,-11.02309826670038,1.0,0.0,0.0 -20,0.0,0.0,0.0,167.2197150383295,0.0020709916809025,1.0,0.0,0.0,0.0,1.0 -20,1.0,12.2157536527011,12.7,1.9787736062279647e-06,9.256395838518102,0.9787144538920404,-4.021818068933741,0.0,1.0,0.0 -20,2.0,1.3510510952296149,1.2,0.0,0.0,0.9758535869590133,-4.51352842310845,1.0,0.0,0.0 -20,3.0,4.278328468227114,1.6,0.0,0.0,0.9695741264013767,-5.540779067430898,1.0,0.0,0.0 -20,4.0,53.02875548776239,19.0,-3.844190301902681e-09,37.52500651414972,0.958700182696228,-12.361445153464834,0.0,1.0,0.0 -20,5.0,0.0,0.0,0.0,0.0,0.9693783574611784,-6.404102479073709,1.0,0.0,0.0 -20,6.0,12.834985404681342,10.9,0.0,0.0,0.9400182952686696,-13.015620087962663,1.0,0.0,0.0 -20,7.0,16.888138690370187,30.0,-1.545900418152322e-09,25.11973759346029,0.9663865453017408,-6.798795561254939,0.0,1.0,0.0 -20,8.0,0.0,0.0,0.0,0.0,1.0149725304676052,-8.584337664810725,1.0,0.0,0.0 -20,9.0,3.265040146804903,2.0,0.0,0.0,1.004318815919918,-9.722067868585796,1.0,0.0,0.0 -20,10.0,0.0,0.0,-1.8621662803172566e-09,22.945505025053716,1.059997767243548,-8.584337665017,0.0,1.0,0.0 -20,11.0,6.304905111071536,7.5,0.0,0.0,1.0183547180564412,-8.760597368162793,1.0,0.0,0.0 -20,12.0,0.0,0.0,-1.058628504406583e-09,9.183313789459206,1.0308268795419429,-8.760597368243685,0.0,1.0,0.0 -20,13.0,3.490215329343172,1.6,0.0,0.0,1.0075125297499434,-9.259500916653876,1.0,0.0,0.0 -20,14.0,4.616091242034518,2.5,0.0,0.0,1.004333179372954,-9.311947501038627,1.0,0.0,0.0 -20,15.0,1.9702828472098552,1.8,0.0,0.0,1.012983561729644,-8.883564683685982,1.0,0.0,0.0 -20,16.0,5.066441607111056,5.8,0.0,0.0,0.9977587069965644,-9.859405213756189,1.0,0.0,0.0 -20,17.0,1.8014014603061534,0.9,0.0,0.0,0.995002967695468,-9.812922953202364,1.0,0.0,0.0 -20,18.0,5.347910585283892,3.4,0.0,0.0,0.9918178045049624,-10.010669283457638,1.0,0.0,0.0 -20,19.0,1.2384635039604803,0.7,0.0,0.0,0.994297658931964,-9.970503365586916,1.0,0.0,0.0 -20,20.0,9.851414236049276,11.2,0.0,0.0,0.9921206052242804,-9.979063640108112,1.0,0.0,0.0 -20,21.0,0.0,0.0,0.0,0.0,0.992025481680578,-9.997264273857164,1.0,0.0,0.0 -20,22.0,1.8014014603061534,1.6,0.0,0.0,0.9992941502025784,-9.428342144192824,1.0,0.0,0.0 -20,23.0,4.897560220207354,6.7,0.0,0.0,0.9746865843589848,-10.390666263086862,1.0,0.0,0.0 -20,24.0,0.0,0.0,0.0,0.0,0.9627787752489358,-10.522733303979196,1.0,0.0,0.0 -20,25.0,1.9702828472098552,2.3,0.0,0.0,0.9482746813069658,-10.625395914361352,1.0,0.0,0.0 -20,26.0,0.0,0.0,0.0,0.0,0.986914117726254,-8.406475256996291,1.0,0.0,0.0 -20,27.0,0.0,0.0,0.0,0.0,0.9673896781980308,-6.699092360277798,1.0,0.0,0.0 -20,28.0,1.3510510952296149,0.9,0.0,0.0,0.9728969038997176,-9.06499599279186,1.0,0.0,0.0 -20,29.0,5.967142337264132,1.9,0.0,0.0,0.9652292217184943,-9.557988523449954,1.0,0.0,0.0 -21,0.0,0.0,0.0,167.1389413079434,0.0039741939233728,1.0,0.0,0.0,0.0,1.0 -21,1.0,12.2157536527011,12.7,2.966152795023689e-06,19.322858765960312,0.9810696185170236,-3.8608598107313465,0.0,1.0,0.0 -21,2.0,1.3510510952296149,1.2,0.0,0.0,0.969776485074831,-4.989599992808602,1.0,0.0,0.0 -21,3.0,4.278328468227114,1.6,0.0,0.0,0.9621513764064948,-6.13494001953447,1.0,0.0,0.0 -21,4.0,53.02875548776239,19.0,3.914070198965935e-09,27.2371858666404,0.960855576099143,-9.25063266140164,0.0,1.0,0.0 -21,5.0,0.0,0.0,0.0,0.0,0.9624588003195128,-7.252793161427386,1.0,0.0,0.0 -21,6.0,12.834985404681342,10.9,0.0,0.0,0.9552414806241202,-8.356940353794954,1.0,0.0,0.0 -21,7.0,16.888138690370187,30.0,2.83173138059215e-09,32.85134561592454,0.9562947930965918,-10.607073753248478,0.0,1.0,0.0 -21,8.0,0.0,0.0,0.0,0.0,1.0079863852564,-9.807155993883386,1.0,0.0,0.0 -21,9.0,3.265040146804903,2.0,0.0,0.0,0.9963868474839128,-11.141053933471092,1.0,0.0,0.0 -21,10.0,0.0,0.0,4.1846702197149795e-09,23.9972163291395,1.0552856269860242,-9.807155993414552,0.0,1.0,0.0 -21,11.0,6.304905111071536,7.5,0.0,0.0,0.9926041895744466,-10.10055596642079,1.0,0.0,0.0 -21,12.0,0.0,0.0,0.0,0.0,0.9926041895744466,-10.10055596642079,0.0,1.0,0.0 -21,13.0,3.490215329343172,1.6,0.0,0.0,0.981819291274346,-10.678029275836584,1.0,0.0,0.0 -21,14.0,4.616091242034518,2.5,0.0,0.0,0.978541186784076,-10.792883239913236,1.0,0.0,0.0 -21,15.0,1.9702828472098552,1.8,0.0,0.0,0.9875456188698548,-10.688693958250212,1.0,0.0,0.0 -21,16.0,5.066441607111056,5.8,0.0,0.0,0.9892908400441752,-11.094391242041304,1.0,0.0,0.0 -21,17.0,1.8014014603061534,0.9,0.0,0.0,0.9753348821341902,-11.290741462678367,1.0,0.0,0.0 -21,18.0,5.347910585283892,3.4,0.0,0.0,0.9758217856092388,-11.480553342867225,1.0,0.0,0.0 -21,19.0,1.2384635039604803,0.7,0.0,0.0,0.9803070063858828,-11.431653255336476,1.0,0.0,0.0 -21,20.0,9.851414236049276,11.2,0.0,0.0,0.9632503057401162,-11.5956253349661,1.0,0.0,0.0 -21,21.0,0.0,0.0,0.0,0.0,0.9671812971925456,-11.532542627668004,1.0,0.0,0.0 -21,22.0,1.8014014603061534,1.6,0.0,0.0,0.9683330336842972,-11.158936520442948,1.0,0.0,0.0 -21,23.0,4.897560220207354,6.7,0.0,0.0,0.961722836264391,-11.49026329072646,1.0,0.0,0.0 -21,24.0,0.0,0.0,0.0,0.0,0.9621086541274152,-11.151267560879672,1.0,0.0,0.0 -21,25.0,1.9702828472098552,2.3,0.0,0.0,0.9475941414080916,-11.254075450320476,1.0,0.0,0.0 -21,26.0,0.0,0.0,0.0,0.0,0.9695809620036604,-10.843156631315846,1.0,0.0,0.0 -21,27.0,0.0,0.0,0.0,0.0,0.9582447228252776,-8.30337826720246,1.0,0.0,0.0 -21,28.0,1.3510510952296149,0.9,0.0,0.0,0.9552974820862472,-11.525781608336295,1.0,0.0,0.0 -21,29.0,5.967142337264132,1.9,0.0,0.0,0.9474837885030136,-12.037240258871512,1.0,0.0,0.0 -22,0.0,0.0,0.0,164.59237164379,0.0006627089343957,1.0,0.0,0.0,0.0,1.0 -22,1.0,12.077699880045945,12.7,8.32594017566061e-07,10.76415697698924,0.9799967135483186,-3.77900212943075,0.0,1.0,0.0 -22,2.0,1.3357824752124543,1.2,0.0,0.0,0.9738846274837932,-4.95591821881876,1.0,0.0,0.0 -22,3.0,4.229977838172774,1.6,0.0,0.0,0.9672063713216869,-6.091355164219103,1.0,0.0,0.0 -22,4.0,52.42946215208885,19.0,-3.51541685506674e-10,24.33704203696473,0.9597594247476025,-9.096450273450303,0.0,1.0,0.0 -22,5.0,0.0,0.0,0.0,0.0,0.96680815374658,-7.230586493981262,1.0,0.0,0.0 -22,6.0,12.68993351451832,10.9,0.0,0.0,0.9573965084180812,-8.277694548058129,1.0,0.0,0.0 -22,7.0,16.697280940155682,30.0,1.5711020967349118e-11,30.629386336532555,0.9658016661737824,-7.668049555793464,0.0,1.0,0.0 -22,8.0,0.0,0.0,0.0,0.0,1.015399149334829,-9.075436934617482,1.0,0.0,0.0 -22,9.0,3.228140981763432,2.0,0.0,0.0,1.0064295366207263,-10.033631688565002,1.0,0.0,0.0 -22,10.0,0.0,0.0,9.75957858094898e-10,22.7192682643809,1.059981147877481,-9.075436934509415,0.0,1.0,0.0 -22,11.0,6.233651550991455,7.5,0.0,0.0,1.0135815214903747,-9.557602116053054,1.0,0.0,0.0 -22,12.0,0.0,0.0,-1.0332000436741388e-11,10.089903489505126,1.027331575727061,-9.55760211605385,0.0,1.0,0.0 -22,13.0,3.450771394298841,1.6,0.0,0.0,1.0024366530634938,-10.03777064910236,1.0,0.0,0.0 -22,14.0,4.563923456975886,2.5,0.0,0.0,0.9990758863836688,-10.06628743653888,1.0,0.0,0.0 -22,15.0,1.9480161096848296,1.8,0.0,0.0,1.004295015890441,-9.87182800586669,1.0,0.0,0.0 -22,16.0,5.009184282046705,5.8,0.0,0.0,1.001389911322768,-10.080739167789964,1.0,0.0,0.0 -22,17.0,1.781043300283273,0.9,0.0,0.0,0.9924117401581674,-10.40960128406794,1.0,0.0,0.0 -22,18.0,5.287472297715967,3.4,0.0,0.0,0.9907864584223453,-10.513367654787755,1.0,0.0,0.0 -22,19.0,1.2244672689447502,0.7,0.0,0.0,0.9940750626857054,-10.425880495870317,1.0,0.0,0.0 -22,20.0,9.74008054842415,11.2,0.0,0.0,0.9958027750250408,-10.215066613166927,1.0,0.0,0.0 -22,21.0,0.0,0.0,0.0,0.0,0.9961883360294284,-10.21143002438034,1.0,0.0,0.0 -22,22.0,1.781043300283273,1.6,0.0,0.0,0.9905275709284328,-10.249512659092115,1.0,0.0,0.0 -22,23.0,4.842211472645148,6.7,0.0,0.0,0.9858935944160964,-10.342141732707637,1.0,0.0,0.0 -22,24.0,0.0,0.0,0.0,0.0,0.9794919768311332,-10.065374976065788,1.0,0.0,0.0 -22,25.0,1.9480161096848296,2.3,0.0,0.0,0.965302617687537,-10.159378340960918,1.0,0.0,0.0 -22,26.0,0.0,0.0,0.0,0.0,0.9826059819835408,-9.808695367244743,1.0,0.0,0.0 -22,27.0,0.0,0.0,0.0,0.0,0.9647442490444526,-7.592573600435067,1.0,0.0,0.0 -22,28.0,1.3357824752124543,0.9,0.0,0.0,0.9686176442765682,-10.463379900079524,1.0,0.0,0.0 -22,29.0,5.899705932188341,1.9,0.0,0.0,0.9609753069398153,-10.954238006191678,1.0,0.0,0.0 -23,0.0,0.0,0.0,164.59237164379,0.0006627089343957,1.0,0.0,0.0,0.0,1.0 -23,1.0,12.077699880045945,12.7,8.32594017566061e-07,10.76415697698924,0.9799967135483186,-3.77900212943075,0.0,1.0,0.0 -23,2.0,1.3357824752124543,1.2,0.0,0.0,0.9738846274837932,-4.95591821881876,1.0,0.0,0.0 -23,3.0,4.229977838172774,1.6,0.0,0.0,0.9672063713216869,-6.091355164219103,1.0,0.0,0.0 -23,4.0,52.42946215208885,19.0,-3.51541685506674e-10,24.33704203696473,0.9597594247476025,-9.096450273450303,0.0,1.0,0.0 -23,5.0,0.0,0.0,0.0,0.0,0.96680815374658,-7.230586493981262,1.0,0.0,0.0 -23,6.0,12.68993351451832,10.9,0.0,0.0,0.9573965084180812,-8.277694548058129,1.0,0.0,0.0 -23,7.0,16.697280940155682,30.0,1.5711020967349118e-11,30.629386336532555,0.9658016661737824,-7.668049555793464,0.0,1.0,0.0 -23,8.0,0.0,0.0,0.0,0.0,1.015399149334829,-9.075436934617482,1.0,0.0,0.0 -23,9.0,3.228140981763432,2.0,0.0,0.0,1.0064295366207263,-10.033631688565002,1.0,0.0,0.0 -23,10.0,0.0,0.0,9.75957858094898e-10,22.7192682643809,1.059981147877481,-9.075436934509415,0.0,1.0,0.0 -23,11.0,6.233651550991455,7.5,0.0,0.0,1.0135815214903747,-9.557602116053054,1.0,0.0,0.0 -23,12.0,0.0,0.0,-1.0332000436741388e-11,10.089903489505126,1.027331575727061,-9.55760211605385,0.0,1.0,0.0 -23,13.0,3.450771394298841,1.6,0.0,0.0,1.0024366530634938,-10.03777064910236,1.0,0.0,0.0 -23,14.0,4.563923456975886,2.5,0.0,0.0,0.9990758863836688,-10.06628743653888,1.0,0.0,0.0 -23,15.0,1.9480161096848296,1.8,0.0,0.0,1.004295015890441,-9.87182800586669,1.0,0.0,0.0 -23,16.0,5.009184282046705,5.8,0.0,0.0,1.001389911322768,-10.080739167789964,1.0,0.0,0.0 -23,17.0,1.781043300283273,0.9,0.0,0.0,0.9924117401581674,-10.40960128406794,1.0,0.0,0.0 -23,18.0,5.287472297715967,3.4,0.0,0.0,0.9907864584223453,-10.513367654787755,1.0,0.0,0.0 -23,19.0,1.2244672689447502,0.7,0.0,0.0,0.9940750626857054,-10.425880495870317,1.0,0.0,0.0 -23,20.0,9.74008054842415,11.2,0.0,0.0,0.9958027750250408,-10.215066613166927,1.0,0.0,0.0 -23,21.0,0.0,0.0,0.0,0.0,0.9961883360294284,-10.21143002438034,1.0,0.0,0.0 -23,22.0,1.781043300283273,1.6,0.0,0.0,0.9905275709284328,-10.249512659092115,1.0,0.0,0.0 -23,23.0,4.842211472645148,6.7,0.0,0.0,0.9858935944160964,-10.342141732707637,1.0,0.0,0.0 -23,24.0,0.0,0.0,0.0,0.0,0.9794919768311332,-10.065374976065788,1.0,0.0,0.0 -23,25.0,1.9480161096848296,2.3,0.0,0.0,0.965302617687537,-10.159378340960918,1.0,0.0,0.0 -23,26.0,0.0,0.0,0.0,0.0,0.9826059819835408,-9.808695367244743,1.0,0.0,0.0 -23,27.0,0.0,0.0,0.0,0.0,0.9647442490444526,-7.592573600435067,1.0,0.0,0.0 -23,28.0,1.3357824752124543,0.9,0.0,0.0,0.9686176442765682,-10.463379900079524,1.0,0.0,0.0 -23,29.0,5.899705932188341,1.9,0.0,0.0,0.9609753069398153,-10.954238006191678,1.0,0.0,0.0 -24,0.0,0.0,0.0,164.59237164379,0.0006627089343957,1.0,0.0,0.0,0.0,1.0 -24,1.0,12.077699880045945,12.7,8.32594017566061e-07,10.76415697698924,0.9799967135483186,-3.77900212943075,0.0,1.0,0.0 -24,2.0,1.3357824752124543,1.2,0.0,0.0,0.9738846274837932,-4.95591821881876,1.0,0.0,0.0 -24,3.0,4.229977838172774,1.6,0.0,0.0,0.9672063713216869,-6.091355164219103,1.0,0.0,0.0 -24,4.0,52.42946215208885,19.0,-3.51541685506674e-10,24.33704203696473,0.9597594247476025,-9.096450273450303,0.0,1.0,0.0 -24,5.0,0.0,0.0,0.0,0.0,0.96680815374658,-7.230586493981262,1.0,0.0,0.0 -24,6.0,12.68993351451832,10.9,0.0,0.0,0.9573965084180812,-8.277694548058129,1.0,0.0,0.0 -24,7.0,16.697280940155682,30.0,1.5711020967349118e-11,30.629386336532555,0.9658016661737824,-7.668049555793464,0.0,1.0,0.0 -24,8.0,0.0,0.0,0.0,0.0,1.015399149334829,-9.075436934617482,1.0,0.0,0.0 -24,9.0,3.228140981763432,2.0,0.0,0.0,1.0064295366207263,-10.033631688565002,1.0,0.0,0.0 -24,10.0,0.0,0.0,9.75957858094898e-10,22.7192682643809,1.059981147877481,-9.075436934509415,0.0,1.0,0.0 -24,11.0,6.233651550991455,7.5,0.0,0.0,1.0135815214903747,-9.557602116053054,1.0,0.0,0.0 -24,12.0,0.0,0.0,-1.0332000436741388e-11,10.089903489505126,1.027331575727061,-9.55760211605385,0.0,1.0,0.0 -24,13.0,3.450771394298841,1.6,0.0,0.0,1.0024366530634938,-10.03777064910236,1.0,0.0,0.0 -24,14.0,4.563923456975886,2.5,0.0,0.0,0.9990758863836688,-10.06628743653888,1.0,0.0,0.0 -24,15.0,1.9480161096848296,1.8,0.0,0.0,1.004295015890441,-9.87182800586669,1.0,0.0,0.0 -24,16.0,5.009184282046705,5.8,0.0,0.0,1.001389911322768,-10.080739167789964,1.0,0.0,0.0 -24,17.0,1.781043300283273,0.9,0.0,0.0,0.9924117401581674,-10.40960128406794,1.0,0.0,0.0 -24,18.0,5.287472297715967,3.4,0.0,0.0,0.9907864584223453,-10.513367654787755,1.0,0.0,0.0 -24,19.0,1.2244672689447502,0.7,0.0,0.0,0.9940750626857054,-10.425880495870317,1.0,0.0,0.0 -24,20.0,9.74008054842415,11.2,0.0,0.0,0.9958027750250408,-10.215066613166927,1.0,0.0,0.0 -24,21.0,0.0,0.0,0.0,0.0,0.9961883360294284,-10.21143002438034,1.0,0.0,0.0 -24,22.0,1.781043300283273,1.6,0.0,0.0,0.9905275709284328,-10.249512659092115,1.0,0.0,0.0 -24,23.0,4.842211472645148,6.7,0.0,0.0,0.9858935944160964,-10.342141732707637,1.0,0.0,0.0 -24,24.0,0.0,0.0,0.0,0.0,0.9794919768311332,-10.065374976065788,1.0,0.0,0.0 -24,25.0,1.9480161096848296,2.3,0.0,0.0,0.965302617687537,-10.159378340960918,1.0,0.0,0.0 -24,26.0,0.0,0.0,0.0,0.0,0.9826059819835408,-9.808695367244743,1.0,0.0,0.0 -24,27.0,0.0,0.0,0.0,0.0,0.9647442490444526,-7.592573600435067,1.0,0.0,0.0 -24,28.0,1.3357824752124543,0.9,0.0,0.0,0.9686176442765682,-10.463379900079524,1.0,0.0,0.0 -24,29.0,5.899705932188341,1.9,0.0,0.0,0.9609753069398153,-10.954238006191678,1.0,0.0,0.0 -25,0.0,0.0,0.0,164.59237164379,0.0006627089343957,1.0,0.0,0.0,0.0,1.0 -25,1.0,12.077699880045945,12.7,8.32594017566061e-07,10.76415697698924,0.9799967135483186,-3.77900212943075,0.0,1.0,0.0 -25,2.0,1.3357824752124543,1.2,0.0,0.0,0.9738846274837932,-4.95591821881876,1.0,0.0,0.0 -25,3.0,4.229977838172774,1.6,0.0,0.0,0.9672063713216869,-6.091355164219103,1.0,0.0,0.0 -25,4.0,52.42946215208885,19.0,-3.51541685506674e-10,24.33704203696473,0.9597594247476025,-9.096450273450303,0.0,1.0,0.0 -25,5.0,0.0,0.0,0.0,0.0,0.96680815374658,-7.230586493981262,1.0,0.0,0.0 -25,6.0,12.68993351451832,10.9,0.0,0.0,0.9573965084180812,-8.277694548058129,1.0,0.0,0.0 -25,7.0,16.697280940155682,30.0,1.5711020967349118e-11,30.629386336532555,0.9658016661737824,-7.668049555793464,0.0,1.0,0.0 -25,8.0,0.0,0.0,0.0,0.0,1.015399149334829,-9.075436934617482,1.0,0.0,0.0 -25,9.0,3.228140981763432,2.0,0.0,0.0,1.0064295366207263,-10.033631688565002,1.0,0.0,0.0 -25,10.0,0.0,0.0,9.75957858094898e-10,22.7192682643809,1.059981147877481,-9.075436934509415,0.0,1.0,0.0 -25,11.0,6.233651550991455,7.5,0.0,0.0,1.0135815214903747,-9.557602116053054,1.0,0.0,0.0 -25,12.0,0.0,0.0,-1.0332000436741388e-11,10.089903489505126,1.027331575727061,-9.55760211605385,0.0,1.0,0.0 -25,13.0,3.450771394298841,1.6,0.0,0.0,1.0024366530634938,-10.03777064910236,1.0,0.0,0.0 -25,14.0,4.563923456975886,2.5,0.0,0.0,0.9990758863836688,-10.06628743653888,1.0,0.0,0.0 -25,15.0,1.9480161096848296,1.8,0.0,0.0,1.004295015890441,-9.87182800586669,1.0,0.0,0.0 -25,16.0,5.009184282046705,5.8,0.0,0.0,1.001389911322768,-10.080739167789964,1.0,0.0,0.0 -25,17.0,1.781043300283273,0.9,0.0,0.0,0.9924117401581674,-10.40960128406794,1.0,0.0,0.0 -25,18.0,5.287472297715967,3.4,0.0,0.0,0.9907864584223453,-10.513367654787755,1.0,0.0,0.0 -25,19.0,1.2244672689447502,0.7,0.0,0.0,0.9940750626857054,-10.425880495870317,1.0,0.0,0.0 -25,20.0,9.74008054842415,11.2,0.0,0.0,0.9958027750250408,-10.215066613166927,1.0,0.0,0.0 -25,21.0,0.0,0.0,0.0,0.0,0.9961883360294284,-10.21143002438034,1.0,0.0,0.0 -25,22.0,1.781043300283273,1.6,0.0,0.0,0.9905275709284328,-10.249512659092115,1.0,0.0,0.0 -25,23.0,4.842211472645148,6.7,0.0,0.0,0.9858935944160964,-10.342141732707637,1.0,0.0,0.0 -25,24.0,0.0,0.0,0.0,0.0,0.9794919768311332,-10.065374976065788,1.0,0.0,0.0 -25,25.0,1.9480161096848296,2.3,0.0,0.0,0.965302617687537,-10.159378340960918,1.0,0.0,0.0 -25,26.0,0.0,0.0,0.0,0.0,0.9826059819835408,-9.808695367244743,1.0,0.0,0.0 -25,27.0,0.0,0.0,0.0,0.0,0.9647442490444526,-7.592573600435067,1.0,0.0,0.0 -25,28.0,1.3357824752124543,0.9,0.0,0.0,0.9686176442765682,-10.463379900079524,1.0,0.0,0.0 -25,29.0,5.899705932188341,1.9,0.0,0.0,0.9609753069398153,-10.954238006191678,1.0,0.0,0.0 -26,0.0,0.0,0.0,164.91354999243163,0.006685436751308,1.0,0.0,0.0,0.0,1.0 -26,1.0,12.077699880045945,12.7,5.141279018014212e-06,11.241581218375394,0.9801946917121528,-3.7769584411216495,0.0,1.0,0.0 -26,2.0,1.3357824752124543,1.2,0.0,0.0,0.9732256577081598,-4.9959579107267285,1.0,0.0,0.0 -26,3.0,4.229977838172774,1.6,0.0,0.0,0.9664006837262138,-6.141425710828141,1.0,0.0,0.0 -26,4.0,52.42946215208885,19.0,2.6090001161349962e-09,25.009667895718763,0.9606650776524008,-9.072202424754792,0.0,1.0,0.0 -26,5.0,0.0,0.0,0.0,0.0,0.9670420651560836,-7.165668616587025,1.0,0.0,0.0 -26,6.0,12.68993351451832,10.9,0.0,0.0,0.9579147024093202,-8.228755773634813,1.0,0.0,0.0 -26,7.0,16.697280940155682,30.0,4.751807267927238e-09,35.15304901416544,0.9674210883257014,-7.647457137059313,0.0,1.0,0.0 -26,8.0,0.0,0.0,0.0,0.0,1.024386316413966,-7.165668615716744,1.0,0.0,0.0 -26,9.0,3.228140981763432,2.0,0.0,0.0,0.975705298463044,-12.083434461812292,1.0,0.0,0.0 -26,10.0,0.0,0.0,7.396785647433907e-09,18.13720067797837,1.0599770651668703,-7.1656686149049085,0.0,1.0,0.0 -26,11.0,6.233651550991455,7.5,0.0,0.0,1.009629705235502,-10.45254252917414,1.0,0.0,0.0 -26,12.0,0.0,0.0,6.150523075980973e-09,12.4616266101918,1.0266235461805835,-10.452542528698158,0.0,1.0,0.0 -26,13.0,3.450771394298841,1.6,0.0,0.0,0.9787997216737916,-11.46481537513661,1.0,0.0,0.0 -26,14.0,4.563923456975886,2.5,0.0,0.0,0.9898614476005996,-11.266401319649738,1.0,0.0,0.0 -26,15.0,1.9480161096848296,1.8,0.0,0.0,0.987854740824568,-11.199292206595455,1.0,0.0,0.0 -26,16.0,5.009184282046705,5.8,0.0,0.0,0.975242685256669,-11.926104970638598,1.0,0.0,0.0 -26,17.0,1.781043300283273,0.9,0.0,0.0,0.9753489466226802,-11.91350153822596,1.0,0.0,0.0 -26,18.0,5.287472297715967,3.4,0.0,0.0,0.969145495610014,-12.198801268773964,1.0,0.0,0.0 -26,19.0,1.2244672689447502,0.7,0.0,0.0,0.9701093246241438,-12.20059106492708,1.0,0.0,0.0 -26,20.0,9.74008054842415,11.2,0.0,0.0,0.9643841469318928,-12.240864373866884,1.0,0.0,0.0 -26,21.0,0.0,0.0,0.0,0.0,0.9646752337655904,-12.22531052789884,1.0,0.0,0.0 -26,22.0,1.781043300283273,1.6,0.0,0.0,0.945849913858948,-12.369623047565566,1.0,0.0,0.0 -26,23.0,4.842211472645148,6.7,0.0,0.0,0.952907071269107,-12.198187068740936,1.0,0.0,0.0 -26,24.0,0.0,0.0,0.0,0.0,0.9603746440725328,-11.36743200825524,1.0,0.0,0.0 -26,25.0,1.9480161096848296,2.3,0.0,0.0,0.9458940825863332,-11.46527384944749,1.0,0.0,0.0 -26,26.0,0.0,0.0,0.0,0.0,0.9721325695216836,-10.755717387223012,1.0,0.0,0.0 -26,27.0,0.0,0.0,0.0,0.0,0.963562500229118,-7.624281956148528,1.0,0.0,0.0 -26,28.0,1.3357824752124543,0.9,0.0,0.0,0.9579842295537236,-11.4247903096511,1.0,0.0,0.0 -26,29.0,5.899705932188341,1.9,0.0,0.0,0.9502542514800056,-11.926684601186713,1.0,0.0,0.0 -27,0.0,0.0,0.0,164.59385275600715,0.0025251785634949,1.0,0.0,0.0,0.0,1.0 -27,1.0,12.077699880045945,12.7,2.779134327698212e-06,11.19691944646572,0.979861115600544,-3.7565502138035503,0.0,1.0,0.0 -27,2.0,1.3357824752124543,1.2,0.0,0.0,0.9743459107214334,-5.017935129749212,1.0,0.0,0.0 -27,3.0,4.229977838172774,1.6,0.0,0.0,0.9677846566019562,-6.168146030788231,1.0,0.0,0.0 -27,4.0,52.42946215208885,19.0,-4.119161880059414e-10,24.535701884581957,0.9589749341252338,-9.022490800516588,0.0,1.0,0.0 -27,5.0,0.0,0.0,0.0,0.0,0.9650559586227686,-7.078161738103134,1.0,0.0,0.0 -27,6.0,12.68993351451832,10.9,0.0,0.0,0.95603637779246,-8.157542076152534,1.0,0.0,0.0 -27,7.0,16.697280940155682,30.0,-1.6926970293438691e-10,32.840048155935065,0.9646935632171478,-7.527106758006609,0.0,1.0,0.0 -27,8.0,0.0,0.0,0.0,0.0,1.0368743246001872,-12.222902239019064,1.0,0.0,0.0 -27,9.0,3.228140981763432,2.0,0.0,0.0,1.0246473166915966,-12.22290223917396,1.0,0.0,0.0 -27,10.0,0.0,0.0,2.611081923532121e-09,11.782328121736477,1.0599944849788523,-12.22290223873594,0.0,1.0,0.0 -27,11.0,6.233651550991455,7.5,0.0,0.0,1.0364064703204297,-10.681827426123288,1.0,0.0,0.0 -27,12.0,0.0,0.0,-1.6277732526067732e-10,17.859947761756633,1.0599951876631772,-10.681827426135175,0.0,1.0,0.0 -27,13.0,3.450771394298841,1.6,0.0,0.0,1.025577059678461,-11.27890560731953,1.0,0.0,0.0 -27,14.0,4.563923456975886,2.5,0.0,0.0,1.021389032485812,-11.444127658020804,1.0,0.0,0.0 -27,15.0,1.9480161096848296,1.8,0.0,0.0,1.024461283814823,-11.437088410231144,1.0,0.0,0.0 -27,16.0,5.009184282046705,5.8,0.0,0.0,1.020519903022666,-12.074009785461648,1.0,0.0,0.0 -27,17.0,1.781043300283273,0.9,0.0,0.0,1.0133848417952116,-12.057112929281146,1.0,0.0,0.0 -27,18.0,5.287472297715967,3.4,0.0,0.0,1.010943393379232,-12.326538286328956,1.0,0.0,0.0 -27,19.0,1.2244672689447502,0.7,0.0,0.0,1.0137159030855742,-12.331896501149826,1.0,0.0,0.0 -27,20.0,9.74008054842415,11.2,0.0,0.0,1.0150726365583864,-12.36736071513625,1.0,0.0,0.0 -27,21.0,0.0,0.0,0.0,0.0,1.0157248370682048,-12.3544439051674,1.0,0.0,0.0 -27,22.0,1.781043300283273,1.6,0.0,0.0,1.0134204219913518,-11.904028945470118,1.0,0.0,0.0 -27,23.0,4.842211472645148,6.7,0.0,0.0,1.0095104364831424,-12.37640208082753,1.0,0.0,0.0 -27,24.0,0.0,0.0,0.0,0.0,0.9640923815797376,-9.70658900219742,1.0,0.0,0.0 -27,25.0,1.9480161096848296,2.3,0.0,0.0,0.9496693969815816,-9.803666082536717,1.0,0.0,0.0 -27,26.0,0.0,0.0,0.0,0.0,0.9713930124717828,-9.610949207221848,1.0,0.0,0.0 -27,27.0,0.0,0.0,0.0,0.0,0.9621453626964296,-7.419297084795328,1.0,0.0,0.0 -27,28.0,1.3357824752124543,0.9,0.0,0.0,0.9572332317108654,-10.281056114802237,1.0,0.0,0.0 -27,29.0,5.899705932188341,1.9,0.0,0.0,0.949496986634762,-10.78374392177552,1.0,0.0,0.0 -28,0.0,0.0,0.0,164.7008935640131,0.0010532765018389,1.0,0.0,0.0,0.0,1.0 -28,1.0,12.077699880045945,12.7,1.2629568856161536e-06,9.804554503517297,0.979879607576158,-3.7774529059460433,0.0,1.0,0.0 -28,2.0,1.3357824752124543,1.2,0.0,0.0,0.9741861921951988,-4.969582535135194,1.0,0.0,0.0 -28,3.0,4.229977838172774,1.6,0.0,0.0,0.9675801211297606,-6.108175493973378,1.0,0.0,0.0 -28,4.0,52.42946215208885,19.0,1.8951440699020664e-10,24.14321422758431,0.9598109985668551,-9.093183456041348,0.0,1.0,0.0 -28,5.0,0.0,0.0,0.0,0.0,0.9674229405905632,-7.236555894148205,1.0,0.0,0.0 -28,6.0,12.68993351451832,10.9,0.0,0.0,0.9577836363571226,-8.279939005515036,1.0,0.0,0.0 -28,7.0,16.697280940155682,30.0,5.648319891276556e-10,33.2011399489097,0.9660118148721518,-7.897783873668659,0.0,1.0,0.0 -28,8.0,0.0,0.0,0.0,0.0,1.01570889579423,-9.16284627418792,1.0,0.0,0.0 -28,9.0,3.228140981763432,2.0,0.0,0.0,1.0067774012044333,-10.16361895118259,1.0,0.0,0.0 -28,10.0,0.0,0.0,1.667620240936833e-09,22.5559317185816,1.0599708108347965,-9.162846274003323,0.0,1.0,0.0 -28,11.0,6.233651550991455,7.5,0.0,0.0,1.014317134677268,-9.665747122199024,1.0,0.0,0.0 -28,12.0,0.0,0.0,7.093911477229575e-10,10.416798171645844,1.0284965861568287,-9.66574712214448,0.0,1.0,0.0 -28,13.0,3.450771394298841,1.6,0.0,0.0,1.003024202665013,-10.162302600004494,1.0,0.0,0.0 -28,14.0,4.563923456975886,2.5,0.0,0.0,0.9993984391099234,-10.204107535056284,1.0,0.0,0.0 -28,15.0,1.9480161096848296,1.8,0.0,0.0,1.00485124088524,-9.988369797395816,1.0,0.0,0.0 -28,16.0,5.009184282046705,5.8,0.0,0.0,1.001809570276737,-10.206704049569002,1.0,0.0,0.0 -28,17.0,1.781043300283273,0.9,0.0,0.0,0.992746991360945,-10.544433663035118,1.0,0.0,0.0 -28,18.0,5.287472297715967,3.4,0.0,0.0,0.9911282960924176,-10.64648171587958,1.0,0.0,0.0 -28,19.0,1.2244672689447502,0.7,0.0,0.0,0.9944190045351065,-10.558188258391542,1.0,0.0,0.0 -28,20.0,9.74008054842415,11.2,0.0,0.0,0.995883598100908,-10.374840499864776,1.0,0.0,0.0 -28,21.0,0.0,0.0,0.0,0.0,0.9961807628565904,-10.380705037487678,1.0,0.0,0.0 -28,22.0,1.781043300283273,1.6,0.0,0.0,0.9900964936626534,-10.451751959286517,1.0,0.0,0.0 -28,23.0,4.842211472645148,6.7,0.0,0.0,0.9844772471353024,-10.632009247479727,1.0,0.0,0.0 -28,24.0,0.0,0.0,0.0,0.0,0.9744636525184456,-10.688555634728376,1.0,0.0,0.0 -28,25.0,1.9480161096848296,2.3,0.0,0.0,0.960198858556208,-10.783546303422217,1.0,0.0,0.0 -28,26.0,0.0,0.0,0.0,0.0,0.9754916855537183,-10.643487837321118,1.0,0.0,0.0 -28,27.0,0.0,0.0,0.0,0.0,0.9574389785197664,-8.804885467402533,1.0,0.0,0.0 -28,28.0,1.3357824752124543,0.9,0.0,0.0,0.9613950717373344,-11.307894482821132,1.0,0.0,0.0 -28,29.0,5.899705932188341,1.9,0.0,0.0,0.9536934274803948,-11.806208428849269,1.0,0.0,0.0 -29,0.0,0.0,0.0,165.31052682579636,0.0090429379441481,1.0,0.0,0.0,0.0,1.0 -29,1.0,12.077699880045945,12.7,0.0,0.0,0.9782225605254478,-3.943736940474008,0.0,1.0,0.0 -29,2.0,1.3357824752124543,1.2,0.0,0.0,0.9780835870482876,-4.540219732981128,1.0,0.0,0.0 -29,3.0,4.229977838172774,1.6,0.0,0.0,0.9723232961997016,-5.5734482120633055,1.0,0.0,0.0 -29,4.0,52.42946215208885,19.0,7.810025500487482e-10,39.991183970545606,0.963957999184802,-12.223637138859,0.0,1.0,0.0 -29,5.0,0.0,0.0,0.0,0.0,0.975105794651643,-6.274260665098437,1.0,0.0,0.0 -29,6.0,12.68993351451832,10.9,0.0,0.0,0.945469898845613,-12.860216892256693,1.0,0.0,0.0 -29,7.0,16.697280940155682,30.0,2.2401057790530286e-09,33.357779519816646,0.974942018419111,-6.732946928268385,0.0,1.0,0.0 -29,8.0,0.0,0.0,0.0,0.0,1.0285150931050973,-6.274260664852231,1.0,0.0,0.0 -29,9.0,3.228140981763432,2.0,0.0,0.0,0.9975342137206916,-11.138620049224508,1.0,0.0,0.0 -29,10.0,0.0,0.0,2.118541204124723e-09,16.039681176841384,1.0599894963539849,-6.274260664620646,0.0,1.0,0.0 -29,11.0,6.233651550991455,7.5,0.0,0.0,1.0186811025456264,-9.90775955411917,1.0,0.0,0.0 -29,12.0,0.0,0.0,2.448664546528266e-09,15.335300318264466,1.0393379263761846,-9.907759553933651,0.0,1.0,0.0 -29,13.0,3.450771394298841,1.6,0.0,0.0,1.0053963462362796,-10.448871831911134,1.0,0.0,0.0 -29,14.0,4.563923456975886,2.5,0.0,0.0,0.9994889409443114,-10.492226222933906,1.0,0.0,0.0 -29,15.0,1.9480161096848296,1.8,0.0,0.0,1.0028034337375071,-10.513071389992405,1.0,0.0,0.0 -29,16.0,5.009184282046705,5.8,0.0,0.0,0.9949368973454782,-11.050705821369617,1.0,0.0,0.0 -29,17.0,1.781043300283273,0.9,0.0,0.0,0.9894416057615092,-11.073646336071782,1.0,0.0,0.0 -29,18.0,5.287472297715967,3.4,0.0,0.0,0.985840434705122,-11.32032631068606,1.0,0.0,0.0 -29,19.0,1.2244672689447502,0.7,0.0,0.0,0.9881048744253074,-11.30664951325191,1.0,0.0,0.0 -29,20.0,9.74008054842415,11.2,0.0,0.0,0.9891813268176044,-11.27427638935487,1.0,0.0,0.0 -29,21.0,0.0,0.0,0.0,0.0,0.990321170831128,-11.255948543503449,1.0,0.0,0.0 -29,22.0,1.781043300283273,1.6,0.0,0.0,0.9852097898506876,-10.637673783440103,1.0,0.0,0.0 -29,23.0,4.842211472645148,6.7,0.0,0.0,0.9729630264256298,-10.68126059987011,1.0,0.0,0.0 -29,24.0,0.0,0.0,0.0,0.0,0.97582015203368,-10.014575000201996,1.0,0.0,0.0 -29,25.0,1.9480161096848296,2.3,0.0,0.0,0.9615757883120052,-10.109297785842625,1.0,0.0,0.0 -29,26.0,0.0,0.0,0.0,0.0,0.9846171798570456,-9.508557377903902,1.0,0.0,0.0 -29,27.0,0.0,0.0,0.0,0.0,0.9721502045319972,-6.698842188112907,1.0,0.0,0.0 -29,28.0,1.3357824752124543,0.9,0.0,0.0,0.9706591419766424,-10.160532368774758,1.0,0.0,0.0 -29,29.0,5.899705932188341,1.9,0.0,0.0,0.9630334002703336,-10.649313443410035,1.0,0.0,0.0 -30,0.0,0.0,0.0,165.19647053898805,0.0008510456150467,1.0,0.0,0.0,0.0,1.0 -30,1.0,12.077699880045945,12.7,9.103979644573532e-07,8.889097405890425,0.9789081372207264,-3.9676054119739153,0.0,1.0,0.0 -30,2.0,1.3357824752124543,1.2,0.0,0.0,0.976126509353872,-4.469080062356244,1.0,0.0,0.0 -30,3.0,4.229977838172774,1.6,0.0,0.0,0.969903365778058,-5.485850410892946,1.0,0.0,0.0 -30,4.0,52.42946215208885,19.0,-2.0593093737841973e-09,37.08911716720891,0.9586241691743662,-12.202362069352096,0.0,1.0,0.0 -30,5.0,0.0,0.0,0.0,0.0,0.9702330609297972,-6.298604891319992,1.0,0.0,0.0 -30,6.0,12.68993351451832,10.9,0.0,0.0,0.9400152171052998,-12.8458917147629,1.0,0.0,0.0 -30,7.0,16.697280940155682,30.0,-6.013231709836225e-10,24.11145040218321,0.9668917322283022,-6.681683863790046,0.0,1.0,0.0 -30,8.0,0.0,0.0,0.0,0.0,1.01769105776847,-8.291820232018702,1.0,0.0,0.0 -30,9.0,3.228140981763432,2.0,0.0,0.0,1.0093549459087217,-9.327708533283758,1.0,0.0,0.0 -30,10.0,0.0,0.0,-6.197817999306923e-10,21.56063616808781,1.059998770274594,-8.291820232087172,0.0,1.0,0.0 -30,11.0,6.233651550991455,7.5,0.0,0.0,1.017507639980216,-8.950464785958292,1.0,0.0,0.0 -30,12.0,0.0,0.0,-5.187780125456823e-10,11.286839051749272,1.0328072753045217,-8.950464785997891,0.0,1.0,0.0 -30,13.0,3.450771394298841,1.6,0.0,0.0,1.006076886704298,-9.43456576410454,1.0,0.0,0.0 -30,14.0,4.563923456975886,2.5,0.0,0.0,1.0023594083957612,-9.4629216901743,1.0,0.0,0.0 -30,15.0,1.9480161096848296,1.8,0.0,0.0,1.0078746091795303,-9.219414341012564,1.0,0.0,0.0 -30,16.0,5.009184282046705,5.8,0.0,0.0,1.0045135573087312,-9.391653352699551,1.0,0.0,0.0 -30,17.0,1.781043300283273,0.9,0.0,0.0,0.99560646287543,-9.767878189343428,1.0,0.0,0.0 -30,18.0,5.287472297715967,3.4,0.0,0.0,0.9939194176140196,-9.849396984593284,1.0,0.0,0.0 -30,19.0,1.2244672689447502,0.7,0.0,0.0,0.9971632246915176,-9.751077707192142,1.0,0.0,0.0 -30,20.0,9.74008054842415,11.2,0.0,0.0,0.9983805803276492,-9.550195780584955,1.0,0.0,0.0 -30,21.0,0.0,0.0,0.0,0.0,0.998641428322338,-9.559956114279554,1.0,0.0,0.0 -30,22.0,1.781043300283273,1.6,0.0,0.0,0.9926207077206274,-9.696966321606164,1.0,0.0,0.0 -30,23.0,4.842211472645148,6.7,0.0,0.0,0.9863983116544364,-9.860007480614804,1.0,0.0,0.0 -30,24.0,0.0,0.0,0.0,0.0,0.9746854912411776,-9.984518524314336,1.0,0.0,0.0 -30,25.0,1.9480161096848296,2.3,0.0,0.0,0.9604240424672906,-10.07946530660375,1.0,0.0,0.0 -30,26.0,0.0,0.0,0.0,0.0,0.9877726578654336,-8.273415254244476,1.0,0.0,0.0 -30,27.0,0.0,0.0,0.0,0.0,0.9681833103224956,-6.588434997556339,1.0,0.0,0.0 -30,28.0,1.3357824752124543,0.9,0.0,0.0,0.9738618878566748,-8.921173050267882,1.0,0.0,0.0 -30,29.0,5.899705932188341,1.9,0.0,0.0,0.9662620347834934,-9.406722165894188,1.0,0.0,0.0 -31,0.0,0.0,0.0,115.671243183102,1.5930293528754191e-06,1.0,0.0,0.0,0.0,1.0 -31,1.0,12.077699880045945,12.7,47.65662428261312,14.013384511426786,0.9855774719835512,-2.363379880512684,0.0,1.0,0.0 -31,2.0,1.3357824752124543,1.2,0.0,0.0,0.9793467863093414,-4.21275123405576,1.0,0.0,0.0 -31,3.0,4.229977838172774,1.6,0.0,0.0,0.973845562961252,-5.166748950817822,1.0,0.0,0.0 -31,4.0,52.42946215208885,19.0,0.0,0.0,0.9400000006160496,-7.441308144616314,0.0,1.0,0.0 -31,5.0,0.0,0.0,0.0,0.0,0.9729306492105182,-6.160089835458071,1.0,0.0,0.0 -31,6.0,12.68993351451832,10.9,0.0,0.0,0.952816629966842,-6.986948714459685,1.0,0.0,0.0 -31,7.0,16.697280940155682,30.0,-2.529402676213129e-09,39.9999962172737,0.9754481964584976,-6.650642105645599,0.0,1.0,0.0 -31,8.0,0.0,0.0,0.0,0.0,1.0230195186958733,-7.888809047232168,1.0,0.0,0.0 -31,9.0,3.228140981763432,2.0,0.0,0.0,1.0187406237068268,-8.781466609946959,1.0,0.0,0.0 -31,10.0,0.0,0.0,-5.8636436450797835e-09,18.84581547675282,1.0599999872461463,-7.888809047876578,0.0,1.0,0.0 -31,11.0,6.233651550991455,7.5,0.0,0.0,1.0326579817782835,-8.738372700418992,1.0,0.0,0.0 -31,12.0,0.0,0.0,-6.577816620545615e-09,20.701798959214692,1.059999980896425,-8.738372700901019,0.0,1.0,0.0 -31,13.0,3.450771394298841,1.6,0.0,0.0,0.995737231636336,-9.693427826841033,1.0,0.0,0.0 -31,14.0,4.563923456975886,2.5,0.0,0.0,1.0066106027209674,-9.501634109711429,1.0,0.0,0.0 -31,15.0,1.9480161096848296,1.8,0.0,0.0,1.0208249265500475,-8.84970304893497,1.0,0.0,0.0 -31,16.0,5.009184282046705,5.8,0.0,0.0,1.014989677180414,-8.902755098714321,1.0,0.0,0.0 -31,17.0,1.781043300283273,0.9,0.0,0.0,0.9892408074534964,-10.12485895872232,1.0,0.0,0.0 -31,18.0,5.287472297715967,3.4,0.0,0.0,0.981309903996088,-10.399832866245456,1.0,0.0,0.0 -31,19.0,1.2244672689447502,0.7,0.0,0.0,1.0161713205349852,-8.886843359819279,1.0,0.0,0.0 -31,20.0,9.74008054842415,11.2,0.0,0.0,1.0078985845763666,-8.999289521598415,1.0,0.0,0.0 -31,21.0,0.0,0.0,0.0,0.0,1.0081661116506324,-9.008706244262292,1.0,0.0,0.0 -31,22.0,1.781043300283273,1.6,0.0,0.0,0.9992713271176428,-9.481364186876863,1.0,0.0,0.0 -31,23.0,4.842211472645148,6.7,0.0,0.0,0.9961639059865196,-9.301620799191364,1.0,0.0,0.0 -31,24.0,0.0,0.0,0.0,0.0,0.988851654094138,-8.992546439034014,1.0,0.0,0.0 -31,25.0,1.9480161096848296,2.3,0.0,0.0,0.9748005737211404,-9.084752789625393,1.0,0.0,0.0 -31,26.0,0.0,0.0,0.0,0.0,0.9913195891970852,-8.718305543820453,1.0,0.0,0.0 -31,27.0,0.0,0.0,0.0,0.0,0.9718586128057126,-6.533048543771176,1.0,0.0,0.0 -31,28.0,1.3357824752124543,0.9,0.0,0.0,0.9774615593027932,-9.36137189411934,1.0,0.0,0.0 -31,29.0,5.899705932188341,1.9,0.0,0.0,0.969890591105632,-9.843326714315122,1.0,0.0,0.0 -32,0.0,0.0,0.0,164.78571013668116,0.0006433270719696,1.0,0.0,0.0,0.0,1.0 -32,1.0,12.077699880045945,12.7,0.0,0.0,0.9784816211672503,-3.74870560841384,0.0,1.0,0.0 -32,2.0,1.3357824752124543,1.2,0.0,0.0,0.97820559047646,-5.041400045561828,1.0,0.0,0.0 -32,3.0,4.229977838172774,1.6,0.0,0.0,0.9725445964653334,-6.195268551488183,1.0,0.0,0.0 -32,4.0,52.42946215208885,19.0,-6.212728078165192e-09,21.47679383538175,0.95895383587912,-9.059201469509173,0.0,1.0,0.0 -32,5.0,0.0,0.0,0.0,0.0,0.9725813878898456,-7.31839885986197,1.0,0.0,0.0 -32,6.0,12.68993351451832,10.9,0.0,0.0,0.9604944242829248,-8.31597900041004,1.0,0.0,0.0 -32,7.0,16.697280940155682,30.0,-1.908464520092133e-08,37.12051951347095,0.9740391634407256,-7.790707620557738,0.0,1.0,0.0 -32,8.0,0.0,0.0,0.0,0.0,1.0218668138196814,-9.09849428981856,1.0,0.0,0.0 -32,9.0,3.228140981763432,2.0,0.0,0.0,1.0165822480688431,-10.01929583226166,1.0,0.0,0.0 -32,10.0,0.0,0.0,-1.4456886734243309e-08,19.43057210995898,1.059994911921084,-9.098494291409166,0.0,1.0,0.0 -32,11.0,6.233651550991455,7.5,0.0,0.0,1.033283308169822,-9.692777514880287,1.0,0.0,0.0 -32,12.0,0.0,0.0,-7.404173110447011e-09,20.16238658810434,1.0599150106550073,-9.692777515422584,0.0,1.0,0.0 -32,13.0,3.450771394298841,1.6,0.0,0.0,1.021069375936052,-10.152530506283544,1.0,0.0,0.0 -32,14.0,4.563923456975886,2.5,0.0,0.0,1.016551568426809,-10.148943818625396,1.0,0.0,0.0 -32,15.0,1.9480161096848296,1.8,0.0,0.0,1.0200542443312262,-9.919497855605094,1.0,0.0,0.0 -32,16.0,5.009184282046705,5.8,0.0,0.0,1.0133210004256137,-10.090081455045029,1.0,0.0,0.0 -32,17.0,1.781043300283273,0.9,0.0,0.0,1.0074491198858335,-10.44685559089078,1.0,0.0,0.0 -32,18.0,5.287472297715967,3.4,0.0,0.0,1.0043434931754731,-10.526796535156617,1.0,0.0,0.0 -32,19.0,1.2244672689447502,0.7,0.0,0.0,1.0067961237938978,-10.43035570243825,1.0,0.0,0.0 -32,20.0,9.74008054842415,11.2,0.0,0.0,1.0063552879654392,-10.202977645850533,1.0,0.0,0.0 -32,21.0,0.0,0.0,0.0,0.0,1.0068279387143713,-10.20144167355483,1.0,0.0,0.0 -32,22.0,1.781043300283273,1.6,0.0,0.0,1.005663324490822,-10.30370905683264,1.0,0.0,0.0 -32,23.0,4.842211472645148,6.7,0.0,0.0,0.99780244929782,-10.364093212178124,1.0,0.0,0.0 -32,24.0,0.0,0.0,0.0,0.0,0.9891502932340818,-10.085552906573234,1.0,0.0,0.0 -32,25.0,1.9480161096848296,2.3,0.0,0.0,0.9751035799141576,-10.177702774693604,1.0,0.0,0.0 -32,26.0,0.0,0.0,0.0,0.0,0.990793364736318,-9.831772474155184,1.0,0.0,0.0 -32,27.0,0.0,0.0,0.0,0.0,0.971297390436028,-7.683131495879166,1.0,0.0,0.0 -32,28.0,1.3357824752124543,0.9,0.0,0.0,0.9400013925281024,-12.19655156073752,1.0,0.0,0.0 -32,29.0,5.899705932188341,1.9,0.0,0.0,0.9477596374835136,-11.945988828039074,1.0,0.0,0.0 -33,0.0,0.0,0.0,164.59237164379,0.0006627089343957,1.0,0.0,0.0,0.0,1.0 -33,1.0,12.077699880045945,12.7,8.32594017566061e-07,10.76415697698924,0.9799967135483186,-3.77900212943075,0.0,1.0,0.0 -33,2.0,1.3357824752124543,1.2,0.0,0.0,0.9738846274837932,-4.95591821881876,1.0,0.0,0.0 -33,3.0,4.229977838172774,1.6,0.0,0.0,0.9672063713216869,-6.091355164219103,1.0,0.0,0.0 -33,4.0,52.42946215208885,19.0,-3.51541685506674e-10,24.33704203696473,0.9597594247476025,-9.096450273450303,0.0,1.0,0.0 -33,5.0,0.0,0.0,0.0,0.0,0.96680815374658,-7.230586493981262,1.0,0.0,0.0 -33,6.0,12.68993351451832,10.9,0.0,0.0,0.9573965084180812,-8.277694548058129,1.0,0.0,0.0 -33,7.0,16.697280940155682,30.0,1.5711020967349118e-11,30.629386336532555,0.9658016661737824,-7.668049555793464,0.0,1.0,0.0 -33,8.0,0.0,0.0,0.0,0.0,1.015399149334829,-9.075436934617482,1.0,0.0,0.0 -33,9.0,3.228140981763432,2.0,0.0,0.0,1.0064295366207263,-10.033631688565002,1.0,0.0,0.0 -33,10.0,0.0,0.0,9.75957858094898e-10,22.7192682643809,1.059981147877481,-9.075436934509415,0.0,1.0,0.0 -33,11.0,6.233651550991455,7.5,0.0,0.0,1.0135815214903747,-9.557602116053054,1.0,0.0,0.0 -33,12.0,0.0,0.0,-1.0332000436741388e-11,10.089903489505126,1.027331575727061,-9.55760211605385,0.0,1.0,0.0 -33,13.0,3.450771394298841,1.6,0.0,0.0,1.0024366530634938,-10.03777064910236,1.0,0.0,0.0 -33,14.0,4.563923456975886,2.5,0.0,0.0,0.9990758863836688,-10.06628743653888,1.0,0.0,0.0 -33,15.0,1.9480161096848296,1.8,0.0,0.0,1.004295015890441,-9.87182800586669,1.0,0.0,0.0 -33,16.0,5.009184282046705,5.8,0.0,0.0,1.001389911322768,-10.080739167789964,1.0,0.0,0.0 -33,17.0,1.781043300283273,0.9,0.0,0.0,0.9924117401581674,-10.40960128406794,1.0,0.0,0.0 -33,18.0,5.287472297715967,3.4,0.0,0.0,0.9907864584223453,-10.513367654787755,1.0,0.0,0.0 -33,19.0,1.2244672689447502,0.7,0.0,0.0,0.9940750626857054,-10.425880495870317,1.0,0.0,0.0 -33,20.0,9.74008054842415,11.2,0.0,0.0,0.9958027750250408,-10.215066613166927,1.0,0.0,0.0 -33,21.0,0.0,0.0,0.0,0.0,0.9961883360294284,-10.21143002438034,1.0,0.0,0.0 -33,22.0,1.781043300283273,1.6,0.0,0.0,0.9905275709284328,-10.249512659092115,1.0,0.0,0.0 -33,23.0,4.842211472645148,6.7,0.0,0.0,0.9858935944160964,-10.342141732707637,1.0,0.0,0.0 -33,24.0,0.0,0.0,0.0,0.0,0.9794919768311332,-10.065374976065788,1.0,0.0,0.0 -33,25.0,1.9480161096848296,2.3,0.0,0.0,0.965302617687537,-10.159378340960918,1.0,0.0,0.0 -33,26.0,0.0,0.0,0.0,0.0,0.9826059819835408,-9.808695367244743,1.0,0.0,0.0 -33,27.0,0.0,0.0,0.0,0.0,0.9647442490444526,-7.592573600435067,1.0,0.0,0.0 -33,28.0,1.3357824752124543,0.9,0.0,0.0,0.9686176442765682,-10.463379900079524,1.0,0.0,0.0 -33,29.0,5.899705932188341,1.9,0.0,0.0,0.9609753069398153,-10.954238006191678,1.0,0.0,0.0 -34,0.0,0.0,0.0,164.59237164379,0.0006627089343957,1.0,0.0,0.0,0.0,1.0 -34,1.0,12.077699880045945,12.7,8.32594017566061e-07,10.76415697698924,0.9799967135483186,-3.77900212943075,0.0,1.0,0.0 -34,2.0,1.3357824752124543,1.2,0.0,0.0,0.9738846274837932,-4.95591821881876,1.0,0.0,0.0 -34,3.0,4.229977838172774,1.6,0.0,0.0,0.9672063713216869,-6.091355164219103,1.0,0.0,0.0 -34,4.0,52.42946215208885,19.0,-3.51541685506674e-10,24.33704203696473,0.9597594247476025,-9.096450273450303,0.0,1.0,0.0 -34,5.0,0.0,0.0,0.0,0.0,0.96680815374658,-7.230586493981262,1.0,0.0,0.0 -34,6.0,12.68993351451832,10.9,0.0,0.0,0.9573965084180812,-8.277694548058129,1.0,0.0,0.0 -34,7.0,16.697280940155682,30.0,1.5711020967349118e-11,30.629386336532555,0.9658016661737824,-7.668049555793464,0.0,1.0,0.0 -34,8.0,0.0,0.0,0.0,0.0,1.015399149334829,-9.075436934617482,1.0,0.0,0.0 -34,9.0,3.228140981763432,2.0,0.0,0.0,1.0064295366207263,-10.033631688565002,1.0,0.0,0.0 -34,10.0,0.0,0.0,9.75957858094898e-10,22.7192682643809,1.059981147877481,-9.075436934509415,0.0,1.0,0.0 -34,11.0,6.233651550991455,7.5,0.0,0.0,1.0135815214903747,-9.557602116053054,1.0,0.0,0.0 -34,12.0,0.0,0.0,-1.0332000436741388e-11,10.089903489505126,1.027331575727061,-9.55760211605385,0.0,1.0,0.0 -34,13.0,3.450771394298841,1.6,0.0,0.0,1.0024366530634938,-10.03777064910236,1.0,0.0,0.0 -34,14.0,4.563923456975886,2.5,0.0,0.0,0.9990758863836688,-10.06628743653888,1.0,0.0,0.0 -34,15.0,1.9480161096848296,1.8,0.0,0.0,1.004295015890441,-9.87182800586669,1.0,0.0,0.0 -34,16.0,5.009184282046705,5.8,0.0,0.0,1.001389911322768,-10.080739167789964,1.0,0.0,0.0 -34,17.0,1.781043300283273,0.9,0.0,0.0,0.9924117401581674,-10.40960128406794,1.0,0.0,0.0 -34,18.0,5.287472297715967,3.4,0.0,0.0,0.9907864584223453,-10.513367654787755,1.0,0.0,0.0 -34,19.0,1.2244672689447502,0.7,0.0,0.0,0.9940750626857054,-10.425880495870317,1.0,0.0,0.0 -34,20.0,9.74008054842415,11.2,0.0,0.0,0.9958027750250408,-10.215066613166927,1.0,0.0,0.0 -34,21.0,0.0,0.0,0.0,0.0,0.9961883360294284,-10.21143002438034,1.0,0.0,0.0 -34,22.0,1.781043300283273,1.6,0.0,0.0,0.9905275709284328,-10.249512659092115,1.0,0.0,0.0 -34,23.0,4.842211472645148,6.7,0.0,0.0,0.9858935944160964,-10.342141732707637,1.0,0.0,0.0 -34,24.0,0.0,0.0,0.0,0.0,0.9794919768311332,-10.065374976065788,1.0,0.0,0.0 -34,25.0,1.9480161096848296,2.3,0.0,0.0,0.965302617687537,-10.159378340960918,1.0,0.0,0.0 -34,26.0,0.0,0.0,0.0,0.0,0.9826059819835408,-9.808695367244743,1.0,0.0,0.0 -34,27.0,0.0,0.0,0.0,0.0,0.9647442490444526,-7.592573600435067,1.0,0.0,0.0 -34,28.0,1.3357824752124543,0.9,0.0,0.0,0.9686176442765682,-10.463379900079524,1.0,0.0,0.0 -34,29.0,5.899705932188341,1.9,0.0,0.0,0.9609753069398153,-10.954238006191678,1.0,0.0,0.0 -35,0.0,0.0,0.0,110.84081975226488,1.7638893901050778e-06,1.0,0.0,0.0,0.0,1.0 -35,1.0,12.077699880045945,12.7,52.26682925234949,14.943276658387106,0.9862678843017336,-2.233991671970927,0.0,1.0,0.0 -35,2.0,1.3357824752124543,1.2,0.0,0.0,0.9795531606896392,-4.1144649412805,1.0,0.0,0.0 -35,3.0,4.229977838172774,1.6,0.0,0.0,0.974091419525368,-5.044769603970695,1.0,0.0,0.0 -35,4.0,52.42946215208885,19.0,0.0,0.0,0.9400000006359124,-7.326685018756499,0.0,1.0,0.0 -35,5.0,0.0,0.0,0.0,0.0,0.9722112838381,-6.058659336347809,1.0,0.0,0.0 -35,6.0,12.68993351451832,10.9,0.0,0.0,0.9523850206249996,-6.880062653222181,1.0,0.0,0.0 -35,7.0,16.697280940155682,30.0,3.307389961353281e-09,39.999996033973375,0.9746321328459072,-6.55109662728858,0.0,1.0,0.0 -35,8.0,0.0,0.0,0.0,0.0,1.0203903756719257,-7.908877344491853,1.0,0.0,0.0 -35,9.0,3.228140981763432,2.0,0.0,0.0,1.0137727511756771,-8.868229935666111,1.0,0.0,0.0 -35,10.0,0.0,0.0,7.365214011140103e-09,20.18566742457299,1.0599999876823123,-7.908877343680333,0.0,1.0,0.0 -35,11.0,6.233651550991455,7.5,0.0,0.0,1.0361792273012689,-8.315426083135412,1.0,0.0,0.0 -35,12.0,0.0,0.0,2.9806956400446147e-10,18.035712275639614,1.059999979816995,-8.315426083113644,0.0,1.0,0.0 -35,13.0,3.450771394298841,1.6,0.0,0.0,1.0082389391859128,-9.107967767964231,1.0,0.0,0.0 -35,14.0,4.563923456975886,2.5,0.0,0.0,1.0189773495573706,-8.920851051832146,1.0,0.0,0.0 -35,15.0,1.9480161096848296,1.8,0.0,0.0,1.0203297730662049,-8.626380470908309,1.0,0.0,0.0 -35,16.0,5.009184282046705,5.8,0.0,0.0,1.0115184679982785,-8.898546676790849,1.0,0.0,0.0 -35,17.0,1.781043300283273,0.9,0.0,0.0,1.0080264415491542,-9.244603835567416,1.0,0.0,0.0 -35,18.0,5.287472297715967,3.4,0.0,0.0,1.0038261213637611,-9.34042409025344,1.0,0.0,0.0 -35,19.0,1.2244672689447502,0.7,0.0,0.0,1.0057028196463962,-9.252083346577304,1.0,0.0,0.0 -35,20.0,9.74008054842415,11.2,0.0,0.0,1.0016770881453334,-9.083818622938129,1.0,0.0,0.0 -35,21.0,0.0,0.0,0.0,0.0,1.0015691481553648,-9.091381127267166,1.0,0.0,0.0 -35,22.0,1.781043300283273,1.6,0.0,0.0,0.977696281522471,-9.49126742771944,1.0,0.0,0.0 -35,23.0,4.842211472645148,6.7,0.0,0.0,0.9845233045200809,-9.330741680912734,1.0,0.0,0.0 -35,24.0,0.0,0.0,0.0,0.0,0.9811471109050718,-9.025293267187148,1.0,0.0,0.0 -35,25.0,1.9480161096848296,2.3,0.0,0.0,0.9669824052099596,-9.1189750310046,1.0,0.0,0.0 -35,26.0,0.0,0.0,0.0,0.0,0.9861180862255696,-8.748048478474278,1.0,0.0,0.0 -35,27.0,0.0,0.0,0.0,0.0,0.9705716966583564,-6.437924439620252,1.0,0.0,0.0 -35,28.0,1.3357824752124543,0.9,0.0,0.0,0.9721825724993016,-9.398012409754491,1.0,0.0,0.0 -35,29.0,5.899705932188341,1.9,0.0,0.0,0.9645691673770852,-9.885252136857323,1.0,0.0,0.0 -36,0.0,0.0,0.0,165.42410818284245,0.0046177496563437,1.0,0.0,0.0,0.0,1.0 -36,1.0,12.077699880045945,12.7,6.442292111731263e-06,6.296763952640092,0.9787148703528,-3.83230984894757,0.0,1.0,0.0 -36,2.0,1.3357824752124543,1.2,0.0,0.0,0.9770409090765976,-4.87151475245232,1.0,0.0,0.0 -36,3.0,4.229977838172774,1.6,0.0,0.0,0.9710828565882558,-5.985027698643304,1.0,0.0,0.0 -36,4.0,52.42946215208885,19.0,7.003171912777695e-09,24.610092582755385,0.9586361384225984,-9.326300474746786,0.0,1.0,0.0 -36,5.0,0.0,0.0,0.0,0.0,0.965210846011068,-7.616944778148015,1.0,0.0,0.0 -36,6.0,12.68993351451832,10.9,0.0,0.0,0.9559593976027388,-8.600940923995632,1.0,0.0,0.0 -36,7.0,16.697280940155682,30.0,6.062177627905541e-09,30.44547902518586,0.9640067266700468,-8.077972520376237,0.0,1.0,0.0 -36,8.0,0.0,0.0,0.0,0.0,1.0092473191072882,-11.057876920406152,1.0,0.0,0.0 -36,9.0,3.228140981763432,2.0,0.0,0.0,0.9975539455240172,-12.857421956388205,1.0,0.0,0.0 -36,10.0,0.0,0.0,7.394810549239081e-09,23.9439332522755,1.0563921064097914,-11.05787691957956,0.0,1.0,0.0 -36,11.0,6.233651550991455,7.5,0.0,0.0,0.9774332181201072,-15.49604689728342,1.0,0.0,0.0 -36,12.0,0.0,0.0,3.6176040423961406e-09,18.09516881071896,1.0026982821829031,-15.496046896987332,0.0,1.0,0.0 -36,13.0,3.450771394298841,1.6,0.0,0.0,0.968226884218968,-15.568995073276826,1.0,0.0,0.0 -36,14.0,4.563923456975886,2.5,0.0,0.0,0.96998845216841,-15.220102753323658,1.0,0.0,0.0 -36,15.0,1.9480161096848296,1.8,0.0,0.0,0.9815161023405614,-14.51966125143394,1.0,0.0,0.0 -36,16.0,5.009184282046705,5.8,0.0,0.0,0.9873505097786608,-13.452874286139124,1.0,0.0,0.0 -36,17.0,1.781043300283273,0.9,0.0,0.0,0.9702425215559723,-14.752253385536331,1.0,0.0,0.0 -36,18.0,5.287472297715967,3.4,0.0,0.0,0.9728183008301582,-14.3712885287732,1.0,0.0,0.0 -36,19.0,1.2244672689447502,0.7,0.0,0.0,0.9784453722039348,-14.025538924644716,1.0,0.0,0.0 -36,20.0,9.74008054842415,11.2,0.0,0.0,0.9860540552702944,-13.102365665974158,1.0,0.0,0.0 -36,21.0,0.0,0.0,0.0,0.0,0.9861929513533436,-13.117693155148192,1.0,0.0,0.0 -36,22.0,1.781043300283273,1.6,0.0,0.0,0.9678212858600628,-14.546639971355296,1.0,0.0,0.0 -36,23.0,4.842211472645148,6.7,0.0,0.0,0.972004597880979,-13.487061505358728,1.0,0.0,0.0 -36,24.0,0.0,0.0,0.0,0.0,0.9728525460885364,-12.258467066470317,1.0,0.0,0.0 -36,25.0,1.9480161096848296,2.3,0.0,0.0,0.9585634097855722,-12.35377738146563,1.0,0.0,0.0 -36,26.0,0.0,0.0,0.0,0.0,0.98037078729461,-11.40717803086084,1.0,0.0,0.0 -36,27.0,0.0,0.0,0.0,0.0,0.9623684617089688,-8.11419801762137,1.0,0.0,0.0 -36,28.0,1.3357824752124543,0.9,0.0,0.0,0.9663486158816884,-12.06489385065804,1.0,0.0,0.0 -36,29.0,5.899705932188341,1.9,0.0,0.0,0.95868774698214,-12.558076092089363,1.0,0.0,0.0 -37,0.0,0.0,0.0,164.59237164379,0.0006627089343957,1.0,0.0,0.0,0.0,1.0 -37,1.0,12.077699880045945,12.7,8.32594017566061e-07,10.76415697698924,0.9799967135483186,-3.77900212943075,0.0,1.0,0.0 -37,2.0,1.3357824752124543,1.2,0.0,0.0,0.9738846274837932,-4.95591821881876,1.0,0.0,0.0 -37,3.0,4.229977838172774,1.6,0.0,0.0,0.9672063713216869,-6.091355164219103,1.0,0.0,0.0 -37,4.0,52.42946215208885,19.0,-3.51541685506674e-10,24.33704203696473,0.9597594247476025,-9.096450273450303,0.0,1.0,0.0 -37,5.0,0.0,0.0,0.0,0.0,0.96680815374658,-7.230586493981262,1.0,0.0,0.0 -37,6.0,12.68993351451832,10.9,0.0,0.0,0.9573965084180812,-8.277694548058129,1.0,0.0,0.0 -37,7.0,16.697280940155682,30.0,1.5711020967349118e-11,30.629386336532555,0.9658016661737824,-7.668049555793464,0.0,1.0,0.0 -37,8.0,0.0,0.0,0.0,0.0,1.015399149334829,-9.075436934617482,1.0,0.0,0.0 -37,9.0,3.228140981763432,2.0,0.0,0.0,1.0064295366207263,-10.033631688565002,1.0,0.0,0.0 -37,10.0,0.0,0.0,9.75957858094898e-10,22.7192682643809,1.059981147877481,-9.075436934509415,0.0,1.0,0.0 -37,11.0,6.233651550991455,7.5,0.0,0.0,1.0135815214903747,-9.557602116053054,1.0,0.0,0.0 -37,12.0,0.0,0.0,-1.0332000436741388e-11,10.089903489505126,1.027331575727061,-9.55760211605385,0.0,1.0,0.0 -37,13.0,3.450771394298841,1.6,0.0,0.0,1.0024366530634938,-10.03777064910236,1.0,0.0,0.0 -37,14.0,4.563923456975886,2.5,0.0,0.0,0.9990758863836688,-10.06628743653888,1.0,0.0,0.0 -37,15.0,1.9480161096848296,1.8,0.0,0.0,1.004295015890441,-9.87182800586669,1.0,0.0,0.0 -37,16.0,5.009184282046705,5.8,0.0,0.0,1.001389911322768,-10.080739167789964,1.0,0.0,0.0 -37,17.0,1.781043300283273,0.9,0.0,0.0,0.9924117401581674,-10.40960128406794,1.0,0.0,0.0 -37,18.0,5.287472297715967,3.4,0.0,0.0,0.9907864584223453,-10.513367654787755,1.0,0.0,0.0 -37,19.0,1.2244672689447502,0.7,0.0,0.0,0.9940750626857054,-10.425880495870317,1.0,0.0,0.0 -37,20.0,9.74008054842415,11.2,0.0,0.0,0.9958027750250408,-10.215066613166927,1.0,0.0,0.0 -37,21.0,0.0,0.0,0.0,0.0,0.9961883360294284,-10.21143002438034,1.0,0.0,0.0 -37,22.0,1.781043300283273,1.6,0.0,0.0,0.9905275709284328,-10.249512659092115,1.0,0.0,0.0 -37,23.0,4.842211472645148,6.7,0.0,0.0,0.9858935944160964,-10.342141732707637,1.0,0.0,0.0 -37,24.0,0.0,0.0,0.0,0.0,0.9794919768311332,-10.065374976065788,1.0,0.0,0.0 -37,25.0,1.9480161096848296,2.3,0.0,0.0,0.965302617687537,-10.159378340960918,1.0,0.0,0.0 -37,26.0,0.0,0.0,0.0,0.0,0.9826059819835408,-9.808695367244743,1.0,0.0,0.0 -37,27.0,0.0,0.0,0.0,0.0,0.9647442490444526,-7.592573600435067,1.0,0.0,0.0 -37,28.0,1.3357824752124543,0.9,0.0,0.0,0.9686176442765682,-10.463379900079524,1.0,0.0,0.0 -37,29.0,5.899705932188341,1.9,0.0,0.0,0.9609753069398153,-10.954238006191678,1.0,0.0,0.0 -38,0.0,0.0,0.0,165.6384722068678,0.0022687064750392,1.0,0.0,0.0,0.0,1.0 -38,1.0,12.077699880045945,12.7,2.074792925274153e-06,14.413863538980957,0.9797491813087008,-3.8609791307307537,0.0,1.0,0.0 -38,2.0,1.3357824752124543,1.2,0.0,0.0,0.9739632068935512,-4.824132166949782,1.0,0.0,0.0 -38,3.0,4.229977838172774,1.6,0.0,0.0,0.9672833663238352,-5.927626855450788,1.0,0.0,0.0 -38,4.0,52.42946215208885,19.0,-2.254077282253169e-09,28.16704658867377,0.959922506114647,-9.37947110072072,0.0,1.0,0.0 -38,5.0,0.0,0.0,0.0,0.0,0.9594537328221324,-7.539288345004706,1.0,0.0,0.0 -38,6.0,12.68993351451832,10.9,0.0,0.0,0.9530701634294296,-8.5750160323753,1.0,0.0,0.0 -38,7.0,16.697280940155682,30.0,-2.691253229680378e-09,39.99880608030204,0.9616370498006164,-8.069847609482508,0.0,1.0,0.0 -38,8.0,0.0,0.0,0.0,0.0,0.9717499846014924,-11.03551807814034,1.0,0.0,0.0 -38,9.0,3.228140981763432,2.0,0.0,0.0,0.9683214676137784,-12.907935561626775,1.0,0.0,0.0 -38,10.0,0.0,0.0,0.0,0.0,0.9717499846014924,-11.03551807814034,0.0,1.0,0.0 -38,11.0,6.233651550991455,7.5,0.0,0.0,0.955279976561891,-16.764550584151582,1.0,0.0,0.0 -38,12.0,0.0,0.0,-2.100884881010709e-09,21.95862409102902,0.9864445009697208,-16.76455058433041,0.0,1.0,0.0 -38,13.0,3.450771394298841,1.6,0.0,0.0,0.9448468842613328,-16.921301893246547,1.0,0.0,0.0 -38,14.0,4.563923456975886,2.5,0.0,0.0,0.9451496626923296,-16.609218860880624,1.0,0.0,0.0 -38,15.0,1.9480161096848296,1.8,0.0,0.0,0.9565651601035616,-15.257262856243374,1.0,0.0,0.0 -38,16.0,5.009184282046705,5.8,0.0,0.0,0.9590048737952914,-13.728095235607402,1.0,0.0,0.0 -38,17.0,1.781043300283273,0.9,0.0,0.0,0.9410239738652642,-16.797704643326767,1.0,0.0,0.0 -38,18.0,5.287472297715967,3.4,0.0,0.0,0.9484597011356728,-13.669696712561969,1.0,0.0,0.0 -38,19.0,1.2244672689447502,0.7,0.0,0.0,0.9527962409335956,-13.515028270668026,1.0,0.0,0.0 -38,20.0,9.74008054842415,11.2,0.0,0.0,0.9573665248968896,-13.229773022379844,1.0,0.0,0.0 -38,21.0,0.0,0.0,0.0,0.0,0.9577874819357852,-13.266334495331275,1.0,0.0,0.0 -38,22.0,1.781043300283273,1.6,0.0,0.0,0.9424623814919064,-15.54482733142554,1.0,0.0,0.0 -38,23.0,4.842211472645148,6.7,0.0,0.0,0.9464230842598044,-13.95517784365317,1.0,0.0,0.0 -38,24.0,0.0,0.0,0.0,0.0,0.9547668760151162,-12.622076857775127,1.0,0.0,0.0 -38,25.0,1.9480161096848296,2.3,0.0,0.0,0.940198577707401,-12.721089545370557,1.0,0.0,0.0 -38,26.0,0.0,0.0,0.0,0.0,0.9670872613537836,-11.70355920208186,1.0,0.0,0.0 -38,27.0,0.0,0.0,0.0,0.0,0.9563236540438484,-8.073441500521477,1.0,0.0,0.0 -38,28.0,1.3357824752124543,0.9,0.0,0.0,0.95286049119835,-12.379734177655935,1.0,0.0,0.0 -38,29.0,5.899705932188341,1.9,0.0,0.0,0.9450875499384144,-12.887079985740282,1.0,0.0,0.0 -39,0.0,0.0,0.0,164.9182587237852,0.0013475677519636,1.0,0.0,0.0,0.0,1.0 -39,1.0,12.077699880045945,12.7,1.1223981357382834e-06,23.599590282712317,0.9813212727381136,-3.817338372619469,0.0,1.0,0.0 -39,2.0,1.3357824752124543,1.2,0.0,0.0,0.969912468891572,-4.895795736529641,1.0,0.0,0.0 -39,3.0,4.229977838172774,1.6,0.0,0.0,0.9623024142353512,-6.01859854228208,1.0,0.0,0.0 -39,4.0,52.42946215208885,19.0,9.060085389461753e-10,30.18842767199804,0.9607969344984282,-9.171505699774029,0.0,1.0,0.0 -39,5.0,0.0,0.0,0.0,0.0,0.9556340231116648,-7.065188478879805,1.0,0.0,0.0 -39,6.0,12.68993351451832,10.9,0.0,0.0,0.9511812559319084,-8.208985288178026,1.0,0.0,0.0 -39,7.0,16.697280940155682,30.0,0.0,0.0,0.9428214168624964,-7.314692167163911,0.0,1.0,0.0 -39,8.0,0.0,0.0,0.0,0.0,1.0100452914415,-8.9386311692429,1.0,0.0,0.0 -39,9.0,3.228140981763432,2.0,0.0,0.0,1.002900467254403,-9.903810088828234,1.0,0.0,0.0 -39,10.0,0.0,0.0,1.923718925035128e-09,23.999813707115838,1.0572612582802006,-8.938631169028215,0.0,1.0,0.0 -39,11.0,6.233651550991455,7.5,0.0,0.0,1.0298727195218993,-9.445009546733788,1.0,0.0,0.0 -39,12.0,0.0,0.0,1.0465474874140043e-09,22.809352573927956,1.0599983270704998,-9.445009546656886,0.0,1.0,0.0 -39,13.0,3.450771394298841,1.6,0.0,0.0,1.0192092909832642,-9.867914597058682,1.0,0.0,0.0 -39,14.0,4.563923456975886,2.5,0.0,0.0,1.0164849086211782,-9.86077201234424,1.0,0.0,0.0 -39,15.0,1.9480161096848296,1.8,0.0,0.0,1.0120675003136252,-9.707883061335153,1.0,0.0,0.0 -39,16.0,5.009184282046705,5.8,0.0,0.0,1.0013982268087387,-9.953663806658689,1.0,0.0,0.0 -39,17.0,1.781043300283273,0.9,0.0,0.0,1.0025174836698174,-10.220287096317188,1.0,0.0,0.0 -39,18.0,5.287472297715967,3.4,0.0,0.0,0.9965453995425004,-10.33709669998001,1.0,0.0,0.0 -39,19.0,1.2244672689447502,0.7,0.0,0.0,0.9975167931710284,-10.257625297633597,1.0,0.0,0.0 -39,20.0,9.74008054842415,11.2,0.0,0.0,0.9902304680043114,-10.122833851001094,1.0,0.0,0.0 -39,21.0,0.0,0.0,0.0,0.0,0.9899831563799364,-10.12993966989924,1.0,0.0,0.0 -39,22.0,1.781043300283273,1.6,0.0,0.0,0.9639941458882242,-10.52002110021112,1.0,0.0,0.0 -39,23.0,4.842211472645148,6.7,0.0,0.0,0.9709183190431208,-10.354932302748065,1.0,0.0,0.0 -39,24.0,0.0,0.0,0.0,0.0,0.9646821823263344,-10.0251622392727,1.0,0.0,0.0 -39,25.0,1.9480161096848296,2.3,0.0,0.0,0.9502682892508124,-10.122118817424097,1.0,0.0,0.0 -39,26.0,0.0,0.0,0.0,0.0,0.9679989104547936,-9.732566781819656,1.0,0.0,0.0 -39,27.0,0.0,0.0,0.0,0.0,0.9507602242027344,-7.400856974951677,1.0,0.0,0.0 -39,28.0,1.3357824752124543,0.9,0.0,0.0,0.9537863782588304,-10.407450079162768,1.0,0.0,0.0 -39,29.0,5.899705932188341,1.9,0.0,0.0,0.946021236556276,-10.91380419695792,1.0,0.0,0.0 -40,0.0,0.0,0.0,165.15036126031202,0.0006195851012691,1.0,0.0,0.0,0.0,1.0 -40,1.0,12.077699880045945,12.7,6.189447789022377e-07,10.773134100033204,0.9792000859543892,-3.974587731647113,0.0,1.0,0.0 -40,2.0,1.3357824752124543,1.2,0.0,0.0,0.9752971265238138,-4.447858943591927,1.0,0.0,0.0 -40,3.0,4.229977838172774,1.6,0.0,0.0,0.9688789569740852,-5.459787698741801,1.0,0.0,0.0 -40,4.0,52.42946215208885,19.0,-1.5376933066228767e-09,36.94339057086589,0.9586282931761656,-12.202595314909937,0.0,1.0,0.0 -40,5.0,0.0,0.0,0.0,0.0,0.969603685026945,-6.30552640736647,1.0,0.0,0.0 -40,6.0,12.68993351451832,10.9,0.0,0.0,0.940019435014833,-12.846119540584509,1.0,0.0,0.0 -40,7.0,16.697280940155682,30.0,-4.826635602031265e-10,28.34105630805992,0.9677139979040424,-6.727275864904759,0.0,1.0,0.0 -40,8.0,0.0,0.0,0.0,0.0,1.012956335950938,-8.197339612466005,1.0,0.0,0.0 -40,9.0,3.228140981763432,2.0,0.0,0.0,1.0046743248268586,-9.184483072042116,1.0,0.0,0.0 -40,10.0,0.0,0.0,-4.772746778940288e-10,19.212928767955766,1.0509807175316082,-8.197339612519432,0.0,1.0,0.0 -40,11.0,6.233651550991455,7.5,0.0,0.0,1.0102030585012078,-8.798804010390654,1.0,0.0,0.0 -40,12.0,0.0,0.0,-3.9575570210717903e-10,7.513329875090108,1.020510315241321,-8.798804010421447,0.0,1.0,0.0 -40,13.0,3.450771394298841,1.6,0.0,0.0,0.9992515773480436,-9.268018951866493,1.0,0.0,0.0 -40,14.0,4.563923456975886,2.5,0.0,0.0,0.9961990786722138,-9.288007487345634,1.0,0.0,0.0 -40,15.0,1.9480161096848296,1.8,0.0,0.0,1.0016645226716216,-9.078384367046676,1.0,0.0,0.0 -40,16.0,5.009184282046705,5.8,0.0,0.0,0.9993319748522246,-9.248289491820069,1.0,0.0,0.0 -40,17.0,1.781043300283273,0.9,0.0,0.0,0.989912701805007,-9.608316096070885,1.0,0.0,0.0 -40,18.0,5.287472297715967,3.4,0.0,0.0,0.9885158347370228,-9.69778344173424,1.0,0.0,0.0 -40,19.0,1.2244672689447502,0.7,0.0,0.0,0.991935021418033,-9.602146513223316,1.0,0.0,0.0 -40,20.0,9.74008054842415,11.2,0.0,0.0,0.994095763839228,-9.36852299157377,1.0,0.0,0.0 -40,21.0,0.0,0.0,0.0,0.0,0.994502937747166,-9.365536146811865,1.0,0.0,0.0 -40,22.0,1.781043300283273,1.6,0.0,0.0,0.9882617695841632,-9.447679682049126,1.0,0.0,0.0 -40,23.0,4.842211472645148,6.7,0.0,0.0,0.984452747950556,-9.50735314493557,1.0,0.0,0.0 -40,24.0,0.0,0.0,0.0,0.0,0.9796581635219122,-9.211227538727748,1.0,0.0,0.0 -40,25.0,1.9480161096848296,2.3,0.0,0.0,0.965471283681438,-9.305198537267634,1.0,0.0,0.0 -40,26.0,0.0,0.0,0.0,0.0,0.9837627449968108,-8.940908286880353,1.0,0.0,0.0 -40,27.0,0.0,0.0,0.0,0.0,0.9671405534543246,-6.667958123560904,1.0,0.0,0.0 -40,28.0,1.3357824752124543,0.9,0.0,0.0,0.9697918510929529,-9.594032326599024,1.0,0.0,0.0 -40,29.0,5.899705932188341,1.9,0.0,0.0,0.962159068005444,-10.083694170177107,1.0,0.0,0.0 -41,0.0,0.0,0.0,164.59237164379,0.0006627089343957,1.0,0.0,0.0,0.0,1.0 -41,1.0,12.077699880045945,12.7,8.32594017566061e-07,10.76415697698924,0.9799967135483186,-3.77900212943075,0.0,1.0,0.0 -41,2.0,1.3357824752124543,1.2,0.0,0.0,0.9738846274837932,-4.95591821881876,1.0,0.0,0.0 -41,3.0,4.229977838172774,1.6,0.0,0.0,0.9672063713216869,-6.091355164219103,1.0,0.0,0.0 -41,4.0,52.42946215208885,19.0,-3.51541685506674e-10,24.33704203696473,0.9597594247476025,-9.096450273450303,0.0,1.0,0.0 -41,5.0,0.0,0.0,0.0,0.0,0.96680815374658,-7.230586493981262,1.0,0.0,0.0 -41,6.0,12.68993351451832,10.9,0.0,0.0,0.9573965084180812,-8.277694548058129,1.0,0.0,0.0 -41,7.0,16.697280940155682,30.0,1.5711020967349118e-11,30.629386336532555,0.9658016661737824,-7.668049555793464,0.0,1.0,0.0 -41,8.0,0.0,0.0,0.0,0.0,1.015399149334829,-9.075436934617482,1.0,0.0,0.0 -41,9.0,3.228140981763432,2.0,0.0,0.0,1.0064295366207263,-10.033631688565002,1.0,0.0,0.0 -41,10.0,0.0,0.0,9.75957858094898e-10,22.7192682643809,1.059981147877481,-9.075436934509415,0.0,1.0,0.0 -41,11.0,6.233651550991455,7.5,0.0,0.0,1.0135815214903747,-9.557602116053054,1.0,0.0,0.0 -41,12.0,0.0,0.0,-1.0332000436741388e-11,10.089903489505126,1.027331575727061,-9.55760211605385,0.0,1.0,0.0 -41,13.0,3.450771394298841,1.6,0.0,0.0,1.0024366530634938,-10.03777064910236,1.0,0.0,0.0 -41,14.0,4.563923456975886,2.5,0.0,0.0,0.9990758863836688,-10.06628743653888,1.0,0.0,0.0 -41,15.0,1.9480161096848296,1.8,0.0,0.0,1.004295015890441,-9.87182800586669,1.0,0.0,0.0 -41,16.0,5.009184282046705,5.8,0.0,0.0,1.001389911322768,-10.080739167789964,1.0,0.0,0.0 -41,17.0,1.781043300283273,0.9,0.0,0.0,0.9924117401581674,-10.40960128406794,1.0,0.0,0.0 -41,18.0,5.287472297715967,3.4,0.0,0.0,0.9907864584223453,-10.513367654787755,1.0,0.0,0.0 -41,19.0,1.2244672689447502,0.7,0.0,0.0,0.9940750626857054,-10.425880495870317,1.0,0.0,0.0 -41,20.0,9.74008054842415,11.2,0.0,0.0,0.9958027750250408,-10.215066613166927,1.0,0.0,0.0 -41,21.0,0.0,0.0,0.0,0.0,0.9961883360294284,-10.21143002438034,1.0,0.0,0.0 -41,22.0,1.781043300283273,1.6,0.0,0.0,0.9905275709284328,-10.249512659092115,1.0,0.0,0.0 -41,23.0,4.842211472645148,6.7,0.0,0.0,0.9858935944160964,-10.342141732707637,1.0,0.0,0.0 -41,24.0,0.0,0.0,0.0,0.0,0.9794919768311332,-10.065374976065788,1.0,0.0,0.0 -41,25.0,1.9480161096848296,2.3,0.0,0.0,0.965302617687537,-10.159378340960918,1.0,0.0,0.0 -41,26.0,0.0,0.0,0.0,0.0,0.9826059819835408,-9.808695367244743,1.0,0.0,0.0 -41,27.0,0.0,0.0,0.0,0.0,0.9647442490444526,-7.592573600435067,1.0,0.0,0.0 -41,28.0,1.3357824752124543,0.9,0.0,0.0,0.9686176442765682,-10.463379900079524,1.0,0.0,0.0 -41,29.0,5.899705932188341,1.9,0.0,0.0,0.9609753069398153,-10.954238006191678,1.0,0.0,0.0 -42,0.0,0.0,0.0,162.61898893648444,0.0006071971964338,1.0,0.0,0.0,0.0,1.0 -42,1.0,11.938771346180376,12.7,7.844388481469693e-07,10.563846108005391,0.980183582306376,-3.732357206791208,0.0,1.0,0.0 -42,2.0,1.3204171074116544,1.2,0.0,0.0,0.9741373428432932,-4.894928127960965,1.0,0.0,0.0 -42,3.0,4.181320840136906,1.6,0.0,0.0,0.9675064463917176,-6.015834341761569,1.0,0.0,0.0 -42,4.0,51.82637146590744,19.0,-8.14115417434437e-10,24.21970016237414,0.96014315596975,-8.984006378502103,0.0,1.0,0.0 -42,5.0,0.0,0.0,0.0,0.0,0.967138837592129,-7.141566255825071,1.0,0.0,0.0 -42,6.0,12.54396252041072,10.9,0.0,0.0,0.95777584192158,-8.174566684488822,1.0,0.0,0.0 -42,7.0,16.50521384264568,30.0,-4.3015117182077616e-10,30.569776695460803,0.9661352694045584,-7.573511010529051,0.0,1.0,0.0 -42,8.0,0.0,0.0,0.0,0.0,1.0156002100301114,-8.964504226963975,1.0,0.0,0.0 -42,9.0,3.191008009578165,2.0,0.0,0.0,1.0066598113706118,-9.911427906276268,1.0,0.0,0.0 -42,10.0,0.0,0.0,5.069061793124562e-10,22.61185052280647,1.0599718135810947,-8.964504226907854,0.0,1.0,0.0 -42,11.0,6.161946501254388,7.5,0.0,0.0,1.0136921577668383,-9.440479887930753,1.0,0.0,0.0 -42,12.0,0.0,0.0,-5.614447035493287e-10,9.944667996949772,1.0272454283019463,-9.440479887974002,0.0,1.0,0.0 -42,13.0,3.411077527480108,1.6,0.0,0.0,1.002619166843068,-9.913439008791608,1.0,0.0,0.0 -42,14.0,4.51142511698982,2.5,0.0,0.0,0.999287908293166,-9.941077578072118,1.0,0.0,0.0 -42,15.0,1.925608281641996,1.8,0.0,0.0,1.0044822330352112,-9.750122937981194,1.0,0.0,0.0 -42,16.0,4.951564152793705,5.8,0.0,0.0,1.001619442848823,-9.956667586283464,1.0,0.0,0.0 -42,17.0,1.7605561432155394,0.9,0.0,0.0,0.9926805270243564,-10.279618775990691,1.0,0.0,0.0 -42,18.0,5.226651050171133,3.4,0.0,0.0,0.9910748487197516,-10.382123251880856,1.0,0.0,0.0 -42,19.0,1.2103823484606837,0.7,0.0,0.0,0.9943517013013976,-10.296459216684283,1.0,0.0,0.0 -42,20.0,9.62804140820998,11.2,0.0,0.0,0.9960738474903704,-10.088557753375849,1.0,0.0,0.0 -42,21.0,0.0,0.0,0.0,0.0,0.9964587637141956,-10.085109371486864,1.0,0.0,0.0 -42,22.0,1.7605561432155394,1.6,0.0,0.0,0.9908002048853918,-10.120952489676254,1.0,0.0,0.0 -42,23.0,4.786512014367248,6.7,0.0,0.0,0.9862172374458116,-10.212341106705578,1.0,0.0,0.0 -42,24.0,0.0,0.0,0.0,0.0,0.9798489561969156,-9.938636452907168,1.0,0.0,0.0 -42,25.0,1.925608281641996,2.3,0.0,0.0,0.9657249730634514,-10.02740869845416,1.0,0.0,0.0 -42,26.0,0.0,0.0,0.0,0.0,0.9829556105091488,-9.686676081766798,1.0,0.0,0.0 -42,27.0,0.0,0.0,0.0,0.0,0.9650932746208388,-7.498862826414427,1.0,0.0,0.0 -42,28.0,1.3204171074116544,0.9,0.0,0.0,0.9690671188501356,-10.3311299592745,1.0,0.0,0.0 -42,29.0,5.831842224401474,1.9,0.0,0.0,0.9614891017163296,-10.814964226288142,1.0,0.0,0.0 -43,0.0,0.0,0.0,162.61898893648444,0.0006071971964338,1.0,0.0,0.0,0.0,1.0 -43,1.0,11.938771346180376,12.7,7.844388481469693e-07,10.563846108005391,0.980183582306376,-3.732357206791208,0.0,1.0,0.0 -43,2.0,1.3204171074116544,1.2,0.0,0.0,0.9741373428432932,-4.894928127960965,1.0,0.0,0.0 -43,3.0,4.181320840136906,1.6,0.0,0.0,0.9675064463917176,-6.015834341761569,1.0,0.0,0.0 -43,4.0,51.82637146590744,19.0,-8.14115417434437e-10,24.21970016237414,0.96014315596975,-8.984006378502103,0.0,1.0,0.0 -43,5.0,0.0,0.0,0.0,0.0,0.967138837592129,-7.141566255825071,1.0,0.0,0.0 -43,6.0,12.54396252041072,10.9,0.0,0.0,0.95777584192158,-8.174566684488822,1.0,0.0,0.0 -43,7.0,16.50521384264568,30.0,-4.3015117182077616e-10,30.569776695460803,0.9661352694045584,-7.573511010529051,0.0,1.0,0.0 -43,8.0,0.0,0.0,0.0,0.0,1.0156002100301114,-8.964504226963975,1.0,0.0,0.0 -43,9.0,3.191008009578165,2.0,0.0,0.0,1.0066598113706118,-9.911427906276268,1.0,0.0,0.0 -43,10.0,0.0,0.0,5.069061793124562e-10,22.61185052280647,1.0599718135810947,-8.964504226907854,0.0,1.0,0.0 -43,11.0,6.161946501254388,7.5,0.0,0.0,1.0136921577668383,-9.440479887930753,1.0,0.0,0.0 -43,12.0,0.0,0.0,-5.614447035493287e-10,9.944667996949772,1.0272454283019463,-9.440479887974002,0.0,1.0,0.0 -43,13.0,3.411077527480108,1.6,0.0,0.0,1.002619166843068,-9.913439008791608,1.0,0.0,0.0 -43,14.0,4.51142511698982,2.5,0.0,0.0,0.999287908293166,-9.941077578072118,1.0,0.0,0.0 -43,15.0,1.925608281641996,1.8,0.0,0.0,1.0044822330352112,-9.750122937981194,1.0,0.0,0.0 -43,16.0,4.951564152793705,5.8,0.0,0.0,1.001619442848823,-9.956667586283464,1.0,0.0,0.0 -43,17.0,1.7605561432155394,0.9,0.0,0.0,0.9926805270243564,-10.279618775990691,1.0,0.0,0.0 -43,18.0,5.226651050171133,3.4,0.0,0.0,0.9910748487197516,-10.382123251880856,1.0,0.0,0.0 -43,19.0,1.2103823484606837,0.7,0.0,0.0,0.9943517013013976,-10.296459216684283,1.0,0.0,0.0 -43,20.0,9.62804140820998,11.2,0.0,0.0,0.9960738474903704,-10.088557753375849,1.0,0.0,0.0 -43,21.0,0.0,0.0,0.0,0.0,0.9964587637141956,-10.085109371486864,1.0,0.0,0.0 -43,22.0,1.7605561432155394,1.6,0.0,0.0,0.9908002048853918,-10.120952489676254,1.0,0.0,0.0 -43,23.0,4.786512014367248,6.7,0.0,0.0,0.9862172374458116,-10.212341106705578,1.0,0.0,0.0 -43,24.0,0.0,0.0,0.0,0.0,0.9798489561969156,-9.938636452907168,1.0,0.0,0.0 -43,25.0,1.925608281641996,2.3,0.0,0.0,0.9657249730634514,-10.02740869845416,1.0,0.0,0.0 -43,26.0,0.0,0.0,0.0,0.0,0.9829556105091488,-9.686676081766798,1.0,0.0,0.0 -43,27.0,0.0,0.0,0.0,0.0,0.9650932746208388,-7.498862826414427,1.0,0.0,0.0 -43,28.0,1.3204171074116544,0.9,0.0,0.0,0.9690671188501356,-10.3311299592745,1.0,0.0,0.0 -43,29.0,5.831842224401474,1.9,0.0,0.0,0.9614891017163296,-10.814964226288142,1.0,0.0,0.0 -44,0.0,0.0,0.0,162.87485427696816,0.0041400810788516,1.0,0.0,0.0,0.0,1.0 -44,1.0,11.938771346180376,12.7,4.44736135783478e-06,10.505123492540632,0.9801212343625638,-3.7264335988841433,0.0,1.0,0.0 -44,2.0,1.3204171074116544,1.2,0.0,0.0,0.9742497392692824,-4.936219467719622,1.0,0.0,0.0 -44,3.0,4.181320840136906,1.6,0.0,0.0,0.9676512570050358,-6.067063561022698,1.0,0.0,0.0 -44,4.0,51.82637146590744,19.0,2.8129411023824902e-09,24.813973692874853,0.960360736087382,-8.961157292504092,0.0,1.0,0.0 -44,5.0,0.0,0.0,0.0,0.0,0.9664437278890512,-7.0756318318977245,1.0,0.0,0.0 -44,6.0,12.54396252041072,10.9,0.0,0.0,0.9574559925159764,-8.125944440124956,1.0,0.0,0.0 -44,7.0,16.50521384264568,30.0,3.851993579218612e-09,35.081746395630574,0.9669711184053738,-7.544685848146859,0.0,1.0,0.0 -44,8.0,0.0,0.0,0.0,0.0,1.045672051315917,-12.572808591128837,1.0,0.0,0.0 -44,9.0,3.191008009578165,2.0,0.0,0.0,1.0381046211106766,-12.572808591555738,1.0,0.0,0.0 -44,10.0,0.0,0.0,7.352809151726206e-09,7.292122749796183,1.0599813738137305,-12.572808590338257,0.0,1.0,0.0 -44,11.0,6.161946501254388,7.5,0.0,0.0,1.0231228966597092,-10.097780152997242,1.0,0.0,0.0 -44,12.0,0.0,0.0,3.350437259459578e-09,20.25751663824936,1.050129585811908,-10.097780152747104,0.0,1.0,0.0 -44,13.0,3.411077527480108,1.6,0.0,0.0,1.0072242496582913,-10.704325710298264,1.0,0.0,0.0 -44,14.0,4.51142511698982,2.5,0.0,0.0,0.9982037532530976,-10.760851080962407,1.0,0.0,0.0 -44,15.0,1.925608281641996,1.8,0.0,0.0,1.017818939200081,-10.214708838715849,1.0,0.0,0.0 -44,16.0,4.951564152793705,5.8,0.0,0.0,1.0317973879919091,-12.696100385642808,1.0,0.0,0.0 -44,17.0,1.7605561432155394,0.9,0.0,0.0,0.9777238112539725,-11.497485714835028,1.0,0.0,0.0 -44,18.0,5.226651050171133,3.4,0.0,0.0,0.9679819974147352,-11.84236688722243,1.0,0.0,0.0 -44,19.0,1.2103823484606837,0.7,0.0,0.0,0.9670640511570506,-11.878176576012986,1.0,0.0,0.0 -44,20.0,9.62804140820998,11.2,0.0,0.0,1.0301107496109532,-12.694843170032902,1.0,0.0,0.0 -44,21.0,0.0,0.0,0.0,0.0,1.0312016093023686,-12.678371356844458,1.0,0.0,0.0 -44,22.0,1.7605561432155394,1.6,0.0,0.0,0.9826771183837814,-10.973003396510672,1.0,0.0,0.0 -44,23.0,4.786512014367248,6.7,0.0,0.0,0.9687719876752604,-11.111563144818986,1.0,0.0,0.0 -44,24.0,0.0,0.0,0.0,0.0,0.9694770946767544,-10.56589158146912,1.0,0.0,0.0 -44,25.0,1.925608281641996,2.3,0.0,0.0,0.9551974204442196,-10.65660241041973,1.0,0.0,0.0 -44,26.0,0.0,0.0,0.0,0.0,0.9769850952628832,-10.137351159978346,1.0,0.0,0.0 -44,27.0,0.0,0.0,0.0,0.0,0.9638717189713424,-7.48539881850309,1.0,0.0,0.0 -44,28.0,1.3204171074116544,0.9,0.0,0.0,0.9630066005372978,-10.78981834247457,1.0,0.0,0.0 -44,29.0,5.831842224401474,1.9,0.0,0.0,0.9553793432616192,-11.279804697008332,1.0,0.0,0.0 -45,0.0,0.0,0.0,162.64119370320583,0.0003856154393133,1.0,0.0,0.0,0.0,1.0 -45,1.0,11.938771346180376,12.7,3.8529072658697866e-07,11.922243969719617,0.980082528596058,-3.811499263205494,0.0,1.0,0.0 -45,2.0,1.3204171074116544,1.2,0.0,0.0,0.9741371110497572,-4.671529739452441,1.0,0.0,0.0 -45,3.0,4.181320840136906,1.6,0.0,0.0,0.9674746467194586,-5.738362008066243,1.0,0.0,0.0 -45,4.0,51.82637146590744,19.0,-7.22512726683648e-10,22.918599286164053,0.9605076865972644,-10.248070772069056,0.0,1.0,0.0 -45,5.0,0.0,0.0,0.0,0.0,0.966759157085462,-6.7284494954320735,1.0,0.0,0.0 -45,6.0,12.54396252041072,10.9,0.0,0.0,0.9545191196657594,-7.199251649398264,1.0,0.0,0.0 -45,7.0,16.50521384264568,30.0,-4.90001991914525e-10,32.509624781163296,0.966483326273068,-7.173189241309941,0.0,1.0,0.0 -45,8.0,0.0,0.0,0.0,0.0,1.015537505805836,-8.57342444691324,1.0,0.0,0.0 -45,9.0,3.191008009578165,2.0,0.0,0.0,1.00673112060163,-9.53134821041794,1.0,0.0,0.0 -45,10.0,0.0,0.0,-4.664842942257632e-10,22.65839071071946,1.0599992836623835,-8.573424446964882,0.0,1.0,0.0 -45,11.0,6.161946501254388,7.5,0.0,0.0,1.0140014531790005,-9.115969772484156,1.0,0.0,0.0 -45,12.0,0.0,0.0,-6.985389313384198e-10,10.322057589356238,1.0280579378315862,-9.115969772537907,0.0,1.0,0.0 -45,13.0,3.411077527480108,1.6,0.0,0.0,1.0028816123075528,-9.582087224834636,1.0,0.0,0.0 -45,14.0,4.51142511698982,2.5,0.0,0.0,0.9995480387777548,-9.602082870635426,1.0,0.0,0.0 -45,15.0,1.925608281641996,1.8,0.0,0.0,1.0047272875989977,-9.401234115547592,1.0,0.0,0.0 -45,16.0,4.951564152793705,5.8,0.0,0.0,1.0017339806142629,-9.586487301655255,1.0,0.0,0.0 -45,17.0,1.7605561432155394,0.9,0.0,0.0,0.992879011474576,-9.92601125977295,1.0,0.0,0.0 -45,18.0,5.226651050171133,3.4,0.0,0.0,0.9912356667538031,-10.019840368354732,1.0,0.0,0.0 -45,19.0,1.2103823484606837,0.7,0.0,0.0,0.9944923115391446,-9.929648458514974,1.0,0.0,0.0 -45,20.0,9.62804140820998,11.2,0.0,0.0,0.9961516216453622,-9.709735154061825,1.0,0.0,0.0 -45,21.0,0.0,0.0,0.0,0.0,0.9965381670702655,-9.70670234402754,1.0,0.0,0.0 -45,22.0,1.7605561432155394,1.6,0.0,0.0,0.99099014531343,-9.767572239880565,1.0,0.0,0.0 -45,23.0,4.786512014367248,6.7,0.0,0.0,0.9863091684438156,-9.83963404157511,1.0,0.0,0.0 -45,24.0,0.0,0.0,0.0,0.0,0.9798730981973856,-9.551111644908644,1.0,0.0,0.0 -45,25.0,1.925608281641996,2.3,0.0,0.0,0.9657494734389596,-9.639879451334592,1.0,0.0,0.0 -45,26.0,0.0,0.0,0.0,0.0,0.9829330185807084,-9.289994937115171,1.0,0.0,0.0 -45,27.0,0.0,0.0,0.0,0.0,0.9648945618756938,-7.090334543093205,1.0,0.0,0.0 -45,28.0,1.3204171074116544,0.9,0.0,0.0,0.9690441886056071,-9.934478856026216,1.0,0.0,0.0 -45,29.0,5.831842224401474,1.9,0.0,0.0,0.9614659863866676,-10.41833618035867,1.0,0.0,0.0 -46,0.0,0.0,0.0,162.71033183494887,0.0008049854320901,1.0,0.0,0.0,0.0,1.0 -46,1.0,11.938771346180376,12.7,9.899141776348447e-07,10.437077145497298,0.9801485792322076,-3.734747999186801,0.0,1.0,0.0 -46,2.0,1.3204171074116544,1.2,0.0,0.0,0.9741986496660722,-4.896758916060868,1.0,0.0,0.0 -46,3.0,4.181320840136906,1.6,0.0,0.0,0.9675822689509164,-6.018078671996864,1.0,0.0,0.0 -46,4.0,51.82637146590744,19.0,-4.20313349433356e-10,24.267200185697305,0.9601557795692648,-8.991090289936011,0.0,1.0,0.0 -46,5.0,0.0,0.0,0.0,0.0,0.967098941350278,-7.1516093845509525,1.0,0.0,0.0 -46,6.0,12.54396252041072,10.9,0.0,0.0,0.9577568621169958,-8.183392877274873,1.0,0.0,0.0 -46,7.0,16.50521384264568,30.0,-1.1433929342502475e-10,30.81189847705396,0.9661719233103856,-7.585648884062369,0.0,1.0,0.0 -46,8.0,0.0,0.0,0.0,0.0,1.0152597389600786,-8.998831259147611,1.0,0.0,0.0 -46,9.0,3.191008009578165,2.0,0.0,0.0,1.0059767555527768,-9.958977991614187,1.0,0.0,0.0 -46,10.0,0.0,0.0,7.396765841927066e-10,22.800320800230725,1.059999991456963,-8.998831259065698,0.0,1.0,0.0 -46,11.0,6.161946501254388,7.5,0.0,0.0,1.014381236865887,-9.388961444945783,1.0,0.0,0.0 -46,12.0,0.0,0.0,-2.8791539049420104e-10,9.792135669238496,1.0277204575039864,-9.388961444967942,0.0,1.0,0.0 -46,13.0,3.411077527480108,1.6,0.0,0.0,0.984468683307372,-10.281268691544836,1.0,0.0,0.0 -46,14.0,4.51142511698982,2.5,0.0,0.0,0.9953772650933924,-10.089725222748976,1.0,0.0,0.0 -46,15.0,1.925608281641996,1.8,0.0,0.0,1.0045107865504506,-9.738074564953983,1.0,0.0,0.0 -46,16.0,4.951564152793705,5.8,0.0,0.0,1.0011780871890312,-9.986580759137828,1.0,0.0,0.0 -46,17.0,1.7605561432155394,0.9,0.0,0.0,0.989890698330272,-10.395058328075589,1.0,0.0,0.0 -46,18.0,5.226651050171133,3.4,0.0,0.0,0.9889536458070776,-10.47702783304018,1.0,0.0,0.0 -46,19.0,1.2103823484606837,0.7,0.0,0.0,0.9925928451321712,-10.380047143205871,1.0,0.0,0.0 -46,20.0,9.62804140820998,11.2,0.0,0.0,0.9952315904166208,-10.141504275897269,1.0,0.0,0.0 -46,21.0,0.0,0.0,0.0,0.0,0.99556846976827,-10.139638560675898,1.0,0.0,0.0 -46,22.0,1.7605561432155394,1.6,0.0,0.0,0.9878820851432668,-10.23769578243698,1.0,0.0,0.0 -46,23.0,4.786512014367248,6.7,0.0,0.0,0.9846355023628072,-10.28443512786094,1.0,0.0,0.0 -46,24.0,0.0,0.0,0.0,0.0,0.9788849704420258,-9.99553578184027,1.0,0.0,0.0 -46,25.0,1.925608281641996,2.3,0.0,0.0,0.9647466623944004,-10.084485557760823,1.0,0.0,0.0 -46,26.0,0.0,0.0,0.0,0.0,0.9823779069048436,-9.733316509607624,1.0,0.0,0.0 -46,27.0,0.0,0.0,0.0,0.0,0.9649920741702196,-7.512248189434738,1.0,0.0,0.0 -46,28.0,1.3204171074116544,0.9,0.0,0.0,0.968480758732121,-10.378539246598791,1.0,0.0,0.0 -46,29.0,5.831842224401474,1.9,0.0,0.0,0.9608980057983552,-10.862963642776892,1.0,0.0,0.0 -47,0.0,0.0,0.0,162.73113234885557,0.0004985216446762,1.0,0.0,0.0,0.0,1.0 -47,1.0,11.938771346180376,12.7,7.935022621393056e-07,9.354626860438316,0.9800185153028154,-3.7281280287610032,0.0,1.0,0.0 -47,2.0,1.3204171074116544,1.2,0.0,0.0,0.9745833522162476,-4.915949396767788,1.0,0.0,0.0 -47,3.0,4.181320840136906,1.6,0.0,0.0,0.9680592393485252,-6.041725708828597,1.0,0.0,0.0 -47,4.0,51.82637146590744,19.0,-7.486067870034334e-10,24.09457477245384,0.9602117208253236,-8.974888433289065,0.0,1.0,0.0 -47,5.0,0.0,0.0,0.0,0.0,0.9677000216050412,-7.135416484615,1.0,0.0,0.0 -47,6.0,12.54396252041072,10.9,0.0,0.0,0.9581387401303784,-8.167230283772078,1.0,0.0,0.0 -47,7.0,16.50521384264568,30.0,-3.7184923760266095e-10,29.62749798153284,0.9663588358496604,-7.560868339102037,0.0,1.0,0.0 -47,8.0,0.0,0.0,0.0,0.0,1.0168793735728858,-8.859367407728513,1.0,0.0,0.0 -47,9.0,3.191008009578165,2.0,0.0,0.0,1.010838817416782,-9.751698978410928,1.0,0.0,0.0 -47,10.0,0.0,0.0,3.0252450319962146e-10,20.067824512764,1.0563922304305482,-8.85936740769495,0.0,1.0,0.0 -47,11.0,6.161946501254388,7.5,0.0,0.0,1.0171090841687191,-9.651690165898296,1.0,0.0,0.0 -47,12.0,0.0,0.0,-1.3982514537597314e-10,14.701066712512365,1.0369570550156948,-9.65169016590893,0.0,1.0,0.0 -47,13.0,3.411077527480108,1.6,0.0,0.0,1.0039049887013265,-10.175202984445669,1.0,0.0,0.0 -47,14.0,4.51142511698982,2.5,0.0,0.0,0.9981312436728628,-10.20638969698274,1.0,0.0,0.0 -47,15.0,1.925608281641996,1.8,0.0,0.0,1.00849677868909,-9.803009523360938,1.0,0.0,0.0 -47,16.0,4.951564152793705,5.8,0.0,0.0,1.0056855055230112,-9.862168529084228,1.0,0.0,0.0 -47,17.0,1.7605561432155394,0.9,0.0,0.0,0.9806999055591648,-10.82998373241386,1.0,0.0,0.0 -47,18.0,5.226651050171133,3.4,0.0,0.0,0.9727392672047857,-11.105076584840807,1.0,0.0,0.0 -47,19.0,1.2103823484606837,0.7,0.0,0.0,1.0082624627788943,-9.857077622291772,1.0,0.0,0.0 -47,20.0,9.62804140820998,11.2,0.0,0.0,0.9999314971534262,-9.954358266445482,1.0,0.0,0.0 -47,21.0,0.0,0.0,0.0,0.0,1.0001968072259129,-9.959459607178534,1.0,0.0,0.0 -47,22.0,1.7605561432155394,1.6,0.0,0.0,0.9910035276303004,-10.264405144684217,1.0,0.0,0.0 -47,23.0,4.786512014367248,6.7,0.0,0.0,0.9882121513832924,-10.190727405154076,1.0,0.0,0.0 -47,24.0,0.0,0.0,0.0,0.0,0.9813155058138364,-9.914448153305155,1.0,0.0,0.0 -47,25.0,1.925608281641996,2.3,0.0,0.0,0.9672132593283344,-10.002951338105913,1.0,0.0,0.0 -47,26.0,0.0,0.0,0.0,0.0,0.9840822051406176,-9.66168167160164,1.0,0.0,0.0 -47,27.0,0.0,0.0,0.0,0.0,0.965653220025576,-7.490615597561448,1.0,0.0,0.0 -47,28.0,1.3204171074116544,0.9,0.0,0.0,0.970210562905073,-10.304640145027015,1.0,0.0,0.0 -47,29.0,5.831842224401474,1.9,0.0,0.0,0.9626417636661204,-10.787326723400012,1.0,0.0,0.0 -48,0.0,0.0,0.0,162.61898893648444,0.0006071971964338,1.0,0.0,0.0,0.0,1.0 -48,1.0,11.938771346180376,12.7,7.844388481469693e-07,10.563846108005391,0.980183582306376,-3.732357206791208,0.0,1.0,0.0 -48,2.0,1.3204171074116544,1.2,0.0,0.0,0.9741373428432932,-4.894928127960965,1.0,0.0,0.0 -48,3.0,4.181320840136906,1.6,0.0,0.0,0.9675064463917176,-6.015834341761569,1.0,0.0,0.0 -48,4.0,51.82637146590744,19.0,-8.14115417434437e-10,24.21970016237414,0.96014315596975,-8.984006378502103,0.0,1.0,0.0 -48,5.0,0.0,0.0,0.0,0.0,0.967138837592129,-7.141566255825071,1.0,0.0,0.0 -48,6.0,12.54396252041072,10.9,0.0,0.0,0.95777584192158,-8.174566684488822,1.0,0.0,0.0 -48,7.0,16.50521384264568,30.0,-4.3015117182077616e-10,30.569776695460803,0.9661352694045584,-7.573511010529051,0.0,1.0,0.0 -48,8.0,0.0,0.0,0.0,0.0,1.0156002100301114,-8.964504226963975,1.0,0.0,0.0 -48,9.0,3.191008009578165,2.0,0.0,0.0,1.0066598113706118,-9.911427906276268,1.0,0.0,0.0 -48,10.0,0.0,0.0,5.069061793124562e-10,22.61185052280647,1.0599718135810947,-8.964504226907854,0.0,1.0,0.0 -48,11.0,6.161946501254388,7.5,0.0,0.0,1.0136921577668383,-9.440479887930753,1.0,0.0,0.0 -48,12.0,0.0,0.0,-5.614447035493287e-10,9.944667996949772,1.0272454283019463,-9.440479887974002,0.0,1.0,0.0 -48,13.0,3.411077527480108,1.6,0.0,0.0,1.002619166843068,-9.913439008791608,1.0,0.0,0.0 -48,14.0,4.51142511698982,2.5,0.0,0.0,0.999287908293166,-9.941077578072118,1.0,0.0,0.0 -48,15.0,1.925608281641996,1.8,0.0,0.0,1.0044822330352112,-9.750122937981194,1.0,0.0,0.0 -48,16.0,4.951564152793705,5.8,0.0,0.0,1.001619442848823,-9.956667586283464,1.0,0.0,0.0 -48,17.0,1.7605561432155394,0.9,0.0,0.0,0.9926805270243564,-10.279618775990691,1.0,0.0,0.0 -48,18.0,5.226651050171133,3.4,0.0,0.0,0.9910748487197516,-10.382123251880856,1.0,0.0,0.0 -48,19.0,1.2103823484606837,0.7,0.0,0.0,0.9943517013013976,-10.296459216684283,1.0,0.0,0.0 -48,20.0,9.62804140820998,11.2,0.0,0.0,0.9960738474903704,-10.088557753375849,1.0,0.0,0.0 -48,21.0,0.0,0.0,0.0,0.0,0.9964587637141956,-10.085109371486864,1.0,0.0,0.0 -48,22.0,1.7605561432155394,1.6,0.0,0.0,0.9908002048853918,-10.120952489676254,1.0,0.0,0.0 -48,23.0,4.786512014367248,6.7,0.0,0.0,0.9862172374458116,-10.212341106705578,1.0,0.0,0.0 -48,24.0,0.0,0.0,0.0,0.0,0.9798489561969156,-9.938636452907168,1.0,0.0,0.0 -48,25.0,1.925608281641996,2.3,0.0,0.0,0.9657249730634514,-10.02740869845416,1.0,0.0,0.0 -48,26.0,0.0,0.0,0.0,0.0,0.9829556105091488,-9.686676081766798,1.0,0.0,0.0 -48,27.0,0.0,0.0,0.0,0.0,0.9650932746208388,-7.498862826414427,1.0,0.0,0.0 -48,28.0,1.3204171074116544,0.9,0.0,0.0,0.9690671188501356,-10.3311299592745,1.0,0.0,0.0 -48,29.0,5.831842224401474,1.9,0.0,0.0,0.9614891017163296,-10.814964226288142,1.0,0.0,0.0 -49,0.0,0.0,0.0,163.2626368542253,0.0012222796244465,1.0,0.0,0.0,0.0,1.0 -49,1.0,11.938771346180376,12.7,2.4828728761903366e-06,-9.779941881086296,0.9788240980146408,-3.3997445413633622,0.0,1.0,0.0 -49,2.0,1.3204171074116544,1.2,0.0,0.0,0.9791685471801348,-5.87797168988225,1.0,0.0,0.0 -49,3.0,4.181320840136906,1.6,0.0,0.0,0.9738971962014767,-7.2327464696719215,1.0,0.0,0.0 -49,4.0,51.82637146590744,19.0,6.296671684217428e-10,34.24998189842171,0.9744320370525208,-9.358643885941778,0.0,1.0,0.0 -49,5.0,0.0,0.0,0.0,0.0,0.9760153779810544,-8.034092964347426,1.0,0.0,0.0 -49,6.0,12.54396252041072,10.9,0.0,0.0,0.96889202086101,-8.847426487355449,1.0,0.0,0.0 -49,7.0,16.50521384264568,30.0,4.779616057921713e-09,39.99925397743954,0.9785451735199844,-8.516967166926548,0.0,1.0,0.0 -49,8.0,0.0,0.0,0.0,0.0,1.0238402157642117,-9.838933810184129,1.0,0.0,0.0 -49,9.0,3.191008009578165,2.0,0.0,0.0,1.018796282887792,-10.77379290952082,1.0,0.0,0.0 -49,10.0,0.0,0.0,4.953683076775323e-09,18.426967998760563,1.0599988342448874,-9.838933809640157,0.0,1.0,0.0 -49,11.0,6.161946501254388,7.5,0.0,0.0,1.0341461852195557,-10.555146502805847,1.0,0.0,0.0 -49,12.0,0.0,0.0,1.8599568296906479e-09,19.57424311840377,1.059998983930872,-10.555146502669745,0.0,1.0,0.0 -49,13.0,3.411077527480108,1.6,0.0,0.0,1.0221488748350098,-10.992904000689842,1.0,0.0,0.0 -49,14.0,4.51142511698982,2.5,0.0,0.0,1.0178961076623727,-10.977326354499056,1.0,0.0,0.0 -49,15.0,1.925608281641996,1.8,0.0,0.0,1.0216022955924038,-10.7358012516423,1.0,0.0,0.0 -49,16.0,4.951564152793705,5.8,0.0,0.0,1.0153243324400976,-10.860832714595045,1.0,0.0,0.0 -49,17.0,1.7605561432155394,0.9,0.0,0.0,1.009168626069042,-11.24283841069918,1.0,0.0,0.0 -49,18.0,5.226651050171133,3.4,0.0,0.0,1.006267065157254,-11.305151139746336,1.0,0.0,0.0 -49,19.0,1.2103823484606837,0.7,0.0,0.0,1.008799660142596,-11.202296907501134,1.0,0.0,0.0 -49,20.0,9.62804140820998,11.2,0.0,0.0,1.0086294336768655,-10.954996981368623,1.0,0.0,0.0 -49,21.0,0.0,0.0,0.0,0.0,1.009100096982392,-10.954435804000113,1.0,0.0,0.0 -49,22.0,1.7605561432155394,1.6,0.0,0.0,1.007443802590571,-11.101413521764544,1.0,0.0,0.0 -49,23.0,4.786512014367248,6.7,0.0,0.0,1.0001198022384974,-11.12355572528763,1.0,0.0,0.0 -49,24.0,0.0,0.0,0.0,0.0,0.9920823932307534,-10.821701535037487,1.0,0.0,0.0 -49,25.0,1.925608281641996,2.3,0.0,0.0,0.9781376742633884,-10.908266482534394,1.0,0.0,0.0 -49,26.0,0.0,0.0,0.0,0.0,0.9940521687856702,-10.555959732768017,1.0,0.0,0.0 -49,27.0,0.0,0.0,0.0,0.0,0.9749154914538556,-8.400755697994484,1.0,0.0,0.0 -49,28.0,1.3204171074116544,0.9,0.0,0.0,0.9643274230902112,-11.963638247874778,1.0,0.0,0.0 -49,29.0,5.831842224401474,1.9,0.0,0.0,0.940000482053879,-13.346608053727998,1.0,0.0,0.0 -50,0.0,0.0,0.0,163.11904883648478,0.0032134151167539,1.0,0.0,0.0,0.0,1.0 -50,1.0,11.938771346180376,12.7,3.441681094595568e-06,5.626458219785725,0.9795894836027078,-3.717498657248766,0.0,1.0,0.0 -50,2.0,1.3204171074116544,1.2,0.0,0.0,0.9757072371607152,-4.97893945879448,1.0,0.0,0.0 -50,3.0,4.181320840136906,1.6,0.0,0.0,0.96945395888409,-6.119382696549984,1.0,0.0,0.0 -50,4.0,51.82637146590744,19.0,2.8491175269466164e-09,25.40442868815434,0.9619493236427832,-8.968486562616837,0.0,1.0,0.0 -50,5.0,0.0,0.0,0.0,0.0,0.968897648046441,-7.102452010666947,1.0,0.0,0.0 -50,6.0,12.54396252041072,10.9,0.0,0.0,0.9595736765424148,-8.14406539089624,1.0,0.0,0.0 -50,7.0,16.50521384264568,30.0,4.957142678225721e-09,36.07573069531991,0.9696373311156572,-7.572789947445997,0.0,1.0,0.0 -50,8.0,0.0,0.0,0.0,0.0,1.0253201082604169,-7.102452010031039,1.0,0.0,0.0 -50,9.0,3.191008009578165,2.0,0.0,0.0,0.9913088712139932,-11.737920172283518,1.0,0.0,0.0 -50,10.0,0.0,0.0,5.4201024241109974e-09,17.64568537580637,1.0599473248413638,-7.102452009436677,0.0,1.0,0.0 -50,11.0,6.161946501254388,7.5,0.0,0.0,1.02808661189878,-10.342483571816937,1.0,0.0,0.0 -50,12.0,0.0,0.0,5.6783704485856025e-09,20.3642797365456,1.055107546148779,-10.342483571397034,0.0,1.0,0.0 -50,13.0,3.411077527480108,1.6,0.0,0.0,1.0168851971702602,-10.83100635813794,1.0,0.0,0.0 -50,14.0,4.51142511698982,2.5,0.0,0.0,1.0131242128507056,-10.879905991486964,1.0,0.0,0.0 -50,15.0,1.925608281641996,1.8,0.0,0.0,1.0053613487171766,-10.97757282616612,1.0,0.0,0.0 -50,16.0,4.951564152793705,5.8,0.0,0.0,0.9914917123753586,-11.61598751213648,1.0,0.0,0.0 -50,17.0,1.7605561432155394,0.9,0.0,0.0,0.9961490455880156,-11.518071324415638,1.0,0.0,0.0 -50,18.0,5.226651050171133,3.4,0.0,0.0,0.988425009384012,-11.804845148811726,1.0,0.0,0.0 -50,19.0,1.2103823484606837,0.7,0.0,0.0,0.9884830966903424,-11.81562100918044,1.0,0.0,0.0 -50,20.0,9.62804140820998,11.2,0.0,0.0,0.9539467421040324,-12.215804951570693,1.0,0.0,0.0 -50,21.0,0.0,0.0,0.0,0.0,0.9578888602842114,-12.154794495164232,1.0,0.0,0.0 -50,22.0,1.7605561432155394,1.6,0.0,0.0,0.9400043706244224,-12.296485175671414,1.0,0.0,0.0 -50,23.0,4.786512014367248,6.7,0.0,0.0,0.947076521550756,-12.126481139272077,1.0,0.0,0.0 -50,24.0,0.0,0.0,0.0,0.0,0.9564313014287318,-11.301628809457744,1.0,0.0,0.0 -50,25.0,1.925608281641996,2.3,0.0,0.0,0.9419507781996428,-11.394870032811156,1.0,0.0,0.0 -50,26.0,0.0,0.0,0.0,0.0,0.9693668579236372,-10.694742547746715,1.0,0.0,0.0 -50,27.0,0.0,0.0,0.0,0.0,0.962722661808477,-7.533228940309498,1.0,0.0,0.0 -50,28.0,1.3204171074116544,0.9,0.0,0.0,0.9552717631062202,-11.357654593268542,1.0,0.0,0.0 -50,29.0,5.831842224401474,1.9,0.0,0.0,0.9475807102337562,-11.855665038528056,1.0,0.0,0.0 -51,0.0,0.0,0.0,163.37755293521835,0.0036673700358313,1.0,0.0,0.0,0.0,1.0 -51,1.0,11.938771346180376,12.7,2.921413754599509e-06,11.169461496385466,0.9814756619311562,-3.420460417516187,0.0,1.0,0.0 -51,2.0,1.3204171074116544,1.2,0.0,0.0,0.971578645487408,-5.873967224271357,1.0,0.0,0.0 -51,3.0,4.181320840136906,1.6,0.0,0.0,0.964543822969069,-7.23370550510399,1.0,0.0,0.0 -51,4.0,51.82637146590744,19.0,2.305898471397418e-09,25.89726430245733,0.9602186551880012,-9.718547410494782,0.0,1.0,0.0 -51,5.0,0.0,0.0,0.0,0.0,0.961904692081527,-8.899942327835033,1.0,0.0,0.0 -51,6.0,12.54396252041072,10.9,0.0,0.0,0.954516897834309,-9.514439278188298,1.0,0.0,0.0 -51,7.0,16.50521384264568,30.0,2.7136361784625253e-09,31.851438511065048,0.9608049622314015,-9.34657064306381,0.0,1.0,0.0 -51,8.0,0.0,0.0,0.0,0.0,1.015683282690965,-10.60080822114054,1.0,0.0,0.0 -51,9.0,3.191008009578165,2.0,0.0,0.0,1.0095930944901643,-11.47700041358289,1.0,0.0,0.0 -51,10.0,0.0,0.0,4.1591995554164326e-09,22.58261450180775,1.0599964845264818,-10.60080822068014,0.0,1.0,0.0 -51,11.0,6.161946501254388,7.5,0.0,0.0,1.0235495869202544,-10.91472596489968,1.0,0.0,0.0 -51,12.0,0.0,0.0,3.1713990621054112e-09,17.42486858370863,1.0468525964368045,-10.914725964662267,0.0,1.0,0.0 -51,13.0,3.411077527480108,1.6,0.0,0.0,1.0153599614217943,-11.287376320487205,1.0,0.0,0.0 -51,14.0,4.51142511698982,2.5,0.0,0.0,1.006091884621523,-11.509369836146933,1.0,0.0,0.0 -51,15.0,1.925608281641996,1.8,0.0,0.0,1.011320065776309,-11.247053607596344,1.0,0.0,0.0 -51,16.0,4.951564152793705,5.8,0.0,0.0,1.0058143622718938,-11.5046330542667,1.0,0.0,0.0 -51,17.0,1.7605561432155394,0.9,0.0,0.0,0.9981693758564044,-11.842607272331568,1.0,0.0,0.0 -51,18.0,5.226651050171133,3.4,0.0,0.0,0.9957720902181568,-11.94324017952479,1.0,0.0,0.0 -51,19.0,1.2103823484606837,0.7,0.0,0.0,0.998611972997924,-11.857802889402024,1.0,0.0,0.0 -51,20.0,9.62804140820998,11.2,0.0,0.0,0.9959341319838172,-11.760308128923535,1.0,0.0,0.0 -51,21.0,0.0,0.0,0.0,0.0,0.995330782995528,-11.790066980568715,1.0,0.0,0.0 -51,22.0,1.7605561432155394,1.6,0.0,0.0,0.9963195914960288,-11.780639089054612,1.0,0.0,0.0 -51,23.0,4.786512014367248,6.7,0.0,0.0,0.9900117836952256,-11.998510096473645,1.0,0.0,0.0 -51,24.0,0.0,0.0,0.0,0.0,0.9586328810251336,-11.47289478305185,1.0,0.0,0.0 -51,25.0,1.925608281641996,2.3,0.0,0.0,0.9441866539931392,-11.565701557534387,1.0,0.0,0.0 -51,26.0,0.0,0.0,0.0,0.0,0.965949698442668,-11.37906046398697,1.0,0.0,0.0 -51,27.0,0.0,0.0,0.0,0.0,0.956984416682905,-9.18847955733563,1.0,0.0,0.0 -51,28.0,1.3204171074116544,0.9,0.0,0.0,0.95180164935034,-12.046739651629148,1.0,0.0,0.0 -51,29.0,5.831842224401474,1.9,0.0,0.0,0.94408162185513,-12.548414340970051,1.0,0.0,0.0 -52,0.0,0.0,0.0,162.82657362842176,0.0004290672285911,1.0,0.0,0.0,0.0,1.0 -52,1.0,11.938771346180376,12.7,4.358351270704938e-07,9.878945431021826,0.979777483846457,-3.805760473788146,0.0,1.0,0.0 -52,2.0,1.3204171074116544,1.2,0.0,0.0,0.9749577926331524,-4.702568163888308,1.0,0.0,0.0 -52,3.0,4.181320840136906,1.6,0.0,0.0,0.9684900604792164,-5.776567742365516,1.0,0.0,0.0 -52,4.0,51.82637146590744,19.0,-7.520320023143345e-10,22.92367915635376,0.9602001723396052,-10.246526421882312,0.0,1.0,0.0 -52,5.0,0.0,0.0,0.0,0.0,0.9678819032421424,-6.72422936317972,1.0,0.0,0.0 -52,6.0,12.54396252041072,10.9,0.0,0.0,0.9556581132153156,-7.193955476492579,1.0,0.0,0.0 -52,7.0,16.50521384264568,30.0,9.005924743728938e-11,30.536009736808367,0.9668943267493296,-7.155507665099288,0.0,1.0,0.0 -52,8.0,0.0,0.0,0.0,0.0,1.01904244807205,-8.436566412857333,1.0,0.0,0.0 -52,9.0,3.191008009578165,2.0,0.0,0.0,1.013421316523812,-9.32079524399702,1.0,0.0,0.0 -52,10.0,0.0,0.0,1.672111394298237e-10,20.7296008070326,1.0597297730624802,-8.436566412838882,0.0,1.0,0.0 -52,11.0,6.161946501254388,7.5,0.0,0.0,1.0191330842743354,-9.399648037306669,1.0,0.0,0.0 -52,12.0,0.0,0.0,-3.955072002868202e-11,16.36467160315591,1.0411383633523712,-9.399648037309657,0.0,1.0,0.0 -52,13.0,3.411077527480108,1.6,0.0,0.0,1.005346994036593,-9.937135706333628,1.0,0.0,0.0 -52,14.0,4.51142511698982,2.5,0.0,0.0,0.9988891914188028,-9.970261695178642,1.0,0.0,0.0 -52,15.0,1.925608281641996,1.8,0.0,0.0,1.010891129646873,-9.474846808651916,1.0,0.0,0.0 -52,16.0,4.951564152793705,5.8,0.0,0.0,1.0081804661551603,-9.4625463326531,1.0,0.0,0.0 -52,17.0,1.7605561432155394,0.9,0.0,0.0,0.9784243601635058,-10.705863671825671,1.0,0.0,0.0 -52,18.0,5.226651050171133,3.4,0.0,0.0,0.9686896924398004,-11.05024612381714,1.0,0.0,0.0 -52,19.0,1.2103823484606837,0.7,0.0,0.0,0.9677724183538988,-11.086003459113336,1.0,0.0,0.0 -52,20.0,9.62804140820998,11.2,0.0,0.0,1.0023919474963034,-9.533372626989722,1.0,0.0,0.0 -52,21.0,0.0,0.0,0.0,0.0,1.0026081040544352,-9.54190721168086,1.0,0.0,0.0 -52,22.0,1.7605561432155394,1.6,0.0,0.0,0.992175179584501,-9.968546864901649,1.0,0.0,0.0 -52,23.0,4.786512014367248,6.7,0.0,0.0,0.9899226900633183,-9.81471621249822,1.0,0.0,0.0 -52,24.0,0.0,0.0,0.0,0.0,0.98257073450869,-9.519038452714224,1.0,0.0,0.0 -52,25.0,1.925608281641996,2.3,0.0,0.0,0.9684870386969558,-9.607312322248506,1.0,0.0,0.0 -52,26.0,0.0,0.0,0.0,0.0,0.9850394021030296,-9.254853815457311,1.0,0.0,0.0 -52,27.0,0.0,0.0,0.0,0.0,0.9659879102599728,-7.0823034313960935,1.0,0.0,0.0 -52,28.0,1.3204171074116544,0.9,0.0,0.0,0.971182042762527,-9.896545844968813,1.0,0.0,0.0 -52,29.0,5.831842224401474,1.9,0.0,0.0,0.9636210572556484,-10.378260550845011,1.0,0.0,0.0 -53,0.0,0.0,0.0,90.00990736879344,1.6113766321268486e-06,1.0,0.0,0.0,0.0,1.0 -53,1.0,11.938771346180376,12.7,70.74567922786616,27.63661854492014,0.9906597268903402,-1.6867109175550443,0.0,1.0,0.0 -53,2.0,1.3204171074116544,1.2,0.0,0.0,0.9766197051087756,-3.6868260690717545,1.0,0.0,0.0 -53,3.0,4.181320840136906,1.6,0.0,0.0,0.9704477271277387,-4.514939540483407,1.0,0.0,0.0 -53,4.0,51.82637146590744,19.0,0.0,0.0,0.9400000006449286,-6.688542552383134,0.0,1.0,0.0 -53,5.0,0.0,0.0,0.0,0.0,0.967261924928171,-5.390967119808968,1.0,0.0,0.0 -53,6.0,12.54396252041072,10.9,0.0,0.0,0.9494619375385012,-6.218594089955169,1.0,0.0,0.0 -53,7.0,16.50521384264568,30.0,-1.372675757078799e-09,39.9999961123553,0.9698700618188628,-5.871067285843472,0.0,1.0,0.0 -53,8.0,0.0,0.0,0.0,0.0,0.993344626567314,-7.269430448371855,1.0,0.0,0.0 -53,9.0,3.191008009578165,2.0,0.0,0.0,0.9960601361014744,-8.255699470455506,1.0,0.0,0.0 -53,10.0,0.0,0.0,0.0,0.0,0.993344626567314,-7.269430448371855,0.0,1.0,0.0 -53,11.0,6.161946501254388,7.5,0.0,0.0,1.0257768972240573,-8.171076591411179,1.0,0.0,0.0 -53,12.0,0.0,0.0,-6.193195504120831e-09,23.99999790231384,1.0575484873360872,-8.171076591869124,0.0,1.0,0.0 -53,13.0,3.411077527480108,1.6,0.0,0.0,1.0117895496128513,-8.635896603805085,1.0,0.0,0.0 -53,14.0,4.51142511698982,2.5,0.0,0.0,1.0055486971939334,-8.596652298943152,1.0,0.0,0.0 -53,15.0,1.925608281641996,1.8,0.0,0.0,1.0070231724446728,-8.268093634687645,1.0,0.0,0.0 -53,16.0,4.951564152793705,5.8,0.0,0.0,0.9950238673242472,-8.372551050113666,1.0,0.0,0.0 -53,17.0,1.7605561432155394,0.9,0.0,0.0,0.993013222084264,-8.824204592568766,1.0,0.0,0.0 -53,18.0,5.226651050171133,3.4,0.0,0.0,0.987892776124233,-8.860874569214458,1.0,0.0,0.0 -53,19.0,1.2103823484606837,0.7,0.0,0.0,0.989332066134749,-8.739022571949148,1.0,0.0,0.0 -53,20.0,9.62804140820998,11.2,0.0,0.0,0.9860168311029478,-8.48785129237073,1.0,0.0,0.0 -53,21.0,0.0,0.0,0.0,0.0,0.9866076473083804,-8.501087819687273,1.0,0.0,0.0 -53,22.0,1.7605561432155394,1.6,0.0,0.0,0.9910901140441168,-8.7766152999489,1.0,0.0,0.0 -53,23.0,4.786512014367248,6.7,0.0,0.0,0.978544165655522,-8.872733551170507,1.0,0.0,0.0 -53,24.0,0.0,0.0,0.0,0.0,0.9667781134085192,-8.994808033422396,1.0,0.0,0.0 -53,25.0,1.925608281641996,2.3,0.0,0.0,0.9524573518477863,-9.086033786883478,1.0,0.0,0.0 -53,26.0,0.0,0.0,0.0,0.0,0.986126702923234,-7.370660764188214,1.0,0.0,0.0 -53,27.0,0.0,0.0,0.0,0.0,0.9665892531609034,-5.699663265785458,1.0,0.0,0.0 -53,28.0,1.3204171074116544,0.9,0.0,0.0,0.9722855311614697,-8.01091876983393,1.0,0.0,0.0 -53,29.0,5.831842224401474,1.9,0.0,0.0,0.9647334012895364,-8.491533106635,1.0,0.0,0.0 -54,0.0,0.0,0.0,162.61898893648444,0.0006071971964338,1.0,0.0,0.0,0.0,1.0 -54,1.0,11.938771346180376,12.7,7.844388481469693e-07,10.563846108005391,0.980183582306376,-3.732357206791208,0.0,1.0,0.0 -54,2.0,1.3204171074116544,1.2,0.0,0.0,0.9741373428432932,-4.894928127960965,1.0,0.0,0.0 -54,3.0,4.181320840136906,1.6,0.0,0.0,0.9675064463917176,-6.015834341761569,1.0,0.0,0.0 -54,4.0,51.82637146590744,19.0,-8.14115417434437e-10,24.21970016237414,0.96014315596975,-8.984006378502103,0.0,1.0,0.0 -54,5.0,0.0,0.0,0.0,0.0,0.967138837592129,-7.141566255825071,1.0,0.0,0.0 -54,6.0,12.54396252041072,10.9,0.0,0.0,0.95777584192158,-8.174566684488822,1.0,0.0,0.0 -54,7.0,16.50521384264568,30.0,-4.3015117182077616e-10,30.569776695460803,0.9661352694045584,-7.573511010529051,0.0,1.0,0.0 -54,8.0,0.0,0.0,0.0,0.0,1.0156002100301114,-8.964504226963975,1.0,0.0,0.0 -54,9.0,3.191008009578165,2.0,0.0,0.0,1.0066598113706118,-9.911427906276268,1.0,0.0,0.0 -54,10.0,0.0,0.0,5.069061793124562e-10,22.61185052280647,1.0599718135810947,-8.964504226907854,0.0,1.0,0.0 -54,11.0,6.161946501254388,7.5,0.0,0.0,1.0136921577668383,-9.440479887930753,1.0,0.0,0.0 -54,12.0,0.0,0.0,-5.614447035493287e-10,9.944667996949772,1.0272454283019463,-9.440479887974002,0.0,1.0,0.0 -54,13.0,3.411077527480108,1.6,0.0,0.0,1.002619166843068,-9.913439008791608,1.0,0.0,0.0 -54,14.0,4.51142511698982,2.5,0.0,0.0,0.999287908293166,-9.941077578072118,1.0,0.0,0.0 -54,15.0,1.925608281641996,1.8,0.0,0.0,1.0044822330352112,-9.750122937981194,1.0,0.0,0.0 -54,16.0,4.951564152793705,5.8,0.0,0.0,1.001619442848823,-9.956667586283464,1.0,0.0,0.0 -54,17.0,1.7605561432155394,0.9,0.0,0.0,0.9926805270243564,-10.279618775990691,1.0,0.0,0.0 -54,18.0,5.226651050171133,3.4,0.0,0.0,0.9910748487197516,-10.382123251880856,1.0,0.0,0.0 -54,19.0,1.2103823484606837,0.7,0.0,0.0,0.9943517013013976,-10.296459216684283,1.0,0.0,0.0 -54,20.0,9.62804140820998,11.2,0.0,0.0,0.9960738474903704,-10.088557753375849,1.0,0.0,0.0 -54,21.0,0.0,0.0,0.0,0.0,0.9964587637141956,-10.085109371486864,1.0,0.0,0.0 -54,22.0,1.7605561432155394,1.6,0.0,0.0,0.9908002048853918,-10.120952489676254,1.0,0.0,0.0 -54,23.0,4.786512014367248,6.7,0.0,0.0,0.9862172374458116,-10.212341106705578,1.0,0.0,0.0 -54,24.0,0.0,0.0,0.0,0.0,0.9798489561969156,-9.938636452907168,1.0,0.0,0.0 -54,25.0,1.925608281641996,2.3,0.0,0.0,0.9657249730634514,-10.02740869845416,1.0,0.0,0.0 -54,26.0,0.0,0.0,0.0,0.0,0.9829556105091488,-9.686676081766798,1.0,0.0,0.0 -54,27.0,0.0,0.0,0.0,0.0,0.9650932746208388,-7.498862826414427,1.0,0.0,0.0 -54,28.0,1.3204171074116544,0.9,0.0,0.0,0.9690671188501356,-10.3311299592745,1.0,0.0,0.0 -54,29.0,5.831842224401474,1.9,0.0,0.0,0.9614891017163296,-10.814964226288142,1.0,0.0,0.0 -55,0.0,0.0,0.0,162.73113234885557,0.0004985216446762,1.0,0.0,0.0,0.0,1.0 -55,1.0,11.938771346180376,12.7,7.935022621393056e-07,9.354626860438316,0.9800185153028154,-3.7281280287610032,0.0,1.0,0.0 -55,2.0,1.3204171074116544,1.2,0.0,0.0,0.9745833522162476,-4.915949396767788,1.0,0.0,0.0 -55,3.0,4.181320840136906,1.6,0.0,0.0,0.9680592393485252,-6.041725708828597,1.0,0.0,0.0 -55,4.0,51.82637146590744,19.0,-7.486067870034334e-10,24.09457477245384,0.9602117208253236,-8.974888433289065,0.0,1.0,0.0 -55,5.0,0.0,0.0,0.0,0.0,0.9677000216050412,-7.135416484615,1.0,0.0,0.0 -55,6.0,12.54396252041072,10.9,0.0,0.0,0.9581387401303784,-8.167230283772078,1.0,0.0,0.0 -55,7.0,16.50521384264568,30.0,-3.7184923760266095e-10,29.62749798153284,0.9663588358496604,-7.560868339102037,0.0,1.0,0.0 -55,8.0,0.0,0.0,0.0,0.0,1.0168793735728858,-8.859367407728513,1.0,0.0,0.0 -55,9.0,3.191008009578165,2.0,0.0,0.0,1.010838817416782,-9.751698978410928,1.0,0.0,0.0 -55,10.0,0.0,0.0,3.0252450319962146e-10,20.067824512764,1.0563922304305482,-8.85936740769495,0.0,1.0,0.0 -55,11.0,6.161946501254388,7.5,0.0,0.0,1.0171090841687191,-9.651690165898296,1.0,0.0,0.0 -55,12.0,0.0,0.0,-1.3982514537597314e-10,14.701066712512365,1.0369570550156948,-9.65169016590893,0.0,1.0,0.0 -55,13.0,3.411077527480108,1.6,0.0,0.0,1.0039049887013265,-10.175202984445669,1.0,0.0,0.0 -55,14.0,4.51142511698982,2.5,0.0,0.0,0.9981312436728628,-10.20638969698274,1.0,0.0,0.0 -55,15.0,1.925608281641996,1.8,0.0,0.0,1.00849677868909,-9.803009523360938,1.0,0.0,0.0 -55,16.0,4.951564152793705,5.8,0.0,0.0,1.0056855055230112,-9.862168529084228,1.0,0.0,0.0 -55,17.0,1.7605561432155394,0.9,0.0,0.0,0.9806999055591648,-10.82998373241386,1.0,0.0,0.0 -55,18.0,5.226651050171133,3.4,0.0,0.0,0.9727392672047857,-11.105076584840807,1.0,0.0,0.0 -55,19.0,1.2103823484606837,0.7,0.0,0.0,1.0082624627788943,-9.857077622291772,1.0,0.0,0.0 -55,20.0,9.62804140820998,11.2,0.0,0.0,0.9999314971534262,-9.954358266445482,1.0,0.0,0.0 -55,21.0,0.0,0.0,0.0,0.0,1.0001968072259129,-9.959459607178534,1.0,0.0,0.0 -55,22.0,1.7605561432155394,1.6,0.0,0.0,0.9910035276303004,-10.264405144684217,1.0,0.0,0.0 -55,23.0,4.786512014367248,6.7,0.0,0.0,0.9882121513832924,-10.190727405154076,1.0,0.0,0.0 -55,24.0,0.0,0.0,0.0,0.0,0.9813155058138364,-9.914448153305155,1.0,0.0,0.0 -55,25.0,1.925608281641996,2.3,0.0,0.0,0.9672132593283344,-10.002951338105913,1.0,0.0,0.0 -55,26.0,0.0,0.0,0.0,0.0,0.9840822051406176,-9.66168167160164,1.0,0.0,0.0 -55,27.0,0.0,0.0,0.0,0.0,0.965653220025576,-7.490615597561448,1.0,0.0,0.0 -55,28.0,1.3204171074116544,0.9,0.0,0.0,0.970210562905073,-10.304640145027015,1.0,0.0,0.0 -55,29.0,5.831842224401474,1.9,0.0,0.0,0.9626417636661204,-10.787326723400012,1.0,0.0,0.0 -56,0.0,0.0,0.0,162.61898893648444,0.0006071971964338,1.0,0.0,0.0,0.0,1.0 -56,1.0,11.938771346180376,12.7,7.844388481469693e-07,10.563846108005391,0.980183582306376,-3.732357206791208,0.0,1.0,0.0 -56,2.0,1.3204171074116544,1.2,0.0,0.0,0.9741373428432932,-4.894928127960965,1.0,0.0,0.0 -56,3.0,4.181320840136906,1.6,0.0,0.0,0.9675064463917176,-6.015834341761569,1.0,0.0,0.0 -56,4.0,51.82637146590744,19.0,-8.14115417434437e-10,24.21970016237414,0.96014315596975,-8.984006378502103,0.0,1.0,0.0 -56,5.0,0.0,0.0,0.0,0.0,0.967138837592129,-7.141566255825071,1.0,0.0,0.0 -56,6.0,12.54396252041072,10.9,0.0,0.0,0.95777584192158,-8.174566684488822,1.0,0.0,0.0 -56,7.0,16.50521384264568,30.0,-4.3015117182077616e-10,30.569776695460803,0.9661352694045584,-7.573511010529051,0.0,1.0,0.0 -56,8.0,0.0,0.0,0.0,0.0,1.0156002100301114,-8.964504226963975,1.0,0.0,0.0 -56,9.0,3.191008009578165,2.0,0.0,0.0,1.0066598113706118,-9.911427906276268,1.0,0.0,0.0 -56,10.0,0.0,0.0,5.069061793124562e-10,22.61185052280647,1.0599718135810947,-8.964504226907854,0.0,1.0,0.0 -56,11.0,6.161946501254388,7.5,0.0,0.0,1.0136921577668383,-9.440479887930753,1.0,0.0,0.0 -56,12.0,0.0,0.0,-5.614447035493287e-10,9.944667996949772,1.0272454283019463,-9.440479887974002,0.0,1.0,0.0 -56,13.0,3.411077527480108,1.6,0.0,0.0,1.002619166843068,-9.913439008791608,1.0,0.0,0.0 -56,14.0,4.51142511698982,2.5,0.0,0.0,0.999287908293166,-9.941077578072118,1.0,0.0,0.0 -56,15.0,1.925608281641996,1.8,0.0,0.0,1.0044822330352112,-9.750122937981194,1.0,0.0,0.0 -56,16.0,4.951564152793705,5.8,0.0,0.0,1.001619442848823,-9.956667586283464,1.0,0.0,0.0 -56,17.0,1.7605561432155394,0.9,0.0,0.0,0.9926805270243564,-10.279618775990691,1.0,0.0,0.0 -56,18.0,5.226651050171133,3.4,0.0,0.0,0.9910748487197516,-10.382123251880856,1.0,0.0,0.0 -56,19.0,1.2103823484606837,0.7,0.0,0.0,0.9943517013013976,-10.296459216684283,1.0,0.0,0.0 -56,20.0,9.62804140820998,11.2,0.0,0.0,0.9960738474903704,-10.088557753375849,1.0,0.0,0.0 -56,21.0,0.0,0.0,0.0,0.0,0.9964587637141956,-10.085109371486864,1.0,0.0,0.0 -56,22.0,1.7605561432155394,1.6,0.0,0.0,0.9908002048853918,-10.120952489676254,1.0,0.0,0.0 -56,23.0,4.786512014367248,6.7,0.0,0.0,0.9862172374458116,-10.212341106705578,1.0,0.0,0.0 -56,24.0,0.0,0.0,0.0,0.0,0.9798489561969156,-9.938636452907168,1.0,0.0,0.0 -56,25.0,1.925608281641996,2.3,0.0,0.0,0.9657249730634514,-10.02740869845416,1.0,0.0,0.0 -56,26.0,0.0,0.0,0.0,0.0,0.9829556105091488,-9.686676081766798,1.0,0.0,0.0 -56,27.0,0.0,0.0,0.0,0.0,0.9650932746208388,-7.498862826414427,1.0,0.0,0.0 -56,28.0,1.3204171074116544,0.9,0.0,0.0,0.9690671188501356,-10.3311299592745,1.0,0.0,0.0 -56,29.0,5.831842224401474,1.9,0.0,0.0,0.9614891017163296,-10.814964226288142,1.0,0.0,0.0 -57,0.0,0.0,0.0,136.48035989940442,8.479081872181382e-05,1.0,0.0,0.0,0.0,1.0 -57,1.0,11.938771346180376,12.7,33.05806415789792,17.780138021740882,0.962712233847862,-18.541245142054684,0.0,1.0,0.0 -57,2.0,1.3204171074116544,1.2,0.0,0.0,0.9615268001123228,-13.504869635808816,1.0,0.0,0.0 -57,3.0,4.181320840136906,1.6,0.0,0.0,0.9565436560309888,-16.726346889761317,1.0,0.0,0.0 -57,4.0,51.82637146590744,19.0,2.5440171921045066e-10,24.346656243445352,0.9462120552629508,-22.41418235848696,0.0,1.0,0.0 -57,5.0,0.0,0.0,0.0,0.0,0.9594084716342433,-18.9341805589945,1.0,0.0,0.0 -57,6.0,12.54396252041072,10.9,0.0,0.0,0.9475221420787864,-20.639271448680084,1.0,0.0,0.0 -57,7.0,16.50521384264568,30.0,2.5487857483703235e-10,39.48917777570478,0.96181085541344,-19.42601647461165,0.0,1.0,0.0 -57,8.0,0.0,0.0,0.0,0.0,1.0136289427268943,-20.554091023062963,1.0,0.0,0.0 -57,9.0,3.191008009578165,2.0,0.0,0.0,1.0066810385175389,-21.38882995618872,1.0,0.0,0.0 -57,10.0,0.0,0.0,4.764284157636425e-10,23.63116382159076,1.0599995481074955,-20.55409102301012,0.0,1.0,0.0 -57,11.0,6.161946501254388,7.5,0.0,0.0,1.0253232529109697,-20.68307482903533,1.0,0.0,0.0 -57,12.0,0.0,0.0,3.9166393882229157e-10,23.99720930830359,1.0571044942309826,-20.683074829006344,0.0,1.0,0.0 -57,13.0,3.411077527480108,1.6,0.0,0.0,1.0129124435292252,-21.19250312150206,1.0,0.0,0.0 -57,14.0,4.51142511698982,2.5,0.0,0.0,1.007882383801321,-21.233103299586023,1.0,0.0,0.0 -57,15.0,1.925608281641996,1.8,0.0,0.0,1.0109660706333612,-21.06645994010735,1.0,0.0,0.0 -57,16.0,4.951564152793705,5.8,0.0,0.0,1.0037241516055533,-21.390961376369564,1.0,0.0,0.0 -57,17.0,1.7605561432155394,0.9,0.0,0.0,0.9982849795991589,-21.631362414439813,1.0,0.0,0.0 -57,18.0,5.226651050171133,3.4,0.0,0.0,0.9948995257995986,-21.77129226025253,1.0,0.0,0.0 -57,19.0,1.2103823484606837,0.7,0.0,0.0,0.9972205234042024,-21.70623988826989,1.0,0.0,0.0 -57,20.0,9.62804140820998,11.2,0.0,0.0,0.9963380462789164,-21.562672100673023,1.0,0.0,0.0 -57,21.0,0.0,0.0,0.0,0.0,0.9967996529397788,-21.55828136290045,1.0,0.0,0.0 -57,22.0,1.7605561432155394,1.6,0.0,0.0,0.9963140369645076,-21.485322244464214,1.0,0.0,0.0 -57,23.0,4.786512014367248,6.7,0.0,0.0,0.9876057996816742,-21.679146317794444,1.0,0.0,0.0 -57,24.0,0.0,0.0,0.0,0.0,0.9776845411264352,-21.499610523270608,1.0,0.0,0.0 -57,25.0,1.925608281641996,2.3,0.0,0.0,0.9635283532938812,-21.588782121781662,1.0,0.0,0.0 -57,26.0,0.0,0.0,0.0,0.0,0.9786321509442032,-21.309932648510816,1.0,0.0,0.0 -57,27.0,0.0,0.0,0.0,0.0,0.9585502579400104,-19.28961033584196,1.0,0.0,0.0 -57,28.0,1.3204171074116544,0.9,0.0,0.0,0.9646786045472628,-21.960174298493104,1.0,0.0,0.0 -57,29.0,5.831842224401474,1.9,0.0,0.0,0.9570649966438716,-22.448451688081857,1.0,0.0,0.0 -58,0.0,0.0,0.0,151.3168343327156,9.989380878039356e-07,1.0,0.0,0.0,0.0,1.0 -58,1.0,11.938771346180376,12.7,11.241767603454402,30.443909279757307,0.9839146546141382,-3.528411653219382,0.0,1.0,0.0 -58,2.0,1.3204171074116544,1.2,0.0,0.0,0.9679238524153004,-4.398969804887466,1.0,0.0,0.0 -58,3.0,4.181320840136906,1.6,0.0,0.0,0.959785765934452,-5.401872695862242,1.0,0.0,0.0 -58,4.0,51.82637146590744,19.0,9.507001233540798e-09,22.855459037248,0.96437181408664,-9.912646969799198,0.0,1.0,0.0 -58,5.0,0.0,0.0,0.0,0.0,0.9527202732993848,-6.229894573140316,1.0,0.0,0.0 -58,6.0,12.54396252041072,10.9,0.0,0.0,0.94027384687607,-6.714480606577145,1.0,0.0,0.0 -58,7.0,16.50521384264568,30.0,0.0,0.0,0.9400000003525466,-6.47501280279595,0.0,1.0,0.0 -58,8.0,0.0,0.0,0.0,0.0,1.011475161095561,-7.9809340406099265,1.0,0.0,0.0 -58,9.0,3.191008009578165,2.0,0.0,0.0,1.0066393625865189,-8.87697533408586,1.0,0.0,0.0 -58,10.0,0.0,0.0,-1.0901588242520456e-09,23.999999294796297,1.0586304263248798,-7.980934040731259,0.0,1.0,0.0 -58,11.0,6.161946501254388,7.5,0.0,0.0,1.0188626286650777,-9.092460602368485,1.0,0.0,0.0 -58,12.0,0.0,0.0,1.4119105709827329e-10,23.99999933076364,1.0508371353999215,-9.092460602357908,0.0,1.0,0.0 -58,13.0,3.411077527480108,1.6,0.0,0.0,1.006466197265778,-9.499471856476754,1.0,0.0,0.0 -58,14.0,4.51142511698982,2.5,0.0,0.0,1.0022487813409202,-9.4348140523344,1.0,0.0,0.0 -58,15.0,1.925608281641996,1.8,0.0,0.0,0.9969145614875504,-9.455524584744776,1.0,0.0,0.0 -58,16.0,4.951564152793705,5.8,0.0,0.0,0.9829056235458596,-9.834585618226845,1.0,0.0,0.0 -58,17.0,1.7605561432155394,0.9,0.0,0.0,0.9946388483949328,-9.586159265866923,1.0,0.0,0.0 -58,18.0,5.226651050171133,3.4,0.0,0.0,0.9924306053300288,-9.577279406313547,1.0,0.0,0.0 -58,19.0,1.2103823484606837,0.7,0.0,0.0,0.995389624968411,-9.433216334697486,1.0,0.0,0.0 -58,20.0,9.62804140820998,11.2,0.0,0.0,0.9912849453023114,-9.175364142025725,1.0,0.0,0.0 -58,21.0,0.0,0.0,0.0,0.0,0.990158302073122,-9.20894129817145,1.0,0.0,0.0 -58,22.0,1.7605561432155394,1.6,0.0,0.0,0.9900806595558234,-9.492993317554014,1.0,0.0,0.0 -58,23.0,4.786512014367248,6.7,0.0,0.0,0.9805748674273742,-9.421092458610817,1.0,0.0,0.0 -58,24.0,0.0,0.0,0.0,0.0,0.9698189271843854,-9.06152286601737,1.0,0.0,0.0 -58,25.0,1.925608281641996,2.3,0.0,0.0,0.9555444396270494,-9.15216878554672,1.0,0.0,0.0 -58,26.0,0.0,0.0,0.0,0.0,0.9702542634694752,-8.758473992054034,1.0,0.0,0.0 -58,27.0,0.0,0.0,0.0,0.0,0.9485022040938162,-6.559550256701652,1.0,0.0,0.0 -58,28.0,1.3204171074116544,0.9,0.0,0.0,0.9561728535409276,-9.420156447059563,1.0,0.0,0.0 -58,29.0,5.831842224401474,1.9,0.0,0.0,0.9484892883472008,-9.917221975965914,1.0,0.0,0.0 -59,0.0,0.0,0.0,162.66948610746527,0.0009062498405043,1.0,0.0,0.0,0.0,1.0 -59,1.0,11.938771346180376,12.7,1.1524878221678951e-06,10.134638722143537,0.9801304828322304,-3.7315726859832345,0.0,1.0,0.0 -59,2.0,1.3204171074116544,1.2,0.0,0.0,0.974273676624706,-4.901483309601288,1.0,0.0,0.0 -59,3.0,4.181320840136906,1.6,0.0,0.0,0.9676754367228524,-6.023910127683407,1.0,0.0,0.0 -59,4.0,51.82637146590744,19.0,-4.872368655757164e-10,24.200200310739035,0.9602113046676186,-8.982897199259781,0.0,1.0,0.0 -59,5.0,0.0,0.0,0.0,0.0,0.9673665911626342,-7.14255121398423,1.0,0.0,0.0 -59,6.0,12.54396252041072,10.9,0.0,0.0,0.9579396432492844,-8.174681434803473,1.0,0.0,0.0 -59,7.0,16.50521384264568,30.0,1.1321977586992687e-11,30.67741308839743,0.9662388936169456,-7.5787893935136,0.0,1.0,0.0 -59,8.0,0.0,0.0,0.0,0.0,1.0178457712765834,-8.850005088659795,1.0,0.0,0.0 -59,9.0,3.191008009578165,2.0,0.0,0.0,1.0111247497853684,-9.733245104614928,1.0,0.0,0.0 -59,10.0,0.0,0.0,1.1035700564910159e-09,21.45030185664922,1.0599393385580174,-8.85000508853789,0.0,1.0,0.0 -59,11.0,6.161946501254388,7.5,0.0,0.0,1.0143614522299416,-9.497005027461686,1.0,0.0,0.0 -59,12.0,0.0,0.0,1.561877788873423e-10,11.57360569011238,1.0300911743837604,-9.497005027449696,0.0,1.0,0.0 -59,13.0,3.411077527480108,1.6,0.0,0.0,1.0020644563167658,-9.995768347337815,1.0,0.0,0.0 -59,14.0,4.51142511698982,2.5,0.0,0.0,0.9973709482580472,-10.0213596686438,1.0,0.0,0.0 -59,15.0,1.925608281641996,1.8,0.0,0.0,1.0069637078469789,-9.713414355755097,1.0,0.0,0.0 -59,16.0,4.951564152793705,5.8,0.0,0.0,1.0054300597122574,-9.819400047680665,1.0,0.0,0.0 -59,17.0,1.7605561432155394,0.9,0.0,0.0,0.9930377281402352,-10.269315611457907,1.0,0.0,0.0 -59,18.0,5.226651050171133,3.4,0.0,0.0,0.9927744292594388,-10.317626110103175,1.0,0.0,0.0 -59,19.0,1.2103823484606837,0.7,0.0,0.0,0.9967545983180884,-10.204124725269098,1.0,0.0,0.0 -59,20.0,9.62804140820998,11.2,0.0,0.0,1.002913970542475,-9.86193355428578,1.0,0.0,0.0 -59,21.0,0.0,0.0,0.0,0.0,1.0040344143063782,-9.844557281140863,1.0,0.0,0.0 -59,22.0,1.7605561432155394,1.6,0.0,0.0,0.9818526775211562,-10.347773220969875,1.0,0.0,0.0 -59,23.0,4.786512014367248,6.7,0.0,0.0,0.9679999871471904,-10.643032931691916,1.0,0.0,0.0 -59,24.0,0.0,0.0,0.0,0.0,0.9685730850490294,-10.297305786436011,1.0,0.0,0.0 -59,25.0,1.925608281641996,2.3,0.0,0.0,0.9542796755111504,-10.388188596748128,1.0,0.0,0.0 -59,26.0,0.0,0.0,0.0,0.0,0.9760553413746864,-9.991814675467744,1.0,0.0,0.0 -59,27.0,0.0,0.0,0.0,0.0,0.9643682017678143,-7.520214839045638,1.0,0.0,0.0 -59,28.0,1.3204171074116544,0.9,0.0,0.0,0.962062722837572,-10.64554323409326,1.0,0.0,0.0 -59,29.0,5.831842224401474,1.9,0.0,0.0,0.9544277382396804,-11.136498306698082,1.0,0.0,0.0 -60,0.0,0.0,0.0,162.85074841986153,0.0117954755556759,1.0,0.0,0.0,0.0,1.0 -60,1.0,11.938771346180376,12.7,0.0,0.0,0.9791411056905076,-3.710776999692656,0.0,1.0,0.0 -60,2.0,1.3204171074116544,1.2,0.0,0.0,0.9770632291979452,-4.96551817246863,1.0,0.0,0.0 -60,3.0,4.181320840136906,1.6,0.0,0.0,0.9711227792016272,-6.102041018639491,1.0,0.0,0.0 -60,4.0,51.82637146590744,19.0,1.8358290530587517e-09,27.626666028226254,0.9654665599919806,-9.022918182563286,0.0,1.0,0.0 -60,5.0,0.0,0.0,0.0,0.0,0.9717358231897524,-7.178490120461791,1.0,0.0,0.0 -60,6.0,12.54396252041072,10.9,0.0,0.0,0.9627158254487426,-8.209338409367923,1.0,0.0,0.0 -60,7.0,16.50521384264568,30.0,2.727710741290292e-09,32.44307583662214,0.97128206596024,-7.624476869959357,0.0,1.0,0.0 -60,8.0,0.0,0.0,0.0,0.0,1.0240819482311507,-8.67417665093228,1.0,0.0,0.0 -60,9.0,3.191008009578165,2.0,0.0,0.0,1.0214839420554125,-9.443504530924804,1.0,0.0,0.0 -60,10.0,0.0,0.0,2.4163200158026067e-09,18.3013471628349,1.0599942214569191,-8.674176650667006,0.0,1.0,0.0 -60,11.0,6.161946501254388,7.5,0.0,0.0,1.024888389585772,-9.841519253988851,1.0,0.0,0.0 -60,12.0,0.0,0.0,2.727202648093017e-09,19.4967222112544,1.05086267875558,-9.841519253785732,0.0,1.0,0.0 -60,13.0,3.411077527480108,1.6,0.0,0.0,1.009797281791966,-10.426150864163867,1.0,0.0,0.0 -60,14.0,4.51142511698982,2.5,0.0,0.0,1.00167793384198,-10.48044298748568,1.0,0.0,0.0 -60,15.0,1.925608281641996,1.8,0.0,0.0,1.0178856332768456,-9.782642246827264,1.0,0.0,0.0 -60,16.0,4.951564152793705,5.8,0.0,0.0,1.0158689752739232,-9.64007501679856,1.0,0.0,0.0 -60,17.0,1.7605561432155394,0.9,0.0,0.0,0.984312078825646,-11.099548353220197,1.0,0.0,0.0 -60,18.0,5.226651050171133,3.4,0.0,0.0,0.9763812172189684,-11.372609325049211,1.0,0.0,0.0 -60,19.0,1.2103823484606837,0.7,0.0,0.0,1.0189346068734224,-9.546692781197104,1.0,0.0,0.0 -60,20.0,9.62804140820998,11.2,0.0,0.0,1.0098538621196298,-9.62756477456508,1.0,0.0,0.0 -60,21.0,0.0,0.0,0.0,0.0,1.0214839420554125,-9.443504530924804,1.0,0.0,0.0 -60,22.0,1.7605561432155394,1.6,0.0,0.0,0.9864544112393564,-10.742172295097928,1.0,0.0,0.0 -60,23.0,4.786512014367248,6.7,0.0,0.0,0.9729417259216584,-10.9496910946029,1.0,0.0,0.0 -60,24.0,0.0,0.0,0.0,0.0,0.9738371735669205,-10.495869136941176,1.0,0.0,0.0 -60,25.0,1.925608281641996,2.3,0.0,0.0,0.9596233705924204,-10.58575732708403,1.0,0.0,0.0 -60,26.0,0.0,0.0,0.0,0.0,0.9814503584160584,-10.1245204696434,1.0,0.0,0.0 -60,27.0,0.0,0.0,0.0,0.0,0.9689154207558152,-7.570020224252239,1.0,0.0,0.0 -60,28.0,1.3204171074116544,0.9,0.0,0.0,0.9675392882730942,-10.770980566830112,1.0,0.0,0.0 -60,29.0,5.831842224401474,1.9,0.0,0.0,0.959948918858066,-11.256354751707594,1.0,0.0,0.0 -61,0.0,0.0,0.0,163.42949095389883,0.000403751651401,1.0,0.0,0.0,0.0,1.0 -61,1.0,11.938771346180376,12.7,6.328193554212228e-07,6.032146560419399,0.9788984566500872,-3.7843364827718338,0.0,1.0,0.0 -61,2.0,1.3204171074116544,1.2,0.0,0.0,0.9773203662782416,-4.812240552242634,1.0,0.0,0.0 -61,3.0,4.181320840136906,1.6,0.0,0.0,0.9714165992891688,-5.911687117587891,1.0,0.0,0.0 -61,4.0,51.82637146590744,19.0,-5.566464112242347e-10,24.452143074669948,0.9590040453168746,-9.209879055946049,0.0,1.0,0.0 -61,5.0,0.0,0.0,0.0,0.0,0.9655954298165654,-7.523093695875294,1.0,0.0,0.0 -61,6.0,12.54396252041072,10.9,0.0,0.0,0.956364279923778,-8.493330425613449,1.0,0.0,0.0 -61,7.0,16.50521384264568,30.0,-3.9659452882193024e-10,30.16332752326076,0.9643141672359398,-7.976842222742443,0.0,1.0,0.0 -61,8.0,0.0,0.0,0.0,0.0,1.0097817265686766,-10.921527901385849,1.0,0.0,0.0 -61,9.0,3.191008009578165,2.0,0.0,0.0,0.9980849248298804,-12.698628531928074,1.0,0.0,0.0 -61,10.0,0.0,0.0,-7.465474135322173e-10,23.99963084015281,1.0570086188179946,-10.9215279014692,0.0,1.0,0.0 -61,11.0,6.161946501254388,7.5,0.0,0.0,0.9780496048272224,-15.299766004765273,1.0,0.0,0.0 -61,12.0,0.0,0.0,-1.0433569030672871e-10,18.011505053574854,1.0031856376108057,-15.299766004773808,0.0,1.0,0.0 -61,13.0,3.411077527480108,1.6,0.0,0.0,0.9689098851463744,-15.370369488802028,1.0,0.0,0.0 -61,14.0,4.51142511698982,2.5,0.0,0.0,0.9706527837779156,-15.025997949069229,1.0,0.0,0.0 -61,15.0,1.925608281641996,1.8,0.0,0.0,0.9821039705210198,-14.336667330688991,1.0,0.0,0.0 -61,16.0,4.951564152793705,5.8,0.0,0.0,0.9879249870333808,-13.284629760109391,1.0,0.0,0.0 -61,17.0,1.7605561432155394,0.9,0.0,0.0,0.9709175178526626,-14.56438349533624,1.0,0.0,0.0 -61,18.0,5.226651050171133,3.4,0.0,0.0,0.9734832238628914,-14.18884922875125,1.0,0.0,0.0 -61,19.0,1.2103823484606837,0.7,0.0,0.0,0.979079788744124,-13.848610673396196,1.0,0.0,0.0 -61,20.0,9.62804140820998,11.2,0.0,0.0,0.9866307023178408,-12.938212711380949,1.0,0.0,0.0 -61,21.0,0.0,0.0,0.0,0.0,0.9867692372643768,-12.95345639348206,1.0,0.0,0.0 -61,22.0,1.7605561432155394,1.6,0.0,0.0,0.9684936466789136,-14.360656099249583,1.0,0.0,0.0 -61,23.0,4.786512014367248,6.7,0.0,0.0,0.9726493617970108,-13.315450146293555,1.0,0.0,0.0 -61,24.0,0.0,0.0,0.0,0.0,0.973403653182898,-12.10212335370864,1.0,0.0,0.0 -61,25.0,1.925608281641996,2.3,0.0,0.0,0.9591833283017576,-12.192092834325043,1.0,0.0,0.0 -61,26.0,0.0,0.0,0.0,0.0,0.9808326725368212,-11.263131252355532,1.0,0.0,0.0 -61,27.0,0.0,0.0,0.0,0.0,0.9627714806105526,-8.01362969371794,1.0,0.0,0.0 -61,28.0,1.3204171074116544,0.9,0.0,0.0,0.9669123153705016,-11.910417335863055,1.0,0.0,0.0 -61,29.0,5.831842224401474,1.9,0.0,0.0,0.9593168651411108,-12.396425587642074,1.0,0.0,0.0 -62,0.0,0.0,0.0,164.04769475990625,0.0016479091858201,1.0,0.0,0.0,0.0,1.0 -62,1.0,11.938771346180376,12.7,2.086001856379027e-06,14.601674781484334,0.9788673424670296,-4.21503270537864,0.0,1.0,0.0 -62,2.0,1.3204171074116544,1.2,0.0,0.0,0.9759708704302896,-3.655365491469389,1.0,0.0,0.0 -62,3.0,4.181320840136906,1.6,0.0,0.0,0.9696468384893442,-4.475947112292491,1.0,0.0,0.0 -62,4.0,51.82637146590744,19.0,-1.7167664907782979e-09,25.47517543256012,0.9574897836610952,-10.692329616833987,0.0,1.0,0.0 -62,5.0,0.0,0.0,0.0,0.0,0.9600227690383074,-10.04326856677611,1.0,0.0,0.0 -62,6.0,12.54396252041072,10.9,0.0,0.0,0.9522335711252624,-10.590433848473378,1.0,0.0,0.0 -62,7.0,16.50521384264568,30.0,-1.7061796280675452e-09,26.222355689500063,0.9557223171215586,-10.64599722738634,0.0,1.0,0.0 -62,8.0,0.0,0.0,0.0,0.0,1.0074558204310622,-11.182651172485793,1.0,0.0,0.0 -62,9.0,3.191008009578165,2.0,0.0,0.0,1.005697414152278,-11.77075401964501,1.0,0.0,0.0 -62,10.0,0.0,0.0,-3.0566656633137753e-09,14.684623008099557,1.0369125155699557,-11.182651172834504,0.0,1.0,0.0 -62,11.0,6.161946501254388,7.5,0.0,0.0,1.025805490890038,-9.488522286439965,1.0,0.0,0.0 -62,12.0,0.0,0.0,-1.8334036769084802e-09,23.999822217529008,1.0575760212623466,-9.488522286575524,0.0,1.0,0.0 -62,13.0,3.411077527480108,1.6,0.0,0.0,1.0113982788626263,-10.189503254699236,1.0,0.0,0.0 -62,14.0,4.51142511698982,2.5,0.0,0.0,1.0031243084179278,-10.37608195786801,1.0,0.0,0.0 -62,15.0,1.925608281641996,1.8,0.0,0.0,1.00401670679009,-9.846615759256228,1.0,0.0,0.0 -62,16.0,4.951564152793705,5.8,0.0,0.0,0.990110012510342,-10.220256668049206,1.0,0.0,0.0 -62,17.0,1.7605561432155394,0.9,0.0,0.0,0.98275233203449,-11.105351735825328,1.0,0.0,0.0 -62,18.0,5.226651050171133,3.4,0.0,0.0,0.9730615786888872,-11.446677041839177,1.0,0.0,0.0 -62,19.0,1.2103823484606837,0.7,0.0,0.0,0.9721484352948953,-11.482113487835743,1.0,0.0,0.0 -62,20.0,9.62804140820998,11.2,0.0,0.0,0.994918780655782,-11.8956962254332,1.0,0.0,0.0 -62,21.0,0.0,0.0,0.0,0.0,0.995252446747655,-11.87525855227578,1.0,0.0,0.0 -62,22.0,1.7605561432155394,1.6,0.0,0.0,0.9922720535953488,-11.031089399193233,1.0,0.0,0.0 -62,23.0,4.786512014367248,6.7,0.0,0.0,0.9847429086869924,-11.770015291517405,1.0,0.0,0.0 -62,24.0,0.0,0.0,0.0,0.0,0.9730551224132272,-11.890529294442436,1.0,0.0,0.0 -62,25.0,1.925608281641996,2.3,0.0,0.0,0.9588295498355022,-11.980564211690274,1.0,0.0,0.0 -62,26.0,0.0,0.0,0.0,0.0,0.9665538608207128,-13.249541788538425,1.0,0.0,0.0 -62,27.0,0.0,0.0,0.0,0.0,0.947935125399731,-11.510124350549347,1.0,0.0,0.0 -62,28.0,1.3204171074116544,0.9,0.0,0.0,0.9524152039363336,-13.916374378114613,1.0,0.0,0.0 -62,29.0,5.831842224401474,1.9,0.0,0.0,0.9447003155824252,-14.417398244065431,1.0,0.0,0.0 -63,0.0,0.0,0.0,160.74269685012425,0.0019859171318969,1.0,0.0,0.0,0.0,1.0 -63,1.0,11.7976758770417,12.7,1.493483969005959e-06,11.263790860090296,0.9806765734044114,-3.677742100679721,0.0,1.0,0.0 -63,2.0,1.304812078566824,1.2,0.0,0.0,0.973527180233605,-4.870055284119632,1.0,0.0,0.0 -63,3.0,4.131904915461609,1.6,0.0,0.0,0.9667488416130076,-5.985593340754116,1.0,0.0,0.0 -63,4.0,51.21387408374785,19.0,-7.673502642657597e-10,24.51212455896604,0.961304786173735,-8.82652310182796,0.0,1.0,0.0 -63,5.0,0.0,0.0,0.0,0.0,0.967883124040868,-6.962399081722185,1.0,0.0,0.0 -63,6.0,12.39571474638483,10.9,0.0,0.0,0.9587289274555904,-7.99912316328337,1.0,0.0,0.0 -63,7.0,16.3101509820853,30.0,7.181272367526343e-10,33.32486077655055,0.9677794266351109,-7.418678244206143,0.0,1.0,0.0 -63,8.0,0.0,0.0,0.0,0.0,1.0248231247152069,-6.962399081498511,1.0,0.0,0.0 -63,9.0,3.1532958565364915,2.0,0.0,0.0,0.9822829539321836,-11.595993553092216,1.0,0.0,0.0 -63,10.0,0.0,0.0,1.9035618685212602e-09,17.921781934843807,1.0599907033611984,-6.962399081289675,0.0,1.0,0.0 -63,11.0,6.089123033311846,7.5,0.0,0.0,1.0072270103527474,-10.375941433947323,1.0,0.0,0.0 -63,12.0,0.0,0.0,6.12411244162397e-10,12.86603206512044,1.0248034969137458,-10.375941433899737,0.0,1.0,0.0 -63,13.0,3.370764536297629,1.6,0.0,0.0,0.9944504786885612,-10.93388945637041,1.0,0.0,0.0 -63,14.0,4.458107935103315,2.5,0.0,0.0,0.9889056176900088,-11.00718135715179,1.0,0.0,0.0 -63,15.0,1.902850947909952,1.8,0.0,0.0,0.9896887779612976,-10.964876115286332,1.0,0.0,0.0 -63,16.0,4.893045294625591,5.8,0.0,0.0,0.9803084924488062,-11.50778312506075,1.0,0.0,0.0 -63,17.0,1.7397494380890988,0.9,0.0,0.0,0.9771990617908072,-11.564234997071072,1.0,0.0,0.0 -63,18.0,5.164881144327012,3.4,0.0,0.0,0.9726145734139988,-11.797619298339333,1.0,0.0,0.0 -63,19.0,1.1960777386862556,0.7,0.0,0.0,0.9743743051452868,-11.778010582621588,1.0,0.0,0.0 -63,20.0,9.51425473954976,11.2,0.0,0.0,0.9728985997323408,-11.692487876112423,1.0,0.0,0.0 -63,21.0,0.0,0.0,0.0,0.0,0.973751582643663,-11.66240080020844,1.0,0.0,0.0 -63,22.0,1.7397494380890988,1.6,0.0,0.0,0.977923053983038,-11.269792606066432,1.0,0.0,0.0 -63,23.0,4.729943784804737,6.7,0.0,0.0,0.9700952273872804,-11.474880975302296,1.0,0.0,0.0 -63,24.0,0.0,0.0,0.0,0.0,0.9714389497439496,-10.739168417929289,1.0,0.0,0.0 -63,25.0,1.902850947909952,2.3,0.0,0.0,0.9572505258689524,-10.824173607367186,1.0,0.0,0.0 -63,26.0,0.0,0.0,0.0,0.0,0.9792651359632688,-10.19647045129842,1.0,0.0,0.0 -63,27.0,0.0,0.0,0.0,0.0,0.9651677718584548,-7.390218484584853,1.0,0.0,0.0 -63,28.0,1.304812078566824,0.9,0.0,0.0,0.9654175332701248,-10.835874831682888,1.0,0.0,0.0 -63,29.0,5.762920013670139,1.9,0.0,0.0,0.9578717724229664,-11.316681770682466,1.0,0.0,0.0 -64,0.0,0.0,0.0,160.61694530495703,0.0005499825087795,1.0,0.0,0.0,0.0,1.0 -64,1.0,11.7976758770417,12.7,6.867252822917158e-07,10.363463504678704,0.980374061705488,-3.685058397306609,0.0,1.0,0.0 -64,2.0,1.304812078566824,1.2,0.0,0.0,0.97439418152152,-4.833072338097731,1.0,0.0,0.0 -64,3.0,4.131904915461609,1.6,0.0,0.0,0.9678117744639756,-5.939250245414814,1.0,0.0,0.0 -64,4.0,51.21387408374785,19.0,-7.600367731519247e-10,24.10217721360378,0.9605345755560636,-8.869992947713436,0.0,1.0,0.0 -64,5.0,0.0,0.0,0.0,0.0,0.9674756183700166,-7.0512930821323145,1.0,0.0,0.0 -64,6.0,12.39571474638483,10.9,0.0,0.0,0.958162288564982,-8.069991048843088,1.0,0.0,0.0 -64,7.0,16.3101509820853,30.0,-5.346609572963783e-10,30.510964701552084,0.966475644778418,-7.477650863001594,0.0,1.0,0.0 -64,8.0,0.0,0.0,0.0,0.0,1.0158049668850706,-8.851991594444192,1.0,0.0,0.0 -64,9.0,3.1532958565364915,2.0,0.0,0.0,1.00689482498939,-9.78747313206599,1.0,0.0,0.0 -64,10.0,0.0,0.0,2.4130679967575896e-11,22.50208811174436,1.0599616070511602,-8.851991594441524,0.0,1.0,0.0 -64,11.0,6.089123033311846,7.5,0.0,0.0,1.013807482429114,-9.32170426827206,1.0,0.0,0.0 -64,12.0,0.0,0.0,-6.898433500321165e-10,9.799205018659654,1.0271635704186173,-9.321704268325195,0.0,1.0,0.0 -64,13.0,3.370764536297629,1.6,0.0,0.0,1.0028072358684357,-9.787343972604672,1.0,0.0,0.0 -64,14.0,4.458107935103315,2.5,0.0,0.0,0.999505704481268,-9.814086486765266,1.0,0.0,0.0 -64,15.0,1.902850947909952,1.8,0.0,0.0,1.0046745582904506,-9.626682310503476,1.0,0.0,0.0 -64,16.0,4.893045294625591,5.8,0.0,0.0,1.0018540226773252,-9.83082102231331,1.0,0.0,0.0 -64,17.0,1.7397494380890988,0.9,0.0,0.0,0.9929554838557122,-10.147779072515805,1.0,0.0,0.0 -64,18.0,5.164881144327012,3.4,0.0,0.0,0.9913694323803564,-10.249000172822262,1.0,0.0,0.0 -64,19.0,1.1960777386862556,0.7,0.0,0.0,0.9946342085801227,-10.165184322151834,1.0,0.0,0.0 -64,20.0,9.51425473954976,11.2,0.0,0.0,0.9963503325152612,-9.960236073493066,1.0,0.0,0.0 -64,21.0,0.0,0.0,0.0,0.0,0.9967346106508678,-9.95697908282296,1.0,0.0,0.0 -64,22.0,1.7397494380890988,1.6,0.0,0.0,0.9910790975983076,-9.990559830545578,1.0,0.0,0.0 -64,23.0,4.729943784804737,6.7,0.0,0.0,0.986547328248322,-10.080687952842824,1.0,0.0,0.0 -64,24.0,0.0,0.0,0.0,0.0,0.9802125341502236,-9.810095262002209,1.0,0.0,0.0 -64,25.0,1.902850947909952,2.3,0.0,0.0,0.966154894115152,-9.893563173002564,1.0,0.0,0.0 -64,26.0,0.0,0.0,0.0,0.0,0.9833115314253108,-9.562925259800467,1.0,0.0,0.0 -64,27.0,0.0,0.0,0.0,0.0,0.965448762248492,-7.403832225878662,1.0,0.0,0.0 -64,28.0,1.304812078566824,0.9,0.0,0.0,0.969524283429028,-10.197004877629515,1.0,0.0,0.0 -64,29.0,5.762920013670139,1.9,0.0,0.0,0.962011501996718,-10.673719225736694,1.0,0.0,0.0 -65,0.0,0.0,0.0,165.0804454458022,0.0011338097914759,1.0,0.0,0.0,0.0,1.0 -65,1.0,11.7976758770417,12.7,2.232417380423183e-06,9.507245756613637,0.9844573041322726,-3.594294202652005,0.0,1.0,0.0 -65,2.0,1.304812078566824,1.2,0.0,0.0,0.9619199325897618,-5.594190611373279,1.0,0.0,0.0 -65,3.0,4.131904915461609,1.6,0.0,0.0,0.9525770905181776,-6.893292148016135,1.0,0.0,0.0 -65,4.0,51.21387408374785,19.0,7.057145837959248e-11,39.9903469299981,0.9790245456211664,-14.75982012909957,0.0,1.0,0.0 -65,5.0,0.0,0.0,0.0,0.0,0.972840760297614,-18.806882291703992,1.0,0.0,0.0 -65,6.0,12.39571474638483,10.9,0.0,0.0,0.9669870935087032,-17.4100761341147,1.0,0.0,0.0 -65,7.0,16.3101509820853,30.0,-2.782044155315386e-10,30.090633121048604,0.971772741025112,-19.216097611155345,0.0,1.0,0.0 -65,8.0,0.0,0.0,0.0,0.0,1.0174568797698305,-18.769724540842255,1.0,0.0,0.0 -65,9.0,3.1532958565364915,2.0,0.0,0.0,1.0069817440017983,-18.75031299764037,1.0,0.0,0.0 -65,10.0,0.0,0.0,5.066612906880578e-09,21.678987306410832,1.0599969036528645,-18.769724540282397,0.0,1.0,0.0 -65,11.0,6.089123033311846,7.5,0.0,0.0,1.024970939416758,-14.172806253850911,1.0,0.0,0.0 -65,12.0,0.0,0.0,-5.0132576989502815e-09,23.99986028061225,1.0567658763510166,-14.172806254222175,0.0,1.0,0.0 -65,13.0,3.370764536297629,1.6,0.0,0.0,1.010586331580029,-15.003053489856915,1.0,0.0,0.0 -65,14.0,4.458107935103315,2.5,0.0,0.0,1.0013822738568832,-15.323488765581496,1.0,0.0,0.0 -65,15.0,1.902850947909952,1.8,0.0,0.0,1.0076420649434736,-16.203838334016034,1.0,0.0,0.0 -65,16.0,4.893045294625591,5.8,0.0,0.0,1.003536316140185,-18.052034784169653,1.0,0.0,0.0 -65,17.0,1.7397494380890988,0.9,0.0,0.0,0.981087138118795,-16.04292036021259,1.0,0.0,0.0 -65,18.0,5.164881144327012,3.4,0.0,0.0,0.9714307310949518,-16.37949001548096,1.0,0.0,0.0 -65,19.0,1.1960777386862556,0.7,0.0,0.0,0.9705210733911988,-16.41445433138693,1.0,0.0,0.0 -65,20.0,9.51425473954976,11.2,0.0,0.0,0.9911114235443804,-18.72429715927724,1.0,0.0,0.0 -65,21.0,0.0,0.0,0.0,0.0,0.9898439003799138,-18.654208475644587,1.0,0.0,0.0 -65,22.0,1.7397494380890988,1.6,0.0,0.0,0.9893846845603764,-16.52675485925218,1.0,0.0,0.0 -65,23.0,4.729943784804737,6.7,0.0,0.0,0.9808401633635968,-18.016697802682863,1.0,0.0,0.0 -65,24.0,0.0,0.0,0.0,0.0,0.9691499627898126,-18.13366214954952,1.0,0.0,0.0 -65,25.0,1.902850947909952,2.3,0.0,0.0,0.954927010856807,-18.21907544621805,1.0,0.0,0.0 -65,26.0,0.0,0.0,0.0,0.0,0.9901095456277998,-20.760883293716194,1.0,0.0,0.0 -65,27.0,0.0,0.0,0.0,0.0,0.971231459774118,-19.097656658542977,1.0,0.0,0.0 -65,28.0,1.304812078566824,0.9,0.0,0.0,0.940002228694194,-23.05651111435155,1.0,0.0,0.0 -65,29.0,5.762920013670139,1.9,0.0,0.0,0.947680785728215,-22.814957341387498,1.0,0.0,0.0 -66,0.0,0.0,0.0,160.9195314398427,0.0042018497873108,1.0,0.0,0.0,0.0,1.0 -66,1.0,11.7976758770417,12.7,6.502619362286234e-06,8.260080205302977,0.9800616684059612,-3.676137642182568,0.0,1.0,0.0 -66,2.0,1.304812078566824,1.2,0.0,0.0,0.9752068000079854,-4.884306563219769,1.0,0.0,0.0 -66,3.0,4.131904915461609,1.6,0.0,0.0,0.9688207063926928,-6.002492198324065,1.0,0.0,0.0 -66,4.0,51.21387408374785,19.0,7.037506190668909e-09,24.03606688731824,0.9606711627083432,-8.84663983915633,0.0,1.0,0.0 -66,5.0,0.0,0.0,0.0,0.0,0.9682109432172512,-7.019752872531691,1.0,0.0,0.0 -66,6.0,12.39571474638483,10.9,0.0,0.0,0.9586585879381564,-8.041784665675758,1.0,0.0,0.0 -66,7.0,16.3101509820853,30.0,3.750270969221219e-09,29.875992412336487,0.9669986718303178,-7.447190312192508,0.0,1.0,0.0 -66,8.0,0.0,0.0,0.0,0.0,1.0178141761234063,-9.281468811690358,1.0,0.0,0.0 -66,9.0,3.1532958565364915,2.0,0.0,0.0,1.0140393483991057,-10.448979846924772,1.0,0.0,0.0 -66,10.0,0.0,0.0,-2.7892240564109513e-09,18.307514786441573,1.0539447519302112,-9.28146881200023,0.0,1.0,0.0 -66,11.0,6.089123033311846,7.5,0.0,0.0,1.0229697236223665,-9.909435020785349,1.0,0.0,0.0 -66,12.0,0.0,0.0,4.094413245312669e-09,17.33576164069995,1.046168721824729,-9.909435020478462,0.0,1.0,0.0 -66,13.0,3.370764536297629,1.6,0.0,0.0,0.9854194143751924,-10.94935847674562,1.0,0.0,0.0 -66,14.0,4.458107935103315,2.5,0.0,0.0,0.9962267822688476,-10.76286159115164,1.0,0.0,0.0 -66,15.0,1.902850947909952,1.8,0.0,0.0,1.0129591991860762,-10.23989621275485,1.0,0.0,0.0 -66,16.0,4.893045294625591,5.8,0.0,0.0,1.0094053570714214,-10.477216691785308,1.0,0.0,0.0 -66,17.0,1.7397494380890988,0.9,0.0,0.0,0.9758187779643148,-11.489921322706016,1.0,0.0,0.0 -66,18.0,5.164881144327012,3.4,0.0,0.0,0.9661089672925188,-11.830172123123196,1.0,0.0,0.0 -66,19.0,1.1960777386862556,0.7,0.0,0.0,0.9651942872862558,-11.865523064742348,1.0,0.0,0.0 -66,20.0,9.51425473954976,11.2,0.0,0.0,1.0028699909851415,-10.61808041756402,1.0,0.0,0.0 -66,21.0,0.0,0.0,0.0,0.0,1.0030311618732124,-10.614160687001782,1.0,0.0,0.0 -66,22.0,1.7397494380890988,1.6,0.0,0.0,0.9906905101817092,-10.80320599040262,1.0,0.0,0.0 -66,23.0,4.729943784804737,6.7,0.0,0.0,0.9899936360180644,-10.708425865197148,1.0,0.0,0.0 -66,24.0,0.0,0.0,0.0,0.0,0.9835019845421638,-10.18451353019814,1.0,0.0,0.0 -66,25.0,1.902850947909952,2.3,0.0,0.0,0.9694927504352666,-10.267415862281904,1.0,0.0,0.0 -66,26.0,0.0,0.0,0.0,0.0,0.9864108356762552,-9.780221026280486,1.0,0.0,0.0 -66,27.0,0.0,0.0,0.0,0.0,0.9662544181929068,-7.404204871200287,1.0,0.0,0.0 -66,28.0,1.304812078566824,0.9,0.0,0.0,0.972669451287434,-10.410267270807092,1.0,0.0,0.0 -66,29.0,5.762920013670139,1.9,0.0,0.0,0.9651817300411428,-10.883882612618404,1.0,0.0,0.0 -67,0.0,0.0,0.0,160.7156476357676,0.0019321475575928,1.0,0.0,0.0,0.0,1.0 -67,1.0,11.7976758770417,12.7,2.059690226792986e-06,10.60304134395978,0.980350804355446,-3.691545334699316,0.0,1.0,0.0 -67,2.0,1.304812078566824,1.2,0.0,0.0,0.9744031179005972,-4.824144100800575,1.0,0.0,0.0 -67,3.0,4.131904915461609,1.6,0.0,0.0,0.9678214909314672,-5.928157585119933,1.0,0.0,0.0 -67,4.0,51.21387408374785,19.0,3.0352891615727537e-10,24.27491076248576,0.9604741347237205,-8.890595381582552,0.0,1.0,0.0 -67,5.0,0.0,0.0,0.0,0.0,0.9670180898011276,-7.0771971105049865,1.0,0.0,0.0 -67,6.0,12.39571474638483,10.9,0.0,0.0,0.9578635785102512,-8.093718813564726,1.0,0.0,0.0 -67,7.0,16.3101509820853,30.0,6.706501740613155e-11,31.535439612913294,0.9663754604692004,-7.511008133593641,0.0,1.0,0.0 -67,8.0,0.0,0.0,0.0,0.0,1.0134726164567098,-9.016437925292935,1.0,0.0,0.0 -67,9.0,3.1532958565364915,2.0,0.0,0.0,1.002385800416217,-10.027927866060272,1.0,0.0,0.0 -67,10.0,0.0,0.0,-7.48358462434791e-10,23.711064828590228,1.0599999894151555,-9.016437925375955,0.0,1.0,0.0 -67,11.0,6.089123033311846,7.5,0.0,0.0,1.0149978565027735,-9.046677928437324,1.0,0.0,0.0 -67,12.0,0.0,0.0,3.603165162157732e-10,7.601275514449515,1.0253762765651897,-9.046677928409553,0.0,1.0,0.0 -67,13.0,3.370764536297629,1.6,0.0,0.0,1.0035041008314762,-9.57633332324082,1.0,0.0,0.0 -67,14.0,4.458107935103315,2.5,0.0,0.0,0.9992729735917384,-9.655895446878436,1.0,0.0,0.0 -67,15.0,1.902850947909952,1.8,0.0,0.0,0.9891779996419324,-10.374852807963345,1.0,0.0,0.0 -67,16.0,4.893045294625591,5.8,0.0,0.0,0.9936890646038636,-10.216536675134892,1.0,0.0,0.0 -67,17.0,1.7397494380890988,0.9,0.0,0.0,0.9911598059274797,-10.12999347097151,1.0,0.0,0.0 -67,18.0,5.164881144327012,3.4,0.0,0.0,0.988662190379188,-10.315146687367656,1.0,0.0,0.0 -67,19.0,1.1960777386862556,0.7,0.0,0.0,0.9914551751439205,-10.27472568997969,1.0,0.0,0.0 -67,20.0,9.51425473954976,11.2,0.0,0.0,0.9921034799350502,-10.175348079363667,1.0,0.0,0.0 -67,21.0,0.0,0.0,0.0,0.0,0.9925901168101876,-10.1635511876006,1.0,0.0,0.0 -67,22.0,1.7397494380890988,1.6,0.0,0.0,0.9897999663093154,-9.942625943336934,1.0,0.0,0.0 -67,23.0,4.729943784804737,6.7,0.0,0.0,0.983912070689098,-10.182450519569011,1.0,0.0,0.0 -67,24.0,0.0,0.0,0.0,0.0,0.9783057193805202,-9.897903753173864,1.0,0.0,0.0 -67,25.0,1.902850947909952,2.3,0.0,0.0,0.9642198638570548,-9.981702184809366,1.0,0.0,0.0 -67,26.0,0.0,0.0,0.0,0.0,0.9818672129212817,-9.640976387166525,1.0,0.0,0.0 -67,27.0,0.0,0.0,0.0,0.0,0.9649331391036878,-7.434838768270329,1.0,0.0,0.0 -67,28.0,1.304812078566824,0.9,0.0,0.0,0.975086419620364,-9.846884074340243,1.0,0.0,0.0 -67,29.0,5.762920013670139,1.9,0.0,0.0,0.949923287843723,-11.40118425856384,1.0,0.0,0.0 -68,0.0,0.0,0.0,160.71090549732676,0.0022736277908386,1.0,0.0,0.0,0.0,1.0 -68,1.0,11.7976758770417,12.7,3.2613759905915028e-06,10.989179229227853,0.980418976480288,-3.6723566119521087,0.0,1.0,0.0 -68,2.0,1.304812078566824,1.2,0.0,0.0,0.9742820361621408,-4.87891794506533,1.0,0.0,0.0 -68,3.0,4.131904915461609,1.6,0.0,0.0,0.9676803453994892,-5.996242066405917,1.0,0.0,0.0 -68,4.0,51.21387408374785,19.0,4.737880858459695e-09,24.79821424327072,0.960712992099356,-8.823653533089624,0.0,1.0,0.0 -68,5.0,0.0,0.0,0.0,0.0,0.9664051699780708,-6.9380607321291645,1.0,0.0,0.0 -68,6.0,12.39571474638483,10.9,0.0,0.0,0.95760525845114,-7.983737404053405,1.0,0.0,0.0 -68,7.0,16.3101509820853,30.0,4.364987719895751e-09,35.526161618906386,0.9673355010040586,-7.409407732608881,0.0,1.0,0.0 -68,8.0,0.0,0.0,0.0,0.0,1.023945871563527,-11.69628391575532,1.0,0.0,0.0 -68,9.0,3.1532958565364915,2.0,0.0,0.0,1.011860290443821,-11.696283915843516,1.0,0.0,0.0 -68,10.0,0.0,0.0,1.4498590047526596e-09,11.501063158081486,1.046798606764194,-11.69628391559412,0.0,1.0,0.0 -68,11.0,6.089123033311846,7.5,0.0,0.0,1.024511651439972,-10.276402174805202,1.0,0.0,0.0 -68,12.0,0.0,0.0,5.742179250532742e-09,14.533974463609027,1.04400162517036,-10.276402174374567,0.0,1.0,0.0 -68,13.0,3.370764536297629,1.6,0.0,0.0,1.0131317453177289,-10.828263165067204,1.0,0.0,0.0 -68,14.0,4.458107935103315,2.5,0.0,0.0,1.0087230202869173,-10.938207661705327,1.0,0.0,0.0 -68,15.0,1.902850947909952,1.8,0.0,0.0,1.0122562144221532,-10.975092602976757,1.0,0.0,0.0 -68,16.0,4.893045294625591,5.8,0.0,0.0,1.0078586482772347,-11.566756979720498,1.0,0.0,0.0 -68,17.0,1.7397494380890988,0.9,0.0,0.0,1.0006598111717682,-11.541289152175542,1.0,0.0,0.0 -68,18.0,5.164881144327012,3.4,0.0,0.0,0.9981843439079068,-11.80543809917222,1.0,0.0,0.0 -68,19.0,1.1960777386862556,0.7,0.0,0.0,1.0009491622317546,-11.809286163387185,1.0,0.0,0.0 -68,20.0,9.51425473954976,11.2,0.0,0.0,1.0014410384531305,-11.772316479881065,1.0,0.0,0.0 -68,21.0,0.0,0.0,0.0,0.0,1.0018568728016002,-11.738574047940928,1.0,0.0,0.0 -68,22.0,1.7397494380890988,1.6,0.0,0.0,0.9991046353578577,-11.219106443935,1.0,0.0,0.0 -68,23.0,4.729943784804737,6.7,0.0,0.0,0.9929594795429084,-11.453944430044809,1.0,0.0,0.0 -68,24.0,0.0,0.0,0.0,0.0,0.9858600591612424,-10.616277772103729,1.0,0.0,0.0 -68,25.0,1.902850947909952,2.3,0.0,0.0,0.9718853176702928,-10.698778210497649,1.0,0.0,0.0 -68,26.0,0.0,0.0,0.0,0.0,0.9883163776247508,-10.017110366196585,1.0,0.0,0.0 -68,27.0,0.0,0.0,0.0,0.0,0.9651178751890264,-7.371935029073345,1.0,0.0,0.0 -68,28.0,1.304812078566824,0.9,0.0,0.0,0.9746030361031612,-10.644695948543315,1.0,0.0,0.0 -68,29.0,5.762920013670139,1.9,0.0,0.0,0.9671306372826454,-11.116421097638606,1.0,0.0,0.0 -69,0.0,0.0,0.0,161.6643530833322,0.0055712815220765,1.0,0.0,0.0,0.0,1.0 -69,1.0,11.7976758770417,12.7,5.061632946897164e-06,9.948828960250133,0.9814888979540268,-3.408878972471584,0.0,1.0,0.0 -69,2.0,1.304812078566824,1.2,0.0,0.0,0.9720765810622836,-5.736418092065698,1.0,0.0,0.0 -69,3.0,4.131904915461609,1.6,0.0,0.0,0.9651235414584892,-7.062786860862206,1.0,0.0,0.0 -69,4.0,51.21387408374785,19.0,-9.909389643675813e-09,26.03424082090595,0.9615903797021615,-9.131722883441077,0.0,1.0,0.0 -69,5.0,0.0,0.0,0.0,0.0,0.9640660593340572,-7.801840038921219,1.0,0.0,0.0 -69,6.0,12.39571474638483,10.9,0.0,0.0,0.9564918921785732,-8.619991678799854,1.0,0.0,0.0 -69,7.0,16.3101509820853,30.0,-6.755949472003963e-09,38.20718111901061,0.9658249931356792,-8.30568813875749,0.0,1.0,0.0 -69,8.0,0.0,0.0,0.0,0.0,1.0240172545594992,-13.826371028935402,1.0,0.0,0.0 -69,9.0,3.1532958565364915,2.0,0.0,0.0,1.0050014926388082,-13.82637102807592,1.0,0.0,0.0 -69,10.0,0.0,0.0,-1.4034414293893961e-08,18.323835919801308,1.0599743316099388,-13.826371030476311,0.0,1.0,0.0 -69,11.0,6.089123033311846,7.5,0.0,0.0,1.0327639446569097,-10.46354442419886,1.0,0.0,0.0 -69,12.0,0.0,0.0,-3.305163293049895e-09,12.442986319515056,1.0493646382690516,-10.463544424443493,0.0,1.0,0.0 -69,13.0,3.370764536297629,1.6,0.0,0.0,1.0246984066097813,-10.823918751752371,1.0,0.0,0.0 -69,14.0,4.458107935103315,2.5,0.0,0.0,0.9585089441474842,-14.95242347371266,1.0,0.0,0.0 -69,15.0,1.902850947909952,1.8,0.0,0.0,1.012372361880152,-11.949186065365312,1.0,0.0,0.0 -69,16.0,4.893045294625591,5.8,0.0,0.0,1.0034946441066663,-13.34261269804134,1.0,0.0,0.0 -69,17.0,1.7397494380890988,0.9,0.0,0.0,0.965547294063683,-14.914789410055198,1.0,0.0,0.0 -69,18.0,5.164881144327012,3.4,0.0,0.0,0.9720739619805338,-14.791402057129,1.0,0.0,0.0 -69,19.0,1.1960777386862556,0.7,0.0,0.0,0.9797135907699132,-14.586387518032096,1.0,0.0,0.0 -69,20.0,9.51425473954976,11.2,0.0,0.0,0.9923653809840514,-13.979318683966175,1.0,0.0,0.0 -69,21.0,0.0,0.0,0.0,0.0,0.9921011047561448,-13.968488930197706,1.0,0.0,0.0 -69,22.0,1.7397494380890988,1.6,0.0,0.0,0.9619299786806352,-14.581902730398376,1.0,0.0,0.0 -69,23.0,4.729943784804737,6.7,0.0,0.0,0.973417377912713,-13.93588615070768,1.0,0.0,0.0 -69,24.0,0.0,0.0,0.0,0.0,0.97384453216716,-12.586853839289793,1.0,0.0,0.0 -69,25.0,1.902850947909952,2.3,0.0,0.0,0.9596922124267736,-12.67143331467169,1.0,0.0,0.0 -69,26.0,0.0,0.0,0.0,0.0,0.981039727048844,-11.667168714568575,1.0,0.0,0.0 -69,27.0,0.0,0.0,0.0,0.0,0.9619884924960832,-8.317579465656266,1.0,0.0,0.0 -69,28.0,1.304812078566824,0.9,0.0,0.0,0.9742531232365396,-11.87342634752957,1.0,0.0,0.0 -69,29.0,5.762920013670139,1.9,0.0,0.0,0.9490661413650816,-13.430453321465482,1.0,0.0,0.0 -70,0.0,0.0,0.0,160.61694530495703,0.0005499825087795,1.0,0.0,0.0,0.0,1.0 -70,1.0,11.7976758770417,12.7,6.867252822917158e-07,10.363463504678704,0.980374061705488,-3.685058397306609,0.0,1.0,0.0 -70,2.0,1.304812078566824,1.2,0.0,0.0,0.97439418152152,-4.833072338097731,1.0,0.0,0.0 -70,3.0,4.131904915461609,1.6,0.0,0.0,0.9678117744639756,-5.939250245414814,1.0,0.0,0.0 -70,4.0,51.21387408374785,19.0,-7.600367731519247e-10,24.10217721360378,0.9605345755560636,-8.869992947713436,0.0,1.0,0.0 -70,5.0,0.0,0.0,0.0,0.0,0.9674756183700166,-7.0512930821323145,1.0,0.0,0.0 -70,6.0,12.39571474638483,10.9,0.0,0.0,0.958162288564982,-8.069991048843088,1.0,0.0,0.0 -70,7.0,16.3101509820853,30.0,-5.346609572963783e-10,30.510964701552084,0.966475644778418,-7.477650863001594,0.0,1.0,0.0 -70,8.0,0.0,0.0,0.0,0.0,1.0158049668850706,-8.851991594444192,1.0,0.0,0.0 -70,9.0,3.1532958565364915,2.0,0.0,0.0,1.00689482498939,-9.78747313206599,1.0,0.0,0.0 -70,10.0,0.0,0.0,2.4130679967575896e-11,22.50208811174436,1.0599616070511602,-8.851991594441524,0.0,1.0,0.0 -70,11.0,6.089123033311846,7.5,0.0,0.0,1.013807482429114,-9.32170426827206,1.0,0.0,0.0 -70,12.0,0.0,0.0,-6.898433500321165e-10,9.799205018659654,1.0271635704186173,-9.321704268325195,0.0,1.0,0.0 -70,13.0,3.370764536297629,1.6,0.0,0.0,1.0028072358684357,-9.787343972604672,1.0,0.0,0.0 -70,14.0,4.458107935103315,2.5,0.0,0.0,0.999505704481268,-9.814086486765266,1.0,0.0,0.0 -70,15.0,1.902850947909952,1.8,0.0,0.0,1.0046745582904506,-9.626682310503476,1.0,0.0,0.0 -70,16.0,4.893045294625591,5.8,0.0,0.0,1.0018540226773252,-9.83082102231331,1.0,0.0,0.0 -70,17.0,1.7397494380890988,0.9,0.0,0.0,0.9929554838557122,-10.147779072515805,1.0,0.0,0.0 -70,18.0,5.164881144327012,3.4,0.0,0.0,0.9913694323803564,-10.249000172822262,1.0,0.0,0.0 -70,19.0,1.1960777386862556,0.7,0.0,0.0,0.9946342085801227,-10.165184322151834,1.0,0.0,0.0 -70,20.0,9.51425473954976,11.2,0.0,0.0,0.9963503325152612,-9.960236073493066,1.0,0.0,0.0 -70,21.0,0.0,0.0,0.0,0.0,0.9967346106508678,-9.95697908282296,1.0,0.0,0.0 -70,22.0,1.7397494380890988,1.6,0.0,0.0,0.9910790975983076,-9.990559830545578,1.0,0.0,0.0 -70,23.0,4.729943784804737,6.7,0.0,0.0,0.986547328248322,-10.080687952842824,1.0,0.0,0.0 -70,24.0,0.0,0.0,0.0,0.0,0.9802125341502236,-9.810095262002209,1.0,0.0,0.0 -70,25.0,1.902850947909952,2.3,0.0,0.0,0.966154894115152,-9.893563173002564,1.0,0.0,0.0 -70,26.0,0.0,0.0,0.0,0.0,0.9833115314253108,-9.562925259800467,1.0,0.0,0.0 -70,27.0,0.0,0.0,0.0,0.0,0.965448762248492,-7.403832225878662,1.0,0.0,0.0 -70,28.0,1.304812078566824,0.9,0.0,0.0,0.969524283429028,-10.197004877629515,1.0,0.0,0.0 -70,29.0,5.762920013670139,1.9,0.0,0.0,0.962011501996718,-10.673719225736694,1.0,0.0,0.0 -71,0.0,0.0,0.0,160.61694530495703,0.0005499825087795,1.0,0.0,0.0,0.0,1.0 -71,1.0,11.7976758770417,12.7,6.867252822917158e-07,10.363463504678704,0.980374061705488,-3.685058397306609,0.0,1.0,0.0 -71,2.0,1.304812078566824,1.2,0.0,0.0,0.97439418152152,-4.833072338097731,1.0,0.0,0.0 -71,3.0,4.131904915461609,1.6,0.0,0.0,0.9678117744639756,-5.939250245414814,1.0,0.0,0.0 -71,4.0,51.21387408374785,19.0,-7.600367731519247e-10,24.10217721360378,0.9605345755560636,-8.869992947713436,0.0,1.0,0.0 -71,5.0,0.0,0.0,0.0,0.0,0.9674756183700166,-7.0512930821323145,1.0,0.0,0.0 -71,6.0,12.39571474638483,10.9,0.0,0.0,0.958162288564982,-8.069991048843088,1.0,0.0,0.0 -71,7.0,16.3101509820853,30.0,-5.346609572963783e-10,30.510964701552084,0.966475644778418,-7.477650863001594,0.0,1.0,0.0 -71,8.0,0.0,0.0,0.0,0.0,1.0158049668850706,-8.851991594444192,1.0,0.0,0.0 -71,9.0,3.1532958565364915,2.0,0.0,0.0,1.00689482498939,-9.78747313206599,1.0,0.0,0.0 -71,10.0,0.0,0.0,2.4130679967575896e-11,22.50208811174436,1.0599616070511602,-8.851991594441524,0.0,1.0,0.0 -71,11.0,6.089123033311846,7.5,0.0,0.0,1.013807482429114,-9.32170426827206,1.0,0.0,0.0 -71,12.0,0.0,0.0,-6.898433500321165e-10,9.799205018659654,1.0271635704186173,-9.321704268325195,0.0,1.0,0.0 -71,13.0,3.370764536297629,1.6,0.0,0.0,1.0028072358684357,-9.787343972604672,1.0,0.0,0.0 -71,14.0,4.458107935103315,2.5,0.0,0.0,0.999505704481268,-9.814086486765266,1.0,0.0,0.0 -71,15.0,1.902850947909952,1.8,0.0,0.0,1.0046745582904506,-9.626682310503476,1.0,0.0,0.0 -71,16.0,4.893045294625591,5.8,0.0,0.0,1.0018540226773252,-9.83082102231331,1.0,0.0,0.0 -71,17.0,1.7397494380890988,0.9,0.0,0.0,0.9929554838557122,-10.147779072515805,1.0,0.0,0.0 -71,18.0,5.164881144327012,3.4,0.0,0.0,0.9913694323803564,-10.249000172822262,1.0,0.0,0.0 -71,19.0,1.1960777386862556,0.7,0.0,0.0,0.9946342085801227,-10.165184322151834,1.0,0.0,0.0 -71,20.0,9.51425473954976,11.2,0.0,0.0,0.9963503325152612,-9.960236073493066,1.0,0.0,0.0 -71,21.0,0.0,0.0,0.0,0.0,0.9967346106508678,-9.95697908282296,1.0,0.0,0.0 -71,22.0,1.7397494380890988,1.6,0.0,0.0,0.9910790975983076,-9.990559830545578,1.0,0.0,0.0 -71,23.0,4.729943784804737,6.7,0.0,0.0,0.986547328248322,-10.080687952842824,1.0,0.0,0.0 -71,24.0,0.0,0.0,0.0,0.0,0.9802125341502236,-9.810095262002209,1.0,0.0,0.0 -71,25.0,1.902850947909952,2.3,0.0,0.0,0.966154894115152,-9.893563173002564,1.0,0.0,0.0 -71,26.0,0.0,0.0,0.0,0.0,0.9833115314253108,-9.562925259800467,1.0,0.0,0.0 -71,27.0,0.0,0.0,0.0,0.0,0.965448762248492,-7.403832225878662,1.0,0.0,0.0 -71,28.0,1.304812078566824,0.9,0.0,0.0,0.969524283429028,-10.197004877629515,1.0,0.0,0.0 -71,29.0,5.762920013670139,1.9,0.0,0.0,0.962011501996718,-10.673719225736694,1.0,0.0,0.0 -72,0.0,0.0,0.0,136.4645064871503,4.228800971617375e-05,1.0,0.0,0.0,0.0,1.0 -72,1.0,11.7976758770417,12.7,33.319523525834896,30.347620378478823,0.9717942839672368,-22.39133420820315,0.0,1.0,0.0 -72,2.0,1.304812078566824,1.2,0.0,0.0,0.961527724804528,-13.503252600168109,1.0,0.0,0.0 -72,3.0,4.131904915461609,1.6,0.0,0.0,0.9565415332235688,-16.724715726026528,1.0,0.0,0.0 -72,4.0,51.21387408374785,19.0,-8.317974216183783e-11,39.99987504466303,0.9584615013983954,-30.58729653653363,0.0,1.0,0.0 -72,5.0,0.0,0.0,0.0,0.0,0.957114456367392,-17.978651946252878,1.0,0.0,0.0 -72,6.0,12.39571474638483,10.9,0.0,0.0,0.9400001946448622,-31.2092390948223,1.0,0.0,0.0 -72,7.0,16.3101509820853,30.0,2.7034732408509558e-12,29.050080301777605,0.9548008056145164,-18.40408570037701,0.0,1.0,0.0 -72,8.0,0.0,0.0,0.0,0.0,1.0146445385571794,-20.461974448057468,1.0,0.0,0.0 -72,9.0,3.1532958565364915,2.0,0.0,0.0,1.0104325946895585,-21.73366025325867,1.0,0.0,0.0 -72,10.0,0.0,0.0,2.9842272656163764e-11,23.113045105807355,1.0599985024622296,-20.46197444805416,0.0,1.0,0.0 -72,11.0,6.089123033311846,7.5,0.0,0.0,1.027060108906706,-20.86466549488659,1.0,0.0,0.0 -72,12.0,0.0,0.0,6.637687901453732e-11,24.000257444490117,1.05879464825085,-20.86466549488169,0.0,1.0,0.0 -72,13.0,3.370764536297629,1.6,0.0,0.0,1.014638498492744,-21.4040332956159,1.0,0.0,0.0 -72,14.0,4.458107935103315,2.5,0.0,0.0,1.009278687225861,-21.479699618489025,1.0,0.0,0.0 -72,15.0,1.902850947909952,1.8,0.0,0.0,1.0134935969646748,-21.31892789347468,1.0,0.0,0.0 -72,16.0,4.893045294625591,5.8,0.0,0.0,1.007154163905969,-21.702901167410147,1.0,0.0,0.0 -72,17.0,1.7397494380890988,0.9,0.0,0.0,1.0005729770538343,-21.90561039242461,1.0,0.0,0.0 -72,18.0,5.164881144327012,3.4,0.0,0.0,0.9976990934358998,-22.0638928811678,1.0,0.0,0.0 -72,19.0,1.1960777386862556,0.7,0.0,0.0,1.000256802950918,-22.01175615071893,1.0,0.0,0.0 -72,20.0,9.51425473954976,11.2,0.0,0.0,0.995460397602777,-22.00694682720461,1.0,0.0,0.0 -72,21.0,0.0,0.0,0.0,0.0,0.9944284632679165,-22.03456709582567,1.0,0.0,0.0 -72,22.0,1.7397494380890988,1.6,0.0,0.0,0.9962876315404235,-21.847367308839225,1.0,0.0,0.0 -72,23.0,4.729943784804737,6.7,0.0,0.0,0.9856965856550288,-22.20347651169713,1.0,0.0,0.0 -72,24.0,0.0,0.0,0.0,0.0,0.974067220194202,-22.319269704137103,1.0,0.0,0.0 -72,25.0,1.902850947909952,2.3,0.0,0.0,0.959918233154622,-22.403809926140173,1.0,0.0,0.0 -72,26.0,0.0,0.0,0.0,0.0,0.9731294470144186,-19.915431149623505,1.0,0.0,0.0 -72,27.0,0.0,0.0,0.0,0.0,0.9541744590874376,-18.21992007986739,1.0,0.0,0.0 -72,28.0,1.304812078566824,0.9,0.0,0.0,0.9591892821701916,-20.56303921341531,1.0,0.0,0.0 -72,29.0,5.762920013670139,1.9,0.0,0.0,0.9515929402225126,-21.050154496946465,1.0,0.0,0.0 -73,0.0,0.0,0.0,160.61694530495703,0.0005499825087795,1.0,0.0,0.0,0.0,1.0 -73,1.0,11.7976758770417,12.7,6.867252822917158e-07,10.363463504678704,0.980374061705488,-3.685058397306609,0.0,1.0,0.0 -73,2.0,1.304812078566824,1.2,0.0,0.0,0.97439418152152,-4.833072338097731,1.0,0.0,0.0 -73,3.0,4.131904915461609,1.6,0.0,0.0,0.9678117744639756,-5.939250245414814,1.0,0.0,0.0 -73,4.0,51.21387408374785,19.0,-7.600367731519247e-10,24.10217721360378,0.9605345755560636,-8.869992947713436,0.0,1.0,0.0 -73,5.0,0.0,0.0,0.0,0.0,0.9674756183700166,-7.0512930821323145,1.0,0.0,0.0 -73,6.0,12.39571474638483,10.9,0.0,0.0,0.958162288564982,-8.069991048843088,1.0,0.0,0.0 -73,7.0,16.3101509820853,30.0,-5.346609572963783e-10,30.510964701552084,0.966475644778418,-7.477650863001594,0.0,1.0,0.0 -73,8.0,0.0,0.0,0.0,0.0,1.0158049668850706,-8.851991594444192,1.0,0.0,0.0 -73,9.0,3.1532958565364915,2.0,0.0,0.0,1.00689482498939,-9.78747313206599,1.0,0.0,0.0 -73,10.0,0.0,0.0,2.4130679967575896e-11,22.50208811174436,1.0599616070511602,-8.851991594441524,0.0,1.0,0.0 -73,11.0,6.089123033311846,7.5,0.0,0.0,1.013807482429114,-9.32170426827206,1.0,0.0,0.0 -73,12.0,0.0,0.0,-6.898433500321165e-10,9.799205018659654,1.0271635704186173,-9.321704268325195,0.0,1.0,0.0 -73,13.0,3.370764536297629,1.6,0.0,0.0,1.0028072358684357,-9.787343972604672,1.0,0.0,0.0 -73,14.0,4.458107935103315,2.5,0.0,0.0,0.999505704481268,-9.814086486765266,1.0,0.0,0.0 -73,15.0,1.902850947909952,1.8,0.0,0.0,1.0046745582904506,-9.626682310503476,1.0,0.0,0.0 -73,16.0,4.893045294625591,5.8,0.0,0.0,1.0018540226773252,-9.83082102231331,1.0,0.0,0.0 -73,17.0,1.7397494380890988,0.9,0.0,0.0,0.9929554838557122,-10.147779072515805,1.0,0.0,0.0 -73,18.0,5.164881144327012,3.4,0.0,0.0,0.9913694323803564,-10.249000172822262,1.0,0.0,0.0 -73,19.0,1.1960777386862556,0.7,0.0,0.0,0.9946342085801227,-10.165184322151834,1.0,0.0,0.0 -73,20.0,9.51425473954976,11.2,0.0,0.0,0.9963503325152612,-9.960236073493066,1.0,0.0,0.0 -73,21.0,0.0,0.0,0.0,0.0,0.9967346106508678,-9.95697908282296,1.0,0.0,0.0 -73,22.0,1.7397494380890988,1.6,0.0,0.0,0.9910790975983076,-9.990559830545578,1.0,0.0,0.0 -73,23.0,4.729943784804737,6.7,0.0,0.0,0.986547328248322,-10.080687952842824,1.0,0.0,0.0 -73,24.0,0.0,0.0,0.0,0.0,0.9802125341502236,-9.810095262002209,1.0,0.0,0.0 -73,25.0,1.902850947909952,2.3,0.0,0.0,0.966154894115152,-9.893563173002564,1.0,0.0,0.0 -73,26.0,0.0,0.0,0.0,0.0,0.9833115314253108,-9.562925259800467,1.0,0.0,0.0 -73,27.0,0.0,0.0,0.0,0.0,0.965448762248492,-7.403832225878662,1.0,0.0,0.0 -73,28.0,1.304812078566824,0.9,0.0,0.0,0.969524283429028,-10.197004877629515,1.0,0.0,0.0 -73,29.0,5.762920013670139,1.9,0.0,0.0,0.962011501996718,-10.673719225736694,1.0,0.0,0.0 -74,0.0,0.0,0.0,160.78281497024386,0.0021824661460279,1.0,0.0,0.0,0.0,1.0 -74,1.0,11.7976758770417,12.7,2.989595281601228e-06,-0.9836584411746117,0.9790702734827912,-3.6605081142933455,0.0,1.0,0.0 -74,2.0,1.304812078566824,1.2,0.0,0.0,0.9781030410966768,-4.902420563137189,1.0,0.0,0.0 -74,3.0,4.131904915461609,1.6,0.0,0.0,0.9723923795828232,-6.023589014106069,1.0,0.0,0.0 -74,4.0,51.21387408374785,19.0,1.8508185409988867e-09,25.317949612755317,0.9638238533085154,-8.892258664658256,0.0,1.0,0.0 -74,5.0,0.0,0.0,0.0,0.0,0.9727683619397088,-7.12797262372168,1.0,0.0,0.0 -74,6.0,12.39571474638483,10.9,0.0,0.0,0.9626710964534304,-8.123072865002475,1.0,0.0,0.0 -74,7.0,16.3101509820853,30.0,3.736999350596346e-09,35.89012794592113,0.9738017545741104,-7.582973974300456,0.0,1.0,0.0 -74,8.0,0.0,0.0,0.0,0.0,1.0211364609495936,-8.878855193218492,1.0,0.0,0.0 -74,9.0,3.1532958565364915,2.0,0.0,0.0,1.0149702393742897,-9.786162063983872,1.0,0.0,0.0 -74,10.0,0.0,0.0,5.952315591536573e-09,19.79860053111032,1.0599870207203386,-8.87885519256312,0.0,1.0,0.0 -74,11.0,6.089123033311846,7.5,0.0,0.0,1.028654107420116,-9.425537109889186,1.0,0.0,0.0 -74,12.0,0.0,0.0,3.6915765270467595e-09,16.867509336112445,1.0511201528168057,-9.425537109615318,0.0,1.0,0.0 -74,13.0,3.370764536297629,1.6,0.0,0.0,1.016907329703894,-9.876489709611942,1.0,0.0,0.0 -74,14.0,4.458107935103315,2.5,0.0,0.0,1.0127886821296932,-9.880743413636733,1.0,0.0,0.0 -74,15.0,1.902850947909952,1.8,0.0,0.0,1.0167294168054009,-9.66863421277766,1.0,0.0,0.0 -74,16.0,4.893045294625591,5.8,0.0,0.0,1.011195772484075,-9.845976737505556,1.0,0.0,0.0 -74,17.0,1.7397494380890988,0.9,0.0,0.0,1.0045116211006695,-10.182084082892622,1.0,0.0,0.0 -74,18.0,5.164881144327012,3.4,0.0,0.0,1.001875334538777,-10.266441623722349,1.0,0.0,0.0 -74,19.0,1.1960777386862556,0.7,0.0,0.0,1.0045436975693678,-10.176456548685085,1.0,0.0,0.0 -74,20.0,9.51425473954976,11.2,0.0,0.0,1.00472478608398,-9.960567603113086,1.0,0.0,0.0 -74,21.0,0.0,0.0,0.0,0.0,1.0051725774924174,-9.95887782699489,1.0,0.0,0.0 -74,22.0,1.7397494380890988,1.6,0.0,0.0,1.0027208892960922,-10.037838175507762,1.0,0.0,0.0 -74,23.0,4.729943784804737,6.7,0.0,0.0,0.995919569908282,-10.106347457375287,1.0,0.0,0.0 -74,24.0,0.0,0.0,0.0,0.0,0.9880320164942108,-9.837970375660896,1.0,0.0,0.0 -74,25.0,1.902850947909952,2.3,0.0,0.0,0.9740888930947892,-9.920103235228224,1.0,0.0,0.0 -74,26.0,0.0,0.0,0.0,0.0,0.9901088865782752,-9.595084419336477,1.0,0.0,0.0 -74,27.0,0.0,0.0,0.0,0.0,0.9713262764626354,-7.482784095870489,1.0,0.0,0.0 -74,28.0,1.304812078566824,0.9,0.0,0.0,0.9400015317526536,-11.89071545860724,1.0,0.0,0.0 -74,29.0,5.762920013670139,1.9,0.0,0.0,0.9476800945276908,-11.649161332458672,1.0,0.0,0.0 -75,0.0,0.0,0.0,160.61694530495703,0.0005499825087795,1.0,0.0,0.0,0.0,1.0 -75,1.0,11.7976758770417,12.7,6.867252822917158e-07,10.363463504678704,0.980374061705488,-3.685058397306609,0.0,1.0,0.0 -75,2.0,1.304812078566824,1.2,0.0,0.0,0.97439418152152,-4.833072338097731,1.0,0.0,0.0 -75,3.0,4.131904915461609,1.6,0.0,0.0,0.9678117744639756,-5.939250245414814,1.0,0.0,0.0 -75,4.0,51.21387408374785,19.0,-7.600367731519247e-10,24.10217721360378,0.9605345755560636,-8.869992947713436,0.0,1.0,0.0 -75,5.0,0.0,0.0,0.0,0.0,0.9674756183700166,-7.0512930821323145,1.0,0.0,0.0 -75,6.0,12.39571474638483,10.9,0.0,0.0,0.958162288564982,-8.069991048843088,1.0,0.0,0.0 -75,7.0,16.3101509820853,30.0,-5.346609572963783e-10,30.510964701552084,0.966475644778418,-7.477650863001594,0.0,1.0,0.0 -75,8.0,0.0,0.0,0.0,0.0,1.0158049668850706,-8.851991594444192,1.0,0.0,0.0 -75,9.0,3.1532958565364915,2.0,0.0,0.0,1.00689482498939,-9.78747313206599,1.0,0.0,0.0 -75,10.0,0.0,0.0,2.4130679967575896e-11,22.50208811174436,1.0599616070511602,-8.851991594441524,0.0,1.0,0.0 -75,11.0,6.089123033311846,7.5,0.0,0.0,1.013807482429114,-9.32170426827206,1.0,0.0,0.0 -75,12.0,0.0,0.0,-6.898433500321165e-10,9.799205018659654,1.0271635704186173,-9.321704268325195,0.0,1.0,0.0 -75,13.0,3.370764536297629,1.6,0.0,0.0,1.0028072358684357,-9.787343972604672,1.0,0.0,0.0 -75,14.0,4.458107935103315,2.5,0.0,0.0,0.999505704481268,-9.814086486765266,1.0,0.0,0.0 -75,15.0,1.902850947909952,1.8,0.0,0.0,1.0046745582904506,-9.626682310503476,1.0,0.0,0.0 -75,16.0,4.893045294625591,5.8,0.0,0.0,1.0018540226773252,-9.83082102231331,1.0,0.0,0.0 -75,17.0,1.7397494380890988,0.9,0.0,0.0,0.9929554838557122,-10.147779072515805,1.0,0.0,0.0 -75,18.0,5.164881144327012,3.4,0.0,0.0,0.9913694323803564,-10.249000172822262,1.0,0.0,0.0 -75,19.0,1.1960777386862556,0.7,0.0,0.0,0.9946342085801227,-10.165184322151834,1.0,0.0,0.0 -75,20.0,9.51425473954976,11.2,0.0,0.0,0.9963503325152612,-9.960236073493066,1.0,0.0,0.0 -75,21.0,0.0,0.0,0.0,0.0,0.9967346106508678,-9.95697908282296,1.0,0.0,0.0 -75,22.0,1.7397494380890988,1.6,0.0,0.0,0.9910790975983076,-9.990559830545578,1.0,0.0,0.0 -75,23.0,4.729943784804737,6.7,0.0,0.0,0.986547328248322,-10.080687952842824,1.0,0.0,0.0 -75,24.0,0.0,0.0,0.0,0.0,0.9802125341502236,-9.810095262002209,1.0,0.0,0.0 -75,25.0,1.902850947909952,2.3,0.0,0.0,0.966154894115152,-9.893563173002564,1.0,0.0,0.0 -75,26.0,0.0,0.0,0.0,0.0,0.9833115314253108,-9.562925259800467,1.0,0.0,0.0 -75,27.0,0.0,0.0,0.0,0.0,0.965448762248492,-7.403832225878662,1.0,0.0,0.0 -75,28.0,1.304812078566824,0.9,0.0,0.0,0.969524283429028,-10.197004877629515,1.0,0.0,0.0 -75,29.0,5.762920013670139,1.9,0.0,0.0,0.962011501996718,-10.673719225736694,1.0,0.0,0.0 -76,0.0,0.0,0.0,101.40152965697658,1.460677090392437e-06,1.0,0.0,0.0,0.0,1.0 -76,1.0,11.7976758770417,12.7,58.79751774524031,6.635084939907635,0.9912578222617764,-1.6812384069036093,0.0,1.0,0.0 -76,2.0,1.304812078566824,1.2,0.0,0.0,0.9712289752008436,-4.839013484672656,1.0,0.0,0.0 -76,3.0,4.131904915461609,1.6,0.0,0.0,0.9639122725420184,-5.948106207583403,1.0,0.0,0.0 -76,4.0,51.21387408374785,19.0,1.5176039729849892e-08,39.999999034576064,0.9820970407410772,-8.235449580565422,0.0,1.0,0.0 -76,5.0,0.0,0.0,0.0,0.0,0.9663138579734104,-7.457841204867342,1.0,0.0,0.0 -76,6.0,12.39571474638483,10.9,0.0,0.0,0.9661888528471784,-8.03281363569881,1.0,0.0,0.0 -76,7.0,16.3101509820853,30.0,6.597505158815709e-09,39.99999969099534,0.9781767584429002,-11.005239120518786,0.0,1.0,0.0 -76,8.0,0.0,0.0,0.0,0.0,1.0240254888234457,-7.457841202879627,1.0,0.0,0.0 -76,9.0,3.1532958565364915,2.0,0.0,0.0,0.966608790034306,-12.19747900537187,1.0,0.0,0.0 -76,10.0,0.0,0.0,1.6875549300234832e-08,18.333163344326238,1.0599999980921555,-7.457841201026833,0.0,1.0,0.0 -76,11.0,6.089123033311846,7.5,0.0,0.0,0.981359675002532,-10.52841976979866,1.0,0.0,0.0 -76,12.0,0.0,0.0,0.0,0.0,0.981359675002532,-10.52841976979866,0.0,1.0,0.0 -76,13.0,3.370764536297629,1.6,0.0,0.0,0.972862052691457,-10.927878720630597,1.0,0.0,0.0 -76,14.0,4.458107935103315,2.5,0.0,0.0,0.9627004829676892,-11.359995558693926,1.0,0.0,0.0 -76,15.0,1.902850947909952,1.8,0.0,0.0,0.9677895126110696,-11.337662800521848,1.0,0.0,0.0 -76,16.0,4.893045294625591,5.8,0.0,0.0,0.9626781753471504,-12.034646215604228,1.0,0.0,0.0 -76,17.0,1.7397494380890988,0.9,0.0,0.0,0.9544576991035958,-12.024169544009563,1.0,0.0,0.0 -76,18.0,5.164881144327012,3.4,0.0,0.0,0.9519919399129336,-12.315564709868982,1.0,0.0,0.0 -76,19.0,1.1960777386862556,0.7,0.0,0.0,0.954959978382768,-12.320350576487776,1.0,0.0,0.0 -76,20.0,9.51425473954976,11.2,0.0,0.0,0.9543433824983204,-12.398008949895289,1.0,0.0,0.0 -76,21.0,0.0,0.0,0.0,0.0,0.966608790034306,-12.19747900537187,1.0,0.0,0.0 -76,22.0,1.7397494380890988,1.6,0.0,0.0,0.9519392763351682,-11.67669748145518,1.0,0.0,0.0 -76,23.0,4.729943784804737,6.7,0.0,0.0,0.9446065209402604,-11.946641828687422,1.0,0.0,0.0 -76,24.0,0.0,0.0,0.0,0.0,0.9544488444461996,-11.602985087501992,1.0,0.0,0.0 -76,25.0,1.902850947909952,2.3,0.0,0.0,0.9400000002244148,-11.69109120337105,1.0,0.0,0.0 -76,26.0,0.0,0.0,0.0,0.0,0.9677711604653872,-11.290073068709487,1.0,0.0,0.0 -76,27.0,0.0,0.0,0.0,0.0,0.9650277240574778,-8.559474052116627,1.0,0.0,0.0 -76,28.0,1.304812078566824,0.9,0.0,0.0,0.9537491133320072,-11.944975932858858,1.0,0.0,0.0 -76,29.0,5.762920013670139,1.9,0.0,0.0,0.9461080236360144,-12.43770374855568,1.0,0.0,0.0 -77,0.0,0.0,0.0,160.61694530495703,0.0005499825087795,1.0,0.0,0.0,0.0,1.0 -77,1.0,11.7976758770417,12.7,6.867252822917158e-07,10.363463504678704,0.980374061705488,-3.685058397306609,0.0,1.0,0.0 -77,2.0,1.304812078566824,1.2,0.0,0.0,0.97439418152152,-4.833072338097731,1.0,0.0,0.0 -77,3.0,4.131904915461609,1.6,0.0,0.0,0.9678117744639756,-5.939250245414814,1.0,0.0,0.0 -77,4.0,51.21387408374785,19.0,-7.600367731519247e-10,24.10217721360378,0.9605345755560636,-8.869992947713436,0.0,1.0,0.0 -77,5.0,0.0,0.0,0.0,0.0,0.9674756183700166,-7.0512930821323145,1.0,0.0,0.0 -77,6.0,12.39571474638483,10.9,0.0,0.0,0.958162288564982,-8.069991048843088,1.0,0.0,0.0 -77,7.0,16.3101509820853,30.0,-5.346609572963783e-10,30.510964701552084,0.966475644778418,-7.477650863001594,0.0,1.0,0.0 -77,8.0,0.0,0.0,0.0,0.0,1.0158049668850706,-8.851991594444192,1.0,0.0,0.0 -77,9.0,3.1532958565364915,2.0,0.0,0.0,1.00689482498939,-9.78747313206599,1.0,0.0,0.0 -77,10.0,0.0,0.0,2.4130679967575896e-11,22.50208811174436,1.0599616070511602,-8.851991594441524,0.0,1.0,0.0 -77,11.0,6.089123033311846,7.5,0.0,0.0,1.013807482429114,-9.32170426827206,1.0,0.0,0.0 -77,12.0,0.0,0.0,-6.898433500321165e-10,9.799205018659654,1.0271635704186173,-9.321704268325195,0.0,1.0,0.0 -77,13.0,3.370764536297629,1.6,0.0,0.0,1.0028072358684357,-9.787343972604672,1.0,0.0,0.0 -77,14.0,4.458107935103315,2.5,0.0,0.0,0.999505704481268,-9.814086486765266,1.0,0.0,0.0 -77,15.0,1.902850947909952,1.8,0.0,0.0,1.0046745582904506,-9.626682310503476,1.0,0.0,0.0 -77,16.0,4.893045294625591,5.8,0.0,0.0,1.0018540226773252,-9.83082102231331,1.0,0.0,0.0 -77,17.0,1.7397494380890988,0.9,0.0,0.0,0.9929554838557122,-10.147779072515805,1.0,0.0,0.0 -77,18.0,5.164881144327012,3.4,0.0,0.0,0.9913694323803564,-10.249000172822262,1.0,0.0,0.0 -77,19.0,1.1960777386862556,0.7,0.0,0.0,0.9946342085801227,-10.165184322151834,1.0,0.0,0.0 -77,20.0,9.51425473954976,11.2,0.0,0.0,0.9963503325152612,-9.960236073493066,1.0,0.0,0.0 -77,21.0,0.0,0.0,0.0,0.0,0.9967346106508678,-9.95697908282296,1.0,0.0,0.0 -77,22.0,1.7397494380890988,1.6,0.0,0.0,0.9910790975983076,-9.990559830545578,1.0,0.0,0.0 -77,23.0,4.729943784804737,6.7,0.0,0.0,0.986547328248322,-10.080687952842824,1.0,0.0,0.0 -77,24.0,0.0,0.0,0.0,0.0,0.9802125341502236,-9.810095262002209,1.0,0.0,0.0 -77,25.0,1.902850947909952,2.3,0.0,0.0,0.966154894115152,-9.893563173002564,1.0,0.0,0.0 -77,26.0,0.0,0.0,0.0,0.0,0.9833115314253108,-9.562925259800467,1.0,0.0,0.0 -77,27.0,0.0,0.0,0.0,0.0,0.965448762248492,-7.403832225878662,1.0,0.0,0.0 -77,28.0,1.304812078566824,0.9,0.0,0.0,0.969524283429028,-10.197004877629515,1.0,0.0,0.0 -77,29.0,5.762920013670139,1.9,0.0,0.0,0.962011501996718,-10.673719225736694,1.0,0.0,0.0 -78,0.0,0.0,0.0,160.61694530495703,0.0005499825087795,1.0,0.0,0.0,0.0,1.0 -78,1.0,11.7976758770417,12.7,6.867252822917158e-07,10.363463504678704,0.980374061705488,-3.685058397306609,0.0,1.0,0.0 -78,2.0,1.304812078566824,1.2,0.0,0.0,0.97439418152152,-4.833072338097731,1.0,0.0,0.0 -78,3.0,4.131904915461609,1.6,0.0,0.0,0.9678117744639756,-5.939250245414814,1.0,0.0,0.0 -78,4.0,51.21387408374785,19.0,-7.600367731519247e-10,24.10217721360378,0.9605345755560636,-8.869992947713436,0.0,1.0,0.0 -78,5.0,0.0,0.0,0.0,0.0,0.9674756183700166,-7.0512930821323145,1.0,0.0,0.0 -78,6.0,12.39571474638483,10.9,0.0,0.0,0.958162288564982,-8.069991048843088,1.0,0.0,0.0 -78,7.0,16.3101509820853,30.0,-5.346609572963783e-10,30.510964701552084,0.966475644778418,-7.477650863001594,0.0,1.0,0.0 -78,8.0,0.0,0.0,0.0,0.0,1.0158049668850706,-8.851991594444192,1.0,0.0,0.0 -78,9.0,3.1532958565364915,2.0,0.0,0.0,1.00689482498939,-9.78747313206599,1.0,0.0,0.0 -78,10.0,0.0,0.0,2.4130679967575896e-11,22.50208811174436,1.0599616070511602,-8.851991594441524,0.0,1.0,0.0 -78,11.0,6.089123033311846,7.5,0.0,0.0,1.013807482429114,-9.32170426827206,1.0,0.0,0.0 -78,12.0,0.0,0.0,-6.898433500321165e-10,9.799205018659654,1.0271635704186173,-9.321704268325195,0.0,1.0,0.0 -78,13.0,3.370764536297629,1.6,0.0,0.0,1.0028072358684357,-9.787343972604672,1.0,0.0,0.0 -78,14.0,4.458107935103315,2.5,0.0,0.0,0.999505704481268,-9.814086486765266,1.0,0.0,0.0 -78,15.0,1.902850947909952,1.8,0.0,0.0,1.0046745582904506,-9.626682310503476,1.0,0.0,0.0 -78,16.0,4.893045294625591,5.8,0.0,0.0,1.0018540226773252,-9.83082102231331,1.0,0.0,0.0 -78,17.0,1.7397494380890988,0.9,0.0,0.0,0.9929554838557122,-10.147779072515805,1.0,0.0,0.0 -78,18.0,5.164881144327012,3.4,0.0,0.0,0.9913694323803564,-10.249000172822262,1.0,0.0,0.0 -78,19.0,1.1960777386862556,0.7,0.0,0.0,0.9946342085801227,-10.165184322151834,1.0,0.0,0.0 -78,20.0,9.51425473954976,11.2,0.0,0.0,0.9963503325152612,-9.960236073493066,1.0,0.0,0.0 -78,21.0,0.0,0.0,0.0,0.0,0.9967346106508678,-9.95697908282296,1.0,0.0,0.0 -78,22.0,1.7397494380890988,1.6,0.0,0.0,0.9910790975983076,-9.990559830545578,1.0,0.0,0.0 -78,23.0,4.729943784804737,6.7,0.0,0.0,0.986547328248322,-10.080687952842824,1.0,0.0,0.0 -78,24.0,0.0,0.0,0.0,0.0,0.9802125341502236,-9.810095262002209,1.0,0.0,0.0 -78,25.0,1.902850947909952,2.3,0.0,0.0,0.966154894115152,-9.893563173002564,1.0,0.0,0.0 -78,26.0,0.0,0.0,0.0,0.0,0.9833115314253108,-9.562925259800467,1.0,0.0,0.0 -78,27.0,0.0,0.0,0.0,0.0,0.965448762248492,-7.403832225878662,1.0,0.0,0.0 -78,28.0,1.304812078566824,0.9,0.0,0.0,0.969524283429028,-10.197004877629515,1.0,0.0,0.0 -78,29.0,5.762920013670139,1.9,0.0,0.0,0.962011501996718,-10.673719225736694,1.0,0.0,0.0 -79,0.0,0.0,0.0,160.63042704477408,0.0004982059422786,1.0,0.0,0.0,0.0,1.0 -79,1.0,11.7976758770417,12.7,6.832406270394253e-07,10.10867077232605,0.980351335215218,-3.678116083614602,0.0,1.0,0.0 -79,2.0,1.304812078566824,1.2,0.0,0.0,0.9744794107791503,-4.853800917738534,1.0,0.0,0.0 -79,3.0,4.131904915461609,1.6,0.0,0.0,0.9679198345589524,-5.9649543116231545,1.0,0.0,0.0 -79,4.0,51.21387408374785,19.0,-7.480282200082534e-10,24.113926646201463,0.9605767348497158,-8.84689588820681,0.0,1.0,0.0 -79,5.0,0.0,0.0,0.0,0.0,0.9675733434516132,-7.011456182591501,1.0,0.0,0.0 -79,6.0,12.39571474638483,10.9,0.0,0.0,0.9582401301666328,-8.036948861023127,1.0,0.0,0.0 -79,7.0,16.3101509820853,30.0,-5.697793225181441e-10,30.660344506961977,0.966643359394381,-7.444165217554577,0.0,1.0,0.0 -79,8.0,0.0,0.0,0.0,0.0,1.0161413454443224,-9.389629805554758,1.0,0.0,0.0 -79,9.0,3.1532958565364915,2.0,0.0,0.0,1.008049937528697,-10.6237139485535,1.0,0.0,0.0 -79,10.0,0.0,0.0,-3.369663902400041e-11,22.10609561033228,1.059538248695437,-9.389629805558489,0.0,1.0,0.0 -79,11.0,6.089123033311846,7.5,0.0,0.0,1.016708554525777,-9.73090890867419,1.0,0.0,0.0 -79,12.0,0.0,0.0,-8.218792179431293e-10,10.678623271431109,1.03120621021473,-9.73090890873707,0.0,1.0,0.0 -79,13.0,3.370764536297629,1.6,0.0,0.0,1.0056419537817798,-10.235979579336322,1.0,0.0,0.0 -79,14.0,4.458107935103315,2.5,0.0,0.0,1.0019657207402486,-10.301965113951036,1.0,0.0,0.0 -79,15.0,1.902850947909952,1.8,0.0,0.0,1.0065356073553025,-10.214577609826254,1.0,0.0,0.0 -79,16.0,4.893045294625591,5.8,0.0,0.0,1.0033250832294835,-10.59024464966816,1.0,0.0,0.0 -79,17.0,1.7397494380890988,0.9,0.0,0.0,0.9949417855761976,-10.756526088246485,1.0,0.0,0.0 -79,18.0,5.164881144327012,3.4,0.0,0.0,0.9930787688115328,-10.93042030802824,1.0,0.0,0.0 -79,19.0,1.1960777386862556,0.7,0.0,0.0,0.9961883415116164,-10.885324159753017,1.0,0.0,0.0 -79,20.0,9.51425473954976,11.2,0.0,0.0,0.9975619281297224,-10.754560363321769,1.0,0.0,0.0 -79,21.0,0.0,0.0,0.0,0.0,0.9979641564727888,-10.737981151358952,1.0,0.0,0.0 -79,22.0,1.7397494380890988,1.6,0.0,0.0,0.9932680622060466,-10.527059751240134,1.0,0.0,0.0 -79,23.0,4.729943784804737,6.7,0.0,0.0,0.9883723089269216,-10.683764187697731,1.0,0.0,0.0 -79,24.0,0.0,0.0,0.0,0.0,0.9822066821999044,-10.171703566295948,1.0,0.0,0.0 -79,25.0,1.902850947909952,2.3,0.0,0.0,0.9681784274916048,-10.254827917081611,1.0,0.0,0.0 -79,26.0,0.0,0.0,0.0,0.0,0.9853305752314198,-9.77432446294573,1.0,0.0,0.0 -79,27.0,0.0,0.0,0.0,0.0,0.9656290491600164,-7.396230074203524,1.0,0.0,0.0 -79,28.0,1.304812078566824,0.9,0.0,0.0,0.9715732407696884,-10.405772134122609,1.0,0.0,0.0 -79,29.0,5.762920013670139,1.9,0.0,0.0,0.9640768043841332,-10.880464149176271,1.0,0.0,0.0 -80,0.0,0.0,0.0,161.5857399516884,0.0024261045278528,1.0,0.0,0.0,0.0,1.0 -80,1.0,11.7976758770417,12.7,3.0458822743077425e-06,2.765051454105418,0.9785008785040232,-3.856144303281636,0.0,1.0,0.0 -80,2.0,1.304812078566824,1.2,0.0,0.0,0.9787836707449492,-4.423346129319826,1.0,0.0,0.0 -80,3.0,4.131904915461609,1.6,0.0,0.0,0.973168678580435,-5.4288975871511935,1.0,0.0,0.0 -80,4.0,51.21387408374785,19.0,-5.2843556527288105e-09,36.63119006539135,0.9585051494992568,-11.897075924285376,0.0,1.0,0.0 -80,5.0,0.0,0.0,0.0,0.0,0.974397669597082,-6.179315583455868,1.0,0.0,0.0 -80,6.0,12.39571474638483,10.9,0.0,0.0,0.9400448299518004,-12.51896313293649,1.0,0.0,0.0 -80,7.0,16.3101509820853,30.0,-4.572604251334718e-09,31.1290626295867,0.9658431403856828,-9.263396831242227,0.0,1.0,0.0 -80,8.0,0.0,0.0,0.0,0.0,1.021387075466177,-8.624663974387094,1.0,0.0,0.0 -80,9.0,3.1532958565364915,2.0,0.0,0.0,1.0149834541054652,-9.893811689981138,1.0,0.0,0.0 -80,10.0,0.0,0.0,-1.9139397084810576e-09,19.64831177323458,1.0599442800818497,-8.624663974597782,0.0,1.0,0.0 -80,11.0,6.089123033311846,7.5,0.0,0.0,1.025995013973028,-9.124586254261889,1.0,0.0,0.0 -80,12.0,0.0,0.0,-1.326084304344057e-09,13.352682295306847,1.0439025807876674,-9.124586254361208,0.0,1.0,0.0 -80,13.0,3.370764536297629,1.6,0.0,0.0,1.014670271143016,-9.61676396860353,1.0,0.0,0.0 -80,14.0,4.458107935103315,2.5,0.0,0.0,1.0107064162528907,-9.669739829979944,1.0,0.0,0.0 -80,15.0,1.902850947909952,1.8,0.0,0.0,1.014935432180632,-9.548391034963906,1.0,0.0,0.0 -80,16.0,4.893045294625591,5.8,0.0,0.0,1.010726636961966,-9.880488781718292,1.0,0.0,0.0 -80,17.0,1.7397494380890988,0.9,0.0,0.0,1.00312933965272,-10.084121477235286,1.0,0.0,0.0 -80,18.0,5.164881144327012,3.4,0.0,0.0,1.0009171134096575,-10.235713173716873,1.0,0.0,0.0 -80,19.0,1.1960777386862556,0.7,0.0,0.0,1.0038108385238318,-10.180966859012456,1.0,0.0,0.0 -80,20.0,9.51425473954976,11.2,0.0,0.0,1.0045994839000283,-10.040192445430566,1.0,0.0,0.0 -80,21.0,0.0,0.0,0.0,0.0,1.0050066830198796,-10.029431258640331,1.0,0.0,0.0 -80,22.0,1.7397494380890988,1.6,0.0,0.0,1.00131534629201,-9.89362899421896,1.0,0.0,0.0 -80,23.0,4.729943784804737,6.7,0.0,0.0,0.995441647776243,-10.051691959434084,1.0,0.0,0.0 -80,24.0,0.0,0.0,0.0,0.0,0.9878683888159308,-9.676860040820207,1.0,0.0,0.0 -80,25.0,1.902850947909952,2.3,0.0,0.0,0.9739228884771728,-9.75902050634934,1.0,0.0,0.0 -80,26.0,0.0,0.0,0.0,0.0,0.9901104092203596,-9.367180809690195,1.0,0.0,0.0 -80,27.0,0.0,0.0,0.0,0.0,0.9707729696068306,-7.148087064803328,1.0,0.0,0.0 -80,28.0,1.304812078566824,0.9,0.0,0.0,0.9400031414376868,-11.662804404915804,1.0,0.0,0.0 -80,29.0,5.762920013670139,1.9,0.0,0.0,0.947681691039784,-11.421251099797926,1.0,0.0,0.0 -81,0.0,0.0,0.0,164.80937058213627,0.0013220049047468,1.0,0.0,0.0,0.0,1.0 -81,1.0,11.7976758770417,12.7,4.090155226386127e-06,0.9208151706707284,0.980619685817668,-3.4145136249898065,0.0,1.0,0.0 -81,2.0,1.304812078566824,1.2,0.0,0.0,0.973618962909542,-6.0192833156416885,1.0,0.0,0.0 -81,3.0,4.131904915461609,1.6,0.0,0.0,0.9670914380465236,-7.412927907432726,1.0,0.0,0.0 -81,4.0,51.21387408374785,19.0,1.6033068512194842e-09,33.98611908265855,0.9400029802510091,-16.82150420609391,0.0,1.0,0.0 -81,5.0,0.0,0.0,0.0,0.0,0.9656425959633254,-9.137061735990226,1.0,0.0,0.0 -81,6.0,12.39571474638483,10.9,0.0,0.0,0.948119594896292,-12.528427404977387,1.0,0.0,0.0 -81,7.0,16.3101509820853,30.0,4.9689265884004705e-09,36.20470814801016,0.9668604529429085,-9.590206371062262,0.0,1.0,0.0 -81,8.0,0.0,0.0,0.0,0.0,1.0168249179433022,-10.90591736771912,1.0,0.0,0.0 -81,9.0,3.1532958565364915,2.0,0.0,0.0,1.0099505717588215,-11.820343495203664,1.0,0.0,0.0 -81,10.0,0.0,0.0,5.632610677924448e-09,22.00145853477059,1.059997685559459,-10.905917367096327,0.0,1.0,0.0 -81,11.0,6.089123033311846,7.5,0.0,0.0,1.0283784488227798,-11.133412859182428,1.0,0.0,0.0 -81,12.0,0.0,0.0,2.654645630546756e-09,19.60432785065439,1.054408270254558,-11.13341285898605,0.0,1.0,0.0 -81,13.0,3.370764536297629,1.6,0.0,0.0,0.9955013812561344,-12.063628276769172,1.0,0.0,0.0 -81,14.0,4.458107935103315,2.5,0.0,0.0,1.0061991930875032,-11.88084980237017,1.0,0.0,0.0 -81,15.0,1.902850947909952,1.8,0.0,0.0,1.0141646952099166,-11.506012526096066,1.0,0.0,0.0 -81,16.0,4.893045294625591,5.8,0.0,0.0,1.006995361749028,-11.82232488355992,1.0,0.0,0.0 -81,17.0,1.7397494380890988,0.9,0.0,0.0,0.9984179619534558,-12.198411638577122,1.0,0.0,0.0 -81,18.0,5.164881144327012,3.4,0.0,0.0,0.9960897487879165,-12.291244283808773,1.0,0.0,0.0 -81,19.0,1.1960777386862556,0.7,0.0,0.0,0.9989439019001464,-12.204208246448855,1.0,0.0,0.0 -81,20.0,9.51425473954976,11.2,0.0,0.0,0.9992703465298672,-12.028091658737452,1.0,0.0,0.0 -81,21.0,0.0,0.0,0.0,0.0,0.9995967294229328,-12.036369757415954,1.0,0.0,0.0 -81,22.0,1.7397494380890988,1.6,0.0,0.0,0.995703465524758,-12.124897212000686,1.0,0.0,0.0 -81,23.0,4.729943784804737,6.7,0.0,0.0,0.9883995612274448,-12.309666556177108,1.0,0.0,0.0 -81,24.0,0.0,0.0,0.0,0.0,0.976803774275981,-12.42481556983242,1.0,0.0,0.0 -81,25.0,1.902850947909952,2.3,0.0,0.0,0.9626956131582552,-12.508875737124631,1.0,0.0,0.0 -81,26.0,0.0,0.0,0.0,0.0,0.9841271837445634,-11.096074111673229,1.0,0.0,0.0 -81,27.0,0.0,0.0,0.0,0.0,0.9646578529552816,-9.438274529955285,1.0,0.0,0.0 -81,28.0,1.304812078566824,0.9,0.0,0.0,0.970352036298888,-11.729088489354538,1.0,0.0,0.0 -81,29.0,5.762920013670139,1.9,0.0,0.0,0.962845866766298,-12.204984283562837,1.0,0.0,0.0 -82,0.0,0.0,0.0,103.594628051364,2.797766374129651e-06,1.0,0.0,0.0,0.0,1.0 -82,1.0,11.7976758770417,12.7,59.66788271216548,45.99999792856568,0.9972567892389124,-13.777393237157147,0.0,1.0,0.0 -82,2.0,1.304812078566824,1.2,0.0,0.0,0.9649369826224052,-10.160221827766067,1.0,0.0,0.0 -82,3.0,4.131904915461609,1.6,0.0,0.0,0.9581910271154104,-12.568818753158189,1.0,0.0,0.0 -82,4.0,51.21387408374785,19.0,0.0,0.0,0.9400000021686652,-17.369948977912802,0.0,1.0,0.0 -82,5.0,0.0,0.0,0.0,0.0,0.961804703703049,-14.613671517457648,1.0,0.0,0.0 -82,6.0,12.39571474638483,10.9,0.0,0.0,0.946392569475627,-16.02336767576389,1.0,0.0,0.0 -82,7.0,16.3101509820853,30.0,4.177383927293016e-09,39.99999354446568,0.9642882907543904,-15.104441438621178,0.0,1.0,0.0 -82,8.0,0.0,0.0,0.0,0.0,1.0049080804042445,-16.748547356770896,1.0,0.0,0.0 -82,9.0,3.1532958565364915,2.0,0.0,0.0,0.991724621596885,-17.867949286010074,1.0,0.0,0.0 -82,10.0,0.0,0.0,1.4267226729381893e-08,23.999991356318727,1.0523449789677823,-16.74854735516306,0.0,1.0,0.0 -82,11.0,6.089123033311846,7.5,0.0,0.0,1.0090952185540374,-15.454920777891662,1.0,0.0,0.0 -82,12.0,0.0,0.0,9.139850747031718e-09,6.904102474595426,1.0185846055054897,-15.454920777178378,0.0,1.0,0.0 -82,13.0,3.370764536297629,1.6,0.0,0.0,0.980784886194042,-16.472593825358878,1.0,0.0,0.0 -82,14.0,4.458107935103315,2.5,0.0,0.0,0.9916433721076744,-16.284349607204078,1.0,0.0,0.0 -82,15.0,1.902850947909952,1.8,0.0,0.0,0.9783713316496132,-18.2224867763274,1.0,0.0,0.0 -82,16.0,4.893045294625591,5.8,0.0,0.0,0.9829323086892529,-18.060670267319757,1.0,0.0,0.0 -82,17.0,1.7397494380890988,0.9,0.0,0.0,0.9651537742559466,-18.89514525294075,1.0,0.0,0.0 -82,18.0,5.164881144327012,3.4,0.0,0.0,0.9675119455831668,-18.792514688092737,1.0,0.0,0.0 -82,19.0,1.1960777386862556,0.7,0.0,0.0,0.972970937596114,-18.595730435965265,1.0,0.0,0.0 -82,20.0,9.51425473954976,11.2,0.0,0.0,0.9815634012884676,-17.94803867488767,1.0,0.0,0.0 -82,21.0,0.0,0.0,0.0,0.0,0.9821368693601552,-17.913415328203737,1.0,0.0,0.0 -82,22.0,1.7397494380890988,1.6,0.0,0.0,0.9815354251890568,-16.922582109527468,1.0,0.0,0.0 -82,23.0,4.729943784804737,6.7,0.0,0.0,0.9750297586057476,-17.637201153439463,1.0,0.0,0.0 -82,24.0,0.0,0.0,0.0,0.0,0.970828532515996,-17.411974113984893,1.0,0.0,0.0 -82,25.0,1.902850947909952,2.3,0.0,0.0,0.9566309174306148,-17.497087841307103,1.0,0.0,0.0 -82,26.0,0.0,0.0,0.0,0.0,0.9753379381407662,-17.189127120917565,1.0,0.0,0.0 -82,27.0,0.0,0.0,0.0,0.0,0.9602382376373504,-14.979747115684406,1.0,0.0,0.0 -82,28.0,1.304812078566824,0.9,0.0,0.0,0.9614312365754474,-17.833764147344592,1.0,0.0,0.0 -82,29.0,5.762920013670139,1.9,0.0,0.0,0.9538531811960258,-18.318594383365337,1.0,0.0,0.0 -83,0.0,0.0,0.0,85.00130653100962,2.3954687122795804e-06,1.0,0.0,0.0,0.0,1.0 -83,1.0,11.648848647527142,12.7,73.91174179174183,-22.78890758063276,0.9818827745725294,-2.747996985734004,0.0,1.0,0.0 -83,2.0,1.2883519241504675,1.2,0.0,0.0,1.0008069888009334,-0.1436694706115541,1.0,0.0,0.0 -83,3.0,4.079781093143146,1.6,0.0,0.0,0.9710665773348988,-7.69058765150229,1.0,0.0,0.0 -83,4.0,50.567813022905845,19.0,3.794276122036444e-09,39.99999779478826,0.9821058810379564,-9.0821015921207,0.0,1.0,0.0 -83,5.0,0.0,0.0,0.0,0.0,0.9754773278273624,-8.170560256328415,1.0,0.0,0.0 -83,6.0,12.23934327942944,10.9,0.0,0.0,0.9717154266988204,-8.799574163386257,1.0,0.0,0.0 -83,7.0,16.104399051880844,30.0,1.1738100729684344e-08,39.99999860055546,0.9779470000009512,-8.646502054239917,0.0,1.0,0.0 -83,8.0,0.0,0.0,0.0,0.0,1.0244453424182258,-9.845923693987894,1.0,0.0,0.0 -83,9.0,3.1135171500302965,2.0,0.0,0.0,1.0202763843772384,-10.71199474668392,1.0,0.0,0.0 -83,10.0,0.0,0.0,1.5089453201833333e-08,18.11919973628712,1.0599999985530586,-9.845923692331876,0.0,1.0,0.0 -83,11.0,6.012308979368848,7.5,0.0,0.0,1.0320848118395616,-11.078559568328927,1.0,0.0,0.0 -83,12.0,0.0,0.0,1.1469297088899225e-08,21.13578486512414,1.0599999994127385,-11.078559567487988,0.0,1.0,0.0 -83,13.0,3.328242470722041,1.6,0.0,0.0,0.9971826541115278,-12.20926113431288,1.0,0.0,0.0 -83,14.0,4.401869074180763,2.5,0.0,0.0,0.9659942865212944,-12.381298324111413,1.0,0.0,0.0 -83,15.0,1.878846556052765,1.8,0.0,0.0,1.0106049248042135,-11.414009599302478,1.0,0.0,0.0 -83,16.0,4.831319715564253,5.8,0.0,0.0,0.996857312565345,-11.76955104224074,1.0,0.0,0.0 -83,17.0,1.7178025655339566,0.9,0.0,0.0,0.948151562416867,-13.02456602059466,1.0,0.0,0.0 -83,18.0,5.099726366428934,3.4,0.0,0.0,0.940000002518778,-13.308470412134094,1.0,0.0,0.0 -83,19.0,1.1809892638045951,0.7,0.0,0.0,1.0177512203228836,-10.812035596816576,1.0,0.0,0.0 -83,20.0,9.394232780263824,11.2,0.0,0.0,1.0073313218278337,-10.973010687364066,1.0,0.0,0.0 -83,21.0,0.0,0.0,0.0,0.0,1.0068874058555883,-11.000223112941224,1.0,0.0,0.0 -83,22.0,1.7178025655339566,1.6,0.0,0.0,0.9712896780711716,-12.048521720055431,1.0,0.0,0.0 -83,23.0,4.670275725045444,6.7,0.0,0.0,0.9851691222028852,-11.460141668465054,1.0,0.0,0.0 -83,24.0,0.0,0.0,0.0,0.0,0.983052335579177,-11.120767408220432,1.0,0.0,0.0 -83,25.0,1.878846556052765,2.3,0.0,0.0,0.9691005774918604,-11.198255278005195,1.0,0.0,0.0 -83,26.0,0.0,0.0,0.0,0.0,0.9887000873898526,-10.83014694875864,1.0,0.0,0.0 -83,27.0,0.0,0.0,0.0,0.0,0.9737757499235824,-8.541824074105987,1.0,0.0,0.0 -83,28.0,1.2883519241504675,0.9,0.0,0.0,0.9750928126439874,-11.446913050471332,1.0,0.0,0.0 -83,29.0,5.690220998331231,1.9,0.0,0.0,0.96768877551709,-11.911217563869656,1.0,0.0,0.0 -84,0.0,0.0,0.0,158.50750008525728,0.0004777557299107,1.0,0.0,0.0,0.0,1.0 -84,1.0,11.648848647527142,12.7,5.620376749895078e-07,10.155232319401676,0.9805757113982004,-3.635247429326912,0.0,1.0,0.0 -84,2.0,1.2883519241504675,1.2,0.0,0.0,0.9746653814285328,-4.76792159087469,1.0,0.0,0.0 -84,3.0,4.079781093143146,1.6,0.0,0.0,0.9681345670421284,-5.858596110607177,1.0,0.0,0.0 -84,4.0,50.567813022905845,19.0,-6.711002394633232e-10,23.979932340200207,0.9609492618454754,-8.749932194333214,0.0,1.0,0.0 -84,5.0,0.0,0.0,0.0,0.0,0.9678319915296584,-6.956223178778096,1.0,0.0,0.0 -84,6.0,12.23934327942944,10.9,0.0,0.0,0.9585712674997914,-7.959861337854867,1.0,0.0,0.0 -84,7.0,16.104399051880844,30.0,-5.359046598070169e-10,30.45029238261141,0.9668363057605304,-7.376703457223666,0.0,1.0,0.0 -84,8.0,0.0,0.0,0.0,0.0,1.0160227377547353,-8.733481136549399,1.0,0.0,0.0 -84,9.0,3.1135171500302965,2.0,0.0,0.0,1.0071448020428933,-9.656898794474056,1.0,0.0,0.0 -84,10.0,0.0,0.0,-1.8064028312273367e-10,22.38652329873111,1.059952959419354,-8.733481136569388,0.0,1.0,0.0 -84,11.0,6.012308979368848,7.5,0.0,0.0,1.0139327299803738,-9.196605817214332,1.0,0.0,0.0 -84,12.0,0.0,0.0,-6.944140263315294e-10,9.647902339834708,1.0270836195656643,-9.19660581726782,0.0,1.0,0.0 -84,13.0,3.328242470722041,1.6,0.0,0.0,1.003008990347879,-9.65452773604346,1.0,0.0,0.0 -84,14.0,4.401869074180763,2.5,0.0,0.0,0.9997385994610832,-9.680321976842052,1.0,0.0,0.0 -84,15.0,1.878846556052765,1.8,0.0,0.0,1.0048803790079277,-9.49665550795976,1.0,0.0,0.0 -84,16.0,4.831319715564253,5.8,0.0,0.0,1.0021038144213223,-9.698255427622566,1.0,0.0,0.0 -84,17.0,1.7178025655339566,0.9,0.0,0.0,0.9932482699059088,-10.00890029658526,1.0,0.0,0.0 -84,18.0,5.099726366428934,3.4,0.0,0.0,0.9916826899200614,-10.108766816164607,1.0,0.0,0.0 -84,19.0,1.1809892638045951,0.7,0.0,0.0,0.9949346117108744,-10.026897480982354,1.0,0.0,0.0 -84,20.0,9.394232780263824,11.2,0.0,0.0,0.9966440631837776,-9.825060770969316,1.0,0.0,0.0 -84,21.0,0.0,0.0,0.0,0.0,0.99702767372882,-9.822005814096984,1.0,0.0,0.0 -84,22.0,1.7178025655339566,1.6,0.0,0.0,0.9913760050481708,-9.853209324602442,1.0,0.0,0.0 -84,23.0,4.670275725045444,6.7,0.0,0.0,0.986897668780226,-9.942008368989702,1.0,0.0,0.0 -84,24.0,0.0,0.0,0.0,0.0,0.9805975976336152,-9.674698257443486,1.0,0.0,0.0 -84,25.0,1.878846556052765,2.3,0.0,0.0,0.9666098850002612,-9.752580263789262,1.0,0.0,0.0 -84,26.0,0.0,0.0,0.0,0.0,0.983688183439634,-9.43257731594785,1.0,0.0,0.0 -84,27.0,0.0,0.0,0.0,0.0,0.9658249379725876,-7.30375028269567,1.0,0.0,0.0 -84,28.0,1.2883519241504675,0.9,0.0,0.0,0.97000755743068,-10.05573124248593,1.0,0.0,0.0 -84,29.0,5.690220998331231,1.9,0.0,0.0,0.962563493267616,-10.52494991763608,1.0,0.0,0.0 -85,0.0,0.0,0.0,158.52952272756204,0.2935726565434393,1.0,0.0,0.0,0.0,1.0 -85,1.0,11.648848647527142,12.7,0.0,0.0,0.97953891469341,-3.615437507155377,0.0,1.0,0.0 -85,2.0,1.2883519241504675,1.2,0.0,0.0,0.9771580565853264,-4.80779716173289,1.0,0.0,0.0 -85,3.0,4.079781093143146,1.6,0.0,0.0,0.9712118609834676,-5.9069842758294975,1.0,0.0,0.0 -85,4.0,50.567813022905845,19.0,-2.2650193652516154e-10,28.24854881041064,0.9668411610115832,-8.812210348222038,0.0,1.0,0.0 -85,5.0,0.0,0.0,0.0,0.0,0.9717974398082114,-7.006364429675332,1.0,0.0,0.0 -85,6.0,12.23934327942944,10.9,0.0,0.0,0.9633697128989844,-8.011608901552208,1.0,0.0,0.0 -85,7.0,16.104399051880844,30.0,-3.241066456682149e-10,34.24343700621798,0.9722368746544338,-7.446985915312083,0.0,1.0,0.0 -85,8.0,0.0,0.0,0.0,0.0,1.0194076162689336,-8.753775202027432,1.0,0.0,0.0 -85,9.0,3.1135171500302965,2.0,0.0,0.0,1.0119294854975087,-9.661098010510145,1.0,0.0,0.0 -85,10.0,0.0,0.0,-2.906643311104754e-10,20.68638762686896,1.0599997814894104,-8.75377520205949,0.0,1.0,0.0 -85,11.0,6.012308979368848,7.5,0.0,0.0,1.021625544168906,-9.245694818180391,1.0,0.0,0.0 -85,12.0,0.0,0.0,-3.7505758422473287e-10,12.656377424482834,1.0386845524619222,-9.245694818208744,0.0,1.0,0.0 -85,13.0,3.328242470722041,1.6,0.0,0.0,1.010409945622284,-9.696267402699998,1.0,0.0,0.0 -85,14.0,4.401869074180763,2.5,0.0,0.0,1.006805828471257,-9.7127262376831,1.0,0.0,0.0 -85,15.0,1.878846556052765,1.8,0.0,0.0,1.0113812073125952,-9.51894633719398,1.0,0.0,0.0 -85,16.0,4.831319715564253,5.8,0.0,0.0,1.007440658948814,-9.70915191297616,1.0,0.0,0.0 -85,17.0,1.7178025655339566,0.9,0.0,0.0,0.9995699729996068,-10.026860008081757,1.0,0.0,0.0 -85,18.0,5.099726366428934,3.4,0.0,0.0,0.9975479326348088,-10.119415186701293,1.0,0.0,0.0 -85,19.0,1.1809892638045951,0.7,0.0,0.0,1.0005353307469205,-10.035209312000568,1.0,0.0,0.0 -85,20.0,9.394232780263824,11.2,0.0,0.0,1.0016047530620429,-9.829441843988352,1.0,0.0,0.0 -85,21.0,0.0,0.0,0.0,0.0,1.0020257293034962,-9.827047183564282,1.0,0.0,0.0 -85,22.0,1.7178025655339566,1.6,0.0,0.0,0.9978140362460948,-9.877464375590565,1.0,0.0,0.0 -85,23.0,4.670275725045444,6.7,0.0,0.0,0.9924523390134028,-9.957574525137916,1.0,0.0,0.0 -85,24.0,0.0,0.0,0.0,0.0,0.9858068271594914,-9.692576593708852,1.0,0.0,0.0 -85,25.0,1.878846556052765,2.3,0.0,0.0,0.9718951913517434,-9.769625756510973,1.0,0.0,0.0 -85,26.0,0.0,0.0,0.0,0.0,0.9886445475196738,-9.453095115631395,1.0,0.0,0.0 -85,27.0,0.0,0.0,0.0,0.0,0.9701937291038654,-7.355532174461595,1.0,0.0,0.0 -85,28.0,1.2883519241504675,0.9,0.0,0.0,0.9750364643147011,-10.0699314619039,1.0,0.0,0.0 -85,29.0,5.690220998331231,1.9,0.0,0.0,0.9676319860266308,-10.53429000291364,1.0,0.0,0.0 -86,0.0,0.0,0.0,157.1258233955515,4.057995806050485e-06,1.0,0.0,0.0,0.0,1.0 -86,1.0,11.648848647527142,12.7,8.766239600350653,22.0318579726259,0.9832438628591552,-3.906484151146615,0.0,1.0,0.0 -86,2.0,1.2883519241504675,1.2,0.0,0.0,0.9667422148661776,-3.886120955094021,1.0,0.0,0.0 -86,3.0,4.079781093143146,1.6,0.0,0.0,0.9582821952889544,-4.764801045430694,1.0,0.0,0.0 -86,4.0,50.567813022905845,19.0,-1.2869533769280273e-08,39.9999989958972,0.9434284706835973,-22.677442637225216,0.0,1.0,0.0 -86,5.0,0.0,0.0,0.0,0.0,0.9563849657951332,-14.750652884366298,1.0,0.0,0.0 -86,6.0,12.23934327942944,10.9,0.0,0.0,0.9439634122922314,-18.25077776204005,1.0,0.0,0.0 -86,7.0,16.104399051880844,30.0,-2.900101485762588e-08,39.999998984773576,0.9588192782062896,-15.221623763179918,0.0,1.0,0.0 -86,8.0,0.0,0.0,0.0,0.0,0.9957179604906596,-15.273579126231231,1.0,0.0,0.0 -86,9.0,3.1135171500302965,2.0,0.0,0.0,0.9798763428675578,-15.549565758929898,1.0,0.0,0.0 -86,10.0,0.0,0.0,-4.0363034188571755e-08,23.99999908145044,1.0435544652003883,-15.273579130860556,0.0,1.0,0.0 -86,11.0,6.012308979368848,7.5,0.0,0.0,0.9913435636511576,-11.587714691238244,1.0,0.0,0.0 -86,12.0,0.0,0.0,0.0,0.0,0.9913435636511576,-11.587714691238244,0.0,1.0,0.0 -86,13.0,3.328242470722041,1.6,0.0,0.0,0.980589042045567,-12.505581589214309,1.0,0.0,0.0 -86,14.0,4.401869074180763,2.5,0.0,0.0,0.9747652559016984,-12.977939572134282,1.0,0.0,0.0 -86,15.0,1.878846556052765,1.8,0.0,0.0,0.9773625726064066,-13.379415886694986,1.0,0.0,0.0 -86,16.0,4.831319715564253,5.8,0.0,0.0,0.9752230089378836,-14.969775240906683,1.0,0.0,0.0 -86,17.0,1.7178025655339566,0.9,0.0,0.0,0.966785421292892,-14.23570942378332,1.0,0.0,0.0 -86,18.0,5.099726366428934,3.4,0.0,0.0,0.9645640427744564,-14.886499335051848,1.0,0.0,0.0 -86,19.0,1.1809892638045951,0.7,0.0,0.0,0.9676005978520428,-15.08724718655836,1.0,0.0,0.0 -86,20.0,9.394232780263824,11.2,0.0,0.0,0.969319454373152,-15.64557243438113,1.0,0.0,0.0 -86,21.0,0.0,0.0,0.0,0.0,0.9697991202694176,-15.61616091690418,1.0,0.0,0.0 -86,22.0,1.7178025655339566,1.6,0.0,0.0,0.9657513216106226,-14.07189882839839,1.0,0.0,0.0 -86,23.0,4.670275725045444,6.7,0.0,0.0,0.961171325212094,-15.398762084062776,1.0,0.0,0.0 -86,24.0,0.0,0.0,0.0,0.0,0.9567695228297776,-16.081212294210975,1.0,0.0,0.0 -86,25.0,1.878846556052765,2.3,0.0,0.0,0.9424227704219682,-16.163082538947553,1.0,0.0,0.0 -86,26.0,0.0,0.0,0.0,0.0,0.961638820596624,-16.422202076695672,1.0,0.0,0.0 -86,27.0,0.0,0.0,0.0,0.0,0.9544116718730412,-14.999522816625694,1.0,0.0,0.0 -86,28.0,1.2883519241504675,0.9,0.0,0.0,0.947625590412638,-17.074678566534875,1.0,0.0,0.0 -86,29.0,5.690220998331231,1.9,0.0,0.0,0.9400000010136998,-17.56648395200212,1.0,0.0,0.0 -87,0.0,0.0,0.0,158.50750008525728,0.0004777557299107,1.0,0.0,0.0,0.0,1.0 -87,1.0,11.648848647527142,12.7,5.620376749895078e-07,10.155232319401676,0.9805757113982004,-3.635247429326912,0.0,1.0,0.0 -87,2.0,1.2883519241504675,1.2,0.0,0.0,0.9746653814285328,-4.76792159087469,1.0,0.0,0.0 -87,3.0,4.079781093143146,1.6,0.0,0.0,0.9681345670421284,-5.858596110607177,1.0,0.0,0.0 -87,4.0,50.567813022905845,19.0,-6.711002394633232e-10,23.979932340200207,0.9609492618454754,-8.749932194333214,0.0,1.0,0.0 -87,5.0,0.0,0.0,0.0,0.0,0.9678319915296584,-6.956223178778096,1.0,0.0,0.0 -87,6.0,12.23934327942944,10.9,0.0,0.0,0.9585712674997914,-7.959861337854867,1.0,0.0,0.0 -87,7.0,16.104399051880844,30.0,-5.359046598070169e-10,30.45029238261141,0.9668363057605304,-7.376703457223666,0.0,1.0,0.0 -87,8.0,0.0,0.0,0.0,0.0,1.0160227377547353,-8.733481136549399,1.0,0.0,0.0 -87,9.0,3.1135171500302965,2.0,0.0,0.0,1.0071448020428933,-9.656898794474056,1.0,0.0,0.0 -87,10.0,0.0,0.0,-1.8064028312273367e-10,22.38652329873111,1.059952959419354,-8.733481136569388,0.0,1.0,0.0 -87,11.0,6.012308979368848,7.5,0.0,0.0,1.0139327299803738,-9.196605817214332,1.0,0.0,0.0 -87,12.0,0.0,0.0,-6.944140263315294e-10,9.647902339834708,1.0270836195656643,-9.19660581726782,0.0,1.0,0.0 -87,13.0,3.328242470722041,1.6,0.0,0.0,1.003008990347879,-9.65452773604346,1.0,0.0,0.0 -87,14.0,4.401869074180763,2.5,0.0,0.0,0.9997385994610832,-9.680321976842052,1.0,0.0,0.0 -87,15.0,1.878846556052765,1.8,0.0,0.0,1.0048803790079277,-9.49665550795976,1.0,0.0,0.0 -87,16.0,4.831319715564253,5.8,0.0,0.0,1.0021038144213223,-9.698255427622566,1.0,0.0,0.0 -87,17.0,1.7178025655339566,0.9,0.0,0.0,0.9932482699059088,-10.00890029658526,1.0,0.0,0.0 -87,18.0,5.099726366428934,3.4,0.0,0.0,0.9916826899200614,-10.108766816164607,1.0,0.0,0.0 -87,19.0,1.1809892638045951,0.7,0.0,0.0,0.9949346117108744,-10.026897480982354,1.0,0.0,0.0 -87,20.0,9.394232780263824,11.2,0.0,0.0,0.9966440631837776,-9.825060770969316,1.0,0.0,0.0 -87,21.0,0.0,0.0,0.0,0.0,0.99702767372882,-9.822005814096984,1.0,0.0,0.0 -87,22.0,1.7178025655339566,1.6,0.0,0.0,0.9913760050481708,-9.853209324602442,1.0,0.0,0.0 -87,23.0,4.670275725045444,6.7,0.0,0.0,0.986897668780226,-9.942008368989702,1.0,0.0,0.0 -87,24.0,0.0,0.0,0.0,0.0,0.9805975976336152,-9.674698257443486,1.0,0.0,0.0 -87,25.0,1.878846556052765,2.3,0.0,0.0,0.9666098850002612,-9.752580263789262,1.0,0.0,0.0 -87,26.0,0.0,0.0,0.0,0.0,0.983688183439634,-9.43257731594785,1.0,0.0,0.0 -87,27.0,0.0,0.0,0.0,0.0,0.9658249379725876,-7.30375028269567,1.0,0.0,0.0 -87,28.0,1.2883519241504675,0.9,0.0,0.0,0.97000755743068,-10.05573124248593,1.0,0.0,0.0 -87,29.0,5.690220998331231,1.9,0.0,0.0,0.962563493267616,-10.52494991763608,1.0,0.0,0.0 -88,0.0,0.0,0.0,158.50750008525728,0.0004777557299107,1.0,0.0,0.0,0.0,1.0 -88,1.0,11.648848647527142,12.7,5.620376749895078e-07,10.155232319401676,0.9805757113982004,-3.635247429326912,0.0,1.0,0.0 -88,2.0,1.2883519241504675,1.2,0.0,0.0,0.9746653814285328,-4.76792159087469,1.0,0.0,0.0 -88,3.0,4.079781093143146,1.6,0.0,0.0,0.9681345670421284,-5.858596110607177,1.0,0.0,0.0 -88,4.0,50.567813022905845,19.0,-6.711002394633232e-10,23.979932340200207,0.9609492618454754,-8.749932194333214,0.0,1.0,0.0 -88,5.0,0.0,0.0,0.0,0.0,0.9678319915296584,-6.956223178778096,1.0,0.0,0.0 -88,6.0,12.23934327942944,10.9,0.0,0.0,0.9585712674997914,-7.959861337854867,1.0,0.0,0.0 -88,7.0,16.104399051880844,30.0,-5.359046598070169e-10,30.45029238261141,0.9668363057605304,-7.376703457223666,0.0,1.0,0.0 -88,8.0,0.0,0.0,0.0,0.0,1.0160227377547353,-8.733481136549399,1.0,0.0,0.0 -88,9.0,3.1135171500302965,2.0,0.0,0.0,1.0071448020428933,-9.656898794474056,1.0,0.0,0.0 -88,10.0,0.0,0.0,-1.8064028312273367e-10,22.38652329873111,1.059952959419354,-8.733481136569388,0.0,1.0,0.0 -88,11.0,6.012308979368848,7.5,0.0,0.0,1.0139327299803738,-9.196605817214332,1.0,0.0,0.0 -88,12.0,0.0,0.0,-6.944140263315294e-10,9.647902339834708,1.0270836195656643,-9.19660581726782,0.0,1.0,0.0 -88,13.0,3.328242470722041,1.6,0.0,0.0,1.003008990347879,-9.65452773604346,1.0,0.0,0.0 -88,14.0,4.401869074180763,2.5,0.0,0.0,0.9997385994610832,-9.680321976842052,1.0,0.0,0.0 -88,15.0,1.878846556052765,1.8,0.0,0.0,1.0048803790079277,-9.49665550795976,1.0,0.0,0.0 -88,16.0,4.831319715564253,5.8,0.0,0.0,1.0021038144213223,-9.698255427622566,1.0,0.0,0.0 -88,17.0,1.7178025655339566,0.9,0.0,0.0,0.9932482699059088,-10.00890029658526,1.0,0.0,0.0 -88,18.0,5.099726366428934,3.4,0.0,0.0,0.9916826899200614,-10.108766816164607,1.0,0.0,0.0 -88,19.0,1.1809892638045951,0.7,0.0,0.0,0.9949346117108744,-10.026897480982354,1.0,0.0,0.0 -88,20.0,9.394232780263824,11.2,0.0,0.0,0.9966440631837776,-9.825060770969316,1.0,0.0,0.0 -88,21.0,0.0,0.0,0.0,0.0,0.99702767372882,-9.822005814096984,1.0,0.0,0.0 -88,22.0,1.7178025655339566,1.6,0.0,0.0,0.9913760050481708,-9.853209324602442,1.0,0.0,0.0 -88,23.0,4.670275725045444,6.7,0.0,0.0,0.986897668780226,-9.942008368989702,1.0,0.0,0.0 -88,24.0,0.0,0.0,0.0,0.0,0.9805975976336152,-9.674698257443486,1.0,0.0,0.0 -88,25.0,1.878846556052765,2.3,0.0,0.0,0.9666098850002612,-9.752580263789262,1.0,0.0,0.0 -88,26.0,0.0,0.0,0.0,0.0,0.983688183439634,-9.43257731594785,1.0,0.0,0.0 -88,27.0,0.0,0.0,0.0,0.0,0.9658249379725876,-7.30375028269567,1.0,0.0,0.0 -88,28.0,1.2883519241504675,0.9,0.0,0.0,0.97000755743068,-10.05573124248593,1.0,0.0,0.0 -88,29.0,5.690220998331231,1.9,0.0,0.0,0.962563493267616,-10.52494991763608,1.0,0.0,0.0 -89,0.0,0.0,0.0,158.50750008525728,0.0004777557299107,1.0,0.0,0.0,0.0,1.0 -89,1.0,11.648848647527142,12.7,5.620376749895078e-07,10.155232319401676,0.9805757113982004,-3.635247429326912,0.0,1.0,0.0 -89,2.0,1.2883519241504675,1.2,0.0,0.0,0.9746653814285328,-4.76792159087469,1.0,0.0,0.0 -89,3.0,4.079781093143146,1.6,0.0,0.0,0.9681345670421284,-5.858596110607177,1.0,0.0,0.0 -89,4.0,50.567813022905845,19.0,-6.711002394633232e-10,23.979932340200207,0.9609492618454754,-8.749932194333214,0.0,1.0,0.0 -89,5.0,0.0,0.0,0.0,0.0,0.9678319915296584,-6.956223178778096,1.0,0.0,0.0 -89,6.0,12.23934327942944,10.9,0.0,0.0,0.9585712674997914,-7.959861337854867,1.0,0.0,0.0 -89,7.0,16.104399051880844,30.0,-5.359046598070169e-10,30.45029238261141,0.9668363057605304,-7.376703457223666,0.0,1.0,0.0 -89,8.0,0.0,0.0,0.0,0.0,1.0160227377547353,-8.733481136549399,1.0,0.0,0.0 -89,9.0,3.1135171500302965,2.0,0.0,0.0,1.0071448020428933,-9.656898794474056,1.0,0.0,0.0 -89,10.0,0.0,0.0,-1.8064028312273367e-10,22.38652329873111,1.059952959419354,-8.733481136569388,0.0,1.0,0.0 -89,11.0,6.012308979368848,7.5,0.0,0.0,1.0139327299803738,-9.196605817214332,1.0,0.0,0.0 -89,12.0,0.0,0.0,-6.944140263315294e-10,9.647902339834708,1.0270836195656643,-9.19660581726782,0.0,1.0,0.0 -89,13.0,3.328242470722041,1.6,0.0,0.0,1.003008990347879,-9.65452773604346,1.0,0.0,0.0 -89,14.0,4.401869074180763,2.5,0.0,0.0,0.9997385994610832,-9.680321976842052,1.0,0.0,0.0 -89,15.0,1.878846556052765,1.8,0.0,0.0,1.0048803790079277,-9.49665550795976,1.0,0.0,0.0 -89,16.0,4.831319715564253,5.8,0.0,0.0,1.0021038144213223,-9.698255427622566,1.0,0.0,0.0 -89,17.0,1.7178025655339566,0.9,0.0,0.0,0.9932482699059088,-10.00890029658526,1.0,0.0,0.0 -89,18.0,5.099726366428934,3.4,0.0,0.0,0.9916826899200614,-10.108766816164607,1.0,0.0,0.0 -89,19.0,1.1809892638045951,0.7,0.0,0.0,0.9949346117108744,-10.026897480982354,1.0,0.0,0.0 -89,20.0,9.394232780263824,11.2,0.0,0.0,0.9966440631837776,-9.825060770969316,1.0,0.0,0.0 -89,21.0,0.0,0.0,0.0,0.0,0.99702767372882,-9.822005814096984,1.0,0.0,0.0 -89,22.0,1.7178025655339566,1.6,0.0,0.0,0.9913760050481708,-9.853209324602442,1.0,0.0,0.0 -89,23.0,4.670275725045444,6.7,0.0,0.0,0.986897668780226,-9.942008368989702,1.0,0.0,0.0 -89,24.0,0.0,0.0,0.0,0.0,0.9805975976336152,-9.674698257443486,1.0,0.0,0.0 -89,25.0,1.878846556052765,2.3,0.0,0.0,0.9666098850002612,-9.752580263789262,1.0,0.0,0.0 -89,26.0,0.0,0.0,0.0,0.0,0.983688183439634,-9.43257731594785,1.0,0.0,0.0 -89,27.0,0.0,0.0,0.0,0.0,0.9658249379725876,-7.30375028269567,1.0,0.0,0.0 -89,28.0,1.2883519241504675,0.9,0.0,0.0,0.97000755743068,-10.05573124248593,1.0,0.0,0.0 -89,29.0,5.690220998331231,1.9,0.0,0.0,0.962563493267616,-10.52494991763608,1.0,0.0,0.0 -90,0.0,0.0,0.0,158.698310799205,0.0006318860909182,1.0,0.0,0.0,0.0,1.0 -90,1.0,11.648848647527142,12.7,8.272145014577244e-07,9.362379856963068,0.9804584546554402,-3.636751407388575,0.0,1.0,0.0 -90,2.0,1.2883519241504675,1.2,0.0,0.0,0.974930309945612,-4.781081586238774,1.0,0.0,0.0 -90,3.0,4.079781093143146,1.6,0.0,0.0,0.96846287729544,-5.874820852547755,1.0,0.0,0.0 -90,4.0,50.567813022905845,19.0,-8.639412012572542e-10,24.00273391502847,0.9610756397270056,-8.755637893463025,0.0,1.0,0.0 -90,5.0,0.0,0.0,0.0,0.0,0.9681498312563516,-6.967992225997899,1.0,0.0,0.0 -90,6.0,12.23934327942944,10.9,0.0,0.0,0.9588123231948704,-7.969124635406218,1.0,0.0,0.0 -90,7.0,16.104399051880844,30.0,-5.670135646728124e-10,30.599766853800148,0.967126135596298,-7.390657861516151,0.0,1.0,0.0 -90,8.0,0.0,0.0,0.0,0.0,1.0174408316843904,-8.695844127554698,1.0,0.0,0.0 -90,9.0,3.1135171500302965,2.0,0.0,0.0,1.0098681874537303,-9.591470248762787,1.0,0.0,0.0 -90,10.0,0.0,0.0,8.605866984782528e-11,21.66547735395436,1.0599559865294297,-8.695844127545191,0.0,1.0,0.0 -90,11.0,6.012308979368848,7.5,0.0,0.0,1.015611074151564,-9.245402676272592,1.0,0.0,0.0 -90,12.0,0.0,0.0,-6.86485681239728e-10,11.382887236795623,1.0310669493893,-9.245402676325178,0.0,1.0,0.0 -90,13.0,3.328242470722041,1.6,0.0,0.0,1.0039118151855309,-9.712653102988815,1.0,0.0,0.0 -90,14.0,4.401869074180763,2.5,0.0,0.0,0.9998092780127228,-9.730965034492824,1.0,0.0,0.0 -90,15.0,1.878846556052765,1.8,0.0,0.0,1.007099545987532,-9.498221519417251,1.0,0.0,0.0 -90,16.0,4.831319715564253,5.8,0.0,0.0,1.0046564744272224,-9.652614818714651,1.0,0.0,0.0 -90,17.0,1.7178025655339566,0.9,0.0,0.0,0.9942734048389746,-10.018361597310449,1.0,0.0,0.0 -90,18.0,5.099726366428934,3.4,0.0,0.0,0.9932689016978364,-10.09372756482163,1.0,0.0,0.0 -90,19.0,1.1809892638045951,0.7,0.0,0.0,0.996811208773497,-9.999464427869947,1.0,0.0,0.0 -90,20.0,9.394232780263824,11.2,0.0,0.0,0.9784670170427736,-10.08197222817479,1.0,0.0,0.0 -90,21.0,0.0,0.0,0.0,0.0,0.9822825460119162,-10.027257208567969,1.0,0.0,0.0 -90,22.0,1.7178025655339566,1.6,0.0,0.0,0.98746123480574,-9.956212005656424,1.0,0.0,0.0 -90,23.0,4.670275725045444,6.7,0.0,0.0,0.9777082051274316,-10.118205883416849,1.0,0.0,0.0 -90,24.0,0.0,0.0,0.0,0.0,0.9749328716633944,-9.834543151912706,1.0,0.0,0.0 -90,25.0,1.878846556052765,2.3,0.0,0.0,0.9608614658194864,-9.913346325310645,1.0,0.0,0.0 -90,26.0,0.0,0.0,0.0,0.0,0.980249682083976,-9.57769720952594,1.0,0.0,0.0 -90,27.0,0.0,0.0,0.0,0.0,0.9656623909389348,-7.323382176662913,1.0,0.0,0.0 -90,28.0,1.2883519241504675,0.9,0.0,0.0,0.9665182602203783,-10.205291480429542,1.0,0.0,0.0 -90,29.0,5.690220998331231,1.9,0.0,0.0,0.959046476053982,-10.67792743934996,1.0,0.0,0.0 -91,0.0,0.0,0.0,158.67291458694328,0.001735933915814,1.0,0.0,0.0,0.0,1.0 -91,1.0,11.648848647527142,12.7,1.1956953396368082e-06,17.54200374134669,0.9819573087829128,-3.653819835654226,0.0,1.0,0.0 -91,2.0,1.2883519241504675,1.2,0.0,0.0,0.970651853212026,-4.748662141190669,1.0,0.0,0.0 -91,3.0,4.079781093143146,1.6,0.0,0.0,0.9631861487113448,-5.83644315448815,1.0,0.0,0.0 -91,4.0,50.567813022905845,19.0,-1.7059656057206282e-09,25.436564786089164,0.9623996591967704,-8.735195103399867,0.0,1.0,0.0 -91,5.0,0.0,0.0,0.0,0.0,0.9663555876853088,-6.855222939932149,1.0,0.0,0.0 -91,6.0,12.23934327942944,10.9,0.0,0.0,0.9582991076360152,-7.892846684090546,1.0,0.0,0.0 -91,7.0,16.104399051880844,30.0,-1.4564528304343855e-09,39.932506085124494,0.9685794888575692,-7.3497577399547165,0.0,1.0,0.0 -91,8.0,0.0,0.0,0.0,0.0,1.0240419022135197,-6.85522294011937,1.0,0.0,0.0 -91,9.0,3.1135171500302965,2.0,0.0,0.0,0.9627106991299506,-11.584067668673487,1.0,0.0,0.0 -91,10.0,0.0,0.0,-1.5895973094156804e-09,18.31961328318224,1.059990156447069,-6.855222940293896,0.0,1.0,0.0 -91,11.0,6.012308979368848,7.5,0.0,0.0,0.9796070663940952,-10.19688492449032,1.0,0.0,0.0 -91,12.0,0.0,0.0,0.0,0.0,0.9796070663940952,-10.19688492449032,0.0,1.0,0.0 -91,13.0,3.328242470722041,1.6,0.0,0.0,0.9678430645863428,-10.779681459025069,1.0,0.0,0.0 -91,14.0,4.401869074180763,2.5,0.0,0.0,0.9634205947957792,-10.887821005417525,1.0,0.0,0.0 -91,15.0,1.878846556052765,1.8,0.0,0.0,0.965323259705704,-10.878171922833372,1.0,0.0,0.0 -91,16.0,4.831319715564253,5.8,0.0,0.0,0.9591740957314862,-11.469412430985344,1.0,0.0,0.0 -91,17.0,1.7178025655339566,0.9,0.0,0.0,0.9536107136833828,-11.49507077422175,1.0,0.0,0.0 -91,18.0,5.099726366428934,3.4,0.0,0.0,0.9501972152814222,-11.75468098043076,1.0,0.0,0.0 -91,19.0,1.1809892638045951,0.7,0.0,0.0,0.9526500120321976,-11.744952391680023,1.0,0.0,0.0 -91,20.0,9.394232780263824,11.2,0.0,0.0,0.9532990524964976,-11.676822776369889,1.0,0.0,0.0 -91,21.0,0.0,0.0,0.0,0.0,0.9542085632594166,-11.64486059356043,1.0,0.0,0.0 -91,22.0,1.7178025655339566,1.6,0.0,0.0,0.9551510597864884,-11.188226596785483,1.0,0.0,0.0 -91,23.0,4.670275725045444,6.7,0.0,0.0,0.951081706640573,-11.4379375651304,1.0,0.0,0.0 -91,24.0,0.0,0.0,0.0,0.0,0.9588079239787376,-10.748372792528878,1.0,0.0,0.0 -91,25.0,1.878846556052765,2.3,0.0,0.0,0.9444926165376478,-10.829889947390631,1.0,0.0,0.0 -91,26.0,0.0,0.0,0.0,0.0,0.970676573102604,-10.2309964669008,1.0,0.0,0.0 -91,27.0,0.0,0.0,0.0,0.0,0.9632956379014428,-7.290679641072829,1.0,0.0,0.0 -91,28.0,1.2883519241504675,0.9,0.0,0.0,0.9568016653478066,-10.871207462811467,1.0,0.0,0.0 -91,29.0,5.690220998331231,1.9,0.0,0.0,0.949251573455868,-11.35355916291478,1.0,0.0,0.0 -92,0.0,0.0,0.0,136.4478196852394,0.000182094864165,1.0,0.0,0.0,0.0,1.0 -92,1.0,11.648848647527142,12.7,29.78070352377457,22.8856215163787,0.961270465780781,-19.808877928936248,0.0,1.0,0.0 -92,2.0,1.2883519241504675,1.2,0.0,0.0,0.9615283830177064,-13.501549971031706,1.0,0.0,0.0 -92,3.0,4.079781093143146,1.6,0.0,0.0,0.9565389065788392,-16.722999924162387,1.0,0.0,0.0 -92,4.0,50.567813022905845,19.0,1.4359079555963038e-13,22.99892495137391,0.9420118754220026,-26.342640629139527,0.0,1.0,0.0 -92,5.0,0.0,0.0,0.0,0.0,0.9594208443953776,-18.664784856253476,1.0,0.0,0.0 -92,6.0,12.23934327942944,10.9,0.0,0.0,0.94716300368114,-19.12692267482189,1.0,0.0,0.0 -92,7.0,16.104399051880844,30.0,3.652625027357204e-13,39.97848331590472,0.9620598482834182,-19.150028347244703,0.0,1.0,0.0 -92,8.0,0.0,0.0,0.0,0.0,1.013749131767915,-20.28091890833944,1.0,0.0,0.0 -92,9.0,3.1135171500302965,2.0,0.0,0.0,1.0069205855089651,-21.11352484019268,1.0,0.0,0.0 -92,10.0,0.0,0.0,3.2688608266954653e-13,23.56950311012294,1.0599987761741112,-20.2809189083394,0.0,1.0,0.0 -92,11.0,6.012308979368848,7.5,0.0,0.0,1.0251964360314538,-20.50752702364367,1.0,0.0,0.0 -92,12.0,0.0,0.0,-9.693557541087053e-14,23.999949961274133,1.0569849032484595,-20.50752702364368,0.0,1.0,0.0 -92,13.0,3.328242470722041,1.6,0.0,0.0,1.0129132061117103,-20.99123805577457,1.0,0.0,0.0 -92,14.0,4.401869074180763,2.5,0.0,0.0,1.008005163217406,-21.01843999579705,1.0,0.0,0.0 -92,15.0,1.878846556052765,1.8,0.0,0.0,1.011109809754948,-20.843800202531646,1.0,0.0,0.0 -92,16.0,4.831319715564253,5.8,0.0,0.0,1.003940507259169,-21.12796772769112,1.0,0.0,0.0 -92,17.0,1.7178025655339566,0.9,0.0,0.0,0.9985566832153528,-21.38367072225647,1.0,0.0,0.0 -92,18.0,5.099726366428934,3.4,0.0,0.0,0.9952294457224268,-21.50700096183077,1.0,0.0,0.0 -92,19.0,1.1809892638045951,0.7,0.0,0.0,0.9975368120898364,-21.43825951516629,1.0,0.0,0.0 -92,20.0,9.394232780263824,11.2,0.0,0.0,0.9966500240033308,-21.28038762916645,1.0,0.0,0.0 -92,21.0,0.0,0.0,0.0,0.0,0.9971070262239718,-21.276995755280627,1.0,0.0,0.0 -92,22.0,1.7178025655339566,1.6,0.0,0.0,0.9965653167746324,-21.239908262167862,1.0,0.0,0.0 -92,23.0,4.670275725045444,6.7,0.0,0.0,0.9879616889150434,-21.398578879779283,1.0,0.0,0.0 -92,24.0,0.0,0.0,0.0,0.0,0.9780707843934834,-21.1982579032801,1.0,0.0,0.0 -92,25.0,1.878846556052765,2.3,0.0,0.0,0.9640458646224872,-21.27654878826077,1.0,0.0,0.0 -92,26.0,0.0,0.0,0.0,0.0,0.97897269606313,-21.001434322417957,1.0,0.0,0.0 -92,27.0,0.0,0.0,0.0,0.0,0.958665540098125,-19.015057761123312,1.0,0.0,0.0 -92,28.0,1.2883519241504675,0.9,0.0,0.0,0.9652223107799824,-21.630689797664,1.0,0.0,0.0 -92,29.0,5.690220998331231,1.9,0.0,0.0,0.9577401777507742,-22.10460449656092,1.0,0.0,0.0 -93,0.0,0.0,0.0,158.66355985818575,0.0015470023063457,1.0,0.0,0.0,0.0,1.0 -93,1.0,11.648848647527142,12.7,2.2375260356299755e-06,-0.0600989109153218,0.979401816625878,-3.613314883419588,0.0,1.0,0.0 -93,2.0,1.2883519241504675,1.2,0.0,0.0,0.9780021240557843,-4.830623287156201,1.0,0.0,0.0 -93,3.0,4.079781093143146,1.6,0.0,0.0,0.9722552738212104,-5.934926245231818,1.0,0.0,0.0 -93,4.0,50.567813022905845,19.0,7.807338644778897e-10,25.075486375901107,0.9639094883661704,-8.770542711753672,0.0,1.0,0.0 -93,5.0,0.0,0.0,0.0,0.0,0.9725930984221476,-7.025853843966278,1.0,0.0,0.0 -93,6.0,12.23934327942944,10.9,0.0,0.0,0.9626275016171372,-8.008282543672081,1.0,0.0,0.0 -93,7.0,16.104399051880844,30.0,-5.804415852987003e-10,35.301959753467635,0.9734307711277164,-7.4722671477172975,0.0,1.0,0.0 -93,8.0,0.0,0.0,0.0,0.0,1.0208221617259792,-8.758774271191792,1.0,0.0,0.0 -93,9.0,3.1135171500302965,2.0,0.0,0.0,1.0144088675795804,-9.657110348916673,1.0,0.0,0.0 -93,10.0,0.0,0.0,3.897822794522057e-09,19.96055309911503,1.059990394441917,-8.758774270762496,0.0,1.0,0.0 -93,11.0,6.012308979368848,7.5,0.0,0.0,1.0272914630194787,-9.291345210189812,1.0,0.0,0.0 -93,12.0,0.0,0.0,2.999011005500972e-09,15.992958184159267,1.048643001555109,-9.291345209966504,0.0,1.0,0.0 -93,13.0,3.328242470722041,1.6,0.0,0.0,1.0156940500954896,-9.736240546774916,1.0,0.0,0.0 -93,14.0,4.401869074180763,2.5,0.0,0.0,1.0116868792696454,-9.741792321638144,1.0,0.0,0.0 -93,15.0,1.878846556052765,1.8,0.0,0.0,1.0157259736750517,-9.535772814231786,1.0,0.0,0.0 -93,16.0,4.831319715564253,5.8,0.0,0.0,1.010507509051378,-9.713311307135886,1.0,0.0,0.0 -93,17.0,1.7178025655339566,0.9,0.0,0.0,1.0036427960879517,-10.04132897596757,1.0,0.0,0.0 -93,18.0,5.099726366428934,3.4,0.0,0.0,1.0011324114612803,-10.1260299712193,1.0,0.0,0.0 -93,19.0,1.1809892638045951,0.7,0.0,0.0,1.003847990975224,-10.038567914452267,1.0,0.0,0.0 -93,20.0,9.394232780263824,11.2,0.0,0.0,1.0041744989609136,-9.826865249319445,1.0,0.0,0.0 -93,21.0,0.0,0.0,0.0,0.0,1.0046145043048116,-9.825232283764716,1.0,0.0,0.0 -93,22.0,1.7178025655339566,1.6,0.0,0.0,1.0018418865003105,-9.897365941315131,1.0,0.0,0.0 -93,23.0,4.670275725045444,6.7,0.0,0.0,0.9953142308811456,-9.96681327591234,1.0,0.0,0.0 -93,24.0,0.0,0.0,0.0,0.0,0.9875901763750088,-9.701811715374774,1.0,0.0,0.0 -93,25.0,1.878846556052765,2.3,0.0,0.0,0.9737043924947968,-9.77857884415362,1.0,0.0,0.0 -93,26.0,0.0,0.0,0.0,0.0,0.9897450595658565,-9.463728518099636,1.0,0.0,0.0 -93,27.0,0.0,0.0,0.0,0.0,0.971106013971648,-7.3755140463387505,1.0,0.0,0.0 -93,28.0,1.2883519241504675,0.9,0.0,0.0,0.9400010926524572,-11.72257238228879,1.0,0.0,0.0 -93,29.0,5.690220998331231,1.9,0.0,0.0,0.947637319700264,-11.485806513856236,1.0,0.0,0.0 -94,0.0,0.0,0.0,158.50750008525728,0.0004777557299107,1.0,0.0,0.0,0.0,1.0 -94,1.0,11.648848647527142,12.7,5.620376749895078e-07,10.155232319401676,0.9805757113982004,-3.635247429326912,0.0,1.0,0.0 -94,2.0,1.2883519241504675,1.2,0.0,0.0,0.9746653814285328,-4.76792159087469,1.0,0.0,0.0 -94,3.0,4.079781093143146,1.6,0.0,0.0,0.9681345670421284,-5.858596110607177,1.0,0.0,0.0 -94,4.0,50.567813022905845,19.0,-6.711002394633232e-10,23.979932340200207,0.9609492618454754,-8.749932194333214,0.0,1.0,0.0 -94,5.0,0.0,0.0,0.0,0.0,0.9678319915296584,-6.956223178778096,1.0,0.0,0.0 -94,6.0,12.23934327942944,10.9,0.0,0.0,0.9585712674997914,-7.959861337854867,1.0,0.0,0.0 -94,7.0,16.104399051880844,30.0,-5.359046598070169e-10,30.45029238261141,0.9668363057605304,-7.376703457223666,0.0,1.0,0.0 -94,8.0,0.0,0.0,0.0,0.0,1.0160227377547353,-8.733481136549399,1.0,0.0,0.0 -94,9.0,3.1135171500302965,2.0,0.0,0.0,1.0071448020428933,-9.656898794474056,1.0,0.0,0.0 -94,10.0,0.0,0.0,-1.8064028312273367e-10,22.38652329873111,1.059952959419354,-8.733481136569388,0.0,1.0,0.0 -94,11.0,6.012308979368848,7.5,0.0,0.0,1.0139327299803738,-9.196605817214332,1.0,0.0,0.0 -94,12.0,0.0,0.0,-6.944140263315294e-10,9.647902339834708,1.0270836195656643,-9.19660581726782,0.0,1.0,0.0 -94,13.0,3.328242470722041,1.6,0.0,0.0,1.003008990347879,-9.65452773604346,1.0,0.0,0.0 -94,14.0,4.401869074180763,2.5,0.0,0.0,0.9997385994610832,-9.680321976842052,1.0,0.0,0.0 -94,15.0,1.878846556052765,1.8,0.0,0.0,1.0048803790079277,-9.49665550795976,1.0,0.0,0.0 -94,16.0,4.831319715564253,5.8,0.0,0.0,1.0021038144213223,-9.698255427622566,1.0,0.0,0.0 -94,17.0,1.7178025655339566,0.9,0.0,0.0,0.9932482699059088,-10.00890029658526,1.0,0.0,0.0 -94,18.0,5.099726366428934,3.4,0.0,0.0,0.9916826899200614,-10.108766816164607,1.0,0.0,0.0 -94,19.0,1.1809892638045951,0.7,0.0,0.0,0.9949346117108744,-10.026897480982354,1.0,0.0,0.0 -94,20.0,9.394232780263824,11.2,0.0,0.0,0.9966440631837776,-9.825060770969316,1.0,0.0,0.0 -94,21.0,0.0,0.0,0.0,0.0,0.99702767372882,-9.822005814096984,1.0,0.0,0.0 -94,22.0,1.7178025655339566,1.6,0.0,0.0,0.9913760050481708,-9.853209324602442,1.0,0.0,0.0 -94,23.0,4.670275725045444,6.7,0.0,0.0,0.986897668780226,-9.942008368989702,1.0,0.0,0.0 -94,24.0,0.0,0.0,0.0,0.0,0.9805975976336152,-9.674698257443486,1.0,0.0,0.0 -94,25.0,1.878846556052765,2.3,0.0,0.0,0.9666098850002612,-9.752580263789262,1.0,0.0,0.0 -94,26.0,0.0,0.0,0.0,0.0,0.983688183439634,-9.43257731594785,1.0,0.0,0.0 -94,27.0,0.0,0.0,0.0,0.0,0.9658249379725876,-7.30375028269567,1.0,0.0,0.0 -94,28.0,1.2883519241504675,0.9,0.0,0.0,0.97000755743068,-10.05573124248593,1.0,0.0,0.0 -94,29.0,5.690220998331231,1.9,0.0,0.0,0.962563493267616,-10.52494991763608,1.0,0.0,0.0 -95,0.0,0.0,0.0,158.50750008525728,0.0004777557299107,1.0,0.0,0.0,0.0,1.0 -95,1.0,11.648848647527142,12.7,5.620376749895078e-07,10.155232319401676,0.9805757113982004,-3.635247429326912,0.0,1.0,0.0 -95,2.0,1.2883519241504675,1.2,0.0,0.0,0.9746653814285328,-4.76792159087469,1.0,0.0,0.0 -95,3.0,4.079781093143146,1.6,0.0,0.0,0.9681345670421284,-5.858596110607177,1.0,0.0,0.0 -95,4.0,50.567813022905845,19.0,-6.711002394633232e-10,23.979932340200207,0.9609492618454754,-8.749932194333214,0.0,1.0,0.0 -95,5.0,0.0,0.0,0.0,0.0,0.9678319915296584,-6.956223178778096,1.0,0.0,0.0 -95,6.0,12.23934327942944,10.9,0.0,0.0,0.9585712674997914,-7.959861337854867,1.0,0.0,0.0 -95,7.0,16.104399051880844,30.0,-5.359046598070169e-10,30.45029238261141,0.9668363057605304,-7.376703457223666,0.0,1.0,0.0 -95,8.0,0.0,0.0,0.0,0.0,1.0160227377547353,-8.733481136549399,1.0,0.0,0.0 -95,9.0,3.1135171500302965,2.0,0.0,0.0,1.0071448020428933,-9.656898794474056,1.0,0.0,0.0 -95,10.0,0.0,0.0,-1.8064028312273367e-10,22.38652329873111,1.059952959419354,-8.733481136569388,0.0,1.0,0.0 -95,11.0,6.012308979368848,7.5,0.0,0.0,1.0139327299803738,-9.196605817214332,1.0,0.0,0.0 -95,12.0,0.0,0.0,-6.944140263315294e-10,9.647902339834708,1.0270836195656643,-9.19660581726782,0.0,1.0,0.0 -95,13.0,3.328242470722041,1.6,0.0,0.0,1.003008990347879,-9.65452773604346,1.0,0.0,0.0 -95,14.0,4.401869074180763,2.5,0.0,0.0,0.9997385994610832,-9.680321976842052,1.0,0.0,0.0 -95,15.0,1.878846556052765,1.8,0.0,0.0,1.0048803790079277,-9.49665550795976,1.0,0.0,0.0 -95,16.0,4.831319715564253,5.8,0.0,0.0,1.0021038144213223,-9.698255427622566,1.0,0.0,0.0 -95,17.0,1.7178025655339566,0.9,0.0,0.0,0.9932482699059088,-10.00890029658526,1.0,0.0,0.0 -95,18.0,5.099726366428934,3.4,0.0,0.0,0.9916826899200614,-10.108766816164607,1.0,0.0,0.0 -95,19.0,1.1809892638045951,0.7,0.0,0.0,0.9949346117108744,-10.026897480982354,1.0,0.0,0.0 -95,20.0,9.394232780263824,11.2,0.0,0.0,0.9966440631837776,-9.825060770969316,1.0,0.0,0.0 -95,21.0,0.0,0.0,0.0,0.0,0.99702767372882,-9.822005814096984,1.0,0.0,0.0 -95,22.0,1.7178025655339566,1.6,0.0,0.0,0.9913760050481708,-9.853209324602442,1.0,0.0,0.0 -95,23.0,4.670275725045444,6.7,0.0,0.0,0.986897668780226,-9.942008368989702,1.0,0.0,0.0 -95,24.0,0.0,0.0,0.0,0.0,0.9805975976336152,-9.674698257443486,1.0,0.0,0.0 -95,25.0,1.878846556052765,2.3,0.0,0.0,0.9666098850002612,-9.752580263789262,1.0,0.0,0.0 -95,26.0,0.0,0.0,0.0,0.0,0.983688183439634,-9.43257731594785,1.0,0.0,0.0 -95,27.0,0.0,0.0,0.0,0.0,0.9658249379725876,-7.30375028269567,1.0,0.0,0.0 -95,28.0,1.2883519241504675,0.9,0.0,0.0,0.97000755743068,-10.05573124248593,1.0,0.0,0.0 -95,29.0,5.690220998331231,1.9,0.0,0.0,0.962563493267616,-10.52494991763608,1.0,0.0,0.0 -96,0.0,0.0,0.0,159.2749134377123,0.0003065888264153,1.0,0.0,0.0,0.0,1.0 -96,1.0,11.648848647527142,12.7,4.830383571570637e-07,5.532574317902281,0.9792854066319444,-3.684553394413696,0.0,1.0,0.0 -96,2.0,1.2883519241504675,1.2,0.0,0.0,0.977884258376112,-4.68852304239833,1.0,0.0,0.0 -96,3.0,4.079781093143146,1.6,0.0,0.0,0.9720902925285052,-5.758646932221718,1.0,0.0,0.0 -96,4.0,50.567813022905845,19.0,-3.98959218007364e-10,24.136078953339776,0.959768771560404,-8.967646389794938,0.0,1.0,0.0 -96,5.0,0.0,0.0,0.0,0.0,0.9663658914521036,-7.327278554847443,1.0,0.0,0.0 -96,6.0,12.23934327942944,10.9,0.0,0.0,0.957188659172993,-8.269100226728689,1.0,0.0,0.0 -96,7.0,16.104399051880844,30.0,-2.7835354507147636e-10,29.635746390570983,0.9649454885619164,-7.766288021767555,0.0,1.0,0.0 -96,8.0,0.0,0.0,0.0,0.0,1.0107050837980014,-10.637707682036645,1.0,0.0,0.0 -96,9.0,3.1135171500302965,2.0,0.0,0.0,0.9990314348081089,-12.368566428176749,1.0,0.0,0.0 -96,10.0,0.0,0.0,-5.789449783820204e-10,23.998578701418957,1.0578905363416748,-10.637707682101173,0.0,1.0,0.0 -96,11.0,6.012308979368848,7.5,0.0,0.0,0.9791912319880182,-14.892991948084337,1.0,0.0,0.0 -96,12.0,0.0,0.0,-8.792858885042696e-11,17.84438673215217,1.0040720572676267,-14.89299194809151,0.0,1.0,0.0 -96,13.0,3.328242470722041,1.6,0.0,0.0,0.9701875407195204,-14.95871394080943,1.0,0.0,0.0 -96,14.0,4.401869074180763,2.5,0.0,0.0,0.9718907733062728,-14.623577067282657,1.0,0.0,0.0 -96,15.0,1.878846556052765,1.8,0.0,0.0,0.9831778640645876,-13.956995333621506,1.0,0.0,0.0 -96,16.0,4.831319715564253,5.8,0.0,0.0,0.988963797081564,-12.935172909033714,1.0,0.0,0.0 -96,17.0,1.7178025655339566,0.9,0.0,0.0,0.9721710382520844,-14.174661211031816,1.0,0.0,0.0 -96,18.0,5.099726366428934,3.4,0.0,0.0,0.9747122751049077,-13.810224662756765,1.0,0.0,0.0 -96,19.0,1.1809892638045951,0.7,0.0,0.0,0.9802442141366512,-13.481296121432644,1.0,0.0,0.0 -96,20.0,9.394232780263824,11.2,0.0,0.0,0.9876745556521604,-12.597095967967784,1.0,0.0,0.0 -96,21.0,0.0,0.0,0.0,0.0,0.9878136571705692,-12.612177660136773,1.0,0.0,0.0 -96,22.0,1.7178025655339566,1.6,0.0,0.0,0.9697497573447912,-13.974865269685507,1.0,0.0,0.0 -96,23.0,4.670275725045444,6.7,0.0,0.0,0.9738513048605908,-12.959159424472466,1.0,0.0,0.0 -96,24.0,0.0,0.0,0.0,0.0,0.9744493277006392,-11.777634018233607,1.0,0.0,0.0 -96,25.0,1.878846556052765,2.3,0.0,0.0,0.9603707306353608,-11.856516581703366,1.0,0.0,0.0 -96,26.0,0.0,0.0,0.0,0.0,0.9817177491094162,-10.964238086111324,1.0,0.0,0.0 -96,27.0,0.0,0.0,0.0,0.0,0.963579013981027,-7.803956081471089,1.0,0.0,0.0 -96,28.0,1.2883519241504675,0.9,0.0,0.0,0.9680080618764286,-11.58993073618582,1.0,0.0,0.0 -96,29.0,5.690220998331231,1.9,0.0,0.0,0.960548138722285,-12.061103077286491,1.0,0.0,0.0 -97,0.0,0.0,0.0,159.0532772749816,0.0021115732375065,1.0,0.0,0.0,0.0,1.0 -97,1.0,11.648848647527142,12.7,3.671718178929872e-06,10.32325785021851,0.9820177797640092,-3.339359806560158,0.0,1.0,0.0 -97,2.0,1.2883519241504675,1.2,0.0,0.0,0.9716627358198254,-5.682454507488638,1.0,0.0,0.0 -97,3.0,4.079781093143146,1.6,0.0,0.0,0.9645994562927016,-6.996426920919402,1.0,0.0,0.0 -97,4.0,50.567813022905845,19.0,5.2757456295412885e-09,25.51689818086712,0.961982212651496,-8.94706960917493,0.0,1.0,0.0 -97,5.0,0.0,0.0,0.0,0.0,0.9648658260488504,-7.612296167815933,1.0,0.0,0.0 -97,6.0,12.23934327942944,10.9,0.0,0.0,0.957160123674892,-8.427658340264713,1.0,0.0,0.0 -97,7.0,16.104399051880844,30.0,4.3462014378715406e-09,36.1126724651056,0.9660624752905472,-8.08529098881138,0.0,1.0,0.0 -97,8.0,0.0,0.0,0.0,0.0,1.0284444489339502,-12.53994765808554,1.0,0.0,0.0 -97,9.0,3.1135171500302965,2.0,0.0,0.0,1.0147126886857645,-12.539947657983562,1.0,0.0,0.0 -97,10.0,0.0,0.0,-1.6885325386771187e-09,13.162640685808672,1.0544099592057845,-12.539947658271108,0.0,1.0,0.0 -97,11.0,6.012308979368848,7.5,0.0,0.0,1.027916445662758,-11.092780371195923,1.0,0.0,0.0 -97,12.0,0.0,0.0,5.22244066420496e-09,16.86518466593176,1.0503949044148573,-11.092780370807942,0.0,1.0,0.0 -97,13.0,3.328242470722041,1.6,0.0,0.0,0.9970790185712892,-12.1229295290083,1.0,0.0,0.0 -97,14.0,4.401869074180763,2.5,0.0,0.0,1.0076653718527375,-11.945548304167648,1.0,0.0,0.0 -97,15.0,1.878846556052765,1.8,0.0,0.0,1.0154384945102912,-11.798447997761894,1.0,0.0,0.0 -97,16.0,4.831319715564253,5.8,0.0,0.0,1.0108469859388995,-12.401845903926397,1.0,0.0,0.0 -97,17.0,1.7178025655339566,0.9,0.0,0.0,1.0010580013720674,-12.486144630085,1.0,0.0,0.0 -97,18.0,5.099726366428934,3.4,0.0,0.0,0.9994222852086868,-12.714086196554504,1.0,0.0,0.0 -97,19.0,1.1809892638045951,0.7,0.0,0.0,1.0026028514333325,-12.701725359298711,1.0,0.0,0.0 -97,20.0,9.394232780263824,11.2,0.0,0.0,1.00404471754182,-12.615101099444583,1.0,0.0,0.0 -97,21.0,0.0,0.0,0.0,0.0,1.0043578707630505,-12.582878888358824,1.0,0.0,0.0 -97,22.0,1.7178025655339566,1.6,0.0,0.0,0.9990372832310932,-12.157993231150115,1.0,0.0,0.0 -97,23.0,4.670275725045444,6.7,0.0,0.0,0.9941639017352896,-12.302668291077977,1.0,0.0,0.0 -97,24.0,0.0,0.0,0.0,0.0,0.9863400423280316,-11.381112822106616,1.0,0.0,0.0 -97,25.0,1.878846556052765,2.3,0.0,0.0,0.9724361463951798,-11.458077495252274,1.0,0.0,0.0 -97,26.0,0.0,0.0,0.0,0.0,0.9883043531794378,-10.732881534064171,1.0,0.0,0.0 -97,27.0,0.0,0.0,0.0,0.0,0.9637784734300308,-8.053891432019977,1.0,0.0,0.0 -97,28.0,1.2883519241504675,0.9,0.0,0.0,0.9746913160839892,-11.350148412998232,1.0,0.0,0.0 -97,29.0,5.690220998331231,1.9,0.0,0.0,0.967284134574769,-11.814838094306229,1.0,0.0,0.0 -98,0.0,0.0,0.0,158.50750008525728,0.0004777557299107,1.0,0.0,0.0,0.0,1.0 -98,1.0,11.648848647527142,12.7,5.620376749895078e-07,10.155232319401676,0.9805757113982004,-3.635247429326912,0.0,1.0,0.0 -98,2.0,1.2883519241504675,1.2,0.0,0.0,0.9746653814285328,-4.76792159087469,1.0,0.0,0.0 -98,3.0,4.079781093143146,1.6,0.0,0.0,0.9681345670421284,-5.858596110607177,1.0,0.0,0.0 -98,4.0,50.567813022905845,19.0,-6.711002394633232e-10,23.979932340200207,0.9609492618454754,-8.749932194333214,0.0,1.0,0.0 -98,5.0,0.0,0.0,0.0,0.0,0.9678319915296584,-6.956223178778096,1.0,0.0,0.0 -98,6.0,12.23934327942944,10.9,0.0,0.0,0.9585712674997914,-7.959861337854867,1.0,0.0,0.0 -98,7.0,16.104399051880844,30.0,-5.359046598070169e-10,30.45029238261141,0.9668363057605304,-7.376703457223666,0.0,1.0,0.0 -98,8.0,0.0,0.0,0.0,0.0,1.0160227377547353,-8.733481136549399,1.0,0.0,0.0 -98,9.0,3.1135171500302965,2.0,0.0,0.0,1.0071448020428933,-9.656898794474056,1.0,0.0,0.0 -98,10.0,0.0,0.0,-1.8064028312273367e-10,22.38652329873111,1.059952959419354,-8.733481136569388,0.0,1.0,0.0 -98,11.0,6.012308979368848,7.5,0.0,0.0,1.0139327299803738,-9.196605817214332,1.0,0.0,0.0 -98,12.0,0.0,0.0,-6.944140263315294e-10,9.647902339834708,1.0270836195656643,-9.19660581726782,0.0,1.0,0.0 -98,13.0,3.328242470722041,1.6,0.0,0.0,1.003008990347879,-9.65452773604346,1.0,0.0,0.0 -98,14.0,4.401869074180763,2.5,0.0,0.0,0.9997385994610832,-9.680321976842052,1.0,0.0,0.0 -98,15.0,1.878846556052765,1.8,0.0,0.0,1.0048803790079277,-9.49665550795976,1.0,0.0,0.0 -98,16.0,4.831319715564253,5.8,0.0,0.0,1.0021038144213223,-9.698255427622566,1.0,0.0,0.0 -98,17.0,1.7178025655339566,0.9,0.0,0.0,0.9932482699059088,-10.00890029658526,1.0,0.0,0.0 -98,18.0,5.099726366428934,3.4,0.0,0.0,0.9916826899200614,-10.108766816164607,1.0,0.0,0.0 -98,19.0,1.1809892638045951,0.7,0.0,0.0,0.9949346117108744,-10.026897480982354,1.0,0.0,0.0 -98,20.0,9.394232780263824,11.2,0.0,0.0,0.9966440631837776,-9.825060770969316,1.0,0.0,0.0 -98,21.0,0.0,0.0,0.0,0.0,0.99702767372882,-9.822005814096984,1.0,0.0,0.0 -98,22.0,1.7178025655339566,1.6,0.0,0.0,0.9913760050481708,-9.853209324602442,1.0,0.0,0.0 -98,23.0,4.670275725045444,6.7,0.0,0.0,0.986897668780226,-9.942008368989702,1.0,0.0,0.0 -98,24.0,0.0,0.0,0.0,0.0,0.9805975976336152,-9.674698257443486,1.0,0.0,0.0 -98,25.0,1.878846556052765,2.3,0.0,0.0,0.9666098850002612,-9.752580263789262,1.0,0.0,0.0 -98,26.0,0.0,0.0,0.0,0.0,0.983688183439634,-9.43257731594785,1.0,0.0,0.0 -98,27.0,0.0,0.0,0.0,0.0,0.9658249379725876,-7.30375028269567,1.0,0.0,0.0 -98,28.0,1.2883519241504675,0.9,0.0,0.0,0.97000755743068,-10.05573124248593,1.0,0.0,0.0 -98,29.0,5.690220998331231,1.9,0.0,0.0,0.962563493267616,-10.52494991763608,1.0,0.0,0.0 -99,0.0,0.0,0.0,158.50750008525728,0.0004777557299107,1.0,0.0,0.0,0.0,1.0 -99,1.0,11.648848647527142,12.7,5.620376749895078e-07,10.155232319401676,0.9805757113982004,-3.635247429326912,0.0,1.0,0.0 -99,2.0,1.2883519241504675,1.2,0.0,0.0,0.9746653814285328,-4.76792159087469,1.0,0.0,0.0 -99,3.0,4.079781093143146,1.6,0.0,0.0,0.9681345670421284,-5.858596110607177,1.0,0.0,0.0 -99,4.0,50.567813022905845,19.0,-6.711002394633232e-10,23.979932340200207,0.9609492618454754,-8.749932194333214,0.0,1.0,0.0 -99,5.0,0.0,0.0,0.0,0.0,0.9678319915296584,-6.956223178778096,1.0,0.0,0.0 -99,6.0,12.23934327942944,10.9,0.0,0.0,0.9585712674997914,-7.959861337854867,1.0,0.0,0.0 -99,7.0,16.104399051880844,30.0,-5.359046598070169e-10,30.45029238261141,0.9668363057605304,-7.376703457223666,0.0,1.0,0.0 -99,8.0,0.0,0.0,0.0,0.0,1.0160227377547353,-8.733481136549399,1.0,0.0,0.0 -99,9.0,3.1135171500302965,2.0,0.0,0.0,1.0071448020428933,-9.656898794474056,1.0,0.0,0.0 -99,10.0,0.0,0.0,-1.8064028312273367e-10,22.38652329873111,1.059952959419354,-8.733481136569388,0.0,1.0,0.0 -99,11.0,6.012308979368848,7.5,0.0,0.0,1.0139327299803738,-9.196605817214332,1.0,0.0,0.0 -99,12.0,0.0,0.0,-6.944140263315294e-10,9.647902339834708,1.0270836195656643,-9.19660581726782,0.0,1.0,0.0 -99,13.0,3.328242470722041,1.6,0.0,0.0,1.003008990347879,-9.65452773604346,1.0,0.0,0.0 -99,14.0,4.401869074180763,2.5,0.0,0.0,0.9997385994610832,-9.680321976842052,1.0,0.0,0.0 -99,15.0,1.878846556052765,1.8,0.0,0.0,1.0048803790079277,-9.49665550795976,1.0,0.0,0.0 -99,16.0,4.831319715564253,5.8,0.0,0.0,1.0021038144213223,-9.698255427622566,1.0,0.0,0.0 -99,17.0,1.7178025655339566,0.9,0.0,0.0,0.9932482699059088,-10.00890029658526,1.0,0.0,0.0 -99,18.0,5.099726366428934,3.4,0.0,0.0,0.9916826899200614,-10.108766816164607,1.0,0.0,0.0 -99,19.0,1.1809892638045951,0.7,0.0,0.0,0.9949346117108744,-10.026897480982354,1.0,0.0,0.0 -99,20.0,9.394232780263824,11.2,0.0,0.0,0.9966440631837776,-9.825060770969316,1.0,0.0,0.0 -99,21.0,0.0,0.0,0.0,0.0,0.99702767372882,-9.822005814096984,1.0,0.0,0.0 -99,22.0,1.7178025655339566,1.6,0.0,0.0,0.9913760050481708,-9.853209324602442,1.0,0.0,0.0 -99,23.0,4.670275725045444,6.7,0.0,0.0,0.986897668780226,-9.942008368989702,1.0,0.0,0.0 -99,24.0,0.0,0.0,0.0,0.0,0.9805975976336152,-9.674698257443486,1.0,0.0,0.0 -99,25.0,1.878846556052765,2.3,0.0,0.0,0.9666098850002612,-9.752580263789262,1.0,0.0,0.0 -99,26.0,0.0,0.0,0.0,0.0,0.983688183439634,-9.43257731594785,1.0,0.0,0.0 -99,27.0,0.0,0.0,0.0,0.0,0.9658249379725876,-7.30375028269567,1.0,0.0,0.0 -99,28.0,1.2883519241504675,0.9,0.0,0.0,0.97000755743068,-10.05573124248593,1.0,0.0,0.0 -99,29.0,5.690220998331231,1.9,0.0,0.0,0.962563493267616,-10.52494991763608,1.0,0.0,0.0 -100,0.0,0.0,0.0,158.88881587126136,0.0012904593345908,1.0,0.0,0.0,0.0,1.0 -100,1.0,11.648848647527142,12.7,1.8999197140360344e-06,8.589407651479874,0.9803410208132116,-3.635472694014692,0.0,1.0,0.0 -100,2.0,1.2883519241504675,1.2,0.0,0.0,0.9752051803600612,-4.802074607792397,1.0,0.0,0.0 -100,3.0,4.079781093143146,1.6,0.0,0.0,0.9688045693596816,-5.9007654398968965,1.0,0.0,0.0 -100,4.0,50.567813022905845,19.0,-6.168750359729015e-10,24.046732353341525,0.9611848090351856,-8.751604354168649,0.0,1.0,0.0 -100,5.0,0.0,0.0,0.0,0.0,0.9683980036692093,-6.961335684882622,1.0,0.0,0.0 -100,6.0,12.23934327942944,10.9,0.0,0.0,0.9590058198893298,-7.963497711240747,1.0,0.0,0.0 -100,7.0,16.104399051880844,30.0,1.620553591326168e-09,30.05625209404924,0.9571661579315208,-9.951322013473728,0.0,1.0,0.0 -100,8.0,0.0,0.0,0.0,0.0,1.0185334699532278,-8.677944331486716,1.0,0.0,0.0 -100,9.0,3.1135171500302965,2.0,0.0,0.0,1.0124407814879706,-9.565710210841075,1.0,0.0,0.0 -100,10.0,0.0,0.0,9.093983114503971e-10,20.645111065530784,1.059079829009527,-8.677944331386248,0.0,1.0,0.0 -100,11.0,6.012308979368848,7.5,0.0,0.0,1.018799599132299,-9.459646423400534,1.0,0.0,0.0 -100,12.0,0.0,0.0,3.120852745735762e-10,15.042147630851716,1.0390668293888727,-9.459646423376888,0.0,1.0,0.0 -100,13.0,3.328242470722041,1.6,0.0,0.0,1.005702606766503,-9.972920840614046,1.0,0.0,0.0 -100,14.0,4.401869074180763,2.5,0.0,0.0,0.9998962809442858,-10.006938725771056,1.0,0.0,0.0 -100,15.0,1.878846556052765,1.8,0.0,0.0,1.0101969220419638,-9.607590141572697,1.0,0.0,0.0 -100,16.0,4.831319715564253,5.8,0.0,0.0,1.0073535203245014,-9.66907234094739,1.0,0.0,0.0 -100,17.0,1.7178025655339566,0.9,0.0,0.0,0.982695408725536,-10.606547158987174,1.0,0.0,0.0 -100,18.0,5.099726366428934,3.4,0.0,0.0,0.9748359274791892,-10.870682808389644,1.0,0.0,0.0 -100,19.0,1.1809892638045951,0.7,0.0,0.0,1.009895951546574,-9.667309480428097,1.0,0.0,0.0 -100,20.0,9.394232780263824,11.2,0.0,0.0,1.0015289040760067,-9.772438841028585,1.0,0.0,0.0 -100,21.0,0.0,0.0,0.0,0.0,1.0017592401230904,-9.782182774796643,1.0,0.0,0.0 -100,22.0,1.7178025655339566,1.6,0.0,0.0,0.9925265625037832,-10.09135777650359,1.0,0.0,0.0 -100,23.0,4.670275725045444,6.7,0.0,0.0,0.9893485128253464,-10.060548300095746,1.0,0.0,0.0 -100,24.0,0.0,0.0,0.0,0.0,0.9809431056745932,-9.947598410921,1.0,0.0,0.0 -100,25.0,1.878846556052765,2.3,0.0,0.0,0.9669604650650414,-10.025424759430594,1.0,0.0,0.0 -100,26.0,0.0,0.0,0.0,0.0,0.9827753111704564,-9.80418189286962,1.0,0.0,0.0 -100,27.0,0.0,0.0,0.0,0.0,0.9642877403664764,-7.871822664378614,1.0,0.0,0.0 -100,28.0,1.2883519241504675,0.9,0.0,0.0,0.9690812373098284,-10.428510036957311,1.0,0.0,0.0 -100,29.0,5.690220998331231,1.9,0.0,0.0,0.9616298345661374,-10.898632282984874,1.0,0.0,0.0 -101,0.0,0.0,0.0,158.65458859062275,0.0024180103110005,1.0,0.0,0.0,0.0,1.0 -101,1.0,11.648848647527142,12.7,1.295528263634596e-06,14.610026930298991,0.9811988766229752,-3.6480029155565776,0.0,1.0,0.0 -101,2.0,1.2883519241504675,1.2,0.0,0.0,0.97281424901207,-4.75399303432808,1.0,0.0,0.0 -101,3.0,4.079781093143146,1.6,0.0,0.0,0.9658515349989046,-5.842113373486318,1.0,0.0,0.0 -101,4.0,50.567813022905845,19.0,8.549689519420277e-10,26.03382042884384,0.9619168123053888,-8.765829727412264,0.0,1.0,0.0 -101,5.0,0.0,0.0,0.0,0.0,0.9649415091676766,-6.888894099367996,1.0,0.0,0.0 -101,6.0,12.23934327942944,10.9,0.0,0.0,0.9572555120748256,-7.925420514994035,1.0,0.0,0.0 -101,7.0,16.104399051880844,30.0,1.6931931123710826e-09,39.98979566282324,0.9675965209315268,-7.361341914194157,0.0,1.0,0.0 -101,8.0,0.0,0.0,0.0,0.0,0.9865040356546418,-8.740666719876039,1.0,0.0,0.0 -101,9.0,3.1135171500302965,2.0,0.0,0.0,0.986844570127342,-9.719651430661614,1.0,0.0,0.0 -101,10.0,0.0,0.0,0.0,0.0,0.9865040356546418,-8.740666719876039,0.0,1.0,0.0 -101,11.0,6.012308979368848,7.5,0.0,0.0,1.0099490992907554,-9.47350086710224,1.0,0.0,0.0 -101,12.0,0.0,0.0,2.0490299470150512e-09,16.343557211337405,1.0321180556145062,-9.473500866944564,0.0,1.0,0.0 -101,13.0,3.328242470722041,1.6,0.0,0.0,0.9967429917317162,-9.947443350669625,1.0,0.0,0.0 -101,14.0,4.401869074180763,2.5,0.0,0.0,0.9912250077875054,-9.934140239821469,1.0,0.0,0.0 -101,15.0,1.878846556052765,1.8,0.0,0.0,0.9939178488772572,-9.649641651560078,1.0,0.0,0.0 -101,16.0,4.831319715564253,5.8,0.0,0.0,0.9846037897521738,-9.803908428092846,1.0,0.0,0.0 -101,17.0,1.7178025655339566,0.9,0.0,0.0,0.9804674647782274,-10.202999205662602,1.0,0.0,0.0 -101,18.0,5.099726366428934,3.4,0.0,0.0,0.9764024319571976,-10.265149331301313,1.0,0.0,0.0 -101,19.0,1.1809892638045951,0.7,0.0,0.0,0.9784015755885213,-10.158801095531604,1.0,0.0,0.0 -101,20.0,9.394232780263824,11.2,0.0,0.0,0.9764224281246242,-9.938276918672589,1.0,0.0,0.0 -101,21.0,0.0,0.0,0.0,0.0,0.9769039046745454,-9.949188599021031,1.0,0.0,0.0 -101,22.0,1.7178025655339566,1.6,0.0,0.0,0.9781226430803892,-10.139123452959218,1.0,0.0,0.0 -101,23.0,4.670275725045444,6.7,0.0,0.0,0.967421807098925,-10.271340733627216,1.0,0.0,0.0 -101,24.0,0.0,0.0,0.0,0.0,0.955610105047025,-10.386723894235676,1.0,0.0,0.0 -101,25.0,1.878846556052765,2.3,0.0,0.0,0.941245404452409,-10.468796003126544,1.0,0.0,0.0 -101,26.0,0.0,0.0,0.0,0.0,0.9837820466925438,-8.82963196085804,1.0,0.0,0.0 -101,27.0,0.0,0.0,0.0,0.0,0.9643026566711242,-7.191774802076016,1.0,0.0,0.0 -101,28.0,1.2883519241504675,0.9,0.0,0.0,0.9701028018692288,-9.452665340646943,1.0,0.0,0.0 -101,29.0,5.690220998331231,1.9,0.0,0.0,0.9626594914228432,-9.921791258418668,1.0,0.0,0.0 -102,0.0,0.0,0.0,158.5560169037052,0.0007719027084185,1.0,0.0,0.0,0.0,1.0 -102,1.0,11.648848647527142,12.7,9.335176531800092e-07,9.733703902284104,0.9805235360167152,-3.634459479376375,0.0,1.0,0.0 -102,2.0,1.2883519241504675,1.2,0.0,0.0,0.974799551125137,-4.774301992334452,1.0,0.0,0.0 -102,3.0,4.079781093143146,1.6,0.0,0.0,0.9683007938207118,-5.866460116334639,1.0,0.0,0.0 -102,4.0,50.567813022905845,19.0,-9.687807436301016e-10,23.960215126908395,0.9610154492689504,-8.748838093830358,0.0,1.0,0.0 -102,5.0,0.0,0.0,0.0,0.0,0.968055429389886,-6.957192656212922,1.0,0.0,0.0 -102,6.0,12.23934327942944,10.9,0.0,0.0,0.9587316675707652,-7.959978853463075,1.0,0.0,0.0 -102,7.0,16.104399051880844,30.0,-6.525288983044894e-10,30.55411189782625,0.9669360073739514,-7.381820146632605,0.0,1.0,0.0 -102,8.0,0.0,0.0,0.0,0.0,1.018249464671168,-8.621912631858445,1.0,0.0,0.0 -102,9.0,3.1135171500302965,2.0,0.0,0.0,1.0115734460936028,-9.483282636798773,1.0,0.0,0.0 -102,10.0,0.0,0.0,-6.59571508454916e-12,21.236923049159,1.0599248712408231,-8.621912631859173,0.0,1.0,0.0 -102,11.0,6.012308979368848,7.5,0.0,0.0,1.014589356672464,-9.251630850438476,1.0,0.0,0.0 -102,12.0,0.0,0.0,-7.377252541470665e-10,11.255477522721122,1.0298897024228286,-9.25163085049511,0.0,1.0,0.0 -102,13.0,3.328242470722041,1.6,0.0,0.0,1.002453501339072,-9.734509415516646,1.0,0.0,0.0 -102,14.0,4.401869074180763,2.5,0.0,0.0,0.9978380848492936,-9.75767710055702,1.0,0.0,0.0 -102,15.0,1.878846556052765,1.8,0.0,0.0,1.0073344902545014,-9.461009876303397,1.0,0.0,0.0 -102,16.0,4.831319715564253,5.8,0.0,0.0,1.0058819585977772,-9.564511410665434,1.0,0.0,0.0 -102,17.0,1.7178025655339566,0.9,0.0,0.0,0.9936026328741344,-9.998336983437133,1.0,0.0,0.0 -102,18.0,5.099726366428934,3.4,0.0,0.0,0.9933682956849584,-10.045620082276692,1.0,0.0,0.0 -102,19.0,1.1809892638045951,0.7,0.0,0.0,0.997317712844953,-9.936735648675688,1.0,0.0,0.0 -102,20.0,9.394232780263824,11.2,0.0,0.0,1.0034245275060114,-9.604943528299732,1.0,0.0,0.0 -102,21.0,0.0,0.0,0.0,0.0,1.0045364934917704,-9.588530661594902,1.0,0.0,0.0 -102,22.0,1.7178025655339566,1.6,0.0,0.0,0.9825153683511944,-10.071504909571216,1.0,0.0,0.0 -102,23.0,4.670275725045444,6.7,0.0,0.0,0.9688574890934836,-10.356409290479242,1.0,0.0,0.0 -102,24.0,0.0,0.0,0.0,0.0,0.96942135263804,-10.02206531378362,1.0,0.0,0.0 -102,25.0,1.878846556052765,2.3,0.0,0.0,0.9552675356270076,-10.101780598755589,1.0,0.0,0.0 -102,26.0,0.0,0.0,0.0,0.0,0.9768389620012194,-9.72965194972019,1.0,0.0,0.0 -102,27.0,0.0,0.0,0.0,0.0,0.965106163004802,-7.324359780701373,1.0,0.0,0.0 -102,28.0,1.2883519241504675,0.9,0.0,0.0,0.9630567700502836,-10.361697987560584,1.0,0.0,0.0 -102,29.0,5.690220998331231,1.9,0.0,0.0,0.9555572789318812,-10.837761110258668,1.0,0.0,0.0 -103,0.0,0.0,0.0,158.59497904742574,0.0005777547631424,1.0,0.0,0.0,0.0,1.0 -103,1.0,11.648848647527142,12.7,6.816492318689725e-07,10.03838525869071,0.980542674900662,-3.637565735150447,0.0,1.0,0.0 -103,2.0,1.2883519241504675,1.2,0.0,0.0,0.974722504172049,-4.7695969339765005,1.0,0.0,0.0 -103,3.0,4.079781093143146,1.6,0.0,0.0,0.9682051919570452,-5.860651341258422,1.0,0.0,0.0 -103,4.0,50.567813022905845,19.0,-7.348077723160091e-10,24.02625545625389,0.960960845675503,-8.756784929552843,0.0,1.0,0.0 -103,5.0,0.0,0.0,0.0,0.0,0.9677904918253392,-6.965905467573835,1.0,0.0,0.0 -103,6.0,12.23934327942944,10.9,0.0,0.0,0.9585509093209592,-7.968378828251528,1.0,0.0,0.0 -103,7.0,16.104399051880844,30.0,-5.414068423702272e-10,30.689835048276407,0.966870476378599,-7.388447018984406,0.0,1.0,0.0 -103,8.0,0.0,0.0,0.0,0.0,1.015687090850529,-8.76682832781042,1.0,0.0,0.0 -103,9.0,3.1135171500302965,2.0,0.0,0.0,1.0064632794775978,-9.703132240783162,1.0,0.0,0.0 -103,10.0,0.0,0.0,-1.7497468692489653e-11,22.581285736671475,1.059997637108356,-8.766828327812359,0.0,1.0,0.0 -103,11.0,6.012308979368848,7.5,0.0,0.0,1.0145865935817877,-9.14618610118506,1.0,0.0,0.0 -103,12.0,0.0,0.0,-7.741329019708923e-10,9.476480809070802,1.0274986044355516,-9.146186101244624,0.0,1.0,0.0 -103,13.0,3.328242470722041,1.6,0.0,0.0,0.9851487532791954,-10.0054547130663,1.0,0.0,0.0 -103,14.0,4.401869074180763,2.5,0.0,0.0,0.9958634263339584,-9.82379777037078,1.0,0.0,0.0 -103,15.0,1.878846556052765,1.8,0.0,0.0,1.004891254005225,-9.48476561475556,1.0,0.0,0.0 -103,16.0,4.831319715564253,5.8,0.0,0.0,1.0016574684531576,-9.727287027754922,1.0,0.0,0.0 -103,17.0,1.7178025655339566,0.9,0.0,0.0,0.9904821306344112,-10.12044564382408,1.0,0.0,0.0 -103,18.0,5.099726366428934,3.4,0.0,0.0,0.9895781876833932,-10.200575312608413,1.0,0.0,0.0 -103,19.0,1.1809892638045951,0.7,0.0,0.0,0.9931885589104048,-10.107834907222044,1.0,0.0,0.0 -103,20.0,9.394232780263824,11.2,0.0,0.0,0.995805002610454,-9.87648966358169,1.0,0.0,0.0 -103,21.0,0.0,0.0,0.0,0.0,0.9961410827936632,-9.87495863791614,1.0,0.0,0.0 -103,22.0,1.7178025655339566,1.6,0.0,0.0,0.9884833102027624,-9.9659483043853,1.0,0.0,0.0 -103,23.0,4.670275725045444,6.7,0.0,0.0,0.9853279531843446,-10.011750039444031,1.0,0.0,0.0 -103,24.0,0.0,0.0,0.0,0.0,0.9796389188010466,-9.72989294658575,1.0,0.0,0.0 -103,25.0,1.878846556052765,2.3,0.0,0.0,0.9656371133069386,-9.807929703041433,1.0,0.0,0.0 -103,26.0,0.0,0.0,0.0,0.0,0.9831116505972296,-9.477930246784654,1.0,0.0,0.0 -103,27.0,0.0,0.0,0.0,0.0,0.9657227909816658,-7.316678487576558,1.0,0.0,0.0 -103,28.0,1.2883519241504675,0.9,0.0,0.0,0.9694225346308212,-10.101825373308683,1.0,0.0,0.0 -103,29.0,5.690220998331231,1.9,0.0,0.0,0.9619738374501188,-10.571614399697223,1.0,0.0,0.0 -104,0.0,0.0,0.0,158.66156038365617,0.0009992494987898,1.0,0.0,0.0,0.0,1.0 -104,1.0,11.648848647527142,12.7,8.755090269695976e-07,9.520547737273104,0.9806000237473934,-3.623685208215976,0.0,1.0,0.0 -104,2.0,1.2883519241504675,1.2,0.0,0.0,0.9745900447160288,-4.816240944809219,1.0,0.0,0.0 -104,3.0,4.079781093143146,1.6,0.0,0.0,0.9680485878518196,-5.9186379123568,1.0,0.0,0.0 -104,4.0,50.567813022905845,19.0,2.0661292960617158e-10,24.0059776052543,0.9613955193877032,-8.704271736969229,0.0,1.0,0.0 -104,5.0,0.0,0.0,0.0,0.0,0.9686633657660114,-6.881402815697019,1.0,0.0,0.0 -104,6.0,12.23934327942944,10.9,0.0,0.0,0.9592552955222556,-7.896722562879603,1.0,0.0,0.0 -104,7.0,16.104399051880844,30.0,7.640312537154362e-10,30.55848866683908,0.9676227620376804,-7.314677416484762,0.0,1.0,0.0 -104,8.0,0.0,0.0,0.0,0.0,1.0251993693491748,-6.881402815555669,1.0,0.0,0.0 -104,9.0,3.1135171500302965,2.0,0.0,0.0,0.9923576833630708,-11.562223090621732,1.0,0.0,0.0 -104,10.0,0.0,0.0,1.2043317452286939e-09,17.706199404247133,1.059945399455767,-6.881402815423589,0.0,1.0,0.0 -104,11.0,6.012308979368848,7.5,0.0,0.0,1.0140485431580777,-10.172782094066616,1.0,0.0,0.0 -104,12.0,0.0,0.0,2.6368659822928843e-10,16.979118348251934,1.0369717950734012,-10.172782094046502,0.0,1.0,0.0 -104,13.0,3.328242470722041,1.6,0.0,0.0,1.0017450677512814,-10.733124067794389,1.0,0.0,0.0 -104,14.0,4.401869074180763,2.5,0.0,0.0,0.9964460049735036,-10.82895707574682,1.0,0.0,0.0 -104,15.0,1.878846556052765,1.8,0.0,0.0,0.9921590239704258,-10.520448352225063,1.0,0.0,0.0 -104,16.0,4.831319715564253,5.8,0.0,0.0,0.9781476979207095,-10.889527180168788,1.0,0.0,0.0 -104,17.0,1.7178025655339566,0.9,0.0,0.0,0.9857495693414058,-11.425015155486316,1.0,0.0,0.0 -104,18.0,5.099726366428934,3.4,0.0,0.0,0.981733805260996,-11.68485013041632,1.0,0.0,0.0 -104,19.0,1.1809892638045951,0.7,0.0,0.0,0.983731984498079,-11.684493009858802,1.0,0.0,0.0 -104,20.0,9.394232780263824,11.2,0.0,0.0,0.9827280546975636,-11.641129201246338,1.0,0.0,0.0 -104,21.0,0.0,0.0,0.0,0.0,0.9834521627302308,-11.608150203500283,1.0,0.0,0.0 -104,22.0,1.7178025655339566,1.6,0.0,0.0,0.9858197082214856,-11.116351467468071,1.0,0.0,0.0 -104,23.0,4.670275725045444,6.7,0.0,0.0,0.9783919547853736,-11.36067519044413,1.0,0.0,0.0 -104,24.0,0.0,0.0,0.0,0.0,0.9771011600798748,-10.589147523427814,1.0,0.0,0.0 -104,25.0,1.878846556052765,2.3,0.0,0.0,0.9630619093019736,-10.667596171042137,1.0,0.0,0.0 -104,26.0,0.0,0.0,0.0,0.0,0.9832130939872245,-10.029743402230132,1.0,0.0,0.0 -104,27.0,0.0,0.0,0.0,0.0,0.966135590701236,-7.302050283918716,1.0,0.0,0.0 -104,28.0,1.2883519241504675,0.9,0.0,0.0,0.9695254726557654,-10.653508015246292,1.0,0.0,0.0 -104,29.0,5.690220998331231,1.9,0.0,0.0,0.962077591108506,-11.123196609595633,1.0,0.0,0.0 -105,0.0,0.0,0.0,158.72326957969392,0.0010041784909375,1.0,0.0,0.0,0.0,1.0 -105,1.0,11.648848647527142,12.7,0.0,0.0,0.9791849533960538,-3.609767027605777,0.0,1.0,0.0 -105,2.0,1.2883519241504675,1.2,0.0,0.0,0.978608479524751,-4.843781605328503,1.0,0.0,0.0 -105,3.0,4.079781093143146,1.6,0.0,0.0,0.9730043874552108,-5.950973195073845,1.0,0.0,0.0 -105,4.0,50.567813022905845,19.0,7.889254131058637e-09,22.39107953286353,0.9611476137929408,-8.735019177801501,0.0,1.0,0.0 -105,5.0,0.0,0.0,0.0,0.0,0.9728483558285658,-7.039562882707804,1.0,0.0,0.0 -105,6.0,12.23934327942944,10.9,0.0,0.0,0.9616341581180629,-8.003922136619455,1.0,0.0,0.0 -105,7.0,16.104399051880844,30.0,1.886177392360949e-08,35.68360914722559,0.973819760291726,-7.488551112189534,0.0,1.0,0.0 -105,8.0,0.0,0.0,0.0,0.0,1.0214488418235237,-8.780555749761794,1.0,0.0,0.0 -105,9.0,3.1135171500302965,2.0,0.0,0.0,1.015567400468094,-9.682282554929426,1.0,0.0,0.0 -105,10.0,0.0,0.0,1.5375011065916915e-08,19.6375446012198,1.0599834917391735,-8.780555748069458,0.0,1.0,0.0 -105,11.0,6.012308979368848,7.5,0.0,0.0,1.0330012155304535,-9.261336176167756,1.0,0.0,0.0 -105,12.0,0.0,0.0,2.9112663952621213e-09,18.71685403159621,1.057773619715835,-9.261336175954035,0.0,1.0,0.0 -105,13.0,3.328242470722041,1.6,0.0,0.0,1.0216586583328011,-9.68108012744334,1.0,0.0,0.0 -105,14.0,4.401869074180763,2.5,0.0,0.0,1.017997392222304,-9.670857550975796,1.0,0.0,0.0 -105,15.0,1.878846556052765,1.8,0.0,0.0,1.0194501020552138,-9.519026614902872,1.0,0.0,0.0 -105,16.0,4.831319715564253,5.8,0.0,0.0,1.012490460980564,-9.728055931301125,1.0,0.0,0.0 -105,17.0,1.7178025655339566,0.9,0.0,0.0,1.0142374586055092,-9.825554826675074,1.0,0.0,0.0 -105,18.0,5.099726366428934,3.4,0.0,0.0,0.9969654579155104,-10.338702255579658,1.0,0.0,0.0 -105,19.0,1.1809892638045951,0.7,0.0,0.0,1.0010263655060496,-10.205978008989714,1.0,0.0,0.0 -105,20.0,9.394232780263824,11.2,0.0,0.0,1.0016265231416115,-9.91440378936804,1.0,0.0,0.0 -105,21.0,0.0,0.0,0.0,0.0,1.0008896530765483,-9.93136018042711,1.0,0.0,0.0 -105,22.0,1.7178025655339566,1.6,0.0,0.0,1.0051862749211922,-9.881672000497124,1.0,0.0,0.0 -105,23.0,4.670275725045444,6.7,0.0,0.0,0.9946952297014244,-10.02947168052274,1.0,0.0,0.0 -105,24.0,0.0,0.0,0.0,0.0,0.9873558465051564,-9.750631525242444,1.0,0.0,0.0 -105,25.0,1.878846556052765,2.3,0.0,0.0,0.9734666712626096,-9.827435622464336,1.0,0.0,0.0 -105,26.0,0.0,0.0,0.0,0.0,0.9897470031967336,-9.503479270177545,1.0,0.0,0.0 -105,27.0,0.0,0.0,0.0,0.0,0.9713467411227348,-7.39201531813996,1.0,0.0,0.0 -105,28.0,1.2883519241504675,0.9,0.0,0.0,0.9400031460051664,-11.762313780002764,1.0,0.0,0.0 -105,29.0,5.690220998331231,1.9,0.0,0.0,0.9476393564282226,-11.525548943122176,1.0,0.0,0.0 -106,0.0,0.0,0.0,162.47702332690363,0.0014701592121468,1.0,0.0,0.0,0.0,1.0 -106,1.0,11.648848647527142,12.7,4.44914645776507e-06,1.2431293552923537,0.9808933396557936,-3.365413269917201,0.0,1.0,0.0 -106,2.0,1.2883519241504675,1.2,0.0,0.0,0.9737346722104804,-5.930909630635624,1.0,0.0,0.0 -106,3.0,4.079781093143146,1.6,0.0,0.0,0.96721014185835,-7.303470081183089,1.0,0.0,0.0 -106,4.0,50.567813022905845,19.0,1.6226905859257972e-09,33.52150590140138,0.9400037418176892,-16.567030838939502,0.0,1.0,0.0 -106,5.0,0.0,0.0,0.0,0.0,0.9658431315908664,-8.996225215097514,1.0,0.0,0.0 -106,6.0,12.23934327942944,10.9,0.0,0.0,0.9483006858784664,-12.336857797571108,1.0,0.0,0.0 -106,7.0,16.104399051880844,30.0,5.134172942845698e-09,35.70674949325277,0.966901078325311,-9.441040246865128,0.0,1.0,0.0 -106,8.0,0.0,0.0,0.0,0.0,1.0172079682574215,-10.71133025536752,1.0,0.0,0.0 -106,9.0,3.1135171500302965,2.0,0.0,0.0,1.0106081539692315,-11.597582756856475,1.0,0.0,0.0 -106,10.0,0.0,0.0,5.630741124826902e-09,21.805861885387124,1.0599969523403148,-10.711330254745166,0.0,1.0,0.0 -106,11.0,6.012308979368848,7.5,0.0,0.0,1.0273636294221418,-11.022848420020509,1.0,0.0,0.0 -106,12.0,0.0,0.0,3.234813957985334e-09,19.221792559622617,1.0529215724703913,-11.022848419780638,0.0,1.0,0.0 -106,13.0,3.328242470722041,1.6,0.0,0.0,1.015377999991365,-11.512089598843742,1.0,0.0,0.0 -106,14.0,4.401869074180763,2.5,0.0,0.0,1.010688141174177,-11.552817407003936,1.0,0.0,0.0 -106,15.0,1.878846556052765,1.8,0.0,0.0,1.0139714403553248,-11.34855037286558,1.0,0.0,0.0 -106,16.0,4.831319715564253,5.8,0.0,0.0,1.0073782672410023,-11.616883420983818,1.0,0.0,0.0 -106,17.0,1.7178025655339566,0.9,0.0,0.0,1.0016265428189437,-11.898598322683585,1.0,0.0,0.0 -106,18.0,5.099726366428934,3.4,0.0,0.0,0.9985203738350592,-12.010772798594312,1.0,0.0,0.0 -106,19.0,1.1809892638045951,0.7,0.0,0.0,1.0009312789308706,-11.937042989624096,1.0,0.0,0.0 -106,20.0,9.394232780263824,11.2,0.0,0.0,0.9989328221350414,-11.7757186103746,1.0,0.0,0.0 -106,21.0,0.0,0.0,0.0,0.0,1.0027339447833004,-11.830685786512229,1.0,0.0,0.0 -106,22.0,1.7178025655339566,1.6,0.0,0.0,0.9998925937264588,-11.829103505520138,1.0,0.0,0.0 -106,23.0,4.670275725045444,6.7,0.0,0.0,0.9921425931247227,-12.062601328596354,1.0,0.0,0.0 -106,24.0,0.0,0.0,0.0,0.0,0.9806416031730908,-12.172200827422667,1.0,0.0,0.0 -106,25.0,1.878846556052765,2.3,0.0,0.0,0.9666545367649828,-12.25007574338103,1.0,0.0,0.0 -106,26.0,0.0,0.0,0.0,0.0,0.9843449168862188,-10.928984486017477,1.0,0.0,0.0 -106,27.0,0.0,0.0,0.0,0.0,0.964839363735656,-9.29300116232666,1.0,0.0,0.0 -106,28.0,1.2883519241504675,0.9,0.0,0.0,0.9706739486869508,-11.551295721772917,1.0,0.0,0.0 -106,29.0,5.690220998331231,1.9,0.0,0.0,0.9632351548116264,-12.019865985423772,1.0,0.0,0.0 -107,0.0,0.0,0.0,139.24214686697326,-3.0619921709273967e-06,1.0,0.0,0.0,0.0,1.0 -107,1.0,11.494310842316146,12.7,19.12023598977389,9.055471419134427,0.973487941741167,-4.611822905997746,0.0,1.0,0.0 -107,2.0,1.271260185325288,1.2,0.0,0.0,1.0008148248079765,-0.1420527078177589,1.0,0.0,0.0 -107,3.0,4.025657253530079,1.6,0.0,0.0,0.950962829818078,-9.396682734499375,1.0,0.0,0.0 -107,4.0,49.89696227401756,19.0,-6.885767235034421e-10,25.524563012564755,0.9520684277470542,-10.722947191584383,0.0,1.0,0.0 -107,5.0,0.0,0.0,0.0,0.0,0.9532448359453496,-9.865441947292007,1.0,0.0,0.0 -107,6.0,12.076971760590238,10.9,0.0,0.0,0.946079600316014,-10.48585641349406,1.0,0.0,0.0 -107,7.0,15.8907523165661,30.0,-6.739192252168614e-10,29.38195160543102,0.9518286743868092,-10.285879475822076,0.0,1.0,0.0 -107,8.0,0.0,0.0,0.0,0.0,1.0043555520553324,-11.648465249683236,1.0,0.0,0.0 -107,9.0,3.072212114536113,2.0,0.0,0.0,0.9972415683032684,-12.569975619414842,1.0,0.0,0.0 -107,10.0,0.0,0.0,-1.221441804111781e-09,22.09026120832718,1.0481908363562755,-11.648465249821506,0.0,1.0,0.0 -107,11.0,5.9325475315180105,7.5,0.0,0.0,1.006380950843178,-12.832296994469568,1.0,0.0,0.0 -107,12.0,0.0,0.0,-9.380732486692451e-10,17.72123350513319,1.0304573731709086,-12.832296994542125,0.0,1.0,0.0 -107,13.0,3.2840888120903275,1.6,0.0,0.0,0.993833121635381,-13.349261036232877,1.0,0.0,0.0 -107,14.0,4.3434722998614,2.5,0.0,0.0,0.9886058565516488,-13.396675221513672,1.0,0.0,0.0 -107,15.0,1.8539211035993783,1.8,0.0,0.0,0.9967516445578168,-12.816746305877407,1.0,0.0,0.0 -107,16.0,4.767225694969831,5.8,0.0,0.0,0.9925710484573764,-12.739950789861496,1.0,0.0,0.0 -107,17.0,1.6950135804337176,0.9,0.0,0.0,0.971303277941532,-13.998452792643056,1.0,0.0,0.0 -107,18.0,5.032071566912599,3.4,0.0,0.0,0.9633955116874852,-14.263507723694673,1.0,0.0,0.0 -107,19.0,1.1653218365481808,0.7,0.0,0.0,0.9946725430219048,-12.67281064886333,1.0,0.0,0.0 -107,20.0,9.269605517996892,11.2,0.0,0.0,0.9854506775949188,-12.747526597478949,1.0,0.0,0.0 -107,21.0,0.0,0.0,0.0,0.0,0.986602424850289,-12.756555288789816,1.0,0.0,0.0 -107,22.0,1.6950135804337176,1.6,0.0,0.0,0.9835949277323004,-13.50414614557056,1.0,0.0,0.0 -107,23.0,4.60831817180417,6.7,0.0,0.0,0.9726279755250724,-12.90375697220906,1.0,0.0,0.0 -107,24.0,0.0,0.0,0.0,0.0,0.9658318722558356,-12.624218786566749,1.0,0.0,0.0 -107,25.0,1.8539211035993783,2.3,0.0,0.0,0.951691629826312,-12.698626893304324,1.0,0.0,0.0 -107,26.0,0.0,0.0,0.0,0.0,0.9686945674679248,-12.37572210383848,1.0,0.0,0.0 -107,27.0,0.0,0.0,0.0,0.0,0.9511434293287412,-10.216631962488076,1.0,0.0,0.0 -107,28.0,1.271260185325288,0.9,0.0,0.0,0.9548962690428892,-13.007416473469954,1.0,0.0,0.0 -107,29.0,5.614732485186689,1.9,0.0,0.0,0.9473990883090558,-13.484187624363232,1.0,0.0,0.0 -108,0.0,0.0,0.0,157.66868750124652,0.0024158651979355,1.0,0.0,0.0,0.0,1.0 -108,1.0,11.494310842316146,12.7,8.874417713222481e-06,-19.63063504510088,0.9774678834967532,-3.607660622129997,0.0,1.0,0.0 -108,2.0,1.271260185325288,1.2,0.0,0.0,0.9837808337041006,-4.724544926391072,1.0,0.0,0.0 -108,3.0,4.025657253530079,1.6,0.0,0.0,0.9793591913166284,-5.801235662023737,1.0,0.0,0.0 -108,4.0,49.89696227401756,19.0,-2.8826797229627713e-08,37.55261708067309,0.9783318635510376,-9.065142704055582,0.0,1.0,0.0 -108,5.0,0.0,0.0,0.0,0.0,0.9772846494882774,-7.385954055566901,1.0,0.0,0.0 -108,6.0,12.076971760590238,10.9,0.0,0.0,0.9713952412968816,-8.328003047746838,1.0,0.0,0.0 -108,7.0,15.8907523165661,30.0,-3.985080716571447e-08,39.99890774408166,0.979684451540872,-7.86958038457344,0.0,1.0,0.0 -108,8.0,0.0,0.0,0.0,0.0,1.0232008295145472,-10.640911862135711,1.0,0.0,0.0 -108,9.0,3.072212114536113,2.0,0.0,0.0,1.0176922594827416,-12.330456917567728,1.0,0.0,0.0 -108,10.0,0.0,0.0,-3.114708987470102e-08,18.7523525842481,1.059997969233085,-10.640911865558166,0.0,1.0,0.0 -108,11.0,5.9325475315180105,7.5,0.0,0.0,1.0120436634423131,-15.9416305284128,1.0,0.0,0.0 -108,12.0,0.0,0.0,-1.3831400886482053e-08,23.99871641742181,1.0442190977517685,-15.941630529462646,0.0,1.0,0.0 -108,13.0,3.2840888120903275,1.6,0.0,0.0,1.0019451186853003,-16.07985900400974,1.0,0.0,0.0 -108,14.0,4.3434722998614,2.5,0.0,0.0,1.0016167420687614,-15.81397538197042,1.0,0.0,0.0 -108,15.0,1.8539211035993783,1.8,0.0,0.0,1.0105509774971944,-14.505925629708605,1.0,0.0,0.0 -108,16.0,4.767225694969831,5.8,0.0,0.0,1.0101350037152594,-13.087009272455022,1.0,0.0,0.0 -108,17.0,1.6950135804337176,0.9,0.0,0.0,0.9981347472136902,-14.910619513433211,1.0,0.0,0.0 -108,18.0,5.032071566912599,3.4,0.0,0.0,0.99848348385372,-14.280891130237777,1.0,0.0,0.0 -108,19.0,1.1653218365481808,0.7,0.0,0.0,1.0027857184316071,-13.820680081852396,1.0,0.0,0.0 -108,20.0,9.269605517996892,11.2,0.0,0.0,0.9831271164298468,-12.606085672492474,1.0,0.0,0.0 -108,21.0,0.0,0.0,0.0,0.0,0.9869098225759924,-12.553622173745616,1.0,0.0,0.0 -108,22.0,1.6950135804337176,1.6,0.0,0.0,0.9966716028836048,-15.91865852889655,1.0,0.0,0.0 -108,23.0,4.60831817180417,6.7,0.0,0.0,0.9785297482755616,-12.35415949370006,1.0,0.0,0.0 -108,24.0,0.0,0.0,0.0,0.0,0.9810002772099288,-11.426367976482124,1.0,0.0,0.0 -108,25.0,1.8539211035993783,2.3,0.0,0.0,0.967085136001826,-11.498459498485971,1.0,0.0,0.0 -108,26.0,0.0,0.0,0.0,0.0,0.9893682315325364,-10.772748116440304,1.0,0.0,0.0 -108,27.0,0.0,0.0,0.0,0.0,0.9750332302991424,-7.835302511310952,1.0,0.0,0.0 -108,28.0,1.271260185325288,0.9,0.0,0.0,0.9400013046788188,-12.99336177103502,1.0,0.0,0.0 -108,29.0,5.614732485186689,1.9,0.0,0.0,0.947593573089124,-12.761568675710716,1.0,0.0,0.0 -109,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -109,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -109,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -109,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -109,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -109,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -109,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -109,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -109,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -109,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -109,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -109,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -109,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -109,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -109,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -109,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -109,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -109,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -109,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -109,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -109,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -109,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -109,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -109,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -109,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -109,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -109,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -109,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -109,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -109,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -110,0.0,0.0,0.0,156.5748080325655,0.0096149298355108,1.0,0.0,0.0,0.0,1.0 -110,1.0,11.494310842316146,12.7,8.426312781362094e-06,10.704923481744778,0.9808552009209814,-3.578194849674272,0.0,1.0,0.0 -110,2.0,1.271260185325288,1.2,0.0,0.0,0.9746758941666626,-4.741674459842816,1.0,0.0,0.0 -110,3.0,4.025657253530079,1.6,0.0,0.0,0.9681416956280916,-5.826391150843094,1.0,0.0,0.0 -110,4.0,49.89696227401756,19.0,-6.3785955555919474e-09,24.811185341747603,0.9618165757144516,-8.599303069481548,0.0,1.0,0.0 -110,5.0,0.0,0.0,0.0,0.0,0.9670744025180472,-6.769961012930978,1.0,0.0,0.0 -110,6.0,12.076971760590238,10.9,0.0,0.0,0.9585108483355852,-7.78258397148076,1.0,0.0,0.0 -110,7.0,15.8907523165661,30.0,-1.0694333518317058e-08,36.672033285803394,0.9682537032525574,-7.22091971504493,0.0,1.0,0.0 -110,8.0,0.0,0.0,0.0,0.0,0.9971935917602346,-8.156842714413958,1.0,0.0,0.0 -110,9.0,3.072212114536113,2.0,0.0,0.0,1.0018505119975822,-8.880705116383767,1.0,0.0,0.0 -110,10.0,0.0,0.0,0.0,0.0,0.9971935917602346,-8.156842714413958,0.0,1.0,0.0 -110,11.0,5.9325475315180105,7.5,0.0,0.0,1.022221008436843,-9.86963386171126,1.0,0.0,0.0 -110,12.0,0.0,0.0,-1.7361835852542212e-08,23.9922573616041,1.0540866619165794,-9.869633863003749,0.0,1.0,0.0 -110,13.0,3.2840888120903275,1.6,0.0,0.0,1.0082579541942744,-10.350786567161212,1.0,0.0,0.0 -110,14.0,4.3434722998614,2.5,0.0,0.0,1.0016974201807205,-10.34031491591104,1.0,0.0,0.0 -110,15.0,1.8539211035993783,1.8,0.0,0.0,1.0006089364781134,-10.201772063209164,1.0,0.0,0.0 -110,16.0,4.767225694969831,5.8,0.0,0.0,0.9867549968290912,-10.557389352562891,1.0,0.0,0.0 -110,17.0,1.6950135804337176,0.9,0.0,0.0,0.9816557329646768,-11.032580370465777,1.0,0.0,0.0 -110,18.0,5.032071566912599,3.4,0.0,0.0,0.9721150025357214,-11.356029864684912,1.0,0.0,0.0 -110,19.0,1.1653218365481808,0.7,0.0,0.0,0.9712167764859247,-11.389675351915058,1.0,0.0,0.0 -110,20.0,9.269605517996892,11.2,0.0,0.0,0.9901152136756002,-9.05660666491903,1.0,0.0,0.0 -110,21.0,0.0,0.0,0.0,0.0,0.9968911470461752,-9.3449475030514,1.0,0.0,0.0 -110,22.0,1.6950135804337176,1.6,0.0,0.0,0.9936208937671214,-10.211694383343426,1.0,0.0,0.0 -110,23.0,4.60831817180417,6.7,0.0,0.0,0.9894548638772936,-9.897537022990074,1.0,0.0,0.0 -110,24.0,0.0,0.0,0.0,0.0,0.967004390768836,-9.254243604731704,1.0,0.0,0.0 -110,25.0,1.8539211035993783,2.3,0.0,0.0,0.9528818119546152,-9.328468660731934,1.0,0.0,0.0 -110,26.0,0.0,0.0,0.0,0.0,0.9741712419338506,-9.171140180751678,1.0,0.0,0.0 -110,27.0,0.0,0.0,0.0,0.0,0.9646222632233074,-7.097679591496009,1.0,0.0,0.0 -110,28.0,1.271260185325288,0.9,0.0,0.0,0.9604550710143384,-9.795652903965962,1.0,0.0,0.0 -110,29.0,5.614732485186689,1.9,0.0,0.0,0.9530026520680396,-10.266883455085116,1.0,0.0,0.0 -111,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -111,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -111,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -111,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -111,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -111,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -111,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -111,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -111,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -111,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -111,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -111,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -111,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -111,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -111,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -111,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -111,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -111,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -111,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -111,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -111,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -111,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -111,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -111,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -111,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -111,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -111,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -111,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -111,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -111,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -112,0.0,0.0,0.0,156.3324680367746,0.0003848618425728,1.0,0.0,0.0,0.0,1.0 -112,1.0,11.494310842316146,12.7,4.825794419101639e-07,9.708715666240153,0.9807658093509158,-3.5768963052989124,0.0,1.0,0.0 -112,2.0,1.271260185325288,1.2,0.0,0.0,0.9750241470164008,-4.720427754649169,1.0,0.0,0.0 -112,3.0,4.025657253530079,1.6,0.0,0.0,0.968567938341228,-5.799855246397853,1.0,0.0,0.0 -112,4.0,49.89696227401756,19.0,-5.685915191172847e-10,23.870125911238908,0.9614245398758634,-8.603064364917817,0.0,1.0,0.0 -112,5.0,0.0,0.0,0.0,0.0,0.9682923804272976,-6.818811010780026,1.0,0.0,0.0 -112,6.0,12.076971760590238,10.9,0.0,0.0,0.9590703518940064,-7.813513837791213,1.0,0.0,0.0 -112,7.0,15.8907523165661,30.0,-5.013894957294794e-10,30.557991312651936,0.9673784270761044,-7.239549113253852,0.0,1.0,0.0 -112,8.0,0.0,0.0,0.0,0.0,1.0165173297121883,-9.13404324423489,1.0,0.0,0.0 -112,9.0,3.072212114536113,2.0,0.0,0.0,1.0084681303275715,-10.335873254264262,1.0,0.0,0.0 -112,10.0,0.0,0.0,-2.530705500464456e-10,21.84588661840759,1.0594086576598565,-9.134043244262894,0.0,1.0,0.0 -112,11.0,5.9325475315180105,7.5,0.0,0.0,1.0168395211984262,-9.465497074944745,1.0,0.0,0.0 -112,12.0,0.0,0.0,-6.835452147331953e-10,10.327482195612724,1.0308650955784997,-9.465497074997051,0.0,1.0,0.0 -112,13.0,3.2840888120903275,1.6,0.0,0.0,1.0059293998219785,-9.95393862882141,1.0,0.0,0.0 -112,14.0,4.3434722998614,2.5,0.0,0.0,1.0023256823743891,-10.016959185829124,1.0,0.0,0.0 -112,15.0,1.8539211035993783,1.8,0.0,0.0,1.0068527877211275,-9.934448641055402,1.0,0.0,0.0 -112,16.0,4.767225694969831,5.8,0.0,0.0,1.003736711316288,-10.30042463224749,1.0,0.0,0.0 -112,17.0,1.6950135804337176,0.9,0.0,0.0,0.9954318424307624,-10.457951405399053,1.0,0.0,0.0 -112,18.0,5.032071566912599,3.4,0.0,0.0,0.9936150742675428,-10.627152949031322,1.0,0.0,0.0 -112,19.0,1.1653218365481808,0.7,0.0,0.0,0.9967014018163012,-10.584957699610696,1.0,0.0,0.0 -112,20.0,9.269605517996892,11.2,0.0,0.0,0.9980692299588448,-10.45849036279908,1.0,0.0,0.0 -112,21.0,0.0,0.0,0.0,0.0,0.9984703786265148,-10.44267393868336,1.0,0.0,0.0 -112,22.0,1.6950135804337176,1.6,0.0,0.0,0.9937657507748788,-10.233505263736802,1.0,0.0,0.0 -112,23.0,4.60831817180417,6.7,0.0,0.0,0.9889889287158165,-10.38573378564681,1.0,0.0,0.0 -112,24.0,0.0,0.0,0.0,0.0,0.9829093756698812,-9.886865198908154,1.0,0.0,0.0 -112,25.0,1.8539211035993783,2.3,0.0,0.0,0.969022051560046,-9.958672875861886,1.0,0.0,0.0 -112,26.0,0.0,0.0,0.0,0.0,0.9860271757561028,-9.503779171714854,1.0,0.0,0.0 -112,27.0,0.0,0.0,0.0,0.0,0.9663868901114998,-7.19258384984884,1.0,0.0,0.0 -112,28.0,1.271260185325288,0.9,0.0,0.0,0.9724853979338308,-10.113160628354311,1.0,0.0,0.0 -112,29.0,5.614732485186689,1.9,0.0,0.0,0.965128018938254,-10.572726882605304,1.0,0.0,0.0 -113,0.0,0.0,0.0,156.36014212930286,0.0004814606299419,1.0,0.0,0.0,0.0,1.0 -113,1.0,11.494310842316146,12.7,5.509785834296889e-07,9.849700005906158,0.9807721561014586,-3.5842815412027536,0.0,1.0,0.0 -113,2.0,1.271260185325288,1.2,0.0,0.0,0.9749706519690506,-4.702312660354763,1.0,0.0,0.0 -113,3.0,4.025657253530079,1.6,0.0,0.0,0.9684995766463168,-5.777382676956086,1.0,0.0,0.0 -113,4.0,49.89696227401756,19.0,-6.33141841299074e-10,23.873511537111483,0.9614128494346807,-8.627298591931496,0.0,1.0,0.0 -113,5.0,0.0,0.0,0.0,0.0,0.9682393789418008,-6.8603864876494205,1.0,0.0,0.0 -113,6.0,12.076971760590238,10.9,0.0,0.0,0.9590316350950964,-7.848033633595159,1.0,0.0,0.0 -113,7.0,15.8907523165661,30.0,-5.28132989244436e-10,30.496197548396893,0.9672842497593304,-7.275442942102195,0.0,1.0,0.0 -113,8.0,0.0,0.0,0.0,0.0,1.0162813802125754,-8.61378998795678,1.0,0.0,0.0 -113,9.0,3.072212114536113,2.0,0.0,0.0,1.0074467199853172,-9.524926674465531,1.0,0.0,0.0 -113,10.0,0.0,0.0,-2.4621452536548967e-10,22.25469095115592,1.0599529028382084,-8.613789987984022,0.0,1.0,0.0 -113,11.0,5.9325475315180105,7.5,0.0,0.0,1.0141679303833369,-9.070764616739067,1.0,0.0,0.0 -113,12.0,0.0,0.0,-6.961845605599794e-10,9.552560229165303,1.0271875434098314,-9.070764616792673,0.0,1.0,0.0 -113,13.0,3.2840888120903275,1.6,0.0,0.0,1.00331257882724,-9.520729171128991,1.0,0.0,0.0 -113,14.0,4.3434722998614,2.5,0.0,0.0,1.0000621705595276,-9.54540052383912,1.0,0.0,0.0 -113,15.0,1.8539211035993783,1.8,0.0,0.0,1.005172795309084,-9.365356882048616,1.0,0.0,0.0 -113,16.0,4.767225694969831,5.8,0.0,0.0,1.0024170680523672,-9.564284063512824,1.0,0.0,0.0 -113,17.0,1.6950135804337176,0.9,0.0,0.0,0.9936207296486445,-9.868496716279406,1.0,0.0,0.0 -113,18.0,5.032071566912599,3.4,0.0,0.0,0.9920683825532308,-9.966867548440453,1.0,0.0,0.0 -113,19.0,1.1653218365481808,0.7,0.0,0.0,0.99530249758674,-9.88698405744808,1.0,0.0,0.0 -113,20.0,9.269605517996892,11.2,0.0,0.0,0.9969848138581257,-9.688512753052416,1.0,0.0,0.0 -113,21.0,0.0,0.0,0.0,0.0,0.9973654861058032,-9.6857319795656,1.0,0.0,0.0 -113,22.0,1.6950135804337176,1.6,0.0,0.0,0.9917322045248894,-9.71479621237638,1.0,0.0,0.0 -113,23.0,4.60831817180417,6.7,0.0,0.0,0.9872639904384292,-9.802563221308406,1.0,0.0,0.0 -113,24.0,0.0,0.0,0.0,0.0,0.9808881923646876,-9.54024263183574,1.0,0.0,0.0 -113,25.0,1.8539211035993783,2.3,0.0,0.0,0.966971414446358,-9.612350868410722,1.0,0.0,0.0 -113,26.0,0.0,0.0,0.0,0.0,0.9839020145605186,-9.304443629265965,1.0,0.0,0.0 -113,27.0,0.0,0.0,0.0,0.0,0.9662349076558188,-7.202891080604499,1.0,0.0,0.0 -113,28.0,1.271260185325288,0.9,0.0,0.0,0.9772119637876966,-9.501174983673009,1.0,0.0,0.0 -113,29.0,5.614732485186689,1.9,0.0,0.0,0.952575619325056,-11.001493937950569,1.0,0.0,0.0 -114,0.0,0.0,0.0,160.1481432938568,0.0003217591293847,1.0,0.0,0.0,0.0,1.0 -114,1.0,11.494310842316146,12.7,0.0,0.0,0.980981975568702,-3.314723813071071,0.0,1.0,0.0 -114,2.0,1.271260185325288,1.2,0.0,0.0,0.9743838450171138,-5.844439664432782,1.0,0.0,0.0 -114,3.0,4.025657253530079,1.6,0.0,0.0,0.9679872483501653,-7.195979853787244,1.0,0.0,0.0 -114,4.0,49.89696227401756,19.0,3.8429906603709985e-10,32.39345443183626,0.9400005743129274,-16.303463323708446,0.0,1.0,0.0 -114,5.0,0.0,0.0,0.0,0.0,0.9673260885767132,-8.890873653535092,1.0,0.0,0.0 -114,6.0,12.076971760590238,10.9,0.0,0.0,0.9492577760719813,-12.161059264855163,1.0,0.0,0.0 -114,7.0,15.8907523165661,30.0,-2.0059958089776e-09,39.62709075967573,0.9698186807273952,-9.36177527249464,0.0,1.0,0.0 -114,8.0,0.0,0.0,0.0,0.0,1.017572168550665,-10.51008819993559,1.0,0.0,0.0 -114,9.0,3.072212114536113,2.0,0.0,0.0,1.0105224334995688,-11.348156684163875,1.0,0.0,0.0 -114,10.0,0.0,0.0,-5.408389191364569e-10,21.61557778051433,1.0599881174135417,-10.510088199995346,0.0,1.0,0.0 -114,11.0,5.9325475315180105,7.5,0.0,0.0,1.0245281248325522,-10.768296432924158,1.0,0.0,0.0 -114,12.0,0.0,0.0,-2.351426063481493e-09,16.674712229809966,1.046828433437167,-10.768296433100025,0.0,1.0,0.0 -114,13.0,3.2840888120903275,1.6,0.0,0.0,1.0128835533589595,-11.236426165316796,1.0,0.0,0.0 -114,14.0,4.3434722998614,2.5,0.0,0.0,1.0086101385541553,-11.267202654353918,1.0,0.0,0.0 -114,15.0,1.8539211035993783,1.8,0.0,0.0,1.0123355211232552,-11.099557143060782,1.0,0.0,0.0 -114,16.0,4.767225694969831,5.8,0.0,0.0,1.0068194997331148,-11.363768774243136,1.0,0.0,0.0 -114,17.0,1.6950135804337176,0.9,0.0,0.0,1.0002895820107378,-11.62068159145576,1.0,0.0,0.0 -114,18.0,5.032071566912599,3.4,0.0,0.0,0.9976111278274676,-11.738775887455432,1.0,0.0,0.0 -114,19.0,1.1653218365481808,0.7,0.0,0.0,1.0002280223700044,-11.670614649549751,1.0,0.0,0.0 -114,20.0,9.269605517996892,11.2,0.0,0.0,1.0003040868384585,-11.509326678334592,1.0,0.0,0.0 -114,21.0,0.0,0.0,0.0,0.0,1.0007501160323982,-11.506205221918783,1.0,0.0,0.0 -114,22.0,1.6950135804337176,1.6,0.0,0.0,0.9984801155373582,-11.477074084496785,1.0,0.0,0.0 -114,23.0,4.60831817180417,6.7,0.0,0.0,0.9915772221112308,-11.622959416245552,1.0,0.0,0.0 -114,24.0,0.0,0.0,0.0,0.0,0.983506690801122,-11.419010572481916,1.0,0.0,0.0 -114,25.0,1.8539211035993783,2.3,0.0,0.0,0.9696280468927472,-11.490729786176257,1.0,0.0,0.0 -114,26.0,0.0,0.0,0.0,0.0,0.9854675025317348,-11.221847678654935,1.0,0.0,0.0 -114,27.0,0.0,0.0,0.0,0.0,0.9663626413483756,-9.23478842175634,1.0,0.0,0.0 -114,28.0,1.271260185325288,0.9,0.0,0.0,0.9719175948010618,-11.83193093430218,1.0,0.0,0.0 -114,29.0,5.614732485186689,1.9,0.0,0.0,0.9645557854787228,-12.29203790586844,1.0,0.0,0.0 -115,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -115,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -115,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -115,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -115,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -115,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -115,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -115,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -115,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -115,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -115,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -115,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -115,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -115,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -115,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -115,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -115,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -115,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -115,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -115,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -115,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -115,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -115,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -115,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -115,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -115,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -115,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -115,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -115,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -115,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -116,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -116,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -116,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -116,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -116,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -116,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -116,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -116,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -116,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -116,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -116,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -116,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -116,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -116,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -116,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -116,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -116,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -116,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -116,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -116,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -116,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -116,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -116,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -116,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -116,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -116,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -116,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -116,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -116,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -116,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -117,0.0,0.0,0.0,160.39142263477427,0.0001331742375043,1.0,0.0,0.0,0.0,1.0 -117,1.0,11.494310842316146,12.7,0.0,0.0,0.9809866030174266,-3.308788860607244,0.0,1.0,0.0 -117,2.0,1.271260185325288,1.2,0.0,0.0,0.9743314292175944,-5.8854875209014095,1.0,0.0,0.0 -117,3.0,4.025657253530079,1.6,0.0,0.0,0.9679323854982252,-7.246988859569899,1.0,0.0,0.0 -117,4.0,49.89696227401756,19.0,4.5164165867357257e-10,32.392197461692646,0.940000418244296,-16.220840358599553,0.0,1.0,0.0 -117,5.0,0.0,0.0,0.0,0.0,0.9673284229186688,-8.808326752213635,1.0,0.0,0.0 -117,6.0,12.076971760590238,10.9,0.0,0.0,0.9492591253828208,-12.078478742517229,1.0,0.0,0.0 -117,7.0,15.8907523165661,30.0,-6.169072124220332e-10,38.95865224646628,0.9694200298312872,-9.287768035008884,0.0,1.0,0.0 -117,8.0,0.0,0.0,0.0,0.0,1.0245330160527233,-8.808326752240205,1.0,0.0,0.0 -117,9.0,3.072212114536113,2.0,0.0,0.0,0.993003715987434,-13.059656941723508,1.0,0.0,0.0 -117,10.0,0.0,0.0,-2.259306554658645e-10,18.062757845767106,1.059977665083362,-8.808326752264998,0.0,1.0,0.0 -117,11.0,5.9325475315180105,7.5,0.0,0.0,1.0289973304344135,-11.603447387871752,1.0,0.0,0.0 -117,12.0,0.0,0.0,-7.600893594164891e-10,23.416166299374936,1.0599264875084908,-11.603447387927654,0.0,1.0,0.0 -117,13.0,3.2840888120903275,1.6,0.0,0.0,0.9944475820827284,-12.57047585262182,1.0,0.0,0.0 -117,14.0,4.3434722998614,2.5,0.0,0.0,1.0049635776119812,-12.39720229653507,1.0,0.0,0.0 -117,15.0,1.8539211035993783,1.8,0.0,0.0,1.0066380856436226,-12.25743911178789,1.0,0.0,0.0 -117,16.0,4.767225694969831,5.8,0.0,0.0,0.993115652249244,-12.91747163323729,1.0,0.0,0.0 -117,17.0,1.6950135804337176,0.9,0.0,0.0,0.9879592584911068,-12.979203094143896,1.0,0.0,0.0 -117,18.0,5.032071566912599,3.4,0.0,0.0,0.9801873061020904,-13.235325249241606,1.0,0.0,0.0 -117,19.0,1.1653218365481808,0.7,0.0,0.0,0.9904236558319828,-13.163373884018007,1.0,0.0,0.0 -117,20.0,9.269605517996892,11.2,0.0,0.0,0.9811612362144212,-13.238745190476262,1.0,0.0,0.0 -117,21.0,0.0,0.0,0.0,0.0,0.984961406003532,-13.07131986353322,1.0,0.0,0.0 -117,22.0,1.6950135804337176,1.6,0.0,0.0,1.0000350818486232,-12.50118590067978,1.0,0.0,0.0 -117,23.0,4.60831817180417,6.7,0.0,0.0,0.9747338176447196,-13.01442075985664,1.0,0.0,0.0 -117,24.0,0.0,0.0,0.0,0.0,0.9742414516331644,-12.34870678961021,1.0,0.0,0.0 -117,25.0,1.8539211035993783,2.3,0.0,0.0,0.9602269133100472,-12.421816915878244,1.0,0.0,0.0 -117,26.0,0.0,0.0,0.0,0.0,0.9808595532132476,-11.85681745012155,1.0,0.0,0.0 -117,27.0,0.0,0.0,0.0,0.0,0.9653989687543976,-9.22349184353639,1.0,0.0,0.0 -117,28.0,1.271260185325288,0.9,0.0,0.0,0.9672423264614844,-12.472725424176591,1.0,0.0,0.0 -117,29.0,5.614732485186689,1.9,0.0,0.0,0.9598438311743668,-12.93732123917211,1.0,0.0,0.0 -118,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -118,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -118,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -118,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -118,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -118,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -118,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -118,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -118,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -118,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -118,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -118,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -118,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -118,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -118,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -118,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -118,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -118,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -118,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -118,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -118,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -118,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -118,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -118,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -118,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -118,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -118,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -118,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -118,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -118,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -119,0.0,0.0,0.0,139.24215822117438,-1.7144762942677971e-06,1.0,0.0,0.0,0.0,1.0 -119,1.0,11.494310842316146,12.7,19.16825269601973,7.065658719048152,0.973487939300038,-4.611823287810972,0.0,1.0,0.0 -119,2.0,1.271260185325288,1.2,0.0,0.0,1.0008148248079765,-0.1420527078177597,1.0,0.0,0.0 -119,3.0,4.025657253530079,1.6,0.0,0.0,0.9520347909992356,-9.40660234773227,1.0,0.0,0.0 -119,4.0,49.89696227401756,19.0,-1.0338992423090964e-09,25.76424845534366,0.9531468538050624,-10.73466757766249,0.0,1.0,0.0 -119,5.0,0.0,0.0,0.0,0.0,0.954872469145237,-9.895905081782306,1.0,0.0,0.0 -119,6.0,12.076971760590238,10.9,0.0,0.0,0.9474923033376048,-10.50830719715937,1.0,0.0,0.0 -119,7.0,15.8907523165661,30.0,-1.0214252222051242e-09,30.105012797140787,0.9537579387384136,-10.32088929774186,0.0,1.0,0.0 -119,8.0,0.0,0.0,0.0,0.0,1.0085397315784228,-11.69604724261934,1.0,0.0,0.0 -119,9.0,3.072212114536113,2.0,0.0,0.0,1.0010004929819605,-12.624491712735404,1.0,0.0,0.0 -119,10.0,0.0,0.0,-1.864467518090958e-09,23.94332005613572,1.0557136102091038,-11.696047242828026,0.0,1.0,0.0 -119,11.0,5.9325475315180105,7.5,0.0,0.0,1.0053754415855438,-12.773159164333086,1.0,0.0,0.0 -119,12.0,0.0,0.0,-1.4002803197204663e-09,16.97152656947009,1.0284776805990523,-12.773159164441717,0.0,1.0,0.0 -119,13.0,3.2840888120903275,1.6,0.0,0.0,0.9922483476615038,-13.263762047750395,1.0,0.0,0.0 -119,14.0,4.3434722998614,2.5,0.0,0.0,0.986658017198419,-13.270960927296535,1.0,0.0,0.0 -119,15.0,1.8539211035993783,1.8,0.0,0.0,0.9977431337555812,-12.815638355093231,1.0,0.0,0.0 -119,16.0,4.767225694969831,5.8,0.0,0.0,0.995501415885961,-12.773056594227132,1.0,0.0,0.0 -119,17.0,1.6950135804337176,0.9,0.0,0.0,0.9693192031735652,-13.875160897779336,1.0,0.0,0.0 -119,18.0,5.032071566912599,3.4,0.0,0.0,0.9613949385635534,-14.141311054544998,1.0,0.0,0.0 -119,19.0,1.1653218365481808,0.7,0.0,0.0,0.998441176557054,-12.726553883546485,1.0,0.0,0.0 -119,20.0,9.269605517996892,11.2,0.0,0.0,0.9899037119893556,-12.82332881715553,1.0,0.0,0.0 -119,21.0,0.0,0.0,0.0,0.0,0.9901054201244834,-12.830909105330043,1.0,0.0,0.0 -119,22.0,1.6950135804337176,1.6,0.0,0.0,0.9797609292397584,-13.24891677700226,1.0,0.0,0.0 -119,23.0,4.60831817180417,6.7,0.0,0.0,0.9772596245261752,-13.074437182345966,1.0,0.0,0.0 -119,24.0,0.0,0.0,0.0,0.0,0.9695272718212924,-12.730256919442017,1.0,0.0,0.0 -119,25.0,1.8539211035993783,2.3,0.0,0.0,0.9554425480366174,-12.804090414329789,1.0,0.0,0.0 -119,26.0,0.0,0.0,0.0,0.0,0.9717613559851443,-12.442977250044676,1.0,0.0,0.0 -119,27.0,0.0,0.0,0.0,0.0,0.9529613194325396,-10.254514130394496,1.0,0.0,0.0 -119,28.0,1.271260185325288,0.9,0.0,0.0,0.964986399189846,-12.64469003918666,1.0,0.0,0.0 -119,29.0,5.614732485186689,1.9,0.0,0.0,0.9400046323682556,-14.184221763084164,1.0,0.0,0.0 -120,0.0,0.0,0.0,138.0001051328531,0.00265564801456,1.0,0.0,0.0,0.0,1.0 -120,1.0,11.494310842316146,12.7,20.33994860179225,9.862035121297131,0.9751768779149088,-4.6374030221898295,0.0,1.0,0.0 -120,2.0,1.271260185325288,1.2,0.0,0.0,0.9538913955992996,-9.527470359059508,1.0,0.0,0.0 -120,3.0,4.025657253530079,1.6,0.0,0.0,0.9543923371383513,-9.50394167779993,1.0,0.0,0.0 -120,4.0,49.89696227401756,19.0,-8.752839558229744e-11,25.10970641655072,0.9540364902385764,-10.749632487543211,0.0,1.0,0.0 -120,5.0,0.0,0.0,0.0,0.0,0.9562387927447868,-9.94277044514567,1.0,0.0,0.0 -120,6.0,12.076971760590238,10.9,0.0,0.0,0.9486685040878056,-10.541871442080527,1.0,0.0,0.0 -120,7.0,15.8907523165661,30.0,-2.7127897375684856e-10,26.155996954776757,0.953421646671061,-10.336131411413715,0.0,1.0,0.0 -120,8.0,0.0,0.0,0.0,0.0,1.015035597555891,-11.707970391322425,1.0,0.0,0.0 -120,9.0,3.072212114536113,2.0,0.0,0.0,1.011349739005025,-12.610369468081696,1.0,0.0,0.0 -120,10.0,0.0,0.0,-1.417297914849144e-09,22.910679854606883,1.0599927123930286,-11.707970391479412,0.0,1.0,0.0 -120,11.0,5.9325475315180105,7.5,0.0,0.0,1.0170473303679666,-12.89556428601754,1.0,0.0,0.0 -120,12.0,0.0,0.0,-5.314438155548316e-10,22.87618387579575,1.047618253802962,-12.895564286057551,0.0,1.0,0.0 -120,13.0,3.2840888120903275,1.6,0.0,0.0,1.006401126099493,-13.26474591111572,1.0,0.0,0.0 -120,14.0,4.3434722998614,2.5,0.0,0.0,1.0038717945971334,-13.216131098208104,1.0,0.0,0.0 -120,15.0,1.8539211035993783,1.8,0.0,0.0,0.9953174292480724,-13.231138974039611,1.0,0.0,0.0 -120,16.0,4.767225694969831,5.8,0.0,0.0,0.9813875088842512,-13.590602231765928,1.0,0.0,0.0 -120,17.0,1.6950135804337176,0.9,0.0,0.0,0.9975328485484344,-13.330814174535256,1.0,0.0,0.0 -120,18.0,5.032071566912599,3.4,0.0,0.0,0.9960288013212196,-13.305523393513909,1.0,0.0,0.0 -120,19.0,1.1653218365481808,0.7,0.0,0.0,0.9992786507402854,-13.161576420700971,1.0,0.0,0.0 -120,20.0,9.269605517996892,11.2,0.0,0.0,1.0015546593683735,-12.826881867587437,1.0,0.0,0.0 -120,21.0,0.0,0.0,0.0,0.0,1.0021250150893737,-12.841819489587149,1.0,0.0,0.0 -120,22.0,1.6950135804337176,1.6,0.0,0.0,0.9968964721179456,-13.273434515710155,1.0,0.0,0.0 -120,23.0,4.60831817180417,6.7,0.0,0.0,0.9941815957327528,-13.21076760224692,1.0,0.0,0.0 -120,24.0,0.0,0.0,0.0,0.0,0.9543505301669344,-12.476220530645747,1.0,0.0,0.0 -120,25.0,1.8539211035993783,2.3,0.0,0.0,0.9400349244361224,-12.552457596287033,1.0,0.0,0.0 -120,26.0,0.0,0.0,0.0,0.0,0.9616154041373648,-12.390896664548924,1.0,0.0,0.0 -120,27.0,0.0,0.0,0.0,0.0,0.9527932546339674,-10.26340588067312,1.0,0.0,0.0 -120,28.0,1.271260185325288,0.9,0.0,0.0,0.947709436393221,-13.0320600752731,1.0,0.0,0.0 -120,29.0,5.614732485186689,1.9,0.0,0.0,0.9401535686214728,-13.516140932164014,1.0,0.0,0.0 -121,0.0,0.0,0.0,139.2421449376475,6.624431936330666e-06,1.0,0.0,0.0,0.0,1.0 -121,1.0,11.494310842316146,12.7,19.59580715258864,8.004702383007164,0.9734879363200022,-4.611822756414897,0.0,1.0,0.0 -121,2.0,1.271260185325288,1.2,0.0,0.0,1.0008148248079802,-0.1420527078177655,1.0,0.0,0.0 -121,3.0,4.025657253530079,1.6,0.0,0.0,0.9543099157647386,-9.119128041979325,1.0,0.0,0.0 -121,4.0,49.89696227401756,19.0,5.594172526597545e-10,26.566648549571312,0.9523460642297684,-10.860533531405888,0.0,1.0,0.0 -121,5.0,0.0,0.0,0.0,0.0,0.9516050159609996,-10.103517049832837,1.0,0.0,0.0 -121,6.0,12.076971760590238,10.9,0.0,0.0,0.9451954185986567,-10.68198601233845,1.0,0.0,0.0 -121,7.0,15.8907523165661,30.0,4.5207600991027775e-10,34.35609058861596,0.9516731642340288,-10.561939929581206,0.0,1.0,0.0 -121,8.0,0.0,0.0,0.0,0.0,0.995558192646065,-13.477524150966984,1.0,0.0,0.0 -121,9.0,3.072212114536113,2.0,0.0,0.0,0.9835399443761822,-15.242012621567396,1.0,0.0,0.0 -121,10.0,0.0,0.0,6.393285580988738e-10,23.998564478670072,1.0433989666098549,-13.477524150893636,0.0,1.0,0.0 -121,11.0,5.9325475315180105,7.5,0.0,0.0,0.9650028382548432,-17.850598661008565,1.0,0.0,0.0 -121,12.0,0.0,0.0,3.075799435547765e-11,18.55689725508734,0.991212806475,-17.850598661005982,0.0,1.0,0.0 -121,13.0,3.2840888120903275,1.6,0.0,0.0,0.9556871389316068,-17.912267398060415,1.0,0.0,0.0 -121,14.0,4.3434722998614,2.5,0.0,0.0,0.957184944204894,-17.562271297185273,1.0,0.0,0.0 -121,15.0,1.8539211035993783,1.8,0.0,0.0,0.9683744518559958,-16.877174644018982,1.0,0.0,0.0 -121,16.0,4.767225694969831,5.8,0.0,0.0,0.9736185403466624,-15.824525185062072,1.0,0.0,0.0 -121,17.0,1.6950135804337176,0.9,0.0,0.0,0.9570917491222336,-17.094589255337368,1.0,0.0,0.0 -121,18.0,5.032071566912599,3.4,0.0,0.0,0.9594358756791728,-16.717547277806766,1.0,0.0,0.0 -121,19.0,1.1653218365481808,0.7,0.0,0.0,0.9649073396718938,-16.380377822884086,1.0,0.0,0.0 -121,20.0,9.269605517996892,11.2,0.0,0.0,0.972023833685647,-15.472326696001948,1.0,0.0,0.0 -121,21.0,0.0,0.0,0.0,0.0,0.9721584481403648,-15.487902788390684,1.0,0.0,0.0 -121,22.0,1.6950135804337176,1.6,0.0,0.0,0.9544948888985432,-16.889152341350993,1.0,0.0,0.0 -121,23.0,4.60831817180417,6.7,0.0,0.0,0.9579527454726752,-15.83892883794203,1.0,0.0,0.0 -121,24.0,0.0,0.0,0.0,0.0,0.9579757651152584,-14.62718581224899,1.0,0.0,0.0 -121,25.0,1.8539211035993783,2.3,0.0,0.0,0.9437160055525088,-14.702838121973809,1.0,0.0,0.0 -121,26.0,0.0,0.0,0.0,0.0,0.9649873059671276,-13.795661748266452,1.0,0.0,0.0 -121,27.0,0.0,0.0,0.0,0.0,0.9472025514176412,-10.579249682631549,1.0,0.0,0.0 -121,28.0,1.271260185325288,0.9,0.0,0.0,0.9511328373293992,-14.43228842218534,1.0,0.0,0.0 -121,29.0,5.614732485186689,1.9,0.0,0.0,0.9436050406428376,-14.912866483466194,1.0,0.0,0.0 -122,0.0,0.0,0.0,156.64364964059197,0.004489664611551,1.0,0.0,0.0,0.0,1.0 -122,1.0,11.494310842316146,12.7,3.437819250930188e-06,17.366170102618128,0.981900966395515,-3.609988936585443,0.0,1.0,0.0 -122,2.0,1.271260185325288,1.2,0.0,0.0,0.9716017692610328,-4.671224824472969,1.0,0.0,0.0 -122,3.0,4.025657253530079,1.6,0.0,0.0,0.96434406966922,-5.740179212657945,1.0,0.0,0.0 -122,4.0,49.89696227401756,19.0,1.5448854629878964e-09,26.089320202333283,0.9624674322383387,-8.6508153119851,0.0,1.0,0.0 -122,5.0,0.0,0.0,0.0,0.0,0.9646826953559412,-6.786555062152273,1.0,0.0,0.0 -122,6.0,12.076971760590238,10.9,0.0,0.0,0.9573561079195942,-7.812668721814909,1.0,0.0,0.0 -122,7.0,15.8907523165661,30.0,3.1766908533914e-09,31.914522894733395,0.9579873457490136,-9.883480853092433,0.0,1.0,0.0 -122,8.0,0.0,0.0,0.0,0.0,1.0089341041978976,-9.237925844733608,1.0,0.0,0.0 -122,9.0,3.072212114536113,2.0,0.0,0.0,0.9965931339176274,-10.52075812295196,1.0,0.0,0.0 -122,10.0,0.0,0.0,4.00733550534719e-09,23.99880132215833,1.0561957113178555,-9.237925844285446,0.0,1.0,0.0 -122,11.0,5.9325475315180105,7.5,0.0,0.0,0.9961688218720534,-9.440177531916442,1.0,0.0,0.0 -122,12.0,0.0,0.0,0.0,0.0,0.9961688218720534,-9.440177531916442,0.0,1.0,0.0 -122,13.0,3.2840888120903275,1.6,0.0,0.0,0.9863360250522538,-9.959715281841117,1.0,0.0,0.0 -122,14.0,4.3434722998614,2.5,0.0,0.0,0.9838454208573516,-10.066019970559465,1.0,0.0,0.0 -122,15.0,1.8539211035993783,1.8,0.0,0.0,0.9897484966122008,-10.02320555213857,1.0,0.0,0.0 -122,16.0,4.767225694969831,5.8,0.0,0.0,0.9902018106166752,-10.451925119862466,1.0,0.0,0.0 -122,17.0,1.6950135804337176,0.9,0.0,0.0,0.9791177982351308,-10.567386378067086,1.0,0.0,0.0 -122,18.0,5.032071566912599,3.4,0.0,0.0,0.9786262388852344,-10.768817253124622,1.0,0.0,0.0 -122,19.0,1.1653218365481808,0.7,0.0,0.0,0.9824731659104512,-10.739610641481905,1.0,0.0,0.0 -122,20.0,9.269605517996892,11.2,0.0,0.0,0.984794379066924,-10.698543027803565,1.0,0.0,0.0 -122,21.0,0.0,0.0,0.0,0.0,0.9878601234191594,-10.571046878822902,1.0,0.0,0.0 -122,22.0,1.6950135804337176,1.6,0.0,0.0,0.9778670086859004,-10.338148670990472,1.0,0.0,0.0 -122,23.0,4.60831817180417,6.7,0.0,0.0,0.9766543721490216,-10.558124717060032,1.0,0.0,0.0 -122,24.0,0.0,0.0,0.0,0.0,0.9725198255067504,-10.247855392611314,1.0,0.0,0.0 -122,25.0,1.8539211035993783,2.3,0.0,0.0,0.9584797377674296,-10.321228449619722,1.0,0.0,0.0 -122,26.0,0.0,0.0,0.0,0.0,0.9769741344515634,-9.978617798393753,1.0,0.0,0.0 -122,27.0,0.0,0.0,0.0,0.0,0.9611050610358518,-7.751760547485876,1.0,0.0,0.0 -122,28.0,1.271260185325288,0.9,0.0,0.0,0.963299607763302,-10.59950257446031,1.0,0.0,0.0 -122,29.0,5.614732485186689,1.9,0.0,0.0,0.9558698850275948,-11.067935276163425,1.0,0.0,0.0 -123,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -123,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -123,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -123,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -123,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -123,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -123,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -123,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -123,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -123,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -123,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -123,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -123,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -123,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -123,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -123,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -123,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -123,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -123,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -123,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -123,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -123,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -123,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -123,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -123,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -123,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -123,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -123,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -123,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -123,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -124,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -124,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -124,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -124,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -124,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -124,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -124,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -124,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -124,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -124,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -124,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -124,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -124,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -124,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -124,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -124,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -124,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -124,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -124,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -124,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -124,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -124,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -124,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -124,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -124,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -124,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -124,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -124,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -124,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -124,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -125,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -125,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -125,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -125,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -125,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -125,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -125,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -125,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -125,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -125,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -125,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -125,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -125,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -125,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -125,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -125,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -125,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -125,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -125,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -125,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -125,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -125,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -125,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -125,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -125,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -125,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -125,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -125,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -125,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -125,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -126,0.0,0.0,0.0,139.24214746406318,2.4422953881497733e-05,1.0,0.0,0.0,0.0,1.0 -126,1.0,11.494310842316146,12.7,19.22895239105268,13.771749229607089,0.9734879254639218,-4.611822691907264,0.0,1.0,0.0 -126,2.0,1.271260185325288,1.2,0.0,0.0,1.000814824846415,-0.1420527078080853,1.0,0.0,0.0 -126,3.0,4.025657253530079,1.6,0.0,0.0,0.9465147828202612,-9.410468817481648,1.0,0.0,0.0 -126,4.0,49.89696227401756,19.0,-6.601224619753444e-10,28.421858318401743,0.9526433269679588,-10.723974481205014,0.0,1.0,0.0 -126,5.0,0.0,0.0,0.0,0.0,0.9484329250497964,-9.735622380240304,1.0,0.0,0.0 -126,6.0,12.076971760590238,10.9,0.0,0.0,0.9434689754796096,-10.40727285026246,1.0,0.0,0.0 -126,7.0,15.8907523165661,30.0,-2.109614420392448e-09,39.99885477964014,0.9509419401221249,-10.24382238018132,0.0,1.0,0.0 -126,8.0,0.0,0.0,0.0,0.0,0.9697678170246355,-9.735622380240308,1.0,0.0,0.0 -126,9.0,3.072212114536113,2.0,0.0,0.0,0.971067061877531,-14.64347219387992,1.0,0.0,0.0 -126,10.0,0.0,0.0,0.0,0.0,0.9697678170246355,-9.735622380240308,0.0,1.0,0.0 -126,11.0,5.9325475315180105,7.5,0.0,0.0,1.002777277271857,-13.681732062417009,1.0,0.0,0.0 -126,12.0,0.0,0.0,-1.538843518232466e-09,23.11854647749681,1.034076663676557,-13.681732062536048,0.0,1.0,0.0 -126,13.0,3.2840888120903275,1.6,0.0,0.0,0.9945749092222232,-14.05138195805563,1.0,0.0,0.0 -126,14.0,4.3434722998614,2.5,0.0,0.0,0.9806385724111636,-14.282957519003968,1.0,0.0,0.0 -126,15.0,1.8539211035993783,1.8,0.0,0.0,0.9825019675681952,-14.140823446288168,1.0,0.0,0.0 -126,16.0,4.767225694969831,5.8,0.0,0.0,0.9702848150324692,-14.597871465305872,1.0,0.0,0.0 -126,17.0,1.6950135804337176,0.9,0.0,0.0,0.9679343917966824,-14.753483788317189,1.0,0.0,0.0 -126,18.0,5.032071566912599,3.4,0.0,0.0,0.9627432985328924,-14.936721294465084,1.0,0.0,0.0 -126,19.0,1.1653218365481808,0.7,0.0,0.0,0.9641796434350272,-14.893185030946857,1.0,0.0,0.0 -126,20.0,9.269605517996892,11.2,0.0,0.0,0.9615604811551216,-14.73848573513362,1.0,0.0,0.0 -126,21.0,0.0,0.0,0.0,0.0,0.9623907261324112,-14.71005120873058,1.0,0.0,0.0 -126,22.0,1.6950135804337176,1.6,0.0,0.0,0.9681674076372342,-14.45102874976931,1.0,0.0,0.0 -126,23.0,4.60831817180417,6.7,0.0,0.0,0.9583375144832998,-14.533081285965224,1.0,0.0,0.0 -126,24.0,0.0,0.0,0.0,0.0,0.9569860702386056,-13.670447183372351,1.0,0.0,0.0 -126,25.0,1.8539211035993783,2.3,0.0,0.0,0.9427111084901764,-13.74625845493282,1.0,0.0,0.0 -126,26.0,0.0,0.0,0.0,0.0,0.9631768774905384,-13.054574716480172,1.0,0.0,0.0 -126,27.0,0.0,0.0,0.0,0.0,0.946648083424378,-10.188570345289149,1.0,0.0,0.0 -126,28.0,1.271260185325288,0.9,0.0,0.0,0.9492948069858382,-13.693631196049251,1.0,0.0,0.0 -126,29.0,5.614732485186689,1.9,0.0,0.0,0.9417519652312588,-14.1760851582423,1.0,0.0,0.0 -127,0.0,0.0,0.0,156.31961291208327,0.0004106701022799,1.0,0.0,0.0,0.0,1.0 -127,1.0,11.494310842316146,12.7,4.722106678320986e-07,9.942453533456636,0.9807858943208336,-3.5836116943469056,0.0,1.0,0.0 -127,2.0,1.271260185325288,1.2,0.0,0.0,0.9749472525367128,-4.700372990561061,1.0,0.0,0.0 -127,3.0,4.025657253530079,1.6,0.0,0.0,0.9684704824499978,-5.774983874706577,1.0,0.0,0.0 -127,4.0,49.89696227401756,19.0,-5.567364165117247e-10,23.85493173245833,0.9613818739201616,-8.625483098590038,0.0,1.0,0.0 -127,5.0,0.0,0.0,0.0,0.0,0.9682032113617488,-6.857666998672045,1.0,0.0,0.0 -127,6.0,12.076971760590238,10.9,0.0,0.0,0.9589973909318442,-7.845697048771276,1.0,0.0,0.0 -127,7.0,15.8907523165661,30.0,-4.784734234576641e-10,30.389210450046647,0.9672126765927498,-7.272064057260558,0.0,1.0,0.0 -127,8.0,0.0,0.0,0.0,0.0,1.0162499031521448,-8.61060290704706,1.0,0.0,0.0 -127,9.0,3.072212114536113,2.0,0.0,0.0,1.0074060246502246,-9.521499439930883,1.0,0.0,0.0 -127,10.0,0.0,0.0,-2.480514148478881e-10,22.265986172830267,1.0599439596336715,-8.610602907074503,0.0,1.0,0.0 -127,11.0,5.9325475315180105,7.5,0.0,0.0,1.0140665090752097,-9.06691291932188,1.0,0.0,0.0 -127,12.0,0.0,0.0,-6.239250649927732e-10,9.493230560890913,1.0270075269706194,-9.066912919369932,0.0,1.0,0.0 -127,13.0,3.2840888120903275,1.6,0.0,0.0,1.0032219191128915,-9.516823956566686,1.0,0.0,0.0 -127,14.0,4.3434722998614,2.5,0.0,0.0,0.999983585030178,-9.54162885798291,1.0,0.0,0.0 -127,15.0,1.8539211035993783,1.8,0.0,0.0,1.005096939413217,-9.361833254571264,1.0,0.0,0.0 -127,16.0,4.767225694969831,5.8,0.0,0.0,1.0023652122613098,-9.560794287997672,1.0,0.0,0.0 -127,17.0,1.6950135804337176,0.9,0.0,0.0,0.9935548883569388,-9.86489520283693,1.0,0.0,0.0 -127,18.0,5.032071566912599,3.4,0.0,0.0,0.9920102446932428,-9.963353215055385,1.0,0.0,0.0 -127,19.0,1.1653218365481808,0.7,0.0,0.0,0.9952486578450372,-9.883501185476243,1.0,0.0,0.0 -127,20.0,9.269605517996892,11.2,0.0,0.0,0.9969507555011882,-9.68489014248839,1.0,0.0,0.0 -127,21.0,0.0,0.0,0.0,0.0,0.9973336895344842,-9.68204523997773,1.0,0.0,0.0 -127,22.0,1.6950135804337176,1.6,0.0,0.0,0.991686920377551,-9.71079392156994,1.0,0.0,0.0 -127,23.0,4.60831817180417,6.7,0.0,0.0,0.9872633572811856,-9.79821217819666,1.0,0.0,0.0 -127,24.0,0.0,0.0,0.0,0.0,0.98099883675657,-9.534312245019596,1.0,0.0,0.0 -127,25.0,1.8539211035993783,2.3,0.0,0.0,0.9670836744877764,-9.606403979067066,1.0,0.0,0.0 -127,26.0,0.0,0.0,0.0,0.0,0.9840804182187716,-9.297430711275322,1.0,0.0,0.0 -127,27.0,0.0,0.0,0.0,0.0,0.9662168130332464,-7.1999970246349685,1.0,0.0,0.0 -127,28.0,1.271260185325288,0.9,0.0,0.0,0.9705103181940608,-9.9092585561307,1.0,0.0,0.0 -127,29.0,5.614732485186689,1.9,0.0,0.0,0.9631375051361544,-10.370709804781448,1.0,0.0,0.0 -128,0.0,0.0,0.0,157.20527681778887,0.0028706246501641,1.0,0.0,0.0,0.0,1.0 -128,1.0,11.494310842316146,12.7,3.8278948243551136e-06,5.009407284674012,0.9794545409693726,-3.63415144590878,0.0,1.0,0.0 -128,2.0,1.271260185325288,1.2,0.0,0.0,0.9782347036240918,-4.628642214323941,1.0,0.0,0.0 -128,3.0,4.025657253530079,1.6,0.0,0.0,0.972512172587044,-5.684592333498411,1.0,0.0,0.0 -128,4.0,49.89696227401756,19.0,3.963232185013491e-09,24.056008353815912,0.9603021962981204,-8.84588816482451,0.0,1.0,0.0 -128,5.0,0.0,0.0,0.0,0.0,0.9668815199069364,-7.232914928064384,1.0,0.0,0.0 -128,6.0,12.076971760590238,10.9,0.0,0.0,0.9577421063660996,-8.158455036515145,1.0,0.0,0.0 -128,7.0,15.8907523165661,30.0,2.3039466564676907e-09,29.73162270332796,0.9655602824615956,-7.661314167063661,0.0,1.0,0.0 -128,8.0,0.0,0.0,0.0,0.0,1.0110311495329227,-10.583668099731817,1.0,0.0,0.0 -128,9.0,3.072212114536113,2.0,0.0,0.0,0.9993055442768908,-12.3360470283441,1.0,0.0,0.0 -128,10.0,0.0,0.0,5.3524004370165235e-09,23.98482095079021,1.0581767946010985,-10.583668099135586,0.0,1.0,0.0 -128,11.0,5.9325475315180105,7.5,0.0,0.0,0.9772404732929176,-15.73164880244606,1.0,0.0,0.0 -128,12.0,0.0,0.0,4.989016422470841e-10,18.04620181082074,1.0024435702890544,-15.731648802405209,0.0,1.0,0.0 -128,13.0,3.2840888120903275,1.6,0.0,0.0,0.968048405821901,-15.897965994161336,1.0,0.0,0.0 -128,14.0,4.3434722998614,2.5,0.0,0.0,0.96880762127749,-15.660806165186337,1.0,0.0,0.0 -128,15.0,1.8539211035993783,1.8,0.0,0.0,0.9825621714214686,-14.416172794936022,1.0,0.0,0.0 -128,16.0,4.767225694969831,5.8,0.0,0.0,0.9887324225642896,-13.050501723004048,1.0,0.0,0.0 -128,17.0,1.6950135804337176,0.9,0.0,0.0,0.9701876379214484,-14.823548093763788,1.0,0.0,0.0 -128,18.0,5.032071566912599,3.4,0.0,0.0,0.9734564262958252,-14.232339283647477,1.0,0.0,0.0 -128,19.0,1.1653218365481808,0.7,0.0,0.0,0.9793928105099858,-13.787716584818009,1.0,0.0,0.0 -128,20.0,9.269605517996892,11.2,0.0,0.0,0.9884824888044896,-12.426005683287912,1.0,0.0,0.0 -128,21.0,0.0,0.0,0.0,0.0,0.9887885920860788,-12.398494047116728,1.0,0.0,0.0 -128,22.0,1.6950135804337176,1.6,0.0,0.0,0.9636931351452768,-15.772738136478235,1.0,0.0,0.0 -128,23.0,4.60831817180417,6.7,0.0,0.0,0.9781946572140612,-12.178687354982095,1.0,0.0,0.0 -128,24.0,0.0,0.0,0.0,0.0,0.976716014114052,-11.221375961374813,1.0,0.0,0.0 -128,25.0,1.8539211035993783,2.3,0.0,0.0,0.9627380341474104,-11.29411064950236,1.0,0.0,0.0 -128,26.0,0.0,0.0,0.0,0.0,0.9826615339774236,-10.55025675726543,1.0,0.0,0.0 -128,27.0,0.0,0.0,0.0,0.0,0.9643385748444572,-7.673551635286491,1.0,0.0,0.0 -128,28.0,1.271260185325288,0.9,0.0,0.0,0.9759629063663902,-10.747488559661344,1.0,0.0,0.0 -128,29.0,5.614732485186689,1.9,0.0,0.0,0.9512917297902668,-12.251743947752733,1.0,0.0,0.0 -129,0.0,0.0,0.0,156.34068522451537,0.2714924639168892,1.0,0.0,0.0,0.0,1.0 -129,1.0,11.494310842316146,12.7,0.0,0.0,0.9797773574887318,-3.5642983777296933,0.0,1.0,0.0 -129,2.0,1.271260185325288,1.2,0.0,0.0,0.977395736988825,-4.7395262060490575,1.0,0.0,0.0 -129,3.0,4.025657253530079,1.6,0.0,0.0,0.971492995988828,-5.822541973185549,1.0,0.0,0.0 -129,4.0,49.89696227401756,19.0,-2.3084429846808562e-10,28.03966181555636,0.9671637256318673,-8.686916702093137,0.0,1.0,0.0 -129,5.0,0.0,0.0,0.0,0.0,0.9720966147786118,-6.907028057572892,1.0,0.0,0.0 -129,6.0,12.076971760590238,10.9,0.0,0.0,0.9637072671617344,-7.896738430076782,1.0,0.0,0.0 -129,7.0,15.8907523165661,30.0,-3.2091859607207887e-10,34.10790817347808,0.9725126583753988,-7.341209992830899,0.0,1.0,0.0 -129,8.0,0.0,0.0,0.0,0.0,1.0195757296561971,-8.6309117603397,1.0,0.0,0.0 -129,9.0,3.072212114536113,2.0,0.0,0.0,1.0121038358694747,-9.526142453695757,1.0,0.0,0.0 -129,10.0,0.0,0.0,-2.94087573294776e-10,20.600712744018256,1.059999778215613,-8.630911760372129,0.0,1.0,0.0 -129,11.0,5.9325475315180105,7.5,0.0,0.0,1.0216152673173966,-9.115520083282906,1.0,0.0,0.0 -129,12.0,0.0,0.0,-3.7631222043642636e-10,12.440689586587446,1.0383883422002649,-9.115520083311363,0.0,1.0,0.0 -129,13.0,3.2840888120903275,1.6,0.0,0.0,1.0104841276250764,-9.558325860280442,1.0,0.0,0.0 -129,14.0,4.3434722998614,2.5,0.0,0.0,1.0069185787096988,-9.57398532079844,1.0,0.0,0.0 -129,15.0,1.8539211035993783,1.8,0.0,0.0,1.0114770187855169,-9.384222080992734,1.0,0.0,0.0 -129,16.0,4.767225694969831,5.8,0.0,0.0,1.007604232757808,-9.572027111134764,1.0,0.0,0.0 -129,17.0,1.6950135804337176,0.9,0.0,0.0,0.99975889651935,-9.883139898700332,1.0,0.0,0.0 -129,18.0,5.032071566912599,3.4,0.0,0.0,0.9977667966751976,-9.974436767631122,1.0,0.0,0.0 -129,19.0,1.1653218365481808,0.7,0.0,0.0,1.0007460228311793,-9.89226766606194,1.0,0.0,0.0 -129,20.0,9.269605517996892,11.2,0.0,0.0,1.0018209002646388,-9.68975765657765,1.0,0.0,0.0 -129,21.0,0.0,0.0,0.0,0.0,1.0022404488581138,-9.687559005413274,1.0,0.0,0.0 -129,22.0,1.6950135804337176,1.6,0.0,0.0,0.9980049019228372,-9.735194288529536,1.0,0.0,0.0 -129,23.0,4.60831817180417,6.7,0.0,0.0,0.9927152849144002,-9.814091792827648,1.0,0.0,0.0 -129,24.0,0.0,0.0,0.0,0.0,0.9861116644249028,-9.552418260494742,1.0,0.0,0.0 -129,25.0,1.8539211035993783,2.3,0.0,0.0,0.972270747768162,-9.62375359332452,1.0,0.0,0.0 -129,26.0,0.0,0.0,0.0,0.0,0.9889452168601052,-9.318069774263686,1.0,0.0,0.0 -129,27.0,0.0,0.0,0.0,0.0,0.9705054401035222,-7.251004920592661,1.0,0.0,0.0 -129,28.0,1.271260185325288,0.9,0.0,0.0,0.9754456651118744,-9.923811806936278,1.0,0.0,0.0 -129,29.0,5.614732485186689,1.9,0.0,0.0,0.968111296431386,-10.380574421981567,1.0,0.0,0.0 -130,0.0,0.0,0.0,154.775396663497,0.0041128712651605,1.0,0.0,0.0,0.0,1.0 -130,1.0,11.38463982176812,12.7,3.809978810954992e-06,10.522023498517214,0.981011589718343,-3.548787000287684,0.0,1.0,0.0 -130,2.0,1.259130671531958,1.2,0.0,0.0,0.9749183469029415,-4.6490459540783,1.0,0.0,0.0 -130,3.0,3.987247126517867,1.6,0.0,0.0,0.968426558201028,-5.711537089071243,1.0,0.0,0.0 -130,4.0,49.42087885762936,19.0,4.849514240822205e-09,24.00590670636916,0.9616840756924716,-8.539485992631771,0.0,1.0,0.0 -130,5.0,0.0,0.0,0.0,0.0,0.9678952598691108,-6.778284337354285,1.0,0.0,0.0 -130,6.0,11.961741379553605,10.9,0.0,0.0,0.9589582753368232,-7.759939562954479,1.0,0.0,0.0 -130,7.0,15.739133394149476,30.0,4.173096210889812e-09,32.59587573684632,0.9672257377131932,-7.205017544650466,0.0,1.0,0.0 -130,8.0,0.0,0.0,0.0,0.0,1.0162052349487622,-8.513444175212403,1.0,0.0,0.0 -130,9.0,3.0428991228688984,2.0,0.0,0.0,1.0074567684104447,-9.41477339907292,1.0,0.0,0.0 -130,10.0,0.0,0.0,2.723173805130652e-09,22.30499468815785,1.0599745762072792,-8.513444174911113,0.0,1.0,0.0 -130,11.0,5.875943133815803,7.5,0.0,0.0,1.0147293812597582,-8.976353909568404,1.0,0.0,0.0 -130,12.0,0.0,0.0,5.6679767261953665e-09,10.09399048948119,1.0284697817422443,-8.976353909132754,0.0,1.0,0.0 -130,13.0,3.2527542347908915,1.6,0.0,0.0,1.0038296171327914,-9.419218866834644,1.0,0.0,0.0 -130,14.0,4.302029794400856,2.5,0.0,0.0,1.0005088664964754,-9.439760610392437,1.0,0.0,0.0 -130,15.0,1.836232229317439,1.8,0.0,0.0,1.0055242907283215,-9.260880818522583,1.0,0.0,0.0 -130,16.0,4.721740018244843,5.8,0.0,0.0,1.0025414068067775,-9.454764698772008,1.0,0.0,0.0 -130,17.0,1.6788408953759442,0.9,0.0,0.0,0.9939545263915264,-9.756539337819447,1.0,0.0,0.0 -130,18.0,4.984058908147333,3.4,0.0,0.0,0.9923239198132812,-9.85243379663034,1.0,0.0,0.0 -130,19.0,1.1542031155709616,0.7,0.0,0.0,0.9954993057086156,-9.7731965062204,1.0,0.0,0.0 -130,20.0,9.181161146587192,11.2,0.0,0.0,0.9970031550584524,-9.574048731227554,1.0,0.0,0.0 -130,21.0,0.0,0.0,0.0,0.0,0.997376568603447,-9.571089281124893,1.0,0.0,0.0 -130,22.0,1.6788408953759442,1.6,0.0,0.0,0.9919845915520512,-9.600901589896122,1.0,0.0,0.0 -130,23.0,4.564348684303347,6.7,0.0,0.0,0.9872323839803948,-9.680285292939503,1.0,0.0,0.0 -130,24.0,0.0,0.0,0.0,0.0,0.9803408534436482,-9.400771559989211,1.0,0.0,0.0 -130,25.0,1.836232229317439,2.3,0.0,0.0,0.9664634067132998,-9.468893132289873,1.0,0.0,0.0 -130,26.0,0.0,0.0,0.0,0.0,0.9830127085687824,-9.156901988384105,1.0,0.0,0.0 -130,27.0,0.0,0.0,0.0,0.0,0.964495445691702,-7.07786246799399,1.0,0.0,0.0 -130,28.0,1.259130671531958,0.9,0.0,0.0,0.9695013960106734,-9.76238183187921,1.0,0.0,0.0 -130,29.0,5.561160465932814,1.9,0.0,0.0,0.9621684496562728,-10.219625172464523,1.0,0.0,0.0 -131,0.0,0.0,0.0,154.76847200863764,0.000355559774956,1.0,0.0,0.0,0.0,1.0 -131,1.0,11.38463982176812,12.7,4.052946763590322e-07,9.793453244258217,0.9809355299610067,-3.547020330286619,0.0,1.0,0.0 -131,2.0,1.259130671531958,1.2,0.0,0.0,0.9751475159096216,-4.652499542163657,1.0,0.0,0.0 -131,3.0,3.987247126517867,1.6,0.0,0.0,0.9687094050970472,-5.7157321071868905,1.0,0.0,0.0 -131,4.0,49.42087885762936,19.0,-4.741665250618955e-10,23.76733752531058,0.9616900801885354,-8.537299328391393,0.0,1.0,0.0 -131,5.0,0.0,0.0,0.0,0.0,0.9684674603786648,-6.78782602313683,1.0,0.0,0.0 -131,6.0,11.961741379553605,10.9,0.0,0.0,0.9593007224634132,-7.7647967640093665,1.0,0.0,0.0 -131,7.0,15.739133394149476,30.0,-4.2182237103363436e-10,30.3465522197678,0.967480831692383,-7.19791506414346,0.0,1.0,0.0 -131,8.0,0.0,0.0,0.0,0.0,1.0164128160838697,-8.523513947241666,1.0,0.0,0.0 -131,9.0,3.0428991228688984,2.0,0.0,0.0,1.0075931509623297,-9.42552835976051,1.0,0.0,0.0 -131,10.0,0.0,0.0,-2.4738471013681756e-10,22.18098983193091,1.059940231570366,-8.523513947269034,0.0,1.0,0.0 -131,11.0,5.875943133815803,7.5,0.0,0.0,1.0141640068746864,-8.974997018968793,1.0,0.0,0.0 -131,12.0,0.0,0.0,-5.535540948573502e-10,9.384844284096864,1.0269578926722311,-8.97499701901142,0.0,1.0,0.0 -131,13.0,3.2527542347908915,1.6,0.0,0.0,1.0033754601722809,-9.419224962244328,1.0,0.0,0.0 -131,14.0,4.302029794400856,2.5,0.0,0.0,1.0001597522750254,-9.443326295692623,1.0,0.0,0.0 -131,15.0,1.836232229317439,1.8,0.0,0.0,1.0052528378632113,-9.266273851875996,1.0,0.0,0.0 -131,16.0,4.721740018244843,5.8,0.0,0.0,1.0025526108695555,-9.463362248105868,1.0,0.0,0.0 -131,17.0,1.6788408953759442,0.9,0.0,0.0,0.993774583039496,-9.762823737888784,1.0,0.0,0.0 -131,18.0,4.984058908147333,3.4,0.0,0.0,0.9922446763783298,-9.860282072762484,1.0,0.0,0.0 -131,19.0,1.1542031155709616,0.7,0.0,0.0,0.995473441829716,-9.781859978287086,1.0,0.0,0.0 -131,20.0,9.181161146587192,11.2,0.0,0.0,0.9971701430223018,-9.585536352236495,1.0,0.0,0.0 -131,21.0,0.0,0.0,0.0,0.0,0.9975525951144626,-9.582840568654,1.0,0.0,0.0 -131,22.0,1.6788408953759442,1.6,0.0,0.0,0.9919096180186104,-9.609851511079125,1.0,0.0,0.0 -131,23.0,4.564348684303347,6.7,0.0,0.0,0.9875245844388107,-9.696290724272734,1.0,0.0,0.0 -131,24.0,0.0,0.0,0.0,0.0,0.9812848097536006,-9.434809925511596,1.0,0.0,0.0 -131,25.0,1.836232229317439,2.3,0.0,0.0,0.9674211023077156,-9.502798595458357,1.0,0.0,0.0 -131,26.0,0.0,0.0,0.0,0.0,0.9843597244101692,-9.201643544762929,1.0,0.0,0.0 -131,27.0,0.0,0.0,0.0,0.0,0.966495760734834,-7.126471631148942,1.0,0.0,0.0 -131,28.0,1.259130671531958,0.9,0.0,0.0,0.9708679495567448,-9.8054449436356,1.0,0.0,0.0 -131,29.0,5.561160465932814,1.9,0.0,0.0,0.9635456397753956,-10.26139343746723,1.0,0.0,0.0 -132,0.0,0.0,0.0,154.85252955651166,0.0004066981096784,1.0,0.0,0.0,0.0,1.0 -132,1.0,11.38463982176812,12.7,4.464526384608487e-07,9.685630056230778,0.98090426910352,-3.549274471322402,0.0,1.0,0.0 -132,2.0,1.259130671531958,1.2,0.0,0.0,0.9752007884908122,-4.654037052697633,1.0,0.0,0.0 -132,3.0,3.987247126517867,1.6,0.0,0.0,0.9687752510422052,-5.717619521801293,1.0,0.0,0.0 -132,4.0,49.42087885762936,19.0,-5.046849324840793e-10,23.81278864873942,0.96170086636294,-8.543946608440937,0.0,1.0,0.0 -132,5.0,0.0,0.0,0.0,0.0,0.9684244074957096,-6.797181075250095,1.0,0.0,0.0 -132,6.0,11.961741379553605,10.9,0.0,0.0,0.9592791166062888,-7.773035837387319,1.0,0.0,0.0 -132,7.0,15.739133394149476,30.0,-4.282204227339492e-10,30.584861140080307,0.9675130551850684,-7.209307933527524,0.0,1.0,0.0 -132,8.0,0.0,0.0,0.0,0.0,1.0160792846976412,-8.555966443516315,1.0,0.0,0.0 -132,9.0,3.0428991228688984,2.0,0.0,0.0,1.0069116053590053,-9.470559619003575,1.0,0.0,0.0 -132,10.0,0.0,0.0,-1.9318073277170188e-10,22.379419307810192,1.0599938708480348,-8.555966443537692,0.0,1.0,0.0 -132,11.0,5.875943133815803,7.5,0.0,0.0,1.0147860391219885,-8.925596601297118,1.0,0.0,0.0 -132,12.0,0.0,0.0,-5.918655631607712e-10,9.19702144619247,1.0273194627468485,-8.925596601342658,0.0,1.0,0.0 -132,13.0,3.2527542347908915,1.6,0.0,0.0,0.9857782092383142,-9.754771724476118,1.0,0.0,0.0 -132,14.0,4.302029794400856,2.5,0.0,0.0,0.9963163266870116,-9.582107688382216,1.0,0.0,0.0 -132,15.0,1.836232229317439,1.8,0.0,0.0,1.0052471438758006,-9.254533230696357,1.0,0.0,0.0 -132,16.0,4.721740018244843,5.8,0.0,0.0,1.0021005891181982,-9.49159155380296,1.0,0.0,0.0 -132,17.0,1.6788408953759442,0.9,0.0,0.0,0.9910291465060284,-9.870833158434728,1.0,0.0,0.0 -132,18.0,4.984058908147333,3.4,0.0,0.0,0.9901543234880013,-9.949277644529934,1.0,0.0,0.0 -132,19.0,1.1542031155709616,0.7,0.0,0.0,0.9937378959501724,-9.860387594186555,1.0,0.0,0.0 -132,20.0,9.181161146587192,11.2,0.0,0.0,0.9963326401974802,-9.635581639825114,1.0,0.0,0.0 -132,21.0,0.0,0.0,0.0,0.0,0.9966680496319366,-9.634356673247106,1.0,0.0,0.0 -132,22.0,1.6788408953759442,1.6,0.0,0.0,0.9890393309252636,-9.71895645165535,1.0,0.0,0.0 -132,23.0,4.564348684303347,6.7,0.0,0.0,0.9859648133034076,-9.763897102471462,1.0,0.0,0.0 -132,24.0,0.0,0.0,0.0,0.0,0.9803302955357402,-9.488462306891588,1.0,0.0,0.0 -132,25.0,1.836232229317439,2.3,0.0,0.0,0.9664526949776892,-9.5565853677869,1.0,0.0,0.0 -132,26.0,0.0,0.0,0.0,0.0,0.9837838068915984,-9.245835464508572,1.0,0.0,0.0 -132,27.0,0.0,0.0,0.0,0.0,0.9663926972028218,-7.138986373646916,1.0,0.0,0.0 -132,28.0,1.259130671531958,0.9,0.0,0.0,0.9702836857871588,-9.850353624030042,1.0,0.0,0.0 -132,29.0,5.561160465932814,1.9,0.0,0.0,0.9629568322208172,-10.30685504813738,1.0,0.0,0.0 -133,0.0,0.0,0.0,154.76847200863764,0.000355559774956,1.0,0.0,0.0,0.0,1.0 -133,1.0,11.38463982176812,12.7,4.052946763590322e-07,9.793453244258217,0.9809355299610067,-3.547020330286619,0.0,1.0,0.0 -133,2.0,1.259130671531958,1.2,0.0,0.0,0.9751475159096216,-4.652499542163657,1.0,0.0,0.0 -133,3.0,3.987247126517867,1.6,0.0,0.0,0.9687094050970472,-5.7157321071868905,1.0,0.0,0.0 -133,4.0,49.42087885762936,19.0,-4.741665250618955e-10,23.76733752531058,0.9616900801885354,-8.537299328391393,0.0,1.0,0.0 -133,5.0,0.0,0.0,0.0,0.0,0.9684674603786648,-6.78782602313683,1.0,0.0,0.0 -133,6.0,11.961741379553605,10.9,0.0,0.0,0.9593007224634132,-7.7647967640093665,1.0,0.0,0.0 -133,7.0,15.739133394149476,30.0,-4.2182237103363436e-10,30.3465522197678,0.967480831692383,-7.19791506414346,0.0,1.0,0.0 -133,8.0,0.0,0.0,0.0,0.0,1.0164128160838697,-8.523513947241666,1.0,0.0,0.0 -133,9.0,3.0428991228688984,2.0,0.0,0.0,1.0075931509623297,-9.42552835976051,1.0,0.0,0.0 -133,10.0,0.0,0.0,-2.4738471013681756e-10,22.18098983193091,1.059940231570366,-8.523513947269034,0.0,1.0,0.0 -133,11.0,5.875943133815803,7.5,0.0,0.0,1.0141640068746864,-8.974997018968793,1.0,0.0,0.0 -133,12.0,0.0,0.0,-5.535540948573502e-10,9.384844284096864,1.0269578926722311,-8.97499701901142,0.0,1.0,0.0 -133,13.0,3.2527542347908915,1.6,0.0,0.0,1.0033754601722809,-9.419224962244328,1.0,0.0,0.0 -133,14.0,4.302029794400856,2.5,0.0,0.0,1.0001597522750254,-9.443326295692623,1.0,0.0,0.0 -133,15.0,1.836232229317439,1.8,0.0,0.0,1.0052528378632113,-9.266273851875996,1.0,0.0,0.0 -133,16.0,4.721740018244843,5.8,0.0,0.0,1.0025526108695555,-9.463362248105868,1.0,0.0,0.0 -133,17.0,1.6788408953759442,0.9,0.0,0.0,0.993774583039496,-9.762823737888784,1.0,0.0,0.0 -133,18.0,4.984058908147333,3.4,0.0,0.0,0.9922446763783298,-9.860282072762484,1.0,0.0,0.0 -133,19.0,1.1542031155709616,0.7,0.0,0.0,0.995473441829716,-9.781859978287086,1.0,0.0,0.0 -133,20.0,9.181161146587192,11.2,0.0,0.0,0.9971701430223018,-9.585536352236495,1.0,0.0,0.0 -133,21.0,0.0,0.0,0.0,0.0,0.9975525951144626,-9.582840568654,1.0,0.0,0.0 -133,22.0,1.6788408953759442,1.6,0.0,0.0,0.9919096180186104,-9.609851511079125,1.0,0.0,0.0 -133,23.0,4.564348684303347,6.7,0.0,0.0,0.9875245844388107,-9.696290724272734,1.0,0.0,0.0 -133,24.0,0.0,0.0,0.0,0.0,0.9812848097536006,-9.434809925511596,1.0,0.0,0.0 -133,25.0,1.836232229317439,2.3,0.0,0.0,0.9674211023077156,-9.502798595458357,1.0,0.0,0.0 -133,26.0,0.0,0.0,0.0,0.0,0.9843597244101692,-9.201643544762929,1.0,0.0,0.0 -133,27.0,0.0,0.0,0.0,0.0,0.966495760734834,-7.126471631148942,1.0,0.0,0.0 -133,28.0,1.259130671531958,0.9,0.0,0.0,0.9708679495567448,-9.8054449436356,1.0,0.0,0.0 -133,29.0,5.561160465932814,1.9,0.0,0.0,0.9635456397753956,-10.26139343746723,1.0,0.0,0.0 -134,0.0,0.0,0.0,155.07000153588834,0.0020196662814164,1.0,0.0,0.0,0.0,1.0 -134,1.0,11.38463982176812,12.7,1.7916785210517468e-06,2.535249743844716,0.9800510437352458,-3.530842646811653,0.0,1.0,0.0 -134,2.0,1.259130671531958,1.2,0.0,0.0,0.9776001995774152,-4.717008295439494,1.0,0.0,0.0 -134,3.0,3.987247126517867,1.6,0.0,0.0,0.9717403352711144,-5.79478773238735,1.0,0.0,0.0 -134,4.0,49.42087885762936,19.0,1.373606697279357e-09,24.105088058851607,0.9633047226887244,-8.539200751174116,0.0,1.0,0.0 -134,5.0,0.0,0.0,0.0,0.0,0.9718432079426608,-6.824499878143095,1.0,0.0,0.0 -134,6.0,11.961741379553605,10.9,0.0,0.0,0.96197672821854,-7.786811141603961,1.0,0.0,0.0 -134,7.0,15.739133394149476,30.0,-4.349336414143859e-10,31.099074145823455,0.9711725657937011,-7.236352950598563,0.0,1.0,0.0 -134,8.0,0.0,0.0,0.0,0.0,1.022195904362366,-8.41710347379847,1.0,0.0,0.0 -134,9.0,3.0428991228688984,2.0,0.0,0.0,1.0176038089503583,-9.239487475658825,1.0,0.0,0.0 -134,10.0,0.0,0.0,1.6914649011467912e-09,19.24042422289948,1.059952394731692,-8.417103473612418,0.0,1.0,0.0 -134,11.0,5.875943133815803,7.5,0.0,0.0,1.0261855575993928,-9.291784180159846,1.0,0.0,0.0 -134,12.0,0.0,0.0,3.1526289414740155e-09,18.548373735175023,1.0508956449929134,-9.291784179925347,0.0,1.0,0.0 -134,13.0,3.2527542347908915,1.6,0.0,0.0,1.0125729200850986,-9.794103294507792,1.0,0.0,0.0 -134,14.0,4.302029794400856,2.5,0.0,0.0,1.006079984315687,-9.818718734022896,1.0,0.0,0.0 -134,15.0,1.836232229317439,1.8,0.0,0.0,1.016799198383364,-9.36111014891817,1.0,0.0,0.0 -134,16.0,4.721740018244843,5.8,0.0,0.0,1.0129809717653822,-9.364865716592009,1.0,0.0,0.0 -134,17.0,1.6788408953759442,0.9,0.0,0.0,0.9862204087176,-10.495275341621351,1.0,0.0,0.0 -134,18.0,4.984058908147333,3.4,0.0,0.0,0.9767644074702608,-10.811151144960863,1.0,0.0,0.0 -134,19.0,1.1542031155709616,0.7,0.0,0.0,0.9758743482855132,-10.844022196149352,1.0,0.0,0.0 -134,20.0,9.181161146587192,11.2,0.0,0.0,1.0068994704342653,-9.432108388221646,1.0,0.0,0.0 -134,21.0,0.0,0.0,0.0,0.0,1.0071527914315732,-9.440801174987858,1.0,0.0,0.0 -134,22.0,1.6788408953759442,1.6,0.0,0.0,0.9986409476032068,-9.823996904134887,1.0,0.0,0.0 -134,23.0,4.564348684303347,6.7,0.0,0.0,0.9952701667596874,-9.69438873957742,1.0,0.0,0.0 -134,24.0,0.0,0.0,0.0,0.0,0.9872055279588802,-9.428548413521089,1.0,0.0,0.0 -134,25.0,1.836232229317439,2.3,0.0,0.0,0.973427371088347,-9.495712335641716,1.0,0.0,0.0 -134,26.0,0.0,0.0,0.0,0.0,0.9891021988896016,-9.195451547064737,1.0,0.0,0.0 -134,27.0,0.0,0.0,0.0,0.0,0.9700934215691888,-7.161060255814555,1.0,0.0,0.0 -134,28.0,1.259130671531958,0.9,0.0,0.0,0.9400027100692095,-11.388911209934223,1.0,0.0,0.0 -134,29.0,5.561160465932814,1.9,0.0,0.0,0.9475637765603462,-11.160648031738576,1.0,0.0,0.0 -135,0.0,0.0,0.0,154.80057393691013,0.0003519974166366,1.0,0.0,0.0,0.0,1.0 -135,1.0,11.38463982176812,12.7,3.553257837477818e-07,10.967761489874754,0.98079008218986,-3.623095074818835,0.0,1.0,0.0 -135,2.0,1.259130671531958,1.2,0.0,0.0,0.9752825730092118,-4.438318158134783,1.0,0.0,0.0 -135,3.0,3.987247126517867,1.6,0.0,0.0,0.96885011772329,-5.4497173585087335,1.0,0.0,0.0 -135,4.0,49.42087885762936,19.0,-6.023063844087887e-10,22.36133024604716,0.9618737041893268,-9.738470375434176,0.0,1.0,0.0 -135,5.0,0.0,0.0,0.0,0.0,0.9679404524317832,-6.407333289994244,1.0,0.0,0.0 -135,6.0,11.961741379553605,10.9,0.0,0.0,0.9558865020415238,-6.847359538425598,1.0,0.0,0.0 -135,7.0,15.739133394149476,30.0,-4.181527204109738e-10,32.3188045197124,0.9676901452508314,-6.830743416665938,0.0,1.0,0.0 -135,8.0,0.0,0.0,0.0,0.0,1.0156434206282032,-8.225075503929945,1.0,0.0,0.0 -135,9.0,3.0428991228688984,2.0,0.0,0.0,1.0062991604741196,-9.170422322733971,1.0,0.0,0.0 -135,10.0,0.0,0.0,-4.0504940193637054e-10,22.6041894865172,1.0599988590610372,-8.225075503974782,0.0,1.0,0.0 -135,11.0,5.875943133815803,7.5,0.0,0.0,1.0164380758732423,-8.541480274112466,1.0,0.0,0.0 -135,12.0,0.0,0.0,-6.592236712300346e-10,9.662697029664873,1.029577231852048,-8.541480274162996,0.0,1.0,0.0 -135,13.0,3.2527542347908915,1.6,0.0,0.0,1.0052978099474543,-9.007820688279118,1.0,0.0,0.0 -135,14.0,4.302029794400856,2.5,0.0,0.0,1.001561483701323,-9.047077237670171,1.0,0.0,0.0 -135,15.0,1.836232229317439,1.8,0.0,0.0,1.0111831577403865,-8.650050425225293,1.0,0.0,0.0 -135,16.0,4.721740018244843,5.8,0.0,0.0,0.9998652358237566,-9.29061410464364,1.0,0.0,0.0 -135,17.0,1.6788408953759442,0.9,0.0,0.0,0.9942171039762082,-9.415433547923508,1.0,0.0,0.0 -135,18.0,4.984058908147333,3.4,0.0,0.0,0.9921208302018004,-9.542325885962038,1.0,0.0,0.0 -135,19.0,1.1542031155709616,0.7,0.0,0.0,0.9950503951013993,-9.47931446261526,1.0,0.0,0.0 -135,20.0,9.181161146587192,11.2,0.0,0.0,0.996027594491171,-9.3196801293161,1.0,0.0,0.0 -135,21.0,0.0,0.0,0.0,0.0,0.9964637029450244,-9.313462549847657,1.0,0.0,0.0 -135,22.0,1.6788408953759442,1.6,0.0,0.0,0.9925784332026892,-9.249145451736403,1.0,0.0,0.0 -135,23.0,4.564348684303347,6.7,0.0,0.0,0.9872201535353288,-9.38438248169743,1.0,0.0,0.0 -135,24.0,0.0,0.0,0.0,0.0,0.9810299901844316,-9.099210982815958,1.0,0.0,0.0 -135,25.0,1.836232229317439,2.3,0.0,0.0,0.9671625765612842,-9.167235491104778,1.0,0.0,0.0 -135,26.0,0.0,0.0,0.0,0.0,0.9841303570512878,-8.85120106292781,1.0,0.0,0.0 -135,27.0,0.0,0.0,0.0,0.0,0.9661384025265588,-6.752040144674345,1.0,0.0,0.0 -135,28.0,1.259130671531958,0.9,0.0,0.0,0.9706352594562866,-9.45528776836754,1.0,0.0,0.0 -135,29.0,5.561160465932814,1.9,0.0,0.0,0.96331114074383,-9.911456352630053,1.0,0.0,0.0 -136,0.0,0.0,0.0,155.30897198832358,0.000306352814583,1.0,0.0,0.0,0.0,1.0 -136,1.0,11.38463982176812,12.7,2.6983122153470184e-07,9.857338977953743,0.9801223192983096,-3.7305150761494,0.0,1.0,0.0 -136,2.0,1.259130671531958,1.2,0.0,0.0,0.9766554737572758,-4.176950278395067,1.0,0.0,0.0 -136,3.0,3.987247126517867,1.6,0.0,0.0,0.9705160565436652,-5.124793492432479,1.0,0.0,0.0 -136,4.0,49.42087885762936,19.0,2.502575897858818e-10,35.39401273880823,0.9594817599223918,-11.442256327721244,0.0,1.0,0.0 -136,5.0,0.0,0.0,0.0,0.0,0.9711158893277372,-5.932245450154504,1.0,0.0,0.0 -136,6.0,11.961741379553605,10.9,0.0,0.0,0.9412661264634846,-12.030833998475702,1.0,0.0,0.0 -136,7.0,15.739133394149476,30.0,5.159520813303656e-10,28.434194525745824,0.9693579571628292,-6.329901308202809,0.0,1.0,0.0 -136,8.0,0.0,0.0,0.0,0.0,1.0134101408903162,-7.743819064330971,1.0,0.0,0.0 -136,9.0,3.0428991228688984,2.0,0.0,0.0,1.0053814983881355,-8.689912494241154,1.0,0.0,0.0 -136,10.0,0.0,0.0,7.017407251812183e-10,18.364365801075152,1.0497961394944186,-7.743819064252361,0.0,1.0,0.0 -136,11.0,5.875943133815803,7.5,0.0,0.0,1.0128267804853102,-8.1771051531991,1.0,0.0,0.0 -136,12.0,0.0,0.0,5.601425063705238e-10,7.453619855068089,1.0230269688622602,-8.17710515315574,0.0,1.0,0.0 -136,13.0,3.2527542347908915,1.6,0.0,0.0,1.0017241930541128,-8.637071803088055,1.0,0.0,0.0 -136,14.0,4.302029794400856,2.5,0.0,0.0,0.9981165446080348,-8.668775888509645,1.0,0.0,0.0 -136,15.0,1.836232229317439,1.8,0.0,0.0,1.007552915578937,-8.286454994905132,1.0,0.0,0.0 -136,16.0,4.721740018244843,5.8,0.0,0.0,0.9989416208990162,-8.810325211523654,1.0,0.0,0.0 -136,17.0,1.6788408953759442,0.9,0.0,0.0,0.9916493922878612,-9.003321538495317,1.0,0.0,0.0 -136,18.0,4.984058908147333,3.4,0.0,0.0,0.9900764714781898,-9.109378824647507,1.0,0.0,0.0 -136,19.0,1.1542031155709616,0.7,0.0,0.0,0.993291103451608,-9.034912505424971,1.0,0.0,0.0 -136,20.0,9.181161146587192,11.2,0.0,0.0,0.9909207065675688,-8.91194664170611,1.0,0.0,0.0 -136,21.0,0.0,0.0,0.0,0.0,0.9900349192942908,-8.927221714333648,1.0,0.0,0.0 -136,22.0,1.6788408953759442,1.6,0.0,0.0,0.9886498823520192,-8.870007678857712,1.0,0.0,0.0 -136,23.0,4.564348684303347,6.7,0.0,0.0,0.9826725806702936,-9.003414676577481,1.0,0.0,0.0 -136,24.0,0.0,0.0,0.0,0.0,0.97927221818141,-8.711889927186853,1.0,0.0,0.0 -136,25.0,1.836232229317439,2.3,0.0,0.0,0.9653791840735992,-8.78016242834341,1.0,0.0,0.0 -136,26.0,0.0,0.0,0.0,0.0,0.9841157636000792,-8.456821908339593,1.0,0.0,0.0 -136,27.0,0.0,0.0,0.0,0.0,0.9686060708481816,-6.275427331738271,1.0,0.0,0.0 -136,28.0,1.259130671531958,0.9,0.0,0.0,0.97062045453514,-9.060926773143938,1.0,0.0,0.0 -136,29.0,5.561160465932814,1.9,0.0,0.0,0.9632962206958032,-9.517109366063504,1.0,0.0,0.0 -137,0.0,0.0,0.0,154.9887173498177,0.0160569871704652,1.0,0.0,0.0,0.0,1.0 -137,1.0,11.38463982176812,12.7,1.1194261527129708e-05,9.192829032847364,0.9809233862848824,-3.535854411325111,0.0,1.0,0.0 -137,2.0,1.259130671531958,1.2,0.0,0.0,0.9751262574836432,-4.7054864161861145,1.0,0.0,0.0 -137,3.0,3.987247126517867,1.6,0.0,0.0,0.9686901978993384,-5.781538391921842,1.0,0.0,0.0 -137,4.0,49.42087885762936,19.0,-1.7897483481124855e-08,24.29664563755415,0.9623621120912116,-8.497059615246892,0.0,1.0,0.0 -137,5.0,0.0,0.0,0.0,0.0,0.968759442136422,-6.703019414017757,1.0,0.0,0.0 -137,6.0,11.961741379553605,10.9,0.0,0.0,0.959757977292053,-7.697726073862992,1.0,0.0,0.0 -137,7.0,15.739133394149476,30.0,-1.9472874230170905e-08,33.031023722441546,0.9686035347221356,-7.12599452424438,0.0,1.0,0.0 -137,8.0,0.0,0.0,0.0,0.0,1.025237093083601,-6.703019416282932,1.0,0.0,0.0 -137,9.0,3.0428991228688984,2.0,0.0,0.0,0.976283891658946,-12.13084305982627,1.0,0.0,0.0 -137,10.0,0.0,0.0,-1.930265293278005e-08,17.674982155297513,1.0599226093274214,-6.703019418399852,0.0,1.0,0.0 -137,11.0,5.875943133815803,7.5,0.0,0.0,1.0182815059149724,-9.980190409536734,1.0,0.0,0.0 -137,12.0,0.0,0.0,-1.4968037182297254e-08,14.422253431421908,1.037738389280339,-9.980190410672948,0.0,1.0,0.0 -137,13.0,3.2527542347908915,1.6,0.0,0.0,1.0039961809869151,-10.661434244194632,1.0,0.0,0.0 -137,14.0,4.302029794400856,2.5,0.0,0.0,0.9957409593843553,-10.844071144968783,1.0,0.0,0.0 -137,15.0,1.836232229317439,1.8,0.0,0.0,1.0130362067179175,-10.088365774482597,1.0,0.0,0.0 -137,16.0,4.721740018244843,5.8,0.0,0.0,0.9696493315766942,-12.258590607107974,1.0,0.0,0.0 -137,17.0,1.6788408953759442,0.9,0.0,0.0,0.9795725372181874,-11.619554550534543,1.0,0.0,0.0 -137,18.0,4.984058908147333,3.4,0.0,0.0,0.9723330811240132,-11.992312776264802,1.0,0.0,0.0 -137,19.0,1.1542031155709616,0.7,0.0,0.0,0.9726321196167532,-12.05405691488285,1.0,0.0,0.0 -137,20.0,9.181161146587192,11.2,0.0,0.0,0.9677172527815102,-12.23181871453316,1.0,0.0,0.0 -137,21.0,0.0,0.0,0.0,0.0,0.968810757495796,-12.207658932872825,1.0,0.0,0.0 -137,22.0,1.6788408953759442,1.6,0.0,0.0,0.9810399096189416,-11.434652129478255,1.0,0.0,0.0 -137,23.0,4.564348684303347,6.7,0.0,0.0,0.9683050251232986,-12.104139723763856,1.0,0.0,0.0 -137,24.0,0.0,0.0,0.0,0.0,0.9685525175158848,-9.149638349755223,1.0,0.0,0.0 -137,25.0,1.836232229317439,2.3,0.0,0.0,0.9545011344588362,-9.21945316186775,1.0,0.0,0.0 -137,26.0,0.0,0.0,0.0,0.0,0.9756867410993436,-9.069042205732554,1.0,0.0,0.0 -137,27.0,0.0,0.0,0.0,0.0,0.9660252892803776,-7.021784840421161,1.0,0.0,0.0 -137,28.0,1.259130671531958,0.9,0.0,0.0,0.9620681431350752,-9.683774910864557,1.0,0.0,0.0 -137,29.0,5.561160465932814,1.9,0.0,0.0,0.954676786404366,-10.14815926112054,1.0,0.0,0.0 -138,0.0,0.0,0.0,158.71155515529557,0.0029308716297471,1.0,0.0,0.0,0.0,1.0 -138,1.0,11.38463982176812,12.7,8.282388294506726e-06,0.7935622797878708,0.9810931124073023,-3.2876040086182576,0.0,1.0,0.0 -138,2.0,1.259130671531958,1.2,0.0,0.0,0.974602348562269,-5.780294789940646,1.0,0.0,0.0 -138,3.0,3.987247126517867,1.6,0.0,0.0,0.9682400636134753,-7.116448315149723,1.0,0.0,0.0 -138,4.0,49.42087885762936,19.0,2.820499466407672e-09,32.84643601934938,0.9400061901277847,-16.20040797293243,0.0,1.0,0.0 -138,5.0,0.0,0.0,0.0,0.0,0.9659129385638426,-8.821870480196978,1.0,0.0,0.0 -138,6.0,11.961741379553605,10.9,0.0,0.0,0.9484470169051044,-12.07663886141582,1.0,0.0,0.0 -138,7.0,15.739133394149476,30.0,8.180430203663715e-09,35.39466821330312,0.9658450799359436,-9.454671620381816,0.0,1.0,0.0 -138,8.0,0.0,0.0,0.0,0.0,1.017050848932932,-10.71802593315094,1.0,0.0,0.0 -138,9.0,3.0428991228688984,2.0,0.0,0.0,1.0103361626219356,-11.69814406543907,1.0,0.0,0.0 -138,10.0,0.0,0.0,9.816793486255329e-09,21.8757916833982,1.0599778286050894,-10.718025932065729,0.0,1.0,0.0 -138,11.0,5.875943133815803,7.5,0.0,0.0,1.0325202465960954,-10.338085793130398,1.0,0.0,0.0 -138,12.0,0.0,0.0,3.555260106440541e-09,20.79592109846244,1.0599868970048083,-10.338085792869828,0.0,1.0,0.0 -138,13.0,3.2527542347908915,1.6,0.0,0.0,1.0232519168248364,-10.70211546383768,1.0,0.0,0.0 -138,14.0,4.302029794400856,2.5,0.0,0.0,1.0218185974474758,-10.691555529638755,1.0,0.0,0.0 -138,15.0,1.836232229317439,1.8,0.0,0.0,1.0112018040835822,-10.656649050499157,1.0,0.0,0.0 -138,16.0,4.721740018244843,5.8,0.0,0.0,0.9975222295402724,-10.999774169633634,1.0,0.0,0.0 -138,17.0,1.6788408953759442,0.9,0.0,0.0,1.0181142916666357,-10.840398836515645,1.0,0.0,0.0 -138,18.0,4.984058908147333,3.4,0.0,0.0,0.9918150090413428,-12.339868647233732,1.0,0.0,0.0 -138,19.0,1.1542031155709616,0.7,0.0,0.0,0.9958571988969808,-12.210325301240104,1.0,0.0,0.0 -138,20.0,9.181161146587192,11.2,0.0,0.0,0.9985229531551304,-11.920709942228855,1.0,0.0,0.0 -138,21.0,0.0,0.0,0.0,0.0,0.9984513034929902,-11.937820142094818,1.0,0.0,0.0 -138,22.0,1.6788408953759442,1.6,0.0,0.0,1.0169882716164982,-10.790317873754931,1.0,0.0,0.0 -138,23.0,4.564348684303347,6.7,0.0,0.0,0.9819167301462506,-12.281028756238207,1.0,0.0,0.0 -138,24.0,0.0,0.0,0.0,0.0,0.9703765316214604,-12.38450764660029,1.0,0.0,0.0 -138,25.0,1.836232229317439,2.3,0.0,0.0,0.9563523506969928,-12.454056346824812,1.0,0.0,0.0 -138,26.0,0.0,0.0,0.0,0.0,0.9778188376238168,-11.881379243381485,1.0,0.0,0.0 -138,27.0,0.0,0.0,0.0,0.0,0.9585709388308816,-10.261390356111129,1.0,0.0,0.0 -138,28.0,1.259130671531958,0.9,0.0,0.0,0.964231643446716,-12.493397189434535,1.0,0.0,0.0 -138,29.0,5.561160465932814,1.9,0.0,0.0,0.9568573846678736,-12.955685893975309,1.0,0.0,0.0 -139,0.0,0.0,0.0,160.0200837111092,0.0007523409643717,1.0,0.0,0.0,0.0,1.0 -139,1.0,11.38463982176812,12.7,2.092854026057332e-06,3.385845486178667,0.984130903603897,-2.730652989491613,0.0,1.0,0.0 -139,2.0,1.259130671531958,1.2,0.0,0.0,0.9689512438151732,-7.550956423074966,1.0,0.0,0.0 -139,3.0,3.987247126517867,1.6,0.0,0.0,0.9618221854022008,-9.32167123236688,1.0,0.0,0.0 -139,4.0,49.42087885762936,19.0,-1.089517353100537e-09,33.92089369737023,0.9400012091296804,-17.843370092121898,0.0,1.0,0.0 -139,5.0,0.0,0.0,0.0,0.0,0.9637862732709148,-10.397545793667172,1.0,0.0,0.0 -139,6.0,11.961741379553605,10.9,0.0,0.0,0.9471576398177634,-13.682065712326384,1.0,0.0,0.0 -139,7.0,15.739133394149476,30.0,2.981731337575744e-09,39.99183544629143,0.9663488210263724,-10.883058834034124,0.0,1.0,0.0 -139,8.0,0.0,0.0,0.0,0.0,1.0227272171994055,-10.397545793266708,1.0,0.0,0.0 -139,9.0,3.0428991228688984,2.0,0.0,0.0,0.9932063263912246,-14.683524618002684,1.0,0.0,0.0 -139,10.0,0.0,0.0,3.3867729717995183e-09,18.988399007075337,1.0599878972844337,-10.397545792894388,0.0,1.0,0.0 -139,11.0,5.875943133815803,7.5,0.0,0.0,1.0208053731171765,-13.684297662971488,1.0,0.0,0.0 -139,12.0,0.0,0.0,2.1488681981644284e-09,23.993237228131512,1.0527138837190455,-13.684297662811089,0.0,1.0,0.0 -139,13.0,3.2527542347908915,1.6,0.0,0.0,1.0068062108670273,-14.2210946238742,1.0,0.0,0.0 -139,14.0,4.302029794400856,2.5,0.0,0.0,0.999777273644762,-14.267804703415056,1.0,0.0,0.0 -139,15.0,1.836232229317439,1.8,0.0,0.0,1.002404448742705,-14.163360958534373,1.0,0.0,0.0 -139,16.0,4.721740018244843,5.8,0.0,0.0,0.991844054856418,-14.623871165632984,1.0,0.0,0.0 -139,17.0,1.6788408953759442,0.9,0.0,0.0,0.9827542155491604,-14.847744555923889,1.0,0.0,0.0 -139,18.0,4.984058908147333,3.4,0.0,0.0,0.9749723393981335,-15.102891025338632,1.0,0.0,0.0 -139,19.0,1.1542031155709616,0.7,0.0,0.0,0.9906373711802542,-14.785844805847,1.0,0.0,0.0 -139,20.0,9.181161146587192,11.2,0.0,0.0,0.9836579967042184,-14.779801244046697,1.0,0.0,0.0 -139,21.0,0.0,0.0,0.0,0.0,0.9843772309517742,-14.755514013059964,1.0,0.0,0.0 -139,22.0,1.6788408953759442,1.6,0.0,0.0,0.9880926518513212,-14.47242486701304,1.0,0.0,0.0 -139,23.0,4.564348684303347,6.7,0.0,0.0,0.9791627114318484,-14.612155632580432,1.0,0.0,0.0 -139,24.0,0.0,0.0,0.0,0.0,0.9757422428099448,-13.907727388257063,1.0,0.0,0.0 -139,25.0,1.836232229317439,2.3,0.0,0.0,0.961797466181908,-13.976502050753256,1.0,0.0,0.0 -139,26.0,0.0,0.0,0.0,0.0,0.9805026993586414,-13.396126595907552,1.0,0.0,0.0 -139,27.0,0.0,0.0,0.0,0.0,0.9623349643605884,-10.814480610770044,1.0,0.0,0.0 -139,28.0,1.259130671531958,0.9,0.0,0.0,0.9738168387810506,-13.591205504886169,1.0,0.0,0.0 -139,29.0,5.561160465932814,1.9,0.0,0.0,0.9492544764998232,-15.085137150616308,1.0,0.0,0.0 -140,0.0,0.0,0.0,155.05273373623788,0.0046700897827989,1.0,0.0,0.0,0.0,1.0 -140,1.0,11.38463982176812,12.7,3.5002552271363317e-06,12.42503038072335,0.9809562472025536,-3.6298199671955538,0.0,1.0,0.0 -140,2.0,1.259130671531958,1.2,0.0,0.0,0.9747030385343428,-4.446007041427715,1.0,0.0,0.0 -140,3.0,3.987247126517867,1.6,0.0,0.0,0.9681368196492712,-5.459465549052459,1.0,0.0,0.0 -140,4.0,49.42087885762936,19.0,6.9075427285908795e-09,22.35893804284412,0.9620416531050454,-9.74303446396013,0.0,1.0,0.0 -140,5.0,0.0,0.0,0.0,0.0,0.9668813367917576,-6.3865254513825045,1.0,0.0,0.0 -140,6.0,11.961741379553605,10.9,0.0,0.0,0.9548122667486812,-6.827500414842656,1.0,0.0,0.0 -140,7.0,15.739133394149476,30.0,2.5850717626001228e-09,30.79796896453783,0.9579885218447748,-9.352538162021398,0.0,1.0,0.0 -140,8.0,0.0,0.0,0.0,0.0,1.0161889421336523,-8.17665600527335,1.0,0.0,0.0 -140,9.0,3.0428991228688984,2.0,0.0,0.0,1.0079822640868026,-9.10507460699904,1.0,0.0,0.0 -140,10.0,0.0,0.0,4.9611433740782416e-09,22.325441487939248,1.0599974605709523,-8.176656004724455,0.0,1.0,0.0 -140,11.0,5.875943133815803,7.5,0.0,0.0,1.0167006523845732,-8.727837049014548,1.0,0.0,0.0 -140,12.0,0.0,0.0,6.9548747333797485e-09,11.738707905186317,1.0326157601158528,-8.727837048483167,0.0,1.0,0.0 -140,13.0,3.2527542347908915,1.6,0.0,0.0,1.0055976053835127,-9.170380791671477,1.0,0.0,0.0 -140,14.0,4.302029794400856,2.5,0.0,0.0,1.0020574709459396,-9.187108756614366,1.0,0.0,0.0 -140,15.0,1.836232229317439,1.8,0.0,0.0,1.0069188203493653,-8.982792649934373,1.0,0.0,0.0 -140,16.0,4.721740018244843,5.8,0.0,0.0,1.0033297564725492,-9.155812510216624,1.0,0.0,0.0 -140,17.0,1.6788408953759442,0.9,0.0,0.0,0.9951572668548354,-9.48290961353489,1.0,0.0,0.0 -140,18.0,4.984058908147333,3.4,0.0,0.0,0.9933182671089684,-9.566548152472562,1.0,0.0,0.0 -140,19.0,1.1542031155709616,0.7,0.0,0.0,0.9963801589608068,-9.481087574208496,1.0,0.0,0.0 -140,20.0,9.181161146587192,11.2,0.0,0.0,0.9975253545735172,-9.281052491577368,1.0,0.0,0.0 -140,21.0,0.0,0.0,0.0,0.0,0.997893986695506,-9.28351704665656,1.0,0.0,0.0 -140,22.0,1.6788408953759442,1.6,0.0,0.0,0.9930109962496168,-9.363905091022325,1.0,0.0,0.0 -140,23.0,4.564348684303347,6.7,0.0,0.0,0.987559216123862,-9.465126458761198,1.0,0.0,0.0 -140,24.0,0.0,0.0,0.0,0.0,0.9795127979899324,-9.342354406695812,1.0,0.0,0.0 -140,25.0,1.836232229317439,2.3,0.0,0.0,0.9656232761467908,-9.410592886491722,1.0,0.0,0.0 -140,26.0,0.0,0.0,0.0,0.0,0.9815254273131798,-9.197447266434798,1.0,0.0,0.0 -140,27.0,0.0,0.0,0.0,0.0,0.9632963855145328,-7.288631001772724,1.0,0.0,0.0 -140,28.0,1.259130671531958,0.9,0.0,0.0,0.967992474940736,-9.804788515683974,1.0,0.0,0.0 -140,29.0,5.561160465932814,1.9,0.0,0.0,0.960647747412885,-10.263468033810025,1.0,0.0,0.0 -141,0.0,0.0,0.0,155.3108372992106,0.0003829773961072,1.0,0.0,0.0,0.0,1.0 -141,1.0,11.38463982176812,12.7,3.176777196315855e-07,9.699828892656768,0.9801278010693996,-3.728763042155984,0.0,1.0,0.0 -141,2.0,1.259130671531958,1.2,0.0,0.0,0.9766446074616548,-4.182147703615123,1.0,0.0,0.0 -141,3.0,3.987247126517867,1.6,0.0,0.0,0.9705031214940728,-5.131248366201391,1.0,0.0,0.0 -141,4.0,49.42087885762936,19.0,2.123897438174394e-10,35.39399825457508,0.9594875427041656,-11.440414967129565,0.0,1.0,0.0 -141,5.0,0.0,0.0,0.0,0.0,0.9714311174079724,-5.921504197035055,1.0,0.0,0.0 -141,6.0,11.961741379553605,10.9,0.0,0.0,0.9412720382081612,-12.028985725003324,1.0,0.0,0.0 -141,7.0,15.739133394149476,30.0,5.816887739439801e-10,28.460199894293453,0.9695575790090634,-6.322041914489335,0.0,1.0,0.0 -141,8.0,0.0,0.0,0.0,0.0,1.0158662676639685,-7.5893662519273954,1.0,0.0,0.0 -141,9.0,3.0428991228688984,2.0,0.0,0.0,1.0099739010476696,-8.45674291892138,1.0,0.0,0.0 -141,10.0,0.0,0.0,8.05610634496926e-10,17.351271574672538,1.050230758130394,-7.589366251837405,0.0,1.0,0.0 -141,11.0,5.875943133815803,7.5,0.0,0.0,1.0116836651679946,-8.319697108541787,1.0,0.0,0.0 -141,12.0,0.0,0.0,7.460563785070553e-10,8.591963425782708,1.023436952719449,-8.319697108483991,0.0,1.0,0.0 -141,13.0,3.2527542347908915,1.6,0.0,0.0,0.9998930195012096,-8.778285836649546,1.0,0.0,0.0 -141,14.0,4.302029794400856,2.5,0.0,0.0,0.9956491140206812,-8.792181045653226,1.0,0.0,0.0 -141,15.0,1.836232229317439,1.8,0.0,0.0,1.0050814106861128,-8.486663354417448,1.0,0.0,0.0 -141,16.0,4.721740018244843,5.8,0.0,0.0,1.0040734082764675,-8.550077983889608,1.0,0.0,0.0 -141,17.0,1.6788408953759442,0.9,0.0,0.0,0.9916988014319228,-9.0018600184977,1.0,0.0,0.0 -141,18.0,4.984058908147333,3.4,0.0,0.0,0.991612026197732,-9.033269860044694,1.0,0.0,0.0 -141,19.0,1.1542031155709616,0.7,0.0,0.0,0.9956075012266415,-8.920158160911727,1.0,0.0,0.0 -141,20.0,9.181161146587192,11.2,0.0,0.0,1.001864924253612,-8.572473799924435,1.0,0.0,0.0 -141,21.0,0.0,0.0,0.0,0.0,1.0029714040849451,-8.556874413110702,1.0,0.0,0.0 -141,22.0,1.6788408953759442,1.6,0.0,0.0,0.981279954264944,-9.077776653071318,1.0,0.0,0.0 -141,23.0,4.564348684303347,6.7,0.0,0.0,0.968840072884071,-9.328832055798696,1.0,0.0,0.0 -141,24.0,0.0,0.0,0.0,0.0,0.9707792306402736,-8.97856112547627,1.0,0.0,0.0 -141,25.0,1.836232229317439,2.3,0.0,0.0,0.9567610408090812,-9.04805127193644,1.0,0.0,0.0 -141,26.0,0.0,0.0,0.0,0.0,0.9789853158096156,-8.680625854083045,1.0,0.0,0.0 -141,27.0,0.0,0.0,0.0,0.0,0.9681872554564324,-6.280437049218702,1.0,0.0,0.0 -141,28.0,1.259130671531958,0.9,0.0,0.0,0.9654152398491728,-9.291166187617115,1.0,0.0,0.0 -141,29.0,5.561160465932814,1.9,0.0,0.0,0.9580503009946634,-9.752314429677265,1.0,0.0,0.0 -142,0.0,0.0,0.0,155.5279947257945,0.0007302679841281,1.0,0.0,0.0,0.0,1.0 -142,1.0,11.38463982176812,12.7,1.2036852827432138e-06,9.235161577187723,0.9819481948485624,-3.244422353329893,0.0,1.0,0.0 -142,2.0,1.259130671531958,1.2,0.0,0.0,0.9733155728699668,-5.600274423618706,1.0,0.0,0.0 -142,3.0,3.987247126517867,1.6,0.0,0.0,0.9666145788123992,-6.893828363526271,1.0,0.0,0.0 -142,4.0,49.42087885762936,19.0,4.1174818080444944e-10,25.55016002567312,0.9620928388369157,-9.217196499825556,0.0,1.0,0.0 -142,5.0,0.0,0.0,0.0,0.0,0.9639182765896064,-8.423946137916383,1.0,0.0,0.0 -142,6.0,11.961741379553605,10.9,0.0,0.0,0.9565926467232074,-9.0096899049142,1.0,0.0,0.0 -142,7.0,15.739133394149476,30.0,9.123401320787473e-10,32.603412959387924,0.9632475420486843,-8.854239943512214,0.0,1.0,0.0 -142,8.0,0.0,0.0,0.0,0.0,1.0132264923807748,-10.625450036191197,1.0,0.0,0.0 -142,9.0,3.0428991228688984,2.0,0.0,0.0,1.0106671247741117,-11.760627015110265,1.0,0.0,0.0 -142,10.0,0.0,0.0,1.6413168870865227e-09,16.893160127373037,1.0467935441284906,-10.625450036006775,0.0,1.0,0.0 -142,11.0,5.875943133815803,7.5,0.0,0.0,1.0294715344823324,-10.647905792907302,1.0,0.0,0.0 -142,12.0,0.0,0.0,6.988939420452164e-10,22.06767641934201,1.0586545636294056,-10.647905792855866,0.0,1.0,0.0 -142,13.0,3.2527542347908915,1.6,0.0,0.0,1.0187408675552398,-11.113780394285538,1.0,0.0,0.0 -142,14.0,4.302029794400856,2.5,0.0,0.0,1.0152278586438117,-11.169229274914551,1.0,0.0,0.0 -142,15.0,1.836232229317439,1.8,0.0,0.0,1.0080855638579802,-10.968384817319825,1.0,0.0,0.0 -142,16.0,4.721740018244843,5.8,0.0,0.0,0.9943624049762766,-11.313664379497268,1.0,0.0,0.0 -142,17.0,1.6788408953759442,0.9,0.0,0.0,1.0046466797894475,-11.69260088196213,1.0,0.0,0.0 -142,18.0,4.984058908147333,3.4,0.0,0.0,1.0006236783586293,-11.915165007618384,1.0,0.0,0.0 -142,19.0,1.1542031155709616,0.7,0.0,0.0,1.002500906652034,-11.904729493354653,1.0,0.0,0.0 -142,20.0,9.181161146587192,11.2,0.0,0.0,0.9993586774143266,-11.905439253731563,1.0,0.0,0.0 -142,21.0,0.0,0.0,0.0,0.0,0.9994527207784462,-11.897768805509912,1.0,0.0,0.0 -142,22.0,1.6788408953759442,1.6,0.0,0.0,1.0103658525575467,-11.269284311780634,1.0,0.0,0.0 -142,23.0,4.564348684303347,6.7,0.0,0.0,0.9857481330678156,-11.919386857686794,1.0,0.0,0.0 -142,24.0,0.0,0.0,0.0,0.0,0.9785656244096568,-11.421512929680793,1.0,0.0,0.0 -142,25.0,1.836232229317439,2.3,0.0,0.0,0.9646622642466024,-11.48988550590691,1.0,0.0,0.0 -142,26.0,0.0,0.0,0.0,0.0,0.9810110387323252,-11.04145697217851,1.0,0.0,0.0 -142,27.0,0.0,0.0,0.0,0.0,0.9606520679869756,-8.760904352278551,1.0,0.0,0.0 -142,28.0,1.259130671531958,0.9,0.0,0.0,0.96747058546995,-11.649444012500922,1.0,0.0,0.0 -142,29.0,5.561160465932814,1.9,0.0,0.0,0.9601217742535384,-12.108621839400024,1.0,0.0,0.0 -143,0.0,0.0,0.0,155.75045156475073,0.000101342626646,1.0,0.0,0.0,0.0,1.0 -143,1.0,11.38463982176812,12.7,1.9299872918850003e-07,7.916625624636907,0.9807041589224516,-3.435957595669891,0.0,1.0,0.0 -143,2.0,1.259130671531958,1.2,0.0,0.0,0.9759187585608186,-5.061118036786502,1.0,0.0,0.0 -143,3.0,3.987247126517867,1.6,0.0,0.0,0.9697201141387892,-6.222712244298599,1.0,0.0,0.0 -143,4.0,49.42087885762936,19.0,2.6830609388459947e-10,35.377042689989736,0.9600631022742628,-11.138034052931284,0.0,1.0,0.0 -143,5.0,0.0,0.0,0.0,0.0,0.9688510568062008,-7.445247562778679,1.0,0.0,0.0 -143,6.0,11.961741379553605,10.9,0.0,0.0,0.9418604254252452,-11.725917415215148,1.0,0.0,0.0 -143,7.0,15.739133394149476,30.0,-1.9598611054409317e-10,21.05381802799177,0.9644712665506876,-7.78676196347865,0.0,1.0,0.0 -143,8.0,0.0,0.0,0.0,0.0,1.0212071935722633,-9.128896076084986,1.0,0.0,0.0 -143,9.0,3.0428991228688984,2.0,0.0,0.0,1.0172151331776456,-9.995938212024097,1.0,0.0,0.0 -143,10.0,0.0,0.0,-3.5154595781711434e-10,19.75127387070125,1.0599656656459986,-9.128896076123691,0.0,1.0,0.0 -143,11.0,5.875943133815803,7.5,0.0,0.0,1.026562677697808,-9.820053999737508,1.0,0.0,0.0 -143,12.0,0.0,0.0,-2.8772358065680637e-10,20.680130771606127,1.054030740966717,-9.82005399975884,0.0,1.0,0.0 -143,13.0,3.2527542347908915,1.6,0.0,0.0,1.0153159212270095,-10.242651857466797,1.0,0.0,0.0 -143,14.0,4.302029794400856,2.5,0.0,0.0,1.0116464977198385,-10.242070770729176,1.0,0.0,0.0 -143,15.0,1.836232229317439,1.8,0.0,0.0,1.0051118626677311,-10.1423771447681,1.0,0.0,0.0 -143,16.0,4.721740018244843,5.8,0.0,0.0,0.991346849280232,-10.489731674263648,1.0,0.0,0.0 -143,17.0,1.6788408953759442,0.9,0.0,0.0,1.004718019680676,-10.474088216163784,1.0,0.0,0.0 -143,18.0,4.984058908147333,3.4,0.0,0.0,1.002838987241101,-10.521376058272743,1.0,0.0,0.0 -143,19.0,1.1542031155709616,0.7,0.0,0.0,1.0058430112776078,-10.419197586493135,1.0,0.0,0.0 -143,20.0,9.181161146587192,11.2,0.0,0.0,1.0066377200391,-10.199292896618548,1.0,0.0,0.0 -143,21.0,0.0,0.0,0.0,0.0,1.006931302756273,-10.211453515279654,1.0,0.0,0.0 -143,22.0,1.6788408953759442,1.6,0.0,0.0,1.0019169460367272,-10.415471252543854,1.0,0.0,0.0 -143,23.0,4.564348684303347,6.7,0.0,0.0,0.9954954496550028,-10.515062313446355,1.0,0.0,0.0 -143,24.0,0.0,0.0,0.0,0.0,0.984121223433741,-10.615685053359334,1.0,0.0,0.0 -143,25.0,1.836232229317439,2.3,0.0,0.0,0.9702986344450112,-10.683276722017457,1.0,0.0,0.0 -143,26.0,0.0,0.0,0.0,0.0,0.9862745392012188,-9.307152214162668,1.0,0.0,0.0 -143,27.0,0.0,0.0,0.0,0.0,0.9666341922053816,-7.714835413675236,1.0,0.0,0.0 -143,28.0,1.259130671531958,0.9,0.0,0.0,0.9728104379761096,-9.908579710621453,1.0,0.0,0.0 -143,29.0,5.561160465932814,1.9,0.0,0.0,0.9655031937964632,-10.36269711128675,1.0,0.0,0.0 -144,0.0,0.0,0.0,154.76847200863764,0.000355559774956,1.0,0.0,0.0,0.0,1.0 -144,1.0,11.38463982176812,12.7,4.052946763590322e-07,9.793453244258217,0.9809355299610067,-3.547020330286619,0.0,1.0,0.0 -144,2.0,1.259130671531958,1.2,0.0,0.0,0.9751475159096216,-4.652499542163657,1.0,0.0,0.0 -144,3.0,3.987247126517867,1.6,0.0,0.0,0.9687094050970472,-5.7157321071868905,1.0,0.0,0.0 -144,4.0,49.42087885762936,19.0,-4.741665250618955e-10,23.76733752531058,0.9616900801885354,-8.537299328391393,0.0,1.0,0.0 -144,5.0,0.0,0.0,0.0,0.0,0.9684674603786648,-6.78782602313683,1.0,0.0,0.0 -144,6.0,11.961741379553605,10.9,0.0,0.0,0.9593007224634132,-7.7647967640093665,1.0,0.0,0.0 -144,7.0,15.739133394149476,30.0,-4.2182237103363436e-10,30.3465522197678,0.967480831692383,-7.19791506414346,0.0,1.0,0.0 -144,8.0,0.0,0.0,0.0,0.0,1.0164128160838697,-8.523513947241666,1.0,0.0,0.0 -144,9.0,3.0428991228688984,2.0,0.0,0.0,1.0075931509623297,-9.42552835976051,1.0,0.0,0.0 -144,10.0,0.0,0.0,-2.4738471013681756e-10,22.18098983193091,1.059940231570366,-8.523513947269034,0.0,1.0,0.0 -144,11.0,5.875943133815803,7.5,0.0,0.0,1.0141640068746864,-8.974997018968793,1.0,0.0,0.0 -144,12.0,0.0,0.0,-5.535540948573502e-10,9.384844284096864,1.0269578926722311,-8.97499701901142,0.0,1.0,0.0 -144,13.0,3.2527542347908915,1.6,0.0,0.0,1.0033754601722809,-9.419224962244328,1.0,0.0,0.0 -144,14.0,4.302029794400856,2.5,0.0,0.0,1.0001597522750254,-9.443326295692623,1.0,0.0,0.0 -144,15.0,1.836232229317439,1.8,0.0,0.0,1.0052528378632113,-9.266273851875996,1.0,0.0,0.0 -144,16.0,4.721740018244843,5.8,0.0,0.0,1.0025526108695555,-9.463362248105868,1.0,0.0,0.0 -144,17.0,1.6788408953759442,0.9,0.0,0.0,0.993774583039496,-9.762823737888784,1.0,0.0,0.0 -144,18.0,4.984058908147333,3.4,0.0,0.0,0.9922446763783298,-9.860282072762484,1.0,0.0,0.0 -144,19.0,1.1542031155709616,0.7,0.0,0.0,0.995473441829716,-9.781859978287086,1.0,0.0,0.0 -144,20.0,9.181161146587192,11.2,0.0,0.0,0.9971701430223018,-9.585536352236495,1.0,0.0,0.0 -144,21.0,0.0,0.0,0.0,0.0,0.9975525951144626,-9.582840568654,1.0,0.0,0.0 -144,22.0,1.6788408953759442,1.6,0.0,0.0,0.9919096180186104,-9.609851511079125,1.0,0.0,0.0 -144,23.0,4.564348684303347,6.7,0.0,0.0,0.9875245844388107,-9.696290724272734,1.0,0.0,0.0 -144,24.0,0.0,0.0,0.0,0.0,0.9812848097536006,-9.434809925511596,1.0,0.0,0.0 -144,25.0,1.836232229317439,2.3,0.0,0.0,0.9674211023077156,-9.502798595458357,1.0,0.0,0.0 -144,26.0,0.0,0.0,0.0,0.0,0.9843597244101692,-9.201643544762929,1.0,0.0,0.0 -144,27.0,0.0,0.0,0.0,0.0,0.966495760734834,-7.126471631148942,1.0,0.0,0.0 -144,28.0,1.259130671531958,0.9,0.0,0.0,0.9708679495567448,-9.8054449436356,1.0,0.0,0.0 -144,29.0,5.561160465932814,1.9,0.0,0.0,0.9635456397753956,-10.26139343746723,1.0,0.0,0.0 -145,0.0,0.0,0.0,154.76847200863764,0.000355559774956,1.0,0.0,0.0,0.0,1.0 -145,1.0,11.38463982176812,12.7,4.052946763590322e-07,9.793453244258217,0.9809355299610067,-3.547020330286619,0.0,1.0,0.0 -145,2.0,1.259130671531958,1.2,0.0,0.0,0.9751475159096216,-4.652499542163657,1.0,0.0,0.0 -145,3.0,3.987247126517867,1.6,0.0,0.0,0.9687094050970472,-5.7157321071868905,1.0,0.0,0.0 -145,4.0,49.42087885762936,19.0,-4.741665250618955e-10,23.76733752531058,0.9616900801885354,-8.537299328391393,0.0,1.0,0.0 -145,5.0,0.0,0.0,0.0,0.0,0.9684674603786648,-6.78782602313683,1.0,0.0,0.0 -145,6.0,11.961741379553605,10.9,0.0,0.0,0.9593007224634132,-7.7647967640093665,1.0,0.0,0.0 -145,7.0,15.739133394149476,30.0,-4.2182237103363436e-10,30.3465522197678,0.967480831692383,-7.19791506414346,0.0,1.0,0.0 -145,8.0,0.0,0.0,0.0,0.0,1.0164128160838697,-8.523513947241666,1.0,0.0,0.0 -145,9.0,3.0428991228688984,2.0,0.0,0.0,1.0075931509623297,-9.42552835976051,1.0,0.0,0.0 -145,10.0,0.0,0.0,-2.4738471013681756e-10,22.18098983193091,1.059940231570366,-8.523513947269034,0.0,1.0,0.0 -145,11.0,5.875943133815803,7.5,0.0,0.0,1.0141640068746864,-8.974997018968793,1.0,0.0,0.0 -145,12.0,0.0,0.0,-5.535540948573502e-10,9.384844284096864,1.0269578926722311,-8.97499701901142,0.0,1.0,0.0 -145,13.0,3.2527542347908915,1.6,0.0,0.0,1.0033754601722809,-9.419224962244328,1.0,0.0,0.0 -145,14.0,4.302029794400856,2.5,0.0,0.0,1.0001597522750254,-9.443326295692623,1.0,0.0,0.0 -145,15.0,1.836232229317439,1.8,0.0,0.0,1.0052528378632113,-9.266273851875996,1.0,0.0,0.0 -145,16.0,4.721740018244843,5.8,0.0,0.0,1.0025526108695555,-9.463362248105868,1.0,0.0,0.0 -145,17.0,1.6788408953759442,0.9,0.0,0.0,0.993774583039496,-9.762823737888784,1.0,0.0,0.0 -145,18.0,4.984058908147333,3.4,0.0,0.0,0.9922446763783298,-9.860282072762484,1.0,0.0,0.0 -145,19.0,1.1542031155709616,0.7,0.0,0.0,0.995473441829716,-9.781859978287086,1.0,0.0,0.0 -145,20.0,9.181161146587192,11.2,0.0,0.0,0.9971701430223018,-9.585536352236495,1.0,0.0,0.0 -145,21.0,0.0,0.0,0.0,0.0,0.9975525951144626,-9.582840568654,1.0,0.0,0.0 -145,22.0,1.6788408953759442,1.6,0.0,0.0,0.9919096180186104,-9.609851511079125,1.0,0.0,0.0 -145,23.0,4.564348684303347,6.7,0.0,0.0,0.9875245844388107,-9.696290724272734,1.0,0.0,0.0 -145,24.0,0.0,0.0,0.0,0.0,0.9812848097536006,-9.434809925511596,1.0,0.0,0.0 -145,25.0,1.836232229317439,2.3,0.0,0.0,0.9674211023077156,-9.502798595458357,1.0,0.0,0.0 -145,26.0,0.0,0.0,0.0,0.0,0.9843597244101692,-9.201643544762929,1.0,0.0,0.0 -145,27.0,0.0,0.0,0.0,0.0,0.966495760734834,-7.126471631148942,1.0,0.0,0.0 -145,28.0,1.259130671531958,0.9,0.0,0.0,0.9708679495567448,-9.8054449436356,1.0,0.0,0.0 -145,29.0,5.561160465932814,1.9,0.0,0.0,0.9635456397753956,-10.26139343746723,1.0,0.0,0.0 -146,0.0,0.0,0.0,156.36245419648256,0.0001450603971164,1.0,0.0,0.0,0.0,1.0 -146,1.0,11.38463982176812,12.7,2.890821567057723e-07,31.13770993178912,0.9827799220689386,-4.144263747060034,0.0,1.0,0.0 -146,2.0,1.259130671531958,1.2,0.0,0.0,0.967787212646717,-3.12471399282748,1.0,0.0,0.0 -146,3.0,3.987247126517867,1.6,0.0,0.0,0.9595448522450148,-3.817968720024872,1.0,0.0,0.0 -146,4.0,49.42087885762936,19.0,-8.437362867082412e-11,26.51250618150047,0.9612859934716828,-10.45260005171262,0.0,1.0,0.0 -146,5.0,0.0,0.0,0.0,0.0,0.9594116824264544,-9.956739684026749,1.0,0.0,0.0 -146,6.0,11.961741379553605,10.9,0.0,0.0,0.9535076860386312,-10.419780376716917,1.0,0.0,0.0 -146,7.0,15.739133394149476,30.0,-7.232835608409049e-11,33.66141847664585,0.9595098405324348,-10.384824064421176,0.0,1.0,0.0 -146,8.0,0.0,0.0,0.0,0.0,0.9923893771375656,-11.38851699073708,1.0,0.0,0.0 -146,9.0,3.0428991228688984,2.0,0.0,0.0,0.9864477935996978,-12.141463572515333,1.0,0.0,0.0 -146,10.0,0.0,0.0,-7.363423799181226e-11,11.276878417139564,1.01548755013297,-11.388516990745789,0.0,1.0,0.0 -146,11.0,5.875943133815803,7.5,0.0,0.0,0.9771376482278352,-8.179602790503516,1.0,0.0,0.0 -146,12.0,0.0,0.0,0.0,0.0,0.9771376482278352,-8.179602790503516,0.0,1.0,0.0 -146,13.0,3.2527542347908915,1.6,0.0,0.0,0.9687559007871064,-8.564209216043277,1.0,0.0,0.0 -146,14.0,4.302029794400856,2.5,0.0,0.0,0.9653987704927538,-9.2199993729224,1.0,0.0,0.0 -146,15.0,1.836232229317439,1.8,0.0,0.0,0.9545191995199432,-8.535873729454968,1.0,0.0,0.0 -146,16.0,4.721740018244843,5.8,0.0,0.0,0.9400001308296236,-8.921619376245078,1.0,0.0,0.0 -146,17.0,1.6788408953759442,0.9,0.0,0.0,0.9614758109746884,-9.386821889491497,1.0,0.0,0.0 -146,18.0,4.984058908147333,3.4,0.0,0.0,0.9674578446731106,-12.815273163880356,1.0,0.0,0.0 -146,19.0,1.1542031155709616,0.7,0.0,0.0,0.9716019350452804,-12.67915299773602,1.0,0.0,0.0 -146,20.0,9.181161146587192,11.2,0.0,0.0,0.9750874065887012,-12.17608292695851,1.0,0.0,0.0 -146,21.0,0.0,0.0,0.0,0.0,0.9752702648974604,-12.130306257643486,1.0,0.0,0.0 -146,22.0,1.6788408953759442,1.6,0.0,0.0,0.961341296002769,-10.324550472139457,1.0,0.0,0.0 -146,23.0,4.564348684303347,6.7,0.0,0.0,0.9633510228447684,-11.652225208239267,1.0,0.0,0.0 -146,24.0,0.0,0.0,0.0,0.0,0.960669067036095,-11.922796865161102,1.0,0.0,0.0 -146,25.0,1.836232229317439,2.3,0.0,0.0,0.9464988731109945,-11.99377968888144,1.0,0.0,0.0 -146,26.0,0.0,0.0,0.0,0.0,0.9663122481037836,-12.01183693275664,1.0,0.0,0.0 -146,27.0,0.0,0.0,0.0,0.0,0.956924307381439,-10.242853113697,1.0,0.0,0.0 -146,28.0,1.259130671531958,0.9,0.0,0.0,0.952553783241341,-12.638724118128897,1.0,0.0,0.0 -146,29.0,5.561160465932814,1.9,0.0,0.0,0.9450862701878012,-13.112496131133415,1.0,0.0,0.0 -147,0.0,0.0,0.0,154.76847200863764,0.000355559774956,1.0,0.0,0.0,0.0,1.0 -147,1.0,11.38463982176812,12.7,4.052946763590322e-07,9.793453244258217,0.9809355299610067,-3.547020330286619,0.0,1.0,0.0 -147,2.0,1.259130671531958,1.2,0.0,0.0,0.9751475159096216,-4.652499542163657,1.0,0.0,0.0 -147,3.0,3.987247126517867,1.6,0.0,0.0,0.9687094050970472,-5.7157321071868905,1.0,0.0,0.0 -147,4.0,49.42087885762936,19.0,-4.741665250618955e-10,23.76733752531058,0.9616900801885354,-8.537299328391393,0.0,1.0,0.0 -147,5.0,0.0,0.0,0.0,0.0,0.9684674603786648,-6.78782602313683,1.0,0.0,0.0 -147,6.0,11.961741379553605,10.9,0.0,0.0,0.9593007224634132,-7.7647967640093665,1.0,0.0,0.0 -147,7.0,15.739133394149476,30.0,-4.2182237103363436e-10,30.3465522197678,0.967480831692383,-7.19791506414346,0.0,1.0,0.0 -147,8.0,0.0,0.0,0.0,0.0,1.0164128160838697,-8.523513947241666,1.0,0.0,0.0 -147,9.0,3.0428991228688984,2.0,0.0,0.0,1.0075931509623297,-9.42552835976051,1.0,0.0,0.0 -147,10.0,0.0,0.0,-2.4738471013681756e-10,22.18098983193091,1.059940231570366,-8.523513947269034,0.0,1.0,0.0 -147,11.0,5.875943133815803,7.5,0.0,0.0,1.0141640068746864,-8.974997018968793,1.0,0.0,0.0 -147,12.0,0.0,0.0,-5.535540948573502e-10,9.384844284096864,1.0269578926722311,-8.97499701901142,0.0,1.0,0.0 -147,13.0,3.2527542347908915,1.6,0.0,0.0,1.0033754601722809,-9.419224962244328,1.0,0.0,0.0 -147,14.0,4.302029794400856,2.5,0.0,0.0,1.0001597522750254,-9.443326295692623,1.0,0.0,0.0 -147,15.0,1.836232229317439,1.8,0.0,0.0,1.0052528378632113,-9.266273851875996,1.0,0.0,0.0 -147,16.0,4.721740018244843,5.8,0.0,0.0,1.0025526108695555,-9.463362248105868,1.0,0.0,0.0 -147,17.0,1.6788408953759442,0.9,0.0,0.0,0.993774583039496,-9.762823737888784,1.0,0.0,0.0 -147,18.0,4.984058908147333,3.4,0.0,0.0,0.9922446763783298,-9.860282072762484,1.0,0.0,0.0 -147,19.0,1.1542031155709616,0.7,0.0,0.0,0.995473441829716,-9.781859978287086,1.0,0.0,0.0 -147,20.0,9.181161146587192,11.2,0.0,0.0,0.9971701430223018,-9.585536352236495,1.0,0.0,0.0 -147,21.0,0.0,0.0,0.0,0.0,0.9975525951144626,-9.582840568654,1.0,0.0,0.0 -147,22.0,1.6788408953759442,1.6,0.0,0.0,0.9919096180186104,-9.609851511079125,1.0,0.0,0.0 -147,23.0,4.564348684303347,6.7,0.0,0.0,0.9875245844388107,-9.696290724272734,1.0,0.0,0.0 -147,24.0,0.0,0.0,0.0,0.0,0.9812848097536006,-9.434809925511596,1.0,0.0,0.0 -147,25.0,1.836232229317439,2.3,0.0,0.0,0.9674211023077156,-9.502798595458357,1.0,0.0,0.0 -147,26.0,0.0,0.0,0.0,0.0,0.9843597244101692,-9.201643544762929,1.0,0.0,0.0 -147,27.0,0.0,0.0,0.0,0.0,0.966495760734834,-7.126471631148942,1.0,0.0,0.0 -147,28.0,1.259130671531958,0.9,0.0,0.0,0.9708679495567448,-9.8054449436356,1.0,0.0,0.0 -147,29.0,5.561160465932814,1.9,0.0,0.0,0.9635456397753956,-10.26139343746723,1.0,0.0,0.0 -148,0.0,0.0,0.0,116.840368458212,5.232210220640354e-07,1.0,0.0,0.0,0.0,1.0 -148,1.0,11.38463982176812,12.7,37.31595547764758,19.472908339170942,0.9857883014491894,-2.4451986993192167,0.0,1.0,0.0 -148,2.0,1.259130671531958,1.2,0.0,0.0,0.9780255607620816,-4.098794739153189,1.0,0.0,0.0 -148,3.0,3.987247126517867,1.6,0.0,0.0,0.972197847282898,-5.027446360675824,1.0,0.0,0.0 -148,4.0,49.42087885762936,19.0,0.0,0.0,0.9400000002792896,-7.139934221307334,0.0,1.0,0.0 -148,5.0,0.0,0.0,0.0,0.0,0.9704265666994202,-5.862903626293772,1.0,0.0,0.0 -148,6.0,11.961741379553605,10.9,0.0,0.0,0.9514544105930696,-6.665438573878952,1.0,0.0,0.0 -148,7.0,15.739133394149476,30.0,-2.145452806386772e-09,39.999998374058606,0.9713835874008444,-6.596806841048558,0.0,1.0,0.0 -148,8.0,0.0,0.0,0.0,0.0,1.0261280985864518,-5.862903626471417,1.0,0.0,0.0 -148,9.0,3.0428991228688984,2.0,0.0,0.0,0.9767020040779636,-11.14358050693931,1.0,0.0,0.0 -148,10.0,0.0,0.0,-1.5177361974292087e-09,17.26163890781026,1.0599999939937064,-5.862903626637712,0.0,1.0,0.0 -148,11.0,5.875943133815803,7.5,0.0,0.0,1.0330947402643136,-9.043747337003415,1.0,0.0,0.0 -148,12.0,0.0,0.0,-2.8343971117985776e-10,20.37111885576415,1.0599999917915954,-9.043747337024175,0.0,1.0,0.0 -148,13.0,3.2527542347908915,1.6,0.0,0.0,1.0170849819761223,-9.707548053650376,1.0,0.0,0.0 -148,14.0,4.302029794400856,2.5,0.0,0.0,1.0070721342852402,-9.843686346428909,1.0,0.0,0.0 -148,15.0,1.836232229317439,1.8,0.0,0.0,0.9632569003374244,-11.489172501191636,1.0,0.0,0.0 -148,16.0,4.721740018244843,5.8,0.0,0.0,0.967852950917478,-11.33012937387912,1.0,0.0,0.0 -148,17.0,1.6788408953759442,0.9,0.0,0.0,0.9871194683959534,-10.613786059485582,1.0,0.0,0.0 -148,18.0,4.984058908147333,3.4,0.0,0.0,0.9776217345956362,-10.98692484642091,1.0,0.0,0.0 -148,19.0,1.1542031155709616,0.7,0.0,0.0,0.9767073725913564,-11.050558767690012,1.0,0.0,0.0 -148,20.0,9.181161146587192,11.2,0.0,0.0,0.9685600638784808,-11.20528538729448,1.0,0.0,0.0 -148,21.0,0.0,0.0,0.0,0.0,0.9697898977200248,-11.168794495025724,1.0,0.0,0.0 -148,22.0,1.6788408953759442,1.6,0.0,0.0,0.9888948079871418,-10.35032104381446,1.0,0.0,0.0 -148,23.0,4.564348684303347,6.7,0.0,0.0,0.971425651541716,-10.913321783983552,1.0,0.0,0.0 -148,24.0,0.0,0.0,0.0,0.0,0.9690581516684172,-10.47658595422742,1.0,0.0,0.0 -148,25.0,1.836232229317439,2.3,0.0,0.0,0.955014319976438,-10.546326839263376,1.0,0.0,0.0 -148,26.0,0.0,0.0,0.0,0.0,0.974580952229042,-10.128991346510832,1.0,0.0,0.0 -148,27.0,0.0,0.0,0.0,0.0,0.9594731899733068,-7.748742759965454,1.0,0.0,0.0 -148,28.0,1.259130671531958,0.9,0.0,0.0,0.9609460081746112,-10.745139187378696,1.0,0.0,0.0 -148,29.0,5.561160465932814,1.9,0.0,0.0,0.953545751564122,-11.21061610922847,1.0,0.0,0.0 -149,0.0,0.0,0.0,139.21962739164982,2.8564181775436737e-05,1.0,0.0,0.0,0.0,1.0 -149,1.0,11.290912858688207,12.7,16.355272179995822,7.783948542043987,0.9734878430850864,-4.611821537480434,0.0,1.0,0.0 -149,2.0,1.2487645557996174,1.2,0.0,0.0,1.0008251369149992,-0.1399248123635612,1.0,0.0,0.0 -149,3.0,3.9544210933654553,1.6,0.0,0.0,0.9523218801193188,-9.304007760993558,1.0,0.0,0.0 -149,4.0,49.014008815134986,19.0,-6.064397636358784e-11,25.662845631858232,0.9530896159242378,-10.62334358681358,0.0,1.0,0.0 -149,5.0,0.0,0.0,0.0,0.0,0.954263242759545,-9.791455679646573,1.0,0.0,0.0 -149,6.0,11.863263280096367,10.9,0.0,0.0,0.9471429892877335,-10.3943424492666,1.0,0.0,0.0 -149,7.0,15.609556947495218,30.0,-6.498786646314406e-11,29.80059178238544,0.9531301454416476,-10.196285031532335,0.0,1.0,0.0 -149,8.0,0.0,0.0,0.0,0.0,1.0044849928308428,-11.80471629899289,1.0,0.0,0.0 -149,9.0,3.017847676515742,2.0,0.0,0.0,0.9950804149148452,-12.8485592503723,1.0,0.0,0.0 -149,10.0,0.0,0.0,-1.0851548931083812e-10,23.99909559451297,1.0519384524149007,-11.804716299005126,0.0,1.0,0.0 -149,11.0,5.827567927064881,7.5,0.0,0.0,1.0097857754819777,-12.473425979143768,1.0,0.0,0.0 -149,12.0,0.0,0.0,-1.0154221950271845e-10,16.125244655021902,1.0316681440016309,-12.473425979151584,0.0,1.0,0.0 -149,13.0,3.2259751024823453,1.6,0.0,0.0,0.9808230149597952,-13.253762480100598,1.0,0.0,0.0 -149,14.0,4.26661223231536,2.5,0.0,0.0,0.9913539141736138,-13.082508684743887,1.0,0.0,0.0 -149,15.0,1.8211149772077757,1.8,0.0,0.0,0.9973762434028738,-12.714807045160256,1.0,0.0,0.0 -149,16.0,4.682867084248566,5.8,0.0,0.0,0.9914349071994052,-12.900607459894834,1.0,0.0,0.0 -149,17.0,1.6650194077328235,0.9,0.0,0.0,0.9836142460746936,-13.328398410622537,1.0,0.0,0.0 -149,18.0,4.943026366706819,3.4,0.0,0.0,0.981293954027789,-13.381175301614007,1.0,0.0,0.0 -149,19.0,1.144700842816316,0.7,0.0,0.0,0.984138601896696,-13.277852270854538,1.0,0.0,0.0 -149,20.0,9.105574886038877,11.2,0.0,0.0,0.9830457762728008,-13.072754110904748,1.0,0.0,0.0 -149,21.0,0.0,0.0,0.0,0.0,0.9829534025620412,-13.089729812859764,1.0,0.0,0.0 -149,22.0,1.6650194077328235,1.6,0.0,0.0,0.986387703346724,-13.185828198983854,1.0,0.0,0.0 -149,23.0,4.526771514773613,6.7,0.0,0.0,0.9659566525861728,-13.429137425063034,1.0,0.0,0.0 -149,24.0,0.0,0.0,0.0,0.0,0.954246401541014,-13.533030994714853,1.0,0.0,0.0 -149,25.0,1.8211149772077757,2.3,0.0,0.0,0.9400195123782856,-13.601314862183138,1.0,0.0,0.0 -149,26.0,0.0,0.0,0.0,0.0,0.9717234623080494,-11.70467136321745,1.0,0.0,0.0 -149,27.0,0.0,0.0,0.0,0.0,0.95274358546334,-10.077903423031392,1.0,0.0,0.0 -149,28.0,1.2487645557996174,0.9,0.0,0.0,0.958110469438693,-12.317765804764116,1.0,0.0,0.0 -149,29.0,5.515376788114978,1.9,0.0,0.0,0.9507289672168971,-12.78149132755387,1.0,0.0,0.0 -150,0.0,0.0,0.0,153.67731576217224,0.0335485089579812,1.0,0.0,0.0,0.0,1.0 -150,1.0,11.290912858688207,12.7,4.105541847115644e-06,22.95084714234533,0.9824446340594828,-3.5504867151174784,0.0,1.0,0.0 -150,2.0,1.2487645557996174,1.2,0.0,0.0,0.9711741585221156,-4.552365095186957,1.0,0.0,0.0 -150,3.0,3.9544210933654553,1.6,0.0,0.0,0.9637992584569636,-5.593139756699819,1.0,0.0,0.0 -150,4.0,49.014008815134986,19.0,9.440811235795024e-09,28.16493787374353,0.961922970434408,-8.507630525876097,0.0,1.0,0.0 -150,5.0,0.0,0.0,0.0,0.0,0.9581786987553544,-6.55681003910605,1.0,0.0,0.0 -150,6.0,11.863263280096367,10.9,0.0,0.0,0.9532987184347969,-7.611434722996917,1.0,0.0,0.0 -150,7.0,15.609556947495218,30.0,0.0,0.0,0.9456748482601236,-6.775381442400532,0.0,1.0,0.0 -150,8.0,0.0,0.0,0.0,0.0,1.0134860349267552,-8.275164066024674,1.0,0.0,0.0 -150,9.0,3.017847676515742,2.0,0.0,0.0,1.007091093236738,-9.1591248930191,1.0,0.0,0.0 -150,10.0,0.0,0.0,9.391489689014216e-09,23.703548578987306,1.0599987149416614,-8.27516406498284,0.0,1.0,0.0 -150,11.0,5.827567927064881,7.5,0.0,0.0,1.025451240385288,-8.920648643648546,1.0,0.0,0.0 -150,12.0,0.0,0.0,9.868990510344234e-09,21.85781948848943,1.054471417486741,-8.920648642916442,0.0,1.0,0.0 -150,13.0,3.2259751024823453,1.6,0.0,0.0,1.0131230539760765,-9.34221891994084,1.0,0.0,0.0 -150,14.0,4.26661223231536,2.5,0.0,0.0,1.0083776373186728,-9.318444045459534,1.0,0.0,0.0 -150,15.0,1.8211149772077757,1.8,0.0,0.0,1.0116306257341046,-9.093455382509063,1.0,0.0,0.0 -150,16.0,4.682867084248566,5.8,0.0,0.0,1.004176621177483,-9.232830952118256,1.0,0.0,0.0 -150,17.0,1.6650194077328235,0.9,0.0,0.0,0.9990045873876908,-9.579982667954203,1.0,0.0,0.0 -150,18.0,4.943026366706819,3.4,0.0,0.0,0.9956827137936556,-9.645133995626976,1.0,0.0,0.0 -150,19.0,1.144700842816316,0.7,0.0,0.0,0.9979395943410708,-9.551935895701348,1.0,0.0,0.0 -150,20.0,9.105574886038877,11.2,0.0,0.0,0.9968079086746248,-9.321153559960868,1.0,0.0,0.0 -150,21.0,0.0,0.0,0.0,0.0,0.9972272178479712,-9.320146922444842,1.0,0.0,0.0 -150,22.0,1.6650194077328235,1.6,0.0,0.0,0.99669941129848,-9.433348017194634,1.0,0.0,0.0 -150,23.0,4.526771514773613,6.7,0.0,0.0,0.9876836984510238,-9.4555175704514,1.0,0.0,0.0 -150,24.0,0.0,0.0,0.0,0.0,0.9765267465769298,-9.132787267532086,1.0,0.0,0.0 -150,25.0,1.8211149772077757,2.3,0.0,0.0,0.9626341115553488,-9.19794561126648,1.0,0.0,0.0 -150,26.0,0.0,0.0,0.0,0.0,0.976548799795956,-8.867516554667931,1.0,0.0,0.0 -150,27.0,0.0,0.0,0.0,0.0,0.954185987730701,-6.858477952827847,1.0,0.0,0.0 -150,28.0,1.2487645557996174,0.9,0.0,0.0,0.9630069250518272,-9.474484077691002,1.0,0.0,0.0 -150,29.0,5.515376788114978,1.9,0.0,0.0,0.9556641113890112,-9.933474298508068,1.0,0.0,0.0 -151,0.0,0.0,0.0,153.44384728064887,0.0002962875583101,1.0,0.0,0.0,0.0,1.0 -151,1.0,11.290912858688207,12.7,3.362327574101524e-07,9.667248746861816,0.9810636998342832,-3.51578297994456,0.0,1.0,0.0 -151,2.0,1.2487645557996174,1.2,0.0,0.0,0.9753188927741684,-4.61162911781783,1.0,0.0,0.0 -151,3.0,3.9544210933654553,1.6,0.0,0.0,0.9689140396908026,-5.665152004270584,1.0,0.0,0.0 -151,4.0,49.014008815134986,19.0,-3.9647459050773644e-10,23.69315712313772,0.9619542476196692,-8.462023481894184,0.0,1.0,0.0 -151,5.0,0.0,0.0,0.0,0.0,0.968693922659472,-6.728207121979274,1.0,0.0,0.0 -151,6.0,11.863263280096367,10.9,0.0,0.0,0.9595606159274072,-7.6957368453441,1.0,0.0,0.0 -151,7.0,15.609556947495218,30.0,-3.6038421444308727e-10,30.31017948375477,0.9677106626703248,-7.134618014230933,0.0,1.0,0.0 -151,8.0,0.0,0.0,0.0,0.0,1.016554044666718,-8.449163753408204,1.0,0.0,0.0 -151,9.0,3.017847676515742,2.0,0.0,0.0,1.0077548602388158,-9.343589784626532,1.0,0.0,0.0 -151,10.0,0.0,0.0,-2.226047645550401e-10,22.109382638329567,1.0599409121428982,-8.449163753432826,0.0,1.0,0.0 -151,11.0,5.827567927064881,7.5,0.0,0.0,1.0142493499658722,-8.896523039098726,1.0,0.0,0.0 -151,12.0,0.0,0.0,-4.771253215624524e-10,9.29309087311456,1.0269186372400103,-8.896523039135474,0.0,1.0,0.0 -151,13.0,3.2259751024823453,1.6,0.0,0.0,1.0035086508885502,-9.335895365840456,1.0,0.0,0.0 -151,14.0,4.26661223231536,2.5,0.0,0.0,1.0003122290293465,-9.359395363480225,1.0,0.0,0.0 -151,15.0,1.8211149772077757,1.8,0.0,0.0,1.0053879938411536,-9.184686428097995,1.0,0.0,0.0 -151,16.0,4.682867084248566,5.8,0.0,0.0,1.0027145995432745,-9.380175633191588,1.0,0.0,0.0 -151,17.0,1.6650194077328235,0.9,0.0,0.0,0.9939642078322348,-9.67567347995466,1.0,0.0,0.0 -151,18.0,4.943026366706819,3.4,0.0,0.0,0.9924468671940192,-9.772278120745398,1.0,0.0,0.0 -151,19.0,1.144700842816316,0.7,0.0,0.0,0.9956673721652676,-9.695077472269372,1.0,0.0,0.0 -151,20.0,9.105574886038877,11.2,0.0,0.0,0.9973593972675228,-9.500708639250265,1.0,0.0,0.0 -151,21.0,0.0,0.0,0.0,0.0,0.9977414272772864,-9.49814024758814,1.0,0.0,0.0 -151,22.0,1.6650194077328235,1.6,0.0,0.0,0.992101734370082,-9.523666206281677,1.0,0.0,0.0 -151,23.0,4.526771514773613,6.7,0.0,0.0,0.9877494596401396,-9.609270075354749,1.0,0.0,0.0 -151,24.0,0.0,0.0,0.0,0.0,0.9815303652641524,-9.349854423806816,1.0,0.0,0.0 -151,25.0,1.8211149772077757,2.3,0.0,0.0,0.9677106159811968,-9.414340534673777,1.0,0.0,0.0 -151,26.0,0.0,0.0,0.0,0.0,0.9845993041435744,-9.119860216952244,1.0,0.0,0.0 -151,27.0,0.0,0.0,0.0,0.0,0.9667348019810194,-7.063705894909378,1.0,0.0,0.0 -151,28.0,1.2487645557996174,0.9,0.0,0.0,0.9711743975393656,-9.71680923152647,1.0,0.0,0.0 -151,29.0,5.515376788114978,1.9,0.0,0.0,0.963895210307666,-10.168061022180693,1.0,0.0,0.0 -152,0.0,0.0,0.0,153.6992656434323,0.0038820503809766,1.0,0.0,0.0,0.0,1.0 -152,1.0,11.290912858688207,12.7,3.962961179419123e-06,10.022535996312158,0.981078282853972,-3.521591748126507,0.0,1.0,0.0 -152,2.0,1.2487645557996174,1.2,0.0,0.0,0.9751697786480182,-4.620533253746265,1.0,0.0,0.0 -152,3.0,3.9544210933654553,1.6,0.0,0.0,0.968731414178634,-5.676268103781247,1.0,0.0,0.0 -152,4.0,49.014008815134986,19.0,4.297285795646216e-09,24.07597465618757,0.962115820871635,-8.473636834308698,0.0,1.0,0.0 -152,5.0,0.0,0.0,0.0,0.0,0.9682169453115622,-6.729921512941154,1.0,0.0,0.0 -152,6.0,11.863263280096367,10.9,0.0,0.0,0.959343892481608,-7.701291010216114,1.0,0.0,0.0 -152,7.0,15.609556947495218,30.0,-1.251704919045585e-09,30.240310505975728,0.9579141106878972,-9.638760352802604,0.0,1.0,0.0 -152,8.0,0.0,0.0,0.0,0.0,1.016576925484772,-8.48464298941696,1.0,0.0,0.0 -152,9.0,3.017847676515742,2.0,0.0,0.0,1.0080603776638162,-9.395888157081972,1.0,0.0,0.0 -152,10.0,0.0,0.0,2.3048538114268942e-10,22.11119002493749,1.059966300441969,-8.48464298939147,0.0,1.0,0.0 -152,11.0,5.827567927064881,7.5,0.0,0.0,1.0155923584311586,-8.954070510496988,1.0,0.0,0.0 -152,12.0,0.0,0.0,4.322520570307287e-09,10.358883458055129,1.0296768135250138,-8.954070510165423,0.0,1.0,0.0 -152,13.0,3.2259751024823453,1.6,0.0,0.0,1.00469455155477,-9.399485994273537,1.0,0.0,0.0 -152,14.0,4.26661223231536,2.5,0.0,0.0,1.001287732241159,-9.426138561221144,1.0,0.0,0.0 -152,15.0,1.8211149772077757,1.8,0.0,0.0,1.006290692737564,-9.237581372126844,1.0,0.0,0.0 -152,16.0,4.682867084248566,5.8,0.0,0.0,1.0032083264760563,-9.433284292471098,1.0,0.0,0.0 -152,17.0,1.6650194077328235,0.9,0.0,0.0,0.9947111258073634,-9.736757454299385,1.0,0.0,0.0 -152,18.0,4.943026366706819,3.4,0.0,0.0,0.993056505350012,-9.830154673209012,1.0,0.0,0.0 -152,19.0,1.144700842816316,0.7,0.0,0.0,0.996202246192615,-9.751404814359253,1.0,0.0,0.0 -152,20.0,9.105574886038877,11.2,0.0,0.0,0.9976057790435005,-9.567114977350949,1.0,0.0,0.0 -152,21.0,0.0,0.0,0.0,0.0,0.9979665583676318,-9.569087511313327,1.0,0.0,0.0 -152,22.0,1.6650194077328235,1.6,0.0,0.0,0.9925863711199616,-9.617179635102405,1.0,0.0,0.0 -152,23.0,4.526771514773613,6.7,0.0,0.0,0.9875825858956492,-9.739459742157043,1.0,0.0,0.0 -152,24.0,0.0,0.0,0.0,0.0,0.9798915309718016,-9.63293527998944,1.0,0.0,0.0 -152,25.0,1.8211149772077757,2.3,0.0,0.0,0.9660479950411311,-9.697640411836852,1.0,0.0,0.0 -152,26.0,0.0,0.0,0.0,0.0,0.982110077423354,-9.499682545385973,1.0,0.0,0.0 -152,27.0,0.0,0.0,0.0,0.0,0.9642778579643844,-7.614905626106439,1.0,0.0,0.0 -152,28.0,1.2487645557996174,0.9,0.0,0.0,0.9686492263800268,-10.099702507421256,1.0,0.0,0.0 -152,29.0,5.515376788114978,1.9,0.0,0.0,0.9613504872998618,-10.553325738009622,1.0,0.0,0.0 -153,0.0,0.0,0.0,154.29319684255483,4.274747337986451,1.0,0.0,0.0,0.0,1.0 -153,1.0,11.290912858688207,12.7,0.0,0.0,0.9797539113195676,-3.194558208149375,0.0,1.0,0.0 -153,2.0,1.2487645557996174,1.2,0.0,0.0,0.9728611395087384,-5.510953858821364,1.0,0.0,0.0 -153,3.0,3.9544210933654553,1.6,0.0,0.0,0.9660345673342444,-6.783432019331041,1.0,0.0,0.0 -153,4.0,49.014008815134986,19.0,4.298370049784871e-09,32.329007429473336,0.9686628068691344,-8.756058294972519,0.0,1.0,0.0 -153,5.0,0.0,0.0,0.0,0.0,0.9653330987891612,-7.37336906173952,1.0,0.0,0.0 -153,6.0,11.863263280096367,10.9,0.0,0.0,0.9602700666897354,-8.192088536636808,1.0,0.0,0.0 -153,7.0,15.609556947495218,30.0,2.8801705305825673e-09,32.7308508061313,0.962545714207045,-10.5043510376552,0.0,1.0,0.0 -153,8.0,0.0,0.0,0.0,0.0,1.0324450845530202,-12.513415373169565,1.0,0.0,0.0 -153,9.0,3.017847676515742,2.0,0.0,0.0,1.017876918512506,-12.513415373254178,1.0,0.0,0.0 -153,10.0,0.0,0.0,1.410870327632123e-09,14.03831070870978,1.0599921620867192,-12.51341537301593,0.0,1.0,0.0 -153,11.0,5.827567927064881,7.5,0.0,0.0,1.0349213167632711,-10.680914879161405,1.0,0.0,0.0 -153,12.0,0.0,0.0,5.259113990559711e-09,18.982450944631463,1.059992652180379,-10.680914878776854,0.0,1.0,0.0 -153,13.0,3.2259751024823453,1.6,0.0,0.0,1.0248389654522383,-11.102024412817864,1.0,0.0,0.0 -153,14.0,4.26661223231536,2.5,0.0,0.0,1.022133920322576,-11.13366401753148,1.0,0.0,0.0 -153,15.0,1.8211149772077757,1.8,0.0,0.0,1.0205606561582483,-11.534258063284195,1.0,0.0,0.0 -153,16.0,4.682867084248566,5.8,0.0,0.0,1.0147471940487325,-12.297551305543625,1.0,0.0,0.0 -153,17.0,1.6650194077328235,0.9,0.0,0.0,0.9925320849967546,-13.428431650788133,1.0,0.0,0.0 -153,18.0,4.943026366706819,3.4,0.0,0.0,0.994776854113643,-13.336970269355737,1.0,0.0,0.0 -153,19.0,1.144700842816316,0.7,0.0,0.0,0.9999833880718962,-13.16236562052747,1.0,0.0,0.0 -153,20.0,9.105574886038877,11.2,0.0,0.0,1.0077786057651863,-12.541248071774952,1.0,0.0,0.0 -153,21.0,0.0,0.0,0.0,0.0,1.008231813093608,-12.498276532665862,1.0,0.0,0.0 -153,22.0,1.6650194077328235,1.6,0.0,0.0,1.0100030551899168,-11.585579906822897,1.0,0.0,0.0 -153,23.0,4.526771514773613,6.7,0.0,0.0,1.000413086827972,-12.070652300647511,1.0,0.0,0.0 -153,24.0,0.0,0.0,0.0,0.0,0.9896203027572316,-11.312849374000644,1.0,0.0,0.0 -153,25.0,1.8211149772077757,2.3,0.0,0.0,0.9759167692326864,-11.376270513593376,1.0,0.0,0.0 -153,26.0,0.0,0.0,0.0,0.0,0.9896708858443688,-10.776035384409322,1.0,0.0,0.0 -153,27.0,0.0,0.0,0.0,0.0,0.9637216254627788,-8.390427629233209,1.0,0.0,0.0 -153,28.0,1.2487645557996174,0.9,0.0,0.0,0.9830713925004924,-10.964952361273632,1.0,0.0,0.0 -153,29.0,5.515376788114978,1.9,0.0,0.0,0.9589064732515596,-12.415879947601168,1.0,0.0,0.0 -154,0.0,0.0,0.0,154.21651364198553,0.0102076596853351,1.0,0.0,0.0,0.0,1.0 -154,1.0,11.290912858688207,12.7,7.013789686575297e-06,11.043856055985472,0.9825862340996314,-3.222368913457642,0.0,1.0,0.0 -154,2.0,1.2487645557996174,1.2,0.0,0.0,0.9719872666861608,-5.542512879295839,1.0,0.0,0.0 -154,3.0,3.9544210933654553,1.6,0.0,0.0,0.964964281203726,-6.8232372715925385,1.0,0.0,0.0 -154,4.0,49.014008815134986,19.0,-3.311957435765145e-09,25.97902877576756,0.9633919215224892,-9.107982249011108,0.0,1.0,0.0 -154,5.0,0.0,0.0,0.0,0.0,0.9646500342354264,-8.276281434504346,1.0,0.0,0.0 -154,6.0,11.863263280096367,10.9,0.0,0.0,0.9575905892194756,-8.873890310508981,1.0,0.0,0.0 -154,7.0,15.609556947495218,30.0,-7.2985500140420206e-09,35.55788378483716,0.965280795896587,-8.723823260690008,0.0,1.0,0.0 -154,8.0,0.0,0.0,0.0,0.0,1.02316555623152,-8.276281435969713,1.0,0.0,0.0 -154,9.0,3.017847676515742,2.0,0.0,0.0,0.9883899488363744,-12.528533375296965,1.0,0.0,0.0 -154,10.0,0.0,0.0,-1.2409016131710358e-08,18.761582826273425,1.059981384189196,-8.276281437333292,0.0,1.0,0.0 -154,11.0,5.827567927064881,7.5,0.0,0.0,1.0120093709616451,-11.197532756837123,1.0,0.0,0.0 -154,12.0,0.0,0.0,-8.288150637102025e-09,16.623554078000723,1.0345060737833955,-11.197532757472146,0.0,1.0,0.0 -154,13.0,3.2259751024823453,1.6,0.0,0.0,0.9986310316226328,-11.729459083590369,1.0,0.0,0.0 -154,14.0,4.26661223231536,2.5,0.0,0.0,0.9922958716897328,-11.782964411145736,1.0,0.0,0.0 -154,15.0,1.8211149772077757,1.8,0.0,0.0,0.9950671208531608,-11.825928478783132,1.0,0.0,0.0 -154,16.0,4.682867084248566,5.8,0.0,0.0,0.9862842159474302,-12.408607795231456,1.0,0.0,0.0 -154,17.0,1.6650194077328235,0.9,0.0,0.0,0.981750476871799,-12.371243559299849,1.0,0.0,0.0 -154,18.0,4.943026366706819,3.4,0.0,0.0,0.977798321561508,-12.629638996975691,1.0,0.0,0.0 -154,19.0,1.144700842816316,0.7,0.0,0.0,0.9797921706622392,-12.633787144521026,1.0,0.0,0.0 -154,20.0,9.105574886038877,11.2,0.0,0.0,0.980120059870904,-12.647076244972846,1.0,0.0,0.0 -154,21.0,0.0,0.0,0.0,0.0,0.9812484725638468,-12.63109825825566,1.0,0.0,0.0 -154,22.0,1.6650194077328235,1.6,0.0,0.0,0.977193197967268,-11.970105091492584,1.0,0.0,0.0 -154,23.0,4.526771514773613,6.7,0.0,0.0,0.963756380061366,-12.08794518522662,1.0,0.0,0.0 -154,24.0,0.0,0.0,0.0,0.0,0.9648061278835406,-11.568600871203394,1.0,0.0,0.0 -154,25.0,1.8211149772077757,2.3,0.0,0.0,0.9507396701382792,-11.635375856253582,1.0,0.0,0.0 -154,26.0,0.0,0.0,0.0,0.0,0.9724460086640692,-11.168427100482946,1.0,0.0,0.0 -154,27.0,0.0,0.0,0.0,0.0,0.9599507997518534,-8.629486777960963,1.0,0.0,0.0 -154,28.0,1.2487645557996174,0.9,0.0,0.0,0.9588437138835908,-11.78059817718341,1.0,0.0,0.0 -154,29.0,5.515376788114978,1.9,0.0,0.0,0.9514680316096784,-12.24360992446758,1.0,0.0,0.0 -155,0.0,0.0,0.0,153.6345868052532,0.0015190049563962,1.0,0.0,0.0,0.0,1.0 -155,1.0,11.290912858688207,12.7,1.974990692722333e-06,7.951093270833695,0.980807831017197,-3.5046533140367804,0.0,1.0,0.0 -155,2.0,1.2487645557996174,1.2,0.0,0.0,0.9760174986375172,-4.658811114076859,1.0,0.0,0.0 -155,3.0,3.9544210933654553,1.6,0.0,0.0,0.9697809588833224,-5.7234516845721535,1.0,0.0,0.0 -155,4.0,49.014008815134986,19.0,3.1307340989077552e-09,23.645217998889635,0.962034591330843,-8.43183122493242,0.0,1.0,0.0 -155,5.0,0.0,0.0,0.0,0.0,0.9692298375790712,-6.682787371912946,1.0,0.0,0.0 -155,6.0,11.863263280096367,10.9,0.0,0.0,0.9599156242218518,-7.656548749112383,1.0,0.0,0.0 -155,7.0,15.609556947495218,30.0,2.814627842182048e-09,29.982674035053265,0.9681543455053376,-7.086044301488621,0.0,1.0,0.0 -155,8.0,0.0,0.0,0.0,0.0,1.0123041230669851,-8.109789656735918,1.0,0.0,0.0 -155,9.0,3.017847676515742,2.0,0.0,0.0,1.0126072975037717,-8.848319437363488,1.0,0.0,0.0 -155,10.0,0.0,0.0,2.4607909466722582e-09,10.515898394037642,1.033468833554071,-8.109789656455602,0.0,1.0,0.0 -155,11.0,5.827567927064881,7.5,0.0,0.0,1.0233606228474992,-9.52170631274902,1.0,0.0,0.0 -155,12.0,0.0,0.0,2.0952502295758555e-09,22.822128845415254,1.0536837445146174,-9.521706312593157,0.0,1.0,0.0 -155,13.0,3.2259751024823453,1.6,0.0,0.0,1.010096633551119,-9.960553110806211,1.0,0.0,0.0 -155,14.0,4.26661223231536,2.5,0.0,0.0,1.004358987453334,-9.931320433861163,1.0,0.0,0.0 -155,15.0,1.8211149772077757,1.8,0.0,0.0,1.0018922979931346,-9.840081998485903,1.0,0.0,0.0 -155,16.0,4.682867084248566,5.8,0.0,0.0,0.9881030489054644,-10.18537028103401,1.0,0.0,0.0 -155,17.0,1.6650194077328235,0.9,0.0,0.0,0.987481548562211,-10.498925937659893,1.0,0.0,0.0 -155,18.0,4.943026366706819,3.4,0.0,0.0,0.9797648292985464,-10.748469324835058,1.0,0.0,0.0 -155,19.0,1.144700842816316,0.7,0.0,0.0,1.0100967307382396,-8.945633327433535,1.0,0.0,0.0 -155,20.0,9.105574886038877,11.2,0.0,0.0,1.0021522627866464,-9.070898905935168,1.0,0.0,0.0 -155,21.0,0.0,0.0,0.0,0.0,1.0024907103916407,-9.089843452084752,1.0,0.0,0.0 -155,22.0,1.6650194077328235,1.6,0.0,0.0,0.9960267927678144,-9.79920819301153,1.0,0.0,0.0 -155,23.0,4.526771514773613,6.7,0.0,0.0,0.9914638971865272,-9.485653365854365,1.0,0.0,0.0 -155,24.0,0.0,0.0,0.0,0.0,0.9840488172056588,-9.2390026621371,1.0,0.0,0.0 -155,25.0,1.8211149772077757,2.3,0.0,0.0,0.970265460468899,-9.30315436882873,1.0,0.0,0.0 -155,26.0,0.0,0.0,0.0,0.0,0.9863605870223136,-9.018598152008687,1.0,0.0,0.0 -155,27.0,0.0,0.0,0.0,0.0,0.9674107132213648,-7.013888414338044,1.0,0.0,0.0 -155,28.0,1.2487645557996174,0.9,0.0,0.0,0.9729609944850444,-9.61338857086352,1.0,0.0,0.0 -155,29.0,5.515376788114978,1.9,0.0,0.0,0.9656955764193664,-10.06297377337682,1.0,0.0,0.0 -156,0.0,0.0,0.0,153.53837204697354,0.000470412481146,1.0,0.0,0.0,0.0,1.0 -156,1.0,11.290912858688207,12.7,5.39147621738121e-07,8.765821606771318,0.9809541230574528,-3.514180504488692,0.0,1.0,0.0 -156,2.0,1.2487645557996174,1.2,0.0,0.0,0.9756030805417908,-4.624158266028376,1.0,0.0,0.0 -156,3.0,3.9544210933654553,1.6,0.0,0.0,0.969265823814064,-5.680595889409884,1.0,0.0,0.0 -156,4.0,49.014008815134986,19.0,-6.27179874384396e-10,23.50286675581839,0.9619965348156772,-8.458729298869068,0.0,1.0,0.0 -156,5.0,0.0,0.0,0.0,0.0,0.9692753427625552,-6.733683703323973,1.0,0.0,0.0 -156,6.0,11.863263280096367,10.9,0.0,0.0,0.95992389110695,-7.697716707125608,1.0,0.0,0.0 -156,7.0,15.609556947495218,30.0,-4.460179338685498e-10,32.80397929865492,0.9679205024239383,-7.347961963213236,0.0,1.0,0.0 -156,8.0,0.0,0.0,0.0,0.0,1.0168388649897675,-8.530359381696593,1.0,0.0,0.0 -156,9.0,3.017847676515742,2.0,0.0,0.0,1.0080637029766069,-9.464403587720147,1.0,0.0,0.0 -156,10.0,0.0,0.0,-2.381484994151e-10,21.959621116620895,1.0599321986762218,-8.530359381722922,0.0,1.0,0.0 -156,11.0,5.827567927064881,7.5,0.0,0.0,1.0149077799950257,-8.99682450199758,1.0,0.0,0.0 -156,12.0,0.0,0.0,-6.902886212405293e-10,9.580287590978989,1.02795542995775,-8.996824502050655,0.0,1.0,0.0 -156,13.0,3.2259751024823453,1.6,0.0,0.0,1.0040283066774192,-9.451445098899894,1.0,0.0,0.0 -156,14.0,4.26661223231536,2.5,0.0,0.0,1.0005848860326796,-9.487222174003264,1.0,0.0,0.0 -156,15.0,1.8211149772077757,1.8,0.0,0.0,1.005884108839149,-9.292931322903852,1.0,0.0,0.0 -156,16.0,4.682867084248566,5.8,0.0,0.0,1.0030881091681534,-9.497233030807806,1.0,0.0,0.0 -156,17.0,1.6650194077328235,0.9,0.0,0.0,0.9942528051116896,-9.800854461339048,1.0,0.0,0.0 -156,18.0,4.943026366706819,3.4,0.0,0.0,0.9927441356958804,-9.89593067402951,1.0,0.0,0.0 -156,19.0,1.144700842816316,0.7,0.0,0.0,0.99596806349314,-9.818002733233744,1.0,0.0,0.0 -156,20.0,9.105574886038877,11.2,0.0,0.0,0.9974141305084242,-9.649049342271963,1.0,0.0,0.0 -156,21.0,0.0,0.0,0.0,0.0,0.9977121494830664,-9.65525128459869,1.0,0.0,0.0 -156,22.0,1.6650194077328235,1.6,0.0,0.0,0.991665746713059,-9.710984435311277,1.0,0.0,0.0 -156,23.0,4.526771514773613,6.7,0.0,0.0,0.9863861110450892,-9.877441727248678,1.0,0.0,0.0 -156,24.0,0.0,0.0,0.0,0.0,0.9767503390620896,-9.925184495969212,1.0,0.0,0.0 -156,25.0,1.8211149772077757,2.3,0.0,0.0,0.9628609776871956,-9.99031257675426,1.0,0.0,0.0 -156,26.0,0.0,0.0,0.0,0.0,0.9778439885441452,-9.890413065066316,1.0,0.0,0.0 -156,27.0,0.0,0.0,0.0,0.0,0.9597559629313674,-8.185583202140434,1.0,0.0,0.0 -156,28.0,1.2487645557996174,0.9,0.0,0.0,0.964321073151639,-10.495751749057415,1.0,0.0,0.0 -156,29.0,5.515376788114978,1.9,0.0,0.0,0.9569885730902488,-10.95348344751227,1.0,0.0,0.0 -157,0.0,0.0,0.0,153.67731576217224,0.0335485089579812,1.0,0.0,0.0,0.0,1.0 -157,1.0,11.290912858688207,12.7,4.105541847115644e-06,22.95084714234533,0.9824446340594828,-3.5504867151174784,0.0,1.0,0.0 -157,2.0,1.2487645557996174,1.2,0.0,0.0,0.9711741585221156,-4.552365095186957,1.0,0.0,0.0 -157,3.0,3.9544210933654553,1.6,0.0,0.0,0.9637992584569636,-5.593139756699819,1.0,0.0,0.0 -157,4.0,49.014008815134986,19.0,9.440811235795024e-09,28.16493787374353,0.961922970434408,-8.507630525876097,0.0,1.0,0.0 -157,5.0,0.0,0.0,0.0,0.0,0.9581786987553544,-6.55681003910605,1.0,0.0,0.0 -157,6.0,11.863263280096367,10.9,0.0,0.0,0.9532987184347969,-7.611434722996917,1.0,0.0,0.0 -157,7.0,15.609556947495218,30.0,0.0,0.0,0.9456748482601236,-6.775381442400532,0.0,1.0,0.0 -157,8.0,0.0,0.0,0.0,0.0,1.0134860349267552,-8.275164066024674,1.0,0.0,0.0 -157,9.0,3.017847676515742,2.0,0.0,0.0,1.007091093236738,-9.1591248930191,1.0,0.0,0.0 -157,10.0,0.0,0.0,9.391489689014216e-09,23.703548578987306,1.0599987149416614,-8.27516406498284,0.0,1.0,0.0 -157,11.0,5.827567927064881,7.5,0.0,0.0,1.025451240385288,-8.920648643648546,1.0,0.0,0.0 -157,12.0,0.0,0.0,9.868990510344234e-09,21.85781948848943,1.054471417486741,-8.920648642916442,0.0,1.0,0.0 -157,13.0,3.2259751024823453,1.6,0.0,0.0,1.0131230539760765,-9.34221891994084,1.0,0.0,0.0 -157,14.0,4.26661223231536,2.5,0.0,0.0,1.0083776373186728,-9.318444045459534,1.0,0.0,0.0 -157,15.0,1.8211149772077757,1.8,0.0,0.0,1.0116306257341046,-9.093455382509063,1.0,0.0,0.0 -157,16.0,4.682867084248566,5.8,0.0,0.0,1.004176621177483,-9.232830952118256,1.0,0.0,0.0 -157,17.0,1.6650194077328235,0.9,0.0,0.0,0.9990045873876908,-9.579982667954203,1.0,0.0,0.0 -157,18.0,4.943026366706819,3.4,0.0,0.0,0.9956827137936556,-9.645133995626976,1.0,0.0,0.0 -157,19.0,1.144700842816316,0.7,0.0,0.0,0.9979395943410708,-9.551935895701348,1.0,0.0,0.0 -157,20.0,9.105574886038877,11.2,0.0,0.0,0.9968079086746248,-9.321153559960868,1.0,0.0,0.0 -157,21.0,0.0,0.0,0.0,0.0,0.9972272178479712,-9.320146922444842,1.0,0.0,0.0 -157,22.0,1.6650194077328235,1.6,0.0,0.0,0.99669941129848,-9.433348017194634,1.0,0.0,0.0 -157,23.0,4.526771514773613,6.7,0.0,0.0,0.9876836984510238,-9.4555175704514,1.0,0.0,0.0 -157,24.0,0.0,0.0,0.0,0.0,0.9765267465769298,-9.132787267532086,1.0,0.0,0.0 -157,25.0,1.8211149772077757,2.3,0.0,0.0,0.9626341115553488,-9.19794561126648,1.0,0.0,0.0 -157,26.0,0.0,0.0,0.0,0.0,0.976548799795956,-8.867516554667931,1.0,0.0,0.0 -157,27.0,0.0,0.0,0.0,0.0,0.954185987730701,-6.858477952827847,1.0,0.0,0.0 -157,28.0,1.2487645557996174,0.9,0.0,0.0,0.9630069250518272,-9.474484077691002,1.0,0.0,0.0 -157,29.0,5.515376788114978,1.9,0.0,0.0,0.9556641113890112,-9.933474298508068,1.0,0.0,0.0 -158,0.0,0.0,0.0,153.44384728064887,0.0002962875583101,1.0,0.0,0.0,0.0,1.0 -158,1.0,11.290912858688207,12.7,3.362327574101524e-07,9.667248746861816,0.9810636998342832,-3.51578297994456,0.0,1.0,0.0 -158,2.0,1.2487645557996174,1.2,0.0,0.0,0.9753188927741684,-4.61162911781783,1.0,0.0,0.0 -158,3.0,3.9544210933654553,1.6,0.0,0.0,0.9689140396908026,-5.665152004270584,1.0,0.0,0.0 -158,4.0,49.014008815134986,19.0,-3.9647459050773644e-10,23.69315712313772,0.9619542476196692,-8.462023481894184,0.0,1.0,0.0 -158,5.0,0.0,0.0,0.0,0.0,0.968693922659472,-6.728207121979274,1.0,0.0,0.0 -158,6.0,11.863263280096367,10.9,0.0,0.0,0.9595606159274072,-7.6957368453441,1.0,0.0,0.0 -158,7.0,15.609556947495218,30.0,-3.6038421444308727e-10,30.31017948375477,0.9677106626703248,-7.134618014230933,0.0,1.0,0.0 -158,8.0,0.0,0.0,0.0,0.0,1.016554044666718,-8.449163753408204,1.0,0.0,0.0 -158,9.0,3.017847676515742,2.0,0.0,0.0,1.0077548602388158,-9.343589784626532,1.0,0.0,0.0 -158,10.0,0.0,0.0,-2.226047645550401e-10,22.109382638329567,1.0599409121428982,-8.449163753432826,0.0,1.0,0.0 -158,11.0,5.827567927064881,7.5,0.0,0.0,1.0142493499658722,-8.896523039098726,1.0,0.0,0.0 -158,12.0,0.0,0.0,-4.771253215624524e-10,9.29309087311456,1.0269186372400103,-8.896523039135474,0.0,1.0,0.0 -158,13.0,3.2259751024823453,1.6,0.0,0.0,1.0035086508885502,-9.335895365840456,1.0,0.0,0.0 -158,14.0,4.26661223231536,2.5,0.0,0.0,1.0003122290293465,-9.359395363480225,1.0,0.0,0.0 -158,15.0,1.8211149772077757,1.8,0.0,0.0,1.0053879938411536,-9.184686428097995,1.0,0.0,0.0 -158,16.0,4.682867084248566,5.8,0.0,0.0,1.0027145995432745,-9.380175633191588,1.0,0.0,0.0 -158,17.0,1.6650194077328235,0.9,0.0,0.0,0.9939642078322348,-9.67567347995466,1.0,0.0,0.0 -158,18.0,4.943026366706819,3.4,0.0,0.0,0.9924468671940192,-9.772278120745398,1.0,0.0,0.0 -158,19.0,1.144700842816316,0.7,0.0,0.0,0.9956673721652676,-9.695077472269372,1.0,0.0,0.0 -158,20.0,9.105574886038877,11.2,0.0,0.0,0.9973593972675228,-9.500708639250265,1.0,0.0,0.0 -158,21.0,0.0,0.0,0.0,0.0,0.9977414272772864,-9.49814024758814,1.0,0.0,0.0 -158,22.0,1.6650194077328235,1.6,0.0,0.0,0.992101734370082,-9.523666206281677,1.0,0.0,0.0 -158,23.0,4.526771514773613,6.7,0.0,0.0,0.9877494596401396,-9.609270075354749,1.0,0.0,0.0 -158,24.0,0.0,0.0,0.0,0.0,0.9815303652641524,-9.349854423806816,1.0,0.0,0.0 -158,25.0,1.8211149772077757,2.3,0.0,0.0,0.9677106159811968,-9.414340534673777,1.0,0.0,0.0 -158,26.0,0.0,0.0,0.0,0.0,0.9845993041435744,-9.119860216952244,1.0,0.0,0.0 -158,27.0,0.0,0.0,0.0,0.0,0.9667348019810194,-7.063705894909378,1.0,0.0,0.0 -158,28.0,1.2487645557996174,0.9,0.0,0.0,0.9711743975393656,-9.71680923152647,1.0,0.0,0.0 -158,29.0,5.515376788114978,1.9,0.0,0.0,0.963895210307666,-10.168061022180693,1.0,0.0,0.0 -159,0.0,0.0,0.0,153.44710927152246,0.0038999100258507,1.0,0.0,0.0,0.0,1.0 -159,1.0,11.290912858688207,12.7,3.2365888067487063e-06,9.850358502923356,0.980884650292296,-3.493953258415395,0.0,1.0,0.0 -159,2.0,1.2487645557996174,1.2,0.0,0.0,0.9758954030752216,-4.671497469721909,1.0,0.0,0.0 -159,3.0,3.9544210933654553,1.6,0.0,0.0,0.9696321606232968,-5.739252439729112,1.0,0.0,0.0 -159,4.0,49.014008815134986,19.0,-3.905639336990674e-09,23.87138395443762,0.9611691593716452,-8.39237901396736,0.0,1.0,0.0 -159,5.0,0.0,0.0,0.0,0.0,0.9670251059995156,-6.586073218522908,1.0,0.0,0.0 -159,6.0,11.863263280096367,10.9,0.0,0.0,0.9582502904939052,-7.583355895720256,1.0,0.0,0.0 -159,7.0,15.609556947495218,30.0,-1.464035005484318e-09,32.28694870885536,0.9666030173459949,-7.002594912549694,0.0,1.0,0.0 -159,8.0,0.0,0.0,0.0,0.0,1.0375486890145318,-11.392683266306651,1.0,0.0,0.0 -159,9.0,3.017847676515742,2.0,0.0,0.0,1.025678161807915,-11.392683266493774,1.0,0.0,0.0 -159,10.0,0.0,0.0,3.1596380100614302e-09,11.438815292307805,1.0599947767961286,-11.392683265964267,0.0,1.0,0.0 -159,11.0,5.827567927064881,7.5,0.0,0.0,1.037368759843252,-9.939522645617965,1.0,0.0,0.0 -159,12.0,0.0,0.0,-2.9463448576541883e-09,17.13378550671246,1.059998323658603,-9.93952264583289,0.0,1.0,0.0 -159,13.0,3.2259751024823453,1.6,0.0,0.0,1.0270457391137098,-10.485185411910535,1.0,0.0,0.0 -159,14.0,4.26661223231536,2.5,0.0,0.0,1.0232060704859187,-10.635816144931145,1.0,0.0,0.0 -159,15.0,1.8211149772077757,1.8,0.0,0.0,1.0256398832528866,-10.6429112035002,1.0,0.0,0.0 -159,16.0,4.682867084248566,5.8,0.0,0.0,1.0216556619915238,-11.244484070749897,1.0,0.0,0.0 -159,17.0,1.6650194077328235,0.9,0.0,0.0,1.0152106833149146,-11.209092107749257,1.0,0.0,0.0 -159,18.0,4.943026366706819,3.4,0.0,0.0,1.0126930067210944,-11.463474919797688,1.0,0.0,0.0 -159,19.0,1.144700842816316,0.7,0.0,0.0,1.0153026158575644,-11.474424266744611,1.0,0.0,0.0 -159,20.0,9.105574886038877,11.2,0.0,0.0,1.014279284645209,-11.553638621272194,1.0,0.0,0.0 -159,21.0,0.0,0.0,0.0,0.0,1.0204775223848723,-11.443983884720916,1.0,0.0,0.0 -159,22.0,1.6650194077328235,1.6,0.0,0.0,1.0163553387051278,-11.044731791357217,1.0,0.0,0.0 -159,23.0,4.526771514773613,6.7,0.0,0.0,1.0137441097072255,-11.465054467618348,1.0,0.0,0.0 -159,24.0,0.0,0.0,0.0,0.0,0.9666773238456612,-9.019260378820247,1.0,0.0,0.0 -159,25.0,1.8211149772077757,2.3,0.0,0.0,0.9526389124530396,-9.085773237272267,1.0,0.0,0.0 -159,26.0,0.0,0.0,0.0,0.0,0.9738079892652522,-8.940274040675527,1.0,0.0,0.0 -159,27.0,0.0,0.0,0.0,0.0,0.9642326648148508,-6.902178055085485,1.0,0.0,0.0 -159,28.0,1.2487645557996174,0.9,0.0,0.0,0.9602258131381272,-9.55071029001417,1.0,0.0,0.0 -159,29.0,5.515376788114978,1.9,0.0,0.0,0.9528610756250387,-10.012381119472186,1.0,0.0,0.0 -160,0.0,0.0,0.0,153.44384728064887,0.0002962875583101,1.0,0.0,0.0,0.0,1.0 -160,1.0,11.290912858688207,12.7,3.362327574101524e-07,9.667248746861816,0.9810636998342832,-3.51578297994456,0.0,1.0,0.0 -160,2.0,1.2487645557996174,1.2,0.0,0.0,0.9753188927741684,-4.61162911781783,1.0,0.0,0.0 -160,3.0,3.9544210933654553,1.6,0.0,0.0,0.9689140396908026,-5.665152004270584,1.0,0.0,0.0 -160,4.0,49.014008815134986,19.0,-3.9647459050773644e-10,23.69315712313772,0.9619542476196692,-8.462023481894184,0.0,1.0,0.0 -160,5.0,0.0,0.0,0.0,0.0,0.968693922659472,-6.728207121979274,1.0,0.0,0.0 -160,6.0,11.863263280096367,10.9,0.0,0.0,0.9595606159274072,-7.6957368453441,1.0,0.0,0.0 -160,7.0,15.609556947495218,30.0,-3.6038421444308727e-10,30.31017948375477,0.9677106626703248,-7.134618014230933,0.0,1.0,0.0 -160,8.0,0.0,0.0,0.0,0.0,1.016554044666718,-8.449163753408204,1.0,0.0,0.0 -160,9.0,3.017847676515742,2.0,0.0,0.0,1.0077548602388158,-9.343589784626532,1.0,0.0,0.0 -160,10.0,0.0,0.0,-2.226047645550401e-10,22.109382638329567,1.0599409121428982,-8.449163753432826,0.0,1.0,0.0 -160,11.0,5.827567927064881,7.5,0.0,0.0,1.0142493499658722,-8.896523039098726,1.0,0.0,0.0 -160,12.0,0.0,0.0,-4.771253215624524e-10,9.29309087311456,1.0269186372400103,-8.896523039135474,0.0,1.0,0.0 -160,13.0,3.2259751024823453,1.6,0.0,0.0,1.0035086508885502,-9.335895365840456,1.0,0.0,0.0 -160,14.0,4.26661223231536,2.5,0.0,0.0,1.0003122290293465,-9.359395363480225,1.0,0.0,0.0 -160,15.0,1.8211149772077757,1.8,0.0,0.0,1.0053879938411536,-9.184686428097995,1.0,0.0,0.0 -160,16.0,4.682867084248566,5.8,0.0,0.0,1.0027145995432745,-9.380175633191588,1.0,0.0,0.0 -160,17.0,1.6650194077328235,0.9,0.0,0.0,0.9939642078322348,-9.67567347995466,1.0,0.0,0.0 -160,18.0,4.943026366706819,3.4,0.0,0.0,0.9924468671940192,-9.772278120745398,1.0,0.0,0.0 -160,19.0,1.144700842816316,0.7,0.0,0.0,0.9956673721652676,-9.695077472269372,1.0,0.0,0.0 -160,20.0,9.105574886038877,11.2,0.0,0.0,0.9973593972675228,-9.500708639250265,1.0,0.0,0.0 -160,21.0,0.0,0.0,0.0,0.0,0.9977414272772864,-9.49814024758814,1.0,0.0,0.0 -160,22.0,1.6650194077328235,1.6,0.0,0.0,0.992101734370082,-9.523666206281677,1.0,0.0,0.0 -160,23.0,4.526771514773613,6.7,0.0,0.0,0.9877494596401396,-9.609270075354749,1.0,0.0,0.0 -160,24.0,0.0,0.0,0.0,0.0,0.9815303652641524,-9.349854423806816,1.0,0.0,0.0 -160,25.0,1.8211149772077757,2.3,0.0,0.0,0.9677106159811968,-9.414340534673777,1.0,0.0,0.0 -160,26.0,0.0,0.0,0.0,0.0,0.9845993041435744,-9.119860216952244,1.0,0.0,0.0 -160,27.0,0.0,0.0,0.0,0.0,0.9667348019810194,-7.063705894909378,1.0,0.0,0.0 -160,28.0,1.2487645557996174,0.9,0.0,0.0,0.9711743975393656,-9.71680923152647,1.0,0.0,0.0 -160,29.0,5.515376788114978,1.9,0.0,0.0,0.963895210307666,-10.168061022180693,1.0,0.0,0.0 -161,0.0,0.0,0.0,153.56978575000815,0.0004506924241809,1.0,0.0,0.0,0.0,1.0 -161,1.0,11.290912858688207,12.7,6.14027197840489e-07,8.309513990993281,0.9808257461966012,-3.5124401515090846,0.0,1.0,0.0 -161,2.0,1.2487645557996174,1.2,0.0,0.0,0.9759611180652829,-4.630603889873089,1.0,0.0,0.0 -161,3.0,3.9544210933654553,1.6,0.0,0.0,0.9697078474672716,-5.688454951899433,1.0,0.0,0.0 -161,4.0,49.014008815134986,19.0,-7.21918470897089e-10,23.63248669993893,0.9619078018132098,-8.459830731150126,0.0,1.0,0.0 -161,5.0,0.0,0.0,0.0,0.0,0.968967865337298,-6.730349427732159,1.0,0.0,0.0 -161,6.0,11.863263280096367,10.9,0.0,0.0,0.9597043793788964,-7.6961934235357266,1.0,0.0,0.0 -161,7.0,15.609556947495218,30.0,-5.853739541499845e-10,29.888131342608617,0.9677632864352198,-7.1345958834201095,0.0,1.0,0.0 -161,8.0,0.0,0.0,0.0,0.0,1.0165104595447512,-8.392203040164953,1.0,0.0,0.0 -161,9.0,3.017847676515742,2.0,0.0,0.0,1.0095946249591088,-9.25458786960406,1.0,0.0,0.0 -161,10.0,0.0,0.0,-2.982386078622638e-10,20.03084591162613,1.055966411041439,-8.39220304019807,0.0,1.0,0.0 -161,11.0,5.827567927064881,7.5,0.0,0.0,1.020943355433514,-8.977782378483438,1.0,0.0,0.0 -161,12.0,0.0,0.0,-7.119481729362319e-10,13.278323509436206,1.0388380152744892,-8.977782378537285,0.0,1.0,0.0 -161,13.0,3.2259751024823453,1.6,0.0,0.0,1.0098938207757306,-9.431304744328662,1.0,0.0,0.0 -161,14.0,4.26661223231536,2.5,0.0,0.0,1.0062143178496876,-9.465566530207644,1.0,0.0,0.0 -161,15.0,1.8211149772077757,1.8,0.0,0.0,1.0101218683911286,-9.181842288102018,1.0,0.0,0.0 -161,16.0,4.682867084248566,5.8,0.0,0.0,1.005436965095862,-9.32101728863118,1.0,0.0,0.0 -161,17.0,1.6650194077328235,0.9,0.0,0.0,0.9893697895788458,-10.031043996074104,1.0,0.0,0.0 -161,18.0,4.943026366706819,3.4,0.0,0.0,0.9816680672598516,-10.279628230113524,1.0,0.0,0.0 -161,19.0,1.144700842816316,0.7,0.0,0.0,1.0070765202560077,-9.352484863021465,1.0,0.0,0.0 -161,20.0,9.105574886038877,11.2,0.0,0.0,0.9976715584933714,-9.44863546842582,1.0,0.0,0.0 -161,21.0,0.0,0.0,0.0,0.0,0.9975622270045744,-9.457460332040435,1.0,0.0,0.0 -161,22.0,1.6650194077328235,1.6,0.0,0.0,0.974062146330647,-9.82453058309293,1.0,0.0,0.0 -161,23.0,4.526771514773613,6.7,0.0,0.0,0.9807565848402354,-9.681575405610852,1.0,0.0,0.0 -161,24.0,0.0,0.0,0.0,0.0,0.977151242289882,-9.429426346889535,1.0,0.0,0.0 -161,25.0,1.8211149772077757,2.3,0.0,0.0,0.9632677466451748,-9.494500216227411,1.0,0.0,0.0 -161,26.0,0.0,0.0,0.0,0.0,0.9818778110237396,-9.200535539686133,1.0,0.0,0.0 -161,27.0,0.0,0.0,0.0,0.0,0.9665995753554206,-7.068480657366025,1.0,0.0,0.0 -161,28.0,1.2487645557996174,0.9,0.0,0.0,0.9684135959659704,-9.800843261920985,1.0,0.0,0.0 -161,29.0,5.515376788114978,1.9,0.0,0.0,0.9611130270140552,-10.254688733228887,1.0,0.0,0.0 -162,0.0,0.0,0.0,153.4477664034852,0.000432278681739,1.0,0.0,0.0,0.0,1.0 -162,1.0,11.290912858688207,12.7,5.102567918670204e-07,9.50825475307633,0.9810195260230388,-3.5157294871799776,0.0,1.0,0.0 -162,2.0,1.2487645557996174,1.2,0.0,0.0,0.9754420704450606,-4.611621213832708,1.0,0.0,0.0 -162,3.0,3.9544210933654553,1.6,0.0,0.0,0.9690658282223378,-5.665093300492499,1.0,0.0,0.0 -162,4.0,49.014008815134986,19.0,-5.448738032620623e-10,23.69412356117556,0.9618970469529982,-8.464176430597218,0.0,1.0,0.0 -162,5.0,0.0,0.0,0.0,0.0,0.9686226962397314,-6.731796972934582,1.0,0.0,0.0 -162,6.0,11.863263280096367,10.9,0.0,0.0,0.9594943236762494,-7.698768210969171,1.0,0.0,0.0 -162,7.0,15.609556947495218,30.0,-4.768180168176645e-10,30.335980304789835,0.9676164952211738,-7.139045113608463,0.0,1.0,0.0 -162,8.0,0.0,0.0,0.0,0.0,1.0163196727670178,-8.462269412902247,1.0,0.0,0.0 -162,9.0,3.017847676515742,2.0,0.0,0.0,1.0073268569218388,-9.361955965589893,1.0,0.0,0.0 -162,10.0,0.0,0.0,-2.6461994443180677e-10,22.217029029832965,1.0599186964803515,-8.462269412931523,0.0,1.0,0.0 -162,11.0,5.827567927064881,7.5,0.0,0.0,1.015870176852075,-8.84652486350121,1.0,0.0,0.0 -162,12.0,0.0,0.0,-6.616251403132107e-10,9.353710949108349,1.0286012476712088,-8.846524863552004,0.0,1.0,0.0 -162,13.0,3.2259751024823453,1.6,0.0,0.0,1.0056970574952695,-9.270552153216492,1.0,0.0,0.0 -162,14.0,4.26661223231536,2.5,0.0,0.0,1.0031304115154542,-9.29275266982694,1.0,0.0,0.0 -162,15.0,1.8211149772077757,1.8,0.0,0.0,1.0060802305301768,-9.159436888493463,1.0,0.0,0.0 -162,16.0,4.682867084248566,5.8,0.0,0.0,1.0026516658203557,-9.386294120210197,1.0,0.0,0.0 -162,17.0,1.6650194077328235,0.9,0.0,0.0,0.9956449391581144,-9.637296604458625,1.0,0.0,0.0 -162,18.0,4.943026366706819,3.4,0.0,0.0,0.9934517215292054,-9.751279549577616,1.0,0.0,0.0 -162,19.0,1.144700842816316,0.7,0.0,0.0,0.9963110573719052,-9.6834150399725,1.0,0.0,0.0 -162,20.0,9.105574886038877,11.2,0.0,0.0,0.9963551805135764,-9.531916990739347,1.0,0.0,0.0 -162,21.0,0.0,0.0,0.0,0.0,0.9965561629061412,-9.533176128674198,1.0,0.0,0.0 -162,22.0,1.6650194077328235,1.6,0.0,0.0,0.9982231198477012,-9.39364861164597,1.0,0.0,0.0 -162,23.0,4.526771514773613,6.7,0.0,0.0,0.9840453846703736,-9.681022802425185,1.0,0.0,0.0 -162,24.0,0.0,0.0,0.0,0.0,0.9791736704475336,-9.413659643193716,1.0,0.0,0.0 -162,25.0,1.8211149772077757,2.3,0.0,0.0,0.9653196890343696,-9.47846106612973,1.0,0.0,0.0 -162,26.0,0.0,0.0,0.0,0.0,0.9830942101765616,-9.176960947382732,1.0,0.0,0.0 -162,27.0,0.0,0.0,0.0,0.0,0.9664770378244282,-7.070624031020137,1.0,0.0,0.0 -162,28.0,1.2487645557996174,0.9,0.0,0.0,0.9696475936163358,-9.775763949074312,1.0,0.0,0.0 -162,29.0,5.515376788114978,1.9,0.0,0.0,0.9623565973978851,-10.228447357866266,1.0,0.0,0.0 -163,0.0,0.0,0.0,153.44384728064887,0.0002962875583101,1.0,0.0,0.0,0.0,1.0 -163,1.0,11.290912858688207,12.7,3.362327574101524e-07,9.667248746861816,0.9810636998342832,-3.51578297994456,0.0,1.0,0.0 -163,2.0,1.2487645557996174,1.2,0.0,0.0,0.9753188927741684,-4.61162911781783,1.0,0.0,0.0 -163,3.0,3.9544210933654553,1.6,0.0,0.0,0.9689140396908026,-5.665152004270584,1.0,0.0,0.0 -163,4.0,49.014008815134986,19.0,-3.9647459050773644e-10,23.69315712313772,0.9619542476196692,-8.462023481894184,0.0,1.0,0.0 -163,5.0,0.0,0.0,0.0,0.0,0.968693922659472,-6.728207121979274,1.0,0.0,0.0 -163,6.0,11.863263280096367,10.9,0.0,0.0,0.9595606159274072,-7.6957368453441,1.0,0.0,0.0 -163,7.0,15.609556947495218,30.0,-3.6038421444308727e-10,30.31017948375477,0.9677106626703248,-7.134618014230933,0.0,1.0,0.0 -163,8.0,0.0,0.0,0.0,0.0,1.016554044666718,-8.449163753408204,1.0,0.0,0.0 -163,9.0,3.017847676515742,2.0,0.0,0.0,1.0077548602388158,-9.343589784626532,1.0,0.0,0.0 -163,10.0,0.0,0.0,-2.226047645550401e-10,22.109382638329567,1.0599409121428982,-8.449163753432826,0.0,1.0,0.0 -163,11.0,5.827567927064881,7.5,0.0,0.0,1.0142493499658722,-8.896523039098726,1.0,0.0,0.0 -163,12.0,0.0,0.0,-4.771253215624524e-10,9.29309087311456,1.0269186372400103,-8.896523039135474,0.0,1.0,0.0 -163,13.0,3.2259751024823453,1.6,0.0,0.0,1.0035086508885502,-9.335895365840456,1.0,0.0,0.0 -163,14.0,4.26661223231536,2.5,0.0,0.0,1.0003122290293465,-9.359395363480225,1.0,0.0,0.0 -163,15.0,1.8211149772077757,1.8,0.0,0.0,1.0053879938411536,-9.184686428097995,1.0,0.0,0.0 -163,16.0,4.682867084248566,5.8,0.0,0.0,1.0027145995432745,-9.380175633191588,1.0,0.0,0.0 -163,17.0,1.6650194077328235,0.9,0.0,0.0,0.9939642078322348,-9.67567347995466,1.0,0.0,0.0 -163,18.0,4.943026366706819,3.4,0.0,0.0,0.9924468671940192,-9.772278120745398,1.0,0.0,0.0 -163,19.0,1.144700842816316,0.7,0.0,0.0,0.9956673721652676,-9.695077472269372,1.0,0.0,0.0 -163,20.0,9.105574886038877,11.2,0.0,0.0,0.9973593972675228,-9.500708639250265,1.0,0.0,0.0 -163,21.0,0.0,0.0,0.0,0.0,0.9977414272772864,-9.49814024758814,1.0,0.0,0.0 -163,22.0,1.6650194077328235,1.6,0.0,0.0,0.992101734370082,-9.523666206281677,1.0,0.0,0.0 -163,23.0,4.526771514773613,6.7,0.0,0.0,0.9877494596401396,-9.609270075354749,1.0,0.0,0.0 -163,24.0,0.0,0.0,0.0,0.0,0.9815303652641524,-9.349854423806816,1.0,0.0,0.0 -163,25.0,1.8211149772077757,2.3,0.0,0.0,0.9677106159811968,-9.414340534673777,1.0,0.0,0.0 -163,26.0,0.0,0.0,0.0,0.0,0.9845993041435744,-9.119860216952244,1.0,0.0,0.0 -163,27.0,0.0,0.0,0.0,0.0,0.9667348019810194,-7.063705894909378,1.0,0.0,0.0 -163,28.0,1.2487645557996174,0.9,0.0,0.0,0.9711743975393656,-9.71680923152647,1.0,0.0,0.0 -163,29.0,5.515376788114978,1.9,0.0,0.0,0.963895210307666,-10.168061022180693,1.0,0.0,0.0 -164,0.0,0.0,0.0,153.54783456600782,0.0001517476809098,1.0,0.0,0.0,0.0,1.0 -164,1.0,11.290912858688207,12.7,1.9580349433150642e-07,8.64108723886148,0.9809232646374452,-3.512078857113928,0.0,1.0,0.0 -164,2.0,1.2487645557996174,1.2,0.0,0.0,0.9756951379112736,-4.630670980733176,1.0,0.0,0.0 -164,3.0,3.9544210933654553,1.6,0.0,0.0,0.9693800936694176,-5.68864525463229,1.0,0.0,0.0 -164,4.0,49.014008815134986,19.0,-3.0791495995598856e-10,23.60249700912911,0.9620221619682592,-8.453731623369144,0.0,1.0,0.0 -164,5.0,0.0,0.0,0.0,0.0,0.9691588574745132,-6.72132421683778,1.0,0.0,0.0 -164,6.0,11.863263280096367,10.9,0.0,0.0,0.959865923452768,-7.688314571584422,1.0,0.0,0.0 -164,7.0,15.609556947495218,30.0,-2.7845140065606216e-10,29.62119357884925,0.9679300306307258,-7.122947716471267,0.0,1.0,0.0 -164,8.0,0.0,0.0,0.0,0.0,1.017207430031127,-8.349083888330622,1.0,0.0,0.0 -164,9.0,3.017847676515742,2.0,0.0,0.0,1.011406385632168,-9.192432855639565,1.0,0.0,0.0 -164,10.0,0.0,0.0,-2.0046768728015728e-10,19.185211236156672,1.0550311834858428,-8.349083888352885,0.0,1.0,0.0 -164,11.0,5.827567927064881,7.5,0.0,0.0,1.0172956081824165,-9.0969797705763,1.0,0.0,0.0 -164,12.0,0.0,0.0,-2.9934494857354037e-10,13.921067253662414,1.0361059377491657,-9.096979770599075,0.0,1.0,0.0 -164,13.0,3.2259751024823453,1.6,0.0,0.0,1.0044477152318725,-9.582886086636202,1.0,0.0,0.0 -164,14.0,4.26661223231536,2.5,0.0,0.0,0.9988651099179064,-9.606130401507162,1.0,0.0,0.0 -164,15.0,1.8211149772077757,1.8,0.0,0.0,1.0089478912197156,-9.234911460252444,1.0,0.0,0.0 -164,16.0,4.682867084248566,5.8,0.0,0.0,1.0062776491053524,-9.29099412096206,1.0,0.0,0.0 -164,17.0,1.6650194077328235,0.9,0.0,0.0,0.9818894380649726,-10.180108705299288,1.0,0.0,0.0 -164,18.0,4.943026366706819,3.4,0.0,0.0,0.9741279568931618,-10.432525551705831,1.0,0.0,0.0 -164,19.0,1.144700842816316,0.7,0.0,0.0,1.0088928195255111,-9.289978555856145,1.0,0.0,0.0 -164,20.0,9.105574886038877,11.2,0.0,0.0,1.0007069236970036,-9.373750466055526,1.0,0.0,0.0 -164,21.0,0.0,0.0,0.0,0.0,1.0009771360734918,-9.37919846893756,1.0,0.0,0.0 -164,22.0,1.6650194077328235,1.6,0.0,0.0,0.9919678760722213,-9.65663693365838,1.0,0.0,0.0 -164,23.0,4.526771514773613,6.7,0.0,0.0,0.989349033103208,-9.588114166219796,1.0,0.0,0.0 -164,24.0,0.0,0.0,0.0,0.0,0.982710976071679,-9.32748648667833,1.0,0.0,0.0 -164,25.0,1.8211149772077757,2.3,0.0,0.0,0.9689083112902092,-9.391815507797665,1.0,0.0,0.0 -164,26.0,0.0,0.0,0.0,0.0,0.985510656783624,-9.09735073096098,1.0,0.0,0.0 -164,27.0,0.0,0.0,0.0,0.0,0.9672034348133536,-7.055130907959199,1.0,0.0,0.0 -164,28.0,1.2487645557996174,0.9,0.0,0.0,0.972098860862194,-9.693181336962496,1.0,0.0,0.0 -164,29.0,5.515376788114978,1.9,0.0,0.0,0.9648268050025984,-10.14356960457588,1.0,0.0,0.0 -165,0.0,0.0,0.0,153.79419186116036,1.4933300506555724,1.0,0.0,0.0,0.0,1.0 -165,1.0,11.290912858688207,12.7,0.0,0.0,0.9806643377185784,-3.22000210661414,0.0,1.0,0.0 -165,2.0,1.2487645557996174,1.2,0.0,0.0,0.9750237200990254,-5.451526971857636,1.0,0.0,0.0 -165,3.0,3.9544210933654553,1.6,0.0,0.0,0.9686873342968828,-6.708186873382601,1.0,0.0,0.0 -165,4.0,49.014008815134986,19.0,1.6062644023479387e-09,29.08073527171244,0.968313168731705,-8.754126718057291,0.0,1.0,0.0 -165,5.0,0.0,0.0,0.0,0.0,0.9702645914427278,-7.489852256867805,1.0,0.0,0.0 -165,6.0,11.863263280096367,10.9,0.0,0.0,0.963049576030618,-8.261802985967956,1.0,0.0,0.0 -165,7.0,15.609556947495218,30.0,1.8633863465767984e-09,34.788219082057225,0.970964903945278,-7.923743053161782,0.0,1.0,0.0 -165,8.0,0.0,0.0,0.0,0.0,1.0176303278943963,-9.291873986015164,1.0,0.0,0.0 -165,9.0,3.017847676515742,2.0,0.0,0.0,1.009124546934376,-10.228667077787536,1.0,0.0,0.0 -165,10.0,0.0,0.0,1.7242979006379739e-09,21.59192545454124,1.0599994126409176,-9.291873985824662,0.0,1.0,0.0 -165,11.0,5.827567927064881,7.5,0.0,0.0,1.022110309466114,-9.739835397154348,1.0,0.0,0.0 -165,12.0,0.0,0.0,2.2685119148075184e-09,12.789557296232523,1.0393379874978124,-9.739835396983056,0.0,1.0,0.0 -165,13.0,3.2259751024823453,1.6,0.0,0.0,1.0106721283699724,-10.18460392870418,1.0,0.0,0.0 -165,14.0,4.26661223231536,2.5,0.0,0.0,1.0066642991560613,-10.202059116186446,1.0,0.0,0.0 -165,15.0,1.8211149772077757,1.8,0.0,0.0,1.0168990522717862,-9.84554031669053,1.0,0.0,0.0 -165,16.0,4.682867084248566,5.8,0.0,0.0,1.002721590874882,-10.346320965880636,1.0,0.0,0.0 -165,17.0,1.6650194077328235,0.9,0.0,0.0,0.9985961963755964,-10.52949834004462,1.0,0.0,0.0 -165,18.0,4.943026366706819,3.4,0.0,0.0,0.9960505272324924,-10.633884781662076,1.0,0.0,0.0 -165,19.0,1.144700842816316,0.7,0.0,0.0,0.998713777969554,-10.561586035325956,1.0,0.0,0.0 -165,20.0,9.105574886038877,11.2,0.0,0.0,0.999037695507138,-10.378641863150866,1.0,0.0,0.0 -165,21.0,0.0,0.0,0.0,0.0,0.99951248112449,-10.374055813770816,1.0,0.0,0.0 -165,22.0,1.6650194077328235,1.6,0.0,0.0,0.9970653798809396,-10.371032724905229,1.0,0.0,0.0 -165,23.0,4.526771514773613,6.7,0.0,0.0,0.9908303928070792,-10.4653677728572,1.0,0.0,0.0 -165,24.0,0.0,0.0,0.0,0.0,0.9843908852641634,-10.165919557907785,1.0,0.0,0.0 -165,25.0,1.8211149772077757,2.3,0.0,0.0,0.9706124565326604,-10.230026044918162,1.0,0.0,0.0 -165,26.0,0.0,0.0,0.0,0.0,0.9872894673065228,-9.911637040073716,1.0,0.0,0.0 -165,27.0,0.0,0.0,0.0,0.0,0.9687507084969744,-7.835137668197392,1.0,0.0,0.0 -165,28.0,1.2487645557996174,0.9,0.0,0.0,0.973903185662944,-10.505293776056371,1.0,0.0,0.0 -165,29.0,5.515376788114978,1.9,0.0,0.0,0.9666450077261468,-10.95400380056476,1.0,0.0,0.0 -166,0.0,0.0,0.0,154.06424774930562,0.0014530395573864,1.0,0.0,0.0,0.0,1.0 -166,1.0,11.290912858688207,12.7,3.0745836180880777e-06,-14.55409556826352,0.978793385941967,-3.4796810007488537,0.0,1.0,0.0 -166,2.0,1.2487645557996174,1.2,0.0,0.0,0.981649083216251,-4.746168124558697,1.0,0.0,0.0 -166,3.0,3.9544210933654553,1.6,0.0,0.0,0.9767323622912404,-5.829457497301087,1.0,0.0,0.0 -166,4.0,49.014008815134986,19.0,4.313293711467584e-09,33.532286462816785,0.9760471528522844,-8.614047684350078,0.0,1.0,0.0 -166,5.0,0.0,0.0,0.0,0.0,0.9789142288121006,-6.860040381495506,1.0,0.0,0.0 -166,6.0,11.863263280096367,10.9,0.0,0.0,0.9714740557564436,-7.828237783418301,1.0,0.0,0.0 -166,7.0,15.609556947495218,30.0,8.595490686253356e-09,39.99933092875841,0.9814483724523652,-7.3191374112068495,0.0,1.0,0.0 -166,8.0,0.0,0.0,0.0,0.0,1.0268910070663295,-8.336840147013708,1.0,0.0,0.0 -166,9.0,3.017847676515742,2.0,0.0,0.0,1.0233760613835188,-9.100651787288228,1.0,0.0,0.0 -166,10.0,0.0,0.0,6.690713313481565e-09,16.871842262489185,1.0599980783184295,-8.336840146281174,0.0,1.0,0.0 -166,11.0,5.827567927064881,7.5,0.0,0.0,1.034290048224648,-9.34621258840482,1.0,0.0,0.0 -166,12.0,0.0,0.0,3.1205793633852764e-09,19.46369346198487,1.0599968886305506,-9.346212588176504,0.0,1.0,0.0 -166,13.0,3.2259751024823453,1.6,0.0,0.0,1.0197075878227526,-9.856655386275806,1.0,0.0,0.0 -166,14.0,4.26661223231536,2.5,0.0,0.0,1.01205827741299,-9.875488402199636,1.0,0.0,0.0 -166,15.0,1.8211149772077757,1.8,0.0,0.0,1.029140820075481,-9.449430162792956,1.0,0.0,0.0 -166,16.0,4.682867084248566,5.8,0.0,0.0,1.0170634533625362,-9.215031262815833,1.0,0.0,0.0 -166,17.0,1.6650194077328235,0.9,0.0,0.0,0.9923993418897136,-10.535837469351756,1.0,0.0,0.0 -166,18.0,4.943026366706819,3.4,0.0,0.0,0.983037126900372,-10.843908804843604,1.0,0.0,0.0 -166,19.0,1.144700842816316,0.7,0.0,0.0,0.9821560555951492,-10.87597776094475,1.0,0.0,0.0 -166,20.0,9.105574886038877,11.2,0.0,0.0,0.9923911560568032,-9.667121512287792,1.0,0.0,0.0 -166,21.0,0.0,0.0,0.0,0.0,0.9961193350669164,-9.617871985592991,1.0,0.0,0.0 -166,22.0,1.6650194077328235,1.6,0.0,0.0,1.0002251226278156,-9.924473351967254,1.0,0.0,0.0 -166,23.0,4.526771514773613,6.7,0.0,0.0,0.9909705151883902,-9.857921628123124,1.0,0.0,0.0 -166,24.0,0.0,0.0,0.0,0.0,0.987488549371334,-9.587981160478648,1.0,0.0,0.0 -166,25.0,1.8211149772077757,2.3,0.0,0.0,0.9737545850541364,-9.651680343332115,1.0,0.0,0.0 -166,26.0,0.0,0.0,0.0,0.0,0.992209180095092,-9.34948313220658,1.0,0.0,0.0 -166,27.0,0.0,0.0,0.0,0.0,0.9773112044130772,-7.209421314124979,1.0,0.0,0.0 -166,28.0,1.2487645557996174,0.9,0.0,0.0,0.9634844830764034,-10.664378566525786,1.0,0.0,0.0 -166,29.0,5.515376788114978,1.9,0.0,0.0,0.9400006255002712,-11.957780387595076,1.0,0.0,0.0 -167,0.0,0.0,0.0,154.11696933346482,4.589257862619434e-07,1.0,0.0,0.0,0.0,1.0 -167,1.0,11.290912858688207,12.7,3.204970665132851,-9.879963464946387,0.98037279130419,-3.134520259454853,0.0,1.0,0.0 -167,2.0,1.2487645557996174,1.2,0.0,0.0,0.9786735729613338,-5.745341646789219,1.0,0.0,0.0 -167,3.0,3.9544210933654553,1.6,0.0,0.0,0.973247500809958,-7.0702659869152455,1.0,0.0,0.0 -167,4.0,49.014008815134986,19.0,-4.274068319560553e-09,39.99999964495447,0.9637039290352752,-16.141217263012933,0.0,1.0,0.0 -167,5.0,0.0,0.0,0.0,0.0,0.9742339498988288,-8.733995639689583,1.0,0.0,0.0 -167,6.0,11.863263280096367,10.9,0.0,0.0,0.9631906012739468,-12.004958829270416,1.0,0.0,0.0 -167,7.0,15.609556947495218,30.0,-8.08033433391e-09,39.99999955967837,0.9768864406753528,-9.193841318864273,0.0,1.0,0.0 -167,8.0,0.0,0.0,0.0,0.0,1.0227254876339702,-10.289400275793904,1.0,0.0,0.0 -167,9.0,3.017847676515742,2.0,0.0,0.0,1.01736235944053,-11.094746144322354,1.0,0.0,0.0 -167,10.0,0.0,0.0,-7.500741996080096e-09,18.995664677511755,1.0599999994725413,-10.289400276618467,0.0,1.0,0.0 -167,11.0,5.827567927064881,7.5,0.0,0.0,1.034139673294833,-10.571930260595854,1.0,0.0,0.0 -167,12.0,0.0,0.0,-3.198383062931412e-09,19.57996129522076,1.0599999995449063,-10.571930260829896,0.0,1.0,0.0 -167,13.0,3.2259751024823453,1.6,0.0,0.0,1.0223098080679869,-11.021142775881316,1.0,0.0,0.0 -167,14.0,4.26661223231536,2.5,0.0,0.0,1.0177374733711655,-11.0410205714536,1.0,0.0,0.0 -167,15.0,1.8211149772077757,1.8,0.0,0.0,1.0208621921153611,-10.867623205636107,1.0,0.0,0.0 -167,16.0,4.682867084248566,5.8,0.0,0.0,1.014227288941716,-11.114938859186,1.0,0.0,0.0 -167,17.0,1.6650194077328235,0.9,0.0,0.0,1.0087571102673312,-11.371175884656344,1.0,0.0,0.0 -167,18.0,4.943026366706819,3.4,0.0,0.0,1.0056490255689032,-11.479147411905917,1.0,0.0,0.0 -167,19.0,1.144700842816316,0.7,0.0,0.0,1.0079771713239831,-11.411088475553017,1.0,0.0,0.0 -167,20.0,9.105574886038877,11.2,0.0,0.0,1.0073812382523142,-11.250243613577574,1.0,0.0,0.0 -167,21.0,0.0,0.0,0.0,0.0,1.0078582662330553,-11.248302837314032,1.0,0.0,0.0 -167,22.0,1.6650194077328235,1.6,0.0,0.0,1.00703252783479,-11.237684884814604,1.0,0.0,0.0 -167,23.0,4.526771514773613,6.7,0.0,0.0,0.9992651834325756,-11.373099848426518,1.0,0.0,0.0 -167,24.0,0.0,0.0,0.0,0.0,0.9906640387317084,-11.18076920879883,1.0,0.0,0.0 -167,25.0,1.8211149772077757,2.3,0.0,0.0,0.9769753547601356,-11.244054885577423,1.0,0.0,0.0 -167,26.0,0.0,0.0,0.0,0.0,0.992208591637476,-10.996530852224826,1.0,0.0,0.0 -167,27.0,0.0,0.0,0.0,0.0,0.973295841688444,-9.067549868905513,1.0,0.0,0.0 -167,28.0,1.2487645557996174,0.9,0.0,0.0,0.9634838748212158,-12.311427896309937,1.0,0.0,0.0 -167,29.0,5.515376788114978,1.9,0.0,0.0,0.9400000012713318,-13.60483139264145,1.0,0.0,0.0 -168,0.0,0.0,0.0,153.44614695397246,0.0003218842139496,1.0,0.0,0.0,0.0,1.0 -168,1.0,11.290912858688207,12.7,3.64865566230754e-07,9.659634018001718,0.9810591935060732,-3.5159390571314386,0.0,1.0,0.0 -168,2.0,1.2487645557996174,1.2,0.0,0.0,0.97533025495116,-4.6113581331927485,1.0,0.0,0.0 -168,3.0,3.9544210933654553,1.6,0.0,0.0,0.9689280069607696,-5.664811006311887,1.0,0.0,0.0 -168,4.0,49.014008815134986,19.0,-4.1943018037910224e-10,23.69744366685849,0.9619471574674004,-8.462742078799032,0.0,1.0,0.0 -168,5.0,0.0,0.0,0.0,0.0,0.9686753906253828,-6.729199286155046,1.0,0.0,0.0 -168,6.0,11.863263280096367,10.9,0.0,0.0,0.9595465948582428,-7.696619288586779,1.0,0.0,0.0 -168,7.0,15.609556947495218,30.0,-3.792829065852345e-10,30.339136232562453,0.967699669006772,-7.135900338811746,0.0,1.0,0.0 -168,8.0,0.0,0.0,0.0,0.0,1.0164670180789566,-8.454517339913105,1.0,0.0,0.0 -168,9.0,3.017847676515742,2.0,0.0,0.0,1.0075847152327664,-9.351343889247785,1.0,0.0,0.0 -168,10.0,0.0,0.0,-2.2814958252766212e-10,22.15666504575932,1.059946444365233,-8.45451733993834,0.0,1.0,0.0 -168,11.0,5.827567927064881,7.5,0.0,0.0,1.0144256317069411,-8.884471594921573,1.0,0.0,0.0 -168,12.0,0.0,0.0,-5.113682421293848e-10,9.235253313322296,1.0270148889588573,-8.884471594960946,0.0,1.0,0.0 -168,13.0,3.2259751024823453,1.6,0.0,0.0,1.0063920570253193,-9.237239899799455,1.0,0.0,0.0 -168,14.0,4.26661223231536,2.5,0.0,0.0,0.9993921616229672,-9.383524931035952,1.0,0.0,0.0 -168,15.0,1.8211149772077757,1.8,0.0,0.0,1.0054011730653365,-9.180379520462862,1.0,0.0,0.0 -168,16.0,4.682867084248566,5.8,0.0,0.0,1.002605574123482,-9.384410796945408,1.0,0.0,0.0 -168,17.0,1.6650194077328235,0.9,0.0,0.0,0.9933041111256826,-9.694578763301593,1.0,0.0,0.0 -168,18.0,4.943026366706819,3.4,0.0,0.0,0.991941956599247,-9.78790642186453,1.0,0.0,0.0 -168,19.0,1.144700842816316,0.7,0.0,0.0,0.9952464877385384,-9.708869606226934,1.0,0.0,0.0 -168,20.0,9.105574886038877,11.2,0.0,0.0,0.99715169423881,-9.509396492095275,1.0,0.0,0.0 -168,21.0,0.0,0.0,0.0,0.0,0.9975224438978,-9.507094022723082,1.0,0.0,0.0 -168,22.0,1.6650194077328235,1.6,0.0,0.0,0.9914121497153064,-9.54263335897085,1.0,0.0,0.0 -168,23.0,4.526771514773613,6.7,0.0,0.0,0.987370623222352,-9.620913501461128,1.0,0.0,0.0 -168,24.0,0.0,0.0,0.0,0.0,0.9812903675784174,-9.359333292886628,1.0,0.0,0.0 -168,25.0,1.8211149772077757,2.3,0.0,0.0,0.967467140064238,-9.42385140814487,1.0,0.0,0.0 -168,26.0,0.0,0.0,0.0,0.0,0.9844466134991614,-9.12781012060724,1.0,0.0,0.0 -168,27.0,0.0,0.0,0.0,0.0,0.9666998117840842,-7.065259589469651,1.0,0.0,0.0 -168,28.0,1.2487645557996174,0.9,0.0,0.0,0.971019507718474,-9.724946826077018,1.0,0.0,0.0 -168,29.0,5.515376788114978,1.9,0.0,0.0,0.9637391242684374,-10.17634353972919,1.0,0.0,0.0 -169,0.0,0.0,0.0,154.92469966665598,0.0019600965098121,1.0,0.0,0.0,0.0,1.0 -169,1.0,11.290912858688207,12.7,3.42781438286134e-06,2.2616296031165533,0.9801378477994308,-3.310125117593025,0.0,1.0,0.0 -169,2.0,1.2487645557996174,1.2,0.0,0.0,0.9782862660664592,-5.326664008445985,1.0,0.0,0.0 -169,3.0,3.9544210933654553,1.6,0.0,0.0,0.9726833054183937,-6.551148647423499,1.0,0.0,0.0 -169,4.0,49.014008815134986,19.0,2.4996322368608856e-10,24.520271386597955,0.9628436116972184,-8.889562246129154,0.0,1.0,0.0 -169,5.0,0.0,0.0,0.0,0.0,0.969202105518158,-7.800701577794719,1.0,0.0,0.0 -169,6.0,11.863263280096367,10.9,0.0,0.0,0.9601296706083312,-8.505251654802176,1.0,0.0,0.0 -169,7.0,15.609556947495218,30.0,1.8360846346757278e-09,36.14972115392973,0.9676742964987012,-8.585350493063837,0.0,1.0,0.0 -169,8.0,0.0,0.0,0.0,0.0,1.016749378542105,-10.98250654336791,1.0,0.0,0.0 -169,9.0,3.017847676515742,2.0,0.0,0.0,1.008727928988452,-12.635005987469489,1.0,0.0,0.0 -169,10.0,0.0,0.0,1.243289988842954e-09,22.03235331406829,1.059983354526323,-10.982506543230429,0.0,1.0,0.0 -169,11.0,5.827567927064881,7.5,0.0,0.0,0.986579838436768,-15.903557895214291,1.0,0.0,0.0 -169,12.0,0.0,0.0,-4.086872561822077e-09,21.62883696912869,1.016372432938026,-15.90355789554122,0.0,1.0,0.0 -169,13.0,3.2259751024823453,1.6,0.0,0.0,0.9755293529352972,-16.02598471512918,1.0,0.0,0.0 -169,14.0,4.26661223231536,2.5,0.0,0.0,0.9745626442433968,-15.713664903989642,1.0,0.0,0.0 -169,15.0,1.8211149772077757,1.8,0.0,0.0,0.9919897957074052,-14.63708161522644,1.0,0.0,0.0 -169,16.0,4.682867084248566,5.8,0.0,0.0,0.9982470759321376,-13.321078225787303,1.0,0.0,0.0 -169,17.0,1.6650194077328235,0.9,0.0,0.0,0.977408734172897,-14.948761636268475,1.0,0.0,0.0 -169,18.0,4.943026366706819,3.4,0.0,0.0,0.9814895144662926,-14.405197333733282,1.0,0.0,0.0 -169,19.0,1.144700842816316,0.7,0.0,0.0,0.9877800101523744,-13.991726486131684,1.0,0.0,0.0 -169,20.0,9.105574886038877,11.2,0.0,0.0,0.981076240749895,-13.003026320985697,1.0,0.0,0.0 -169,21.0,0.0,0.0,0.0,0.0,0.9848474260714524,-12.95263861275201,1.0,0.0,0.0 -169,22.0,1.6650194077328235,1.6,0.0,0.0,0.960820369241506,-15.56250258610188,1.0,0.0,0.0 -169,23.0,4.526771514773613,6.7,0.0,0.0,0.9492859275263404,-15.211334633601062,1.0,0.0,0.0 -169,24.0,0.0,0.0,0.0,0.0,0.9542300675262398,-14.103190824693304,1.0,0.0,0.0 -169,25.0,1.8211149772077757,2.3,0.0,0.0,0.940002927292634,-14.171477062705074,1.0,0.0,0.0 -169,26.0,0.0,0.0,0.0,0.0,0.9642916800116696,-13.338273432743216,1.0,0.0,0.0 -169,27.0,0.0,0.0,0.0,0.0,0.9517687633493288,-10.129009418213672,1.0,0.0,0.0 -169,28.0,1.2487645557996174,0.9,0.0,0.0,0.9505676392641036,-13.96098832039508,1.0,0.0,0.0 -169,29.0,5.515376788114978,1.9,0.0,0.0,0.943125722129529,-14.432153459448855,1.0,0.0,0.0 -170,0.0,0.0,0.0,153.44384728064887,0.0002962875583101,1.0,0.0,0.0,0.0,1.0 -170,1.0,11.290912858688207,12.7,3.362327574101524e-07,9.667248746861816,0.9810636998342832,-3.51578297994456,0.0,1.0,0.0 -170,2.0,1.2487645557996174,1.2,0.0,0.0,0.9753188927741684,-4.61162911781783,1.0,0.0,0.0 -170,3.0,3.9544210933654553,1.6,0.0,0.0,0.9689140396908026,-5.665152004270584,1.0,0.0,0.0 -170,4.0,49.014008815134986,19.0,-3.9647459050773644e-10,23.69315712313772,0.9619542476196692,-8.462023481894184,0.0,1.0,0.0 -170,5.0,0.0,0.0,0.0,0.0,0.968693922659472,-6.728207121979274,1.0,0.0,0.0 -170,6.0,11.863263280096367,10.9,0.0,0.0,0.9595606159274072,-7.6957368453441,1.0,0.0,0.0 -170,7.0,15.609556947495218,30.0,-3.6038421444308727e-10,30.31017948375477,0.9677106626703248,-7.134618014230933,0.0,1.0,0.0 -170,8.0,0.0,0.0,0.0,0.0,1.016554044666718,-8.449163753408204,1.0,0.0,0.0 -170,9.0,3.017847676515742,2.0,0.0,0.0,1.0077548602388158,-9.343589784626532,1.0,0.0,0.0 -170,10.0,0.0,0.0,-2.226047645550401e-10,22.109382638329567,1.0599409121428982,-8.449163753432826,0.0,1.0,0.0 -170,11.0,5.827567927064881,7.5,0.0,0.0,1.0142493499658722,-8.896523039098726,1.0,0.0,0.0 -170,12.0,0.0,0.0,-4.771253215624524e-10,9.29309087311456,1.0269186372400103,-8.896523039135474,0.0,1.0,0.0 -170,13.0,3.2259751024823453,1.6,0.0,0.0,1.0035086508885502,-9.335895365840456,1.0,0.0,0.0 -170,14.0,4.26661223231536,2.5,0.0,0.0,1.0003122290293465,-9.359395363480225,1.0,0.0,0.0 -170,15.0,1.8211149772077757,1.8,0.0,0.0,1.0053879938411536,-9.184686428097995,1.0,0.0,0.0 -170,16.0,4.682867084248566,5.8,0.0,0.0,1.0027145995432745,-9.380175633191588,1.0,0.0,0.0 -170,17.0,1.6650194077328235,0.9,0.0,0.0,0.9939642078322348,-9.67567347995466,1.0,0.0,0.0 -170,18.0,4.943026366706819,3.4,0.0,0.0,0.9924468671940192,-9.772278120745398,1.0,0.0,0.0 -170,19.0,1.144700842816316,0.7,0.0,0.0,0.9956673721652676,-9.695077472269372,1.0,0.0,0.0 -170,20.0,9.105574886038877,11.2,0.0,0.0,0.9973593972675228,-9.500708639250265,1.0,0.0,0.0 -170,21.0,0.0,0.0,0.0,0.0,0.9977414272772864,-9.49814024758814,1.0,0.0,0.0 -170,22.0,1.6650194077328235,1.6,0.0,0.0,0.992101734370082,-9.523666206281677,1.0,0.0,0.0 -170,23.0,4.526771514773613,6.7,0.0,0.0,0.9877494596401396,-9.609270075354749,1.0,0.0,0.0 -170,24.0,0.0,0.0,0.0,0.0,0.9815303652641524,-9.349854423806816,1.0,0.0,0.0 -170,25.0,1.8211149772077757,2.3,0.0,0.0,0.9677106159811968,-9.414340534673777,1.0,0.0,0.0 -170,26.0,0.0,0.0,0.0,0.0,0.9845993041435744,-9.119860216952244,1.0,0.0,0.0 -170,27.0,0.0,0.0,0.0,0.0,0.9667348019810194,-7.063705894909378,1.0,0.0,0.0 -170,28.0,1.2487645557996174,0.9,0.0,0.0,0.9711743975393656,-9.71680923152647,1.0,0.0,0.0 -170,29.0,5.515376788114978,1.9,0.0,0.0,0.963895210307666,-10.168061022180693,1.0,0.0,0.0 -171,0.0,0.0,0.0,153.44384728064887,0.0002962875583101,1.0,0.0,0.0,0.0,1.0 -171,1.0,11.290912858688207,12.7,3.362327574101524e-07,9.667248746861816,0.9810636998342832,-3.51578297994456,0.0,1.0,0.0 -171,2.0,1.2487645557996174,1.2,0.0,0.0,0.9753188927741684,-4.61162911781783,1.0,0.0,0.0 -171,3.0,3.9544210933654553,1.6,0.0,0.0,0.9689140396908026,-5.665152004270584,1.0,0.0,0.0 -171,4.0,49.014008815134986,19.0,-3.9647459050773644e-10,23.69315712313772,0.9619542476196692,-8.462023481894184,0.0,1.0,0.0 -171,5.0,0.0,0.0,0.0,0.0,0.968693922659472,-6.728207121979274,1.0,0.0,0.0 -171,6.0,11.863263280096367,10.9,0.0,0.0,0.9595606159274072,-7.6957368453441,1.0,0.0,0.0 -171,7.0,15.609556947495218,30.0,-3.6038421444308727e-10,30.31017948375477,0.9677106626703248,-7.134618014230933,0.0,1.0,0.0 -171,8.0,0.0,0.0,0.0,0.0,1.016554044666718,-8.449163753408204,1.0,0.0,0.0 -171,9.0,3.017847676515742,2.0,0.0,0.0,1.0077548602388158,-9.343589784626532,1.0,0.0,0.0 -171,10.0,0.0,0.0,-2.226047645550401e-10,22.109382638329567,1.0599409121428982,-8.449163753432826,0.0,1.0,0.0 -171,11.0,5.827567927064881,7.5,0.0,0.0,1.0142493499658722,-8.896523039098726,1.0,0.0,0.0 -171,12.0,0.0,0.0,-4.771253215624524e-10,9.29309087311456,1.0269186372400103,-8.896523039135474,0.0,1.0,0.0 -171,13.0,3.2259751024823453,1.6,0.0,0.0,1.0035086508885502,-9.335895365840456,1.0,0.0,0.0 -171,14.0,4.26661223231536,2.5,0.0,0.0,1.0003122290293465,-9.359395363480225,1.0,0.0,0.0 -171,15.0,1.8211149772077757,1.8,0.0,0.0,1.0053879938411536,-9.184686428097995,1.0,0.0,0.0 -171,16.0,4.682867084248566,5.8,0.0,0.0,1.0027145995432745,-9.380175633191588,1.0,0.0,0.0 -171,17.0,1.6650194077328235,0.9,0.0,0.0,0.9939642078322348,-9.67567347995466,1.0,0.0,0.0 -171,18.0,4.943026366706819,3.4,0.0,0.0,0.9924468671940192,-9.772278120745398,1.0,0.0,0.0 -171,19.0,1.144700842816316,0.7,0.0,0.0,0.9956673721652676,-9.695077472269372,1.0,0.0,0.0 -171,20.0,9.105574886038877,11.2,0.0,0.0,0.9973593972675228,-9.500708639250265,1.0,0.0,0.0 -171,21.0,0.0,0.0,0.0,0.0,0.9977414272772864,-9.49814024758814,1.0,0.0,0.0 -171,22.0,1.6650194077328235,1.6,0.0,0.0,0.992101734370082,-9.523666206281677,1.0,0.0,0.0 -171,23.0,4.526771514773613,6.7,0.0,0.0,0.9877494596401396,-9.609270075354749,1.0,0.0,0.0 -171,24.0,0.0,0.0,0.0,0.0,0.9815303652641524,-9.349854423806816,1.0,0.0,0.0 -171,25.0,1.8211149772077757,2.3,0.0,0.0,0.9677106159811968,-9.414340534673777,1.0,0.0,0.0 -171,26.0,0.0,0.0,0.0,0.0,0.9845993041435744,-9.119860216952244,1.0,0.0,0.0 -171,27.0,0.0,0.0,0.0,0.0,0.9667348019810194,-7.063705894909378,1.0,0.0,0.0 -171,28.0,1.2487645557996174,0.9,0.0,0.0,0.9711743975393656,-9.71680923152647,1.0,0.0,0.0 -171,29.0,5.515376788114978,1.9,0.0,0.0,0.963895210307666,-10.168061022180693,1.0,0.0,0.0 -172,0.0,0.0,0.0,152.82292576639838,0.0002624430849529,1.0,0.0,0.0,0.0,1.0 -172,1.0,11.246955438539302,12.7,2.975779010736151e-07,9.608338940784384,0.9811238916724772,-3.501143504028076,0.0,1.0,0.0 -172,2.0,1.2439029056448998,1.2,0.0,0.0,0.9753993736703478,-4.592475326014782,1.0,0.0,0.0 -172,3.0,3.939025867875516,1.6,0.0,0.0,0.9690101954968952,-5.641449128704998,1.0,0.0,0.0 -172,4.0,48.82318904656232,19.0,-3.544668078793401e-10,23.65856108153953,0.9620783791785584,-8.426747150003937,0.0,1.0,0.0 -172,5.0,0.0,0.0,0.0,0.0,0.9688003757437996,-6.7002687128045055,1.0,0.0,0.0 -172,6.0,11.817077603626547,10.9,0.0,0.0,0.959682737811874,-7.66337359165032,1.0,0.0,0.0 -172,7.0,15.548786320561248,30.0,-3.248320865269735e-10,30.29299647221025,0.9678186506035448,-7.104954724212659,0.0,1.0,0.0 -172,8.0,0.0,0.0,0.0,0.0,1.016621280799504,-8.414319668079031,1.0,0.0,0.0 -172,9.0,3.006098688641841,2.0,0.0,0.0,1.0078315363785173,-9.3051875394928,1.0,0.0,0.0 -172,10.0,0.0,0.0,-2.0300584809238608e-10,22.07640302885176,1.0599433310949444,-8.414319668101484,0.0,1.0,0.0 -172,11.0,5.804880226342865,7.5,0.0,0.0,1.0142901636355588,-8.85974349852535,1.0,0.0,0.0 -172,12.0,0.0,0.0,-4.3255707530557505e-10,9.25032842833929,1.0269013649078802,-8.859743498558664,0.0,1.0,0.0 -172,13.0,3.213415839582658,1.6,0.0,0.0,1.0035719037523725,-9.296838934411808,1.0,0.0,0.0 -172,14.0,4.250001594286741,2.5,0.0,0.0,1.0003845229039756,-9.320057251783863,1.0,0.0,0.0 -172,15.0,1.8140250707321457,1.8,0.0,0.0,1.0054521906390914,-9.146447828878545,1.0,0.0,0.0 -172,16.0,4.664635896168375,5.8,0.0,0.0,1.0027914014849688,-9.34118785264476,1.0,0.0,0.0 -172,17.0,1.6585372075265332,0.9,0.0,0.0,0.9940539427337772,-9.634826473985266,1.0,0.0,0.0 -172,18.0,4.923782334844395,3.4,0.0,0.0,0.9925425067938584,-9.731031227698628,1.0,0.0,0.0 -172,19.0,1.1402443301744918,0.7,0.0,0.0,0.9957591425870932,-9.654403444636808,1.0,0.0,0.0 -172,20.0,9.070125353660728,11.2,0.0,0.0,0.9974489749897416,-9.460951810002838,1.0,0.0,0.0 -172,21.0,0.0,0.0,0.0,0.0,0.997830800140073,-9.4584431168415,1.0,0.0,0.0 -172,22.0,1.6585372075265332,1.6,0.0,0.0,0.9921925958493506,-9.483271552949171,1.0,0.0,0.0 -172,23.0,4.509148032962761,6.7,0.0,0.0,0.9878556524868102,-9.568484399158606,1.0,0.0,0.0 -172,24.0,0.0,0.0,0.0,0.0,0.981646045764048,-9.310035879678294,1.0,0.0,0.0 -172,25.0,1.8140250707321457,2.3,0.0,0.0,0.9678469096111298,-9.372880565539726,1.0,0.0,0.0 -172,26.0,0.0,0.0,0.0,0.0,0.9847120534680224,-9.081528154790796,1.0,0.0,0.0 -172,27.0,0.0,0.0,0.0,0.0,0.9668471564246464,-7.03429202117739,1.0,0.0,0.0 -172,28.0,1.2439029056448998,0.9,0.0,0.0,0.9713184870372517,-9.675265590544974,1.0,0.0,0.0 -172,29.0,5.493904499931641,1.9,0.0,0.0,0.9640595126452816,-10.124316477831892,1.0,0.0,0.0 -173,0.0,0.0,0.0,152.9373767286013,0.0090103024223964,1.0,0.0,0.0,0.0,1.0 -173,1.0,11.246955438539302,12.7,5.349146073766838e-06,10.588963043712234,0.9814300675840316,-3.494463764158123,0.0,1.0,0.0 -173,2.0,1.2439029056448998,1.2,0.0,0.0,0.9745097395697092,-4.626362484591502,1.0,0.0,0.0 -173,3.0,3.939025867875516,1.6,0.0,0.0,0.9679181779823732,-5.6838845973172365,1.0,0.0,0.0 -173,4.0,48.82318904656232,19.0,-9.549005057955465e-09,24.067338040357757,0.96282014860859,-8.385737282314695,0.0,1.0,0.0 -173,5.0,0.0,0.0,0.0,0.0,0.9691530816633402,-6.614964306168616,1.0,0.0,0.0 -173,6.0,11.817077603626547,10.9,0.0,0.0,0.9602050171957508,-7.595661030237529,1.0,0.0,0.0 -173,7.0,15.548786320561248,30.0,-1.001481047771152e-08,33.09404822048705,0.9690639101779548,-7.048917369573098,0.0,1.0,0.0 -173,8.0,0.0,0.0,0.0,0.0,1.025463137018476,-6.614964307337591,1.0,0.0,0.0 -173,9.0,3.006098688641841,2.0,0.0,0.0,0.9835211432149978,-11.019896420332966,1.0,0.0,0.0 -173,10.0,0.0,0.0,-9.967661414310989e-09,17.585889646489726,1.059972202792404,-6.614964308430455,0.0,1.0,0.0 -173,11.0,5.804880226342865,7.5,0.0,0.0,1.0073959385915856,-9.861839055290936,1.0,0.0,0.0 -173,12.0,0.0,0.0,-9.003459686635473e-09,12.015936894194116,1.0238267571210555,-9.861839055991156,0.0,1.0,0.0 -173,13.0,3.213415839582658,1.6,0.0,0.0,0.9949627728096164,-10.386635950313064,1.0,0.0,0.0 -173,14.0,4.250001594286741,2.5,0.0,0.0,0.989621295470846,-10.453333371872002,1.0,0.0,0.0 -173,15.0,1.8140250707321457,1.8,0.0,0.0,0.990451165023323,-10.416157990038384,1.0,0.0,0.0 -173,16.0,4.664635896168375,5.8,0.0,0.0,0.981442530028658,-10.931544928413892,1.0,0.0,0.0 -173,17.0,1.6585372075265332,0.9,0.0,0.0,0.9783066702249554,-10.978935904782324,1.0,0.0,0.0 -173,18.0,4.923782334844395,3.4,0.0,0.0,0.9738956166753928,-11.199794544869553,1.0,0.0,0.0 -173,19.0,1.1402443301744918,0.7,0.0,0.0,0.9756571720776022,-11.183823087724148,1.0,0.0,0.0 -173,20.0,9.070125353660728,11.2,0.0,0.0,0.9742721013537528,-11.102990045537371,1.0,0.0,0.0 -173,21.0,0.0,0.0,0.0,0.0,0.9751113050256414,-11.0751385444903,1.0,0.0,0.0 -173,22.0,1.6585372075265332,1.6,0.0,0.0,0.9789827364114256,-10.697897440638958,1.0,0.0,0.0 -173,23.0,4.509148032962761,6.7,0.0,0.0,0.9714922389887534,-10.891681426703409,1.0,0.0,0.0 -173,24.0,0.0,0.0,0.0,0.0,0.9728452569492632,-10.194862609167268,1.0,0.0,0.0 -173,25.0,1.8140250707321457,2.3,0.0,0.0,0.9589176143539389,-10.258866311454389,1.0,0.0,0.0 -173,26.0,0.0,0.0,0.0,0.0,0.9805671500870108,-9.68743605726722,1.0,0.0,0.0 -173,27.0,0.0,0.0,0.0,0.0,0.9665252783704972,-7.0207890850588734,1.0,0.0,0.0 -173,28.0,1.2439029056448998,0.9,0.0,0.0,0.9671137824926102,-10.286271885044023,1.0,0.0,0.0 -173,29.0,5.493904499931641,1.9,0.0,0.0,0.9598222924487154,-10.739261894934208,1.0,0.0,0.0 -174,0.0,0.0,0.0,156.7924540187662,9.998266263701083,1.0,0.0,0.0,0.0,1.0 -174,1.0,11.246955438539302,12.7,0.0,0.0,0.9779698963640628,-3.1937607911155257,0.0,1.0,0.0 -174,2.0,1.2439029056448998,1.2,0.0,0.0,0.9674965207841952,-5.635800277756472,1.0,0.0,0.0 -174,3.0,3.939025867875516,1.6,0.0,0.0,0.9594498584565,-6.942501466485015,1.0,0.0,0.0 -174,4.0,48.82318904656232,19.0,4.163754349293446e-09,37.7075308521414,0.944361658081455,-16.161956282597412,0.0,1.0,0.0 -174,5.0,0.0,0.0,0.0,0.0,0.959843839508472,-8.624120104151006,1.0,0.0,0.0 -174,6.0,11.817077603626547,10.9,0.0,0.0,0.9466036823131238,-11.949840198814115,1.0,0.0,0.0 -174,7.0,15.548786320561248,30.0,2.0108173075210007e-08,39.99904401268721,0.9623585081917004,-9.102642543194266,0.0,1.0,0.0 -174,8.0,0.0,0.0,0.0,0.0,1.0038095999956325,-10.86685098326666,1.0,0.0,0.0 -174,9.0,3.006098688641841,2.0,0.0,0.0,0.991136847570382,-12.041083524435772,1.0,0.0,0.0 -174,10.0,0.0,0.0,1.5537952276940633e-08,23.99905107738998,1.05129214468444,-10.86685098151195,0.0,1.0,0.0 -174,11.0,5.804880226342865,7.5,0.0,0.0,0.991411888409482,-10.72013000060976,1.0,0.0,0.0 -174,12.0,0.0,0.0,0.0,0.0,0.991411888409482,-10.72013000060976,0.0,1.0,0.0 -174,13.0,3.213415839582658,1.6,0.0,0.0,0.96362329644876,-11.778387663553106,1.0,0.0,0.0 -174,14.0,4.250001594286741,2.5,0.0,0.0,0.9743134384648744,-11.602559093507052,1.0,0.0,0.0 -174,15.0,1.8140250707321457,1.8,0.0,0.0,0.9845267045571682,-11.401294893196004,1.0,0.0,0.0 -174,16.0,4.664635896168375,5.8,0.0,0.0,0.9848625498826488,-11.92578085901036,1.0,0.0,0.0 -174,17.0,1.6585372075265332,0.9,0.0,0.0,0.9710373705315224,-12.09440130967634,1.0,0.0,0.0 -174,18.0,4.923782334844395,3.4,0.0,0.0,0.9713994277239542,-12.290957407224209,1.0,0.0,0.0 -174,19.0,1.1402443301744918,0.7,0.0,0.0,0.9756893504914618,-12.261663726991776,1.0,0.0,0.0 -174,20.0,9.070125353660728,11.2,0.0,0.0,0.9757916255470211,-12.209164615389968,1.0,0.0,0.0 -174,21.0,0.0,0.0,0.0,0.0,0.9746749343419904,-12.206599624516402,1.0,0.0,0.0 -174,22.0,1.6585372075265332,1.6,0.0,0.0,0.967732545629189,-11.88594726813511,1.0,0.0,0.0 -174,23.0,4.509148032962761,6.7,0.0,0.0,0.9657403039421616,-12.1246821986264,1.0,0.0,0.0 -174,24.0,0.0,0.0,0.0,0.0,0.9648687324081452,-11.716448749700549,1.0,0.0,0.0 -174,25.0,1.8140250707321457,2.3,0.0,0.0,0.9508225023246694,-11.781530985610358,1.0,0.0,0.0 -174,26.0,0.0,0.0,0.0,0.0,0.9713336548748928,-11.387293240276724,1.0,0.0,0.0 -174,27.0,0.0,0.0,0.0,0.0,0.9579685181325832,-9.004161238946386,1.0,0.0,0.0 -174,28.0,1.2439029056448998,0.9,0.0,0.0,0.9577450768415272,-11.997726647805155,1.0,0.0,0.0 -174,29.0,5.493904499931641,1.9,0.0,0.0,0.950380063177468,-12.459682659862532,1.0,0.0,0.0 -175,0.0,0.0,0.0,139.21474659527257,-9.547361123907194e-07,1.0,0.0,0.0,0.0,1.0 -175,1.0,11.246955438539302,12.7,15.608728552779075,10.674186618791182,0.973487845330582,-4.611821067356034,0.0,1.0,0.0 -175,2.0,1.2439029056448998,1.2,0.0,0.0,1.000827365308974,-0.1394649473546929,1.0,0.0,0.0 -175,3.0,3.939025867875516,1.6,0.0,0.0,0.9497252309716192,-9.228096099675442,1.0,0.0,0.0 -175,4.0,48.82318904656232,19.0,-6.773177493356506e-10,25.591467825459773,0.9522342121027378,-10.593478271371112,0.0,1.0,0.0 -175,5.0,0.0,0.0,0.0,0.0,0.9525748294837032,-9.745440765177698,1.0,0.0,0.0 -175,6.0,11.817077603626547,10.9,0.0,0.0,0.9457940454717834,-10.353622438637805,1.0,0.0,0.0 -175,7.0,15.548786320561248,30.0,-7.127281648330662e-10,31.61504621391407,0.9520410392175588,-10.1733468722778,0.0,1.0,0.0 -175,8.0,0.0,0.0,0.0,0.0,1.0020416754514372,-11.619034739738412,1.0,0.0,0.0 -175,9.0,3.006098688641841,2.0,0.0,0.0,0.9921434350395212,-12.591634302814237,1.0,0.0,0.0 -175,10.0,0.0,0.0,-1.301468536800645e-09,23.9924014473268,1.0495881306313568,-11.619034739885883,0.0,1.0,0.0 -175,11.0,5.804880226342865,7.5,0.0,0.0,0.9975283163330624,-12.340460035213654,1.0,0.0,0.0 -175,12.0,0.0,0.0,-1.0692836951794852e-09,11.13732606907115,1.0129216651313406,-12.34046003529854,0.0,1.0,0.0 -175,13.0,3.213415839582658,1.6,0.0,0.0,0.9866755538022824,-12.764310256861448,1.0,0.0,0.0 -175,14.0,4.250001594286741,2.5,0.0,0.0,0.9836731420302508,-12.761625914102746,1.0,0.0,0.0 -175,15.0,1.8140250707321457,1.8,0.0,0.0,0.9891916513683024,-12.549517510441769,1.0,0.0,0.0 -175,16.0,4.664635896168375,5.8,0.0,0.0,0.9868106394928606,-12.666066202938945,1.0,0.0,0.0 -175,17.0,1.6585372075265332,0.9,0.0,0.0,0.9775628084240584,-13.032712851185853,1.0,0.0,0.0 -175,18.0,4.923782334844395,3.4,0.0,0.0,0.9762177600167932,-13.099732914692714,1.0,0.0,0.0 -175,19.0,1.1402443301744918,0.7,0.0,0.0,0.9795906241439925,-13.00348649311385,1.0,0.0,0.0 -175,20.0,9.070125353660728,11.2,0.0,0.0,0.981492601818487,-12.755854325328809,1.0,0.0,0.0 -175,21.0,0.0,0.0,0.0,0.0,0.9818486461524988,-12.754323205710966,1.0,0.0,0.0 -175,22.0,1.6585372075265332,1.6,0.0,0.0,0.9754870939213692,-12.8713183702848,1.0,0.0,0.0 -175,23.0,4.509148032962761,6.7,0.0,0.0,0.9712598568615208,-12.879556574860812,1.0,0.0,0.0 -175,24.0,0.0,0.0,0.0,0.0,0.9649955136549874,-12.55061735913052,1.0,0.0,0.0 -175,25.0,1.8140250707321457,2.3,0.0,0.0,0.9509511844851696,-12.615682240862755,1.0,0.0,0.0 -175,26.0,0.0,0.0,0.0,0.0,0.968133009070882,-12.275768326991916,1.0,0.0,0.0 -175,27.0,0.0,0.0,0.0,0.0,0.9506574818728196,-10.099956127138537,1.0,0.0,0.0 -175,28.0,1.2439029056448998,0.9,0.0,0.0,0.9544969081818958,-12.890300996043129,1.0,0.0,0.0 -175,29.0,5.493904499931641,1.9,0.0,0.0,0.9471060510324172,-13.355427937248471,1.0,0.0,0.0 -176,0.0,0.0,0.0,109.03571933112195,3.863774633572348e-06,1.0,0.0,0.0,0.0,1.0 -176,1.0,11.246955438539302,12.7,43.15526848410872,-20.424914145013,0.9846362384867036,-2.216749280896066,0.0,1.0,0.0 -176,2.0,1.2439029056448998,1.2,0.0,0.0,0.9848222010833142,-3.962955189286478,1.0,0.0,0.0 -176,3.0,3.939025867875516,1.6,0.0,0.0,0.9805612985959388,-4.857895951100236,1.0,0.0,0.0 -176,4.0,48.82318904656232,19.0,1.728721328156862e-08,39.99999745008719,0.9871695971518611,-7.518803969067216,0.0,1.0,0.0 -176,5.0,0.0,0.0,0.0,0.0,0.9819477268373624,-5.833901475432386,1.0,0.0,0.0 -176,6.0,11.817077603626547,10.9,0.0,0.0,0.977868762949592,-6.765785182389141,1.0,0.0,0.0 -176,7.0,15.548786320561248,30.0,1.0535890144082105e-08,39.99999937690755,0.9961094914032904,-9.062450970528166,0.0,1.0,0.0 -176,8.0,0.0,0.0,0.0,0.0,1.0260695131172963,-7.567488892901372,1.0,0.0,0.0 -176,9.0,3.006098688641841,2.0,0.0,0.0,1.02014707258154,-8.469711085483663,1.0,0.0,0.0 -176,10.0,0.0,0.0,2.5424382184640258e-08,17.291495708547373,1.0599999954093176,-7.567488890115549,0.0,1.0,0.0 -176,11.0,5.804880226342865,7.5,0.0,0.0,1.0404465073706992,-7.900918967525879,1.0,0.0,0.0 -176,12.0,0.0,0.0,2.0492062045354315e-08,14.804781704948477,1.0599999927746693,-7.9009189660354515,0.0,1.0,0.0 -176,13.0,3.213415839582658,1.6,0.0,0.0,1.0055550145619778,-8.85612566653595,1.0,0.0,0.0 -176,14.0,4.250001594286741,2.5,0.0,0.0,1.0157990214683936,-8.694510655387088,1.0,0.0,0.0 -176,15.0,1.8140250707321457,1.8,0.0,0.0,1.007325827553344,-8.779951253734009,1.0,0.0,0.0 -176,16.0,4.664635896168375,5.8,0.0,0.0,1.0117088456375354,-8.636859568380515,1.0,0.0,0.0 -176,17.0,1.6585372075265332,0.9,0.0,0.0,0.9991517822877386,-9.245994220599329,1.0,0.0,0.0 -176,18.0,4.923782334844395,3.4,0.0,0.0,0.9915394244862096,-9.4882561890134,1.0,0.0,0.0 -176,19.0,1.1402443301744918,0.7,0.0,0.0,1.01765929827415,-8.565073869503447,1.0,0.0,0.0 -176,20.0,9.070125353660728,11.2,0.0,0.0,1.008697376334957,-8.63095623902646,1.0,0.0,0.0 -176,21.0,0.0,0.0,0.0,0.0,1.0146238187874734,-8.700665997669729,1.0,0.0,0.0 -176,22.0,1.6585372075265332,1.6,0.0,0.0,1.0092590344937462,-8.859106055326864,1.0,0.0,0.0 -176,23.0,4.509148032962761,6.7,0.0,0.0,1.0070145757425673,-8.949559094847436,1.0,0.0,0.0 -176,24.0,0.0,0.0,0.0,0.0,0.9850986847055352,-8.850135299543698,1.0,0.0,0.0 -176,25.0,1.8140250707321457,2.3,0.0,0.0,0.9713493084013796,-8.912533923982663,1.0,0.0,0.0 -176,26.0,0.0,0.0,0.0,0.0,0.992083854997708,-8.774947709240093,1.0,0.0,0.0 -176,27.0,0.0,0.0,0.0,0.0,0.982468453944778,-6.789800932847266,1.0,0.0,0.0 -176,28.0,1.2439029056448998,0.9,0.0,0.0,0.9634267579850888,-10.083530460343496,1.0,0.0,0.0 -176,29.0,5.493904499931641,1.9,0.0,0.0,0.9400000026476052,-11.370851080622534,1.0,0.0,0.0 -177,0.0,0.0,0.0,152.8942087181216,0.0236170547626812,1.0,0.0,0.0,0.0,1.0 -177,1.0,11.246955438539302,12.7,1.060553553813898e-05,15.917455743491011,0.9819864072758052,-3.520086207606103,0.0,1.0,0.0 -177,2.0,1.2439029056448998,1.2,0.0,0.0,0.9728395421440988,-4.555875229763737,1.0,0.0,0.0 -177,3.0,3.939025867875516,1.6,0.0,0.0,0.9658512736916032,-5.5969782791031495,1.0,0.0,0.0 -177,4.0,48.82318904656232,19.0,-1.490435181142777e-08,26.121826576182517,0.963069904187397,-8.454230388300644,0.0,1.0,0.0 -177,5.0,0.0,0.0,0.0,0.0,0.9648847629380056,-6.629487938253616,1.0,0.0,0.0 -177,6.0,11.817077603626547,10.9,0.0,0.0,0.9577674912657176,-7.631348449126311,1.0,0.0,0.0 -177,7.0,15.548786320561248,30.0,-1.8292747560047785e-08,39.96321922215557,0.9673954732854172,-7.0984528594558745,0.0,1.0,0.0 -177,8.0,0.0,0.0,0.0,0.0,0.9866105977211046,-8.308750294289366,1.0,0.0,0.0 -177,9.0,3.006098688641841,2.0,0.0,0.0,0.986964145266602,-9.196393258426731,1.0,0.0,0.0 -177,10.0,0.0,0.0,0.0,0.0,0.9866105977211046,-8.308750294289366,0.0,1.0,0.0 -177,11.0,5.804880226342865,7.5,0.0,0.0,1.00663912880908,-8.95814979397422,1.0,0.0,0.0 -177,12.0,0.0,0.0,-1.5973644457080462e-08,13.05680190772761,1.024481829522799,-8.958149795216665,0.0,1.0,0.0 -177,13.0,3.213415839582658,1.6,0.0,0.0,0.9943511870367264,-9.394164563925822,1.0,0.0,0.0 -177,14.0,4.250001594286741,2.5,0.0,0.0,0.98976490578089,-9.375708148974931,1.0,0.0,0.0 -177,15.0,1.8140250707321457,1.8,0.0,0.0,0.9921459908771588,-9.1307464404977,1.0,0.0,0.0 -177,16.0,4.664635896168375,5.8,0.0,0.0,0.9841647055851348,-9.274004751574404,1.0,0.0,0.0 -177,17.0,1.6585372075265332,0.9,0.0,0.0,0.979696220159666,-9.640770263885198,1.0,0.0,0.0 -177,18.0,4.923782334844395,3.4,0.0,0.0,0.9760022058653132,-9.705006066567393,1.0,0.0,0.0 -177,19.0,1.1402443301744918,0.7,0.0,0.0,0.978137140010432,-9.60687852637037,1.0,0.0,0.0 -177,20.0,9.070125353660728,11.2,0.0,0.0,0.977381709016946,-9.367809786529282,1.0,0.0,0.0 -177,21.0,0.0,0.0,0.0,0.0,0.9780930357125328,-9.368532894476136,1.0,0.0,0.0 -177,22.0,1.6585372075265332,1.6,0.0,0.0,0.9793420117316136,-9.510467321771957,1.0,0.0,0.0 -177,23.0,4.509148032962761,6.7,0.0,0.0,0.9721104610140616,-9.55507901209159,1.0,0.0,0.0 -177,24.0,0.0,0.0,0.0,0.0,0.9702640057730466,-9.34375267374416,1.0,0.0,0.0 -177,25.0,1.8140250707321457,2.3,0.0,0.0,0.9562982105546616,-9.408102426433668,1.0,0.0,0.0 -177,26.0,0.0,0.0,0.0,0.0,0.9761391037583396,-9.138061118472354,1.0,0.0,0.0 -177,27.0,0.0,0.0,0.0,0.0,0.9631011478073854,-6.979461622116878,1.0,0.0,0.0 -177,28.0,1.2439029056448998,0.9,0.0,0.0,0.9626212408264458,-9.742416878935378,1.0,0.0,0.0 -177,29.0,5.493904499931641,1.9,0.0,0.0,0.9552946810319556,-10.199673358768946,1.0,0.0,0.0 -178,0.0,0.0,0.0,139.21473776943762,2.9500094012036016e-05,1.0,0.0,0.0,0.0,1.0 -178,1.0,11.246955438539302,12.7,16.11156128636868,5.577294994897571,0.9734878286866322,-4.61182050145009,0.0,1.0,0.0 -178,2.0,1.2439029056448998,1.2,0.0,0.0,1.000827365308974,-0.1394649473546941,1.0,0.0,0.0 -178,3.0,3.939025867875516,1.6,0.0,0.0,0.9532716294299024,-9.28029998383723,1.0,0.0,0.0 -178,4.0,48.82318904656232,19.0,1.0277105289718075e-09,27.2447937491436,0.9554048980676688,-10.643221970512217,0.0,1.0,0.0 -178,5.0,0.0,0.0,0.0,0.0,0.9554187363143252,-9.820122427650784,1.0,0.0,0.0 -178,6.0,11.817077603626547,10.9,0.0,0.0,0.9487942639860608,-10.416363330452858,1.0,0.0,0.0 -178,7.0,15.548786320561248,30.0,1.0618779234730035e-09,38.24154807946473,0.9572338150587666,-10.294311766768724,0.0,1.0,0.0 -178,8.0,0.0,0.0,0.0,0.0,1.0038966518140768,-11.734677553903651,1.0,0.0,0.0 -178,9.0,3.006098688641841,2.0,0.0,0.0,0.9934965720971084,-12.730144347052985,1.0,0.0,0.0 -178,10.0,0.0,0.0,1.542943619707206e-09,23.999887746246923,1.0513770186352869,-11.734677553729432,0.0,1.0,0.0 -178,11.0,5.804880226342865,7.5,0.0,0.0,1.0090899450770128,-12.155045313568207,1.0,0.0,0.0 -178,12.0,0.0,0.0,1.5757303034044392e-09,12.800662137503938,1.0265474211021004,-12.155045313446186,0.0,1.0,0.0 -178,13.0,3.213415839582658,1.6,0.0,0.0,0.9830596837046058,-13.15590917387187,1.0,0.0,0.0 -178,14.0,4.250001594286741,2.5,0.0,0.0,0.9614250846990824,-13.389930970530878,1.0,0.0,0.0 -178,15.0,1.8140250707321457,1.8,0.0,0.0,0.996162505618047,-12.47918600789794,1.0,0.0,0.0 -178,16.0,4.664635896168375,5.8,0.0,0.0,0.990006168879041,-12.745659188506934,1.0,0.0,0.0 -178,17.0,1.6585372075265332,0.9,0.0,0.0,0.9635382128527878,-13.498339244295352,1.0,0.0,0.0 -178,18.0,4.923782334844395,3.4,0.0,0.0,0.9670942948384535,-13.46596807392523,1.0,0.0,0.0 -178,19.0,1.1402443301744918,0.7,0.0,0.0,0.973096318762602,-13.316074609641827,1.0,0.0,0.0 -178,20.0,9.070125353660728,11.2,0.0,0.0,0.9584629770884394,-13.26568163222116,1.0,0.0,0.0 -178,21.0,0.0,0.0,0.0,0.0,0.962318857127116,-13.213417367056731,1.0,0.0,0.0 -178,22.0,1.6585372075265332,1.6,0.0,0.0,0.9550454725621668,-13.438904452762811,1.0,0.0,0.0 -178,23.0,4.509148032962761,6.7,0.0,0.0,0.9533616639204112,-13.358401763673513,1.0,0.0,0.0 -178,24.0,0.0,0.0,0.0,0.0,0.9542088766260864,-12.954367790691672,1.0,0.0,0.0 -178,25.0,1.8140250707321457,2.3,0.0,0.0,0.9400009278490729,-13.020934714703817,1.0,0.0,0.0 -178,26.0,0.0,0.0,0.0,0.0,0.9618257473116408,-12.62451316871192,1.0,0.0,0.0 -178,27.0,0.0,0.0,0.0,0.0,0.9506447769210628,-10.158341091822036,1.0,0.0,0.0 -178,28.0,1.2439029056448998,0.9,0.0,0.0,0.9480949894749116,-13.247246372031745,1.0,0.0,0.0 -178,29.0,5.493904499931641,1.9,0.0,0.0,0.940652653793231,-13.718719585715167,1.0,0.0,0.0 -179,0.0,0.0,0.0,152.82724839872716,0.0002541833028502,1.0,0.0,0.0,0.0,1.0 -179,1.0,11.246955438539302,12.7,2.800385960519585e-07,9.705571459160184,0.9811369018973564,-3.5015747166955293,0.0,1.0,0.0 -179,2.0,1.2439029056448998,1.2,0.0,0.0,0.9753598078776878,-4.5918408388465615,1.0,0.0,0.0 -179,3.0,3.939025867875516,1.6,0.0,0.0,0.9689613604475796,-5.640676756219581,1.0,0.0,0.0 -179,4.0,48.82318904656232,19.0,-3.3577989052008607e-10,23.665546851587848,0.9620714072875006,-8.427202209313222,0.0,1.0,0.0 -179,5.0,0.0,0.0,0.0,0.0,0.9687592272697751,-6.700228562856256,1.0,0.0,0.0 -179,6.0,11.817077603626547,10.9,0.0,0.0,0.9596553704585764,-7.663532453283368,1.0,0.0,0.0 -179,7.0,15.548786320561248,30.0,-3.1217419529346977e-10,30.312039541502514,0.9677934420338684,-7.104984774908577,0.0,1.0,0.0 -179,8.0,0.0,0.0,0.0,0.0,1.0164351892951338,-8.419569199028631,1.0,0.0,0.0 -179,9.0,3.006098688641841,2.0,0.0,0.0,1.0074504568654774,-9.313485824796883,1.0,0.0,0.0 -179,10.0,0.0,0.0,-1.9679144835213847e-10,22.193943876093588,1.0599861392127978,-8.419569199050397,0.0,1.0,0.0 -179,11.0,5.804880226342865,7.5,0.0,0.0,1.0140342518454557,-8.85698883284854,1.0,0.0,0.0 -179,12.0,0.0,0.0,-4.15260299361444e-10,9.031999189859343,1.0263543620658206,-8.856988832880544,0.0,1.0,0.0 -179,13.0,3.213415839582658,1.6,0.0,0.0,1.0034037070704582,-9.293654826130874,1.0,0.0,0.0 -179,14.0,4.250001594286741,2.5,0.0,0.0,1.0003069608350756,-9.318306495580837,1.0,0.0,0.0 -179,15.0,1.8140250707321457,1.8,0.0,0.0,1.0051329646638731,-9.148227511196607,1.0,0.0,0.0 -179,16.0,4.664635896168375,5.8,0.0,0.0,1.002430414048092,-9.34759226318354,1.0,0.0,0.0 -179,17.0,1.6585372075265332,0.9,0.0,0.0,0.9938667613364331,-9.636681901127162,1.0,0.0,0.0 -179,18.0,4.923782334844395,3.4,0.0,0.0,0.9922910014141576,-9.735021309406887,1.0,0.0,0.0 -179,19.0,1.1402443301744918,0.7,0.0,0.0,0.995474651864204,-9.659445493933246,1.0,0.0,0.0 -179,20.0,9.070125353660728,11.2,0.0,0.0,0.9958529787358408,-9.47886904886624,1.0,0.0,0.0 -179,21.0,0.0,0.0,0.0,0.0,0.9993980459824102,-9.452247411874756,1.0,0.0,0.0 -179,22.0,1.6585372075265332,1.6,0.0,0.0,0.9925637084867918,-9.478962363411943,1.0,0.0,0.0 -179,23.0,4.509148032962761,6.7,0.0,0.0,0.9888220001663668,-9.56050371139262,1.0,0.0,0.0 -179,24.0,0.0,0.0,0.0,0.0,0.9822507513021026,-9.300379091647518,1.0,0.0,0.0 -179,25.0,1.8140250707321457,2.3,0.0,0.0,0.9684603566034156,-9.36314530532566,1.0,0.0,0.0 -179,26.0,0.0,0.0,0.0,0.0,0.9850872358500066,-9.071295208077936,1.0,0.0,0.0 -179,27.0,0.0,0.0,0.0,0.0,0.9668594431424592,-7.033923339894823,1.0,0.0,0.0 -179,28.0,1.2439029056448998,0.9,0.0,0.0,0.9716990554805572,-9.664574387353596,1.0,0.0,0.0 -179,29.0,5.493904499931641,1.9,0.0,0.0,0.9644430095729304,-10.113271288147434,1.0,0.0,0.0 -180,0.0,0.0,0.0,152.82292576639838,0.0002624430849529,1.0,0.0,0.0,0.0,1.0 -180,1.0,11.246955438539302,12.7,2.975779010736151e-07,9.608338940784384,0.9811238916724772,-3.501143504028076,0.0,1.0,0.0 -180,2.0,1.2439029056448998,1.2,0.0,0.0,0.9753993736703478,-4.592475326014782,1.0,0.0,0.0 -180,3.0,3.939025867875516,1.6,0.0,0.0,0.9690101954968952,-5.641449128704998,1.0,0.0,0.0 -180,4.0,48.82318904656232,19.0,-3.544668078793401e-10,23.65856108153953,0.9620783791785584,-8.426747150003937,0.0,1.0,0.0 -180,5.0,0.0,0.0,0.0,0.0,0.9688003757437996,-6.7002687128045055,1.0,0.0,0.0 -180,6.0,11.817077603626547,10.9,0.0,0.0,0.959682737811874,-7.66337359165032,1.0,0.0,0.0 -180,7.0,15.548786320561248,30.0,-3.248320865269735e-10,30.29299647221025,0.9678186506035448,-7.104954724212659,0.0,1.0,0.0 -180,8.0,0.0,0.0,0.0,0.0,1.016621280799504,-8.414319668079031,1.0,0.0,0.0 -180,9.0,3.006098688641841,2.0,0.0,0.0,1.0078315363785173,-9.3051875394928,1.0,0.0,0.0 -180,10.0,0.0,0.0,-2.0300584809238608e-10,22.07640302885176,1.0599433310949444,-8.414319668101484,0.0,1.0,0.0 -180,11.0,5.804880226342865,7.5,0.0,0.0,1.0142901636355588,-8.85974349852535,1.0,0.0,0.0 -180,12.0,0.0,0.0,-4.3255707530557505e-10,9.25032842833929,1.0269013649078802,-8.859743498558664,0.0,1.0,0.0 -180,13.0,3.213415839582658,1.6,0.0,0.0,1.0035719037523725,-9.296838934411808,1.0,0.0,0.0 -180,14.0,4.250001594286741,2.5,0.0,0.0,1.0003845229039756,-9.320057251783863,1.0,0.0,0.0 -180,15.0,1.8140250707321457,1.8,0.0,0.0,1.0054521906390914,-9.146447828878545,1.0,0.0,0.0 -180,16.0,4.664635896168375,5.8,0.0,0.0,1.0027914014849688,-9.34118785264476,1.0,0.0,0.0 -180,17.0,1.6585372075265332,0.9,0.0,0.0,0.9940539427337772,-9.634826473985266,1.0,0.0,0.0 -180,18.0,4.923782334844395,3.4,0.0,0.0,0.9925425067938584,-9.731031227698628,1.0,0.0,0.0 -180,19.0,1.1402443301744918,0.7,0.0,0.0,0.9957591425870932,-9.654403444636808,1.0,0.0,0.0 -180,20.0,9.070125353660728,11.2,0.0,0.0,0.9974489749897416,-9.460951810002838,1.0,0.0,0.0 -180,21.0,0.0,0.0,0.0,0.0,0.997830800140073,-9.4584431168415,1.0,0.0,0.0 -180,22.0,1.6585372075265332,1.6,0.0,0.0,0.9921925958493506,-9.483271552949171,1.0,0.0,0.0 -180,23.0,4.509148032962761,6.7,0.0,0.0,0.9878556524868102,-9.568484399158606,1.0,0.0,0.0 -180,24.0,0.0,0.0,0.0,0.0,0.981646045764048,-9.310035879678294,1.0,0.0,0.0 -180,25.0,1.8140250707321457,2.3,0.0,0.0,0.9678469096111298,-9.372880565539726,1.0,0.0,0.0 -180,26.0,0.0,0.0,0.0,0.0,0.9847120534680224,-9.081528154790796,1.0,0.0,0.0 -180,27.0,0.0,0.0,0.0,0.0,0.9668471564246464,-7.03429202117739,1.0,0.0,0.0 -180,28.0,1.2439029056448998,0.9,0.0,0.0,0.9713184870372517,-9.675265590544974,1.0,0.0,0.0 -180,29.0,5.493904499931641,1.9,0.0,0.0,0.9640595126452816,-10.124316477831892,1.0,0.0,0.0 -181,0.0,0.0,0.0,86.61729280763169,1.4809400816773175e-06,1.0,0.0,0.0,0.0,1.0 -181,1.0,11.246955438539302,12.7,65.20822859538985,31.937025106046832,0.9938745594317114,-1.3182035089947408,0.0,1.0,0.0 -181,2.0,1.2439029056448998,1.2,0.0,0.0,0.9705151200673514,-4.460650978663211,1.0,0.0,0.0 -181,3.0,3.939025867875516,1.6,0.0,0.0,0.9629758049924636,-5.479483901648342,1.0,0.0,0.0 -181,4.0,48.82318904656232,19.0,0.0,0.0,0.9400000006827178,-6.57111066802074,0.0,1.0,0.0 -181,5.0,0.0,0.0,0.0,0.0,0.9611994816159676,-5.94532870727124,1.0,0.0,0.0 -181,6.0,11.817077603626547,10.9,0.0,0.0,0.9458517900306096,-6.478402089484365,1.0,0.0,0.0 -181,7.0,15.548786320561248,30.0,4.7275203432813185e-09,39.99999712998848,0.963773929072956,-6.419145506702836,0.0,1.0,0.0 -181,8.0,0.0,0.0,0.0,0.0,0.9834410084257392,-7.704591440741696,1.0,0.0,0.0 -181,9.0,3.006098688641841,2.0,0.0,0.0,0.9841429662345228,-8.633616267797674,1.0,0.0,0.0 -181,10.0,0.0,0.0,0.0,0.0,0.9834410084257392,-7.704591440741696,0.0,1.0,0.0 -181,11.0,5.804880226342865,7.5,0.0,0.0,1.0267398030428905,-8.673053154289196,1.0,0.0,0.0 -181,12.0,0.0,0.0,-4.824162040592061e-09,23.999997351695782,1.058483331993042,-8.673053154645261,0.0,1.0,0.0 -181,13.0,3.213415839582658,1.6,0.0,0.0,1.011720824516623,-9.089264053355134,1.0,0.0,0.0 -181,14.0,4.250001594286741,2.5,0.0,0.0,1.0043838340655364,-9.000914266251863,1.0,0.0,0.0 -181,15.0,1.8140250707321457,1.8,0.0,0.0,1.0215589164718033,-8.777031904154569,1.0,0.0,0.0 -181,16.0,4.664635896168375,5.8,0.0,0.0,0.9775813098508496,-8.756441737081035,1.0,0.0,0.0 -181,17.0,1.6585372075265332,0.9,0.0,0.0,0.9882493832709422,-9.193401179791424,1.0,0.0,0.0 -181,18.0,4.923782334844395,3.4,0.0,0.0,0.9809426035815432,-9.215868912188562,1.0,0.0,0.0 -181,19.0,1.1402443301744918,0.7,0.0,0.0,0.9811534643866252,-9.09632566106942,1.0,0.0,0.0 -181,20.0,9.070125353660728,11.2,0.0,0.0,0.9754553229412024,-8.808741250799157,1.0,0.0,0.0 -181,21.0,0.0,0.0,0.0,0.0,0.9764586250091478,-8.810764107549495,1.0,0.0,0.0 -181,22.0,1.6585372075265332,1.6,0.0,0.0,0.9886644402177704,-9.07389223615476,1.0,0.0,0.0 -181,23.0,4.509148032962761,6.7,0.0,0.0,0.9742984589878236,-9.039580063503942,1.0,0.0,0.0 -181,24.0,0.0,0.0,0.0,0.0,0.9703580608052492,-8.746726331167828,1.0,0.0,0.0 -181,25.0,1.8140250707321457,2.3,0.0,0.0,0.956393659506072,-8.811063425318206,1.0,0.0,0.0 -181,26.0,0.0,0.0,0.0,0.0,0.974907491104379,-8.492787802277302,1.0,0.0,0.0 -181,27.0,0.0,0.0,0.0,0.0,0.9596843152874476,-6.305190774579748,1.0,0.0,0.0 -181,28.0,1.2439029056448998,0.9,0.0,0.0,0.9682176926185904,-8.68628220105714,1.0,0.0,0.0 -181,29.0,5.493904499931641,1.9,0.0,0.0,0.9437116584254248,-10.176220267578255,1.0,0.0,0.0 -182,0.0,0.0,0.0,153.2490107081369,0.0015840024427227,1.0,0.0,0.0,0.0,1.0 -182,1.0,11.246955438539302,12.7,9.265664160620208e-07,19.852151419983954,0.9823925808473511,-3.5421519524690512,0.0,1.0,0.0 -182,2.0,1.2439029056448998,1.2,0.0,0.0,0.9715408489137972,-4.533583364760392,1.0,0.0,0.0 -182,3.0,3.939025867875516,1.6,0.0,0.0,0.9642482434048132,-5.569768988797291,1.0,0.0,0.0 -182,4.0,48.82318904656232,19.0,-6.07336854584637e-10,28.256040421407747,0.9637071036876924,-8.506248561804215,0.0,1.0,0.0 -182,5.0,0.0,0.0,0.0,0.0,0.961390709653358,-6.617239285596795,1.0,0.0,0.0 -182,6.0,11.817077603626547,10.9,0.0,0.0,0.9559528346388204,-7.644458063311051,1.0,0.0,0.0 -182,7.0,15.548786320561248,30.0,-7.659551068100417e-10,39.99955223159843,0.9639602324170868,-7.09828083130659,0.0,1.0,0.0 -182,8.0,0.0,0.0,0.0,0.0,0.978975828973358,-8.419330299363343,1.0,0.0,0.0 -182,9.0,3.006098688641841,2.0,0.0,0.0,0.9772325007665966,-9.377887176924649,1.0,0.0,0.0 -182,10.0,0.0,0.0,0.0,0.0,0.978975828973358,-8.419330299363343,0.0,1.0,0.0 -182,11.0,5.804880226342865,7.5,0.0,0.0,1.0097043342155374,-8.686691690443535,1.0,0.0,0.0 -182,12.0,0.0,0.0,-8.079756915781144e-10,12.131685793795953,1.026254191216541,-8.686691690506086,0.0,1.0,0.0 -182,13.0,3.213415839582658,1.6,0.0,0.0,0.9815982152160816,-9.70703959873548,1.0,0.0,0.0 -182,14.0,4.250001594286741,2.5,0.0,0.0,0.9578271204163498,-9.913159510959929,1.0,0.0,0.0 -182,15.0,1.8140250707321457,1.8,0.0,0.0,0.9893600220720878,-9.02386119682176,1.0,0.0,0.0 -182,16.0,4.664635896168375,5.8,0.0,0.0,0.976667774839676,-9.37487016288452,1.0,0.0,0.0 -182,17.0,1.6585372075265332,0.9,0.0,0.0,0.9553844316513056,-10.071402486447484,1.0,0.0,0.0 -182,18.0,4.923782334844395,3.4,0.0,0.0,0.9562622011807352,-10.066691852154904,1.0,0.0,0.0 -182,19.0,1.1402443301744918,0.7,0.0,0.0,0.9608965936300122,-9.927649103320228,1.0,0.0,0.0 -182,20.0,9.070125353660728,11.2,0.0,0.0,0.9664286614569904,-9.5708580466374,1.0,0.0,0.0 -182,21.0,0.0,0.0,0.0,0.0,0.9667920370108544,-9.576893296107242,1.0,0.0,0.0 -182,22.0,1.6585372075265332,1.6,0.0,0.0,0.9540666476365016,-9.931471450221167,1.0,0.0,0.0 -182,23.0,4.509148032962761,6.7,0.0,0.0,0.9558795233094906,-9.808778281072565,1.0,0.0,0.0 -182,24.0,0.0,0.0,0.0,0.0,0.957718358608742,-9.53780181942662,1.0,0.0,0.0 -182,25.0,1.8140250707321457,2.3,0.0,0.0,0.9435640673363224,-9.603874350638277,1.0,0.0,0.0 -182,26.0,0.0,0.0,0.0,0.0,0.965959818133198,-9.289361310204653,1.0,0.0,0.0 -182,27.0,0.0,0.0,0.0,0.0,0.956420149914316,-6.933178259113196,1.0,0.0,0.0 -182,28.0,1.2439029056448998,0.9,0.0,0.0,0.9522912546541304,-9.906701020741965,1.0,0.0,0.0 -182,29.0,5.493904499931641,1.9,0.0,0.0,0.944882743390382,-10.37399986137647,1.0,0.0,0.0 -183,0.0,0.0,0.0,152.82292576639838,0.0002624430849529,1.0,0.0,0.0,0.0,1.0 -183,1.0,11.246955438539302,12.7,2.975779010736151e-07,9.608338940784384,0.9811238916724772,-3.501143504028076,0.0,1.0,0.0 -183,2.0,1.2439029056448998,1.2,0.0,0.0,0.9753993736703478,-4.592475326014782,1.0,0.0,0.0 -183,3.0,3.939025867875516,1.6,0.0,0.0,0.9690101954968952,-5.641449128704998,1.0,0.0,0.0 -183,4.0,48.82318904656232,19.0,-3.544668078793401e-10,23.65856108153953,0.9620783791785584,-8.426747150003937,0.0,1.0,0.0 -183,5.0,0.0,0.0,0.0,0.0,0.9688003757437996,-6.7002687128045055,1.0,0.0,0.0 -183,6.0,11.817077603626547,10.9,0.0,0.0,0.959682737811874,-7.66337359165032,1.0,0.0,0.0 -183,7.0,15.548786320561248,30.0,-3.248320865269735e-10,30.29299647221025,0.9678186506035448,-7.104954724212659,0.0,1.0,0.0 -183,8.0,0.0,0.0,0.0,0.0,1.016621280799504,-8.414319668079031,1.0,0.0,0.0 -183,9.0,3.006098688641841,2.0,0.0,0.0,1.0078315363785173,-9.3051875394928,1.0,0.0,0.0 -183,10.0,0.0,0.0,-2.0300584809238608e-10,22.07640302885176,1.0599433310949444,-8.414319668101484,0.0,1.0,0.0 -183,11.0,5.804880226342865,7.5,0.0,0.0,1.0142901636355588,-8.85974349852535,1.0,0.0,0.0 -183,12.0,0.0,0.0,-4.3255707530557505e-10,9.25032842833929,1.0269013649078802,-8.859743498558664,0.0,1.0,0.0 -183,13.0,3.213415839582658,1.6,0.0,0.0,1.0035719037523725,-9.296838934411808,1.0,0.0,0.0 -183,14.0,4.250001594286741,2.5,0.0,0.0,1.0003845229039756,-9.320057251783863,1.0,0.0,0.0 -183,15.0,1.8140250707321457,1.8,0.0,0.0,1.0054521906390914,-9.146447828878545,1.0,0.0,0.0 -183,16.0,4.664635896168375,5.8,0.0,0.0,1.0027914014849688,-9.34118785264476,1.0,0.0,0.0 -183,17.0,1.6585372075265332,0.9,0.0,0.0,0.9940539427337772,-9.634826473985266,1.0,0.0,0.0 -183,18.0,4.923782334844395,3.4,0.0,0.0,0.9925425067938584,-9.731031227698628,1.0,0.0,0.0 -183,19.0,1.1402443301744918,0.7,0.0,0.0,0.9957591425870932,-9.654403444636808,1.0,0.0,0.0 -183,20.0,9.070125353660728,11.2,0.0,0.0,0.9974489749897416,-9.460951810002838,1.0,0.0,0.0 -183,21.0,0.0,0.0,0.0,0.0,0.997830800140073,-9.4584431168415,1.0,0.0,0.0 -183,22.0,1.6585372075265332,1.6,0.0,0.0,0.9921925958493506,-9.483271552949171,1.0,0.0,0.0 -183,23.0,4.509148032962761,6.7,0.0,0.0,0.9878556524868102,-9.568484399158606,1.0,0.0,0.0 -183,24.0,0.0,0.0,0.0,0.0,0.981646045764048,-9.310035879678294,1.0,0.0,0.0 -183,25.0,1.8140250707321457,2.3,0.0,0.0,0.9678469096111298,-9.372880565539726,1.0,0.0,0.0 -183,26.0,0.0,0.0,0.0,0.0,0.9847120534680224,-9.081528154790796,1.0,0.0,0.0 -183,27.0,0.0,0.0,0.0,0.0,0.9668471564246464,-7.03429202117739,1.0,0.0,0.0 -183,28.0,1.2439029056448998,0.9,0.0,0.0,0.9713184870372517,-9.675265590544974,1.0,0.0,0.0 -183,29.0,5.493904499931641,1.9,0.0,0.0,0.9640595126452816,-10.124316477831892,1.0,0.0,0.0 -184,0.0,0.0,0.0,152.95671343884104,0.0046732466604026,1.0,0.0,0.0,0.0,1.0 -184,1.0,11.246955438539302,12.7,4.062901706391652e-06,9.573923591928365,0.9809447160162298,-3.479604476021283,0.0,1.0,0.0 -184,2.0,1.2439029056448998,1.2,0.0,0.0,0.9759324489335496,-4.664403868387302,1.0,0.0,0.0 -184,3.0,3.939025867875516,1.6,0.0,0.0,0.9696762605004317,-5.730542442882719,1.0,0.0,0.0 -184,4.0,48.82318904656232,19.0,6.710287431072228e-09,23.785877376851403,0.9614094333152692,-8.352953983686694,0.0,1.0,0.0 -184,5.0,0.0,0.0,0.0,0.0,0.9674673525116948,-6.553957624594724,1.0,0.0,0.0 -184,6.0,11.817077603626547,10.9,0.0,0.0,0.9586207854721084,-7.5467982118176895,1.0,0.0,0.0 -184,7.0,15.548786320561248,30.0,4.276056513735148e-09,32.55473418292904,0.966211153981094,-7.157627413897008,0.0,1.0,0.0 -184,8.0,0.0,0.0,0.0,0.0,1.0358801161669895,-11.574937126480028,1.0,0.0,0.0 -184,9.0,3.006098688641841,2.0,0.0,0.0,1.0231264854746798,-11.574937126418444,1.0,0.0,0.0 -184,10.0,0.0,0.0,-1.035600806711402e-09,12.28981675154654,1.0599960723576205,-11.574937126592426,0.0,1.0,0.0 -184,11.0,5.804880226342865,7.5,0.0,0.0,1.0360746190647585,-10.08519386123289,1.0,0.0,0.0 -184,12.0,0.0,0.0,7.509972120337706e-09,18.111289624139275,1.059995296410828,-10.085193860684369,0.0,1.0,0.0 -184,13.0,3.213415839582658,1.6,0.0,0.0,1.0249544910692174,-10.648438431212336,1.0,0.0,0.0 -184,14.0,4.250001594286741,2.5,0.0,0.0,1.0202159634427683,-10.799545646004644,1.0,0.0,0.0 -184,15.0,1.8140250707321457,1.8,0.0,0.0,1.0237719069149898,-10.800790569006653,1.0,0.0,0.0 -184,16.0,4.664635896168375,5.8,0.0,0.0,1.0193186423277,-11.419649229591748,1.0,0.0,0.0 -184,17.0,1.6585372075265332,0.9,0.0,0.0,1.012363015102271,-11.379456703375428,1.0,0.0,0.0 -184,18.0,4.923782334844395,3.4,0.0,0.0,1.0099325061408897,-11.63773366078606,1.0,0.0,0.0 -184,19.0,1.1402443301744918,0.7,0.0,0.0,1.0125924162621045,-11.65079616565275,1.0,0.0,0.0 -184,20.0,9.070125353660728,11.2,0.0,0.0,1.012787768395407,-11.70913179431036,1.0,0.0,0.0 -184,21.0,0.0,0.0,0.0,0.0,1.0131295530378834,-11.701215026216484,1.0,0.0,0.0 -184,22.0,1.6585372075265332,1.6,0.0,0.0,1.0100156587010098,-11.25017996853299,1.0,0.0,0.0 -184,23.0,4.509148032962761,6.7,0.0,0.0,1.0029902196238991,-11.731377829799744,1.0,0.0,0.0 -184,24.0,0.0,0.0,0.0,0.0,0.9917498697898024,-11.82625342032835,1.0,0.0,0.0 -184,25.0,1.8140250707321457,2.3,0.0,0.0,0.9780953321579654,-11.8878060785267,1.0,0.0,0.0 -184,26.0,0.0,0.0,0.0,0.0,0.9783163507033186,-9.552240393779044,1.0,0.0,0.0 -184,27.0,0.0,0.0,0.0,0.0,0.9590215781991794,-7.9536333245178525,1.0,0.0,0.0 -184,28.0,1.2439029056448998,0.9,0.0,0.0,0.9648302790084186,-10.153872490768284,1.0,0.0,0.0 -184,29.0,5.493904499931641,1.9,0.0,0.0,0.957521006130108,-10.609023579219668,1.0,0.0,0.0 -185,0.0,0.0,0.0,153.42553848088022,0.0042206510673103,1.0,0.0,0.0,0.0,1.0 -185,1.0,11.246955438539302,12.7,4.403067905780008e-06,8.966326040118119,0.9824157563321974,-3.2293144158341085,0.0,1.0,0.0 -185,2.0,1.2439029056448998,1.2,0.0,0.0,0.9726758445192224,-5.441530042303439,1.0,0.0,0.0 -185,3.0,3.939025867875516,1.6,0.0,0.0,0.9657915530453192,-6.697423997891874,1.0,0.0,0.0 -185,4.0,48.82318904656232,19.0,5.1532077756063105e-09,24.55433147331064,0.9630177272737668,-8.642996531984808,0.0,1.0,0.0 -185,5.0,0.0,0.0,0.0,0.0,0.9670888261798494,-7.39949504340106,1.0,0.0,0.0 -185,6.0,11.817077603626547,10.9,0.0,0.0,0.9589755886063772,-8.164841593663406,1.0,0.0,0.0 -185,7.0,15.548786320561248,30.0,2.1251676491570447e-09,31.8996988816518,0.9666332650211984,-7.823296229130014,0.0,1.0,0.0 -185,8.0,0.0,0.0,0.0,0.0,1.0176527140896352,-9.7142913562715,1.0,0.0,0.0 -185,9.0,3.006098688641841,2.0,0.0,0.0,1.0111699554227385,-10.911194263415618,1.0,0.0,0.0 -185,10.0,0.0,0.0,-5.167113261258602e-09,21.551379869542107,1.059944431283132,-9.71429135684239,0.0,1.0,0.0 -185,11.0,5.804880226342865,7.5,0.0,0.0,1.0197733818047006,-10.16935469856561,1.0,0.0,0.0 -185,12.0,0.0,0.0,2.864436666657421e-09,13.803074822814736,1.0383833723595657,-10.169354698348624,0.0,1.0,0.0 -185,13.0,3.213415839582658,1.6,0.0,0.0,0.9885454791391632,-11.038137383361985,1.0,0.0,0.0 -185,14.0,4.250001594286741,2.5,0.0,0.0,0.998965892060382,-10.87097134559331,1.0,0.0,0.0 -185,15.0,1.8140250707321457,1.8,0.0,0.0,1.009828122920229,-10.577533253333266,1.0,0.0,0.0 -185,16.0,4.664635896168375,5.8,0.0,0.0,1.0065333254330602,-10.89327434546258,1.0,0.0,0.0 -185,17.0,1.6585372075265332,0.9,0.0,0.0,0.9943123545848872,-11.205749536989476,1.0,0.0,0.0 -185,18.0,4.923782334844395,3.4,0.0,0.0,0.9937943079301004,-11.313661680106335,1.0,0.0,0.0 -185,19.0,1.1402443301744918,0.7,0.0,0.0,0.9975294264022376,-11.243628730694285,1.0,0.0,0.0 -185,20.0,9.070125353660728,11.2,0.0,0.0,0.9796725386746244,-11.266764202380235,1.0,0.0,0.0 -185,21.0,0.0,0.0,0.0,0.0,0.9834449235810342,-11.216729859933144,1.0,0.0,0.0 -185,22.0,1.6585372075265332,1.6,0.0,0.0,0.9874005984013255,-11.055608773247975,1.0,0.0,0.0 -185,23.0,4.509148032962761,6.7,0.0,0.0,0.97860242659345,-11.171099122375413,1.0,0.0,0.0 -185,24.0,0.0,0.0,0.0,0.0,0.9760823159700734,-10.621239276595436,1.0,0.0,0.0 -185,25.0,1.8140250707321457,2.3,0.0,0.0,0.9622022213339292,-10.68481295840966,1.0,0.0,0.0 -185,26.0,0.0,0.0,0.0,0.0,0.981403445913268,-10.207625198177642,1.0,0.0,0.0 -185,27.0,0.0,0.0,0.0,0.0,0.9648486738973756,-7.780497709633068,1.0,0.0,0.0 -185,28.0,1.2439029056448998,0.9,0.0,0.0,0.9679621882308648,-10.805427048719608,1.0,0.0,0.0 -185,29.0,5.493904499931641,1.9,0.0,0.0,0.9606772828281264,-11.257618067690268,1.0,0.0,0.0 -186,0.0,0.0,0.0,152.8425564946759,0.2388140433670749,1.0,0.0,0.0,0.0,1.0 -186,1.0,11.246955438539302,12.7,0.0,0.0,0.9801589668593518,-3.482601884655617,0.0,1.0,0.0 -186,2.0,1.2439029056448998,1.2,0.0,0.0,0.9777771950122606,-4.630479755941329,1.0,0.0,0.0 -186,3.0,3.939025867875516,1.6,0.0,0.0,0.9719451303631742,-5.6876839408449245,1.0,0.0,0.0 -186,4.0,48.82318904656232,19.0,-2.3533373057362527e-10,27.711714578363623,0.967686352146053,-8.486836934259053,0.0,1.0,0.0 -186,5.0,0.0,0.0,0.0,0.0,0.97257895679161,-6.748379702210526,1.0,0.0,0.0 -186,6.0,11.817077603626547,10.9,0.0,0.0,0.9642520935533272,-7.713282734454544,1.0,0.0,0.0 -186,7.0,15.548786320561248,30.0,-3.136410671791982e-10,33.896731703183725,0.972959692264023,-7.172302102840527,0.0,1.0,0.0 -186,8.0,0.0,0.0,0.0,0.0,1.0198479793389066,-8.434617083212881,1.0,0.0,0.0 -186,9.0,3.006098688641841,2.0,0.0,0.0,1.012387806075777,-9.310490590834062,1.0,0.0,0.0 -186,10.0,0.0,0.0,-2.972017438168148e-10,20.46196796059693,1.0599997740832503,-8.434617083245646,0.0,1.0,0.0 -186,11.0,5.804880226342865,7.5,0.0,0.0,1.0216090241673197,-8.907580083325529,1.0,0.0,0.0 -186,12.0,0.0,0.0,-3.752352874912611e-10,12.10195482545654,1.037932567038682,-8.907580083353917,0.0,1.0,0.0 -186,13.0,3.213415839582658,1.6,0.0,0.0,1.010612394318965,-9.337950596110211,1.0,0.0,0.0 -186,14.0,4.250001594286741,2.5,0.0,0.0,1.007107886304679,-9.352317438318613,1.0,0.0,0.0 -186,15.0,1.8140250707321457,1.8,0.0,0.0,1.011638347459858,-9.168962994137347,1.0,0.0,0.0 -186,16.0,4.664635896168375,5.8,0.0,0.0,1.007871915867237,-9.35291559584077,1.0,0.0,0.0 -186,17.0,1.6585372075265332,0.9,0.0,0.0,1.0000687278717426,-9.653490963888691,1.0,0.0,0.0 -186,18.0,4.923782334844395,3.4,0.0,0.0,0.9981237271837664,-9.74276696147182,1.0,0.0,0.0 -186,19.0,1.1402443301744918,0.7,0.0,0.0,1.001089437394558,-9.66385118383929,1.0,0.0,0.0 -186,20.0,9.070125353660728,11.2,0.0,0.0,1.002171922338051,-9.466546603093049,1.0,0.0,0.0 -186,21.0,0.0,0.0,0.0,0.0,1.002589232893231,-9.46466252707406,1.0,0.0,0.0 -186,22.0,1.6585372075265332,1.6,0.0,0.0,0.9983179122488732,-9.507875306407982,1.0,0.0,0.0 -186,23.0,4.509148032962761,6.7,0.0,0.0,0.9931418814343468,-9.584827971415324,1.0,0.0,0.0 -186,24.0,0.0,0.0,0.0,0.0,0.9866041186513784,-9.328482407296187,1.0,0.0,0.0 -186,25.0,1.8140250707321457,2.3,0.0,0.0,0.9728763249586934,-9.390688021284443,1.0,0.0,0.0 -186,26.0,0.0,0.0,0.0,0.0,0.9894303226782456,-9.102347675208458,1.0,0.0,0.0 -186,27.0,0.0,0.0,0.0,0.0,0.97100823918637,-7.084061345462069,1.0,0.0,0.0 -186,28.0,1.2439029056448998,0.9,0.0,0.0,0.9761041687777084,-9.690360688960856,1.0,0.0,0.0 -186,29.0,5.493904499931641,1.9,0.0,0.0,0.968881846716775,-10.13499051874859,1.0,0.0,0.0 -187,0.0,0.0,0.0,153.22149074314294,0.0043132830512604,1.0,0.0,0.0,0.0,1.0 -187,1.0,11.246955438539302,12.7,2.5999422823933343e-06,15.694789814368072,0.9818427603904968,-3.529049862176922,0.0,1.0,0.0 -187,2.0,1.2439029056448998,1.2,0.0,0.0,0.9731405276788744,-4.561430106807404,1.0,0.0,0.0 -187,3.0,3.939025867875516,1.6,0.0,0.0,0.9662228460932166,-5.6037646492464255,1.0,0.0,0.0 -187,4.0,48.82318904656232,19.0,3.175303984339125e-09,26.7069165772094,0.963183047490724,-8.485154399145014,0.0,1.0,0.0 -187,5.0,0.0,0.0,0.0,0.0,0.964051777821188,-6.6573327394157085,1.0,0.0,0.0 -187,6.0,11.817077603626547,10.9,0.0,0.0,0.9573173772279512,-7.660252510087551,1.0,0.0,0.0 -187,7.0,15.548786320561248,30.0,1.6407427124963795e-09,39.99745223465116,0.9664821137695278,-7.129422451401496,0.0,1.0,0.0 -187,8.0,0.0,0.0,0.0,0.0,0.9829201268360782,-8.439941740806528,1.0,0.0,0.0 -187,9.0,3.006098688641841,2.0,0.0,0.0,0.9818161137771616,-9.386323750257082,1.0,0.0,0.0 -187,10.0,0.0,0.0,0.0,0.0,0.9829201268360782,-8.439941740806528,0.0,1.0,0.0 -187,11.0,5.804880226342865,7.5,0.0,0.0,1.0137981517007184,-8.719986454082825,1.0,0.0,0.0 -187,12.0,0.0,0.0,4.2057032983388586e-11,13.509327780790684,1.0321225825511309,-8.719986454079601,0.0,1.0,0.0 -187,13.0,3.213415839582658,1.6,0.0,0.0,0.9859612297627888,-9.727059227119971,1.0,0.0,0.0 -187,14.0,4.250001594286741,2.5,0.0,0.0,0.9624657708643424,-9.92986717873273,1.0,0.0,0.0 -187,15.0,1.8140250707321457,1.8,0.0,0.0,0.9921386181700156,-9.041615397956717,1.0,0.0,0.0 -187,16.0,4.664635896168375,5.8,0.0,0.0,0.9782196676057608,-9.391751435493044,1.0,0.0,0.0 -187,17.0,1.6585372075265332,0.9,0.0,0.0,0.9600495017793872,-10.081863137966677,1.0,0.0,0.0 -187,18.0,4.923782334844395,3.4,0.0,0.0,0.9609316116948584,-10.074400835553549,1.0,0.0,0.0 -187,19.0,1.1402443301744918,0.7,0.0,0.0,0.9655481660124832,-9.935234439638018,1.0,0.0,0.0 -187,20.0,9.070125353660728,11.2,0.0,0.0,0.9711001880386408,-9.579919059139463,1.0,0.0,0.0 -187,21.0,0.0,0.0,0.0,0.0,0.9714729936485916,-9.586699123199391,1.0,0.0,0.0 -187,22.0,1.6585372075265332,1.6,0.0,0.0,0.9588159025324976,-9.948678005586288,1.0,0.0,0.0 -187,23.0,4.509148032962761,6.7,0.0,0.0,0.96074246513994,-9.8280790952139,1.0,0.0,0.0 -187,24.0,0.0,0.0,0.0,0.0,0.9628319003636036,-9.577393671690784,1.0,0.0,0.0 -187,25.0,1.8140250707321457,2.3,0.0,0.0,0.9487550592957432,-9.642755707937113,1.0,0.0,0.0 -187,26.0,0.0,0.0,0.0,0.0,0.9711951178000944,-9.341991643069656,1.0,0.0,0.0 -187,27.0,0.0,0.0,0.0,0.0,0.9617210111754222,-7.019244188871129,1.0,0.0,0.0 -187,28.0,1.2439029056448998,0.9,0.0,0.0,0.957604489830016,-9.952601628830823,1.0,0.0,0.0 -187,29.0,5.493904499931641,1.9,0.0,0.0,0.9502383614067426,-10.41469421107064,1.0,0.0,0.0 -188,0.0,0.0,0.0,152.9267413375049,0.0017680221567673,1.0,0.0,0.0,0.0,1.0 -188,1.0,11.246955438539302,12.7,2.05492523014438e-06,8.419684576952356,0.9809127717484326,-3.4968236454277792,0.0,1.0,0.0 -188,2.0,1.2439029056448998,1.2,0.0,0.0,0.9759741973298648,-4.61233901363276,1.0,0.0,0.0 -188,3.0,3.939025867875516,1.6,0.0,0.0,0.9697210261123336,-5.66588567715926,1.0,0.0,0.0 -188,4.0,48.82318904656232,19.0,2.706873312259825e-09,23.60561662867169,0.9620185968103168,-8.420258317371085,0.0,1.0,0.0 -188,5.0,0.0,0.0,0.0,0.0,0.9690083863664576,-6.693899583784667,1.0,0.0,0.0 -188,6.0,11.817077603626547,10.9,0.0,0.0,0.9597822127656724,-7.657032027017312,1.0,0.0,0.0 -188,7.0,15.548786320561248,30.0,2.416992124395539e-09,29.84770514565129,0.9678673946460148,-7.09565399188109,0.0,1.0,0.0 -188,8.0,0.0,0.0,0.0,0.0,1.0149342775095145,-8.341951230679303,1.0,0.0,0.0 -188,9.0,3.006098688641841,2.0,0.0,0.0,1.008801816495163,-9.197883221270493,1.0,0.0,0.0 -188,10.0,0.0,0.0,1.529840152521431e-09,18.370520884237195,1.0512810594621562,-8.34195123050843,0.0,1.0,0.0 -188,11.0,5.804880226342865,7.5,0.0,0.0,1.0209003449703682,-9.00103012320058,1.0,0.0,0.0 -188,12.0,0.0,0.0,3.0538858403979274e-09,14.504955563509242,1.0404183945316263,-9.00103012296995,0.0,1.0,0.0 -188,13.0,3.213415839582658,1.6,0.0,0.0,1.0077463303639662,-9.491470234098877,1.0,0.0,0.0 -188,14.0,4.250001594286741,2.5,0.0,0.0,1.0017619164163063,-9.51587404696072,1.0,0.0,0.0 -188,15.0,1.8140250707321457,1.8,0.0,0.0,1.0156894997356285,-9.106207927597053,1.0,0.0,0.0 -188,16.0,4.664635896168375,5.8,0.0,0.0,1.002402746633205,-9.314739318999342,1.0,0.0,0.0 -188,17.0,1.6585372075265332,0.9,0.0,0.0,0.9848680163726324,-10.083196729024491,1.0,0.0,0.0 -188,18.0,4.923782334844395,3.4,0.0,0.0,0.9771432393060626,-10.332593316946308,1.0,0.0,0.0 -188,19.0,1.1402443301744918,0.7,0.0,0.0,1.0062858920616764,-9.295408428949749,1.0,0.0,0.0 -188,20.0,9.070125353660728,11.2,0.0,0.0,0.9984469483739588,-9.371538219802746,1.0,0.0,0.0 -188,21.0,0.0,0.0,0.0,0.0,0.9988319614110922,-9.374891922317763,1.0,0.0,0.0 -188,22.0,1.6585372075265332,1.6,0.0,0.0,0.9933806795647956,-9.593589212248002,1.0,0.0,0.0 -188,23.0,4.509148032962761,6.7,0.0,0.0,0.9887684694028236,-9.563766617893828,1.0,0.0,0.0 -188,24.0,0.0,0.0,0.0,0.0,0.9823081991017236,-9.300847264546729,1.0,0.0,0.0 -188,25.0,1.8140250707321457,2.3,0.0,0.0,0.9685186342701168,-9.36360603114165,1.0,0.0,0.0 -188,26.0,0.0,0.0,0.0,0.0,0.9852122800898604,-9.069914160899245,1.0,0.0,0.0 -188,27.0,0.0,0.0,0.0,0.0,0.9670555714115918,-7.0274012752458725,1.0,0.0,0.0 -188,28.0,1.2439029056448998,0.9,0.0,0.0,0.9718258938499104,-9.663040726723768,1.0,0.0,0.0 -188,29.0,5.493904499931641,1.9,0.0,0.0,0.964570823435502,-10.111619741777776,1.0,0.0,0.0 -189,0.0,0.0,0.0,138.00000078158422,0.00018937979398,1.0,0.0,0.0,0.0,1.0 -189,1.0,11.246955438539302,12.7,16.96794235771499,10.146161409305227,0.9751783447796568,-4.63742040723558,0.0,1.0,0.0 -189,2.0,1.2439029056448998,1.2,0.0,0.0,0.9486628786838976,-9.28524748204964,1.0,0.0,0.0 -189,3.0,3.939025867875516,1.6,0.0,0.0,0.949164439885214,-9.262153660770949,1.0,0.0,0.0 -189,4.0,48.82318904656232,19.0,1.388984731075791e-09,33.558194826232295,0.9624539785858338,-10.737002536669827,0.0,1.0,0.0 -189,5.0,0.0,0.0,0.0,0.0,0.9547507859981086,-9.795898201354454,1.0,0.0,0.0 -189,6.0,11.817077603626547,10.9,0.0,0.0,0.9513253419561514,-10.43391485340529,1.0,0.0,0.0 -189,7.0,15.548786320561248,30.0,1.7990345390285156e-09,39.999824263995656,0.9572134921286248,-10.270620161758268,0.0,1.0,0.0 -189,8.0,0.0,0.0,0.0,0.0,1.0003684611926136,-12.7545741078126,1.0,0.0,0.0 -189,9.0,3.006098688641841,2.0,0.0,0.0,0.9889917869366288,-14.298565111943876,1.0,0.0,0.0 -189,10.0,0.0,0.0,3.4620101286869084e-09,23.99983310083254,1.0480016430495356,-12.754574107419058,0.0,1.0,0.0 -189,11.0,5.804880226342865,7.5,0.0,0.0,0.9804571902970186,-12.472463110401526,1.0,0.0,0.0 -189,12.0,0.0,0.0,0.0,0.0,0.9804571902970186,-12.472463110401526,0.0,1.0,0.0 -189,13.0,3.213415839582658,1.6,0.0,0.0,0.9713706339961674,-13.00353304007732,1.0,0.0,0.0 -189,14.0,4.250001594286741,2.5,0.0,0.0,0.9695875396124152,-13.137856403175489,1.0,0.0,0.0 -189,15.0,1.8140250707321457,1.8,0.0,0.0,0.9750288909223924,-12.586546479154707,1.0,0.0,0.0 -189,16.0,4.664635896168375,5.8,0.0,0.0,0.9824627548252578,-14.42018111537569,1.0,0.0,0.0 -189,17.0,1.6585372075265332,0.9,0.0,0.0,0.967089525397664,-13.889082768574651,1.0,0.0,0.0 -189,18.0,4.923782334844395,3.4,0.0,0.0,0.9679547356346636,-14.238447429214764,1.0,0.0,0.0 -189,19.0,1.1402443301744918,0.7,0.0,0.0,0.972525481394192,-14.288381307812664,1.0,0.0,0.0 -189,20.0,9.070125353660728,11.2,0.0,0.0,0.9784710233921878,-14.503457979822471,1.0,0.0,0.0 -189,21.0,0.0,0.0,0.0,0.0,0.9788760011522952,-14.514733928767097,1.0,0.0,0.0 -189,22.0,1.6585372075265332,1.6,0.0,0.0,0.9645153809448694,-13.245088694877929,1.0,0.0,0.0 -189,23.0,4.509148032962761,6.7,0.0,0.0,0.9685817876727671,-14.817223736631886,1.0,0.0,0.0 -189,24.0,0.0,0.0,0.0,0.0,0.9542081712880944,-12.290875818359323,1.0,0.0,0.0 -189,25.0,1.8140250707321457,2.3,0.0,0.0,0.9400002115708528,-12.357442831606958,1.0,0.0,0.0 -189,26.0,0.0,0.0,0.0,0.0,0.9614264533614773,-12.210734508636898,1.0,0.0,0.0 -189,27.0,0.0,0.0,0.0,0.0,0.9525556924222528,-10.128443306357596,1.0,0.0,0.0 -189,28.0,1.2439029056448998,0.9,0.0,0.0,0.94768965749392,-12.833992406769667,1.0,0.0,0.0 -189,29.0,5.493904499931641,1.9,0.0,0.0,0.9402440379263364,-13.305871805402212,1.0,0.0,0.0 -190,0.0,0.0,0.0,152.97623294126274,0.0116156948035239,1.0,0.0,0.0,0.0,1.0 -190,1.0,11.246955438539302,12.7,6.68829154105005e-06,10.465070386897423,0.981410820861584,-3.49497344674695,0.0,1.0,0.0 -190,2.0,1.2439029056448998,1.2,0.0,0.0,0.9745454048344612,-4.628473291490573,1.0,0.0,0.0 -190,3.0,3.939025867875516,1.6,0.0,0.0,0.967962396447284,-5.686491780733153,1.0,0.0,0.0 -190,4.0,48.82318904656232,19.0,-1.2019074495373442e-08,24.08394938858156,0.962850297689924,-8.38740376626881,0.0,1.0,0.0 -190,5.0,0.0,0.0,0.0,0.0,0.9691972737757408,-6.617649917889905,1.0,0.0,0.0 -190,6.0,11.817077603626547,10.9,0.0,0.0,0.960243692307506,-7.597919236638124,1.0,0.0,0.0 -190,7.0,15.548786320561248,30.0,-1.2561168174557713e-08,33.18119238565063,0.9691367986703938,-7.05212563021341,0.0,1.0,0.0 -190,8.0,0.0,0.0,0.0,0.0,1.025481058503979,-6.617649919340645,1.0,0.0,0.0 -190,9.0,3.006098688641841,2.0,0.0,0.0,0.983652023563998,-11.023336846404442,1.0,0.0,0.0 -190,10.0,0.0,0.0,-1.2370991718436512e-08,17.571840598016326,1.0599628595542938,-6.617649920696996,0.0,1.0,0.0 -190,11.0,5.804880226342865,7.5,0.0,0.0,1.0076039161201364,-9.865905902648691,1.0,0.0,0.0 -190,12.0,0.0,0.0,-1.1487179200104084e-08,12.119727982707651,1.0241710886980695,-9.865905903541586,0.0,1.0,0.0 -190,13.0,3.213415839582658,1.6,0.0,0.0,0.9951582368819069,-10.39066337377173,1.0,0.0,0.0 -190,14.0,4.250001594286741,2.5,0.0,0.0,0.9898020930362628,-10.457162515758716,1.0,0.0,0.0 -190,15.0,1.8140250707321457,1.8,0.0,0.0,0.9906271577414664,-10.419748570322714,1.0,0.0,0.0 -190,16.0,4.664635896168375,5.8,0.0,0.0,0.981588125075384,-10.93505451114399,1.0,0.0,0.0 -190,17.0,1.6585372075265332,0.9,0.0,0.0,0.9784714356409966,-10.982505789626831,1.0,0.0,0.0 -190,18.0,4.923782334844395,3.4,0.0,0.0,0.9740504847397604,-11.20324538471958,1.0,0.0,0.0 -190,19.0,1.1402443301744918,0.7,0.0,0.0,0.9758061688659344,-11.187252756023415,1.0,0.0,0.0 -190,20.0,9.070125353660728,11.2,0.0,0.0,0.9743961755252264,-11.10659435433232,1.0,0.0,0.0 -190,21.0,0.0,0.0,0.0,0.0,0.975232709536448,-11.078806162769478,1.0,0.0,0.0 -190,22.0,1.6585372075265332,1.6,0.0,0.0,0.9791234443280118,-10.701865596819168,1.0,0.0,0.0 -190,23.0,4.509148032962761,6.7,0.0,0.0,0.9715785902231648,-10.895917983987903,1.0,0.0,0.0 -190,24.0,0.0,0.0,0.0,0.0,0.9727968491290248,-10.200309977320826,1.0,0.0,0.0 -190,25.0,1.8140250707321457,2.3,0.0,0.0,0.9588684929834436,-10.26432014379337,1.0,0.0,0.0 -190,26.0,0.0,0.0,0.0,0.0,0.9804356482806468,-9.693702115278624,1.0,0.0,0.0 -190,27.0,0.0,0.0,0.0,0.0,0.9665545050897428,-7.023607615206243,1.0,0.0,0.0 -190,28.0,1.2439029056448998,0.9,0.0,0.0,0.9737841534066536,-9.885005654561398,1.0,0.0,0.0 -190,29.0,5.493904499931641,1.9,0.0,0.0,0.949432658808088,-11.357550389308235,1.0,0.0,0.0 -191,0.0,0.0,0.0,152.9373767286013,0.0090103024223964,1.0,0.0,0.0,0.0,1.0 -191,1.0,11.246955438539302,12.7,5.349146073766838e-06,10.588963043712234,0.9814300675840316,-3.494463764158123,0.0,1.0,0.0 -191,2.0,1.2439029056448998,1.2,0.0,0.0,0.9745097395697092,-4.626362484591502,1.0,0.0,0.0 -191,3.0,3.939025867875516,1.6,0.0,0.0,0.9679181779823732,-5.6838845973172365,1.0,0.0,0.0 -191,4.0,48.82318904656232,19.0,-9.549005057955465e-09,24.067338040357757,0.96282014860859,-8.385737282314695,0.0,1.0,0.0 -191,5.0,0.0,0.0,0.0,0.0,0.9691530816633402,-6.614964306168616,1.0,0.0,0.0 -191,6.0,11.817077603626547,10.9,0.0,0.0,0.9602050171957508,-7.595661030237529,1.0,0.0,0.0 -191,7.0,15.548786320561248,30.0,-1.001481047771152e-08,33.09404822048705,0.9690639101779548,-7.048917369573098,0.0,1.0,0.0 -191,8.0,0.0,0.0,0.0,0.0,1.025463137018476,-6.614964307337591,1.0,0.0,0.0 -191,9.0,3.006098688641841,2.0,0.0,0.0,0.9835211432149978,-11.019896420332966,1.0,0.0,0.0 -191,10.0,0.0,0.0,-9.967661414310989e-09,17.585889646489726,1.059972202792404,-6.614964308430455,0.0,1.0,0.0 -191,11.0,5.804880226342865,7.5,0.0,0.0,1.0073959385915856,-9.861839055290936,1.0,0.0,0.0 -191,12.0,0.0,0.0,-9.003459686635473e-09,12.015936894194116,1.0238267571210555,-9.861839055991156,0.0,1.0,0.0 -191,13.0,3.213415839582658,1.6,0.0,0.0,0.9949627728096164,-10.386635950313064,1.0,0.0,0.0 -191,14.0,4.250001594286741,2.5,0.0,0.0,0.989621295470846,-10.453333371872002,1.0,0.0,0.0 -191,15.0,1.8140250707321457,1.8,0.0,0.0,0.990451165023323,-10.416157990038384,1.0,0.0,0.0 -191,16.0,4.664635896168375,5.8,0.0,0.0,0.981442530028658,-10.931544928413892,1.0,0.0,0.0 -191,17.0,1.6585372075265332,0.9,0.0,0.0,0.9783066702249554,-10.978935904782324,1.0,0.0,0.0 -191,18.0,4.923782334844395,3.4,0.0,0.0,0.9738956166753928,-11.199794544869553,1.0,0.0,0.0 -191,19.0,1.1402443301744918,0.7,0.0,0.0,0.9756571720776022,-11.183823087724148,1.0,0.0,0.0 -191,20.0,9.070125353660728,11.2,0.0,0.0,0.9742721013537528,-11.102990045537371,1.0,0.0,0.0 -191,21.0,0.0,0.0,0.0,0.0,0.9751113050256414,-11.0751385444903,1.0,0.0,0.0 -191,22.0,1.6585372075265332,1.6,0.0,0.0,0.9789827364114256,-10.697897440638958,1.0,0.0,0.0 -191,23.0,4.509148032962761,6.7,0.0,0.0,0.9714922389887534,-10.891681426703409,1.0,0.0,0.0 -191,24.0,0.0,0.0,0.0,0.0,0.9728452569492632,-10.194862609167268,1.0,0.0,0.0 -191,25.0,1.8140250707321457,2.3,0.0,0.0,0.9589176143539389,-10.258866311454389,1.0,0.0,0.0 -191,26.0,0.0,0.0,0.0,0.0,0.9805671500870108,-9.68743605726722,1.0,0.0,0.0 -191,27.0,0.0,0.0,0.0,0.0,0.9665252783704972,-7.0207890850588734,1.0,0.0,0.0 -191,28.0,1.2439029056448998,0.9,0.0,0.0,0.9671137824926102,-10.286271885044023,1.0,0.0,0.0 -191,29.0,5.493904499931641,1.9,0.0,0.0,0.9598222924487154,-10.739261894934208,1.0,0.0,0.0 -192,0.0,0.0,0.0,152.8905004011365,0.0035230223111248,1.0,0.0,0.0,0.0,1.0 -192,1.0,11.246955438539302,12.7,2.3621012777892417e-06,10.515255597042838,0.9809730315588536,-3.574555031166407,0.0,1.0,0.0 -192,2.0,1.2439029056448998,1.2,0.0,0.0,0.9755424151498148,-4.38923687037636,1.0,0.0,0.0 -192,3.0,3.939025867875516,1.6,0.0,0.0,0.9691630400768882,-5.389036179977887,1.0,0.0,0.0 -192,4.0,48.82318904656232,19.0,4.542167933202092e-09,22.22741997100401,0.9622247579541756,-9.610379716275345,0.0,1.0,0.0 -192,5.0,0.0,0.0,0.0,0.0,0.968684683714653,-6.313633969830755,1.0,0.0,0.0 -192,6.0,11.817077603626547,10.9,0.0,0.0,0.9566832420837992,-6.745643046916634,1.0,0.0,0.0 -192,7.0,15.548786320561248,30.0,-5.628984824485922e-10,32.38552583035376,0.9683273683624511,-6.735369412334535,0.0,1.0,0.0 -192,8.0,0.0,0.0,0.0,0.0,1.0187928975740106,-7.938103970082538,1.0,0.0,0.0 -192,9.0,3.006098688641841,2.0,0.0,0.0,1.0123184667547709,-8.778579073685183,1.0,0.0,0.0 -192,10.0,0.0,0.0,4.817537496331627e-10,20.97713486196972,1.0599572379372215,-7.93810397002937,0.0,1.0,0.0 -192,11.0,5.804880226342865,7.5,0.0,0.0,1.015357903322177,-8.609556589157531,1.0,0.0,0.0 -192,12.0,0.0,0.0,3.671897047693938e-09,11.259263684136643,1.0306520744097565,-8.609556588876075,0.0,1.0,0.0 -192,13.0,3.213415839582658,1.6,0.0,0.0,1.0033974180364706,-9.064401069193783,1.0,0.0,0.0 -192,14.0,4.250001594286741,2.5,0.0,0.0,0.9988799114602346,-9.077405601255611,1.0,0.0,0.0 -192,15.0,1.8140250707321457,1.8,0.0,0.0,1.008197252037849,-8.78426980911449,1.0,0.0,0.0 -192,16.0,4.664635896168375,5.8,0.0,0.0,1.0066907026393164,-8.862983475345212,1.0,0.0,0.0 -192,17.0,1.6585372075265332,0.9,0.0,0.0,0.994689285829139,-9.292429783841309,1.0,0.0,0.0 -192,18.0,4.923782334844395,3.4,0.0,0.0,0.9944404911965118,-9.329107589462492,1.0,0.0,0.0 -192,19.0,1.1402443301744918,0.7,0.0,0.0,0.9983180337211932,-9.221832997447486,1.0,0.0,0.0 -192,20.0,9.070125353660728,11.2,0.0,0.0,1.0042561660620746,-8.89049291631487,1.0,0.0,0.0 -192,21.0,0.0,0.0,0.0,0.0,1.0053562590597709,-8.875416052262922,1.0,0.0,0.0 -192,22.0,1.6585372075265332,1.6,0.0,0.0,0.9837697916074014,-9.363600374496633,1.0,0.0,0.0 -192,23.0,4.509148032962761,6.7,0.0,0.0,0.9702985805973648,-9.620317371156323,1.0,0.0,0.0 -192,24.0,0.0,0.0,0.0,0.0,0.970753576884264,-9.28363831473111,1.0,0.0,0.0 -192,25.0,1.8140250707321457,2.3,0.0,0.0,0.956795034169859,-9.34792221979867,1.0,0.0,0.0 -192,26.0,0.0,0.0,0.0,0.0,0.9780160122344924,-8.998284173745525,1.0,0.0,0.0 -192,27.0,0.0,0.0,0.0,0.0,0.965993966057282,-6.671238612353162,1.0,0.0,0.0 -192,28.0,1.2439029056448998,0.9,0.0,0.0,0.9645255642542252,-9.600290882444874,1.0,0.0,0.0 -192,29.0,5.493904499931641,1.9,0.0,0.0,0.9572139117367954,-10.055731520912335,1.0,0.0,0.0 -193,0.0,0.0,0.0,153.49562772996003,0.0053822353448751,1.0,0.0,0.0,0.0,1.0 -193,1.0,11.246955438539302,12.7,5.038695643489222e-06,10.733047916304264,0.9824924245262496,-3.208143537994299,0.0,1.0,0.0 -193,2.0,1.2439029056448998,1.2,0.0,0.0,0.972534627475359,-5.509832830199473,1.0,0.0,0.0 -193,3.0,3.939025867875516,1.6,0.0,0.0,0.9656313769919715,-6.782373809806526,1.0,0.0,0.0 -193,4.0,48.82318904656232,19.0,-1.202631272816549e-09,25.527463657538505,0.9626344282542008,-9.096160014519027,0.0,1.0,0.0 -193,5.0,0.0,0.0,0.0,0.0,0.9640090315076488,-8.302092850917687,1.0,0.0,0.0 -193,6.0,11.817077603626547,10.9,0.0,0.0,0.9568966088633744,-8.883384302252203,1.0,0.0,0.0 -193,7.0,15.548786320561248,30.0,-3.838381353925897e-09,33.560948935557505,0.9637795917079566,-8.734267941892835,0.0,1.0,0.0 -193,8.0,0.0,0.0,0.0,0.0,1.0149663536998677,-10.470630678775288,1.0,0.0,0.0 -193,9.0,3.006098688641841,2.0,0.0,0.0,1.0071973956603817,-11.592773354813568,1.0,0.0,0.0 -193,10.0,0.0,0.0,-7.674695034727629e-09,22.94981557032745,1.059999955936309,-10.470630679625426,0.0,1.0,0.0 -193,11.0,5.804880226342865,7.5,0.0,0.0,1.0185629182523446,-10.581783752100195,1.0,0.0,0.0 -193,12.0,0.0,0.0,-2.307263714936826e-09,13.145140694539002,1.0363211175789664,-10.58178375227553,0.0,1.0,0.0 -193,13.0,3.213415839582658,1.6,0.0,0.0,1.007465779628426,-11.074393236156723,1.0,0.0,0.0 -193,14.0,4.250001594286741,2.5,0.0,0.0,1.0034752330337469,-11.146306869893875,1.0,0.0,0.0 -193,15.0,1.8140250707321457,1.8,0.0,0.0,1.0072194445764435,-11.09942544047888,1.0,0.0,0.0 -193,16.0,4.664635896168375,5.8,0.0,0.0,1.0030265901890465,-11.527220862049088,1.0,0.0,0.0 -193,17.0,1.6585372075265332,0.9,0.0,0.0,0.995802313129052,-11.62127091679768,1.0,0.0,0.0 -193,18.0,4.923782334844395,3.4,0.0,0.0,0.993503090277732,-11.813800127755323,1.0,0.0,0.0 -193,19.0,1.1402443301744918,0.7,0.0,0.0,0.9962979192814228,-11.788103209927185,1.0,0.0,0.0 -193,20.0,9.070125353660728,11.2,0.0,0.0,0.9955969327766916,-11.75824067575709,1.0,0.0,0.0 -193,21.0,0.0,0.0,0.0,0.0,0.9991774610144571,-11.607705144894789,1.0,0.0,0.0 -193,22.0,1.6585372075265332,1.6,0.0,0.0,0.994434857524756,-11.377650635190776,1.0,0.0,0.0 -193,23.0,4.509148032962761,6.7,0.0,0.0,0.9889689915773352,-11.556255932725213,1.0,0.0,0.0 -193,24.0,0.0,0.0,0.0,0.0,0.9805023567452692,-11.11973054751778,1.0,0.0,0.0 -193,25.0,1.8140250707321457,2.3,0.0,0.0,0.9666866569735272,-11.182724054725828,1.0,0.0,0.0 -193,26.0,0.0,0.0,0.0,0.0,0.9821250195432872,-10.782112641764732,1.0,0.0,0.0 -193,27.0,0.0,0.0,0.0,0.0,0.9609691846044416,-8.622467515710044,1.0,0.0,0.0 -193,28.0,1.2439029056448998,0.9,0.0,0.0,0.9686941925567244,-11.379024516178776,1.0,0.0,0.0 -193,29.0,5.493904499931641,1.9,0.0,0.0,0.9614149586865172,-11.830527867522736,1.0,0.0,0.0 -194,0.0,0.0,0.0,152.82292576639838,0.0002624430849529,1.0,0.0,0.0,0.0,1.0 -194,1.0,11.246955438539302,12.7,2.975779010736151e-07,9.608338940784384,0.9811238916724772,-3.501143504028076,0.0,1.0,0.0 -194,2.0,1.2439029056448998,1.2,0.0,0.0,0.9753993736703478,-4.592475326014782,1.0,0.0,0.0 -194,3.0,3.939025867875516,1.6,0.0,0.0,0.9690101954968952,-5.641449128704998,1.0,0.0,0.0 -194,4.0,48.82318904656232,19.0,-3.544668078793401e-10,23.65856108153953,0.9620783791785584,-8.426747150003937,0.0,1.0,0.0 -194,5.0,0.0,0.0,0.0,0.0,0.9688003757437996,-6.7002687128045055,1.0,0.0,0.0 -194,6.0,11.817077603626547,10.9,0.0,0.0,0.959682737811874,-7.66337359165032,1.0,0.0,0.0 -194,7.0,15.548786320561248,30.0,-3.248320865269735e-10,30.29299647221025,0.9678186506035448,-7.104954724212659,0.0,1.0,0.0 -194,8.0,0.0,0.0,0.0,0.0,1.016621280799504,-8.414319668079031,1.0,0.0,0.0 -194,9.0,3.006098688641841,2.0,0.0,0.0,1.0078315363785173,-9.3051875394928,1.0,0.0,0.0 -194,10.0,0.0,0.0,-2.0300584809238608e-10,22.07640302885176,1.0599433310949444,-8.414319668101484,0.0,1.0,0.0 -194,11.0,5.804880226342865,7.5,0.0,0.0,1.0142901636355588,-8.85974349852535,1.0,0.0,0.0 -194,12.0,0.0,0.0,-4.3255707530557505e-10,9.25032842833929,1.0269013649078802,-8.859743498558664,0.0,1.0,0.0 -194,13.0,3.213415839582658,1.6,0.0,0.0,1.0035719037523725,-9.296838934411808,1.0,0.0,0.0 -194,14.0,4.250001594286741,2.5,0.0,0.0,1.0003845229039756,-9.320057251783863,1.0,0.0,0.0 -194,15.0,1.8140250707321457,1.8,0.0,0.0,1.0054521906390914,-9.146447828878545,1.0,0.0,0.0 -194,16.0,4.664635896168375,5.8,0.0,0.0,1.0027914014849688,-9.34118785264476,1.0,0.0,0.0 -194,17.0,1.6585372075265332,0.9,0.0,0.0,0.9940539427337772,-9.634826473985266,1.0,0.0,0.0 -194,18.0,4.923782334844395,3.4,0.0,0.0,0.9925425067938584,-9.731031227698628,1.0,0.0,0.0 -194,19.0,1.1402443301744918,0.7,0.0,0.0,0.9957591425870932,-9.654403444636808,1.0,0.0,0.0 -194,20.0,9.070125353660728,11.2,0.0,0.0,0.9974489749897416,-9.460951810002838,1.0,0.0,0.0 -194,21.0,0.0,0.0,0.0,0.0,0.997830800140073,-9.4584431168415,1.0,0.0,0.0 -194,22.0,1.6585372075265332,1.6,0.0,0.0,0.9921925958493506,-9.483271552949171,1.0,0.0,0.0 -194,23.0,4.509148032962761,6.7,0.0,0.0,0.9878556524868102,-9.568484399158606,1.0,0.0,0.0 -194,24.0,0.0,0.0,0.0,0.0,0.981646045764048,-9.310035879678294,1.0,0.0,0.0 -194,25.0,1.8140250707321457,2.3,0.0,0.0,0.9678469096111298,-9.372880565539726,1.0,0.0,0.0 -194,26.0,0.0,0.0,0.0,0.0,0.9847120534680224,-9.081528154790796,1.0,0.0,0.0 -194,27.0,0.0,0.0,0.0,0.0,0.9668471564246464,-7.03429202117739,1.0,0.0,0.0 -194,28.0,1.2439029056448998,0.9,0.0,0.0,0.9713184870372517,-9.675265590544974,1.0,0.0,0.0 -194,29.0,5.493904499931641,1.9,0.0,0.0,0.9640595126452816,-10.124316477831892,1.0,0.0,0.0 -195,0.0,0.0,0.0,152.82292576639838,0.0002624430849529,1.0,0.0,0.0,0.0,1.0 -195,1.0,11.246955438539302,12.7,2.975779010736151e-07,9.608338940784384,0.9811238916724772,-3.501143504028076,0.0,1.0,0.0 -195,2.0,1.2439029056448998,1.2,0.0,0.0,0.9753993736703478,-4.592475326014782,1.0,0.0,0.0 -195,3.0,3.939025867875516,1.6,0.0,0.0,0.9690101954968952,-5.641449128704998,1.0,0.0,0.0 -195,4.0,48.82318904656232,19.0,-3.544668078793401e-10,23.65856108153953,0.9620783791785584,-8.426747150003937,0.0,1.0,0.0 -195,5.0,0.0,0.0,0.0,0.0,0.9688003757437996,-6.7002687128045055,1.0,0.0,0.0 -195,6.0,11.817077603626547,10.9,0.0,0.0,0.959682737811874,-7.66337359165032,1.0,0.0,0.0 -195,7.0,15.548786320561248,30.0,-3.248320865269735e-10,30.29299647221025,0.9678186506035448,-7.104954724212659,0.0,1.0,0.0 -195,8.0,0.0,0.0,0.0,0.0,1.016621280799504,-8.414319668079031,1.0,0.0,0.0 -195,9.0,3.006098688641841,2.0,0.0,0.0,1.0078315363785173,-9.3051875394928,1.0,0.0,0.0 -195,10.0,0.0,0.0,-2.0300584809238608e-10,22.07640302885176,1.0599433310949444,-8.414319668101484,0.0,1.0,0.0 -195,11.0,5.804880226342865,7.5,0.0,0.0,1.0142901636355588,-8.85974349852535,1.0,0.0,0.0 -195,12.0,0.0,0.0,-4.3255707530557505e-10,9.25032842833929,1.0269013649078802,-8.859743498558664,0.0,1.0,0.0 -195,13.0,3.213415839582658,1.6,0.0,0.0,1.0035719037523725,-9.296838934411808,1.0,0.0,0.0 -195,14.0,4.250001594286741,2.5,0.0,0.0,1.0003845229039756,-9.320057251783863,1.0,0.0,0.0 -195,15.0,1.8140250707321457,1.8,0.0,0.0,1.0054521906390914,-9.146447828878545,1.0,0.0,0.0 -195,16.0,4.664635896168375,5.8,0.0,0.0,1.0027914014849688,-9.34118785264476,1.0,0.0,0.0 -195,17.0,1.6585372075265332,0.9,0.0,0.0,0.9940539427337772,-9.634826473985266,1.0,0.0,0.0 -195,18.0,4.923782334844395,3.4,0.0,0.0,0.9925425067938584,-9.731031227698628,1.0,0.0,0.0 -195,19.0,1.1402443301744918,0.7,0.0,0.0,0.9957591425870932,-9.654403444636808,1.0,0.0,0.0 -195,20.0,9.070125353660728,11.2,0.0,0.0,0.9974489749897416,-9.460951810002838,1.0,0.0,0.0 -195,21.0,0.0,0.0,0.0,0.0,0.997830800140073,-9.4584431168415,1.0,0.0,0.0 -195,22.0,1.6585372075265332,1.6,0.0,0.0,0.9921925958493506,-9.483271552949171,1.0,0.0,0.0 -195,23.0,4.509148032962761,6.7,0.0,0.0,0.9878556524868102,-9.568484399158606,1.0,0.0,0.0 -195,24.0,0.0,0.0,0.0,0.0,0.981646045764048,-9.310035879678294,1.0,0.0,0.0 -195,25.0,1.8140250707321457,2.3,0.0,0.0,0.9678469096111298,-9.372880565539726,1.0,0.0,0.0 -195,26.0,0.0,0.0,0.0,0.0,0.9847120534680224,-9.081528154790796,1.0,0.0,0.0 -195,27.0,0.0,0.0,0.0,0.0,0.9668471564246464,-7.03429202117739,1.0,0.0,0.0 -195,28.0,1.2439029056448998,0.9,0.0,0.0,0.9713184870372517,-9.675265590544974,1.0,0.0,0.0 -195,29.0,5.493904499931641,1.9,0.0,0.0,0.9640595126452816,-10.124316477831892,1.0,0.0,0.0 -196,0.0,0.0,0.0,152.8290216932022,0.0003033912531869,1.0,0.0,0.0,0.0,1.0 -196,1.0,11.246955438539302,12.7,3.470387922441612e-07,9.566048984125269,0.9811025894303428,-3.5020142997294856,0.0,1.0,0.0 -196,2.0,1.2439029056448998,1.2,0.0,0.0,0.9754542598360276,-4.590347212814402,1.0,0.0,0.0 -196,3.0,3.939025867875516,1.6,0.0,0.0,0.9690775665287408,-5.638785202463004,1.0,0.0,0.0 -196,4.0,48.82318904656232,19.0,-3.9728988091374637e-10,23.665781826614904,0.9620400409265086,-8.430709316007153,0.0,1.0,0.0 -196,5.0,0.0,0.0,0.0,0.0,0.9687292063252702,-6.706536934968983,1.0,0.0,0.0 -196,6.0,11.817077603626547,10.9,0.0,0.0,0.9596241420709664,-7.66871680112521,1.0,0.0,0.0 -196,7.0,15.548786320561248,30.0,-3.616998846467467e-10,30.306987895167254,0.967754574347795,-7.11133796777551,0.0,1.0,0.0 -196,8.0,0.0,0.0,0.0,0.0,1.0162805636138943,-8.458787780761208,1.0,0.0,0.0 -196,9.0,3.006098688641841,2.0,0.0,0.0,1.007185786432231,-9.370022348835064,1.0,0.0,0.0 -196,10.0,0.0,0.0,-2.1453356467964822e-10,22.24926676972561,1.059941895501464,-8.458787780784938,0.0,1.0,0.0 -196,11.0,5.804880226342865,7.5,0.0,0.0,1.0149532086626365,-8.78751389597967,1.0,0.0,0.0 -196,12.0,0.0,0.0,-4.89433368128847e-10,9.13744807980324,1.0274044178356256,-8.787513896017318,0.0,1.0,0.0 -196,13.0,3.213415839582658,1.6,0.0,0.0,1.0046332286008657,-9.195925172360498,1.0,0.0,0.0 -196,14.0,4.250001594286741,2.5,0.0,0.0,1.0020175224325838,-9.200290403489351,1.0,0.0,0.0 -196,15.0,1.8140250707321457,1.8,0.0,0.0,1.0054563267218992,-9.130133584735116,1.0,0.0,0.0 -196,16.0,4.664635896168375,5.8,0.0,0.0,1.0023760928221257,-9.38158816688584,1.0,0.0,0.0 -196,17.0,1.6585372075265332,0.9,0.0,0.0,0.998261349278446,-9.35255251398372,1.0,0.0,0.0 -196,18.0,4.923782334844395,3.4,0.0,0.0,0.98869892674795,-10.004497826387382,1.0,0.0,0.0 -196,19.0,1.1402443301744918,0.7,0.0,0.0,0.9927330507387556,-9.876529917353,1.0,0.0,0.0 -196,20.0,9.070125353660728,11.2,0.0,0.0,0.9969254460221056,-9.514310309189804,1.0,0.0,0.0 -196,21.0,0.0,0.0,0.0,0.0,0.9973493777258878,-9.50810236883566,1.0,0.0,0.0 -196,22.0,1.6585372075265332,1.6,0.0,0.0,0.993193241269849,-9.415643784512286,1.0,0.0,0.0 -196,23.0,4.509148032962761,6.7,0.0,0.0,0.9880192099955166,-9.57208778920588,1.0,0.0,0.0 -196,24.0,0.0,0.0,0.0,0.0,0.981722616073852,-9.313638208566742,1.0,0.0,0.0 -196,25.0,1.8140250707321457,2.3,0.0,0.0,0.967924587421736,-9.376472949797634,1.0,0.0,0.0 -196,26.0,0.0,0.0,0.0,0.0,0.9847340535609916,-9.085232434007509,1.0,0.0,0.0 -196,27.0,0.0,0.0,0.0,0.0,0.9667890549258829,-7.040475769410865,1.0,0.0,0.0 -196,28.0,1.2439029056448998,0.9,0.0,0.0,0.9713408030831968,-9.678942983615112,1.0,0.0,0.0 -196,29.0,5.493904499931641,1.9,0.0,0.0,0.964082000480081,-10.127973102000556,1.0,0.0,0.0 -197,0.0,0.0,0.0,152.46223340403603,0.000554969590194,1.0,0.0,0.0,0.0,1.0 -197,1.0,11.217780137473463,12.7,5.790849542058897e-07,9.73087911464934,0.9811549191111364,-3.494794424866246,0.0,1.0,0.0 -197,2.0,1.2406761442366967,1.2,0.0,0.0,0.9754491088524138,-4.575190856129141,1.0,0.0,0.0 -197,3.0,3.928807790082872,1.6,0.0,0.0,0.9690689351406624,-5.620042279726934,1.0,0.0,0.0 -197,4.0,48.69653866129034,19.0,-5.848442351718013e-10,23.76768024728156,0.9621466405687016,-8.414149600938282,0.0,1.0,0.0 -197,5.0,0.0,0.0,0.0,0.0,0.9685781173796506,-6.693674486335879,1.0,0.0,0.0 -197,6.0,11.78642337024862,10.9,0.0,0.0,0.9595829935398856,-7.653339578921403,1.0,0.0,0.0 -197,7.0,15.508451802958708,30.0,-4.774382374984433e-10,31.28026959866441,0.9678799845766698,-7.105431111721285,0.0,1.0,0.0 -197,8.0,0.0,0.0,0.0,0.0,1.0155314950154353,-8.4368462840236,1.0,0.0,0.0 -197,9.0,2.99830068190535,2.0,0.0,0.0,1.0056928372961484,-9.344564704446306,1.0,0.0,0.0 -197,10.0,0.0,0.0,-1.8495467028591067e-10,22.66066002160979,1.0599977885801453,-8.436846284044076,0.0,1.0,0.0 -197,11.0,5.789822006437917,7.5,0.0,0.0,1.015186111996742,-8.696918802169385,1.0,0.0,0.0 -197,12.0,0.0,0.0,-7.070126134967225e-10,7.610284968089871,1.0255748215587923,-8.696918802223855,0.0,1.0,0.0 -197,13.0,3.205080039278133,1.6,0.0,0.0,1.006006807619925,-9.096341722490942,1.0,0.0,0.0 -197,14.0,4.238976826142046,2.5,0.0,0.0,1.0045279825609084,-9.118903825620963,1.0,0.0,0.0 -197,15.0,1.8093193770118488,1.8,0.0,0.0,1.0048994465136585,-9.063219654637011,1.0,0.0,0.0 -197,16.0,4.652535540887612,5.8,0.0,0.0,1.0011872352583826,-9.344108424595849,1.0,0.0,0.0 -197,17.0,1.6542348589822622,0.9,0.0,0.0,0.9959867720361336,-9.514560125512268,1.0,0.0,0.0 -197,18.0,4.911009737603591,3.4,0.0,0.0,0.9931639136154808,-9.660211051118324,1.0,0.0,0.0 -197,19.0,1.1372864655503054,0.7,0.0,0.0,0.995680426386804,-9.610174121145835,1.0,0.0,0.0 -197,20.0,9.046596885059246,11.2,0.0,0.0,0.9938857054633672,-9.53281219029519,1.0,0.0,0.0 -197,21.0,0.0,0.0,0.0,0.0,0.9938212033346074,-9.540226190843883,1.0,0.0,0.0 -197,22.0,1.6542348589822622,1.6,0.0,0.0,0.970921060472845,-9.888795714967683,1.0,0.0,0.0 -197,23.0,4.497451022858025,6.7,0.0,0.0,0.9776224395179394,-9.746675931090978,1.0,0.0,0.0 -197,24.0,0.0,0.0,0.0,0.0,0.9751634146391216,-9.465705407350988,1.0,0.0,0.0 -197,25.0,1.8093193770118488,2.3,0.0,0.0,0.9612825130027132,-9.528306921871163,1.0,0.0,0.0 -197,26.0,0.0,0.0,0.0,0.0,0.980593956617815,-9.21893398375501,1.0,0.0,0.0 -197,27.0,0.0,0.0,0.0,0.0,0.9661901878423296,-7.0372976004838845,1.0,0.0,0.0 -197,28.0,1.2406761442366967,0.9,0.0,0.0,0.9671607926076968,-9.815679587732816,1.0,0.0,0.0 -197,29.0,5.479652970378743,1.9,0.0,0.0,0.9598824022109288,-10.267242027638442,1.0,0.0,0.0 -198,0.0,0.0,0.0,152.5560844158192,0.0009676988693918,1.0,0.0,0.0,0.0,1.0 -198,1.0,11.217780137473463,12.7,9.738636368497777e-07,9.104267444567263,0.9810607742661072,-3.4956783578127597,0.0,1.0,0.0 -198,2.0,1.2406761442366967,1.2,0.0,0.0,0.9756805952237642,-4.58079752586058,1.0,0.0,0.0 -198,3.0,3.928807790082872,1.6,0.0,0.0,0.969354881428098,-5.626914296094814,1.0,0.0,0.0 -198,4.0,48.69653866129034,19.0,-4.865305863236667e-10,23.599311336525744,0.962101322969498,-8.41808941170364,0.0,1.0,0.0 -198,5.0,0.0,0.0,0.0,0.0,0.9689226459019764,-6.708683269515506,1.0,0.0,0.0 -198,6.0,11.78642337024862,10.9,0.0,0.0,0.9597684340461308,-7.663936077137694,1.0,0.0,0.0 -198,7.0,15.508451802958708,30.0,-3.1448333078731917e-10,33.6324333411569,0.967849023079826,-7.327841749190274,0.0,1.0,0.0 -198,8.0,0.0,0.0,0.0,0.0,1.0145919992221144,-8.628724147504137,1.0,0.0,0.0 -198,9.0,2.99830068190535,2.0,0.0,0.0,1.0036512778601894,-9.630909596631067,1.0,0.0,0.0 -198,10.0,0.0,0.0,5.69475223295564e-12,23.140614781014,1.0599999981182968,-8.628724147503506,0.0,1.0,0.0 -198,11.0,5.789822006437917,7.5,0.0,0.0,1.0158096745359328,-8.663805834544263,1.0,0.0,0.0 -198,12.0,0.0,0.0,-5.745262588713526e-10,7.185571238091686,1.025618197587678,-8.663805834588496,0.0,1.0,0.0 -198,13.0,3.205080039278133,1.6,0.0,0.0,1.0045087886424828,-9.177022957810085,1.0,0.0,0.0 -198,14.0,4.238976826142046,2.5,0.0,0.0,1.0002000456653248,-9.264089146284045,1.0,0.0,0.0 -198,15.0,1.8093193770118488,1.8,0.0,0.0,0.9906224995803852,-9.950238600352945,1.0,0.0,0.0 -198,16.0,4.652535540887612,5.8,0.0,0.0,0.9950770176432778,-9.80282816600293,1.0,0.0,0.0 -198,17.0,1.6542348589822622,0.9,0.0,0.0,0.9924195073440266,-9.712003049489631,1.0,0.0,0.0 -198,18.0,4.911009737603591,3.4,0.0,0.0,0.9900589813142084,-9.888093785221628,1.0,0.0,0.0 -198,19.0,1.1372864655503054,0.7,0.0,0.0,0.9928313143310722,-9.85334939305226,1.0,0.0,0.0 -198,20.0,9.046596885059246,11.2,0.0,0.0,0.9932787774738876,-9.788689325031603,1.0,0.0,0.0 -198,21.0,0.0,0.0,0.0,0.0,0.9936764702988296,-9.786731781873176,1.0,0.0,0.0 -198,22.0,1.6542348589822622,1.6,0.0,0.0,0.9903457395613338,-9.593498071108051,1.0,0.0,0.0 -198,23.0,4.497451022858025,6.7,0.0,0.0,0.9838480410827734,-9.905356383680571,1.0,0.0,0.0 -198,24.0,0.0,0.0,0.0,0.0,0.9750366209692009,-9.94213515700062,1.0,0.0,0.0 -198,25.0,1.8093193770118488,2.3,0.0,0.0,0.9611538612023612,-10.004753192754665,1.0,0.0,0.0 -198,26.0,0.0,0.0,0.0,0.0,0.9766364370626168,-9.900605950165255,1.0,0.0,0.0 -198,27.0,0.0,0.0,0.0,0.0,0.9592515566950468,-8.17070542701656,1.0,0.0,0.0 -198,28.0,1.2406761442366967,0.9,0.0,0.0,0.9631457580327042,-10.502263840696951,1.0,0.0,0.0 -198,29.0,5.479652970378743,1.9,0.0,0.0,0.9558361020590336,-10.957624157196584,1.0,0.0,0.0 -199,0.0,0.0,0.0,152.4109220705371,0.0002366438505596,1.0,0.0,0.0,0.0,1.0 -199,1.0,11.217780137473463,12.7,2.681848170524476e-07,9.56930014371153,0.9811638656302094,-3.49143068472941,0.0,1.0,0.0 -199,2.0,1.2406761442366967,1.2,0.0,0.0,0.9754528437322684,-4.579767877828497,1.0,0.0,0.0 -199,3.0,3.928807790082872,1.6,0.0,0.0,0.96907410022659,-5.625724086333255,1.0,0.0,0.0 -199,4.0,48.69653866129034,19.0,-3.2319943321559445e-10,23.63565728387705,0.9621608490377456,-8.403343267759505,0.0,1.0,0.0 -199,5.0,0.0,0.0,0.0,0.0,0.9688711371802716,-6.681733812258217,1.0,0.0,0.0 -199,6.0,11.78642337024862,10.9,0.0,0.0,0.9597638858072396,-7.641902695521685,1.0,0.0,0.0 -199,7.0,15.508451802958708,30.0,-2.9760593221926467e-10,30.28147570737849,0.967890388689318,-7.085274573411027,0.0,1.0,0.0 -199,8.0,0.0,0.0,0.0,0.0,1.0166664342634737,-8.391202629490868,1.0,0.0,0.0 -199,9.0,2.99830068190535,2.0,0.0,0.0,1.00788285021476,-9.279709136734551,1.0,0.0,0.0 -199,10.0,0.0,0.0,-1.8664104876142123e-10,22.054858788540987,1.05994609399346,-8.39120262951151,0.0,1.0,0.0 -199,11.0,5.789822006437917,7.5,0.0,0.0,1.0143176003909535,-8.835340465818227,1.0,0.0,0.0 -199,12.0,0.0,0.0,-3.98189981316288e-10,9.222037059630225,1.0268903660053643,-8.835340465848898,0.0,1.0,0.0 -199,13.0,3.205080039278133,1.6,0.0,0.0,1.0036142402129506,-9.270924799819683,1.0,0.0,0.0 -199,14.0,4.238976826142046,2.5,0.0,0.0,1.0004328644074296,-9.293956454390395,1.0,0.0,0.0 -199,15.0,1.8093193770118488,1.8,0.0,0.0,1.0054951796130966,-9.121077276476214,1.0,0.0,0.0 -199,16.0,4.652535540887612,5.8,0.0,0.0,1.0028427873610282,-9.315320563482544,1.0,0.0,0.0 -199,17.0,1.6542348589822622,0.9,0.0,0.0,0.9941138836034784,-9.607724736735817,1.0,0.0,0.0 -199,18.0,4.911009737603591,3.4,0.0,0.0,0.9926063804521774,-9.703664387770544,1.0,0.0,0.0 -199,19.0,1.1372864655503054,0.7,0.0,0.0,0.9958204546512524,-9.6274169295058,1.0,0.0,0.0 -199,20.0,9.046596885059246,11.2,0.0,0.0,0.997508841786688,-9.434574410293685,1.0,0.0,0.0 -199,21.0,0.0,0.0,0.0,0.0,0.9978905267797804,-9.432105307821097,1.0,0.0,0.0 -199,22.0,1.6542348589822622,1.6,0.0,0.0,0.9922532609550028,-9.456469873809253,1.0,0.0,0.0 -199,23.0,4.497451022858025,6.7,0.0,0.0,0.9879264921429942,-9.541423607270676,1.0,0.0,0.0 -199,24.0,0.0,0.0,0.0,0.0,0.9817230780668952,-9.283616168097714,1.0,0.0,0.0 -199,25.0,1.8093193770118488,2.3,0.0,0.0,0.967937623160832,-9.345371847304287,1.0,0.0,0.0 -199,26.0,0.0,0.0,0.0,0.0,0.9847870757350814,-9.0560944453279,1.0,0.0,0.0 -199,27.0,0.0,0.0,0.0,0.0,0.966921833653006,-7.014777852786986,1.0,0.0,0.0 -199,28.0,1.2406761442366967,0.9,0.0,0.0,0.971414303771434,-9.647700998438978,1.0,0.0,0.0 -199,29.0,5.479652970378743,1.9,0.0,0.0,0.9641687413720424,-10.095291703881582,1.0,0.0,0.0 -200,0.0,0.0,0.0,152.89453514357126,0.0002415996459781,1.0,0.0,0.0,0.0,1.0 -200,1.0,11.217780137473463,12.7,2.4719977150524256e-07,9.975322957423757,0.9804209903645084,-3.6708486816084887,0.0,1.0,0.0 -200,2.0,1.2406761442366967,1.2,0.0,0.0,0.976795062431444,-4.110924251327469,1.0,0.0,0.0 -200,3.0,3.928807790082872,1.6,0.0,0.0,0.970680116769092,-5.0432206680537215,1.0,0.0,0.0 -200,4.0,48.69653866129034,19.0,4.0144759303120425e-10,35.11723523202454,0.9599576121732112,-11.2587769059916,0.0,1.0,0.0 -200,5.0,0.0,0.0,0.0,0.0,0.9713272584604444,-5.8246018565368765,1.0,0.0,0.0 -200,6.0,11.78642337024862,10.9,0.0,0.0,0.9418423545463585,-11.83384673491639,1.0,0.0,0.0 -200,7.0,15.508451802958708,30.0,5.557498351690527e-10,29.89312167159948,0.969521173232646,-6.223206970923725,0.0,1.0,0.0 -200,8.0,0.0,0.0,0.0,0.0,1.0161752804710835,-7.57739347912392,1.0,0.0,0.0 -200,9.0,2.99830068190535,2.0,0.0,0.0,1.0076539439692722,-8.490929360911776,1.0,0.0,0.0 -200,10.0,0.0,0.0,6.232174815661826e-10,20.215210558254245,1.0559933694639283,-7.577393479054703,0.0,1.0,0.0 -200,11.0,5.789822006437917,7.5,0.0,0.0,1.012695399552498,-8.13287974439258,1.0,0.0,0.0 -200,12.0,0.0,0.0,5.798255228349958e-10,7.525239610731527,1.0229939312768015,-8.132879744347683,0.0,1.0,0.0 -200,13.0,3.205080039278133,1.6,0.0,0.0,1.0021360126184482,-8.556440291799499,1.0,0.0,0.0 -200,14.0,4.238976826142046,2.5,0.0,0.0,0.9991970557304434,-8.569974375061493,1.0,0.0,0.0 -200,15.0,1.8093193770118488,1.8,0.0,0.0,1.0045280476054874,-8.38475927333186,1.0,0.0,0.0 -200,16.0,4.652535540887612,5.8,0.0,0.0,1.0023621766770183,-8.542071603191614,1.0,0.0,0.0 -200,17.0,1.6542348589822622,0.9,0.0,0.0,0.993230378476488,-8.861652260598401,1.0,0.0,0.0 -200,18.0,4.911009737603591,3.4,0.0,0.0,0.9919325459522624,-8.94420277747936,1.0,0.0,0.0 -200,19.0,1.1372864655503054,0.7,0.0,0.0,0.9952604531744548,-8.860761398779529,1.0,0.0,0.0 -200,20.0,9.046596885059246,11.2,0.0,0.0,0.9972621836801526,-8.646644305315144,1.0,0.0,0.0 -200,21.0,0.0,0.0,0.0,0.0,0.9976390459569136,-8.644417461294857,1.0,0.0,0.0 -200,22.0,1.6542348589822622,1.6,0.0,0.0,0.9914074648069532,-8.706826895460262,1.0,0.0,0.0 -200,23.0,4.497451022858025,6.7,0.0,0.0,0.9876010538492772,-8.756653988231083,1.0,0.0,0.0 -200,24.0,0.0,0.0,0.0,0.0,0.9819931795633158,-8.462388037483846,1.0,0.0,0.0 -200,25.0,1.8093193770118488,2.3,0.0,0.0,0.9682116262458896,-8.524109258348716,1.0,0.0,0.0 -200,26.0,0.0,0.0,0.0,0.0,0.9854137058755033,-8.211596466047506,1.0,0.0,0.0 -200,27.0,0.0,0.0,0.0,0.0,0.967763996114342,-6.122915953928232,1.0,0.0,0.0 -200,28.0,1.2406761442366967,0.9,0.0,0.0,0.9720499111914032,-8.80244075979454,1.0,0.0,0.0 -200,29.0,5.479652970378743,1.9,0.0,0.0,0.9648092285395776,-9.24944247754176,1.0,0.0,0.0 -201,0.0,0.0,0.0,120.35486771414791,1.4638009915302064e-06,1.0,0.0,0.0,0.0,1.0 -201,1.0,11.217780137473463,12.7,33.73980914864538,-19.23518193726735,0.9762878817394006,-3.960460787356482,0.0,1.0,0.0 -201,2.0,1.2406761442366967,1.2,0.0,0.0,1.0008288442913778,-0.1391597281210221,1.0,0.0,0.0 -201,3.0,3.928807790082872,1.6,0.0,0.0,0.9590979544537432,-7.183076258080462,1.0,0.0,0.0 -201,4.0,48.69653866129034,19.0,8.560709017487068e-09,39.99999858058089,0.9809374101773664,-10.645271909153475,0.0,1.0,0.0 -201,5.0,0.0,0.0,0.0,0.0,0.9772886378473956,-10.332092593640237,1.0,0.0,0.0 -201,6.0,11.78642337024862,10.9,0.0,0.0,0.9722656883133044,-10.704689607364244,1.0,0.0,0.0 -201,7.0,15.508451802958708,30.0,1.0997270721750778e-08,39.99999921054612,0.979892932362533,-10.784404441931237,0.0,1.0,0.0 -201,8.0,0.0,0.0,0.0,0.0,1.02043342257873,-11.874708255704224,1.0,0.0,0.0 -201,9.0,2.99830068190535,2.0,0.0,0.0,1.0109912181698757,-12.680987652550929,1.0,0.0,0.0 -201,10.0,0.0,0.0,2.0895960721810823e-08,20.16373564322036,1.059999998245993,-11.874708253401948,0.0,1.0,0.0 -201,11.0,5.789822006437917,7.5,0.0,0.0,1.0337994914560054,-10.768513381157216,1.0,0.0,0.0 -201,12.0,0.0,0.0,3.800955445058099e-09,19.837525856038496,1.0599999973686436,-10.768513380878984,0.0,1.0,0.0 -201,13.0,3.205080039278133,1.6,0.0,0.0,1.021763896321866,-11.383368021839246,1.0,0.0,0.0 -201,14.0,4.238976826142046,2.5,0.0,0.0,1.0158001336249949,-11.565074399724011,1.0,0.0,0.0 -201,15.0,1.8093193770118488,1.8,0.0,0.0,0.9980592440535352,-12.995630135479606,1.0,0.0,0.0 -201,16.0,4.652535540887612,5.8,0.0,0.0,1.0024805222689956,-12.850398632882271,1.0,0.0,0.0 -201,17.0,1.6542348589822622,0.9,0.0,0.0,1.005119702134714,-12.264498037330291,1.0,0.0,0.0 -201,18.0,4.911009737603591,3.4,0.0,0.0,1.001044834721658,-12.594768963184809,1.0,0.0,0.0 -201,19.0,1.1372864655503054,0.7,0.0,0.0,1.0028690444434143,-12.644212337586634,1.0,0.0,0.0 -201,20.0,9.046596885059246,11.2,0.0,0.0,1.00138184581113,-12.77983759250589,1.0,0.0,0.0 -201,21.0,0.0,0.0,0.0,0.0,1.0019988161921445,-12.760029702825962,1.0,0.0,0.0 -201,22.0,1.6542348589822622,1.6,0.0,0.0,1.004325178822811,-12.082425392550826,1.0,0.0,0.0 -201,23.0,4.497451022858025,6.7,0.0,0.0,0.9956662214712884,-12.655638012573274,1.0,0.0,0.0 -201,24.0,0.0,0.0,0.0,0.0,0.9891294502913002,-12.598581204475929,1.0,0.0,0.0 -201,25.0,1.8093193770118488,2.3,0.0,0.0,0.9754501743670484,-12.659402415136295,1.0,0.0,0.0 -201,26.0,0.0,0.0,0.0,0.0,0.9920010866863828,-12.497543806533464,1.0,0.0,0.0 -201,27.0,0.0,0.0,0.0,0.0,0.9760320719920836,-10.647493705326388,1.0,0.0,0.0 -201,28.0,1.2406761442366967,0.9,0.0,0.0,0.9633888531559834,-13.80193432277151,1.0,0.0,0.0 -201,29.0,5.479652970378743,1.9,0.0,0.0,0.9400000016995892,-15.085217237354591,1.0,0.0,0.0 -202,0.0,0.0,0.0,152.5325867663733,0.0079470082262389,1.0,0.0,0.0,0.0,1.0 -202,1.0,11.217780137473463,12.7,0.0,0.0,0.9802323404382042,-3.475169945636181,0.0,1.0,0.0 -202,2.0,1.2406761442366967,1.2,0.0,0.0,0.9780843883720134,-4.626104226557269,1.0,0.0,0.0 -202,3.0,3.928807790082872,1.6,0.0,0.0,0.9723227104713852,-5.6822055741395046,1.0,0.0,0.0 -202,4.0,48.69653866129034,19.0,-1.7270845565600482e-10,27.174090913406687,0.9673526554745048,-8.459932033640396,0.0,1.0,0.0 -202,5.0,0.0,0.0,0.0,0.0,0.9728355694951782,-6.737707658456905,1.0,0.0,0.0 -202,6.0,11.78642337024862,10.9,0.0,0.0,0.9642709760134138,-7.69536252688407,1.0,0.0,0.0 -202,7.0,15.508451802958708,30.0,-1.9123057504447595e-10,36.17731553360581,0.9727762771141746,-7.371585827435961,0.0,1.0,0.0 -202,8.0,0.0,0.0,0.0,0.0,1.019575267688812,-8.514766541110284,1.0,0.0,0.0 -202,9.0,2.99830068190535,2.0,0.0,0.0,1.011726390815626,-9.43865143270924,1.0,0.0,0.0 -202,10.0,0.0,0.0,-1.9165369251399115e-10,20.600938645010704,1.0599997602123188,-8.514766541131422,0.0,1.0,0.0 -202,11.0,5.789822006437917,7.5,0.0,0.0,1.0235317212385626,-8.896040571252424,1.0,0.0,0.0 -202,12.0,0.0,0.0,-2.9431747101830154e-10,11.97799155386604,1.0396611951987849,-8.89604057127461,0.0,1.0,0.0 -202,13.0,3.205080039278133,1.6,0.0,0.0,1.0132293325609458,-9.314995689217213,1.0,0.0,0.0 -202,14.0,4.238976826142046,2.5,0.0,0.0,1.0104282506648168,-9.335805691941903,1.0,0.0,0.0 -202,15.0,1.8093193770118488,1.8,0.0,0.0,1.0123567170875387,-9.210989321337149,1.0,0.0,0.0 -202,16.0,4.652535540887612,5.8,0.0,0.0,1.0076741170815908,-9.455473492491803,1.0,0.0,0.0 -202,17.0,1.6542348589822622,0.9,0.0,0.0,1.0019991961528818,-9.684710500670022,1.0,0.0,0.0 -202,18.0,4.911009737603591,3.4,0.0,0.0,0.9992265304358314,-9.803418449990492,1.0,0.0,0.0 -202,19.0,1.1372864655503054,0.7,0.0,0.0,1.0017458944400082,-9.74070035052179,1.0,0.0,0.0 -202,20.0,9.046596885059246,11.2,0.0,0.0,1.0004734254846237,-9.644581087871556,1.0,0.0,0.0 -202,21.0,0.0,0.0,0.0,0.0,1.0005589236110637,-9.658536795521266,1.0,0.0,0.0 -202,22.0,1.6542348589822622,1.6,0.0,0.0,1.005567585428847,-9.434012850841922,1.0,0.0,0.0 -202,23.0,4.497451022858025,6.7,0.0,0.0,0.986294221955662,-9.964209331868872,1.0,0.0,0.0 -202,24.0,0.0,0.0,0.0,0.0,0.9784011319189128,-9.999367202905258,1.0,0.0,0.0 -202,25.0,1.8093193770118488,2.3,0.0,0.0,0.9645675078702404,-10.061549060801896,1.0,0.0,0.0 -202,26.0,0.0,0.0,0.0,0.0,0.980545289340876,-9.956063219351552,1.0,0.0,0.0 -202,27.0,0.0,0.0,0.0,0.0,0.9637517650186056,-8.213506201959035,1.0,0.0,0.0 -202,28.0,1.2406761442366967,0.9,0.0,0.0,0.9671114210907478,-10.552868863722654,1.0,0.0,0.0 -202,29.0,5.479652970378743,1.9,0.0,0.0,0.9598326478709898,-11.004477715076304,1.0,0.0,0.0 -203,0.0,0.0,0.0,152.60700316207863,0.0060688044253076,1.0,0.0,0.0,0.0,1.0 -203,1.0,11.217780137473463,12.7,4.687923608766319e-06,9.831557170966512,0.981166886402542,-3.495907435237544,0.0,1.0,0.0 -203,2.0,1.2406761442366967,1.2,0.0,0.0,0.975355996285973,-4.586390823890023,1.0,0.0,0.0 -203,3.0,3.928807790082872,1.6,0.0,0.0,0.9689555742144266,-5.63398546159512,1.0,0.0,0.0 -203,4.0,48.69653866129034,19.0,7.468238832729771e-09,23.93279729581365,0.9622667650036428,-8.41273261941578,0.0,1.0,0.0 -203,5.0,0.0,0.0,0.0,0.0,0.9684707562208984,-6.683560685669464,1.0,0.0,0.0 -203,6.0,11.78642337024862,10.9,0.0,0.0,0.9595696240697316,-7.646665960796221,1.0,0.0,0.0 -203,7.0,15.508451802958708,30.0,5.827452263499865e-09,32.691038632042435,0.9678725078257752,-7.104535160049499,0.0,1.0,0.0 -203,8.0,0.0,0.0,0.0,0.0,1.0184908690427097,-8.315240949098824,1.0,0.0,0.0 -203,9.0,2.99830068190535,2.0,0.0,0.0,1.0118012759082384,-9.159690799887386,1.0,0.0,0.0 -203,10.0,0.0,0.0,3.1322818588864154e-09,21.145256793967608,1.0599840719096314,-8.315240948753052,0.0,1.0,0.0 -203,11.0,5.789822006437917,7.5,0.0,0.0,1.0156958471371216,-8.86782242032527,1.0,0.0,0.0 -203,12.0,0.0,0.0,8.526101914358369e-09,11.663536552076105,1.0315257488063736,-8.867822419672507,0.0,1.0,0.0 -203,13.0,3.205080039278133,1.6,0.0,0.0,1.0037194731552834,-9.30967605158724,1.0,0.0,0.0 -203,14.0,4.238976826142046,2.5,0.0,0.0,0.9992533629367344,-9.310604299669832,1.0,0.0,0.0 -203,15.0,1.8093193770118488,1.8,0.0,0.0,1.0080881465234723,-9.092990719357314,1.0,0.0,0.0 -203,16.0,4.652535540887612,5.8,0.0,0.0,1.006328973152134,-9.221734021946595,1.0,0.0,0.0 -203,17.0,1.6542348589822622,0.9,0.0,0.0,0.99549138098325,-9.463170984632876,1.0,0.0,0.0 -203,18.0,4.911009737603591,3.4,0.0,0.0,0.993422351938108,-9.785900540285304,1.0,0.0,0.0 -203,19.0,1.1372864655503054,0.7,0.0,0.0,0.9974328808654664,-9.659643410895791,1.0,0.0,0.0 -203,20.0,9.046596885059246,11.2,0.0,0.0,0.9842912063773652,-9.51950772705784,1.0,0.0,0.0 -203,21.0,0.0,0.0,0.0,0.0,0.9880431086192872,-9.470267060171013,1.0,0.0,0.0 -203,22.0,1.6542348589822622,1.6,0.0,0.0,0.9837461118417856,-9.607353443861507,1.0,0.0,0.0 -203,23.0,4.497451022858025,6.7,0.0,0.0,0.969743469806434,-9.879714408710017,1.0,0.0,0.0 -203,24.0,0.0,0.0,0.0,0.0,0.969509798581245,-9.562543285230245,1.0,0.0,0.0 -203,25.0,1.8093193770118488,2.3,0.0,0.0,0.955545551014508,-9.625887899447786,1.0,0.0,0.0 -203,26.0,0.0,0.0,0.0,0.0,0.9763542040179318,-9.290287113715276,1.0,0.0,0.0 -203,27.0,0.0,0.0,0.0,0.0,0.9639470466104482,-6.998046967197749,1.0,0.0,0.0 -203,28.0,1.2406761442366967,0.9,0.0,0.0,0.9628594039352786,-9.892297653735724,1.0,0.0,0.0 -203,29.0,5.479652970378743,1.9,0.0,0.0,0.9555475076724604,-10.347930669597869,1.0,0.0,0.0 -204,0.0,0.0,0.0,65.93076413855331,3.199520737240391e-06,1.0,0.0,0.0,0.0,1.0 -204,1.0,11.217780137473463,12.7,84.70468049880965,35.30719996026035,0.9952912193501452,-1.0926204673813231,0.0,1.0,0.0 -204,2.0,1.2406761442366967,1.2,0.0,0.0,0.9747183956028408,-3.0875875404290736,1.0,0.0,0.0 -204,3.0,3.928807790082872,1.6,0.0,0.0,0.968083959566738,-3.772710051627447,1.0,0.0,0.0 -204,4.0,48.69653866129034,19.0,0.0,0.0,0.9447174732651582,-5.757203964315723,0.0,1.0,0.0 -204,5.0,0.0,0.0,0.0,0.0,0.9691108494319922,-4.584974306761062,1.0,0.0,0.0 -204,6.0,11.78642337024862,10.9,0.0,0.0,0.9526291099750496,-5.335908938711529,1.0,0.0,0.0 -204,7.0,15.508451802958708,30.0,-2.7127092656077186e-08,39.99999773156403,0.9714402610513062,-5.064590481606698,0.0,1.0,0.0 -204,8.0,0.0,0.0,0.0,0.0,1.025455439585055,-4.584974311390883,1.0,0.0,0.0 -204,9.0,2.99830068190535,2.0,0.0,0.0,0.9662612454013624,-9.786332505679107,1.0,0.0,0.0 -204,10.0,0.0,0.0,-3.947567355502389e-08,17.604434274898516,1.0599999901803423,-4.584974315718938,0.0,1.0,0.0 -204,11.0,5.789822006437917,7.5,0.0,0.0,0.985075609733206,-7.568765899184119,1.0,0.0,0.0 -204,12.0,0.0,0.0,0.0,0.0,0.985075609733206,-7.568765899184119,0.0,1.0,0.0 -204,13.0,3.205080039278133,1.6,0.0,0.0,0.9719281765087242,-8.188910479549685,1.0,0.0,0.0 -204,14.0,4.238976826142046,2.5,0.0,0.0,0.965567409769712,-8.320450670878772,1.0,0.0,0.0 -204,15.0,1.8093193770118488,1.8,0.0,0.0,0.9796776447651196,-7.681220463440731,1.0,0.0,0.0 -204,16.0,4.652535540887612,5.8,0.0,0.0,0.9595805214357562,-9.913145893517347,1.0,0.0,0.0 -204,17.0,1.6542348589822622,0.9,0.0,0.0,0.9480220253182264,-8.929583790967742,1.0,0.0,0.0 -204,18.0,4.911009737603591,3.4,0.0,0.0,0.9400000006806144,-9.1978502848064,1.0,0.0,0.0 -204,19.0,1.1372864655503054,0.7,0.0,0.0,0.9636367169875922,-9.892277319332695,1.0,0.0,0.0 -204,20.0,9.046596885059246,11.2,0.0,0.0,0.9568655999794132,-9.808447134293376,1.0,0.0,0.0 -204,21.0,0.0,0.0,0.0,0.0,0.9577315557937864,-9.759375242063877,1.0,0.0,0.0 -204,22.0,1.6542348589822622,1.6,0.0,0.0,0.9579578821625848,-8.798848295464184,1.0,0.0,0.0 -204,23.0,4.497451022858025,6.7,0.0,0.0,0.9547353013210526,-9.299471373264025,1.0,0.0,0.0 -204,24.0,0.0,0.0,0.0,0.0,0.9626101912049708,-8.516312204123015,1.0,0.0,0.0 -204,25.0,1.8093193770118488,2.3,0.0,0.0,0.9485428424925496,-8.580581844392329,1.0,0.0,0.0 -204,26.0,0.0,0.0,0.0,0.0,0.9744423490948452,-7.951424655449475,1.0,0.0,0.0 -204,27.0,0.0,0.0,0.0,0.0,0.9661709261049686,-5.018276905447995,1.0,0.0,0.0 -204,28.0,1.2406761442366967,0.9,0.0,0.0,0.9609195645814372,-8.555832278856029,1.0,0.0,0.0 -204,29.0,5.479652970378743,1.9,0.0,0.0,0.9535924552032174,-9.013319116258256,1.0,0.0,0.0 -205,0.0,0.0,0.0,152.47402559800963,0.0019403432263587,1.0,0.0,0.0,0.0,1.0 -205,1.0,11.217780137473463,12.7,1.4558207111061997e-06,13.092935772086555,0.9817531514829624,-3.507162309879521,0.0,1.0,0.0 -205,2.0,1.2406761442366967,1.2,0.0,0.0,0.9737133362360614,-4.548555969986543,1.0,0.0,0.0 -205,3.0,3.928807790082872,1.6,0.0,0.0,0.9669267348313352,-5.587627171265128,1.0,0.0,0.0 -205,4.0,48.69653866129034,19.0,1.7997233225716986e-10,24.23774784553136,0.9625801914692258,-8.42333537544302,0.0,1.0,0.0 -205,5.0,0.0,0.0,0.0,0.0,0.9678708151455888,-6.681647254388077,1.0,0.0,0.0 -205,6.0,11.78642337024862,10.9,0.0,0.0,0.959342493151221,-7.649535282843823,1.0,0.0,0.0 -205,7.0,15.508451802958708,30.0,7.07009864919342e-10,34.577839831012575,0.96842328925373,-7.113254798743781,0.0,1.0,0.0 -205,8.0,0.0,0.0,0.0,0.0,1.0132064678233137,-8.436281993466181,1.0,0.0,0.0 -205,9.0,2.99830068190535,2.0,0.0,0.0,1.0013858051431512,-9.353228153343125,1.0,0.0,0.0 -205,10.0,0.0,0.0,2.1152640019258444e-09,23.75534374516592,1.0598282799821452,-8.436281993231425,0.0,1.0,0.0 -205,11.0,5.789822006437917,7.5,0.0,0.0,0.998577629594258,-8.754493631205587,1.0,0.0,0.0 -205,12.0,0.0,0.0,0.0,0.0,0.998577629594258,-8.754493631205587,0.0,1.0,0.0 -205,13.0,3.205080039278133,1.6,0.0,0.0,0.9889640972825272,-9.208235825106788,1.0,0.0,0.0 -205,14.0,4.238976826142046,2.5,0.0,0.0,0.9869171003007547,-9.265353976799204,1.0,0.0,0.0 -205,15.0,1.8093193770118488,1.8,0.0,0.0,0.9935841899990486,-9.129210684133362,1.0,0.0,0.0 -205,16.0,4.652535540887612,5.8,0.0,0.0,0.9946444605179304,-9.363487609273951,1.0,0.0,0.0 -205,17.0,1.6542348589822622,0.9,0.0,0.0,0.9829653156865626,-9.623482293901306,1.0,0.0,0.0 -205,18.0,4.911009737603591,3.4,0.0,0.0,0.9828869546711468,-9.743381815983584,1.0,0.0,0.0 -205,19.0,1.1372864655503054,0.7,0.0,0.0,0.9868937697234562,-9.677387640801753,1.0,0.0,0.0 -205,20.0,9.046596885059246,11.2,0.0,0.0,0.990697089341672,-9.505631133934338,1.0,0.0,0.0 -205,21.0,0.0,0.0,0.0,0.0,0.9910044271761698,-9.501569655368575,1.0,0.0,0.0 -205,22.0,1.6542348589822622,1.6,0.0,0.0,0.9810923552340808,-9.460706083536753,1.0,0.0,0.0 -205,23.0,4.497451022858025,6.7,0.0,0.0,0.9799870108229696,-9.584965424951204,1.0,0.0,0.0 -205,24.0,0.0,0.0,0.0,0.0,0.9762305285429248,-9.349942859170024,1.0,0.0,0.0 -205,25.0,1.8093193770118488,2.3,0.0,0.0,0.9623652452213602,-9.412405588020366,1.0,0.0,0.0 -205,26.0,0.0,0.0,0.0,0.0,0.9808617505758498,-9.133166503530166,1.0,0.0,0.0 -205,27.0,0.0,0.0,0.0,0.0,0.9658876789850904,-7.0223218167492405,1.0,0.0,0.0 -205,28.0,1.2406761442366967,0.9,0.0,0.0,0.9742205660152372,-9.323497771989253,1.0,0.0,0.0 -205,29.0,5.479652970378743,1.9,0.0,0.0,0.949925912325052,-10.790143855387011,1.0,0.0,0.0 -206,0.0,0.0,0.0,152.4109220705371,0.0002366438505596,1.0,0.0,0.0,0.0,1.0 -206,1.0,11.217780137473463,12.7,2.681848170524476e-07,9.56930014371153,0.9811638656302094,-3.49143068472941,0.0,1.0,0.0 -206,2.0,1.2406761442366967,1.2,0.0,0.0,0.9754528437322684,-4.579767877828497,1.0,0.0,0.0 -206,3.0,3.928807790082872,1.6,0.0,0.0,0.96907410022659,-5.625724086333255,1.0,0.0,0.0 -206,4.0,48.69653866129034,19.0,-3.2319943321559445e-10,23.63565728387705,0.9621608490377456,-8.403343267759505,0.0,1.0,0.0 -206,5.0,0.0,0.0,0.0,0.0,0.9688711371802716,-6.681733812258217,1.0,0.0,0.0 -206,6.0,11.78642337024862,10.9,0.0,0.0,0.9597638858072396,-7.641902695521685,1.0,0.0,0.0 -206,7.0,15.508451802958708,30.0,-2.9760593221926467e-10,30.28147570737849,0.967890388689318,-7.085274573411027,0.0,1.0,0.0 -206,8.0,0.0,0.0,0.0,0.0,1.0166664342634737,-8.391202629490868,1.0,0.0,0.0 -206,9.0,2.99830068190535,2.0,0.0,0.0,1.00788285021476,-9.279709136734551,1.0,0.0,0.0 -206,10.0,0.0,0.0,-1.8664104876142123e-10,22.054858788540987,1.05994609399346,-8.39120262951151,0.0,1.0,0.0 -206,11.0,5.789822006437917,7.5,0.0,0.0,1.0143176003909535,-8.835340465818227,1.0,0.0,0.0 -206,12.0,0.0,0.0,-3.98189981316288e-10,9.222037059630225,1.0268903660053643,-8.835340465848898,0.0,1.0,0.0 -206,13.0,3.205080039278133,1.6,0.0,0.0,1.0036142402129506,-9.270924799819683,1.0,0.0,0.0 -206,14.0,4.238976826142046,2.5,0.0,0.0,1.0004328644074296,-9.293956454390395,1.0,0.0,0.0 -206,15.0,1.8093193770118488,1.8,0.0,0.0,1.0054951796130966,-9.121077276476214,1.0,0.0,0.0 -206,16.0,4.652535540887612,5.8,0.0,0.0,1.0028427873610282,-9.315320563482544,1.0,0.0,0.0 -206,17.0,1.6542348589822622,0.9,0.0,0.0,0.9941138836034784,-9.607724736735817,1.0,0.0,0.0 -206,18.0,4.911009737603591,3.4,0.0,0.0,0.9926063804521774,-9.703664387770544,1.0,0.0,0.0 -206,19.0,1.1372864655503054,0.7,0.0,0.0,0.9958204546512524,-9.6274169295058,1.0,0.0,0.0 -206,20.0,9.046596885059246,11.2,0.0,0.0,0.997508841786688,-9.434574410293685,1.0,0.0,0.0 -206,21.0,0.0,0.0,0.0,0.0,0.9978905267797804,-9.432105307821097,1.0,0.0,0.0 -206,22.0,1.6542348589822622,1.6,0.0,0.0,0.9922532609550028,-9.456469873809253,1.0,0.0,0.0 -206,23.0,4.497451022858025,6.7,0.0,0.0,0.9879264921429942,-9.541423607270676,1.0,0.0,0.0 -206,24.0,0.0,0.0,0.0,0.0,0.9817230780668952,-9.283616168097714,1.0,0.0,0.0 -206,25.0,1.8093193770118488,2.3,0.0,0.0,0.967937623160832,-9.345371847304287,1.0,0.0,0.0 -206,26.0,0.0,0.0,0.0,0.0,0.9847870757350814,-9.0560944453279,1.0,0.0,0.0 -206,27.0,0.0,0.0,0.0,0.0,0.966921833653006,-7.014777852786986,1.0,0.0,0.0 -206,28.0,1.2406761442366967,0.9,0.0,0.0,0.971414303771434,-9.647700998438978,1.0,0.0,0.0 -206,29.0,5.479652970378743,1.9,0.0,0.0,0.9641687413720424,-10.095291703881582,1.0,0.0,0.0 -207,0.0,0.0,0.0,153.39171395415653,0.0015072113004777,1.0,0.0,0.0,0.0,1.0 -207,1.0,11.217780137473463,12.7,1.3165381256198936e-06,9.958101507791348,0.9823727785441198,-3.2056092115414683,0.0,1.0,0.0 -207,2.0,1.2406761442366967,1.2,0.0,0.0,0.972919633285802,-5.504872150669458,1.0,0.0,0.0 -207,3.0,3.928807790082872,1.6,0.0,0.0,0.9661043693051234,-6.776025737405586,1.0,0.0,0.0 -207,4.0,48.69653866129034,19.0,6.420531745013394e-10,25.67589198948352,0.9630272845019072,-9.115812845438986,0.0,1.0,0.0 -207,5.0,0.0,0.0,0.0,0.0,0.9644894940614764,-8.361807910116328,1.0,0.0,0.0 -207,6.0,11.78642337024862,10.9,0.0,0.0,0.957342808372162,-8.92567205451829,1.0,0.0,0.0 -207,7.0,15.508451802958708,30.0,1.0517695634903255e-09,33.803670562162644,0.9643710815407612,-8.794257242426806,0.0,1.0,0.0 -207,8.0,0.0,0.0,0.0,0.0,1.015481816135407,-9.962202948370422,1.0,0.0,0.0 -207,9.0,2.99830068190535,2.0,0.0,0.0,1.0077421449968853,-10.790382340719384,1.0,0.0,0.0 -207,10.0,0.0,0.0,1.8689292129216955e-09,22.68546263884937,1.0599968197737013,-9.962202948163505,0.0,1.0,0.0 -207,11.0,5.789822006437917,7.5,0.0,0.0,1.0182140107940116,-10.205992100463332,1.0,0.0,0.0 -207,12.0,0.0,0.0,1.1019656696615982e-09,14.066685635962903,1.0372010337997657,-10.20599210037963,0.0,1.0,0.0 -207,13.0,3.205080039278133,1.6,0.0,0.0,0.9862833186178976,-11.065742984798552,1.0,0.0,0.0 -207,14.0,4.238976826142046,2.5,0.0,0.0,0.996708923817839,-10.898784368188196,1.0,0.0,0.0 -207,15.0,1.8093193770118488,1.8,0.0,0.0,1.0075616300866417,-10.542583790029628,1.0,0.0,0.0 -207,16.0,4.652535540887612,5.8,0.0,0.0,1.003425561282187,-10.800711339799973,1.0,0.0,0.0 -207,17.0,1.6542348589822622,0.9,0.0,0.0,0.9916392997700544,-11.181487132153851,1.0,0.0,0.0 -207,18.0,4.911009737603591,3.4,0.0,0.0,0.9908758807534492,-11.258287039259264,1.0,0.0,0.0 -207,19.0,1.1372864655503054,0.7,0.0,0.0,0.99449018610629,-11.171622194958688,1.0,0.0,0.0 -207,20.0,9.046596885059246,11.2,0.0,0.0,0.9761304141048702,-11.247254388075463,1.0,0.0,0.0 -207,21.0,0.0,0.0,0.0,0.0,0.9799136897152187,-11.197190132919998,1.0,0.0,0.0 -207,22.0,1.6542348589822622,1.6,0.0,0.0,0.98445930501533,-11.11914109729146,1.0,0.0,0.0 -207,23.0,4.497451022858025,6.7,0.0,0.0,0.9747716178281728,-11.283751590861783,1.0,0.0,0.0 -207,24.0,0.0,0.0,0.0,0.0,0.9708572728387294,-11.03204582326086,1.0,0.0,0.0 -207,25.0,1.8093193770118488,2.3,0.0,0.0,0.9569129818980534,-11.09521212783768,1.0,0.0,0.0 -207,26.0,0.0,0.0,0.0,0.0,0.9754259609747976,-10.80427822920818,1.0,0.0,0.0 -207,27.0,0.0,0.0,0.0,0.0,0.9605051582259534,-8.660863143499439,1.0,0.0,0.0 -207,28.0,1.2406761442366967,0.9,0.0,0.0,0.968747192812484,-10.996751526822006,1.0,0.0,0.0 -207,29.0,5.479652970378743,1.9,0.0,0.0,0.9443010775907998,-12.480419885904878,1.0,0.0,0.0 -208,0.0,0.0,0.0,152.4109220705371,0.0002366438505596,1.0,0.0,0.0,0.0,1.0 -208,1.0,11.217780137473463,12.7,2.681848170524476e-07,9.56930014371153,0.9811638656302094,-3.49143068472941,0.0,1.0,0.0 -208,2.0,1.2406761442366967,1.2,0.0,0.0,0.9754528437322684,-4.579767877828497,1.0,0.0,0.0 -208,3.0,3.928807790082872,1.6,0.0,0.0,0.96907410022659,-5.625724086333255,1.0,0.0,0.0 -208,4.0,48.69653866129034,19.0,-3.2319943321559445e-10,23.63565728387705,0.9621608490377456,-8.403343267759505,0.0,1.0,0.0 -208,5.0,0.0,0.0,0.0,0.0,0.9688711371802716,-6.681733812258217,1.0,0.0,0.0 -208,6.0,11.78642337024862,10.9,0.0,0.0,0.9597638858072396,-7.641902695521685,1.0,0.0,0.0 -208,7.0,15.508451802958708,30.0,-2.9760593221926467e-10,30.28147570737849,0.967890388689318,-7.085274573411027,0.0,1.0,0.0 -208,8.0,0.0,0.0,0.0,0.0,1.0166664342634737,-8.391202629490868,1.0,0.0,0.0 -208,9.0,2.99830068190535,2.0,0.0,0.0,1.00788285021476,-9.279709136734551,1.0,0.0,0.0 -208,10.0,0.0,0.0,-1.8664104876142123e-10,22.054858788540987,1.05994609399346,-8.39120262951151,0.0,1.0,0.0 -208,11.0,5.789822006437917,7.5,0.0,0.0,1.0143176003909535,-8.835340465818227,1.0,0.0,0.0 -208,12.0,0.0,0.0,-3.98189981316288e-10,9.222037059630225,1.0268903660053643,-8.835340465848898,0.0,1.0,0.0 -208,13.0,3.205080039278133,1.6,0.0,0.0,1.0036142402129506,-9.270924799819683,1.0,0.0,0.0 -208,14.0,4.238976826142046,2.5,0.0,0.0,1.0004328644074296,-9.293956454390395,1.0,0.0,0.0 -208,15.0,1.8093193770118488,1.8,0.0,0.0,1.0054951796130966,-9.121077276476214,1.0,0.0,0.0 -208,16.0,4.652535540887612,5.8,0.0,0.0,1.0028427873610282,-9.315320563482544,1.0,0.0,0.0 -208,17.0,1.6542348589822622,0.9,0.0,0.0,0.9941138836034784,-9.607724736735817,1.0,0.0,0.0 -208,18.0,4.911009737603591,3.4,0.0,0.0,0.9926063804521774,-9.703664387770544,1.0,0.0,0.0 -208,19.0,1.1372864655503054,0.7,0.0,0.0,0.9958204546512524,-9.6274169295058,1.0,0.0,0.0 -208,20.0,9.046596885059246,11.2,0.0,0.0,0.997508841786688,-9.434574410293685,1.0,0.0,0.0 -208,21.0,0.0,0.0,0.0,0.0,0.9978905267797804,-9.432105307821097,1.0,0.0,0.0 -208,22.0,1.6542348589822622,1.6,0.0,0.0,0.9922532609550028,-9.456469873809253,1.0,0.0,0.0 -208,23.0,4.497451022858025,6.7,0.0,0.0,0.9879264921429942,-9.541423607270676,1.0,0.0,0.0 -208,24.0,0.0,0.0,0.0,0.0,0.9817230780668952,-9.283616168097714,1.0,0.0,0.0 -208,25.0,1.8093193770118488,2.3,0.0,0.0,0.967937623160832,-9.345371847304287,1.0,0.0,0.0 -208,26.0,0.0,0.0,0.0,0.0,0.9847870757350814,-9.0560944453279,1.0,0.0,0.0 -208,27.0,0.0,0.0,0.0,0.0,0.966921833653006,-7.014777852786986,1.0,0.0,0.0 -208,28.0,1.2406761442366967,0.9,0.0,0.0,0.971414303771434,-9.647700998438978,1.0,0.0,0.0 -208,29.0,5.479652970378743,1.9,0.0,0.0,0.9641687413720424,-10.095291703881582,1.0,0.0,0.0 -209,0.0,0.0,0.0,138.00001092256306,0.0002484932275947,1.0,0.0,0.0,0.0,1.0 -209,1.0,11.217780137473463,12.7,17.71620816734714,10.43679127282678,0.9751783085138253,-4.637420254761333,0.0,1.0,0.0 -209,2.0,1.2406761442366967,1.2,0.0,0.0,0.9554267434058932,-9.127937956834252,1.0,0.0,0.0 -209,3.0,3.928807790082872,1.6,0.0,0.0,0.9559221610299394,-9.105201655477575,1.0,0.0,0.0 -209,4.0,48.69653866129034,19.0,-1.0980583460529087e-09,27.24140147063727,0.9553786440489074,-10.762853796549049,0.0,1.0,0.0 -209,5.0,0.0,0.0,0.0,0.0,0.9534999231364926,-10.053685261406054,1.0,0.0,0.0 -209,6.0,11.78642337024862,10.9,0.0,0.0,0.9476209112259496,-10.601651926280407,1.0,0.0,0.0 -209,7.0,15.508451802958708,30.0,-5.734048799090567e-10,39.60230494954348,0.9558816999246011,-10.591189548467575,0.0,1.0,0.0 -209,8.0,0.0,0.0,0.0,0.0,1.0169123131478326,-21.69572600033994,1.0,0.0,0.0 -209,9.0,2.99830068190535,2.0,0.0,0.0,0.9942778388248058,-21.695726000344344,1.0,0.0,0.0 -209,10.0,0.0,0.0,7.068923936944936e-11,21.805477347426528,1.0597120463751646,-21.69572600033212,0.0,1.0,0.0 -209,11.0,5.789822006437917,7.5,0.0,0.0,0.9732709280543346,-24.753047553612088,1.0,0.0,0.0 -209,12.0,0.0,0.0,3.0681602689144004e-10,16.053254659721414,0.99583938327028,-24.753047553586697,0.0,1.0,0.0 -209,13.0,3.205080039278133,1.6,0.0,0.0,0.9652120691896752,-24.899420948804632,1.0,0.0,0.0 -209,14.0,4.238976826142046,2.5,0.0,0.0,0.9670595077215248,-24.67741604760722,1.0,0.0,0.0 -209,15.0,1.8093193770118488,1.8,0.0,0.0,0.9780096690206886,-23.579430156861097,1.0,0.0,0.0 -209,16.0,4.652535540887612,5.8,0.0,0.0,0.9839571494769332,-22.347291823718816,1.0,0.0,0.0 -209,17.0,1.6542348589822622,0.9,0.0,0.0,0.9673988109926764,-23.95452051623189,1.0,0.0,0.0 -209,18.0,4.911009737603591,3.4,0.0,0.0,0.970000613701089,-23.432435622436785,1.0,0.0,0.0 -209,19.0,1.1372864655503054,0.7,0.0,0.0,0.9755435606902289,-23.027510477224126,1.0,0.0,0.0 -209,20.0,9.046596885059246,11.2,0.0,0.0,0.9821608909041796,-21.558717238317985,1.0,0.0,0.0 -209,21.0,0.0,0.0,0.0,0.0,0.9820823621115692,-21.459987320693244,1.0,0.0,0.0 -209,22.0,1.6542348589822622,1.6,0.0,0.0,0.9616489516436848,-20.379040892349902,1.0,0.0,0.0 -209,23.0,4.497451022858025,6.7,0.0,0.0,0.9684150030357304,-20.23418653345906,1.0,0.0,0.0 -209,24.0,0.0,0.0,0.0,0.0,0.9703424575044765,-17.352094409683062,1.0,0.0,0.0 -209,25.0,1.8093193770118488,2.3,0.0,0.0,0.956390548769664,-17.415328748407276,1.0,0.0,0.0 -209,26.0,0.0,0.0,0.0,0.0,0.9787610151665372,-15.501702110178584,1.0,0.0,0.0 -209,27.0,0.0,0.0,0.0,0.0,0.9515308599434132,-10.765231119136937,1.0,0.0,0.0 -209,28.0,1.2406761442366967,0.9,0.0,0.0,0.9653012755921088,-16.10071531344667,1.0,0.0,0.0 -209,29.0,5.479652970378743,1.9,0.0,0.0,0.958008438708151,-16.55403075121178,1.0,0.0,0.0 -210,0.0,0.0,0.0,152.81901900600758,0.0246004174444536,1.0,0.0,0.0,0.0,1.0 -210,1.0,11.217780137473463,12.7,9.581560478006097e-06,14.84375567914369,0.9837875643018316,-3.251588818357494,0.0,1.0,0.0 -210,2.0,1.2406761442366967,1.2,0.0,0.0,0.968861182792946,-5.338501053258431,1.0,0.0,0.0 -210,3.0,3.928807790082872,1.6,0.0,0.0,0.9610704371361326,-6.5718958729533465,1.0,0.0,0.0 -210,4.0,48.69653866129034,19.0,-1.5233933182635174e-08,27.44062805651498,0.9642372090953192,-8.66161756872158,0.0,1.0,0.0 -210,5.0,0.0,0.0,0.0,0.0,0.962140657693738,-7.308060145645645,1.0,0.0,0.0 -210,6.0,11.78642337024862,10.9,0.0,0.0,0.9565490160654406,-8.115079148956204,1.0,0.0,0.0 -210,7.0,15.508451802958708,30.0,-1.6666189643100404e-08,39.9901048128594,0.9646911498706215,-7.779333546525751,0.0,1.0,0.0 -210,8.0,0.0,0.0,0.0,0.0,0.9853628300806798,-9.029527664008306,1.0,0.0,0.0 -210,9.0,2.99830068190535,2.0,0.0,0.0,0.9865564603216592,-9.937262025341836,1.0,0.0,0.0 -210,10.0,0.0,0.0,0.0,0.0,0.9853628300806798,-9.029527664008306,0.0,1.0,0.0 -210,11.0,5.789822006437917,7.5,0.0,0.0,1.008938354566944,-9.858190316461933,1.0,0.0,0.0 -210,12.0,0.0,0.0,-1.2265279722801504e-08,17.64258296751013,1.032852340322925,-9.858190317406052,0.0,1.0,0.0 -210,13.0,3.205080039278133,1.6,0.0,0.0,0.9962698959585148,-10.275314206737262,1.0,0.0,0.0 -210,14.0,4.238976826142046,2.5,0.0,0.0,0.9913985016604876,-10.231715177449042,1.0,0.0,0.0 -210,15.0,1.8093193770118488,1.8,0.0,0.0,0.9933877681834145,-9.95665215109042,1.0,0.0,0.0 -210,16.0,4.652535540887612,5.8,0.0,0.0,0.9842428155986488,-10.043118492153456,1.0,0.0,0.0 -210,17.0,1.6542348589822622,0.9,0.0,0.0,0.980635327077716,-10.454526922653612,1.0,0.0,0.0 -210,18.0,4.911009737603591,3.4,0.0,0.0,0.9765241063728426,-10.493946738246324,1.0,0.0,0.0 -210,19.0,1.1372864655503054,0.7,0.0,0.0,0.9784335139994792,-10.383297903175182,1.0,0.0,0.0 -210,20.0,9.046596885059246,11.2,0.0,0.0,0.9770284186072544,-10.11166527703544,1.0,0.0,0.0 -210,21.0,0.0,0.0,0.0,0.0,0.9777553334544088,-10.113662272383374,1.0,0.0,0.0 -210,22.0,1.6542348589822622,1.6,0.0,0.0,0.9802176704209112,-10.326170105045462,1.0,0.0,0.0 -210,23.0,4.497451022858025,6.7,0.0,0.0,0.971957061455212,-10.317397813671445,1.0,0.0,0.0 -210,24.0,0.0,0.0,0.0,0.0,0.969233077588025,-10.065043849079364,1.0,0.0,0.0 -210,25.0,1.8093193770118488,2.3,0.0,0.0,0.9552647244683408,-10.12842517253242,1.0,0.0,0.0 -210,26.0,0.0,0.0,0.0,0.0,0.974552898539152,-9.835357417269854,1.0,0.0,0.0 -210,27.0,0.0,0.0,0.0,0.0,0.9604891483942622,-7.662754419035238,1.0,0.0,0.0 -210,28.0,1.2406761442366967,0.9,0.0,0.0,0.9610317354200052,-10.439626041916188,1.0,0.0,0.0 -210,29.0,5.479652970378743,1.9,0.0,0.0,0.953705507485998,-10.897005373655608,1.0,0.0,0.0 -211,0.0,0.0,0.0,152.8405376053604,0.0065158674999565,1.0,0.0,0.0,0.0,1.0 -211,1.0,11.217780137473463,12.7,4.068636686616549e-06,9.656052500289483,0.9810103459092876,-3.501935527611424,0.0,1.0,0.0 -211,2.0,1.2406761442366967,1.2,0.0,0.0,0.9757003198231512,-4.590457811456504,1.0,0.0,0.0 -211,3.0,3.928807790082872,1.6,0.0,0.0,0.9693803821784632,-5.638900995816492,1.0,0.0,0.0 -211,4.0,48.69653866129034,19.0,3.565594216751716e-09,23.98545999053222,0.9619107467234832,-8.431769460471267,0.0,1.0,0.0 -211,5.0,0.0,0.0,0.0,0.0,0.9678122862855124,-6.708026592012364,1.0,0.0,0.0 -211,6.0,11.78642337024862,10.9,0.0,0.0,0.9590290811818156,-7.669045042678672,1.0,0.0,0.0 -211,7.0,15.508451802958708,30.0,-1.0220777527235312e-09,29.439186085658392,0.9559542292592196,-9.522163095132123,0.0,1.0,0.0 -211,8.0,0.0,0.0,0.0,0.0,1.01393649622776,-8.68935825131627,1.0,0.0,0.0 -211,9.0,2.99830068190535,2.0,0.0,0.0,1.0029327187883468,-9.723080840770091,1.0,0.0,0.0 -211,10.0,0.0,0.0,-2.0354766653268563e-09,23.473232065641927,1.059997295535615,-8.68935825154197,0.0,1.0,0.0 -211,11.0,5.789822006437917,7.5,0.0,0.0,1.022453123479308,-8.64568891329685,1.0,0.0,0.0 -211,12.0,0.0,0.0,3.748784397352703e-09,10.582056898514953,1.0367429526220595,-8.64568891301317,0.0,1.0,0.0 -211,13.0,3.205080039278133,1.6,0.0,0.0,0.989799109921017,-9.631265582687142,1.0,0.0,0.0 -211,14.0,4.238976826142046,2.5,0.0,0.0,1.0001876535200236,-9.465478643009194,1.0,0.0,0.0 -211,15.0,1.8093193770118488,1.8,0.0,0.0,0.9898943847967948,-10.0428742881467,1.0,0.0,0.0 -211,16.0,4.652535540887612,5.8,0.0,0.0,0.994352184199092,-9.895247891966347,1.0,0.0,0.0 -211,17.0,1.6542348589822622,0.9,0.0,0.0,0.9921665346253656,-9.875084188842216,1.0,0.0,0.0 -211,18.0,4.911009737603591,3.4,0.0,0.0,0.9896611404719176,-10.02827135505822,1.0,0.0,0.0 -211,19.0,1.1372864655503054,0.7,0.0,0.0,0.99235913877763,-9.981338180364556,1.0,0.0,0.0 -211,20.0,9.046596885059246,11.2,0.0,0.0,0.9923743802396272,-9.894044272800237,1.0,0.0,0.0 -211,21.0,0.0,0.0,0.0,0.0,0.9927149186028426,-9.896169596423388,1.0,0.0,0.0 -211,22.0,1.6542348589822622,1.6,0.0,0.0,0.98955204404389,-9.776936278572109,1.0,0.0,0.0 -211,23.0,4.497451022858025,6.7,0.0,0.0,0.9820112981180994,-10.06518475302257,1.0,0.0,0.0 -211,24.0,0.0,0.0,0.0,0.0,0.9705273165393452,-10.163303250649514,1.0,0.0,0.0 -211,25.0,1.8093193770118488,2.3,0.0,0.0,0.956578144172464,-10.226513148144486,1.0,0.0,0.0 -211,26.0,0.0,0.0,0.0,0.0,0.9834705370431792,-9.115778901401148,1.0,0.0,0.0 -211,27.0,0.0,0.0,0.0,0.0,0.9639318077855036,-7.538027700720047,1.0,0.0,0.0 -211,28.0,1.2406761442366967,0.9,0.0,0.0,0.9700788635723706,-9.708991784655108,1.0,0.0,0.0 -211,29.0,5.479652970378743,1.9,0.0,0.0,0.962823026834684,-10.157823787673845,1.0,0.0,0.0 -212,0.0,0.0,0.0,152.89152587094196,0.0019447259871796,1.0,0.0,0.0,0.0,1.0 -212,1.0,11.217780137473463,12.7,1.5068384076942847e-06,9.89051897340078,0.9804260767129654,-3.671012541296869,0.0,1.0,0.0 -212,2.0,1.2406761442366967,1.2,0.0,0.0,0.9767783614679274,-4.110183674228859,1.0,0.0,0.0 -212,3.0,3.928807790082872,1.6,0.0,0.0,0.9706594758627382,-5.042305398639161,1.0,0.0,0.0 -212,4.0,48.69653866129034,19.0,-3.2700264809092644e-09,35.11884141923045,0.9599663758099976,-11.258879942853223,0.0,1.0,0.0 -212,5.0,0.0,0.0,0.0,0.0,0.9715259266896172,-5.828909232142632,1.0,0.0,0.0 -212,6.0,11.78642337024862,10.9,0.0,0.0,0.9418513124742304,-11.833939553825507,1.0,0.0,0.0 -212,7.0,15.508451802958708,30.0,-3.794012926716382e-09,28.38576479581849,0.9698070047661896,-6.219528707571194,0.0,1.0,0.0 -212,8.0,0.0,0.0,0.0,0.0,1.0138577732463252,-7.584373889167157,1.0,0.0,0.0 -212,9.0,2.99830068190535,2.0,0.0,0.0,1.0058161228012188,-8.50116199533608,1.0,0.0,0.0 -212,10.0,0.0,0.0,-4.135419749802687e-09,18.375957485892453,1.0502509712687764,-7.584373889630004,0.0,1.0,0.0 -212,11.0,5.789822006437917,7.5,0.0,0.0,1.0112968730343996,-8.12632111346898,1.0,0.0,0.0 -212,12.0,0.0,0.0,-3.970331753762211e-09,6.847543812177566,1.0206891171331465,-8.126321113777516,0.0,1.0,0.0 -212,13.0,3.205080039278133,1.6,0.0,0.0,1.0032640983483423,-8.478264490705328,1.0,0.0,0.0 -212,14.0,4.238976826142046,2.5,0.0,0.0,0.9968114494152504,-8.596644892888019,1.0,0.0,0.0 -212,15.0,1.8093193770118488,1.8,0.0,0.0,1.0029194521107083,-8.384797763874756,1.0,0.0,0.0 -212,16.0,4.652535540887612,5.8,0.0,0.0,1.000591831038554,-8.549710872525884,1.0,0.0,0.0 -212,17.0,1.6542348589822622,0.9,0.0,0.0,0.9910192130676376,-8.884021815257428,1.0,0.0,0.0 -212,18.0,4.911009737603591,3.4,0.0,0.0,0.9898294858187549,-8.96358053102137,1.0,0.0,0.0 -212,19.0,1.1372864655503054,0.7,0.0,0.0,0.993223079255668,-8.878041017952544,1.0,0.0,0.0 -212,20.0,9.046596885059246,11.2,0.0,0.0,0.99546951176181,-8.659391551538596,1.0,0.0,0.0 -212,21.0,0.0,0.0,0.0,0.0,0.9958671772456616,-8.657809055617903,1.0,0.0,0.0 -212,22.0,1.6542348589822622,1.6,0.0,0.0,0.9893791981482064,-8.732800367833915,1.0,0.0,0.0 -212,23.0,4.497451022858025,6.7,0.0,0.0,0.9860625062008688,-8.780904004543181,1.0,0.0,0.0 -212,24.0,0.0,0.0,0.0,0.0,0.981575455850726,-8.505092794499367,1.0,0.0,0.0 -212,25.0,1.8093193770118488,2.3,0.0,0.0,0.9677878676049898,-8.56686731854218,1.0,0.0,0.0 -212,26.0,0.0,0.0,0.0,0.0,0.9857004791929104,-8.264565485192412,1.0,0.0,0.0 -212,27.0,0.0,0.0,0.0,0.0,0.9691951470941998,-6.163162046391917,1.0,0.0,0.0 -212,28.0,1.2406761442366967,0.9,0.0,0.0,0.9723407887759976,-8.855061429470728,1.0,0.0,0.0 -212,29.0,5.479652970378743,1.9,0.0,0.0,0.9651023370541382,-9.301793993160222,1.0,0.0,0.0 -213,0.0,0.0,0.0,153.14527999897194,0.002022143600211,1.0,0.0,0.0,0.0,1.0 -213,1.0,11.217780137473463,12.7,1.787083192705936e-06,9.152765430024717,0.9802756160907444,-3.67462493607122,0.0,1.0,0.0 -213,2.0,1.2406761442366967,1.2,0.0,0.0,0.9771071931760292,-4.123397238870556,1.0,0.0,0.0 -213,3.0,3.928807790082872,1.6,0.0,0.0,0.9710657783890349,-5.058627147684908,1.0,0.0,0.0 -213,4.0,48.69653866129034,19.0,-4.123713930028743e-09,35.12437981789907,0.9598185865786026,-11.264967933875475,0.0,1.0,0.0 -213,5.0,0.0,0.0,0.0,0.0,0.9717163904070156,-5.854571952507147,1.0,0.0,0.0 -213,6.0,11.78642337024862,10.9,0.0,0.0,0.9417002459409852,-11.840199897619543,1.0,0.0,0.0 -213,7.0,15.508451802958708,30.0,-3.274627536549365e-09,29.678908391489426,0.9598018858734024,-8.709846328996479,0.0,1.0,0.0 -213,8.0,0.0,0.0,0.0,0.0,1.0144855220739435,-7.695403174131625,1.0,0.0,0.0 -213,9.0,2.99830068190535,2.0,0.0,0.0,1.0059336065705686,-8.656839086219932,1.0,0.0,0.0 -213,10.0,0.0,0.0,-3.2221828806476503e-09,19.15572290237826,1.052347450304416,-7.695403174491319,0.0,1.0,0.0 -213,11.0,5.789822006437917,7.5,0.0,0.0,1.0139250687864134,-8.079410950348407,1.0,0.0,0.0 -213,12.0,0.0,0.0,-2.673260808524445e-09,7.244887401672312,1.0238318153924983,-8.079410950554973,0.0,1.0,0.0 -213,13.0,3.205080039278133,1.6,0.0,0.0,1.0030929158656663,-8.537109773038441,1.0,0.0,0.0 -213,14.0,4.238976826142046,2.5,0.0,0.0,0.9996409577934202,-8.578832581959546,1.0,0.0,0.0 -213,15.0,1.8093193770118488,1.8,0.0,0.0,1.0086824268528856,-8.185524173168913,1.0,0.0,0.0 -213,16.0,4.652535540887612,5.8,0.0,0.0,0.9995200122751866,-8.773783700324087,1.0,0.0,0.0 -213,17.0,1.6542348589822622,0.9,0.0,0.0,0.9928949253514866,-8.925620669675817,1.0,0.0,0.0 -213,18.0,4.911009737603591,3.4,0.0,0.0,0.9911389222547112,-9.041120743878867,1.0,0.0,0.0 -213,19.0,1.1372864655503054,0.7,0.0,0.0,0.9942272065114004,-8.974771928896045,1.0,0.0,0.0 -213,20.0,9.046596885059246,11.2,0.0,0.0,0.9956473203533076,-8.816711160315025,1.0,0.0,0.0 -213,21.0,0.0,0.0,0.0,0.0,0.9960633484396552,-8.81569580482848,1.0,0.0,0.0 -213,22.0,1.6542348589822622,1.6,0.0,0.0,0.9911773726571698,-8.793103625333886,1.0,0.0,0.0 -213,23.0,4.497451022858025,6.7,0.0,0.0,0.9864914949404018,-8.947896533285125,1.0,0.0,0.0 -213,24.0,0.0,0.0,0.0,0.0,0.9805331766462992,-8.816295358638984,1.0,0.0,0.0 -213,25.0,1.8093193770118488,2.3,0.0,0.0,0.9667305070099445,-8.878203185287889,1.0,0.0,0.0 -213,26.0,0.0,0.0,0.0,0.0,0.9837998789723404,-8.666900045771529,1.0,0.0,0.0 -213,27.0,0.0,0.0,0.0,0.0,0.9672166689711628,-6.730347246988243,1.0,0.0,0.0 -213,28.0,1.2406761442366967,0.9,0.0,0.0,0.970412938994875,-9.25971047743835,1.0,0.0,0.0 -213,29.0,5.479652970378743,1.9,0.0,0.0,0.9631596752678356,-9.708231470843137,1.0,0.0,0.0 -214,0.0,0.0,0.0,152.4109220705371,0.0002366438505596,1.0,0.0,0.0,0.0,1.0 -214,1.0,11.217780137473463,12.7,2.681848170524476e-07,9.56930014371153,0.9811638656302094,-3.49143068472941,0.0,1.0,0.0 -214,2.0,1.2406761442366967,1.2,0.0,0.0,0.9754528437322684,-4.579767877828497,1.0,0.0,0.0 -214,3.0,3.928807790082872,1.6,0.0,0.0,0.96907410022659,-5.625724086333255,1.0,0.0,0.0 -214,4.0,48.69653866129034,19.0,-3.2319943321559445e-10,23.63565728387705,0.9621608490377456,-8.403343267759505,0.0,1.0,0.0 -214,5.0,0.0,0.0,0.0,0.0,0.9688711371802716,-6.681733812258217,1.0,0.0,0.0 -214,6.0,11.78642337024862,10.9,0.0,0.0,0.9597638858072396,-7.641902695521685,1.0,0.0,0.0 -214,7.0,15.508451802958708,30.0,-2.9760593221926467e-10,30.28147570737849,0.967890388689318,-7.085274573411027,0.0,1.0,0.0 -214,8.0,0.0,0.0,0.0,0.0,1.0166664342634737,-8.391202629490868,1.0,0.0,0.0 -214,9.0,2.99830068190535,2.0,0.0,0.0,1.00788285021476,-9.279709136734551,1.0,0.0,0.0 -214,10.0,0.0,0.0,-1.8664104876142123e-10,22.054858788540987,1.05994609399346,-8.39120262951151,0.0,1.0,0.0 -214,11.0,5.789822006437917,7.5,0.0,0.0,1.0143176003909535,-8.835340465818227,1.0,0.0,0.0 -214,12.0,0.0,0.0,-3.98189981316288e-10,9.222037059630225,1.0268903660053643,-8.835340465848898,0.0,1.0,0.0 -214,13.0,3.205080039278133,1.6,0.0,0.0,1.0036142402129506,-9.270924799819683,1.0,0.0,0.0 -214,14.0,4.238976826142046,2.5,0.0,0.0,1.0004328644074296,-9.293956454390395,1.0,0.0,0.0 -214,15.0,1.8093193770118488,1.8,0.0,0.0,1.0054951796130966,-9.121077276476214,1.0,0.0,0.0 -214,16.0,4.652535540887612,5.8,0.0,0.0,1.0028427873610282,-9.315320563482544,1.0,0.0,0.0 -214,17.0,1.6542348589822622,0.9,0.0,0.0,0.9941138836034784,-9.607724736735817,1.0,0.0,0.0 -214,18.0,4.911009737603591,3.4,0.0,0.0,0.9926063804521774,-9.703664387770544,1.0,0.0,0.0 -214,19.0,1.1372864655503054,0.7,0.0,0.0,0.9958204546512524,-9.6274169295058,1.0,0.0,0.0 -214,20.0,9.046596885059246,11.2,0.0,0.0,0.997508841786688,-9.434574410293685,1.0,0.0,0.0 -214,21.0,0.0,0.0,0.0,0.0,0.9978905267797804,-9.432105307821097,1.0,0.0,0.0 -214,22.0,1.6542348589822622,1.6,0.0,0.0,0.9922532609550028,-9.456469873809253,1.0,0.0,0.0 -214,23.0,4.497451022858025,6.7,0.0,0.0,0.9879264921429942,-9.541423607270676,1.0,0.0,0.0 -214,24.0,0.0,0.0,0.0,0.0,0.9817230780668952,-9.283616168097714,1.0,0.0,0.0 -214,25.0,1.8093193770118488,2.3,0.0,0.0,0.967937623160832,-9.345371847304287,1.0,0.0,0.0 -214,26.0,0.0,0.0,0.0,0.0,0.9847870757350814,-9.0560944453279,1.0,0.0,0.0 -214,27.0,0.0,0.0,0.0,0.0,0.966921833653006,-7.014777852786986,1.0,0.0,0.0 -214,28.0,1.2406761442366967,0.9,0.0,0.0,0.971414303771434,-9.647700998438978,1.0,0.0,0.0 -214,29.0,5.479652970378743,1.9,0.0,0.0,0.9641687413720424,-10.095291703881582,1.0,0.0,0.0 -215,0.0,0.0,0.0,152.4109220705371,0.0002366438505596,1.0,0.0,0.0,0.0,1.0 -215,1.0,11.217780137473463,12.7,2.681848170524476e-07,9.56930014371153,0.9811638656302094,-3.49143068472941,0.0,1.0,0.0 -215,2.0,1.2406761442366967,1.2,0.0,0.0,0.9754528437322684,-4.579767877828497,1.0,0.0,0.0 -215,3.0,3.928807790082872,1.6,0.0,0.0,0.96907410022659,-5.625724086333255,1.0,0.0,0.0 -215,4.0,48.69653866129034,19.0,-3.2319943321559445e-10,23.63565728387705,0.9621608490377456,-8.403343267759505,0.0,1.0,0.0 -215,5.0,0.0,0.0,0.0,0.0,0.9688711371802716,-6.681733812258217,1.0,0.0,0.0 -215,6.0,11.78642337024862,10.9,0.0,0.0,0.9597638858072396,-7.641902695521685,1.0,0.0,0.0 -215,7.0,15.508451802958708,30.0,-2.9760593221926467e-10,30.28147570737849,0.967890388689318,-7.085274573411027,0.0,1.0,0.0 -215,8.0,0.0,0.0,0.0,0.0,1.0166664342634737,-8.391202629490868,1.0,0.0,0.0 -215,9.0,2.99830068190535,2.0,0.0,0.0,1.00788285021476,-9.279709136734551,1.0,0.0,0.0 -215,10.0,0.0,0.0,-1.8664104876142123e-10,22.054858788540987,1.05994609399346,-8.39120262951151,0.0,1.0,0.0 -215,11.0,5.789822006437917,7.5,0.0,0.0,1.0143176003909535,-8.835340465818227,1.0,0.0,0.0 -215,12.0,0.0,0.0,-3.98189981316288e-10,9.222037059630225,1.0268903660053643,-8.835340465848898,0.0,1.0,0.0 -215,13.0,3.205080039278133,1.6,0.0,0.0,1.0036142402129506,-9.270924799819683,1.0,0.0,0.0 -215,14.0,4.238976826142046,2.5,0.0,0.0,1.0004328644074296,-9.293956454390395,1.0,0.0,0.0 -215,15.0,1.8093193770118488,1.8,0.0,0.0,1.0054951796130966,-9.121077276476214,1.0,0.0,0.0 -215,16.0,4.652535540887612,5.8,0.0,0.0,1.0028427873610282,-9.315320563482544,1.0,0.0,0.0 -215,17.0,1.6542348589822622,0.9,0.0,0.0,0.9941138836034784,-9.607724736735817,1.0,0.0,0.0 -215,18.0,4.911009737603591,3.4,0.0,0.0,0.9926063804521774,-9.703664387770544,1.0,0.0,0.0 -215,19.0,1.1372864655503054,0.7,0.0,0.0,0.9958204546512524,-9.6274169295058,1.0,0.0,0.0 -215,20.0,9.046596885059246,11.2,0.0,0.0,0.997508841786688,-9.434574410293685,1.0,0.0,0.0 -215,21.0,0.0,0.0,0.0,0.0,0.9978905267797804,-9.432105307821097,1.0,0.0,0.0 -215,22.0,1.6542348589822622,1.6,0.0,0.0,0.9922532609550028,-9.456469873809253,1.0,0.0,0.0 -215,23.0,4.497451022858025,6.7,0.0,0.0,0.9879264921429942,-9.541423607270676,1.0,0.0,0.0 -215,24.0,0.0,0.0,0.0,0.0,0.9817230780668952,-9.283616168097714,1.0,0.0,0.0 -215,25.0,1.8093193770118488,2.3,0.0,0.0,0.967937623160832,-9.345371847304287,1.0,0.0,0.0 -215,26.0,0.0,0.0,0.0,0.0,0.9847870757350814,-9.0560944453279,1.0,0.0,0.0 -215,27.0,0.0,0.0,0.0,0.0,0.966921833653006,-7.014777852786986,1.0,0.0,0.0 -215,28.0,1.2406761442366967,0.9,0.0,0.0,0.971414303771434,-9.647700998438978,1.0,0.0,0.0 -215,29.0,5.479652970378743,1.9,0.0,0.0,0.9641687413720424,-10.095291703881582,1.0,0.0,0.0 -216,0.0,0.0,0.0,152.26684020484905,0.0002278325199611,1.0,0.0,0.0,0.0,1.0 -216,1.0,11.207575736367469,12.7,2.583218214087227e-07,9.555667844641276,0.9811778526707458,-3.488034228187764,0.0,1.0,0.0 -216,2.0,1.239547546879351,1.2,0.0,0.0,0.9754715505552468,-4.575324213614094,1.0,0.0,0.0 -216,3.0,3.925233898451279,1.6,0.0,0.0,0.9690964613459686,-5.620225289444879,1.0,0.0,0.0 -216,4.0,48.65224121501453,19.0,-3.1265528861088457e-10,23.62766118450436,0.9621897104514044,-8.395159340844524,0.0,1.0,0.0 -216,5.0,0.0,0.0,0.0,0.0,0.9688959003836554,-6.675252461582988,1.0,0.0,0.0 -216,6.0,11.775701695353836,10.9,0.0,0.0,0.9597922825326995,-7.634394668473317,1.0,0.0,0.0 -216,7.0,15.49434433599189,30.0,-2.8835165030533123e-10,30.27745007468041,0.9679154949182038,-7.078392746896638,0.0,1.0,0.0 -216,8.0,0.0,0.0,0.0,0.0,1.016682266470634,-8.383118807374677,1.0,0.0,0.0 -216,9.0,2.9955732382917653,2.0,0.0,0.0,1.0079008342055449,-9.270799450041354,1.0,0.0,0.0 -216,10.0,0.0,0.0,-1.8090970841739835e-10,22.04734179151057,1.059947132718017,-8.383118807394682,0.0,1.0,0.0 -216,11.0,5.784555218770305,7.5,0.0,0.0,1.0143272408066728,-8.826806922814676,1.0,0.0,0.0 -216,12.0,0.0,0.0,-3.8652274511466445e-10,9.212161920729375,1.0268865894451529,-8.826806922844442,0.0,1.0,0.0 -216,13.0,3.202164496104991,1.6,0.0,0.0,1.0036290906278875,-9.261862757729606,1.0,0.0,0.0 -216,14.0,4.235120785171116,2.5,0.0,0.0,1.000449813771379,-9.284829114809332,1.0,0.0,0.0 -216,15.0,1.8076735058657207,1.8,0.0,0.0,1.0055102563517764,-9.112205316440368,1.0,0.0,0.0 -216,16.0,4.648303300797567,5.8,0.0,0.0,1.0028607980273787,-9.306274878964269,1.0,0.0,0.0 -216,17.0,1.6527300625058017,0.9,0.0,0.0,0.9941348881267772,-9.598247331445252,1.0,0.0,0.0 -216,18.0,4.906542373064099,3.4,0.0,0.0,0.9926287594578848,-9.694094266965235,1.0,0.0,0.0 -216,19.0,1.1362519179727388,0.7,0.0,0.0,0.995841937151006,-9.617979814620854,1.0,0.0,0.0 -216,20.0,9.038367529328603,11.2,0.0,0.0,0.99752981687328,-9.42535033015513,1.0,0.0,0.0 -216,21.0,0.0,0.0,0.0,0.0,0.9979114526832152,-9.422895074502687,1.0,0.0,0.0 -216,22.0,1.6527300625058017,1.6,0.0,0.0,0.9922745174250984,-9.447097422025236,1.0,0.0,0.0 -216,23.0,4.493359857437648,6.7,0.0,0.0,0.987951302971451,-9.53196054739815,1.0,0.0,0.0 -216,24.0,0.0,0.0,0.0,0.0,0.9817500453116688,-9.274377288181096,1.0,0.0,0.0 -216,25.0,1.8076735058657207,2.3,0.0,0.0,0.9679693752329694,-9.335752159903612,1.0,0.0,0.0 -216,26.0,0.0,0.0,0.0,0.0,0.9848133342915176,-9.047200371828584,1.0,0.0,0.0 -216,27.0,0.0,0.0,0.0,0.0,0.9669479669503328,-7.00795403574622,1.0,0.0,0.0 -216,28.0,1.239547546879351,0.9,0.0,0.0,0.9714478339581136,-9.638061776260573,1.0,0.0,0.0 -216,29.0,5.474668332050467,1.9,0.0,0.0,0.9642069617451416,-10.085141894420502,1.0,0.0,0.0 -217,0.0,0.0,0.0,152.26684020484905,0.0002278325199611,1.0,0.0,0.0,0.0,1.0 -217,1.0,11.207575736367469,12.7,2.583218214087227e-07,9.555667844641276,0.9811778526707458,-3.488034228187764,0.0,1.0,0.0 -217,2.0,1.239547546879351,1.2,0.0,0.0,0.9754715505552468,-4.575324213614094,1.0,0.0,0.0 -217,3.0,3.925233898451279,1.6,0.0,0.0,0.9690964613459686,-5.620225289444879,1.0,0.0,0.0 -217,4.0,48.65224121501453,19.0,-3.1265528861088457e-10,23.62766118450436,0.9621897104514044,-8.395159340844524,0.0,1.0,0.0 -217,5.0,0.0,0.0,0.0,0.0,0.9688959003836554,-6.675252461582988,1.0,0.0,0.0 -217,6.0,11.775701695353836,10.9,0.0,0.0,0.9597922825326995,-7.634394668473317,1.0,0.0,0.0 -217,7.0,15.49434433599189,30.0,-2.8835165030533123e-10,30.27745007468041,0.9679154949182038,-7.078392746896638,0.0,1.0,0.0 -217,8.0,0.0,0.0,0.0,0.0,1.016682266470634,-8.383118807374677,1.0,0.0,0.0 -217,9.0,2.9955732382917653,2.0,0.0,0.0,1.0079008342055449,-9.270799450041354,1.0,0.0,0.0 -217,10.0,0.0,0.0,-1.8090970841739835e-10,22.04734179151057,1.059947132718017,-8.383118807394682,0.0,1.0,0.0 -217,11.0,5.784555218770305,7.5,0.0,0.0,1.0143272408066728,-8.826806922814676,1.0,0.0,0.0 -217,12.0,0.0,0.0,-3.8652274511466445e-10,9.212161920729375,1.0268865894451529,-8.826806922844442,0.0,1.0,0.0 -217,13.0,3.202164496104991,1.6,0.0,0.0,1.0036290906278875,-9.261862757729606,1.0,0.0,0.0 -217,14.0,4.235120785171116,2.5,0.0,0.0,1.000449813771379,-9.284829114809332,1.0,0.0,0.0 -217,15.0,1.8076735058657207,1.8,0.0,0.0,1.0055102563517764,-9.112205316440368,1.0,0.0,0.0 -217,16.0,4.648303300797567,5.8,0.0,0.0,1.0028607980273787,-9.306274878964269,1.0,0.0,0.0 -217,17.0,1.6527300625058017,0.9,0.0,0.0,0.9941348881267772,-9.598247331445252,1.0,0.0,0.0 -217,18.0,4.906542373064099,3.4,0.0,0.0,0.9926287594578848,-9.694094266965235,1.0,0.0,0.0 -217,19.0,1.1362519179727388,0.7,0.0,0.0,0.995841937151006,-9.617979814620854,1.0,0.0,0.0 -217,20.0,9.038367529328603,11.2,0.0,0.0,0.99752981687328,-9.42535033015513,1.0,0.0,0.0 -217,21.0,0.0,0.0,0.0,0.0,0.9979114526832152,-9.422895074502687,1.0,0.0,0.0 -217,22.0,1.6527300625058017,1.6,0.0,0.0,0.9922745174250984,-9.447097422025236,1.0,0.0,0.0 -217,23.0,4.493359857437648,6.7,0.0,0.0,0.987951302971451,-9.53196054739815,1.0,0.0,0.0 -217,24.0,0.0,0.0,0.0,0.0,0.9817500453116688,-9.274377288181096,1.0,0.0,0.0 -217,25.0,1.8076735058657207,2.3,0.0,0.0,0.9679693752329694,-9.335752159903612,1.0,0.0,0.0 -217,26.0,0.0,0.0,0.0,0.0,0.9848133342915176,-9.047200371828584,1.0,0.0,0.0 -217,27.0,0.0,0.0,0.0,0.0,0.9669479669503328,-7.00795403574622,1.0,0.0,0.0 -217,28.0,1.239547546879351,0.9,0.0,0.0,0.9714478339581136,-9.638061776260573,1.0,0.0,0.0 -217,29.0,5.474668332050467,1.9,0.0,0.0,0.9642069617451416,-10.085141894420502,1.0,0.0,0.0 -218,0.0,0.0,0.0,139.2103833620894,-9.515389365333248e-07,1.0,0.0,0.0,0.0,1.0 -218,1.0,11.207575736367469,12.7,15.07330787098252,10.722864832166316,0.9734878304707464,-4.611820741591748,0.0,1.0,0.0 -218,2.0,1.239547546879351,1.2,0.0,0.0,1.000829361574914,-0.1390529743559202,1.0,0.0,0.0 -218,3.0,3.925233898451279,1.6,0.0,0.0,0.9497380108569664,-9.210063925068146,1.0,0.0,0.0 -218,4.0,48.65224121501453,19.0,-6.410804560846387e-10,25.56759727461875,0.952292543197867,-10.571802696881177,0.0,1.0,0.0 -218,5.0,0.0,0.0,0.0,0.0,0.95260292197901,-9.726342940317483,1.0,0.0,0.0 -218,6.0,11.775701695353836,10.9,0.0,0.0,0.9458419856987188,-10.332162767476175,1.0,0.0,0.0 -218,7.0,15.49434433599189,30.0,-6.775587225917726e-10,31.670344115504804,0.9521054024761466,-10.153103481012815,0.0,1.0,0.0 -218,8.0,0.0,0.0,0.0,0.0,1.001824938694494,-11.597562117655968,1.0,0.0,0.0 -218,9.0,2.9955732382917653,2.0,0.0,0.0,0.991788120508554,-12.569305914125176,1.0,0.0,0.0 -218,10.0,0.0,0.0,-1.239320809125119e-09,23.99519997324417,1.049386094868023,-11.59756211779646,0.0,1.0,0.0 -218,11.0,5.784555218770305,7.5,0.0,0.0,0.9973355596171056,-12.310230674579804,1.0,0.0,0.0 -218,12.0,0.0,0.0,-1.0158739110846619e-09,10.94239935673109,1.0124662945189546,-12.310230674660504,0.0,1.0,0.0 -218,13.0,3.202164496104991,1.6,0.0,0.0,0.9865767403362627,-12.73175652252719,1.0,0.0,0.0 -218,14.0,4.235120785171116,2.5,0.0,0.0,0.983657709130544,-12.73017494878783,1.0,0.0,0.0 -218,15.0,1.8076735058657207,1.8,0.0,0.0,0.9889277836866084,-12.521621357114462,1.0,0.0,0.0 -218,16.0,4.648303300797567,5.8,0.0,0.0,0.9864878482188432,-12.641612973429828,1.0,0.0,0.0 -218,17.0,1.6527300625058017,0.9,0.0,0.0,0.9774394187091964,-13.002863792916948,1.0,0.0,0.0 -218,18.0,4.906542373064099,3.4,0.0,0.0,0.9760269963046064,-13.071278498586423,1.0,0.0,0.0 -218,19.0,1.1362519179727388,0.7,0.0,0.0,0.9793590376712494,-12.976407012912423,1.0,0.0,0.0 -218,20.0,9.038367529328603,11.2,0.0,0.0,0.9800144208473776,-12.738613762293094,1.0,0.0,0.0 -218,21.0,0.0,0.0,0.0,0.0,0.9833331365187128,-12.721746905107995,1.0,0.0,0.0 -218,22.0,1.6527300625058017,1.6,0.0,0.0,0.975893411988762,-12.83738464220731,1.0,0.0,0.0 -218,23.0,4.493359857437648,6.7,0.0,0.0,0.9722174926624524,-12.84310506469143,1.0,0.0,0.0 -218,24.0,0.0,0.0,0.0,0.0,0.9656318912343764,-12.512880970544666,1.0,0.0,0.0 -218,25.0,1.8076735058657207,2.3,0.0,0.0,0.9516143587113616,-12.576352734909886,1.0,0.0,0.0 -218,26.0,0.0,0.0,0.0,0.0,0.9685571157512732,-12.2384600085748,1.0,0.0,0.0 -218,27.0,0.0,0.0,0.0,0.0,0.9507447098729624,-10.079374351704612,1.0,0.0,0.0 -218,28.0,1.239547546879351,0.9,0.0,0.0,0.9549544636902406,-12.84959973423556,1.0,0.0,0.0 -218,29.0,5.474668332050467,1.9,0.0,0.0,0.9475846833059872,-13.312362385615076,1.0,0.0,0.0 -219,0.0,0.0,0.0,136.39814675936165,2.4857167613134837e-05,1.0,0.0,0.0,0.0,1.0 -219,1.0,11.207575736367469,12.7,23.492171043494334,17.352608173172932,0.9606136800942964,-18.83110850445444,0.0,1.0,0.0 -219,2.0,1.239547546879351,1.2,0.0,0.0,0.961531329004846,-13.49648347763434,1.0,0.0,0.0 -219,3.0,3.925233898451279,1.6,0.0,0.0,0.9565323274810558,-16.717886831762986,1.0,0.0,0.0 -219,4.0,48.65224121501453,19.0,2.404338112621538e-12,23.90129594248932,0.9456997618833188,-22.32506549971497,0.0,1.0,0.0 -219,5.0,0.0,0.0,0.0,0.0,0.9591487132047156,-18.90891607599276,1.0,0.0,0.0 -219,6.0,11.775701695353836,10.9,0.0,0.0,0.947296282603856,-20.564882596000206,1.0,0.0,0.0 -219,7.0,15.49434433599189,30.0,6.963332471930646e-12,39.2924736315771,0.9616117420746672,-19.37369302237882,0.0,1.0,0.0 -219,8.0,0.0,0.0,0.0,0.0,1.0129256869236871,-20.46997670905069,1.0,0.0,0.0 -219,9.0,2.9955732382917653,2.0,0.0,0.0,1.0053517946209212,-21.27524152356588,1.0,0.0,0.0 -219,10.0,0.0,0.0,-4.190942672403982e-12,23.98979284850791,1.0599999975286258,-20.46997670905116,0.0,1.0,0.0 -219,11.0,5.784555218770305,7.5,0.0,0.0,1.0273722031689327,-20.37694694937315,1.0,0.0,0.0 -219,12.0,0.0,0.0,-1.7583525957199554e-11,23.99815647766206,1.059094966592887,-20.37694694937445,0.0,1.0,0.0 -219,13.0,3.202164496104991,1.6,0.0,0.0,1.0161527746700227,-20.809038991986665,1.0,0.0,0.0 -219,14.0,4.235120785171116,2.5,0.0,0.0,1.0123228714200498,-20.82454831244058,1.0,0.0,0.0 -219,15.0,1.8076735058657207,1.8,0.0,0.0,1.011528641741856,-20.82102017073233,1.0,0.0,0.0 -219,16.0,4.648303300797567,5.8,0.0,0.0,1.0030909040978182,-21.22827165893528,1.0,0.0,0.0 -219,17.0,1.6527300625058017,0.9,0.0,0.0,1.0086115251450951,-20.973001799012916,1.0,0.0,0.0 -219,18.0,4.906542373064099,3.4,0.0,0.0,0.98685689019814,-21.908821121456413,1.0,0.0,0.0 -219,19.0,1.1362519179727388,0.7,0.0,0.0,0.9908925871948177,-21.78106311361923,1.0,0.0,0.0 -219,20.0,9.038367529328603,11.2,0.0,0.0,0.9954984732024648,-21.409201697802565,1.0,0.0,0.0 -219,21.0,0.0,0.0,0.0,0.0,0.996054743051068,-21.40010939009624,1.0,0.0,0.0 -219,22.0,1.6527300625058017,1.6,0.0,0.0,0.9993176202019944,-21.138252202280903,1.0,0.0,0.0 -219,23.0,4.493359857437648,6.7,0.0,0.0,0.9885531566170332,-21.435249665243333,1.0,0.0,0.0 -219,24.0,0.0,0.0,0.0,0.0,0.9781734005918582,-21.271730995615197,1.0,0.0,0.0 -219,25.0,1.8076735058657207,2.3,0.0,0.0,0.964340874122012,-21.3335620591558,1.0,0.0,0.0 -219,26.0,0.0,0.0,0.0,0.0,0.9787002736233634,-21.10743624397011,1.0,0.0,0.0 -219,27.0,0.0,0.0,0.0,0.0,0.9584285184664668,-19.24004912518689,1.0,0.0,0.0 -219,28.0,1.239547546879351,0.9,0.0,0.0,0.9720467813408288,-21.29833215693127,1.0,0.0,0.0 -219,29.0,5.474668332050467,1.9,0.0,0.0,0.9477079231920104,-22.770105095452216,1.0,0.0,0.0 -220,0.0,0.0,0.0,152.26684020484905,0.0002278325199611,1.0,0.0,0.0,0.0,1.0 -220,1.0,11.207575736367469,12.7,2.583218214087227e-07,9.555667844641276,0.9811778526707458,-3.488034228187764,0.0,1.0,0.0 -220,2.0,1.239547546879351,1.2,0.0,0.0,0.9754715505552468,-4.575324213614094,1.0,0.0,0.0 -220,3.0,3.925233898451279,1.6,0.0,0.0,0.9690964613459686,-5.620225289444879,1.0,0.0,0.0 -220,4.0,48.65224121501453,19.0,-3.1265528861088457e-10,23.62766118450436,0.9621897104514044,-8.395159340844524,0.0,1.0,0.0 -220,5.0,0.0,0.0,0.0,0.0,0.9688959003836554,-6.675252461582988,1.0,0.0,0.0 -220,6.0,11.775701695353836,10.9,0.0,0.0,0.9597922825326995,-7.634394668473317,1.0,0.0,0.0 -220,7.0,15.49434433599189,30.0,-2.8835165030533123e-10,30.27745007468041,0.9679154949182038,-7.078392746896638,0.0,1.0,0.0 -220,8.0,0.0,0.0,0.0,0.0,1.016682266470634,-8.383118807374677,1.0,0.0,0.0 -220,9.0,2.9955732382917653,2.0,0.0,0.0,1.0079008342055449,-9.270799450041354,1.0,0.0,0.0 -220,10.0,0.0,0.0,-1.8090970841739835e-10,22.04734179151057,1.059947132718017,-8.383118807394682,0.0,1.0,0.0 -220,11.0,5.784555218770305,7.5,0.0,0.0,1.0143272408066728,-8.826806922814676,1.0,0.0,0.0 -220,12.0,0.0,0.0,-3.8652274511466445e-10,9.212161920729375,1.0268865894451529,-8.826806922844442,0.0,1.0,0.0 -220,13.0,3.202164496104991,1.6,0.0,0.0,1.0036290906278875,-9.261862757729606,1.0,0.0,0.0 -220,14.0,4.235120785171116,2.5,0.0,0.0,1.000449813771379,-9.284829114809332,1.0,0.0,0.0 -220,15.0,1.8076735058657207,1.8,0.0,0.0,1.0055102563517764,-9.112205316440368,1.0,0.0,0.0 -220,16.0,4.648303300797567,5.8,0.0,0.0,1.0028607980273787,-9.306274878964269,1.0,0.0,0.0 -220,17.0,1.6527300625058017,0.9,0.0,0.0,0.9941348881267772,-9.598247331445252,1.0,0.0,0.0 -220,18.0,4.906542373064099,3.4,0.0,0.0,0.9926287594578848,-9.694094266965235,1.0,0.0,0.0 -220,19.0,1.1362519179727388,0.7,0.0,0.0,0.995841937151006,-9.617979814620854,1.0,0.0,0.0 -220,20.0,9.038367529328603,11.2,0.0,0.0,0.99752981687328,-9.42535033015513,1.0,0.0,0.0 -220,21.0,0.0,0.0,0.0,0.0,0.9979114526832152,-9.422895074502687,1.0,0.0,0.0 -220,22.0,1.6527300625058017,1.6,0.0,0.0,0.9922745174250984,-9.447097422025236,1.0,0.0,0.0 -220,23.0,4.493359857437648,6.7,0.0,0.0,0.987951302971451,-9.53196054739815,1.0,0.0,0.0 -220,24.0,0.0,0.0,0.0,0.0,0.9817500453116688,-9.274377288181096,1.0,0.0,0.0 -220,25.0,1.8076735058657207,2.3,0.0,0.0,0.9679693752329694,-9.335752159903612,1.0,0.0,0.0 -220,26.0,0.0,0.0,0.0,0.0,0.9848133342915176,-9.047200371828584,1.0,0.0,0.0 -220,27.0,0.0,0.0,0.0,0.0,0.9669479669503328,-7.00795403574622,1.0,0.0,0.0 -220,28.0,1.239547546879351,0.9,0.0,0.0,0.9714478339581136,-9.638061776260573,1.0,0.0,0.0 -220,29.0,5.474668332050467,1.9,0.0,0.0,0.9642069617451416,-10.085141894420502,1.0,0.0,0.0 -221,0.0,0.0,0.0,152.3983682982689,0.0010771814162424,1.0,0.0,0.0,0.0,1.0 -221,1.0,11.207575736367469,12.7,1.188735234972191e-06,9.124488317671675,0.9810052664674456,-3.4957545916996797,0.0,1.0,0.0 -221,2.0,1.239547546879351,1.2,0.0,0.0,0.97588682481583,-4.564315033675367,1.0,0.0,0.0 -221,3.0,3.925233898451279,1.6,0.0,0.0,0.9696068513067188,-5.606396460034092,1.0,0.0,0.0 -221,4.0,48.65224121501453,19.0,-2.0165218343668844e-10,23.71928391518714,0.9619712080217616,-8.426860185503687,0.0,1.0,0.0 -221,5.0,0.0,0.0,0.0,0.0,0.9684342487642056,-6.724537491947375,1.0,0.0,0.0 -221,6.0,11.775701695353836,10.9,0.0,0.0,0.959424273990412,-7.6765885770857185,1.0,0.0,0.0 -221,7.0,15.49434433599189,30.0,-1.6113147910702662e-10,30.611135947990817,0.9675655444213483,-7.13107961254595,0.0,1.0,0.0 -221,8.0,0.0,0.0,0.0,0.0,1.0143804737902298,-8.683287446100065,1.0,0.0,0.0 -221,9.0,2.9955732382917653,2.0,0.0,0.0,1.0034980661144757,-9.705312464969252,1.0,0.0,0.0 -221,10.0,0.0,0.0,-8.460678786690321e-12,23.24840517699852,1.0599999864201026,-8.683287446101001,0.0,1.0,0.0 -221,11.0,5.784555218770305,7.5,0.0,0.0,1.019223611620228,-8.33065705506105,1.0,0.0,0.0 -221,12.0,0.0,0.0,-2.1024397972746375e-10,8.484438232740796,1.0307474946157094,-8.330657055077099,0.0,1.0,0.0 -221,13.0,3.202164496104991,1.6,0.0,0.0,0.9920915052919724,-9.118717657059886,1.0,0.0,0.0 -221,14.0,4.235120785171116,2.5,0.0,0.0,1.0024495137469926,-8.954022439000205,1.0,0.0,0.0 -221,15.0,1.8076735058657207,1.8,0.0,0.0,1.0140100725149823,-8.435482708186518,1.0,0.0,0.0 -221,16.0,4.648303300797567,5.8,0.0,0.0,0.997070085162154,-9.822624165684944,1.0,0.0,0.0 -221,17.0,1.6527300625058017,0.9,0.0,0.0,0.977852964834924,-10.63753068708063,1.0,0.0,0.0 -221,18.0,4.906542373064099,3.4,0.0,0.0,0.9801234130041014,-10.544257598038726,1.0,0.0,0.0 -221,19.0,1.1362519179727388,0.7,0.0,0.0,0.9853909795432202,-10.366385725674624,1.0,0.0,0.0 -221,20.0,9.038367529328603,11.2,0.0,0.0,0.9934903419244856,-9.809838992718944,1.0,0.0,0.0 -221,21.0,0.0,0.0,0.0,0.0,0.9940082794509686,-9.791029425264686,1.0,0.0,0.0 -221,22.0,1.6527300625058017,1.6,0.0,0.0,0.9926454987254156,-9.324641489663282,1.0,0.0,0.0 -221,23.0,4.493359857437648,6.7,0.0,0.0,0.9862142410266176,-9.69314258243198,1.0,0.0,0.0 -221,24.0,0.0,0.0,0.0,0.0,0.9805885960577758,-9.401639111335848,1.0,0.0,0.0 -221,25.0,1.8076735058657207,2.3,0.0,0.0,0.966791129881201,-9.463161565545056,1.0,0.0,0.0 -221,26.0,0.0,0.0,0.0,0.0,0.9840074824392174,-9.152583710936344,1.0,0.0,0.0 -221,27.0,0.0,0.0,0.0,0.0,0.9664441375087168,-7.06333482332562,1.0,0.0,0.0 -221,28.0,1.239547546879351,0.9,0.0,0.0,0.9706304262474008,-9.744426296355805,1.0,0.0,0.0 -221,29.0,5.474668332050467,1.9,0.0,0.0,0.9633832732068994,-10.192264688407246,1.0,0.0,0.0 -222,0.0,0.0,0.0,152.26684020484905,0.0002278325199611,1.0,0.0,0.0,0.0,1.0 -222,1.0,11.207575736367469,12.7,2.583218214087227e-07,9.555667844641276,0.9811778526707458,-3.488034228187764,0.0,1.0,0.0 -222,2.0,1.239547546879351,1.2,0.0,0.0,0.9754715505552468,-4.575324213614094,1.0,0.0,0.0 -222,3.0,3.925233898451279,1.6,0.0,0.0,0.9690964613459686,-5.620225289444879,1.0,0.0,0.0 -222,4.0,48.65224121501453,19.0,-3.1265528861088457e-10,23.62766118450436,0.9621897104514044,-8.395159340844524,0.0,1.0,0.0 -222,5.0,0.0,0.0,0.0,0.0,0.9688959003836554,-6.675252461582988,1.0,0.0,0.0 -222,6.0,11.775701695353836,10.9,0.0,0.0,0.9597922825326995,-7.634394668473317,1.0,0.0,0.0 -222,7.0,15.49434433599189,30.0,-2.8835165030533123e-10,30.27745007468041,0.9679154949182038,-7.078392746896638,0.0,1.0,0.0 -222,8.0,0.0,0.0,0.0,0.0,1.016682266470634,-8.383118807374677,1.0,0.0,0.0 -222,9.0,2.9955732382917653,2.0,0.0,0.0,1.0079008342055449,-9.270799450041354,1.0,0.0,0.0 -222,10.0,0.0,0.0,-1.8090970841739835e-10,22.04734179151057,1.059947132718017,-8.383118807394682,0.0,1.0,0.0 -222,11.0,5.784555218770305,7.5,0.0,0.0,1.0143272408066728,-8.826806922814676,1.0,0.0,0.0 -222,12.0,0.0,0.0,-3.8652274511466445e-10,9.212161920729375,1.0268865894451529,-8.826806922844442,0.0,1.0,0.0 -222,13.0,3.202164496104991,1.6,0.0,0.0,1.0036290906278875,-9.261862757729606,1.0,0.0,0.0 -222,14.0,4.235120785171116,2.5,0.0,0.0,1.000449813771379,-9.284829114809332,1.0,0.0,0.0 -222,15.0,1.8076735058657207,1.8,0.0,0.0,1.0055102563517764,-9.112205316440368,1.0,0.0,0.0 -222,16.0,4.648303300797567,5.8,0.0,0.0,1.0028607980273787,-9.306274878964269,1.0,0.0,0.0 -222,17.0,1.6527300625058017,0.9,0.0,0.0,0.9941348881267772,-9.598247331445252,1.0,0.0,0.0 -222,18.0,4.906542373064099,3.4,0.0,0.0,0.9926287594578848,-9.694094266965235,1.0,0.0,0.0 -222,19.0,1.1362519179727388,0.7,0.0,0.0,0.995841937151006,-9.617979814620854,1.0,0.0,0.0 -222,20.0,9.038367529328603,11.2,0.0,0.0,0.99752981687328,-9.42535033015513,1.0,0.0,0.0 -222,21.0,0.0,0.0,0.0,0.0,0.9979114526832152,-9.422895074502687,1.0,0.0,0.0 -222,22.0,1.6527300625058017,1.6,0.0,0.0,0.9922745174250984,-9.447097422025236,1.0,0.0,0.0 -222,23.0,4.493359857437648,6.7,0.0,0.0,0.987951302971451,-9.53196054739815,1.0,0.0,0.0 -222,24.0,0.0,0.0,0.0,0.0,0.9817500453116688,-9.274377288181096,1.0,0.0,0.0 -222,25.0,1.8076735058657207,2.3,0.0,0.0,0.9679693752329694,-9.335752159903612,1.0,0.0,0.0 -222,26.0,0.0,0.0,0.0,0.0,0.9848133342915176,-9.047200371828584,1.0,0.0,0.0 -222,27.0,0.0,0.0,0.0,0.0,0.9669479669503328,-7.00795403574622,1.0,0.0,0.0 -222,28.0,1.239547546879351,0.9,0.0,0.0,0.9714478339581136,-9.638061776260573,1.0,0.0,0.0 -222,29.0,5.474668332050467,1.9,0.0,0.0,0.9642069617451416,-10.085141894420502,1.0,0.0,0.0 -223,0.0,0.0,0.0,152.28625037486944,0.2339068791632037,1.0,0.0,0.0,0.0,1.0 -223,1.0,11.207575736367469,12.7,0.0,0.0,0.9802197174520358,-3.469613430249576,0.0,1.0,0.0 -223,2.0,1.239547546879351,1.2,0.0,0.0,0.9778380432952426,-4.613145211631905,1.0,0.0,0.0 -223,3.0,3.925233898451279,1.6,0.0,0.0,0.9720173581962456,-5.666248351502534,1.0,0.0,0.0 -223,4.0,48.65224121501453,19.0,-2.3574780818752e-10,27.660231559014733,0.9677702774995534,-8.455036715822457,0.0,1.0,0.0 -223,5.0,0.0,0.0,0.0,0.0,0.9726561452020402,-6.723162245333726,1.0,0.0,0.0 -223,6.0,11.775701695353836,10.9,0.0,0.0,0.964339349495466,-7.6841223479967296,1.0,0.0,0.0 -223,7.0,15.49434433599189,30.0,-3.1225906824569086e-10,33.8637661474857,0.9730315019174408,-7.145456729783732,0.0,1.0,0.0 -223,8.0,0.0,0.0,0.0,0.0,1.0198916837145535,-8.403407574847439,1.0,0.0,0.0 -223,9.0,2.9955732382917653,2.0,0.0,0.0,1.0124335741581412,-9.27619912666003,1.0,0.0,0.0 -223,10.0,0.0,0.0,-2.9742719887808787e-10,20.43969526301911,1.059999773553621,-8.40340757488023,0.0,1.0,0.0 -223,11.0,5.784555218770305,7.5,0.0,0.0,1.0216091920281078,-8.874523132752637,1.0,0.0,0.0 -223,12.0,0.0,0.0,-3.74716427706068e-10,12.048763293226646,1.037862091852599,-8.874523132780984,0.0,1.0,0.0 -223,13.0,3.202164496104991,1.6,0.0,0.0,1.0106338995641762,-9.302913546393246,1.0,0.0,0.0 -223,14.0,4.235120785171116,2.5,0.0,0.0,1.0071390308447257,-9.317073109035588,1.0,0.0,0.0 -223,15.0,1.8076735058657207,1.8,0.0,0.0,1.0116649392965646,-9.134736631247964,1.0,0.0,0.0 -223,16.0,4.648303300797567,5.8,0.0,0.0,1.0079152002654062,-9.318074771688112,1.0,0.0,0.0 -223,17.0,1.6527300625058017,0.9,0.0,0.0,1.0001189009918752,-9.616974760327038,1.0,0.0,0.0 -223,18.0,4.906542373064099,3.4,0.0,0.0,0.9981813050002372,-9.705928256039384,1.0,0.0,0.0 -223,19.0,1.1362519179727388,0.7,0.0,0.0,1.0011448139623311,-9.627529638012314,1.0,0.0,0.0 -223,20.0,9.038367529328603,11.2,0.0,0.0,1.00222838245387,-9.43105279009091,1.0,0.0,0.0 -223,21.0,0.0,0.0,0.0,0.0,1.002645342068122,-9.429218890466844,1.0,0.0,0.0 -223,22.0,1.6527300625058017,1.6,0.0,0.0,0.9983685995745876,-9.471731056795152,1.0,0.0,0.0 -223,23.0,4.493359857437648,6.7,0.0,0.0,0.9932104491813848,-9.548373650620563,1.0,0.0,0.0 -223,24.0,0.0,0.0,0.0,0.0,0.986683035914482,-9.292877078232316,1.0,0.0,0.0 -223,25.0,1.8076735058657207,2.3,0.0,0.0,0.9729732435984444,-9.353631036280774,1.0,0.0,0.0 -223,26.0,0.0,0.0,0.0,0.0,0.9895079934133744,-9.068049733672105,1.0,0.0,0.0 -223,27.0,0.0,0.0,0.0,0.0,0.9710887289429732,-7.057524796654354,1.0,0.0,0.0 -223,28.0,1.239547546879351,0.9,0.0,0.0,0.9762094087047656,-9.65324351309316,1.0,0.0,0.0 -223,29.0,5.474668332050467,1.9,0.0,0.0,0.9690049052615812,-10.095944657333671,1.0,0.0,0.0 -224,0.0,0.0,0.0,136.39818964599863,6.409449824218427e-05,1.0,0.0,0.0,0.0,1.0 -224,1.0,11.207575736367469,12.7,23.52530087367265,17.551626878630998,0.9608837323518982,-18.829496644571933,0.0,1.0,0.0 -224,2.0,1.239547546879351,1.2,0.0,0.0,0.9615312595213176,-13.496487726196351,1.0,0.0,0.0 -224,3.0,3.925233898451279,1.6,0.0,0.0,0.9565322457925908,-16.717892317066305,1.0,0.0,0.0 -224,4.0,48.65224121501453,19.0,-8.352666597284226e-13,23.960228663834823,0.9459763567529408,-22.32096185840986,0.0,1.0,0.0 -224,5.0,0.0,0.0,0.0,0.0,0.9592989182113866,-18.903006366488626,1.0,0.0,0.0 -224,6.0,11.775701695353836,10.9,0.0,0.0,0.9475000911014864,-20.559596096374374,1.0,0.0,0.0 -224,7.0,15.49434433599189,30.0,-4.0321130381351886e-13,39.27311064679513,0.9617400879004748,-19.368079653750712,0.0,1.0,0.0 -224,8.0,0.0,0.0,0.0,0.0,1.0133708136986712,-20.428707285181105,1.0,0.0,0.0 -224,9.0,2.9955732382917653,2.0,0.0,0.0,1.0061737919865843,-21.215215332225828,1.0,0.0,0.0 -224,10.0,0.0,0.0,9.711590379191453e-12,23.76257508722676,1.0599992939834906,-20.428707285180025,0.0,1.0,0.0 -224,11.0,5.784555218770305,7.5,0.0,0.0,1.0264237267313965,-20.42863726560486,1.0,0.0,0.0 -224,12.0,0.0,0.0,2.367020315781837e-11,23.990555843606785,1.0581643336604405,-20.428637265603108,0.0,1.0,0.0 -224,13.0,3.202164496104991,1.6,0.0,0.0,0.9939322911066534,-21.30342174667064,1.0,0.0,0.0 -224,14.0,4.235120785171116,2.5,0.0,0.0,1.0042711011489387,-21.13932972721616,1.0,0.0,0.0 -224,15.0,1.8076735058657207,1.8,0.0,0.0,1.0114240921614943,-20.829168866014548,1.0,0.0,0.0 -224,16.0,4.648303300797567,5.8,0.0,0.0,1.0036022382318257,-21.18845112206741,1.0,0.0,0.0 -224,17.0,1.6527300625058017,0.9,0.0,0.0,0.9960074246910718,-21.48222135257514,1.0,0.0,0.0 -224,18.0,4.906542373064099,3.4,0.0,0.0,0.9933446655749504,-21.596339467199456,1.0,0.0,0.0 -224,19.0,1.1362519179727388,0.7,0.0,0.0,0.9959442541605276,-21.52990430302904,1.0,0.0,0.0 -224,20.0,9.038367529328603,11.2,0.0,0.0,0.9958604366119944,-21.37210471041956,1.0,0.0,0.0 -224,21.0,0.0,0.0,0.0,0.0,0.9962664107308976,-21.370254498164982,1.0,0.0,0.0 -224,22.0,1.6527300625058017,1.6,0.0,0.0,0.9938745534576476,-21.344623153823203,1.0,0.0,0.0 -224,23.0,4.493359857437648,6.7,0.0,0.0,0.9865894569896438,-21.489911036359945,1.0,0.0,0.0 -224,24.0,0.0,0.0,0.0,0.0,0.9771518266813208,-21.312263469621467,1.0,0.0,0.0 -224,25.0,1.8076735058657207,2.3,0.0,0.0,0.9633044160278034,-21.37422577125233,1.0,0.0,0.0 -224,26.0,0.0,0.0,0.0,0.0,0.9782663501428208,-21.13788701756349,1.0,0.0,0.0 -224,27.0,0.0,0.0,0.0,0.0,0.9584919348143436,-19.23709227906385,1.0,0.0,0.0 -224,28.0,1.239547546879351,0.9,0.0,0.0,0.964806368777838,-21.736791464763023,1.0,0.0,0.0 -224,29.0,5.474668332050467,1.9,0.0,0.0,0.957514142626872,-22.19008899639786,1.0,0.0,0.0 -225,0.0,0.0,0.0,152.30216494193252,0.0020799643911217,1.0,0.0,0.0,0.0,1.0 -225,1.0,11.207575736367469,12.7,1.969971125428496e-06,8.827353196128144,0.9810168562611272,-3.483002441359643,0.0,1.0,0.0 -225,2.0,1.239547546879351,1.2,0.0,0.0,0.9759288712926998,-4.591051458892308,1.0,0.0,0.0 -225,3.0,3.925233898451279,1.6,0.0,0.0,0.9696619514278558,-5.639574863694612,1.0,0.0,0.0 -225,4.0,48.65224121501453,19.0,2.3841899895367627e-09,23.34799110027076,0.9618437264801492,-8.382482173613257,0.0,1.0,0.0 -225,5.0,0.0,0.0,0.0,0.0,0.96895450253427,-6.662799618896439,1.0,0.0,0.0 -225,6.0,11.775701695353836,10.9,0.0,0.0,0.9596845421731176,-7.622093053490284,1.0,0.0,0.0 -225,7.0,15.49434433599189,30.0,2.1474683390264406e-09,27.762210256265355,0.9671260913197643,-7.040421116670738,0.0,1.0,0.0 -225,8.0,0.0,0.0,0.0,0.0,1.0177056184717876,-8.449027410465325,1.0,0.0,0.0 -225,9.0,2.9955732382917653,2.0,0.0,0.0,1.0099807779258874,-9.375571716228716,1.0,0.0,0.0 -225,10.0,0.0,0.0,1.0271465887953707e-09,21.55297428655637,1.0599983145094998,-8.449027410351851,0.0,1.0,0.0 -225,11.0,5.784555218770305,7.5,0.0,0.0,1.020366283765065,-8.967145454447,1.0,0.0,0.0 -225,12.0,0.0,0.0,2.575954248521425e-09,13.238375091177588,1.038217765168526,-8.967145454251952,0.0,1.0,0.0 -225,13.0,3.202164496104991,1.6,0.0,0.0,1.009066459913837,-9.41389786579364,1.0,0.0,0.0 -225,14.0,4.235120785171116,2.5,0.0,0.0,1.00514871645475,-9.43814276046807,1.0,0.0,0.0 -225,15.0,1.8076735058657207,1.8,0.0,0.0,1.009884512800097,-9.228018354371624,1.0,0.0,0.0 -225,16.0,4.648303300797567,5.8,0.0,0.0,1.0056645392108503,-9.416733790023718,1.0,0.0,0.0 -225,17.0,1.6527300625058017,0.9,0.0,0.0,0.997947499786978,-9.731710825988277,1.0,0.0,0.0 -225,18.0,4.906542373064099,3.4,0.0,0.0,0.9959072392950769,-9.81651477386507,1.0,0.0,0.0 -225,19.0,1.1362519179727388,0.7,0.0,0.0,0.9988258822332056,-9.735345761617268,1.0,0.0,0.0 -225,20.0,9.038367529328603,11.2,0.0,0.0,0.9993983138470371,-9.563964920852078,1.0,0.0,0.0 -225,21.0,0.0,0.0,0.0,0.0,0.9997021038201874,-9.572505831479498,1.0,0.0,0.0 -225,22.0,1.6527300625058017,1.6,0.0,0.0,0.995180695467487,-9.657843217873085,1.0,0.0,0.0 -225,23.0,4.493359857437648,6.7,0.0,0.0,0.98846226033526,-9.822648105971592,1.0,0.0,0.0 -225,24.0,0.0,0.0,0.0,0.0,0.9770606617986332,-9.919143309120306,1.0,0.0,0.0 -225,25.0,1.8076735058657207,2.3,0.0,0.0,0.9632119213306802,-9.98111734496788,1.0,0.0,0.0 -225,26.0,0.0,0.0,0.0,0.0,0.9870534057231612,-8.50157724960786,1.0,0.0,0.0 -225,27.0,0.0,0.0,0.0,0.0,0.9673474273008638,-6.936700141305481,1.0,0.0,0.0 -225,28.0,1.239547546879351,0.9,0.0,0.0,0.9737199204322514,-9.089724055891898,1.0,0.0,0.0 -225,29.0,5.474668332050467,1.9,0.0,0.0,0.9664964486981814,-9.534706568799397,1.0,0.0,0.0 -226,0.0,0.0,0.0,153.01225815382173,0.0004854184694202,1.0,0.0,0.0,0.0,1.0 -226,1.0,11.207575736367469,12.7,4.479358483811401e-07,10.82668458292769,0.9825568277862714,-3.201470475675273,0.0,1.0,0.0 -226,2.0,1.239547546879351,1.2,0.0,0.0,0.972533486065984,-5.481835840384134,1.0,0.0,0.0 -226,3.0,3.925233898451279,1.6,0.0,0.0,0.9656236948109036,-6.747693688967215,1.0,0.0,0.0 -226,4.0,48.65224121501453,19.0,1.521264563942906e-10,25.556608657031063,0.9627548465709908,-9.097664079730004,0.0,1.0,0.0 -226,5.0,0.0,0.0,0.0,0.0,0.9639747538590876,-8.335688607393156,1.0,0.0,0.0 -226,6.0,11.775701695353836,10.9,0.0,0.0,0.956926859401138,-8.902519001101291,1.0,0.0,0.0 -226,7.0,15.49434433599189,30.0,2.9399747043044315e-10,33.66517617577915,0.9637976038671278,-8.767232290114562,0.0,1.0,0.0 -226,8.0,0.0,0.0,0.0,0.0,1.0139181386788392,-9.982466184585997,1.0,0.0,0.0 -226,9.0,2.9955732382917653,2.0,0.0,0.0,1.0048200334263924,-10.83666528132682,1.0,0.0,0.0 -226,10.0,0.0,0.0,5.534710189700378e-10,23.483468255245565,1.0599989521294413,-9.982466184524624,0.0,1.0,0.0 -226,11.0,5.784555218770305,7.5,0.0,0.0,1.0160583518013546,-10.142360597889711,1.0,0.0,0.0 -226,12.0,0.0,0.0,2.7257247410868563e-10,12.123611982691775,1.0324971924108264,-10.142360597868873,0.0,1.0,0.0 -226,13.0,3.202164496104991,1.6,0.0,0.0,0.9861430539243774,-10.99717855772238,1.0,0.0,0.0 -226,14.0,4.235120785171116,2.5,0.0,0.0,0.996563592156022,-10.830511293054055,1.0,0.0,0.0 -226,15.0,1.8076735058657207,1.8,0.0,0.0,1.0049867452317691,-10.524575434927865,1.0,0.0,0.0 -226,16.0,4.648303300797567,5.8,0.0,0.0,1.0006232409773,-10.827694844170711,1.0,0.0,0.0 -226,17.0,1.6527300625058017,0.9,0.0,0.0,0.9904983281495924,-11.15347163325836,1.0,0.0,0.0 -226,18.0,4.906542373064099,3.4,0.0,0.0,0.98914863752799,-11.25430954247228,1.0,0.0,0.0 -226,19.0,1.1362519179727388,0.7,0.0,0.0,0.9924582846515642,-11.17995216880606,1.0,0.0,0.0 -226,20.0,9.038367529328603,11.2,0.0,0.0,0.9942627885985807,-10.9929939759569,1.0,0.0,0.0 -226,21.0,0.0,0.0,0.0,0.0,0.994597167426751,-10.990716884409911,1.0,0.0,0.0 -226,22.0,1.6527300625058017,1.6,0.0,0.0,0.9883287351443188,-11.00233339868503,1.0,0.0,0.0 -226,23.0,4.493359857437648,6.7,0.0,0.0,0.98395423374962,-11.099060668577891,1.0,0.0,0.0 -226,24.0,0.0,0.0,0.0,0.0,0.9766356667357832,-10.857626804055284,1.0,0.0,0.0 -226,25.0,1.8076735058657207,2.3,0.0,0.0,0.9627807233626424,-10.919655576678622,1.0,0.0,0.0 -226,26.0,0.0,0.0,0.0,0.0,0.9790486793145624,-10.640962003372138,1.0,0.0,0.0 -226,27.0,0.0,0.0,0.0,0.0,0.9606380782856512,-8.625243830935014,1.0,0.0,0.0 -226,28.0,1.239547546879351,0.9,0.0,0.0,0.96560006006217,-11.238896696649473,1.0,0.0,0.0 -226,29.0,5.474668332050467,1.9,0.0,0.0,0.9583140098489096,-11.691444396857545,1.0,0.0,0.0 -227,0.0,0.0,0.0,152.26684020484905,0.0002278325199611,1.0,0.0,0.0,0.0,1.0 -227,1.0,11.207575736367469,12.7,2.583218214087227e-07,9.555667844641276,0.9811778526707458,-3.488034228187764,0.0,1.0,0.0 -227,2.0,1.239547546879351,1.2,0.0,0.0,0.9754715505552468,-4.575324213614094,1.0,0.0,0.0 -227,3.0,3.925233898451279,1.6,0.0,0.0,0.9690964613459686,-5.620225289444879,1.0,0.0,0.0 -227,4.0,48.65224121501453,19.0,-3.1265528861088457e-10,23.62766118450436,0.9621897104514044,-8.395159340844524,0.0,1.0,0.0 -227,5.0,0.0,0.0,0.0,0.0,0.9688959003836554,-6.675252461582988,1.0,0.0,0.0 -227,6.0,11.775701695353836,10.9,0.0,0.0,0.9597922825326995,-7.634394668473317,1.0,0.0,0.0 -227,7.0,15.49434433599189,30.0,-2.8835165030533123e-10,30.27745007468041,0.9679154949182038,-7.078392746896638,0.0,1.0,0.0 -227,8.0,0.0,0.0,0.0,0.0,1.016682266470634,-8.383118807374677,1.0,0.0,0.0 -227,9.0,2.9955732382917653,2.0,0.0,0.0,1.0079008342055449,-9.270799450041354,1.0,0.0,0.0 -227,10.0,0.0,0.0,-1.8090970841739835e-10,22.04734179151057,1.059947132718017,-8.383118807394682,0.0,1.0,0.0 -227,11.0,5.784555218770305,7.5,0.0,0.0,1.0143272408066728,-8.826806922814676,1.0,0.0,0.0 -227,12.0,0.0,0.0,-3.8652274511466445e-10,9.212161920729375,1.0268865894451529,-8.826806922844442,0.0,1.0,0.0 -227,13.0,3.202164496104991,1.6,0.0,0.0,1.0036290906278875,-9.261862757729606,1.0,0.0,0.0 -227,14.0,4.235120785171116,2.5,0.0,0.0,1.000449813771379,-9.284829114809332,1.0,0.0,0.0 -227,15.0,1.8076735058657207,1.8,0.0,0.0,1.0055102563517764,-9.112205316440368,1.0,0.0,0.0 -227,16.0,4.648303300797567,5.8,0.0,0.0,1.0028607980273787,-9.306274878964269,1.0,0.0,0.0 -227,17.0,1.6527300625058017,0.9,0.0,0.0,0.9941348881267772,-9.598247331445252,1.0,0.0,0.0 -227,18.0,4.906542373064099,3.4,0.0,0.0,0.9926287594578848,-9.694094266965235,1.0,0.0,0.0 -227,19.0,1.1362519179727388,0.7,0.0,0.0,0.995841937151006,-9.617979814620854,1.0,0.0,0.0 -227,20.0,9.038367529328603,11.2,0.0,0.0,0.99752981687328,-9.42535033015513,1.0,0.0,0.0 -227,21.0,0.0,0.0,0.0,0.0,0.9979114526832152,-9.422895074502687,1.0,0.0,0.0 -227,22.0,1.6527300625058017,1.6,0.0,0.0,0.9922745174250984,-9.447097422025236,1.0,0.0,0.0 -227,23.0,4.493359857437648,6.7,0.0,0.0,0.987951302971451,-9.53196054739815,1.0,0.0,0.0 -227,24.0,0.0,0.0,0.0,0.0,0.9817500453116688,-9.274377288181096,1.0,0.0,0.0 -227,25.0,1.8076735058657207,2.3,0.0,0.0,0.9679693752329694,-9.335752159903612,1.0,0.0,0.0 -227,26.0,0.0,0.0,0.0,0.0,0.9848133342915176,-9.047200371828584,1.0,0.0,0.0 -227,27.0,0.0,0.0,0.0,0.0,0.9669479669503328,-7.00795403574622,1.0,0.0,0.0 -227,28.0,1.239547546879351,0.9,0.0,0.0,0.9714478339581136,-9.638061776260573,1.0,0.0,0.0 -227,29.0,5.474668332050467,1.9,0.0,0.0,0.9642069617451416,-10.085141894420502,1.0,0.0,0.0 -228,0.0,0.0,0.0,152.27115771002013,0.0002176389691577,1.0,0.0,0.0,0.0,1.0 -228,1.0,11.207575736367469,12.7,2.398067729093761e-07,9.653180827776794,0.9811909042189196,-3.4884659102648405,0.0,1.0,0.0 -228,2.0,1.239547546879351,1.2,0.0,0.0,0.9754318705509436,-4.574688231050175,1.0,0.0,0.0 -228,3.0,3.925233898451279,1.6,0.0,0.0,0.9690474862879318,-5.619450914060686,1.0,0.0,0.0 -228,4.0,48.65224121501453,19.0,-2.9349269668238864e-10,23.63470585716,0.9621827545334424,-8.39561372748272,0.0,1.0,0.0 -228,5.0,0.0,0.0,0.0,0.0,0.9688546230974774,-6.675208006590459,1.0,0.0,0.0 -228,6.0,11.775701695353836,10.9,0.0,0.0,0.9597648459057836,-7.634550542978778,1.0,0.0,0.0 -228,7.0,15.49434433599189,30.0,-2.745918848755127e-10,30.296951495822483,0.9678903173694716,-7.078422631549411,0.0,1.0,0.0 -228,8.0,0.0,0.0,0.0,0.0,1.0164950589821624,-8.388336142148477,1.0,0.0,0.0 -228,9.0,2.9955732382917653,2.0,0.0,0.0,1.007518914492999,-9.27905066386136,1.0,0.0,0.0 -228,10.0,0.0,0.0,-1.7373840293319222e-10,22.16404022602691,1.059987282367311,-8.388336142167697,0.0,1.0,0.0 -228,11.0,5.784555218770305,7.5,0.0,0.0,1.014070789886848,-8.824062817775756,1.0,0.0,0.0 -228,12.0,0.0,0.0,-3.67461553876528e-10,8.993839635689989,1.0263390317643113,-8.824062817804077,0.0,1.0,0.0 -228,13.0,3.202164496104991,1.6,0.0,0.0,1.00346030651491,-9.258697016607837,1.0,0.0,0.0 -228,14.0,4.235120785171116,2.5,0.0,0.0,1.0003715636254855,-9.283103634493967,1.0,0.0,0.0 -228,15.0,1.8076735058657207,1.8,0.0,0.0,1.0051903995045834,-9.113970023566893,1.0,0.0,0.0 -228,16.0,4.648303300797567,5.8,0.0,0.0,1.0024990220911698,-9.312642201130906,1.0,0.0,0.0 -228,17.0,1.6527300625058017,0.9,0.0,0.0,0.9939469677971312,-9.600102311872874,1.0,0.0,0.0 -228,18.0,4.906542373064099,3.4,0.0,0.0,0.9923764836486532,-9.698068433621993,1.0,0.0,0.0 -228,19.0,1.1362519179727388,0.7,0.0,0.0,0.995556661419126,-9.622997967436223,1.0,0.0,0.0 -228,20.0,9.038367529328603,11.2,0.0,0.0,0.9959335406119516,-9.44305104322179,1.0,0.0,0.0 -228,21.0,0.0,0.0,0.0,0.0,0.9994769868508177,-9.416926986708445,1.0,0.0,0.0 -228,22.0,1.6527300625058017,1.6,0.0,0.0,0.992644732764939,-9.44286817617216,1.0,0.0,0.0 -228,23.0,4.493359857437648,6.7,0.0,0.0,0.9889164965869416,-9.52413366035309,1.0,0.0,0.0 -228,24.0,0.0,0.0,0.0,0.0,0.982354132023173,-9.264823238843162,1.0,0.0,0.0 -228,25.0,1.8076735058657207,2.3,0.0,0.0,0.9685821814524258,-9.326121561770826,1.0,0.0,0.0 -228,26.0,0.0,0.0,0.0,0.0,0.9851882243861348,-9.037037177725823,1.0,0.0,0.0 -228,27.0,0.0,0.0,0.0,0.0,0.9669601006378384,-7.0075890589447685,1.0,0.0,0.0 -228,28.0,1.239547546879351,0.9,0.0,0.0,0.9718280929668772,-9.627442962762332,1.0,0.0,0.0 -228,29.0,5.474668332050467,1.9,0.0,0.0,0.9645901388406236,-10.074170988772536,1.0,0.0,0.0 -229,0.0,0.0,0.0,136.39814231209127,7.257183751718799e-05,1.0,0.0,0.0,0.0,1.0 -229,1.0,11.207575736367469,12.7,23.912391979882933,18.620463599443354,0.9623933165517996,-18.818993591828185,0.0,1.0,0.0 -229,2.0,1.239547546879351,1.2,0.0,0.0,0.9615312475635714,-13.496482870548558,1.0,0.0,0.0 -229,3.0,3.925233898451279,1.6,0.0,0.0,0.956532226665618,-16.71788633975363,1.0,0.0,0.0 -229,4.0,48.65224121501453,19.0,-1.0732635195831949e-10,24.2217470753188,0.9474700952659044,-22.30341325456502,0.0,1.0,0.0 -229,5.0,0.0,0.0,0.0,0.0,0.9601619105043518,-18.88503097039986,1.0,0.0,0.0 -229,6.0,11.775701695353836,10.9,0.0,0.0,0.9486315538769252,-20.541194694152598,1.0,0.0,0.0 -229,7.0,15.49434433599189,30.0,-4.0453570048768724e-10,39.990812117144586,0.9627465094350772,-19.35584923141804,0.0,1.0,0.0 -229,8.0,0.0,0.0,0.0,0.0,1.0159572200171525,-20.27399841852084,1.0,0.0,0.0 -229,9.0,2.9955732382917653,2.0,0.0,0.0,1.010981814260783,-20.987265814220414,1.0,0.0,0.0 -229,10.0,0.0,0.0,2.7647716280537144e-10,22.444044194324025,1.0599984286296464,-20.27399841849024,0.0,1.0,0.0 -229,11.0,5.784555218770305,7.5,0.0,0.0,1.020601124284144,-20.6484288778884,1.0,0.0,0.0 -229,12.0,0.0,0.0,1.1567143357689159e-09,23.999740113062355,1.052524039945092,-20.64842887780202,0.0,1.0,0.0 -229,13.0,3.202164496104991,1.6,0.0,0.0,0.9807445950630508,-21.67283874174945,1.0,0.0,0.0 -229,14.0,4.235120785171116,2.5,0.0,0.0,0.9912225389268902,-21.50435105568388,1.0,0.0,0.0 -229,15.0,1.8076735058657207,1.8,0.0,0.0,1.010500701050012,-20.881028078221664,1.0,0.0,0.0 -229,16.0,4.648303300797567,5.8,0.0,0.0,1.0065340184110334,-21.040702123721204,1.0,0.0,0.0 -229,17.0,1.6527300625058017,0.9,0.0,0.0,0.9711889907272738,-22.1858661451318,1.0,0.0,0.0 -229,18.0,4.906542373064099,3.4,0.0,0.0,0.9616480087484308,-22.504106072262783,1.0,0.0,0.0 -229,19.0,1.1362519179727388,0.7,0.0,0.0,0.9607502933315576,-22.53726241534632,1.0,0.0,0.0 -229,20.0,9.038367529328603,11.2,0.0,0.0,0.9776900546447098,-21.53458741902633,1.0,0.0,0.0 -229,21.0,0.0,0.0,0.0,0.0,0.9814663157622606,-21.48479806510662,1.0,0.0,0.0 -229,22.0,1.6527300625058017,1.6,0.0,0.0,0.980949696703192,-21.63645385008716,1.0,0.0,0.0 -229,23.0,4.493359857437648,6.7,0.0,0.0,0.9738990638818312,-21.678762586575388,1.0,0.0,0.0 -229,24.0,0.0,0.0,0.0,0.0,0.9693601304290173,-21.490868974200097,1.0,0.0,0.0 -229,25.0,1.8076735058657207,2.3,0.0,0.0,0.95539811752098,-21.553846212114752,1.0,0.0,0.0 -229,26.0,0.0,0.0,0.0,0.0,0.9735708624472252,-21.30337369964871,1.0,0.0,0.0 -229,27.0,0.0,0.0,0.0,0.0,0.9586895173823012,-19.2297179523903,1.0,0.0,0.0 -229,28.0,1.239547546879351,0.9,0.0,0.0,0.9668817695955908,-21.496300510118058,1.0,0.0,0.0 -229,29.0,5.474668332050467,1.9,0.0,0.0,0.9423994009312732,-22.984222905811556,1.0,0.0,0.0 -230,0.0,0.0,0.0,152.26684020484905,0.0002278325199611,1.0,0.0,0.0,0.0,1.0 -230,1.0,11.207575736367469,12.7,2.583218214087227e-07,9.555667844641276,0.9811778526707458,-3.488034228187764,0.0,1.0,0.0 -230,2.0,1.239547546879351,1.2,0.0,0.0,0.9754715505552468,-4.575324213614094,1.0,0.0,0.0 -230,3.0,3.925233898451279,1.6,0.0,0.0,0.9690964613459686,-5.620225289444879,1.0,0.0,0.0 -230,4.0,48.65224121501453,19.0,-3.1265528861088457e-10,23.62766118450436,0.9621897104514044,-8.395159340844524,0.0,1.0,0.0 -230,5.0,0.0,0.0,0.0,0.0,0.9688959003836554,-6.675252461582988,1.0,0.0,0.0 -230,6.0,11.775701695353836,10.9,0.0,0.0,0.9597922825326995,-7.634394668473317,1.0,0.0,0.0 -230,7.0,15.49434433599189,30.0,-2.8835165030533123e-10,30.27745007468041,0.9679154949182038,-7.078392746896638,0.0,1.0,0.0 -230,8.0,0.0,0.0,0.0,0.0,1.016682266470634,-8.383118807374677,1.0,0.0,0.0 -230,9.0,2.9955732382917653,2.0,0.0,0.0,1.0079008342055449,-9.270799450041354,1.0,0.0,0.0 -230,10.0,0.0,0.0,-1.8090970841739835e-10,22.04734179151057,1.059947132718017,-8.383118807394682,0.0,1.0,0.0 -230,11.0,5.784555218770305,7.5,0.0,0.0,1.0143272408066728,-8.826806922814676,1.0,0.0,0.0 -230,12.0,0.0,0.0,-3.8652274511466445e-10,9.212161920729375,1.0268865894451529,-8.826806922844442,0.0,1.0,0.0 -230,13.0,3.202164496104991,1.6,0.0,0.0,1.0036290906278875,-9.261862757729606,1.0,0.0,0.0 -230,14.0,4.235120785171116,2.5,0.0,0.0,1.000449813771379,-9.284829114809332,1.0,0.0,0.0 -230,15.0,1.8076735058657207,1.8,0.0,0.0,1.0055102563517764,-9.112205316440368,1.0,0.0,0.0 -230,16.0,4.648303300797567,5.8,0.0,0.0,1.0028607980273787,-9.306274878964269,1.0,0.0,0.0 -230,17.0,1.6527300625058017,0.9,0.0,0.0,0.9941348881267772,-9.598247331445252,1.0,0.0,0.0 -230,18.0,4.906542373064099,3.4,0.0,0.0,0.9926287594578848,-9.694094266965235,1.0,0.0,0.0 -230,19.0,1.1362519179727388,0.7,0.0,0.0,0.995841937151006,-9.617979814620854,1.0,0.0,0.0 -230,20.0,9.038367529328603,11.2,0.0,0.0,0.99752981687328,-9.42535033015513,1.0,0.0,0.0 -230,21.0,0.0,0.0,0.0,0.0,0.9979114526832152,-9.422895074502687,1.0,0.0,0.0 -230,22.0,1.6527300625058017,1.6,0.0,0.0,0.9922745174250984,-9.447097422025236,1.0,0.0,0.0 -230,23.0,4.493359857437648,6.7,0.0,0.0,0.987951302971451,-9.53196054739815,1.0,0.0,0.0 -230,24.0,0.0,0.0,0.0,0.0,0.9817500453116688,-9.274377288181096,1.0,0.0,0.0 -230,25.0,1.8076735058657207,2.3,0.0,0.0,0.9679693752329694,-9.335752159903612,1.0,0.0,0.0 -230,26.0,0.0,0.0,0.0,0.0,0.9848133342915176,-9.047200371828584,1.0,0.0,0.0 -230,27.0,0.0,0.0,0.0,0.0,0.9669479669503328,-7.00795403574622,1.0,0.0,0.0 -230,28.0,1.239547546879351,0.9,0.0,0.0,0.9714478339581136,-9.638061776260573,1.0,0.0,0.0 -230,29.0,5.474668332050467,1.9,0.0,0.0,0.9642069617451416,-10.085141894420502,1.0,0.0,0.0 -231,0.0,0.0,0.0,152.26684020484905,0.0002278325199611,1.0,0.0,0.0,0.0,1.0 -231,1.0,11.207575736367469,12.7,2.583218214087227e-07,9.555667844641276,0.9811778526707458,-3.488034228187764,0.0,1.0,0.0 -231,2.0,1.239547546879351,1.2,0.0,0.0,0.9754715505552468,-4.575324213614094,1.0,0.0,0.0 -231,3.0,3.925233898451279,1.6,0.0,0.0,0.9690964613459686,-5.620225289444879,1.0,0.0,0.0 -231,4.0,48.65224121501453,19.0,-3.1265528861088457e-10,23.62766118450436,0.9621897104514044,-8.395159340844524,0.0,1.0,0.0 -231,5.0,0.0,0.0,0.0,0.0,0.9688959003836554,-6.675252461582988,1.0,0.0,0.0 -231,6.0,11.775701695353836,10.9,0.0,0.0,0.9597922825326995,-7.634394668473317,1.0,0.0,0.0 -231,7.0,15.49434433599189,30.0,-2.8835165030533123e-10,30.27745007468041,0.9679154949182038,-7.078392746896638,0.0,1.0,0.0 -231,8.0,0.0,0.0,0.0,0.0,1.016682266470634,-8.383118807374677,1.0,0.0,0.0 -231,9.0,2.9955732382917653,2.0,0.0,0.0,1.0079008342055449,-9.270799450041354,1.0,0.0,0.0 -231,10.0,0.0,0.0,-1.8090970841739835e-10,22.04734179151057,1.059947132718017,-8.383118807394682,0.0,1.0,0.0 -231,11.0,5.784555218770305,7.5,0.0,0.0,1.0143272408066728,-8.826806922814676,1.0,0.0,0.0 -231,12.0,0.0,0.0,-3.8652274511466445e-10,9.212161920729375,1.0268865894451529,-8.826806922844442,0.0,1.0,0.0 -231,13.0,3.202164496104991,1.6,0.0,0.0,1.0036290906278875,-9.261862757729606,1.0,0.0,0.0 -231,14.0,4.235120785171116,2.5,0.0,0.0,1.000449813771379,-9.284829114809332,1.0,0.0,0.0 -231,15.0,1.8076735058657207,1.8,0.0,0.0,1.0055102563517764,-9.112205316440368,1.0,0.0,0.0 -231,16.0,4.648303300797567,5.8,0.0,0.0,1.0028607980273787,-9.306274878964269,1.0,0.0,0.0 -231,17.0,1.6527300625058017,0.9,0.0,0.0,0.9941348881267772,-9.598247331445252,1.0,0.0,0.0 -231,18.0,4.906542373064099,3.4,0.0,0.0,0.9926287594578848,-9.694094266965235,1.0,0.0,0.0 -231,19.0,1.1362519179727388,0.7,0.0,0.0,0.995841937151006,-9.617979814620854,1.0,0.0,0.0 -231,20.0,9.038367529328603,11.2,0.0,0.0,0.99752981687328,-9.42535033015513,1.0,0.0,0.0 -231,21.0,0.0,0.0,0.0,0.0,0.9979114526832152,-9.422895074502687,1.0,0.0,0.0 -231,22.0,1.6527300625058017,1.6,0.0,0.0,0.9922745174250984,-9.447097422025236,1.0,0.0,0.0 -231,23.0,4.493359857437648,6.7,0.0,0.0,0.987951302971451,-9.53196054739815,1.0,0.0,0.0 -231,24.0,0.0,0.0,0.0,0.0,0.9817500453116688,-9.274377288181096,1.0,0.0,0.0 -231,25.0,1.8076735058657207,2.3,0.0,0.0,0.9679693752329694,-9.335752159903612,1.0,0.0,0.0 -231,26.0,0.0,0.0,0.0,0.0,0.9848133342915176,-9.047200371828584,1.0,0.0,0.0 -231,27.0,0.0,0.0,0.0,0.0,0.9669479669503328,-7.00795403574622,1.0,0.0,0.0 -231,28.0,1.239547546879351,0.9,0.0,0.0,0.9714478339581136,-9.638061776260573,1.0,0.0,0.0 -231,29.0,5.474668332050467,1.9,0.0,0.0,0.9642069617451416,-10.085141894420502,1.0,0.0,0.0 -232,0.0,0.0,0.0,152.4250224314551,0.0049670821162806,1.0,0.0,0.0,0.0,1.0 -232,1.0,11.207575736367469,12.7,2.3283629148996896e-06,18.36126172820388,0.9823021810555516,-3.518778555888756,0.0,1.0,0.0 -232,2.0,1.239547546879351,1.2,0.0,0.0,0.9721358578203124,-4.517267956574042,1.0,0.0,0.0 -232,3.0,3.925233898451279,1.6,0.0,0.0,0.9649789679698892,-5.549370897319229,1.0,0.0,0.0 -232,4.0,48.65224121501453,19.0,2.859101541874656e-09,27.23346009102804,0.9634202714957198,-8.451288473050406,0.0,1.0,0.0 -232,5.0,0.0,0.0,0.0,0.0,0.9628620645311096,-6.597584227129692,1.0,0.0,0.0 -232,6.0,11.775701695353836,10.9,0.0,0.0,0.9567159051756172,-7.609512975243772,1.0,0.0,0.0 -232,7.0,15.49434433599189,30.0,2.5895720566202073e-09,39.99813235865403,0.9653524298238582,-7.067967293344304,0.0,1.0,0.0 -232,8.0,0.0,0.0,0.0,0.0,0.978898818740171,-8.396129204536265,1.0,0.0,0.0 -232,9.0,2.9955732382917653,2.0,0.0,0.0,0.9763185287215732,-9.355161643643829,1.0,0.0,0.0 -232,10.0,0.0,0.0,0.0,0.0,0.978898818740171,-8.396129204536265,0.0,1.0,0.0 -232,11.0,5.784555218770305,7.5,0.0,0.0,1.0081688566928133,-8.676578604588695,1.0,0.0,0.0 -232,12.0,0.0,0.0,2.3888069727555753e-09,9.95313780535318,1.021805882246878,-8.67657860440269,0.0,1.0,0.0 -232,13.0,3.202164496104991,1.6,0.0,0.0,0.994640265662423,-9.173361112342947,1.0,0.0,0.0 -232,14.0,4.235120785171116,2.5,0.0,0.0,0.9884011223954,-9.188770470096904,1.0,0.0,0.0 -232,15.0,1.8076735058657207,1.8,0.0,0.0,0.96291892462218,-9.692404356639445,1.0,0.0,0.0 -232,16.0,4.648303300797567,5.8,0.0,0.0,0.9675008932439498,-9.536625058714783,1.0,0.0,0.0 -232,17.0,1.6527300625058017,0.9,0.0,0.0,0.9749983994674688,-9.574251440261596,1.0,0.0,0.0 -232,18.0,4.906542373064099,3.4,0.0,0.0,0.9693430098797642,-9.711082563037609,1.0,0.0,0.0 -232,19.0,1.1362519179727388,0.7,0.0,0.0,0.9704628687157604,-9.650022304560707,1.0,0.0,0.0 -232,20.0,9.038367529328603,11.2,0.0,0.0,0.9673401470595452,-9.503757574672024,1.0,0.0,0.0 -232,21.0,0.0,0.0,0.0,0.0,0.9682817791755376,-9.496741887842044,1.0,0.0,0.0 -232,22.0,1.6527300625058017,1.6,0.0,0.0,0.9756730044474644,-9.421290149719542,1.0,0.0,0.0 -232,23.0,4.493359857437648,6.7,0.0,0.0,0.9654076734024276,-9.600729095796655,1.0,0.0,0.0 -232,24.0,0.0,0.0,0.0,0.0,0.9652385176380288,-9.382801552108594,1.0,0.0,0.0 -232,25.0,1.8076735058657207,2.3,0.0,0.0,0.9512151009627534,-9.446325833828254,1.0,0.0,0.0 -232,26.0,0.0,0.0,0.0,0.0,0.9721836731088236,-9.171200079685423,1.0,0.0,0.0 -232,27.0,0.0,0.0,0.0,0.0,0.9608403150931004,-6.951279825819067,1.0,0.0,0.0 -232,28.0,1.239547546879351,0.9,0.0,0.0,0.958634673057711,-9.777726006621132,1.0,0.0,0.0 -232,29.0,5.474668332050467,1.9,0.0,0.0,0.951294058374876,-10.23691846012467,1.0,0.0,0.0 -233,0.0,0.0,0.0,98.88928391756228,1.047993780645129e-06,1.0,0.0,0.0,0.0,1.0 -233,1.0,11.207575736367469,12.7,58.76632757220591,-2.027104671753833,0.9916688648010114,-1.7451867605244895,0.0,1.0,0.0 -233,2.0,1.239547546879351,1.2,0.0,0.0,0.9705403736972084,-4.413271577842883,1.0,0.0,0.0 -233,3.0,3.925233898451279,1.6,0.0,0.0,0.9630011221126432,-5.420672967815362,1.0,0.0,0.0 -233,4.0,48.65224121501453,19.0,1.2517669664326088e-11,39.99999967135832,0.9657951251327938,-19.93927489893705,0.0,1.0,0.0 -233,5.0,0.0,0.0,0.0,0.0,0.9758683427744916,-12.609114937628457,1.0,0.0,0.0 -233,6.0,11.775701695353836,10.9,0.0,0.0,0.9650643076336736,-15.84576190194764,1.0,0.0,0.0 -233,7.0,15.49434433599189,30.0,-7.334480015297674e-10,39.9999994088721,0.9784876790608292,-13.050930106921395,0.0,1.0,0.0 -233,8.0,0.0,0.0,0.0,0.0,1.020977896228495,-13.243683828752886,1.0,0.0,0.0 -233,9.0,2.9955732382917653,2.0,0.0,0.0,1.0126371928358011,-13.574357913561633,1.0,0.0,0.0 -233,10.0,0.0,0.0,-1.356525042952392e-09,19.88626415337375,1.0599999994915683,-13.243683828902268,0.0,1.0,0.0 -233,11.0,5.784555218770305,7.5,0.0,0.0,1.0330450657959098,-11.00484264143484,1.0,0.0,0.0 -233,12.0,0.0,0.0,-3.812387799384453e-09,20.408735335411816,1.0599999992761806,-11.004842641714111,0.0,1.0,0.0 -233,13.0,3.202164496104991,1.6,0.0,0.0,1.0214125500773232,-11.71045856772808,1.0,0.0,0.0 -233,14.0,4.235120785171116,2.5,0.0,0.0,1.0152171764775118,-11.991214306278035,1.0,0.0,0.0 -233,15.0,1.8076735058657207,1.8,0.0,0.0,1.016625702153496,-12.1624668379653,1.0,0.0,0.0 -233,16.0,4.648303300797567,5.8,0.0,0.0,1.0100304249886858,-13.224109248960326,1.0,0.0,0.0 -233,17.0,1.6527300625058017,0.9,0.0,0.0,1.0052465892029916,-12.854341345589116,1.0,0.0,0.0 -233,18.0,4.906542373064099,3.4,0.0,0.0,1.0016207136289743,-13.282616449957883,1.0,0.0,0.0 -233,19.0,1.1362519179727388,0.7,0.0,0.0,1.0036812052828354,-13.384118503007688,1.0,0.0,0.0 -233,20.0,9.038367529328603,11.2,0.0,0.0,1.0027546479254767,-13.68476826516686,1.0,0.0,0.0 -233,21.0,0.0,0.0,0.0,0.0,1.0032773141251767,-13.668818787836186,1.0,0.0,0.0 -233,22.0,1.6527300625058017,1.6,0.0,0.0,1.0039059680743263,-12.731382478960889,1.0,0.0,0.0 -233,23.0,4.493359857437648,6.7,0.0,0.0,0.9956163856990294,-13.607268145838892,1.0,0.0,0.0 -233,24.0,0.0,0.0,0.0,0.0,0.9869137521663108,-14.024757636429776,1.0,0.0,0.0 -233,25.0,1.8076735058657207,2.3,0.0,0.0,0.9732072567487552,-14.08548279036844,1.0,0.0,0.0 -233,26.0,0.0,0.0,0.0,0.0,0.9886683287334334,-14.222877835800467,1.0,0.0,0.0 -233,27.0,0.0,0.0,0.0,0.0,0.9747050889800616,-12.85892301127532,1.0,0.0,0.0 -233,28.0,1.239547546879351,0.9,0.0,0.0,0.9400000013338048,-16.372488416299582,1.0,0.0,0.0 -233,29.0,5.474668332050467,1.9,0.0,0.0,0.9475107398310167,-16.14992239995078,1.0,0.0,0.0 -234,0.0,0.0,0.0,152.52420060088187,0.0010986939044776,1.0,0.0,0.0,0.0,1.0 -234,1.0,11.207575736367469,12.7,8.994613259976627e-07,10.34639503753438,0.9812344008344284,-3.5007804737365324,0.0,1.0,0.0 -234,2.0,1.239547546879351,1.2,0.0,0.0,0.9751830952140388,-4.565312865381942,1.0,0.0,0.0 -234,3.0,3.925233898451279,1.6,0.0,0.0,0.968739778198308,-5.607904866189811,1.0,0.0,0.0 -234,4.0,48.65224121501453,19.0,-7.437562126283392e-10,24.00393232260745,0.9622651035275576,-8.427619388671246,0.0,1.0,0.0 -234,5.0,0.0,0.0,0.0,0.0,0.968205904918366,-6.711093005622746,1.0,0.0,0.0 -234,6.0,11.775701695353836,10.9,0.0,0.0,0.9594111171842428,-7.668686184472299,1.0,0.0,0.0 -234,7.0,15.49434433599189,30.0,-5.399575752275732e-10,32.71305959882131,0.9680334091270428,-7.132628783175204,0.0,1.0,0.0 -234,8.0,0.0,0.0,0.0,0.0,1.013454666111058,-8.548653206610615,1.0,0.0,0.0 -234,9.0,2.9955732382917653,2.0,0.0,0.0,1.0016614976007805,-9.508992500707798,1.0,0.0,0.0 -234,10.0,0.0,0.0,4.074667220810515e-11,23.719524003938904,1.0599986950414553,-8.548653206606096,0.0,1.0,0.0 -234,11.0,5.784555218770305,7.5,0.0,0.0,1.013117742510549,-8.519810854818413,1.0,0.0,0.0 -234,12.0,0.0,0.0,-8.974164633263546e-10,4.874174778820652,1.0198090390465446,-8.519810854888082,0.0,1.0,0.0 -234,13.0,3.202164496104991,1.6,0.0,0.0,0.9914821398716852,-9.559610229438974,1.0,0.0,0.0 -234,14.0,4.235120785171116,2.5,0.0,0.0,0.9737262521812908,-9.93965392748892,1.0,0.0,0.0 -234,15.0,1.8076735058657207,1.8,0.0,0.0,1.0017283709259517,-9.028210673869278,1.0,0.0,0.0 -234,16.0,4.648303300797567,5.8,0.0,0.0,0.9974784956084716,-9.447840401810192,1.0,0.0,0.0 -234,17.0,1.6527300625058017,0.9,0.0,0.0,0.9744874859636894,-10.120562604229496,1.0,0.0,0.0 -234,18.0,4.906542373064099,3.4,0.0,0.0,0.9772129802939392,-10.133501824743602,1.0,0.0,0.0 -234,19.0,1.1362519179727388,0.7,0.0,0.0,0.982725348032724,-10.0105424036207,1.0,0.0,0.0 -234,20.0,9.038367529328603,11.2,0.0,0.0,0.9902839198205172,-9.687258074253338,1.0,0.0,0.0 -234,21.0,0.0,0.0,0.0,0.0,0.9903698238896697,-9.691349822911452,1.0,0.0,0.0 -234,22.0,1.6527300625058017,1.6,0.0,0.0,0.9719188574084504,-9.968559824474156,1.0,0.0,0.0 -234,23.0,4.493359857437648,6.7,0.0,0.0,0.9762033864954004,-9.865770693056197,1.0,0.0,0.0 -234,24.0,0.0,0.0,0.0,0.0,0.9742682037530076,-9.553222179026283,1.0,0.0,0.0 -234,25.0,1.8076735058657207,2.3,0.0,0.0,0.960378603253742,-9.615557205489493,1.0,0.0,0.0 -234,26.0,0.0,0.0,0.0,0.0,0.9800194480931008,-9.286454437861032,1.0,0.0,0.0 -234,27.0,0.0,0.0,0.0,0.0,0.9658792055200828,-7.061412444706148,1.0,0.0,0.0 -234,28.0,1.239547546879351,0.9,0.0,0.0,0.9665849003469904,-9.883189079561363,1.0,0.0,0.0 -234,29.0,5.474668332050467,1.9,0.0,0.0,0.959306498694301,-10.33480895226315,1.0,0.0,0.0 -235,0.0,0.0,0.0,152.88556446716456,0.0017915768586007,1.0,0.0,0.0,0.0,1.0 -235,1.0,11.207575736367469,12.7,2.0978433433361e-06,-4.541137994037896,0.9802100565148136,-3.174842810237867,0.0,1.0,0.0 -235,2.0,1.239547546879351,1.2,0.0,0.0,0.97929120103378,-5.507466850953218,1.0,0.0,0.0 -235,3.0,3.925233898451279,1.6,0.0,0.0,0.9739561181661625,-6.774997785643831,1.0,0.0,0.0 -235,4.0,48.65224121501453,19.0,1.3937357914302011e-09,26.501561540277777,0.9684023929961,-8.649440973084122,0.0,1.0,0.0 -235,5.0,0.0,0.0,0.0,0.0,0.975836446147158,-7.495947032250925,1.0,0.0,0.0 -235,6.0,11.775701695353836,10.9,0.0,0.0,0.9664080579178356,-8.221819952226005,1.0,0.0,0.0 -235,7.0,15.49434433599189,30.0,3.871705694156449e-09,39.55074764387183,0.9782913920436642,-7.950306802546023,0.0,1.0,0.0 -235,8.0,0.0,0.0,0.0,0.0,1.0242591797598948,-9.108243241993629,1.0,0.0,0.0 -235,9.0,2.9955732382917653,2.0,0.0,0.0,1.0196792498302587,-9.942513593596685,1.0,0.0,0.0 -235,10.0,0.0,0.0,5.187637492546277e-09,18.208925227784032,1.0599902302844155,-9.108243241424194,0.0,1.0,0.0 -235,11.0,5.784555218770305,7.5,0.0,0.0,1.0339860238253575,-10.066365367699618,1.0,0.0,0.0 -235,12.0,0.0,0.0,4.0802640089609276e-09,19.62543356669549,1.059908641969428,-10.06636536740097,0.0,1.0,0.0 -235,13.0,3.202164496104991,1.6,0.0,0.0,1.021931287730352,-10.539360970901338,1.0,0.0,0.0 -235,14.0,4.235120785171116,2.5,0.0,0.0,1.01692669374497,-10.580287363650053,1.0,0.0,0.0 -235,15.0,1.8076735058657207,1.8,0.0,0.0,1.022225149268649,-10.08946746996726,1.0,0.0,0.0 -235,16.0,4.648303300797567,5.8,0.0,0.0,1.0161194054646925,-10.077010320716186,1.0,0.0,0.0 -235,17.0,1.6527300625058017,0.9,0.0,0.0,1.0003252035589318,-11.127676530202756,1.0,0.0,0.0 -235,18.0,4.906542373064099,3.4,0.0,0.0,0.9927332123633028,-11.368078184173326,1.0,0.0,0.0 -235,19.0,1.1362519179727388,0.7,0.0,0.0,1.0171940236588752,-10.037502836747745,1.0,0.0,0.0 -235,20.0,9.038367529328603,11.2,0.0,0.0,1.0086883276731946,-10.111811469684856,1.0,0.0,0.0 -235,21.0,0.0,0.0,0.0,0.0,1.0088298907269897,-10.114982028721288,1.0,0.0,0.0 -235,22.0,1.6527300625058017,1.6,0.0,0.0,1.0120989063312464,-10.677068030241772,1.0,0.0,0.0 -235,23.0,4.493359857437648,6.7,0.0,0.0,0.9957023637768676,-10.277261129029275,1.0,0.0,0.0 -235,24.0,0.0,0.0,0.0,0.0,0.9891647855730452,-10.047812547742828,1.0,0.0,0.0 -235,25.0,1.8076735058657207,2.3,0.0,0.0,0.9754903724698204,-10.108257705944196,1.0,0.0,0.0 -235,26.0,0.0,0.0,0.0,0.0,0.9919735189355084,-9.839577557242263,1.0,0.0,0.0 -235,27.0,0.0,0.0,0.0,0.0,0.97461091789917,-7.833910606899748,1.0,0.0,0.0 -235,28.0,1.239547546879351,0.9,0.0,0.0,0.963377019836236,-11.14249780585393,1.0,0.0,0.0 -235,29.0,5.474668332050467,1.9,0.0,0.0,0.9400014616855212,-12.424364524899666,1.0,0.0,0.0 -236,0.0,0.0,0.0,152.26684020484905,0.0002278325199611,1.0,0.0,0.0,0.0,1.0 -236,1.0,11.207575736367469,12.7,2.583218214087227e-07,9.555667844641276,0.9811778526707458,-3.488034228187764,0.0,1.0,0.0 -236,2.0,1.239547546879351,1.2,0.0,0.0,0.9754715505552468,-4.575324213614094,1.0,0.0,0.0 -236,3.0,3.925233898451279,1.6,0.0,0.0,0.9690964613459686,-5.620225289444879,1.0,0.0,0.0 -236,4.0,48.65224121501453,19.0,-3.1265528861088457e-10,23.62766118450436,0.9621897104514044,-8.395159340844524,0.0,1.0,0.0 -236,5.0,0.0,0.0,0.0,0.0,0.9688959003836554,-6.675252461582988,1.0,0.0,0.0 -236,6.0,11.775701695353836,10.9,0.0,0.0,0.9597922825326995,-7.634394668473317,1.0,0.0,0.0 -236,7.0,15.49434433599189,30.0,-2.8835165030533123e-10,30.27745007468041,0.9679154949182038,-7.078392746896638,0.0,1.0,0.0 -236,8.0,0.0,0.0,0.0,0.0,1.016682266470634,-8.383118807374677,1.0,0.0,0.0 -236,9.0,2.9955732382917653,2.0,0.0,0.0,1.0079008342055449,-9.270799450041354,1.0,0.0,0.0 -236,10.0,0.0,0.0,-1.8090970841739835e-10,22.04734179151057,1.059947132718017,-8.383118807394682,0.0,1.0,0.0 -236,11.0,5.784555218770305,7.5,0.0,0.0,1.0143272408066728,-8.826806922814676,1.0,0.0,0.0 -236,12.0,0.0,0.0,-3.8652274511466445e-10,9.212161920729375,1.0268865894451529,-8.826806922844442,0.0,1.0,0.0 -236,13.0,3.202164496104991,1.6,0.0,0.0,1.0036290906278875,-9.261862757729606,1.0,0.0,0.0 -236,14.0,4.235120785171116,2.5,0.0,0.0,1.000449813771379,-9.284829114809332,1.0,0.0,0.0 -236,15.0,1.8076735058657207,1.8,0.0,0.0,1.0055102563517764,-9.112205316440368,1.0,0.0,0.0 -236,16.0,4.648303300797567,5.8,0.0,0.0,1.0028607980273787,-9.306274878964269,1.0,0.0,0.0 -236,17.0,1.6527300625058017,0.9,0.0,0.0,0.9941348881267772,-9.598247331445252,1.0,0.0,0.0 -236,18.0,4.906542373064099,3.4,0.0,0.0,0.9926287594578848,-9.694094266965235,1.0,0.0,0.0 -236,19.0,1.1362519179727388,0.7,0.0,0.0,0.995841937151006,-9.617979814620854,1.0,0.0,0.0 -236,20.0,9.038367529328603,11.2,0.0,0.0,0.99752981687328,-9.42535033015513,1.0,0.0,0.0 -236,21.0,0.0,0.0,0.0,0.0,0.9979114526832152,-9.422895074502687,1.0,0.0,0.0 -236,22.0,1.6527300625058017,1.6,0.0,0.0,0.9922745174250984,-9.447097422025236,1.0,0.0,0.0 -236,23.0,4.493359857437648,6.7,0.0,0.0,0.987951302971451,-9.53196054739815,1.0,0.0,0.0 -236,24.0,0.0,0.0,0.0,0.0,0.9817500453116688,-9.274377288181096,1.0,0.0,0.0 -236,25.0,1.8076735058657207,2.3,0.0,0.0,0.9679693752329694,-9.335752159903612,1.0,0.0,0.0 -236,26.0,0.0,0.0,0.0,0.0,0.9848133342915176,-9.047200371828584,1.0,0.0,0.0 -236,27.0,0.0,0.0,0.0,0.0,0.9669479669503328,-7.00795403574622,1.0,0.0,0.0 -236,28.0,1.239547546879351,0.9,0.0,0.0,0.9714478339581136,-9.638061776260573,1.0,0.0,0.0 -236,29.0,5.474668332050467,1.9,0.0,0.0,0.9642069617451416,-10.085141894420502,1.0,0.0,0.0 -237,0.0,0.0,0.0,60.16462198680159,7.199238538646568e-07,1.0,0.0,0.0,0.0,1.0 -237,1.0,11.207575736367469,12.7,91.895358223885,13.573483374056146,0.987518898833487,-1.9781635124528492,0.0,1.0,0.0 -237,2.0,1.239547546879351,1.2,0.0,0.0,0.9691041860606384,-6.405665917824812,1.0,0.0,0.0 -237,3.0,3.925233898451279,1.6,0.0,0.0,0.9695881325983748,-6.383503538600892,1.0,0.0,0.0 -237,4.0,48.65224121501453,19.0,0.0,0.0,0.9400000004009212,-7.557039750959154,0.0,1.0,0.0 -237,5.0,0.0,0.0,0.0,0.0,0.9674196460561592,-7.317512769104821,1.0,0.0,0.0 -237,6.0,11.775701695353836,10.9,0.0,0.0,0.9494856777164984,-7.696954787243931,1.0,0.0,0.0 -237,7.0,15.49434433599189,30.0,-1.5444537357117496e-09,39.99999866972868,0.9700430633303776,-7.804539133460126,0.0,1.0,0.0 -237,8.0,0.0,0.0,0.0,0.0,1.0165372802269697,-10.494466175405885,1.0,0.0,0.0 -237,9.0,2.9955732382917653,2.0,0.0,0.0,1.0092395774665206,-12.14057731588002,1.0,0.0,0.0 -237,10.0,0.0,0.0,-3.316878522167005e-10,22.14926925205555,1.0599999973581922,-10.494466175442572,0.0,1.0,0.0 -237,11.0,5.784555218770305,7.5,0.0,0.0,1.0029762243550726,-14.827031224249604,1.0,0.0,0.0 -237,12.0,0.0,0.0,2.5479205095843997e-09,23.999998317395168,1.0354266145350104,-14.8270312240528,0.0,1.0,0.0 -237,13.0,3.202164496104991,1.6,0.0,0.0,0.9925509217583468,-14.857211619931135,1.0,0.0,0.0 -237,14.0,4.235120785171116,2.5,0.0,0.0,0.9925878974013456,-14.481981792781395,1.0,0.0,0.0 -237,15.0,1.8076735058657207,1.8,0.0,0.0,1.001352770128326,-13.788335292363543,1.0,0.0,0.0 -237,16.0,4.648303300797567,5.8,0.0,0.0,1.0017113983760804,-12.729794198492078,1.0,0.0,0.0 -237,17.0,1.6527300625058017,0.9,0.0,0.0,0.9894709731263126,-13.976264315424674,1.0,0.0,0.0 -237,18.0,4.906542373064099,3.4,0.0,0.0,0.9899285472255466,-13.584450407739164,1.0,0.0,0.0 -237,19.0,1.1362519179727388,0.7,0.0,0.0,0.9942350644472234,-13.25190873901023,1.0,0.0,0.0 -237,20.0,9.038367529328603,11.2,0.0,0.0,0.9984743395708424,-12.358766514823596,1.0,0.0,0.0 -237,21.0,0.0,0.0,0.0,0.0,0.99872035314789,-12.376739342766871,1.0,0.0,0.0 -237,22.0,1.6527300625058017,1.6,0.0,0.0,0.987065302957298,-13.800331147241758,1.0,0.0,0.0 -237,23.0,4.493359857437648,6.7,0.0,0.0,0.9864699499528952,-12.74956376561681,1.0,0.0,0.0 -237,24.0,0.0,0.0,0.0,0.0,0.9834261688557532,-11.564540660602797,1.0,0.0,0.0 -237,25.0,1.8076735058657207,2.3,0.0,0.0,0.9696696647430074,-11.625703490085264,1.0,0.0,0.0 -237,26.0,0.0,0.0,0.0,0.0,0.9882787877024612,-10.75949789118225,1.0,0.0,0.0 -237,27.0,0.0,0.0,0.0,0.0,0.96615737642971,-7.7908873435836465,1.0,0.0,0.0 -237,28.0,1.239547546879351,0.9,0.0,0.0,0.9749627489925844,-11.346167683349694,1.0,0.0,0.0 -237,29.0,5.474668332050467,1.9,0.0,0.0,0.9677487594527796,-11.790009063484222,1.0,0.0,0.0 -238,0.0,0.0,0.0,152.53827940360594,0.0003611051521801,1.0,0.0,0.0,0.0,1.0 -238,1.0,11.21381608203359,12.7,4.347604195694727e-07,8.78661472134148,0.9810543225707083,-3.4915097724818738,0.0,1.0,0.0 -238,2.0,1.2402377233585538,1.2,0.0,0.0,0.9757204264795876,-4.5907794485915225,1.0,0.0,0.0 -238,3.0,3.9274194573020873,1.6,0.0,0.0,0.969405142999139,-5.639302618441427,1.0,0.0,0.0 -238,4.0,48.67933064182324,19.0,-5.189724887111604e-10,23.653400628039364,0.9622938578449034,-8.4056688479339,0.0,1.0,0.0 -238,5.0,0.0,0.0,0.0,0.0,0.9691913359632628,-6.690646403301586,1.0,0.0,0.0 -238,6.0,11.782258371906265,10.9,0.0,0.0,0.9600097081265978,-7.647978867345037,1.0,0.0,0.0 -238,7.0,15.502971541981925,30.0,-4.4190457278305536e-10,30.4209971483664,0.9681807475715052,-7.096073256893271,0.0,1.0,0.0 -238,8.0,0.0,0.0,0.0,0.0,1.0180760984246704,-8.352326882821687,1.0,0.0,0.0 -238,9.0,2.997241164783172,2.0,0.0,0.0,1.0105896294572296,-9.21397151408377,1.0,0.0,0.0 -238,10.0,0.0,0.0,-2.447814900537005e-10,21.33755018293556,1.059948059945854,-8.35232688284872,0.0,1.0,0.0 -238,11.0,5.787776042339918,7.5,0.0,0.0,1.0159693316177636,-8.879088907525258,1.0,0.0,0.0 -238,12.0,0.0,0.0,-5.73338804631032e-10,10.921823934335098,1.0308029652256392,-8.879088907569175,0.0,1.0,0.0 -238,13.0,3.2039474520095976,1.6,0.0,0.0,1.0045025981487354,-9.323166665925916,1.0,0.0,0.0 -238,14.0,4.237478888141726,2.5,0.0,0.0,1.0005047934260325,-9.338238912311471,1.0,0.0,0.0 -238,15.0,1.8086800132312244,1.8,0.0,0.0,1.0076890597839212,-9.119598930707514,1.0,0.0,0.0 -238,16.0,4.6508914625945765,5.8,0.0,0.0,1.0053772750089434,-9.268487581142985,1.0,0.0,0.0 -238,17.0,1.6536502978114054,0.9,0.0,0.0,0.995134597316857,-9.612843944071267,1.0,0.0,0.0 -238,18.0,4.909274321627609,3.4,0.0,0.0,0.994184699125756,-9.68553570082002,1.0,0.0,0.0 -238,19.0,1.1368845797453413,0.7,0.0,0.0,0.9976868216270478,-9.597593951200244,1.0,0.0,0.0 -238,20.0,9.043400066156122,11.2,0.0,0.0,0.979584646736672,-9.66428843090041,1.0,0.0,0.0 -238,21.0,0.0,0.0,0.0,0.0,0.983354199839582,-9.61462013298022,1.0,0.0,0.0 -238,22.0,1.6536502978114054,1.6,0.0,0.0,0.9883944193864368,-9.548567537802455,1.0,0.0,0.0 -238,23.0,4.495861747174757,6.7,0.0,0.0,0.9788628328416028,-9.700559894822185,1.0,0.0,0.0 -238,24.0,0.0,0.0,0.0,0.0,0.9761291151719146,-9.430578175923449,1.0,0.0,0.0 -238,25.0,1.8086800132312244,2.3,0.0,0.0,0.9622640669458356,-9.492905762998374,1.0,0.0,0.0 -238,26.0,0.0,0.0,0.0,0.0,0.9813844201709108,-9.191119381358332,1.0,0.0,0.0 -238,27.0,0.0,0.0,0.0,0.0,0.9667688460955176,-7.0308219844082895,1.0,0.0,0.0 -238,28.0,1.2402377233585538,0.9,0.0,0.0,0.96796537321878,-9.786612041176673,1.0,0.0,0.0 -238,29.0,5.477716611500279,1.9,0.0,0.0,0.9606949441834312,-10.237231524422732,1.0,0.0,0.0 -239,0.0,0.0,0.0,156.11566183194014,0.0061849580329287,1.0,0.0,0.0,0.0,1.0 -239,1.0,11.21381608203359,12.7,9.630651464648207e-06,11.249390275994363,0.9828345170278208,-3.257709056500007,0.0,1.0,0.0 -239,2.0,1.2402377233585538,1.2,0.0,0.0,0.970582558109048,-5.635127506174992,1.0,0.0,0.0 -239,3.0,3.9274194573020873,1.6,0.0,0.0,0.9632519605463432,-6.939519759958582,1.0,0.0,0.0 -239,4.0,48.67933064182324,19.0,2.7947603247818457e-08,35.3239848921672,0.9400073161669756,-15.984401363217913,0.0,1.0,0.0 -239,5.0,0.0,0.0,0.0,0.0,0.9602047237143152,-8.547960365864407,1.0,0.0,0.0 -239,6.0,11.782258371906265,10.9,0.0,0.0,0.9450582557589848,-11.827752084022418,1.0,0.0,0.0 -239,7.0,15.502971541981925,30.0,8.424136921766168e-09,39.99191713225067,0.9627999493664904,-9.018336796748311,0.0,1.0,0.0 -239,8.0,0.0,0.0,0.0,0.0,0.9859241088803388,-10.096496744663492,1.0,0.0,0.0 -239,9.0,2.997241164783172,2.0,0.0,0.0,0.9883920157954692,-10.9099043557837,1.0,0.0,0.0 -239,10.0,0.0,0.0,0.0,0.0,0.9859241088803388,-10.096496744663492,0.0,1.0,0.0 -239,11.0,5.787776042339918,7.5,0.0,0.0,1.017703992561306,-10.593043335643504,1.0,0.0,0.0 -239,12.0,0.0,0.0,1.310222299923879e-08,22.645636875251,1.04795703775602,-10.593043334658065,0.0,1.0,0.0 -239,13.0,3.2039474520095976,1.6,0.0,0.0,1.004296658479382,-11.042677190161584,1.0,0.0,0.0 -239,14.0,4.237478888141726,2.5,0.0,0.0,0.9983728115644128,-11.019861116529674,1.0,0.0,0.0 -239,15.0,1.8086800132312244,1.8,0.0,0.0,0.9990352134386354,-10.77674567106448,1.0,0.0,0.0 -239,16.0,4.6508914625945765,5.8,0.0,0.0,0.987337862923832,-10.971934756191796,1.0,0.0,0.0 -239,17.0,1.6536502978114054,0.9,0.0,0.0,0.9858335101443612,-11.302793621333445,1.0,0.0,0.0 -239,18.0,4.909274321627609,3.4,0.0,0.0,0.9806599090749242,-11.379589745478812,1.0,0.0,0.0 -239,19.0,1.1368845797453413,0.7,0.0,0.0,0.9819894139247012,-11.289721420115947,1.0,0.0,0.0 -239,20.0,9.043400066156122,11.2,0.0,0.0,0.9790423295391883,-11.079520133290412,1.0,0.0,0.0 -239,21.0,0.0,0.0,0.0,0.0,0.9798183266648538,-11.080300202689443,1.0,0.0,0.0 -239,22.0,1.6536502978114054,1.6,0.0,0.0,0.9854037440367034,-11.183241292084228,1.0,0.0,0.0 -239,23.0,4.495861747174757,6.7,0.0,0.0,0.9747358399756336,-11.271057000825149,1.0,0.0,0.0 -239,24.0,0.0,0.0,0.0,0.0,0.9699609592801464,-11.103666548818335,1.0,0.0,0.0 -239,25.0,1.8086800132312244,2.3,0.0,0.0,0.95600512944441,-11.166801137966884,1.0,0.0,0.0 -239,26.0,0.0,0.0,0.0,0.0,0.9740286294339956,-10.929138952598048,1.0,0.0,0.0 -239,27.0,0.0,0.0,0.0,0.0,0.9587985288451356,-8.889294488572661,1.0,0.0,0.0 -239,28.0,1.2402377233585538,0.9,0.0,0.0,0.9605024865812186,-11.53378384907188,1.0,0.0,0.0 -239,29.0,5.477716611500279,1.9,0.0,0.0,0.953173840964779,-11.991480167606165,1.0,0.0,0.0 -240,0.0,0.0,0.0,152.45919740813056,0.0108753849713316,1.0,0.0,0.0,0.0,1.0 -240,1.0,11.21381608203359,12.7,6.168326750251336e-06,14.24101455252,0.9816068166244576,-3.5819023995244885,0.0,1.0,0.0 -240,2.0,1.2402377233585538,1.2,0.0,0.0,0.9738594053692484,-4.332856116269357,1.0,0.0,0.0 -240,3.0,3.9274194573020873,1.6,0.0,0.0,0.967082765884772,-5.319638195429843,1.0,0.0,0.0 -240,4.0,48.67933064182324,19.0,-2.6101466691268116e-09,22.186850176603517,0.9629049667679466,-9.591061828511595,0.0,1.0,0.0 -240,5.0,0.0,0.0,0.0,0.0,0.9671598879335072,-6.3232359626782255,1.0,0.0,0.0 -240,6.0,11.782258371906265,10.9,0.0,0.0,0.9551468746835864,-6.754809877376528,1.0,0.0,0.0 -240,7.0,15.502971541981925,30.0,-6.820642419920283e-10,37.71007138031902,0.9688221143632004,-6.777658359357566,0.0,1.0,0.0 -240,8.0,0.0,0.0,0.0,0.0,1.0120148221100578,-8.194874792392818,1.0,0.0,0.0 -240,9.0,2.997241164783172,2.0,0.0,0.0,0.9997294210627028,-9.173851222800934,1.0,0.0,0.0 -240,10.0,0.0,0.0,-1.7763903369972227e-09,24.00032635379745,1.059147699642392,-8.194874792590324,0.0,1.0,0.0 -240,11.0,5.787776042339918,7.5,0.0,0.0,1.001256353434898,-8.170153934585029,1.0,0.0,0.0 -240,12.0,0.0,0.0,0.0,0.0,1.001256353434898,-8.170153934585029,0.0,1.0,0.0 -240,13.0,3.2039474520095976,1.6,0.0,0.0,0.9929708288148972,-8.512331248360907,1.0,0.0,0.0 -240,14.0,4.237478888141726,2.5,0.0,0.0,0.9929200517961756,-8.491924997764627,1.0,0.0,0.0 -240,15.0,1.8086800132312244,1.8,0.0,0.0,0.994110991415831,-8.709203003633581,1.0,0.0,0.0 -240,16.0,4.6508914625945765,5.8,0.0,0.0,0.9937498685801328,-9.112032561548014,1.0,0.0,0.0 -240,17.0,1.6536502978114054,0.9,0.0,0.0,0.9891344844189,-8.646377074210855,1.0,0.0,0.0 -240,18.0,4.909274321627609,3.4,0.0,0.0,0.9811216125173076,-9.815237099857749,1.0,0.0,0.0 -240,19.0,1.1368845797453413,0.7,0.0,0.0,0.9851818806601056,-9.68587725188518,1.0,0.0,0.0 -240,20.0,9.043400066156122,11.2,0.0,0.0,0.9880442917584444,-9.357855939071998,1.0,0.0,0.0 -240,21.0,0.0,0.0,0.0,0.0,0.9880407785532832,-9.363390274167005,1.0,0.0,0.0 -240,22.0,1.6536502978114054,1.6,0.0,0.0,0.9658769266766888,-9.694148075775937,1.0,0.0,0.0 -240,23.0,4.495861747174757,6.7,0.0,0.0,0.972612531045539,-9.550646474970476,1.0,0.0,0.0 -240,24.0,0.0,0.0,0.0,0.0,0.971767816823764,-9.229033171060284,1.0,0.0,0.0 -240,25.0,1.8086800132312244,2.3,0.0,0.0,0.9578387046235258,-9.291929738252914,1.0,0.0,0.0 -240,26.0,0.0,0.0,0.0,0.0,0.9782136014157896,-8.95507323931549,1.0,0.0,0.0 -240,27.0,0.0,0.0,0.0,0.0,0.9651043884673172,-6.683730016303255,1.0,0.0,0.0 -240,28.0,1.2402377233585538,0.9,0.0,0.0,0.9647486035885156,-9.554485314186524,1.0,0.0,0.0 -240,29.0,5.477716611500279,1.9,0.0,0.0,0.9574531965940054,-10.008134847657802,1.0,0.0,0.0 -241,0.0,0.0,0.0,152.35494995798896,0.0002329283705471,1.0,0.0,0.0,0.0,1.0 -241,1.0,11.21381608203359,12.7,2.639575776994049e-07,9.56399877357036,0.9811692982325212,-3.4901112239567427,0.0,1.0,0.0 -241,2.0,1.2402377233585538,1.2,0.0,0.0,0.975460112371622,-4.57804164274724,1.0,0.0,0.0 -241,3.0,3.9274194573020873,1.6,0.0,0.0,0.9690827886150774,-5.623587956583319,1.0,0.0,0.0 -241,4.0,48.67933064182324,19.0,-3.1874506684333493e-10,23.63254873004253,0.9621720592355532,-8.400163967372713,0.0,1.0,0.0 -241,5.0,0.0,0.0,0.0,0.0,0.9688807585819676,-6.679215989968289,1.0,0.0,0.0 -241,6.0,11.782258371906265,10.9,0.0,0.0,0.9597749174296296,-7.638986007235002,1.0,0.0,0.0 -241,7.0,15.502971541981925,30.0,-2.936860970282766e-10,30.279901812696764,0.9679001396870942,-7.082601110772673,0.0,1.0,0.0 -241,8.0,0.0,0.0,0.0,0.0,1.0166726053196518,-8.388062312221109,1.0,0.0,0.0 -241,9.0,2.997241164783172,2.0,0.0,0.0,1.007889850902666,-9.276247995126246,1.0,0.0,0.0 -241,10.0,0.0,0.0,-1.8421979826137838e-10,22.05195541962158,1.0599465490065327,-8.38806231224148,0.0,1.0,0.0 -241,11.0,5.787776042339918,7.5,0.0,0.0,1.0143213512279288,-8.83202531720133,1.0,0.0,0.0 -241,12.0,0.0,0.0,-3.9322683684895785e-10,9.218198696632246,1.026888901771153,-8.83202531723161,0.0,1.0,0.0 -241,13.0,3.2039474520095976,1.6,0.0,0.0,1.0036200159986388,-9.26740434371228,1.0,0.0,0.0 -241,14.0,4.237478888141726,2.5,0.0,0.0,1.0004394564745311,-9.290410657595364,1.0,0.0,0.0 -241,15.0,1.8086800132312244,1.8,0.0,0.0,1.0055010459962597,-9.117630734063091,1.0,0.0,0.0 -241,16.0,4.6508914625945765,5.8,0.0,0.0,1.0028497969543952,-9.311806564592972,1.0,0.0,0.0 -241,17.0,1.6536502978114054,0.9,0.0,0.0,0.9941220534388986,-9.604042978961196,1.0,0.0,0.0 -241,18.0,4.909274321627609,3.4,0.0,0.0,0.9926150856647834,-9.699946632014834,1.0,0.0,0.0 -241,19.0,1.1368845797453413,0.7,0.0,0.0,0.9958288123034058,-9.62375085686522,1.0,0.0,0.0 -241,20.0,9.043400066156122,11.2,0.0,0.0,0.997517003870231,-9.430991124177874,1.0,0.0,0.0 -241,21.0,0.0,0.0,0.0,0.0,0.9978986695279166,-9.42852739861847,1.0,0.0,0.0 -241,22.0,1.6536502978114054,1.6,0.0,0.0,0.9922615275729584,-9.45282887217431,1.0,0.0,0.0 -241,23.0,4.495861747174757,6.7,0.0,0.0,0.9879361412869624,-9.537747428270766,1.0,0.0,0.0 -241,24.0,0.0,0.0,0.0,0.0,0.9817335615566332,-9.2800270355397,1.0,0.0,0.0 -241,25.0,1.8086800132312244,2.3,0.0,0.0,0.9679499655434224,-9.341634777847176,1.0,0.0,0.0 -241,26.0,0.0,0.0,0.0,0.0,0.9847972817486808,-9.05263924075061,1.0,0.0,0.0 -241,27.0,0.0,0.0,0.0,0.0,0.9669319870013544,-7.012126976363927,1.0,0.0,0.0 -241,28.0,1.2402377233585538,0.9,0.0,0.0,0.9714273347466956,-9.64395631203564,1.0,0.0,0.0 -241,29.0,5.477716611500279,1.9,0.0,0.0,0.9641835944235678,-10.091348657920868,1.0,0.0,0.0 -242,0.0,0.0,0.0,153.35205401276298,0.0021167038974923,1.0,0.0,0.0,0.0,1.0 -242,1.0,11.21381608203359,12.7,3.094305239910397e-06,10.315603767840996,0.9804000773830192,-3.876922020384145,0.0,1.0,0.0 -242,2.0,1.2402377233585538,1.2,0.0,0.0,0.9761337990952346,-3.57210991887514,1.0,0.0,0.0 -242,3.0,3.9274194573020873,1.6,0.0,0.0,0.969834094784426,-4.374408959968855,1.0,0.0,0.0 -242,4.0,48.67933064182324,19.0,8.732868018751931e-10,25.427702643685336,0.9631199320055556,-9.779822352526171,0.0,1.0,0.0 -242,5.0,0.0,0.0,0.0,0.0,0.9671881628275038,-9.037509694941877,1.0,0.0,0.0 -242,6.0,11.782258371906265,10.9,0.0,0.0,0.9589898527385536,-9.59753097941146,1.0,0.0,0.0 -242,7.0,15.502971541981925,30.0,1.8213830231733181e-09,28.94655508195747,0.9656268225158796,-9.431497397660952,0.0,1.0,0.0 -242,8.0,0.0,0.0,0.0,0.0,1.0178593986175086,-9.037509694490025,1.0,0.0,0.0 -242,9.0,2.997241164783172,2.0,0.0,0.0,0.9928634989200344,-11.650097579053156,1.0,0.0,0.0 -242,10.0,0.0,0.0,3.816572133315918e-09,14.55138784390487,1.046773845464331,-9.037509694063132,0.0,1.0,0.0 -242,11.0,5.787776042339918,7.5,0.0,0.0,1.0259235085502856,-9.634088807092844,1.0,0.0,0.0 -242,12.0,0.0,0.0,8.568287349797182e-10,21.186654430373704,1.054063479971481,-9.634088807029286,0.0,1.0,0.0 -242,13.0,3.2039474520095976,1.6,0.0,0.0,1.0124068537772353,-10.279050497970758,1.0,0.0,0.0 -242,14.0,4.237478888141726,2.5,0.0,0.0,1.0049199648178055,-10.453185489698308,1.0,0.0,0.0 -242,15.0,1.8086800132312244,1.8,0.0,0.0,1.0044345052670034,-10.526398759757898,1.0,0.0,0.0 -242,16.0,4.6508914625945765,5.8,0.0,0.0,0.99245318761305,-11.400790068297551,1.0,0.0,0.0 -242,17.0,1.6536502978114054,0.9,0.0,0.0,0.9915489020261412,-11.186009622945257,1.0,0.0,0.0 -242,18.0,4.909274321627609,3.4,0.0,0.0,0.9859155032210952,-11.535483184547257,1.0,0.0,0.0 -242,19.0,1.1368845797453413,0.7,0.0,0.0,0.9869785423285868,-11.591421856086876,1.0,0.0,0.0 -242,20.0,9.043400066156122,11.2,0.0,0.0,0.9801067157235782,-11.7723581066812,1.0,0.0,0.0 -242,21.0,0.0,0.0,0.0,0.0,0.9797990549538472,-11.756773357843835,1.0,0.0,0.0 -242,22.0,1.6536502978114054,1.6,0.0,0.0,0.990309354768885,-10.999436834227064,1.0,0.0,0.0 -242,23.0,4.495861747174757,6.7,0.0,0.0,0.9775752043430248,-11.614555403390767,1.0,0.0,0.0 -242,24.0,0.0,0.0,0.0,0.0,0.973951652253022,-11.501219304022378,1.0,0.0,0.0 -242,25.0,1.8086800132312244,2.3,0.0,0.0,0.9600546937883176,-11.563829993579844,1.0,0.0,0.0 -242,26.0,0.0,0.0,0.0,0.0,0.9787223264155788,-11.35948411545061,1.0,0.0,0.0 -242,27.0,0.0,0.0,0.0,0.0,0.9646846247363688,-9.355176973398285,1.0,0.0,0.0 -242,28.0,1.2402377233585538,0.9,0.0,0.0,0.9652647227120376,-11.958264746887512,1.0,0.0,0.0 -242,29.0,5.477716611500279,1.9,0.0,0.0,0.9579733350777284,-12.411426060245772,1.0,0.0,0.0 -243,0.0,0.0,0.0,152.43684623273904,0.0002942365493474,1.0,0.0,0.0,0.0,1.0 -243,1.0,11.21381608203359,12.7,3.184740257016728e-07,9.46289609361378,0.9811392952992892,-3.492327297574887,0.0,1.0,0.0 -243,2.0,1.2402377233585538,1.2,0.0,0.0,0.9755104983533088,-4.579486069957183,1.0,0.0,0.0 -243,3.0,3.9274194573020873,1.6,0.0,0.0,0.9691450561495774,-5.625361967454167,1.0,0.0,0.0 -243,4.0,48.67933064182324,19.0,-3.6912203411381663e-10,23.677774055031087,0.9621824611426834,-8.40668353470654,0.0,1.0,0.0 -243,5.0,0.0,0.0,0.0,0.0,0.9688361654930508,-6.688351657948352,1.0,0.0,0.0 -243,6.0,11.782258371906265,10.9,0.0,0.0,0.959752241468324,-7.647042312697851,1.0,0.0,0.0 -243,7.0,15.502971541981925,30.0,-3.2675429095414236e-10,30.51966917293861,0.9679313871205232,-7.0937740161316,0.0,1.0,0.0 -243,8.0,0.0,0.0,0.0,0.0,1.016335193022872,-8.419923660413819,1.0,0.0,0.0 -243,9.0,2.997241164783172,2.0,0.0,0.0,1.0072045695259413,-9.320489512450404,1.0,0.0,0.0 -243,10.0,0.0,0.0,-1.7550928667241363e-10,22.24862381544674,1.0599931519910084,-8.419923660433234,0.0,1.0,0.0 -243,11.0,5.787776042339918,7.5,0.0,0.0,1.0149212630976192,-8.783302125029088,1.0,0.0,0.0 -243,12.0,0.0,0.0,-4.51439135086438e-10,9.020261807140118,1.0272150534654614,-8.783302125063825,0.0,1.0,0.0 -243,13.0,3.2039474520095976,1.6,0.0,0.0,0.986190282578702,-9.593030625055151,1.0,0.0,0.0 -243,14.0,4.237478888141726,2.5,0.0,0.0,0.9966143273725412,-9.426172260825291,1.0,0.0,0.0 -243,15.0,1.8086800132312244,1.8,0.0,0.0,1.0054821614991782,-9.105987032522544,1.0,0.0,0.0 -243,16.0,4.6508914625945765,5.8,0.0,0.0,1.0023907527842149,-9.339510654678415,1.0,0.0,0.0 -243,17.0,1.6536502978114054,0.9,0.0,0.0,0.9913872208456956,-9.709773888271672,1.0,0.0,0.0 -243,18.0,4.909274321627609,3.4,0.0,0.0,0.9905307772375171,-9.787125754276644,1.0,0.0,0.0 -243,19.0,1.1368845797453413,0.7,0.0,0.0,0.9940967995524792,-9.700718813354342,1.0,0.0,0.0 -243,20.0,9.043400066156122,11.2,0.0,0.0,0.9966769163350754,-9.480132139823771,1.0,0.0,0.0 -243,21.0,0.0,0.0,0.0,0.0,0.9970119090354408,-9.479105458473953,1.0,0.0,0.0 -243,22.0,1.6536502978114054,1.6,0.0,0.0,0.9894032134111138,-9.559595404726933,1.0,0.0,0.0 -243,23.0,4.495861747174757,6.7,0.0,0.0,0.9863799187279122,-9.6039774161272,1.0,0.0,0.0 -243,24.0,0.0,0.0,0.0,0.0,0.9807797324741664,-9.332695304726847,1.0,0.0,0.0 -243,25.0,1.8086800132312244,2.3,0.0,0.0,0.9669823426136428,-9.394424670544485,1.0,0.0,0.0 -243,26.0,0.0,0.0,0.0,0.0,0.9842203169014744,-9.096097859288214,1.0,0.0,0.0 -243,27.0,0.0,0.0,0.0,0.0,0.9668278540244511,-7.024370013193294,1.0,0.0,0.0 -243,28.0,1.2402377233585538,0.9,0.0,0.0,0.9708420951881512,-9.688117732821816,1.0,0.0,0.0 -243,29.0,5.477716611500279,1.9,0.0,0.0,0.9635938571458438,-10.136053176041276,1.0,0.0,0.0 -244,0.0,0.0,0.0,152.39425923004825,0.0002609627999916,1.0,0.0,0.0,0.0,1.0 -244,1.0,11.21381608203359,12.7,2.984820609377931e-07,9.379412962500687,0.9811426451166568,-3.490321279871307,0.0,1.0,0.0 -244,2.0,1.2402377233585538,1.2,0.0,0.0,0.9755218811938268,-4.58100326146102,1.0,0.0,0.0 -244,3.0,3.9274194573020873,1.6,0.0,0.0,0.9691592699137016,-5.627241409027025,1.0,0.0,0.0 -244,4.0,48.67933064182324,19.0,-3.6684249720580206e-10,23.634996903817022,0.962200344564384,-8.40116545309992,0.0,1.0,0.0 -244,5.0,0.0,0.0,0.0,0.0,0.9689578344364314,-6.681540670744291,1.0,0.0,0.0 -244,6.0,11.782258371906265,10.9,0.0,0.0,0.9598324048671044,-7.640766958725113,1.0,0.0,0.0 -244,7.0,15.502971541981925,30.0,-3.3097566578001964e-10,30.314971713691747,0.9679627890375648,-7.085593400809599,0.0,1.0,0.0 -244,8.0,0.0,0.0,0.0,0.0,1.0171024373674455,-8.373632984381858,1.0,0.0,0.0 -244,9.0,2.997241164783172,2.0,0.0,0.0,1.0087290693247717,-9.252450668154252,1.0,0.0,0.0 -244,10.0,0.0,0.0,-2.244515731764265e-10,21.829504095147108,1.059940110975366,-8.37363298440667,0.0,1.0,0.0 -244,11.0,5.787776042339918,7.5,0.0,0.0,1.0147026526630374,-8.845022253855864,1.0,0.0,0.0 -244,12.0,0.0,0.0,-4.3144443901519e-10,9.673619667642898,1.0278784013862663,-8.845022253889045,0.0,1.0,0.0 -244,13.0,3.2039474520095976,1.6,0.0,0.0,1.0037646389606796,-9.28368229387316,1.0,0.0,0.0 -244,14.0,4.237478888141726,2.5,0.0,0.0,1.0003290070993935,-9.304743399349451,1.0,0.0,0.0 -244,15.0,1.8086800132312244,1.8,0.0,0.0,1.0061084162269474,-9.115707255903748,1.0,0.0,0.0 -244,16.0,4.6508914625945765,5.8,0.0,0.0,1.0036120029685895,-9.294412806230463,1.0,0.0,0.0 -244,17.0,1.6536502978114054,0.9,0.0,0.0,0.9943518131200428,-9.604957041500278,1.0,0.0,0.0 -244,18.0,4.909274321627609,3.4,0.0,0.0,0.9930452018290912,-9.692848404702032,1.0,0.0,0.0 -244,19.0,1.1368845797453413,0.7,0.0,0.0,0.996363166786246,-9.612568744281406,1.0,0.0,0.0 -244,20.0,9.043400066156122,11.2,0.0,0.0,0.9940582326678308,-9.47814778048074,1.0,0.0,0.0 -244,21.0,0.0,0.0,0.0,0.0,0.9930772607079512,-9.49676071787448,1.0,0.0,0.0 -244,22.0,1.6536502978114054,1.6,0.0,0.0,0.9908900449868536,-9.485229149575693,1.0,0.0,0.0 -244,23.0,4.495861747174757,6.7,0.0,0.0,0.9848963881526508,-9.595147326510016,1.0,0.0,0.0 -244,24.0,0.0,0.0,0.0,0.0,0.979850911014282,-9.331655779304196,1.0,0.0,0.0 -244,25.0,1.8086800132312244,2.3,0.0,0.0,0.9660400620108884,-9.393503928043058,1.0,0.0,0.0 -244,26.0,0.0,0.0,0.0,0.0,0.983645182751555,-9.09918886159106,1.0,0.0,0.0 -244,27.0,0.0,0.0,0.0,0.0,0.9668506136853184,-7.017111995280385,1.0,0.0,0.0 -244,28.0,1.2402377233585538,0.9,0.0,0.0,0.9702587021073528,-9.691910561348193,1.0,0.0,0.0 -244,29.0,5.477716611500279,1.9,0.0,0.0,0.9630059748936616,-10.140388375566385,1.0,0.0,0.0 -245,0.0,0.0,0.0,138.0000048813147,1.5723875002038312e-05,1.0,0.0,0.0,0.0,1.0 -245,1.0,11.21381608203359,12.7,16.62174681430605,14.465525906838742,0.9751784464066358,-4.637422027264624,0.0,1.0,0.0 -245,2.0,1.2402377233585538,1.2,0.0,0.0,0.94879613148079,-9.384181878023396,1.0,0.0,0.0 -245,3.0,3.9274194573020873,1.6,0.0,0.0,0.9492970693027818,-9.361181999904671,1.0,0.0,0.0 -245,4.0,48.67933064182324,19.0,9.515189206786222e-12,26.37111829949788,0.9545401893755332,-10.589602125603566,0.0,1.0,0.0 -245,5.0,0.0,0.0,0.0,0.0,0.9536787831431524,-9.726588110360694,1.0,0.0,0.0 -245,6.0,11.782258371906265,10.9,0.0,0.0,0.9474133085484456,-10.338172220505047,1.0,0.0,0.0 -245,7.0,15.502971541981925,30.0,1.411874088489884e-11,36.369983294311794,0.9546820792316086,-10.187550941246126,0.0,1.0,0.0 -245,8.0,0.0,0.0,0.0,0.0,1.017565723354429,-9.726588110357554,1.0,0.0,0.0 -245,9.0,2.997241164783172,2.0,0.0,0.0,0.961599483709664,-14.749575669987731,1.0,0.0,0.0 -245,10.0,0.0,0.0,2.614014642632503e-11,21.62503649179113,1.0599997665698175,-9.726588110354664,0.0,1.0,0.0 -245,11.0,5.787776042339918,7.5,0.0,0.0,0.9931504661699224,-13.407469155974884,1.0,0.0,0.0 -245,12.0,0.0,0.0,2.2738552057828156e-11,14.82050438168379,1.0136203648169413,-13.407469155973072,0.0,1.0,0.0 -245,13.0,3.2039474520095976,1.6,0.0,0.0,0.9814847737569824,-13.863488751503091,1.0,0.0,0.0 -245,14.0,4.237478888141726,2.5,0.0,0.0,0.9775226137046982,-13.872111939781105,1.0,0.0,0.0 -245,15.0,1.8086800132312244,1.8,0.0,0.0,0.9726660907937854,-14.02352805697979,1.0,0.0,0.0 -245,16.0,4.6508914625945765,5.8,0.0,0.0,0.9607532046363818,-14.631155496643776,1.0,0.0,0.0 -245,17.0,1.6536502978114054,0.9,0.0,0.0,0.9736768315462464,-14.031487513401528,1.0,0.0,0.0 -245,18.0,4.909274321627609,3.4,0.0,0.0,0.9422192838326666,-15.443920569978282,1.0,0.0,0.0 -245,19.0,1.1368845797453413,0.7,0.0,0.0,0.9464474115927388,-15.303706903051957,1.0,0.0,0.0 -245,20.0,9.043400066156122,11.2,0.0,0.0,0.9526997071100656,-14.80402785724761,1.0,0.0,0.0 -245,21.0,0.0,0.0,0.0,0.0,0.9537362087481788,-14.765120731850942,1.0,0.0,0.0 -245,22.0,1.6536502978114054,1.6,0.0,0.0,0.9639526112370844,-14.179130222114086,1.0,0.0,0.0 -245,23.0,4.495861747174757,6.7,0.0,0.0,0.952669532399996,-14.457768624447738,1.0,0.0,0.0 -245,24.0,0.0,0.0,0.0,0.0,0.9544116775436317,-13.614938740475187,1.0,0.0,0.0 -245,25.0,1.8086800132312244,2.3,0.0,0.0,0.9402215501144576,-13.680179040735384,1.0,0.0,0.0 -245,26.0,0.0,0.0,0.0,0.0,0.9624918669294114,-13.015324478633133,1.0,0.0,0.0 -245,27.0,0.0,0.0,0.0,0.0,0.9489214116448088,-10.1363377943276,1.0,0.0,0.0 -245,28.0,1.2402377233585538,0.9,0.0,0.0,0.9487941708766114,-13.634756723705047,1.0,0.0,0.0 -245,29.0,5.477716611500279,1.9,0.0,0.0,0.9413722595911916,-14.103897188833724,1.0,0.0,0.0 -246,0.0,0.0,0.0,152.76291979655997,0.0032847855294448,1.0,0.0,0.0,0.0,1.0 -246,1.0,11.21381608203359,12.7,2.523505898676061e-06,9.267214720708502,0.982574280417277,-3.224802965997828,0.0,1.0,0.0 -246,2.0,1.2402377233585538,1.2,0.0,0.0,0.97244672732768,-5.390961945418204,1.0,0.0,0.0 -246,3.0,3.9274194573020873,1.6,0.0,0.0,0.9654987786397974,-6.63483343105651,1.0,0.0,0.0 -246,4.0,48.67933064182324,19.0,6.50283386841372e-10,24.252211731848035,0.9629534049927806,-8.620496981935693,0.0,1.0,0.0 -246,5.0,0.0,0.0,0.0,0.0,0.9673019243354176,-7.390191713411185,1.0,0.0,0.0 -246,6.0,11.782258371906265,10.9,0.0,0.0,0.9590803281729386,-8.149237990878587,1.0,0.0,0.0 -246,7.0,15.502971541981925,30.0,-1.3558566280977321e-09,33.86737815839388,0.9664486916140452,-8.013234399220831,0.0,1.0,0.0 -246,8.0,0.0,0.0,0.0,0.0,1.0159432054190498,-9.229573864273757,1.0,0.0,0.0 -246,9.0,2.997241164783172,2.0,0.0,0.0,1.0072730076172118,-10.184616650515704,1.0,0.0,0.0 -246,10.0,0.0,0.0,-4.7302153403822014e-09,22.44879137050992,1.059993916760274,-9.22957386479723,0.0,1.0,0.0 -246,11.0,5.787776042339918,7.5,0.0,0.0,1.0143713313417388,-9.83895278459684,1.0,0.0,0.0 -246,12.0,0.0,0.0,-1.5840239313890675e-09,11.43137672099887,1.0299104755578703,-9.838952784718462,0.0,1.0,0.0 -246,13.0,3.2039474520095976,1.6,0.0,0.0,1.003439620616338,-10.275732159711,1.0,0.0,0.0 -246,14.0,4.237478888141726,2.5,0.0,0.0,1.0000273634366916,-10.294890279535505,1.0,0.0,0.0 -246,15.0,1.8086800132312244,1.8,0.0,0.0,1.0053274848546294,-10.080923489481274,1.0,0.0,0.0 -246,16.0,4.6508914625945765,5.8,0.0,0.0,1.0023487329839904,-10.237896074181087,1.0,0.0,0.0 -246,17.0,1.6536502978114054,0.9,0.0,0.0,0.9936404931840612,-10.574994063916886,1.0,0.0,0.0 -246,18.0,4.909274321627609,3.4,0.0,0.0,0.9920921345085084,-10.650808550109817,1.0,0.0,0.0 -246,19.0,1.1368845797453413,0.7,0.0,0.0,0.9952869325468952,-10.563896093102672,1.0,0.0,0.0 -246,20.0,9.043400066156122,11.2,0.0,0.0,0.996636522125207,-10.37010546110728,1.0,0.0,0.0 -246,21.0,0.0,0.0,0.0,0.0,0.9969342948054208,-10.377349980648392,1.0,0.0,0.0 -246,22.0,1.6536502978114054,1.6,0.0,0.0,0.9910194145023044,-10.48621760191292,1.0,0.0,0.0 -246,23.0,4.495861747174757,6.7,0.0,0.0,0.9856021647728804,-10.610502728300473,1.0,0.0,0.0 -246,24.0,0.0,0.0,0.0,0.0,0.9758348977999092,-10.629515962958344,1.0,0.0,0.0 -246,25.0,1.8086800132312244,2.3,0.0,0.0,0.9619655465734284,-10.691881689685816,1.0,0.0,0.0 -246,26.0,0.0,0.0,0.0,0.0,0.976827767180746,-10.57836431355036,1.0,0.0,0.0 -246,27.0,0.0,0.0,0.0,0.0,0.9584282581940832,-8.861088257481521,1.0,0.0,0.0 -246,28.0,1.2402377233585538,0.9,0.0,0.0,0.9633425844685578,-11.17950162757526,1.0,0.0,0.0 -246,29.0,5.477716611500279,1.9,0.0,0.0,0.9560362050938144,-11.634485197047246,1.0,0.0,0.0 -247,0.0,0.0,0.0,136.39884125680447,1.1828141843750473e-05,1.0,0.0,0.0,0.0,1.0 -247,1.0,11.21381608203359,12.7,23.52318814212088,17.520720140396627,0.9609536890236472,-18.825785650547346,0.0,1.0,0.0 -247,2.0,1.2402377233585538,1.2,0.0,0.0,0.9615313138313412,-13.49655436309556,1.0,0.0,0.0 -247,3.0,3.9274194573020873,1.6,0.0,0.0,0.9565324524251684,-16.717958109513294,1.0,0.0,0.0 -247,4.0,48.67933064182324,19.0,-7.615022787510557e-13,23.91543213340165,0.94605113362955,-22.31593216829369,0.0,1.0,0.0 -247,5.0,0.0,0.0,0.0,0.0,0.9594928170080764,-18.896470062722493,1.0,0.0,0.0 -247,6.0,11.782258371906265,10.9,0.0,0.0,0.9476455122544218,-20.553801652869662,1.0,0.0,0.0 -247,7.0,15.502971541981925,30.0,5.370506935969211e-12,39.36681842585384,0.961981545388446,-19.36162170151392,0.0,1.0,0.0 -247,8.0,0.0,0.0,0.0,0.0,1.0138035442436404,-20.39831806767797,1.0,0.0,0.0 -247,9.0,2.997241164783172,2.0,0.0,0.0,1.0069504255026425,-21.17209108874249,1.0,0.0,0.0 -247,10.0,0.0,0.0,2.2981192141153568e-11,23.54235116100988,1.0599998619712991,-20.398318067675422,0.0,1.0,0.0 -247,11.0,5.787776042339918,7.5,0.0,0.0,1.025529164349969,-20.485142993348106,1.0,0.0,0.0 -247,12.0,0.0,0.0,4.885589646321089e-11,23.999764918978308,1.057307682048315,-20.48514299334449,0.0,1.0,0.0 -247,13.0,3.2039474520095976,1.6,0.0,0.0,1.013408650758279,-20.95966871042159,1.0,0.0,0.0 -247,14.0,4.237478888141726,2.5,0.0,0.0,1.0084453001300426,-20.99557909550269,1.0,0.0,0.0 -247,15.0,1.8086800132312244,1.8,0.0,0.0,1.0113203086158509,-20.84708290139664,1.0,0.0,0.0 -247,16.0,4.6508914625945765,5.8,0.0,0.0,1.0040841724203575,-21.16341817263245,1.0,0.0,0.0 -247,17.0,1.6536502978114054,0.9,0.0,0.0,0.9989983674870564,-21.37144612762321,1.0,0.0,0.0 -247,18.0,4.909274321627609,3.4,0.0,0.0,0.9956308563054228,-21.506017950466067,1.0,0.0,0.0 -247,19.0,1.1368845797453413,0.7,0.0,0.0,0.997849831230691,-21.450780423091,1.0,0.0,0.0 -247,20.0,9.043400066156122,11.2,0.0,0.0,0.996806947152053,-21.32368854377837,1.0,0.0,0.0 -247,21.0,0.0,0.0,0.0,0.0,0.9972646194705692,-21.32022334028971,1.0,0.0,0.0 -247,22.0,1.6536502978114054,1.6,0.0,0.0,0.997009061154349,-21.232545990533616,1.0,0.0,0.0 -247,23.0,4.495861747174757,6.7,0.0,0.0,0.988327284832083,-21.422510495675265,1.0,0.0,0.0 -247,24.0,0.0,0.0,0.0,0.0,0.9782823626665148,-21.25994023399647,1.0,0.0,0.0 -247,25.0,1.8086800132312244,2.3,0.0,0.0,0.9644487239226776,-21.321989760239,1.0,0.0,0.0 -247,26.0,0.0,0.0,0.0,0.0,0.97901775897047,-21.095741764603027,1.0,0.0,0.0 -247,27.0,0.0,0.0,0.0,0.0,0.9587734792604964,-19.227682496039705,1.0,0.0,0.0 -247,28.0,1.2402377233585538,0.9,0.0,0.0,0.9655644453991452,-21.694156156314637,1.0,0.0,0.0 -247,29.0,5.477716611500279,1.9,0.0,0.0,0.95827538981508,-22.14703431098301,1.0,0.0,0.0 -248,0.0,0.0,0.0,152.6733462869862,0.0322033606892091,1.0,0.0,0.0,0.0,1.0 -248,1.0,11.21381608203359,12.7,3.7870743835370206e-06,22.697597952938903,0.9825101158980528,-3.5268597754271576,0.0,1.0,0.0 -248,2.0,1.2402377233585538,1.2,0.0,0.0,0.9713961398073911,-4.520878098147304,1.0,0.0,0.0 -248,3.0,3.9274194573020873,1.6,0.0,0.0,0.9640679426803496,-5.554116957357317,1.0,0.0,0.0 -248,4.0,48.67933064182324,19.0,8.731425188707928e-09,28.18882582620421,0.9621720480399,-8.45248283115821,0.0,1.0,0.0 -248,5.0,0.0,0.0,0.0,0.0,0.958293892275884,-6.51624000035142,1.0,0.0,0.0 -248,6.0,11.782258371906265,10.9,0.0,0.0,0.9534832850488156,-7.562311832443762,1.0,0.0,0.0 -248,7.0,15.502971541981925,30.0,0.0,0.0,0.9457916135157663,-6.732474636137021,0.0,1.0,0.0 -248,8.0,0.0,0.0,0.0,0.0,1.0132583356259202,-8.244471851342158,1.0,0.0,0.0 -248,9.0,2.997241164783172,2.0,0.0,0.0,1.0065644604458897,-9.134085056284215,1.0,0.0,0.0 -248,10.0,0.0,0.0,8.457276506194906e-09,23.81958389756192,1.0599987081617053,-8.244471850403752,0.0,1.0,0.0 -248,11.0,5.787776042339918,7.5,0.0,0.0,1.0266574230144685,-8.80941171696166,1.0,0.0,0.0 -248,12.0,0.0,0.0,8.972643970655739e-09,21.83605352165878,1.055617233410473,-8.809411716297546,0.0,1.0,0.0 -248,13.0,3.2039474520095976,1.6,0.0,0.0,0.9941395449938796,-9.543536223861132,1.0,0.0,0.0 -248,14.0,4.237478888141726,2.5,0.0,0.0,1.0044801717510177,-9.379308267328264,1.0,0.0,0.0 -248,15.0,1.8086800132312244,1.8,0.0,0.0,1.0120436860042574,-9.013784023618364,1.0,0.0,0.0 -248,16.0,4.6508914625945765,5.8,0.0,0.0,1.003969086221634,-9.19079778297345,1.0,0.0,0.0 -248,17.0,1.6536502978114054,0.9,0.0,0.0,0.9963045882307018,-9.609738434408904,1.0,0.0,0.0 -248,18.0,4.909274321627609,3.4,0.0,0.0,0.9936897305557554,-9.656511768308963,1.0,0.0,0.0 -248,19.0,1.1368845797453413,0.7,0.0,0.0,0.9963168511370768,-9.554541322483468,1.0,0.0,0.0 -248,20.0,9.043400066156122,11.2,0.0,0.0,0.9961347505245246,-9.298519105944758,1.0,0.0,0.0 -248,21.0,0.0,0.0,0.0,0.0,0.9965024378102344,-9.299013027940893,1.0,0.0,0.0 -248,22.0,1.6536502978114054,1.6,0.0,0.0,0.9938622879476876,-9.46469460100035,1.0,0.0,0.0 -248,23.0,4.495861747174757,6.7,0.0,0.0,0.9862592417467512,-9.44719670493368,1.0,0.0,0.0 -248,24.0,0.0,0.0,0.0,0.0,0.9757203929628648,-9.11345774537735,1.0,0.0,0.0 -248,25.0,1.8086800132312244,2.3,0.0,0.0,0.9618493663211892,-9.175838322882669,1.0,0.0,0.0 -248,26.0,0.0,0.0,0.0,0.0,0.9761144767406744,-8.842109299562452,1.0,0.0,0.0 -248,27.0,0.0,0.0,0.0,0.0,0.9542337391962972,-6.818052626862136,1.0,0.0,0.0 -248,28.0,1.2402377233585538,0.9,0.0,0.0,0.9626188805572728,-9.44413751489073,1.0,0.0,0.0 -248,29.0,5.477716611500279,1.9,0.0,0.0,0.9553068404086804,-9.89981003771256,1.0,0.0,0.0 -249,0.0,0.0,0.0,153.13651772595964,0.0005260877959933,1.0,0.0,0.0,0.0,1.0 -249,1.0,11.21381608203359,12.7,6.906170661769467e-07,9.23242936040041,0.9822350630090004,-3.195430535936288,0.0,1.0,0.0 -249,2.0,1.2402377233585538,1.2,0.0,0.0,0.9734299545359631,-5.506243795927895,1.0,0.0,0.0 -249,3.0,3.9274194573020873,1.6,0.0,0.0,0.9667334359234706,-6.777394969885956,1.0,0.0,0.0 -249,4.0,48.67933064182324,19.0,1.4509087976602938e-10,25.07308492093148,0.9629107045110928,-9.08328369833625,0.0,1.0,0.0 -249,5.0,0.0,0.0,0.0,0.0,0.9656207216838676,-8.334799628916164,1.0,0.0,0.0 -249,6.0,11.782258371906265,10.9,0.0,0.0,0.957969456494702,-8.896868565537076,1.0,0.0,0.0 -249,7.0,15.502971541981925,30.0,3.3660323890870394e-10,29.84028391755672,0.9644958212983924,-8.73639926801229,0.0,1.0,0.0 -249,8.0,0.0,0.0,0.0,0.0,1.0166976417111109,-9.877685579926846,1.0,0.0,0.0 -249,9.0,2.997241164783172,2.0,0.0,0.0,1.0104613298285303,-10.674895553776862,1.0,0.0,0.0 -249,10.0,0.0,0.0,9.868279426485646e-10,21.213864966328224,1.0583882401658409,-9.877685579817554,0.0,1.0,0.0 -249,11.0,5.787776042339918,7.5,0.0,0.0,1.0187359107671243,-10.370369688295089,1.0,0.0,0.0 -249,12.0,0.0,0.0,5.719037827753978e-10,16.101388538291783,1.04040247208209,-10.370369688251806,0.0,1.0,0.0 -249,13.0,3.2039474520095976,1.6,0.0,0.0,1.0057694646754411,-10.867597855085608,1.0,0.0,0.0 -249,14.0,4.237478888141726,2.5,0.0,0.0,0.9999270036946152,-10.902769404345202,1.0,0.0,0.0 -249,15.0,1.8086800132312244,1.8,0.0,0.0,1.0092321032106113,-10.591466644741928,1.0,0.0,0.0 -249,16.0,4.6508914625945765,5.8,0.0,0.0,1.0057678457229358,-10.734761252328774,1.0,0.0,0.0 -249,17.0,1.6536502978114054,0.9,0.0,0.0,0.9830228348584384,-11.469729750552077,1.0,0.0,0.0 -249,18.0,4.909274321627609,3.4,0.0,0.0,0.9752929566329256,-11.71894829872191,1.0,0.0,0.0 -249,19.0,1.1368845797453413,0.7,0.0,0.0,1.0079527023910309,-10.771704565878938,1.0,0.0,0.0 -249,20.0,9.043400066156122,11.2,0.0,0.0,0.9997798908586476,-10.847439485558242,1.0,0.0,0.0 -249,21.0,0.0,0.0,0.0,0.0,1.0000529977188544,-10.850818786311452,1.0,0.0,0.0 -249,22.0,1.6536502978114054,1.6,0.0,0.0,0.992229489982976,-11.013818437794114,1.0,0.0,0.0 -249,23.0,4.495861747174757,6.7,0.0,0.0,0.9885350375014202,-11.02910276083628,1.0,0.0,0.0 -249,24.0,0.0,0.0,0.0,0.0,0.9805402606511924,-10.819243977264236,1.0,0.0,0.0 -249,25.0,1.8086800132312244,2.3,0.0,0.0,0.9667394032659078,-10.881003936002656,1.0,0.0,0.0 -249,26.0,0.0,0.0,0.0,0.0,0.9825156206463896,-10.623465566039302,1.0,0.0,0.0 -249,27.0,0.0,0.0,0.0,0.0,0.9638041632938386,-8.660137668457331,1.0,0.0,0.0 -249,28.0,1.2402377233585538,0.9,0.0,0.0,0.975886787132872,-10.813043221940882,1.0,0.0,0.0 -249,29.0,5.477716611500279,1.9,0.0,0.0,0.9516439276921757,-12.273950351689903,1.0,0.0,0.0 -250,0.0,0.0,0.0,152.35494995798896,0.0002329283705471,1.0,0.0,0.0,0.0,1.0 -250,1.0,11.21381608203359,12.7,2.639575776994049e-07,9.56399877357036,0.9811692982325212,-3.4901112239567427,0.0,1.0,0.0 -250,2.0,1.2402377233585538,1.2,0.0,0.0,0.975460112371622,-4.57804164274724,1.0,0.0,0.0 -250,3.0,3.9274194573020873,1.6,0.0,0.0,0.9690827886150774,-5.623587956583319,1.0,0.0,0.0 -250,4.0,48.67933064182324,19.0,-3.1874506684333493e-10,23.63254873004253,0.9621720592355532,-8.400163967372713,0.0,1.0,0.0 -250,5.0,0.0,0.0,0.0,0.0,0.9688807585819676,-6.679215989968289,1.0,0.0,0.0 -250,6.0,11.782258371906265,10.9,0.0,0.0,0.9597749174296296,-7.638986007235002,1.0,0.0,0.0 -250,7.0,15.502971541981925,30.0,-2.936860970282766e-10,30.279901812696764,0.9679001396870942,-7.082601110772673,0.0,1.0,0.0 -250,8.0,0.0,0.0,0.0,0.0,1.0166726053196518,-8.388062312221109,1.0,0.0,0.0 -250,9.0,2.997241164783172,2.0,0.0,0.0,1.007889850902666,-9.276247995126246,1.0,0.0,0.0 -250,10.0,0.0,0.0,-1.8421979826137838e-10,22.05195541962158,1.0599465490065327,-8.38806231224148,0.0,1.0,0.0 -250,11.0,5.787776042339918,7.5,0.0,0.0,1.0143213512279288,-8.83202531720133,1.0,0.0,0.0 -250,12.0,0.0,0.0,-3.9322683684895785e-10,9.218198696632246,1.026888901771153,-8.83202531723161,0.0,1.0,0.0 -250,13.0,3.2039474520095976,1.6,0.0,0.0,1.0036200159986388,-9.26740434371228,1.0,0.0,0.0 -250,14.0,4.237478888141726,2.5,0.0,0.0,1.0004394564745311,-9.290410657595364,1.0,0.0,0.0 -250,15.0,1.8086800132312244,1.8,0.0,0.0,1.0055010459962597,-9.117630734063091,1.0,0.0,0.0 -250,16.0,4.6508914625945765,5.8,0.0,0.0,1.0028497969543952,-9.311806564592972,1.0,0.0,0.0 -250,17.0,1.6536502978114054,0.9,0.0,0.0,0.9941220534388986,-9.604042978961196,1.0,0.0,0.0 -250,18.0,4.909274321627609,3.4,0.0,0.0,0.9926150856647834,-9.699946632014834,1.0,0.0,0.0 -250,19.0,1.1368845797453413,0.7,0.0,0.0,0.9958288123034058,-9.62375085686522,1.0,0.0,0.0 -250,20.0,9.043400066156122,11.2,0.0,0.0,0.997517003870231,-9.430991124177874,1.0,0.0,0.0 -250,21.0,0.0,0.0,0.0,0.0,0.9978986695279166,-9.42852739861847,1.0,0.0,0.0 -250,22.0,1.6536502978114054,1.6,0.0,0.0,0.9922615275729584,-9.45282887217431,1.0,0.0,0.0 -250,23.0,4.495861747174757,6.7,0.0,0.0,0.9879361412869624,-9.537747428270766,1.0,0.0,0.0 -250,24.0,0.0,0.0,0.0,0.0,0.9817335615566332,-9.2800270355397,1.0,0.0,0.0 -250,25.0,1.8086800132312244,2.3,0.0,0.0,0.9679499655434224,-9.341634777847176,1.0,0.0,0.0 -250,26.0,0.0,0.0,0.0,0.0,0.9847972817486808,-9.05263924075061,1.0,0.0,0.0 -250,27.0,0.0,0.0,0.0,0.0,0.9669319870013544,-7.012126976363927,1.0,0.0,0.0 -250,28.0,1.2402377233585538,0.9,0.0,0.0,0.9714273347466956,-9.64395631203564,1.0,0.0,0.0 -250,29.0,5.477716611500279,1.9,0.0,0.0,0.9641835944235678,-10.091348657920868,1.0,0.0,0.0 -251,0.0,0.0,0.0,152.39343218593257,0.0002833861813655,1.0,0.0,0.0,0.0,1.0 -251,1.0,11.21381608203359,12.7,3.189701787516688e-07,9.476211152451292,0.9811562763835296,-3.490747638475352,0.0,1.0,0.0 -251,2.0,1.2402377233585538,1.2,0.0,0.0,0.9754821709890144,-4.5798806092253725,1.0,0.0,0.0 -251,3.0,3.9274194573020873,1.6,0.0,0.0,0.9691101973882574,-5.625862832861484,1.0,0.0,0.0 -251,4.0,48.67933064182324,19.0,-3.7013360642830354e-10,23.650175943685998,0.9622013307767512,-8.401891032084022,0.0,1.0,0.0 -251,5.0,0.0,0.0,0.0,0.0,0.96891484201179,-6.681797371609357,1.0,0.0,0.0 -251,6.0,11.782258371906265,10.9,0.0,0.0,0.9598072159465868,-7.64120616780052,1.0,0.0,0.0 -251,7.0,15.502971541981925,30.0,-3.3373975676831603e-10,30.38164884843676,0.9679678668270852,-7.085810238520267,0.0,1.0,0.0 -251,8.0,0.0,0.0,0.0,0.0,1.0167017454825296,-8.39109295290857,1.0,0.0,0.0 -251,9.0,2.997241164783172,2.0,0.0,0.0,1.0079277725879108,-9.279509917229872,1.0,0.0,0.0 -251,10.0,0.0,0.0,-2.0416863380046168e-10,22.040924764280216,1.05995374920812,-8.39109295293115,0.0,1.0,0.0 -251,11.0,5.787776042339918,7.5,0.0,0.0,1.01441686198099,-8.835688197274443,1.0,0.0,0.0 -251,12.0,0.0,0.0,-4.515384239959795e-10,9.274218972251184,1.02705869696041,-8.835688197309212,0.0,1.0,0.0 -251,13.0,3.2039474520095976,1.6,0.0,0.0,1.003705300835404,-9.271120874584096,1.0,0.0,0.0 -251,14.0,4.237478888141726,2.5,0.0,0.0,1.000513285357204,-9.294000604260551,1.0,0.0,0.0 -251,15.0,1.8086800132312244,1.8,0.0,0.0,1.005572304566779,-9.12098414719112,1.0,0.0,0.0 -251,16.0,4.6508914625945765,5.8,0.0,0.0,1.002898295829218,-9.31512831281836,1.0,0.0,0.0 -251,17.0,1.6536502978114054,0.9,0.0,0.0,0.994183792855762,-9.60747288294164,1.0,0.0,0.0 -251,18.0,4.909274321627609,3.4,0.0,0.0,0.992669521241326,-9.703294038783556,1.0,0.0,0.0 -251,19.0,1.1368845797453413,0.7,0.0,0.0,0.9958791781105444,-9.627067787443387,1.0,0.0,0.0 -251,20.0,9.043400066156122,11.2,0.0,0.0,0.9975486121211572,-9.434439219403004,1.0,0.0,0.0 -251,21.0,0.0,0.0,0.0,0.0,0.9979281300299352,-9.43203629496055,1.0,0.0,0.0 -251,22.0,1.6536502978114054,1.6,0.0,0.0,0.9923037506336638,-9.456637975900753,1.0,0.0,0.0 -251,23.0,4.495861747174757,6.7,0.0,0.0,0.9879359935824572,-9.541886632941388,1.0,0.0,0.0 -251,24.0,0.0,0.0,0.0,0.0,0.9816277898940904,-9.285663645318508,1.0,0.0,0.0 -251,25.0,1.8086800132312244,2.3,0.0,0.0,0.967842665639572,-9.347284856968264,1.0,0.0,0.0 -251,26.0,0.0,0.0,0.0,0.0,0.9846271961129808,-9.05930434148979,1.0,0.0,0.0 -251,27.0,0.0,0.0,0.0,0.0,0.9669488672382764,-7.014876097896688,1.0,0.0,0.0 -251,28.0,1.2402377233585538,0.9,0.0,0.0,0.9780127955334424,-9.248064215890627,1.0,0.0,0.0 -251,29.0,5.477716611500279,1.9,0.0,0.0,0.9538279949933726,-10.70247642040587,1.0,0.0,0.0 -252,0.0,0.0,0.0,152.54708119097535,0.0002712725633458,1.0,0.0,0.0,0.0,1.0 -252,1.0,11.21381608203359,12.7,3.592145357330888e-07,7.896897513498231,0.9808768530611992,-3.4873900671770226,0.0,1.0,0.0 -252,2.0,1.2402377233585538,1.2,0.0,0.0,0.97623262500205,-4.601125847635998,1.0,0.0,0.0 -252,3.0,3.9274194573020873,1.6,0.0,0.0,0.9700376054855218,-5.651947188336319,1.0,0.0,0.0 -252,4.0,48.67933064182324,19.0,-4.5902971768233015e-10,23.53795523626621,0.9621121081627224,-8.400573412570834,0.0,1.0,0.0 -252,5.0,0.0,0.0,0.0,0.0,0.9692504843631242,-6.687698996125005,1.0,0.0,0.0 -252,6.0,11.782258371906265,10.9,0.0,0.0,0.9599697652094636,-7.644290346951462,1.0,0.0,0.0 -252,7.0,15.502971541981925,30.0,-3.86389369461556e-10,29.406040925977173,0.967950025332878,-7.085554114862664,0.0,1.0,0.0 -252,8.0,0.0,0.0,0.0,0.0,1.0165134776512683,-8.368332155293185,1.0,0.0,0.0 -252,9.0,2.997241164783172,2.0,0.0,0.0,1.0089888740475197,-9.241238386514372,1.0,0.0,0.0 -252,10.0,0.0,0.0,-1.8628347243348864e-10,20.49469259187394,1.0568493683356988,-8.36833215531385,0.0,1.0,0.0 -252,11.0,5.787776042339918,7.5,0.0,0.0,1.0219991241932906,-8.905370713400984,1.0,0.0,0.0 -252,12.0,0.0,0.0,-4.93742867076404e-10,13.613643073849012,1.0403195529966227,-8.905370713438236,0.0,1.0,0.0 -252,13.0,3.2039474520095976,1.6,0.0,0.0,1.0082736107370829,-9.427077607687542,1.0,0.0,0.0 -252,14.0,4.237478888141726,2.5,0.0,0.0,1.0014883074228331,-9.471302689900751,1.0,0.0,0.0 -252,15.0,1.8086800132312244,1.8,0.0,0.0,0.996031736562983,-9.55696843381011,1.0,0.0,0.0 -252,16.0,4.6508914625945765,5.8,0.0,0.0,1.0004616882596176,-9.41121833252719,1.0,0.0,0.0 -252,17.0,1.6536502978114054,0.9,0.0,0.0,0.9816696826560614,-10.139174652230537,1.0,0.0,0.0 -252,18.0,4.909274321627609,3.4,0.0,0.0,0.972230681223984,-10.450850777000552,1.0,0.0,0.0 -252,19.0,1.1368845797453413,0.7,0.0,0.0,0.9713425369157548,-10.483314690593032,1.0,0.0,0.0 -252,20.0,9.043400066156122,11.2,0.0,0.0,0.9986168889605151,-9.407883547036516,1.0,0.0,0.0 -252,21.0,0.0,0.0,0.0,0.0,0.9989934579152924,-9.409356797887538,1.0,0.0,0.0 -252,22.0,1.6536502978114054,1.6,0.0,0.0,0.9932739386067078,-9.570695391002198,1.0,0.0,0.0 -252,23.0,4.495861747174757,6.7,0.0,0.0,0.9888815833842424,-9.57081061188946,1.0,0.0,0.0 -252,24.0,0.0,0.0,0.0,0.0,0.9824932575824272,-9.300334528344216,1.0,0.0,0.0 -252,25.0,1.8086800132312244,2.3,0.0,0.0,0.9687206279554428,-9.361845659911582,1.0,0.0,0.0 -252,26.0,0.0,0.0,0.0,0.0,0.9854320648793734,-9.065305781535,1.0,0.0,0.0 -252,27.0,0.0,0.0,0.0,0.0,0.967260391291631,-7.020639125527409,1.0,0.0,0.0 -252,28.0,1.2402377233585538,0.9,0.0,0.0,0.9720712096755042,-9.655851074116343,1.0,0.0,0.0 -252,29.0,5.477716611500279,1.9,0.0,0.0,0.9648324111653016,-10.102647052580496,1.0,0.0,0.0 -253,0.0,0.0,0.0,136.3816481093774,0.8539177003473952,1.0,0.0,0.0,0.0,1.0 -253,1.0,11.21381608203359,12.7,28.120681264084837,45.9960815193492,0.9886393218912192,-25.094152662536263,0.0,1.0,0.0 -253,2.0,1.2402377233585538,1.2,0.0,0.0,0.9600704694471118,-13.492047948807,1.0,0.0,0.0 -253,3.0,3.9274194573020873,1.6,0.0,0.0,0.9547298814410484,-16.7170472742682,1.0,0.0,0.0 -253,4.0,48.67933064182324,19.0,2.42507317416115e-10,25.13060079848603,0.9736489796023836,-30.365245078712583,0.0,1.0,0.0 -253,5.0,0.0,0.0,0.0,0.0,0.9804615871214574,-29.12077964607053,1.0,0.0,0.0 -253,6.0,11.782258371906265,10.9,0.0,0.0,0.9713455844520774,-29.88113202145816,1.0,0.0,0.0 -253,7.0,15.502971541981925,30.0,9.681316454379647e-11,31.20649746979377,0.9796002439467256,-29.488403663040685,0.0,1.0,0.0 -253,8.0,0.0,0.0,0.0,0.0,1.0253360146449957,-29.09036954092772,1.0,0.0,0.0 -253,9.0,2.997241164783172,2.0,0.0,0.0,1.019090688322663,-29.074548824301225,1.0,0.0,0.0 -253,10.0,0.0,0.0,3.4452843426235864e-10,17.646685242683844,1.059964628029042,-29.09036954088993,0.0,1.0,0.0 -253,11.0,5.787776042339918,7.5,0.0,0.0,1.0283022127613624,-24.080197572420825,1.0,0.0,0.0 -253,12.0,0.0,0.0,2.449590713804609e-10,23.999582151278293,1.059999780652469,-24.080197572402795,0.0,1.0,0.0 -253,13.0,3.2039474520095976,1.6,0.0,0.0,1.013156537195631,-24.88890615539614,1.0,0.0,0.0 -253,14.0,4.237478888141726,2.5,0.0,0.0,1.0029502507352006,-25.191962435743594,1.0,0.0,0.0 -253,15.0,1.8086800132312244,1.8,0.0,0.0,1.0144450038189394,-26.30497770130979,1.0,0.0,0.0 -253,16.0,4.6508914625945765,5.8,0.0,0.0,1.0141376272313545,-28.29338837393259,1.0,0.0,0.0 -253,17.0,1.6536502978114054,0.9,0.0,0.0,0.9831625562579251,-25.85784803915777,1.0,0.0,0.0 -253,18.0,4.909274321627609,3.4,0.0,0.0,0.9737382192746032,-26.168569087752022,1.0,0.0,0.0 -253,19.0,1.1368845797453413,0.7,0.0,0.0,0.9728514529813468,-26.200932466412254,1.0,0.0,0.0 -253,20.0,9.043400066156122,11.2,0.0,0.0,1.011089440420153,-29.184190122127053,1.0,0.0,0.0 -253,21.0,0.0,0.0,0.0,0.0,1.012181201207947,-29.16942261427271,1.0,0.0,0.0 -253,22.0,1.6536502978114054,1.6,0.0,0.0,0.9867088967257636,-26.422131815590355,1.0,0.0,0.0 -253,23.0,4.495861747174757,6.7,0.0,0.0,0.9724536463240012,-27.97963499685473,1.0,0.0,0.0 -253,24.0,0.0,0.0,0.0,0.0,0.970640157648113,-29.30911232244956,1.0,0.0,0.0 -253,25.0,1.8086800132312244,2.3,0.0,0.0,0.9566943831725968,-29.37215728047709,1.0,0.0,0.0 -253,26.0,0.0,0.0,0.0,0.0,0.9773718096724672,-30.055301277737595,1.0,0.0,0.0 -253,27.0,0.0,0.0,0.0,0.0,0.9772020361888486,-29.256437346763725,1.0,0.0,0.0 -253,28.0,1.2402377233585538,0.9,0.0,0.0,0.9638945584153528,-30.65576041605456,1.0,0.0,0.0 -253,29.0,5.477716611500279,1.9,0.0,0.0,0.956592490550712,-31.11021956823885,1.0,0.0,0.0 -254,0.0,0.0,0.0,152.37207282664266,0.0003609556563866,1.0,0.0,0.0,0.0,1.0 -254,1.0,11.21381608203359,12.7,4.1737896004757057e-07,9.504623460080056,0.9811244293698032,-3.4919452861767586,0.0,1.0,0.0 -254,2.0,1.2402377233585538,1.2,0.0,0.0,0.9755742860006732,-4.573982770973264,1.0,0.0,0.0 -254,3.0,3.9274194573020873,1.6,0.0,0.0,0.969222984463665,-5.618504066444021,1.0,0.0,0.0 -254,4.0,48.67933064182324,19.0,-4.6287543330090965e-10,23.64618061773122,0.962071488685555,-8.408167648769474,0.0,1.0,0.0 -254,5.0,0.0,0.0,0.0,0.0,0.9686954513550554,-6.691446953137392,1.0,0.0,0.0 -254,6.0,11.782258371906265,10.9,0.0,0.0,0.9596222781129524,-7.649531549244418,1.0,0.0,0.0 -254,7.0,15.502971541981925,30.0,-4.177720655971998e-10,30.26477498384188,0.9677167360268308,-7.094975867097638,0.0,1.0,0.0 -254,8.0,0.0,0.0,0.0,0.0,1.015780814971495,-8.47685218361243,1.0,0.0,0.0 -254,9.0,2.997241164783172,2.0,0.0,0.0,1.0061742640599862,-9.406225312181514,1.0,0.0,0.0 -254,10.0,0.0,0.0,-2.1346077772633647e-10,22.519773570434403,1.0599717375835347,-8.476852183636058,0.0,1.0,0.0 -254,11.0,5.787776042339918,7.5,0.0,0.0,1.015944481440279,-8.686042272477613,1.0,0.0,0.0 -254,12.0,0.0,0.0,-5.665219122491869e-10,8.897030203626745,1.028060348282038,-8.68604227252112,0.0,1.0,0.0 -254,13.0,3.2039474520095976,1.6,0.0,0.0,1.0050573540372076,-9.152088088142978,1.0,0.0,0.0 -254,14.0,4.237478888141726,2.5,0.0,0.0,1.001465755482612,-9.20208348213084,1.0,0.0,0.0 -254,15.0,1.8086800132312244,1.8,0.0,0.0,1.0107129791711778,-8.791660922852872,1.0,0.0,0.0 -254,16.0,4.6508914625945765,5.8,0.0,0.0,0.9997627636945696,-9.523034438492214,1.0,0.0,0.0 -254,17.0,1.6536502978114054,0.9,0.0,0.0,0.9941622335498618,-9.591916417695948,1.0,0.0,0.0 -254,18.0,4.909274321627609,3.4,0.0,0.0,0.9920755256439724,-9.733520238902296,1.0,0.0,0.0 -254,19.0,1.1368845797453413,0.7,0.0,0.0,0.9949842345230642,-9.681201257605306,1.0,0.0,0.0 -254,20.0,9.043400066156122,11.2,0.0,0.0,0.9945712382899276,-9.57088561677188,1.0,0.0,0.0 -254,21.0,0.0,0.0,0.0,0.0,0.9985682295405556,-9.503940486615193,1.0,0.0,0.0 -254,22.0,1.6536502978114054,1.6,0.0,0.0,0.9931580374875544,-9.412654835998126,1.0,0.0,0.0 -254,23.0,4.495861747174757,6.7,0.0,0.0,0.988665240026618,-9.562944841685797,1.0,0.0,0.0 -254,24.0,0.0,0.0,0.0,0.0,0.982153111424366,-9.296559450265732,1.0,0.0,0.0 -254,25.0,1.8086800132312244,2.3,0.0,0.0,0.9683755738973192,-9.358113809890613,1.0,0.0,0.0 -254,26.0,0.0,0.0,0.0,0.0,0.9850188578091448,-9.064159044405091,1.0,0.0,0.0 -254,27.0,0.0,0.0,0.0,0.0,0.9667916473605358,-7.025073452664553,1.0,0.0,0.0 -254,28.0,1.2402377233585538,0.9,0.0,0.0,0.9716520858135058,-9.655206547583996,1.0,0.0,0.0 -254,29.0,5.477716611500279,1.9,0.0,0.0,0.9644100712572192,-10.102390589476668,1.0,0.0,0.0 -255,0.0,0.0,0.0,152.35494995798896,0.0002329283705471,1.0,0.0,0.0,0.0,1.0 -255,1.0,11.21381608203359,12.7,2.639575776994049e-07,9.56399877357036,0.9811692982325212,-3.4901112239567427,0.0,1.0,0.0 -255,2.0,1.2402377233585538,1.2,0.0,0.0,0.975460112371622,-4.57804164274724,1.0,0.0,0.0 -255,3.0,3.9274194573020873,1.6,0.0,0.0,0.9690827886150774,-5.623587956583319,1.0,0.0,0.0 -255,4.0,48.67933064182324,19.0,-3.1874506684333493e-10,23.63254873004253,0.9621720592355532,-8.400163967372713,0.0,1.0,0.0 -255,5.0,0.0,0.0,0.0,0.0,0.9688807585819676,-6.679215989968289,1.0,0.0,0.0 -255,6.0,11.782258371906265,10.9,0.0,0.0,0.9597749174296296,-7.638986007235002,1.0,0.0,0.0 -255,7.0,15.502971541981925,30.0,-2.936860970282766e-10,30.279901812696764,0.9679001396870942,-7.082601110772673,0.0,1.0,0.0 -255,8.0,0.0,0.0,0.0,0.0,1.0166726053196518,-8.388062312221109,1.0,0.0,0.0 -255,9.0,2.997241164783172,2.0,0.0,0.0,1.007889850902666,-9.276247995126246,1.0,0.0,0.0 -255,10.0,0.0,0.0,-1.8421979826137838e-10,22.05195541962158,1.0599465490065327,-8.38806231224148,0.0,1.0,0.0 -255,11.0,5.787776042339918,7.5,0.0,0.0,1.0143213512279288,-8.83202531720133,1.0,0.0,0.0 -255,12.0,0.0,0.0,-3.9322683684895785e-10,9.218198696632246,1.026888901771153,-8.83202531723161,0.0,1.0,0.0 -255,13.0,3.2039474520095976,1.6,0.0,0.0,1.0036200159986388,-9.26740434371228,1.0,0.0,0.0 -255,14.0,4.237478888141726,2.5,0.0,0.0,1.0004394564745311,-9.290410657595364,1.0,0.0,0.0 -255,15.0,1.8086800132312244,1.8,0.0,0.0,1.0055010459962597,-9.117630734063091,1.0,0.0,0.0 -255,16.0,4.6508914625945765,5.8,0.0,0.0,1.0028497969543952,-9.311806564592972,1.0,0.0,0.0 -255,17.0,1.6536502978114054,0.9,0.0,0.0,0.9941220534388986,-9.604042978961196,1.0,0.0,0.0 -255,18.0,4.909274321627609,3.4,0.0,0.0,0.9926150856647834,-9.699946632014834,1.0,0.0,0.0 -255,19.0,1.1368845797453413,0.7,0.0,0.0,0.9958288123034058,-9.62375085686522,1.0,0.0,0.0 -255,20.0,9.043400066156122,11.2,0.0,0.0,0.997517003870231,-9.430991124177874,1.0,0.0,0.0 -255,21.0,0.0,0.0,0.0,0.0,0.9978986695279166,-9.42852739861847,1.0,0.0,0.0 -255,22.0,1.6536502978114054,1.6,0.0,0.0,0.9922615275729584,-9.45282887217431,1.0,0.0,0.0 -255,23.0,4.495861747174757,6.7,0.0,0.0,0.9879361412869624,-9.537747428270766,1.0,0.0,0.0 -255,24.0,0.0,0.0,0.0,0.0,0.9817335615566332,-9.2800270355397,1.0,0.0,0.0 -255,25.0,1.8086800132312244,2.3,0.0,0.0,0.9679499655434224,-9.341634777847176,1.0,0.0,0.0 -255,26.0,0.0,0.0,0.0,0.0,0.9847972817486808,-9.05263924075061,1.0,0.0,0.0 -255,27.0,0.0,0.0,0.0,0.0,0.9669319870013544,-7.012126976363927,1.0,0.0,0.0 -255,28.0,1.2402377233585538,0.9,0.0,0.0,0.9714273347466956,-9.64395631203564,1.0,0.0,0.0 -255,29.0,5.477716611500279,1.9,0.0,0.0,0.9641835944235678,-10.091348657920868,1.0,0.0,0.0 -256,0.0,0.0,0.0,152.3672351598462,0.0002663732676211,1.0,0.0,0.0,0.0,1.0 -256,1.0,11.21381608203359,12.7,3.276739047773691e-07,9.35113355034754,0.9811518355888414,-3.4836088486022443,0.0,1.0,0.0 -256,2.0,1.2402377233585538,1.2,0.0,0.0,0.9755287339974056,-4.597466591384886,1.0,0.0,0.0 -256,3.0,3.9274194573020873,1.6,0.0,0.0,0.9691697554771564,-5.647680706476564,1.0,0.0,0.0 -256,4.0,48.67933064182324,19.0,-3.9490370844761586e-10,23.651223952289456,0.962215182801056,-8.378372415789903,0.0,1.0,0.0 -256,5.0,0.0,0.0,0.0,0.0,0.9689611981187624,-6.641248379383355,1.0,0.0,0.0 -256,6.0,11.782258371906265,10.9,0.0,0.0,0.9598428737459578,-7.607585457942718,1.0,0.0,0.0 -256,7.0,15.502971541981925,30.0,-3.681031901779303e-10,30.469022908270333,0.9680641149220014,-7.0509801800402245,0.0,1.0,0.0 -256,8.0,0.0,0.0,0.0,0.0,1.0168704006239593,-8.898358336001495,1.0,0.0,0.0 -256,9.0,2.997241164783172,2.0,0.0,0.0,1.0088624808093316,-10.070379838209924,1.0,0.0,0.0 -256,10.0,0.0,0.0,-2.2602204114048026e-10,21.604764632952666,1.0592929526880577,-8.8983583360265,0.0,1.0,0.0 -256,11.0,5.787776042339918,7.5,0.0,0.0,1.0169747332135768,-9.220801183762042,1.0,0.0,0.0 -256,12.0,0.0,0.0,-4.97402468156108e-10,10.01191142603636,1.0305755564704908,-9.220801183800113,0.0,1.0,0.0 -256,13.0,3.2039474520095976,1.6,0.0,0.0,1.0062083610650356,-9.69387068807909,1.0,0.0,0.0 -256,14.0,4.237478888141726,2.5,0.0,0.0,1.0026707837370934,-9.754134692589007,1.0,0.0,0.0 -256,15.0,1.8086800132312244,1.8,0.0,0.0,1.0071574150116749,-9.676105840521515,1.0,0.0,0.0 -256,16.0,4.6508914625945765,5.8,0.0,0.0,1.004126140135938,-10.033115842338065,1.0,0.0,0.0 -256,17.0,1.6536502978114054,0.9,0.0,0.0,0.9958955449439072,-10.182575911007016,1.0,0.0,0.0 -256,18.0,4.909274321627609,3.4,0.0,0.0,0.994120577151682,-10.347434144862202,1.0,0.0,0.0 -256,19.0,1.1368845797453413,0.7,0.0,0.0,0.9971849172886444,-10.307911253357688,1.0,0.0,0.0 -256,20.0,9.043400066156122,11.2,0.0,0.0,0.9985460415082212,-10.18540557410395,1.0,0.0,0.0 -256,21.0,0.0,0.0,0.0,0.0,0.9989462175040515,-10.170295212836413,1.0,0.0,0.0 -256,22.0,1.6536502978114054,1.6,0.0,0.0,0.9942363856701948,-9.962780592433388,1.0,0.0,0.0 -256,23.0,4.495861747174757,6.7,0.0,0.0,0.9895671337190488,-10.110871540330963,1.0,0.0,0.0 -256,24.0,0.0,0.0,0.0,0.0,0.98356468558377,-9.62419932081206,1.0,0.0,0.0 -256,25.0,1.8086800132312244,2.3,0.0,0.0,0.9698074922016088,-9.685574585408668,1.0,0.0,0.0 -256,26.0,0.0,0.0,0.0,0.0,0.9866754931670628,-9.254313995730875,1.0,0.0,0.0 -256,27.0,0.0,0.0,0.0,0.0,0.9670918593419974,-7.004873036254041,1.0,0.0,0.0 -256,28.0,1.2402377233585538,0.9,0.0,0.0,0.9733324104414388,-9.843351903411026,1.0,0.0,0.0 -256,29.0,5.477716611500279,1.9,0.0,0.0,0.9661032719909122,-10.288983195486743,1.0,0.0,0.0 -257,0.0,0.0,0.0,111.17971515115472,5.936198377298752e-06,1.0,0.0,0.0,0.0,1.0 -257,1.0,11.21381608203359,12.7,40.36122814013512,-3.1567942638681146,0.9849738697212904,-2.3538987857482683,0.0,1.0,0.0 -257,2.0,1.2402377233585538,1.2,0.0,0.0,0.9825921630895116,-3.7906144607929866,1.0,0.0,0.0 -257,3.0,3.9274194573020873,1.6,0.0,0.0,0.977802267323423,-4.64477569199804,1.0,0.0,0.0 -257,4.0,48.67933064182324,19.0,9.954127632468988e-09,22.13601630223883,0.9663008199112132,-8.320258060600516,0.0,1.0,0.0 -257,5.0,0.0,0.0,0.0,0.0,0.9776010686703358,-5.500077793443578,1.0,0.0,0.0 -257,6.0,11.782258371906265,10.9,0.0,0.0,0.9657349914611608,-5.922641135353058,1.0,0.0,0.0 -257,7.0,15.502971541981925,30.0,2.9855329142943194e-09,39.99999962819011,0.9924107297970308,-8.753097955290425,0.0,1.0,0.0 -257,8.0,0.0,0.0,0.0,0.0,1.024038453442943,-7.238730145598685,1.0,0.0,0.0 -257,9.0,2.997241164783172,2.0,0.0,0.0,1.018318380404781,-8.141199860745548,1.0,0.0,0.0 -257,10.0,0.0,0.0,1.214654543954256e-08,18.32655655623925,1.0599999984365305,-7.23873014426511,0.0,1.0,0.0 -257,11.0,5.787776042339918,7.5,0.0,0.0,1.037977490514404,-7.686103706404589,1.0,0.0,0.0 -257,12.0,0.0,0.0,1.3871848939684392e-08,16.6741841835158,1.059999997968795,-7.686103705393264,0.0,1.0,0.0 -257,13.0,3.2039474520095976,1.6,0.0,0.0,1.0282273270049385,-8.063178212944823,1.0,0.0,0.0 -257,14.0,4.237478888141726,2.5,0.0,0.0,1.0260662255708335,-8.062800515386837,1.0,0.0,0.0 -257,15.0,1.8086800132312244,1.8,0.0,0.0,1.0235251816698123,-7.944994026850346,1.0,0.0,0.0 -257,16.0,4.6508914625945765,5.8,0.0,0.0,1.01571721260582,-8.171750387528942,1.0,0.0,0.0 -257,17.0,1.6536502978114054,0.9,0.0,0.0,1.0145588554040317,-8.393784426491122,1.0,0.0,0.0 -257,18.0,4.909274321627609,3.4,0.0,0.0,1.0099348110809043,-8.504497202231963,1.0,0.0,0.0 -257,19.0,1.1368845797453413,0.7,0.0,0.0,1.0114350011212248,-8.440065718329619,1.0,0.0,0.0 -257,20.0,9.043400066156122,11.2,0.0,0.0,1.006637975600248,-8.348762470699317,1.0,0.0,0.0 -257,21.0,0.0,0.0,0.0,0.0,1.0065641217561927,-8.363754383881039,1.0,0.0,0.0 -257,22.0,1.6536502978114054,1.6,0.0,0.0,0.9836317212027014,-8.807443390116912,1.0,0.0,0.0 -257,23.0,4.495861747174757,6.7,0.0,0.0,0.9902456397988476,-8.669041218589424,1.0,0.0,0.0 -257,24.0,0.0,0.0,0.0,0.0,0.9870462692718448,-8.57422348324925,1.0,0.0,0.0 -257,25.0,1.8086800132312244,2.3,0.0,0.0,0.9733389942684668,-8.63516036565117,1.0,0.0,0.0 -257,26.0,0.0,0.0,0.0,0.0,0.9919898421577404,-8.445404232028727,1.0,0.0,0.0 -257,27.0,0.0,0.0,0.0,0.0,0.9787229954063382,-6.469239355368073,1.0,0.0,0.0 -257,28.0,1.2402377233585538,0.9,0.0,0.0,0.9633837034263286,-9.749225066930682,1.0,0.0,0.0 -257,29.0,5.477716611500279,1.9,0.0,0.0,0.940000001801421,-11.031959352104352,1.0,0.0,0.0 -258,0.0,0.0,0.0,152.36178099651858,0.0029644153376473,1.0,0.0,0.0,0.0,1.0 -258,1.0,11.21381608203359,12.7,2.704365914053258e-06,10.296632729991742,0.9812462537473156,-3.4918920771420274,0.0,1.0,0.0 -258,2.0,1.2402377233585538,1.2,0.0,0.0,0.9752301309309036,-4.57456410455389,1.0,0.0,0.0 -258,3.0,3.9274194573020873,1.6,0.0,0.0,0.968798959196983,-5.619358706409074,1.0,0.0,0.0 -258,4.0,48.67933064182324,19.0,3.363971096212272e-09,23.86965416808985,0.9621650547603268,-8.402317424260461,0.0,1.0,0.0 -258,5.0,0.0,0.0,0.0,0.0,0.9683088169318372,-6.669667532466364,1.0,0.0,0.0 -258,6.0,11.782258371906265,10.9,0.0,0.0,0.9594322491061829,-7.634104236010632,1.0,0.0,0.0 -258,7.0,15.502971541981925,30.0,3.034170342188944e-09,32.53936353785033,0.9676453334396606,-7.089556046597044,0.0,1.0,0.0 -258,8.0,0.0,0.0,0.0,0.0,1.016460977721556,-8.378001302167073,1.0,0.0,0.0 -258,9.0,2.997241164783172,2.0,0.0,0.0,1.0077479599123425,-9.265521404011764,1.0,0.0,0.0 -258,10.0,0.0,0.0,2.091573839409805e-09,22.175070571462918,1.0599753362280264,-8.378001301935722,0.0,1.0,0.0 -258,11.0,5.787776042339918,7.5,0.0,0.0,1.0148743496553223,-8.833302889595174,1.0,0.0,0.0 -258,12.0,0.0,0.0,4.137416858699224e-09,9.91931872435137,1.02837818167121,-8.833302889277181,0.0,1.0,0.0 -258,13.0,3.2039474520095976,1.6,0.0,0.0,1.0040626464468778,-9.267339405456203,1.0,0.0,0.0 -258,14.0,4.237478888141726,2.5,0.0,0.0,1.0007779735586178,-9.286812577779555,1.0,0.0,0.0 -258,15.0,1.8086800132312244,1.8,0.0,0.0,1.005762960683383,-9.112223334304048,1.0,0.0,0.0 -258,16.0,4.6508914625945765,5.8,0.0,0.0,1.0028318129262603,-9.303220251680402,1.0,0.0,0.0 -258,17.0,1.6536502978114054,0.9,0.0,0.0,0.9942931030214768,-9.597755536253596,1.0,0.0,0.0 -258,18.0,4.909274321627609,3.4,0.0,0.0,0.992686471825312,-9.69210964845107,1.0,0.0,0.0 -258,19.0,1.1368845797453413,0.7,0.0,0.0,0.9958473990429983,-9.61510390923977,1.0,0.0,0.0 -258,20.0,9.043400066156122,11.2,0.0,0.0,0.9973444625056448,-9.419532862297856,1.0,0.0,0.0 -258,21.0,0.0,0.0,0.0,0.0,0.997717093097054,-9.416805828582012,1.0,0.0,0.0 -258,22.0,1.6536502978114054,1.6,0.0,0.0,0.9923280241381208,-9.44387709275314,1.0,0.0,0.0 -258,23.0,4.495861747174757,6.7,0.0,0.0,0.9876383673540142,-9.521775809410087,1.0,0.0,0.0 -258,24.0,0.0,0.0,0.0,0.0,0.9807878013284,-9.246100144647809,1.0,0.0,0.0 -258,25.0,1.8086800132312244,2.3,0.0,0.0,0.9669905282745228,-9.307828480175,1.0,0.0,0.0 -258,26.0,0.0,0.0,0.0,0.0,0.9834507655031326,-9.008064100919064,1.0,0.0,0.0 -258,27.0,0.0,0.0,0.0,0.0,0.9649358825679796,-6.96376802430706,1.0,0.0,0.0 -258,28.0,1.2402377233585538,0.9,0.0,0.0,0.9700614906582272,-9.60102332835322,1.0,0.0,0.0 -258,29.0,5.477716611500279,1.9,0.0,0.0,0.962807244640208,-10.04968471015379,1.0,0.0,0.0 -259,0.0,0.0,0.0,154.16549981892018,0.1142266044104722,1.0,0.0,0.0,0.0,1.0 -259,1.0,11.2282521008675,12.7,0.0,0.0,0.9788597996645736,-3.9613142319803623,0.0,1.0,0.0 -259,2.0,1.2418343337364977,1.2,0.0,0.0,0.97981325269846,-3.3989934671018998,1.0,0.0,0.0 -259,3.0,3.932475390165576,1.6,0.0,0.0,0.9743639776408984,-4.159340073570173,1.0,0.0,0.0 -259,4.0,48.741997599157536,19.0,4.3524460889878903e-10,30.53992338130996,0.9686345894986392,-10.20898252477205,0.0,1.0,0.0 -259,5.0,0.0,0.0,0.0,0.0,0.9692484288556824,-9.671907193108447,1.0,0.0,0.0 -259,6.0,11.797426170496728,10.9,0.0,0.0,0.9624465636303792,-10.144402917516098,1.0,0.0,0.0 -259,7.0,15.522929171706222,30.0,7.47731863204082e-10,31.280623502028615,0.9685794418017224,-10.073773199078577,0.0,1.0,0.0 -259,8.0,0.0,0.0,0.0,0.0,1.0164246430888273,-10.810594485094455,1.0,0.0,0.0 -259,9.0,3.001099639863203,2.0,0.0,0.0,1.006957338757632,-11.4032443075973,1.0,0.0,0.0 -259,10.0,0.0,0.0,3.5626125246429683e-10,22.205136183858997,1.0599971047996146,-10.810594485055054,0.0,1.0,0.0 -259,11.0,5.795226890770322,7.5,0.0,0.0,1.0383196994702155,-8.571466127188556,1.0,0.0,0.0 -259,12.0,0.0,0.0,4.424351558114886e-09,16.415078975045276,1.0599999926073276,-8.571466126866104,0.0,1.0,0.0 -259,13.0,3.2080720288192857,1.6,0.0,0.0,1.009690474838153,-10.031256281610393,1.0,0.0,0.0 -259,14.0,4.2429339735997,2.5,0.0,0.0,0.981983621320052,-10.709685922026663,1.0,0.0,0.0 -259,15.0,1.8110084033657257,1.8,0.0,0.0,1.01693988131288,-9.811451183224658,1.0,0.0,0.0 -259,16.0,4.656878751511866,5.8,0.0,0.0,1.0062517458644349,-11.002933842616772,1.0,0.0,0.0 -259,17.0,1.6557791116486635,0.9,0.0,0.0,0.978153124394282,-10.867888900634444,1.0,0.0,0.0 -259,18.0,4.91559423770697,3.4,0.0,0.0,0.988478974221198,-12.036471269556428,1.0,0.0,0.0 -259,19.0,1.1383481392584565,0.7,0.0,0.0,0.9925111680039652,-11.908771442933327,1.0,0.0,0.0 -259,20.0,9.05504201682863,11.2,0.0,0.0,0.9955733478761616,-11.550142450449563,1.0,0.0,0.0 -259,21.0,0.0,0.0,0.0,0.0,0.9956425888285108,-11.544442645664327,1.0,0.0,0.0 -259,22.0,1.6557791116486635,1.6,0.0,0.0,0.9789085822472112,-11.144418350064774,1.0,0.0,0.0 -259,23.0,4.5016494597948045,6.7,0.0,0.0,0.9815702133545778,-11.584850416052616,1.0,0.0,0.0 -259,24.0,0.0,0.0,0.0,0.0,0.9765679517754978,-11.704670925459304,1.0,0.0,0.0 -259,25.0,1.8110084033657257,2.3,0.0,0.0,0.9627030636325692,-11.767481315407554,1.0,0.0,0.0 -259,26.0,0.0,0.0,0.0,0.0,0.980556420314076,-11.709556751496274,1.0,0.0,0.0 -259,27.0,0.0,0.0,0.0,0.0,0.967048044677594,-9.959253521987971,1.0,0.0,0.0 -259,28.0,1.2418343337364977,0.9,0.0,0.0,0.9671156009852682,-12.307087048379604,1.0,0.0,0.0 -259,29.0,5.484768307336197,1.9,0.0,0.0,0.9598322892653898,-12.759188503285271,1.0,0.0,0.0 -260,0.0,0.0,0.0,138.00001978096557,0.0005025112791656,1.0,0.0,0.0,0.0,1.0 -260,1.0,11.2282521008675,12.7,16.76947095044372,12.968431482361858,0.9751781577050076,-4.637418398810262,0.0,1.0,0.0 -260,2.0,1.2418343337364977,1.2,0.0,0.0,0.9471465966167584,-8.069816081893865,1.0,0.0,0.0 -260,3.0,3.932475390165576,1.6,0.0,0.0,0.9476491554297172,-8.04670852276858,1.0,0.0,0.0 -260,4.0,48.741997599157536,19.0,2.4421113018867803e-10,25.971635123820533,0.9562236905591228,-11.03685994637952,0.0,1.0,0.0 -260,5.0,0.0,0.0,0.0,0.0,0.9577458082552498,-10.686499491626275,1.0,0.0,0.0 -260,6.0,11.797426170496728,10.9,0.0,0.0,0.9504233478615236,-11.089402293547748,1.0,0.0,0.0 -260,7.0,15.522929171706222,30.0,1.9973889491476414e-10,26.53456097560032,0.9553367613009378,-11.071247269592442,0.0,1.0,0.0 -260,8.0,0.0,0.0,0.0,0.0,1.0076934710471508,-12.158919678900787,1.0,0.0,0.0 -260,9.0,3.001099639863203,2.0,0.0,0.0,0.998947480219869,-12.922219051434254,1.0,0.0,0.0 -260,10.0,0.0,0.0,1.7808700337410307e-10,23.002755314112548,1.053125593619459,-12.158919678880787,0.0,1.0,0.0 -260,11.0,5.795226890770322,7.5,0.0,0.0,1.0117676025966331,-11.979022560316723,1.0,0.0,0.0 -260,12.0,0.0,0.0,1.2733048915254074e-10,19.112764401296907,1.0375569062959742,-11.979022560306992,0.0,1.0,0.0 -260,13.0,3.2080720288192857,1.6,0.0,0.0,1.0003419236794553,-12.48817316546933,1.0,0.0,0.0 -260,14.0,4.2429339735997,2.5,0.0,0.0,0.9960030263076972,-12.56568087353193,1.0,0.0,0.0 -260,15.0,1.8110084033657257,1.8,0.0,0.0,0.9998079200995764,-12.465418620550343,1.0,0.0,0.0 -260,16.0,4.656878751511866,5.8,0.0,0.0,0.9949906009406388,-12.87018162327728,1.0,0.0,0.0 -260,17.0,1.6557791116486635,0.9,0.0,0.0,0.988000719264545,-13.01312417556738,1.0,0.0,0.0 -260,18.0,4.91559423770697,3.4,0.0,0.0,0.9855197540417756,-13.18806661770594,1.0,0.0,0.0 -260,19.0,1.1383481392584565,0.7,0.0,0.0,0.9882487207399936,-13.151351975181704,1.0,0.0,0.0 -260,20.0,9.05504201682863,11.2,0.0,0.0,0.9885853096066576,-13.069945857404038,1.0,0.0,0.0 -260,21.0,0.0,0.0,0.0,0.0,0.9890060939152686,-13.0641636716177,1.0,0.0,0.0 -260,22.0,1.6557791116486635,1.6,0.0,0.0,0.986077014260609,-12.865111552219169,1.0,0.0,0.0 -260,23.0,4.5016494597948045,6.7,0.0,0.0,0.9795029835833792,-13.135005752267457,1.0,0.0,0.0 -260,24.0,0.0,0.0,0.0,0.0,0.971361856561916,-13.027435459186854,1.0,0.0,0.0 -260,25.0,1.8110084033657257,2.3,0.0,0.0,0.9574204619938166,-13.090930905714544,1.0,0.0,0.0 -260,26.0,0.0,0.0,0.0,0.0,0.9733527799803764,-12.89408262925174,1.0,0.0,0.0 -260,27.0,0.0,0.0,0.0,0.0,0.955598015923144,-10.998295775681004,1.0,0.0,0.0 -260,28.0,1.2418343337364977,0.9,0.0,0.0,0.9598068202941624,-13.500612380251674,1.0,0.0,0.0 -260,29.0,5.484768307336197,1.9,0.0,0.0,0.952466346832241,-13.959671955528297,1.0,0.0,0.0 -261,0.0,0.0,0.0,153.4337597472986,0.0008795763828395,1.0,0.0,0.0,0.0,1.0 -261,1.0,11.2282521008675,12.7,2.0580873447373905e-06,-13.7170203147998,0.9789200136102942,-3.4753583801073007,0.0,1.0,0.0 -261,2.0,1.2418343337364977,1.2,0.0,0.0,0.981507648592747,-4.697965861404673,1.0,0.0,0.0 -261,3.0,3.932475390165576,1.6,0.0,0.0,0.9765506592627567,-5.769914591849079,1.0,0.0,0.0 -261,4.0,48.741997599157536,19.0,3.0515407533404686e-09,35.39903050487078,0.9772509026077898,-8.626326041654242,0.0,1.0,0.0 -261,5.0,0.0,0.0,0.0,0.0,0.977210685933712,-6.856473210626937,1.0,0.0,0.0 -261,6.0,11.797426170496728,10.9,0.0,0.0,0.970967773674011,-7.82815457485276,1.0,0.0,0.0 -261,7.0,15.522929171706222,30.0,7.049507335425727e-09,39.99965974339828,0.9920579023014612,-10.116487953560672,0.0,1.0,0.0 -261,8.0,0.0,0.0,0.0,0.0,1.022206249607949,-8.64729367422442,1.0,0.0,0.0 -261,9.0,3.001099639863203,2.0,0.0,0.0,1.014782708442599,-9.57970201086876,1.0,0.0,0.0 -261,10.0,0.0,0.0,4.47328949098771e-09,19.25970479989624,1.059998916524198,-8.647293673732413,0.0,1.0,0.0 -261,11.0,5.795226890770322,7.5,0.0,0.0,1.038900175017378,-8.75938483603823,1.0,0.0,0.0 -261,12.0,0.0,0.0,1.8882701508049077e-09,15.973864601644756,1.05999777629765,-8.75938483590069,0.0,1.0,0.0 -261,13.0,3.2080720288192857,1.6,0.0,0.0,1.013640516892414,-9.768997176058868,1.0,0.0,0.0 -261,14.0,4.2429339735997,2.5,0.0,0.0,0.9921689402896248,-10.057388837950384,1.0,0.0,0.0 -261,15.0,1.8110084033657257,1.8,0.0,0.0,1.022256546630844,-9.164395306686265,1.0,0.0,0.0 -261,16.0,4.656878751511866,5.8,0.0,0.0,1.0129548914662057,-9.544898859230749,1.0,0.0,0.0 -261,17.0,1.6557791116486635,0.9,0.0,0.0,0.9912010191334768,-10.211174873429243,1.0,0.0,0.0 -261,18.0,4.91559423770697,3.4,0.0,0.0,0.9928661139808076,-10.21101300796088,1.0,0.0,0.0 -261,19.0,1.1383481392584565,0.7,0.0,0.0,0.9977587209313304,-10.084680351050933,1.0,0.0,0.0 -261,20.0,9.05504201682863,11.2,0.0,0.0,1.0037951666655214,-9.774674237504712,1.0,0.0,0.0 -261,21.0,0.0,0.0,0.0,0.0,1.0039549729603496,-9.785406474765956,1.0,0.0,0.0 -261,22.0,1.6557791116486635,1.6,0.0,0.0,0.9887598653384868,-10.11410906859333,1.0,0.0,0.0 -261,23.0,4.5016494597948045,6.7,0.0,0.0,0.9908016304209236,-10.053202376331727,1.0,0.0,0.0 -261,24.0,0.0,0.0,0.0,0.0,0.9872868239154424,-9.946071886918036,1.0,0.0,0.0 -261,25.0,1.8110084033657257,2.3,0.0,0.0,0.973576803476804,-10.007506451022984,1.0,0.0,0.0 -261,26.0,0.0,0.0,0.0,0.0,0.9920311107703794,-9.809751422131876,1.0,0.0,0.0 -261,27.0,0.0,0.0,0.0,0.0,0.9783839066459968,-7.828735396262626,1.0,0.0,0.0 -261,28.0,1.2418343337364977,0.9,0.0,0.0,0.9634027864649872,-11.11564592565588,1.0,0.0,0.0 -261,29.0,5.484768307336197,1.9,0.0,0.0,0.9400003392423856,-12.400377240956823,1.0,0.0,0.0 -262,0.0,0.0,0.0,153.03837487225417,0.0019646670923911,1.0,0.0,0.0,0.0,1.0 -262,1.0,11.2282521008675,12.7,1.520382039579621e-06,9.927071646665311,0.9804168803952952,-3.674624636062205,0.0,1.0,0.0 -262,2.0,1.2418343337364977,1.2,0.0,0.0,0.9767444790533748,-4.114337194642856,1.0,0.0,0.0 -262,3.0,3.932475390165576,1.6,0.0,0.0,0.9706182111859066,-5.047442982508947,1.0,0.0,0.0 -262,4.0,48.741997599157536,19.0,-3.2559825038953107e-09,35.13585746007158,0.959946039760529,-11.270096994338282,0.0,1.0,0.0 -262,5.0,0.0,0.0,0.0,0.0,0.9715110131008134,-5.833550360506502,1.0,0.0,0.0 -262,6.0,11.797426170496728,10.9,0.0,0.0,0.9418248935971107,-11.845992328733276,1.0,0.0,0.0 -262,7.0,15.522929171706222,30.0,-3.819836640682085e-09,28.385905659768994,0.9697929959818482,-6.224467891690767,0.0,1.0,0.0 -262,8.0,0.0,0.0,0.0,0.0,1.0138540163627732,-7.58684986299725,1.0,0.0,0.0 -262,9.0,3.001099639863203,2.0,0.0,0.0,1.0059087774002011,-8.502409073590877,1.0,0.0,0.0 -262,10.0,0.0,0.0,-4.180167704268221e-09,18.285736108266924,1.0500746149412126,-7.586849863465182,0.0,1.0,0.0 -262,11.0,5.795226890770322,7.5,0.0,0.0,1.011101178387629,-8.14492917382628,1.0,0.0,0.0 -262,12.0,0.0,0.0,-4.060709478213635e-09,6.917538850723897,1.0205903474894498,-8.144929174141932,0.0,1.0,0.0 -262,13.0,3.2080720288192857,1.6,0.0,0.0,1.0005444589821946,-8.57065144341545,1.0,0.0,0.0 -262,14.0,4.2429339735997,2.5,0.0,0.0,0.9976208007516052,-8.585139256910002,1.0,0.0,0.0 -262,15.0,1.8110084033657257,1.8,0.0,0.0,1.0028581480670713,-8.396782109751419,1.0,0.0,0.0 -262,16.0,4.656878751511866,5.8,0.0,0.0,1.0006317845517971,-8.55425337322528,1.0,0.0,0.0 -262,17.0,1.6557791116486635,0.9,0.0,0.0,0.9915761149935388,-8.876976920422791,1.0,0.0,0.0 -262,18.0,4.91559423770697,3.4,0.0,0.0,0.9902368110190484,-8.959213408273513,1.0,0.0,0.0 -262,19.0,1.1383481392584565,0.7,0.0,0.0,0.9935513232834962,-8.874986280348411,1.0,0.0,0.0 -262,20.0,9.05504201682863,11.2,0.0,0.0,0.9955957863225164,-8.660218861850238,1.0,0.0,0.0 -262,21.0,0.0,0.0,0.0,0.0,0.9960047107781084,-8.658410762762397,1.0,0.0,0.0 -262,22.0,1.6557791116486635,1.6,0.0,0.0,0.9899664522613713,-8.725708213874276,1.0,0.0,0.0 -262,23.0,4.5016494597948045,6.7,0.0,0.0,0.9863526483660504,-8.779821237698973,1.0,0.0,0.0 -262,24.0,0.0,0.0,0.0,0.0,0.9817465816403002,-8.505559674800404,1.0,0.0,0.0 -262,25.0,1.8110084033657257,2.3,0.0,0.0,0.9679569557920688,-8.567699620875597,1.0,0.0,0.0 -262,26.0,0.0,0.0,0.0,0.0,0.9857988879298598,-8.265934068490614,1.0,0.0,0.0 -262,27.0,0.0,0.0,0.0,0.0,0.9691944214797208,-6.167719481435311,1.0,0.0,0.0 -262,28.0,1.2418343337364977,0.9,0.0,0.0,0.9724335370796592,-8.857040940452203,1.0,0.0,0.0 -262,29.0,5.484768307336197,1.9,0.0,0.0,0.9651912524036036,-9.304178789753518,1.0,0.0,0.0 -263,0.0,0.0,0.0,152.5587932462867,0.0002462865857033,1.0,0.0,0.0,0.0,1.0 -263,1.0,11.2282521008675,12.7,2.7917649691745525e-07,9.583309009750964,0.9811495157882192,-3.494916601560938,0.0,1.0,0.0 -263,2.0,1.2418343337364977,1.2,0.0,0.0,0.9754336457588954,-4.584328497290247,1.0,0.0,0.0 -263,3.0,3.932475390165576,1.6,0.0,0.0,0.969051153855788,-5.631367658176318,1.0,0.0,0.0 -263,4.0,48.741997599157536,19.0,-3.3481572895278277e-10,23.64387344885145,0.9621312405789472,-8.411742803536317,0.0,1.0,0.0 -263,5.0,0.0,0.0,0.0,0.0,0.9688457276167732,-6.688385806824022,1.0,0.0,0.0 -263,6.0,11.797426170496728,10.9,0.0,0.0,0.9597347499156842,-7.64960844691242,1.0,0.0,0.0 -263,7.0,15.522929171706222,30.0,-3.0778667877584536e-10,30.28562569555595,0.9678646339400696,-7.092337700800647,0.0,1.0,0.0 -263,8.0,0.0,0.0,0.0,0.0,1.016650168738662,-8.399499176593752,1.0,0.0,0.0 -263,9.0,3.001099639863203,2.0,0.0,0.0,1.0078643858775147,-9.288853232311482,1.0,0.0,0.0 -263,10.0,0.0,0.0,-1.9286208367773179e-10,22.06255246618419,1.059944972089807,-8.399499176615082,0.0,1.0,0.0 -263,11.0,5.795226890770322,7.5,0.0,0.0,1.014307716495528,-8.844098778157225,1.0,0.0,0.0 -263,12.0,0.0,0.0,-4.1106751754702125e-10,9.232183665676672,1.0268942675556614,-8.844098778188883,0.0,1.0,0.0 -263,13.0,3.2080720288192857,1.6,0.0,0.0,1.0035990073471954,-9.2802254867515,1.0,0.0,0.0 -263,14.0,4.2429339735997,2.5,0.0,0.0,1.0004154754016987,-9.303324103801057,1.0,0.0,0.0 -263,15.0,1.8110084033657257,1.8,0.0,0.0,1.00547970910433,-9.130182754102346,1.0,0.0,0.0 -263,16.0,4.656878751511866,5.8,0.0,0.0,1.0028242987724814,-9.324604277050412,1.0,0.0,0.0 -263,17.0,1.6557791116486635,0.9,0.0,0.0,0.9940923280854612,-9.617451594718636,1.0,0.0,0.0 -263,18.0,4.91559423770697,3.4,0.0,0.0,0.9925834115052328,-9.713486363466906,1.0,0.0,0.0 -263,19.0,1.1383481392584565,0.7,0.0,0.0,0.995798404280674,-9.637102378997469,1.0,0.0,0.0 -263,20.0,9.05504201682863,11.2,0.0,0.0,0.997487308671894,-9.4440411837711,1.0,0.0,0.0 -263,21.0,0.0,0.0,0.0,0.0,0.9978690444573548,-9.441557874762513,1.0,0.0,0.0 -263,22.0,1.6557791116486635,1.6,0.0,0.0,0.9922314481420084,-9.466089053329735,1.0,0.0,0.0 -263,23.0,4.5016494597948045,6.7,0.0,0.0,0.9879010268646412,-9.551135743812798,1.0,0.0,0.0 -263,24.0,0.0,0.0,0.0,0.0,0.9816954013566608,-9.29309829413875,1.0,0.0,0.0 -263,25.0,1.8110084033657257,2.3,0.0,0.0,0.9679050357525012,-9.355244813655167,1.0,0.0,0.0 -263,26.0,0.0,0.0,0.0,0.0,0.9847601275222962,-9.065222727622556,1.0,0.0,0.0 -263,27.0,0.0,0.0,0.0,0.0,0.966895018779267,-7.021781342665333,1.0,0.0,0.0 -263,28.0,1.2418343337364977,0.9,0.0,0.0,0.9713798923079054,-9.65759406316836,1.0,0.0,0.0 -263,29.0,5.484768307336197,1.9,0.0,0.0,0.9641295162180888,-10.105708823330565,1.0,0.0,0.0 -264,0.0,0.0,0.0,152.5587932462867,0.0002462865857033,1.0,0.0,0.0,0.0,1.0 -264,1.0,11.2282521008675,12.7,2.7917649691745525e-07,9.583309009750964,0.9811495157882192,-3.494916601560938,0.0,1.0,0.0 -264,2.0,1.2418343337364977,1.2,0.0,0.0,0.9754336457588954,-4.584328497290247,1.0,0.0,0.0 -264,3.0,3.932475390165576,1.6,0.0,0.0,0.969051153855788,-5.631367658176318,1.0,0.0,0.0 -264,4.0,48.741997599157536,19.0,-3.3481572895278277e-10,23.64387344885145,0.9621312405789472,-8.411742803536317,0.0,1.0,0.0 -264,5.0,0.0,0.0,0.0,0.0,0.9688457276167732,-6.688385806824022,1.0,0.0,0.0 -264,6.0,11.797426170496728,10.9,0.0,0.0,0.9597347499156842,-7.64960844691242,1.0,0.0,0.0 -264,7.0,15.522929171706222,30.0,-3.0778667877584536e-10,30.28562569555595,0.9678646339400696,-7.092337700800647,0.0,1.0,0.0 -264,8.0,0.0,0.0,0.0,0.0,1.016650168738662,-8.399499176593752,1.0,0.0,0.0 -264,9.0,3.001099639863203,2.0,0.0,0.0,1.0078643858775147,-9.288853232311482,1.0,0.0,0.0 -264,10.0,0.0,0.0,-1.9286208367773179e-10,22.06255246618419,1.059944972089807,-8.399499176615082,0.0,1.0,0.0 -264,11.0,5.795226890770322,7.5,0.0,0.0,1.014307716495528,-8.844098778157225,1.0,0.0,0.0 -264,12.0,0.0,0.0,-4.1106751754702125e-10,9.232183665676672,1.0268942675556614,-8.844098778188883,0.0,1.0,0.0 -264,13.0,3.2080720288192857,1.6,0.0,0.0,1.0035990073471954,-9.2802254867515,1.0,0.0,0.0 -264,14.0,4.2429339735997,2.5,0.0,0.0,1.0004154754016987,-9.303324103801057,1.0,0.0,0.0 -264,15.0,1.8110084033657257,1.8,0.0,0.0,1.00547970910433,-9.130182754102346,1.0,0.0,0.0 -264,16.0,4.656878751511866,5.8,0.0,0.0,1.0028242987724814,-9.324604277050412,1.0,0.0,0.0 -264,17.0,1.6557791116486635,0.9,0.0,0.0,0.9940923280854612,-9.617451594718636,1.0,0.0,0.0 -264,18.0,4.91559423770697,3.4,0.0,0.0,0.9925834115052328,-9.713486363466906,1.0,0.0,0.0 -264,19.0,1.1383481392584565,0.7,0.0,0.0,0.995798404280674,-9.637102378997469,1.0,0.0,0.0 -264,20.0,9.05504201682863,11.2,0.0,0.0,0.997487308671894,-9.4440411837711,1.0,0.0,0.0 -264,21.0,0.0,0.0,0.0,0.0,0.9978690444573548,-9.441557874762513,1.0,0.0,0.0 -264,22.0,1.6557791116486635,1.6,0.0,0.0,0.9922314481420084,-9.466089053329735,1.0,0.0,0.0 -264,23.0,4.5016494597948045,6.7,0.0,0.0,0.9879010268646412,-9.551135743812798,1.0,0.0,0.0 -264,24.0,0.0,0.0,0.0,0.0,0.9816954013566608,-9.29309829413875,1.0,0.0,0.0 -264,25.0,1.8110084033657257,2.3,0.0,0.0,0.9679050357525012,-9.355244813655167,1.0,0.0,0.0 -264,26.0,0.0,0.0,0.0,0.0,0.9847601275222962,-9.065222727622556,1.0,0.0,0.0 -264,27.0,0.0,0.0,0.0,0.0,0.966895018779267,-7.021781342665333,1.0,0.0,0.0 -264,28.0,1.2418343337364977,0.9,0.0,0.0,0.9713798923079054,-9.65759406316836,1.0,0.0,0.0 -264,29.0,5.484768307336197,1.9,0.0,0.0,0.9641295162180888,-10.105708823330565,1.0,0.0,0.0 -265,0.0,0.0,0.0,87.08865413915706,2.0761056873652706e-06,1.0,0.0,0.0,0.0,1.0 -265,1.0,11.2282521008675,12.7,67.97102662477153,-0.4421289640333583,0.9815329858437988,-2.8206833713889607,0.0,1.0,0.0 -265,2.0,1.2418343337364977,1.2,0.0,0.0,1.000828313440333,-0.1392692811154969,1.0,0.0,0.0 -265,3.0,3.932475390165576,1.6,0.0,0.0,0.9486127941844088,-13.51414170825688,1.0,0.0,0.0 -265,4.0,48.741997599157536,19.0,1.2689487256647671e-08,22.20126880542236,0.9628122892987449,-8.838857135618854,0.0,1.0,0.0 -265,5.0,0.0,0.0,0.0,0.0,0.9522331234885796,-12.92632341526798,1.0,0.0,0.0 -265,6.0,11.797426170496728,10.9,0.0,0.0,0.9400000007211502,-13.372105156553832,1.0,0.0,0.0 -265,7.0,15.522929171706222,30.0,1.0556539610660112e-08,39.99999962056434,0.9549611067170728,-13.41028683695918,0.0,1.0,0.0 -265,8.0,0.0,0.0,0.0,0.0,1.0056448421114383,-14.983042389669547,1.0,0.0,0.0 -265,9.0,3.001099639863203,2.0,0.0,0.0,0.9979961237978424,-16.0440327256559,1.0,0.0,0.0 -265,10.0,0.0,0.0,1.881959690459612e-08,23.999999581504184,1.0530499978326957,-14.98304238755166,0.0,1.0,0.0 -265,11.0,5.795226890770322,7.5,0.0,0.0,1.0178858214121724,-16.193113091754256,1.0,0.0,0.0 -265,12.0,0.0,0.0,1.3013368409909489e-08,23.999999581030043,1.0498891980317553,-16.193113090777477,0.0,1.0,0.0 -265,13.0,3.2080720288192857,1.6,0.0,0.0,1.007220240660928,-16.517785445283252,1.0,0.0,0.0 -265,14.0,4.2429339735997,2.5,0.0,0.0,1.0048042886321502,-16.43391736085449,1.0,0.0,0.0 -265,15.0,1.8110084033657257,1.8,0.0,0.0,1.003615599572722,-16.198050609476162,1.0,0.0,0.0 -265,16.0,4.656878751511866,5.8,0.0,0.0,0.9953014984118754,-16.1885815518104,1.0,0.0,0.0 -265,17.0,1.6557791116486635,0.9,0.0,0.0,0.972180414829892,-16.989333589991073,1.0,0.0,0.0 -265,18.0,4.91559423770697,3.4,0.0,0.0,0.974466136806208,-16.89473335357866,1.0,0.0,0.0 -265,19.0,1.1383481392584565,0.7,0.0,0.0,0.9797686489887948,-16.714308410137853,1.0,0.0,0.0 -265,20.0,9.05504201682863,11.2,0.0,0.0,0.9881275228328448,-16.20615473327727,1.0,0.0,0.0 -265,21.0,0.0,0.0,0.0,0.0,0.9887056330705872,-16.205127907664963,1.0,0.0,0.0 -265,22.0,1.6557791116486635,1.6,0.0,0.0,0.9918625808047364,-16.456365397646962,1.0,0.0,0.0 -265,23.0,4.5016494597948045,6.7,0.0,0.0,0.9811699308677564,-16.35315427306351,1.0,0.0,0.0 -265,24.0,0.0,0.0,0.0,0.0,0.9719436043574128,-15.876691312018927,1.0,0.0,0.0 -265,25.0,1.8110084033657257,2.3,0.0,0.0,0.9580108013647924,-15.940109648140211,1.0,0.0,0.0 -265,26.0,0.0,0.0,0.0,0.0,0.9731460488902612,-15.51386918656654,1.0,0.0,0.0 -265,27.0,0.0,0.0,0.0,0.0,0.9515319886748336,-13.306538595715264,1.0,0.0,0.0 -265,28.0,1.2418343337364977,0.9,0.0,0.0,0.9595970468903908,-16.12066021447276,1.0,0.0,0.0 -265,29.0,5.484768307336197,1.9,0.0,0.0,0.9522549193359462,-16.579921870482533,1.0,0.0,0.0 -266,0.0,0.0,0.0,152.5587932462867,0.0002462865857033,1.0,0.0,0.0,0.0,1.0 -266,1.0,11.2282521008675,12.7,2.7917649691745525e-07,9.583309009750964,0.9811495157882192,-3.494916601560938,0.0,1.0,0.0 -266,2.0,1.2418343337364977,1.2,0.0,0.0,0.9754336457588954,-4.584328497290247,1.0,0.0,0.0 -266,3.0,3.932475390165576,1.6,0.0,0.0,0.969051153855788,-5.631367658176318,1.0,0.0,0.0 -266,4.0,48.741997599157536,19.0,-3.3481572895278277e-10,23.64387344885145,0.9621312405789472,-8.411742803536317,0.0,1.0,0.0 -266,5.0,0.0,0.0,0.0,0.0,0.9688457276167732,-6.688385806824022,1.0,0.0,0.0 -266,6.0,11.797426170496728,10.9,0.0,0.0,0.9597347499156842,-7.64960844691242,1.0,0.0,0.0 -266,7.0,15.522929171706222,30.0,-3.0778667877584536e-10,30.28562569555595,0.9678646339400696,-7.092337700800647,0.0,1.0,0.0 -266,8.0,0.0,0.0,0.0,0.0,1.016650168738662,-8.399499176593752,1.0,0.0,0.0 -266,9.0,3.001099639863203,2.0,0.0,0.0,1.0078643858775147,-9.288853232311482,1.0,0.0,0.0 -266,10.0,0.0,0.0,-1.9286208367773179e-10,22.06255246618419,1.059944972089807,-8.399499176615082,0.0,1.0,0.0 -266,11.0,5.795226890770322,7.5,0.0,0.0,1.014307716495528,-8.844098778157225,1.0,0.0,0.0 -266,12.0,0.0,0.0,-4.1106751754702125e-10,9.232183665676672,1.0268942675556614,-8.844098778188883,0.0,1.0,0.0 -266,13.0,3.2080720288192857,1.6,0.0,0.0,1.0035990073471954,-9.2802254867515,1.0,0.0,0.0 -266,14.0,4.2429339735997,2.5,0.0,0.0,1.0004154754016987,-9.303324103801057,1.0,0.0,0.0 -266,15.0,1.8110084033657257,1.8,0.0,0.0,1.00547970910433,-9.130182754102346,1.0,0.0,0.0 -266,16.0,4.656878751511866,5.8,0.0,0.0,1.0028242987724814,-9.324604277050412,1.0,0.0,0.0 -266,17.0,1.6557791116486635,0.9,0.0,0.0,0.9940923280854612,-9.617451594718636,1.0,0.0,0.0 -266,18.0,4.91559423770697,3.4,0.0,0.0,0.9925834115052328,-9.713486363466906,1.0,0.0,0.0 -266,19.0,1.1383481392584565,0.7,0.0,0.0,0.995798404280674,-9.637102378997469,1.0,0.0,0.0 -266,20.0,9.05504201682863,11.2,0.0,0.0,0.997487308671894,-9.4440411837711,1.0,0.0,0.0 -266,21.0,0.0,0.0,0.0,0.0,0.9978690444573548,-9.441557874762513,1.0,0.0,0.0 -266,22.0,1.6557791116486635,1.6,0.0,0.0,0.9922314481420084,-9.466089053329735,1.0,0.0,0.0 -266,23.0,4.5016494597948045,6.7,0.0,0.0,0.9879010268646412,-9.551135743812798,1.0,0.0,0.0 -266,24.0,0.0,0.0,0.0,0.0,0.9816954013566608,-9.29309829413875,1.0,0.0,0.0 -266,25.0,1.8110084033657257,2.3,0.0,0.0,0.9679050357525012,-9.355244813655167,1.0,0.0,0.0 -266,26.0,0.0,0.0,0.0,0.0,0.9847601275222962,-9.065222727622556,1.0,0.0,0.0 -266,27.0,0.0,0.0,0.0,0.0,0.966895018779267,-7.021781342665333,1.0,0.0,0.0 -266,28.0,1.2418343337364977,0.9,0.0,0.0,0.9713798923079054,-9.65759406316836,1.0,0.0,0.0 -266,29.0,5.484768307336197,1.9,0.0,0.0,0.9641295162180888,-10.105708823330565,1.0,0.0,0.0 -267,0.0,0.0,0.0,153.00237807507855,0.0035999542282283,1.0,0.0,0.0,0.0,1.0 -267,1.0,11.2282521008675,12.7,3.6242877216174015e-06,9.469970034722463,0.9807920397525158,-3.56908218339528,0.0,1.0,0.0 -267,2.0,1.2418343337364977,1.2,0.0,0.0,0.9760345952906838,-4.413698451943116,1.0,0.0,0.0 -267,3.0,3.932475390165576,1.6,0.0,0.0,0.9697719073594564,-5.419292369684804,1.0,0.0,0.0 -267,4.0,48.741997599157536,19.0,6.679879619071763e-09,22.21252337105134,0.9620650324969988,-9.596752265647696,0.0,1.0,0.0 -267,5.0,0.0,0.0,0.0,0.0,0.9689694986178128,-6.299200307628272,1.0,0.0,0.0 -267,6.0,11.797426170496728,10.9,0.0,0.0,0.9569777865188538,-6.729961668434072,1.0,0.0,0.0 -267,7.0,15.522929171706222,30.0,-1.7102160785097467e-09,30.327675958344606,0.9592147988054358,-9.19178888312116,0.0,1.0,0.0 -267,8.0,0.0,0.0,0.0,0.0,1.020011681130366,-7.940415330443773,1.0,0.0,0.0 -267,9.0,3.001099639863203,2.0,0.0,0.0,1.0147515695573486,-8.787765250363002,1.0,0.0,0.0 -267,10.0,0.0,0.0,2.9832142637694422e-09,20.283312217485864,1.0598196698046534,-7.940415330114898,0.0,1.0,0.0 -267,11.0,5.795226890770322,7.5,0.0,0.0,1.021183561341654,-8.865057223265056,1.0,0.0,0.0 -267,12.0,0.0,0.0,4.338557508219816e-09,16.70308875035716,1.043591115322481,-8.865057222938495,0.0,1.0,0.0 -267,13.0,3.2080720288192857,1.6,0.0,0.0,1.0076992205906803,-9.366103027713562,1.0,0.0,0.0 -267,14.0,4.2429339735997,2.5,0.0,0.0,1.0013085106834356,-9.394297608779054,1.0,0.0,0.0 -267,15.0,1.8110084033657257,1.8,0.0,0.0,1.0127426201884029,-8.925877718875,1.0,0.0,0.0 -267,16.0,4.656878751511866,5.8,0.0,0.0,1.009746246878202,-8.915211570067383,1.0,0.0,0.0 -267,17.0,1.6557791116486635,0.9,0.0,0.0,0.9814743732947584,-10.063685297797823,1.0,0.0,0.0 -267,18.0,4.91559423770697,3.4,0.0,0.0,0.972028221949267,-10.376092336744955,1.0,0.0,0.0 -267,19.0,1.1383481392584565,0.7,0.0,0.0,0.9711393788005102,-10.40863021104179,1.0,0.0,0.0 -267,20.0,9.05504201682863,11.2,0.0,0.0,1.0038980288954622,-8.990143647233616,1.0,0.0,0.0 -267,21.0,0.0,0.0,0.0,0.0,1.0040993540590468,-9.003313367655839,1.0,0.0,0.0 -267,22.0,1.6557791116486635,1.6,0.0,0.0,0.9942734299406096,-9.414504108121871,1.0,0.0,0.0 -267,23.0,4.5016494597948045,6.7,0.0,0.0,0.9914403891128374,-9.307313765889532,1.0,0.0,0.0 -267,24.0,0.0,0.0,0.0,0.0,0.9827692698095012,-9.179956655360687,1.0,0.0,0.0 -267,25.0,1.8110084033657257,2.3,0.0,0.0,0.9689944090489476,-9.241965478000688,1.0,0.0,0.0 -267,26.0,0.0,0.0,0.0,0.0,0.9843390345956065,-9.03653636673621,1.0,0.0,0.0 -267,27.0,0.0,0.0,0.0,0.0,0.965313540136106,-7.179925867009265,1.0,0.0,0.0 -267,28.0,1.2418343337364977,0.9,0.0,0.0,0.9709527558641534,-9.629421452695215,1.0,0.0,0.0 -267,29.0,5.484768307336197,1.9,0.0,0.0,0.9636990943814754,-10.077933156510015,1.0,0.0,0.0 -268,0.0,0.0,0.0,136.40047727106125,1.2391800385813667e-05,1.0,0.0,0.0,0.0,1.0 -268,1.0,11.2282521008675,12.7,25.42481693906827,31.820239517859704,0.9690795753774808,-20.7484910666532,0.0,1.0,0.0 -268,2.0,1.2418343337364977,1.2,0.0,0.0,0.9615312245872364,-13.496721246126349,1.0,0.0,0.0 -268,3.0,3.932475390165576,1.6,0.0,0.0,0.9565326774399052,-16.71812676590424,1.0,0.0,0.0 -268,4.0,48.741997599157536,19.0,1.0141327122457636e-11,39.99997311290602,0.9581608628990474,-28.590351567095052,0.0,1.0,0.0 -268,5.0,0.0,0.0,0.0,0.0,0.9597769956231146,-18.49669952693413,1.0,0.0,0.0 -268,6.0,11.797426170496728,10.9,0.0,0.0,0.940000047360824,-29.168337521701645,1.0,0.0,0.0 -268,7.0,15.522929171706222,30.0,-4.978875365161468e-12,28.98590211042068,0.958298136323544,-18.902969922508515,0.0,1.0,0.0 -268,8.0,0.0,0.0,0.0,0.0,1.0081005037877917,-20.789176665223174,1.0,0.0,0.0 -268,9.0,3.001099639863203,2.0,0.0,0.0,0.9982891633632612,-21.980761348650745,1.0,0.0,0.0 -268,10.0,0.0,0.0,-9.051643260732268e-12,23.56551593482829,1.0545799328183147,-20.78917666522419,0.0,1.0,0.0 -268,11.0,5.795226890770322,7.5,0.0,0.0,1.0116928745121232,-20.44164212324537,1.0,0.0,0.0 -268,12.0,0.0,0.0,-1.673300921494141e-11,12.594563633235808,1.0288311475212668,-20.44164212324665,0.0,1.0,0.0 -268,13.0,3.2080720288192857,1.6,0.0,0.0,1.0018030379260632,-20.868217482346783,1.0,0.0,0.0 -268,14.0,4.2429339735997,2.5,0.0,0.0,0.99950660152649,-20.899127229739804,1.0,0.0,0.0 -268,15.0,1.8110084033657257,1.8,0.0,0.0,0.9990433131620432,-21.181273801630677,1.0,0.0,0.0 -268,16.0,4.656878751511866,5.8,0.0,0.0,0.9944108942970052,-21.82175153405993,1.0,0.0,0.0 -268,17.0,1.6557791116486635,0.9,0.0,0.0,0.9724814777510068,-22.92549202039407,1.0,0.0,0.0 -268,18.0,4.91559423770697,3.4,0.0,0.0,0.9747664912884764,-22.83095021069674,1.0,0.0,0.0 -268,19.0,1.1383481392584565,0.7,0.0,0.0,0.980067364018429,-22.650635836064897,1.0,0.0,0.0 -268,20.0,9.05504201682863,11.2,0.0,0.0,0.9882106034376948,-22.05699327585373,1.0,0.0,0.0 -268,21.0,0.0,0.0,0.0,0.0,0.9887311259099212,-22.028294490861622,1.0,0.0,0.0 -268,22.0,1.6557791116486635,1.6,0.0,0.0,0.9887613315492004,-21.338582566755058,1.0,0.0,0.0 -268,23.0,4.5016494597948045,6.7,0.0,0.0,0.9811353604351752,-21.800342075750294,1.0,0.0,0.0 -268,24.0,0.0,0.0,0.0,0.0,0.9743112679632742,-21.383512576044264,1.0,0.0,0.0 -268,25.0,1.8110084033657257,2.3,0.0,0.0,0.9604133214725902,-21.44661854130636,1.0,0.0,0.0 -268,26.0,0.0,0.0,0.0,0.0,0.9770021469107646,-21.05621096155088,1.0,0.0,0.0 -268,27.0,0.0,0.0,0.0,0.0,0.9577994776848394,-18.8535766881092,1.0,0.0,0.0 -268,28.0,1.2418343337364977,0.9,0.0,0.0,0.963509661720652,-21.65815623959558,1.0,0.0,0.0 -268,29.0,5.484768307336197,1.9,0.0,0.0,0.9561982613833394,-22.113670658650086,1.0,0.0,0.0 -269,0.0,0.0,0.0,152.5587932462867,0.0002462865857033,1.0,0.0,0.0,0.0,1.0 -269,1.0,11.2282521008675,12.7,2.7917649691745525e-07,9.583309009750964,0.9811495157882192,-3.494916601560938,0.0,1.0,0.0 -269,2.0,1.2418343337364977,1.2,0.0,0.0,0.9754336457588954,-4.584328497290247,1.0,0.0,0.0 -269,3.0,3.932475390165576,1.6,0.0,0.0,0.969051153855788,-5.631367658176318,1.0,0.0,0.0 -269,4.0,48.741997599157536,19.0,-3.3481572895278277e-10,23.64387344885145,0.9621312405789472,-8.411742803536317,0.0,1.0,0.0 -269,5.0,0.0,0.0,0.0,0.0,0.9688457276167732,-6.688385806824022,1.0,0.0,0.0 -269,6.0,11.797426170496728,10.9,0.0,0.0,0.9597347499156842,-7.64960844691242,1.0,0.0,0.0 -269,7.0,15.522929171706222,30.0,-3.0778667877584536e-10,30.28562569555595,0.9678646339400696,-7.092337700800647,0.0,1.0,0.0 -269,8.0,0.0,0.0,0.0,0.0,1.016650168738662,-8.399499176593752,1.0,0.0,0.0 -269,9.0,3.001099639863203,2.0,0.0,0.0,1.0078643858775147,-9.288853232311482,1.0,0.0,0.0 -269,10.0,0.0,0.0,-1.9286208367773179e-10,22.06255246618419,1.059944972089807,-8.399499176615082,0.0,1.0,0.0 -269,11.0,5.795226890770322,7.5,0.0,0.0,1.014307716495528,-8.844098778157225,1.0,0.0,0.0 -269,12.0,0.0,0.0,-4.1106751754702125e-10,9.232183665676672,1.0268942675556614,-8.844098778188883,0.0,1.0,0.0 -269,13.0,3.2080720288192857,1.6,0.0,0.0,1.0035990073471954,-9.2802254867515,1.0,0.0,0.0 -269,14.0,4.2429339735997,2.5,0.0,0.0,1.0004154754016987,-9.303324103801057,1.0,0.0,0.0 -269,15.0,1.8110084033657257,1.8,0.0,0.0,1.00547970910433,-9.130182754102346,1.0,0.0,0.0 -269,16.0,4.656878751511866,5.8,0.0,0.0,1.0028242987724814,-9.324604277050412,1.0,0.0,0.0 -269,17.0,1.6557791116486635,0.9,0.0,0.0,0.9940923280854612,-9.617451594718636,1.0,0.0,0.0 -269,18.0,4.91559423770697,3.4,0.0,0.0,0.9925834115052328,-9.713486363466906,1.0,0.0,0.0 -269,19.0,1.1383481392584565,0.7,0.0,0.0,0.995798404280674,-9.637102378997469,1.0,0.0,0.0 -269,20.0,9.05504201682863,11.2,0.0,0.0,0.997487308671894,-9.4440411837711,1.0,0.0,0.0 -269,21.0,0.0,0.0,0.0,0.0,0.9978690444573548,-9.441557874762513,1.0,0.0,0.0 -269,22.0,1.6557791116486635,1.6,0.0,0.0,0.9922314481420084,-9.466089053329735,1.0,0.0,0.0 -269,23.0,4.5016494597948045,6.7,0.0,0.0,0.9879010268646412,-9.551135743812798,1.0,0.0,0.0 -269,24.0,0.0,0.0,0.0,0.0,0.9816954013566608,-9.29309829413875,1.0,0.0,0.0 -269,25.0,1.8110084033657257,2.3,0.0,0.0,0.9679050357525012,-9.355244813655167,1.0,0.0,0.0 -269,26.0,0.0,0.0,0.0,0.0,0.9847601275222962,-9.065222727622556,1.0,0.0,0.0 -269,27.0,0.0,0.0,0.0,0.0,0.966895018779267,-7.021781342665333,1.0,0.0,0.0 -269,28.0,1.2418343337364977,0.9,0.0,0.0,0.9713798923079054,-9.65759406316836,1.0,0.0,0.0 -269,29.0,5.484768307336197,1.9,0.0,0.0,0.9641295162180888,-10.105708823330565,1.0,0.0,0.0 -270,0.0,0.0,0.0,153.0000730271082,0.0174229917063506,1.0,0.0,0.0,0.0,1.0 -270,1.0,11.2282521008675,12.7,7.356678423744273e-06,21.19362701406377,0.9822307465249572,-3.600307742682228,0.0,1.0,0.0 -270,2.0,1.2418343337364977,1.2,0.0,0.0,0.9718527563036192,-4.3410062224677,1.0,0.0,0.0 -270,3.0,3.932475390165576,1.6,0.0,0.0,0.9646110354362604,-5.330359539755674,1.0,0.0,0.0 -270,4.0,48.741997599157536,19.0,-1.1195658683669716e-08,22.19165768470227,0.9635180177956644,-9.609574906428453,0.0,1.0,0.0 -270,5.0,0.0,0.0,0.0,0.0,0.9603013590439872,-6.181953523631339,1.0,0.0,0.0 -270,6.0,11.797426170496728,10.9,0.0,0.0,0.9481856624201468,-6.620394400852849,1.0,0.0,0.0 -270,7.0,15.522929171706222,30.0,2.0229391819607543e-08,34.71959254067663,0.9609817346406792,-9.322496695347912,0.0,1.0,0.0 -270,8.0,0.0,0.0,0.0,0.0,0.9852144746174062,-7.911912377239819,1.0,0.0,0.0 -270,9.0,3.001099639863203,2.0,0.0,0.0,0.9873267525719924,-8.821668878173165,1.0,0.0,0.0 -270,10.0,0.0,0.0,0.0,0.0,0.9852144746174062,-7.911912377239819,0.0,1.0,0.0 -270,11.0,5.795226890770322,7.5,0.0,0.0,1.0198505098084445,-8.668707274159118,1.0,0.0,0.0 -270,12.0,0.0,0.0,4.96158310316362e-09,21.40926091200516,1.0484387002943472,-8.668707273786906,0.0,1.0,0.0 -270,13.0,3.2080720288192857,1.6,0.0,0.0,1.0079376183584785,-9.078278972942067,1.0,0.0,0.0 -270,14.0,4.2429339735997,2.5,0.0,0.0,1.0037080581146027,-9.0508130862943,1.0,0.0,0.0 -270,15.0,1.8110084033657257,1.8,0.0,0.0,0.99990174033288,-8.776509778139022,1.0,0.0,0.0 -270,16.0,4.656878751511866,5.8,0.0,0.0,0.9868392032127687,-8.914033867845733,1.0,0.0,0.0 -270,17.0,1.6557791116486635,0.9,0.0,0.0,0.9889409984341792,-9.290208615839711,1.0,0.0,0.0 -270,18.0,4.91559423770697,3.4,0.0,0.0,0.9824413083677506,-9.341348855275104,1.0,0.0,0.0 -270,19.0,1.1383481392584565,0.7,0.0,0.0,0.9830673352582296,-9.237897161525176,1.0,0.0,0.0 -270,20.0,9.05504201682863,11.2,0.0,0.0,0.976517403866506,-9.021804475344332,1.0,0.0,0.0 -270,21.0,0.0,0.0,0.0,0.0,0.9768367935522688,-9.031456939097763,1.0,0.0,0.0 -270,22.0,1.6557791116486635,1.6,0.0,0.0,0.9988129501415198,-9.150524647187092,1.0,0.0,0.0 -270,23.0,4.5016494597948045,6.7,0.0,0.0,0.9654206615010458,-9.304739170070318,1.0,0.0,0.0 -270,24.0,0.0,0.0,0.0,0.0,0.96350581670902,-9.25955069543559,1.0,0.0,0.0 -270,25.0,1.8110084033657257,2.3,0.0,0.0,0.9494473371896454,-9.32410141593438,1.0,0.0,0.0 -270,26.0,0.0,0.0,0.0,0.0,0.9694434702695572,-9.155952942103577,1.0,0.0,0.0 -270,27.0,0.0,0.0,0.0,0.0,0.9580243901021258,-7.124806262816363,1.0,0.0,0.0 -270,28.0,1.2418343337364977,0.9,0.0,0.0,0.9558397417131458,-9.767452362091294,1.0,0.0,0.0 -270,29.0,5.484768307336197,1.9,0.0,0.0,0.948467858932158,-10.230356310671654,1.0,0.0,0.0 -271,0.0,0.0,0.0,152.84207702441458,0.0108166306809209,1.0,0.0,0.0,0.0,1.0 -271,1.0,11.2282521008675,12.7,7.221661135999921e-06,11.231320864512677,0.9813723365591722,-3.498485311834037,0.0,1.0,0.0 -271,2.0,1.2418343337364977,1.2,0.0,0.0,0.9746850877825536,-4.604774122105172,1.0,0.0,0.0 -271,3.0,3.932475390165576,1.6,0.0,0.0,0.9681312637370564,-5.65705090304543,1.0,0.0,0.0 -271,4.0,48.741997599157536,19.0,-1.0896096406899381e-08,24.995077583993293,0.9629014263053512,-8.410390975197403,0.0,1.0,0.0 -271,5.0,0.0,0.0,0.0,0.0,0.9674074087260218,-6.628172098656303,1.0,0.0,0.0 -271,6.0,11.797426170496728,10.9,0.0,0.0,0.9592017303901132,-7.612608418137473,1.0,0.0,0.0 -271,7.0,15.522929171706222,30.0,-1.2852090968460142e-08,38.23886266539659,0.9694832553749826,-7.073248150451463,0.0,1.0,0.0 -271,8.0,0.0,0.0,0.0,0.0,0.992771943681983,-8.28043100555596,1.0,0.0,0.0 -271,9.0,3.001099639863203,2.0,0.0,0.0,0.9950091032894124,-9.14900613935381,1.0,0.0,0.0 -271,10.0,0.0,0.0,0.0,0.0,0.992771943681983,-8.28043100555596,0.0,1.0,0.0 -271,11.0,5.795226890770322,7.5,0.0,0.0,1.0166906167386802,-9.35861899830488,1.0,0.0,0.0 -271,12.0,0.0,0.0,-1.2410848950329832e-08,20.75608402708396,1.044510833351166,-9.358618999242337,0.0,1.0,0.0 -271,13.0,3.2080720288192857,1.6,0.0,0.0,1.0020037809058155,-9.878852028648009,1.0,0.0,0.0 -271,14.0,4.2429339735997,2.5,0.0,0.0,0.9943866347217148,-9.895756614119762,1.0,0.0,0.0 -271,15.0,1.8110084033657257,1.8,0.0,0.0,1.0016713667173085,-9.334579910535746,1.0,0.0,0.0 -271,16.0,4.656878751511866,5.8,0.0,0.0,0.9926157499497288,-9.305265567279314,1.0,0.0,0.0 -271,17.0,1.6557791116486635,0.9,0.0,0.0,0.974404525358898,-10.574695423126798,1.0,0.0,0.0 -271,18.0,4.91559423770697,3.4,0.0,0.0,0.964888226017762,-10.891697730733128,1.0,0.0,0.0 -271,19.0,1.1383481392584565,0.7,0.0,0.0,0.963992791056317,-10.92471938470274,1.0,0.0,0.0 -271,20.0,9.05504201682863,11.2,0.0,0.0,0.9845147919176604,-9.383825081645108,1.0,0.0,0.0 -271,21.0,0.0,0.0,0.0,0.0,0.9849001542223216,-9.405583475256414,1.0,0.0,0.0 -271,22.0,1.6557791116486635,1.6,0.0,0.0,0.9828957986331396,-9.932181545076867,1.0,0.0,0.0 -271,23.0,4.5016494597948045,6.7,0.0,0.0,0.9741987948494906,-9.84509396192198,1.0,0.0,0.0 -271,24.0,0.0,0.0,0.0,0.0,0.9626140818621928,-9.94516438325062,1.0,0.0,0.0 -271,25.0,1.8110084033657257,2.3,0.0,0.0,0.9485421858132492,-10.009836556239078,1.0,0.0,0.0 -271,26.0,0.0,0.0,0.0,0.0,0.9863639092489566,-8.487003035825307,1.0,0.0,0.0 -271,27.0,0.0,0.0,0.0,0.0,0.9666931923040628,-6.917022043180779,1.0,0.0,0.0 -271,28.0,1.2418343337364977,0.9,0.0,0.0,0.9730066402994076,-9.07742382548622,1.0,0.0,0.0 -271,29.0,5.484768307336197,1.9,0.0,0.0,0.965768749052452,-9.524031652904217,1.0,0.0,0.0 -272,0.0,0.0,0.0,152.5587932462867,0.0002462865857033,1.0,0.0,0.0,0.0,1.0 -272,1.0,11.2282521008675,12.7,2.7917649691745525e-07,9.583309009750964,0.9811495157882192,-3.494916601560938,0.0,1.0,0.0 -272,2.0,1.2418343337364977,1.2,0.0,0.0,0.9754336457588954,-4.584328497290247,1.0,0.0,0.0 -272,3.0,3.932475390165576,1.6,0.0,0.0,0.969051153855788,-5.631367658176318,1.0,0.0,0.0 -272,4.0,48.741997599157536,19.0,-3.3481572895278277e-10,23.64387344885145,0.9621312405789472,-8.411742803536317,0.0,1.0,0.0 -272,5.0,0.0,0.0,0.0,0.0,0.9688457276167732,-6.688385806824022,1.0,0.0,0.0 -272,6.0,11.797426170496728,10.9,0.0,0.0,0.9597347499156842,-7.64960844691242,1.0,0.0,0.0 -272,7.0,15.522929171706222,30.0,-3.0778667877584536e-10,30.28562569555595,0.9678646339400696,-7.092337700800647,0.0,1.0,0.0 -272,8.0,0.0,0.0,0.0,0.0,1.016650168738662,-8.399499176593752,1.0,0.0,0.0 -272,9.0,3.001099639863203,2.0,0.0,0.0,1.0078643858775147,-9.288853232311482,1.0,0.0,0.0 -272,10.0,0.0,0.0,-1.9286208367773179e-10,22.06255246618419,1.059944972089807,-8.399499176615082,0.0,1.0,0.0 -272,11.0,5.795226890770322,7.5,0.0,0.0,1.014307716495528,-8.844098778157225,1.0,0.0,0.0 -272,12.0,0.0,0.0,-4.1106751754702125e-10,9.232183665676672,1.0268942675556614,-8.844098778188883,0.0,1.0,0.0 -272,13.0,3.2080720288192857,1.6,0.0,0.0,1.0035990073471954,-9.2802254867515,1.0,0.0,0.0 -272,14.0,4.2429339735997,2.5,0.0,0.0,1.0004154754016987,-9.303324103801057,1.0,0.0,0.0 -272,15.0,1.8110084033657257,1.8,0.0,0.0,1.00547970910433,-9.130182754102346,1.0,0.0,0.0 -272,16.0,4.656878751511866,5.8,0.0,0.0,1.0028242987724814,-9.324604277050412,1.0,0.0,0.0 -272,17.0,1.6557791116486635,0.9,0.0,0.0,0.9940923280854612,-9.617451594718636,1.0,0.0,0.0 -272,18.0,4.91559423770697,3.4,0.0,0.0,0.9925834115052328,-9.713486363466906,1.0,0.0,0.0 -272,19.0,1.1383481392584565,0.7,0.0,0.0,0.995798404280674,-9.637102378997469,1.0,0.0,0.0 -272,20.0,9.05504201682863,11.2,0.0,0.0,0.997487308671894,-9.4440411837711,1.0,0.0,0.0 -272,21.0,0.0,0.0,0.0,0.0,0.9978690444573548,-9.441557874762513,1.0,0.0,0.0 -272,22.0,1.6557791116486635,1.6,0.0,0.0,0.9922314481420084,-9.466089053329735,1.0,0.0,0.0 -272,23.0,4.5016494597948045,6.7,0.0,0.0,0.9879010268646412,-9.551135743812798,1.0,0.0,0.0 -272,24.0,0.0,0.0,0.0,0.0,0.9816954013566608,-9.29309829413875,1.0,0.0,0.0 -272,25.0,1.8110084033657257,2.3,0.0,0.0,0.9679050357525012,-9.355244813655167,1.0,0.0,0.0 -272,26.0,0.0,0.0,0.0,0.0,0.9847601275222962,-9.065222727622556,1.0,0.0,0.0 -272,27.0,0.0,0.0,0.0,0.0,0.966895018779267,-7.021781342665333,1.0,0.0,0.0 -272,28.0,1.2418343337364977,0.9,0.0,0.0,0.9713798923079054,-9.65759406316836,1.0,0.0,0.0 -272,29.0,5.484768307336197,1.9,0.0,0.0,0.9641295162180888,-10.105708823330565,1.0,0.0,0.0 -273,0.0,0.0,0.0,152.5587932462867,0.0002462865857033,1.0,0.0,0.0,0.0,1.0 -273,1.0,11.2282521008675,12.7,2.7917649691745525e-07,9.583309009750964,0.9811495157882192,-3.494916601560938,0.0,1.0,0.0 -273,2.0,1.2418343337364977,1.2,0.0,0.0,0.9754336457588954,-4.584328497290247,1.0,0.0,0.0 -273,3.0,3.932475390165576,1.6,0.0,0.0,0.969051153855788,-5.631367658176318,1.0,0.0,0.0 -273,4.0,48.741997599157536,19.0,-3.3481572895278277e-10,23.64387344885145,0.9621312405789472,-8.411742803536317,0.0,1.0,0.0 -273,5.0,0.0,0.0,0.0,0.0,0.9688457276167732,-6.688385806824022,1.0,0.0,0.0 -273,6.0,11.797426170496728,10.9,0.0,0.0,0.9597347499156842,-7.64960844691242,1.0,0.0,0.0 -273,7.0,15.522929171706222,30.0,-3.0778667877584536e-10,30.28562569555595,0.9678646339400696,-7.092337700800647,0.0,1.0,0.0 -273,8.0,0.0,0.0,0.0,0.0,1.016650168738662,-8.399499176593752,1.0,0.0,0.0 -273,9.0,3.001099639863203,2.0,0.0,0.0,1.0078643858775147,-9.288853232311482,1.0,0.0,0.0 -273,10.0,0.0,0.0,-1.9286208367773179e-10,22.06255246618419,1.059944972089807,-8.399499176615082,0.0,1.0,0.0 -273,11.0,5.795226890770322,7.5,0.0,0.0,1.014307716495528,-8.844098778157225,1.0,0.0,0.0 -273,12.0,0.0,0.0,-4.1106751754702125e-10,9.232183665676672,1.0268942675556614,-8.844098778188883,0.0,1.0,0.0 -273,13.0,3.2080720288192857,1.6,0.0,0.0,1.0035990073471954,-9.2802254867515,1.0,0.0,0.0 -273,14.0,4.2429339735997,2.5,0.0,0.0,1.0004154754016987,-9.303324103801057,1.0,0.0,0.0 -273,15.0,1.8110084033657257,1.8,0.0,0.0,1.00547970910433,-9.130182754102346,1.0,0.0,0.0 -273,16.0,4.656878751511866,5.8,0.0,0.0,1.0028242987724814,-9.324604277050412,1.0,0.0,0.0 -273,17.0,1.6557791116486635,0.9,0.0,0.0,0.9940923280854612,-9.617451594718636,1.0,0.0,0.0 -273,18.0,4.91559423770697,3.4,0.0,0.0,0.9925834115052328,-9.713486363466906,1.0,0.0,0.0 -273,19.0,1.1383481392584565,0.7,0.0,0.0,0.995798404280674,-9.637102378997469,1.0,0.0,0.0 -273,20.0,9.05504201682863,11.2,0.0,0.0,0.997487308671894,-9.4440411837711,1.0,0.0,0.0 -273,21.0,0.0,0.0,0.0,0.0,0.9978690444573548,-9.441557874762513,1.0,0.0,0.0 -273,22.0,1.6557791116486635,1.6,0.0,0.0,0.9922314481420084,-9.466089053329735,1.0,0.0,0.0 -273,23.0,4.5016494597948045,6.7,0.0,0.0,0.9879010268646412,-9.551135743812798,1.0,0.0,0.0 -273,24.0,0.0,0.0,0.0,0.0,0.9816954013566608,-9.29309829413875,1.0,0.0,0.0 -273,25.0,1.8110084033657257,2.3,0.0,0.0,0.9679050357525012,-9.355244813655167,1.0,0.0,0.0 -273,26.0,0.0,0.0,0.0,0.0,0.9847601275222962,-9.065222727622556,1.0,0.0,0.0 -273,27.0,0.0,0.0,0.0,0.0,0.966895018779267,-7.021781342665333,1.0,0.0,0.0 -273,28.0,1.2418343337364977,0.9,0.0,0.0,0.9713798923079054,-9.65759406316836,1.0,0.0,0.0 -273,29.0,5.484768307336197,1.9,0.0,0.0,0.9641295162180888,-10.105708823330565,1.0,0.0,0.0 -274,0.0,0.0,0.0,139.74208331147585,4.392811270292896e-06,1.0,0.0,0.0,0.0,1.0 -274,1.0,11.2282521008675,12.7,13.457263688719252,-23.767724465780464,0.979491263561382,-3.1141517925617004,0.0,1.0,0.0 -274,2.0,1.2418343337364977,1.2,0.0,0.0,0.9856195764674616,-4.376195381826298,1.0,0.0,0.0 -274,3.0,3.932475390165576,1.6,0.0,0.0,0.9815794327651706,-5.369656912159368,1.0,0.0,0.0 -274,4.0,48.741997599157536,19.0,-2.790421077908591e-08,39.99999724978244,0.983540096213584,-8.506588340483843,0.0,1.0,0.0 -274,5.0,0.0,0.0,0.0,0.0,0.9798198393950056,-6.879435311004197,1.0,0.0,0.0 -274,6.0,11.797426170496728,10.9,0.0,0.0,0.9750980609210343,-7.789087913250419,1.0,0.0,0.0 -274,7.0,15.522929171706222,30.0,-3.249365722622287e-08,39.99999926631278,0.981232640338363,-7.624491831756923,0.0,1.0,0.0 -274,8.0,0.0,0.0,0.0,0.0,1.0242067354036135,-10.146134905883851,1.0,0.0,0.0 -274,9.0,3.001099639863203,2.0,0.0,0.0,1.0184037316446315,-11.844981877787136,1.0,0.0,0.0 -274,10.0,0.0,0.0,-2.2506997471133705e-08,18.240797325858534,1.05999999814346,-10.146134908354494,0.0,1.0,0.0 -274,11.0,5.795226890770322,7.5,0.0,0.0,1.0118590069673756,-14.5625654638686,1.0,0.0,0.0 -274,12.0,0.0,0.0,-2.96093700233264e-08,23.999999479989288,1.0440416309880174,-14.562565466116832,0.0,1.0,0.0 -274,13.0,3.2080720288192857,1.6,0.0,0.0,1.001491617811221,-14.60111445634593,1.0,0.0,0.0 -274,14.0,4.2429339735997,2.5,0.0,0.0,1.001443744583991,-14.239787188854027,1.0,0.0,0.0 -274,15.0,1.8110084033657257,1.8,0.0,0.0,1.0104324785128271,-13.50912080051446,1.0,0.0,0.0 -274,16.0,4.656878751511866,5.8,0.0,0.0,1.0108725287236302,-12.437956116649731,1.0,0.0,0.0 -274,17.0,1.6557791116486635,0.9,0.0,0.0,0.9985048858018616,-13.710180642795317,1.0,0.0,0.0 -274,18.0,4.91559423770697,3.4,0.0,0.0,0.999054570766622,-13.30572195637158,1.0,0.0,0.0 -274,19.0,1.1383481392584565,0.7,0.0,0.0,1.0033782206414978,-12.968522237843882,1.0,0.0,0.0 -274,20.0,9.05504201682863,11.2,0.0,0.0,1.0075667776725303,-12.102613068772488,1.0,0.0,0.0 -274,21.0,0.0,0.0,0.0,0.0,1.007754434600136,-12.13392354737088,1.0,0.0,0.0 -274,22.0,1.6557791116486635,1.6,0.0,0.0,0.9956210255755196,-13.63161319283227,1.0,0.0,0.0 -274,23.0,4.5016494597948045,6.7,0.0,0.0,0.9945333618103748,-12.680754307160376,1.0,0.0,0.0 -274,24.0,0.0,0.0,0.0,0.0,0.988825882740874,-11.937483855479,1.0,0.0,0.0 -274,25.0,1.8110084033657257,2.3,0.0,0.0,0.9751378111650848,-11.998724605406284,1.0,0.0,0.0 -274,26.0,0.0,0.0,0.0,0.0,0.9920307926660727,-11.408098816948392,1.0,0.0,0.0 -274,27.0,0.0,0.0,0.0,0.0,0.9714421888101912,-8.902308171062447,1.0,0.0,0.0 -274,28.0,1.2418343337364977,0.9,0.0,0.0,0.9634024575432036,-12.713994184546872,1.0,0.0,0.0 -274,29.0,5.484768307336197,1.9,0.0,0.0,0.9400000015681876,-13.998726399979356,1.0,0.0,0.0 -275,0.0,0.0,0.0,138.00000343311632,0.000154335285174,1.0,0.0,0.0,0.0,1.0 -275,1.0,11.2282521008675,12.7,16.980733344414052,4.0693192723255365,0.9751783650241233,-4.637420797254155,0.0,1.0,0.0 -275,2.0,1.2418343337364977,1.2,0.0,0.0,0.9573111876684816,-9.436773878704058,1.0,0.0,0.0 -275,3.0,3.932475390165576,1.6,0.0,0.0,0.9578051904003646,-9.414087028449002,1.0,0.0,0.0 -275,4.0,48.741997599157536,19.0,-3.6834876807701707e-10,25.927944665816145,0.9578872075388948,-10.647069800819672,0.0,1.0,0.0 -275,5.0,0.0,0.0,0.0,0.0,0.9612161035497566,-9.912149287375632,1.0,0.0,0.0 -275,6.0,11.797426170496728,10.9,0.0,0.0,0.9532639441663152,-10.471913988881218,1.0,0.0,0.0 -275,7.0,15.522929171706222,30.0,-5.407150633508428e-10,39.68749700418686,0.961984831015122,-10.601232073691172,0.0,1.0,0.0 -275,8.0,0.0,0.0,0.0,0.0,1.01255172234915,-11.80104819259081,1.0,0.0,0.0 -275,9.0,3.001099639863203,2.0,0.0,0.0,1.0037805760871077,-12.779014463581454,1.0,0.0,0.0 -275,10.0,0.0,0.0,-8.704294130179115e-10,23.99986656783643,1.0596608718761276,-11.801048192687484,0.0,1.0,0.0 -275,11.0,5.795226890770322,7.5,0.0,0.0,1.0139139770526129,-12.47747472678579,1.0,0.0,0.0 -275,12.0,0.0,0.0,-7.28554672087774e-10,14.306476003822144,1.0332976145670982,-12.477474726841567,0.0,1.0,0.0 -275,13.0,3.2080720288192857,1.6,0.0,0.0,1.0058986316254614,-12.828020394402738,1.0,0.0,0.0 -275,14.0,4.2429339735997,2.5,0.0,0.0,0.9999923897017414,-12.915206769686357,1.0,0.0,0.0 -275,15.0,1.8110084033657257,1.8,0.0,0.0,1.0035746390012703,-12.694749081824648,1.0,0.0,0.0 -275,16.0,4.656878751511866,5.8,0.0,0.0,0.9993773346011068,-12.841165215771412,1.0,0.0,0.0 -275,17.0,1.6557791116486635,0.9,0.0,0.0,0.9923704049051544,-13.187150156056084,1.0,0.0,0.0 -275,18.0,4.91559423770697,3.4,0.0,0.0,0.9900946505606372,-13.257835269641578,1.0,0.0,0.0 -275,19.0,1.1383481392584565,0.7,0.0,0.0,0.9929162904868668,-13.16735742249572,1.0,0.0,0.0 -275,20.0,9.05504201682863,11.2,0.0,0.0,0.9667562067738944,-13.425662452823175,1.0,0.0,0.0 -275,21.0,0.0,0.0,0.0,0.0,0.9705771896208474,-13.374504780385095,1.0,0.0,0.0 -275,22.0,1.6557791116486635,1.6,0.0,0.0,0.9950789013467756,-13.015664389143758,1.0,0.0,0.0 -275,23.0,4.5016494597948045,6.7,0.0,0.0,0.9584809363345672,-13.659446256859177,1.0,0.0,0.0 -275,24.0,0.0,0.0,0.0,0.0,0.9556989038893288,-13.63787653772611,1.0,0.0,0.0 -275,25.0,1.8110084033657257,2.3,0.0,0.0,0.9415220770074972,-13.703502367586992,1.0,0.0,0.0 -275,26.0,0.0,0.0,0.0,0.0,0.9611673077521544,-13.548755958408725,1.0,0.0,0.0 -275,27.0,0.0,0.0,0.0,0.0,0.9496308411240189,-11.52888171687071,1.0,0.0,0.0 -275,28.0,1.2418343337364977,0.9,0.0,0.0,0.9474395934201104,-14.170981046318968,1.0,0.0,0.0 -275,29.0,5.484768307336197,1.9,0.0,0.0,0.9400002937684682,-14.642186794278944,1.0,0.0,0.0 -276,0.0,0.0,0.0,152.63860105538475,0.0011518278330235,1.0,0.0,0.0,0.0,1.0 -276,1.0,11.2282521008675,12.7,1.2900288140353296e-06,8.63942370059651,0.98100489862924,-3.4900059004737907,0.0,1.0,0.0 -276,2.0,1.2418343337364977,1.2,0.0,0.0,0.9758318466761218,-4.604327709224706,1.0,0.0,0.0 -276,3.0,3.932475390165576,1.6,0.0,0.0,0.969544338267888,-5.656043357987101,1.0,0.0,0.0 -276,4.0,48.741997599157536,19.0,1.8442897434912406e-09,23.58364460025328,0.962143537061861,-8.400317094535731,0.0,1.0,0.0 -276,5.0,0.0,0.0,0.0,0.0,0.9691462680238552,-6.673871879155518,1.0,0.0,0.0 -276,6.0,11.797426170496728,10.9,0.0,0.0,0.959919603796905,-7.636395377744998,1.0,0.0,0.0 -276,7.0,15.522929171706222,30.0,1.6903629696646121e-09,29.82391574376838,0.9680213173199012,-7.074246544829021,0.0,1.0,0.0 -276,8.0,0.0,0.0,0.0,0.0,1.0147862572689397,-8.28395277112097,1.0,0.0,0.0 -276,9.0,3.001099639863203,2.0,0.0,0.0,1.0116201479546711,-9.117956946492848,1.0,0.0,0.0 -276,10.0,0.0,0.0,1.1461873090596046e-09,15.286071393723375,1.045206121676122,-8.283952770992187,0.0,1.0,0.0 -276,11.0,5.795226890770322,7.5,0.0,0.0,1.0187464581658068,-9.073349153858826,1.0,0.0,0.0 -276,12.0,0.0,0.0,1.9074560277691835e-09,17.154223849490098,1.0417988106392655,-9.073349153714664,0.0,1.0,0.0 -276,13.0,3.2080720288192857,1.6,0.0,0.0,1.007830373450539,-9.461838340626834,1.0,0.0,0.0 -276,14.0,4.2429339735997,2.5,0.0,0.0,1.0047190749918524,-9.435664681024608,1.0,0.0,0.0 -276,15.0,1.8110084033657257,1.8,0.0,0.0,0.9972105112390082,-9.390610309764568,1.0,0.0,0.0 -276,16.0,4.656878751511866,5.8,0.0,0.0,0.9833688590114642,-9.736269817150594,1.0,0.0,0.0 -276,17.0,1.6557791116486635,0.9,0.0,0.0,0.9982606636768449,-9.64045213712092,1.0,0.0,0.0 -276,18.0,4.91559423770697,3.4,0.0,0.0,0.9966591430369528,-9.671995353199913,1.0,0.0,0.0 -276,19.0,1.1383481392584565,0.7,0.0,0.0,0.9998117176774974,-9.562669843810625,1.0,0.0,0.0 -276,20.0,9.05504201682863,11.2,0.0,0.0,1.001235882547722,-9.291380241422027,1.0,0.0,0.0 -276,21.0,0.0,0.0,0.0,0.0,1.0015994503899297,-9.295131650548113,1.0,0.0,0.0 -276,22.0,1.6557791116486635,1.6,0.0,0.0,0.9961609148124136,-9.513918718446726,1.0,0.0,0.0 -276,23.0,4.5016494597948045,6.7,0.0,0.0,0.9912909521784632,-9.486093302402038,1.0,0.0,0.0 -276,24.0,0.0,0.0,0.0,0.0,0.9839421558764714,-9.231431689925875,1.0,0.0,0.0 -276,25.0,1.8110084033657257,2.3,0.0,0.0,0.9701841892187804,-9.293290641577393,1.0,0.0,0.0 -276,26.0,0.0,0.0,0.0,0.0,0.9862815993700292,-9.007188467970675,1.0,0.0,0.0 -276,27.0,0.0,0.0,0.0,0.0,0.9673186705253108,-7.004159260370191,1.0,0.0,0.0 -276,28.0,1.2418343337364977,0.9,0.0,0.0,0.972923153715766,-9.59770912868066,1.0,0.0,0.0 -276,29.0,5.484768307336197,1.9,0.0,0.0,0.9656846227992648,-10.0443941081176,1.0,0.0,0.0 -277,0.0,0.0,0.0,152.75680686978384,0.0008216178404296,1.0,0.0,0.0,0.0,1.0 -277,1.0,11.2282521008675,12.7,1.084082702856962e-06,10.978120031785709,0.9809574082626666,-3.5606637730329886,0.0,1.0,0.0 -277,2.0,1.2418343337364977,1.2,0.0,0.0,0.9756811323434686,-4.41526890023608,1.0,0.0,0.0 -277,3.0,3.932475390165576,1.6,0.0,0.0,0.9693365096069932,-5.421361096350704,1.0,0.0,0.0 -277,4.0,48.741997599157536,19.0,-3.071521239577803e-09,22.209922574031708,0.9622316269534412,-9.58621105079726,0.0,1.0,0.0 -277,5.0,0.0,0.0,0.0,0.0,0.9674389100495122,-6.206708645516992,1.0,0.0,0.0 -277,6.0,11.797426170496728,10.9,0.0,0.0,0.9554254660897368,-6.638810760565974,1.0,0.0,0.0 -277,7.0,15.522929171706222,30.0,-2.841597771196256e-09,37.20518853012439,0.9691188575109166,-6.66844809547122,0.0,1.0,0.0 -277,8.0,0.0,0.0,0.0,0.0,1.0275050434892803,-11.159769912542098,1.0,0.0,0.0 -277,9.0,3.001099639863203,2.0,0.0,0.0,1.013531849400074,-11.159769912426592,1.0,0.0,0.0 -277,10.0,0.0,0.0,-1.9085175598989547e-09,13.387934257009157,1.053927083209317,-11.159769912752129,0.0,1.0,0.0 -277,11.0,5.795226890770322,7.5,0.0,0.0,1.0282593512180171,-9.269025170522308,1.0,0.0,0.0 -277,12.0,0.0,0.0,-3.187338623939661e-09,13.71413311500478,1.0466041911520825,-9.269025170759884,0.0,1.0,0.0 -277,13.0,3.2080720288192857,1.6,0.0,0.0,1.0184194829223148,-9.687887166255877,1.0,0.0,0.0 -277,14.0,4.2429339735997,2.5,0.0,0.0,1.016009524612595,-9.721209767245606,1.0,0.0,0.0 -277,15.0,1.8110084033657257,1.8,0.0,0.0,1.0148388852357242,-10.152696888384394,1.0,0.0,0.0 -277,16.0,4.656878751511866,5.8,0.0,0.0,1.00996466669764,-10.93378008913127,1.0,0.0,0.0 -277,17.0,1.6557791116486635,0.9,0.0,0.0,0.9881345487780776,-12.0755450698658,1.0,0.0,0.0 -277,18.0,4.91559423770697,3.4,0.0,0.0,0.9903833243868926,-11.98396806707706,1.0,0.0,0.0 -277,19.0,1.1383481392584565,0.7,0.0,0.0,0.995600331167673,-11.80926579448201,1.0,0.0,0.0 -277,20.0,9.05504201682863,11.2,0.0,0.0,1.0035222029168287,-11.17293248166553,1.0,0.0,0.0 -277,21.0,0.0,0.0,0.0,0.0,1.0040152181351742,-11.12553731123894,1.0,0.0,0.0 -277,22.0,1.6557791116486635,1.6,0.0,0.0,1.0049513141388342,-10.166411338211985,1.0,0.0,0.0 -277,23.0,4.5016494597948045,6.7,0.0,0.0,0.9968075860890327,-10.64074870061594,1.0,0.0,0.0 -277,24.0,0.0,0.0,0.0,0.0,0.9890075620431396,-9.775175826769216,1.0,0.0,0.0 -277,25.0,1.8110084033657257,2.3,0.0,0.0,0.9753220767255976,-9.836393757823412,1.0,0.0,0.0 -277,26.0,0.0,0.0,0.0,0.0,0.99089366996162,-9.170571973521684,1.0,0.0,0.0 -277,27.0,0.0,0.0,0.0,0.0,0.9665273463796982,-6.6284620217203365,1.0,0.0,0.0 -277,28.0,1.2418343337364977,0.9,0.0,0.0,0.9776008325310156,-9.755535587153398,1.0,0.0,0.0 -277,29.0,5.484768307336197,1.9,0.0,0.0,0.9703979661203316,-10.197928506876275,1.0,0.0,0.0 -278,0.0,0.0,0.0,152.5587932462867,0.0002462865857033,1.0,0.0,0.0,0.0,1.0 -278,1.0,11.2282521008675,12.7,2.7917649691745525e-07,9.583309009750964,0.9811495157882192,-3.494916601560938,0.0,1.0,0.0 -278,2.0,1.2418343337364977,1.2,0.0,0.0,0.9754336457588954,-4.584328497290247,1.0,0.0,0.0 -278,3.0,3.932475390165576,1.6,0.0,0.0,0.969051153855788,-5.631367658176318,1.0,0.0,0.0 -278,4.0,48.741997599157536,19.0,-3.3481572895278277e-10,23.64387344885145,0.9621312405789472,-8.411742803536317,0.0,1.0,0.0 -278,5.0,0.0,0.0,0.0,0.0,0.9688457276167732,-6.688385806824022,1.0,0.0,0.0 -278,6.0,11.797426170496728,10.9,0.0,0.0,0.9597347499156842,-7.64960844691242,1.0,0.0,0.0 -278,7.0,15.522929171706222,30.0,-3.0778667877584536e-10,30.28562569555595,0.9678646339400696,-7.092337700800647,0.0,1.0,0.0 -278,8.0,0.0,0.0,0.0,0.0,1.016650168738662,-8.399499176593752,1.0,0.0,0.0 -278,9.0,3.001099639863203,2.0,0.0,0.0,1.0078643858775147,-9.288853232311482,1.0,0.0,0.0 -278,10.0,0.0,0.0,-1.9286208367773179e-10,22.06255246618419,1.059944972089807,-8.399499176615082,0.0,1.0,0.0 -278,11.0,5.795226890770322,7.5,0.0,0.0,1.014307716495528,-8.844098778157225,1.0,0.0,0.0 -278,12.0,0.0,0.0,-4.1106751754702125e-10,9.232183665676672,1.0268942675556614,-8.844098778188883,0.0,1.0,0.0 -278,13.0,3.2080720288192857,1.6,0.0,0.0,1.0035990073471954,-9.2802254867515,1.0,0.0,0.0 -278,14.0,4.2429339735997,2.5,0.0,0.0,1.0004154754016987,-9.303324103801057,1.0,0.0,0.0 -278,15.0,1.8110084033657257,1.8,0.0,0.0,1.00547970910433,-9.130182754102346,1.0,0.0,0.0 -278,16.0,4.656878751511866,5.8,0.0,0.0,1.0028242987724814,-9.324604277050412,1.0,0.0,0.0 -278,17.0,1.6557791116486635,0.9,0.0,0.0,0.9940923280854612,-9.617451594718636,1.0,0.0,0.0 -278,18.0,4.91559423770697,3.4,0.0,0.0,0.9925834115052328,-9.713486363466906,1.0,0.0,0.0 -278,19.0,1.1383481392584565,0.7,0.0,0.0,0.995798404280674,-9.637102378997469,1.0,0.0,0.0 -278,20.0,9.05504201682863,11.2,0.0,0.0,0.997487308671894,-9.4440411837711,1.0,0.0,0.0 -278,21.0,0.0,0.0,0.0,0.0,0.9978690444573548,-9.441557874762513,1.0,0.0,0.0 -278,22.0,1.6557791116486635,1.6,0.0,0.0,0.9922314481420084,-9.466089053329735,1.0,0.0,0.0 -278,23.0,4.5016494597948045,6.7,0.0,0.0,0.9879010268646412,-9.551135743812798,1.0,0.0,0.0 -278,24.0,0.0,0.0,0.0,0.0,0.9816954013566608,-9.29309829413875,1.0,0.0,0.0 -278,25.0,1.8110084033657257,2.3,0.0,0.0,0.9679050357525012,-9.355244813655167,1.0,0.0,0.0 -278,26.0,0.0,0.0,0.0,0.0,0.9847601275222962,-9.065222727622556,1.0,0.0,0.0 -278,27.0,0.0,0.0,0.0,0.0,0.966895018779267,-7.021781342665333,1.0,0.0,0.0 -278,28.0,1.2418343337364977,0.9,0.0,0.0,0.9713798923079054,-9.65759406316836,1.0,0.0,0.0 -278,29.0,5.484768307336197,1.9,0.0,0.0,0.9641295162180888,-10.105708823330565,1.0,0.0,0.0 -279,0.0,0.0,0.0,85.34395098748524,4.15883203430667e-06,1.0,0.0,0.0,0.0,1.0 -279,1.0,11.2282521008675,12.7,69.79796403850594,3.10172454221204,0.9832960482439124,-2.831042779185895,0.0,1.0,0.0 -279,2.0,1.2418343337364977,1.2,0.0,0.0,0.9472406410804446,-13.683376423500428,1.0,0.0,0.0 -279,3.0,3.932475390165576,1.6,0.0,0.0,0.9477431200500944,-13.660272819021063,1.0,0.0,0.0 -279,4.0,48.741997599157536,19.0,3.083372495038841e-08,22.17482848330492,0.9645909650285686,-8.826715502052418,0.0,1.0,0.0 -279,5.0,0.0,0.0,0.0,0.0,0.9522331242179,-13.03931505212786,1.0,0.0,0.0 -279,6.0,11.797426170496728,10.9,0.0,0.0,0.9400000014611752,-13.485096792741537,1.0,0.0,0.0 -279,7.0,15.522929171706222,30.0,1.4165392456881e-09,39.999999279367685,0.9549564293314272,-13.523240299221614,0.0,1.0,0.0 -279,8.0,0.0,0.0,0.0,0.0,1.0072602023721162,-15.05689952270642,1.0,0.0,0.0 -279,9.0,3.001099639863203,2.0,0.0,0.0,1.000483151097881,-16.095120350661727,1.0,0.0,0.0 -279,10.0,0.0,0.0,9.770036229510984e-10,23.999999152821832,1.0545958687783368,-15.056899522596805,0.0,1.0,0.0 -279,11.0,5.795226890770322,7.5,0.0,0.0,1.0143832409566382,-16.41168364091454,1.0,0.0,0.0 -279,12.0,0.0,0.0,3.544153847951813e-09,23.99999918129988,1.0464905531096038,-16.411683640646725,0.0,1.0,0.0 -279,13.0,3.2080720288192857,1.6,0.0,0.0,1.0023844196829903,-16.763727320047106,1.0,0.0,0.0 -279,14.0,4.2429339735997,2.5,0.0,0.0,0.9985416280165824,-16.674173523646253,1.0,0.0,0.0 -279,15.0,1.8110084033657257,1.8,0.0,0.0,1.002802898223281,-16.357250598696954,1.0,0.0,0.0 -279,16.0,4.656878751511866,5.8,0.0,0.0,0.9967235586938398,-16.269001103055537,1.0,0.0,0.0 -279,17.0,1.6557791116486635,0.9,0.0,0.0,0.9902725035448836,-16.79200803882544,1.0,0.0,0.0 -279,18.0,4.91559423770697,3.4,0.0,0.0,0.9876167006675142,-16.77011609459834,1.0,0.0,0.0 -279,19.0,1.1383481392584565,0.7,0.0,0.0,0.9902530084609272,-16.630114119281806,1.0,0.0,0.0 -279,20.0,9.05504201682863,11.2,0.0,0.0,0.9901067305027182,-16.269895246790096,1.0,0.0,0.0 -279,21.0,0.0,0.0,0.0,0.0,0.9905143378580316,-16.272961630292766,1.0,0.0,0.0 -279,22.0,1.6557791116486635,1.6,0.0,0.0,0.9880474050535324,-16.641296168474067,1.0,0.0,0.0 -279,23.0,4.5016494597948045,6.7,0.0,0.0,0.9806404325460684,-16.46124041085237,1.0,0.0,0.0 -279,24.0,0.0,0.0,0.0,0.0,0.9715927051531352,-15.988939388795748,1.0,0.0,0.0 -279,25.0,1.8110084033657257,2.3,0.0,0.0,0.9576547211558702,-16.05240421807805,1.0,0.0,0.0 -279,26.0,0.0,0.0,0.0,0.0,0.9729097462969288,-15.628520393982624,1.0,0.0,0.0 -279,27.0,0.0,0.0,0.0,0.0,0.9515048891222744,-13.419254474565172,1.0,0.0,0.0 -279,28.0,1.2418343337364977,0.9,0.0,0.0,0.9593572651088748,-16.235610281118536,1.0,0.0,0.0 -279,29.0,5.484768307336197,1.9,0.0,0.0,0.952013245933838,-16.695103089676802,1.0,0.0,0.0 -280,0.0,0.0,0.0,154.86023144530225,0.0003592003261054,1.0,0.0,0.0,0.0,1.0 -280,1.0,11.39113004159782,12.7,4.095689102750211e-07,9.802228762436826,0.9809266642309308,-3.5491845570748053,0.0,1.0,0.0 -280,2.0,1.2598484838633532,1.2,0.0,0.0,0.975135657475558,-4.655331143027866,1.0,0.0,0.0 -280,3.0,3.9895201989006175,1.6,0.0,0.0,0.9686952513794288,-5.719236560980176,1.0,0.0,0.0 -280,4.0,49.44905299163662,19.0,-4.793120093813974e-10,23.772496796614547,0.9616718137056668,-8.54251486756451,0.0,1.0,0.0 -280,5.0,0.0,0.0,0.0,0.0,0.9684518014889646,-6.791956755028219,1.0,0.0,0.0 -280,6.0,11.968560596701856,10.9,0.0,0.0,0.9592827490751182,-7.769581595588555,1.0,0.0,0.0 -280,7.0,15.748106048291916,30.0,-4.256574922598016e-10,30.349069513711516,0.9674649390393828,-7.202300587384258,0.0,1.0,0.0 -280,8.0,0.0,0.0,0.0,0.0,1.0164031150805135,-8.528665084116748,1.0,0.0,0.0 -280,9.0,3.044633836003104,2.0,0.0,0.0,1.0075820217639653,-9.431205044758071,1.0,0.0,0.0 -280,10.0,0.0,0.0,-2.48342965523042e-10,22.185991305107592,1.0599403408435213,-8.52866508414422,0.0,1.0,0.0 -280,11.0,5.8792929246956485,7.5,0.0,0.0,1.014158170282682,-8.980433707686542,1.0,0.0,0.0 -280,12.0,0.0,0.0,-5.58339347754936e-10,9.391227496225742,1.0269607227113704,-8.98043370772954,0.0,1.0,0.0 -280,13.0,3.254608583313663,1.6,0.0,0.0,1.0033663090780387,-9.4249979254062,1.0,0.0,0.0 -280,14.0,4.304482319866457,2.5,0.0,0.0,1.0001492643041303,-9.44914090717615,1.0,0.0,0.0 -280,15.0,1.83727903896739,1.8,0.0,0.0,1.0052435500539585,-9.27192617493115,1.0,0.0,0.0 -280,16.0,4.724431814487575,5.8,0.0,0.0,1.002541463358449,-9.46912536228616,1.0,0.0,0.0 -280,17.0,1.6797979784844712,0.9,0.0,0.0,0.9937615219412528,-9.768861343177663,1.0,0.0,0.0 -280,18.0,4.986900248625774,3.4,0.0,0.0,0.9922307447277962,-9.866378823063709,1.0,0.0,0.0 -280,19.0,1.154861110208074,0.7,0.0,0.0,0.995460081933914,-9.787872133404678,1.0,0.0,0.0 -280,20.0,9.186395194836953,11.2,0.0,0.0,0.9971571053145122,-9.591413155157198,1.0,0.0,0.0 -280,21.0,0.0,0.0,0.0,0.0,0.9975395861833788,-9.58870854764548,1.0,0.0,0.0 -280,22.0,1.6797979784844712,1.6,0.0,0.0,0.9918963813266976,-9.615822292476894,1.0,0.0,0.0 -280,23.0,4.566950754004655,6.7,0.0,0.0,0.9875090741449604,-9.702319405234768,1.0,0.0,0.0 -280,24.0,0.0,0.0,0.0,0.0,0.9812678496992424,-9.440695505715093,1.0,0.0,0.0 -280,25.0,1.83727903896739,2.3,0.0,0.0,0.9674010978346156,-9.50892685003816,1.0,0.0,0.0 -280,26.0,0.0,0.0,0.0,0.0,0.9843431675304454,-9.20730935705718,1.0,0.0,0.0 -280,27.0,0.0,0.0,0.0,0.0,0.9664792312895242,-7.130820328561063,1.0,0.0,0.0 -280,28.0,1.2598484838633532,0.9,0.0,0.0,0.9708467599736668,-9.811585497485725,1.0,0.0,0.0 -280,29.0,5.56433080372981,1.9,0.0,0.0,0.9635214628363674,-10.26785942323166,1.0,0.0,0.0 -281,0.0,0.0,0.0,154.93632843348695,0.0006086426701301,1.0,0.0,0.0,0.0,1.0 -281,1.0,11.39113004159782,12.7,6.306445287109034e-07,9.778883800561855,0.9809130852111202,-3.552219379824592,0.0,1.0,0.0 -281,2.0,1.2598484838633532,1.2,0.0,0.0,0.9751384937151004,-4.654083645964667,1.0,0.0,0.0 -281,3.0,3.9895201989006175,1.6,0.0,0.0,0.9686985845531016,-5.717686290527355,1.0,0.0,0.0 -281,4.0,49.44905299163662,19.0,-6.884689182378842e-10,23.83385152247567,0.9617086959598948,-8.551358312063197,0.0,1.0,0.0 -281,5.0,0.0,0.0,0.0,0.0,0.9684083145670372,-6.804611538407976,1.0,0.0,0.0 -281,6.0,11.968560596701856,10.9,0.0,0.0,0.9592715008821692,-7.780653858051423,1.0,0.0,0.0 -281,7.0,15.748106048291916,30.0,-5.457518272768108e-10,30.93290816460576,0.9674855273074128,-7.22083349277357,0.0,1.0,0.0 -281,8.0,0.0,0.0,0.0,0.0,1.0175932317117171,-8.527499430795901,1.0,0.0,0.0 -281,9.0,3.044633836003104,2.0,0.0,0.0,1.0100193996249698,-9.4206577484032,1.0,0.0,0.0 -281,10.0,0.0,0.0,-1.7300980199262432e-10,21.6085036791735,1.0599950229281714,-8.527499430815016,0.0,1.0,0.0 -281,11.0,5.8792929246956485,7.5,0.0,0.0,1.0139631421468651,-8.895464434605701,1.0,0.0,0.0 -281,12.0,0.0,0.0,-7.444998064121727e-10,9.616722874132227,1.0270716838730043,-8.895464434663046,0.0,1.0,0.0 -281,13.0,3.254608583313663,1.6,0.0,0.0,1.002779852889087,-9.310838742371375,1.0,0.0,0.0 -281,14.0,4.304482319866457,2.5,0.0,0.0,0.9993903160913792,-9.297072394913585,1.0,0.0,0.0 -281,15.0,1.83727903896739,1.8,0.0,0.0,1.0061417761384372,-9.224362050525926,1.0,0.0,0.0 -281,16.0,4.724431814487575,5.8,0.0,0.0,1.0045211017057998,-9.444886535707948,1.0,0.0,0.0 -281,17.0,1.6797979784844712,0.9,0.0,0.0,0.9843658836477494,-10.362135015311738,1.0,0.0,0.0 -281,18.0,4.986900248625774,3.4,0.0,0.0,0.986638921536376,-10.268027805751675,1.0,0.0,0.0 -281,19.0,1.154861110208074,0.7,0.0,0.0,0.991908938608952,-10.088214939923944,1.0,0.0,0.0 -281,20.0,9.186395194836953,11.2,0.0,0.0,1.0019094909721002,-9.536533316380254,1.0,0.0,0.0 -281,21.0,0.0,0.0,0.0,0.0,1.0030160988618766,-9.520914079768868,1.0,0.0,0.0 -281,22.0,1.6797979784844712,1.6,0.0,0.0,0.9840042548185,-9.632102848963324,1.0,0.0,0.0 -281,23.0,4.566950754004655,6.7,0.0,0.0,0.9702093341759924,-9.952812742496445,1.0,0.0,0.0 -281,24.0,0.0,0.0,0.0,0.0,0.9702832949058402,-9.684690539780831,1.0,0.0,0.0 -281,25.0,1.83727903896739,2.3,0.0,0.0,0.9562548945331332,-9.754498646733728,1.0,0.0,0.0 -281,26.0,0.0,0.0,0.0,0.0,0.9773601949582628,-9.43895154273516,1.0,0.0,0.0 -281,27.0,0.0,0.0,0.0,0.0,0.9655895487107816,-7.155322108199954,1.0,0.0,0.0 -281,28.0,1.2598484838633532,0.9,0.0,0.0,0.963761828498906,-10.05201274349544,1.0,0.0,0.0 -281,29.0,5.56433080372981,1.9,0.0,0.0,0.9563810185977089,-10.515065273246655,1.0,0.0,0.0 -282,0.0,0.0,0.0,155.18455143037303,0.0028574369255629,1.0,0.0,0.0,0.0,1.0 -282,1.0,11.39113004159782,12.7,2.520966673546823e-06,10.222168821121969,0.9824880908010116,-3.282777431814237,0.0,1.0,0.0 -282,2.0,1.2598484838633532,1.2,0.0,0.0,0.971717413187116,-5.465638815153725,1.0,0.0,0.0 -282,3.0,3.9895201989006175,1.6,0.0,0.0,0.9646173964907796,-6.727639959583542,1.0,0.0,0.0 -282,4.0,49.44905299163662,19.0,1.1391302704939252e-09,24.600505441781635,0.96242843622762,-8.769561240242988,0.0,1.0,0.0 -282,5.0,0.0,0.0,0.0,0.0,0.966244500376335,-7.507254405266305,1.0,0.0,0.0 -282,6.0,11.968560596701856,10.9,0.0,0.0,0.9582043251040704,-8.28500405741977,1.0,0.0,0.0 -282,7.0,15.748106048291916,30.0,4.867514011901335e-10,31.562848668861392,0.9657144112376028,-7.927717516111747,0.0,1.0,0.0 -282,8.0,0.0,0.0,0.0,0.0,1.0153449362801823,-9.299299019866924,1.0,0.0,0.0 -282,9.0,3.044633836003104,2.0,0.0,0.0,1.006589260286584,-10.229383330767794,1.0,0.0,0.0 -282,10.0,0.0,0.0,-9.26192059469191e-10,22.75689762584553,1.059999981459146,-9.299299019969482,0.0,1.0,0.0 -282,11.0,5.8792929246956485,7.5,0.0,0.0,1.0135122124480491,-9.899275941855736,1.0,0.0,0.0 -282,12.0,0.0,0.0,2.1230889297471318e-10,11.393183427277492,1.0290129472453016,-9.899275941839404,0.0,1.0,0.0 -282,13.0,3.254608583313663,1.6,0.0,0.0,1.0026168103061233,-10.329715567816915,1.0,0.0,0.0 -282,14.0,4.304482319866457,2.5,0.0,0.0,0.9994060471652424,-10.337163986955694,1.0,0.0,0.0 -282,15.0,1.83727903896739,1.8,0.0,0.0,1.0045241622506833,-10.138454017086625,1.0,0.0,0.0 -282,16.0,4.724431814487575,5.8,0.0,0.0,1.0016045889263212,-10.289081970968615,1.0,0.0,0.0 -282,17.0,1.6797979784844712,0.9,0.0,0.0,0.9929293414899014,-10.625790475741807,1.0,0.0,0.0 -282,18.0,4.986900248625774,3.4,0.0,0.0,0.9913464748056684,-10.70460544786608,1.0,0.0,0.0 -282,19.0,1.154861110208074,0.7,0.0,0.0,0.9945526767228808,-10.616012881485943,1.0,0.0,0.0 -282,20.0,9.186395194836953,11.2,0.0,0.0,0.9961400225832804,-10.39247923438904,1.0,0.0,0.0 -282,21.0,0.0,0.0,0.0,0.0,0.9965182683225438,-10.390588754192336,1.0,0.0,0.0 -282,22.0,1.6797979784844712,1.6,0.0,0.0,0.990994673617676,-10.471885870441922,1.0,0.0,0.0 -282,23.0,4.566950754004655,6.7,0.0,0.0,0.9863955328730212,-10.515070035693215,1.0,0.0,0.0 -282,24.0,0.0,0.0,0.0,0.0,0.9798555764034692,-10.21710006306796,1.0,0.0,0.0 -282,25.0,1.83727903896739,2.3,0.0,0.0,0.9659682536124474,-10.285531105260516,1.0,0.0,0.0 -282,26.0,0.0,0.0,0.0,0.0,0.982744991276875,-9.961164752439608,1.0,0.0,0.0 -282,27.0,0.0,0.0,0.0,0.0,0.9644188697046856,-7.853280443405741,1.0,0.0,0.0 -282,28.0,1.2598484838633532,0.9,0.0,0.0,0.9692253874841732,-10.567434684206653,1.0,0.0,0.0 -282,29.0,5.56433080372981,1.9,0.0,0.0,0.9618874612557792,-11.025246652248402,1.0,0.0,0.0 -283,0.0,0.0,0.0,155.5570471215771,5.34211460845313e-05,1.0,0.0,0.0,0.0,1.0 -283,1.0,11.39113004159782,12.7,7.539241820849946e-08,9.710964125980198,0.9812734200227724,-3.5236628683954034,0.0,1.0,0.0 -283,2.0,1.2598484838633532,1.2,0.0,0.0,0.9740340587616604,-4.801060214331606,1.0,0.0,0.0 -283,3.0,3.9895201989006175,1.6,0.0,0.0,0.9673576381304272,-5.900698529067784,1.0,0.0,0.0 -283,4.0,49.44905299163662,19.0,1.9903058654520518e-10,35.371124918433566,0.9606254322210378,-11.220920770658244,0.0,1.0,0.0 -283,5.0,0.0,0.0,0.0,0.0,0.969021545670087,-6.567116791752085,1.0,0.0,0.0 -283,6.0,11.968560596701856,10.9,0.0,0.0,0.9424317826145644,-11.808636393728442,1.0,0.0,0.0 -283,7.0,15.748106048291916,30.0,9.67831536189539e-13,28.23221415970454,0.9671903553214004,-6.966341094547822,0.0,1.0,0.0 -283,8.0,0.0,0.0,0.0,0.0,1.0148091075492374,-8.49027670109116,1.0,0.0,0.0 -283,9.0,3.044633836003104,2.0,0.0,0.0,1.0044966821650818,-9.493347186793772,1.0,0.0,0.0 -283,10.0,0.0,0.0,-1.3312583325765774e-10,22.57744106766559,1.059147663031059,-8.49027670110592,0.0,1.0,0.0 -283,11.0,5.8792929246956485,7.5,0.0,0.0,1.015441518542146,-8.737750447255854,1.0,0.0,0.0 -283,12.0,0.0,0.0,-5.45491581623938e-11,8.150042392679847,1.0265564064123878,-8.73775044726005,0.0,1.0,0.0 -283,13.0,3.254608583313663,1.6,0.0,0.0,1.006821228981239,-9.07082195201462,1.0,0.0,0.0 -283,14.0,4.304482319866457,2.5,0.0,0.0,1.0064440465937772,-9.035417025690997,1.0,0.0,0.0 -283,15.0,1.83727903896739,1.8,0.0,0.0,1.0044244799351525,-9.15038983169474,1.0,0.0,0.0 -283,16.0,4.724431814487575,5.8,0.0,0.0,1.000218880075542,-9.477096288081738,1.0,0.0,0.0 -283,17.0,1.6797979784844712,0.9,0.0,0.0,0.9786938791507296,-10.445489679272276,1.0,0.0,0.0 -283,18.0,4.986900248625774,3.4,0.0,0.0,0.980980105917113,-10.35029106525306,1.0,0.0,0.0 -283,19.0,1.154861110208074,0.7,0.0,0.0,0.9862806284601512,-10.168408908877696,1.0,0.0,0.0 -283,20.0,9.186395194836953,11.2,0.0,0.0,0.9935914927883432,-9.65756993835222,1.0,0.0,0.0 -283,21.0,0.0,0.0,0.0,0.0,0.9938340660483248,-9.655615358006196,1.0,0.0,0.0 -283,22.0,1.6797979784844712,1.6,0.0,0.0,1.0015381997655073,-9.137344785714324,1.0,0.0,0.0 -283,23.0,4.566950754004655,6.7,0.0,0.0,0.9818692911358508,-9.768576634421894,1.0,0.0,0.0 -283,24.0,0.0,0.0,0.0,0.0,0.9780952523291288,-9.427006579287792,1.0,0.0,0.0 -283,25.0,1.83727903896739,2.3,0.0,0.0,0.964182202097674,-9.495687770134246,1.0,0.0,0.0 -283,26.0,0.0,0.0,0.0,0.0,0.98270235948404,-9.140962726257436,1.0,0.0,0.0 -283,27.0,0.0,0.0,0.0,0.0,0.9665506760679524,-6.917356035508001,1.0,0.0,0.0 -283,28.0,1.2598484838633532,0.9,0.0,0.0,0.9691821358027624,-9.747285978675905,1.0,0.0,0.0 -283,29.0,5.56433080372981,1.9,0.0,0.0,0.9618438720755252,-10.205139082177675,1.0,0.0,0.0 -284,0.0,0.0,0.0,154.86023144530225,0.0003592003261054,1.0,0.0,0.0,0.0,1.0 -284,1.0,11.39113004159782,12.7,4.095689102750211e-07,9.802228762436826,0.9809266642309308,-3.5491845570748053,0.0,1.0,0.0 -284,2.0,1.2598484838633532,1.2,0.0,0.0,0.975135657475558,-4.655331143027866,1.0,0.0,0.0 -284,3.0,3.9895201989006175,1.6,0.0,0.0,0.9686952513794288,-5.719236560980176,1.0,0.0,0.0 -284,4.0,49.44905299163662,19.0,-4.793120093813974e-10,23.772496796614547,0.9616718137056668,-8.54251486756451,0.0,1.0,0.0 -284,5.0,0.0,0.0,0.0,0.0,0.9684518014889646,-6.791956755028219,1.0,0.0,0.0 -284,6.0,11.968560596701856,10.9,0.0,0.0,0.9592827490751182,-7.769581595588555,1.0,0.0,0.0 -284,7.0,15.748106048291916,30.0,-4.256574922598016e-10,30.349069513711516,0.9674649390393828,-7.202300587384258,0.0,1.0,0.0 -284,8.0,0.0,0.0,0.0,0.0,1.0164031150805135,-8.528665084116748,1.0,0.0,0.0 -284,9.0,3.044633836003104,2.0,0.0,0.0,1.0075820217639653,-9.431205044758071,1.0,0.0,0.0 -284,10.0,0.0,0.0,-2.48342965523042e-10,22.185991305107592,1.0599403408435213,-8.52866508414422,0.0,1.0,0.0 -284,11.0,5.8792929246956485,7.5,0.0,0.0,1.014158170282682,-8.980433707686542,1.0,0.0,0.0 -284,12.0,0.0,0.0,-5.58339347754936e-10,9.391227496225742,1.0269607227113704,-8.98043370772954,0.0,1.0,0.0 -284,13.0,3.254608583313663,1.6,0.0,0.0,1.0033663090780387,-9.4249979254062,1.0,0.0,0.0 -284,14.0,4.304482319866457,2.5,0.0,0.0,1.0001492643041303,-9.44914090717615,1.0,0.0,0.0 -284,15.0,1.83727903896739,1.8,0.0,0.0,1.0052435500539585,-9.27192617493115,1.0,0.0,0.0 -284,16.0,4.724431814487575,5.8,0.0,0.0,1.002541463358449,-9.46912536228616,1.0,0.0,0.0 -284,17.0,1.6797979784844712,0.9,0.0,0.0,0.9937615219412528,-9.768861343177663,1.0,0.0,0.0 -284,18.0,4.986900248625774,3.4,0.0,0.0,0.9922307447277962,-9.866378823063709,1.0,0.0,0.0 -284,19.0,1.154861110208074,0.7,0.0,0.0,0.995460081933914,-9.787872133404678,1.0,0.0,0.0 -284,20.0,9.186395194836953,11.2,0.0,0.0,0.9971571053145122,-9.591413155157198,1.0,0.0,0.0 -284,21.0,0.0,0.0,0.0,0.0,0.9975395861833788,-9.58870854764548,1.0,0.0,0.0 -284,22.0,1.6797979784844712,1.6,0.0,0.0,0.9918963813266976,-9.615822292476894,1.0,0.0,0.0 -284,23.0,4.566950754004655,6.7,0.0,0.0,0.9875090741449604,-9.702319405234768,1.0,0.0,0.0 -284,24.0,0.0,0.0,0.0,0.0,0.9812678496992424,-9.440695505715093,1.0,0.0,0.0 -284,25.0,1.83727903896739,2.3,0.0,0.0,0.9674010978346156,-9.50892685003816,1.0,0.0,0.0 -284,26.0,0.0,0.0,0.0,0.0,0.9843431675304454,-9.20730935705718,1.0,0.0,0.0 -284,27.0,0.0,0.0,0.0,0.0,0.9664792312895242,-7.130820328561063,1.0,0.0,0.0 -284,28.0,1.2598484838633532,0.9,0.0,0.0,0.9708467599736668,-9.811585497485725,1.0,0.0,0.0 -284,29.0,5.56433080372981,1.9,0.0,0.0,0.9635214628363674,-10.26785942323166,1.0,0.0,0.0 -285,0.0,0.0,0.0,155.90431317062198,5.231270785444053e-05,1.0,0.0,0.0,0.0,1.0 -285,1.0,11.39113004159782,12.7,1.024475064577594e-07,10.08834917961709,0.9795827467468738,-3.985177348676528,0.0,1.0,0.0 -285,2.0,1.2598484838633532,1.2,0.0,0.0,0.977299687071672,-3.510123982899912,1.0,0.0,0.0 -285,3.0,3.9895201989006175,1.6,0.0,0.0,0.9712714378948468,-4.29692799244926,1.0,0.0,0.0 -285,4.0,49.44905299163662,19.0,-7.364421716711378e-11,25.232082145297284,0.96101869002759,-10.118112591890128,0.0,1.0,0.0 -285,5.0,0.0,0.0,0.0,0.0,0.9648416570050028,-9.492889704991663,1.0,0.0,0.0 -285,6.0,11.968560596701856,10.9,0.0,0.0,0.9566648843875604,-10.01170960486256,1.0,0.0,0.0 -285,7.0,15.748106048291916,30.0,-9.452002170731442e-11,26.144884637823036,0.9623229649155528,-9.868492296638522,0.0,1.0,0.0 -285,8.0,0.0,0.0,0.0,0.0,1.0144153300560586,-10.512036673627406,1.0,0.0,0.0 -285,9.0,3.044633836003104,2.0,0.0,0.0,1.0066966149489192,-11.04019970432222,1.0,0.0,0.0 -285,10.0,0.0,0.0,-2.0163808724966012e-10,21.702414913106967,1.0571173289569769,-10.512036673649815,0.0,1.0,0.0 -285,11.0,5.8792929246956485,7.5,0.0,0.0,1.0293196571738106,-9.153124127150978,1.0,0.0,0.0 -285,12.0,0.0,0.0,-3.351077091608666e-11,17.24942466448009,1.0522692906421922,-9.153124127153458,0.0,1.0,0.0 -285,13.0,3.254608583313663,1.6,0.0,0.0,1.0213694935832265,-9.499683052436414,1.0,0.0,0.0 -285,14.0,4.304482319866457,2.5,0.0,0.0,1.0096353032342231,-10.069435144945269,1.0,0.0,0.0 -285,15.0,1.83727903896739,1.8,0.0,0.0,1.0124538482161445,-10.019113408275029,1.0,0.0,0.0 -285,16.0,4.724431814487575,5.8,0.0,0.0,1.0044829239911583,-10.817503116581342,1.0,0.0,0.0 -285,17.0,1.6797979784844712,0.9,0.0,0.0,0.999527660031553,-10.729296384969423,1.0,0.0,0.0 -285,18.0,4.986900248625774,3.4,0.0,0.0,0.995814100685126,-11.032641289508833,1.0,0.0,0.0 -285,19.0,1.154861110208074,0.7,0.0,0.0,0.9978751892027738,-11.063544281228872,1.0,0.0,0.0 -285,20.0,9.186395194836953,11.2,0.0,0.0,0.99504883781031,-11.21082168468435,1.0,0.0,0.0 -285,21.0,0.0,0.0,0.0,0.0,0.999592808048242,-11.110838828242231,1.0,0.0,0.0 -285,22.0,1.6797979784844712,1.6,0.0,0.0,0.9985161544690832,-10.580638226321378,1.0,0.0,0.0 -285,23.0,4.566950754004655,6.7,0.0,0.0,0.9903976207844868,-11.139325850142772,1.0,0.0,0.0 -285,24.0,0.0,0.0,0.0,0.0,0.9800484565315406,-11.306740221006812,1.0,0.0,0.0 -285,25.0,1.83727903896739,2.3,0.0,0.0,0.9661639468574594,-11.375143938457128,1.0,0.0,0.0 -285,26.0,0.0,0.0,0.0,0.0,0.980744484859642,-11.346409222595565,1.0,0.0,0.0 -285,27.0,0.0,0.0,0.0,0.0,0.9628642380398544,-9.764598825948305,1.0,0.0,0.0 -285,28.0,1.2598484838633532,0.9,0.0,0.0,0.9671957296279572,-11.95518887748402,1.0,0.0,0.0 -285,29.0,5.56433080372981,1.9,0.0,0.0,0.9598419317062532,-12.414937201799132,1.0,0.0,0.0 -286,0.0,0.0,0.0,154.86023144530225,0.0003592003261054,1.0,0.0,0.0,0.0,1.0 -286,1.0,11.39113004159782,12.7,4.095689102750211e-07,9.802228762436826,0.9809266642309308,-3.5491845570748053,0.0,1.0,0.0 -286,2.0,1.2598484838633532,1.2,0.0,0.0,0.975135657475558,-4.655331143027866,1.0,0.0,0.0 -286,3.0,3.9895201989006175,1.6,0.0,0.0,0.9686952513794288,-5.719236560980176,1.0,0.0,0.0 -286,4.0,49.44905299163662,19.0,-4.793120093813974e-10,23.772496796614547,0.9616718137056668,-8.54251486756451,0.0,1.0,0.0 -286,5.0,0.0,0.0,0.0,0.0,0.9684518014889646,-6.791956755028219,1.0,0.0,0.0 -286,6.0,11.968560596701856,10.9,0.0,0.0,0.9592827490751182,-7.769581595588555,1.0,0.0,0.0 -286,7.0,15.748106048291916,30.0,-4.256574922598016e-10,30.349069513711516,0.9674649390393828,-7.202300587384258,0.0,1.0,0.0 -286,8.0,0.0,0.0,0.0,0.0,1.0164031150805135,-8.528665084116748,1.0,0.0,0.0 -286,9.0,3.044633836003104,2.0,0.0,0.0,1.0075820217639653,-9.431205044758071,1.0,0.0,0.0 -286,10.0,0.0,0.0,-2.48342965523042e-10,22.185991305107592,1.0599403408435213,-8.52866508414422,0.0,1.0,0.0 -286,11.0,5.8792929246956485,7.5,0.0,0.0,1.014158170282682,-8.980433707686542,1.0,0.0,0.0 -286,12.0,0.0,0.0,-5.58339347754936e-10,9.391227496225742,1.0269607227113704,-8.98043370772954,0.0,1.0,0.0 -286,13.0,3.254608583313663,1.6,0.0,0.0,1.0033663090780387,-9.4249979254062,1.0,0.0,0.0 -286,14.0,4.304482319866457,2.5,0.0,0.0,1.0001492643041303,-9.44914090717615,1.0,0.0,0.0 -286,15.0,1.83727903896739,1.8,0.0,0.0,1.0052435500539585,-9.27192617493115,1.0,0.0,0.0 -286,16.0,4.724431814487575,5.8,0.0,0.0,1.002541463358449,-9.46912536228616,1.0,0.0,0.0 -286,17.0,1.6797979784844712,0.9,0.0,0.0,0.9937615219412528,-9.768861343177663,1.0,0.0,0.0 -286,18.0,4.986900248625774,3.4,0.0,0.0,0.9922307447277962,-9.866378823063709,1.0,0.0,0.0 -286,19.0,1.154861110208074,0.7,0.0,0.0,0.995460081933914,-9.787872133404678,1.0,0.0,0.0 -286,20.0,9.186395194836953,11.2,0.0,0.0,0.9971571053145122,-9.591413155157198,1.0,0.0,0.0 -286,21.0,0.0,0.0,0.0,0.0,0.9975395861833788,-9.58870854764548,1.0,0.0,0.0 -286,22.0,1.6797979784844712,1.6,0.0,0.0,0.9918963813266976,-9.615822292476894,1.0,0.0,0.0 -286,23.0,4.566950754004655,6.7,0.0,0.0,0.9875090741449604,-9.702319405234768,1.0,0.0,0.0 -286,24.0,0.0,0.0,0.0,0.0,0.9812678496992424,-9.440695505715093,1.0,0.0,0.0 -286,25.0,1.83727903896739,2.3,0.0,0.0,0.9674010978346156,-9.50892685003816,1.0,0.0,0.0 -286,26.0,0.0,0.0,0.0,0.0,0.9843431675304454,-9.20730935705718,1.0,0.0,0.0 -286,27.0,0.0,0.0,0.0,0.0,0.9664792312895242,-7.130820328561063,1.0,0.0,0.0 -286,28.0,1.2598484838633532,0.9,0.0,0.0,0.9708467599736668,-9.811585497485725,1.0,0.0,0.0 -286,29.0,5.56433080372981,1.9,0.0,0.0,0.9635214628363674,-10.26785942323166,1.0,0.0,0.0 -287,0.0,0.0,0.0,114.92753611688072,9.413756885123804e-07,1.0,0.0,0.0,0.0,1.0 -287,1.0,11.39113004159782,12.7,42.81433706182104,20.9746853054264,0.9897902721237648,-2.099077395836311,0.0,1.0,0.0 -287,2.0,1.2598484838633532,1.2,0.0,0.0,0.9689739595565048,-4.960050824617369,1.0,0.0,0.0 -287,3.0,3.9895201989006175,1.6,0.0,0.0,0.9611460802416136,-6.100746634137931,1.0,0.0,0.0 -287,4.0,49.44905299163662,19.0,1.2722076256094516e-08,39.99999946246315,0.9409257911461,-15.440755642930444,0.0,1.0,0.0 -287,5.0,0.0,0.0,0.0,0.0,0.952728427082131,-7.620297892902045,1.0,0.0,0.0 -287,6.0,11.968560596701856,10.9,0.0,0.0,0.9408315537307032,-11.071876076637963,1.0,0.0,0.0 -287,7.0,15.748106048291916,30.0,0.0,0.0,0.9400000001425808,-7.845064195630676,0.0,1.0,0.0 -287,8.0,0.0,0.0,0.0,0.0,1.0075033238168245,-9.30423310477457,1.0,0.0,0.0 -287,9.0,3.044633836003104,2.0,0.0,0.0,1.0004461157019062,-10.171285508838416,1.0,0.0,0.0 -287,10.0,0.0,0.0,9.414396576171529e-09,23.999999407952256,1.0548285491428775,-9.304233103718849,0.0,1.0,0.0 -287,11.0,5.8792929246956485,7.5,0.0,0.0,1.029249185090592,-9.541521663098894,1.0,0.0,0.0 -287,12.0,0.0,0.0,9.298486265020497e-09,23.28275852653812,1.0599999982885009,-9.54152166241524,0.0,1.0,0.0 -287,13.0,3.254608583313663,1.6,0.0,0.0,1.0187242630284257,-9.949629546093462,1.0,0.0,0.0 -287,14.0,4.304482319866457,2.5,0.0,0.0,1.0158192023870114,-9.952325687398387,1.0,0.0,0.0 -287,15.0,1.83727903896739,1.8,0.0,0.0,1.010628084032816,-9.860296628692032,1.0,0.0,0.0 -287,16.0,4.724431814487575,5.8,0.0,0.0,0.9993514125612678,-10.177070843226703,1.0,0.0,0.0 -287,17.0,1.6797979784844712,0.9,0.0,0.0,1.0014307524617652,-10.345762441216063,1.0,0.0,0.0 -287,18.0,4.986900248625774,3.4,0.0,0.0,0.9951496936306876,-10.49046903005008,1.0,0.0,0.0 -287,19.0,1.154861110208074,0.7,0.0,0.0,0.9958601551868532,-10.437173226395368,1.0,0.0,0.0 -287,20.0,9.186395194836953,11.2,0.0,0.0,0.987925168315878,-10.37198683847364,1.0,0.0,0.0 -287,21.0,0.0,0.0,0.0,0.0,0.9876711034923084,-10.380624231496824,1.0,0.0,0.0 -287,22.0,1.6797979784844712,1.6,0.0,0.0,0.961953260016816,-10.745729955841709,1.0,0.0,0.0 -287,23.0,4.566950754004655,6.7,0.0,0.0,0.968752430815578,-10.596728255855506,1.0,0.0,0.0 -287,24.0,0.0,0.0,0.0,0.0,0.9621413529187232,-10.32446580446045,1.0,0.0,0.0 -287,25.0,1.83727903896739,2.3,0.0,0.0,0.9479906453255964,-10.395478360217528,1.0,0.0,0.0 -287,26.0,0.0,0.0,0.0,0.0,0.9651300260330372,-10.081845141659162,1.0,0.0,0.0 -287,27.0,0.0,0.0,0.0,0.0,0.947992198687917,-7.928706708056024,1.0,0.0,0.0 -287,28.0,1.2598484838633532,0.9,0.0,0.0,0.9513492173321192,-10.7107636301146,1.0,0.0,0.0 -287,29.0,5.56433080372981,1.9,0.0,0.0,0.943869063599088,-11.186062682192576,1.0,0.0,0.0 -288,0.0,0.0,0.0,154.86023144530225,0.0003592003261054,1.0,0.0,0.0,0.0,1.0 -288,1.0,11.39113004159782,12.7,4.095689102750211e-07,9.802228762436826,0.9809266642309308,-3.5491845570748053,0.0,1.0,0.0 -288,2.0,1.2598484838633532,1.2,0.0,0.0,0.975135657475558,-4.655331143027866,1.0,0.0,0.0 -288,3.0,3.9895201989006175,1.6,0.0,0.0,0.9686952513794288,-5.719236560980176,1.0,0.0,0.0 -288,4.0,49.44905299163662,19.0,-4.793120093813974e-10,23.772496796614547,0.9616718137056668,-8.54251486756451,0.0,1.0,0.0 -288,5.0,0.0,0.0,0.0,0.0,0.9684518014889646,-6.791956755028219,1.0,0.0,0.0 -288,6.0,11.968560596701856,10.9,0.0,0.0,0.9592827490751182,-7.769581595588555,1.0,0.0,0.0 -288,7.0,15.748106048291916,30.0,-4.256574922598016e-10,30.349069513711516,0.9674649390393828,-7.202300587384258,0.0,1.0,0.0 -288,8.0,0.0,0.0,0.0,0.0,1.0164031150805135,-8.528665084116748,1.0,0.0,0.0 -288,9.0,3.044633836003104,2.0,0.0,0.0,1.0075820217639653,-9.431205044758071,1.0,0.0,0.0 -288,10.0,0.0,0.0,-2.48342965523042e-10,22.185991305107592,1.0599403408435213,-8.52866508414422,0.0,1.0,0.0 -288,11.0,5.8792929246956485,7.5,0.0,0.0,1.014158170282682,-8.980433707686542,1.0,0.0,0.0 -288,12.0,0.0,0.0,-5.58339347754936e-10,9.391227496225742,1.0269607227113704,-8.98043370772954,0.0,1.0,0.0 -288,13.0,3.254608583313663,1.6,0.0,0.0,1.0033663090780387,-9.4249979254062,1.0,0.0,0.0 -288,14.0,4.304482319866457,2.5,0.0,0.0,1.0001492643041303,-9.44914090717615,1.0,0.0,0.0 -288,15.0,1.83727903896739,1.8,0.0,0.0,1.0052435500539585,-9.27192617493115,1.0,0.0,0.0 -288,16.0,4.724431814487575,5.8,0.0,0.0,1.002541463358449,-9.46912536228616,1.0,0.0,0.0 -288,17.0,1.6797979784844712,0.9,0.0,0.0,0.9937615219412528,-9.768861343177663,1.0,0.0,0.0 -288,18.0,4.986900248625774,3.4,0.0,0.0,0.9922307447277962,-9.866378823063709,1.0,0.0,0.0 -288,19.0,1.154861110208074,0.7,0.0,0.0,0.995460081933914,-9.787872133404678,1.0,0.0,0.0 -288,20.0,9.186395194836953,11.2,0.0,0.0,0.9971571053145122,-9.591413155157198,1.0,0.0,0.0 -288,21.0,0.0,0.0,0.0,0.0,0.9975395861833788,-9.58870854764548,1.0,0.0,0.0 -288,22.0,1.6797979784844712,1.6,0.0,0.0,0.9918963813266976,-9.615822292476894,1.0,0.0,0.0 -288,23.0,4.566950754004655,6.7,0.0,0.0,0.9875090741449604,-9.702319405234768,1.0,0.0,0.0 -288,24.0,0.0,0.0,0.0,0.0,0.9812678496992424,-9.440695505715093,1.0,0.0,0.0 -288,25.0,1.83727903896739,2.3,0.0,0.0,0.9674010978346156,-9.50892685003816,1.0,0.0,0.0 -288,26.0,0.0,0.0,0.0,0.0,0.9843431675304454,-9.20730935705718,1.0,0.0,0.0 -288,27.0,0.0,0.0,0.0,0.0,0.9664792312895242,-7.130820328561063,1.0,0.0,0.0 -288,28.0,1.2598484838633532,0.9,0.0,0.0,0.9708467599736668,-9.811585497485725,1.0,0.0,0.0 -288,29.0,5.56433080372981,1.9,0.0,0.0,0.9635214628363674,-10.26785942323166,1.0,0.0,0.0 -289,0.0,0.0,0.0,155.53339877760362,0.0018041253714962,1.0,0.0,0.0,0.0,1.0 -289,1.0,11.39113004159782,12.7,1.8843855686315603e-06,10.67467359391005,0.9822590186266382,-3.253833583572332,0.0,1.0,0.0 -289,2.0,1.2598484838633532,1.2,0.0,0.0,0.9723943672291926,-5.579034913330286,1.0,0.0,0.0 -289,3.0,3.9895201989006175,1.6,0.0,0.0,0.9654750086756276,-6.868073117691937,1.0,0.0,0.0 -289,4.0,49.44905299163662,19.0,4.8594077731297776e-11,25.4191893209688,0.9622795770542516,-9.247097001405272,0.0,1.0,0.0 -289,5.0,0.0,0.0,0.0,0.0,0.9642492976235988,-8.480393054663246,1.0,0.0,0.0 -289,6.0,11.968560596701856,10.9,0.0,0.0,0.9568606137551224,-9.055472938650192,1.0,0.0,0.0 -289,7.0,15.748106048291916,30.0,1.0140708913827675e-10,31.177913925643477,0.9635796827835074,-8.897859820570748,0.0,1.0,0.0 -289,8.0,0.0,0.0,0.0,0.0,1.0142740017920595,-10.131488879931243,1.0,0.0,0.0 -289,9.0,3.044633836003104,2.0,0.0,0.0,1.0054050690404044,-10.98767284282001,1.0,0.0,0.0 -289,10.0,0.0,0.0,3.2294979115849447e-10,23.302658607194328,1.0599999744986977,-10.131488879895446,0.0,1.0,0.0 -289,11.0,5.8792929246956485,7.5,0.0,0.0,1.0146793384807384,-10.367681561915369,1.0,0.0,0.0 -289,12.0,0.0,0.0,1.483940521919434e-10,11.725848025961394,1.0306079820792735,-10.367681561903987,0.0,1.0,0.0 -289,13.0,3.254608583313663,1.6,0.0,0.0,1.0035802714876567,-10.836853587670271,1.0,0.0,0.0 -289,14.0,4.304482319866457,2.5,0.0,0.0,0.9998918802923084,-10.878613298084396,1.0,0.0,0.0 -289,15.0,1.83727903896739,1.8,0.0,0.0,1.0044786828846484,-10.7259759601581,1.0,0.0,0.0 -289,16.0,4.724431814487575,5.8,0.0,0.0,1.0008345760809636,-10.995655638369906,1.0,0.0,0.0 -289,17.0,1.6797979784844712,0.9,0.0,0.0,0.9928073750018166,-11.243271922671887,1.0,0.0,0.0 -289,18.0,4.986900248625774,3.4,0.0,0.0,0.9908685476009036,-11.367569128185192,1.0,0.0,0.0 -289,19.0,1.154861110208074,0.7,0.0,0.0,0.9938873265294976,-11.302766103907269,1.0,0.0,0.0 -289,20.0,9.186395194836953,11.2,0.0,0.0,0.9949860188898952,-11.145189443002964,1.0,0.0,0.0 -289,21.0,0.0,0.0,0.0,0.0,0.9953788114065812,-11.141394888543491,1.0,0.0,0.0 -289,22.0,1.6797979784844712,1.6,0.0,0.0,0.9908717261653452,-11.091937879527643,1.0,0.0,0.0 -289,23.0,4.566950754004655,6.7,0.0,0.0,0.9854794081230124,-11.24180368329337,1.0,0.0,0.0 -289,24.0,0.0,0.0,0.0,0.0,0.9781855689760832,-11.030858260751486,1.0,0.0,0.0 -289,25.0,1.83727903896739,2.3,0.0,0.0,0.964273841093243,-11.099526583873002,1.0,0.0,0.0 -289,26.0,0.0,0.0,0.0,0.0,0.980646666840624,-10.829720635670167,1.0,0.0,0.0 -289,27.0,0.0,0.0,0.0,0.0,0.9624473265532248,-8.814380900966192,1.0,0.0,0.0 -289,28.0,1.2598484838633532,0.9,0.0,0.0,0.9670964828834024,-11.438623408875245,1.0,0.0,0.0 -289,29.0,5.56433080372981,1.9,0.0,0.0,0.959741907072876,-11.898466733270158,1.0,0.0,0.0 -290,0.0,0.0,0.0,154.92287870391056,0.0019111195729948,1.0,0.0,0.0,0.0,1.0 -290,1.0,11.39113004159782,12.7,1.7473996318573738e-06,13.2854328746255,0.981486571227814,-3.566751125648918,0.0,1.0,0.0 -290,2.0,1.2598484838633532,1.2,0.0,0.0,0.9734727519821152,-4.618538262744971,1.0,0.0,0.0 -290,3.0,3.9895201989006175,1.6,0.0,0.0,0.9666413734437744,-5.674212315906984,1.0,0.0,0.0 -290,4.0,49.44905299163662,19.0,1.2615726924981284e-10,24.409014478111143,0.9620476659059068,-8.570782192442334,0.0,1.0,0.0 -290,5.0,0.0,0.0,0.0,0.0,0.967319612013908,-6.804614819243469,1.0,0.0,0.0 -290,6.0,11.968560596701856,10.9,0.0,0.0,0.9587640675997652,-7.788161410355224,1.0,0.0,0.0 -290,7.0,15.748106048291916,30.0,3.191315279751967e-10,34.747125435971554,0.9679116649302172,-7.243704498413376,0.0,1.0,0.0 -290,8.0,0.0,0.0,0.0,0.0,1.0122383742301595,-8.666985811264972,1.0,0.0,0.0 -290,9.0,3.044633836003104,2.0,0.0,0.0,0.9999857164186596,-9.641027021718337,1.0,0.0,0.0 -290,10.0,0.0,0.0,1.1635785171971507e-09,24.00033322317388,1.05936174212168,-8.666985811135655,0.0,1.0,0.0 -290,11.0,5.8792929246956485,7.5,0.0,0.0,0.999243038630786,-8.747532182601644,1.0,0.0,0.0 -290,12.0,0.0,0.0,0.0,0.0,0.999243038630786,-8.747532182601644,0.0,1.0,0.0 -290,13.0,3.254608583313663,1.6,0.0,0.0,0.9901310445382334,-9.14752701450448,1.0,0.0,0.0 -290,14.0,4.304482319866457,2.5,0.0,0.0,0.9890316940326336,-9.157857968319751,1.0,0.0,0.0 -290,15.0,1.83727903896739,1.8,0.0,0.0,0.993125340649074,-9.248007306952092,1.0,0.0,0.0 -290,16.0,4.724431814487575,5.8,0.0,0.0,0.993577997595678,-9.602564594668484,1.0,0.0,0.0 -290,17.0,1.6797979784844712,0.9,0.0,0.0,0.974059642433737,-10.602017299738751,1.0,0.0,0.0 -290,18.0,4.986900248625774,3.4,0.0,0.0,0.9763567592182636,-10.505912823931514,1.0,0.0,0.0 -290,19.0,1.154861110208074,0.7,0.0,0.0,0.9816824690810544,-10.32231344227004,1.0,0.0,0.0 -290,20.0,9.186395194836953,11.2,0.0,0.0,0.989435985102556,-9.774272355388185,1.0,0.0,0.0 -290,21.0,0.0,0.0,0.0,0.0,0.98981081624846,-9.762039640838772,1.0,0.0,0.0 -290,22.0,1.6797979784844712,1.6,0.0,0.0,0.9821935785052353,-9.470225655210218,1.0,0.0,0.0 -290,23.0,4.566950754004655,6.7,0.0,0.0,0.9797986185419766,-9.749001104560229,1.0,0.0,0.0 -290,24.0,0.0,0.0,0.0,0.0,0.97599027110393,-9.510422845179663,1.0,0.0,0.0 -290,25.0,1.83727903896739,2.3,0.0,0.0,0.9620463289158936,-9.57940497423507,1.0,0.0,0.0 -290,26.0,0.0,0.0,0.0,0.0,0.9806227525865064,-9.287967184316743,1.0,0.0,0.0 -290,27.0,0.0,0.0,0.0,0.0,0.9653640681489842,-7.150843525939952,1.0,0.0,0.0 -290,28.0,1.2598484838633532,0.9,0.0,0.0,0.9670722192775936,-9.8969000624048,1.0,0.0,0.0 -290,29.0,5.56433080372981,1.9,0.0,0.0,0.9597174532557,-10.356766616558463,1.0,0.0,0.0 -291,0.0,0.0,0.0,154.86023144530225,0.0003592003261054,1.0,0.0,0.0,0.0,1.0 -291,1.0,11.39113004159782,12.7,4.095689102750211e-07,9.802228762436826,0.9809266642309308,-3.5491845570748053,0.0,1.0,0.0 -291,2.0,1.2598484838633532,1.2,0.0,0.0,0.975135657475558,-4.655331143027866,1.0,0.0,0.0 -291,3.0,3.9895201989006175,1.6,0.0,0.0,0.9686952513794288,-5.719236560980176,1.0,0.0,0.0 -291,4.0,49.44905299163662,19.0,-4.793120093813974e-10,23.772496796614547,0.9616718137056668,-8.54251486756451,0.0,1.0,0.0 -291,5.0,0.0,0.0,0.0,0.0,0.9684518014889646,-6.791956755028219,1.0,0.0,0.0 -291,6.0,11.968560596701856,10.9,0.0,0.0,0.9592827490751182,-7.769581595588555,1.0,0.0,0.0 -291,7.0,15.748106048291916,30.0,-4.256574922598016e-10,30.349069513711516,0.9674649390393828,-7.202300587384258,0.0,1.0,0.0 -291,8.0,0.0,0.0,0.0,0.0,1.0164031150805135,-8.528665084116748,1.0,0.0,0.0 -291,9.0,3.044633836003104,2.0,0.0,0.0,1.0075820217639653,-9.431205044758071,1.0,0.0,0.0 -291,10.0,0.0,0.0,-2.48342965523042e-10,22.185991305107592,1.0599403408435213,-8.52866508414422,0.0,1.0,0.0 -291,11.0,5.8792929246956485,7.5,0.0,0.0,1.014158170282682,-8.980433707686542,1.0,0.0,0.0 -291,12.0,0.0,0.0,-5.58339347754936e-10,9.391227496225742,1.0269607227113704,-8.98043370772954,0.0,1.0,0.0 -291,13.0,3.254608583313663,1.6,0.0,0.0,1.0033663090780387,-9.4249979254062,1.0,0.0,0.0 -291,14.0,4.304482319866457,2.5,0.0,0.0,1.0001492643041303,-9.44914090717615,1.0,0.0,0.0 -291,15.0,1.83727903896739,1.8,0.0,0.0,1.0052435500539585,-9.27192617493115,1.0,0.0,0.0 -291,16.0,4.724431814487575,5.8,0.0,0.0,1.002541463358449,-9.46912536228616,1.0,0.0,0.0 -291,17.0,1.6797979784844712,0.9,0.0,0.0,0.9937615219412528,-9.768861343177663,1.0,0.0,0.0 -291,18.0,4.986900248625774,3.4,0.0,0.0,0.9922307447277962,-9.866378823063709,1.0,0.0,0.0 -291,19.0,1.154861110208074,0.7,0.0,0.0,0.995460081933914,-9.787872133404678,1.0,0.0,0.0 -291,20.0,9.186395194836953,11.2,0.0,0.0,0.9971571053145122,-9.591413155157198,1.0,0.0,0.0 -291,21.0,0.0,0.0,0.0,0.0,0.9975395861833788,-9.58870854764548,1.0,0.0,0.0 -291,22.0,1.6797979784844712,1.6,0.0,0.0,0.9918963813266976,-9.615822292476894,1.0,0.0,0.0 -291,23.0,4.566950754004655,6.7,0.0,0.0,0.9875090741449604,-9.702319405234768,1.0,0.0,0.0 -291,24.0,0.0,0.0,0.0,0.0,0.9812678496992424,-9.440695505715093,1.0,0.0,0.0 -291,25.0,1.83727903896739,2.3,0.0,0.0,0.9674010978346156,-9.50892685003816,1.0,0.0,0.0 -291,26.0,0.0,0.0,0.0,0.0,0.9843431675304454,-9.20730935705718,1.0,0.0,0.0 -291,27.0,0.0,0.0,0.0,0.0,0.9664792312895242,-7.130820328561063,1.0,0.0,0.0 -291,28.0,1.2598484838633532,0.9,0.0,0.0,0.9708467599736668,-9.811585497485725,1.0,0.0,0.0 -291,29.0,5.56433080372981,1.9,0.0,0.0,0.9635214628363674,-10.26785942323166,1.0,0.0,0.0 -292,0.0,0.0,0.0,154.86023144530225,0.0003592003261054,1.0,0.0,0.0,0.0,1.0 -292,1.0,11.39113004159782,12.7,4.095689102750211e-07,9.802228762436826,0.9809266642309308,-3.5491845570748053,0.0,1.0,0.0 -292,2.0,1.2598484838633532,1.2,0.0,0.0,0.975135657475558,-4.655331143027866,1.0,0.0,0.0 -292,3.0,3.9895201989006175,1.6,0.0,0.0,0.9686952513794288,-5.719236560980176,1.0,0.0,0.0 -292,4.0,49.44905299163662,19.0,-4.793120093813974e-10,23.772496796614547,0.9616718137056668,-8.54251486756451,0.0,1.0,0.0 -292,5.0,0.0,0.0,0.0,0.0,0.9684518014889646,-6.791956755028219,1.0,0.0,0.0 -292,6.0,11.968560596701856,10.9,0.0,0.0,0.9592827490751182,-7.769581595588555,1.0,0.0,0.0 -292,7.0,15.748106048291916,30.0,-4.256574922598016e-10,30.349069513711516,0.9674649390393828,-7.202300587384258,0.0,1.0,0.0 -292,8.0,0.0,0.0,0.0,0.0,1.0164031150805135,-8.528665084116748,1.0,0.0,0.0 -292,9.0,3.044633836003104,2.0,0.0,0.0,1.0075820217639653,-9.431205044758071,1.0,0.0,0.0 -292,10.0,0.0,0.0,-2.48342965523042e-10,22.185991305107592,1.0599403408435213,-8.52866508414422,0.0,1.0,0.0 -292,11.0,5.8792929246956485,7.5,0.0,0.0,1.014158170282682,-8.980433707686542,1.0,0.0,0.0 -292,12.0,0.0,0.0,-5.58339347754936e-10,9.391227496225742,1.0269607227113704,-8.98043370772954,0.0,1.0,0.0 -292,13.0,3.254608583313663,1.6,0.0,0.0,1.0033663090780387,-9.4249979254062,1.0,0.0,0.0 -292,14.0,4.304482319866457,2.5,0.0,0.0,1.0001492643041303,-9.44914090717615,1.0,0.0,0.0 -292,15.0,1.83727903896739,1.8,0.0,0.0,1.0052435500539585,-9.27192617493115,1.0,0.0,0.0 -292,16.0,4.724431814487575,5.8,0.0,0.0,1.002541463358449,-9.46912536228616,1.0,0.0,0.0 -292,17.0,1.6797979784844712,0.9,0.0,0.0,0.9937615219412528,-9.768861343177663,1.0,0.0,0.0 -292,18.0,4.986900248625774,3.4,0.0,0.0,0.9922307447277962,-9.866378823063709,1.0,0.0,0.0 -292,19.0,1.154861110208074,0.7,0.0,0.0,0.995460081933914,-9.787872133404678,1.0,0.0,0.0 -292,20.0,9.186395194836953,11.2,0.0,0.0,0.9971571053145122,-9.591413155157198,1.0,0.0,0.0 -292,21.0,0.0,0.0,0.0,0.0,0.9975395861833788,-9.58870854764548,1.0,0.0,0.0 -292,22.0,1.6797979784844712,1.6,0.0,0.0,0.9918963813266976,-9.615822292476894,1.0,0.0,0.0 -292,23.0,4.566950754004655,6.7,0.0,0.0,0.9875090741449604,-9.702319405234768,1.0,0.0,0.0 -292,24.0,0.0,0.0,0.0,0.0,0.9812678496992424,-9.440695505715093,1.0,0.0,0.0 -292,25.0,1.83727903896739,2.3,0.0,0.0,0.9674010978346156,-9.50892685003816,1.0,0.0,0.0 -292,26.0,0.0,0.0,0.0,0.0,0.9843431675304454,-9.20730935705718,1.0,0.0,0.0 -292,27.0,0.0,0.0,0.0,0.0,0.9664792312895242,-7.130820328561063,1.0,0.0,0.0 -292,28.0,1.2598484838633532,0.9,0.0,0.0,0.9708467599736668,-9.811585497485725,1.0,0.0,0.0 -292,29.0,5.56433080372981,1.9,0.0,0.0,0.9635214628363674,-10.26785942323166,1.0,0.0,0.0 -293,0.0,0.0,0.0,154.9002092828975,0.0003938261320612,1.0,0.0,0.0,0.0,1.0 -293,1.0,11.39113004159782,12.7,4.56034278277704e-07,9.616346655692348,0.9808998247726368,-3.549403632924272,0.0,1.0,0.0 -293,2.0,1.2598484838633532,1.2,0.0,0.0,0.9751977806397576,-4.658331628757908,1.0,0.0,0.0 -293,3.0,3.9895201989006175,1.6,0.0,0.0,0.9687721942720624,-5.722936957932365,1.0,0.0,0.0 -293,4.0,49.44905299163662,19.0,-5.516565856544553e-10,23.77511816038229,0.96170051635054,-8.543531509427998,0.0,1.0,0.0 -293,5.0,0.0,0.0,0.0,0.0,0.9685295273196052,-6.794306911593885,1.0,0.0,0.0 -293,6.0,11.968560596701856,10.9,0.0,0.0,0.9593408008293004,-7.771382622499655,1.0,0.0,0.0 -293,7.0,15.748106048291916,30.0,-4.774632698981504e-10,30.385010476250077,0.967528407041668,-7.205336866621203,0.0,1.0,0.0 -293,8.0,0.0,0.0,0.0,0.0,1.016834457978592,-8.513953926725996,1.0,0.0,0.0 -293,9.0,3.044633836003104,2.0,0.0,0.0,1.008423803317129,-9.406954959095462,1.0,0.0,0.0 -293,10.0,0.0,0.0,-2.9925627949118666e-10,21.962724921551764,1.05993381674526,-8.513953926759086,0.0,1.0,0.0 -293,11.0,5.8792929246956485,7.5,0.0,0.0,1.0145417851197025,-8.99363086631492,1.0,0.0,0.0 -293,12.0,0.0,0.0,-6.076184641678983e-10,9.84957618955342,1.0279561766843817,-8.993630866361654,0.0,1.0,0.0 -293,13.0,3.254608583313663,1.6,0.0,0.0,1.0035120866369014,-9.441565323842235,1.0,0.0,0.0 -293,14.0,4.304482319866457,2.5,0.0,0.0,1.0000381826891085,-9.463829676715996,1.0,0.0,0.0 -293,15.0,1.83727903896739,1.8,0.0,0.0,1.005853831550327,-9.269921208324332,1.0,0.0,0.0 -293,16.0,4.724431814487575,5.8,0.0,0.0,1.0033062323210762,-9.45139070878672,1.0,0.0,0.0 -293,17.0,1.6797979784844712,0.9,0.0,0.0,0.9939918731038946,-9.76984208599287,1.0,0.0,0.0 -293,18.0,4.986900248625774,3.4,0.0,0.0,0.9926621406669331,-9.859173205779063,1.0,0.0,0.0 -293,19.0,1.154861110208074,0.7,0.0,0.0,0.9959960685135316,-9.776494244859023,1.0,0.0,0.0 -293,20.0,9.186395194836953,11.2,0.0,0.0,0.9936790651616472,-9.640415678489536,1.0,0.0,0.0 -293,21.0,0.0,0.0,0.0,0.0,0.9926919106025738,-9.659516054887265,1.0,0.0,0.0 -293,22.0,1.6797979784844712,1.6,0.0,0.0,0.9905177588157916,-9.649186757331467,1.0,0.0,0.0 -293,23.0,4.566950754004655,6.7,0.0,0.0,0.9844537917458436,-9.761512377153428,1.0,0.0,0.0 -293,24.0,0.0,0.0,0.0,0.0,0.979377040689543,-9.493563827793466,1.0,0.0,0.0 -293,25.0,1.83727903896739,2.3,0.0,0.0,0.9654827335744176,-9.562062735421206,1.0,0.0,0.0 -293,26.0,0.0,0.0,0.0,0.0,0.9831874779124276,-9.254738269389652,1.0,0.0,0.0 -293,27.0,0.0,0.0,0.0,0.0,0.966397609411096,-7.135912526808832,1.0,0.0,0.0 -293,28.0,1.2598484838633532,0.9,0.0,0.0,0.9696743046506502,-9.86045518900463,1.0,0.0,0.0 -293,29.0,5.56433080372981,1.9,0.0,0.0,0.9623398795195084,-10.31784053243129,1.0,0.0,0.0 -294,0.0,0.0,0.0,77.70448871666544,1.6220420562262916e-06,1.0,0.0,0.0,0.0,1.0 -294,1.0,11.39113004159782,12.7,76.44285577553762,41.205706289024704,0.9935938553716808,-1.586319081052186,0.0,1.0,0.0 -294,2.0,1.2598484838633532,1.2,0.0,0.0,0.9731694255336027,-2.8036698996738862,1.0,0.0,0.0 -294,3.0,3.9895201989006175,1.6,0.0,0.0,0.9661838513229452,-3.419380834724936,1.0,0.0,0.0 -294,4.0,49.44905299163662,19.0,0.0,0.0,0.940000000898387,-6.7896003445922855,0.0,1.0,0.0 -294,5.0,0.0,0.0,0.0,0.0,0.9620505503173248,-6.0247655918563545,1.0,0.0,0.0 -294,6.0,11.968560596701856,10.9,0.0,0.0,0.9463603394737754,-6.618871358610199,1.0,0.0,0.0 -294,7.0,15.748106048291916,30.0,-9.866284723113111e-10,39.99999861488359,0.962648618936929,-6.782144766034074,0.0,1.0,0.0 -294,8.0,0.0,0.0,0.0,0.0,1.025599278557418,-14.660771044237832,1.0,0.0,0.0 -294,9.0,3.044633836003104,2.0,0.0,0.0,1.0074066720938764,-14.660771044077078,1.0,0.0,0.0 -294,10.0,0.0,0.0,-2.6353151778154247e-09,17.531054511479464,1.0599998434346023,-14.66077104452672,0.0,1.0,0.0 -294,11.0,5.8792929246956485,7.5,0.0,0.0,1.0028982929088126,-9.87554390854944,1.0,0.0,0.0 -294,12.0,0.0,0.0,-4.000992839011133e-10,-0.9200445464245908,1.0016123039488969,-9.87554390858139,0.0,1.0,0.0 -294,13.0,3.254608583313663,1.6,0.0,0.0,0.9947342128589224,-10.240757206684007,1.0,0.0,0.0 -294,14.0,4.304482319866457,2.5,0.0,0.0,0.9845588474402956,-11.156062483463336,1.0,0.0,0.0 -294,15.0,1.83727903896739,1.8,0.0,0.0,0.9951192315057276,-12.061953065235343,1.0,0.0,0.0 -294,16.0,4.724431814487575,5.8,0.0,0.0,0.9999467141962196,-13.932483817604636,1.0,0.0,0.0 -294,17.0,1.6797979784844712,0.9,0.0,0.0,0.9828076335122397,-12.736541289328876,1.0,0.0,0.0 -294,18.0,4.986900248625774,3.4,0.0,0.0,0.9843285501590088,-13.57790086902662,1.0,0.0,0.0 -294,19.0,1.154861110208074,0.7,0.0,0.0,0.9892393707407168,-13.88747595056445,1.0,0.0,0.0 -294,20.0,9.186395194836953,11.2,0.0,0.0,0.9992753746626196,-14.777253380946554,1.0,0.0,0.0 -294,21.0,0.0,0.0,0.0,0.0,1.0003848997971652,-14.7615517818946,1.0,0.0,0.0 -294,22.0,1.6797979784844712,1.6,0.0,0.0,0.9685838773472382,-11.359394760959892,1.0,0.0,0.0 -294,23.0,4.566950754004655,6.7,0.0,0.0,0.9540669274442386,-11.495257280065058,1.0,0.0,0.0 -294,24.0,0.0,0.0,0.0,0.0,0.9542710220258652,-10.981495393596823,1.0,0.0,0.0 -294,25.0,1.83727903896739,2.3,0.0,0.0,0.9400000113415984,-11.053702257897754,1.0,0.0,0.0 -294,26.0,0.0,0.0,0.0,0.0,0.9614898330570376,-10.581612872048764,1.0,0.0,0.0 -294,27.0,0.0,0.0,0.0,0.0,0.9489751195393474,-8.00537795608918,1.0,0.0,0.0 -294,28.0,1.2598484838633532,0.9,0.0,0.0,0.9476537457780074,-11.215370678386464,1.0,0.0,0.0 -294,29.0,5.56433080372981,1.9,0.0,0.0,0.9401434888358352,-11.694409927672115,1.0,0.0,0.0 -295,0.0,0.0,0.0,155.11691234738385,0.0007357502298077,1.0,0.0,0.0,0.0,1.0 -295,1.0,11.39113004159782,12.7,9.66400485611043e-07,-0.8243843541744837,0.9796468051380413,-3.5241262113386846,0.0,1.0,0.0 -295,2.0,1.2598484838633532,1.2,0.0,0.0,0.9787510811148348,-4.735523940229151,1.0,0.0,0.0 -295,3.0,3.9895201989006175,1.6,0.0,0.0,0.973161153543062,-5.817252671122213,1.0,0.0,0.0 -295,4.0,49.44905299163662,19.0,-2.5644478207821476e-10,24.37649712689526,0.9641455881394684,-8.548929482640267,0.0,1.0,0.0 -295,5.0,0.0,0.0,0.0,0.0,0.9733697090957923,-6.850985623343719,1.0,0.0,0.0 -295,6.0,11.968560596701856,10.9,0.0,0.0,0.9632310248467564,-7.806386717946368,1.0,0.0,0.0 -295,7.0,15.748106048291916,30.0,1.3489546436517407e-10,32.052911132505194,0.973093975321789,-7.267380742568361,0.0,1.0,0.0 -295,8.0,0.0,0.0,0.0,0.0,1.023978840030237,-8.461503128185155,1.0,0.0,0.0 -295,9.0,3.044633836003104,2.0,0.0,0.0,1.0204365182338708,-9.292129663136992,1.0,0.0,0.0 -295,10.0,0.0,0.0,-1.2274836797594195e-09,18.34969508429529,1.059986255756669,-8.461503128319931,0.0,1.0,0.0 -295,11.0,5.8792929246956485,7.5,0.0,0.0,1.0311347474590606,-9.268269189182709,1.0,0.0,0.0 -295,12.0,0.0,0.0,-9.021855366068395e-10,21.376751675145464,1.0593845941258404,-9.268269189248956,0.0,1.0,0.0 -295,13.0,3.254608583313663,1.6,0.0,0.0,1.0198678581409442,-9.657350939873796,1.0,0.0,0.0 -295,14.0,4.304482319866457,2.5,0.0,0.0,1.0163591508281895,-9.625584748150189,1.0,0.0,0.0 -295,15.0,1.83727903896739,1.8,0.0,0.0,1.0097819406062,-9.588109773545105,1.0,0.0,0.0 -295,16.0,4.724431814487575,5.8,0.0,0.0,0.9960810750003792,-9.932509385329976,1.0,0.0,0.0 -295,17.0,1.6797979784844712,0.9,0.0,0.0,1.008944962245977,-9.824421105747142,1.0,0.0,0.0 -295,18.0,4.986900248625774,3.4,0.0,0.0,1.0067690568724237,-9.852595201001172,1.0,0.0,0.0 -295,19.0,1.154861110208074,0.7,0.0,0.0,1.009602815784453,-9.741172483217891,1.0,0.0,0.0 -295,20.0,9.186395194836953,11.2,0.0,0.0,1.0089493339494655,-9.458135209467471,1.0,0.0,0.0 -295,21.0,0.0,0.0,0.0,0.0,1.012291961159291,-9.491890021095353,1.0,0.0,0.0 -295,22.0,1.6797979784844712,1.6,0.0,0.0,1.007177511885644,-9.705351382741364,1.0,0.0,0.0 -295,23.0,4.566950754004655,6.7,0.0,0.0,1.0014366080672663,-9.679101254746794,1.0,0.0,0.0 -295,24.0,0.0,0.0,0.0,0.0,0.9916806919420984,-9.407770044576392,1.0,0.0,0.0 -295,25.0,1.83727903896739,2.3,0.0,0.0,0.977963724358069,-9.47455574297424,1.0,0.0,0.0 -295,26.0,0.0,0.0,0.0,0.0,0.9924940016888084,-9.173513250358525,1.0,0.0,0.0 -295,27.0,0.0,0.0,0.0,0.0,0.9719214679444976,-7.186327396694483,1.0,0.0,0.0 -295,28.0,1.2598484838633532,0.9,0.0,0.0,0.963615039370114,-10.502794637132975,1.0,0.0,0.0 -295,29.0,5.56433080372981,1.9,0.0,0.0,0.9400009275861976,-11.810061083102028,1.0,0.0,0.0 -296,0.0,0.0,0.0,155.674858786277,0.0016058232306548,1.0,0.0,0.0,0.0,1.0 -296,1.0,11.39113004159782,12.7,1.5218067941796875e-06,8.92183178704554,0.9799823123494792,-3.734059060905028,0.0,1.0,0.0 -296,2.0,1.2598484838633532,1.2,0.0,0.0,0.97691646508468,-4.201503123717767,1.0,0.0,0.0 -296,3.0,3.9895201989006175,1.6,0.0,0.0,0.9708399386411348,-5.155186183183807,1.0,0.0,0.0 -296,4.0,49.44905299163662,19.0,1.2096289482214123e-09,35.41584007132285,0.9593502395727704,-11.452849408654195,0.0,1.0,0.0 -296,5.0,0.0,0.0,0.0,0.0,0.9718112074791874,-5.944336736595596,1.0,0.0,0.0 -296,6.0,11.968560596701856,10.9,0.0,0.0,0.9411281771099071,-12.042088337451451,1.0,0.0,0.0 -296,7.0,15.748106048291916,30.0,2.4951158275759954e-09,30.015974898067,0.9592944023903432,-8.894892427107628,0.0,1.0,0.0 -296,8.0,0.0,0.0,0.0,0.0,1.0172056122575432,-7.631491488288232,1.0,0.0,0.0 -296,9.0,3.044633836003104,2.0,0.0,0.0,1.011136072512544,-8.508233663632884,1.0,0.0,0.0 -296,10.0,0.0,0.0,2.049831675299809e-09,18.053282396956,1.0528707932341397,-7.631491488060134,0.0,1.0,0.0 -296,11.0,5.8792929246956485,7.5,0.0,0.0,1.0131352138436485,-8.376553132445872,1.0,0.0,0.0 -296,12.0,0.0,0.0,1.846114821130085e-09,8.92049050879182,1.0253155486958734,-8.37655313230332,0.0,1.0,0.0 -296,13.0,3.254608583313663,1.6,0.0,0.0,1.0050553815417596,-8.734363572697166,1.0,0.0,0.0 -296,14.0,4.304482319866457,2.5,0.0,0.0,0.9952495731731488,-8.92326383748067,1.0,0.0,0.0 -296,15.0,1.83727903896739,1.8,0.0,0.0,1.0064178859497968,-8.540448175179987,1.0,0.0,0.0 -296,16.0,4.724431814487575,5.8,0.0,0.0,1.0052938005038468,-8.602374857011354,1.0,0.0,0.0 -296,17.0,1.6797979784844712,0.9,0.0,0.0,0.991853939888498,-9.105083203435012,1.0,0.0,0.0 -296,18.0,4.986900248625774,3.4,0.0,0.0,0.9920955823489008,-9.11987489839747,1.0,0.0,0.0 -296,19.0,1.154861110208074,0.7,0.0,0.0,0.9962641928235528,-8.99810828139137,1.0,0.0,0.0 -296,20.0,9.186395194836953,11.2,0.0,0.0,1.003035270794618,-8.623851349183317,1.0,0.0,0.0 -296,21.0,0.0,0.0,0.0,0.0,1.0041406365740642,-8.608267115551936,1.0,0.0,0.0 -296,22.0,1.6797979784844712,1.6,0.0,0.0,0.98048161632049,-9.276639190782102,1.0,0.0,0.0 -296,23.0,4.566950754004655,6.7,0.0,0.0,0.9675413727517272,-9.620715635397625,1.0,0.0,0.0 -296,24.0,0.0,0.0,0.0,0.0,0.9687858219543763,-9.385545914908352,1.0,0.0,0.0 -296,25.0,1.83727903896739,2.3,0.0,0.0,0.954735088041916,-9.455573222717437,1.0,0.0,0.0 -296,26.0,0.0,0.0,0.0,0.0,0.976610880432137,-9.158607472903084,1.0,0.0,0.0 -296,27.0,0.0,0.0,0.0,0.0,0.9661997713105672,-6.8694352025299,1.0,0.0,0.0 -296,28.0,1.2598484838633532,0.9,0.0,0.0,0.963001479038496,-9.772622787313225,1.0,0.0,0.0 -296,29.0,5.56433080372981,1.9,0.0,0.0,0.9556146607721538,-10.236411776781582,1.0,0.0,0.0 -297,0.0,0.0,0.0,136.4188329833402,4.725622648749095e-05,1.0,0.0,0.0,0.0,1.0 -297,1.0,11.39113004159782,12.7,25.85210926026497,17.644972751323365,0.961434700161337,-18.757214082261388,0.0,1.0,0.0 -297,2.0,1.2598484838633532,1.2,0.0,0.0,0.9615301749903092,-13.498593546680656,1.0,0.0,0.0 -297,3.0,3.9895201989006175,1.6,0.0,0.0,0.9565351542011804,-16.720016677155172,1.0,0.0,0.0 -297,4.0,49.44905299163662,19.0,-9.538971958166549e-12,24.0437747802618,0.9461363130742808,-22.34076941575999,0.0,1.0,0.0 -297,5.0,0.0,0.0,0.0,0.0,0.9594599736239804,-18.905485051371397,1.0,0.0,0.0 -297,6.0,11.968560596701856,10.9,0.0,0.0,0.9476270039111026,-20.57489972138531,1.0,0.0,0.0 -297,7.0,15.748106048291916,30.0,2.065234830165089e-12,39.2982617507749,0.9618908356288932,-19.376551004202025,0.0,1.0,0.0 -297,8.0,0.0,0.0,0.0,0.0,1.0137541122092473,-20.436259885275327,1.0,0.0,0.0 -297,9.0,3.044633836003104,2.0,0.0,0.0,1.0068772942220745,-21.22496411773299,1.0,0.0,0.0 -297,10.0,0.0,0.0,7.633124183175343e-11,23.56721189847401,1.0599992403949623,-20.43625988526686,0.0,1.0,0.0 -297,11.0,5.8792929246956485,7.5,0.0,0.0,1.0254742746301828,-20.53352305578828,1.0,0.0,0.0 -297,12.0,0.0,0.0,1.729656161736863e-10,23.99838463824858,1.0572526196253953,-20.53352305577549,0.0,1.0,0.0 -297,13.0,3.254608583313663,1.6,0.0,0.0,1.0132822490697804,-21.016573436071784,1.0,0.0,0.0 -297,14.0,4.304482319866457,2.5,0.0,0.0,1.0083021513689936,-21.053606880640075,1.0,0.0,0.0 -297,15.0,1.83727903896739,1.8,0.0,0.0,1.011228026904395,-20.900656312086326,1.0,0.0,0.0 -297,16.0,4.724431814487575,5.8,0.0,0.0,1.0039893303633756,-21.2189529315404,1.0,0.0,0.0 -297,17.0,1.6797979784844712,0.9,0.0,0.0,0.9988178065883088,-21.4349234137748,1.0,0.0,0.0 -297,18.0,4.986900248625774,3.4,0.0,0.0,0.995445539866208,-21.57079010709833,1.0,0.0,0.0 -297,19.0,1.154861110208074,0.7,0.0,0.0,0.997689282766672,-21.51314527199045,1.0,0.0,0.0 -297,20.0,9.186395194836953,11.2,0.0,0.0,0.9966847169939602,-21.38199930237752,1.0,0.0,0.0 -297,21.0,0.0,0.0,0.0,0.0,0.9971432738661652,-21.378306989134767,1.0,0.0,0.0 -297,22.0,1.6797979784844712,1.6,0.0,0.0,0.9968322002065128,-21.294262504638112,1.0,0.0,0.0 -297,23.0,4.566950754004655,6.7,0.0,0.0,0.9881420898091736,-21.48511753623601,1.0,0.0,0.0 -297,24.0,0.0,0.0,0.0,0.0,0.9781234354159096,-21.31829956793872,1.0,0.0,0.0 -297,25.0,1.83727903896739,2.3,0.0,0.0,0.9642107978324568,-21.38697674175078,1.0,0.0,0.0 -297,26.0,0.0,0.0,0.0,0.0,0.9789082573863698,-21.147812636495456,1.0,0.0,0.0 -297,27.0,0.0,0.0,0.0,0.0,0.9586989390726912,-19.2425054513959,1.0,0.0,0.0 -297,28.0,1.2598484838633532,0.9,0.0,0.0,0.9653326306307098,-21.758909731149057,1.0,0.0,0.0 -297,29.0,5.56433080372981,1.9,0.0,0.0,0.957964202012312,-22.220446370443494,1.0,0.0,0.0 -298,0.0,0.0,0.0,154.96872558496176,0.0004615076616865,1.0,0.0,0.0,0.0,1.0 -298,1.0,11.39113004159782,12.7,5.950887313127035e-07,8.58556444195716,0.9807837853983482,-3.5401896794202936,0.0,1.0,0.0 -298,2.0,1.2598484838633532,1.2,0.0,0.0,0.9755363018797408,-4.689769083736166,1.0,0.0,0.0 -298,3.0,3.9895201989006175,1.6,0.0,0.0,0.969193479179346,-5.76183213722122,1.0,0.0,0.0 -298,4.0,49.44905299163662,19.0,-6.737544002174991e-10,23.564998817404195,0.9617336468880104,-8.514893051904062,0.0,1.0,0.0 -298,5.0,0.0,0.0,0.0,0.0,0.9691574467991708,-6.756631847639823,1.0,0.0,0.0 -298,6.0,11.968560596701856,10.9,0.0,0.0,0.9597304277078323,-7.737462823408695,1.0,0.0,0.0 -298,7.0,15.748106048291916,30.0,-4.837164092631321e-10,32.87536549441231,0.9678583784985229,-7.401117549103273,0.0,1.0,0.0 -298,8.0,0.0,0.0,0.0,0.0,1.0171742454800077,-9.158896728373607,1.0,0.0,0.0 -298,9.0,3.044633836003104,2.0,0.0,0.0,1.0091934627203305,-10.406103169811548,1.0,0.0,0.0 -298,10.0,0.0,0.0,-2.1034207920030942e-10,21.720690604461463,1.0598038658404247,-9.158896728396863,0.0,1.0,0.0 -298,11.0,5.8792929246956485,7.5,0.0,0.0,1.0180239355989895,-9.5035490192436,1.0,0.0,0.0 -298,12.0,0.0,0.0,-7.960252722549728e-10,10.700589097566237,1.03253274876211,-9.503549019304348,0.0,1.0,0.0 -298,13.0,3.254608583313663,1.6,0.0,0.0,1.0070143035242305,-10.004620339769328,1.0,0.0,0.0 -298,14.0,4.304482319866457,2.5,0.0,0.0,1.0031473184714654,-10.08191100663507,1.0,0.0,0.0 -298,15.0,1.83727903896739,1.8,0.0,0.0,1.0078361010212995,-9.983117166278875,1.0,0.0,0.0 -298,16.0,4.724431814487575,5.8,0.0,0.0,1.004562566704176,-10.362657277422771,1.0,0.0,0.0 -298,17.0,1.6797979784844712,0.9,0.0,0.0,0.9962620859719716,-10.5200330927817,1.0,0.0,0.0 -298,18.0,4.986900248625774,3.4,0.0,0.0,0.9944386164541096,-10.688811534687032,1.0,0.0,0.0 -298,19.0,1.154861110208074,0.7,0.0,0.0,0.9975025920116388,-10.648383358914888,1.0,0.0,0.0 -298,20.0,9.186395194836953,11.2,0.0,0.0,0.9985847169642526,-10.554757634899085,1.0,0.0,0.0 -298,21.0,0.0,0.0,0.0,0.0,0.99890458264888,-10.548421004541556,1.0,0.0,0.0 -298,22.0,1.6797979784844712,1.6,0.0,0.0,0.993878201118326,-10.36381229393204,1.0,0.0,0.0 -298,23.0,4.566950754004655,6.7,0.0,0.0,0.988154507949861,-10.607556348483374,1.0,0.0,0.0 -298,24.0,0.0,0.0,0.0,0.0,0.9786093301151164,-10.445075208114464,1.0,0.0,0.0 -298,25.0,1.83727903896739,2.3,0.0,0.0,0.9647038032154271,-10.513683204503176,1.0,0.0,0.0 -298,26.0,0.0,0.0,0.0,0.0,0.9796858811696856,-10.276831217856229,1.0,0.0,0.0 -298,27.0,0.0,0.0,0.0,0.0,0.9598936389453664,-8.365241954653898,1.0,0.0,0.0 -298,28.0,1.2598484838633532,0.9,0.0,0.0,0.9661216476019104,-10.886945279558589,1.0,0.0,0.0 -298,29.0,5.56433080372981,1.9,0.0,0.0,0.9587594222529736,-11.3477232980971,1.0,0.0,0.0 -299,0.0,0.0,0.0,139.23070641007428,1.8380398891792996e-05,1.0,0.0,0.0,0.0,1.0 -299,1.0,11.39113004159782,12.7,17.983335722131258,6.486924970143903,0.9734878907936776,-4.611821588767926,0.0,1.0,0.0 -299,2.0,1.2598484838633532,1.2,0.0,0.0,1.0008200562139444,-0.1409732522819289,1.0,0.0,0.0 -299,3.0,3.9895201989006175,1.6,0.0,0.0,0.9525576233151416,-8.711018059938658,1.0,0.0,0.0 -299,4.0,49.44905299163662,19.0,-1.1425440392684411e-09,38.16609318567888,0.9582477862256668,-12.471658546261631,0.0,1.0,0.0 -299,5.0,0.0,0.0,0.0,0.0,0.9545822046822768,-8.889941390388083,1.0,0.0,0.0 -299,6.0,11.968560596701856,10.9,0.0,0.0,0.940001097844973,-13.062219477586854,1.0,0.0,0.0 -299,7.0,15.748106048291916,30.0,-9.829109878159652e-10,39.99924237485461,0.9569795509528944,-9.389654043715703,0.0,1.0,0.0 -299,8.0,0.0,0.0,0.0,0.0,0.9760554240110254,-8.889941390388085,1.0,0.0,0.0 -299,9.0,3.044633836003104,2.0,0.0,0.0,0.9742418794198312,-13.85195562918316,1.0,0.0,0.0 -299,10.0,0.0,0.0,0.0,0.0,0.9760554240110254,-8.889941390388085,0.0,1.0,0.0 -299,11.0,5.8792929246956485,7.5,0.0,0.0,1.01348943834312,-12.729654633338717,1.0,0.0,0.0 -299,12.0,0.0,0.0,-1.8391710245026402e-09,22.915011895373368,1.0442121387067222,-12.729654633478116,0.0,1.0,0.0 -299,13.0,3.254608583313663,1.6,0.0,0.0,1.0054124897978811,-13.087212966490094,1.0,0.0,0.0 -299,14.0,4.304482319866457,2.5,0.0,0.0,0.9968884913114,-13.257358080143998,1.0,0.0,0.0 -299,15.0,1.83727903896739,1.8,0.0,0.0,0.9898967847375348,-13.23570166653898,1.0,0.0,0.0 -299,16.0,4.724431814487575,5.8,0.0,0.0,0.9748449470427109,-13.77289101377054,1.0,0.0,0.0 -299,17.0,1.6797979784844712,0.9,0.0,0.0,0.9796914004371002,-13.792965536700308,1.0,0.0,0.0 -299,18.0,4.986900248625774,3.4,0.0,0.0,0.971809017658709,-14.020603785996853,1.0,0.0,0.0 -299,19.0,1.154861110208074,0.7,0.0,0.0,0.9717704599459056,-14.004981651701543,1.0,0.0,0.0 -299,20.0,9.186395194836953,11.2,0.0,0.0,0.962196089692858,-14.034281245844818,1.0,0.0,0.0 -299,21.0,0.0,0.0,0.0,0.0,0.9637139401759272,-13.861016843895126,1.0,0.0,0.0 -299,22.0,1.6797979784844712,1.6,0.0,0.0,0.9434095938525998,-13.931044297040756,1.0,0.0,0.0 -299,23.0,4.566950754004655,6.7,0.0,0.0,0.9503425408378088,-13.776170630652858,1.0,0.0,0.0 -299,24.0,0.0,0.0,0.0,0.0,0.9542715252375628,-12.92358701829956,1.0,0.0,0.0 -299,25.0,1.83727903896739,2.3,0.0,0.0,0.9400005223117376,-12.995793805056698,1.0,0.0,0.0 -299,26.0,0.0,0.0,0.0,0.0,0.963744376158243,-12.313269989969497,1.0,0.0,0.0 -299,27.0,0.0,0.0,0.0,0.0,0.9520955744668352,-9.3412062006219,1.0,0.0,0.0 -299,28.0,1.2598484838633532,0.9,0.0,0.0,0.9499425791415028,-12.94402398893395,1.0,0.0,0.0 -299,29.0,5.56433080372981,1.9,0.0,0.0,0.9424509958974926,-13.420741509899331,1.0,0.0,0.0 -300,0.0,0.0,0.0,155.35906332857903,0.0018750407800638,1.0,0.0,0.0,0.0,1.0 -300,1.0,11.39113004159782,12.7,3.705825785230397e-06,-5.026134381977023,0.9792986889482966,-3.525598503298698,0.0,1.0,0.0 -300,2.0,1.2598484838633532,1.2,0.0,0.0,0.9796483896276048,-4.750814692326225,1.0,0.0,0.0 -300,3.0,3.9895201989006175,1.6,0.0,0.0,0.974268991738037,-5.835832785525255,1.0,0.0,0.0 -300,4.0,49.44905299163662,19.0,2.3481285835795332e-09,27.588834232632195,0.967900326381546,-8.611416188725883,0.0,1.0,0.0 -300,5.0,0.0,0.0,0.0,0.0,0.9745915609717184,-6.88908733725429,1.0,0.0,0.0 -300,6.0,11.968560596701856,10.9,0.0,0.0,0.965511932371186,-7.852088290122422,1.0,0.0,0.0 -300,7.0,15.748106048291916,30.0,8.112438101074368e-09,36.1639829898044,0.9801280793929522,-10.029576691616525,0.0,1.0,0.0 -300,8.0,0.0,0.0,0.0,0.0,1.0232343782843203,-8.597014793544034,1.0,0.0,0.0 -300,9.0,3.044633836003104,2.0,0.0,0.0,1.0182803598426051,-9.48084349252159,1.0,0.0,0.0 -300,10.0,0.0,0.0,4.681173205089953e-09,18.73276937288347,1.0599932540112629,-8.59701479302968,0.0,1.0,0.0 -300,11.0,5.8792929246956485,7.5,0.0,0.0,1.034339199119986,-9.16716065433678,1.0,0.0,0.0 -300,12.0,0.0,0.0,2.7640525036680995e-09,19.41031842301268,1.0599760480305886,-9.167160654134554,0.0,1.0,0.0 -300,13.0,3.254608583313663,1.6,0.0,0.0,1.022496133906893,-9.600199836181442,1.0,0.0,0.0 -300,14.0,4.304482319866457,2.5,0.0,0.0,1.018083924427688,-9.60073743623378,1.0,0.0,0.0 -300,15.0,1.83727903896739,1.8,0.0,0.0,1.0215035223971722,-9.376908164135424,1.0,0.0,0.0 -300,16.0,4.724431814487575,5.8,0.0,0.0,1.015008128345133,-9.540436623987638,1.0,0.0,0.0 -300,17.0,1.6797979784844712,0.9,0.0,0.0,1.0092893908887586,-9.87381941391443,1.0,0.0,0.0 -300,18.0,4.986900248625774,3.4,0.0,0.0,1.0062970919248366,-9.9465857066675,1.0,0.0,0.0 -300,19.0,1.154861110208074,0.7,0.0,0.0,1.0086999614403491,-9.858436910312475,1.0,0.0,0.0 -300,20.0,9.186395194836953,11.2,0.0,0.0,1.0082551657631478,-9.658734321771982,1.0,0.0,0.0 -300,21.0,0.0,0.0,0.0,0.0,1.008721859045668,-9.662986183813176,1.0,0.0,0.0 -300,22.0,1.6797979784844712,1.6,0.0,0.0,1.0074571920593525,-9.773392790425982,1.0,0.0,0.0 -300,23.0,4.566950754004655,6.7,0.0,0.0,0.9998048749282512,-9.873986076416992,1.0,0.0,0.0 -300,24.0,0.0,0.0,0.0,0.0,0.9910138451431872,-9.788036456167513,1.0,0.0,0.0 -300,25.0,1.83727903896739,2.3,0.0,0.0,0.9772873836935824,-9.854913345748074,1.0,0.0,0.0 -300,26.0,0.0,0.0,0.0,0.0,0.9924940467965688,-9.6686120487582,1.0,0.0,0.0 -300,27.0,0.0,0.0,0.0,0.0,0.9742948146934164,-7.825603156618607,1.0,0.0,0.0 -300,28.0,1.2598484838633532,0.9,0.0,0.0,0.9636150860990604,-10.997893310852051,1.0,0.0,0.0 -300,29.0,5.56433080372981,1.9,0.0,0.0,0.940000975637069,-12.30515962648956,1.0,0.0,0.0 -301,0.0,0.0,0.0,157.29469839812154,0.0010743624328846,1.0,0.0,0.0,0.0,1.0 -301,1.0,11.542146431362644,12.7,1.1296210676245884e-06,8.038199457648744,0.9804404056617044,-3.5941089647897555,0.0,1.0,0.0 -301,2.0,1.2765507573857304,1.2,0.0,0.0,0.9755750193012396,-4.762767996094278,1.0,0.0,0.0 -301,3.0,4.042410731721479,1.6,0.0,0.0,0.9692532592768236,-5.852067020261129,1.0,0.0,0.0 -301,4.0,50.10461722738992,19.0,-1.4746141840573535e-09,23.694070848236123,0.9613408281972932,-8.64975916201326,0.0,1.0,0.0 -301,5.0,0.0,0.0,0.0,0.0,0.9689694463431736,-6.877364392681162,1.0,0.0,0.0 -301,6.0,12.12723219516444,10.9,0.0,0.0,0.959429276806532,-7.868897805151922,1.0,0.0,0.0 -301,7.0,15.956884467321627,30.0,-4.28501638313047e-10,33.42746459952642,0.9676654106111092,-7.538775688308538,0.0,1.0,0.0 -301,8.0,0.0,0.0,0.0,0.0,1.0170810417549927,-9.392282247471584,1.0,0.0,0.0 -301,9.0,3.0849976636821816,2.0,0.0,0.0,1.0091098407845764,-10.697803834515788,1.0,0.0,0.0 -301,10.0,0.0,0.0,1.3493454146742886e-09,21.828783537157573,1.059918187392602,-9.392282247322417,0.0,1.0,0.0 -301,11.0,5.957236867800074,7.5,0.0,0.0,1.0200983942756396,-9.525867892206389,1.0,0.0,0.0 -301,12.0,0.0,0.0,-1.552823398730929e-09,11.557654948601431,1.0357210533646648,-9.52586789232428,0.0,1.0,0.0 -301,13.0,3.29775612324647,1.6,0.0,0.0,0.9899622856065622,-10.417263704312434,1.0,0.0,0.0 -301,14.0,4.361548421067911,2.5,0.0,0.0,1.0005565636097382,-10.240859632562938,1.0,0.0,0.0 -301,15.0,1.8616365211875232,1.8,0.0,0.0,1.0087660737120234,-10.118412855528396,1.0,0.0,0.0 -301,16.0,4.787065340196489,5.8,0.0,0.0,1.0048375814714354,-10.608760870831704,1.0,0.0,0.0 -301,17.0,1.7020676765143072,0.9,0.0,0.0,0.9967475557676964,-10.399040048572887,1.0,0.0,0.0 -301,18.0,5.053013414651849,3.4,0.0,0.0,0.9904569589844312,-11.35405112964244,1.0,0.0,0.0 -301,19.0,1.1701715276035862,0.7,0.0,0.0,0.9945284770061418,-11.221429489952849,1.0,0.0,0.0 -301,20.0,9.308182605937615,11.2,0.0,0.0,0.9938365187054689,-10.902668498386614,1.0,0.0,0.0 -301,21.0,0.0,0.0,0.0,0.0,0.9926975608591652,-10.910692129747142,1.0,0.0,0.0 -301,22.0,1.7020676765143072,1.6,0.0,0.0,0.9903338031234128,-10.58712357699764,1.0,0.0,0.0 -301,23.0,4.627496495523272,6.7,0.0,0.0,0.9834144369087228,-10.91468574120403,1.0,0.0,0.0 -301,24.0,0.0,0.0,0.0,0.0,0.9751116786946712,-10.733164037425556,1.0,0.0,0.0 -301,25.0,1.8616365211875232,2.3,0.0,0.0,0.9610892544013612,-10.807935834445052,1.0,0.0,0.0 -301,26.0,0.0,0.0,0.0,0.0,0.9770078996150848,-10.547997328780466,1.0,0.0,0.0 -301,27.0,0.0,0.0,0.0,0.0,0.9586598757417626,-8.537810070076942,1.0,0.0,0.0 -301,28.0,1.2765507573857304,0.9,0.0,0.0,0.9702577510105338,-10.74886492080914,1.0,0.0,0.0 -301,29.0,5.638099178453642,1.9,0.0,0.0,0.945352083103302,-12.278829264309596,1.0,0.0,0.0 -302,0.0,0.0,0.0,157.274804555083,0.0053929667542362,1.0,0.0,0.0,0.0,1.0 -302,1.0,11.542146431362644,12.7,1.0669791370537169e-06,23.27584275070809,0.9821061963484404,-3.6353735823654354,0.0,1.0,0.0 -302,2.0,1.2765507573857304,1.2,0.0,0.0,0.9707322974859716,-4.66407371680244,1.0,0.0,0.0 -302,3.0,4.042410731721479,1.6,0.0,0.0,0.9632723890072648,-5.731529513528178,1.0,0.0,0.0 -302,4.0,50.10461722738992,19.0,6.682943570919331e-10,28.41791733321878,0.9612685637982902,-8.712390060016435,0.0,1.0,0.0 -302,5.0,0.0,0.0,0.0,0.0,0.9575591359492016,-6.719004902763171,1.0,0.0,0.0 -302,6.0,12.12723219516444,10.9,0.0,0.0,0.952615649534863,-7.799364483759723,1.0,0.0,0.0 -302,7.0,15.956884467321627,30.0,0.0,0.0,0.9449971224959012,-6.9468958440674,0.0,1.0,0.0 -302,8.0,0.0,0.0,0.0,0.0,1.0131486528401414,-8.477383329100947,1.0,0.0,0.0 -302,9.0,3.0849976636821816,2.0,0.0,0.0,1.0067478504446234,-9.381652218814464,1.0,0.0,0.0 -302,10.0,0.0,0.0,-2.4521029721167343e-10,23.875873459883746,1.0599994478091403,-8.477383329128157,0.0,1.0,0.0 -302,11.0,5.957236867800074,7.5,0.0,0.0,1.025521704349882,-9.13659918403862,1.0,0.0,0.0 -302,12.0,0.0,0.0,5.960279347736595e-10,22.332901475075605,1.0551534715829465,-9.13659918399444,0.0,1.0,0.0 -302,13.0,3.29775612324647,1.6,0.0,0.0,1.01303685585159,-9.570835695554162,1.0,0.0,0.0 -302,14.0,4.361548421067911,2.5,0.0,0.0,1.0082083176950172,-9.548049631334344,1.0,0.0,0.0 -302,15.0,1.8616365211875232,1.8,0.0,0.0,1.0114803893928368,-9.316055849810253,1.0,0.0,0.0 -302,16.0,4.787065340196489,5.8,0.0,0.0,1.003870858947691,-9.459138762103793,1.0,0.0,0.0 -302,17.0,1.7020676765143072,0.9,0.0,0.0,0.9986852149659377,-9.817396240716407,1.0,0.0,0.0 -302,18.0,5.053013414651849,3.4,0.0,0.0,0.9952990942560632,-9.884427017971468,1.0,0.0,0.0 -302,19.0,1.1701715276035862,0.7,0.0,0.0,0.9975612494558794,-9.787801529240832,1.0,0.0,0.0 -302,20.0,9.308182605937615,11.2,0.0,0.0,0.9963870864983212,-9.551699930062696,1.0,0.0,0.0 -302,21.0,0.0,0.0,0.0,0.0,0.9968060092320852,-9.55044323972564,1.0,0.0,0.0 -302,22.0,1.7020676765143072,1.6,0.0,0.0,0.996349219378404,-9.66880906537532,1.0,0.0,0.0 -302,23.0,4.627496495523272,6.7,0.0,0.0,0.9871446963578644,-9.693131796476612,1.0,0.0,0.0 -302,24.0,0.0,0.0,0.0,0.0,0.9757664252745244,-9.366289880336414,1.0,0.0,0.0 -302,25.0,1.8616365211875232,2.3,0.0,0.0,0.961753689583706,-9.440959879901133,1.0,0.0,0.0 -302,26.0,0.0,0.0,0.0,0.0,0.9757032309290964,-9.093458450317492,1.0,0.0,0.0 -302,27.0,0.0,0.0,0.0,0.0,0.9535003025762592,-7.029168388528656,1.0,0.0,0.0 -302,28.0,1.2765507573857304,0.9,0.0,0.0,0.9689439132626818,-9.294867365867226,1.0,0.0,0.0 -302,29.0,5.638099178453642,1.9,0.0,0.0,0.9440008656713672,-10.829087023716337,1.0,0.0,0.0 -303,0.0,0.0,0.0,157.0035766609377,0.0005598182963417,1.0,0.0,0.0,0.0,1.0 -303,1.0,11.542146431362644,12.7,5.985925030650692e-07,10.757087134679672,0.9808004918644556,-3.601424788120816,0.0,1.0,0.0 -303,2.0,1.2765507573857304,1.2,0.0,0.0,0.974626242530496,-4.717735972078131,1.0,0.0,0.0 -303,3.0,4.042410731721479,1.6,0.0,0.0,0.9680779239312082,-5.796560725510412,1.0,0.0,0.0 -303,4.0,50.10461722738992,19.0,-6.794744436140356e-10,24.130246308785573,0.9612383915891036,-8.666173452385749,0.0,1.0,0.0 -303,5.0,0.0,0.0,0.0,0.0,0.9675090858942492,-6.878536185660045,1.0,0.0,0.0 -303,6.0,12.12723219516444,10.9,0.0,0.0,0.9585173640373824,-7.876121446310813,1.0,0.0,0.0 -303,7.0,15.956884467321627,30.0,-5.438041512351855e-10,32.641766331275235,0.9668312760363398,-7.311550634712832,0.0,1.0,0.0 -303,8.0,0.0,0.0,0.0,0.0,1.0159710264965265,-8.638565462830012,1.0,0.0,0.0 -303,9.0,3.0849976636821816,2.0,0.0,0.0,1.007181537122753,-9.552695133499792,1.0,0.0,0.0 -303,10.0,0.0,0.0,-3.0498809890944256e-10,22.436876736353792,1.059998180930552,-8.638565462863765,0.0,1.0,0.0 -303,11.0,5.957236867800074,7.5,0.0,0.0,1.0145707638785937,-9.108253930258408,1.0,0.0,0.0 -303,12.0,0.0,0.0,-7.554974575943066e-10,10.239777790292756,1.0285090840439763,-9.10825393031648,0.0,1.0,0.0 -303,13.0,3.29775612324647,1.6,0.0,0.0,1.0035918259984369,-9.559296444316928,1.0,0.0,0.0 -303,14.0,4.361548421067911,2.5,0.0,0.0,1.0002399144391534,-9.580888302208033,1.0,0.0,0.0 -303,15.0,1.8616365211875232,1.8,0.0,0.0,1.0052868349413255,-9.398125330962705,1.0,0.0,0.0 -303,16.0,4.787065340196489,5.8,0.0,0.0,1.0022635705667446,-9.594751522869634,1.0,0.0,0.0 -303,17.0,1.7020676765143072,0.9,0.0,0.0,0.9936262711365806,-9.903139451584511,1.0,0.0,0.0 -303,18.0,5.053013414651849,3.4,0.0,0.0,0.9919764281571772,-10.000503261498691,1.0,0.0,0.0 -303,19.0,1.1701715276035862,0.7,0.0,0.0,0.9951667309512444,-9.91922726382472,1.0,0.0,0.0 -303,20.0,9.308182605937615,11.2,0.0,0.0,0.9966808314799016,-9.71682233932984,1.0,0.0,0.0 -303,21.0,0.0,0.0,0.0,0.0,0.9970547278375724,-9.713644784479266,1.0,0.0,0.0 -303,22.0,1.7020676765143072,1.6,0.0,0.0,0.9916512041314944,-9.745851158188133,1.0,0.0,0.0 -303,23.0,4.627496495523272,6.7,0.0,0.0,0.9868469360550892,-9.82667772458184,1.0,0.0,0.0 -303,24.0,0.0,0.0,0.0,0.0,0.9799193379107408,-9.543634038281112,1.0,0.0,0.0 -303,25.0,1.8616365211875232,2.3,0.0,0.0,0.965967740107726,-9.617663217546683,1.0,0.0,0.0 -303,26.0,0.0,0.0,0.0,0.0,0.9826005812309364,-9.29438225868784,1.0,0.0,0.0 -303,27.0,0.0,0.0,0.0,0.0,0.9640839404329334,-7.183176291751772,1.0,0.0,0.0 -303,28.0,1.2765507573857304,0.9,0.0,0.0,0.968976398513778,-9.911439720509064,1.0,0.0,0.0 -303,29.0,5.638099178453642,1.9,0.0,0.0,0.9615706973030635,-10.37662292918743,1.0,0.0,0.0 -304,0.0,0.0,0.0,156.9965793876602,0.0004313150901325,1.0,0.0,0.0,0.0,1.0 -304,1.0,11.542146431362644,12.7,4.988079179155105e-07,10.00794658079326,0.9807207485705164,-3.599585612563729,0.0,1.0,0.0 -304,2.0,1.2765507573857304,1.2,0.0,0.0,0.9748599703342292,-4.721270834814254,1.0,0.0,0.0 -304,3.0,4.042410731721479,1.6,0.0,0.0,0.9683664194072454,-5.800850276526333,1.0,0.0,0.0 -304,4.0,50.10461722738992,19.0,-5.903875668999195e-10,23.89342145927984,0.9612477505454692,-8.663981336832505,0.0,1.0,0.0 -304,5.0,0.0,0.0,0.0,0.0,0.968088172763258,-6.888156358474331,1.0,0.0,0.0 -304,6.0,12.12723219516444,10.9,0.0,0.0,0.9588653312620588,-7.881014588785547,1.0,0.0,0.0 -304,7.0,15.956884467321627,30.0,-4.97892088192618e-10,30.40795312884701,0.9670959837399852,-7.304434539095598,0.0,1.0,0.0 -304,8.0,0.0,0.0,0.0,0.0,1.0161793865404969,-8.648618780655442,1.0,0.0,0.0 -304,9.0,3.0849976636821816,2.0,0.0,0.0,1.0073249298442,-9.563390439120694,1.0,0.0,0.0 -304,10.0,0.0,0.0,-2.3678938075915953e-10,22.303278851775744,1.059946519285066,-8.64861878068164,0.0,1.0,0.0 -304,11.0,5.957236867800074,7.5,0.0,0.0,1.0140246827995103,-9.107036016774474,1.0,0.0,0.0 -304,12.0,0.0,0.0,-6.478086161065216e-10,9.54085873424,1.027030337780263,-9.107036016824372,0.0,1.0,0.0 -304,13.0,3.29775612324647,1.6,0.0,0.0,1.003155619538239,-9.559426385891507,1.0,0.0,0.0 -304,14.0,4.361548421067911,2.5,0.0,0.0,0.9999073881253407,-9.584537895694062,1.0,0.0,0.0 -304,15.0,1.8616365211875232,1.8,0.0,0.0,1.0050295659532362,-9.40354499277074,1.0,0.0,0.0 -304,16.0,4.787065340196489,5.8,0.0,0.0,1.0022840309774002,-9.603322985313516,1.0,0.0,0.0 -304,17.0,1.7020676765143072,0.9,0.0,0.0,0.993459661498217,-9.909448491044683,1.0,0.0,0.0 -304,18.0,5.053013414651849,3.4,0.0,0.0,0.9919085646704332,-10.00834259654876,1.0,0.0,0.0 -304,19.0,1.1701715276035862,0.7,0.0,0.0,0.9951511730422156,-9.927866488514246,1.0,0.0,0.0 -304,20.0,9.308182605937615,11.2,0.0,0.0,0.996855584791615,-9.728257408002168,1.0,0.0,0.0 -304,21.0,0.0,0.0,0.0,0.0,0.997238727507306,-9.725347467099995,1.0,0.0,0.0 -304,22.0,1.7020676765143072,1.6,0.0,0.0,0.991590366544494,-9.754854913890297,1.0,0.0,0.0 -304,23.0,4.627496495523272,6.7,0.0,0.0,0.9871499161526822,-9.842700526061464,1.0,0.0,0.0 -304,24.0,0.0,0.0,0.0,0.0,0.9808744597529584,-9.577744992875832,1.0,0.0,0.0 -304,25.0,1.8616365211875232,2.3,0.0,0.0,0.9669368464620848,-9.65162796323813,1.0,0.0,0.0 -304,26.0,0.0,0.0,0.0,0.0,0.9839588664483104,-9.339242108374275,1.0,0.0,0.0 -304,27.0,0.0,0.0,0.0,0.0,0.966095372526702,-7.232094353130531,1.0,0.0,0.0 -304,28.0,1.2765507573857304,0.9,0.0,0.0,0.9703545743626936,-9.954573793843428,1.0,0.0,0.0 -304,29.0,5.638099178453642,1.9,0.0,0.0,0.9629597173229538,-10.418427658812552,1.0,0.0,0.0 -305,0.0,0.0,0.0,156.9965793876602,0.0004313150901325,1.0,0.0,0.0,0.0,1.0 -305,1.0,11.542146431362644,12.7,4.988079179155105e-07,10.00794658079326,0.9807207485705164,-3.599585612563729,0.0,1.0,0.0 -305,2.0,1.2765507573857304,1.2,0.0,0.0,0.9748599703342292,-4.721270834814254,1.0,0.0,0.0 -305,3.0,4.042410731721479,1.6,0.0,0.0,0.9683664194072454,-5.800850276526333,1.0,0.0,0.0 -305,4.0,50.10461722738992,19.0,-5.903875668999195e-10,23.89342145927984,0.9612477505454692,-8.663981336832505,0.0,1.0,0.0 -305,5.0,0.0,0.0,0.0,0.0,0.968088172763258,-6.888156358474331,1.0,0.0,0.0 -305,6.0,12.12723219516444,10.9,0.0,0.0,0.9588653312620588,-7.881014588785547,1.0,0.0,0.0 -305,7.0,15.956884467321627,30.0,-4.97892088192618e-10,30.40795312884701,0.9670959837399852,-7.304434539095598,0.0,1.0,0.0 -305,8.0,0.0,0.0,0.0,0.0,1.0161793865404969,-8.648618780655442,1.0,0.0,0.0 -305,9.0,3.0849976636821816,2.0,0.0,0.0,1.0073249298442,-9.563390439120694,1.0,0.0,0.0 -305,10.0,0.0,0.0,-2.3678938075915953e-10,22.303278851775744,1.059946519285066,-8.64861878068164,0.0,1.0,0.0 -305,11.0,5.957236867800074,7.5,0.0,0.0,1.0140246827995103,-9.107036016774474,1.0,0.0,0.0 -305,12.0,0.0,0.0,-6.478086161065216e-10,9.54085873424,1.027030337780263,-9.107036016824372,0.0,1.0,0.0 -305,13.0,3.29775612324647,1.6,0.0,0.0,1.003155619538239,-9.559426385891507,1.0,0.0,0.0 -305,14.0,4.361548421067911,2.5,0.0,0.0,0.9999073881253407,-9.584537895694062,1.0,0.0,0.0 -305,15.0,1.8616365211875232,1.8,0.0,0.0,1.0050295659532362,-9.40354499277074,1.0,0.0,0.0 -305,16.0,4.787065340196489,5.8,0.0,0.0,1.0022840309774002,-9.603322985313516,1.0,0.0,0.0 -305,17.0,1.7020676765143072,0.9,0.0,0.0,0.993459661498217,-9.909448491044683,1.0,0.0,0.0 -305,18.0,5.053013414651849,3.4,0.0,0.0,0.9919085646704332,-10.00834259654876,1.0,0.0,0.0 -305,19.0,1.1701715276035862,0.7,0.0,0.0,0.9951511730422156,-9.927866488514246,1.0,0.0,0.0 -305,20.0,9.308182605937615,11.2,0.0,0.0,0.996855584791615,-9.728257408002168,1.0,0.0,0.0 -305,21.0,0.0,0.0,0.0,0.0,0.997238727507306,-9.725347467099995,1.0,0.0,0.0 -305,22.0,1.7020676765143072,1.6,0.0,0.0,0.991590366544494,-9.754854913890297,1.0,0.0,0.0 -305,23.0,4.627496495523272,6.7,0.0,0.0,0.9871499161526822,-9.842700526061464,1.0,0.0,0.0 -305,24.0,0.0,0.0,0.0,0.0,0.9808744597529584,-9.577744992875832,1.0,0.0,0.0 -305,25.0,1.8616365211875232,2.3,0.0,0.0,0.9669368464620848,-9.65162796323813,1.0,0.0,0.0 -305,26.0,0.0,0.0,0.0,0.0,0.9839588664483104,-9.339242108374275,1.0,0.0,0.0 -305,27.0,0.0,0.0,0.0,0.0,0.966095372526702,-7.232094353130531,1.0,0.0,0.0 -305,28.0,1.2765507573857304,0.9,0.0,0.0,0.9703545743626936,-9.954573793843428,1.0,0.0,0.0 -305,29.0,5.638099178453642,1.9,0.0,0.0,0.9629597173229538,-10.418427658812552,1.0,0.0,0.0 -306,0.0,0.0,0.0,156.9965793876602,0.0004313150901325,1.0,0.0,0.0,0.0,1.0 -306,1.0,11.542146431362644,12.7,4.988079179155105e-07,10.00794658079326,0.9807207485705164,-3.599585612563729,0.0,1.0,0.0 -306,2.0,1.2765507573857304,1.2,0.0,0.0,0.9748599703342292,-4.721270834814254,1.0,0.0,0.0 -306,3.0,4.042410731721479,1.6,0.0,0.0,0.9683664194072454,-5.800850276526333,1.0,0.0,0.0 -306,4.0,50.10461722738992,19.0,-5.903875668999195e-10,23.89342145927984,0.9612477505454692,-8.663981336832505,0.0,1.0,0.0 -306,5.0,0.0,0.0,0.0,0.0,0.968088172763258,-6.888156358474331,1.0,0.0,0.0 -306,6.0,12.12723219516444,10.9,0.0,0.0,0.9588653312620588,-7.881014588785547,1.0,0.0,0.0 -306,7.0,15.956884467321627,30.0,-4.97892088192618e-10,30.40795312884701,0.9670959837399852,-7.304434539095598,0.0,1.0,0.0 -306,8.0,0.0,0.0,0.0,0.0,1.0161793865404969,-8.648618780655442,1.0,0.0,0.0 -306,9.0,3.0849976636821816,2.0,0.0,0.0,1.0073249298442,-9.563390439120694,1.0,0.0,0.0 -306,10.0,0.0,0.0,-2.3678938075915953e-10,22.303278851775744,1.059946519285066,-8.64861878068164,0.0,1.0,0.0 -306,11.0,5.957236867800074,7.5,0.0,0.0,1.0140246827995103,-9.107036016774474,1.0,0.0,0.0 -306,12.0,0.0,0.0,-6.478086161065216e-10,9.54085873424,1.027030337780263,-9.107036016824372,0.0,1.0,0.0 -306,13.0,3.29775612324647,1.6,0.0,0.0,1.003155619538239,-9.559426385891507,1.0,0.0,0.0 -306,14.0,4.361548421067911,2.5,0.0,0.0,0.9999073881253407,-9.584537895694062,1.0,0.0,0.0 -306,15.0,1.8616365211875232,1.8,0.0,0.0,1.0050295659532362,-9.40354499277074,1.0,0.0,0.0 -306,16.0,4.787065340196489,5.8,0.0,0.0,1.0022840309774002,-9.603322985313516,1.0,0.0,0.0 -306,17.0,1.7020676765143072,0.9,0.0,0.0,0.993459661498217,-9.909448491044683,1.0,0.0,0.0 -306,18.0,5.053013414651849,3.4,0.0,0.0,0.9919085646704332,-10.00834259654876,1.0,0.0,0.0 -306,19.0,1.1701715276035862,0.7,0.0,0.0,0.9951511730422156,-9.927866488514246,1.0,0.0,0.0 -306,20.0,9.308182605937615,11.2,0.0,0.0,0.996855584791615,-9.728257408002168,1.0,0.0,0.0 -306,21.0,0.0,0.0,0.0,0.0,0.997238727507306,-9.725347467099995,1.0,0.0,0.0 -306,22.0,1.7020676765143072,1.6,0.0,0.0,0.991590366544494,-9.754854913890297,1.0,0.0,0.0 -306,23.0,4.627496495523272,6.7,0.0,0.0,0.9871499161526822,-9.842700526061464,1.0,0.0,0.0 -306,24.0,0.0,0.0,0.0,0.0,0.9808744597529584,-9.577744992875832,1.0,0.0,0.0 -306,25.0,1.8616365211875232,2.3,0.0,0.0,0.9669368464620848,-9.65162796323813,1.0,0.0,0.0 -306,26.0,0.0,0.0,0.0,0.0,0.9839588664483104,-9.339242108374275,1.0,0.0,0.0 -306,27.0,0.0,0.0,0.0,0.0,0.966095372526702,-7.232094353130531,1.0,0.0,0.0 -306,28.0,1.2765507573857304,0.9,0.0,0.0,0.9703545743626936,-9.954573793843428,1.0,0.0,0.0 -306,29.0,5.638099178453642,1.9,0.0,0.0,0.9629597173229538,-10.418427658812552,1.0,0.0,0.0 -307,0.0,0.0,0.0,156.9965793876602,0.0004313150901325,1.0,0.0,0.0,0.0,1.0 -307,1.0,11.542146431362644,12.7,4.988079179155105e-07,10.00794658079326,0.9807207485705164,-3.599585612563729,0.0,1.0,0.0 -307,2.0,1.2765507573857304,1.2,0.0,0.0,0.9748599703342292,-4.721270834814254,1.0,0.0,0.0 -307,3.0,4.042410731721479,1.6,0.0,0.0,0.9683664194072454,-5.800850276526333,1.0,0.0,0.0 -307,4.0,50.10461722738992,19.0,-5.903875668999195e-10,23.89342145927984,0.9612477505454692,-8.663981336832505,0.0,1.0,0.0 -307,5.0,0.0,0.0,0.0,0.0,0.968088172763258,-6.888156358474331,1.0,0.0,0.0 -307,6.0,12.12723219516444,10.9,0.0,0.0,0.9588653312620588,-7.881014588785547,1.0,0.0,0.0 -307,7.0,15.956884467321627,30.0,-4.97892088192618e-10,30.40795312884701,0.9670959837399852,-7.304434539095598,0.0,1.0,0.0 -307,8.0,0.0,0.0,0.0,0.0,1.0161793865404969,-8.648618780655442,1.0,0.0,0.0 -307,9.0,3.0849976636821816,2.0,0.0,0.0,1.0073249298442,-9.563390439120694,1.0,0.0,0.0 -307,10.0,0.0,0.0,-2.3678938075915953e-10,22.303278851775744,1.059946519285066,-8.64861878068164,0.0,1.0,0.0 -307,11.0,5.957236867800074,7.5,0.0,0.0,1.0140246827995103,-9.107036016774474,1.0,0.0,0.0 -307,12.0,0.0,0.0,-6.478086161065216e-10,9.54085873424,1.027030337780263,-9.107036016824372,0.0,1.0,0.0 -307,13.0,3.29775612324647,1.6,0.0,0.0,1.003155619538239,-9.559426385891507,1.0,0.0,0.0 -307,14.0,4.361548421067911,2.5,0.0,0.0,0.9999073881253407,-9.584537895694062,1.0,0.0,0.0 -307,15.0,1.8616365211875232,1.8,0.0,0.0,1.0050295659532362,-9.40354499277074,1.0,0.0,0.0 -307,16.0,4.787065340196489,5.8,0.0,0.0,1.0022840309774002,-9.603322985313516,1.0,0.0,0.0 -307,17.0,1.7020676765143072,0.9,0.0,0.0,0.993459661498217,-9.909448491044683,1.0,0.0,0.0 -307,18.0,5.053013414651849,3.4,0.0,0.0,0.9919085646704332,-10.00834259654876,1.0,0.0,0.0 -307,19.0,1.1701715276035862,0.7,0.0,0.0,0.9951511730422156,-9.927866488514246,1.0,0.0,0.0 -307,20.0,9.308182605937615,11.2,0.0,0.0,0.996855584791615,-9.728257408002168,1.0,0.0,0.0 -307,21.0,0.0,0.0,0.0,0.0,0.997238727507306,-9.725347467099995,1.0,0.0,0.0 -307,22.0,1.7020676765143072,1.6,0.0,0.0,0.991590366544494,-9.754854913890297,1.0,0.0,0.0 -307,23.0,4.627496495523272,6.7,0.0,0.0,0.9871499161526822,-9.842700526061464,1.0,0.0,0.0 -307,24.0,0.0,0.0,0.0,0.0,0.9808744597529584,-9.577744992875832,1.0,0.0,0.0 -307,25.0,1.8616365211875232,2.3,0.0,0.0,0.9669368464620848,-9.65162796323813,1.0,0.0,0.0 -307,26.0,0.0,0.0,0.0,0.0,0.9839588664483104,-9.339242108374275,1.0,0.0,0.0 -307,27.0,0.0,0.0,0.0,0.0,0.966095372526702,-7.232094353130531,1.0,0.0,0.0 -307,28.0,1.2765507573857304,0.9,0.0,0.0,0.9703545743626936,-9.954573793843428,1.0,0.0,0.0 -307,29.0,5.638099178453642,1.9,0.0,0.0,0.9629597173229538,-10.418427658812552,1.0,0.0,0.0 -308,0.0,0.0,0.0,157.10355761057474,0.0032806750338565,1.0,0.0,0.0,0.0,1.0 -308,1.0,11.542146431362644,12.7,1.870758403121394e-06,8.914988269673216,0.9802279936325722,-3.669990125845416,0.0,1.0,0.0 -308,2.0,1.2765507573857304,1.2,0.0,0.0,0.9759633082232014,-4.526451860159895,1.0,0.0,0.0 -308,3.0,4.042410731721479,1.6,0.0,0.0,0.9697012991691882,-5.558504312627369,1.0,0.0,0.0 -308,4.0,50.10461722738992,19.0,3.934460805210835e-11,22.52254838868545,0.9611188773792736,-9.88121432589101,0.0,1.0,0.0 -308,5.0,0.0,0.0,0.0,0.0,0.9687193650453408,-6.510626851026255,1.0,0.0,0.0 -308,6.0,12.12723219516444,10.9,0.0,0.0,0.9566285538052796,-6.958368527652639,1.0,0.0,0.0 -308,7.0,15.956884467321627,30.0,-4.6962913257138686e-09,34.973292562757344,0.967004180345964,-7.175553767010974,0.0,1.0,0.0 -308,8.0,0.0,0.0,0.0,0.0,1.0183406742675924,-8.310512454319142,1.0,0.0,0.0 -308,9.0,3.0849976636821816,2.0,0.0,0.0,1.011423948983905,-9.24258103940672,1.0,0.0,0.0 -308,10.0,0.0,0.0,-2.8125055440968e-09,21.225677888556355,1.0599913990269858,-8.310512454629658,0.0,1.0,0.0 -308,11.0,5.957236867800074,7.5,0.0,0.0,1.0218981301381882,-8.779013527921396,1.0,0.0,0.0 -308,12.0,0.0,0.0,-2.467670477605405e-09,12.233172743396375,1.038391373701741,-8.779013528107933,0.0,1.0,0.0 -308,13.0,3.29775612324647,1.6,0.0,0.0,1.0115375905091568,-9.207542830771295,1.0,0.0,0.0 -308,14.0,4.361548421067911,2.5,0.0,0.0,1.0088376830490602,-9.225202828530817,1.0,0.0,0.0 -308,15.0,1.8616365211875232,1.8,0.0,0.0,1.0112997715174734,-9.069248418630083,1.0,0.0,0.0 -308,16.0,4.787065340196489,5.8,0.0,0.0,1.007086388063691,-9.280015819048211,1.0,0.0,0.0 -308,17.0,1.7020676765143072,0.9,0.0,0.0,1.0007480583806074,-9.558126252588703,1.0,0.0,0.0 -308,18.0,5.053013414651849,3.4,0.0,0.0,0.99820870848692,-9.663438383988048,1.0,0.0,0.0 -308,19.0,1.1701715276035862,0.7,0.0,0.0,1.0009041349452843,-9.587890216921334,1.0,0.0,0.0 -308,20.0,9.308182605937615,11.2,0.0,0.0,1.0011466706055898,-9.450799450051846,1.0,0.0,0.0 -308,21.0,0.0,0.0,0.0,0.0,1.0015703451955305,-9.462350851413117,1.0,0.0,0.0 -308,22.0,1.7020676765143072,1.6,0.0,0.0,1.0039212258043944,-9.329192258233183,1.0,0.0,0.0 -308,23.0,4.627496495523272,6.7,0.0,0.0,0.9917296441639551,-9.776249674331591,1.0,0.0,0.0 -308,24.0,0.0,0.0,0.0,0.0,0.9543516146176022,-10.353688043221156,1.0,0.0,0.0 -308,25.0,1.8616365211875232,2.3,0.0,0.0,0.9400147795519506,-10.431799163757894,1.0,0.0,0.0 -308,26.0,0.0,0.0,0.0,0.0,0.961625710822106,-10.267357528121398,1.0,0.0,0.0 -308,27.0,0.0,0.0,0.0,0.0,0.9528146386641164,-8.131012415942532,1.0,0.0,0.0 -308,28.0,1.2765507573857304,0.9,0.0,0.0,0.947686599588399,-10.91201846046611,1.0,0.0,0.0 -308,29.0,5.638099178453642,1.9,0.0,0.0,0.9401091811663672,-11.398486723762778,1.0,0.0,0.0 -309,0.0,0.0,0.0,157.04706965306633,0.0003036462236316,1.0,0.0,0.0,0.0,1.0 -309,1.0,11.542146431362644,12.7,3.2338708327407545e-07,10.9615340379941,0.980799506093338,-3.6050614664234057,0.0,1.0,0.0 -309,2.0,1.2765507573857304,1.2,0.0,0.0,0.9746026557974692,-4.711722014842813,1.0,0.0,0.0 -309,3.0,4.042410731721479,1.6,0.0,0.0,0.968048046408248,-5.789101957919939,1.0,0.0,0.0 -309,4.0,50.10461722738992,19.0,-2.576874135807852e-10,24.210106496469137,0.96118918106027,-8.677228008523784,0.0,1.0,0.0 -309,5.0,0.0,0.0,0.0,0.0,0.9672447818263818,-6.892575954367096,1.0,0.0,0.0 -309,6.0,12.12723219516444,10.9,0.0,0.0,0.9583389238919352,-7.888939910033171,1.0,0.0,0.0 -309,7.0,15.956884467321627,30.0,-1.831702599341696e-10,33.06220713165334,0.9667491362213776,-7.328836517897845,0.0,1.0,0.0 -309,8.0,0.0,0.0,0.0,0.0,1.0147615355998625,-8.73808270595151,1.0,0.0,0.0 -309,9.0,3.0849976636821816,2.0,0.0,0.0,1.0048727598753842,-9.69853698638093,1.0,0.0,0.0 -309,10.0,0.0,0.0,-4.300362006542436e-11,23.05366654078481,1.0599989632460098,-8.738082705956275,0.0,1.0,0.0 -309,11.0,5.957236867800074,7.5,0.0,0.0,1.0149181404269147,-8.951373782009416,1.0,0.0,0.0 -309,12.0,0.0,0.0,-3.0063136417968153e-10,9.13679423479257,1.0273688891923034,-8.951373782032539,0.0,1.0,0.0 -309,13.0,3.29775612324647,1.6,0.0,0.0,1.0050413767507451,-9.344915863357295,1.0,0.0,0.0 -309,14.0,4.361548421067911,2.5,0.0,0.0,1.003140117931213,-9.335143307983849,1.0,0.0,0.0 -309,15.0,1.8616365211875232,1.8,0.0,0.0,1.0042730109176157,-9.365279871067596,1.0,0.0,0.0 -309,16.0,4.787065340196489,5.8,0.0,0.0,1.0004149733903551,-9.686766206366078,1.0,0.0,0.0 -309,17.0,1.7020676765143072,0.9,0.0,0.0,0.9789281673440826,-10.667897860898757,1.0,0.0,0.0 -309,18.0,5.053013414651849,3.4,0.0,0.0,0.9812284321806948,-10.571029873333648,1.0,0.0,0.0 -309,19.0,1.1701715276035862,0.7,0.0,0.0,0.986558517655196,-10.385687783037188,1.0,0.0,0.0 -309,20.0,9.308182605937615,11.2,0.0,0.0,0.9946625409802772,-9.83836635696612,1.0,0.0,0.0 -309,21.0,0.0,0.0,0.0,0.0,0.9951391581203892,-9.82726215639588,1.0,0.0,0.0 -309,22.0,1.7020676765143072,1.6,0.0,0.0,0.9931365631915084,-9.610741686369204,1.0,0.0,0.0 -309,23.0,4.627496495523272,6.7,0.0,0.0,0.98646583022557,-9.843014227113828,1.0,0.0,0.0 -309,24.0,0.0,0.0,0.0,0.0,0.9795724146706976,-9.56005444645344,1.0,0.0,0.0 -309,25.0,1.8616365211875232,2.3,0.0,0.0,0.9656157303032322,-9.634136840290903,1.0,0.0,0.0 -309,26.0,0.0,0.0,0.0,0.0,0.9822775230986326,-9.310765010711007,1.0,0.0,0.0 -309,27.0,0.0,0.0,0.0,0.0,0.9638117082385164,-7.197415160421854,1.0,0.0,0.0 -309,28.0,1.2765507573857304,0.9,0.0,0.0,0.9686486007381476,-9.928234009905626,1.0,0.0,0.0 -309,29.0,5.638099178453642,1.9,0.0,0.0,0.9612403154984316,-10.393734244975798,1.0,0.0,0.0 -310,0.0,0.0,0.0,157.56514830869958,0.0260248047551314,1.0,0.0,0.0,0.0,1.0 -310,1.0,11.542146431362644,12.7,6.675956557399252e-06,14.430299978980862,0.983730142076731,-3.365344523911645,0.0,1.0,0.0 -310,2.0,1.2765507573857304,1.2,0.0,0.0,0.9671176649926646,-5.486341833394922,1.0,0.0,0.0 -310,3.0,4.042410731721479,1.6,0.0,0.0,0.9589557417071676,-6.756076362356143,1.0,0.0,0.0 -310,4.0,50.10461722738992,19.0,6.2190057104965906e-09,26.19074132779174,0.9635511203601852,-8.936731652874364,0.0,1.0,0.0 -310,5.0,0.0,0.0,0.0,0.0,0.9644630281161156,-7.614926266411161,1.0,0.0,0.0 -310,6.0,12.12723219516444,10.9,0.0,0.0,0.9575850396877628,-8.420314635983265,1.0,0.0,0.0 -310,7.0,15.956884467321627,30.0,1.64907027606726e-08,39.88474857627122,0.966930673026541,-8.094688918470355,0.0,1.0,0.0 -310,8.0,0.0,0.0,0.0,0.0,1.0120979987619438,-9.433676658375912,1.0,0.0,0.0 -310,9.0,3.0849976636821816,2.0,0.0,0.0,1.0031039831360526,-10.379151544798384,1.0,0.0,0.0 -310,10.0,0.0,0.0,6.3244344811867295e-09,22.1826464837731,1.0557993922509823,-9.43367665767056,0.0,1.0,0.0 -310,11.0,5.957236867800074,7.5,0.0,0.0,0.9791311912591948,-10.096933499323288,1.0,0.0,0.0 -310,12.0,0.0,0.0,0.0,0.0,0.9791311912591948,-10.096933499323288,0.0,1.0,0.0 -310,13.0,3.29775612324647,1.6,0.0,0.0,0.971638041887649,-10.517062124151968,1.0,0.0,0.0 -310,14.0,4.361548421067911,2.5,0.0,0.0,0.9723301275124688,-10.568508482695384,1.0,0.0,0.0 -310,15.0,1.8616365211875232,1.8,0.0,0.0,0.9564660490527628,-10.462764267931965,1.0,0.0,0.0 -310,16.0,4.787065340196489,5.8,0.0,0.0,0.9419397216242472,-10.854921184913328,1.0,0.0,0.0 -310,17.0,1.7020676765143072,0.9,0.0,0.0,0.9739574785571866,-10.850188175593546,1.0,0.0,0.0 -310,18.0,5.053013414651849,3.4,0.0,0.0,0.9772313357368254,-10.91854050940342,1.0,0.0,0.0 -310,19.0,1.1701715276035862,0.7,0.0,0.0,0.9830812445723992,-10.8187139085085,1.0,0.0,0.0 -310,20.0,9.308182605937615,11.2,0.0,0.0,0.9913699178018536,-10.556275709275148,1.0,0.0,0.0 -310,21.0,0.0,0.0,0.0,0.0,0.9913202681599018,-10.562501929859668,1.0,0.0,0.0 -310,22.0,1.7020676765143072,1.6,0.0,0.0,0.9709544403147392,-10.687609501353608,1.0,0.0,0.0 -310,23.0,4.627496495523272,6.7,0.0,0.0,0.975899503377113,-10.696191506532571,1.0,0.0,0.0 -310,24.0,0.0,0.0,0.0,0.0,0.9726068598515776,-10.43303079768478,1.0,0.0,0.0 -310,25.0,1.8616365211875232,2.3,0.0,0.0,0.9585472445410516,-10.508193957654028,1.0,0.0,0.0 -310,26.0,0.0,0.0,0.0,0.0,0.9776062583970692,-10.191189320921405,1.0,0.0,0.0 -310,27.0,0.0,0.0,0.0,0.0,0.9628394148639594,-7.978048664707848,1.0,0.0,0.0 -310,28.0,1.2765507573857304,0.9,0.0,0.0,0.963908422228296,-10.814655499237718,1.0,0.0,0.0 -310,29.0,5.638099178453642,1.9,0.0,0.0,0.9564625645137492,-11.284776705375863,1.0,0.0,0.0 -311,0.0,0.0,0.0,157.11001901408997,0.0016022141490878,1.0,0.0,0.0,0.0,1.0 -311,1.0,11.542146431362644,12.7,1.9160666699327708e-06,10.106498723133456,0.9806219326433836,-3.610727477045695,0.0,1.0,0.0 -311,2.0,1.2765507573857304,1.2,0.0,0.0,0.975060598359086,-4.699675835939775,1.0,0.0,0.0 -311,3.0,4.042410731721479,1.6,0.0,0.0,0.9686107399860808,-5.773947755150662,1.0,0.0,0.0 -311,4.0,50.10461722738992,19.0,3.275384400501813e-10,24.191141893170453,0.9611269042594284,-8.705555519043536,0.0,1.0,0.0 -311,5.0,0.0,0.0,0.0,0.0,0.9673206275426648,-6.945310213327993,1.0,0.0,0.0 -311,6.0,12.12723219516444,10.9,0.0,0.0,0.958355323228502,-7.931792773065968,1.0,0.0,0.0 -311,7.0,15.956884467321627,30.0,1.5210963871147406e-10,32.00541609996027,0.9669046656223648,-7.373023607082098,0.0,1.0,0.0 -311,8.0,0.0,0.0,0.0,0.0,1.0119099207188798,-9.030860151302509,1.0,0.0,0.0 -311,9.0,3.0849976636821816,2.0,0.0,0.0,0.9995826081712657,-10.122032100372625,1.0,0.0,0.0 -311,10.0,0.0,0.0,-5.60166221001741e-10,24.000286826288907,1.059047193636136,-9.0308601513648,0.0,1.0,0.0 -311,11.0,5.957236867800074,7.5,0.0,0.0,1.0173062118015088,-8.47316982450407,1.0,0.0,0.0 -311,12.0,0.0,0.0,3.69392645437002e-10,6.517204846557037,1.0261973735027288,-8.473169824475688,0.0,1.0,0.0 -311,13.0,3.29775612324647,1.6,0.0,0.0,1.0071757121343752,-8.9233493670157,1.0,0.0,0.0 -311,14.0,4.361548421067911,2.5,0.0,0.0,1.0046082499458937,-8.964992091200077,1.0,0.0,0.0 -311,15.0,1.8616365211875232,1.8,0.0,0.0,0.9864085688722852,-10.459066711456115,1.0,0.0,0.0 -311,16.0,4.787065340196489,5.8,0.0,0.0,0.9909102065014058,-10.304506681773082,1.0,0.0,0.0 -311,17.0,1.7020676765143072,0.9,0.0,0.0,0.9734925116382256,-11.101967111535222,1.0,0.0,0.0 -311,18.0,5.053013414651849,3.4,0.0,0.0,0.9758056361361902,-11.004016919103629,1.0,0.0,0.0 -311,19.0,1.1701715276035862,0.7,0.0,0.0,0.9811654484078396,-10.81662042954979,1.0,0.0,0.0 -311,20.0,9.308182605937615,11.2,0.0,0.0,0.98982284015658,-10.2118325952847,1.0,0.0,0.0 -311,21.0,0.0,0.0,0.0,0.0,0.9904668582076872,-10.18429197915536,1.0,0.0,0.0 -311,22.0,1.7020676765143072,1.6,0.0,0.0,0.9930342542371992,-9.461353867871994,1.0,0.0,0.0 -311,23.0,4.627496495523272,6.7,0.0,0.0,0.9843653729984913,-9.995659973466903,1.0,0.0,0.0 -311,24.0,0.0,0.0,0.0,0.0,0.978932598401728,-9.707496740833571,1.0,0.0,0.0 -311,25.0,1.8616365211875232,2.3,0.0,0.0,0.9649665232131835,-9.781677427362284,1.0,0.0,0.0 -311,26.0,0.0,0.0,0.0,0.0,0.9825477266117356,-9.453373028967247,1.0,0.0,0.0 -311,27.0,0.0,0.0,0.0,0.0,0.9653501936640156,-7.296202317904786,1.0,0.0,0.0 -311,28.0,1.2765507573857304,0.9,0.0,0.0,0.968922768685536,-10.070497792922314,1.0,0.0,0.0 -311,29.0,5.638099178453642,1.9,0.0,0.0,0.9615166448353104,-10.53573284694366,1.0,0.0,0.0 -312,0.0,0.0,0.0,156.9965793876602,0.0004313150901325,1.0,0.0,0.0,0.0,1.0 -312,1.0,11.542146431362644,12.7,4.988079179155105e-07,10.00794658079326,0.9807207485705164,-3.599585612563729,0.0,1.0,0.0 -312,2.0,1.2765507573857304,1.2,0.0,0.0,0.9748599703342292,-4.721270834814254,1.0,0.0,0.0 -312,3.0,4.042410731721479,1.6,0.0,0.0,0.9683664194072454,-5.800850276526333,1.0,0.0,0.0 -312,4.0,50.10461722738992,19.0,-5.903875668999195e-10,23.89342145927984,0.9612477505454692,-8.663981336832505,0.0,1.0,0.0 -312,5.0,0.0,0.0,0.0,0.0,0.968088172763258,-6.888156358474331,1.0,0.0,0.0 -312,6.0,12.12723219516444,10.9,0.0,0.0,0.9588653312620588,-7.881014588785547,1.0,0.0,0.0 -312,7.0,15.956884467321627,30.0,-4.97892088192618e-10,30.40795312884701,0.9670959837399852,-7.304434539095598,0.0,1.0,0.0 -312,8.0,0.0,0.0,0.0,0.0,1.0161793865404969,-8.648618780655442,1.0,0.0,0.0 -312,9.0,3.0849976636821816,2.0,0.0,0.0,1.0073249298442,-9.563390439120694,1.0,0.0,0.0 -312,10.0,0.0,0.0,-2.3678938075915953e-10,22.303278851775744,1.059946519285066,-8.64861878068164,0.0,1.0,0.0 -312,11.0,5.957236867800074,7.5,0.0,0.0,1.0140246827995103,-9.107036016774474,1.0,0.0,0.0 -312,12.0,0.0,0.0,-6.478086161065216e-10,9.54085873424,1.027030337780263,-9.107036016824372,0.0,1.0,0.0 -312,13.0,3.29775612324647,1.6,0.0,0.0,1.003155619538239,-9.559426385891507,1.0,0.0,0.0 -312,14.0,4.361548421067911,2.5,0.0,0.0,0.9999073881253407,-9.584537895694062,1.0,0.0,0.0 -312,15.0,1.8616365211875232,1.8,0.0,0.0,1.0050295659532362,-9.40354499277074,1.0,0.0,0.0 -312,16.0,4.787065340196489,5.8,0.0,0.0,1.0022840309774002,-9.603322985313516,1.0,0.0,0.0 -312,17.0,1.7020676765143072,0.9,0.0,0.0,0.993459661498217,-9.909448491044683,1.0,0.0,0.0 -312,18.0,5.053013414651849,3.4,0.0,0.0,0.9919085646704332,-10.00834259654876,1.0,0.0,0.0 -312,19.0,1.1701715276035862,0.7,0.0,0.0,0.9951511730422156,-9.927866488514246,1.0,0.0,0.0 -312,20.0,9.308182605937615,11.2,0.0,0.0,0.996855584791615,-9.728257408002168,1.0,0.0,0.0 -312,21.0,0.0,0.0,0.0,0.0,0.997238727507306,-9.725347467099995,1.0,0.0,0.0 -312,22.0,1.7020676765143072,1.6,0.0,0.0,0.991590366544494,-9.754854913890297,1.0,0.0,0.0 -312,23.0,4.627496495523272,6.7,0.0,0.0,0.9871499161526822,-9.842700526061464,1.0,0.0,0.0 -312,24.0,0.0,0.0,0.0,0.0,0.9808744597529584,-9.577744992875832,1.0,0.0,0.0 -312,25.0,1.8616365211875232,2.3,0.0,0.0,0.9669368464620848,-9.65162796323813,1.0,0.0,0.0 -312,26.0,0.0,0.0,0.0,0.0,0.9839588664483104,-9.339242108374275,1.0,0.0,0.0 -312,27.0,0.0,0.0,0.0,0.0,0.966095372526702,-7.232094353130531,1.0,0.0,0.0 -312,28.0,1.2765507573857304,0.9,0.0,0.0,0.9703545743626936,-9.954573793843428,1.0,0.0,0.0 -312,29.0,5.638099178453642,1.9,0.0,0.0,0.9629597173229538,-10.418427658812552,1.0,0.0,0.0 -313,0.0,0.0,0.0,160.85881463421967,0.0010605957634801,1.0,0.0,0.0,0.0,1.0 -313,1.0,11.542146431362644,12.7,2.98036672665662e-06,2.3380748931473505,0.9812478364158131,-3.3371710788085345,0.0,1.0,0.0 -313,2.0,1.2765507573857304,1.2,0.0,0.0,0.9733276585210292,-5.85586749389557,1.0,0.0,0.0 -313,3.0,4.042410731721479,1.6,0.0,0.0,0.9666891511611212,-7.210870921346881,1.0,0.0,0.0 -313,4.0,50.10461722738992,19.0,1.0477841546516251e-09,33.245725753414376,0.940002831365104,-16.41153829059525,0.0,1.0,0.0 -313,5.0,0.0,0.0,0.0,0.0,0.9658745387682932,-8.918555548042802,1.0,0.0,0.0 -313,6.0,12.12723219516444,10.9,0.0,0.0,0.9483612845826668,-12.22443446565437,1.0,0.0,0.0 -313,7.0,15.956884467321627,30.0,3.2773579323997556e-09,38.080402233105374,0.967773779509558,-9.382894764296356,0.0,1.0,0.0 -313,8.0,0.0,0.0,0.0,0.0,1.016099583022168,-10.55846936898837,1.0,0.0,0.0 -313,9.0,3.0849976636821816,2.0,0.0,0.0,1.0082800094621307,-11.407860441536304,1.0,0.0,0.0 -313,10.0,0.0,0.0,3.746347079157461e-09,22.37099646557677,1.0599974913005257,-10.558469368573844,0.0,1.0,0.0 -313,11.0,5.957236867800074,7.5,0.0,0.0,1.0204566517447111,-10.794426583817144,1.0,0.0,0.0 -313,12.0,0.0,0.0,2.2036812816211478e-09,14.745891570535376,1.04030114419193,-10.794426583650631,0.0,1.0,0.0 -313,13.0,3.29775612324647,1.6,0.0,0.0,1.0089924044916587,-11.269377838101075,1.0,0.0,0.0 -313,14.0,4.361548421067911,2.5,0.0,0.0,1.0049297703132507,-11.30704912639062,1.0,0.0,0.0 -313,15.0,1.8616365211875232,1.8,0.0,0.0,1.0090073201653684,-11.14552534477228,1.0,0.0,0.0 -313,16.0,4.787065340196489,5.8,0.0,0.0,1.0042278326102112,-11.419050873162703,1.0,0.0,0.0 -313,17.0,1.7020676765143072,0.9,0.0,0.0,0.9970693459527276,-11.671754709791376,1.0,0.0,0.0 -313,18.0,5.053013414651849,3.4,0.0,0.0,0.9946757134372488,-11.795356593381609,1.0,0.0,0.0 -313,19.0,1.1701715276035862,0.7,0.0,0.0,0.997461764858268,-11.728539175409107,1.0,0.0,0.0 -313,20.0,9.308182605937615,11.2,0.0,0.0,0.9979588949736417,-11.570093027792009,1.0,0.0,0.0 -313,21.0,0.0,0.0,0.0,0.0,0.9983853583158616,-11.56650612006604,1.0,0.0,0.0 -313,22.0,1.7020676765143072,1.6,0.0,0.0,0.995218521768359,-11.52440810264716,1.0,0.0,0.0 -313,23.0,4.627496495523272,6.7,0.0,0.0,0.9889066252681932,-11.678053145472182,1.0,0.0,0.0 -313,24.0,0.0,0.0,0.0,0.0,0.9811749078777348,-11.474587766924929,1.0,0.0,0.0 -313,25.0,1.8616365211875232,2.3,0.0,0.0,0.9672416877539572,-11.548424835527475,1.0,0.0,0.0 -313,26.0,0.0,0.0,0.0,0.0,0.9833726098022482,-11.276035918681274,1.0,0.0,0.0 -313,27.0,0.0,0.0,0.0,0.0,0.964711245153693,-9.26326473403484,1.0,0.0,0.0 -313,28.0,1.2765507573857304,0.9,0.0,0.0,0.969759739946044,-11.892111581870587,1.0,0.0,0.0 -313,29.0,5.638099178453642,1.9,0.0,0.0,0.9623602064124592,-12.35653850320337,1.0,0.0,0.0 -314,0.0,0.0,0.0,156.9965793876602,0.0004313150901325,1.0,0.0,0.0,0.0,1.0 -314,1.0,11.542146431362644,12.7,4.988079179155105e-07,10.00794658079326,0.9807207485705164,-3.599585612563729,0.0,1.0,0.0 -314,2.0,1.2765507573857304,1.2,0.0,0.0,0.9748599703342292,-4.721270834814254,1.0,0.0,0.0 -314,3.0,4.042410731721479,1.6,0.0,0.0,0.9683664194072454,-5.800850276526333,1.0,0.0,0.0 -314,4.0,50.10461722738992,19.0,-5.903875668999195e-10,23.89342145927984,0.9612477505454692,-8.663981336832505,0.0,1.0,0.0 -314,5.0,0.0,0.0,0.0,0.0,0.968088172763258,-6.888156358474331,1.0,0.0,0.0 -314,6.0,12.12723219516444,10.9,0.0,0.0,0.9588653312620588,-7.881014588785547,1.0,0.0,0.0 -314,7.0,15.956884467321627,30.0,-4.97892088192618e-10,30.40795312884701,0.9670959837399852,-7.304434539095598,0.0,1.0,0.0 -314,8.0,0.0,0.0,0.0,0.0,1.0161793865404969,-8.648618780655442,1.0,0.0,0.0 -314,9.0,3.0849976636821816,2.0,0.0,0.0,1.0073249298442,-9.563390439120694,1.0,0.0,0.0 -314,10.0,0.0,0.0,-2.3678938075915953e-10,22.303278851775744,1.059946519285066,-8.64861878068164,0.0,1.0,0.0 -314,11.0,5.957236867800074,7.5,0.0,0.0,1.0140246827995103,-9.107036016774474,1.0,0.0,0.0 -314,12.0,0.0,0.0,-6.478086161065216e-10,9.54085873424,1.027030337780263,-9.107036016824372,0.0,1.0,0.0 -314,13.0,3.29775612324647,1.6,0.0,0.0,1.003155619538239,-9.559426385891507,1.0,0.0,0.0 -314,14.0,4.361548421067911,2.5,0.0,0.0,0.9999073881253407,-9.584537895694062,1.0,0.0,0.0 -314,15.0,1.8616365211875232,1.8,0.0,0.0,1.0050295659532362,-9.40354499277074,1.0,0.0,0.0 -314,16.0,4.787065340196489,5.8,0.0,0.0,1.0022840309774002,-9.603322985313516,1.0,0.0,0.0 -314,17.0,1.7020676765143072,0.9,0.0,0.0,0.993459661498217,-9.909448491044683,1.0,0.0,0.0 -314,18.0,5.053013414651849,3.4,0.0,0.0,0.9919085646704332,-10.00834259654876,1.0,0.0,0.0 -314,19.0,1.1701715276035862,0.7,0.0,0.0,0.9951511730422156,-9.927866488514246,1.0,0.0,0.0 -314,20.0,9.308182605937615,11.2,0.0,0.0,0.996855584791615,-9.728257408002168,1.0,0.0,0.0 -314,21.0,0.0,0.0,0.0,0.0,0.997238727507306,-9.725347467099995,1.0,0.0,0.0 -314,22.0,1.7020676765143072,1.6,0.0,0.0,0.991590366544494,-9.754854913890297,1.0,0.0,0.0 -314,23.0,4.627496495523272,6.7,0.0,0.0,0.9871499161526822,-9.842700526061464,1.0,0.0,0.0 -314,24.0,0.0,0.0,0.0,0.0,0.9808744597529584,-9.577744992875832,1.0,0.0,0.0 -314,25.0,1.8616365211875232,2.3,0.0,0.0,0.9669368464620848,-9.65162796323813,1.0,0.0,0.0 -314,26.0,0.0,0.0,0.0,0.0,0.9839588664483104,-9.339242108374275,1.0,0.0,0.0 -314,27.0,0.0,0.0,0.0,0.0,0.966095372526702,-7.232094353130531,1.0,0.0,0.0 -314,28.0,1.2765507573857304,0.9,0.0,0.0,0.9703545743626936,-9.954573793843428,1.0,0.0,0.0 -314,29.0,5.638099178453642,1.9,0.0,0.0,0.9629597173229538,-10.418427658812552,1.0,0.0,0.0 -315,0.0,0.0,0.0,158.29863938768872,0.0016532726625051,1.0,0.0,0.0,0.0,1.0 -315,1.0,11.542146431362644,12.7,3.2518813349306126e-06,-5.171604274431999,0.978881017708782,-4.033666998690621,0.0,1.0,0.0 -315,2.0,1.2765507573857304,1.2,0.0,0.0,0.978331895193001,-3.6028146410999566,1.0,0.0,0.0 -315,3.0,4.042410731721479,1.6,0.0,0.0,0.9725485943825348,-4.411508376259002,1.0,0.0,0.0 -315,4.0,50.10461722738992,19.0,-1.8417644031956006e-09,29.075453597798344,0.9714348380435888,-10.341574469934155,0.0,1.0,0.0 -315,5.0,0.0,0.0,0.0,0.0,0.9788391060551006,-9.79802105374095,1.0,0.0,0.0 -315,6.0,12.12723219516444,10.9,0.0,0.0,0.9692656481813866,-10.284624059357691,1.0,0.0,0.0 -315,7.0,15.956884467321627,30.0,-1.3281802614413291e-09,39.91846377130318,0.9813748069916448,-10.252614002894177,0.0,1.0,0.0 -315,8.0,0.0,0.0,0.0,0.0,1.023715219304293,-10.766217059760969,1.0,0.0,0.0 -315,9.0,3.0849976636821816,2.0,0.0,0.0,1.0167394492235773,-11.27022844995803,1.0,0.0,0.0 -315,10.0,0.0,0.0,-4.510200252388753e-09,18.48089030655314,1.0599802824147675,-10.766217060256306,0.0,1.0,0.0 -315,11.0,5.957236867800074,7.5,0.0,0.0,1.0359225644293215,-9.35652618093967,1.0,0.0,0.0 -315,12.0,0.0,0.0,-2.597360175922673e-09,18.213858117781207,1.059979078267843,-9.356526181129407,0.0,1.0,0.0 -315,13.0,3.29775612324647,1.6,0.0,0.0,1.0241710105828905,-9.991692475458278,1.0,0.0,0.0 -315,14.0,4.361548421067911,2.5,0.0,0.0,1.0185098487749222,-10.190853146793398,1.0,0.0,0.0 -315,15.0,1.8616365211875232,1.8,0.0,0.0,1.0205361431731397,-10.24379593073562,1.0,0.0,0.0 -315,16.0,4.787065340196489,5.8,0.0,0.0,1.0139470831120097,-11.044233623828184,1.0,0.0,0.0 -315,17.0,1.7020676765143072,0.9,0.0,0.0,1.0088289825598948,-10.889259664431078,1.0,0.0,0.0 -315,18.0,5.053013414651849,3.4,0.0,0.0,1.0053677948413982,-11.21554620020627,1.0,0.0,0.0 -315,19.0,1.1701715276035862,0.7,0.0,0.0,1.007546450876028,-11.258448544908582,1.0,0.0,0.0 -315,20.0,9.308182605937615,11.2,0.0,0.0,1.0068024585002189,-11.4040373934558,1.0,0.0,0.0 -315,21.0,0.0,0.0,0.0,0.0,1.0073213947178732,-11.39238461726652,1.0,0.0,0.0 -315,22.0,1.7020676765143072,1.6,0.0,0.0,1.0074476886399704,-10.76196531281246,1.0,0.0,0.0 -315,23.0,4.627496495523272,6.7,0.0,0.0,0.9994127758390796,-11.400859777028554,1.0,0.0,0.0 -315,24.0,0.0,0.0,0.0,0.0,0.991034085517812,-11.618844642143154,1.0,0.0,0.0 -315,25.0,1.8616365211875232,2.3,0.0,0.0,0.9772434839552926,-11.69119896937818,1.0,0.0,0.0 -315,26.0,0.0,0.0,0.0,0.0,0.9929239856428606,-11.685818342643357,1.0,0.0,0.0 -315,27.0,0.0,0.0,0.0,0.0,0.97764520565837,-10.082543745312408,1.0,0.0,0.0 -315,28.0,1.2765507573857304,0.9,0.0,0.0,0.9638122838804376,-13.036753024711132,1.0,0.0,0.0 -315,29.0,5.638099178453642,1.9,0.0,0.0,0.9400017976547096,-14.364903696813814,1.0,0.0,0.0 -316,0.0,0.0,0.0,157.02268681076202,0.0016864162946106,1.0,0.0,0.0,0.0,1.0 -316,1.0,11.542146431362644,12.7,1.5643338205474495e-06,13.728287128324546,0.981342499088212,-3.615206988018469,0.0,1.0,0.0 -316,2.0,1.2765507573857304,1.2,0.0,0.0,0.9730417268540978,-4.687175693780594,1.0,0.0,0.0 -316,3.0,4.042410731721479,1.6,0.0,0.0,0.966121273517806,-5.759273159875668,1.0,0.0,0.0 -316,4.0,50.10461722738992,19.0,3.8277621787489237e-10,24.51051467233945,0.961664976476932,-8.683100275084277,0.0,1.0,0.0 -316,5.0,0.0,0.0,0.0,0.0,0.9670198644796708,-6.885551185632608,1.0,0.0,0.0 -316,6.0,12.12723219516444,10.9,0.0,0.0,0.9584025825212248,-7.886817668141409,1.0,0.0,0.0 -316,7.0,15.956884467321627,30.0,7.252026391234659e-10,34.81304430603208,0.9676044857352448,-7.330688902894055,0.0,1.0,0.0 -316,8.0,0.0,0.0,0.0,0.0,1.0124413327763806,-8.692394964047919,1.0,0.0,0.0 -316,9.0,3.0849976636821816,2.0,0.0,0.0,1.0004962875776096,-9.636626904583377,1.0,0.0,0.0 -316,10.0,0.0,0.0,2.079738003394512e-09,23.94141272686467,1.059445305707863,-8.692394963816849,0.0,1.0,0.0 -316,11.0,5.957236867800074,7.5,0.0,0.0,0.9976787235386384,-9.021735579943504,1.0,0.0,0.0 -316,12.0,0.0,0.0,0.0,0.0,0.9976787235386384,-9.021735579943504,0.0,1.0,0.0 -316,13.0,3.29775612324647,1.6,0.0,0.0,0.987933226498861,-9.493224714006194,1.0,0.0,0.0 -316,14.0,4.361548421067911,2.5,0.0,0.0,0.9858589947578744,-9.55339561131298,1.0,0.0,0.0 -316,15.0,1.8616365211875232,1.8,0.0,0.0,0.9926251437711966,-9.409903245196956,1.0,0.0,0.0 -316,16.0,4.787065340196489,5.8,0.0,0.0,0.9937021366350612,-9.650695347312483,1.0,0.0,0.0 -316,17.0,1.7020676765143072,0.9,0.0,0.0,0.9818435273416084,-9.924101405667171,1.0,0.0,0.0 -316,18.0,5.053013414651849,3.4,0.0,0.0,0.9817617497043092,-10.047602774994044,1.0,0.0,0.0 -316,19.0,1.1701715276035862,0.7,0.0,0.0,0.9858205990336584,-9.977492038506847,1.0,0.0,0.0 -316,20.0,9.308182605937615,11.2,0.0,0.0,0.9897129014997734,-9.798987504924169,1.0,0.0,0.0 -316,21.0,0.0,0.0,0.0,0.0,0.9900234249632694,-9.794385253006514,1.0,0.0,0.0 -316,22.0,1.7020676765143072,1.6,0.0,0.0,0.979990406851648,-9.757240125567652,1.0,0.0,0.0 -316,23.0,4.627496495523272,6.7,0.0,0.0,0.9789002250142544,-9.88490506171833,1.0,0.0,0.0 -316,24.0,0.0,0.0,0.0,0.0,0.9752823844726968,-9.641833428168711,1.0,0.0,0.0 -316,25.0,1.8616365211875232,2.3,0.0,0.0,0.9612624874828088,-9.716578662118906,1.0,0.0,0.0 -316,26.0,0.0,0.0,0.0,0.0,0.9800656689497392,-9.41322857834565,1.0,0.0,0.0 -316,27.0,0.0,0.0,0.0,0.0,0.9650135084213354,-7.237352117084099,1.0,0.0,0.0 -316,28.0,1.2765507573857304,0.9,0.0,0.0,0.9664042047984156,-10.03352636290223,1.0,0.0,0.0 -316,29.0,5.638099178453642,1.9,0.0,0.0,0.9589781776969568,-10.50120599707094,1.0,0.0,0.0 -317,0.0,0.0,0.0,87.01744147133688,2.0278453582989187e-06,1.0,0.0,0.0,0.0,1.0 -317,1.0,11.542146431362644,12.7,68.48361496921378,28.83060338270785,0.9934190777504068,-1.7093457549185294,0.0,1.0,0.0 -317,2.0,1.2765507573857304,1.2,0.0,0.0,0.969802862572694,-3.3664301913764234,1.0,0.0,0.0 -317,3.0,4.042410731721479,1.6,0.0,0.0,0.9620321696290448,-4.11827804486926,1.0,0.0,0.0 -317,4.0,50.10461722738992,19.0,1.2150593308513057e-08,39.99999571697755,0.978643541964574,-7.054682692710526,0.0,1.0,0.0 -317,5.0,0.0,0.0,0.0,0.0,0.9569866843848877,-5.057099309277513,1.0,0.0,0.0 -317,6.0,12.12723219516444,10.9,0.0,0.0,0.9594412547031524,-6.128511239175355,1.0,0.0,0.0 -317,7.0,15.956884467321627,30.0,0.0,0.0,0.9441195477113432,-5.290470684681893,0.0,1.0,0.0 -317,8.0,0.0,0.0,0.0,0.0,1.0008919803171896,-7.07251381203057,1.0,0.0,0.0 -317,9.0,3.0849976636821816,2.0,0.0,0.0,0.9880354695896189,-8.12792872682497,1.0,0.0,0.0 -317,10.0,0.0,0.0,2.630990645852156e-08,23.999998454594863,1.048502726137064,-7.07251380904279,0.0,1.0,0.0 -317,11.0,5.957236867800074,7.5,0.0,0.0,0.9956239355708352,-6.954121594157126,1.0,0.0,0.0 -317,12.0,0.0,0.0,0.0,0.0,0.9956239355708352,-6.954121594157126,0.0,1.0,0.0 -317,13.0,3.29775612324647,1.6,0.0,0.0,0.9879972002235488,-7.267814006459428,1.0,0.0,0.0 -317,14.0,4.361548421067911,2.5,0.0,0.0,0.9890551070048804,-7.220829243220031,1.0,0.0,0.0 -317,15.0,1.8616365211875232,1.8,0.0,0.0,0.9856427458612358,-7.560220881016139,1.0,0.0,0.0 -317,16.0,4.787065340196489,5.8,0.0,0.0,0.983018545143159,-8.044329561422428,1.0,0.0,0.0 -317,17.0,1.7020676765143072,0.9,0.0,0.0,0.9616218603964114,-9.131560470248916,1.0,0.0,0.0 -317,18.0,5.053013414651849,3.4,0.0,0.0,0.9639635748121058,-9.031182994892196,1.0,0.0,0.0 -317,19.0,1.1701715276035862,0.7,0.0,0.0,0.9693894721291472,-8.839179980691156,1.0,0.0,0.0 -317,20.0,9.308182605937615,11.2,0.0,0.0,0.970347169135936,-8.42259673122357,1.0,0.0,0.0 -317,21.0,0.0,0.0,0.0,0.0,0.9685221323652176,-8.456277408086772,1.0,0.0,0.0 -317,22.0,1.7020676765143072,1.6,0.0,0.0,0.9463900958209044,-8.788429207067292,1.0,0.0,0.0 -317,23.0,4.627496495523272,6.7,0.0,0.0,0.9533324208411847,-8.630709040168497,1.0,0.0,0.0 -317,24.0,0.0,0.0,0.0,0.0,0.9543370630783842,-8.238264883570242,1.0,0.0,0.0 -317,25.0,1.8616365211875232,2.3,0.0,0.0,0.9400000025193328,-8.316378390125179,1.0,0.0,0.0 -317,26.0,0.0,0.0,0.0,0.0,0.9621110164982718,-7.90922152427329,1.0,0.0,0.0 -317,27.0,0.0,0.0,0.0,0.0,0.9512205890167704,-5.395478512157259,1.0,0.0,0.0 -317,28.0,1.2765507573857304,0.9,0.0,0.0,0.9481793611213292,-8.55322287964899,1.0,0.0,0.0 -317,29.0,5.638099178453642,1.9,0.0,0.0,0.9406060085086828,-9.03918205371946,1.0,0.0,0.0 -318,0.0,0.0,0.0,157.12898732719032,0.0004910689463955,1.0,0.0,0.0,0.0,1.0 -318,1.0,11.542146431362644,12.7,6.519860347794352e-07,8.476454101154161,0.9805295598679904,-3.592365135007707,0.0,1.0,0.0 -318,2.0,1.2765507573857304,1.2,0.0,0.0,0.9753831317378692,-4.752444270794127,1.0,0.0,0.0 -318,3.0,4.042410731721479,1.6,0.0,0.0,0.9690153681275268,-5.839333070326461,1.0,0.0,0.0 -318,4.0,50.10461722738992,19.0,-7.879208188747206e-10,23.73287222818979,0.96138438647726,-8.645515075900393,0.0,1.0,0.0 -318,5.0,0.0,0.0,0.0,0.0,0.9688876342217748,-6.869005874657374,1.0,0.0,0.0 -318,6.0,12.12723219516444,10.9,0.0,0.0,0.959398947898794,-7.862171202493362,1.0,0.0,0.0 -318,7.0,15.956884467321627,30.0,-5.720655579327346e-10,29.49738751138308,0.9674159631340664,-7.283881359683467,0.0,1.0,0.0 -318,8.0,0.0,0.0,0.0,0.0,1.0187135529001832,-8.335682734143145,1.0,0.0,0.0 -318,9.0,3.0849976636821816,2.0,0.0,0.0,1.0174823976525822,-9.090838575214976,1.0,0.0,0.0 -318,10.0,0.0,0.0,-2.1316882862705452e-10,15.56714268001472,1.049564127834779,-8.335682734166905,0.0,1.0,0.0 -318,11.0,5.957236867800074,7.5,0.0,0.0,1.0180493094278515,-9.497781494497952,1.0,0.0,0.0 -318,12.0,0.0,0.0,-4.36705652867875e-10,18.86636160633056,1.0433644392663155,-9.49778149453093,0.0,1.0,0.0 -318,13.0,3.29775612324647,1.6,0.0,0.0,1.0059725264659305,-9.918651330556266,1.0,0.0,0.0 -318,14.0,4.361548421067911,2.5,0.0,0.0,1.0017276860465123,-9.8873802080942,1.0,0.0,0.0 -318,15.0,1.8616365211875232,1.8,0.0,0.0,0.996314393952524,-9.83577993457532,1.0,0.0,0.0 -318,16.0,4.787065340196489,5.8,0.0,0.0,0.9823878716029136,-10.19675120302651,1.0,0.0,0.0 -318,17.0,1.7020676765143072,0.9,0.0,0.0,0.9983068150416752,-9.93617446282546,1.0,0.0,0.0 -318,18.0,5.053013414651849,3.4,0.0,0.0,0.9985348971342918,-9.871489957763965,1.0,0.0,0.0 -318,19.0,1.1701715276035862,0.7,0.0,0.0,1.0026981825571393,-9.707074510626162,1.0,0.0,0.0 -318,20.0,9.308182605937615,11.2,0.0,0.0,1.0094028667965778,-9.208564976836405,1.0,0.0,0.0 -318,21.0,0.0,0.0,0.0,0.0,1.0105053535399695,-9.192689705710842,1.0,0.0,0.0 -318,22.0,1.7020676765143072,1.6,0.0,0.0,0.9861534636994476,-10.15694225980177,1.0,0.0,0.0 -318,23.0,4.627496495523272,6.7,0.0,0.0,0.972100006078054,-10.384947564947328,1.0,0.0,0.0 -318,24.0,0.0,0.0,0.0,0.0,0.9720113357650731,-9.98573351309717,1.0,0.0,0.0 -318,25.0,1.8616365211875232,2.3,0.0,0.0,0.9579428487937214,-10.060990177944046,1.0,0.0,0.0 -318,26.0,0.0,0.0,0.0,0.0,0.9789658553945582,-9.656573626820713,1.0,0.0,0.0 -318,27.0,0.0,0.0,0.0,0.0,0.965991605803616,-7.238515448998336,1.0,0.0,0.0 -318,28.0,1.2765507573857304,0.9,0.0,0.0,0.9652881507829018,-10.27828526486855,1.0,0.0,0.0 -318,29.0,5.638099178453642,1.9,0.0,0.0,0.9578532691879224,-10.747054348961322,1.0,0.0,0.0 -319,0.0,0.0,0.0,159.33464724821533,0.0015353489285274,1.0,0.0,0.0,0.0,1.0 -319,1.0,11.542146431362644,12.7,0.0,0.0,0.9791322686023584,-3.484293258519931,0.0,1.0,0.0 -319,2.0,1.2765507573857304,1.2,0.0,0.0,0.979062410186866,-5.256820735580412,1.0,0.0,0.0 -319,3.0,4.042410731721479,1.6,0.0,0.0,0.973630243553935,-6.463401577283595,1.0,0.0,0.0 -319,4.0,50.10461722738992,19.0,2.975992616167525e-09,38.39433929578056,0.9640049451352042,-11.358445500740777,0.0,1.0,0.0 -319,5.0,0.0,0.0,0.0,0.0,0.969354956027236,-8.389790378815396,1.0,0.0,0.0 -319,6.0,12.12723219516444,10.9,0.0,0.0,0.9458053076091056,-11.953766550076086,1.0,0.0,0.0 -319,7.0,15.956884467321627,30.0,2.8910762456432674e-09,31.826985799621127,0.9683262049227992,-8.815354230737224,0.0,1.0,0.0 -319,8.0,0.0,0.0,0.0,0.0,1.0162413632186404,-11.628154269271368,1.0,0.0,0.0 -319,9.0,3.0849976636821816,2.0,0.0,0.0,1.0076464675363226,-13.312076629036357,1.0,0.0,0.0 -319,10.0,0.0,0.0,3.3805060158194366e-09,22.28944527997572,1.0599799691650065,-11.628154268897369,0.0,1.0,0.0 -319,11.0,5.957236867800074,7.5,0.0,0.0,0.980843282819321,-17.396365010339654,1.0,0.0,0.0 -319,12.0,0.0,0.0,7.858739268072779e-10,22.86990927436396,1.012466907020848,-17.39636501027617,0.0,1.0,0.0 -319,13.0,3.29775612324647,1.6,0.0,0.0,0.9687051870327508,-17.600782316693895,1.0,0.0,0.0 -319,14.0,4.361548421067911,2.5,0.0,0.0,0.9663691459009606,-17.330432614468616,1.0,0.0,0.0 -319,15.0,1.8616365211875232,1.8,0.0,0.0,0.9884959989883844,-15.78491759689553,1.0,0.0,0.0 -319,16.0,4.787065340196489,5.8,0.0,0.0,0.9961408052705428,-14.142692176556215,1.0,0.0,0.0 -319,17.0,1.7020676765143072,0.9,0.0,0.0,0.9486094752157008,-17.964611189982243,1.0,0.0,0.0 -319,18.0,5.053013414651849,3.4,0.0,0.0,0.9404942643762418,-18.24435338881346,1.0,0.0,0.0 -319,19.0,1.1701715276035862,0.7,0.0,0.0,1.00509959237362,-13.413367389584485,1.0,0.0,0.0 -319,20.0,9.308182605937615,11.2,0.0,0.0,0.9954641221840834,-13.62775185428838,1.0,0.0,0.0 -319,21.0,0.0,0.0,0.0,0.0,0.9952925389572304,-13.672699295442344,1.0,0.0,0.0 -319,22.0,1.7020676765143072,1.6,0.0,0.0,0.96761865074496,-16.129274659128892,1.0,0.0,0.0 -319,23.0,4.627496495523272,6.7,0.0,0.0,0.9766685931567788,-14.393297954243817,1.0,0.0,0.0 -319,24.0,0.0,0.0,0.0,0.0,0.977110493896104,-13.0594274350869,1.0,0.0,0.0 -319,25.0,1.8616365211875232,2.3,0.0,0.0,0.9631176045914146,-13.133889123585602,1.0,0.0,0.0 -319,26.0,0.0,0.0,0.0,0.0,0.9842395448816584,-12.154724309337404,1.0,0.0,0.0 -319,27.0,0.0,0.0,0.0,0.0,0.9649876272954772,-8.878448152865952,1.0,0.0,0.0 -319,28.0,1.2765507573857304,0.9,0.0,0.0,0.9775397682127596,-12.35263069049282,1.0,0.0,0.0 -319,29.0,5.638099178453642,1.9,0.0,0.0,0.9528391708903589,-13.859330890462598,1.0,0.0,0.0 -320,0.0,0.0,0.0,157.23226965272264,0.0294613334562932,1.0,0.0,0.0,0.0,1.0 -320,1.0,11.542146431362644,12.7,3.4989974552153285e-06,23.17433048940268,0.9820886318915606,-3.634041767679913,0.0,1.0,0.0 -320,2.0,1.2765507573857304,1.2,0.0,0.0,0.9707594390355432,-4.662981154794277,1.0,0.0,0.0 -320,3.0,4.042410731721479,1.6,0.0,0.0,0.963305691991212,-5.730160025799944,1.0,0.0,0.0 -320,4.0,50.10461722738992,19.0,7.0959305934225895e-09,28.400950805190234,0.9612629707403164,-8.710487586915118,0.0,1.0,0.0 -320,5.0,0.0,0.0,0.0,0.0,0.9576009356443628,-6.717317386804493,1.0,0.0,0.0 -320,6.0,12.12723219516444,10.9,0.0,0.0,0.9526382699456332,-7.797596358462701,1.0,0.0,0.0 -320,7.0,15.956884467321627,30.0,0.0,0.0,0.9450449055619256,-6.945167669784019,0.0,1.0,0.0 -320,8.0,0.0,0.0,0.0,0.0,1.0131930067350314,-8.474503782827133,1.0,0.0,0.0 -320,9.0,3.0849976636821816,2.0,0.0,0.0,1.0068165592368734,-9.3781375707818,1.0,0.0,0.0 -320,10.0,0.0,0.0,6.572488318577113e-09,23.85273443440383,1.0599984412460828,-8.474503782097814,0.0,1.0,0.0 -320,11.0,5.957236867800074,7.5,0.0,0.0,1.0256055615198176,-9.133846628556835,1.0,0.0,0.0 -320,12.0,0.0,0.0,6.964551977212659e-09,22.354835488123832,1.0552633430485128,-9.133846628040653,0.0,1.0,0.0 -320,13.0,3.29775612324647,1.6,0.0,0.0,1.0131236731986288,-9.567846784369008,1.0,0.0,0.0 -320,14.0,4.361548421067911,2.5,0.0,0.0,1.0082985203110717,-9.544945050979155,1.0,0.0,0.0 -320,15.0,1.8616365211875232,1.8,0.0,0.0,1.0115586341284806,-9.31293291186243,1.0,0.0,0.0 -320,16.0,4.787065340196489,5.8,0.0,0.0,1.0039427101678695,-9.455744646690857,1.0,0.0,0.0 -320,17.0,1.7020676765143072,0.9,0.0,0.0,0.998768619459145,-9.814091430229205,1.0,0.0,0.0 -320,18.0,5.053013414651849,3.4,0.0,0.0,0.995378279147953,-9.881018390206156,1.0,0.0,0.0 -320,19.0,1.1701715276035862,0.7,0.0,0.0,0.9976378905706615,-9.784358370710866,1.0,0.0,0.0 -320,20.0,9.308182605937615,11.2,0.0,0.0,0.9964668830365698,-9.54799206268375,1.0,0.0,0.0 -320,21.0,0.0,0.0,0.0,0.0,0.9968890552409936,-9.546685674159958,1.0,0.0,0.0 -320,22.0,1.7020676765143072,1.6,0.0,0.0,0.9964562705535454,-9.665240847152512,1.0,0.0,0.0 -320,23.0,4.627496495523272,6.7,0.0,0.0,0.9872734249372772,-9.6889528392355,1.0,0.0,0.0 -320,24.0,0.0,0.0,0.0,0.0,0.9759982637572048,-9.36048168346536,1.0,0.0,0.0 -320,25.0,1.8616365211875232,2.3,0.0,0.0,0.961988955447235,-9.435115688810145,1.0,0.0,0.0 -320,26.0,0.0,0.0,0.0,0.0,0.9759968403113556,-9.086561385046268,1.0,0.0,0.0 -320,27.0,0.0,0.0,0.0,0.0,0.953572880131938,-7.027373451255576,1.0,0.0,0.0 -320,28.0,1.2765507573857304,0.9,0.0,0.0,0.9622750946174348,-9.712114161386957,1.0,0.0,0.0 -320,29.0,5.638099178453642,1.9,0.0,0.0,0.9548162007512504,-10.183843608973431,1.0,0.0,0.0 -321,0.0,0.0,0.0,157.2676865731529,0.0115937928892861,1.0,0.0,0.0,0.0,1.0 -321,1.0,11.542146431362644,12.7,1.205608632654853e-05,10.509432061245732,0.9807370781070872,-3.611977459597419,0.0,1.0,0.0 -321,2.0,1.2765507573857304,1.2,0.0,0.0,0.9746652127984056,-4.712968101318489,1.0,0.0,0.0 -321,3.0,4.042410731721479,1.6,0.0,0.0,0.9681253017768936,-5.790622770653431,1.0,0.0,0.0 -321,4.0,50.10461722738992,19.0,9.587472017002092e-09,24.313207916104943,0.9614007878005408,-8.698032505322173,0.0,1.0,0.0 -321,5.0,0.0,0.0,0.0,0.0,0.9675020815985989,-6.927013167062912,1.0,0.0,0.0 -321,6.0,12.12723219516444,10.9,0.0,0.0,0.9585780017837916,-7.917725377493379,1.0,0.0,0.0 -321,7.0,15.956884467321627,30.0,4.0819192524290304e-09,32.990468629296124,0.967372391149856,-7.362642154674808,0.0,1.0,0.0 -321,8.0,0.0,0.0,0.0,0.0,1.0129600028801875,-8.820022483372622,1.0,0.0,0.0 -321,9.0,3.0849976636821816,2.0,0.0,0.0,1.0011537828116082,-9.809115003603624,1.0,0.0,0.0 -321,10.0,0.0,0.0,-1.173010873421954e-08,23.866157110705625,1.0598005221593467,-8.820022484674801,0.0,1.0,0.0 -321,11.0,5.957236867800074,7.5,0.0,0.0,1.01331322813507,-8.794038985103203,1.0,0.0,0.0 -321,12.0,0.0,0.0,9.839914234146861e-09,5.4000481166440295,1.0207198319130453,-8.794038984340084,0.0,1.0,0.0 -321,13.0,3.29775612324647,1.6,0.0,0.0,0.9912316804254624,-9.872109944353614,1.0,0.0,0.0 -321,14.0,4.361548421067911,2.5,0.0,0.0,0.9730029630084608,-10.269836430515612,1.0,0.0,0.0 -321,15.0,1.8616365211875232,1.8,0.0,0.0,1.001550997948936,-9.3182754535584,1.0,0.0,0.0 -321,16.0,4.787065340196489,5.8,0.0,0.0,0.9970466886452102,-9.74995671725684,1.0,0.0,0.0 -321,17.0,1.7020676765143072,0.9,0.0,0.0,0.9737173533855789,-10.454642188549135,1.0,0.0,0.0 -321,18.0,5.053013414651849,3.4,0.0,0.0,0.9764492992858084,-10.465891385144598,1.0,0.0,0.0 -321,19.0,1.1701715276035862,0.7,0.0,0.0,0.9820195840243898,-10.33590208237318,1.0,0.0,0.0 -321,20.0,9.308182605937615,11.2,0.0,0.0,0.9896668025107824,-9.99894807381578,1.0,0.0,0.0 -321,21.0,0.0,0.0,0.0,0.0,0.989750638248258,-10.002938968839342,1.0,0.0,0.0 -321,22.0,1.7020676765143072,1.6,0.0,0.0,0.9711296572401844,-10.299887225719562,1.0,0.0,0.0 -321,23.0,4.627496495523272,6.7,0.0,0.0,0.9753991519028312,-10.190360137704946,1.0,0.0,0.0 -321,24.0,0.0,0.0,0.0,0.0,0.9734439771728024,-9.867069534137087,1.0,0.0,0.0 -321,25.0,1.8616365211875232,2.3,0.0,0.0,0.9593968134678909,-9.942101557587954,1.0,0.0,0.0 -321,26.0,0.0,0.0,0.0,0.0,0.9792495076974612,-9.586786905545765,1.0,0.0,0.0 -321,27.0,0.0,0.0,0.0,0.0,0.9651362922052116,-7.28921403326737,1.0,0.0,0.0 -321,28.0,1.2765507573857304,0.9,0.0,0.0,0.9655759954519656,-10.208133432858087,1.0,0.0,0.0 -321,29.0,5.638099178453642,1.9,0.0,0.0,0.9581433995956204,-10.676621168928364,1.0,0.0,0.0 -322,0.0,0.0,0.0,157.4725623105906,0.001830952140569,1.0,0.0,0.0,0.0,1.0 -322,1.0,11.542146431362644,12.7,1.2936965312384665e-06,10.444219357380916,0.9826089902794524,-3.312503731728613,0.0,1.0,0.0 -322,2.0,1.2765507573857304,1.2,0.0,0.0,0.970578896510247,-5.610807924909746,1.0,0.0,0.0 -322,3.0,4.042410731721479,1.6,0.0,0.0,0.9632468177817776,-6.908445094623199,1.0,0.0,0.0 -322,4.0,50.10461722738992,19.0,1.0027658313417383e-09,25.18323946729436,0.9629000322473776,-8.858171929428172,0.0,1.0,0.0 -322,5.0,0.0,0.0,0.0,0.0,0.966387313851345,-7.55000651470716,1.0,0.0,0.0 -322,6.0,12.12723219516444,10.9,0.0,0.0,0.9584628096011912,-8.350851337465784,1.0,0.0,0.0 -322,7.0,15.956884467321627,30.0,1.4487680110960796e-09,34.427608430608736,0.9667567640322356,-8.006374263662407,0.0,1.0,0.0 -322,8.0,0.0,0.0,0.0,0.0,1.0240602801490644,-7.550006514499044,1.0,0.0,0.0 -322,9.0,3.0849976636821816,2.0,0.0,0.0,0.9830997838746418,-12.21954956856336,1.0,0.0,0.0 -322,10.0,0.0,0.0,1.7670922571295603e-09,18.31252176233504,1.0599944724999213,-7.550006514305034,0.0,1.0,0.0 -322,11.0,5.957236867800074,7.5,0.0,0.0,1.008494149599562,-11.136283974516136,1.0,0.0,0.0 -322,12.0,0.0,0.0,1.643050277224996e-09,15.415370984193778,1.0294581103102765,-11.136283974389189,0.0,1.0,0.0 -322,13.0,3.29775612324647,1.6,0.0,0.0,0.995711944900284,-11.6649149180031,1.0,0.0,0.0 -322,14.0,4.361548421067911,2.5,0.0,0.0,0.990180585744122,-11.718277908754288,1.0,0.0,0.0 -322,15.0,1.8616365211875232,1.8,0.0,0.0,0.9909034875256854,-11.660982106668108,1.0,0.0,0.0 -322,16.0,4.787065340196489,5.8,0.0,0.0,0.9812520806736772,-12.15064508645733,1.0,0.0,0.0 -322,17.0,1.7020676765143072,0.9,0.0,0.0,0.9784243288896244,-12.233136281100617,1.0,0.0,0.0 -322,18.0,5.053013414651849,3.4,0.0,0.0,0.9737786267656814,-12.44431699096301,1.0,0.0,0.0 -322,19.0,1.1701715276035862,0.7,0.0,0.0,0.9754621457542858,-12.41788813216615,1.0,0.0,0.0 -322,20.0,9.308182605937615,11.2,0.0,0.0,0.973762470477584,-12.30992796056461,1.0,0.0,0.0 -322,21.0,0.0,0.0,0.0,0.0,0.9746031211644371,-12.280935133441115,1.0,0.0,0.0 -322,22.0,1.7020676765143072,1.6,0.0,0.0,0.979021056602024,-11.939695702288242,1.0,0.0,0.0 -322,23.0,4.627496495523272,6.7,0.0,0.0,0.9708875884687596,-12.095437608438989,1.0,0.0,0.0 -322,24.0,0.0,0.0,0.0,0.0,0.9715821975947287,-11.319884959920731,1.0,0.0,0.0 -322,25.0,1.8616365211875232,2.3,0.0,0.0,0.95750731058697,-11.395209112022084,1.0,0.0,0.0 -322,26.0,0.0,0.0,0.0,0.0,0.978948883642842,-10.758203353029389,1.0,0.0,0.0 -322,27.0,0.0,0.0,0.0,0.0,0.9639143549713122,-7.977063007475575,1.0,0.0,0.0 -322,28.0,1.2765507573857304,0.9,0.0,0.0,0.9652709281075644,-11.379936847001767,1.0,0.0,0.0 -322,29.0,5.638099178453642,1.9,0.0,0.0,0.9578359097053634,-11.848722773097682,1.0,0.0,0.0 -323,0.0,0.0,0.0,160.23298383210124,0.0021673601763083,1.0,0.0,0.0,0.0,1.0 -323,1.0,11.665580437048632,12.7,2.536710795392722e-06,13.759939663647016,0.9802394181206396,-4.1328124586288295,0.0,1.0,0.0 -323,2.0,1.29020244465054,1.2,0.0,0.0,0.9736023963978612,-3.5227698859314738,1.0,0.0,0.0 -323,3.0,4.08564107472671,1.6,0.0,0.0,0.9667195924219476,-4.312148470993196,1.0,0.0,0.0 -323,4.0,50.640445952533696,19.0,-2.4626544382733336e-09,26.52151819651013,0.9596947241125324,-10.598867394506216,0.0,1.0,0.0 -323,5.0,0.0,0.0,0.0,0.0,0.9598386786139954,-10.0831788112771,1.0,0.0,0.0 -323,6.0,12.256923224180133,10.9,0.0,0.0,0.9530568271242824,-10.565000199942622,1.0,0.0,0.0 -323,7.0,16.12753055813175,30.0,-2.3528548547256163e-09,30.54716988576694,0.9587431890157584,-10.507701502942028,0.0,1.0,0.0 -323,8.0,0.0,0.0,0.0,0.0,1.00034870630547,-11.360877292454218,1.0,0.0,0.0 -323,9.0,3.117989241238805,2.0,0.0,0.0,0.9960245489684212,-12.026642131455308,1.0,0.0,0.0 -323,10.0,0.0,0.0,-4.377386702837538e-09,13.572256589211271,1.0278150237395618,-11.360877292961602,0.0,1.0,0.0 -323,11.0,6.02094474170252,7.5,0.0,0.0,1.0313291732036007,-8.677418971948375,1.0,0.0,0.0 -323,12.0,0.0,0.0,-1.8070472398353248e-10,21.694791849740653,1.059983127958645,-8.677418971961636,0.0,1.0,0.0 -323,13.0,3.3330229820138952,1.6,0.0,0.0,1.0206007766551288,-9.284423389264315,1.0,0.0,0.0 -323,14.0,4.408191685889345,2.5,0.0,0.0,1.0162602032754098,-9.471748386238394,1.0,0.0,0.0 -323,15.0,1.8815452317820376,1.8,0.0,0.0,1.0098228117042047,-9.01442158326847,1.0,0.0,0.0 -323,16.0,4.838259167439525,5.8,0.0,0.0,0.996060436299199,-9.371283224129735,1.0,0.0,0.0 -323,17.0,1.7202699262007202,0.9,0.0,0.0,0.9996328879798104,-10.68322007233728,1.0,0.0,0.0 -323,18.0,5.107051343408387,3.4,0.0,0.0,0.9922104424807208,-11.3211559579385,1.0,0.0,0.0 -323,19.0,1.1826855742629951,0.7,0.0,0.0,0.9923890806340954,-11.52429970433204,1.0,0.0,0.0 -323,20.0,9.407726158910188,11.2,0.0,0.0,0.9838957025532868,-12.26590767435897,1.0,0.0,0.0 -323,21.0,0.0,0.0,0.0,0.0,0.983804203209158,-12.283578931350432,1.0,0.0,0.0 -323,22.0,1.7202699262007202,1.6,0.0,0.0,0.9597762181940274,-12.805082353173756,1.0,0.0,0.0 -323,23.0,4.676983861858208,6.7,0.0,0.0,0.9666467920354008,-12.648668914189358,1.0,0.0,0.0 -323,24.0,0.0,0.0,0.0,0.0,0.963829155715162,-12.606436214739729,1.0,0.0,0.0 -323,25.0,1.8815452317820376,2.3,0.0,0.0,0.9495833580365052,-12.687735941215152,1.0,0.0,0.0 -323,26.0,0.0,0.0,0.0,0.0,0.969288618945623,-12.496838887897129,1.0,0.0,0.0 -323,27.0,0.0,0.0,0.0,0.0,0.957189852459229,-10.412927398105738,1.0,0.0,0.0 -323,28.0,1.29020244465054,0.9,0.0,0.0,0.9553811004885908,-13.140119544017953,1.0,0.0,0.0 -323,29.0,5.698394130539885,1.9,0.0,0.0,0.9478120097053248,-13.624730340787517,1.0,0.0,0.0 -324,0.0,0.0,0.0,97.71251192148736,2.4074161331100186e-06,1.0,0.0,0.0,0.0,1.0 -324,1.0,11.665580437048632,12.7,60.13685874768958,13.182803378108368,0.9888123802653064,-2.023063750007402,0.0,1.0,0.0 -324,2.0,1.29020244465054,1.2,0.0,0.0,0.9777415476046706,-3.4591418563146643,1.0,0.0,0.0 -324,3.0,4.08564107472671,1.6,0.0,0.0,0.971818553646408,-4.232931120067764,1.0,0.0,0.0 -324,4.0,50.640445952533696,19.0,-1.5942740481886383e-08,22.50720963014964,0.969629967384092,-8.190306194845121,0.0,1.0,0.0 -324,5.0,0.0,0.0,0.0,0.0,0.9631921477685512,-5.527394426427071,1.0,0.0,0.0 -324,6.0,12.256923224180133,10.9,0.0,0.0,0.9509840498337973,-5.986877813115539,1.0,0.0,0.0 -324,7.0,16.12753055813175,30.0,-3.22012207688969e-08,39.99999914976107,0.9635598930167252,-6.3370231652417335,0.0,1.0,0.0 -324,8.0,0.0,0.0,0.0,0.0,0.9779718372665912,-9.057167410140774,1.0,0.0,0.0 -324,9.0,3.117989241238805,2.0,0.0,0.0,0.97584462735115,-10.940265612363405,1.0,0.0,0.0 -324,10.0,0.0,0.0,0.0,0.0,0.9779718372665912,-9.057167410140774,0.0,1.0,0.0 -324,11.0,6.02094474170252,7.5,0.0,0.0,0.9686519668690252,-14.917415064293907,1.0,0.0,0.0 -324,12.0,0.0,0.0,-1.841042616363305e-08,23.999999645982136,1.0021789140375774,-14.91741506581516,0.0,1.0,0.0 -324,13.0,3.3330229820138952,1.6,0.0,0.0,0.9600897619100598,-15.321548117741136,1.0,0.0,0.0 -324,14.0,4.408191685889345,2.5,0.0,0.0,0.956629476819237,-14.647956910128627,1.0,0.0,0.0 -324,15.0,1.8815452317820376,1.8,0.0,0.0,0.9675956985722568,-13.339610456542683,1.0,0.0,0.0 -324,16.0,4.838259167439525,5.8,0.0,0.0,0.967663349108836,-11.774306879130046,1.0,0.0,0.0 -324,17.0,1.7202699262007202,0.9,0.0,0.0,0.9526230337530184,-14.823564536360882,1.0,0.0,0.0 -324,18.0,5.107051343408387,3.4,0.0,0.0,0.956438179341158,-11.653810471601394,1.0,0.0,0.0 -324,19.0,1.1826855742629951,0.7,0.0,0.0,0.9606740185401728,-11.509340451220924,1.0,0.0,0.0 -324,20.0,9.407726158910188,11.2,0.0,0.0,0.9648495547598236,-11.290740129368542,1.0,0.0,0.0 -324,21.0,0.0,0.0,0.0,0.0,0.9651846637690268,-11.342327415122549,1.0,0.0,0.0 -324,22.0,1.7202699262007202,1.6,0.0,0.0,0.9517939799540648,-13.671461645090307,1.0,0.0,0.0 -324,23.0,4.676983861858208,6.7,0.0,0.0,0.9526602075524084,-12.205748351646609,1.0,0.0,0.0 -324,24.0,0.0,0.0,0.0,0.0,0.95439105496748,-11.355292080835136,1.0,0.0,0.0 -324,25.0,1.8815452317820376,2.3,0.0,0.0,0.940000000678335,-11.438232840067176,1.0,0.0,0.0 -324,26.0,0.0,0.0,0.0,0.0,0.9625520275044862,-10.741540403419968,1.0,0.0,0.0 -324,27.0,0.0,0.0,0.0,0.0,0.9490483289070656,-7.771975888194568,1.0,0.0,0.0 -324,28.0,1.29020244465054,0.9,0.0,0.0,0.9485412567529888,-11.393987596328015,1.0,0.0,0.0 -324,29.0,5.698394130539885,1.9,0.0,0.0,0.9409158016184508,-11.885662601792047,1.0,0.0,0.0 -325,0.0,0.0,0.0,158.7642474517466,0.002057498067387,1.0,0.0,0.0,0.0,1.0 -325,1.0,11.665580437048632,12.7,2.061303711011285e-06,9.87852097820857,0.9803949985273126,-3.640189527649313,0.0,1.0,0.0 -325,2.0,1.29020244465054,1.2,0.0,0.0,0.9750735891263694,-4.777049361352947,1.0,0.0,0.0 -325,3.0,4.08564107472671,1.6,0.0,0.0,0.9686391053331076,-5.86970686603267,1.0,0.0,0.0 -325,4.0,50.640445952533696,19.0,-9.147040630090472e-10,23.8579488122111,0.9604239344672822,-8.76659107956107,0.0,1.0,0.0 -325,5.0,0.0,0.0,0.0,0.0,0.967285460842971,-6.972718770058078,1.0,0.0,0.0 -325,6.0,12.256923224180133,10.9,0.0,0.0,0.9580251990123964,-7.977220800118318,1.0,0.0,0.0 -325,7.0,16.12753055813175,30.0,-2.73435868077426e-10,29.503201469712582,0.9657544083484486,-7.38451748306363,0.0,1.0,0.0 -325,8.0,0.0,0.0,0.0,0.0,1.0164010015318132,-8.83842697556281,1.0,0.0,0.0 -325,9.0,3.117989241238805,2.0,0.0,0.0,1.008233489525841,-9.806195864576289,1.0,0.0,0.0 -325,10.0,0.0,0.0,1.842785115280315e-09,22.21757927194513,1.05999784931369,-8.838426975358969,0.0,1.0,0.0 -325,11.0,6.02094474170252,7.5,0.0,0.0,1.0213349119804322,-9.06195036089754,1.0,0.0,0.0 -325,12.0,0.0,0.0,-7.052483521442091e-10,11.189342483402209,1.0364490932544728,-9.06195036095098,0.0,1.0,0.0 -325,13.0,3.3330229820138952,1.6,0.0,0.0,1.0132240291586208,-9.425136800062162,1.0,0.0,0.0 -325,14.0,4.408191685889345,2.5,0.0,0.0,1.0098025320537252,-9.48737893560483,1.0,0.0,0.0 -325,15.0,1.8815452317820376,1.8,0.0,0.0,1.009378980344116,-9.46914288971023,1.0,0.0,0.0 -325,16.0,4.838259167439525,5.8,0.0,0.0,1.00432852973647,-9.796235030605995,1.0,0.0,0.0 -325,17.0,1.7202699262007202,0.9,0.0,0.0,0.982256607932522,-10.783503615287028,1.0,0.0,0.0 -325,18.0,5.107051343408387,3.4,0.0,0.0,0.9845609505600772,-10.685897341650392,1.0,0.0,0.0 -325,19.0,1.1826855742629951,0.7,0.0,0.0,0.9898981112935604,-10.498917892708649,1.0,0.0,0.0 -325,20.0,9.407726158910188,11.2,0.0,0.0,0.9965251824901242,-9.985759014490142,1.0,0.0,0.0 -325,21.0,0.0,0.0,0.0,0.0,1.0035533596905124,-9.947561171269175,1.0,0.0,0.0 -325,22.0,1.7202699262007202,1.6,0.0,0.0,1.0015718186974316,-9.803385575676844,1.0,0.0,0.0 -325,23.0,4.676983861858208,6.7,0.0,0.0,0.9972473368989068,-10.087874614015623,1.0,0.0,0.0 -325,24.0,0.0,0.0,0.0,0.0,0.966457043717906,-9.489441344555935,1.0,0.0,0.0 -325,25.0,1.8815452317820376,2.3,0.0,0.0,0.952251162046092,-9.5702928599155,1.0,0.0,0.0 -325,26.0,0.0,0.0,0.0,0.0,0.9736606869921236,-9.402728050242684,1.0,0.0,0.0 -325,27.0,0.0,0.0,0.0,0.0,0.9641815308785652,-7.296023069091082,1.0,0.0,0.0 -325,28.0,1.29020244465054,0.9,0.0,0.0,0.959819345943724,-10.04016312108285,1.0,0.0,0.0 -325,29.0,5.698394130539885,1.9,0.0,0.0,0.952286378484197,-10.52027142606834,1.0,0.0,0.0 -326,0.0,0.0,0.0,139.2611108951328,-1.2133327231822475e-06,1.0,0.0,0.0,0.0,1.0 -326,1.0,11.665580437048632,12.7,21.601248262973407,13.48045933349907,0.9734880086109762,-4.611823872436985,0.0,1.0,0.0 -326,2.0,1.29020244465054,1.2,0.0,0.0,1.0008061403796866,-0.143844518842658,1.0,0.0,0.0 -326,3.0,4.08564107472671,1.6,0.0,0.0,0.9464966738959952,-9.490107748434166,1.0,0.0,0.0 -326,4.0,50.640445952533696,19.0,-7.052485374833417e-12,28.380397193499576,0.9523202841232028,-10.818597501350672,0.0,1.0,0.0 -326,5.0,0.0,0.0,0.0,0.0,0.9484761204573368,-9.825204940390815,1.0,0.0,0.0 -326,6.0,12.256923224180133,10.9,0.0,0.0,0.943329205998054,-10.504758887789158,1.0,0.0,0.0 -326,7.0,16.12753055813175,30.0,-2.341565317974826e-11,39.99896329858842,0.950994868834649,-10.33924487158558,0.0,1.0,0.0 -326,8.0,0.0,0.0,0.0,0.0,0.9698119841080078,-9.82520494039082,1.0,0.0,0.0 -326,9.0,3.117989241238805,2.0,0.0,0.0,0.9731327323300156,-14.92487938260524,1.0,0.0,0.0 -326,10.0,0.0,0.0,0.0,0.0,0.9698119841080078,-9.82520494039082,0.0,1.0,0.0 -326,11.0,6.02094474170252,7.5,0.0,0.0,1.002904000207918,-13.800721907597191,1.0,0.0,0.0 -326,12.0,0.0,0.0,-2.3493905670292888e-11,23.99765774524339,1.0353535165389676,-13.800721907599003,0.0,1.0,0.0 -326,13.0,3.3330229820138952,1.6,0.0,0.0,0.9895468082148065,-14.335715068619322,1.0,0.0,0.0 -326,14.0,4.408191685889345,2.5,0.0,0.0,0.9835782979310737,-14.374299471791408,1.0,0.0,0.0 -326,15.0,1.8815452317820376,1.8,0.0,0.0,0.9807432165305668,-14.157390821560991,1.0,0.0,0.0 -326,16.0,4.838259167439525,5.8,0.0,0.0,0.9665595595076292,-14.536048838333102,1.0,0.0,0.0 -326,17.0,1.7202699262007202,0.9,0.0,0.0,0.9705087675777084,-14.916143543402136,1.0,0.0,0.0 -326,18.0,5.107051343408387,3.4,0.0,0.0,0.965118705436083,-15.141045512184508,1.0,0.0,0.0 -326,19.0,1.1826855742629951,0.7,0.0,0.0,0.9664657371970198,-15.117122161959545,1.0,0.0,0.0 -326,20.0,9.407726158910188,11.2,0.0,0.0,0.960991111383646,-15.117798501484693,1.0,0.0,0.0 -326,21.0,0.0,0.0,0.0,0.0,0.9684957663286424,-14.814886772596678,1.0,0.0,0.0 -326,22.0,1.7202699262007202,1.6,0.0,0.0,0.971801682327084,-14.547077659671324,1.0,0.0,0.0 -326,23.0,4.676983861858208,6.7,0.0,0.0,0.9629078520055336,-14.631953336256917,1.0,0.0,0.0 -326,24.0,0.0,0.0,0.0,0.0,0.9599080311922534,-13.760676308832837,1.0,0.0,0.0 -326,25.0,1.8815452317820376,2.3,0.0,0.0,0.9456022486913002,-13.842651812698408,1.0,0.0,0.0 -326,26.0,0.0,0.0,0.0,0.0,0.9650840872344126,-13.137102786665055,1.0,0.0,0.0 -326,27.0,0.0,0.0,0.0,0.0,0.9468965663106684,-10.282296239268984,1.0,0.0,0.0 -326,28.0,1.29020244465054,0.9,0.0,0.0,0.9511123101055432,-13.786081615280754,1.0,0.0,0.0 -326,29.0,5.698394130539885,1.9,0.0,0.0,0.9435081416819032,-14.275083174452105,1.0,0.0,0.0 -327,0.0,0.0,0.0,158.74453495049622,0.0004847063610924,1.0,0.0,0.0,0.0,1.0 -327,1.0,11.665580437048632,12.7,5.74003615291613e-07,10.178485551148952,0.9805530045844087,-3.640843327938566,0.0,1.0,0.0 -327,2.0,1.29020244465054,1.2,0.0,0.0,0.9746348776775128,-4.775241273180762,1.0,0.0,0.0 -327,3.0,4.08564107472671,1.6,0.0,0.0,0.9680982403153544,-5.867657110715501,1.0,0.0,0.0 -327,4.0,50.640445952533696,19.0,-6.859799781895625e-10,23.993585961325135,0.9609025470499216,-8.76341965433396,0.0,1.0,0.0 -327,5.0,0.0,0.0,0.0,0.0,0.9677918689254468,-6.966903673324729,1.0,0.0,0.0 -327,6.0,12.256923224180133,10.9,0.0,0.0,0.9585252189113652,-7.972233553779499,1.0,0.0,0.0 -327,7.0,16.12753055813175,30.0,-5.420064343833774e-10,30.457035077179228,0.9667956725534176,-7.388043870248008,0.0,1.0,0.0 -327,8.0,0.0,0.0,0.0,0.0,1.015998179203908,-8.746796047893937,1.0,0.0,0.0 -327,9.0,3.117989241238805,2.0,0.0,0.0,1.0071166015402393,-9.671569714878544,1.0,0.0,0.0 -327,10.0,0.0,0.0,-1.6697666147614355e-10,22.399519549581957,1.0599538664628347,-8.746796047912417,0.0,1.0,0.0 -327,11.0,6.02094474170252,7.5,0.0,0.0,1.0139184644589485,-9.210660302367424,1.0,0.0,0.0 -327,12.0,0.0,0.0,-7.019044399518074e-10,9.66479896352554,1.0270922745288784,-9.21066030242149,0.0,1.0,0.0 -327,13.0,3.3330229820138952,1.6,0.0,0.0,1.0029861362163806,-9.669449748837858,1.0,0.0,0.0 -327,14.0,4.408191685889345,2.5,0.0,0.0,0.999712256497268,-9.695350789233762,1.0,0.0,0.0 -327,15.0,1.8815452317820376,1.8,0.0,0.0,1.0048570924429647,-9.51126453761774,1.0,0.0,0.0 -327,16.0,4.838259167439525,5.8,0.0,0.0,1.0020756190999316,-9.713149968400304,1.0,0.0,0.0 -327,17.0,1.7202699262007202,0.9,0.0,0.0,0.9932152170631506,-10.024504111232856,1.0,0.0,0.0 -327,18.0,5.107051343408387,3.4,0.0,0.0,0.9916473490224345,-10.12452298700354,1.0,0.0,0.0 -327,19.0,1.1826855742629951,0.7,0.0,0.0,0.9949007227330224,-10.042434982647263,1.0,0.0,0.0 -327,20.0,9.407726158910188,11.2,0.0,0.0,0.9966109426475184,-9.840248671811688,1.0,0.0,0.0 -327,21.0,0.0,0.0,0.0,0.0,0.9969946277475642,-9.837170991314103,1.0,0.0,0.0 -327,22.0,1.7202699262007202,1.6,0.0,0.0,0.9913424894537616,-9.868641210610337,1.0,0.0,0.0 -327,23.0,4.676983861858208,6.7,0.0,0.0,0.986858177599939,-9.957589681614344,1.0,0.0,0.0 -327,24.0,0.0,0.0,0.0,0.0,0.9805542311864432,-9.689910499432608,1.0,0.0,0.0 -327,25.0,1.8815452317820376,2.3,0.0,0.0,0.9665586597054532,-9.768420029172017,1.0,0.0,0.0 -327,26.0,0.0,0.0,0.0,0.0,0.9836457783536038,-9.447222104330454,1.0,0.0,0.0 -327,27.0,0.0,0.0,0.0,0.0,0.9657825850555104,-7.31499392776482,1.0,0.0,0.0 -327,28.0,1.29020244465054,0.9,0.0,0.0,0.969953174171566,-10.07160346511734,1.0,0.0,0.0 -327,29.0,5.698394130539885,1.9,0.0,0.0,0.9625013893165816,-10.541664094938442,1.0,0.0,0.0 -328,0.0,0.0,0.0,159.54052368565917,0.0001354156958122,1.0,0.0,0.0,0.0,1.0 -328,1.0,11.665580437048632,12.7,1.596354589472878e-07,-6.282681274043156,0.9786210428687628,-3.619664418878669,0.0,1.0,0.0 -328,2.0,1.29020244465054,1.2,0.0,0.0,0.9799081256755732,-4.889294621430123,1.0,0.0,0.0 -328,3.0,4.08564107472671,1.6,0.0,0.0,0.974612893239497,-6.006779135579355,1.0,0.0,0.0 -328,4.0,50.640445952533696,19.0,8.370749230430783e-11,26.383393818467013,0.96611665458642,-8.831760562732503,0.0,1.0,0.0 -328,5.0,0.0,0.0,0.0,0.0,0.9751100702924076,-7.113732607488035,1.0,0.0,0.0 -328,6.0,12.256923224180133,10.9,0.0,0.0,0.9650332279043156,-8.084753205274833,1.0,0.0,0.0 -328,7.0,16.12753055813175,30.0,2.095653862411824e-10,39.82524258541099,0.9774959736408532,-7.589008906458756,0.0,1.0,0.0 -328,8.0,0.0,0.0,0.0,0.0,1.0223411794293753,-8.843802519542882,1.0,0.0,0.0 -328,9.0,3.117989241238805,2.0,0.0,0.0,1.0161685076908589,-9.741425218187617,1.0,0.0,0.0 -328,10.0,0.0,0.0,2.94816317963124e-10,19.191280077164876,1.0599995561056432,-8.843802519510461,0.0,1.0,0.0 -328,11.0,6.02094474170252,7.5,0.0,0.0,1.0358897199184238,-9.289272628820743,1.0,0.0,0.0 -328,12.0,0.0,0.0,9.989123862656824e-11,18.25482896750433,1.059999874245284,-9.289272628813448,0.0,1.0,0.0 -328,13.0,3.3330229820138952,1.6,0.0,0.0,0.999680128219943,-10.593334185805611,1.0,0.0,0.0 -328,14.0,4.408191685889345,2.5,0.0,0.0,0.9660109155485702,-10.920916737220995,1.0,0.0,0.0 -328,15.0,1.8815452317820376,1.8,0.0,0.0,1.0213357426137435,-9.555394565939874,1.0,0.0,0.0 -328,16.0,4.838259167439525,5.8,0.0,0.0,1.013503655937158,-9.781620548029789,1.0,0.0,0.0 -328,17.0,1.7202699262007202,0.9,0.0,0.0,0.9481566398699716,-11.56550848781767,1.0,0.0,0.0 -328,18.0,5.107051343408387,3.4,0.0,0.0,0.940000051052433,-11.85001974188016,1.0,0.0,0.0 -328,19.0,1.1826855742629951,0.7,0.0,0.0,1.0136314953143162,-9.842475937880511,1.0,0.0,0.0 -328,20.0,9.407726158910188,11.2,0.0,0.0,1.0034802989742515,-9.97728435683216,1.0,0.0,0.0 -328,21.0,0.0,0.0,0.0,0.0,1.0031364787982997,-9.995866783785658,1.0,0.0,0.0 -328,22.0,1.7202699262007202,1.6,0.0,0.0,0.9703313185099044,-10.739471736463782,1.0,0.0,0.0 -328,23.0,4.676983861858208,6.7,0.0,0.0,0.9828934267029114,-10.34787112585385,1.0,0.0,0.0 -328,24.0,0.0,0.0,0.0,0.0,0.9813490304502328,-10.039292439082752,1.0,0.0,0.0 -328,25.0,1.8815452317820376,2.3,0.0,0.0,0.9673651282843904,-10.117672988743085,1.0,0.0,0.0 -328,26.0,0.0,0.0,0.0,0.0,0.9873770111387464,-9.766540345667996,1.0,0.0,0.0 -328,27.0,0.0,0.0,0.0,0.0,0.973294354857636,-7.482392819169638,1.0,0.0,0.0 -328,28.0,1.29020244465054,0.9,0.0,0.0,0.973739147209212,-10.386147054837725,1.0,0.0,0.0 -328,29.0,5.698394130539885,1.9,0.0,0.0,0.9663172381649796,-10.852534887983952,1.0,0.0,0.0 -329,0.0,0.0,0.0,159.53490193105583,1.548995181011037e-05,1.0,0.0,0.0,0.0,1.0 -329,1.0,11.665580437048632,12.7,7.685110503799958e-08,10.94344249020655,0.9819768049378644,-3.353349556306904,0.0,1.0,0.0 -329,2.0,1.29020244465054,1.2,0.0,0.0,0.971578758142615,-5.690031642238647,1.0,0.0,0.0 -329,3.0,4.08564107472671,1.6,0.0,0.0,0.9644978876699148,-7.005860336759192,1.0,0.0,0.0 -329,4.0,50.640445952533696,19.0,9.627026861192342e-11,22.61542726166536,0.9627361006935816,-9.61065099596227,0.0,1.0,0.0 -329,5.0,0.0,0.0,0.0,0.0,0.9621415755194668,-8.652763705688407,1.0,0.0,0.0 -329,6.0,12.256923224180133,10.9,0.0,0.0,0.949918228561676,-9.113236113066767,1.0,0.0,0.0 -329,7.0,16.12753055813175,30.0,4.836865150004696e-11,35.89333004826576,0.9630961680914472,-9.11364474170072,0.0,1.0,0.0 -329,8.0,0.0,0.0,0.0,0.0,1.0122875586072384,-10.383270042493848,1.0,0.0,0.0 -329,9.0,3.117989241238805,2.0,0.0,0.0,1.00280198666993,-11.28098657554924,1.0,0.0,0.0 -329,10.0,0.0,0.0,7.270650548884073e-11,23.999920359181797,1.0594080558251104,-10.383270042485764,0.0,1.0,0.0 -329,11.0,6.02094474170252,7.5,0.0,0.0,1.0183303303172293,-10.437803026784229,1.0,0.0,0.0 -329,12.0,0.0,0.0,7.785438402660688e-11,12.492176100029743,1.035224298670277,-10.4378030267783,0.0,1.0,0.0 -329,13.0,3.3330229820138952,1.6,0.0,0.0,1.0086060644070236,-10.87116273963243,1.0,0.0,0.0 -329,14.0,4.408191685889345,2.5,0.0,0.0,1.0066086130235607,-10.902030019740415,1.0,0.0,0.0 -329,15.0,1.8815452317820376,1.8,0.0,0.0,1.0052335953935632,-10.88264604119741,1.0,0.0,0.0 -329,16.0,4.838259167439525,5.8,0.0,0.0,0.9992970973073888,-11.254313681756855,1.0,0.0,0.0 -329,17.0,1.7202699262007202,0.9,0.0,0.0,0.9961440243811276,-11.368168563818855,1.0,0.0,0.0 -329,18.0,5.107051343408387,3.4,0.0,0.0,0.9922296248743612,-11.551669913256369,1.0,0.0,0.0 -329,19.0,1.1826855742629951,0.7,0.0,0.0,0.9942406854089788,-11.513569407414618,1.0,0.0,0.0 -329,20.0,9.407726158910188,11.2,0.0,0.0,0.9906635750735674,-11.491397339835297,1.0,0.0,0.0 -329,21.0,0.0,0.0,0.0,0.0,0.9905457781791116,-11.500535914102157,1.0,0.0,0.0 -329,22.0,1.7202699262007202,1.6,0.0,0.0,0.9665237137450832,-11.900200058778898,1.0,0.0,0.0 -329,23.0,4.676983861858208,6.7,0.0,0.0,0.97334627331902,-11.745947646772404,1.0,0.0,0.0 -329,24.0,0.0,0.0,0.0,0.0,0.969882733560795,-11.490199169982144,1.0,0.0,0.0 -329,25.0,1.8815452317820376,2.3,0.0,0.0,0.9557285463536008,-11.570471976477236,1.0,0.0,0.0 -329,26.0,0.0,0.0,0.0,0.0,0.9748227534183608,-11.25016092972747,1.0,0.0,0.0 -329,27.0,0.0,0.0,0.0,0.0,0.9601544928676792,-9.014519860409491,1.0,0.0,0.0 -329,28.0,1.29020244465054,0.9,0.0,0.0,0.9609988930697934,-11.88605575589872,1.0,0.0,0.0 -329,29.0,5.698394130539885,1.9,0.0,0.0,0.9534754672646788,-12.36497801895293,1.0,0.0,0.0 -330,0.0,0.0,0.0,159.65779554771967,0.0026674394268511,1.0,0.0,0.0,0.0,1.0 -330,1.0,11.665580437048632,12.7,2.6974657147456223e-06,10.342705647676908,0.9817781315080212,-3.341526717365094,0.0,1.0,0.0 -330,2.0,1.29020244465054,1.2,0.0,0.0,0.9721530433460184,-5.732625665714511,1.0,0.0,0.0 -330,3.0,4.08564107472671,1.6,0.0,0.0,0.9652150537068148,-7.058358901411616,1.0,0.0,0.0 -330,4.0,50.640445952533696,19.0,1.62929615158092e-09,26.013994140830174,0.9617853501827992,-9.514178707015658,0.0,1.0,0.0 -330,5.0,0.0,0.0,0.0,0.0,0.9634900637176946,-8.742082495396224,1.0,0.0,0.0 -330,6.0,12.256923224180133,10.9,0.0,0.0,0.9561522857639976,-9.32814791808798,1.0,0.0,0.0 -330,7.0,16.12753055813175,30.0,1.681921894995554e-09,32.88985622776806,0.9632589846504206,-9.184116563913342,0.0,1.0,0.0 -330,8.0,0.0,0.0,0.0,0.0,1.0129508262019222,-10.47247726018201,1.0,0.0,0.0 -330,9.0,3.117989241238805,2.0,0.0,0.0,1.0031545784554174,-11.371078162690326,1.0,0.0,0.0 -330,10.0,0.0,0.0,3.752277048991527e-09,23.94736015242704,1.0599443401355664,-10.472477259765514,0.0,1.0,0.0 -330,11.0,6.02094474170252,7.5,0.0,0.0,1.017617425460686,-10.443135711768496,1.0,0.0,0.0 -330,12.0,0.0,0.0,2.1268194171685622e-09,11.069008271281312,1.0326244415225423,-10.443135711606146,0.0,1.0,0.0 -330,13.0,3.3330229820138952,1.6,0.0,0.0,0.991108149242738,-11.286948695897667,1.0,0.0,0.0 -330,14.0,4.408191685889345,2.5,0.0,0.0,1.001769027322356,-11.10689757820571,1.0,0.0,0.0 -330,15.0,1.8815452317820376,1.8,0.0,0.0,1.0049201431284145,-10.92659444020902,1.0,0.0,0.0 -330,16.0,4.838259167439525,5.8,0.0,0.0,0.9994587932493636,-11.32920285279756,1.0,0.0,0.0 -330,17.0,1.7202699262007202,0.9,0.0,0.0,0.9931211085712978,-11.536095319964645,1.0,0.0,0.0 -330,18.0,5.107051343408387,3.4,0.0,0.0,0.9902861634830846,-11.696365119740666,1.0,0.0,0.0 -330,19.0,1.1826855742629951,0.7,0.0,0.0,0.992875058646209,-11.645539210224651,1.0,0.0,0.0 -330,20.0,9.407726158910188,11.2,0.0,0.0,0.9853890746407732,-11.690076151821875,1.0,0.0,0.0 -330,21.0,0.0,0.0,0.0,0.0,0.9834899863658216,-11.731989150643118,1.0,0.0,0.0 -330,22.0,1.7202699262007202,1.6,0.0,0.0,0.960707250971502,-12.127527138270262,1.0,0.0,0.0 -330,23.0,4.676983861858208,6.7,0.0,0.0,0.9675711595344598,-11.97141456649329,1.0,0.0,0.0 -330,24.0,0.0,0.0,0.0,0.0,0.9667012318209696,-11.69470120271437,1.0,0.0,0.0 -330,25.0,1.8815452317820376,2.3,0.0,0.0,0.952499047704612,-11.775511260270331,1.0,0.0,0.0 -330,26.0,0.0,0.0,0.0,0.0,0.9732696925746432,-11.438432554204644,1.0,0.0,0.0 -330,27.0,0.0,0.0,0.0,0.0,0.9608897736683452,-9.10595583053212,1.0,0.0,0.0 -330,28.0,1.29020244465054,0.9,0.0,0.0,0.9594224596719484,-12.076387128311318,1.0,0.0,0.0 -330,29.0,5.698394130539885,1.9,0.0,0.0,0.9518862761807204,-12.556895498067592,1.0,0.0,0.0 -331,0.0,0.0,0.0,158.99076688085665,0.0006842136969886,1.0,0.0,0.0,0.0,1.0 -331,1.0,11.665580437048632,12.7,1.0385095457775367e-06,22.242671382117408,0.9817966672759832,-3.674049219112459,0.0,1.0,0.0 -331,2.0,1.29020244465054,1.2,0.0,0.0,0.9709341043584122,-4.720640221103803,1.0,0.0,0.0 -331,3.0,4.08564107472671,1.6,0.0,0.0,0.9635303583840272,-5.801442424715836,1.0,0.0,0.0 -331,4.0,50.640445952533696,19.0,-2.8412951903556925e-10,29.350053971920488,0.9617477726691755,-8.824376530099364,0.0,1.0,0.0 -331,5.0,0.0,0.0,0.0,0.0,0.957336658702435,-6.800510431035352,1.0,0.0,0.0 -331,6.0,12.256923224180133,10.9,0.0,0.0,0.9526602567115426,-7.896956448462387,1.0,0.0,0.0 -331,7.0,16.12753055813175,30.0,0.0,0.0,0.944684258672566,-7.033156244351921,0.0,1.0,0.0 -331,8.0,0.0,0.0,0.0,0.0,1.0124421482015027,-8.587969942497008,1.0,0.0,0.0 -331,9.0,3.117989241238805,2.0,0.0,0.0,1.0056611073215425,-9.50797021663874,1.0,0.0,0.0 -331,10.0,0.0,0.0,-1.9192900971456118e-10,24.000012620085297,1.0595562366500837,-8.587969942518331,0.0,1.0,0.0 -331,11.0,6.02094474170252,7.5,0.0,0.0,1.0297867556034526,-9.177218464391704,1.0,0.0,0.0 -331,12.0,0.0,0.0,-2.530473730979686e-10,22.87495947851453,1.0599989948833994,-9.1772184644103,0.0,1.0,0.0 -331,13.0,3.3330229820138952,1.6,0.0,0.0,1.0217438406658628,-9.534420443859966,1.0,0.0,0.0 -331,14.0,4.408191685889345,2.5,0.0,0.0,1.013355977918878,-9.629582228413511,1.0,0.0,0.0 -331,15.0,1.8815452317820376,1.8,0.0,0.0,1.0133661604841424,-9.38389125240174,1.0,0.0,0.0 -331,16.0,4.838259167439525,5.8,0.0,0.0,1.0037218541491832,-9.572446696097666,1.0,0.0,0.0 -331,17.0,1.7202699262007202,0.9,0.0,0.0,1.0016134653791349,-9.916835223533548,1.0,0.0,0.0 -331,18.0,5.107051343408387,3.4,0.0,0.0,0.9969188015698822,-9.994068985487411,1.0,0.0,0.0 -331,19.0,1.1826855742629951,0.7,0.0,0.0,0.9985022210019692,-9.900963075964231,1.0,0.0,0.0 -331,20.0,9.407726158910188,11.2,0.0,0.0,0.9940419900918606,-9.68946677255586,1.0,0.0,0.0 -331,21.0,0.0,0.0,0.0,0.0,0.9940795927772696,-9.689844290201076,1.0,0.0,0.0 -331,22.0,1.7202699262007202,1.6,0.0,0.0,1.0084434665960047,-9.734705259713676,1.0,0.0,0.0 -331,23.0,4.676983861858208,6.7,0.0,0.0,0.9792142483355394,-9.82867548773246,1.0,0.0,0.0 -331,24.0,0.0,0.0,0.0,0.0,0.9706480536266427,-9.526322048283433,1.0,0.0,0.0 -331,25.0,1.8815452317820376,2.3,0.0,0.0,0.9565053630867614,-9.60646641710642,1.0,0.0,0.0 -331,26.0,0.0,0.0,0.0,0.0,0.9724005280061364,-9.2626831470681,1.0,0.0,0.0 -331,27.0,0.0,0.0,0.0,0.0,0.952884804414812,-7.11543590774979,1.0,0.0,0.0 -331,28.0,1.29020244465054,0.9,0.0,0.0,0.958540179191934,-9.90179484409489,1.0,0.0,0.0 -331,29.0,5.698394130539885,1.9,0.0,0.0,0.9509968364062192,-10.383194358193082,1.0,0.0,0.0 -332,0.0,0.0,0.0,139.26113428085412,3.326957873639458e-05,1.0,0.0,0.0,0.0,1.0 -332,1.0,11.665580437048632,12.7,24.240545154497205,5.647329451375306,0.9734879849341734,-4.611824387950196,0.0,1.0,0.0 -332,2.0,1.29020244465054,1.2,0.0,0.0,1.000806140341958,-0.1438445188524291,1.0,0.0,0.0 -332,3.0,4.08564107472671,1.6,0.0,0.0,0.9444690113596128,-13.18991395794817,1.0,0.0,0.0 -332,4.0,50.640445952533696,19.0,1.8523062573356106e-09,33.67940376640155,0.956544603595615,-13.151140852944,0.0,1.0,0.0 -332,5.0,0.0,0.0,0.0,0.0,0.946687758362067,-14.471203394585505,1.0,0.0,0.0 -332,6.0,12.256923224180133,10.9,0.0,0.0,0.9433885911613444,-14.195760018754676,1.0,0.0,0.0 -332,7.0,16.12753055813175,30.0,1.8100141209291474e-09,31.906705574620094,0.940043736829936,-17.681141552894783,0.0,1.0,0.0 -332,8.0,0.0,0.0,0.0,0.0,1.0030088864231994,-16.194791227431647,1.0,0.0,0.0 -332,9.0,3.117989241238805,2.0,0.0,0.0,0.9967539913765884,-17.079895553044615,1.0,0.0,0.0 -332,10.0,0.0,0.0,3.011870187606403e-09,23.998311584802785,1.050524656552936,-16.194791227090995,0.0,1.0,0.0 -332,11.0,6.02094474170252,7.5,0.0,0.0,1.0081839959381114,-17.02662697431162,1.0,0.0,0.0 -332,12.0,0.0,0.0,2.576704564141898e-09,23.99069716953216,1.0404647400559175,-17.02662697411458,0.0,1.0,0.0 -332,13.0,3.3330229820138952,1.6,0.0,0.0,0.9941335854911856,-17.565887637568448,1.0,0.0,0.0 -332,14.0,4.408191685889345,2.5,0.0,0.0,0.9873941513677312,-17.59624966152162,1.0,0.0,0.0 -332,15.0,1.8815452317820376,1.8,0.0,0.0,0.9973447914339894,-17.14460631669749,1.0,0.0,0.0 -332,16.0,4.838259167439525,5.8,0.0,0.0,0.99247533583008,-17.1969041854164,1.0,0.0,0.0 -332,17.0,1.7202699262007202,0.9,0.0,0.0,0.9699506159357898,-18.21270994511508,1.0,0.0,0.0 -332,18.0,5.107051343408387,3.4,0.0,0.0,0.9619809133776296,-18.48447347169778,1.0,0.0,0.0 -332,19.0,1.1826855742629951,0.7,0.0,0.0,0.9941672446910236,-17.184931467947376,1.0,0.0,0.0 -332,20.0,9.407726158910188,11.2,0.0,0.0,0.9810814785364976,-17.39784584884849,1.0,0.0,0.0 -332,21.0,0.0,0.0,0.0,0.0,0.9798655923154886,-17.439524601555416,1.0,0.0,0.0 -332,22.0,1.7202699262007202,1.6,0.0,0.0,0.9768045486212464,-17.708702521218168,1.0,0.0,0.0 -332,23.0,4.676983861858208,6.7,0.0,0.0,0.9694474169090664,-17.71231419026338,1.0,0.0,0.0 -332,24.0,0.0,0.0,0.0,0.0,0.9601928081930834,-17.59374470538845,1.0,0.0,0.0 -332,25.0,1.8815452317820376,2.3,0.0,0.0,0.9458913995685684,-17.675670857145466,1.0,0.0,0.0 -332,26.0,0.0,0.0,0.0,0.0,0.961658149464154,-17.444052094046675,1.0,0.0,0.0 -332,27.0,0.0,0.0,0.0,0.0,0.94359609099393,-15.441087014996551,1.0,0.0,0.0 -332,28.0,1.29020244465054,0.9,0.0,0.0,0.947633559604316,-18.097730383079583,1.0,0.0,0.0 -332,29.0,5.698394130539885,1.9,0.0,0.0,0.9400005604541244,-18.59035448539693,1.0,0.0,0.0 -333,0.0,0.0,0.0,138.00003484144224,0.0008274546877018,1.0,0.0,0.0,0.0,1.0 -333,1.0,11.665580437048632,12.7,22.859433459758517,12.543864133320724,0.9751779642480588,-4.637416153608106,0.0,1.0,0.0 -333,2.0,1.29020244465054,1.2,0.0,0.0,0.9506048790172906,-9.53588673919045,1.0,0.0,0.0 -333,3.0,4.08564107472671,1.6,0.0,0.0,0.9511112344208098,-9.51176230529823,1.0,0.0,0.0 -333,4.0,50.640445952533696,19.0,-6.0516706340262895e-12,26.12077908222311,0.9536963795757402,-10.864860073383902,0.0,1.0,0.0 -333,5.0,0.0,0.0,0.0,0.0,0.9540832842228908,-10.024086182638568,1.0,0.0,0.0 -333,6.0,12.256923224180133,10.9,0.0,0.0,0.9472151613275754,-10.641998024396823,1.0,0.0,0.0 -333,7.0,16.12753055813175,30.0,-9.031613568927641e-11,31.893192816113185,0.9535033266730584,-10.469193747438853,0.0,1.0,0.0 -333,8.0,0.0,0.0,0.0,0.0,1.005740049758172,-11.912561873884792,1.0,0.0,0.0 -333,9.0,3.117989241238805,2.0,0.0,0.0,0.9970720305545996,-12.889583232768786,1.0,0.0,0.0 -333,10.0,0.0,0.0,-5.449640674642422e-10,23.99370902223632,1.053129215341312,-11.912561873946112,0.0,1.0,0.0 -333,11.0,6.02094474170252,7.5,0.0,0.0,1.0016128191165086,-12.756977826664842,1.0,0.0,0.0 -333,12.0,0.0,0.0,-3.2324146786946636e-10,13.540783477679447,1.0201946619507989,-12.756977826690218,0.0,1.0,0.0 -333,13.0,3.3330229820138952,1.6,0.0,0.0,0.9897833960559496,-13.208908358832836,1.0,0.0,0.0 -333,14.0,4.408191685889345,2.5,0.0,0.0,0.9858640051290922,-13.199731869386818,1.0,0.0,0.0 -333,15.0,1.8815452317820376,1.8,0.0,0.0,0.9936818153899584,-12.92404712240651,1.0,0.0,0.0 -333,16.0,4.838259167439525,5.8,0.0,0.0,0.9915591897945464,-12.992377296911572,1.0,0.0,0.0 -333,17.0,1.7202699262007202,0.9,0.0,0.0,0.980611260372782,-13.437119227671324,1.0,0.0,0.0 -333,18.0,5.107051343408387,3.4,0.0,0.0,0.9798062169058088,-13.479794042828306,1.0,0.0,0.0 -333,19.0,1.1826855742629951,0.7,0.0,0.0,0.983513897883944,-13.364379562566308,1.0,0.0,0.0 -333,20.0,9.407726158910188,11.2,0.0,0.0,0.9648830299222464,-13.405922344321134,1.0,0.0,0.0 -333,21.0,0.0,0.0,0.0,0.0,0.968753913615698,-13.349466979326182,1.0,0.0,0.0 -333,22.0,1.7202699262007202,1.6,0.0,0.0,0.9734377510407596,-13.370927971641976,1.0,0.0,0.0 -333,23.0,4.676983861858208,6.7,0.0,0.0,0.9636660629508652,-13.454641134997182,1.0,0.0,0.0 -333,24.0,0.0,0.0,0.0,0.0,0.960761649719019,-13.092836629915563,1.0,0.0,0.0 -333,25.0,1.8815452317820376,2.3,0.0,0.0,0.9464689694335712,-13.17466430303796,1.0,0.0,0.0 -333,26.0,0.0,0.0,0.0,0.0,0.966089591115108,-12.784938688258066,1.0,0.0,0.0 -333,27.0,0.0,0.0,0.0,0.0,0.9516506356678563,-10.400293610545802,1.0,0.0,0.0 -333,28.0,1.29020244465054,0.9,0.0,0.0,0.9521332368574787,-13.432547907746669,1.0,0.0,0.0 -333,29.0,5.698394130539885,1.9,0.0,0.0,0.9445374876528934,-13.920493942021697,1.0,0.0,0.0 -334,0.0,0.0,0.0,136.44977120318654,3.5655875141316073e-05,1.0,0.0,0.0,0.0,1.0 -334,1.0,11.665580437048632,12.7,29.646409868680006,18.156779591867704,0.9626712874743558,-18.64509715030423,0.0,1.0,0.0 -334,2.0,1.29020244465054,1.2,0.0,0.0,0.961528528691282,-13.501749510127947,1.0,0.0,0.0 -334,3.0,4.08564107472671,1.6,0.0,0.0,0.9565394796833212,-16.723202183179122,1.0,0.0,0.0 -334,4.0,50.640445952533696,19.0,4.324423863852141e-12,24.278446691435647,0.94673023338007,-22.371620356048737,0.0,1.0,0.0 -334,5.0,0.0,0.0,0.0,0.0,0.9597440424160898,-18.915074520646893,1.0,0.0,0.0 -334,6.0,12.256923224180133,10.9,0.0,0.0,0.9479888784459272,-20.601671434426965,1.0,0.0,0.0 -334,7.0,16.12753055813175,30.0,6.644030124161134e-14,39.5587779551558,0.962196403381458,-19.39796728919482,0.0,1.0,0.0 -334,8.0,0.0,0.0,0.0,0.0,1.0144789890947754,-20.453320602408496,1.0,0.0,0.0 -334,9.0,3.117989241238805,2.0,0.0,0.0,1.0082178570980096,-21.24505406443203,1.0,0.0,0.0 -334,10.0,0.0,0.0,-4.9403847370076085e-11,23.19793626173208,1.059999489710833,-20.45332060241397,0.0,1.0,0.0 -334,11.0,6.02094474170252,7.5,0.0,0.0,1.0231959110767974,-20.68096752915232,1.0,0.0,0.0 -334,12.0,0.0,0.0,-6.983666137101021e-11,23.999835337409365,1.0550427435191492,-20.680967529157503,0.0,1.0,0.0 -334,13.0,3.3330229820138952,1.6,0.0,0.0,0.9862150617065508,-21.69175948029397,1.0,0.0,0.0 -334,14.0,4.408191685889345,2.5,0.0,0.0,0.996928882451168,-21.50993654116776,1.0,0.0,0.0 -334,15.0,1.8815452317820376,1.8,0.0,0.0,1.0105590218404874,-21.006926449606343,1.0,0.0,0.0 -334,16.0,4.838259167439525,5.8,0.0,0.0,1.004651671990789,-21.26731183595548,1.0,0.0,0.0 -334,17.0,1.7202699262007202,0.9,0.0,0.0,0.979662287771556,-22.11444731431909,1.0,0.0,0.0 -334,18.0,5.107051343408387,3.4,0.0,0.0,0.971773107731046,-22.380805418961003,1.0,0.0,0.0 -334,19.0,1.1826855742629951,0.7,0.0,0.0,1.0056607112836395,-21.347708892008875,1.0,0.0,0.0 -334,20.0,9.407726158910188,11.2,0.0,0.0,0.997273466777001,-21.43695827349605,1.0,0.0,0.0 -334,21.0,0.0,0.0,0.0,0.0,0.997512542802004,-21.441274059557333,1.0,0.0,0.0 -334,22.0,1.7202699262007202,1.6,0.0,0.0,0.9890732517860944,-21.631272565719808,1.0,0.0,0.0 -334,23.0,4.676983861858208,6.7,0.0,0.0,0.9852794298887788,-21.64908037952117,1.0,0.0,0.0 -334,24.0,0.0,0.0,0.0,0.0,0.9764248245093816,-21.46331258205435,1.0,0.0,0.0 -334,25.0,1.8815452317820376,2.3,0.0,0.0,0.9623683053994504,-21.542497429425858,1.0,0.0,0.0 -334,26.0,0.0,0.0,0.0,0.0,0.9779904507605376,-21.273831384316097,1.0,0.0,0.0 -334,27.0,0.0,0.0,0.0,0.0,0.9587977349755452,-19.264943965525745,1.0,0.0,0.0 -334,28.0,1.29020244465054,0.9,0.0,0.0,0.964214011516964,-21.905556013439902,1.0,0.0,0.0 -334,29.0,5.698394130539885,1.9,0.0,0.0,0.9567164694065332,-22.381267736071404,1.0,0.0,0.0 -335,0.0,0.0,0.0,159.3148498023741,0.0016442104074698,1.0,0.0,0.0,0.0,1.0 -335,1.0,11.665580437048632,12.7,1.1000233339204738e-06,15.561840578702297,0.9804689127500534,-3.842872394048885,0.0,1.0,0.0 -335,2.0,1.29020244465054,1.2,0.0,0.0,0.9740164236216244,-4.25762469721206,1.0,0.0,0.0 -335,3.0,4.08564107472671,1.6,0.0,0.0,0.9672753300356446,-5.224979780799215,1.0,0.0,0.0 -335,4.0,50.640445952533696,19.0,-2.305832312843759e-09,35.84890711277424,0.9595473359178408,-11.74937010930213,0.0,1.0,0.0 -335,5.0,0.0,0.0,0.0,0.0,0.9673711075350496,-6.02434096045288,1.0,0.0,0.0 -335,6.0,12.256923224180133,10.9,0.0,0.0,0.941181794616032,-12.359680281198967,1.0,0.0,0.0 -335,7.0,16.12753055813175,30.0,-9.285605884425843e-10,39.961496644592174,0.9697343322257064,-6.506723058550729,0.0,1.0,0.0 -335,8.0,0.0,0.0,0.0,0.0,0.9870532792469217,-7.82867513203538,1.0,0.0,0.0 -335,9.0,3.117989241238805,2.0,0.0,0.0,0.9863508364211584,-8.785467195015512,1.0,0.0,0.0 -335,10.0,0.0,0.0,0.0,0.0,0.9870532792469217,-7.82867513203538,0.0,1.0,0.0 -335,11.0,6.02094474170252,7.5,0.0,0.0,1.0052544421368703,-8.52647628948829,1.0,0.0,0.0 -335,12.0,0.0,0.0,-5.507664460661857e-10,9.73849800011187,1.0186388687655916,-8.526476289531434,0.0,1.0,0.0 -335,13.0,3.3330229820138952,1.6,0.0,0.0,0.9940311488399456,-8.965837471377846,1.0,0.0,0.0 -335,14.0,4.408191685889345,2.5,0.0,0.0,0.990729255376475,-8.960574515028963,1.0,0.0,0.0 -335,15.0,1.8815452317820376,1.8,0.0,0.0,0.9910127887356756,-8.717874844712005,1.0,0.0,0.0 -335,16.0,4.838259167439525,5.8,0.0,0.0,0.9833499407265808,-8.86800795117687,1.0,0.0,0.0 -335,17.0,1.7202699262007202,0.9,0.0,0.0,0.979959133744018,-9.244230007085958,1.0,0.0,0.0 -335,18.0,5.107051343408387,3.4,0.0,0.0,0.9758899309683132,-9.31498323820427,1.0,0.0,0.0 -335,19.0,1.1826855742629951,0.7,0.0,0.0,0.9778912289577404,-9.212737316721997,1.0,0.0,0.0 -335,20.0,9.407726158910188,11.2,0.0,0.0,0.9757853568751662,-8.976814897925014,1.0,0.0,0.0 -335,21.0,0.0,0.0,0.0,0.0,0.9762280395620544,-8.978638813006077,1.0,0.0,0.0 -335,22.0,1.7202699262007202,1.6,0.0,0.0,0.985703331592653,-9.070578970822352,1.0,0.0,0.0 -335,23.0,4.676983861858208,6.7,0.0,0.0,0.9664289887361036,-9.176313508322648,1.0,0.0,0.0 -335,24.0,0.0,0.0,0.0,0.0,0.9675686958667656,-8.950780943866482,1.0,0.0,0.0 -335,25.0,1.8815452317820376,2.3,0.0,0.0,0.9533796312120272,-9.031443974072042,1.0,0.0,0.0 -335,26.0,0.0,0.0,0.0,0.0,0.9753934968836184,-8.72407120997496,1.0,0.0,0.0 -335,27.0,0.0,0.0,0.0,0.0,0.9651019466313532,-6.391655285381937,1.0,0.0,0.0 -335,28.0,1.29020244465054,0.9,0.0,0.0,0.96157820544048,-9.359211605391009,1.0,0.0,0.0 -335,29.0,5.698394130539885,1.9,0.0,0.0,0.9540594568324302,-9.837552978893282,1.0,0.0,0.0 -336,0.0,0.0,0.0,160.07518987872425,0.003389343897453,1.0,0.0,0.0,0.0,1.0 -336,1.0,11.665580437048632,12.7,4.1414213629858185e-06,3.897659343138351,0.9782852443630158,-3.8631426992542446,0.0,1.0,0.0 -336,2.0,1.29020244465054,1.2,0.0,0.0,0.9798606662408278,-4.25275047328029,1.0,0.0,0.0 -336,3.0,4.08564107472671,1.6,0.0,0.0,0.974476652511082,-5.21726922942274,1.0,0.0,0.0 -336,4.0,50.640445952533696,19.0,-7.0595260165462306e-09,36.44452243289801,0.9584814394606096,-11.813385552767084,0.0,1.0,0.0 -336,5.0,0.0,0.0,0.0,0.0,0.9695292972663364,-6.494322790149343,1.0,0.0,0.0 -336,6.0,12.256923224180133,10.9,0.0,0.0,0.9400919128728824,-12.425021648577731,1.0,0.0,0.0 -336,7.0,16.12753055813175,30.0,1.2049429485867358e-09,25.563614062645023,0.966611490100732,-6.900749883840238,0.0,1.0,0.0 -336,8.0,0.0,0.0,0.0,0.0,1.0101844796637771,-9.879034349935662,1.0,0.0,0.0 -336,9.0,3.117989241238805,2.0,0.0,0.0,0.9989541084176816,-11.654631538326788,1.0,0.0,0.0 -336,10.0,0.0,0.0,1.794264019526197e-09,21.62376850156392,1.0529020692632771,-9.879034349734624,0.0,1.0,0.0 -336,11.0,6.02094474170252,7.5,0.0,0.0,0.9758735303290366,-15.09029926152099,1.0,0.0,0.0 -336,12.0,0.0,0.0,1.4583258367775146e-09,17.829286353299608,1.0008142239144946,-15.090299261401215,0.0,1.0,0.0 -336,13.0,3.3330229820138952,1.6,0.0,0.0,0.9666631340139046,-15.262463775947726,1.0,0.0,0.0 -336,14.0,4.408191685889345,2.5,0.0,0.0,0.9674943598862488,-15.023806077260357,1.0,0.0,0.0 -336,15.0,1.8815452317820376,1.8,0.0,0.0,0.98161768059467,-13.762242105210316,1.0,0.0,0.0 -336,16.0,4.838259167439525,5.8,0.0,0.0,0.9881655092654492,-12.379074812622369,1.0,0.0,0.0 -336,17.0,1.7202699262007202,0.9,0.0,0.0,0.9691381333498472,-14.178116836986131,1.0,0.0,0.0 -336,18.0,5.107051343408387,3.4,0.0,0.0,0.972584786477885,-13.58001798703514,1.0,0.0,0.0 -336,19.0,1.1826855742629951,0.7,0.0,0.0,0.9786466331558984,-13.128624547400989,1.0,0.0,0.0 -336,20.0,9.407726158910188,11.2,0.0,0.0,0.9882000378646651,-11.748841934549562,1.0,0.0,0.0 -336,21.0,0.0,0.0,0.0,0.0,0.9885449187108728,-11.72078222280706,1.0,0.0,0.0 -336,22.0,1.7202699262007202,1.6,0.0,0.0,0.9623463612277298,-15.139186377957932,1.0,0.0,0.0 -336,23.0,4.676983861858208,6.7,0.0,0.0,0.9783980366753252,-11.504457213592731,1.0,0.0,0.0 -336,24.0,0.0,0.0,0.0,0.0,0.9778460661152122,-10.538632689495708,1.0,0.0,0.0 -336,25.0,1.8815452317820376,2.3,0.0,0.0,0.9638105844107736,-10.617584124068708,1.0,0.0,0.0 -336,26.0,0.0,0.0,0.0,0.0,0.9843903067863046,-9.85871257612726,1.0,0.0,0.0 -336,27.0,0.0,0.0,0.0,0.0,0.9665220773351156,-6.934811106675717,1.0,0.0,0.0 -336,28.0,1.29020244465054,0.9,0.0,0.0,0.9707086614848808,-10.482136785041716,1.0,0.0,0.0 -336,29.0,5.698394130539885,1.9,0.0,0.0,0.9632628577944736,-10.951461046465976,1.0,0.0,0.0 -337,0.0,0.0,0.0,103.02465072585822,9.656957900006091e-07,1.0,0.0,0.0,0.0,1.0 -337,1.0,11.665580437048632,12.7,54.14078538210976,28.7629769859317,0.9891156550216352,-2.0867678371019336,0.0,1.0,0.0 -337,2.0,1.29020244465054,1.2,0.0,0.0,0.9747905574380956,-3.804520766369859,1.0,0.0,0.0 -337,3.0,4.08564107472671,1.6,0.0,0.0,0.9681955516139276,-4.6620141519140965,1.0,0.0,0.0 -337,4.0,50.640445952533696,19.0,0.0,0.0,0.9400000004501634,-6.951925951246898,0.0,1.0,0.0 -337,5.0,0.0,0.0,0.0,0.0,0.96792711497184,-5.676561895820554,1.0,0.0,0.0 -337,6.0,12.256923224180133,10.9,0.0,0.0,0.9499080789373264,-6.486716662283785,1.0,0.0,0.0 -337,7.0,16.12753055813175,30.0,-3.526149793472264e-09,39.99999680976425,0.9704125583193236,-6.158571578397205,0.0,1.0,0.0 -337,8.0,0.0,0.0,0.0,0.0,1.0133794939680707,-7.525364945322178,1.0,0.0,0.0 -337,9.0,3.117989241238805,2.0,0.0,0.0,1.0016617535457566,-8.491299970153248,1.0,0.0,0.0 -337,10.0,0.0,0.0,-1.917860128192041e-09,23.758523715740733,1.0599999936156037,-7.525364945534953,0.0,1.0,0.0 -337,11.0,6.02094474170252,7.5,0.0,0.0,0.9995875264538938,-7.865462881229414,1.0,0.0,0.0 -337,12.0,0.0,0.0,0.0,0.0,0.9995875264538938,-7.865462881229414,0.0,1.0,0.0 -337,13.0,3.3330229820138952,1.6,0.0,0.0,0.989891871248888,-8.320482848398003,1.0,0.0,0.0 -337,14.0,4.408191685889345,2.5,0.0,0.0,0.9880289942053324,-8.362548669584843,1.0,0.0,0.0 -337,15.0,1.8815452317820376,1.8,0.0,0.0,0.994195361612762,-8.258700314360967,1.0,0.0,0.0 -337,16.0,4.838259167439525,5.8,0.0,0.0,0.994991206444506,-8.505528727242243,1.0,0.0,0.0 -337,17.0,1.7202699262007202,0.9,0.0,0.0,0.9836286509648264,-8.753032974265055,1.0,0.0,0.0 -337,18.0,5.107051343408387,3.4,0.0,0.0,0.9833278397860942,-8.887333719025275,1.0,0.0,0.0 -337,19.0,1.1826855742629951,0.7,0.0,0.0,0.9872830163660324,-8.821136571961718,1.0,0.0,0.0 -337,20.0,9.407726158910188,11.2,0.0,0.0,0.9907365274415908,-8.672781710509955,1.0,0.0,0.0 -337,21.0,0.0,0.0,0.0,0.0,0.991007631776757,-8.67302346103958,1.0,0.0,0.0 -337,22.0,1.7202699262007202,1.6,0.0,0.0,0.9829891831829624,-8.473158331432703,1.0,0.0,0.0 -337,23.0,4.676983861858208,6.7,0.0,0.0,0.9792003613921356,-8.830463051335949,1.0,0.0,0.0 -337,24.0,0.0,0.0,0.0,0.0,0.9761088092938842,-8.546340367482202,1.0,0.0,0.0 -337,25.0,1.8815452317820376,2.3,0.0,0.0,0.9620476037857648,-8.625577256045643,1.0,0.0,0.0 -337,26.0,0.0,0.0,0.0,0.0,0.9812233605664736,-8.289393863136333,1.0,0.0,0.0 -337,27.0,0.0,0.0,0.0,0.0,0.9662912795176262,-6.04430345923585,1.0,0.0,0.0 -337,28.0,1.29020244465054,0.9,0.0,0.0,0.9674949750208608,-8.916904818091757,1.0,0.0,0.0 -337,29.0,5.698394130539885,1.9,0.0,0.0,0.9600236609979362,-9.389373499163025,1.0,0.0,0.0 -338,0.0,0.0,0.0,158.74453495049622,0.0004847063610924,1.0,0.0,0.0,0.0,1.0 -338,1.0,11.665580437048632,12.7,5.74003615291613e-07,10.178485551148952,0.9805530045844087,-3.640843327938566,0.0,1.0,0.0 -338,2.0,1.29020244465054,1.2,0.0,0.0,0.9746348776775128,-4.775241273180762,1.0,0.0,0.0 -338,3.0,4.08564107472671,1.6,0.0,0.0,0.9680982403153544,-5.867657110715501,1.0,0.0,0.0 -338,4.0,50.640445952533696,19.0,-6.859799781895625e-10,23.993585961325135,0.9609025470499216,-8.76341965433396,0.0,1.0,0.0 -338,5.0,0.0,0.0,0.0,0.0,0.9677918689254468,-6.966903673324729,1.0,0.0,0.0 -338,6.0,12.256923224180133,10.9,0.0,0.0,0.9585252189113652,-7.972233553779499,1.0,0.0,0.0 -338,7.0,16.12753055813175,30.0,-5.420064343833774e-10,30.457035077179228,0.9667956725534176,-7.388043870248008,0.0,1.0,0.0 -338,8.0,0.0,0.0,0.0,0.0,1.015998179203908,-8.746796047893937,1.0,0.0,0.0 -338,9.0,3.117989241238805,2.0,0.0,0.0,1.0071166015402393,-9.671569714878544,1.0,0.0,0.0 -338,10.0,0.0,0.0,-1.6697666147614355e-10,22.399519549581957,1.0599538664628347,-8.746796047912417,0.0,1.0,0.0 -338,11.0,6.02094474170252,7.5,0.0,0.0,1.0139184644589485,-9.210660302367424,1.0,0.0,0.0 -338,12.0,0.0,0.0,-7.019044399518074e-10,9.66479896352554,1.0270922745288784,-9.21066030242149,0.0,1.0,0.0 -338,13.0,3.3330229820138952,1.6,0.0,0.0,1.0029861362163806,-9.669449748837858,1.0,0.0,0.0 -338,14.0,4.408191685889345,2.5,0.0,0.0,0.999712256497268,-9.695350789233762,1.0,0.0,0.0 -338,15.0,1.8815452317820376,1.8,0.0,0.0,1.0048570924429647,-9.51126453761774,1.0,0.0,0.0 -338,16.0,4.838259167439525,5.8,0.0,0.0,1.0020756190999316,-9.713149968400304,1.0,0.0,0.0 -338,17.0,1.7202699262007202,0.9,0.0,0.0,0.9932152170631506,-10.024504111232856,1.0,0.0,0.0 -338,18.0,5.107051343408387,3.4,0.0,0.0,0.9916473490224345,-10.12452298700354,1.0,0.0,0.0 -338,19.0,1.1826855742629951,0.7,0.0,0.0,0.9949007227330224,-10.042434982647263,1.0,0.0,0.0 -338,20.0,9.407726158910188,11.2,0.0,0.0,0.9966109426475184,-9.840248671811688,1.0,0.0,0.0 -338,21.0,0.0,0.0,0.0,0.0,0.9969946277475642,-9.837170991314103,1.0,0.0,0.0 -338,22.0,1.7202699262007202,1.6,0.0,0.0,0.9913424894537616,-9.868641210610337,1.0,0.0,0.0 -338,23.0,4.676983861858208,6.7,0.0,0.0,0.986858177599939,-9.957589681614344,1.0,0.0,0.0 -338,24.0,0.0,0.0,0.0,0.0,0.9805542311864432,-9.689910499432608,1.0,0.0,0.0 -338,25.0,1.8815452317820376,2.3,0.0,0.0,0.9665586597054532,-9.768420029172017,1.0,0.0,0.0 -338,26.0,0.0,0.0,0.0,0.0,0.9836457783536038,-9.447222104330454,1.0,0.0,0.0 -338,27.0,0.0,0.0,0.0,0.0,0.9657825850555104,-7.31499392776482,1.0,0.0,0.0 -338,28.0,1.29020244465054,0.9,0.0,0.0,0.969953174171566,-10.07160346511734,1.0,0.0,0.0 -338,29.0,5.698394130539885,1.9,0.0,0.0,0.9625013893165816,-10.541664094938442,1.0,0.0,0.0 -339,0.0,0.0,0.0,158.9356397986715,0.0006390894493613,1.0,0.0,0.0,0.0,1.0 -339,1.0,11.665580437048632,12.7,8.418179178281143e-07,9.385069013505444,0.9804356640226712,-3.642351587002528,0.0,1.0,0.0 -339,2.0,1.29020244465054,1.2,0.0,0.0,0.974899972679904,-4.788417584600398,1.0,0.0,0.0 -339,3.0,4.08564107472671,1.6,0.0,0.0,0.9684267664032782,-5.8839015619884,1.0,0.0,0.0 -339,4.0,50.640445952533696,19.0,-8.660507343919998e-10,24.01646577004884,0.9610290991885028,-8.769133288967083,0.0,1.0,0.0 -339,5.0,0.0,0.0,0.0,0.0,0.9681099735763922,-6.978685793723326,1.0,0.0,0.0 -339,6.0,12.256923224180133,10.9,0.0,0.0,0.9587665062868737,-7.981507356326698,1.0,0.0,0.0 -339,7.0,16.12753055813175,30.0,-5.548912945670391e-10,30.606862522883404,0.967085853496367,-7.40201707283609,0.0,1.0,0.0 -339,8.0,0.0,0.0,0.0,0.0,1.0174167503286746,-8.70908591154667,1.0,0.0,0.0 -339,9.0,3.117989241238805,2.0,0.0,0.0,1.0098408259255662,-9.60601997273803,1.0,0.0,0.0 -339,10.0,0.0,0.0,1.2864431878710243e-10,21.678162245369705,1.0599567660306592,-8.709085911532451,0.0,1.0,0.0 -339,11.0,6.02094474170252,7.5,0.0,0.0,1.0155979381077846,-9.259524473565884,1.0,0.0,0.0 -339,12.0,0.0,0.0,-6.678381715569882e-10,11.40099968513779,1.0310782372571996,-9.25952447361704,0.0,1.0,0.0 -339,13.0,3.3330229820138952,1.6,0.0,0.0,1.0038896967997606,-9.727666685327168,1.0,0.0,0.0 -339,14.0,4.408191685889345,2.5,0.0,0.0,0.999783093467618,-9.746102758600376,1.0,0.0,0.0 -339,15.0,1.8815452317820376,1.8,0.0,0.0,1.0070774064449624,-9.5128154170219,1.0,0.0,0.0 -339,16.0,4.838259167439525,5.8,0.0,0.0,1.004629183873033,-9.667420219875384,1.0,0.0,0.0 -339,17.0,1.7202699262007202,0.9,0.0,0.0,0.9942407811348208,-10.033991263291664,1.0,0.0,0.0 -339,18.0,5.107051343408387,3.4,0.0,0.0,0.99323413909824,-10.109459884927729,1.0,0.0,0.0 -339,19.0,1.1826855742629951,0.7,0.0,0.0,0.9967779722139796,-10.014953084408816,1.0,0.0,0.0 -339,20.0,9.407726158910188,11.2,0.0,0.0,0.9784244103337316,-10.09807064193902,1.0,0.0,0.0 -339,21.0,0.0,0.0,0.0,0.0,0.9822417083540842,-10.043161115077485,1.0,0.0,0.0 -339,22.0,1.7202699262007202,1.6,0.0,0.0,0.9874258312861912,-9.97192427214718,1.0,0.0,0.0 -339,23.0,4.676983861858208,6.7,0.0,0.0,0.9776641833945156,-10.134303592617307,1.0,0.0,0.0 -339,24.0,0.0,0.0,0.0,0.0,0.9748871372488194,-9.850114156132104,1.0,0.0,0.0 -339,25.0,1.8815452317820376,2.3,0.0,0.0,0.9608077849145218,-9.929552716683958,1.0,0.0,0.0 -339,26.0,0.0,0.0,0.0,0.0,0.9802062512830916,-9.592598469222558,1.0,0.0,0.0 -339,27.0,0.0,0.0,0.0,0.0,0.9656200449771702,-7.334661973011942,1.0,0.0,0.0 -339,28.0,1.29020244465054,0.9,0.0,0.0,0.9664627847309784,-10.221430512727135,1.0,0.0,0.0 -339,29.0,5.698394130539885,1.9,0.0,0.0,0.958983239475085,-10.694915860347146,1.0,0.0,0.0 -340,0.0,0.0,0.0,160.4949337478134,0.0005461833216813,1.0,0.0,0.0,0.0,1.0 -340,1.0,11.78907216718387,12.7,6.794679082675136e-07,10.351340341779064,0.9803856989384112,-3.682176601601493,0.0,1.0,0.0 -340,2.0,1.3038605161862344,1.2,0.0,0.0,0.9744098506415716,-4.829303311896871,1.0,0.0,0.0 -340,3.0,4.128891634589742,1.6,0.0,0.0,0.9678304134807476,-5.934584069972915,1.0,0.0,0.0 -340,4.0,51.1765252603097,19.0,-7.577411977952786e-10,24.09506303242611,0.9605584981990672,-8.863046635292365,0.0,1.0,0.0 -340,5.0,0.0,0.0,0.0,0.0,0.9674961873348674,-7.045792868606818,1.0,0.0,0.0 -340,6.0,12.386674903769228,10.9,0.0,0.0,0.9581858932249588,-8.06361950069479,1.0,0.0,0.0 -340,7.0,16.29825645232793,30.0,-5.384013891185134e-10,30.50742455806221,0.9664964497251036,-7.471810468780536,0.0,1.0,0.0 -340,8.0,0.0,0.0,0.0,0.0,1.0158174937754445,-8.845135774993562,1.0,0.0,0.0 -340,9.0,3.1509962474500663,2.0,0.0,0.0,1.0069092091695468,-9.779919750754404,1.0,0.0,0.0 -340,10.0,0.0,0.0,6.725482908891866e-12,22.495391609249697,1.059961017702992,-8.845135774992821,0.0,1.0,0.0 -340,11.0,6.084682408869094,7.5,0.0,0.0,1.0138146182685,-9.314467159259266,1.0,0.0,0.0 -340,12.0,0.0,0.0,-6.948043757598788e-10,9.79039948563856,1.0271587669252111,-9.314467159312787,0.0,1.0,0.0 -340,13.0,3.3683063334811054,1.6,0.0,0.0,1.0028188002826093,-9.779660621515973,1.0,0.0,0.0 -340,14.0,4.4548567636363,2.5,0.0,0.0,0.9995190746750646,-9.806348388799378,1.0,0.0,0.0 -340,15.0,1.901463252771592,1.8,0.0,0.0,1.0046863681289508,-9.61916046849375,1.0,0.0,0.0 -340,16.0,4.8894769356983785,5.8,0.0,0.0,1.0018683893282785,-9.82315242334352,1.0,0.0,0.0 -340,17.0,1.7384806882483126,0.9,0.0,0.0,0.9929723262368104,-10.139745300071397,1.0,0.0,0.0 -340,18.0,5.161114543237178,3.4,0.0,0.0,0.991387463884388,-10.240888105471766,1.0,0.0,0.0 -340,19.0,1.1952054731707151,0.7,0.0,0.0,0.9946514998328506,-10.157184857770613,1.0,0.0,0.0 -340,20.0,9.50731626385796,11.2,0.0,0.0,0.9963672461443164,-9.952416569486928,1.0,0.0,0.0 -340,21.0,0.0,0.0,0.0,0.0,0.996751485665952,-9.949171255283876,1.0,0.0,0.0 -340,22.0,1.7384806882483126,1.6,0.0,0.0,0.991096179719272,-9.98261436195207,1.0,0.0,0.0 -340,23.0,4.726494371175099,6.7,0.0,0.0,0.9865675143702484,-10.072665623891156,1.0,0.0,0.0 -340,24.0,0.0,0.0,0.0,0.0,0.9802347464185532,-9.80226271987408,1.0,0.0,0.0 -340,25.0,1.901463252771592,2.3,0.0,0.0,0.9661811502553752,-9.885407455537306,1.0,0.0,0.0 -340,26.0,0.0,0.0,0.0,0.0,0.983333268105961,-9.555384722346224,1.0,0.0,0.0 -340,27.0,0.0,0.0,0.0,0.0,0.9654704741844504,-7.398042103827559,1.0,0.0,0.0 -340,28.0,1.3038605161862344,0.9,0.0,0.0,0.9695521886255865,-10.18883225234541,1.0,0.0,0.0 -340,29.0,5.758717279822535,1.9,0.0,0.0,0.9620433823219808,-10.665112875658576,1.0,0.0,0.0 -341,0.0,0.0,0.0,124.92982122339296,4.034908140937432e-06,1.0,0.0,0.0,0.0,1.0 -341,1.0,11.78907216718387,12.7,34.65377780296732,-21.037222318895697,0.9825285277827932,-2.626368000849496,0.0,1.0,0.0 -341,2.0,1.3038605161862344,1.2,0.0,0.0,0.98379624331887,-4.335829997120641,1.0,0.0,0.0 -341,3.0,4.128891634589742,1.6,0.0,0.0,0.9793362866621192,-5.318809587016254,1.0,0.0,0.0 -341,4.0,51.1765252603097,19.0,1.0903600459031645e-08,39.99999771160888,0.9847674738969464,-8.155510431180632,0.0,1.0,0.0 -341,5.0,0.0,0.0,0.0,0.0,0.981117193636492,-6.369231008373828,1.0,0.0,0.0 -341,6.0,12.386674903769228,10.9,0.0,0.0,0.9762951248883271,-7.360425290599968,1.0,0.0,0.0 -341,7.0,16.29825645232793,30.0,1.4589794589177529e-08,39.99999894980451,0.9835478344227904,-6.843341216950248,0.0,1.0,0.0 -341,8.0,0.0,0.0,0.0,0.0,1.0256207716155985,-8.127978938212713,1.0,0.0,0.0 -341,9.0,3.1509962474500663,2.0,0.0,0.0,1.0196832336596615,-9.042934408239145,1.0,0.0,0.0 -341,10.0,0.0,0.0,2.336042565967871e-08,17.520182337542224,1.0599999974182828,-8.127978935651923,0.0,1.0,0.0 -341,11.0,6.084682408869094,7.5,0.0,0.0,1.038792700689686,-8.516867477173744,1.0,0.0,0.0 -341,12.0,0.0,0.0,2.070475603988205e-08,16.056952505222487,1.0599999965209062,-8.516867475665451,0.0,1.0,0.0 -341,13.0,3.3683063334811054,1.6,0.0,0.0,1.0288940293085809,-8.92101703327286,1.0,0.0,0.0 -341,14.0,4.4548567636363,2.5,0.0,0.0,1.0267417973509976,-8.926618707724009,1.0,0.0,0.0 -341,15.0,1.901463252771592,1.8,0.0,0.0,1.024451387085949,-8.817433537930116,1.0,0.0,0.0 -341,16.0,4.8894769356983785,5.8,0.0,0.0,1.01691297808233,-9.071341057900772,1.0,0.0,0.0 -341,17.0,1.7384806882483126,0.9,0.0,0.0,1.0152860704600806,-9.292906533548509,1.0,0.0,0.0 -341,18.0,5.161114543237178,3.4,0.0,0.0,1.0107462078534333,-9.418844589842545,1.0,0.0,0.0 -341,19.0,1.1952054731707151,0.7,0.0,0.0,1.0123720506754843,-9.353088484432869,1.0,0.0,0.0 -341,20.0,9.50731626385796,11.2,0.0,0.0,1.007846793186952,-9.2491309358297,1.0,0.0,0.0 -341,21.0,0.0,0.0,0.0,0.0,1.0077723515170116,-9.257572901260742,1.0,0.0,0.0 -341,22.0,1.7384806882483126,1.6,0.0,0.0,0.9846495444364808,-9.649331777013408,1.0,0.0,0.0 -341,23.0,4.726494371175099,6.7,0.0,0.0,0.9913709297966689,-9.49778582748012,1.0,0.0,0.0 -341,24.0,0.0,0.0,0.0,0.0,0.9884630262023766,-9.225163849718353,1.0,0.0,0.0 -341,25.0,1.901463252771592,2.3,0.0,0.0,0.9745298429236424,-9.306910100654136,1.0,0.0,0.0 -341,26.0,0.0,0.0,0.0,0.0,0.9936250486046496,-8.974777042822701,1.0,0.0,0.0 -341,27.0,0.0,0.0,0.0,0.0,0.9793399774156096,-6.732820781697353,1.0,0.0,0.0 -341,28.0,1.3038605161862344,0.9,0.0,0.0,0.9641319376358494,-10.36106422658091,1.0,0.0,0.0 -341,29.0,5.758717279822535,1.9,0.0,0.0,0.9400000017736648,-11.723353129330894,1.0,0.0,0.0 -342,0.0,0.0,0.0,160.66338675191915,0.0022513502061727,1.0,0.0,0.0,0.0,1.0 -342,1.0,11.78907216718387,12.7,1.6321917925131894e-06,11.123874043826063,0.9806690605252564,-3.675469116543341,0.0,1.0,0.0 -342,2.0,1.3038605161862344,1.2,0.0,0.0,0.9735808428232252,-4.868543618596017,1.0,0.0,0.0 -342,3.0,4.128891634589742,1.6,0.0,0.0,0.9668146214367755,-5.983712124771125,1.0,0.0,0.0 -342,4.0,51.1765252603097,19.0,4.9547993990715794e-11,24.522869008819452,0.9613619471513524,-8.821450044674133,0.0,1.0,0.0 -342,5.0,0.0,0.0,0.0,0.0,0.9679512686681704,-6.959904370391791,1.0,0.0,0.0 -342,6.0,12.386674903769228,10.9,0.0,0.0,0.9587945031107434,-7.995280619955609,1.0,0.0,0.0 -342,7.0,16.29825645232793,30.0,1.22695571156286e-09,33.417322734731336,0.967879414185848,-7.416408930420085,0.0,1.0,0.0 -342,8.0,0.0,0.0,0.0,0.0,1.024857333370025,-6.95990437014108,1.0,0.0,0.0 -342,9.0,3.1509962474500663,2.0,0.0,0.0,0.9824382005854404,-11.590766123931347,1.0,0.0,0.0 -342,10.0,0.0,0.0,2.1338437653163576e-09,17.903685321566286,1.0599894431376704,-6.959904369906991,0.0,1.0,0.0 -342,11.0,6.084682408869094,7.5,0.0,0.0,1.0074467713605253,-10.372309378858647,1.0,0.0,0.0 -342,12.0,0.0,0.0,1.1446709861913927e-09,12.96135712102096,1.02514754052027,-10.372309378769744,0.0,1.0,0.0 -342,13.0,3.3683063334811054,1.6,0.0,0.0,0.9946623216416246,-10.92969755970386,1.0,0.0,0.0 -342,14.0,4.4548567636363,2.5,0.0,0.0,0.9891049945242087,-11.00268307201267,1.0,0.0,0.0 -342,15.0,1.901463252771592,1.8,0.0,0.0,0.989884096586171,-10.960211489317588,1.0,0.0,0.0 -342,16.0,4.8894769356983785,5.8,0.0,0.0,0.9804776180887956,-11.50261642782237,1.0,0.0,0.0 -342,17.0,1.7384806882483126,0.9,0.0,0.0,0.9773877965299598,-11.558974520694226,1.0,0.0,0.0 -342,18.0,5.161114543237178,3.4,0.0,0.0,0.9727956559459594,-11.792041309766343,1.0,0.0,0.0 -342,19.0,1.1952054731707151,0.7,0.0,0.0,0.9745492561185298,-11.772472268253836,1.0,0.0,0.0 -342,20.0,9.50731626385796,11.2,0.0,0.0,0.9730484615163776,-11.68722855062456,1.0,0.0,0.0 -342,21.0,0.0,0.0,0.0,0.0,0.9738983108414924,-11.657246267800902,1.0,0.0,0.0 -342,22.0,1.7384806882483126,1.6,0.0,0.0,0.9780848763056126,-11.265182338493451,1.0,0.0,0.0 -342,23.0,4.726494371175099,6.7,0.0,0.0,0.970204138043211,-11.470414758139343,1.0,0.0,0.0 -342,24.0,0.0,0.0,0.0,0.0,0.9714023300405136,-10.736683082796342,1.0,0.0,0.0 -342,25.0,1.901463252771592,2.3,0.0,0.0,0.9572171069789271,-10.821369513930962,1.0,0.0,0.0 -342,26.0,0.0,0.0,0.0,0.0,0.9791370998328208,-10.195452244080506,1.0,0.0,0.0 -342,27.0,0.0,0.0,0.0,0.0,0.9652204345523494,-7.387522607326693,1.0,0.0,0.0 -342,28.0,1.3038605161862344,0.9,0.0,0.0,0.9723392787924032,-10.402279608544369,1.0,0.0,0.0 -342,29.0,5.758717279822535,1.9,0.0,0.0,0.9471106654518252,-11.964247403932037,1.0,0.0,0.0 -343,0.0,0.0,0.0,161.0191188922081,0.0010979795220578,1.0,0.0,0.0,0.0,1.0 -343,1.0,11.78907216718387,12.7,1.5953455817062004e-06,-0.3089645510528527,0.9800502380245306,-3.3682254874017685,0.0,1.0,0.0 -343,2.0,1.3038605161862344,1.2,0.0,0.0,0.9765025584709748,-5.764477387110178,1.0,0.0,0.0 -343,3.0,4.128891634589742,1.6,0.0,0.0,0.9705835886223116,-7.094350895269762,1.0,0.0,0.0 -343,4.0,51.1765252603097,19.0,-3.3929896538876766e-11,26.48051716918846,0.965415054941696,-9.124129419909393,0.0,1.0,0.0 -343,5.0,0.0,0.0,0.0,0.0,0.9721148455255906,-7.882806562246976,1.0,0.0,0.0 -343,6.0,12.386674903769228,10.9,0.0,0.0,0.9628602288231216,-8.663692058483859,1.0,0.0,0.0 -343,7.0,16.29825645232793,30.0,-1.2426099213977131e-09,37.33101469979357,0.9736906760881914,-8.347762369935039,0.0,1.0,0.0 -343,8.0,0.0,0.0,0.0,0.0,1.0210926387395962,-9.684639269928848,1.0,0.0,0.0 -343,9.0,3.1509962474500663,2.0,0.0,0.0,1.0152511488746754,-10.617456688192451,1.0,0.0,0.0 -343,10.0,0.0,0.0,3.103074184093704e-09,19.82484948175888,1.0599944344308163,-9.684639269587176,0.0,1.0,0.0 -343,11.0,6.084682408869094,7.5,0.0,0.0,1.0294485629887302,-10.38771622221161,1.0,0.0,0.0 -343,12.0,0.0,0.0,1.957687990634804e-09,18.591549870124823,1.0541399429077738,-10.387716222066905,0.0,1.0,0.0 -343,13.0,3.3683063334811054,1.6,0.0,0.0,1.0175982862451434,-10.822124078987144,1.0,0.0,0.0 -343,14.0,4.4548567636363,2.5,0.0,0.0,1.0134798778325325,-10.808421417199485,1.0,0.0,0.0 -343,15.0,1.901463252771592,1.8,0.0,0.0,1.0173940768063192,-10.573569744789486,1.0,0.0,0.0 -343,16.0,4.8894769356983785,5.8,0.0,0.0,1.0115710177518893,-10.700540023043038,1.0,0.0,0.0 -343,17.0,1.7384806882483126,0.9,0.0,0.0,1.0050728236791135,-11.075218714494616,1.0,0.0,0.0 -343,18.0,5.161114543237178,3.4,0.0,0.0,1.0023562579171563,-11.139111758834806,1.0,0.0,0.0 -343,19.0,1.1952054731707151,0.7,0.0,0.0,1.004979935539584,-11.03859507290351,1.0,0.0,0.0 -343,20.0,9.50731626385796,11.2,0.0,0.0,1.0050187578870498,-10.794427494141708,1.0,0.0,0.0 -343,21.0,0.0,0.0,0.0,0.0,1.0054685372418672,-10.79369204610911,1.0,0.0,0.0 -343,22.0,1.7384806882483126,1.6,0.0,0.0,1.003252389311159,-10.931232973574028,1.0,0.0,0.0 -343,23.0,4.726494371175099,6.7,0.0,0.0,0.9962263680174752,-10.95369933498556,1.0,0.0,0.0 -343,24.0,0.0,0.0,0.0,0.0,0.9881444911791908,-10.648747981739628,1.0,0.0,0.0 -343,25.0,1.901463252771592,2.3,0.0,0.0,0.9742066854066328,-10.730547708181057,1.0,0.0,0.0 -343,26.0,0.0,0.0,0.0,0.0,0.9900871636229186,-10.383404553123166,1.0,0.0,0.0 -343,27.0,0.0,0.0,0.0,0.0,0.9708365139499318,-8.244136930222426,1.0,0.0,0.0 -343,28.0,1.3038605161862344,0.9,0.0,0.0,0.9400007857826064,-12.67691298704397,1.0,0.0,0.0 -343,29.0,5.758717279822535,1.9,0.0,0.0,0.947676906833206,-12.435635290849277,1.0,0.0,0.0 -344,0.0,0.0,0.0,160.92877339935168,0.0056003345477506,1.0,0.0,0.0,0.0,1.0 -344,1.0,11.78907216718387,12.7,3.075422456417519e-06,28.11919061305652,0.9824961833452313,-3.723787531115597,0.0,1.0,0.0 -344,2.0,1.3038605161862344,1.2,0.0,0.0,0.968169981276712,-4.780000697108292,1.0,0.0,0.0 -344,3.0,4.128891634589742,1.6,0.0,0.0,0.9601342019821404,-5.876161236163631,1.0,0.0,0.0 -344,4.0,51.1765252603097,19.0,-2.782690862693005e-09,33.897004985108296,0.9641288381493824,-8.932982777112265,0.0,1.0,0.0 -344,5.0,0.0,0.0,0.0,0.0,0.95258521819404,-6.712859339728286,1.0,0.0,0.0 -344,6.0,12.386674903769228,10.9,0.0,0.0,0.950802866012971,-7.892145266770068,1.0,0.0,0.0 -344,7.0,16.29825645232793,30.0,0.0,0.0,0.9400033525984312,-6.965140706035523,0.0,1.0,0.0 -344,8.0,0.0,0.0,0.0,0.0,1.030645989179534,-11.579848082691436,1.0,0.0,0.0 -344,9.0,3.1509962474500663,2.0,0.0,0.0,1.0151270687314229,-11.579848082392838,1.0,0.0,0.0 -344,10.0,0.0,0.0,-4.9568111860684805e-09,14.954467055800134,1.0599908568958054,-11.57984808323216,0.0,1.0,0.0 -344,11.0,6.084682408869094,7.5,0.0,0.0,1.0305867953869343,-10.211849699806754,1.0,0.0,0.0 -344,12.0,0.0,0.0,-4.171113175183373e-09,22.26524357978707,1.0599938903664403,-10.21184970011303,0.0,1.0,0.0 -344,13.0,3.3683063334811054,1.6,0.0,0.0,1.018642410726643,-10.755130554153366,1.0,0.0,0.0 -344,14.0,4.4548567636363,2.5,0.0,0.0,1.0136596437039076,-10.847840577518072,1.0,0.0,0.0 -344,15.0,1.901463252771592,1.8,0.0,0.0,1.0171806964200711,-10.880680409255223,1.0,0.0,0.0 -344,16.0,4.8894769356983785,5.8,0.0,0.0,1.0116533315968748,-11.45813252284672,1.0,0.0,0.0 -344,17.0,1.7384806882483126,0.9,0.0,0.0,1.005053283599139,-11.438001696417004,1.0,0.0,0.0 -344,18.0,5.161114543237178,3.4,0.0,0.0,1.0022440263589352,-11.695561202945,1.0,0.0,0.0 -344,19.0,1.1952054731707151,0.7,0.0,0.0,1.0048149653299974,-11.697174499736432,1.0,0.0,0.0 -344,20.0,9.50731626385796,11.2,0.0,0.0,1.0042589106158917,-11.652381995038676,1.0,0.0,0.0 -344,21.0,0.0,0.0,0.0,0.0,1.0045209337130403,-11.617747941940516,1.0,0.0,0.0 -344,22.0,1.7384806882483126,1.6,0.0,0.0,1.0022356070274987,-11.103190085999788,1.0,0.0,0.0 -344,23.0,4.726494371175099,6.7,0.0,0.0,0.993652842702379,-11.306325422392042,1.0,0.0,0.0 -344,24.0,0.0,0.0,0.0,0.0,0.979963108348349,-10.372606744998278,1.0,0.0,0.0 -344,25.0,1.901463252771592,2.3,0.0,0.0,0.9659055009910016,-10.455798260945045,1.0,0.0,0.0 -344,26.0,0.0,0.0,0.0,0.0,0.9783590815131136,-9.715047556967106,1.0,0.0,0.0 -344,27.0,0.0,0.0,0.0,0.0,0.9490176558010656,-7.111774520494547,1.0,0.0,0.0 -344,28.0,1.3038605161862344,0.9,0.0,0.0,0.9645037703835893,-10.355043526146602,1.0,0.0,0.0 -344,29.0,5.758717279822535,1.9,0.0,0.0,0.9569544047562494,-10.836357853178889,1.0,0.0,0.0 -345,0.0,0.0,0.0,160.4949337478134,0.0005461833216813,1.0,0.0,0.0,0.0,1.0 -345,1.0,11.78907216718387,12.7,6.794679082675136e-07,10.351340341779064,0.9803856989384112,-3.682176601601493,0.0,1.0,0.0 -345,2.0,1.3038605161862344,1.2,0.0,0.0,0.9744098506415716,-4.829303311896871,1.0,0.0,0.0 -345,3.0,4.128891634589742,1.6,0.0,0.0,0.9678304134807476,-5.934584069972915,1.0,0.0,0.0 -345,4.0,51.1765252603097,19.0,-7.577411977952786e-10,24.09506303242611,0.9605584981990672,-8.863046635292365,0.0,1.0,0.0 -345,5.0,0.0,0.0,0.0,0.0,0.9674961873348674,-7.045792868606818,1.0,0.0,0.0 -345,6.0,12.386674903769228,10.9,0.0,0.0,0.9581858932249588,-8.06361950069479,1.0,0.0,0.0 -345,7.0,16.29825645232793,30.0,-5.384013891185134e-10,30.50742455806221,0.9664964497251036,-7.471810468780536,0.0,1.0,0.0 -345,8.0,0.0,0.0,0.0,0.0,1.0158174937754445,-8.845135774993562,1.0,0.0,0.0 -345,9.0,3.1509962474500663,2.0,0.0,0.0,1.0069092091695468,-9.779919750754404,1.0,0.0,0.0 -345,10.0,0.0,0.0,6.725482908891866e-12,22.495391609249697,1.059961017702992,-8.845135774992821,0.0,1.0,0.0 -345,11.0,6.084682408869094,7.5,0.0,0.0,1.0138146182685,-9.314467159259266,1.0,0.0,0.0 -345,12.0,0.0,0.0,-6.948043757598788e-10,9.79039948563856,1.0271587669252111,-9.314467159312787,0.0,1.0,0.0 -345,13.0,3.3683063334811054,1.6,0.0,0.0,1.0028188002826093,-9.779660621515973,1.0,0.0,0.0 -345,14.0,4.4548567636363,2.5,0.0,0.0,0.9995190746750646,-9.806348388799378,1.0,0.0,0.0 -345,15.0,1.901463252771592,1.8,0.0,0.0,1.0046863681289508,-9.61916046849375,1.0,0.0,0.0 -345,16.0,4.8894769356983785,5.8,0.0,0.0,1.0018683893282785,-9.82315242334352,1.0,0.0,0.0 -345,17.0,1.7384806882483126,0.9,0.0,0.0,0.9929723262368104,-10.139745300071397,1.0,0.0,0.0 -345,18.0,5.161114543237178,3.4,0.0,0.0,0.991387463884388,-10.240888105471766,1.0,0.0,0.0 -345,19.0,1.1952054731707151,0.7,0.0,0.0,0.9946514998328506,-10.157184857770613,1.0,0.0,0.0 -345,20.0,9.50731626385796,11.2,0.0,0.0,0.9963672461443164,-9.952416569486928,1.0,0.0,0.0 -345,21.0,0.0,0.0,0.0,0.0,0.996751485665952,-9.949171255283876,1.0,0.0,0.0 -345,22.0,1.7384806882483126,1.6,0.0,0.0,0.991096179719272,-9.98261436195207,1.0,0.0,0.0 -345,23.0,4.726494371175099,6.7,0.0,0.0,0.9865675143702484,-10.072665623891156,1.0,0.0,0.0 -345,24.0,0.0,0.0,0.0,0.0,0.9802347464185532,-9.80226271987408,1.0,0.0,0.0 -345,25.0,1.901463252771592,2.3,0.0,0.0,0.9661811502553752,-9.885407455537306,1.0,0.0,0.0 -345,26.0,0.0,0.0,0.0,0.0,0.983333268105961,-9.555384722346224,1.0,0.0,0.0 -345,27.0,0.0,0.0,0.0,0.0,0.9654704741844504,-7.398042103827559,1.0,0.0,0.0 -345,28.0,1.3038605161862344,0.9,0.0,0.0,0.9695521886255865,-10.18883225234541,1.0,0.0,0.0 -345,29.0,5.758717279822535,1.9,0.0,0.0,0.9620433823219808,-10.665112875658576,1.0,0.0,0.0 -346,0.0,0.0,0.0,160.7102635895609,0.0024895106832012,1.0,0.0,0.0,0.0,1.0 -346,1.0,11.78907216718387,12.7,3.865898519001948e-06,10.37310706384212,0.9803025613277336,-3.67236965354701,0.0,1.0,0.0 -346,2.0,1.3038605161862344,1.2,0.0,0.0,0.9746097751924492,-4.877340375985058,1.0,0.0,0.0 -346,3.0,4.128891634589742,1.6,0.0,0.0,0.9680838490645032,-5.994148570996486,1.0,0.0,0.0 -346,4.0,51.1765252603097,19.0,6.2333374069769305e-09,24.788581308709368,0.9606890573904988,-8.829690659868994,0.0,1.0,0.0 -346,5.0,0.0,0.0,0.0,0.0,0.9664581615436268,-6.955942771253843,1.0,0.0,0.0 -346,6.0,12.386674903769228,10.9,0.0,0.0,0.957627207822694,-7.996548373419249,1.0,0.0,0.0 -346,7.0,16.29825645232793,30.0,5.518292185921001e-09,35.31592595005667,0.9673086121277352,-7.426835253789027,0.0,1.0,0.0 -346,8.0,0.0,0.0,0.0,0.0,1.0245531280949507,-12.014645481736457,1.0,0.0,0.0 -346,9.0,3.1509962474500663,2.0,0.0,0.0,1.0115591415832264,-12.0146454817772,1.0,0.0,0.0 -346,10.0,0.0,0.0,6.699880378203152e-10,12.392997801248896,1.0491235753075594,-12.014645481662171,0.0,1.0,0.0 -346,11.0,6.084682408869094,7.5,0.0,0.0,1.027156294709367,-10.109233370580457,1.0,0.0,0.0 -346,12.0,0.0,0.0,6.558077374430636e-09,14.778764909377252,1.0469192992578509,-10.109233370091266,0.0,1.0,0.0 -346,13.0,3.3683063334811054,1.6,0.0,0.0,0.9973945385981312,-11.036744599327257,1.0,0.0,0.0 -346,14.0,4.4548567636363,2.5,0.0,0.0,1.008066563286809,-10.854930746976072,1.0,0.0,0.0 -346,15.0,1.901463252771592,1.8,0.0,0.0,1.0132589606286746,-11.007657368348948,1.0,0.0,0.0 -346,16.0,4.8894769356983785,5.8,0.0,0.0,1.0080581905294017,-11.797085984450923,1.0,0.0,0.0 -346,17.0,1.7384806882483126,0.9,0.0,0.0,1.0042469315519844,-11.0152632972789,1.0,0.0,0.0 -346,18.0,5.161114543237178,3.4,0.0,0.0,0.992784036417093,-12.687837660454766,1.0,0.0,0.0 -346,19.0,1.1952054731707151,0.7,0.0,0.0,0.99688319320161,-12.551583783900012,1.0,0.0,0.0 -346,20.0,9.50731626385796,11.2,0.0,0.0,1.001100773756146,-12.061827493755994,1.0,0.0,0.0 -346,21.0,0.0,0.0,0.0,0.0,1.001508112105277,-12.018849360481184,1.0,0.0,0.0 -346,22.0,1.7384806882483126,1.6,0.0,0.0,0.9986213224167464,-11.237265110247932,1.0,0.0,0.0 -346,23.0,4.726494371175099,6.7,0.0,0.0,0.9927466890438288,-11.60929833571856,1.0,0.0,0.0 -346,24.0,0.0,0.0,0.0,0.0,0.985890378175779,-10.722047387244256,1.0,0.0,0.0 -346,25.0,1.901463252771592,2.3,0.0,0.0,0.9719197722482724,-10.804227051253692,1.0,0.0,0.0 -346,26.0,0.0,0.0,0.0,0.0,0.9884895020303331,-10.092021138641709,1.0,0.0,0.0 -346,27.0,0.0,0.0,0.0,0.0,0.9651350049433643,-7.396234190738848,1.0,0.0,0.0 -346,28.0,1.3038605161862344,0.9,0.0,0.0,0.9747845126240224,-10.71878662866504,1.0,0.0,0.0 -346,29.0,5.758717279822535,1.9,0.0,0.0,0.9673172789189428,-11.18993326039677,1.0,0.0,0.0 -347,0.0,0.0,0.0,160.4949337478134,0.0005461833216813,1.0,0.0,0.0,0.0,1.0 -347,1.0,11.78907216718387,12.7,6.794679082675136e-07,10.351340341779064,0.9803856989384112,-3.682176601601493,0.0,1.0,0.0 -347,2.0,1.3038605161862344,1.2,0.0,0.0,0.9744098506415716,-4.829303311896871,1.0,0.0,0.0 -347,3.0,4.128891634589742,1.6,0.0,0.0,0.9678304134807476,-5.934584069972915,1.0,0.0,0.0 -347,4.0,51.1765252603097,19.0,-7.577411977952786e-10,24.09506303242611,0.9605584981990672,-8.863046635292365,0.0,1.0,0.0 -347,5.0,0.0,0.0,0.0,0.0,0.9674961873348674,-7.045792868606818,1.0,0.0,0.0 -347,6.0,12.386674903769228,10.9,0.0,0.0,0.9581858932249588,-8.06361950069479,1.0,0.0,0.0 -347,7.0,16.29825645232793,30.0,-5.384013891185134e-10,30.50742455806221,0.9664964497251036,-7.471810468780536,0.0,1.0,0.0 -347,8.0,0.0,0.0,0.0,0.0,1.0158174937754445,-8.845135774993562,1.0,0.0,0.0 -347,9.0,3.1509962474500663,2.0,0.0,0.0,1.0069092091695468,-9.779919750754404,1.0,0.0,0.0 -347,10.0,0.0,0.0,6.725482908891866e-12,22.495391609249697,1.059961017702992,-8.845135774992821,0.0,1.0,0.0 -347,11.0,6.084682408869094,7.5,0.0,0.0,1.0138146182685,-9.314467159259266,1.0,0.0,0.0 -347,12.0,0.0,0.0,-6.948043757598788e-10,9.79039948563856,1.0271587669252111,-9.314467159312787,0.0,1.0,0.0 -347,13.0,3.3683063334811054,1.6,0.0,0.0,1.0028188002826093,-9.779660621515973,1.0,0.0,0.0 -347,14.0,4.4548567636363,2.5,0.0,0.0,0.9995190746750646,-9.806348388799378,1.0,0.0,0.0 -347,15.0,1.901463252771592,1.8,0.0,0.0,1.0046863681289508,-9.61916046849375,1.0,0.0,0.0 -347,16.0,4.8894769356983785,5.8,0.0,0.0,1.0018683893282785,-9.82315242334352,1.0,0.0,0.0 -347,17.0,1.7384806882483126,0.9,0.0,0.0,0.9929723262368104,-10.139745300071397,1.0,0.0,0.0 -347,18.0,5.161114543237178,3.4,0.0,0.0,0.991387463884388,-10.240888105471766,1.0,0.0,0.0 -347,19.0,1.1952054731707151,0.7,0.0,0.0,0.9946514998328506,-10.157184857770613,1.0,0.0,0.0 -347,20.0,9.50731626385796,11.2,0.0,0.0,0.9963672461443164,-9.952416569486928,1.0,0.0,0.0 -347,21.0,0.0,0.0,0.0,0.0,0.996751485665952,-9.949171255283876,1.0,0.0,0.0 -347,22.0,1.7384806882483126,1.6,0.0,0.0,0.991096179719272,-9.98261436195207,1.0,0.0,0.0 -347,23.0,4.726494371175099,6.7,0.0,0.0,0.9865675143702484,-10.072665623891156,1.0,0.0,0.0 -347,24.0,0.0,0.0,0.0,0.0,0.9802347464185532,-9.80226271987408,1.0,0.0,0.0 -347,25.0,1.901463252771592,2.3,0.0,0.0,0.9661811502553752,-9.885407455537306,1.0,0.0,0.0 -347,26.0,0.0,0.0,0.0,0.0,0.983333268105961,-9.555384722346224,1.0,0.0,0.0 -347,27.0,0.0,0.0,0.0,0.0,0.9654704741844504,-7.398042103827559,1.0,0.0,0.0 -347,28.0,1.3038605161862344,0.9,0.0,0.0,0.9695521886255865,-10.18883225234541,1.0,0.0,0.0 -347,29.0,5.758717279822535,1.9,0.0,0.0,0.9620433823219808,-10.665112875658576,1.0,0.0,0.0 -348,0.0,0.0,0.0,113.29890299071982,2.6889948934183394e-06,1.0,0.0,0.0,0.0,1.0 -348,1.0,11.78907216718387,12.7,45.87296949157061,-10.43543567057037,0.9853711830226404,-2.3227299918126825,0.0,1.0,0.0 -348,2.0,1.3038605161862344,1.2,0.0,0.0,0.9808843324077534,-4.091798404891062,1.0,0.0,0.0 -348,3.0,4.128891634589742,1.6,0.0,0.0,0.9757258818398366,-5.017073842758845,1.0,0.0,0.0 -348,4.0,51.1765252603097,19.0,-1.717217580456856e-08,39.999996780053,0.9836863909347588,-7.827414749791432,0.0,1.0,0.0 -348,5.0,0.0,0.0,0.0,0.0,0.9760681803319804,-5.985482983000282,1.0,0.0,0.0 -348,6.0,12.386674903769228,10.9,0.0,0.0,0.972843574650402,-6.999472122374833,1.0,0.0,0.0 -348,7.0,16.29825645232793,30.0,-3.6829457591117713e-08,39.99999871286963,0.9785420891219934,-6.462985765299059,0.0,1.0,0.0 -348,8.0,0.0,0.0,0.0,0.0,1.002193794543796,-7.693339985259531,1.0,0.0,0.0 -348,9.0,3.1509962474500663,2.0,0.0,0.0,1.0047561920051118,-8.590386354572491,1.0,0.0,0.0 -348,10.0,0.0,0.0,0.0,0.0,1.002193794543796,-7.693339985259531,0.0,1.0,0.0 -348,11.0,6.084682408869094,7.5,0.0,0.0,1.031037357732848,-8.469244547125642,1.0,0.0,0.0 -348,12.0,0.0,0.0,-1.1582864392863036e-08,21.928855849148917,1.059999997599208,-8.469244547975775,0.0,1.0,0.0 -348,13.0,3.3683063334811054,1.6,0.0,0.0,1.0178588245940463,-8.906169384370822,1.0,0.0,0.0 -348,14.0,4.4548567636363,2.5,0.0,0.0,1.0124257319643806,-8.865855203813881,1.0,0.0,0.0 -348,15.0,1.901463252771592,1.8,0.0,0.0,1.0138070768704424,-8.584744906822314,1.0,0.0,0.0 -348,16.0,4.8894769356983785,5.8,0.0,0.0,1.003179338461659,-8.695452725221648,1.0,0.0,0.0 -348,17.0,1.7384806882483126,0.9,0.0,0.0,1.000651166146218,-9.10510317828218,1.0,0.0,0.0 -348,18.0,5.161114543237178,3.4,0.0,0.0,0.9959498605638508,-9.151911180868908,1.0,0.0,0.0 -348,19.0,1.1952054731707151,0.7,0.0,0.0,0.997553673753077,-9.040328632439628,1.0,0.0,0.0 -348,20.0,9.50731626385796,11.2,0.0,0.0,0.9953258104432584,-8.777255762902456,1.0,0.0,0.0 -348,21.0,0.0,0.0,0.0,0.0,0.9960663646690848,-8.778893677665241,1.0,0.0,0.0 -348,22.0,1.7384806882483126,1.6,0.0,0.0,1.0001813075734771,-8.982829490263876,1.0,0.0,0.0 -348,23.0,4.726494371175099,6.7,0.0,0.0,0.9904851988176652,-8.997610834112338,1.0,0.0,0.0 -348,24.0,0.0,0.0,0.0,0.0,0.9859231196022228,-8.75453227518724,1.0,0.0,0.0 -348,25.0,1.901463252771592,2.3,0.0,0.0,0.9719529912135204,-8.836706400166516,1.0,0.0,0.0 -348,26.0,0.0,0.0,0.0,0.0,0.9900864212489826,-8.523756649207648,1.0,0.0,0.0 -348,27.0,0.0,0.0,0.0,0.0,0.97451727855139,-6.345376279546389,1.0,0.0,0.0 -348,28.0,1.3038605161862344,0.9,0.0,0.0,0.94000000037805,-10.817268700485446,1.0,0.0,0.0 -348,29.0,5.758717279822535,1.9,0.0,0.0,0.9476761279638992,-10.575990610760822,1.0,0.0,0.0 -349,0.0,0.0,0.0,112.79774660914268,2.286758427061386e-06,1.0,0.0,0.0,0.0,1.0 -349,1.0,11.78907216718387,12.7,46.71036041758981,30.518677186877824,0.98985670519929,-2.3976360486275734,0.0,1.0,0.0 -349,2.0,1.3038605161862344,1.2,0.0,0.0,0.9681192002452378,-3.890853190324167,1.0,0.0,0.0 -349,3.0,4.128891634589742,1.6,0.0,0.0,0.9599813407562516,-4.770083125297593,1.0,0.0,0.0 -349,4.0,51.1765252603097,19.0,9.68621163474944e-09,39.99999656072964,0.9742717347076428,-7.780517881095798,0.0,1.0,0.0 -349,5.0,0.0,0.0,0.0,0.0,0.9528160232847248,-5.609433564767341,1.0,0.0,0.0 -349,6.0,12.386674903769228,10.9,0.0,0.0,0.9551200483845224,-6.762700843052792,1.0,0.0,0.0 -349,7.0,16.29825645232793,30.0,0.0,0.0,0.9400000007215809,-5.849361565473713,0.0,1.0,0.0 -349,8.0,0.0,0.0,0.0,0.0,0.979649530106613,-7.316304370877955,1.0,0.0,0.0 -349,9.0,3.1509962474500663,2.0,0.0,0.0,0.9828537390499515,-8.210978157851208,1.0,0.0,0.0 -349,10.0,0.0,0.0,0.0,0.0,0.979649530106613,-7.316304370877955,0.0,1.0,0.0 -349,11.0,6.084682408869094,7.5,0.0,0.0,1.011958420997421,-8.511494830846141,1.0,0.0,0.0 -349,12.0,0.0,0.0,2.02468232535358e-08,23.999997799004507,1.0441380702933856,-8.511494829309097,0.0,1.0,0.0 -349,13.0,3.3683063334811054,1.6,0.0,0.0,0.99723099780416,-9.023838127373356,1.0,0.0,0.0 -349,14.0,4.4548567636363,2.5,0.0,0.0,0.9900495206160737,-9.010243421904812,1.0,0.0,0.0 -349,15.0,1.901463252771592,1.8,0.0,0.0,0.9936520218929182,-8.4463833124769,1.0,0.0,0.0 -349,16.0,4.8894769356983785,5.8,0.0,0.0,0.981633722814188,-8.398433649101873,1.0,0.0,0.0 -349,17.0,1.7384806882483126,0.9,0.0,0.0,0.9725704297867156,-9.63279161610969,1.0,0.0,0.0 -349,18.0,5.161114543237178,3.4,0.0,0.0,0.9645861520506476,-9.907357142836856,1.0,0.0,0.0 -349,19.0,1.1952054731707151,0.7,0.0,0.0,0.980218126979662,-8.320571616091712,1.0,0.0,0.0 -349,20.0,9.50731626385796,11.2,0.0,0.0,0.9730075032857184,-8.433406964648302,1.0,0.0,0.0 -349,21.0,0.0,0.0,0.0,0.0,0.9736989252491316,-8.443719679701555,1.0,0.0,0.0 -349,22.0,1.7384806882483126,1.6,0.0,0.0,0.9772294005624136,-8.977973035073022,1.0,0.0,0.0 -349,23.0,4.726494371175099,6.7,0.0,0.0,0.9669066532488948,-8.782379016858524,1.0,0.0,0.0 -349,24.0,0.0,0.0,0.0,0.0,0.9609974320635593,-8.480992163954673,1.0,0.0,0.0 -349,25.0,1.901463252771592,2.3,0.0,0.0,0.9466538999009356,-8.567550711978436,1.0,0.0,0.0 -349,26.0,0.0,0.0,0.0,0.0,0.964498816638502,-8.211040633910237,1.0,0.0,0.0 -349,27.0,0.0,0.0,0.0,0.0,0.94791282010908,-5.93480553360161,1.0,0.0,0.0 -349,28.0,1.3038605161862344,0.9,0.0,0.0,0.9504322544150164,-8.869831605103318,1.0,0.0,0.0 -349,29.0,5.758717279822535,1.9,0.0,0.0,0.9427674521414529,-9.365606422185946,1.0,0.0,0.0 -350,0.0,0.0,0.0,160.4949337478134,0.0005461833216813,1.0,0.0,0.0,0.0,1.0 -350,1.0,11.78907216718387,12.7,6.794679082675136e-07,10.351340341779064,0.9803856989384112,-3.682176601601493,0.0,1.0,0.0 -350,2.0,1.3038605161862344,1.2,0.0,0.0,0.9744098506415716,-4.829303311896871,1.0,0.0,0.0 -350,3.0,4.128891634589742,1.6,0.0,0.0,0.9678304134807476,-5.934584069972915,1.0,0.0,0.0 -350,4.0,51.1765252603097,19.0,-7.577411977952786e-10,24.09506303242611,0.9605584981990672,-8.863046635292365,0.0,1.0,0.0 -350,5.0,0.0,0.0,0.0,0.0,0.9674961873348674,-7.045792868606818,1.0,0.0,0.0 -350,6.0,12.386674903769228,10.9,0.0,0.0,0.9581858932249588,-8.06361950069479,1.0,0.0,0.0 -350,7.0,16.29825645232793,30.0,-5.384013891185134e-10,30.50742455806221,0.9664964497251036,-7.471810468780536,0.0,1.0,0.0 -350,8.0,0.0,0.0,0.0,0.0,1.0158174937754445,-8.845135774993562,1.0,0.0,0.0 -350,9.0,3.1509962474500663,2.0,0.0,0.0,1.0069092091695468,-9.779919750754404,1.0,0.0,0.0 -350,10.0,0.0,0.0,6.725482908891866e-12,22.495391609249697,1.059961017702992,-8.845135774992821,0.0,1.0,0.0 -350,11.0,6.084682408869094,7.5,0.0,0.0,1.0138146182685,-9.314467159259266,1.0,0.0,0.0 -350,12.0,0.0,0.0,-6.948043757598788e-10,9.79039948563856,1.0271587669252111,-9.314467159312787,0.0,1.0,0.0 -350,13.0,3.3683063334811054,1.6,0.0,0.0,1.0028188002826093,-9.779660621515973,1.0,0.0,0.0 -350,14.0,4.4548567636363,2.5,0.0,0.0,0.9995190746750646,-9.806348388799378,1.0,0.0,0.0 -350,15.0,1.901463252771592,1.8,0.0,0.0,1.0046863681289508,-9.61916046849375,1.0,0.0,0.0 -350,16.0,4.8894769356983785,5.8,0.0,0.0,1.0018683893282785,-9.82315242334352,1.0,0.0,0.0 -350,17.0,1.7384806882483126,0.9,0.0,0.0,0.9929723262368104,-10.139745300071397,1.0,0.0,0.0 -350,18.0,5.161114543237178,3.4,0.0,0.0,0.991387463884388,-10.240888105471766,1.0,0.0,0.0 -350,19.0,1.1952054731707151,0.7,0.0,0.0,0.9946514998328506,-10.157184857770613,1.0,0.0,0.0 -350,20.0,9.50731626385796,11.2,0.0,0.0,0.9963672461443164,-9.952416569486928,1.0,0.0,0.0 -350,21.0,0.0,0.0,0.0,0.0,0.996751485665952,-9.949171255283876,1.0,0.0,0.0 -350,22.0,1.7384806882483126,1.6,0.0,0.0,0.991096179719272,-9.98261436195207,1.0,0.0,0.0 -350,23.0,4.726494371175099,6.7,0.0,0.0,0.9865675143702484,-10.072665623891156,1.0,0.0,0.0 -350,24.0,0.0,0.0,0.0,0.0,0.9802347464185532,-9.80226271987408,1.0,0.0,0.0 -350,25.0,1.901463252771592,2.3,0.0,0.0,0.9661811502553752,-9.885407455537306,1.0,0.0,0.0 -350,26.0,0.0,0.0,0.0,0.0,0.983333268105961,-9.555384722346224,1.0,0.0,0.0 -350,27.0,0.0,0.0,0.0,0.0,0.9654704741844504,-7.398042103827559,1.0,0.0,0.0 -350,28.0,1.3038605161862344,0.9,0.0,0.0,0.9695521886255865,-10.18883225234541,1.0,0.0,0.0 -350,29.0,5.758717279822535,1.9,0.0,0.0,0.9620433823219808,-10.665112875658576,1.0,0.0,0.0 -351,0.0,0.0,0.0,107.8012133106584,4.286679455844933e-07,1.0,0.0,0.0,0.0,1.0 -351,1.0,11.78907216718387,12.7,51.76303700723225,-19.34928596372858,0.984962637289926,-2.1582080504103147,0.0,1.0,0.0 -351,2.0,1.3038605161862344,1.2,0.0,0.0,0.9845642467264302,-4.01175502237364,1.0,0.0,0.0 -351,3.0,4.128891634589742,1.6,0.0,0.0,0.9802545325042044,-4.917053020835354,1.0,0.0,0.0 -351,4.0,51.1765252603097,19.0,-2.0582942502380597e-09,39.99999940220397,0.9855192275684606,-7.752702624831449,0.0,1.0,0.0 -351,5.0,0.0,0.0,0.0,0.0,0.9800691171653872,-6.040180447631004,1.0,0.0,0.0 -351,6.0,12.386674903769228,10.9,0.0,0.0,0.9759697446958968,-7.000496334283485,1.0,0.0,0.0 -351,7.0,16.29825645232793,30.0,-3.005422466912736e-09,39.99999951181119,0.9823778987105888,-6.52262519775496,0.0,1.0,0.0 -351,8.0,0.0,0.0,0.0,0.0,1.019832202562185,-8.173365676669118,1.0,0.0,0.0 -351,9.0,3.1509962474500663,2.0,0.0,0.0,1.008519151194209,-9.294142073099328,1.0,0.0,0.0 -351,10.0,0.0,0.0,-2.9854875881594475e-09,20.47012741620125,1.0599999997651404,-8.173365676998246,0.0,1.0,0.0 -351,11.0,6.084682408869094,7.5,0.0,0.0,1.0445877255548734,-7.269625086939475,1.0,0.0,0.0 -351,12.0,0.0,0.0,-2.494001899681366e-09,11.669293167667426,1.0599999995563565,-7.26962508712015,0.0,1.0,0.0 -351,13.0,3.3683063334811054,1.6,0.0,0.0,0.9400000015675546,-11.41471986244017,1.0,0.0,0.0 -351,14.0,4.4548567636363,2.5,0.0,0.0,0.9513243082863816,-11.210298182536183,1.0,0.0,0.0 -351,15.0,1.901463252771592,1.8,0.0,0.0,1.0217815136896085,-8.166396943011625,1.0,0.0,0.0 -351,16.0,4.8894769356983785,5.8,0.0,0.0,1.0086660634491251,-9.05005114891999,1.0,0.0,0.0 -351,17.0,1.7384806882483126,0.9,0.0,0.0,0.9620910999264172,-10.8866022054849,1.0,0.0,0.0 -351,18.0,5.161114543237178,3.4,0.0,0.0,0.9708600015881887,-10.597351716835943,1.0,0.0,0.0 -351,19.0,1.1952054731707151,0.7,0.0,0.0,0.9797041711462604,-10.306931856076204,1.0,0.0,0.0 -351,20.0,9.50731626385796,11.2,0.0,0.0,0.9957201402988326,-9.558721536555518,1.0,0.0,0.0 -351,21.0,0.0,0.0,0.0,0.0,0.9953790783532922,-9.584320781682704,1.0,0.0,0.0 -351,22.0,1.7384806882483126,1.6,0.0,0.0,0.9584136582614904,-10.771410962133032,1.0,0.0,0.0 -351,23.0,4.726494371175099,6.7,0.0,0.0,0.9748367447156566,-10.039215103791197,1.0,0.0,0.0 -351,24.0,0.0,0.0,0.0,0.0,0.9788322883677828,-9.510246454462491,1.0,0.0,0.0 -351,25.0,1.901463252771592,2.3,0.0,0.0,0.964757957668596,-9.593633154955308,1.0,0.0,0.0 -351,26.0,0.0,0.0,0.0,0.0,0.9882855714716428,-9.094175199659462,1.0,0.0,0.0 -351,27.0,0.0,0.0,0.0,0.0,0.977564770276242,-6.445933566451049,1.0,0.0,0.0 -351,28.0,1.3038605161862344,0.9,0.0,0.0,0.9745775891227416,-9.721202944432068,1.0,0.0,0.0 -351,29.0,5.758717279822535,1.9,0.0,0.0,0.967108720236856,-10.192551027225988,1.0,0.0,0.0 -352,0.0,0.0,0.0,161.7051943562397,0.0067883993119188,1.0,0.0,0.0,0.0,1.0 -352,1.0,11.78907216718387,12.7,3.6243638193854336e-06,31.56772862632701,0.9819554292342262,-3.92102325064376,0.0,1.0,0.0 -352,2.0,1.3038605161862344,1.2,0.0,0.0,0.9687963271779276,-4.285299858926559,1.0,0.0,0.0 -352,3.0,4.128891634589742,1.6,0.0,0.0,0.9608471377876684,-5.2605884599699575,1.0,0.0,0.0 -352,4.0,51.1765252603097,19.0,4.25530979291696e-09,36.0097460987609,0.9609074625946472,-11.89089894810178,0.0,1.0,0.0 -352,5.0,0.0,0.0,0.0,0.0,0.9531995187077662,-5.794676683193203,1.0,0.0,0.0 -352,6.0,12.386674903769228,10.9,0.0,0.0,0.942505958628647,-12.509085534507868,1.0,0.0,0.0 -352,7.0,16.29825645232793,30.0,0.0,0.0,0.9405094063491862,-6.049126004719602,0.0,1.0,0.0 -352,8.0,0.0,0.0,0.0,0.0,1.03175970072155,-10.795328264541803,1.0,0.0,0.0 -352,9.0,3.1509962474500663,2.0,0.0,0.0,1.0168304474038403,-10.795328264871978,1.0,0.0,0.0 -352,10.0,0.0,0.0,5.496147067754919e-09,14.386229677776356,1.0599895614834771,-10.795328263942888,0.0,1.0,0.0 -352,11.0,6.084682408869094,7.5,0.0,0.0,1.0307105730764534,-9.459329042573485,1.0,0.0,0.0 -352,12.0,0.0,0.0,1.816109409928131e-09,22.170650595209835,1.0599927643123803,-9.459329042440148,0.0,1.0,0.0 -352,13.0,3.3683063334811054,1.6,0.0,0.0,0.9967103874985596,-10.484188661054906,1.0,0.0,0.0 -352,14.0,4.4548567636363,2.5,0.0,0.0,1.007389744463909,-10.30212777350005,1.0,0.0,0.0 -352,15.0,1.901463252771592,1.8,0.0,0.0,1.0180155582569357,-10.118031285085769,1.0,0.0,0.0 -352,16.0,4.8894769356983785,5.8,0.0,0.0,1.0130849408204992,-10.679249043692607,1.0,0.0,0.0 -352,17.0,1.7384806882483126,0.9,0.0,0.0,1.0015958660714894,-10.81301702068414,1.0,0.0,0.0 -352,18.0,5.161114543237178,3.4,0.0,0.0,1.0004505657675202,-11.021524711123798,1.0,0.0,0.0 -352,19.0,1.1952054731707151,0.7,0.0,0.0,1.0039066661192404,-10.996835909204249,1.0,0.0,0.0 -352,20.0,9.50731626385796,11.2,0.0,0.0,0.9836858194713102,-11.018428209253464,1.0,0.0,0.0 -352,21.0,0.0,0.0,0.0,0.0,0.9874944622497208,-10.96271658372661,1.0,0.0,0.0 -352,22.0,1.7384806882483126,1.6,0.0,0.0,0.993364639066683,-10.5226368545026,1.0,0.0,0.0 -352,23.0,4.726494371175099,6.7,0.0,0.0,0.981362312045806,-10.678116483312628,1.0,0.0,0.0 -352,24.0,0.0,0.0,0.0,0.0,0.9724895195914174,-9.693500717352393,1.0,0.0,0.0 -352,25.0,1.901463252771592,2.3,0.0,0.0,0.9583206334920268,-9.777995061574696,1.0,0.0,0.0 -352,26.0,0.0,0.0,0.0,0.0,0.9739303482009584,-9.001120242164847,1.0,0.0,0.0 -352,27.0,0.0,0.0,0.0,0.0,0.9489567090565236,-6.206500926530961,1.0,0.0,0.0 -352,28.0,1.3038605161862344,0.9,0.0,0.0,0.9600082497047016,-9.647032857630505,1.0,0.0,0.0 -352,29.0,5.758717279822535,1.9,0.0,0.0,0.9524223904442785,-10.132897249158615,1.0,0.0,0.0 -353,0.0,0.0,0.0,160.4949337478134,0.0005461833216813,1.0,0.0,0.0,0.0,1.0 -353,1.0,11.78907216718387,12.7,6.794679082675136e-07,10.351340341779064,0.9803856989384112,-3.682176601601493,0.0,1.0,0.0 -353,2.0,1.3038605161862344,1.2,0.0,0.0,0.9744098506415716,-4.829303311896871,1.0,0.0,0.0 -353,3.0,4.128891634589742,1.6,0.0,0.0,0.9678304134807476,-5.934584069972915,1.0,0.0,0.0 -353,4.0,51.1765252603097,19.0,-7.577411977952786e-10,24.09506303242611,0.9605584981990672,-8.863046635292365,0.0,1.0,0.0 -353,5.0,0.0,0.0,0.0,0.0,0.9674961873348674,-7.045792868606818,1.0,0.0,0.0 -353,6.0,12.386674903769228,10.9,0.0,0.0,0.9581858932249588,-8.06361950069479,1.0,0.0,0.0 -353,7.0,16.29825645232793,30.0,-5.384013891185134e-10,30.50742455806221,0.9664964497251036,-7.471810468780536,0.0,1.0,0.0 -353,8.0,0.0,0.0,0.0,0.0,1.0158174937754445,-8.845135774993562,1.0,0.0,0.0 -353,9.0,3.1509962474500663,2.0,0.0,0.0,1.0069092091695468,-9.779919750754404,1.0,0.0,0.0 -353,10.0,0.0,0.0,6.725482908891866e-12,22.495391609249697,1.059961017702992,-8.845135774992821,0.0,1.0,0.0 -353,11.0,6.084682408869094,7.5,0.0,0.0,1.0138146182685,-9.314467159259266,1.0,0.0,0.0 -353,12.0,0.0,0.0,-6.948043757598788e-10,9.79039948563856,1.0271587669252111,-9.314467159312787,0.0,1.0,0.0 -353,13.0,3.3683063334811054,1.6,0.0,0.0,1.0028188002826093,-9.779660621515973,1.0,0.0,0.0 -353,14.0,4.4548567636363,2.5,0.0,0.0,0.9995190746750646,-9.806348388799378,1.0,0.0,0.0 -353,15.0,1.901463252771592,1.8,0.0,0.0,1.0046863681289508,-9.61916046849375,1.0,0.0,0.0 -353,16.0,4.8894769356983785,5.8,0.0,0.0,1.0018683893282785,-9.82315242334352,1.0,0.0,0.0 -353,17.0,1.7384806882483126,0.9,0.0,0.0,0.9929723262368104,-10.139745300071397,1.0,0.0,0.0 -353,18.0,5.161114543237178,3.4,0.0,0.0,0.991387463884388,-10.240888105471766,1.0,0.0,0.0 -353,19.0,1.1952054731707151,0.7,0.0,0.0,0.9946514998328506,-10.157184857770613,1.0,0.0,0.0 -353,20.0,9.50731626385796,11.2,0.0,0.0,0.9963672461443164,-9.952416569486928,1.0,0.0,0.0 -353,21.0,0.0,0.0,0.0,0.0,0.996751485665952,-9.949171255283876,1.0,0.0,0.0 -353,22.0,1.7384806882483126,1.6,0.0,0.0,0.991096179719272,-9.98261436195207,1.0,0.0,0.0 -353,23.0,4.726494371175099,6.7,0.0,0.0,0.9865675143702484,-10.072665623891156,1.0,0.0,0.0 -353,24.0,0.0,0.0,0.0,0.0,0.9802347464185532,-9.80226271987408,1.0,0.0,0.0 -353,25.0,1.901463252771592,2.3,0.0,0.0,0.9661811502553752,-9.885407455537306,1.0,0.0,0.0 -353,26.0,0.0,0.0,0.0,0.0,0.983333268105961,-9.555384722346224,1.0,0.0,0.0 -353,27.0,0.0,0.0,0.0,0.0,0.9654704741844504,-7.398042103827559,1.0,0.0,0.0 -353,28.0,1.3038605161862344,0.9,0.0,0.0,0.9695521886255865,-10.18883225234541,1.0,0.0,0.0 -353,29.0,5.758717279822535,1.9,0.0,0.0,0.9620433823219808,-10.665112875658576,1.0,0.0,0.0 -354,0.0,0.0,0.0,160.89512948589845,0.0005911295864358,1.0,0.0,0.0,0.0,1.0 -354,1.0,11.78907216718387,12.7,1.6255284663989988e-06,-17.559674695169704,0.977982481311022,-3.64303578964558,0.0,1.0,0.0 -354,2.0,1.3038605161862344,1.2,0.0,0.0,0.9812004178257964,-4.948771392625281,1.0,0.0,0.0 -354,3.0,4.128891634589742,1.6,0.0,0.0,0.9762161788911276,-6.079598089033492,1.0,0.0,0.0 -354,4.0,51.1765252603097,19.0,-3.899680527220126e-09,39.35193881588128,0.9802928849743971,-9.088798097405348,0.0,1.0,0.0 -354,5.0,0.0,0.0,0.0,0.0,0.978204447198642,-7.179666167314832,1.0,0.0,0.0 -354,6.0,12.386674903769228,10.9,0.0,0.0,0.9727274420253206,-8.223601644946092,1.0,0.0,0.0 -354,7.0,16.29825645232793,30.0,-8.485947092216262e-09,39.99987850034481,0.9798433046980164,-7.857303026121284,0.0,1.0,0.0 -354,8.0,0.0,0.0,0.0,0.0,1.024991511695095,-8.979606359489756,1.0,0.0,0.0 -354,9.0,3.1509962474500663,2.0,0.0,0.0,1.019980054542579,-9.912934358163756,1.0,0.0,0.0 -354,10.0,0.0,0.0,-6.3856516757051015e-09,17.840644581197786,1.0599995827662645,-8.979606360190187,0.0,1.0,0.0 -354,11.0,6.084682408869094,7.5,0.0,0.0,1.0353605930935823,-9.551984800313337,1.0,0.0,0.0 -354,12.0,0.0,0.0,-3.0470137256220764e-09,18.655370528051467,1.059999767128519,-9.551984800536037,0.0,1.0,0.0 -354,13.0,3.3683063334811054,1.6,0.0,0.0,1.0234104846516443,-10.013121759347785,1.0,0.0,0.0 -354,14.0,4.4548567636363,2.5,0.0,0.0,1.0189303202154656,-10.02717811279549,1.0,0.0,0.0 -354,15.0,1.901463252771592,1.8,0.0,0.0,1.022735769250556,-9.790338803158784,1.0,0.0,0.0 -354,16.0,4.8894769356983785,5.8,0.0,0.0,1.0165422322298088,-9.971231292142596,1.0,0.0,0.0 -354,17.0,1.7384806882483126,0.9,0.0,0.0,1.010310564886007,-10.31735006862577,1.0,0.0,0.0 -354,18.0,5.161114543237178,3.4,0.0,0.0,1.0074571518542286,-10.39624264804768,1.0,0.0,0.0 -354,19.0,1.1952054731707151,0.7,0.0,0.0,1.0099873984431595,-10.30496978801382,1.0,0.0,0.0 -354,20.0,9.50731626385796,11.2,0.0,0.0,1.0096826718160894,-10.115650853539316,1.0,0.0,0.0 -354,21.0,0.0,0.0,0.0,0.0,1.01009174821041,-10.123679376373495,1.0,0.0,0.0 -354,22.0,1.7384806882483126,1.6,0.0,0.0,1.00805734676348,-10.244362782684426,1.0,0.0,0.0 -354,23.0,4.726494371175099,6.7,0.0,0.0,1.000160529507015,-10.396772921314454,1.0,0.0,0.0 -354,24.0,0.0,0.0,0.0,0.0,0.98957544709119,-10.464276586996444,1.0,0.0,0.0 -354,25.0,1.901463252771592,2.3,0.0,0.0,0.9756583825494882,-10.545836493998417,1.0,0.0,0.0 -354,26.0,0.0,0.0,0.0,0.0,0.9900865467902588,-10.435202494272682,1.0,0.0,0.0 -354,27.0,0.0,0.0,0.0,0.0,0.9715974450614548,-8.708332671942227,1.0,0.0,0.0 -354,28.0,1.3038605161862344,0.9,0.0,0.0,0.9400001338956144,-12.72871394346008,1.0,0.0,0.0 -354,29.0,5.758717279822535,1.9,0.0,0.0,0.9476762602462436,-12.487435913243608,1.0,0.0,0.0 -355,0.0,0.0,0.0,160.4949337478134,0.0005461833216813,1.0,0.0,0.0,0.0,1.0 -355,1.0,11.78907216718387,12.7,6.794679082675136e-07,10.351340341779064,0.9803856989384112,-3.682176601601493,0.0,1.0,0.0 -355,2.0,1.3038605161862344,1.2,0.0,0.0,0.9744098506415716,-4.829303311896871,1.0,0.0,0.0 -355,3.0,4.128891634589742,1.6,0.0,0.0,0.9678304134807476,-5.934584069972915,1.0,0.0,0.0 -355,4.0,51.1765252603097,19.0,-7.577411977952786e-10,24.09506303242611,0.9605584981990672,-8.863046635292365,0.0,1.0,0.0 -355,5.0,0.0,0.0,0.0,0.0,0.9674961873348674,-7.045792868606818,1.0,0.0,0.0 -355,6.0,12.386674903769228,10.9,0.0,0.0,0.9581858932249588,-8.06361950069479,1.0,0.0,0.0 -355,7.0,16.29825645232793,30.0,-5.384013891185134e-10,30.50742455806221,0.9664964497251036,-7.471810468780536,0.0,1.0,0.0 -355,8.0,0.0,0.0,0.0,0.0,1.0158174937754445,-8.845135774993562,1.0,0.0,0.0 -355,9.0,3.1509962474500663,2.0,0.0,0.0,1.0069092091695468,-9.779919750754404,1.0,0.0,0.0 -355,10.0,0.0,0.0,6.725482908891866e-12,22.495391609249697,1.059961017702992,-8.845135774992821,0.0,1.0,0.0 -355,11.0,6.084682408869094,7.5,0.0,0.0,1.0138146182685,-9.314467159259266,1.0,0.0,0.0 -355,12.0,0.0,0.0,-6.948043757598788e-10,9.79039948563856,1.0271587669252111,-9.314467159312787,0.0,1.0,0.0 -355,13.0,3.3683063334811054,1.6,0.0,0.0,1.0028188002826093,-9.779660621515973,1.0,0.0,0.0 -355,14.0,4.4548567636363,2.5,0.0,0.0,0.9995190746750646,-9.806348388799378,1.0,0.0,0.0 -355,15.0,1.901463252771592,1.8,0.0,0.0,1.0046863681289508,-9.61916046849375,1.0,0.0,0.0 -355,16.0,4.8894769356983785,5.8,0.0,0.0,1.0018683893282785,-9.82315242334352,1.0,0.0,0.0 -355,17.0,1.7384806882483126,0.9,0.0,0.0,0.9929723262368104,-10.139745300071397,1.0,0.0,0.0 -355,18.0,5.161114543237178,3.4,0.0,0.0,0.991387463884388,-10.240888105471766,1.0,0.0,0.0 -355,19.0,1.1952054731707151,0.7,0.0,0.0,0.9946514998328506,-10.157184857770613,1.0,0.0,0.0 -355,20.0,9.50731626385796,11.2,0.0,0.0,0.9963672461443164,-9.952416569486928,1.0,0.0,0.0 -355,21.0,0.0,0.0,0.0,0.0,0.996751485665952,-9.949171255283876,1.0,0.0,0.0 -355,22.0,1.7384806882483126,1.6,0.0,0.0,0.991096179719272,-9.98261436195207,1.0,0.0,0.0 -355,23.0,4.726494371175099,6.7,0.0,0.0,0.9865675143702484,-10.072665623891156,1.0,0.0,0.0 -355,24.0,0.0,0.0,0.0,0.0,0.9802347464185532,-9.80226271987408,1.0,0.0,0.0 -355,25.0,1.901463252771592,2.3,0.0,0.0,0.9661811502553752,-9.885407455537306,1.0,0.0,0.0 -355,26.0,0.0,0.0,0.0,0.0,0.983333268105961,-9.555384722346224,1.0,0.0,0.0 -355,27.0,0.0,0.0,0.0,0.0,0.9654704741844504,-7.398042103827559,1.0,0.0,0.0 -355,28.0,1.3038605161862344,0.9,0.0,0.0,0.9695521886255865,-10.18883225234541,1.0,0.0,0.0 -355,29.0,5.758717279822535,1.9,0.0,0.0,0.9620433823219808,-10.665112875658576,1.0,0.0,0.0 -356,0.0,0.0,0.0,160.6970442037424,0.0042558692006089,1.0,0.0,0.0,0.0,1.0 -356,1.0,11.78907216718387,12.7,1.5662147309500135e-06,22.99055497362584,0.9815388583688854,-3.7905478593872335,0.0,1.0,0.0 -356,2.0,1.3038605161862344,1.2,0.0,0.0,0.9707137629876074,-4.555035529519032,1.0,0.0,0.0 -356,3.0,4.128891634589742,1.6,0.0,0.0,0.9632393467558916,-5.595348343002915,1.0,0.0,0.0 -356,4.0,51.1765252603097,19.0,-2.6203332216112317e-09,22.74476591800294,0.96215012840026,-10.123024843866128,0.0,1.0,0.0 -356,5.0,0.0,0.0,0.0,0.0,0.9576686585535492,-6.508896462177147,1.0,0.0,0.0 -356,6.0,12.386674903769228,10.9,0.0,0.0,0.9453418973292552,-6.98036839937995,1.0,0.0,0.0 -356,7.0,16.29825645232793,30.0,7.088348315564287e-10,39.99942165696456,0.9601501142155928,-7.013313357282819,0.0,1.0,0.0 -356,8.0,0.0,0.0,0.0,0.0,0.975797239122629,-8.381170809920922,1.0,0.0,0.0 -356,9.0,3.1509962474500663,2.0,0.0,0.0,0.974415077166375,-9.376062475848633,1.0,0.0,0.0 -356,10.0,0.0,0.0,0.0,0.0,0.975797239122629,-8.381170809920922,0.0,1.0,0.0 -356,11.0,6.084682408869094,7.5,0.0,0.0,1.023759475987882,-8.877549514522286,1.0,0.0,0.0 -356,12.0,0.0,0.0,4.097922655615733e-11,18.88519978420729,1.0489645970866506,-8.87754951451923,0.0,1.0,0.0 -356,13.0,3.3683063334811054,1.6,0.0,0.0,1.0104967588538012,-9.344417366182531,1.0,0.0,0.0 -356,14.0,4.4548567636363,2.5,0.0,0.0,1.0048716439800158,-9.327235981937514,1.0,0.0,0.0 -356,15.0,1.901463252771592,1.8,0.0,0.0,1.0184814694415654,-8.991693157446198,1.0,0.0,0.0 -356,16.0,4.8894769356983785,5.8,0.0,0.0,0.9677107175352886,-9.512923744705985,1.0,0.0,0.0 -356,17.0,1.7384806882483126,0.9,0.0,0.0,0.9848814510812376,-9.686418187935825,1.0,0.0,0.0 -356,18.0,5.161114543237178,3.4,0.0,0.0,0.9753565741072298,-9.803905505143067,1.0,0.0,0.0 -356,19.0,1.1952054731707151,0.7,0.0,0.0,0.9744996459436974,-9.723377520135545,1.0,0.0,0.0 -356,20.0,9.50731626385796,11.2,0.0,0.0,0.9635999887795712,-9.573113702152371,1.0,0.0,0.0 -356,21.0,0.0,0.0,0.0,0.0,0.964023285018498,-9.573779305799915,1.0,0.0,0.0 -356,22.0,1.7384806882483126,1.6,0.0,0.0,0.9998988415663904,-9.436250167948517,1.0,0.0,0.0 -356,23.0,4.726494371175099,6.7,0.0,0.0,0.9537397469019896,-9.763780648660187,1.0,0.0,0.0 -356,24.0,0.0,0.0,0.0,0.0,0.9547043911144494,-9.513189268300248,1.0,0.0,0.0 -356,25.0,1.901463252771592,2.3,0.0,0.0,0.9402633576584968,-9.600910554291712,1.0,0.0,0.0 -356,26.0,0.0,0.0,0.0,0.0,0.9625380504738156,-9.266330228213038,1.0,0.0,0.0 -356,27.0,0.0,0.0,0.0,0.0,0.952705192125369,-6.837148788599914,1.0,0.0,0.0 -356,28.0,1.3038605161862344,0.9,0.0,0.0,0.9484410665930386,-9.927847139406628,1.0,0.0,0.0 -356,29.0,5.758717279822535,1.9,0.0,0.0,0.9407596392077436,-10.425720843623184,1.0,0.0,0.0 -357,0.0,0.0,0.0,160.4949337478134,0.0005461833216813,1.0,0.0,0.0,0.0,1.0 -357,1.0,11.78907216718387,12.7,6.794679082675136e-07,10.351340341779064,0.9803856989384112,-3.682176601601493,0.0,1.0,0.0 -357,2.0,1.3038605161862344,1.2,0.0,0.0,0.9744098506415716,-4.829303311896871,1.0,0.0,0.0 -357,3.0,4.128891634589742,1.6,0.0,0.0,0.9678304134807476,-5.934584069972915,1.0,0.0,0.0 -357,4.0,51.1765252603097,19.0,-7.577411977952786e-10,24.09506303242611,0.9605584981990672,-8.863046635292365,0.0,1.0,0.0 -357,5.0,0.0,0.0,0.0,0.0,0.9674961873348674,-7.045792868606818,1.0,0.0,0.0 -357,6.0,12.386674903769228,10.9,0.0,0.0,0.9581858932249588,-8.06361950069479,1.0,0.0,0.0 -357,7.0,16.29825645232793,30.0,-5.384013891185134e-10,30.50742455806221,0.9664964497251036,-7.471810468780536,0.0,1.0,0.0 -357,8.0,0.0,0.0,0.0,0.0,1.0158174937754445,-8.845135774993562,1.0,0.0,0.0 -357,9.0,3.1509962474500663,2.0,0.0,0.0,1.0069092091695468,-9.779919750754404,1.0,0.0,0.0 -357,10.0,0.0,0.0,6.725482908891866e-12,22.495391609249697,1.059961017702992,-8.845135774992821,0.0,1.0,0.0 -357,11.0,6.084682408869094,7.5,0.0,0.0,1.0138146182685,-9.314467159259266,1.0,0.0,0.0 -357,12.0,0.0,0.0,-6.948043757598788e-10,9.79039948563856,1.0271587669252111,-9.314467159312787,0.0,1.0,0.0 -357,13.0,3.3683063334811054,1.6,0.0,0.0,1.0028188002826093,-9.779660621515973,1.0,0.0,0.0 -357,14.0,4.4548567636363,2.5,0.0,0.0,0.9995190746750646,-9.806348388799378,1.0,0.0,0.0 -357,15.0,1.901463252771592,1.8,0.0,0.0,1.0046863681289508,-9.61916046849375,1.0,0.0,0.0 -357,16.0,4.8894769356983785,5.8,0.0,0.0,1.0018683893282785,-9.82315242334352,1.0,0.0,0.0 -357,17.0,1.7384806882483126,0.9,0.0,0.0,0.9929723262368104,-10.139745300071397,1.0,0.0,0.0 -357,18.0,5.161114543237178,3.4,0.0,0.0,0.991387463884388,-10.240888105471766,1.0,0.0,0.0 -357,19.0,1.1952054731707151,0.7,0.0,0.0,0.9946514998328506,-10.157184857770613,1.0,0.0,0.0 -357,20.0,9.50731626385796,11.2,0.0,0.0,0.9963672461443164,-9.952416569486928,1.0,0.0,0.0 -357,21.0,0.0,0.0,0.0,0.0,0.996751485665952,-9.949171255283876,1.0,0.0,0.0 -357,22.0,1.7384806882483126,1.6,0.0,0.0,0.991096179719272,-9.98261436195207,1.0,0.0,0.0 -357,23.0,4.726494371175099,6.7,0.0,0.0,0.9865675143702484,-10.072665623891156,1.0,0.0,0.0 -357,24.0,0.0,0.0,0.0,0.0,0.9802347464185532,-9.80226271987408,1.0,0.0,0.0 -357,25.0,1.901463252771592,2.3,0.0,0.0,0.9661811502553752,-9.885407455537306,1.0,0.0,0.0 -357,26.0,0.0,0.0,0.0,0.0,0.983333268105961,-9.555384722346224,1.0,0.0,0.0 -357,27.0,0.0,0.0,0.0,0.0,0.9654704741844504,-7.398042103827559,1.0,0.0,0.0 -357,28.0,1.3038605161862344,0.9,0.0,0.0,0.9695521886255865,-10.18883225234541,1.0,0.0,0.0 -357,29.0,5.758717279822535,1.9,0.0,0.0,0.9620433823219808,-10.665112875658576,1.0,0.0,0.0 -358,0.0,0.0,0.0,160.59818389657886,0.0007317245905191,1.0,0.0,0.0,0.0,1.0 -358,1.0,11.78907216718387,12.7,1.005687097159077e-06,9.413348604523634,0.980271424471453,-3.6806060305476818,0.0,1.0,0.0 -358,2.0,1.3038605161862344,1.2,0.0,0.0,0.9747050732379552,-4.842545583107991,1.0,0.0,0.0 -358,3.0,4.128891634589742,1.6,0.0,0.0,0.9681961363241112,-5.950892870157998,1.0,0.0,0.0 -358,4.0,51.1765252603097,19.0,-8.536469606253933e-10,23.90230069285859,0.96060646152121,-8.859764289559761,0.0,1.0,0.0 -358,5.0,0.0,0.0,0.0,0.0,0.9680987432475596,-7.051577567408563,1.0,0.0,0.0 -358,6.0,12.386674903769228,10.9,0.0,0.0,0.9585641900064712,-8.065763010321385,1.0,0.0,0.0 -358,7.0,16.29825645232793,30.0,-2.7303193249551794e-10,33.048713293520066,0.966705650009166,-7.695503604524317,0.0,1.0,0.0 -358,8.0,0.0,0.0,0.0,0.0,1.016120684174126,-8.930266093338778,1.0,0.0,0.0 -358,9.0,3.1509962474500663,2.0,0.0,0.0,1.0072442507864965,-9.906543702799372,1.0,0.0,0.0 -358,10.0,0.0,0.0,7.603906051387353e-10,22.33951999594615,1.0599584420957435,-8.930266093254641,0.0,1.0,0.0 -358,11.0,6.084682408869094,7.5,0.0,0.0,1.0145217528781063,-9.419711967412956,1.0,0.0,0.0 -358,12.0,0.0,0.0,-4.679418495058183e-10,10.10188944988267,1.0282755038686024,-9.41971196744894,0.0,1.0,0.0 -358,13.0,3.3683063334811054,1.6,0.0,0.0,1.0033814542452402,-9.900875999918249,1.0,0.0,0.0 -358,14.0,4.4548567636363,2.5,0.0,0.0,0.999823505303978,-9.94048490310922,1.0,0.0,0.0 -358,15.0,1.901463252771592,1.8,0.0,0.0,1.0052210798874497,-9.732650342701035,1.0,0.0,0.0 -358,16.0,4.8894769356983785,5.8,0.0,0.0,1.0022723213405145,-9.945847306707234,1.0,0.0,0.0 -358,17.0,1.7384806882483126,0.9,0.0,0.0,0.9932911081382296,-10.271026827944072,1.0,0.0,0.0 -358,18.0,5.161114543237178,3.4,0.0,0.0,0.9917138717295252,-10.370525198856898,1.0,0.0,0.0 -358,19.0,1.1952054731707151,0.7,0.0,0.0,0.994980637892702,-10.28604684472884,1.0,0.0,0.0 -358,20.0,9.50731626385796,11.2,0.0,0.0,0.9964398583309112,-10.107994682933256,1.0,0.0,0.0 -358,21.0,0.0,0.0,0.0,0.0,0.9967372626730292,-10.113981215905264,1.0,0.0,0.0 -358,22.0,1.7384806882483126,1.6,0.0,0.0,0.9906637139077334,-10.179360484850523,1.0,0.0,0.0 -358,23.0,4.726494371175099,6.7,0.0,0.0,0.985171312300065,-10.354550160679231,1.0,0.0,0.0 -358,24.0,0.0,0.0,0.0,0.0,0.9752973920204304,-10.407822637379834,1.0,0.0,0.0 -358,25.0,1.901463252771592,2.3,0.0,0.0,0.9611705231208956,-10.491823918815353,1.0,0.0,0.0 -358,26.0,0.0,0.0,0.0,0.0,0.97635003614413,-10.366519260937766,1.0,0.0,0.0 -358,27.0,0.0,0.0,0.0,0.0,0.9582836325385662,-8.577089047001794,1.0,0.0,0.0 -358,28.0,1.3038605161862344,0.9,0.0,0.0,0.9624645095622334,-11.009189079732073,1.0,0.0,0.0 -358,29.0,5.758717279822535,1.9,0.0,0.0,0.9548986339651508,-11.492559433933604,1.0,0.0,0.0 -359,0.0,0.0,0.0,139.2747938580999,2.067645743508706e-05,1.0,0.0,0.0,0.0,1.0 -359,1.0,11.78907216718387,12.7,23.0378183518864,1.2139827209507672,0.9734880438797158,-4.611824711498796,0.0,1.0,0.0 -359,2.0,1.3038605161862344,1.2,0.0,0.0,1.00079987781564,-0.1451365004805594,1.0,0.0,0.0 -359,3.0,4.128891634589742,1.6,0.0,0.0,0.9556833436128503,-9.571046366081864,1.0,0.0,0.0 -359,4.0,51.1765252603097,19.0,-7.370729482984642e-11,27.78352630424429,0.9562931570099868,-10.931984845266454,0.0,1.0,0.0 -359,5.0,0.0,0.0,0.0,0.0,0.9579545362262692,-10.082440075625112,1.0,0.0,0.0 -359,6.0,12.386674903769228,10.9,0.0,0.0,0.9505749221422972,-10.706948308495967,1.0,0.0,0.0 -359,7.0,16.29825645232793,30.0,-7.384193758533288e-11,36.77190977460094,0.9590284450923864,-10.56313374169949,0.0,1.0,0.0 -359,8.0,0.0,0.0,0.0,0.0,1.0129384467188896,-12.007870751563882,1.0,0.0,0.0 -359,9.0,3.1509962474500663,2.0,0.0,0.0,1.0061752956081764,-12.998998294870086,1.0,0.0,0.0 -359,10.0,0.0,0.0,-1.0462051247155064e-10,23.98300509306385,1.0599994617420392,-12.00787075157549,0.0,1.0,0.0 -359,11.0,6.084682408869094,7.5,0.0,0.0,1.017537535586276,-12.8225050075674,1.0,0.0,0.0 -359,12.0,0.0,0.0,-8.971648236497268e-11,18.225530110361664,1.0420242424356905,-12.822505007574186,0.0,1.0,0.0 -359,13.0,3.3683063334811054,1.6,0.0,0.0,1.0064615565293422,-13.264950324072789,1.0,0.0,0.0 -359,14.0,4.4548567636363,2.5,0.0,0.0,1.003190676625227,-13.269583667396724,1.0,0.0,0.0 -359,15.0,1.901463252771592,1.8,0.0,0.0,1.0066841762472047,-12.993667318749525,1.0,0.0,0.0 -359,16.0,4.8894769356983785,5.8,0.0,0.0,1.001928853672409,-13.093962574921791,1.0,0.0,0.0 -359,17.0,1.7384806882483126,0.9,0.0,0.0,0.9951257420773384,-13.515236756585852,1.0,0.0,0.0 -359,18.0,5.161114543237178,3.4,0.0,0.0,0.9926337628150748,-13.564538614360544,1.0,0.0,0.0 -359,19.0,1.1952054731707151,0.7,0.0,0.0,0.995416423084035,-13.453731398012929,1.0,0.0,0.0 -359,20.0,9.50731626385796,11.2,0.0,0.0,0.9944069361047868,-13.183583581056098,1.0,0.0,0.0 -359,21.0,0.0,0.0,0.0,0.0,1.0006280843149482,-13.252998267888694,1.0,0.0,0.0 -359,22.0,1.7384806882483126,1.6,0.0,0.0,0.9959392202277338,-13.443393922220652,1.0,0.0,0.0 -359,23.0,4.726494371175099,6.7,0.0,0.0,0.99293962130463,-13.530712170091492,1.0,0.0,0.0 -359,24.0,0.0,0.0,0.0,0.0,0.9544755065753798,-12.642093838478688,1.0,0.0,0.0 -359,25.0,1.901463252771592,2.3,0.0,0.0,0.940030901628726,-12.729857868208134,1.0,0.0,0.0 -359,26.0,0.0,0.0,0.0,0.0,0.9617963000524726,-12.550589957658486,1.0,0.0,0.0 -359,27.0,0.0,0.0,0.0,0.0,0.9530363233599176,-10.369063859394474,1.0,0.0,0.0 -359,28.0,1.3038605161862344,0.9,0.0,0.0,0.9476877725085112,-13.213142519767397,1.0,0.0,0.0 -359,29.0,5.758717279822535,1.9,0.0,0.0,0.9400000365503384,-13.71181374732046,1.0,0.0,0.0 -360,0.0,0.0,0.0,160.501693774914,0.0005627075390535,1.0,0.0,0.0,0.0,1.0 -360,1.0,11.78907216718387,12.7,7.071978809536253e-07,10.307091742419589,0.9803633409399124,-3.683099808368332,0.0,1.0,0.0 -360,2.0,1.3038605161862344,1.2,0.0,0.0,0.9744673547458836,-4.827076609394232,1.0,0.0,0.0 -360,3.0,4.128891634589742,1.6,0.0,0.0,0.9679009508208056,-5.931792073610666,1.0,0.0,0.0 -360,4.0,51.1765252603097,19.0,-7.719167754207258e-10,24.10319354481959,0.9605187744399958,-8.867246131991024,0.0,1.0,0.0 -360,5.0,0.0,0.0,0.0,0.0,0.9674215984238432,-7.052400839870935,1.0,0.0,0.0 -360,6.0,12.386674903769228,10.9,0.0,0.0,0.9581246786797716,-8.069264295688116,1.0,0.0,0.0 -360,7.0,16.29825645232793,30.0,-5.414595196750945e-10,30.52386341066128,0.966429950950967,-7.478553590152368,0.0,1.0,0.0 -360,8.0,0.0,0.0,0.0,0.0,1.0154615135231932,-8.891922203196662,1.0,0.0,0.0 -360,9.0,3.1509962474500663,2.0,0.0,0.0,1.0062300740207744,-9.8481455991437,1.0,0.0,0.0 -360,10.0,0.0,0.0,7.493270670303305e-11,22.681537759608563,1.0599699439818528,-8.891922203188365,0.0,1.0,0.0 -360,11.0,6.084682408869094,7.5,0.0,0.0,1.0145049777981752,-9.23851095136886,1.0,0.0,0.0 -360,12.0,0.0,0.0,-7.465168308911586e-10,9.666646937907538,1.027673850112662,-9.238510951426298,0.0,1.0,0.0 -360,13.0,3.3683063334811054,1.6,0.0,0.0,1.003927809533173,-9.67353970621618,1.0,0.0,0.0 -360,14.0,4.4548567636363,2.5,0.0,0.0,1.0012282936057533,-9.680417674019878,1.0,0.0,0.0 -360,15.0,1.901463252771592,1.8,0.0,0.0,1.0046864370818585,-9.6020121272436,1.0,0.0,0.0 -360,16.0,4.8894769356983785,5.8,0.0,0.0,1.0014302058953812,-9.865670259268404,1.0,0.0,0.0 -360,17.0,1.7384806882483126,0.9,0.0,0.0,0.9973823180774676,-9.842956328899753,1.0,0.0,0.0 -360,18.0,5.161114543237178,3.4,0.0,0.0,0.9873510641992164,-10.52862634798416,1.0,0.0,0.0 -360,19.0,1.1952054731707151,0.7,0.0,0.0,0.9914728080449215,-10.390875104055675,1.0,0.0,0.0 -360,20.0,9.50731626385796,11.2,0.0,0.0,0.9958162625479898,-10.008591011742247,1.0,0.0,0.0 -360,21.0,0.0,0.0,0.0,0.0,0.9962446756964156,-10.001452875275776,1.0,0.0,0.0 -360,22.0,1.7384806882483126,1.6,0.0,0.0,0.9921426946804708,-9.911483671372554,1.0,0.0,0.0 -360,23.0,4.726494371175099,6.7,0.0,0.0,0.9867371571579032,-10.076480233484222,1.0,0.0,0.0 -360,24.0,0.0,0.0,0.0,0.0,0.980313948683592,-9.806088640453776,1.0,0.0,0.0 -360,25.0,1.901463252771592,2.3,0.0,0.0,0.96626152163515,-9.889219743404189,1.0,0.0,0.0 -360,26.0,0.0,0.0,0.0,0.0,0.983355728723579,-9.55932450110798,1.0,0.0,0.0 -360,27.0,0.0,0.0,0.0,0.0,0.9654096496345762,-7.404566630430272,1.0,0.0,0.0 -360,28.0,1.3038605161862344,0.9,0.0,0.0,0.9695749825766524,-10.192742691557592,1.0,0.0,0.0 -360,29.0,5.758717279822535,1.9,0.0,0.0,0.9620663583979684,-10.669000767183796,1.0,0.0,0.0 -361,0.0,0.0,0.0,160.6882242029114,0.0006856543421918,1.0,0.0,0.0,0.0,1.0 -361,1.0,11.78907216718387,12.7,9.582024567859828e-07,9.553858562250596,0.9802677567870745,-3.683717115338378,0.0,1.0,0.0 -361,2.0,1.3038605161862344,1.2,0.0,0.0,0.9746761514203496,-4.842600213360099,1.0,0.0,0.0 -361,3.0,4.128891634589742,1.6,0.0,0.0,0.9681605049436433,-5.950974183290001,1.0,0.0,0.0 -361,4.0,51.1765252603097,19.0,-8.457856691009537e-10,24.11851396684429,0.960686323866904,-8.868819211204253,0.0,1.0,0.0 -361,5.0,0.0,0.0,0.0,0.0,0.967816217733102,-7.057671702199041,1.0,0.0,0.0 -361,6.0,12.386674903769228,10.9,0.0,0.0,0.9584288678639038,-8.07297110242053,1.0,0.0,0.0 -361,7.0,16.29825645232793,30.0,-4.008611222921563e-10,30.65986523082509,0.9667891944149788,-7.485922709103236,0.0,1.0,0.0 -361,8.0,0.0,0.0,0.0,0.0,1.017239508013555,-8.80688635455488,1.0,0.0,0.0 -361,9.0,3.1509962474500663,2.0,0.0,0.0,1.009639533584411,-9.713476106707946,1.0,0.0,0.0 -361,10.0,0.0,0.0,5.65430143151842e-10,21.77171853519856,1.0599628674299233,-8.806886354492384,0.0,1.0,0.0 -361,11.0,6.084682408869094,7.5,0.0,0.0,1.0155023307617628,-9.36382896080223,1.0,0.0,0.0 -361,12.0,0.0,0.0,-4.4206086987534654e-10,11.535558036537488,1.0311640303324372,-9.363828960836091,0.0,1.0,0.0 -361,13.0,3.3683063334811054,1.6,0.0,0.0,1.00372769287377,-9.838554363127724,1.0,0.0,0.0 -361,14.0,4.4548567636363,2.5,0.0,0.0,0.9995909817543356,-9.85790534448955,1.0,0.0,0.0 -361,15.0,1.901463252771592,1.8,0.0,0.0,1.006915053036325,-9.620600444035002,1.0,0.0,0.0 -361,16.0,4.8894769356983785,5.8,0.0,0.0,1.004428538514381,-9.776765422173964,1.0,0.0,0.0 -361,17.0,1.7384806882483126,0.9,0.0,0.0,0.9940009603185768,-10.149424250341545,1.0,0.0,0.0 -361,18.0,5.161114543237178,3.4,0.0,0.0,0.9929784255130624,-10.2256498303826,1.0,0.0,0.0 -361,19.0,1.1952054731707151,0.7,0.0,0.0,0.9965334686131352,-10.129343237320034,1.0,0.0,0.0 -361,20.0,9.50731626385796,11.2,0.0,0.0,0.978110602875685,-10.216964677953,1.0,0.0,0.0 -361,21.0,0.0,0.0,0.0,0.0,0.9819409602081028,-10.160618615597864,1.0,0.0,0.0 -361,22.0,1.7384806882483126,1.6,0.0,0.0,0.9871654873323016,-10.087968980681689,1.0,0.0,0.0 -361,23.0,4.726494371175099,6.7,0.0,0.0,0.9773399849283896,-10.253194706399222,1.0,0.0,0.0 -361,24.0,0.0,0.0,0.0,0.0,0.9745500922391996,-9.965117195103428,1.0,0.0,0.0 -361,25.0,1.901463252771592,2.3,0.0,0.0,0.9604120654229222,-10.049249278864604,1.0,0.0,0.0 -361,26.0,0.0,0.0,0.0,0.0,0.9798860992866456,-9.702656288561988,1.0,0.0,0.0 -361,27.0,0.0,0.0,0.0,0.0,0.9653079496209694,-7.4179772751894495,1.0,0.0,0.0 -361,28.0,1.3038605161862344,0.9,0.0,0.0,0.9660536637758176,-10.340631146373868,1.0,0.0,0.0 -361,29.0,5.758717279822535,1.9,0.0,0.0,0.9585167973483096,-10.82039162048924,1.0,0.0,0.0 -362,0.0,0.0,0.0,160.46668735859856,0.0019495758711407,1.0,0.0,0.0,0.0,1.0 -362,1.0,11.78907216718387,12.7,2.133779025909188e-06,9.794832362091618,0.9802216088196402,-3.67741029273808,0.0,1.0,0.0 -362,2.0,1.3038605161862344,1.2,0.0,0.0,0.9748959069825772,-4.837935625302027,1.0,0.0,0.0 -362,3.0,4.128891634589742,1.6,0.0,0.0,0.9684306206913504,-5.945079343236743,1.0,0.0,0.0 -362,4.0,51.1765252603097,19.0,-9.65622955113626e-10,23.854277836335704,0.9601147588387142,-8.85392979752478,0.0,1.0,0.0 -362,5.0,0.0,0.0,0.0,0.0,0.9672852662798282,-7.036519825489008,1.0,0.0,0.0 -362,6.0,12.386674903769228,10.9,0.0,0.0,0.957876981684502,-8.054677219729138,1.0,0.0,0.0 -362,7.0,16.29825645232793,30.0,-2.2285418816669375e-10,28.914592665870813,0.9655112505573964,-7.448895532380574,0.0,1.0,0.0 -362,8.0,0.0,0.0,0.0,0.0,1.0177585343525064,-8.829075730531002,1.0,0.0,0.0 -362,9.0,3.1509962474500663,2.0,0.0,0.0,1.010994389548631,-9.75636906885478,1.0,0.0,0.0 -362,10.0,0.0,0.0,1.8272930225884678e-09,21.525618360151647,1.0599975800192905,-8.829075730329144,0.0,1.0,0.0 -362,11.0,6.084682408869094,7.5,0.0,0.0,1.0210632555151746,-9.333511284205342,1.0,0.0,0.0 -362,12.0,0.0,0.0,-2.86352791584493e-10,12.864616135644262,1.0384075653894458,-9.333511284227008,0.0,1.0,0.0 -362,13.0,3.3683063334811054,1.6,0.0,0.0,1.010252411077769,-9.798688575181451,1.0,0.0,0.0 -362,14.0,4.4548567636363,2.5,0.0,0.0,1.0070313421851809,-9.833922848276684,1.0,0.0,0.0 -362,15.0,1.901463252771592,1.8,0.0,0.0,1.010628088601662,-9.611929195459991,1.0,0.0,0.0 -362,16.0,4.8894769356983785,5.8,0.0,0.0,1.0065473494726231,-9.806015660103572,1.0,0.0,0.0 -362,17.0,1.7384806882483126,0.9,0.0,0.0,0.9993375212262924,-10.144569953648734,1.0,0.0,0.0 -362,18.0,5.161114543237178,3.4,0.0,0.0,0.9970578608888232,-10.233525289357608,1.0,0.0,0.0 -362,19.0,1.1952054731707151,0.7,0.0,0.0,0.9999325135229924,-10.144861620219464,1.0,0.0,0.0 -362,20.0,9.50731626385796,11.2,0.0,0.0,0.9992835104764398,-9.939177993257667,1.0,0.0,0.0 -362,21.0,0.0,0.0,0.0,0.0,1.0053099562036958,-9.974546069822788,1.0,0.0,0.0 -362,22.0,1.7384806882483126,1.6,0.0,0.0,1.0001096623933443,-10.054297986867285,1.0,0.0,0.0 -362,23.0,4.726494371175099,6.7,0.0,0.0,0.9975336556929464,-10.205279600857896,1.0,0.0,0.0 -362,24.0,0.0,0.0,0.0,0.0,0.9663213171016268,-9.581556345110153,1.0,0.0,0.0 -362,25.0,1.901463252771592,2.3,0.0,0.0,0.9520592327949172,-9.667149276908953,1.0,0.0,0.0 -362,26.0,0.0,0.0,0.0,0.0,0.9735495328185446,-9.492283141120714,1.0,0.0,0.0 -362,27.0,0.0,0.0,0.0,0.0,0.9641063543993414,-7.36267624884632,1.0,0.0,0.0 -362,28.0,1.3038605161862344,0.9,0.0,0.0,0.9596216605308838,-10.138708361927913,1.0,0.0,0.0 -362,29.0,5.758717279822535,1.9,0.0,0.0,0.9520326463070324,-10.62496705066145,1.0,0.0,0.0 -363,0.0,0.0,0.0,160.69511218740584,0.0146285876787111,1.0,0.0,0.0,0.0,1.0 -363,1.0,11.78907216718387,12.7,8.85112287516482e-06,15.144450675885729,0.9811930875865696,-3.7073983150713854,0.0,1.0,0.0 -363,2.0,1.3038605161862344,1.2,0.0,0.0,0.9719579737649802,-4.787290585650127,1.0,0.0,0.0 -363,3.0,4.128891634589742,1.6,0.0,0.0,0.9648030288992308,-5.883510051492805,1.0,0.0,0.0 -363,4.0,51.1765252603097,19.0,-7.251731089328091e-09,24.94781474089245,0.9612182604054106,-8.898963862591874,0.0,1.0,0.0 -363,5.0,0.0,0.0,0.0,0.0,0.966229850378264,-7.059691469685281,1.0,0.0,0.0 -363,6.0,12.386674903769228,10.9,0.0,0.0,0.9577049194748272,-8.085884378709391,1.0,0.0,0.0 -363,7.0,16.29825645232793,30.0,-8.58802812498113e-09,36.42439217658323,0.9673469490587406,-7.524616470134764,0.0,1.0,0.0 -363,8.0,0.0,0.0,0.0,0.0,1.0112807711261649,-8.950654305316036,1.0,0.0,0.0 -363,9.0,3.1509962474500663,2.0,0.0,0.0,1.001207413316244,-9.93732562205182,1.0,0.0,0.0 -363,10.0,0.0,0.0,-1.83861798630174e-08,21.891368004111968,1.054462984369778,-8.950654307370861,0.0,1.0,0.0 -363,11.0,6.084682408869094,7.5,0.0,0.0,0.9905824174325886,-9.165083709350691,1.0,0.0,0.0 -363,12.0,0.0,0.0,0.0,0.0,0.9905824174325886,-9.165083709350691,0.0,1.0,0.0 -363,13.0,3.3683063334811054,1.6,0.0,0.0,0.9784887063231872,-9.734845028187785,1.0,0.0,0.0 -363,14.0,4.4548567636363,2.5,0.0,0.0,0.9737608622490562,-9.824853564222886,1.0,0.0,0.0 -363,15.0,1.901463252771592,1.8,0.0,0.0,0.9879861001426592,-10.284681501651368,1.0,0.0,0.0 -363,16.0,4.8894769356983785,5.8,0.0,0.0,0.9925018728807524,-10.126140701393537,1.0,0.0,0.0 -363,17.0,1.7384806882483126,0.9,0.0,0.0,0.9559708484975412,-10.468808076986686,1.0,0.0,0.0 -363,18.0,5.161114543237178,3.4,0.0,0.0,0.9478451495505928,-10.753074896351208,1.0,0.0,0.0 -363,19.0,1.1952054731707151,0.7,0.0,0.0,0.9986204338693968,-10.042927521733098,1.0,0.0,0.0 -363,20.0,9.50731626385796,11.2,0.0,0.0,0.9896292737909704,-10.10692073085442,1.0,0.0,0.0 -363,21.0,0.0,0.0,0.0,0.0,0.9897096887719756,-10.101609591191188,1.0,0.0,0.0 -363,22.0,1.7384806882483126,1.6,0.0,0.0,0.9715432141987692,-10.041095630946884,1.0,0.0,0.0 -363,23.0,4.726494371175099,6.7,0.0,0.0,0.9754310005306114,-10.173688595264055,1.0,0.0,0.0 -363,24.0,0.0,0.0,0.0,0.0,0.9727819390191812,-9.92381211498012,1.0,0.0,0.0 -363,25.0,1.901463252771592,2.3,0.0,0.0,0.9586174405337582,-10.008254906973852,1.0,0.0,0.0 -363,26.0,0.0,0.0,0.0,0.0,0.9782305063697894,-9.684544576053252,1.0,0.0,0.0 -363,27.0,0.0,0.0,0.0,0.0,0.9641739130982608,-7.423751714417039,1.0,0.0,0.0 -363,28.0,1.3038605161862344,0.9,0.0,0.0,0.9643732655581138,-10.324711163706317,1.0,0.0,0.0 -363,29.0,5.758717279822535,1.9,0.0,0.0,0.956822845546825,-10.80615667430729,1.0,0.0,0.0 -364,0.0,0.0,0.0,162.3593413769676,0.0004893602630673,1.0,0.0,0.0,0.0,1.0 -364,1.0,11.912604292111263,12.7,7.666306477816205e-07,9.32467668361243,0.9800547912237464,-3.71937182006879,0.0,1.0,0.0 -364,2.0,1.3175230553487112,1.2,0.0,0.0,0.974628123692669,-4.904390565552745,1.0,0.0,0.0 -364,3.0,4.172156341937585,1.6,0.0,0.0,0.9681122793105654,-6.027416331816752,1.0,0.0,0.0 -364,4.0,51.71277992243692,19.0,-7.511517772149304e-10,24.07406877559343,0.9602841711141868,-8.953763842004793,0.0,1.0,0.0 -364,5.0,0.0,0.0,0.0,0.0,0.9677584927744052,-7.118634649670362,1.0,0.0,0.0 -364,6.0,12.516469025812755,10.9,0.0,0.0,0.958207980642614,-8.147820684144815,1.0,0.0,0.0 -364,7.0,16.46903819185889,30.0,-4.0712105009554346e-10,29.62681970551449,0.966421695728308,-7.543119090546862,0.0,1.0,0.0 -364,8.0,0.0,0.0,0.0,0.0,1.016891785885492,-8.838696007497656,1.0,0.0,0.0 -364,9.0,3.184014050426052,2.0,0.0,0.0,1.0108608293167456,-9.72904915977325,1.0,0.0,0.0 -364,10.0,0.0,0.0,2.1084403800326784e-10,20.031950313498346,1.056336103388619,-8.838696007474264,0.0,1.0,0.0 -364,11.0,6.148440924960652,7.5,0.0,0.0,1.0171150349083322,-9.629217828984723,1.0,0.0,0.0 -364,12.0,0.0,0.0,-2.0570640380344707e-10,14.668644070537674,1.0369199406618517,-9.629217829000371,0.0,1.0,0.0 -364,13.0,3.403601226317504,1.6,0.0,0.0,1.0039253912861363,-10.151211667652172,1.0,0.0,0.0 -364,14.0,4.501537105774762,2.5,0.0,0.0,0.9981594323404838,-10.1820782631777,1.0,0.0,0.0 -364,15.0,1.921387789050204,1.8,0.0,0.0,1.008513697663939,-9.780000550712677,1.0,0.0,0.0 -364,16.0,4.940711457557667,5.8,0.0,0.0,1.0057083868773866,-9.83903629300032,1.0,0.0,0.0 -364,17.0,1.756697407131615,0.9,0.0,0.0,0.9807465216225656,-10.80366638842964,1.0,0.0,0.0 -364,18.0,5.215195427421982,3.4,0.0,0.0,0.9727939295467428,-11.077841852518596,1.0,0.0,0.0 -364,19.0,1.2077294674029857,0.7,0.0,0.0,1.0082870102675852,-9.834111261401985,1.0,0.0,0.0 -364,20.0,9.60693894525102,11.2,0.0,0.0,0.9999618923067832,-9.93084521921505,1.0,0.0,0.0 -364,21.0,0.0,0.0,0.0,0.0,1.0002273973122695,-9.93596042626412,1.0,0.0,0.0 -364,22.0,1.756697407131615,1.6,0.0,0.0,0.9910412298386287,-10.239790487047078,1.0,0.0,0.0 -364,23.0,4.776021075639078,6.7,0.0,0.0,0.9882570975041748,-10.16632167540058,1.0,0.0,0.0 -364,24.0,0.0,0.0,0.0,0.0,0.9813711703887128,-9.890674203914434,1.0,0.0,0.0 -364,25.0,1.921387789050204,2.3,0.0,0.0,0.967281037797176,-9.978198148450282,1.0,0.0,0.0 -364,26.0,0.0,0.0,0.0,0.0,0.9841393601798206,-9.63882272766147,1.0,0.0,0.0 -364,27.0,0.0,0.0,0.0,0.0,0.9657153554411096,-7.472967819148746,1.0,0.0,0.0 -364,28.0,1.3175230553487112,0.9,0.0,0.0,0.9702863489854452,-10.279872223520242,1.0,0.0,0.0 -364,29.0,5.819060161123475,1.9,0.0,0.0,0.9627295666564654,-10.761249531168437,1.0,0.0,0.0 -365,0.0,0.0,0.0,162.41478171873604,0.0036621039867235,1.0,0.0,0.0,0.0,1.0 -365,1.0,11.912604292111263,12.7,2.3635875392857016e-06,10.369342332765903,0.9801169161526082,-3.7255679504945145,0.0,1.0,0.0 -365,2.0,1.3175230553487112,1.2,0.0,0.0,0.9744079584507752,-4.893049101875287,1.0,0.0,0.0 -365,3.0,4.172156341937585,1.6,0.0,0.0,0.9678392621530848,-6.01343748818519,1.0,0.0,0.0 -365,4.0,51.71277992243692,19.0,9.515434143797266e-10,24.168929682027,0.9599555595338788,-8.967321926300292,0.0,1.0,0.0 -365,5.0,0.0,0.0,0.0,0.0,0.9668517076462032,-7.128925896520482,1.0,0.0,0.0 -365,6.0,12.516469025812755,10.9,0.0,0.0,0.9575315574663498,-8.159549837004885,1.0,0.0,0.0 -365,7.0,16.46903819185889,30.0,1.4339557352995674e-09,29.570176770057465,0.9655701972578294,-7.543316080860876,0.0,1.0,0.0 -365,8.0,0.0,0.0,0.0,0.0,1.0141166134731854,-9.131126867125154,1.0,0.0,0.0 -365,9.0,3.184014050426052,2.0,0.0,0.0,1.0038314174427414,-10.173763124756698,1.0,0.0,0.0 -365,10.0,0.0,0.0,3.148408666925428e-09,23.38208194711255,1.0599984995970635,-9.131126866776103,0.0,1.0,0.0 -365,11.0,6.148440924960652,7.5,0.0,0.0,1.0184515249860415,-9.411790231044698,1.0,0.0,0.0 -365,12.0,0.0,0.0,1.3090378272445482e-09,10.948463119107965,1.0332856117023927,-9.411790230944916,0.0,1.0,0.0 -365,13.0,3.403601226317504,1.6,0.0,0.0,1.0086910344026727,-9.849167847746198,1.0,0.0,0.0 -365,14.0,4.501537105774762,2.5,0.0,0.0,1.0067839674656862,-9.875285117696494,1.0,0.0,0.0 -365,15.0,1.921387789050204,1.8,0.0,0.0,1.0057709478365993,-9.828555872725762,1.0,0.0,0.0 -365,16.0,4.940711457557667,5.8,0.0,0.0,1.0001370395126723,-10.166398766918912,1.0,0.0,0.0 -365,17.0,1.756697407131615,0.9,0.0,0.0,0.996547570734554,-10.323215747100964,1.0,0.0,0.0 -365,18.0,5.215195427421982,3.4,0.0,0.0,0.9927890253116176,-10.493064221212691,1.0,0.0,0.0 -365,19.0,1.2077294674029857,0.7,0.0,0.0,0.994917334194893,-10.443646455744034,1.0,0.0,0.0 -365,20.0,9.60693894525102,11.2,0.0,0.0,0.990512691196733,-10.44532170143972,1.0,0.0,0.0 -365,21.0,0.0,0.0,0.0,0.0,0.9900371009029754,-10.471041072952827,1.0,0.0,0.0 -365,22.0,1.756697407131615,1.6,0.0,0.0,0.9606543545949836,-11.085736086087186,1.0,0.0,0.0 -365,23.0,4.776021075639078,6.7,0.0,0.0,0.9675689793632696,-10.923551837494458,1.0,0.0,0.0 -365,24.0,0.0,0.0,0.0,0.0,0.9556704815271748,-11.04760163139743,1.0,0.0,0.0 -365,25.0,1.921387789050204,2.3,0.0,0.0,0.9411896818447548,-11.139970921984238,1.0,0.0,0.0 -365,26.0,0.0,0.0,0.0,0.0,0.9847602333923854,-9.095582446593966,1.0,0.0,0.0 -365,27.0,0.0,0.0,0.0,0.0,0.9652817864106096,-7.423645190508336,1.0,0.0,0.0 -365,28.0,1.3175230553487112,0.9,0.0,0.0,0.9709164757656984,-9.735812557406904,1.0,0.0,0.0 -365,29.0,5.819060161123475,1.9,0.0,0.0,0.9633647546576048,-10.216560916816045,1.0,0.0,0.0 -366,0.0,0.0,0.0,162.24753607902124,0.0005959946828504,1.0,0.0,0.0,0.0,1.0 -366,1.0,11.912604292111263,12.7,7.748915223088105e-07,10.526451497884423,0.9802188551050328,-3.7235797403562554,0.0,1.0,0.0 -366,2.0,1.3175230553487112,1.2,0.0,0.0,0.9741849623278256,-4.883450077496024,1.0,0.0,0.0 -366,3.0,4.172156341937585,1.6,0.0,0.0,0.9675630290455146,-6.001622623116687,1.0,0.0,0.0 -366,4.0,51.71277992243692,19.0,-7.892561900485031e-10,24.19777731418162,0.9602156163084822,-8.962847812169558,0.0,1.0,0.0 -366,5.0,0.0,0.0,0.0,0.0,0.9672012255651912,-7.124814236044393,1.0,0.0,0.0 -366,6.0,12.516469025812755,10.9,0.0,0.0,0.9578474200856256,-8.155160242020527,1.0,0.0,0.0 -366,7.0,16.46903819185889,30.0,-4.5305369797071807e-10,30.55872650108341,0.9661982718403542,-7.555721451346455,0.0,1.0,0.0 -366,8.0,0.0,0.0,0.0,0.0,1.015638164383616,-8.943626669552996,1.0,0.0,0.0 -366,9.0,3.184014050426052,2.0,0.0,0.0,1.0067033241499648,-9.88842797651142,1.0,0.0,0.0 -366,10.0,0.0,0.0,3.6408508481735956e-10,22.59156584519863,1.0599700372721588,-8.943626669512694,0.0,1.0,0.0 -366,11.0,6.148440924960652,7.5,0.0,0.0,1.0137133232506756,-9.418438885513256,1.0,0.0,0.0 -366,12.0,0.0,0.0,-5.865178763803897e-10,9.91753175077757,1.027229816087663,-9.418438885558436,0.0,1.0,0.0 -366,13.0,3.403601226317504,1.6,0.0,0.0,1.0026538439967254,-9.890040388174596,1.0,0.0,0.0 -366,14.0,4.501537105774762,2.5,0.0,0.0,0.9993281181730744,-9.917513130660344,1.0,0.0,0.0 -366,15.0,1.921387789050204,1.8,0.0,0.0,1.0045177428666556,-9.727217695223908,1.0,0.0,0.0 -366,16.0,4.940711457557667,5.8,0.0,0.0,1.0016628486846388,-9.933316383814006,1.0,0.0,0.0 -366,17.0,1.756697407131615,0.9,0.0,0.0,0.9927313783630726,-10.25515528293315,1.0,0.0,0.0 -366,18.0,5.215195427421982,3.4,0.0,0.0,0.991129363450312,-10.357421914120478,1.0,0.0,0.0 -366,19.0,1.2077294674029857,0.7,0.0,0.0,0.9944039881451844,-10.272100912576564,1.0,0.0,0.0 -366,20.0,9.60693894525102,11.2,0.0,0.0,0.9961250478208218,-10.064747534025033,1.0,0.0,0.0 -366,21.0,0.0,0.0,0.0,0.0,0.9965098441405008,-10.061334625085395,1.0,0.0,0.0 -366,22.0,1.756697407131615,1.6,0.0,0.0,0.990851782637422,-10.096757148798384,1.0,0.0,0.0 -366,23.0,4.776021075639078,6.7,0.0,0.0,0.9862783590599616,-10.187912087707865,1.0,0.0,0.0 -366,24.0,0.0,0.0,0.0,0.0,0.9799163126601006,-9.91478436730768,1.0,0.0,0.0 -366,25.0,1.921387789050204,2.3,0.0,0.0,0.9658046373898286,-10.002572250778282,1.0,0.0,0.0 -366,26.0,0.0,0.0,0.0,0.0,0.9830215591695094,-9.663712569300694,1.0,0.0,0.0 -366,27.0,0.0,0.0,0.0,0.0,0.965159125416952,-7.481228017179494,1.0,0.0,0.0 -366,28.0,1.3175230553487112,0.9,0.0,0.0,0.9691518560156082,-10.30624125203614,1.0,0.0,0.0 -366,29.0,5.819060161123475,1.9,0.0,0.0,0.9615859439725624,-10.788754054394408,1.0,0.0,0.0 -367,0.0,0.0,0.0,162.5635003110351,1.4148128804773563,1.0,0.0,0.0,0.0,1.0 -367,1.0,11.912604292111263,12.7,0.0,0.0,0.9787079888221596,-3.703198729493767,0.0,1.0,0.0 -367,2.0,1.3175230553487112,1.2,0.0,0.0,0.976035983041679,-4.927668893608356,1.0,0.0,0.0 -367,3.0,4.172156341937585,1.6,0.0,0.0,0.96985068873004,-6.055634588174805,1.0,0.0,0.0 -367,4.0,51.71277992243692,19.0,2.6923865993275222e-09,29.852524901586563,0.9664697663170292,-9.046620355394198,0.0,1.0,0.0 -367,5.0,0.0,0.0,0.0,0.0,0.9695535167007738,-7.160874948157482,1.0,0.0,0.0 -367,6.0,12.516469025812755,10.9,0.0,0.0,0.9618371313964184,-8.206838739835103,1.0,0.0,0.0 -367,7.0,16.46903819185889,30.0,2.277378645081371e-09,31.32989907356408,0.9614629492108304,-10.263941831528273,0.0,1.0,0.0 -367,8.0,0.0,0.0,0.0,0.0,1.018791589181697,-8.98334223584889,1.0,0.0,0.0 -367,9.0,3.184014050426052,2.0,0.0,0.0,1.0119070274590771,-9.927463608935083,1.0,0.0,0.0 -367,10.0,0.0,0.0,2.661112949094306e-09,20.99989761847265,1.059998975287496,-8.983342235555218,0.0,1.0,0.0 -367,11.0,6.148440924960652,7.5,0.0,0.0,1.0243821615794728,-9.532923238069332,1.0,0.0,0.0 -367,12.0,0.0,0.0,3.892123556796431e-09,15.66832389631059,1.045365870793346,-9.532923237777789,0.0,1.0,0.0 -367,13.0,3.403601226317504,1.6,0.0,0.0,1.0126815005406369,-10.00104732972934,1.0,0.0,0.0 -367,14.0,4.501537105774762,2.5,0.0,0.0,1.0086168920968417,-10.01706709325068,1.0,0.0,0.0 -367,15.0,1.921387789050204,1.8,0.0,0.0,1.012919864837083,-9.795954137724856,1.0,0.0,0.0 -367,16.0,4.940711457557667,5.8,0.0,0.0,1.0078807415299271,-9.98422484716322,1.0,0.0,0.0 -367,17.0,1.756697407131615,0.9,0.0,0.0,1.0006561765141826,-10.32745747213327,1.0,0.0,0.0 -367,18.0,5.215195427421982,3.4,0.0,0.0,0.9982270771504022,-10.415198047005727,1.0,0.0,0.0 -367,19.0,1.2077294674029857,0.7,0.0,0.0,1.001036647042485,-10.32408353650466,1.0,0.0,0.0 -367,20.0,9.60693894525102,11.2,0.0,0.0,1.0014777575938314,-10.119514303273087,1.0,0.0,0.0 -367,21.0,0.0,0.0,0.0,0.0,1.001888067157076,-10.121825740433952,1.0,0.0,0.0 -367,22.0,1.756697407131615,1.6,0.0,0.0,0.9986051695333024,-10.211097499211697,1.0,0.0,0.0 -367,23.0,4.776021075639078,6.7,0.0,0.0,0.9919363458141426,-10.325794629491044,1.0,0.0,0.0 -367,24.0,0.0,0.0,0.0,0.0,0.9832615425066316,-10.213081585922032,1.0,0.0,0.0 -367,25.0,1.921387789050204,2.3,0.0,0.0,0.9691993019089103,-10.300264362791298,1.0,0.0,0.0 -367,26.0,0.0,0.0,0.0,0.0,0.9849587084119792,-10.065249533986018,1.0,0.0,0.0 -367,27.0,0.0,0.0,0.0,0.0,0.96616329920241,-8.102059085922415,1.0,0.0,0.0 -367,28.0,1.3175230553487112,0.9,0.0,0.0,0.9711179061904576,-10.705218044028488,1.0,0.0,0.0 -367,29.0,5.819060161123475,1.9,0.0,0.0,0.963567801527544,-11.185765610226683,1.0,0.0,0.0 -368,0.0,0.0,0.0,162.98954511284066,0.0023081315982054,1.0,0.0,0.0,0.0,1.0 -368,1.0,11.912604292111263,12.7,2.518040613607502e-06,11.26626276255157,0.9816043133143167,-3.414477152822331,0.0,1.0,0.0 -368,2.0,1.3175230553487112,1.2,0.0,0.0,0.9713564826812618,-5.854419580023855,1.0,0.0,0.0 -368,3.0,4.172156341937585,1.6,0.0,0.0,0.9642650729468794,-7.209658409939122,1.0,0.0,0.0 -368,4.0,51.71277992243692,19.0,2.5894343150079516e-10,26.001546464508262,0.9609642816318212,-9.704367427875267,0.0,1.0,0.0 -368,5.0,0.0,0.0,0.0,0.0,0.962936137634818,-8.899559413682583,1.0,0.0,0.0 -368,6.0,12.516469025812755,10.9,0.0,0.0,0.9554423303534484,-9.507300843993912,1.0,0.0,0.0 -368,7.0,16.46903819185889,30.0,3.29054824026044e-10,31.441717068411023,0.9622722502064964,-9.338096249443042,0.0,1.0,0.0 -368,8.0,0.0,0.0,0.0,0.0,1.0135118338967155,-10.627931430788896,1.0,0.0,0.0 -368,9.0,3.184014050426052,2.0,0.0,0.0,1.0045777814935,-11.523695138088346,1.0,0.0,0.0 -368,10.0,0.0,0.0,8.474223263927262e-10,23.69106332732814,1.0599999599194625,-10.627931430694892,0.0,1.0,0.0 -368,11.0,6.148440924960652,7.5,0.0,0.0,1.0145154482698726,-10.877570775137992,1.0,0.0,0.0 -368,12.0,0.0,0.0,4.886267310863978e-10,12.48655478945448,1.031463385492949,-10.87757077510054,0.0,1.0,0.0 -368,13.0,3.403601226317504,1.6,0.0,0.0,1.0031235538866774,-11.374732587342642,1.0,0.0,0.0 -368,14.0,4.501537105774762,2.5,0.0,0.0,0.9992919086222264,-11.42039128385463,1.0,0.0,0.0 -368,15.0,1.921387789050204,1.8,0.0,0.0,1.0039304080670854,-11.255549342770315,1.0,0.0,0.0 -368,16.0,4.940711457557667,5.8,0.0,0.0,1.0000486202940178,-11.537390406469047,1.0,0.0,0.0 -368,17.0,1.756697407131615,0.9,0.0,0.0,0.9919392329807926,-11.804771447575058,1.0,0.0,0.0 -368,18.0,5.215195427421982,3.4,0.0,0.0,0.98989410361312,-11.93494385494415,1.0,0.0,0.0 -368,19.0,1.2077294674029857,0.7,0.0,0.0,0.9929392242138132,-11.86392587696576,1.0,0.0,0.0 -368,20.0,9.60693894525102,11.2,0.0,0.0,0.994011324288849,-11.697266640404866,1.0,0.0,0.0 -368,21.0,0.0,0.0,0.0,0.0,0.9944082372936912,-11.692728444425256,1.0,0.0,0.0 -368,22.0,1.756697407131615,1.6,0.0,0.0,0.989989658551199,-11.64837396254022,1.0,0.0,0.0 -368,23.0,4.776021075639078,6.7,0.0,0.0,0.9843329473824604,-11.805855951087512,1.0,0.0,0.0 -368,24.0,0.0,0.0,0.0,0.0,0.9768567364597684,-11.58607943565748,1.0,0.0,0.0 -368,25.0,1.921387789050204,2.3,0.0,0.0,0.9626995379295286,-11.67442631605996,1.0,0.0,0.0 -368,26.0,0.0,0.0,0.0,0.0,0.9793103438368234,-11.36891286530095,1.0,0.0,0.0 -368,27.0,0.0,0.0,0.0,0.0,0.9610768269314685,-9.250906473413774,1.0,0.0,0.0 -368,28.0,1.3175230553487112,0.9,0.0,0.0,0.965384923668923,-12.01638968789425,1.0,0.0,0.0 -368,29.0,5.819060161123475,1.9,0.0,0.0,0.9577885363175273,-12.502701779690788,1.0,0.0,0.0 -369,0.0,0.0,0.0,162.24753607902124,0.0005959946828504,1.0,0.0,0.0,0.0,1.0 -369,1.0,11.912604292111263,12.7,7.748915223088105e-07,10.526451497884423,0.9802188551050328,-3.7235797403562554,0.0,1.0,0.0 -369,2.0,1.3175230553487112,1.2,0.0,0.0,0.9741849623278256,-4.883450077496024,1.0,0.0,0.0 -369,3.0,4.172156341937585,1.6,0.0,0.0,0.9675630290455146,-6.001622623116687,1.0,0.0,0.0 -369,4.0,51.71277992243692,19.0,-7.892561900485031e-10,24.19777731418162,0.9602156163084822,-8.962847812169558,0.0,1.0,0.0 -369,5.0,0.0,0.0,0.0,0.0,0.9672012255651912,-7.124814236044393,1.0,0.0,0.0 -369,6.0,12.516469025812755,10.9,0.0,0.0,0.9578474200856256,-8.155160242020527,1.0,0.0,0.0 -369,7.0,16.46903819185889,30.0,-4.5305369797071807e-10,30.55872650108341,0.9661982718403542,-7.555721451346455,0.0,1.0,0.0 -369,8.0,0.0,0.0,0.0,0.0,1.015638164383616,-8.943626669552996,1.0,0.0,0.0 -369,9.0,3.184014050426052,2.0,0.0,0.0,1.0067033241499648,-9.88842797651142,1.0,0.0,0.0 -369,10.0,0.0,0.0,3.6408508481735956e-10,22.59156584519863,1.0599700372721588,-8.943626669512694,0.0,1.0,0.0 -369,11.0,6.148440924960652,7.5,0.0,0.0,1.0137133232506756,-9.418438885513256,1.0,0.0,0.0 -369,12.0,0.0,0.0,-5.865178763803897e-10,9.91753175077757,1.027229816087663,-9.418438885558436,0.0,1.0,0.0 -369,13.0,3.403601226317504,1.6,0.0,0.0,1.0026538439967254,-9.890040388174596,1.0,0.0,0.0 -369,14.0,4.501537105774762,2.5,0.0,0.0,0.9993281181730744,-9.917513130660344,1.0,0.0,0.0 -369,15.0,1.921387789050204,1.8,0.0,0.0,1.0045177428666556,-9.727217695223908,1.0,0.0,0.0 -369,16.0,4.940711457557667,5.8,0.0,0.0,1.0016628486846388,-9.933316383814006,1.0,0.0,0.0 -369,17.0,1.756697407131615,0.9,0.0,0.0,0.9927313783630726,-10.25515528293315,1.0,0.0,0.0 -369,18.0,5.215195427421982,3.4,0.0,0.0,0.991129363450312,-10.357421914120478,1.0,0.0,0.0 -369,19.0,1.2077294674029857,0.7,0.0,0.0,0.9944039881451844,-10.272100912576564,1.0,0.0,0.0 -369,20.0,9.60693894525102,11.2,0.0,0.0,0.9961250478208218,-10.064747534025033,1.0,0.0,0.0 -369,21.0,0.0,0.0,0.0,0.0,0.9965098441405008,-10.061334625085395,1.0,0.0,0.0 -369,22.0,1.756697407131615,1.6,0.0,0.0,0.990851782637422,-10.096757148798384,1.0,0.0,0.0 -369,23.0,4.776021075639078,6.7,0.0,0.0,0.9862783590599616,-10.187912087707865,1.0,0.0,0.0 -369,24.0,0.0,0.0,0.0,0.0,0.9799163126601006,-9.91478436730768,1.0,0.0,0.0 -369,25.0,1.921387789050204,2.3,0.0,0.0,0.9658046373898286,-10.002572250778282,1.0,0.0,0.0 -369,26.0,0.0,0.0,0.0,0.0,0.9830215591695094,-9.663712569300694,1.0,0.0,0.0 -369,27.0,0.0,0.0,0.0,0.0,0.965159125416952,-7.481228017179494,1.0,0.0,0.0 -369,28.0,1.3175230553487112,0.9,0.0,0.0,0.9691518560156082,-10.30624125203614,1.0,0.0,0.0 -369,29.0,5.819060161123475,1.9,0.0,0.0,0.9615859439725624,-10.788754054394408,1.0,0.0,0.0 -370,0.0,0.0,0.0,80.13931276375446,3.5200273806879068e-06,1.0,0.0,0.0,0.0,1.0 -370,1.0,11.912604292111263,12.7,80.77833041855098,-4.039629757729543,0.993434201901794,-1.0495376712214628,0.0,1.0,0.0 -370,2.0,1.3175230553487112,1.2,0.0,0.0,0.9753168235825642,-4.58075700053569,1.0,0.0,0.0 -370,3.0,4.172156341937585,1.6,0.0,0.0,0.9689164607043046,-5.625228229363039,1.0,0.0,0.0 -370,4.0,51.71277992243692,19.0,2.2722571355300043e-08,39.99999720676523,0.9873228728865908,-7.297892667528929,0.0,1.0,0.0 -370,5.0,0.0,0.0,0.0,0.0,0.9750371728883676,-6.214335890325457,1.0,0.0,0.0 -370,6.0,12.516469025812755,10.9,0.0,0.0,0.9735866743205804,-6.917486587213223,1.0,0.0,0.0 -370,7.0,16.46903819185889,30.0,2.8974727693990408e-08,39.999998742467234,0.9774274223930752,-6.6992873925339005,0.0,1.0,0.0 -370,8.0,0.0,0.0,0.0,0.0,1.0190483161423196,-8.054677889161301,1.0,0.0,0.0 -370,9.0,3.184014050426052,2.0,0.0,0.0,1.0094808994183206,-9.015754012441093,1.0,0.0,0.0 -370,10.0,0.0,0.0,3.5560883571957974e-08,20.86960704234261,1.059999997964426,-8.054677885237941,0.0,1.0,0.0 -370,11.0,6.148440924960652,7.5,0.0,0.0,0.9953027099398004,-8.94626998353555,1.0,0.0,0.0 -370,12.0,0.0,0.0,0.0,0.0,0.9953027099398004,-8.94626998353555,0.0,1.0,0.0 -370,13.0,3.403601226317504,1.6,0.0,0.0,0.9608500589145078,-10.000372124511497,1.0,0.0,0.0 -370,14.0,4.501537105774762,2.5,0.0,0.0,0.9720098144384532,-9.800318267106856,1.0,0.0,0.0 -370,15.0,1.921387789050204,1.8,0.0,0.0,0.9954847135469362,-9.129303346537244,1.0,0.0,0.0 -370,16.0,4.940711457557667,5.8,0.0,0.0,1.0006496620038945,-9.131628906799186,1.0,0.0,0.0 -370,17.0,1.756697407131615,0.9,0.0,0.0,0.9509566576752208,-10.575668127473612,1.0,0.0,0.0 -370,18.0,5.215195427421982,3.4,0.0,0.0,0.9409434262720908,-10.93927927970461,1.0,0.0,0.0 -370,19.0,1.2077294674029857,0.7,0.0,0.0,0.940000000392874,-10.97706176662612,1.0,0.0,0.0 -370,20.0,9.60693894525102,11.2,0.0,0.0,0.9975093170660704,-9.236028204504844,1.0,0.0,0.0 -370,21.0,0.0,0.0,0.0,0.0,0.997440765392718,-9.246456005058352,1.0,0.0,0.0 -370,22.0,1.756697407131615,1.6,0.0,0.0,0.9728767640318092,-9.748651372493278,1.0,0.0,0.0 -370,23.0,4.776021075639078,6.7,0.0,0.0,0.9808590468280572,-9.522070092469724,1.0,0.0,0.0 -370,24.0,0.0,0.0,0.0,0.0,0.979964306751854,-9.215651608015987,1.0,0.0,0.0 -370,25.0,1.921387789050204,2.3,0.0,0.0,0.9658533432051812,-9.303430764129098,1.0,0.0,0.0 -370,26.0,0.0,0.0,0.0,0.0,0.9864533538310388,-8.938431082301664,1.0,0.0,0.0 -370,27.0,0.0,0.0,0.0,0.0,0.973094335931805,-6.591086724831376,1.0,0.0,0.0 -370,28.0,1.3175230553487112,0.9,0.0,0.0,0.9726347661796813,-9.576434738820334,1.0,0.0,0.0 -370,29.0,5.819060161123475,1.9,0.0,0.0,0.9650968115835528,-10.05547428715493,1.0,0.0,0.0 -371,0.0,0.0,0.0,166.5045567348151,0.0005899603625181,1.0,0.0,0.0,0.0,1.0 -371,1.0,11.912604292111263,12.7,0.0,0.0,0.9803006918082152,-3.452422808204621,0.0,1.0,0.0 -371,2.0,1.3175230553487112,1.2,0.0,0.0,0.9738654696000942,-6.075275037411419,1.0,0.0,0.0 -371,3.0,4.172156341937585,1.6,0.0,0.0,0.9674109543530262,-7.481956026595293,1.0,0.0,0.0 -371,4.0,51.71277992243692,19.0,2.200332701368393e-09,34.19414484471628,0.940000810929422,-17.044513639993582,0.0,1.0,0.0 -371,5.0,0.0,0.0,0.0,0.0,0.9657853974861836,-9.281793120622076,1.0,0.0,0.0 -371,6.0,12.516469025812755,10.9,0.0,0.0,0.9481589089964052,-12.708126525000086,1.0,0.0,0.0 -371,7.0,16.46903819185889,30.0,-1.0979905684370322e-09,39.96521533802715,0.9683172127582502,-9.771505723469716,0.0,1.0,0.0 -371,8.0,0.0,0.0,0.0,0.0,1.0141762050450454,-11.12032395802915,1.0,0.0,0.0 -371,9.0,3.184014050426052,2.0,0.0,0.0,1.004454223711663,-12.076103013186716,1.0,0.0,0.0 -371,10.0,0.0,0.0,9.130302358840775e-10,23.35133099293478,1.059997780666428,-11.120323957927932,0.0,1.0,0.0 -371,11.0,6.148440924960652,7.5,0.0,0.0,1.0294791357101007,-10.877334727293489,1.0,0.0,0.0 -371,12.0,0.0,0.0,-3.213941814980232e-09,15.970538559206544,1.0507578293895743,-10.877334727531814,0.0,1.0,0.0 -371,13.0,3.403601226317504,1.6,0.0,0.0,1.0165922832446674,-11.442578481767882,1.0,0.0,0.0 -371,14.0,4.501537105774762,2.5,0.0,0.0,1.0106433309775935,-11.531323881797691,1.0,0.0,0.0 -371,15.0,1.921387789050204,1.8,0.0,0.0,0.99124218431677,-12.426865430175065,1.0,0.0,0.0 -371,16.0,4.940711457557667,5.8,0.0,0.0,0.995753738348778,-12.267137337274264,1.0,0.0,0.0 -371,17.0,1.756697407131615,0.9,0.0,0.0,0.999262513244102,-12.062557502696444,1.0,0.0,0.0 -371,18.0,5.215195427421982,3.4,0.0,0.0,0.9948281209646888,-12.283352340824583,1.0,0.0,0.0 -371,19.0,1.2077294674029857,0.7,0.0,0.0,0.9965907738327108,-12.261400204924916,1.0,0.0,0.0 -371,20.0,9.60693894525102,11.2,0.0,0.0,0.994595813485153,-12.219217706030934,1.0,0.0,0.0 -371,21.0,0.0,0.0,0.0,0.0,0.9952191772249488,-12.205207791930798,1.0,0.0,0.0 -371,22.0,1.756697407131615,1.6,0.0,0.0,0.9982264921965028,-11.88116881067262,1.0,0.0,0.0 -371,23.0,4.776021075639078,6.7,0.0,0.0,0.9884032366059016,-12.21009627886957,1.0,0.0,0.0 -371,24.0,0.0,0.0,0.0,0.0,0.9808900515386904,-11.978794563133269,1.0,0.0,0.0 -371,25.0,1.921387789050204,2.3,0.0,0.0,0.9667928022009415,-12.06640565778992,1.0,0.0,0.0 -371,26.0,0.0,0.0,0.0,0.0,0.9832862911357388,-11.755176273996437,1.0,0.0,0.0 -371,27.0,0.0,0.0,0.0,0.0,0.9646934095493817,-9.64389745078976,1.0,0.0,0.0 -371,28.0,1.3175230553487112,0.9,0.0,0.0,0.969420544912929,-12.3973541715035,1.0,0.0,0.0 -371,29.0,5.819060161123475,1.9,0.0,0.0,0.961856797131848,-12.87959768380678,1.0,0.0,0.0 -372,0.0,0.0,0.0,162.72473832243395,0.0008339589729899,1.0,0.0,0.0,0.0,1.0 -372,1.0,11.912604292111263,12.7,1.2372044102329865e-06,9.64866366289074,0.9815765161577747,-3.4358274819995764,0.0,1.0,0.0 -372,2.0,1.3175230553487112,1.2,0.0,0.0,0.9714120126746012,-5.766941820440263,1.0,0.0,0.0 -372,3.0,4.172156341937585,1.6,0.0,0.0,0.9643131851553576,-7.100915104911391,1.0,0.0,0.0 -372,4.0,51.71277992243692,19.0,-9.310759305955571e-10,24.902582032067897,0.9611320230113264,-9.192952280642762,0.0,1.0,0.0 -372,5.0,0.0,0.0,0.0,0.0,0.9657751636032988,-7.879162678916323,1.0,0.0,0.0 -372,6.0,12.516469025812755,10.9,0.0,0.0,0.9572984098504412,-8.69515954804295,1.0,0.0,0.0 -372,7.0,16.46903819185889,30.0,-3.0889224123719047e-10,30.22021769315441,0.964668441362443,-8.309792926845713,0.0,1.0,0.0 -372,8.0,0.0,0.0,0.0,0.0,1.0172583550685794,-9.653063094341418,1.0,0.0,0.0 -372,9.0,3.184014050426052,2.0,0.0,0.0,1.010906025076056,-10.569355541264578,1.0,0.0,0.0 -372,10.0,0.0,0.0,9.442803039385291e-10,21.647117176303045,1.05974590198195,-9.653063094237028,0.0,1.0,0.0 -372,11.0,6.148440924960652,7.5,0.0,0.0,1.016999828023955,-10.611808744681758,1.0,0.0,0.0 -372,12.0,0.0,0.0,5.439137675999671e-10,16.587644376179544,1.0393434546874196,-10.61180874464048,0.0,1.0,0.0 -372,13.0,3.403601226317504,1.6,0.0,0.0,1.0037635272906902,-11.12373422463512,1.0,0.0,0.0 -372,14.0,4.501537105774762,2.5,0.0,0.0,0.9980235926215936,-11.143454727861696,1.0,0.0,0.0 -372,15.0,1.921387789050204,1.8,0.0,0.0,1.0085596291688474,-10.701891014268634,1.0,0.0,0.0 -372,16.0,4.940711457557667,5.8,0.0,0.0,1.0057224664702409,-10.70474234297576,1.0,0.0,0.0 -372,17.0,1.756697407131615,0.9,0.0,0.0,0.980608166779057,-11.765215182616885,1.0,0.0,0.0 -372,18.0,5.215195427421982,3.4,0.0,0.0,0.9726544309447406,-12.039468658968778,1.0,0.0,0.0 -372,19.0,1.2077294674029857,0.7,0.0,0.0,1.008332321839294,-10.67440822474927,1.0,0.0,0.0 -372,20.0,9.60693894525102,11.2,0.0,0.0,0.9999490933248312,-10.77539531383196,1.0,0.0,0.0 -372,21.0,0.0,0.0,0.0,0.0,1.000195749289461,-10.78185516060313,1.0,0.0,0.0 -372,22.0,1.756697407131615,1.6,0.0,0.0,0.9908293414758964,-11.159047957444653,1.0,0.0,0.0 -372,23.0,4.776021075639078,6.7,0.0,0.0,0.9879415024237608,-11.028808556410308,1.0,0.0,0.0 -372,24.0,0.0,0.0,0.0,0.0,0.9805490061930908,-10.711921963530962,1.0,0.0,0.0 -372,25.0,1.921387789050204,2.3,0.0,0.0,0.9664467076931794,-10.79959491764578,1.0,0.0,0.0 -372,26.0,0.0,0.0,0.0,0.0,0.9829967020317872,-10.434718949183576,1.0,0.0,0.0 -372,27.0,0.0,0.0,0.0,0.0,0.9638577642333984,-8.240094971945663,1.0,0.0,0.0 -372,28.0,1.3175230553487112,0.9,0.0,0.0,0.969126627226702,-11.077280583966171,1.0,0.0,0.0 -372,29.0,5.819060161123475,1.9,0.0,0.0,0.9615605119077072,-11.55981868314099,1.0,0.0,0.0 -373,0.0,0.0,0.0,162.24753607902124,0.0005959946828504,1.0,0.0,0.0,0.0,1.0 -373,1.0,11.912604292111263,12.7,7.748915223088105e-07,10.526451497884423,0.9802188551050328,-3.7235797403562554,0.0,1.0,0.0 -373,2.0,1.3175230553487112,1.2,0.0,0.0,0.9741849623278256,-4.883450077496024,1.0,0.0,0.0 -373,3.0,4.172156341937585,1.6,0.0,0.0,0.9675630290455146,-6.001622623116687,1.0,0.0,0.0 -373,4.0,51.71277992243692,19.0,-7.892561900485031e-10,24.19777731418162,0.9602156163084822,-8.962847812169558,0.0,1.0,0.0 -373,5.0,0.0,0.0,0.0,0.0,0.9672012255651912,-7.124814236044393,1.0,0.0,0.0 -373,6.0,12.516469025812755,10.9,0.0,0.0,0.9578474200856256,-8.155160242020527,1.0,0.0,0.0 -373,7.0,16.46903819185889,30.0,-4.5305369797071807e-10,30.55872650108341,0.9661982718403542,-7.555721451346455,0.0,1.0,0.0 -373,8.0,0.0,0.0,0.0,0.0,1.015638164383616,-8.943626669552996,1.0,0.0,0.0 -373,9.0,3.184014050426052,2.0,0.0,0.0,1.0067033241499648,-9.88842797651142,1.0,0.0,0.0 -373,10.0,0.0,0.0,3.6408508481735956e-10,22.59156584519863,1.0599700372721588,-8.943626669512694,0.0,1.0,0.0 -373,11.0,6.148440924960652,7.5,0.0,0.0,1.0137133232506756,-9.418438885513256,1.0,0.0,0.0 -373,12.0,0.0,0.0,-5.865178763803897e-10,9.91753175077757,1.027229816087663,-9.418438885558436,0.0,1.0,0.0 -373,13.0,3.403601226317504,1.6,0.0,0.0,1.0026538439967254,-9.890040388174596,1.0,0.0,0.0 -373,14.0,4.501537105774762,2.5,0.0,0.0,0.9993281181730744,-9.917513130660344,1.0,0.0,0.0 -373,15.0,1.921387789050204,1.8,0.0,0.0,1.0045177428666556,-9.727217695223908,1.0,0.0,0.0 -373,16.0,4.940711457557667,5.8,0.0,0.0,1.0016628486846388,-9.933316383814006,1.0,0.0,0.0 -373,17.0,1.756697407131615,0.9,0.0,0.0,0.9927313783630726,-10.25515528293315,1.0,0.0,0.0 -373,18.0,5.215195427421982,3.4,0.0,0.0,0.991129363450312,-10.357421914120478,1.0,0.0,0.0 -373,19.0,1.2077294674029857,0.7,0.0,0.0,0.9944039881451844,-10.272100912576564,1.0,0.0,0.0 -373,20.0,9.60693894525102,11.2,0.0,0.0,0.9961250478208218,-10.064747534025033,1.0,0.0,0.0 -373,21.0,0.0,0.0,0.0,0.0,0.9965098441405008,-10.061334625085395,1.0,0.0,0.0 -373,22.0,1.756697407131615,1.6,0.0,0.0,0.990851782637422,-10.096757148798384,1.0,0.0,0.0 -373,23.0,4.776021075639078,6.7,0.0,0.0,0.9862783590599616,-10.187912087707865,1.0,0.0,0.0 -373,24.0,0.0,0.0,0.0,0.0,0.9799163126601006,-9.91478436730768,1.0,0.0,0.0 -373,25.0,1.921387789050204,2.3,0.0,0.0,0.9658046373898286,-10.002572250778282,1.0,0.0,0.0 -373,26.0,0.0,0.0,0.0,0.0,0.9830215591695094,-9.663712569300694,1.0,0.0,0.0 -373,27.0,0.0,0.0,0.0,0.0,0.965159125416952,-7.481228017179494,1.0,0.0,0.0 -373,28.0,1.3175230553487112,0.9,0.0,0.0,0.9691518560156082,-10.30624125203614,1.0,0.0,0.0 -373,29.0,5.819060161123475,1.9,0.0,0.0,0.9615859439725624,-10.788754054394408,1.0,0.0,0.0 -374,0.0,0.0,0.0,166.6419310578049,0.0007579681613023,1.0,0.0,0.0,0.0,1.0 -374,1.0,11.912604292111263,12.7,2.1855884734301927e-06,1.220827178049774,0.9805462249502298,-3.456295198541007,0.0,1.0,0.0 -374,2.0,1.3175230553487112,1.2,0.0,0.0,0.973118427858769,-6.082095570736885,1.0,0.0,0.0 -374,3.0,4.172156341937585,1.6,0.0,0.0,0.9664921907132225,-7.491059311281673,1.0,0.0,0.0 -374,4.0,51.71277992243692,19.0,-1.6552756689116694e-09,34.22633340843012,0.9400012259960856,-17.018620938031443,0.0,1.0,0.0 -374,5.0,0.0,0.0,0.0,0.0,0.965722425944845,-9.253870838671958,1.0,0.0,0.0 -374,6.0,12.516469025812755,10.9,0.0,0.0,0.9481208999929917,-12.681106921742217,1.0,0.0,0.0 -374,7.0,16.46903819185889,30.0,1.7078159645549594e-09,39.12341086542954,0.9678584812593828,-9.73935689146082,0.0,1.0,0.0 -374,8.0,0.0,0.0,0.0,0.0,1.0173337590368172,-10.894958211347916,1.0,0.0,0.0 -374,9.0,3.184014050426052,2.0,0.0,0.0,1.0109046920044855,-11.742616402884668,1.0,0.0,0.0 -374,10.0,0.0,0.0,2.9017750624578206e-09,21.73927015399771,1.0599922609759562,-10.894958211027229,0.0,1.0,0.0 -374,11.0,6.148440924960652,7.5,0.0,0.0,1.0228583751322775,-11.229055910773722,1.0,0.0,0.0 -374,12.0,0.0,0.0,2.114911500201957e-09,17.412888739823348,1.0461607633406702,-11.229055910615184,0.0,1.0,0.0 -374,13.0,3.403601226317504,1.6,0.0,0.0,1.0103805637011156,-11.732640204401346,1.0,0.0,0.0 -374,14.0,4.501537105774762,2.5,0.0,0.0,1.0053446089575255,-11.76519949018918,1.0,0.0,0.0 -374,15.0,1.921387789050204,1.8,0.0,0.0,1.0115334180698672,-11.544349385785972,1.0,0.0,0.0 -374,16.0,4.940711457557667,5.8,0.0,0.0,1.0067783600299038,-11.778302458466936,1.0,0.0,0.0 -374,17.0,1.756697407131615,0.9,0.0,0.0,0.9981570008939138,-12.101131895616378,1.0,0.0,0.0 -374,18.0,5.215195427421982,3.4,0.0,0.0,0.9961925659287418,-12.203541397620748,1.0,0.0,0.0 -374,19.0,1.2077294674029857,0.7,0.0,0.0,0.9992550310137768,-12.119657985113408,1.0,0.0,0.0 -374,20.0,9.60693894525102,11.2,0.0,0.0,0.9797537629631762,-12.249953605632586,1.0,0.0,0.0 -374,21.0,0.0,0.0,0.0,0.0,0.9835895136039828,-12.192398467642423,1.0,0.0,0.0 -374,22.0,1.756697407131615,1.6,0.0,0.0,0.9913871966872752,-12.046739356842448,1.0,0.0,0.0 -374,23.0,4.776021075639078,6.7,0.0,0.0,0.9795305888590532,-12.28218282088711,1.0,0.0,0.0 -374,24.0,0.0,0.0,0.0,0.0,0.9750363500116148,-12.0572007266007,1.0,0.0,0.0 -374,25.0,1.921387789050204,2.3,0.0,0.0,0.9608519243349732,-12.1458827505548,1.0,0.0,0.0 -374,26.0,0.0,0.0,0.0,0.0,0.9793533522621244,-11.833238397317167,1.0,0.0,0.0 -374,27.0,0.0,0.0,0.0,0.0,0.964078294295091,-9.619610843294083,1.0,0.0,0.0 -374,28.0,1.3175230553487112,0.9,0.0,0.0,0.972525746348954,-12.043393774784764,1.0,0.0,0.0 -374,29.0,5.819060161123475,1.9,0.0,0.0,0.9471110971950606,-13.624118057983964,1.0,0.0,0.0 -375,0.0,0.0,0.0,136.47740098114835,7.215360575685281e-06,1.0,0.0,0.0,0.0,1.0 -375,1.0,11.912604292111263,12.7,35.02240706848948,15.232714439374682,0.969501393942041,-16.872362823173063,0.0,1.0,0.0 -375,2.0,1.3175230553487112,1.2,0.0,0.0,0.9615270918605268,-13.50456805117106,1.0,0.0,0.0 -375,3.0,4.172156341937585,1.6,0.0,0.0,0.9565434088419784,-16.72604189652088,1.0,0.0,0.0 -375,4.0,51.71277992243692,19.0,5.3539408536879106e-11,37.77856563553377,0.9400000599903116,-27.30933650861068,0.0,1.0,0.0 -375,5.0,0.0,0.0,0.0,0.0,0.9587361494142532,-19.318182041815,1.0,0.0,0.0 -375,6.0,12.516469025812755,10.9,0.0,0.0,0.9438824348535376,-22.84646851361604,1.0,0.0,0.0 -375,7.0,16.46903819185889,30.0,2.84920240905424e-12,39.6436185160226,0.9611926635716695,-19.809791712772167,0.0,1.0,0.0 -375,8.0,0.0,0.0,0.0,0.0,1.0126515892324242,-20.87670110085101,1.0,0.0,0.0 -375,9.0,3.184014050426052,2.0,0.0,0.0,1.0051386155416642,-21.68047971156331,1.0,0.0,0.0 -375,10.0,0.0,0.0,2.0769938601384917e-12,23.999810340340623,1.059756382677305,-20.876701100850777,0.0,1.0,0.0 -375,11.0,6.148440924960652,7.5,0.0,0.0,1.0230837826865884,-20.81588962822732,1.0,0.0,0.0 -375,12.0,0.0,0.0,-2.250652590544302e-12,22.33914174718524,1.0527903602049933,-20.81588962822749,0.0,1.0,0.0 -375,13.0,3.403601226317504,1.6,0.0,0.0,1.0108016345920152,-21.344679345569546,1.0,0.0,0.0 -375,14.0,4.501537105774762,2.5,0.0,0.0,1.0057764268580036,-21.406819103635076,1.0,0.0,0.0 -375,15.0,1.921387789050204,1.8,0.0,0.0,1.0089097418429231,-21.26836936215416,1.0,0.0,0.0 -375,16.0,4.940711457557667,5.8,0.0,0.0,1.0020478582001842,-21.65392512766344,1.0,0.0,0.0 -375,17.0,1.756697407131615,0.9,0.0,0.0,0.9963578726417702,-21.84670826926341,1.0,0.0,0.0 -375,18.0,5.215195427421982,3.4,0.0,0.0,0.9930833558573116,-22.01147506740069,1.0,0.0,0.0 -375,19.0,1.2077294674029857,0.7,0.0,0.0,0.9954658524627782,-21.95948961085329,1.0,0.0,0.0 -375,20.0,9.60693894525102,11.2,0.0,0.0,0.9947653557579096,-21.85048223426658,1.0,0.0,0.0 -375,21.0,0.0,0.0,0.0,0.0,0.9952212704581233,-21.84495144195411,1.0,0.0,0.0 -375,22.0,1.756697407131615,1.6,0.0,0.0,0.9943995815962732,-21.70002142381536,1.0,0.0,0.0 -375,23.0,4.776021075639078,6.7,0.0,0.0,0.9859673265953308,-21.949429851712985,1.0,0.0,0.0 -375,24.0,0.0,0.0,0.0,0.0,0.9762385717976032,-21.81456958801074,1.0,0.0,0.0 -375,25.0,1.921387789050204,2.3,0.0,0.0,0.9620721393845404,-21.903030059399903,1.0,0.0,0.0 -375,26.0,0.0,0.0,0.0,0.0,0.9773269454558302,-21.65292888221584,1.0,0.0,0.0 -375,27.0,0.0,0.0,0.0,0.0,0.9578455748219672,-19.667888496459568,1.0,0.0,0.0 -375,28.0,1.3175230553487112,0.9,0.0,0.0,0.9633715589478404,-22.303073752479573,1.0,0.0,0.0 -375,29.0,5.819060161123475,1.9,0.0,0.0,0.9557587805578172,-22.791434979708967,1.0,0.0,0.0 -376,0.0,0.0,0.0,129.83893982100255,8.988964239620145e-07,1.0,0.0,0.0,0.0,1.0 -376,1.0,11.912604292111263,12.7,35.72934410539187,-11.701402081962502,0.9783192099217844,-3.662517875863153,0.0,1.0,0.0 -376,2.0,1.3175230553487112,1.2,0.0,0.0,0.9911672123038728,-1.872734409554297,1.0,0.0,0.0 -376,3.0,4.172156341937585,1.6,0.0,0.0,0.9884401554597528,-2.269323826757516,1.0,0.0,0.0 -376,4.0,51.71277992243692,19.0,4.026056681281776e-09,39.99999940088834,0.9723224063262782,-11.835670590427071,0.0,1.0,0.0 -376,5.0,0.0,0.0,0.0,0.0,0.9608288057877749,-12.561701817505298,1.0,0.0,0.0 -376,6.0,12.516469025812755,10.9,0.0,0.0,0.9584771694708928,-12.52853970745135,1.0,0.0,0.0 -376,7.0,16.46903819185889,30.0,5.442083960703422e-09,39.9999994612307,0.9632819363564658,-13.067289961034904,0.0,1.0,0.0 -376,8.0,0.0,0.0,0.0,0.0,1.010827368354568,-16.49398950450892,1.0,0.0,0.0 -376,9.0,3.184014050426052,2.0,0.0,0.0,1.002742450039519,-18.53029451394109,1.0,0.0,0.0 -376,10.0,0.0,0.0,5.903509324523042e-09,23.999999777715,1.0580102745497753,-16.493989503851072,0.0,1.0,0.0 -376,11.0,6.148440924960652,7.5,0.0,0.0,1.0019655736275537,-22.191120679739296,1.0,0.0,0.0 -376,12.0,0.0,0.0,2.7496359204037006e-09,23.999999823628336,1.0344467054031954,-22.1911206795265,0.0,1.0,0.0 -376,13.0,3.403601226317504,1.6,0.0,0.0,0.992294719062478,-22.322845382875595,1.0,0.0,0.0 -376,14.0,4.501537105774762,2.5,0.0,0.0,0.9928049744845036,-22.041070411483663,1.0,0.0,0.0 -376,15.0,1.921387789050204,1.8,0.0,0.0,0.998229600741196,-20.73934924226846,1.0,0.0,0.0 -376,16.0,4.940711457557667,5.8,0.0,0.0,0.995902249956656,-19.31003105153489,1.0,0.0,0.0 -376,17.0,1.756697407131615,0.9,0.0,0.0,0.9869096777008506,-21.156692627519632,1.0,0.0,0.0 -376,18.0,5.215195427421982,3.4,0.0,0.0,0.9858893540249216,-20.529018318387838,1.0,0.0,0.0 -376,19.0,1.2077294674029857,0.7,0.0,0.0,0.9895842169413857,-20.05834242338094,1.0,0.0,0.0 -376,20.0,9.60693894525102,11.2,0.0,0.0,0.989403771611599,-18.80233910830292,1.0,0.0,0.0 -376,21.0,0.0,0.0,0.0,0.0,0.988926067525176,-18.82807754681858,1.0,0.0,0.0 -376,22.0,1.756697407131615,1.6,0.0,0.0,0.9594896744144408,-19.44355016351784,1.0,0.0,0.0 -376,23.0,4.776021075639078,6.7,0.0,0.0,0.96641270188039,-19.28097476240953,1.0,0.0,0.0 -376,24.0,0.0,0.0,0.0,0.0,0.954499131202138,-19.40532732666058,1.0,0.0,0.0 -376,25.0,1.921387789050204,2.3,0.0,0.0,0.9400000012965164,-19.497927022899116,1.0,0.0,0.0 -376,26.0,0.0,0.0,0.0,0.0,0.9770040961203882,-14.502324708229503,1.0,0.0,0.0 -376,27.0,0.0,0.0,0.0,0.0,0.9578882304790944,-12.803713806548204,1.0,0.0,0.0 -376,28.0,1.3175230553487112,0.9,0.0,0.0,0.9630438192881656,-15.152905441346991,1.0,0.0,0.0 -376,29.0,5.819060161123475,1.9,0.0,0.0,0.9554283659537708,-15.641601459608196,1.0,0.0,0.0 -377,0.0,0.0,0.0,136.3419915878083,5.697557980965939e-07,1.0,0.0,0.0,0.0,1.0 -377,1.0,11.912604292111263,12.7,34.04180176851755,1.2031756296172489,0.975419161083198,-4.58009375991946,0.0,1.0,0.0 -377,2.0,1.3175230553487112,1.2,0.0,0.0,0.9504766733875814,-12.668992318321123,1.0,0.0,0.0 -377,3.0,4.172156341937585,1.6,0.0,0.0,0.9509869367984096,-12.644205982124658,1.0,0.0,0.0 -377,4.0,51.71277992243692,19.0,-6.638808207963188e-09,39.99999923840328,0.9400000001761596,-21.915502239369864,0.0,1.0,0.0 -377,5.0,0.0,0.0,0.0,0.0,0.9543755941773612,-13.781068120590852,1.0,0.0,0.0 -377,6.0,12.516469025812755,10.9,0.0,0.0,0.9412348269408296,-17.373675281304315,1.0,0.0,0.0 -377,7.0,16.46903819185889,30.0,-3.998339097197859e-09,39.99999837279847,0.956984487451454,-14.28269125542974,0.0,1.0,0.0 -377,8.0,0.0,0.0,0.0,0.0,1.0114228110272525,-15.533765888407617,1.0,0.0,0.0 -377,9.0,3.184014050426052,2.0,0.0,0.0,1.0056647008057389,-16.433084838196542,1.0,0.0,0.0 -377,10.0,0.0,0.0,-4.593216926343322e-09,23.9999996017143,1.0585803093580486,-15.53376588891888,0.0,1.0,0.0 -377,11.0,6.148440924960652,7.5,0.0,0.0,1.013782844494992,-16.37821715234883,1.0,0.0,0.0 -377,12.0,0.0,0.0,-4.1987794390160755e-09,23.999999509759736,1.0459080391172848,-16.37821715266647,0.0,1.0,0.0 -377,13.0,3.403601226317504,1.6,0.0,0.0,1.0023057294706672,-16.804669009771903,1.0,0.0,0.0 -377,14.0,4.501537105774762,2.5,0.0,0.0,0.9988885569343308,-16.77798354822976,1.0,0.0,0.0 -377,15.0,1.921387789050204,1.8,0.0,0.0,0.991732097847552,-16.743276593560662,1.0,0.0,0.0 -377,16.0,4.940711457557667,5.8,0.0,0.0,0.9776536295719152,-17.125132203477833,1.0,0.0,0.0 -377,17.0,1.756697407131615,0.9,0.0,0.0,0.9920956217563665,-17.004953114717345,1.0,0.0,0.0 -377,18.0,5.215195427421982,3.4,0.0,0.0,0.990375121370184,-17.04103119506968,1.0,0.0,0.0 -377,19.0,1.2077294674029857,0.7,0.0,0.0,0.9935933794735634,-16.920625835741294,1.0,0.0,0.0 -377,20.0,9.60693894525102,11.2,0.0,0.0,0.994799616812216,-16.629565644347508,1.0,0.0,0.0 -377,21.0,0.0,0.0,0.0,0.0,0.9950960598996944,-16.63238605443839,1.0,0.0,0.0 -377,22.0,1.756697407131615,1.6,0.0,0.0,0.9894189962261538,-16.86686657775736,1.0,0.0,0.0 -377,23.0,4.776021075639078,6.7,0.0,0.0,0.9835144981635848,-16.835964197184314,1.0,0.0,0.0 -377,24.0,0.0,0.0,0.0,0.0,0.973501425868255,-16.545992345968255,1.0,0.0,0.0 -377,25.0,1.921387789050204,2.3,0.0,0.0,0.9592939598957956,-16.634958449536256,1.0,0.0,0.0 -377,26.0,0.0,0.0,0.0,0.0,0.9743843265757134,-16.287027705336275,1.0,0.0,0.0 -377,27.0,0.0,0.0,0.0,0.0,0.953593126091292,-14.154245126524406,1.0,0.0,0.0 -377,28.0,1.3175230553487112,0.9,0.0,0.0,0.9603842360267792,-16.941161607694067,1.0,0.0,0.0 -377,29.0,5.819060161123475,1.9,0.0,0.0,0.9527470047440222,-17.432587241609934,1.0,0.0,0.0 -378,0.0,0.0,0.0,162.28954817397658,0.0006360647512693,1.0,0.0,0.0,0.0,1.0 -378,1.0,11.912604292111263,12.7,8.619606163482409e-07,10.33698899699759,0.980191497699584,-3.7238275035983617,0.0,1.0,0.0 -378,2.0,1.3175230553487112,1.2,0.0,0.0,0.9742480543680369,-4.886566379812044,1.0,0.0,0.0 -378,3.0,4.172156341937585,1.6,0.0,0.0,0.967641242696856,-6.005462890490096,1.0,0.0,0.0 -378,4.0,51.71277992243692,19.0,-8.039332871349711e-10,24.200906162278088,0.9602455136648376,-8.963910898984425,0.0,1.0,0.0 -378,5.0,0.0,0.0,0.0,0.0,0.9672807697623788,-7.127240937130468,1.0,0.0,0.0 -378,6.0,12.516469025812755,10.9,0.0,0.0,0.9579070630384736,-8.157021927736206,1.0,0.0,0.0 -378,7.0,16.46903819185889,30.0,-3.9377635934989185e-10,30.59732288151794,0.9662640829018282,-7.558889373941905,0.0,1.0,0.0 -378,8.0,0.0,0.0,0.0,0.0,1.016073632437436,-8.928087803310039,1.0,0.0,0.0 -378,9.0,3.184014050426052,2.0,0.0,0.0,1.0075523284668413,-9.862847503109371,1.0,0.0,0.0 -378,10.0,0.0,0.0,4.149331100996764e-10,22.365740422532145,1.0599626687682413,-8.92808780326412,0.0,1.0,0.0 -378,11.0,6.148440924960652,7.5,0.0,0.0,1.01410351048419,-9.432230743539892,1.0,0.0,0.0 -378,12.0,0.0,0.0,-4.2331527081952616e-10,10.384566831423989,1.0282425802362452,-9.432230743572456,0.0,1.0,0.0 -378,13.0,3.403601226317504,1.6,0.0,0.0,1.0028027574317833,-9.90746550700471,1.0,0.0,0.0 -378,14.0,4.501537105774762,2.5,0.0,0.0,0.9992148892560994,-9.933255880511954,1.0,0.0,0.0 -378,15.0,1.921387789050204,1.8,0.0,0.0,1.005136325441126,-9.7249769425826,1.0,0.0,0.0 -378,16.0,4.940711457557667,5.8,0.0,0.0,1.0024348552661784,-9.914581191546544,1.0,0.0,0.0 -378,17.0,1.756697407131615,0.9,0.0,0.0,0.9929631705957972,-10.25633718035106,1.0,0.0,0.0 -378,18.0,5.215195427421982,3.4,0.0,0.0,0.9915642144407724,-10.349904087626072,1.0,0.0,0.0 -378,19.0,1.2077294674029857,0.7,0.0,0.0,0.9949444616593228,-10.26015014461446,1.0,0.0,0.0 -378,20.0,9.60693894525102,11.2,0.0,0.0,0.9925898523259974,-10.119198870689347,1.0,0.0,0.0 -378,21.0,0.0,0.0,0.0,0.0,0.9915844011007208,-10.139739180257246,1.0,0.0,0.0 -378,22.0,1.756697407131615,1.6,0.0,0.0,0.9894517948374666,-10.13296979790588,1.0,0.0,0.0 -378,23.0,4.776021075639078,6.7,0.0,0.0,0.9831769588137882,-10.252400150087322,1.0,0.0,0.0 -378,24.0,0.0,0.0,0.0,0.0,0.978001120943436,-9.971314985314228,1.0,0.0,0.0 -378,25.0,1.921387789050204,2.3,0.0,0.0,0.9638609844984636,-10.05945215521579,1.0,0.0,0.0 -378,26.0,0.0,0.0,0.0,0.0,0.9818549771238754,-9.713740521480847,1.0,0.0,0.0 -378,27.0,0.0,0.0,0.0,0.0,0.9650766456574448,-7.486637487897224,1.0,0.0,0.0 -378,28.0,1.3175230553487112,0.9,0.0,0.0,0.9679678093911928,-10.357818438216542,1.0,0.0,0.0 -378,29.0,5.819060161123475,1.9,0.0,0.0,0.9603923449399988,-10.841520633675454,1.0,0.0,0.0 -379,0.0,0.0,0.0,162.4227527682828,0.0130994246800852,1.0,0.0,0.0,0.0,1.0 -379,1.0,11.912604292111263,12.7,9.96677628686662e-06,13.996735779805917,0.9807298855412482,-3.746619882398565,0.0,1.0,0.0 -379,2.0,1.3175230553487112,1.2,0.0,0.0,0.972586426193366,-4.841565755540138,1.0,0.0,0.0 -379,3.0,4.172156341937585,1.6,0.0,0.0,0.9655870100896224,-5.950346647925326,1.0,0.0,0.0 -379,4.0,51.71277992243692,19.0,-1.0598576319244142e-08,25.02059113998368,0.9606110573165082,-9.0098122902442,0.0,1.0,0.0 -379,5.0,0.0,0.0,0.0,0.0,0.9657671571396208,-7.161508995788037,1.0,0.0,0.0 -379,6.0,12.516469025812755,10.9,0.0,0.0,0.9571557787428993,-8.195604285315191,1.0,0.0,0.0 -379,7.0,16.46903819185889,30.0,-1.0526070320462376e-08,35.97676891418807,0.9666971019258768,-7.629293298923249,0.0,1.0,0.0 -379,8.0,0.0,0.0,0.0,0.0,1.009216040323998,-9.207348456566969,1.0,0.0,0.0 -379,9.0,3.184014050426052,2.0,0.0,0.0,0.9962417909370708,-10.279615072322352,1.0,0.0,0.0 -379,10.0,0.0,0.0,-2.0740229499902513e-08,23.9812751727536,1.0564325451435732,-9.207348458885289,0.0,1.0,0.0 -379,11.0,6.148440924960652,7.5,0.0,0.0,1.000079502884151,-8.964839715878172,1.0,0.0,0.0 -379,12.0,0.0,0.0,0.0,0.0,1.000079502884151,-8.964839715878172,0.0,1.0,0.0 -379,13.0,3.403601226317504,1.6,0.0,0.0,0.9713411493760304,-10.080590277868124,1.0,0.0,0.0 -379,14.0,4.501537105774762,2.5,0.0,0.0,0.9823802480710137,-9.884786189938524,1.0,0.0,0.0 -379,15.0,1.921387789050204,1.8,0.0,0.0,0.9829181615541206,-10.636271488547738,1.0,0.0,0.0 -379,16.0,4.940711457557667,5.8,0.0,0.0,0.9874679885748752,-10.473839088267722,1.0,0.0,0.0 -379,17.0,1.756697407131615,0.9,0.0,0.0,0.9778938010234066,-10.383603431174231,1.0,0.0,0.0 -379,18.0,5.215195427421982,3.4,0.0,0.0,0.9775876640294104,-10.578412649829437,1.0,0.0,0.0 -379,19.0,1.2077294674029857,0.7,0.0,0.0,0.9816006236721596,-10.53801430280941,1.0,0.0,0.0 -379,20.0,9.60693894525102,11.2,0.0,0.0,0.985422526972703,-10.431206961876564,1.0,0.0,0.0 -379,21.0,0.0,0.0,0.0,0.0,0.9857744175201228,-10.418494575100778,1.0,0.0,0.0 -379,22.0,1.756697407131615,1.6,0.0,0.0,0.9763499789150284,-10.180027343023788,1.0,0.0,0.0 -379,23.0,4.776021075639078,6.7,0.0,0.0,0.9751685799102012,-10.420605174607456,1.0,0.0,0.0 -379,24.0,0.0,0.0,0.0,0.0,0.9725301301505564,-10.127206884903936,1.0,0.0,0.0 -379,25.0,1.921387789050204,2.3,0.0,0.0,0.9583080449950714,-10.216353457919777,1.0,0.0,0.0 -379,26.0,0.0,0.0,0.0,0.0,0.977997664780094,-9.858439302779534,1.0,0.0,0.0 -379,27.0,0.0,0.0,0.0,0.0,0.9636606621349094,-7.534535653759143,1.0,0.0,0.0 -379,28.0,1.3175230553487112,0.9,0.0,0.0,0.9640524267233034,-10.507680075608118,1.0,0.0,0.0 -379,29.0,5.819060161123475,1.9,0.0,0.0,0.956445199385854,-10.995346887597876,1.0,0.0,0.0 -380,0.0,0.0,0.0,162.24753607902124,0.0005959946828504,1.0,0.0,0.0,0.0,1.0 -380,1.0,11.912604292111263,12.7,7.748915223088105e-07,10.526451497884423,0.9802188551050328,-3.7235797403562554,0.0,1.0,0.0 -380,2.0,1.3175230553487112,1.2,0.0,0.0,0.9741849623278256,-4.883450077496024,1.0,0.0,0.0 -380,3.0,4.172156341937585,1.6,0.0,0.0,0.9675630290455146,-6.001622623116687,1.0,0.0,0.0 -380,4.0,51.71277992243692,19.0,-7.892561900485031e-10,24.19777731418162,0.9602156163084822,-8.962847812169558,0.0,1.0,0.0 -380,5.0,0.0,0.0,0.0,0.0,0.9672012255651912,-7.124814236044393,1.0,0.0,0.0 -380,6.0,12.516469025812755,10.9,0.0,0.0,0.9578474200856256,-8.155160242020527,1.0,0.0,0.0 -380,7.0,16.46903819185889,30.0,-4.5305369797071807e-10,30.55872650108341,0.9661982718403542,-7.555721451346455,0.0,1.0,0.0 -380,8.0,0.0,0.0,0.0,0.0,1.015638164383616,-8.943626669552996,1.0,0.0,0.0 -380,9.0,3.184014050426052,2.0,0.0,0.0,1.0067033241499648,-9.88842797651142,1.0,0.0,0.0 -380,10.0,0.0,0.0,3.6408508481735956e-10,22.59156584519863,1.0599700372721588,-8.943626669512694,0.0,1.0,0.0 -380,11.0,6.148440924960652,7.5,0.0,0.0,1.0137133232506756,-9.418438885513256,1.0,0.0,0.0 -380,12.0,0.0,0.0,-5.865178763803897e-10,9.91753175077757,1.027229816087663,-9.418438885558436,0.0,1.0,0.0 -380,13.0,3.403601226317504,1.6,0.0,0.0,1.0026538439967254,-9.890040388174596,1.0,0.0,0.0 -380,14.0,4.501537105774762,2.5,0.0,0.0,0.9993281181730744,-9.917513130660344,1.0,0.0,0.0 -380,15.0,1.921387789050204,1.8,0.0,0.0,1.0045177428666556,-9.727217695223908,1.0,0.0,0.0 -380,16.0,4.940711457557667,5.8,0.0,0.0,1.0016628486846388,-9.933316383814006,1.0,0.0,0.0 -380,17.0,1.756697407131615,0.9,0.0,0.0,0.9927313783630726,-10.25515528293315,1.0,0.0,0.0 -380,18.0,5.215195427421982,3.4,0.0,0.0,0.991129363450312,-10.357421914120478,1.0,0.0,0.0 -380,19.0,1.2077294674029857,0.7,0.0,0.0,0.9944039881451844,-10.272100912576564,1.0,0.0,0.0 -380,20.0,9.60693894525102,11.2,0.0,0.0,0.9961250478208218,-10.064747534025033,1.0,0.0,0.0 -380,21.0,0.0,0.0,0.0,0.0,0.9965098441405008,-10.061334625085395,1.0,0.0,0.0 -380,22.0,1.756697407131615,1.6,0.0,0.0,0.990851782637422,-10.096757148798384,1.0,0.0,0.0 -380,23.0,4.776021075639078,6.7,0.0,0.0,0.9862783590599616,-10.187912087707865,1.0,0.0,0.0 -380,24.0,0.0,0.0,0.0,0.0,0.9799163126601006,-9.91478436730768,1.0,0.0,0.0 -380,25.0,1.921387789050204,2.3,0.0,0.0,0.9658046373898286,-10.002572250778282,1.0,0.0,0.0 -380,26.0,0.0,0.0,0.0,0.0,0.9830215591695094,-9.663712569300694,1.0,0.0,0.0 -380,27.0,0.0,0.0,0.0,0.0,0.965159125416952,-7.481228017179494,1.0,0.0,0.0 -380,28.0,1.3175230553487112,0.9,0.0,0.0,0.9691518560156082,-10.30624125203614,1.0,0.0,0.0 -380,29.0,5.819060161123475,1.9,0.0,0.0,0.9615859439725624,-10.788754054394408,1.0,0.0,0.0 -381,0.0,0.0,0.0,162.24753607902124,0.0005959946828504,1.0,0.0,0.0,0.0,1.0 -381,1.0,11.912604292111263,12.7,7.748915223088105e-07,10.526451497884423,0.9802188551050328,-3.7235797403562554,0.0,1.0,0.0 -381,2.0,1.3175230553487112,1.2,0.0,0.0,0.9741849623278256,-4.883450077496024,1.0,0.0,0.0 -381,3.0,4.172156341937585,1.6,0.0,0.0,0.9675630290455146,-6.001622623116687,1.0,0.0,0.0 -381,4.0,51.71277992243692,19.0,-7.892561900485031e-10,24.19777731418162,0.9602156163084822,-8.962847812169558,0.0,1.0,0.0 -381,5.0,0.0,0.0,0.0,0.0,0.9672012255651912,-7.124814236044393,1.0,0.0,0.0 -381,6.0,12.516469025812755,10.9,0.0,0.0,0.9578474200856256,-8.155160242020527,1.0,0.0,0.0 -381,7.0,16.46903819185889,30.0,-4.5305369797071807e-10,30.55872650108341,0.9661982718403542,-7.555721451346455,0.0,1.0,0.0 -381,8.0,0.0,0.0,0.0,0.0,1.015638164383616,-8.943626669552996,1.0,0.0,0.0 -381,9.0,3.184014050426052,2.0,0.0,0.0,1.0067033241499648,-9.88842797651142,1.0,0.0,0.0 -381,10.0,0.0,0.0,3.6408508481735956e-10,22.59156584519863,1.0599700372721588,-8.943626669512694,0.0,1.0,0.0 -381,11.0,6.148440924960652,7.5,0.0,0.0,1.0137133232506756,-9.418438885513256,1.0,0.0,0.0 -381,12.0,0.0,0.0,-5.865178763803897e-10,9.91753175077757,1.027229816087663,-9.418438885558436,0.0,1.0,0.0 -381,13.0,3.403601226317504,1.6,0.0,0.0,1.0026538439967254,-9.890040388174596,1.0,0.0,0.0 -381,14.0,4.501537105774762,2.5,0.0,0.0,0.9993281181730744,-9.917513130660344,1.0,0.0,0.0 -381,15.0,1.921387789050204,1.8,0.0,0.0,1.0045177428666556,-9.727217695223908,1.0,0.0,0.0 -381,16.0,4.940711457557667,5.8,0.0,0.0,1.0016628486846388,-9.933316383814006,1.0,0.0,0.0 -381,17.0,1.756697407131615,0.9,0.0,0.0,0.9927313783630726,-10.25515528293315,1.0,0.0,0.0 -381,18.0,5.215195427421982,3.4,0.0,0.0,0.991129363450312,-10.357421914120478,1.0,0.0,0.0 -381,19.0,1.2077294674029857,0.7,0.0,0.0,0.9944039881451844,-10.272100912576564,1.0,0.0,0.0 -381,20.0,9.60693894525102,11.2,0.0,0.0,0.9961250478208218,-10.064747534025033,1.0,0.0,0.0 -381,21.0,0.0,0.0,0.0,0.0,0.9965098441405008,-10.061334625085395,1.0,0.0,0.0 -381,22.0,1.756697407131615,1.6,0.0,0.0,0.990851782637422,-10.096757148798384,1.0,0.0,0.0 -381,23.0,4.776021075639078,6.7,0.0,0.0,0.9862783590599616,-10.187912087707865,1.0,0.0,0.0 -381,24.0,0.0,0.0,0.0,0.0,0.9799163126601006,-9.91478436730768,1.0,0.0,0.0 -381,25.0,1.921387789050204,2.3,0.0,0.0,0.9658046373898286,-10.002572250778282,1.0,0.0,0.0 -381,26.0,0.0,0.0,0.0,0.0,0.9830215591695094,-9.663712569300694,1.0,0.0,0.0 -381,27.0,0.0,0.0,0.0,0.0,0.965159125416952,-7.481228017179494,1.0,0.0,0.0 -381,28.0,1.3175230553487112,0.9,0.0,0.0,0.9691518560156082,-10.30624125203614,1.0,0.0,0.0 -381,29.0,5.819060161123475,1.9,0.0,0.0,0.9615859439725624,-10.788754054394408,1.0,0.0,0.0 -382,0.0,0.0,0.0,162.24753607902124,0.0005959946828504,1.0,0.0,0.0,0.0,1.0 -382,1.0,11.912604292111263,12.7,7.748915223088105e-07,10.526451497884423,0.9802188551050328,-3.7235797403562554,0.0,1.0,0.0 -382,2.0,1.3175230553487112,1.2,0.0,0.0,0.9741849623278256,-4.883450077496024,1.0,0.0,0.0 -382,3.0,4.172156341937585,1.6,0.0,0.0,0.9675630290455146,-6.001622623116687,1.0,0.0,0.0 -382,4.0,51.71277992243692,19.0,-7.892561900485031e-10,24.19777731418162,0.9602156163084822,-8.962847812169558,0.0,1.0,0.0 -382,5.0,0.0,0.0,0.0,0.0,0.9672012255651912,-7.124814236044393,1.0,0.0,0.0 -382,6.0,12.516469025812755,10.9,0.0,0.0,0.9578474200856256,-8.155160242020527,1.0,0.0,0.0 -382,7.0,16.46903819185889,30.0,-4.5305369797071807e-10,30.55872650108341,0.9661982718403542,-7.555721451346455,0.0,1.0,0.0 -382,8.0,0.0,0.0,0.0,0.0,1.015638164383616,-8.943626669552996,1.0,0.0,0.0 -382,9.0,3.184014050426052,2.0,0.0,0.0,1.0067033241499648,-9.88842797651142,1.0,0.0,0.0 -382,10.0,0.0,0.0,3.6408508481735956e-10,22.59156584519863,1.0599700372721588,-8.943626669512694,0.0,1.0,0.0 -382,11.0,6.148440924960652,7.5,0.0,0.0,1.0137133232506756,-9.418438885513256,1.0,0.0,0.0 -382,12.0,0.0,0.0,-5.865178763803897e-10,9.91753175077757,1.027229816087663,-9.418438885558436,0.0,1.0,0.0 -382,13.0,3.403601226317504,1.6,0.0,0.0,1.0026538439967254,-9.890040388174596,1.0,0.0,0.0 -382,14.0,4.501537105774762,2.5,0.0,0.0,0.9993281181730744,-9.917513130660344,1.0,0.0,0.0 -382,15.0,1.921387789050204,1.8,0.0,0.0,1.0045177428666556,-9.727217695223908,1.0,0.0,0.0 -382,16.0,4.940711457557667,5.8,0.0,0.0,1.0016628486846388,-9.933316383814006,1.0,0.0,0.0 -382,17.0,1.756697407131615,0.9,0.0,0.0,0.9927313783630726,-10.25515528293315,1.0,0.0,0.0 -382,18.0,5.215195427421982,3.4,0.0,0.0,0.991129363450312,-10.357421914120478,1.0,0.0,0.0 -382,19.0,1.2077294674029857,0.7,0.0,0.0,0.9944039881451844,-10.272100912576564,1.0,0.0,0.0 -382,20.0,9.60693894525102,11.2,0.0,0.0,0.9961250478208218,-10.064747534025033,1.0,0.0,0.0 -382,21.0,0.0,0.0,0.0,0.0,0.9965098441405008,-10.061334625085395,1.0,0.0,0.0 -382,22.0,1.756697407131615,1.6,0.0,0.0,0.990851782637422,-10.096757148798384,1.0,0.0,0.0 -382,23.0,4.776021075639078,6.7,0.0,0.0,0.9862783590599616,-10.187912087707865,1.0,0.0,0.0 -382,24.0,0.0,0.0,0.0,0.0,0.9799163126601006,-9.91478436730768,1.0,0.0,0.0 -382,25.0,1.921387789050204,2.3,0.0,0.0,0.9658046373898286,-10.002572250778282,1.0,0.0,0.0 -382,26.0,0.0,0.0,0.0,0.0,0.9830215591695094,-9.663712569300694,1.0,0.0,0.0 -382,27.0,0.0,0.0,0.0,0.0,0.965159125416952,-7.481228017179494,1.0,0.0,0.0 -382,28.0,1.3175230553487112,0.9,0.0,0.0,0.9691518560156082,-10.30624125203614,1.0,0.0,0.0 -382,29.0,5.819060161123475,1.9,0.0,0.0,0.9615859439725624,-10.788754054394408,1.0,0.0,0.0 -383,0.0,0.0,0.0,163.35187181754225,0.0024212987656646,1.0,0.0,0.0,0.0,1.0 -383,1.0,11.97881273431536,12.7,3.397074908701114e-06,10.723261367974914,0.9800986415056068,-3.7316957767504566,0.0,1.0,0.0 -383,2.0,1.3248456480348785,1.2,0.0,0.0,0.9741500511221332,-4.968318253255587,1.0,0.0,0.0 -383,3.0,4.195344552110448,1.6,0.0,0.0,0.9675339897890208,-6.10687712592091,1.0,0.0,0.0 -383,4.0,52.00019168536898,19.0,6.0634224282079426e-09,24.913192235818823,0.960241329687583,-8.967119953452658,0.0,1.0,0.0 -383,5.0,0.0,0.0,0.0,0.0,0.9661841123566166,-7.052034448842039,1.0,0.0,0.0 -383,6.0,12.586033656331349,10.9,0.0,0.0,0.9572476888303556,-8.115688621324384,1.0,0.0,0.0 -383,7.0,16.56057060043598,30.0,5.557803921402145e-09,35.3366135426004,0.9670140746941922,-7.528433602056572,0.0,1.0,0.0 -383,8.0,0.0,0.0,0.0,0.0,1.0222530236872251,-11.764941768171752,1.0,0.0,0.0 -383,9.0,3.2017103160842897,2.0,0.0,0.0,1.013447121188789,-11.764941768275085,1.0,0.0,0.0 -383,10.0,0.0,0.0,1.6985375811641775e-09,8.316808139156606,1.03890418476931,-11.764941767981142,0.0,1.0,0.0 -383,11.0,6.182613024162766,7.5,0.0,0.0,1.0261315187050173,-10.517917681111213,1.0,0.0,0.0 -383,12.0,0.0,0.0,7.196107866138631e-09,18.927957087434,1.0513367072424853,-10.517917680576147,0.0,1.0,0.0 -383,13.0,3.4225179240901027,1.6,0.0,0.0,1.012739864097017,-11.08423343635481,1.0,0.0,0.0 -383,14.0,4.526555964119168,2.5,0.0,0.0,1.0063872166945576,-11.158377556743597,1.0,0.0,0.0 -383,15.0,1.9320665700508644,1.8,0.0,0.0,1.0139724782293429,-11.14570141080109,1.0,0.0,0.0 -383,16.0,4.968171180130795,5.8,0.0,0.0,1.0094435673805622,-11.669543768131842,1.0,0.0,0.0 -383,17.0,1.7664608640465047,0.9,0.0,0.0,0.9890803895337732,-11.774562341029895,1.0,0.0,0.0 -383,18.0,5.244180690138061,3.4,0.0,0.0,0.981176873454454,-12.046315847218477,1.0,0.0,0.0 -383,19.0,1.2144418440319722,0.7,0.0,0.0,1.0108736561214342,-11.87025220368752,1.0,0.0,0.0 -383,20.0,9.660332850254322,11.2,0.0,0.0,1.002745281894602,-11.856938554198166,1.0,0.0,0.0 -383,21.0,0.0,0.0,0.0,0.0,1.0030813109188983,-11.826403974311203,1.0,0.0,0.0 -383,22.0,1.7664608640465047,1.6,0.0,0.0,0.9977632417269672,-11.403744048337709,1.0,0.0,0.0 -383,23.0,4.8025654741264345,6.7,0.0,0.0,0.9929767950873378,-11.584930008812396,1.0,0.0,0.0 -383,24.0,0.0,0.0,0.0,0.0,0.985709518724438,-10.754790637435091,1.0,0.0,0.0 -383,25.0,1.9320665700508644,2.3,0.0,0.0,0.971654797446686,-10.843964670850712,1.0,0.0,0.0 -383,26.0,0.0,0.0,0.0,0.0,0.9880981190393042,-10.156797148035547,1.0,0.0,0.0 -383,27.0,0.0,0.0,0.0,0.0,0.9648640955268292,-7.489828104278251,1.0,0.0,0.0 -383,28.0,1.3248456480348785,0.9,0.0,0.0,0.9742591168860452,-10.797249884258466,1.0,0.0,0.0 -383,29.0,5.851401612154047,1.9,0.0,0.0,0.9667053931323016,-11.27777742643559,1.0,0.0,0.0 -384,0.0,0.0,0.0,167.9847620879403,0.0033452755885399,1.0,0.0,0.0,0.0,1.0 -384,1.0,11.97881273431536,12.7,7.648407071968964e-06,4.531518987668505,0.980664642306362,-3.504205540881443,0.0,1.0,0.0 -384,2.0,1.3248456480348785,1.2,0.0,0.0,0.972179989543444,-6.0819844702311086,1.0,0.0,0.0 -384,3.0,4.195344552110448,1.6,0.0,0.0,0.9653367392654996,-7.491548501221716,1.0,0.0,0.0 -384,4.0,52.00019168536898,19.0,1.6584660045873634e-08,36.36168625171135,0.9400030090118604,-17.345167542665493,0.0,1.0,0.0 -384,5.0,0.0,0.0,0.0,0.0,0.9618447994827364,-9.407151596380457,1.0,0.0,0.0 -384,6.0,12.586033656331349,10.9,0.0,0.0,0.9457425209667364,-12.911689198081724,1.0,0.0,0.0 -384,7.0,16.56057060043598,30.0,1.442888535705108e-08,39.990694506110565,0.9642233342471438,-9.90807261470779,0.0,1.0,0.0 -384,8.0,0.0,0.0,0.0,0.0,1.0037487547672708,-11.590057005067038,1.0,0.0,0.0 -384,9.0,3.2017103160842897,2.0,0.0,0.0,0.989932700194677,-12.736753978615694,1.0,0.0,0.0 -384,10.0,0.0,0.0,2.0737794445727773e-08,23.99675545359016,1.0512295830727043,-11.590057002724826,0.0,1.0,0.0 -384,11.0,6.182613024162766,7.5,0.0,0.0,1.028592428276801,-10.233964050212087,1.0,0.0,0.0 -384,12.0,0.0,0.0,5.3736181018937065e-09,10.670349629563477,1.042916196127807,-10.233964049810274,0.0,1.0,0.0 -384,13.0,3.4225179240901027,1.6,0.0,0.0,0.9990336305683896,-11.82033393105431,1.0,0.0,0.0 -384,14.0,4.526555964119168,2.5,0.0,0.0,0.9702757529188196,-12.575482589338453,1.0,0.0,0.0 -384,15.0,1.9320665700508644,1.8,0.0,0.0,0.9765032553413396,-13.101177205350968,1.0,0.0,0.0 -384,16.0,4.968171180130795,5.8,0.0,0.0,0.9810888146983362,-12.93538651485354,1.0,0.0,0.0 -384,17.0,1.7664608640465047,0.9,0.0,0.0,0.9677366778732808,-13.00322696220046,1.0,0.0,0.0 -384,18.0,5.244180690138061,3.4,0.0,0.0,0.968608385463509,-13.152340340391842,1.0,0.0,0.0 -384,19.0,1.2144418440319722,0.7,0.0,0.0,0.9732925504876642,-13.084186590158778,1.0,0.0,0.0 -384,20.0,9.660332850254322,11.2,0.0,0.0,0.9787899398218473,-12.901822036233607,1.0,0.0,0.0 -384,21.0,0.0,0.0,0.0,0.0,0.9790697017391008,-12.89177433713216,1.0,0.0,0.0 -384,22.0,1.7664608640465047,1.6,0.0,0.0,0.9660337412262407,-12.795538537805404,1.0,0.0,0.0 -384,23.0,4.8025654741264345,6.7,0.0,0.0,0.9673000161258388,-12.92857115537404,1.0,0.0,0.0 -384,24.0,0.0,0.0,0.0,0.0,0.9662997948239732,-12.572277854271949,1.0,0.0,0.0 -384,25.0,1.9320665700508644,2.3,0.0,0.0,0.9519541617519438,-12.665125622434331,1.0,0.0,0.0 -384,26.0,0.0,0.0,0.0,0.0,0.9728279588242292,-12.26052487574576,1.0,0.0,0.0 -384,27.0,0.0,0.0,0.0,0.0,0.959835128537355,-9.800600551402711,1.0,0.0,0.0 -384,28.0,1.3248456480348785,0.9,0.0,0.0,0.9587585041163768,-12.92153308534212,1.0,0.0,0.0 -384,29.0,5.851401612154047,1.9,0.0,0.0,0.9510786589766111,-13.417835702433218,1.0,0.0,0.0 -385,0.0,0.0,0.0,110.25140229312416,5.975693184723241e-06,1.0,0.0,0.0,0.0,1.0 -385,1.0,11.97881273431536,12.7,51.89949306363285,-19.58373498965076,0.984970956544865,-2.19457605587209,0.0,1.0,0.0 -385,2.0,1.3248456480348785,1.2,0.0,0.0,0.9835681665666032,-4.149096129997665,1.0,0.0,0.0 -385,3.0,4.195344552110448,1.6,0.0,0.0,0.9790405500161028,-5.086988122429309,1.0,0.0,0.0 -385,4.0,52.00019168536898,19.0,3.7558443506006165e-09,39.99999601118894,0.9859599382473944,-7.813335925189695,0.0,1.0,0.0 -385,5.0,0.0,0.0,0.0,0.0,0.9816218851966764,-6.02852916057193,1.0,0.0,0.0 -385,6.0,12.586033656331349,10.9,0.0,0.0,0.9770522783700774,-7.024145372667264,1.0,0.0,0.0 -385,7.0,16.56057060043598,30.0,-2.0017636586589375e-08,39.99999897436433,0.9948389326395064,-9.491707038163693,0.0,1.0,0.0 -385,8.0,0.0,0.0,0.0,0.0,1.0330637204565376,-8.216971683126292,1.0,0.0,0.0 -385,9.0,3.2017103160842897,2.0,0.0,0.0,1.0349313486419305,-9.339198118811629,1.0,0.0,0.0 -385,10.0,0.0,0.0,-1.228601875714628e-08,13.727139049821409,1.059999993474832,-8.216971684463394,0.0,1.0,0.0 -385,11.0,6.182613024162766,7.5,0.0,0.0,1.0339373349153809,-8.97881446469815,1.0,0.0,0.0 -385,12.0,0.0,0.0,4.3361810693312244e-08,19.733158105217957,1.0599999966462423,-8.978814461524506,0.0,1.0,0.0 -385,13.0,3.4225179240901027,1.6,0.0,0.0,1.0258177196168852,-9.345541474774272,1.0,0.0,0.0 -385,14.0,4.526555964119168,2.5,0.0,0.0,1.0162597776058917,-9.557458752961631,1.0,0.0,0.0 -385,15.0,1.9320665700508644,1.8,0.0,0.0,1.0123090709602591,-9.333725317972318,1.0,0.0,0.0 -385,16.0,4.968171180130795,5.8,0.0,0.0,0.9985108075771502,-9.70299788119302,1.0,0.0,0.0 -385,17.0,1.7664608640465047,0.9,0.0,0.0,1.0138343842106745,-9.818149777418048,1.0,0.0,0.0 -385,18.0,5.244180690138061,3.4,0.0,0.0,1.014657594949958,-9.877441747222882,1.0,0.0,0.0 -385,19.0,1.2144418440319722,0.7,0.0,0.0,1.019127169570768,-9.775122509919449,1.0,0.0,0.0 -385,20.0,9.660332850254322,11.2,0.0,0.0,1.026904721799915,-9.462899862169884,1.0,0.0,0.0 -385,21.0,0.0,0.0,0.0,0.0,1.0280000546014023,-9.446200428020749,1.0,0.0,0.0 -385,22.0,1.7664608640465047,1.6,0.0,0.0,1.000966812716492,-9.87602591246418,1.0,0.0,0.0 -385,23.0,4.8025654741264345,6.7,0.0,0.0,0.9872919707973926,-10.16504470669596,1.0,0.0,0.0 -385,24.0,0.0,0.0,0.0,0.0,0.9872202920981182,-9.817409216292443,1.0,0.0,0.0 -385,25.0,1.9320665700508644,2.3,0.0,0.0,0.9731877128444169,-9.906306540947348,1.0,0.0,0.0 -385,26.0,0.0,0.0,0.0,0.0,0.9941659215156292,-9.513951244045986,1.0,0.0,0.0 -385,27.0,0.0,0.0,0.0,0.0,0.98192245007533,-7.096301295739895,1.0,0.0,0.0 -385,28.0,1.3248456480348785,0.9,0.0,0.0,0.964379140513471,-10.927348436685618,1.0,0.0,0.0 -385,29.0,5.851401612154047,1.9,0.0,0.0,0.9400000025607332,-12.315850276133329,1.0,0.0,0.0 -386,0.0,0.0,0.0,163.18753624650458,0.000623544131173,1.0,0.0,0.0,0.0,1.0 -386,1.0,11.97881273431536,12.7,7.960893246187344e-07,10.621261217038692,0.980129652412706,-3.745793586358933,0.0,1.0,0.0 -386,2.0,1.3248456480348785,1.2,0.0,0.0,0.9740644919933682,-4.912497912011026,1.0,0.0,0.0 -386,3.0,4.195344552110448,1.6,0.0,0.0,0.9674199073950988,-6.037589211108007,1.0,0.0,0.0 -386,4.0,52.00019168536898,19.0,-8.484496308893621e-10,24.25335423536302,0.960032389178126,-9.01639600163073,0.0,1.0,0.0 -386,5.0,0.0,0.0,0.0,0.0,0.96704344012139,-7.167209771439866,1.0,0.0,0.0 -386,6.0,12.586033656331349,10.9,0.0,0.0,0.95766639558998,-8.204273683951113,1.0,0.0,0.0 -386,7.0,16.56057060043598,30.0,-3.7153913841668287e-10,30.586778199921028,0.966038965338818,-7.600743203979593,0.0,1.0,0.0 -386,8.0,0.0,0.0,0.0,0.0,1.0155422265445162,-8.99646176090269,1.0,0.0,0.0 -386,9.0,3.2017103160842897,2.0,0.0,0.0,1.00659334623598,-9.94663344534159,1.0,0.0,0.0 -386,10.0,0.0,0.0,8.03217400102631e-10,22.642889150294813,1.059974620057901,-8.996461760813764,0.0,1.0,0.0 -386,11.0,6.182613024162766,7.5,0.0,0.0,1.0136599915760198,-9.474218997599056,1.0,0.0,0.0 -386,12.0,0.0,0.0,-4.957888525412178e-10,9.986327712435946,1.027269717012173,-9.474218997637246,0.0,1.0,0.0 -386,13.0,3.4225179240901027,1.6,0.0,0.0,1.0025663100155835,-9.949255729124593,1.0,0.0,0.0 -386,14.0,4.526555964119168,2.5,0.0,0.0,0.99922657091041,-9.977147829022382,1.0,0.0,0.0 -386,15.0,1.9320665700508644,1.8,0.0,0.0,1.004428073111416,-9.785183967529631,1.0,0.0,0.0 -386,16.0,4.968171180130795,5.8,0.0,0.0,1.0015531597214653,-9.992410934122864,1.0,0.0,0.0 -386,17.0,1.7664608640465047,0.9,0.0,0.0,0.9926028785743768,-10.317064728293882,1.0,0.0,0.0 -386,18.0,5.244180690138061,3.4,0.0,0.0,0.9909915787539664,-10.419933082709598,1.0,0.0,0.0 -386,19.0,1.2144418440319722,0.7,0.0,0.0,0.9942718325605052,-10.333743937349247,1.0,0.0,0.0 -386,20.0,9.660332850254322,11.2,0.0,0.0,0.9959956198687302,-10.125003543412166,1.0,0.0,0.0 -386,21.0,0.0,0.0,0.0,0.0,0.9963807201182444,-10.121500891878195,1.0,0.0,0.0 -386,22.0,1.7664608640465047,1.6,0.0,0.0,0.9907214439309568,-10.157988246210287,1.0,0.0,0.0 -386,23.0,4.8025654741264345,6.7,0.0,0.0,0.9861238349959096,-10.2497344464113,1.0,0.0,0.0 -386,24.0,0.0,0.0,0.0,0.0,0.979745978454593,-9.975146995521367,1.0,0.0,0.0 -386,25.0,1.9320665700508644,2.3,0.0,0.0,0.9656031583822288,-10.06542609078509,1.0,0.0,0.0 -386,26.0,0.0,0.0,0.0,0.0,0.9828547678568617,-9.721826695145287,1.0,0.0,0.0 -386,27.0,0.0,0.0,0.0,0.0,0.9649925830087628,-7.525857588354719,1.0,0.0,0.0 -386,28.0,1.3248456480348785,0.9,0.0,0.0,0.9689375151617596,-10.369227595663084,1.0,0.0,0.0 -386,29.0,5.851401612154047,1.9,0.0,0.0,0.9613409688112295,-10.855084882919137,1.0,0.0,0.0 -387,0.0,0.0,0.0,138.0000106683084,0.0004373367293197,1.0,0.0,0.0,0.0,1.0 -387,1.0,11.97881273431536,12.7,27.037968514757587,13.741136753175915,0.9751781973896732,-4.637418638444259,0.0,1.0,0.0 -387,2.0,1.3248456480348785,1.2,0.0,0.0,0.9492510505738144,-9.638645396746982,1.0,0.0,0.0 -387,3.0,4.195344552110448,1.6,0.0,0.0,0.9497633829529516,-9.613626916208714,1.0,0.0,0.0 -387,4.0,52.00019168536898,19.0,7.231670764881767e-10,26.660780543695324,0.9529262043185354,-11.042329247995474,0.0,1.0,0.0 -387,5.0,0.0,0.0,0.0,0.0,0.9525544501780692,-10.16464381155133,1.0,0.0,0.0 -387,6.0,12.586033656331349,10.9,0.0,0.0,0.9459313856525426,-10.807844528980333,1.0,0.0,0.0 -387,7.0,16.56057060043598,30.0,6.058762668861939e-10,33.26951219647679,0.9525146156070236,-10.629789333182677,0.0,1.0,0.0 -387,8.0,0.0,0.0,0.0,0.0,1.0006068741199323,-12.23500977860969,1.0,0.0,0.0 -387,9.0,3.2017103160842897,2.0,0.0,0.0,0.9900145645623782,-13.312012752937951,1.0,0.0,0.0 -387,10.0,0.0,0.0,9.51690766549459e-10,23.998576831018276,1.0482273085444396,-12.235009778501556,0.0,1.0,0.0 -387,11.0,6.182613024162766,7.5,0.0,0.0,0.9993597407265828,-12.786393497091517,1.0,0.0,0.0 -387,12.0,0.0,0.0,8.705694527929204e-10,11.17809681414121,1.0147811306860297,-12.786393497022654,0.0,1.0,0.0 -387,13.0,3.4225179240901027,1.6,0.0,0.0,0.98917964965612,-13.192517005559557,1.0,0.0,0.0 -387,14.0,4.526555964119168,2.5,0.0,0.0,0.9873864258776252,-13.164541617453784,1.0,0.0,0.0 -387,15.0,1.9320665700508644,1.8,0.0,0.0,0.9890195982437414,-13.118743044031188,1.0,0.0,0.0 -387,16.0,4.968171180130795,5.8,0.0,0.0,0.9852767153597926,-13.352519994326212,1.0,0.0,0.0 -387,17.0,1.7664608640465047,0.9,0.0,0.0,0.9632090007772652,-14.36508957275412,1.0,0.0,0.0 -387,18.0,5.244180690138061,3.4,0.0,0.0,0.9655897252862476,-14.25992103718167,1.0,0.0,0.0 -387,19.0,1.2144418440319722,0.7,0.0,0.0,0.9710973291364972,-14.057959812736874,1.0,0.0,0.0 -387,20.0,9.660332850254322,11.2,0.0,0.0,0.9795099686631143,-13.477939518297076,1.0,0.0,0.0 -387,21.0,0.0,0.0,0.0,0.0,0.9799899554049396,-13.468485014912876,1.0,0.0,0.0 -387,22.0,1.7664608640465047,1.6,0.0,0.0,0.9773792989914216,-13.386198767135504,1.0,0.0,0.0 -387,23.0,4.8025654741264345,6.7,0.0,0.0,0.9708800601987,-13.53021771789083,1.0,0.0,0.0 -387,24.0,0.0,0.0,0.0,0.0,0.9646876095479052,-13.1811263569405,1.0,0.0,0.0 -387,25.0,1.9320665700508644,2.3,0.0,0.0,0.9503172621097834,-13.27428948548726,1.0,0.0,0.0 -387,26.0,0.0,0.0,0.0,0.0,0.9680070129938496,-12.8784999545237,1.0,0.0,0.0 -387,27.0,0.0,0.0,0.0,0.0,0.9506344675562814,-10.546164299563106,1.0,0.0,0.0 -387,28.0,1.3248456480348785,0.9,0.0,0.0,0.9538631519274068,-13.546204690879186,1.0,0.0,0.0 -387,29.0,5.851401612154047,1.9,0.0,0.0,0.9461425818081256,-14.047651410031529,1.0,0.0,0.0 -388,0.0,0.0,0.0,163.18753624650458,0.000623544131173,1.0,0.0,0.0,0.0,1.0 -388,1.0,11.97881273431536,12.7,7.960893246187344e-07,10.621261217038692,0.980129652412706,-3.745793586358933,0.0,1.0,0.0 -388,2.0,1.3248456480348785,1.2,0.0,0.0,0.9740644919933682,-4.912497912011026,1.0,0.0,0.0 -388,3.0,4.195344552110448,1.6,0.0,0.0,0.9674199073950988,-6.037589211108007,1.0,0.0,0.0 -388,4.0,52.00019168536898,19.0,-8.484496308893621e-10,24.25335423536302,0.960032389178126,-9.01639600163073,0.0,1.0,0.0 -388,5.0,0.0,0.0,0.0,0.0,0.96704344012139,-7.167209771439866,1.0,0.0,0.0 -388,6.0,12.586033656331349,10.9,0.0,0.0,0.95766639558998,-8.204273683951113,1.0,0.0,0.0 -388,7.0,16.56057060043598,30.0,-3.7153913841668287e-10,30.586778199921028,0.966038965338818,-7.600743203979593,0.0,1.0,0.0 -388,8.0,0.0,0.0,0.0,0.0,1.0155422265445162,-8.99646176090269,1.0,0.0,0.0 -388,9.0,3.2017103160842897,2.0,0.0,0.0,1.00659334623598,-9.94663344534159,1.0,0.0,0.0 -388,10.0,0.0,0.0,8.03217400102631e-10,22.642889150294813,1.059974620057901,-8.996461760813764,0.0,1.0,0.0 -388,11.0,6.182613024162766,7.5,0.0,0.0,1.0136599915760198,-9.474218997599056,1.0,0.0,0.0 -388,12.0,0.0,0.0,-4.957888525412178e-10,9.986327712435946,1.027269717012173,-9.474218997637246,0.0,1.0,0.0 -388,13.0,3.4225179240901027,1.6,0.0,0.0,1.0025663100155835,-9.949255729124593,1.0,0.0,0.0 -388,14.0,4.526555964119168,2.5,0.0,0.0,0.99922657091041,-9.977147829022382,1.0,0.0,0.0 -388,15.0,1.9320665700508644,1.8,0.0,0.0,1.004428073111416,-9.785183967529631,1.0,0.0,0.0 -388,16.0,4.968171180130795,5.8,0.0,0.0,1.0015531597214653,-9.992410934122864,1.0,0.0,0.0 -388,17.0,1.7664608640465047,0.9,0.0,0.0,0.9926028785743768,-10.317064728293882,1.0,0.0,0.0 -388,18.0,5.244180690138061,3.4,0.0,0.0,0.9909915787539664,-10.419933082709598,1.0,0.0,0.0 -388,19.0,1.2144418440319722,0.7,0.0,0.0,0.9942718325605052,-10.333743937349247,1.0,0.0,0.0 -388,20.0,9.660332850254322,11.2,0.0,0.0,0.9959956198687302,-10.125003543412166,1.0,0.0,0.0 -388,21.0,0.0,0.0,0.0,0.0,0.9963807201182444,-10.121500891878195,1.0,0.0,0.0 -388,22.0,1.7664608640465047,1.6,0.0,0.0,0.9907214439309568,-10.157988246210287,1.0,0.0,0.0 -388,23.0,4.8025654741264345,6.7,0.0,0.0,0.9861238349959096,-10.2497344464113,1.0,0.0,0.0 -388,24.0,0.0,0.0,0.0,0.0,0.979745978454593,-9.975146995521367,1.0,0.0,0.0 -388,25.0,1.9320665700508644,2.3,0.0,0.0,0.9656031583822288,-10.06542609078509,1.0,0.0,0.0 -388,26.0,0.0,0.0,0.0,0.0,0.9828547678568617,-9.721826695145287,1.0,0.0,0.0 -388,27.0,0.0,0.0,0.0,0.0,0.9649925830087628,-7.525857588354719,1.0,0.0,0.0 -388,28.0,1.3248456480348785,0.9,0.0,0.0,0.9689375151617596,-10.369227595663084,1.0,0.0,0.0 -388,29.0,5.851401612154047,1.9,0.0,0.0,0.9613409688112295,-10.855084882919137,1.0,0.0,0.0 -389,0.0,0.0,0.0,163.45916675236825,0.0003297796058454,1.0,0.0,0.0,0.0,1.0 -389,1.0,11.97881273431536,12.7,7.650721663270083e-07,-10.841587268773402,0.9779727567274532,-3.707115336590525,0.0,1.0,0.0 -389,2.0,1.3248456480348785,1.2,0.0,0.0,0.9802007669967348,-5.021076014647043,1.0,0.0,0.0 -389,3.0,4.195344552110448,1.6,0.0,0.0,0.9749984790795686,-6.169277736793181,1.0,0.0,0.0 -389,4.0,52.00019168536898,19.0,-6.128521585762421e-10,30.87010528750571,0.9704871867424768,-9.119975126801538,0.0,1.0,0.0 -389,5.0,0.0,0.0,0.0,0.0,0.9763845529817036,-7.296832167259987,1.0,0.0,0.0 -389,6.0,12.586033656331349,10.9,0.0,0.0,0.967550877445836,-8.317532211892651,1.0,0.0,0.0 -389,7.0,16.56057060043598,30.0,-1.264162777461646e-09,39.99969195376512,0.9789058524528912,-7.77989910414631,0.0,1.0,0.0 -389,8.0,0.0,0.0,0.0,0.0,1.0239919152056942,-9.050767783440362,1.0,0.0,0.0 -389,9.0,3.2017103160842897,2.0,0.0,0.0,1.018886725934302,-9.95952843924358,1.0,0.0,0.0 -389,10.0,0.0,0.0,-2.697102357921528e-10,18.349817185380644,1.0599991330929608,-9.050767783469976,0.0,1.0,0.0 -389,11.0,6.182613024162766,7.5,0.0,0.0,1.034685014230395,-9.620674294725587,1.0,0.0,0.0 -389,12.0,0.0,0.0,1.3447649599849808e-10,19.16586416981554,1.0599984565951417,-9.62067429471576,0.0,1.0,0.0 -389,13.0,3.4225179240901027,1.6,0.0,0.0,1.0226637843700437,-10.075363283360964,1.0,0.0,0.0 -389,14.0,4.526555964119168,2.5,0.0,0.0,1.01828666104618,-10.075076738587324,1.0,0.0,0.0 -389,15.0,1.9320665700508644,1.8,0.0,0.0,1.0218623303249543,-9.85236312370272,1.0,0.0,0.0 -389,16.0,4.968171180130795,5.8,0.0,0.0,1.0154911978570496,-10.025663523049468,1.0,0.0,0.0 -389,17.0,1.7664608640465047,0.9,0.0,0.0,1.0094359270718007,-10.372766892288064,1.0,0.0,0.0 -389,18.0,5.244180690138061,3.4,0.0,0.0,1.006465647497896,-10.4539890435077,1.0,0.0,0.0 -389,19.0,1.2144418440319722,0.7,0.0,0.0,1.0089662913017878,-10.360484166867112,1.0,0.0,0.0 -389,20.0,9.660332850254322,11.2,0.0,0.0,1.0087271164837386,-10.139420460855169,1.0,0.0,0.0 -389,21.0,0.0,0.0,0.0,0.0,1.0092035744767285,-10.138022072170315,1.0,0.0,0.0 -389,22.0,1.7664608640465047,1.6,0.0,0.0,1.0077411996776524,-10.232018157281246,1.0,0.0,0.0 -389,23.0,4.8025654741264345,6.7,0.0,0.0,1.0003051428474463,-10.29798764306089,1.0,0.0,0.0 -389,24.0,0.0,0.0,0.0,0.0,0.9922129678511497,-10.031637336210563,1.0,0.0,0.0 -389,25.0,1.9320665700508644,2.3,0.0,0.0,0.9782530606248492,-10.119629347735035,1.0,0.0,0.0 -389,26.0,0.0,0.0,0.0,0.0,0.9941660780150796,-9.787365590175456,1.0,0.0,0.0 -389,27.0,0.0,0.0,0.0,0.0,0.975271577612212,-7.659638749735454,1.0,0.0,0.0 -389,28.0,1.3248456480348785,0.9,0.0,0.0,0.9643793021896884,-11.200762322190291,1.0,0.0,0.0 -389,29.0,5.851401612154047,1.9,0.0,0.0,0.9400001683587624,-12.589263683809603,1.0,0.0,0.0 -390,0.0,0.0,0.0,163.58624475042333,0.0005258934098861,1.0,0.0,0.0,0.0,1.0 -390,1.0,11.97881273431536,12.7,5.182355259004945e-07,2.1515349064728118,0.9791464874434956,-3.719813690602795,0.0,1.0,0.0 -390,2.0,1.3248456480348785,1.2,0.0,0.0,0.9768077929539478,-5.012963348148819,1.0,0.0,0.0 -390,3.0,4.195344552110448,1.6,0.0,0.0,0.9708161327850772,-6.160954849610302,1.0,0.0,0.0 -390,4.0,52.00019168536898,19.0,-3.6954990833197736e-10,25.8399231960219,0.9629022491203184,-9.001462912354738,0.0,1.0,0.0 -390,5.0,0.0,0.0,0.0,0.0,0.9704672405756876,-7.142437856059588,1.0,0.0,0.0 -390,6.0,12.586033656331349,10.9,0.0,0.0,0.9608951389113506,-8.182003833554333,1.0,0.0,0.0 -390,7.0,16.56057060043598,30.0,-9.146556466005837e-10,39.50571323083952,0.972871405581808,-7.641715383587157,0.0,1.0,0.0 -390,8.0,0.0,0.0,0.0,0.0,1.039105408602635,-12.063452767102673,1.0,0.0,0.0 -390,9.0,3.2017103160842897,2.0,0.0,0.0,1.0286412445845634,-12.063452767088746,1.0,0.0,0.0 -390,10.0,0.0,0.0,-2.3622849911671484e-10,10.073110498200968,1.0588921914363414,-12.063452767128258,0.0,1.0,0.0 -390,11.0,6.182613024162766,7.5,0.0,0.0,1.0327836659739378,-10.403079779251884,1.0,0.0,0.0 -390,12.0,0.0,0.0,-3.50709248746331e-10,20.6043249987896,1.0599970023644747,-10.403079779277585,0.0,1.0,0.0 -390,13.0,3.4225179240901027,1.6,0.0,0.0,1.0220685175942774,-10.978954658886028,1.0,0.0,0.0 -390,14.0,4.526555964119168,2.5,0.0,0.0,1.018128218909432,-11.12668907892312,1.0,0.0,0.0 -390,15.0,1.9320665700508644,1.8,0.0,0.0,1.0111295273023542,-10.758795603859886,1.0,0.0,0.0 -390,16.0,4.968171180130795,5.8,0.0,0.0,0.9973146649535082,-11.128942366346529,1.0,0.0,0.0 -390,17.0,1.7664608640465047,0.9,0.0,0.0,1.0126894579713452,-11.794315887391582,1.0,0.0,0.0 -390,18.0,5.244180690138061,3.4,0.0,0.0,1.0117670335221278,-12.096139573552394,1.0,0.0,0.0 -390,19.0,1.2144418440319722,0.7,0.0,0.0,1.0153231771006597,-12.120385434405163,1.0,0.0,0.0 -390,20.0,9.660332850254322,11.2,0.0,0.0,1.013000343328181,-12.144825717475442,1.0,0.0,0.0 -390,21.0,0.0,0.0,0.0,0.0,1.0117272572729237,-12.110163793539042,1.0,0.0,0.0 -390,22.0,1.7664608640465047,1.6,0.0,0.0,1.008390744150703,-11.458672233423336,1.0,0.0,0.0 -390,23.0,4.8025654741264345,6.7,0.0,0.0,1.0020793599876363,-11.761409042453147,1.0,0.0,0.0 -390,24.0,0.0,0.0,0.0,0.0,0.9929782088821936,-10.88464316936252,1.0,0.0,0.0 -390,25.0,1.9320665700508644,2.3,0.0,0.0,0.9790293728658334,-10.972497651019395,1.0,0.0,0.0 -390,26.0,0.0,0.0,0.0,0.0,0.9941664508616082,-10.259531051007691,1.0,0.0,0.0 -390,27.0,0.0,0.0,0.0,0.0,0.9696380003389476,-7.588435489302192,1.0,0.0,0.0 -390,28.0,1.3248456480348785,0.9,0.0,0.0,0.964379688122264,-11.672926686486418,1.0,0.0,0.0 -390,29.0,5.851401612154047,1.9,0.0,0.0,0.9400005648324498,-13.06142690541018,1.0,0.0,0.0 -391,0.0,0.0,0.0,170.50368258131766,0.0006410952785529,1.0,0.0,0.0,0.0,1.0 -391,1.0,11.97881273431536,12.7,1.831599300716102e-06,5.106064308053583,0.983741058778212,-2.786732295747206,0.0,1.0,0.0 -391,2.0,1.3248456480348785,1.2,0.0,0.0,0.9673594866488364,-8.436128060790692,1.0,0.0,0.0 -391,3.0,4.195344552110448,1.6,0.0,0.0,0.9602457952779854,-10.42226338975705,1.0,0.0,0.0 -391,4.0,52.00019168536898,19.0,-1.0929967677242232e-09,37.84522875176961,0.9400005456619256,-21.54186025946611,0.0,1.0,0.0 -391,5.0,0.0,0.0,0.0,0.0,0.9589281669534832,-13.508734965939514,1.0,0.0,0.0 -391,6.0,12.586033656331349,10.9,0.0,0.0,0.943971334706324,-17.05583604285983,1.0,0.0,0.0 -391,7.0,16.56057060043598,30.0,8.960065488364647e-10,39.9989130899908,0.9615556091093398,-14.007290164225669,0.0,1.0,0.0 -391,8.0,0.0,0.0,0.0,0.0,1.0133961541925685,-15.61786069520324,1.0,0.0,0.0 -391,9.0,3.2017103160842897,2.0,0.0,0.0,1.0066798419130187,-16.704075196022714,1.0,0.0,0.0 -391,10.0,0.0,0.0,3.719620975871618e-09,23.749718945498135,1.0599994025417492,-15.617860694790576,0.0,1.0,0.0 -391,11.0,6.182613024162766,7.5,0.0,0.0,1.0303269606810346,-14.857745194496934,1.0,0.0,0.0 -391,12.0,0.0,0.0,-1.048232239899965e-09,22.4641883379243,1.0599967347859929,-14.857745194573925,0.0,1.0,0.0 -391,13.0,3.4225179240901027,1.6,0.0,0.0,1.0190053649534936,-15.363525806493028,1.0,0.0,0.0 -391,14.0,4.526555964119168,2.5,0.0,0.0,1.0150028578569972,-15.426878738442667,1.0,0.0,0.0 -391,15.0,1.9320665700508644,1.8,0.0,0.0,1.0129660545894643,-15.714726336243316,1.0,0.0,0.0 -391,16.0,4.968171180130795,5.8,0.0,0.0,1.0045717721733638,-16.499940586320484,1.0,0.0,0.0 -391,17.0,1.7664608640465047,0.9,0.0,0.0,1.0111796076248964,-15.588436830740836,1.0,0.0,0.0 -391,18.0,5.244180690138061,3.4,0.0,0.0,0.9876786686052844,-17.399601795727683,1.0,0.0,0.0 -391,19.0,1.2144418440319722,0.7,0.0,0.0,0.9918277771965645,-17.25864179377263,1.0,0.0,0.0 -391,20.0,9.660332850254322,11.2,0.0,0.0,0.994862979913294,-16.895040177267607,1.0,0.0,0.0 -391,21.0,0.0,0.0,0.0,0.0,1.0000176466365738,-16.623156794953747,1.0,0.0,0.0 -391,22.0,1.7664608640465047,1.6,0.0,0.0,1.0021452259861472,-15.926696267587165,1.0,0.0,0.0 -391,23.0,4.8025654741264345,6.7,0.0,0.0,0.9917919546240704,-16.460434386059717,1.0,0.0,0.0 -391,24.0,0.0,0.0,0.0,0.0,0.98047729258071,-16.188903081594315,1.0,0.0,0.0 -391,25.0,1.9320665700508644,2.3,0.0,0.0,0.9663453363848232,-16.279045553882472,1.0,0.0,0.0 -391,26.0,0.0,0.0,0.0,0.0,0.9805167368383156,-15.942713863150765,1.0,0.0,0.0 -391,27.0,0.0,0.0,0.0,0.0,0.9583401995100304,-13.876218874375825,1.0,0.0,0.0 -391,28.0,1.3248456480348785,0.9,0.0,0.0,0.966564297648038,-16.593249672351114,1.0,0.0,0.0 -391,29.0,5.851401612154047,1.9,0.0,0.0,0.9589484947821834,-17.08151251311595,1.0,0.0,0.0 -392,0.0,0.0,0.0,163.70127700236804,0.001730834578062,1.0,0.0,0.0,0.0,1.0 -392,1.0,11.97881273431536,12.7,2.564053781078724e-06,9.446153962057302,0.9811824143108764,-3.446371038967442,0.0,1.0,0.0 -392,2.0,1.3248456480348785,1.2,0.0,0.0,0.9721935364646734,-5.827926417462809,1.0,0.0,0.0 -392,3.0,4.195344552110448,1.6,0.0,0.0,0.9652912078441788,-7.175919511758396,1.0,0.0,0.0 -392,4.0,52.00019168536898,19.0,-7.05796967145631e-10,24.733508499671277,0.960299040334054,-9.232917512610356,0.0,1.0,0.0 -392,5.0,0.0,0.0,0.0,0.0,0.965113667196046,-7.906429891199269,1.0,0.0,0.0 -392,6.0,12.586033656331349,10.9,0.0,0.0,0.9565493917205404,-8.730178094759022,1.0,0.0,0.0 -392,7.0,16.56057060043598,30.0,5.862480745881881e-10,29.88675754637263,0.9631557311614162,-8.337402561793473,0.0,1.0,0.0 -392,8.0,0.0,0.0,0.0,0.0,1.0168485675114811,-9.78812129552324,1.0,0.0,0.0 -392,9.0,3.2017103160842897,2.0,0.0,0.0,1.0103346060237712,-10.75996155330466,1.0,0.0,0.0 -392,10.0,0.0,0.0,2.392887409652329e-09,21.989362844142743,1.0599976034770215,-9.788121295258668,0.0,1.0,0.0 -392,11.0,6.182613024162766,7.5,0.0,0.0,1.0297461128853382,-10.801096139468582,1.0,0.0,0.0 -392,12.0,0.0,0.0,1.550159278582454e-09,21.512216746538364,1.0582066258968026,-10.801096139354472,0.0,1.0,0.0 -392,13.0,3.4225179240901027,1.6,0.0,0.0,1.0156363890657751,-11.33463661528772,1.0,0.0,0.0 -392,14.0,4.526555964119168,2.5,0.0,0.0,1.0087694470999171,-11.362321920767416,1.0,0.0,0.0 -392,15.0,1.9320665700508644,1.8,0.0,0.0,1.0244706376965378,-10.917215398975843,1.0,0.0,0.0 -392,16.0,4.968171180130795,5.8,0.0,0.0,1.0038462233662686,-10.890962213071356,1.0,0.0,0.0 -392,17.0,1.7664608640465047,0.9,0.0,0.0,0.9915059501520124,-11.975547506154122,1.0,0.0,0.0 -392,18.0,5.244180690138061,3.4,0.0,0.0,0.9836221367153308,-12.245962280358563,1.0,0.0,0.0 -392,19.0,1.2144418440319722,0.7,0.0,0.0,1.0077531616320736,-10.865923513879336,1.0,0.0,0.0 -392,20.0,9.660332850254322,11.2,0.0,0.0,0.9997683886913036,-11.006316183430794,1.0,0.0,0.0 -392,21.0,0.0,0.0,0.0,0.0,1.0001422910602662,-11.02512798175002,1.0,0.0,0.0 -392,22.0,1.7664608640465047,1.6,0.0,0.0,0.9975409314335344,-11.463694189125034,1.0,0.0,0.0 -392,23.0,4.8025654741264345,6.7,0.0,0.0,0.9892513397765456,-11.451533001190253,1.0,0.0,0.0 -392,24.0,0.0,0.0,0.0,0.0,0.9776066675367532,-11.572194059558669,1.0,0.0,0.0 -392,25.0,1.9320665700508644,2.3,0.0,0.0,0.9634319698521272,-11.662874616018698,1.0,0.0,0.0 -392,26.0,0.0,0.0,0.0,0.0,0.9814967057720332,-9.840334757049526,1.0,0.0,0.0 -392,27.0,0.0,0.0,0.0,0.0,0.9621824833495716,-8.147813946269395,1.0,0.0,0.0 -392,28.0,1.3248456480348785,0.9,0.0,0.0,0.9675590370327116,-10.489553811699691,1.0,0.0,0.0 -392,29.0,5.851401612154047,1.9,0.0,0.0,0.9599513176492872,-10.97680618384174,1.0,0.0,0.0 -393,0.0,0.0,0.0,163.18753624650458,0.000623544131173,1.0,0.0,0.0,0.0,1.0 -393,1.0,11.97881273431536,12.7,7.960893246187344e-07,10.621261217038692,0.980129652412706,-3.745793586358933,0.0,1.0,0.0 -393,2.0,1.3248456480348785,1.2,0.0,0.0,0.9740644919933682,-4.912497912011026,1.0,0.0,0.0 -393,3.0,4.195344552110448,1.6,0.0,0.0,0.9674199073950988,-6.037589211108007,1.0,0.0,0.0 -393,4.0,52.00019168536898,19.0,-8.484496308893621e-10,24.25335423536302,0.960032389178126,-9.01639600163073,0.0,1.0,0.0 -393,5.0,0.0,0.0,0.0,0.0,0.96704344012139,-7.167209771439866,1.0,0.0,0.0 -393,6.0,12.586033656331349,10.9,0.0,0.0,0.95766639558998,-8.204273683951113,1.0,0.0,0.0 -393,7.0,16.56057060043598,30.0,-3.7153913841668287e-10,30.586778199921028,0.966038965338818,-7.600743203979593,0.0,1.0,0.0 -393,8.0,0.0,0.0,0.0,0.0,1.0155422265445162,-8.99646176090269,1.0,0.0,0.0 -393,9.0,3.2017103160842897,2.0,0.0,0.0,1.00659334623598,-9.94663344534159,1.0,0.0,0.0 -393,10.0,0.0,0.0,8.03217400102631e-10,22.642889150294813,1.059974620057901,-8.996461760813764,0.0,1.0,0.0 -393,11.0,6.182613024162766,7.5,0.0,0.0,1.0136599915760198,-9.474218997599056,1.0,0.0,0.0 -393,12.0,0.0,0.0,-4.957888525412178e-10,9.986327712435946,1.027269717012173,-9.474218997637246,0.0,1.0,0.0 -393,13.0,3.4225179240901027,1.6,0.0,0.0,1.0025663100155835,-9.949255729124593,1.0,0.0,0.0 -393,14.0,4.526555964119168,2.5,0.0,0.0,0.99922657091041,-9.977147829022382,1.0,0.0,0.0 -393,15.0,1.9320665700508644,1.8,0.0,0.0,1.004428073111416,-9.785183967529631,1.0,0.0,0.0 -393,16.0,4.968171180130795,5.8,0.0,0.0,1.0015531597214653,-9.992410934122864,1.0,0.0,0.0 -393,17.0,1.7664608640465047,0.9,0.0,0.0,0.9926028785743768,-10.317064728293882,1.0,0.0,0.0 -393,18.0,5.244180690138061,3.4,0.0,0.0,0.9909915787539664,-10.419933082709598,1.0,0.0,0.0 -393,19.0,1.2144418440319722,0.7,0.0,0.0,0.9942718325605052,-10.333743937349247,1.0,0.0,0.0 -393,20.0,9.660332850254322,11.2,0.0,0.0,0.9959956198687302,-10.125003543412166,1.0,0.0,0.0 -393,21.0,0.0,0.0,0.0,0.0,0.9963807201182444,-10.121500891878195,1.0,0.0,0.0 -393,22.0,1.7664608640465047,1.6,0.0,0.0,0.9907214439309568,-10.157988246210287,1.0,0.0,0.0 -393,23.0,4.8025654741264345,6.7,0.0,0.0,0.9861238349959096,-10.2497344464113,1.0,0.0,0.0 -393,24.0,0.0,0.0,0.0,0.0,0.979745978454593,-9.975146995521367,1.0,0.0,0.0 -393,25.0,1.9320665700508644,2.3,0.0,0.0,0.9656031583822288,-10.06542609078509,1.0,0.0,0.0 -393,26.0,0.0,0.0,0.0,0.0,0.9828547678568617,-9.721826695145287,1.0,0.0,0.0 -393,27.0,0.0,0.0,0.0,0.0,0.9649925830087628,-7.525857588354719,1.0,0.0,0.0 -393,28.0,1.3248456480348785,0.9,0.0,0.0,0.9689375151617596,-10.369227595663084,1.0,0.0,0.0 -393,29.0,5.851401612154047,1.9,0.0,0.0,0.9613409688112295,-10.855084882919137,1.0,0.0,0.0 -394,0.0,0.0,0.0,167.39976925279635,0.0009385359801328,1.0,0.0,0.0,0.0,1.0 -394,1.0,11.97881273431536,12.7,2.569962357227325e-06,1.9315174703285292,0.9805814375945904,-3.4753765423449763,0.0,1.0,0.0 -394,2.0,1.3248456480348785,1.2,0.0,0.0,0.9727183456884048,-6.104079549980678,1.0,0.0,0.0 -394,3.0,4.195344552110448,1.6,0.0,0.0,0.9660057836350228,-7.518534756713947,1.0,0.0,0.0 -394,4.0,52.00019168536898,19.0,2.772640824464819e-09,34.6192191184569,0.9400016536979484,-17.12485158119782,0.0,1.0,0.0 -394,5.0,0.0,0.0,0.0,0.0,0.9652698160286032,-9.297731368168469,1.0,0.0,0.0 -394,6.0,12.586033656331349,10.9,0.0,0.0,0.9478196558225104,-12.75279992533171,1.0,0.0,0.0 -394,7.0,16.56057060043598,30.0,2.906521665803842e-09,39.03405445828275,0.9674604632278472,-9.783664925961032,0.0,1.0,0.0 -394,8.0,0.0,0.0,0.0,0.0,1.015658988945861,-11.004070880008042,1.0,0.0,0.0 -394,9.0,3.2017103160842897,2.0,0.0,0.0,1.0077265320371105,-11.88779151472234,1.0,0.0,0.0 -394,10.0,0.0,0.0,2.3649423281202636e-09,22.596006208555902,1.0599983892600493,-11.00407087974625,0.0,1.0,0.0 -394,11.0,6.182613024162766,7.5,0.0,0.0,1.020899114093214,-11.241407144696954,1.0,0.0,0.0 -394,12.0,0.0,0.0,3.3736329073174438e-09,15.448002741203709,1.0416613360262923,-11.241407144442482,0.0,1.0,0.0 -394,13.0,3.4225179240901027,1.6,0.0,0.0,1.0092625383180835,-11.73833308208198,1.0,0.0,0.0 -394,14.0,4.526555964119168,2.5,0.0,0.0,1.005149570489111,-11.780027655395562,1.0,0.0,0.0 -394,15.0,1.9320665700508644,1.8,0.0,0.0,1.008932069997541,-11.6125944374445,1.0,0.0,0.0 -394,16.0,4.968171180130795,5.8,0.0,0.0,1.0037890805014618,-11.90163552987703,1.0,0.0,0.0 -394,17.0,1.7664608640465047,0.9,0.0,0.0,0.9968632466451716,-12.164769283414266,1.0,0.0,0.0 -394,18.0,5.244180690138061,3.4,0.0,0.0,0.9942602235247574,-12.295594524570657,1.0,0.0,0.0 -394,19.0,1.2144418440319722,0.7,0.0,0.0,0.997002836968188,-12.224946088221248,1.0,0.0,0.0 -394,20.0,9.660332850254322,11.2,0.0,0.0,0.99592225027757,-12.07835524482883,1.0,0.0,0.0 -394,21.0,0.0,0.0,0.0,0.0,0.9999559605816531,-12.036116570104856,1.0,0.0,0.0 -394,22.0,1.7664608640465047,1.6,0.0,0.0,0.9956534948788084,-12.005167124247617,1.0,0.0,0.0 -394,23.0,4.8025654741264345,6.7,0.0,0.0,0.9897126208381444,-12.159158843803826,1.0,0.0,0.0 -394,24.0,0.0,0.0,0.0,0.0,0.9814024790238322,-11.949032461018552,1.0,0.0,0.0 -394,25.0,1.9320665700508644,2.3,0.0,0.0,0.9672842425163328,-12.039002540127653,1.0,0.0,0.0 -394,26.0,0.0,0.0,0.0,0.0,0.9833193769386532,-11.738264180689168,1.0,0.0,0.0 -394,27.0,0.0,0.0,0.0,0.0,0.9641860708609714,-9.656757542043955,1.0,0.0,0.0 -394,28.0,1.3248456480348785,0.9,0.0,0.0,0.969409094706564,-12.3850448316474,1.0,0.0,0.0 -394,29.0,5.851401612154047,1.9,0.0,0.0,0.9618163630296884,-12.870426236806075,1.0,0.0,0.0 -395,0.0,0.0,0.0,163.18753624650458,0.000623544131173,1.0,0.0,0.0,0.0,1.0 -395,1.0,11.97881273431536,12.7,7.960893246187344e-07,10.621261217038692,0.980129652412706,-3.745793586358933,0.0,1.0,0.0 -395,2.0,1.3248456480348785,1.2,0.0,0.0,0.9740644919933682,-4.912497912011026,1.0,0.0,0.0 -395,3.0,4.195344552110448,1.6,0.0,0.0,0.9674199073950988,-6.037589211108007,1.0,0.0,0.0 -395,4.0,52.00019168536898,19.0,-8.484496308893621e-10,24.25335423536302,0.960032389178126,-9.01639600163073,0.0,1.0,0.0 -395,5.0,0.0,0.0,0.0,0.0,0.96704344012139,-7.167209771439866,1.0,0.0,0.0 -395,6.0,12.586033656331349,10.9,0.0,0.0,0.95766639558998,-8.204273683951113,1.0,0.0,0.0 -395,7.0,16.56057060043598,30.0,-3.7153913841668287e-10,30.586778199921028,0.966038965338818,-7.600743203979593,0.0,1.0,0.0 -395,8.0,0.0,0.0,0.0,0.0,1.0155422265445162,-8.99646176090269,1.0,0.0,0.0 -395,9.0,3.2017103160842897,2.0,0.0,0.0,1.00659334623598,-9.94663344534159,1.0,0.0,0.0 -395,10.0,0.0,0.0,8.03217400102631e-10,22.642889150294813,1.059974620057901,-8.996461760813764,0.0,1.0,0.0 -395,11.0,6.182613024162766,7.5,0.0,0.0,1.0136599915760198,-9.474218997599056,1.0,0.0,0.0 -395,12.0,0.0,0.0,-4.957888525412178e-10,9.986327712435946,1.027269717012173,-9.474218997637246,0.0,1.0,0.0 -395,13.0,3.4225179240901027,1.6,0.0,0.0,1.0025663100155835,-9.949255729124593,1.0,0.0,0.0 -395,14.0,4.526555964119168,2.5,0.0,0.0,0.99922657091041,-9.977147829022382,1.0,0.0,0.0 -395,15.0,1.9320665700508644,1.8,0.0,0.0,1.004428073111416,-9.785183967529631,1.0,0.0,0.0 -395,16.0,4.968171180130795,5.8,0.0,0.0,1.0015531597214653,-9.992410934122864,1.0,0.0,0.0 -395,17.0,1.7664608640465047,0.9,0.0,0.0,0.9926028785743768,-10.317064728293882,1.0,0.0,0.0 -395,18.0,5.244180690138061,3.4,0.0,0.0,0.9909915787539664,-10.419933082709598,1.0,0.0,0.0 -395,19.0,1.2144418440319722,0.7,0.0,0.0,0.9942718325605052,-10.333743937349247,1.0,0.0,0.0 -395,20.0,9.660332850254322,11.2,0.0,0.0,0.9959956198687302,-10.125003543412166,1.0,0.0,0.0 -395,21.0,0.0,0.0,0.0,0.0,0.9963807201182444,-10.121500891878195,1.0,0.0,0.0 -395,22.0,1.7664608640465047,1.6,0.0,0.0,0.9907214439309568,-10.157988246210287,1.0,0.0,0.0 -395,23.0,4.8025654741264345,6.7,0.0,0.0,0.9861238349959096,-10.2497344464113,1.0,0.0,0.0 -395,24.0,0.0,0.0,0.0,0.0,0.979745978454593,-9.975146995521367,1.0,0.0,0.0 -395,25.0,1.9320665700508644,2.3,0.0,0.0,0.9656031583822288,-10.06542609078509,1.0,0.0,0.0 -395,26.0,0.0,0.0,0.0,0.0,0.9828547678568617,-9.721826695145287,1.0,0.0,0.0 -395,27.0,0.0,0.0,0.0,0.0,0.9649925830087628,-7.525857588354719,1.0,0.0,0.0 -395,28.0,1.3248456480348785,0.9,0.0,0.0,0.9689375151617596,-10.369227595663084,1.0,0.0,0.0 -395,29.0,5.851401612154047,1.9,0.0,0.0,0.9613409688112295,-10.855084882919137,1.0,0.0,0.0 -396,0.0,0.0,0.0,163.2842927440263,0.0026362802625357,1.0,0.0,0.0,0.0,1.0 -396,1.0,11.97881273431536,12.7,3.982394522668344e-06,11.20270342238328,0.9801681684796536,-3.732758868888298,0.0,1.0,0.0 -396,2.0,1.3248456480348785,1.2,0.0,0.0,0.973970666277302,-4.959488595430299,1.0,0.0,0.0 -396,3.0,4.195344552110448,1.6,0.0,0.0,0.9673115544596762,-6.0960005658223535,1.0,0.0,0.0 -396,4.0,52.00019168536898,19.0,5.620088023783921e-09,24.946734245790964,0.9602115278513847,-8.96920698177107,0.0,1.0,0.0 -396,5.0,0.0,0.0,0.0,0.0,0.9659856543577356,-7.052693475609335,1.0,0.0,0.0 -396,6.0,12.586033656331349,10.9,0.0,0.0,0.9571170978296404,-8.116928875305188,1.0,0.0,0.0 -396,7.0,16.56057060043598,30.0,5.075942197815553e-09,35.583877353849765,0.9669070087714452,-7.531318193034529,0.0,1.0,0.0 -396,8.0,0.0,0.0,0.0,0.0,1.024013470869937,-11.885928601922512,1.0,0.0,0.0 -396,9.0,3.2017103160842897,2.0,0.0,0.0,1.0117860220807868,-11.885928601980265,1.0,0.0,0.0 -396,10.0,0.0,0.0,9.494018470710143e-10,11.639802764485149,1.0471344649359755,-11.885928601816996,0.0,1.0,0.0 -396,11.0,6.182613024162766,7.5,0.0,0.0,1.0246260145003407,-10.443694223364938,1.0,0.0,0.0 -396,12.0,0.0,0.0,6.661109053702285e-09,14.81552553950224,1.0444843641954835,-10.443694222865672,0.0,1.0,0.0 -396,13.0,3.4225179240901027,1.6,0.0,0.0,1.013153099148207,-11.006063143874082,1.0,0.0,0.0 -396,14.0,4.526555964119168,2.5,0.0,0.0,1.0086936530752346,-11.118592678770776,1.0,0.0,0.0 -396,15.0,1.9320665700508644,1.8,0.0,0.0,1.0122455882168553,-11.154848822732497,1.0,0.0,0.0 -396,16.0,4.968171180130795,5.8,0.0,0.0,1.007791872397855,-11.755877814083542,1.0,0.0,0.0 -396,17.0,1.7664608640465047,0.9,0.0,0.0,1.000549934585364,-11.73222088860804,1.0,0.0,0.0 -396,18.0,5.244180690138061,3.4,0.0,0.0,0.998045311147623,-12.000709220676576,1.0,0.0,0.0 -396,19.0,1.2144418440319722,0.7,0.0,0.0,1.0008223452919138,-12.003714923056634,1.0,0.0,0.0 -396,20.0,9.660332850254322,11.2,0.0,0.0,1.0013112869093796,-11.965913218566223,1.0,0.0,0.0 -396,21.0,0.0,0.0,0.0,0.0,1.0017264191150017,-11.93143692777432,1.0,0.0,0.0 -396,22.0,1.7664608640465047,1.6,0.0,0.0,0.9989842695667096,-11.40553995347116,1.0,0.0,0.0 -396,23.0,4.8025654741264345,6.7,0.0,0.0,0.9927555698128954,-11.64445925286316,1.0,0.0,0.0 -396,24.0,0.0,0.0,0.0,0.0,0.9855618581384024,-10.793579003440538,1.0,0.0,0.0 -396,25.0,1.9320665700508644,2.3,0.0,0.0,0.9715049689342212,-10.88278015197721,1.0,0.0,0.0 -396,26.0,0.0,0.0,0.0,0.0,0.9879945162449836,-10.182584707056025,1.0,0.0,0.0 -396,27.0,0.0,0.0,0.0,0.0,0.9646813847342766,-7.493813474405548,1.0,0.0,0.0 -396,28.0,1.3248456480348785,0.9,0.0,0.0,0.9741539767124876,-10.82317364032564,1.0,0.0,0.0 -396,29.0,5.851401612154047,1.9,0.0,0.0,0.966599411649026,-11.303805630526892,1.0,0.0,0.0 -397,0.0,0.0,0.0,163.18753624650458,0.000623544131173,1.0,0.0,0.0,0.0,1.0 -397,1.0,11.97881273431536,12.7,7.960893246187344e-07,10.621261217038692,0.980129652412706,-3.745793586358933,0.0,1.0,0.0 -397,2.0,1.3248456480348785,1.2,0.0,0.0,0.9740644919933682,-4.912497912011026,1.0,0.0,0.0 -397,3.0,4.195344552110448,1.6,0.0,0.0,0.9674199073950988,-6.037589211108007,1.0,0.0,0.0 -397,4.0,52.00019168536898,19.0,-8.484496308893621e-10,24.25335423536302,0.960032389178126,-9.01639600163073,0.0,1.0,0.0 -397,5.0,0.0,0.0,0.0,0.0,0.96704344012139,-7.167209771439866,1.0,0.0,0.0 -397,6.0,12.586033656331349,10.9,0.0,0.0,0.95766639558998,-8.204273683951113,1.0,0.0,0.0 -397,7.0,16.56057060043598,30.0,-3.7153913841668287e-10,30.586778199921028,0.966038965338818,-7.600743203979593,0.0,1.0,0.0 -397,8.0,0.0,0.0,0.0,0.0,1.0155422265445162,-8.99646176090269,1.0,0.0,0.0 -397,9.0,3.2017103160842897,2.0,0.0,0.0,1.00659334623598,-9.94663344534159,1.0,0.0,0.0 -397,10.0,0.0,0.0,8.03217400102631e-10,22.642889150294813,1.059974620057901,-8.996461760813764,0.0,1.0,0.0 -397,11.0,6.182613024162766,7.5,0.0,0.0,1.0136599915760198,-9.474218997599056,1.0,0.0,0.0 -397,12.0,0.0,0.0,-4.957888525412178e-10,9.986327712435946,1.027269717012173,-9.474218997637246,0.0,1.0,0.0 -397,13.0,3.4225179240901027,1.6,0.0,0.0,1.0025663100155835,-9.949255729124593,1.0,0.0,0.0 -397,14.0,4.526555964119168,2.5,0.0,0.0,0.99922657091041,-9.977147829022382,1.0,0.0,0.0 -397,15.0,1.9320665700508644,1.8,0.0,0.0,1.004428073111416,-9.785183967529631,1.0,0.0,0.0 -397,16.0,4.968171180130795,5.8,0.0,0.0,1.0015531597214653,-9.992410934122864,1.0,0.0,0.0 -397,17.0,1.7664608640465047,0.9,0.0,0.0,0.9926028785743768,-10.317064728293882,1.0,0.0,0.0 -397,18.0,5.244180690138061,3.4,0.0,0.0,0.9909915787539664,-10.419933082709598,1.0,0.0,0.0 -397,19.0,1.2144418440319722,0.7,0.0,0.0,0.9942718325605052,-10.333743937349247,1.0,0.0,0.0 -397,20.0,9.660332850254322,11.2,0.0,0.0,0.9959956198687302,-10.125003543412166,1.0,0.0,0.0 -397,21.0,0.0,0.0,0.0,0.0,0.9963807201182444,-10.121500891878195,1.0,0.0,0.0 -397,22.0,1.7664608640465047,1.6,0.0,0.0,0.9907214439309568,-10.157988246210287,1.0,0.0,0.0 -397,23.0,4.8025654741264345,6.7,0.0,0.0,0.9861238349959096,-10.2497344464113,1.0,0.0,0.0 -397,24.0,0.0,0.0,0.0,0.0,0.979745978454593,-9.975146995521367,1.0,0.0,0.0 -397,25.0,1.9320665700508644,2.3,0.0,0.0,0.9656031583822288,-10.06542609078509,1.0,0.0,0.0 -397,26.0,0.0,0.0,0.0,0.0,0.9828547678568617,-9.721826695145287,1.0,0.0,0.0 -397,27.0,0.0,0.0,0.0,0.0,0.9649925830087628,-7.525857588354719,1.0,0.0,0.0 -397,28.0,1.3248456480348785,0.9,0.0,0.0,0.9689375151617596,-10.369227595663084,1.0,0.0,0.0 -397,29.0,5.851401612154047,1.9,0.0,0.0,0.9613409688112295,-10.855084882919137,1.0,0.0,0.0 -398,0.0,0.0,0.0,163.3843994029889,0.0028046492384525,1.0,0.0,0.0,0.0,1.0 -398,1.0,11.97881273431536,12.7,1.6489915852341325e-06,17.14709043113521,0.9810037978985928,-3.766430480403716,0.0,1.0,0.0 -398,2.0,1.3248456480348785,1.2,0.0,0.0,0.97146227356214,-4.88430356640899,1.0,0.0,0.0 -398,3.0,4.195344552110448,1.6,0.0,0.0,0.9642090348470056,-6.003818773550869,1.0,0.0,0.0 -398,4.0,52.00019168536898,19.0,1.1590004448726494e-09,27.084840941589874,0.9611944345944224,-9.047194375092651,0.0,1.0,0.0 -398,5.0,0.0,0.0,0.0,0.0,0.9626979114991608,-7.085959070087102,1.0,0.0,0.0 -398,6.0,12.586033656331349,10.9,0.0,0.0,0.9555652071651596,-8.167495624913988,1.0,0.0,0.0 -398,7.0,16.56057060043598,30.0,1.7043036451941494e-09,39.99857222396638,0.9637137480279208,-7.797495868091633,0.0,1.0,0.0 -398,8.0,0.0,0.0,0.0,0.0,0.9848005053181552,-8.969648409804218,1.0,0.0,0.0 -398,9.0,3.2017103160842897,2.0,0.0,0.0,0.9854666827100728,-9.964575935678036,1.0,0.0,0.0 -398,10.0,0.0,0.0,0.0,0.0,0.9848005053181552,-8.969648409804218,0.0,1.0,0.0 -398,11.0,6.182613024162766,7.5,0.0,0.0,1.0086159142202993,-9.67960315542343,1.0,0.0,0.0 -398,12.0,0.0,0.0,2.6799004154311647e-09,15.698516718992453,1.0299546435937628,-9.6796031552165,0.0,1.0,0.0 -398,13.0,3.4225179240901027,1.6,0.0,0.0,1.0002879531709363,-10.065131904346874,1.0,0.0,0.0 -398,14.0,4.526555964119168,2.5,0.0,0.0,0.9884105299038708,-10.205767323715609,1.0,0.0,0.0 -398,15.0,1.9320665700508644,1.8,0.0,0.0,0.9924827125551038,-9.878796276982332,1.0,0.0,0.0 -398,16.0,4.968171180130795,5.8,0.0,0.0,0.9831786603485984,-10.048862208694429,1.0,0.0,0.0 -398,17.0,1.7664608640465047,0.9,0.0,0.0,0.9780226729883916,-10.480990945585347,1.0,0.0,0.0 -398,18.0,5.244180690138061,3.4,0.0,0.0,0.9742142136670224,-10.54265370511257,1.0,0.0,0.0 -398,19.0,1.2144418440319722,0.7,0.0,0.0,0.9764086449732357,-10.429554598850574,1.0,0.0,0.0 -398,20.0,9.660332850254322,11.2,0.0,0.0,0.9753705135205878,-10.192578588062304,1.0,0.0,0.0 -398,21.0,0.0,0.0,0.0,0.0,0.9759906325262202,-10.202710591641742,1.0,0.0,0.0 -398,22.0,1.7664608640465047,1.6,0.0,0.0,0.9768178711292642,-10.413849978217804,1.0,0.0,0.0 -398,23.0,4.8025654741264345,6.7,0.0,0.0,0.9682050796784424,-10.54063052179835,1.0,0.0,0.0 -398,24.0,0.0,0.0,0.0,0.0,0.9622991213447536,-10.64999003092566,1.0,0.0,0.0 -398,25.0,1.9320665700508644,2.3,0.0,0.0,0.947891999669568,-10.743623351698885,1.0,0.0,0.0 -398,26.0,0.0,0.0,0.0,0.0,0.9659725840781652,-10.631886286416476,1.0,0.0,0.0 -398,27.0,0.0,0.0,0.0,0.0,0.9525548763382864,-8.70069830895881,1.0,0.0,0.0 -398,28.0,1.3248456480348785,0.9,0.0,0.0,0.9517970799503712,-11.302447678357606,1.0,0.0,0.0 -398,29.0,5.851401612154047,1.9,0.0,0.0,0.944059189956022,-11.806089546071547,1.0,0.0,0.0 -399,0.0,0.0,0.0,163.18753624650458,0.000623544131173,1.0,0.0,0.0,0.0,1.0 -399,1.0,11.97881273431536,12.7,7.960893246187344e-07,10.621261217038692,0.980129652412706,-3.745793586358933,0.0,1.0,0.0 -399,2.0,1.3248456480348785,1.2,0.0,0.0,0.9740644919933682,-4.912497912011026,1.0,0.0,0.0 -399,3.0,4.195344552110448,1.6,0.0,0.0,0.9674199073950988,-6.037589211108007,1.0,0.0,0.0 -399,4.0,52.00019168536898,19.0,-8.484496308893621e-10,24.25335423536302,0.960032389178126,-9.01639600163073,0.0,1.0,0.0 -399,5.0,0.0,0.0,0.0,0.0,0.96704344012139,-7.167209771439866,1.0,0.0,0.0 -399,6.0,12.586033656331349,10.9,0.0,0.0,0.95766639558998,-8.204273683951113,1.0,0.0,0.0 -399,7.0,16.56057060043598,30.0,-3.7153913841668287e-10,30.586778199921028,0.966038965338818,-7.600743203979593,0.0,1.0,0.0 -399,8.0,0.0,0.0,0.0,0.0,1.0155422265445162,-8.99646176090269,1.0,0.0,0.0 -399,9.0,3.2017103160842897,2.0,0.0,0.0,1.00659334623598,-9.94663344534159,1.0,0.0,0.0 -399,10.0,0.0,0.0,8.03217400102631e-10,22.642889150294813,1.059974620057901,-8.996461760813764,0.0,1.0,0.0 -399,11.0,6.182613024162766,7.5,0.0,0.0,1.0136599915760198,-9.474218997599056,1.0,0.0,0.0 -399,12.0,0.0,0.0,-4.957888525412178e-10,9.986327712435946,1.027269717012173,-9.474218997637246,0.0,1.0,0.0 -399,13.0,3.4225179240901027,1.6,0.0,0.0,1.0025663100155835,-9.949255729124593,1.0,0.0,0.0 -399,14.0,4.526555964119168,2.5,0.0,0.0,0.99922657091041,-9.977147829022382,1.0,0.0,0.0 -399,15.0,1.9320665700508644,1.8,0.0,0.0,1.004428073111416,-9.785183967529631,1.0,0.0,0.0 -399,16.0,4.968171180130795,5.8,0.0,0.0,1.0015531597214653,-9.992410934122864,1.0,0.0,0.0 -399,17.0,1.7664608640465047,0.9,0.0,0.0,0.9926028785743768,-10.317064728293882,1.0,0.0,0.0 -399,18.0,5.244180690138061,3.4,0.0,0.0,0.9909915787539664,-10.419933082709598,1.0,0.0,0.0 -399,19.0,1.2144418440319722,0.7,0.0,0.0,0.9942718325605052,-10.333743937349247,1.0,0.0,0.0 -399,20.0,9.660332850254322,11.2,0.0,0.0,0.9959956198687302,-10.125003543412166,1.0,0.0,0.0 -399,21.0,0.0,0.0,0.0,0.0,0.9963807201182444,-10.121500891878195,1.0,0.0,0.0 -399,22.0,1.7664608640465047,1.6,0.0,0.0,0.9907214439309568,-10.157988246210287,1.0,0.0,0.0 -399,23.0,4.8025654741264345,6.7,0.0,0.0,0.9861238349959096,-10.2497344464113,1.0,0.0,0.0 -399,24.0,0.0,0.0,0.0,0.0,0.979745978454593,-9.975146995521367,1.0,0.0,0.0 -399,25.0,1.9320665700508644,2.3,0.0,0.0,0.9656031583822288,-10.06542609078509,1.0,0.0,0.0 -399,26.0,0.0,0.0,0.0,0.0,0.9828547678568617,-9.721826695145287,1.0,0.0,0.0 -399,27.0,0.0,0.0,0.0,0.0,0.9649925830087628,-7.525857588354719,1.0,0.0,0.0 -399,28.0,1.3248456480348785,0.9,0.0,0.0,0.9689375151617596,-10.369227595663084,1.0,0.0,0.0 -399,29.0,5.851401612154047,1.9,0.0,0.0,0.9613409688112295,-10.855084882919137,1.0,0.0,0.0 -400,0.0,0.0,0.0,163.392617978212,0.0054951616848875,1.0,0.0,0.0,0.0,1.0 -400,1.0,11.97881273431536,12.7,3.18476451332594e-06,16.645485840816704,0.9808631605048856,-3.845878649128744,0.0,1.0,0.0 -400,2.0,1.3248456480348785,1.2,0.0,0.0,0.971574885662141,-4.657331192436487,1.0,0.0,0.0 -400,3.0,4.195344552110448,1.6,0.0,0.0,0.9643160165646324,-5.721672647374741,1.0,0.0,0.0 -400,4.0,52.00019168536898,19.0,2.866183074473259e-09,22.94640972359035,0.9612491497128444,-10.294291692046738,0.0,1.0,0.0 -400,5.0,0.0,0.0,0.0,0.0,0.9656116778947432,-6.748605880845266,1.0,0.0,0.0 -400,6.0,12.586033656331349,10.9,0.0,0.0,0.953342739672111,-7.222664726278621,1.0,0.0,0.0 -400,7.0,16.56057060043598,30.0,8.212429474831657e-09,38.39476011998059,0.9674371210197092,-7.233032921580796,0.0,1.0,0.0 -400,8.0,0.0,0.0,0.0,0.0,1.0130521772992631,-8.57468217645993,1.0,0.0,0.0 -400,9.0,3.2017103160842897,2.0,0.0,0.0,1.002366621022216,-9.52579436638764,1.0,0.0,0.0 -400,10.0,0.0,0.0,8.730467772564298e-09,23.78663146150684,1.059739313295092,-8.574682175490778,0.0,1.0,0.0 -400,11.0,6.182613024162766,7.5,0.0,0.0,0.9903853216672472,-9.239045578204372,1.0,0.0,0.0 -400,12.0,0.0,0.0,0.0,0.0,0.9903853216672472,-9.239045578204372,0.0,1.0,0.0 -400,13.0,3.4225179240901027,1.6,0.0,0.0,0.978181348901668,-9.789718086369106,1.0,0.0,0.0 -400,14.0,4.526555964119168,2.5,0.0,0.0,0.9736001389148132,-9.851551925529044,1.0,0.0,0.0 -400,15.0,1.9320665700508644,1.8,0.0,0.0,0.9894314543782704,-9.514600108411512,1.0,0.0,0.0 -400,16.0,4.968171180130795,5.8,0.0,0.0,0.9938776378575184,-9.606597651838282,1.0,0.0,0.0 -400,17.0,1.7664608640465047,0.9,0.0,0.0,0.9556733376017696,-10.510756124187434,1.0,0.0,0.0 -400,18.0,5.244180690138061,3.4,0.0,0.0,0.9474879773022852,-10.802009598406244,1.0,0.0,0.0 -400,19.0,1.2144418440319722,0.7,0.0,0.0,0.9997645216723068,-9.633452060670088,1.0,0.0,0.0 -400,20.0,9.660332850254322,11.2,0.0,0.0,0.9906579338862862,-9.727031938868295,1.0,0.0,0.0 -400,21.0,0.0,0.0,0.0,0.0,0.9907074640589482,-9.72987766816254,1.0,0.0,0.0 -400,22.0,1.7664608640465047,1.6,0.0,0.0,0.9715804522321012,-9.948410339639803,1.0,0.0,0.0 -400,23.0,4.8025654741264345,6.7,0.0,0.0,0.9757466632606844,-9.917447672743576,1.0,0.0,0.0 -400,24.0,0.0,0.0,0.0,0.0,0.9727815027864992,-9.661160046166064,1.0,0.0,0.0 -400,25.0,1.9320665700508644,2.3,0.0,0.0,0.9585343674354648,-9.752756017378369,1.0,0.0,0.0 -400,26.0,0.0,0.0,0.0,0.0,0.978067974137615,-9.414409630802009,1.0,0.0,0.0 -400,27.0,0.0,0.0,0.0,0.0,0.963732072219186,-7.121487777881918,1.0,0.0,0.0 -400,28.0,1.3248456480348785,0.9,0.0,0.0,0.964078485167242,-10.068253428114284,1.0,0.0,0.0 -400,29.0,5.851401612154047,1.9,0.0,0.0,0.956442405589069,-10.55905520835098,1.0,0.0,0.0 -401,0.0,0.0,0.0,164.21176817694004,9.197097963209444e-05,1.0,0.0,0.0,0.0,1.0 -401,1.0,11.97881273431536,12.7,1.0915279551327153e-07,11.337974491768932,0.980551471396416,-3.6419295881484968,0.0,1.0,0.0 -401,2.0,1.3248456480348785,1.2,0.0,0.0,0.9729682495773562,-5.314286550826919,1.0,0.0,0.0 -401,3.0,4.195344552110448,1.6,0.0,0.0,0.96613749849156,-6.537279013814565,1.0,0.0,0.0 -401,4.0,52.00019168536898,19.0,3.0390542733426985e-10,36.37029840305894,0.9593123482093524,-11.77099734372567,0.0,1.0,0.0 -401,5.0,0.0,0.0,0.0,0.0,0.9657549501747787,-7.900687824656285,1.0,0.0,0.0 -401,6.0,12.586033656331349,10.9,0.0,0.0,0.9407724815913868,-12.405938046076011,1.0,0.0,0.0 -401,7.0,16.56057060043598,30.0,-7.363615202389959e-11,28.548963608983435,0.9639453568749284,-8.32252998667002,0.0,1.0,0.0 -401,8.0,0.0,0.0,0.0,0.0,1.0132909608403489,-9.677944933665133,1.0,0.0,0.0 -401,9.0,3.2017103160842897,2.0,0.0,0.0,1.0048673692921049,-10.601468778709636,1.0,0.0,0.0 -401,10.0,0.0,0.0,-1.416862986231031e-10,21.55235571098129,1.0557525216325692,-9.677944933680914,0.0,1.0,0.0 -401,11.0,6.182613024162766,7.5,0.0,0.0,1.01193622459336,-10.08401017488559,1.0,0.0,0.0 -401,12.0,0.0,0.0,-7.639972012773294e-11,10.171370714062029,1.0258177536938369,-10.084010174891493,0.0,1.0,0.0 -401,13.0,3.4225179240901027,1.6,0.0,0.0,1.000556674127989,-10.57558826408549,1.0,0.0,0.0 -401,14.0,4.526555964119168,2.5,0.0,0.0,0.9968531438718016,-10.612215562340802,1.0,0.0,0.0 -401,15.0,1.9320665700508644,1.8,0.0,0.0,1.0026631284735965,-10.414676283522391,1.0,0.0,0.0 -401,16.0,4.968171180130795,5.8,0.0,0.0,0.9998164907328576,-10.639644786383332,1.0,0.0,0.0 -401,17.0,1.7664608640465047,0.9,0.0,0.0,0.990436125797462,-10.960699647196057,1.0,0.0,0.0 -401,18.0,5.244180690138061,3.4,0.0,0.0,0.9889526773717988,-11.068212424187257,1.0,0.0,0.0 -401,19.0,1.2144418440319722,0.7,0.0,0.0,0.9923087357363488,-10.98390679679081,1.0,0.0,0.0 -401,20.0,9.660332850254322,11.2,0.0,0.0,0.9898908426672536,-10.859280178479032,1.0,0.0,0.0 -401,21.0,0.0,0.0,0.0,0.0,0.988897427083234,-10.87922975382378,1.0,0.0,0.0 -401,22.0,1.7664608640465047,1.6,0.0,0.0,0.9869810253378684,-10.836749675462343,1.0,0.0,0.0 -401,23.0,4.8025654741264345,6.7,0.0,0.0,0.9805968515810772,-10.98758762193441,1.0,0.0,0.0 -401,24.0,0.0,0.0,0.0,0.0,0.9755921942716969,-10.731544534901555,1.0,0.0,0.0 -401,25.0,1.9320665700508644,2.3,0.0,0.0,0.961387345453256,-10.822605584547688,1.0,0.0,0.0 -401,26.0,0.0,0.0,0.0,0.0,0.9795909560486544,-10.487595071643794,1.0,0.0,0.0 -401,27.0,0.0,0.0,0.0,0.0,0.96331429079455,-8.257317215038746,1.0,0.0,0.0 -401,28.0,1.3248456480348785,0.9,0.0,0.0,0.965624533572869,-11.139378527923489,1.0,0.0,0.0 -401,29.0,5.851401612154047,1.9,0.0,0.0,0.958001077953406,-11.628598890411594,1.0,0.0,0.0 -402,0.0,0.0,0.0,164.32747091384394,6.85210948425663e-05,1.0,0.0,0.0,0.0,1.0 -402,1.0,11.97881273431536,12.7,1.3796916860575906e-07,10.83000387435824,0.9786797951231366,-4.2029564426838295,0.0,1.0,0.0 -402,2.0,1.3248456480348785,1.2,0.0,0.0,0.976433186535528,-3.715686101241003,1.0,0.0,0.0 -402,3.0,4.195344552110448,1.6,0.0,0.0,0.9702197585775184,-4.550687509849073,1.0,0.0,0.0 -402,4.0,52.00019168536898,19.0,1.348758084435294e-10,25.889500128775964,0.9594181744823964,-10.670653951094794,0.0,1.0,0.0 -402,5.0,0.0,0.0,0.0,0.0,0.963313141695558,-9.999864455613682,1.0,0.0,0.0 -402,6.0,12.586033656331349,10.9,0.0,0.0,0.9549897030741088,-10.556652736919284,1.0,0.0,0.0 -402,7.0,16.56057060043598,30.0,1.2900723428127643e-10,26.42088611659801,0.9607831274833298,-10.398572642209077,0.0,1.0,0.0 -402,8.0,0.0,0.0,0.0,0.0,1.0135639030263526,-11.052891912148915,1.0,0.0,0.0 -402,9.0,3.2017103160842897,2.0,0.0,0.0,1.006161266004636,-11.598037101659076,1.0,0.0,0.0 -402,10.0,0.0,0.0,2.6145117344333204e-10,21.75326978053548,1.056395222389178,-11.052891912119817,0.0,1.0,0.0 -402,11.0,6.182613024162766,7.5,0.0,0.0,1.0293304496748106,-9.69638351939124,1.0,0.0,0.0 -402,12.0,0.0,0.0,6.501903060873552e-11,18.510253240519923,1.0539190131353315,-9.696383519386435,0.0,1.0,0.0 -402,13.0,3.4225179240901027,1.6,0.0,0.0,1.0167536164312192,-10.358535474806637,1.0,0.0,0.0 -402,14.0,4.526555964119168,2.5,0.0,0.0,1.010477979793724,-10.5483838003286,1.0,0.0,0.0 -402,15.0,1.9320665700508644,1.8,0.0,0.0,1.0121289757658192,-10.578178692079897,1.0,0.0,0.0 -402,16.0,4.968171180130795,5.8,0.0,0.0,1.003960474059032,-11.384145580406098,1.0,0.0,0.0 -402,17.0,1.7664608640465047,0.9,0.0,0.0,0.999670221261985,-11.258727261015428,1.0,0.0,0.0 -402,18.0,5.244180690138061,3.4,0.0,0.0,0.995604331640136,-11.58630435589333,1.0,0.0,0.0 -402,19.0,1.2144418440319722,0.7,0.0,0.0,0.997568578037805,-11.619881736021243,1.0,0.0,0.0 -402,20.0,9.660332850254322,11.2,0.0,0.0,0.9959709465534268,-11.747714683531042,1.0,0.0,0.0 -402,21.0,0.0,0.0,0.0,0.0,0.9964889137075308,-11.735126941187517,1.0,0.0,0.0 -402,22.0,1.7664608640465047,1.6,0.0,0.0,0.9980024786444792,-11.121171256668532,1.0,0.0,0.0 -402,23.0,4.8025654741264345,6.7,0.0,0.0,0.9882273136161496,-11.752480402074914,1.0,0.0,0.0 -402,24.0,0.0,0.0,0.0,0.0,0.9778977379994902,-11.934699662289978,1.0,0.0,0.0 -402,25.0,1.9320665700508644,2.3,0.0,0.0,0.9637273860680426,-12.025325436707412,1.0,0.0,0.0 -402,26.0,0.0,0.0,0.0,0.0,0.97873835231497,-11.971421630370912,1.0,0.0,0.0 -402,27.0,0.0,0.0,0.0,0.0,0.961229661957824,-10.28833054443944,1.0,0.0,0.0 -402,28.0,1.3248456480348785,0.9,0.0,0.0,0.9647590263060484,-12.62435730972282,1.0,0.0,0.0 -402,29.0,5.851401612154047,1.9,0.0,0.0,0.957128508795804,-13.114462034163047,1.0,0.0,0.0 -403,0.0,0.0,0.0,163.3171646920889,0.0019807221820045,1.0,0.0,0.0,0.0,1.0 -403,1.0,11.97881273431536,12.7,1.6044986116720065e-06,11.48832840377964,0.9804291814076628,-3.73823782627852,0.0,1.0,0.0 -403,2.0,1.3248456480348785,1.2,0.0,0.0,0.9732061383754088,-4.950535168283759,1.0,0.0,0.0 -403,3.0,4.195344552110448,1.6,0.0,0.0,0.9663680594770868,-6.085261469773876,1.0,0.0,0.0 -403,4.0,52.00019168536898,19.0,-6.991315081841556e-10,24.664027227697037,0.9608116515323464,-8.972106970471385,0.0,1.0,0.0 -403,5.0,0.0,0.0,0.0,0.0,0.9674694266782228,-7.0771380508546295,1.0,0.0,0.0 -403,6.0,12.586033656331349,10.9,0.0,0.0,0.9582477701200228,-8.132364848487638,1.0,0.0,0.0 -403,7.0,16.56057060043598,30.0,8.369063511190484e-10,33.404342242177435,0.9673623168091876,-7.540802596120631,0.0,1.0,0.0 -403,8.0,0.0,0.0,0.0,0.0,1.0246117450172676,-7.077138050595377,1.0,0.0,0.0 -403,9.0,3.2017103160842897,2.0,0.0,0.0,0.9818941840725898,-11.78600278840832,1.0,0.0,0.0 -403,10.0,0.0,0.0,2.2049137795228904e-09,18.029631853610255,1.0599909474032685,-7.077138050353434,0.0,1.0,0.0 -403,11.0,6.182613024162766,7.5,0.0,0.0,1.0071987759213623,-10.54566923940242,1.0,0.0,0.0 -403,12.0,0.0,0.0,1.375972391671127e-09,13.161120080963858,1.0251719252627542,-10.545669239295531,0.0,1.0,0.0 -403,13.0,3.4225179240901027,1.6,0.0,0.0,0.994308084044768,-11.11450606872225,1.0,0.0,0.0 -403,14.0,4.526555964119168,2.5,0.0,0.0,0.9886950210951964,-11.189939671359507,1.0,0.0,0.0 -403,15.0,1.9320665700508644,1.8,0.0,0.0,0.9894616175807166,-11.145916570421898,1.0,0.0,0.0 -403,16.0,4.968171180130795,5.8,0.0,0.0,0.9799556142973932,-11.69785847398618,1.0,0.0,0.0 -403,17.0,1.7664608640465047,0.9,0.0,0.0,0.9768573690334962,-11.757316641224138,1.0,0.0,0.0 -403,18.0,5.244180690138061,3.4,0.0,0.0,0.9722145607626635,-11.994811512252324,1.0,0.0,0.0 -403,19.0,1.2144418440319722,0.7,0.0,0.0,0.9739729852719564,-11.97399677335248,1.0,0.0,0.0 -403,20.0,9.660332850254322,11.2,0.0,0.0,0.972465310414934,-11.886921968376996,1.0,0.0,0.0 -403,21.0,0.0,0.0,0.0,0.0,0.9733227862284416,-11.856099753981749,1.0,0.0,0.0 -403,22.0,1.7664608640465047,1.6,0.0,0.0,0.977596430879555,-11.4584739476035,1.0,0.0,0.0 -403,23.0,4.8025654741264345,6.7,0.0,0.0,0.9696537487140372,-11.667265953707718,1.0,0.0,0.0 -403,24.0,0.0,0.0,0.0,0.0,0.9709883662249256,-10.918714345132656,1.0,0.0,0.0 -403,25.0,1.9320665700508644,2.3,0.0,0.0,0.9567141195717602,-11.010654063203424,1.0,0.0,0.0 -403,26.0,0.0,0.0,0.0,0.0,0.9788452658636776,-10.36437923201547,1.0,0.0,0.0 -403,27.0,0.0,0.0,0.0,0.0,0.9647258967918394,-7.51220721259565,1.0,0.0,0.0 -403,28.0,1.3248456480348785,0.9,0.0,0.0,0.964867559250812,-11.017170258108653,1.0,0.0,0.0 -403,29.0,5.851401612154047,1.9,0.0,0.0,0.95723792801169,-11.50716395350119,1.0,0.0,0.0 -404,0.0,0.0,0.0,163.83805224746348,0.003137647869611,1.0,0.0,0.0,0.0,1.0 -404,1.0,11.97881273431536,12.7,1.6158224166566289e-06,12.71487212646702,0.9821168394478654,-3.473895010840508,0.0,1.0,0.0 -404,2.0,1.3248456480348785,1.2,0.0,0.0,0.969396821792927,-5.778218508082515,1.0,0.0,0.0 -404,3.0,4.195344552110448,1.6,0.0,0.0,0.9618335427371576,-7.116288985508257,1.0,0.0,0.0 -404,4.0,52.00019168536898,19.0,-1.2883519453791652e-09,28.061281601777157,0.9625943788637809,-9.291770178662818,0.0,1.0,0.0 -404,5.0,0.0,0.0,0.0,0.0,0.961908216304344,-7.874352868409124,1.0,0.0,0.0 -404,6.0,12.586033656331349,10.9,0.0,0.0,0.9555971677831372,-8.73265682030768,1.0,0.0,0.0 -404,7.0,16.56057060043598,30.0,-2.013554023656469e-09,39.99755596428832,0.9645095665426602,-8.360941563012583,0.0,1.0,0.0 -404,8.0,0.0,0.0,0.0,0.0,0.9840342310784408,-9.889699889820266,1.0,0.0,0.0 -404,9.0,3.2017103160842897,2.0,0.0,0.0,0.9847839444977468,-10.9540105846196,1.0,0.0,0.0 -404,10.0,0.0,0.0,0.0,0.0,0.9840342310784408,-9.889699889820266,0.0,1.0,0.0 -404,11.0,6.182613024162766,7.5,0.0,0.0,1.0198057495858852,-10.669051533086597,1.0,0.0,0.0 -404,12.0,0.0,0.0,-2.93713753690702e-09,23.24870284106583,1.0507809809310995,-10.669051533306456,0.0,1.0,0.0 -404,13.0,3.4225179240901027,1.6,0.0,0.0,1.0075855190866354,-11.09899722764267,1.0,0.0,0.0 -404,14.0,4.526555964119168,2.5,0.0,0.0,1.003390471000004,-11.060388832155358,1.0,0.0,0.0 -404,15.0,1.9320665700508644,1.8,0.0,0.0,0.9985720147930494,-10.841909843268704,1.0,0.0,0.0 -404,16.0,4.968171180130795,5.8,0.0,0.0,0.9846243167723364,-11.038009165955774,1.0,0.0,0.0 -404,17.0,1.7664608640465047,0.9,0.0,0.0,0.9578269648076034,-12.018632546589195,1.0,0.0,0.0 -404,18.0,5.244180690138061,3.4,0.0,0.0,0.9602210850135666,-11.912281761010648,1.0,0.0,0.0 -404,19.0,1.2144418440319722,0.7,0.0,0.0,0.9657596042539746,-11.708068892317751,1.0,0.0,0.0 -404,20.0,9.660332850254322,11.2,0.0,0.0,0.9712634739491168,-11.277565202951482,1.0,0.0,0.0 -404,21.0,0.0,0.0,0.0,0.0,0.9708011609248804,-11.316897973470926,1.0,0.0,0.0 -404,22.0,1.7664608640465047,1.6,0.0,0.0,0.9846525184968696,-11.35466113790929,1.0,0.0,0.0 -404,23.0,4.8025654741264345,6.7,0.0,0.0,0.966484774779021,-11.6093594686878,1.0,0.0,0.0 -404,24.0,0.0,0.0,0.0,0.0,0.9545498327010714,-11.735882908607202,1.0,0.0,0.0 -404,25.0,1.9320665700508644,2.3,0.0,0.0,0.9400220721875736,-11.831066638814132,1.0,0.0,0.0 -404,26.0,0.0,0.0,0.0,0.0,0.980471815249933,-9.88326309954966,1.0,0.0,0.0 -404,27.0,0.0,0.0,0.0,0.0,0.9612055384268826,-8.187198952753484,1.0,0.0,0.0 -404,28.0,1.3248456480348785,0.9,0.0,0.0,0.966518698214252,-10.533859364933363,1.0,0.0,0.0 -404,29.0,5.851401612154047,1.9,0.0,0.0,0.9589025243795553,-11.02216860163158,1.0,0.0,0.0 -405,0.0,0.0,0.0,163.22540555443848,0.006739502410813,1.0,0.0,0.0,0.0,1.0 -405,1.0,11.97881273431536,12.7,6.614640018047187e-06,9.858868945371412,0.9799609437677648,-3.740466862360427,0.0,1.0,0.0 -405,2.0,1.3248456480348785,1.2,0.0,0.0,0.9745372684349496,-4.929112137016063,1.0,0.0,0.0 -405,3.0,4.195344552110448,1.6,0.0,0.0,0.9680050369740476,-6.057992334954903,1.0,0.0,0.0 -405,4.0,52.00019168536898,19.0,4.4367806385515604e-09,23.96736903397982,0.9596763118181124,-9.003069612746499,0.0,1.0,0.0 -405,5.0,0.0,0.0,0.0,0.0,0.967104332913624,-7.153700029708372,1.0,0.0,0.0 -405,6.0,12.586033656331349,10.9,0.0,0.0,0.9575558882447898,-8.191080935759976,1.0,0.0,0.0 -405,7.0,16.56057060043598,30.0,1.3905581684687904e-09,28.024420305653408,0.9652324962930228,-7.560416692001532,0.0,1.0,0.0 -405,8.0,0.0,0.0,0.0,0.0,1.0166190202480847,-9.068639116361169,1.0,0.0,0.0 -405,9.0,3.2017103160842897,2.0,0.0,0.0,1.0088041829182293,-10.061189997589208,1.0,0.0,0.0 -405,10.0,0.0,0.0,-7.068878137395324e-09,22.104649585438,1.0599944104251606,-9.068639117142924,0.0,1.0,0.0 -405,11.0,6.182613024162766,7.5,0.0,0.0,1.019954330317831,-9.623980816803709,1.0,0.0,0.0 -405,12.0,0.0,0.0,1.1988247709969615e-09,14.158185616459736,1.0390311972261204,-9.623980816712969,0.0,1.0,0.0 -405,13.0,3.4225179240901027,1.6,0.0,0.0,1.0082481879541991,-10.111909728077052,1.0,0.0,0.0 -405,14.0,4.526555964119168,2.5,0.0,0.0,1.0041436400758523,-10.142524406799255,1.0,0.0,0.0 -405,15.0,1.9320665700508644,1.8,0.0,0.0,1.0090051453905595,-9.910124784490252,1.0,0.0,0.0 -405,16.0,4.968171180130795,5.8,0.0,0.0,1.0045113828987933,-10.112445322583444,1.0,0.0,0.0 -405,17.0,1.7664608640465047,0.9,0.0,0.0,0.9966058481501868,-10.461426093492111,1.0,0.0,0.0 -405,18.0,5.244180690138061,3.4,0.0,0.0,0.9944430424234572,-10.552677634533849,1.0,0.0,0.0 -405,19.0,1.2144418440319722,0.7,0.0,0.0,0.9974184767786206,-10.461268109946694,1.0,0.0,0.0 -405,20.0,9.660332850254322,11.2,0.0,0.0,0.997999234472122,-10.276837244028968,1.0,0.0,0.0 -405,21.0,0.0,0.0,0.0,0.0,0.998306890800326,-10.28548952723097,1.0,0.0,0.0 -405,22.0,1.7664608640465047,1.6,0.0,0.0,0.9938018914192016,-10.388239044627294,1.0,0.0,0.0 -405,23.0,4.8025654741264345,6.7,0.0,0.0,0.9867516114428452,-10.570339798781353,1.0,0.0,0.0 -405,24.0,0.0,0.0,0.0,0.0,0.9750757793961102,-10.691624261819182,1.0,0.0,0.0 -405,25.0,1.9320665700508644,2.3,0.0,0.0,0.9608631803105964,-10.78278324164687,1.0,0.0,0.0 -405,26.0,0.0,0.0,0.0,0.0,0.9848629723448712,-9.128859155472044,1.0,0.0,0.0 -405,27.0,0.0,0.0,0.0,0.0,0.9653915512099606,-7.447898694124816,1.0,0.0,0.0 -405,28.0,1.3248456480348785,0.9,0.0,0.0,0.9709757969413688,-9.773585539273212,1.0,0.0,0.0 -405,29.0,5.851401612154047,1.9,0.0,0.0,0.9633957106408264,-10.257390970799342,1.0,0.0,0.0 -406,0.0,0.0,0.0,163.35317812564378,0.0030428929654213,1.0,0.0,0.0,0.0,1.0 -406,1.0,11.97881273431536,12.7,3.0601233622389547e-06,10.023395608385869,0.9800058166280664,-3.750292433634588,0.0,1.0,0.0 -406,2.0,1.3248456480348785,1.2,0.0,0.0,0.9743417253871228,-4.914561994938665,1.0,0.0,0.0 -406,3.0,4.195344552110448,1.6,0.0,0.0,0.9677618460745367,-6.040017787842047,1.0,0.0,0.0 -406,4.0,52.00019168536898,19.0,-1.5382598549141738e-10,24.23226404484089,0.9599991902543562,-9.03277730268621,0.0,1.0,0.0 -406,5.0,0.0,0.0,0.0,0.0,0.9671367506890332,-7.197024753674915,1.0,0.0,0.0 -406,6.0,12.586033656331349,10.9,0.0,0.0,0.9577067173276264,-8.228656682283757,1.0,0.0,0.0 -406,7.0,16.56057060043598,30.0,-2.2826172189448944e-10,34.08039330049006,0.9660338146574194,-7.862238355095956,0.0,1.0,0.0 -406,8.0,0.0,0.0,0.0,0.0,1.013409890140335,-9.252105478400091,1.0,0.0,0.0 -406,9.0,3.2017103160842897,2.0,0.0,0.0,1.0022487344119524,-10.324276273748042,1.0,0.0,0.0 -406,10.0,0.0,0.0,-5.774620340382547e-10,23.743024136348883,1.0599999762806125,-9.252105478464154,0.0,1.0,0.0 -406,11.0,6.182613024162766,7.5,0.0,0.0,1.015444507682167,-9.29191256135812,1.0,0.0,0.0 -406,12.0,0.0,0.0,-1.6215007513607884e-10,7.966721336694164,1.0263119730959502,-9.291912561370603,0.0,1.0,0.0 -406,13.0,3.4225179240901027,1.6,0.0,0.0,1.003711569401346,-9.849924800442327,1.0,0.0,0.0 -406,14.0,4.526555964119168,2.5,0.0,0.0,0.9991641571855298,-9.946514556746546,1.0,0.0,0.0 -406,15.0,1.9320665700508644,1.8,0.0,0.0,0.9889883770142592,-10.679665951913377,1.0,0.0,0.0 -406,16.0,4.968171180130795,5.8,0.0,0.0,0.9935159463767838,-10.518015806216306,1.0,0.0,0.0 -406,17.0,1.7664608640465047,0.9,0.0,0.0,0.99097578719845,-10.4301247290956,1.0,0.0,0.0 -406,18.0,5.244180690138061,3.4,0.0,0.0,0.9884520405722678,-10.618935669349332,1.0,0.0,0.0 -406,19.0,1.2144418440319722,0.7,0.0,0.0,0.9912593748450091,-10.577231282336854,1.0,0.0,0.0 -406,20.0,9.660332850254322,11.2,0.0,0.0,0.991655942894296,-10.506135293495912,1.0,0.0,0.0 -406,21.0,0.0,0.0,0.0,0.0,0.99205887390941,-10.50324394837484,1.0,0.0,0.0 -406,22.0,1.7664608640465047,1.6,0.0,0.0,0.9888701873235723,-10.306727151780043,1.0,0.0,0.0 -406,23.0,4.8025654741264345,6.7,0.0,0.0,0.9819559624963304,-10.642597001535083,1.0,0.0,0.0 -406,24.0,0.0,0.0,0.0,0.0,0.9728067438819016,-10.686759087517151,1.0,0.0,0.0 -406,25.0,1.9320665700508644,2.3,0.0,0.0,0.958559989442222,-10.778350236268448,1.0,0.0,0.0 -406,26.0,0.0,0.0,0.0,0.0,0.9743601884590788,-10.63447040152708,1.0,0.0,0.0 -406,27.0,0.0,0.0,0.0,0.0,0.9570260070736768,-8.77308996134617,1.0,0.0,0.0 -406,28.0,1.3248456480348785,0.9,0.0,0.0,0.9603142136659972,-11.293371470702647,1.0,0.0,0.0 -406,29.0,5.851401612154047,1.9,0.0,0.0,0.9526472194154014,-11.788055937409698,1.0,0.0,0.0 -407,0.0,0.0,0.0,163.29925515174054,4.512382741862986,1.0,0.0,0.0,0.0,1.0 -407,1.0,11.97881273431536,12.7,0.0,0.0,0.9776999035441588,-3.717108472044017,0.0,1.0,0.0 -407,2.0,1.3248456480348785,1.2,0.0,0.0,0.9733792820682664,-4.892212976815315,1.0,0.0,0.0 -407,3.0,4.195344552110448,1.6,0.0,0.0,0.9665724748623256,-6.012723952238576,1.0,0.0,0.0 -407,4.0,52.00019168536898,19.0,2.9619474515953474e-10,30.497457054107244,0.9656652213049228,-9.126123948492571,0.0,1.0,0.0 -407,5.0,0.0,0.0,0.0,0.0,0.9678930341005292,-7.228064982216555,1.0,0.0,0.0 -407,6.0,12.586033656331349,10.9,0.0,0.0,0.960503033162142,-8.281454901194218,1.0,0.0,0.0 -407,7.0,16.56057060043598,30.0,2.960975901674465e-10,39.95728992296249,0.9702088309703624,-7.7154465779023,0.0,1.0,0.0 -407,8.0,0.0,0.0,0.0,0.0,1.01293092144648,-9.27000859604624,1.0,0.0,0.0 -407,9.0,3.2017103160842897,2.0,0.0,0.0,1.0008485488298235,-10.337652529250056,1.0,0.0,0.0 -407,10.0,0.0,0.0,2.497599377739508e-10,23.98702594436136,1.0599998109399862,-9.27000859601852,0.0,1.0,0.0 -407,11.0,6.182613024162766,7.5,0.0,0.0,1.0021625534794154,-9.13779380259087,1.0,0.0,0.0 -407,12.0,0.0,0.0,0.0,0.0,1.0021625534794154,-9.13779380259087,0.0,1.0,0.0 -407,13.0,3.4225179240901027,1.6,0.0,0.0,0.992286596462408,-9.7030350163303,1.0,0.0,0.0 -407,14.0,4.526555964119168,2.5,0.0,0.0,0.9896691161290186,-9.840834598882877,1.0,0.0,0.0 -407,15.0,1.9320665700508644,1.8,0.0,0.0,0.9875691856645656,-10.694052101444058,1.0,0.0,0.0 -407,16.0,4.968171180130795,5.8,0.0,0.0,0.9921032727315005,-10.53193914701643,1.0,0.0,0.0 -407,17.0,1.7664608640465047,0.9,0.0,0.0,0.9842619702182804,-10.373112259038168,1.0,0.0,0.0 -407,18.0,5.244180690138061,3.4,0.0,0.0,0.9834053660964944,-10.588713870683687,1.0,0.0,0.0 -407,19.0,1.2144418440319722,0.7,0.0,0.0,0.987112990729362,-10.55974241985927,1.0,0.0,0.0 -407,20.0,9.660332850254322,11.2,0.0,0.0,0.9889611001306832,-10.530876420211456,1.0,0.0,0.0 -407,21.0,0.0,0.0,0.0,0.0,0.9935728315266888,-10.461229620806073,1.0,0.0,0.0 -407,22.0,1.7664608640465047,1.6,0.0,0.0,0.9843156445380522,-10.212657535451374,1.0,0.0,0.0 -407,23.0,4.8025654741264345,6.7,0.0,0.0,0.9840232042066034,-10.556129810826846,1.0,0.0,0.0 -407,24.0,0.0,0.0,0.0,0.0,0.9678713183794618,-9.823687216138437,1.0,0.0,0.0 -407,25.0,1.9320665700508644,2.3,0.0,0.0,0.953549693327084,-9.916229117604482,1.0,0.0,0.0 -407,26.0,0.0,0.0,0.0,0.0,0.975123707639215,-9.73081659901028,1.0,0.0,0.0 -407,27.0,0.0,0.0,0.0,0.0,0.965635534196012,-7.573671511507154,1.0,0.0,0.0 -407,28.0,1.3248456480348785,0.9,0.0,0.0,0.9610894029200404,-10.388671446534964,1.0,0.0,0.0 -407,29.0,5.851401612154047,1.9,0.0,0.0,0.9534287957884424,-10.882552570650684,1.0,0.0,0.0 -408,0.0,0.0,0.0,163.84465372527072,0.0006452962458602,1.0,0.0,0.0,0.0,1.0 -408,1.0,12.025076802396214,12.7,8.170681115331161e-07,10.687953243907096,0.9800674172752508,-3.76132562966578,0.0,1.0,0.0 -408,2.0,1.3299624113249269,1.2,0.0,0.0,0.9739803174807818,-4.932806490330255,1.0,0.0,0.0 -408,3.0,4.211547635862268,1.6,0.0,0.0,0.9673199522520216,-6.062736135236528,1.0,0.0,0.0 -408,4.0,52.20102464450338,19.0,-5.940701683835522e-10,24.292418179981325,0.959904583480332,-9.053837938951355,0.0,1.0,0.0 -408,5.0,0.0,0.0,0.0,0.0,0.966933285539591,-7.196851692977101,1.0,0.0,0.0 -408,6.0,12.634642907586809,10.9,0.0,0.0,0.9575400468588584,-8.238613364006182,1.0,0.0,0.0 -408,7.0,16.624530141561586,30.0,-1.6825200217178775e-10,30.606685861760305,0.9659278593890008,-7.632223039595129,0.0,1.0,0.0 -408,8.0,0.0,0.0,0.0,0.0,1.0154750699550534,-9.033400282545292,1.0,0.0,0.0 -408,9.0,3.214075827368573,2.0,0.0,0.0,1.0065165075773386,-9.987325257667726,1.0,0.0,0.0 -408,10.0,0.0,0.0,9.106638029690414e-10,22.67851874451736,1.059977268620128,-9.033400282444465,0.0,1.0,0.0 -408,11.0,6.206491252849658,7.5,0.0,0.0,1.0136230380445477,-9.513219431840565,1.0,0.0,0.0 -408,12.0,0.0,0.0,-2.422883134443833e-10,10.034672888306272,1.027298269917331,-9.51321943185923,0.0,1.0,0.0 -408,13.0,3.435736229256061,1.6,0.0,0.0,1.0025054161412843,-9.990656929649658,1.0,0.0,0.0 -408,14.0,4.5440382386935,2.5,0.0,0.0,0.9991558469042816,-10.018841328803358,1.0,0.0,0.0 -408,15.0,1.9395285165155185,1.8,0.0,0.0,1.0043655983315432,-9.82571007947681,1.0,0.0,0.0 -408,16.0,4.987359042468476,5.8,0.0,0.0,1.0014765757957445,-10.033724884804665,1.0,0.0,0.0 -408,17.0,1.7732832150999027,0.9,0.0,0.0,0.9925132380956913,-10.36034732502196,1.0,0.0,0.0 -408,18.0,5.264434544827836,3.4,0.0,0.0,0.9908954024008416,-10.463635759243925,1.0,0.0,0.0 -408,19.0,1.2191322103811832,0.7,0.0,0.0,0.9941795658526514,-10.376839430179029,1.0,0.0,0.0 -408,20.0,9.697642582577592,11.2,0.0,0.0,0.9959051995915628,-10.167128994837135,1.0,0.0,0.0 -408,21.0,0.0,0.0,0.0,0.0,0.9962905163484724,-10.1635636833129,1.0,0.0,0.0 -408,22.0,1.7732832150999027,1.6,0.0,0.0,0.9906305318252984,-10.200797278797246,1.0,0.0,0.0 -408,23.0,4.82111374105286,6.7,0.0,0.0,0.9860159318278702,-10.292956375517225,1.0,0.0,0.0 -408,24.0,0.0,0.0,0.0,0.0,0.979627011999508,-10.017349536762886,1.0,0.0,0.0 -408,25.0,1.9395285165155185,2.3,0.0,0.0,0.965462420965705,-10.109370518540103,1.0,0.0,0.0 -408,26.0,0.0,0.0,0.0,0.0,0.9827382729413574,-9.762457903771688,1.0,0.0,0.0 -408,27.0,0.0,0.0,0.0,0.0,0.964876321604002,-7.557061524250431,1.0,0.0,0.0 -408,28.0,1.3299624113249269,0.9,0.0,0.0,0.9687877724333364,-10.413265513943356,1.0,0.0,0.0 -408,29.0,5.874000650018427,1.9,0.0,0.0,0.9611698079029224,-10.901461640495596,1.0,0.0,0.0 -409,0.0,0.0,0.0,168.25649328790692,0.0007326253825823,1.0,0.0,0.0,0.0,1.0 -409,1.0,12.025076802396214,12.7,2.3701579038779938e-06,0.973089962999623,0.9803366135299,-3.48644157143572,0.0,1.0,0.0 -409,2.0,1.3299624113249269,1.2,0.0,0.0,0.9731187608366584,-6.1539230457777965,1.0,0.0,0.0 -409,3.0,4.211547635862268,1.6,0.0,0.0,0.9665127926086194,-7.579976008664062,1.0,0.0,0.0 -409,4.0,52.20102464450338,19.0,-3.7894224033071995e-09,34.671025914620884,0.940001271687203,-17.175230775156063,0.0,1.0,0.0 -409,5.0,0.0,0.0,0.0,0.0,0.9653915860981214,-9.318626236591353,1.0,0.0,0.0 -409,6.0,12.634642907586809,10.9,0.0,0.0,0.947874392509482,-12.786868653525993,1.0,0.0,0.0 -409,7.0,16.624530141561586,30.0,8.825497025895187e-10,39.00439450067748,0.9673851368305244,-9.816393338640882,0.0,1.0,0.0 -409,8.0,0.0,0.0,0.0,0.0,1.0187515001907834,-10.907156210147242,1.0,0.0,0.0 -409,9.0,3.214075827368573,2.0,0.0,0.0,1.0139828619486275,-11.72490122993942,1.0,0.0,0.0 -409,10.0,0.0,0.0,9.118272614855448e-10,21.013849600711023,1.0599867397738778,-10.907156210046612,0.0,1.0,0.0 -409,11.0,6.206491252849658,7.5,0.0,0.0,1.0270977563663488,-11.541996708086334,1.0,0.0,0.0 -409,12.0,0.0,0.0,1.1525177331706996e-09,22.575186895857847,1.0569987028564352,-11.541996708001175,0.0,1.0,0.0 -409,13.0,3.435736229256061,1.6,0.0,0.0,1.012845945465964,-12.10079296579264,1.0,0.0,0.0 -409,14.0,4.5440382386935,2.5,0.0,0.0,1.0057336265647807,-12.147134458608823,1.0,0.0,0.0 -409,15.0,1.9395285165155185,1.8,0.0,0.0,1.0154977111440513,-11.714819560570964,1.0,0.0,0.0 -409,16.0,4.987359042468476,5.8,0.0,0.0,1.010067564319318,-11.821282961161128,1.0,0.0,0.0 -409,17.0,1.7732832150999027,0.9,0.0,0.0,0.9853484342066126,-12.880082628327154,1.0,0.0,0.0 -409,18.0,5.264434544827836,3.4,0.0,0.0,0.9756526520804772,-13.223187753542168,1.0,0.0,0.0 -409,19.0,1.2191322103811832,0.7,0.0,0.0,0.9747388805960648,-13.258794631825594,1.0,0.0,0.0 -409,20.0,9.697642582577592,11.2,0.0,0.0,1.0031337386320414,-11.93083554988973,1.0,0.0,0.0 -409,21.0,0.0,0.0,0.0,0.0,1.003413210261061,-11.936441812094142,1.0,0.0,0.0 -409,22.0,1.7732832150999027,1.6,0.0,0.0,0.9968145961403584,-12.224864382054276,1.0,0.0,0.0 -409,23.0,4.82111374105286,6.7,0.0,0.0,0.9916149258250304,-12.178283634787512,1.0,0.0,0.0 -409,24.0,0.0,0.0,0.0,0.0,0.981904429643772,-11.936608814034628,1.0,0.0,0.0 -409,25.0,1.9395285165155185,2.3,0.0,0.0,0.9677736726446328,-12.028197108440525,1.0,0.0,0.0 -409,26.0,0.0,0.0,0.0,0.0,0.98294684615545,-11.70677926661113,1.0,0.0,0.0 -409,27.0,0.0,0.0,0.0,0.0,0.9623278014044792,-9.625054749687743,1.0,0.0,0.0 -409,28.0,1.3299624113249269,0.9,0.0,0.0,0.9689994843900862,-12.35730681212453,1.0,0.0,0.0 -409,29.0,5.874000650018427,1.9,0.0,0.0,0.9613832382510312,-12.845288140706849,1.0,0.0,0.0 -410,0.0,0.0,0.0,163.84721962451988,0.0006543625824306,1.0,0.0,0.0,0.0,1.0 -410,1.0,12.025076802396214,12.7,8.226253404710061e-07,10.67899041560726,0.9800625218946558,-3.7614929817477503,0.0,1.0,0.0 -410,2.0,1.3299624113249269,1.2,0.0,0.0,0.9739926913472392,-4.932524729083515,1.0,0.0,0.0 -410,3.0,4.211547635862268,1.6,0.0,0.0,0.9673351565812984,-6.062380070331458,1.0,0.0,0.0 -410,4.0,52.20102464450338,19.0,-5.077204890475089e-10,24.29688766154021,0.9598971966904846,-9.054614438463474,0.0,1.0,0.0 -410,5.0,0.0,0.0,0.0,0.0,0.9669142070715866,-7.197929601510006,1.0,0.0,0.0 -410,6.0,12.634642907586809,10.9,0.0,0.0,0.957525573483257,-8.239571432828978,1.0,0.0,0.0 -410,7.0,16.624530141561586,30.0,-1.1389728629714574e-10,30.63610526536325,0.9659163763573266,-7.63360356032444,0.0,1.0,0.0 -410,8.0,0.0,0.0,0.0,0.0,1.0153857274738989,-9.03915360961412,1.0,0.0,0.0 -410,9.0,3.214075827368573,2.0,0.0,0.0,1.0063413644115176,-9.995654026359263,1.0,0.0,0.0 -410,10.0,0.0,0.0,9.320296839596701e-10,22.727777516503146,1.0599842914485798,-9.039153609510915,0.0,1.0,0.0 -410,11.0,6.206491252849658,7.5,0.0,0.0,1.0138093033954862,-9.50031712470694,1.0,0.0,0.0 -410,12.0,0.0,0.0,-2.4106182973182833e-10,9.976603231843912,1.027403998899439,-9.500317124725504,0.0,1.0,0.0 -410,13.0,3.435736229256061,1.6,0.0,0.0,1.005508406413122,-9.8837807686818,1.0,0.0,0.0 -410,14.0,4.5440382386935,2.5,0.0,0.0,0.9982007836183104,-10.04517388479213,1.0,0.0,0.0 -410,15.0,1.9395285165155185,1.8,0.0,0.0,1.0043812825319838,-9.821124164396162,1.0,0.0,0.0 -410,16.0,4.987359042468476,5.8,0.0,0.0,1.001365178983302,-10.038280097505464,1.0,0.0,0.0 -410,17.0,1.7732832150999027,0.9,0.0,0.0,0.9918284746777998,-10.380940182843052,1.0,0.0,0.0 -410,18.0,5.264434544827836,3.4,0.0,0.0,0.9903719925164036,-10.480619780704783,1.0,0.0,0.0 -410,19.0,1.2191322103811832,0.7,0.0,0.0,0.9937435899199172,-10.391794788146004,1.0,0.0,0.0 -410,20.0,9.697642582577592,11.2,0.0,0.0,0.995690952768896,-10.176483990806998,1.0,0.0,0.0 -410,21.0,0.0,0.0,0.0,0.0,0.9960645315735468,-10.173209892200669,1.0,0.0,0.0 -410,22.0,1.7732832150999027,1.6,0.0,0.0,0.9899149471489832,-10.221482785412048,1.0,0.0,0.0 -410,23.0,4.82111374105286,6.7,0.0,0.0,0.9856232183974348,-10.305612449373612,1.0,0.0,0.0 -410,24.0,0.0,0.0,0.0,0.0,0.9793785932957912,-10.0275774263978,1.0,0.0,0.0 -410,25.0,1.9395285165155185,2.3,0.0,0.0,0.9652103017278852,-10.119645791886278,1.0,0.0,0.0 -410,26.0,0.0,0.0,0.0,0.0,0.982580598047968,-9.770981350056006,1.0,0.0,0.0 -410,27.0,0.0,0.0,0.0,0.0,0.9648400472633608,-7.558744911565265,1.0,0.0,0.0 -410,28.0,1.3299624113249269,0.9,0.0,0.0,0.9686277237989044,-10.4220008012435,1.0,0.0,0.0 -410,29.0,5.874000650018427,1.9,0.0,0.0,0.9610084596979068,-10.910359403627504,1.0,0.0,0.0 -411,0.0,0.0,0.0,164.397544658705,0.0005932170165756,1.0,0.0,0.0,0.0,1.0 -411,1.0,12.025076802396214,12.7,5.789912777549722e-07,10.757125294192493,0.9792738362187772,-3.955896316254709,0.0,1.0,0.0 -411,2.0,1.3299624113249269,1.2,0.0,0.0,0.9753894756495036,-4.427163423204817,1.0,0.0,0.0 -411,3.0,4.211547635862268,1.6,0.0,0.0,0.9689897243919536,-5.434192321866999,1.0,0.0,0.0 -411,4.0,52.20102464450338,19.0,-1.4353403872785626e-09,36.7821403321329,0.9586084809645224,-12.144023430510224,0.0,1.0,0.0 -411,5.0,0.0,0.0,0.0,0.0,0.9697252225510964,-6.276223240925494,1.0,0.0,0.0 -411,6.0,12.634642907586809,10.9,0.0,0.0,0.9400276237213616,-12.783477527430232,1.0,0.0,0.0 -411,7.0,16.624530141561586,30.0,-4.066466195691488e-10,28.34243629380542,0.9678457457214008,-6.696043931642831,0.0,1.0,0.0 -411,8.0,0.0,0.0,0.0,0.0,1.0130212443397255,-8.159412215830805,1.0,0.0,0.0 -411,9.0,3.214075827368573,2.0,0.0,0.0,1.004759323663687,-9.142096793244084,1.0,0.0,0.0 -411,10.0,0.0,0.0,-3.8414716558832425e-10,19.1592911754404,1.0509409078959762,-8.159412215873807,0.0,1.0,0.0 -411,11.0,6.206491252849658,7.5,0.0,0.0,1.0102667919584636,-8.758166383125713,1.0,0.0,0.0 -411,12.0,0.0,0.0,-3.2705432230562594e-10,7.477893249954516,1.0205252840444667,-8.758166383151162,0.0,1.0,0.0 -411,13.0,3.435736229256061,1.6,0.0,0.0,0.999339910414678,-9.224674042734437,1.0,0.0,0.0 -411,14.0,4.5440382386935,2.5,0.0,0.0,0.9962954335640174,-9.244320931858809,1.0,0.0,0.0 -411,15.0,1.9395285165155185,1.8,0.0,0.0,1.0017468108505443,-9.03602531589673,1.0,0.0,0.0 -411,16.0,4.987359042468476,5.8,0.0,0.0,0.9994210120941516,-9.205157901697367,1.0,0.0,0.0 -411,17.0,1.7732832150999027,0.9,0.0,0.0,0.9900242407910372,-9.56285785360506,1.0,0.0,0.0 -411,18.0,5.264434544827836,3.4,0.0,0.0,0.9886310318978064,-9.651875830906723,1.0,0.0,0.0 -411,19.0,1.2191322103811832,0.7,0.0,0.0,0.9920437314776548,-9.556950423550148,1.0,0.0,0.0 -411,20.0,9.697642582577592,11.2,0.0,0.0,0.9941972151216888,-9.324503499988625,1.0,0.0,0.0 -411,21.0,0.0,0.0,0.0,0.0,0.9946044561508952,-9.3215895667507,1.0,0.0,0.0 -411,22.0,1.7732832150999027,1.6,0.0,0.0,0.9883756133328876,-9.402802439679933,1.0,0.0,0.0 -411,23.0,4.82111374105286,6.7,0.0,0.0,0.984578551894712,-9.46212781164127,1.0,0.0,0.0 -411,24.0,0.0,0.0,0.0,0.0,0.9797943240522828,-9.167343849766796,1.0,0.0,0.0 -411,25.0,1.9395285165155185,2.3,0.0,0.0,0.96563222424887,-9.259332938554262,1.0,0.0,0.0 -411,26.0,0.0,0.0,0.0,0.0,0.9838947426082248,-8.898925025368175,1.0,0.0,0.0 -411,27.0,0.0,0.0,0.0,0.0,0.9672714093326148,-6.63689443673228,1.0,0.0,0.0 -411,28.0,1.3299624113249269,0.9,0.0,0.0,0.9699616269826524,-9.548182055426942,1.0,0.0,0.0 -411,29.0,5.874000650018427,1.9,0.0,0.0,0.9623531802291244,-10.035189006072946,1.0,0.0,0.0 -412,0.0,0.0,0.0,164.95628833849236,0.0010798455848615,1.0,0.0,0.0,0.0,1.0 -412,1.0,12.025076802396214,12.7,1.4827809820041251e-06,6.770330078548184,0.9788561828395428,-3.822933550967624,0.0,1.0,0.0 -412,2.0,1.3299624113249269,1.2,0.0,0.0,0.9768269983610512,-4.853548985219076,1.0,0.0,0.0 -412,3.0,4.211547635862268,1.6,0.0,0.0,0.9708158609420566,-5.962963196808805,1.0,0.0,0.0 -412,4.0,52.20102464450338,19.0,-1.3501317783731591e-09,25.264344437452863,0.9592602928772486,-9.303303129685329,0.0,1.0,0.0 -412,5.0,0.0,0.0,0.0,0.0,0.9647764772543206,-7.588800305979738,1.0,0.0,0.0 -412,6.0,12.634642907586809,10.9,0.0,0.0,0.9559683339450216,-8.57273426084312,1.0,0.0,0.0 -412,7.0,16.624530141561586,30.0,-9.759574214185195e-10,34.90619956405396,0.9651382163096728,-8.088579874807143,0.0,1.0,0.0 -412,8.0,0.0,0.0,0.0,0.0,0.9993836485073369,-12.743207236491656,1.0,0.0,0.0 -412,9.0,3.214075827368573,2.0,0.0,0.0,0.984223244591831,-15.472691610903,1.0,0.0,0.0 -412,10.0,0.0,0.0,-1.630357828019502e-09,23.99775555624034,1.0470557349958172,-12.743207236677335,0.0,1.0,0.0 -412,11.0,6.206491252849658,7.5,0.0,0.0,0.9658962902974996,-18.868291047432923,1.0,0.0,0.0 -412,12.0,0.0,0.0,-1.482069341612366e-11,15.399790348344752,0.9877239541870796,-18.86829104743417,0.0,1.0,0.0 -412,13.0,3.435736229256061,1.6,0.0,0.0,0.9494321965101656,-19.013907210021408,1.0,0.0,0.0 -412,14.0,4.5440382386935,2.5,0.0,0.0,0.9438673369813084,-18.549844211321613,1.0,0.0,0.0 -412,15.0,1.9395285165155185,1.8,0.0,0.0,0.9694199920829718,-17.562594249569816,1.0,0.0,0.0 -412,16.0,4.987359042468476,5.8,0.0,0.0,0.9741499348619108,-16.203682866982156,1.0,0.0,0.0 -412,17.0,1.7732832150999027,0.9,0.0,0.0,0.948365585588737,-17.83456446457065,1.0,0.0,0.0 -412,18.0,5.264434544827836,3.4,0.0,0.0,0.9535536867217472,-17.30707308466652,1.0,0.0,0.0 -412,19.0,1.2191322103811832,0.7,0.0,0.0,0.9606595507985785,-16.881520367126196,1.0,0.0,0.0 -412,20.0,9.697642582577592,11.2,0.0,0.0,0.972655010721268,-15.511678025259876,1.0,0.0,0.0 -412,21.0,0.0,0.0,0.0,0.0,0.9728424049985904,-15.459571412819358,1.0,0.0,0.0 -412,22.0,1.7732832150999027,1.6,0.0,0.0,0.9538258535221218,-15.092835800952152,1.0,0.0,0.0 -412,23.0,4.82111374105286,6.7,0.0,0.0,0.9608131251929892,-14.925542179907408,1.0,0.0,0.0 -412,24.0,0.0,0.0,0.0,0.0,0.9669317212658336,-13.198022632929234,1.0,0.0,0.0 -412,25.0,1.9395285165155185,2.3,0.0,0.0,0.952575469702608,-13.29251305768867,1.0,0.0,0.0 -412,26.0,0.0,0.0,0.0,0.0,0.9777901301942108,-12.042003800721872,1.0,0.0,0.0 -412,27.0,0.0,0.0,0.0,0.0,0.9616451992137252,-8.160018771710195,1.0,0.0,0.0 -412,28.0,1.3299624113249269,0.9,0.0,0.0,0.9637647386979928,-12.69950928960864,1.0,0.0,0.0 -412,29.0,5.874000650018427,1.9,0.0,0.0,0.9561057720536732,-13.192843660116864,1.0,0.0,0.0 -413,0.0,0.0,0.0,164.0421946772446,0.0007838216125044,1.0,0.0,0.0,0.0,1.0 -413,1.0,12.025076802396214,12.7,1.0025940242986853e-06,9.883224975435574,0.9799483838070372,-3.762930732415837,0.0,1.0,0.0 -413,2.0,1.3299624113249269,1.2,0.0,0.0,0.9742486968134598,-4.946333297187324,1.0,0.0,0.0 -413,3.0,4.211547635862268,1.6,0.0,0.0,0.9676527603304358,-6.07940393252422,1.0,0.0,0.0 -413,4.0,52.20102464450338,19.0,-4.3802234649643966e-11,24.31708314899589,0.9600348517042204,-9.059726514919047,0.0,1.0,0.0 -413,5.0,0.0,0.0,0.0,0.0,0.9672567033781296,-7.208913682944638,1.0,0.0,0.0 -413,6.0,12.634642907586809,10.9,0.0,0.0,0.9577860761025164,-8.248113868269389,1.0,0.0,0.0 -413,7.0,16.624530141561586,30.0,3.0838480334403355e-10,30.765017901856567,0.9662255340424863,-7.646605196538822,0.0,1.0,0.0 -413,8.0,0.0,0.0,0.0,0.0,1.0169014537202754,-8.994117033600958,1.0,0.0,0.0 -413,9.0,3.214075827368573,2.0,0.0,0.0,1.0092568012512426,-9.91917052983938,1.0,0.0,0.0 -413,10.0,0.0,0.0,1.2206732649798272e-09,21.94881819696253,1.0599719716860143,-8.994117033465997,0.0,1.0,0.0 -413,11.0,6.206491252849658,7.5,0.0,0.0,1.015325639424559,-9.563543573306545,1.0,0.0,0.0 -413,12.0,0.0,0.0,4.3752872359347376e-10,11.797131247532777,1.031339745177559,-9.56354357327303,0.0,1.0,0.0 -413,13.0,3.435736229256061,1.6,0.0,0.0,1.003423541840055,-10.050856055805452,1.0,0.0,0.0 -413,14.0,4.5440382386935,2.5,0.0,0.0,0.9992287513090083,-10.071947017748336,1.0,0.0,0.0 -413,15.0,1.9395285165155185,1.8,0.0,0.0,1.006609070399518,-9.826942002018235,1.0,0.0,0.0 -413,16.0,4.987359042468476,5.8,0.0,0.0,1.0040477602495832,-9.986081910011416,1.0,0.0,0.0 -413,17.0,1.7732832150999027,0.9,0.0,0.0,0.9935464552433102,-10.370399246228002,1.0,0.0,0.0 -413,18.0,5.264434544827836,3.4,0.0,0.0,0.9924929120372497,-10.44806643656312,1.0,0.0,0.0 -413,19.0,1.2191322103811832,0.7,0.0,0.0,0.996069061271721,-10.34831234477232,1.0,0.0,0.0 -413,20.0,9.697642582577592,11.2,0.0,0.0,0.9775129977437303,-10.44455746678978,1.0,0.0,0.0 -413,21.0,0.0,0.0,0.0,0.0,0.9813683293997782,-10.385461315589565,1.0,0.0,0.0 -413,22.0,1.7732832150999027,1.6,0.0,0.0,0.9866718410345874,-10.31012469356345,1.0,0.0,0.0 -413,23.0,4.82111374105286,6.7,0.0,0.0,0.97672298935496,-10.480796511862488,1.0,0.0,0.0 -413,24.0,0.0,0.0,0.0,0.0,0.973907812007363,-10.185288161140592,1.0,0.0,0.0 -413,25.0,1.9395285165155185,2.3,0.0,0.0,0.959657525250295,-10.27840942808659,1.0,0.0,0.0 -413,26.0,0.0,0.0,0.0,0.0,0.97927574445933,-9.91336771537448,1.0,0.0,0.0 -413,27.0,0.0,0.0,0.0,0.0,0.9647135366945616,-7.577507211957346,1.0,0.0,0.0 -413,28.0,1.3299624113249269,0.9,0.0,0.0,0.9652729247818524,-10.568851376690557,1.0,0.0,0.0 -413,29.0,5.874000650018427,1.9,0.0,0.0,0.9576263162063532,-11.060634458021047,1.0,0.0,0.0 -414,0.0,0.0,0.0,163.8957520477058,0.0009446763005627,1.0,0.0,0.0,0.0,1.0 -414,1.0,12.025076802396214,12.7,1.1415735329727486e-06,10.256543419002242,0.9800140520365116,-3.76054257547664,0.0,1.0,0.0 -414,2.0,1.3299624113249269,1.2,0.0,0.0,0.9741172688071904,-4.939413761760965,1.0,0.0,0.0 -414,3.0,4.211547635862268,1.6,0.0,0.0,0.9674897331794124,-6.070875021891177,1.0,0.0,0.0 -414,4.0,52.20102464450338,19.0,-1.3917984186113623e-10,24.27297197795943,0.9599732911434512,-9.052724314725028,0.0,1.0,0.0 -414,5.0,0.0,0.0,0.0,0.0,0.967162287189588,-7.197841144079834,1.0,0.0,0.0 -414,6.0,12.634642907586809,10.9,0.0,0.0,0.9577048287259922,-8.238727211007163,1.0,0.0,0.0 -414,7.0,16.624530141561586,30.0,2.8805266516952284e-10,30.715446979803,0.9660326098149228,-7.637549446171008,0.0,1.0,0.0 -414,8.0,0.0,0.0,0.0,0.0,1.0177261518995748,-8.918027399080323,1.0,0.0,0.0 -414,9.0,3.214075827368573,2.0,0.0,0.0,1.0109921262091284,-9.80778100902754,1.0,0.0,0.0 -414,10.0,0.0,0.0,1.297530914954251e-09,21.51341119763365,1.0599434016339448,-8.918027398936978,0.0,1.0,0.0 -414,11.0,6.206491252849658,7.5,0.0,0.0,1.0142960261668346,-9.570192233806075,1.0,0.0,0.0 -414,12.0,0.0,0.0,4.814773611175341e-10,11.66996158162994,1.030155712251164,-9.570192233769117,0.0,1.0,0.0 -414,13.0,3.435736229256061,1.6,0.0,0.0,1.0019508720287609,-10.073686856226557,1.0,0.0,0.0 -414,14.0,4.5440382386935,2.5,0.0,0.0,0.99723393555192,-10.099997514691747,1.0,0.0,0.0 -414,15.0,1.9395285165155185,1.8,0.0,0.0,1.0068551248349793,-9.788684875396898,1.0,0.0,0.0 -414,16.0,4.987359042468476,5.8,0.0,0.0,1.0052967437512428,-9.895406973649232,1.0,0.0,0.0 -414,17.0,1.7732832150999027,0.9,0.0,0.0,0.9928712037552292,-10.350122711413746,1.0,0.0,0.0 -414,18.0,5.264434544827836,3.4,0.0,0.0,0.9925990463832488,-10.3987365594069,1.0,0.0,0.0 -414,19.0,1.2191322103811832,0.7,0.0,0.0,0.9965882509922024,-10.283857527963756,1.0,0.0,0.0 -414,20.0,9.697642582577592,11.2,0.0,0.0,1.0027629246170318,-9.938563785066204,1.0,0.0,0.0 -414,21.0,0.0,0.0,0.0,0.0,1.0038858927538044,-9.92090037991635,1.0,0.0,0.0 -414,22.0,1.7732832150999027,1.6,0.0,0.0,0.981657161109738,-10.430164248777947,1.0,0.0,0.0 -414,23.0,4.82111374105286,6.7,0.0,0.0,0.9677461156870854,-10.728515122315828,1.0,0.0,0.0 -414,24.0,0.0,0.0,0.0,0.0,0.9683215336788688,-10.379393842316537,1.0,0.0,0.0 -414,25.0,1.9395285165155185,2.3,0.0,0.0,0.9539865204196634,-10.473609086373584,1.0,0.0,0.0 -414,26.0,0.0,0.0,0.0,0.0,0.975822807676027,-10.07000310551676,1.0,0.0,0.0 -414,27.0,0.0,0.0,0.0,0.0,0.964149332873828,-7.578634871654454,1.0,0.0,0.0 -414,28.0,1.3299624113249269,0.9,0.0,0.0,0.9617674099868142,-10.730200502481331,1.0,0.0,0.0 -414,29.0,5.874000650018427,1.9,0.0,0.0,0.9540920146773668,-11.22560063638553,1.0,0.0,0.0 -415,0.0,0.0,0.0,164.07701254674004,0.0025595008922074,1.0,0.0,0.0,0.0,1.0 -415,1.0,12.025076802396214,12.7,3.8084855989030257e-06,-2.666883805262053,0.9784992474852736,-3.735289583745046,0.0,1.0,0.0 -415,2.0,1.3299624113249269,1.2,0.0,0.0,0.9784194373041118,-5.0094419700270505,1.0,0.0,0.0 -415,3.0,4.211547635862268,1.6,0.0,0.0,0.9728021833800712,-6.155641061789633,1.0,0.0,0.0 -415,4.0,52.20102464450338,19.0,1.088018968593419e-09,25.822461052564837,0.963753263951982,-9.090589648028844,0.0,1.0,0.0 -415,5.0,0.0,0.0,0.0,0.0,0.9729451601681296,-7.301154421396672,1.0,0.0,0.0 -415,6.0,12.634642907586809,10.9,0.0,0.0,0.9627075640082442,-8.31360926163514,1.0,0.0,0.0 -415,7.0,16.624530141561586,30.0,6.586662818845862e-09,37.46919442455653,0.974529721320098,-7.77357670096636,0.0,1.0,0.0 -415,8.0,0.0,0.0,0.0,0.0,1.0202840418404897,-9.165511574090264,1.0,0.0,0.0 -415,9.0,3.214075827368573,2.0,0.0,0.0,1.013170210104533,-10.133498692014768,1.0,0.0,0.0 -415,10.0,0.0,0.0,-1.0539239404851147e-09,20.233657307472946,1.0599882618896044,-9.165511574206398,0.0,1.0,0.0 -415,11.0,6.206491252849658,7.5,0.0,0.0,1.0323209321152973,-9.473095308103826,1.0,0.0,0.0 -415,12.0,0.0,0.0,-5.785177609122181e-10,17.20789038744562,1.0551527417567284,-9.473095308146426,0.0,1.0,0.0 -415,13.0,3.435736229256061,1.6,0.0,0.0,1.021784972017895,-9.876307719676248,1.0,0.0,0.0 -415,14.0,4.5440382386935,2.5,0.0,0.0,1.0192562342764924,-9.855706434401064,1.0,0.0,0.0 -415,15.0,1.9395285165155185,1.8,0.0,0.0,1.017799220581871,-9.83633089346779,1.0,0.0,0.0 -415,16.0,4.987359042468476,5.8,0.0,0.0,1.010333884559847,-10.143785186222829,1.0,0.0,0.0 -415,17.0,1.7732832150999027,0.9,0.0,0.0,0.9869681721557544,-11.143089446229054,1.0,0.0,0.0 -415,18.0,5.264434544827836,3.4,0.0,0.0,0.9892959431182516,-11.042394844993405,1.0,0.0,0.0 -415,19.0,1.2191322103811832,0.7,0.0,0.0,0.994680464920358,-10.848874714217672,1.0,0.0,0.0 -415,20.0,9.697642582577592,11.2,0.0,0.0,1.0033332734497593,-10.290390112728083,1.0,0.0,0.0 -415,21.0,0.0,0.0,0.0,0.0,1.0039394049891277,-10.280598140762624,1.0,0.0,0.0 -415,22.0,1.7732832150999027,1.6,0.0,0.0,1.0068057465420812,-10.124252877061918,1.0,0.0,0.0 -415,23.0,4.82111374105286,6.7,0.0,0.0,0.9968742222354048,-10.342332061916547,1.0,0.0,0.0 -415,24.0,0.0,0.0,0.0,0.0,0.9887191603925344,-10.06682824608992,1.0,0.0,0.0 -415,25.0,1.9395285165155185,2.3,0.0,0.0,0.9746886724311892,-10.15713996663858,1.0,0.0,0.0 -415,26.0,0.0,0.0,0.0,0.0,0.9906651487490908,-9.815400718897228,1.0,0.0,0.0 -415,27.0,0.0,0.0,0.0,0.0,0.9716325825130612,-7.664989550345551,1.0,0.0,0.0 -415,28.0,1.3299624113249269,0.9,0.0,0.0,0.9400019447790464,-12.167190033908104,1.0,0.0,0.0 -415,29.0,5.874000650018427,1.9,0.0,0.0,0.9477452093622724,-11.918320385705002,1.0,0.0,0.0 -416,0.0,0.0,0.0,163.84465372527072,0.0006452962458602,1.0,0.0,0.0,0.0,1.0 -416,1.0,12.025076802396214,12.7,8.170681115331161e-07,10.687953243907096,0.9800674172752508,-3.76132562966578,0.0,1.0,0.0 -416,2.0,1.3299624113249269,1.2,0.0,0.0,0.9739803174807818,-4.932806490330255,1.0,0.0,0.0 -416,3.0,4.211547635862268,1.6,0.0,0.0,0.9673199522520216,-6.062736135236528,1.0,0.0,0.0 -416,4.0,52.20102464450338,19.0,-5.940701683835522e-10,24.292418179981325,0.959904583480332,-9.053837938951355,0.0,1.0,0.0 -416,5.0,0.0,0.0,0.0,0.0,0.966933285539591,-7.196851692977101,1.0,0.0,0.0 -416,6.0,12.634642907586809,10.9,0.0,0.0,0.9575400468588584,-8.238613364006182,1.0,0.0,0.0 -416,7.0,16.624530141561586,30.0,-1.6825200217178775e-10,30.606685861760305,0.9659278593890008,-7.632223039595129,0.0,1.0,0.0 -416,8.0,0.0,0.0,0.0,0.0,1.0154750699550534,-9.033400282545292,1.0,0.0,0.0 -416,9.0,3.214075827368573,2.0,0.0,0.0,1.0065165075773386,-9.987325257667726,1.0,0.0,0.0 -416,10.0,0.0,0.0,9.106638029690414e-10,22.67851874451736,1.059977268620128,-9.033400282444465,0.0,1.0,0.0 -416,11.0,6.206491252849658,7.5,0.0,0.0,1.0136230380445477,-9.513219431840565,1.0,0.0,0.0 -416,12.0,0.0,0.0,-2.422883134443833e-10,10.034672888306272,1.027298269917331,-9.51321943185923,0.0,1.0,0.0 -416,13.0,3.435736229256061,1.6,0.0,0.0,1.0025054161412843,-9.990656929649658,1.0,0.0,0.0 -416,14.0,4.5440382386935,2.5,0.0,0.0,0.9991558469042816,-10.018841328803358,1.0,0.0,0.0 -416,15.0,1.9395285165155185,1.8,0.0,0.0,1.0043655983315432,-9.82571007947681,1.0,0.0,0.0 -416,16.0,4.987359042468476,5.8,0.0,0.0,1.0014765757957445,-10.033724884804665,1.0,0.0,0.0 -416,17.0,1.7732832150999027,0.9,0.0,0.0,0.9925132380956913,-10.36034732502196,1.0,0.0,0.0 -416,18.0,5.264434544827836,3.4,0.0,0.0,0.9908954024008416,-10.463635759243925,1.0,0.0,0.0 -416,19.0,1.2191322103811832,0.7,0.0,0.0,0.9941795658526514,-10.376839430179029,1.0,0.0,0.0 -416,20.0,9.697642582577592,11.2,0.0,0.0,0.9959051995915628,-10.167128994837135,1.0,0.0,0.0 -416,21.0,0.0,0.0,0.0,0.0,0.9962905163484724,-10.1635636833129,1.0,0.0,0.0 -416,22.0,1.7732832150999027,1.6,0.0,0.0,0.9906305318252984,-10.200797278797246,1.0,0.0,0.0 -416,23.0,4.82111374105286,6.7,0.0,0.0,0.9860159318278702,-10.292956375517225,1.0,0.0,0.0 -416,24.0,0.0,0.0,0.0,0.0,0.979627011999508,-10.017349536762886,1.0,0.0,0.0 -416,25.0,1.9395285165155185,2.3,0.0,0.0,0.965462420965705,-10.109370518540103,1.0,0.0,0.0 -416,26.0,0.0,0.0,0.0,0.0,0.9827382729413574,-9.762457903771688,1.0,0.0,0.0 -416,27.0,0.0,0.0,0.0,0.0,0.964876321604002,-7.557061524250431,1.0,0.0,0.0 -416,28.0,1.3299624113249269,0.9,0.0,0.0,0.9687877724333364,-10.413265513943356,1.0,0.0,0.0 -416,29.0,5.874000650018427,1.9,0.0,0.0,0.9611698079029224,-10.901461640495596,1.0,0.0,0.0 -417,0.0,0.0,0.0,164.33078932067428,0.0009325133393467,1.0,0.0,0.0,0.0,1.0 -417,1.0,12.025076802396214,12.7,1.3584846462910411e-06,9.79092780324521,0.9814368859413783,-3.4707607861365504,0.0,1.0,0.0 -417,2.0,1.3299624113249269,1.2,0.0,0.0,0.9711880304025524,-5.825466678790692,1.0,0.0,0.0 -417,3.0,4.211547635862268,1.6,0.0,0.0,0.9640522813083332,-7.173520904954519,1.0,0.0,0.0 -417,4.0,52.20102464450338,19.0,-6.429242629157295e-10,25.0124723163416,0.9608387965282776,-9.286474583888058,0.0,1.0,0.0 -417,5.0,0.0,0.0,0.0,0.0,0.965501380399723,-7.959128148235824,1.0,0.0,0.0 -417,6.0,12.634642907586809,10.9,0.0,0.0,0.9569947368781953,-8.784347363872556,1.0,0.0,0.0 -417,7.0,16.624530141561586,30.0,-7.92634109537785e-11,30.272073749601876,0.9643937173165554,-8.39427364941732,0.0,1.0,0.0 -417,8.0,0.0,0.0,0.0,0.0,1.017107546613072,-9.750267303877443,1.0,0.0,0.0 -417,9.0,3.214075827368573,2.0,0.0,0.0,1.0107368591693404,-10.675354667860258,1.0,0.0,0.0 -417,10.0,0.0,0.0,1.190497430817231e-09,21.738165429366347,1.0597727174996736,-9.750267303745822,0.0,1.0,0.0 -417,11.0,6.206491252849658,7.5,0.0,0.0,1.0169326603348243,-10.719017434960444,1.0,0.0,0.0 -417,12.0,0.0,0.0,7.804980669003355e-10,16.737815732178625,1.0394757000837689,-10.71901743490122,0.0,1.0,0.0 -417,13.0,3.435736229256061,1.6,0.0,0.0,1.0036318190246705,-11.23740980780643,1.0,0.0,0.0 -417,14.0,4.5440382386935,2.5,0.0,0.0,0.9978571112688512,-11.25835821337504,1.0,0.0,0.0 -417,15.0,1.9395285165155185,1.8,0.0,0.0,1.0084320106110594,-10.810509631061963,1.0,0.0,0.0 -417,16.0,4.987359042468476,5.8,0.0,0.0,1.0055549693278265,-10.813188348792476,1.0,0.0,0.0 -417,17.0,1.7732832150999027,0.9,0.0,0.0,0.980361593899584,-11.888803486016116,1.0,0.0,0.0 -417,18.0,5.264434544827836,3.4,0.0,0.0,0.9723728756772156,-12.16702905115826,1.0,0.0,0.0 -417,19.0,1.2191322103811832,0.7,0.0,0.0,1.008152064869391,-10.781783751435931,1.0,0.0,0.0 -417,20.0,9.697642582577592,11.2,0.0,0.0,0.999746176252486,-10.885205715631075,1.0,0.0,0.0 -417,21.0,0.0,0.0,0.0,0.0,0.999992988053546,-10.891630591557792,1.0,0.0,0.0 -417,22.0,1.7732832150999027,1.6,0.0,0.0,0.9906156511980884,-11.274753291113928,1.0,0.0,0.0 -417,23.0,4.82111374105286,6.7,0.0,0.0,0.9876885711368152,-11.14291967658675,1.0,0.0,0.0 -417,24.0,0.0,0.0,0.0,0.0,0.9802649717182442,-10.823097244706757,1.0,0.0,0.0 -417,25.0,1.9395285165155185,2.3,0.0,0.0,0.9661098749869156,-10.914996710279112,1.0,0.0,0.0 -417,26.0,0.0,0.0,0.0,0.0,0.9827159178839264,-10.541792992543142,1.0,0.0,0.0 -417,27.0,0.0,0.0,0.0,0.0,0.963570125245598,-8.323929681881447,1.0,0.0,0.0 -417,28.0,1.3299624113249269,0.9,0.0,0.0,0.9687650808861898,-11.192630631194282,1.0,0.0,0.0 -417,29.0,5.874000650018427,1.9,0.0,0.0,0.9611469321361314,-11.680849788454768,1.0,0.0,0.0 -418,0.0,0.0,0.0,163.84465372527072,0.0006452962458602,1.0,0.0,0.0,0.0,1.0 -418,1.0,12.025076802396214,12.7,8.170681115331161e-07,10.687953243907096,0.9800674172752508,-3.76132562966578,0.0,1.0,0.0 -418,2.0,1.3299624113249269,1.2,0.0,0.0,0.9739803174807818,-4.932806490330255,1.0,0.0,0.0 -418,3.0,4.211547635862268,1.6,0.0,0.0,0.9673199522520216,-6.062736135236528,1.0,0.0,0.0 -418,4.0,52.20102464450338,19.0,-5.940701683835522e-10,24.292418179981325,0.959904583480332,-9.053837938951355,0.0,1.0,0.0 -418,5.0,0.0,0.0,0.0,0.0,0.966933285539591,-7.196851692977101,1.0,0.0,0.0 -418,6.0,12.634642907586809,10.9,0.0,0.0,0.9575400468588584,-8.238613364006182,1.0,0.0,0.0 -418,7.0,16.624530141561586,30.0,-1.6825200217178775e-10,30.606685861760305,0.9659278593890008,-7.632223039595129,0.0,1.0,0.0 -418,8.0,0.0,0.0,0.0,0.0,1.0154750699550534,-9.033400282545292,1.0,0.0,0.0 -418,9.0,3.214075827368573,2.0,0.0,0.0,1.0065165075773386,-9.987325257667726,1.0,0.0,0.0 -418,10.0,0.0,0.0,9.106638029690414e-10,22.67851874451736,1.059977268620128,-9.033400282444465,0.0,1.0,0.0 -418,11.0,6.206491252849658,7.5,0.0,0.0,1.0136230380445477,-9.513219431840565,1.0,0.0,0.0 -418,12.0,0.0,0.0,-2.422883134443833e-10,10.034672888306272,1.027298269917331,-9.51321943185923,0.0,1.0,0.0 -418,13.0,3.435736229256061,1.6,0.0,0.0,1.0025054161412843,-9.990656929649658,1.0,0.0,0.0 -418,14.0,4.5440382386935,2.5,0.0,0.0,0.9991558469042816,-10.018841328803358,1.0,0.0,0.0 -418,15.0,1.9395285165155185,1.8,0.0,0.0,1.0043655983315432,-9.82571007947681,1.0,0.0,0.0 -418,16.0,4.987359042468476,5.8,0.0,0.0,1.0014765757957445,-10.033724884804665,1.0,0.0,0.0 -418,17.0,1.7732832150999027,0.9,0.0,0.0,0.9925132380956913,-10.36034732502196,1.0,0.0,0.0 -418,18.0,5.264434544827836,3.4,0.0,0.0,0.9908954024008416,-10.463635759243925,1.0,0.0,0.0 -418,19.0,1.2191322103811832,0.7,0.0,0.0,0.9941795658526514,-10.376839430179029,1.0,0.0,0.0 -418,20.0,9.697642582577592,11.2,0.0,0.0,0.9959051995915628,-10.167128994837135,1.0,0.0,0.0 -418,21.0,0.0,0.0,0.0,0.0,0.9962905163484724,-10.1635636833129,1.0,0.0,0.0 -418,22.0,1.7732832150999027,1.6,0.0,0.0,0.9906305318252984,-10.200797278797246,1.0,0.0,0.0 -418,23.0,4.82111374105286,6.7,0.0,0.0,0.9860159318278702,-10.292956375517225,1.0,0.0,0.0 -418,24.0,0.0,0.0,0.0,0.0,0.979627011999508,-10.017349536762886,1.0,0.0,0.0 -418,25.0,1.9395285165155185,2.3,0.0,0.0,0.965462420965705,-10.109370518540103,1.0,0.0,0.0 -418,26.0,0.0,0.0,0.0,0.0,0.9827382729413574,-9.762457903771688,1.0,0.0,0.0 -418,27.0,0.0,0.0,0.0,0.0,0.964876321604002,-7.557061524250431,1.0,0.0,0.0 -418,28.0,1.3299624113249269,0.9,0.0,0.0,0.9687877724333364,-10.413265513943356,1.0,0.0,0.0 -418,29.0,5.874000650018427,1.9,0.0,0.0,0.9611698079029224,-10.901461640495596,1.0,0.0,0.0 -419,0.0,0.0,0.0,163.84465372527072,0.0006452962458602,1.0,0.0,0.0,0.0,1.0 -419,1.0,12.025076802396214,12.7,8.170681115331161e-07,10.687953243907096,0.9800674172752508,-3.76132562966578,0.0,1.0,0.0 -419,2.0,1.3299624113249269,1.2,0.0,0.0,0.9739803174807818,-4.932806490330255,1.0,0.0,0.0 -419,3.0,4.211547635862268,1.6,0.0,0.0,0.9673199522520216,-6.062736135236528,1.0,0.0,0.0 -419,4.0,52.20102464450338,19.0,-5.940701683835522e-10,24.292418179981325,0.959904583480332,-9.053837938951355,0.0,1.0,0.0 -419,5.0,0.0,0.0,0.0,0.0,0.966933285539591,-7.196851692977101,1.0,0.0,0.0 -419,6.0,12.634642907586809,10.9,0.0,0.0,0.9575400468588584,-8.238613364006182,1.0,0.0,0.0 -419,7.0,16.624530141561586,30.0,-1.6825200217178775e-10,30.606685861760305,0.9659278593890008,-7.632223039595129,0.0,1.0,0.0 -419,8.0,0.0,0.0,0.0,0.0,1.0154750699550534,-9.033400282545292,1.0,0.0,0.0 -419,9.0,3.214075827368573,2.0,0.0,0.0,1.0065165075773386,-9.987325257667726,1.0,0.0,0.0 -419,10.0,0.0,0.0,9.106638029690414e-10,22.67851874451736,1.059977268620128,-9.033400282444465,0.0,1.0,0.0 -419,11.0,6.206491252849658,7.5,0.0,0.0,1.0136230380445477,-9.513219431840565,1.0,0.0,0.0 -419,12.0,0.0,0.0,-2.422883134443833e-10,10.034672888306272,1.027298269917331,-9.51321943185923,0.0,1.0,0.0 -419,13.0,3.435736229256061,1.6,0.0,0.0,1.0025054161412843,-9.990656929649658,1.0,0.0,0.0 -419,14.0,4.5440382386935,2.5,0.0,0.0,0.9991558469042816,-10.018841328803358,1.0,0.0,0.0 -419,15.0,1.9395285165155185,1.8,0.0,0.0,1.0043655983315432,-9.82571007947681,1.0,0.0,0.0 -419,16.0,4.987359042468476,5.8,0.0,0.0,1.0014765757957445,-10.033724884804665,1.0,0.0,0.0 -419,17.0,1.7732832150999027,0.9,0.0,0.0,0.9925132380956913,-10.36034732502196,1.0,0.0,0.0 -419,18.0,5.264434544827836,3.4,0.0,0.0,0.9908954024008416,-10.463635759243925,1.0,0.0,0.0 -419,19.0,1.2191322103811832,0.7,0.0,0.0,0.9941795658526514,-10.376839430179029,1.0,0.0,0.0 -419,20.0,9.697642582577592,11.2,0.0,0.0,0.9959051995915628,-10.167128994837135,1.0,0.0,0.0 -419,21.0,0.0,0.0,0.0,0.0,0.9962905163484724,-10.1635636833129,1.0,0.0,0.0 -419,22.0,1.7732832150999027,1.6,0.0,0.0,0.9906305318252984,-10.200797278797246,1.0,0.0,0.0 -419,23.0,4.82111374105286,6.7,0.0,0.0,0.9860159318278702,-10.292956375517225,1.0,0.0,0.0 -419,24.0,0.0,0.0,0.0,0.0,0.979627011999508,-10.017349536762886,1.0,0.0,0.0 -419,25.0,1.9395285165155185,2.3,0.0,0.0,0.965462420965705,-10.109370518540103,1.0,0.0,0.0 -419,26.0,0.0,0.0,0.0,0.0,0.9827382729413574,-9.762457903771688,1.0,0.0,0.0 -419,27.0,0.0,0.0,0.0,0.0,0.964876321604002,-7.557061524250431,1.0,0.0,0.0 -419,28.0,1.3299624113249269,0.9,0.0,0.0,0.9687877724333364,-10.413265513943356,1.0,0.0,0.0 -419,29.0,5.874000650018427,1.9,0.0,0.0,0.9611698079029224,-10.901461640495596,1.0,0.0,0.0 -420,0.0,0.0,0.0,163.91293305632547,0.0005351824913013,1.0,0.0,0.0,0.0,1.0 -420,1.0,12.025076802396214,12.7,8.569052033415376e-07,14.485706180399047,0.9806315401533752,-3.781137665651954,0.0,1.0,0.0 -420,2.0,1.3299624113249269,1.2,0.0,0.0,0.972298226819832,-4.890391330051764,1.0,0.0,0.0 -420,3.0,4.211547635862268,1.6,0.0,0.0,0.9652407157206446,-6.010862347657127,1.0,0.0,0.0 -420,4.0,52.20102464450338,19.0,4.2873356410644945e-10,25.068968563985152,0.960208785354727,-9.089805912997544,0.0,1.0,0.0 -420,5.0,0.0,0.0,0.0,0.0,0.965366419114615,-7.214738980147963,1.0,0.0,0.0 -420,6.0,12.634642907586809,10.9,0.0,0.0,0.956732422647562,-8.26349070723739,1.0,0.0,0.0 -420,7.0,16.624530141561586,30.0,4.2399404529121207e-10,35.65982102246384,0.9660697314874448,-7.679277171940223,0.0,1.0,0.0 -420,8.0,0.0,0.0,0.0,0.0,1.010415853069985,-9.27463698015335,1.0,0.0,0.0 -420,9.0,3.214075827368573,2.0,0.0,0.0,0.9983081437818302,-10.351587614552416,1.0,0.0,0.0 -420,10.0,0.0,0.0,8.169828875565998e-10,23.999486638813792,1.0576153678702074,-9.27463698006224,0.0,1.0,0.0 -420,11.0,6.206491252849658,7.5,0.0,0.0,1.0002792889461651,-9.159389840140337,1.0,0.0,0.0 -420,12.0,0.0,0.0,0.0,0.0,1.0002792889461651,-9.159389840140337,0.0,1.0,0.0 -420,13.0,3.435736229256061,1.6,0.0,0.0,0.9902822510523384,-9.728305682711154,1.0,0.0,0.0 -420,14.0,4.5440382386935,2.5,0.0,0.0,0.9875810111980818,-9.864254616292774,1.0,0.0,0.0 -420,15.0,1.9395285165155185,1.8,0.0,0.0,0.9849811479880513,-10.711985268091476,1.0,0.0,0.0 -420,16.0,4.987359042468476,5.8,0.0,0.0,0.9895311804279536,-10.548180345860086,1.0,0.0,0.0 -420,17.0,1.7732832150999027,0.9,0.0,0.0,0.9819773400641572,-10.396626098919231,1.0,0.0,0.0 -420,18.0,5.264434544827836,3.4,0.0,0.0,0.981014137188463,-10.611359193397696,1.0,0.0,0.0 -420,19.0,1.2191322103811832,0.7,0.0,0.0,0.9846827392697004,-10.580416850369543,1.0,0.0,0.0 -420,20.0,9.697642582577592,11.2,0.0,0.0,0.9863762543897988,-10.547436853674178,1.0,0.0,0.0 -420,21.0,0.0,0.0,0.0,0.0,0.9910765767491,-10.47836300178928,1.0,0.0,0.0 -420,22.0,1.7732832150999027,1.6,0.0,0.0,0.9820630538834824,-10.235929470483583,1.0,0.0,0.0 -420,23.0,4.82111374105286,6.7,0.0,0.0,0.981575550819332,-10.57761208400042,1.0,0.0,0.0 -420,24.0,0.0,0.0,0.0,0.0,0.9647233620666636,-9.831529472068604,1.0,0.0,0.0 -420,25.0,1.9395285165155185,2.3,0.0,0.0,0.9503332318812452,-9.926459647527874,1.0,0.0,0.0 -420,26.0,0.0,0.0,0.0,0.0,0.9720090077141166,-9.737098699867897,1.0,0.0,0.0 -420,27.0,0.0,0.0,0.0,0.0,0.962712551488391,-7.557790743922673,1.0,0.0,0.0 -420,28.0,1.3299624113249269,0.9,0.0,0.0,0.9578950626850048,-10.402562119958068,1.0,0.0,0.0 -420,29.0,5.874000650018427,1.9,0.0,0.0,0.9501876112418816,-10.902004515354015,1.0,0.0,0.0 -421,0.0,0.0,0.0,163.85171563094505,0.0006472397934054,1.0,0.0,0.0,0.0,1.0 -421,1.0,12.025076802396214,12.7,8.127368358935534e-07,10.64286078979888,0.9800445990760854,-3.762271991595987,0.0,1.0,0.0 -421,2.0,1.3299624113249269,1.2,0.0,0.0,0.9740389657679708,-4.930537159865641,1.0,0.0,0.0 -421,3.0,4.211547635862268,1.6,0.0,0.0,0.9673918721680512,-6.059888606878481,1.0,0.0,0.0 -421,4.0,52.20102464450338,19.0,-4.665495916029613e-10,24.301051454452704,0.959864329803656,-9.058143065192697,0.0,1.0,0.0 -421,5.0,0.0,0.0,0.0,0.0,0.9668571416298076,-7.2036071995829625,1.0,0.0,0.0 -421,6.0,12.634642907586809,10.9,0.0,0.0,0.9574776833847484,-8.244390213975585,1.0,0.0,0.0 -421,7.0,16.624530141561586,30.0,-9.827741361676239e-11,30.62478654780037,0.965860459654963,-7.639126432181461,0.0,1.0,0.0 -421,8.0,0.0,0.0,0.0,0.0,1.015111202098628,-9.081198652873262,1.0,0.0,0.0 -421,9.0,3.214075827368573,2.0,0.0,0.0,1.005821549056528,-10.05703329632432,1.0,0.0,0.0 -421,10.0,0.0,0.0,9.352722369165336e-10,22.86987414337633,1.0599884262640662,-9.081198652769675,0.0,1.0,0.0 -421,11.0,6.206491252849658,7.5,0.0,0.0,1.014325604111991,-9.435636407112291,1.0,0.0,0.0 -421,12.0,0.0,0.0,-2.37416098805416e-10,9.90606872811554,1.027818738360049,-9.43563640713056,0.0,1.0,0.0 -421,13.0,3.435736229256061,1.6,0.0,0.0,1.0036357969239396,-9.88226369128412,1.0,0.0,0.0 -421,14.0,4.5440382386935,2.5,0.0,0.0,1.0008991259434885,-9.890228280905363,1.0,0.0,0.0 -421,15.0,1.9395285165155185,1.8,0.0,0.0,1.004363499304098,-9.808194222715748,1.0,0.0,0.0 -421,16.0,4.987359042468476,5.8,0.0,0.0,1.0010274202006522,-10.07716858571392,1.0,0.0,0.0 -421,17.0,1.7732832150999027,0.9,0.0,0.0,0.997014052642452,-10.057246560750633,1.0,0.0,0.0 -421,18.0,5.264434544827836,3.4,0.0,0.0,0.986771438106424,-10.757597783539971,1.0,0.0,0.0 -421,19.0,1.2191322103811832,0.7,0.0,0.0,0.99093137996651,-10.615573540921584,1.0,0.0,0.0 -421,20.0,9.697642582577592,11.2,0.0,0.0,0.9953411136354426,-10.224535378156611,1.0,0.0,0.0 -421,21.0,0.0,0.0,0.0,0.0,0.9957715530643684,-10.216992661425378,1.0,0.0,0.0 -421,22.0,1.7732832150999027,1.6,0.0,0.0,0.9916973117064092,-10.128143487064824,1.0,0.0,0.0 -421,23.0,4.82111374105286,6.7,0.0,0.0,0.9861877521759888,-10.29686931451341,1.0,0.0,0.0 -421,24.0,0.0,0.0,0.0,0.0,0.9797070554670758,-10.021279249236397,1.0,0.0,0.0 -421,25.0,1.9395285165155185,2.3,0.0,0.0,0.9655436563718858,-10.113284971276666,1.0,0.0,0.0 -421,26.0,0.0,0.0,0.0,0.0,0.9827607351621324,-9.766506481359032,1.0,0.0,0.0 -421,27.0,0.0,0.0,0.0,0.0,0.9648142733657232,-7.563735211869477,1.0,0.0,0.0 -421,28.0,1.3299624113249269,0.9,0.0,0.0,0.9688105727476992,-10.417283921315898,1.0,0.0,0.0 -421,29.0,5.874000650018427,1.9,0.0,0.0,0.961192793315896,-10.90545690839322,1.0,0.0,0.0 -422,0.0,0.0,0.0,165.759534760313,0.0144554931967633,1.0,0.0,0.0,0.0,1.0 -422,1.0,12.025076802396214,12.7,1.279074041547753e-05,9.30817791950996,0.9850456866429588,-2.6786480360400478,0.0,1.0,0.0 -422,2.0,1.3299624113249269,1.2,0.0,0.0,0.9654768629514892,-8.29856723482568,1.0,0.0,0.0 -422,3.0,4.211547635862268,1.6,0.0,0.0,0.9578639643287736,-10.254152943217765,1.0,0.0,0.0 -422,4.0,52.20102464450338,19.0,-1.849564480828665e-08,31.015051163260186,0.9654816896607398,-10.768703983935746,0.0,1.0,0.0 -422,5.0,0.0,0.0,0.0,0.0,0.9589204976373124,-11.655748872404969,1.0,0.0,0.0 -422,6.0,12.634642907586809,10.9,0.0,0.0,0.95444675669718,-11.567555575923606,1.0,0.0,0.0 -422,7.0,16.624530141561586,30.0,-1.3624679072541733e-08,35.960465015734144,0.9595977336108582,-12.138146735629803,0.0,1.0,0.0 -422,8.0,0.0,0.0,0.0,0.0,1.0115200089363852,-13.45113740438095,1.0,0.0,0.0 -422,9.0,3.214075827368573,2.0,0.0,0.0,1.003378019429792,-14.378853010357886,1.0,0.0,0.0 -422,10.0,0.0,0.0,-1.8461210478541732e-08,24.000611703782567,1.0586745136497966,-13.45113740643547,0.0,1.0,0.0 -422,11.0,6.206491252849658,7.5,0.0,0.0,1.016654499962641,-13.896545728436406,1.0,0.0,0.0 -422,12.0,0.0,0.0,-1.8747686327493437e-08,18.09822948996901,1.04099423258821,-13.896545729857351,0.0,1.0,0.0 -422,13.0,3.435736229256061,1.6,0.0,0.0,1.0047171000599062,-14.380929262879942,1.0,0.0,0.0 -422,14.0,4.5440382386935,2.5,0.0,0.0,1.000489910138699,-14.399165894555832,1.0,0.0,0.0 -422,15.0,1.9395285165155185,1.8,0.0,0.0,1.0047245707225398,-14.199203071135695,1.0,0.0,0.0 -422,16.0,4.987359042468476,5.8,0.0,0.0,0.9994262811847936,-14.424196616945856,1.0,0.0,0.0 -422,17.0,1.7732832150999027,0.9,0.0,0.0,0.9922651674754996,-14.74412257715914,1.0,0.0,0.0 -422,18.0,5.264434544827836,3.4,0.0,0.0,0.98971127333213,-14.84969461889861,1.0,0.0,0.0 -422,19.0,1.2191322103811832,0.7,0.0,0.0,0.9925065931907954,-14.763649817604394,1.0,0.0,0.0 -422,20.0,9.697642582577592,11.2,0.0,0.0,0.992781021406214,-14.559065676143112,1.0,0.0,0.0 -422,21.0,0.0,0.0,0.0,0.0,0.9931828212959526,-14.555265244225346,1.0,0.0,0.0 -422,22.0,1.7732832150999027,1.6,0.0,0.0,0.9901346028294612,-14.585103817148797,1.0,0.0,0.0 -422,23.0,4.82111374105286,6.7,0.0,0.0,0.9830843132613608,-14.683896792197686,1.0,0.0,0.0 -422,24.0,0.0,0.0,0.0,0.0,0.9740662765739212,-14.40111191747556,1.0,0.0,0.0 -422,25.0,1.9395285165155185,2.3,0.0,0.0,0.9598183784254782,-14.494202433547882,1.0,0.0,0.0 -422,26.0,0.0,0.0,0.0,0.0,0.9755860519114816,-14.143442623611296,1.0,0.0,0.0 -422,27.0,0.0,0.0,0.0,0.0,0.9557094875094604,-11.974111110468384,1.0,0.0,0.0 -422,28.0,1.3299624113249269,0.9,0.0,0.0,0.9615270342669064,-14.803965096314418,1.0,0.0,0.0 -422,29.0,5.874000650018427,1.9,0.0,0.0,0.9538496569799662,-15.299614718444618,1.0,0.0,0.0 -423,0.0,0.0,0.0,138.00001222257023,0.0005119758567317,1.0,0.0,0.0,0.0,1.0 -423,1.0,12.025076802396214,12.7,27.729240263483607,5.223354859978372,0.9751781532288524,-4.637418056835515,0.0,1.0,0.0 -423,2.0,1.3299624113249269,1.2,0.0,0.0,0.9556484412091912,-9.79681345097086,1.0,0.0,0.0 -423,3.0,4.211547635862268,1.6,0.0,0.0,0.9561560207706736,-9.77196463672443,1.0,0.0,0.0 -423,4.0,52.20102464450338,19.0,-1.025433406111276e-09,27.475584433184224,0.9566122040351432,-11.080080390833634,0.0,1.0,0.0 -423,5.0,0.0,0.0,0.0,0.0,0.9583091647881916,-10.238228489295862,1.0,0.0,0.0 -423,6.0,12.634642907586809,10.9,0.0,0.0,0.95087123885922,-10.86695083242538,1.0,0.0,0.0 -423,7.0,16.624530141561586,30.0,-9.546289945704174e-10,34.450874393784545,0.9583267294312748,-10.710264003639468,0.0,1.0,0.0 -423,8.0,0.0,0.0,0.0,0.0,1.0150024084469795,-12.099532186528975,1.0,0.0,0.0 -423,9.0,3.214075827368573,2.0,0.0,0.0,1.0102014902204708,-13.05419295778457,1.0,0.0,0.0 -423,10.0,0.0,0.0,-1.2783442921904334e-09,22.93084963058444,1.0599988417930162,-12.099532186670578,0.0,1.0,0.0 -423,11.0,6.206491252849658,7.5,0.0,0.0,1.0212213799985848,-13.268123715880936,1.0,0.0,0.0 -423,12.0,0.0,0.0,-1.100595770633951e-09,22.461673820505823,1.0511378586876587,-13.268123715963185,0.0,1.0,0.0 -423,13.0,3.435736229256061,1.6,0.0,0.0,1.008408666978611,-13.781393192706886,1.0,0.0,0.0 -423,14.0,4.5440382386935,2.5,0.0,0.0,1.0030773215443072,-13.811256469364402,1.0,0.0,0.0 -423,15.0,1.9395285165155185,1.8,0.0,0.0,1.0107549586343256,-13.276565993392635,1.0,0.0,0.0 -423,16.0,4.987359042468476,5.8,0.0,0.0,1.0058782316569672,-13.22274153947957,1.0,0.0,0.0 -423,17.0,1.7732832150999027,0.9,0.0,0.0,0.9964263127783658,-13.894868720063975,1.0,0.0,0.0 -423,18.0,5.264434544827836,3.4,0.0,0.0,0.994790812842857,-13.844962312095914,1.0,0.0,0.0 -423,19.0,1.2191322103811832,0.7,0.0,0.0,0.998057952745988,-13.678593721205557,1.0,0.0,0.0 -423,20.0,9.697642582577592,11.2,0.0,0.0,1.0019657371208153,-13.18518222665334,1.0,0.0,0.0 -423,21.0,0.0,0.0,0.0,0.0,1.0030895987933055,-13.16749073500309,1.0,0.0,0.0 -423,22.0,1.7732832150999027,1.6,0.0,0.0,0.9874992246302848,-14.33739838164618,1.0,0.0,0.0 -423,23.0,4.82111374105286,6.7,0.0,0.0,0.9736384492285426,-14.906731807783345,1.0,0.0,0.0 -423,24.0,0.0,0.0,0.0,0.0,0.9546969984637408,-12.851969004453297,1.0,0.0,0.0 -423,25.0,1.9395285165155185,2.3,0.0,0.0,0.94015098834816,-12.948935097193216,1.0,0.0,0.0 -423,26.0,0.0,0.0,0.0,0.0,0.9620616362356218,-12.755544129117563,1.0,0.0,0.0 -423,27.0,0.0,0.0,0.0,0.0,0.953345677365139,-10.531319872446304,1.0,0.0,0.0 -423,28.0,1.3299624113249269,0.9,0.0,0.0,0.9477925943554232,-13.435044614941662,1.0,0.0,0.0 -423,29.0,5.874000650018427,1.9,0.0,0.0,0.9400002175658646,-13.945269328582471,1.0,0.0,0.0 -424,0.0,0.0,0.0,164.55994063331934,0.0006088799647585,1.0,0.0,0.0,0.0,1.0 -424,1.0,12.025076802396214,12.7,5.897002070218505e-07,9.654800571689918,0.9790783235551362,-3.9527342974670368,0.0,1.0,0.0 -424,2.0,1.3299624113249269,1.2,0.0,0.0,0.9758980031725244,-4.4500887673994685,1.0,0.0,0.0 -424,3.0,4.211547635862268,1.6,0.0,0.0,0.9696189031815768,-5.462485197966105,1.0,0.0,0.0 -424,4.0,52.20102464450338,19.0,-1.4471676262953362e-09,36.876943153644376,0.9585999222841258,-12.145339353291533,0.0,1.0,0.0 -424,5.0,0.0,0.0,0.0,0.0,0.96992554556051,-6.263548594572293,1.0,0.0,0.0 -424,6.0,12.634642907586809,10.9,0.0,0.0,0.9400188703103852,-12.784804623572107,1.0,0.0,0.0 -424,7.0,16.624530141561586,30.0,-4.370538604219436e-10,28.50902085628391,0.9681048724412444,-6.684263635197094,0.0,1.0,0.0 -424,8.0,0.0,0.0,0.0,0.0,1.010268570535966,-8.046361932576042,1.0,0.0,0.0 -424,9.0,3.214075827368573,2.0,0.0,0.0,1.005112648244618,-8.976546273780405,1.0,0.0,0.0 -424,10.0,0.0,0.0,-4.13406006823128e-10,14.492146965484764,1.0392731359813572,-8.046361932622963,0.0,1.0,0.0 -424,11.0,6.206491252849658,7.5,0.0,0.0,1.0165703338939542,-8.973850679270825,1.0,0.0,0.0 -424,12.0,0.0,0.0,-3.4673181491641787e-10,12.95010608613233,1.0341025872165053,-8.973850679297282,0.0,1.0,0.0 -424,13.0,3.435736229256061,1.6,0.0,0.0,1.0030512529763282,-9.499320057507402,1.0,0.0,0.0 -424,14.0,4.5440382386935,2.5,0.0,0.0,0.9970234608081838,-9.522053154531337,1.0,0.0,0.0 -424,15.0,1.9395285165155185,1.8,0.0,0.0,1.0112186637281086,-9.093842828765268,1.0,0.0,0.0 -424,16.0,4.987359042468476,5.8,0.0,0.0,0.9985837812395044,-9.109847051149586,1.0,0.0,0.0 -424,17.0,1.7732832150999027,0.9,0.0,0.0,0.9795124103652028,-10.153572671627286,1.0,0.0,0.0 -424,18.0,5.264434544827836,3.4,0.0,0.0,0.9715166310607654,-10.43228487298644,1.0,0.0,0.0 -424,19.0,1.2191322103811832,0.7,0.0,0.0,1.0025132956954144,-9.08417286783962,1.0,0.0,0.0 -424,20.0,9.697642582577592,11.2,0.0,0.0,0.9945828401273946,-9.185961263289457,1.0,0.0,0.0 -424,21.0,0.0,0.0,0.0,0.0,0.9949961024743148,-9.19178974721112,1.0,0.0,0.0 -424,22.0,1.7732832150999027,1.6,0.0,0.0,0.9889135242643444,-9.55717116268372,1.0,0.0,0.0 -424,23.0,4.82111374105286,6.7,0.0,0.0,0.984841473793224,-9.450274786803586,1.0,0.0,0.0 -424,24.0,0.0,0.0,0.0,0.0,0.9799062305202032,-9.156892580651265,1.0,0.0,0.0 -424,25.0,1.9395285165155185,2.3,0.0,0.0,0.965745796482995,-9.248860347671895,1.0,0.0,0.0 -424,26.0,0.0,0.0,0.0,0.0,0.983912458160292,-8.889516490008177,1.0,0.0,0.0 -424,27.0,0.0,0.0,0.0,0.0,0.9674618247587924,-6.624365963616642,1.0,0.0,0.0 -424,28.0,1.3299624113249269,0.9,0.0,0.0,0.9770886207384012,-9.100800117341633,1.0,0.0,0.0 -424,29.0,5.874000650018427,1.9,0.0,0.0,0.951632140089664,-10.683895937800148,1.0,0.0,0.0 -425,0.0,0.0,0.0,163.97279328368597,0.0392059920651277,1.0,0.0,0.0,0.0,1.0 -425,1.0,12.025076802396214,12.7,0.0,0.0,0.9790528346632754,-3.742198244103173,0.0,1.0,0.0 -425,2.0,1.3299624113249269,1.2,0.0,0.0,0.9768045131900508,-4.986074438630546,1.0,0.0,0.0 -425,3.0,4.211547635862268,1.6,0.0,0.0,0.970808437466048,-6.127464515253073,1.0,0.0,0.0 -425,4.0,52.20102464450338,19.0,-2.747760596461331e-10,28.360888071689928,0.9659093591647754,-9.112137392768782,0.0,1.0,0.0 -425,5.0,0.0,0.0,0.0,0.0,0.9714952824577646,-7.251276779766879,1.0,0.0,0.0 -425,6.0,12.634642907586809,10.9,0.0,0.0,0.9627405359886012,-8.291177964502891,1.0,0.0,0.0 -425,7.0,16.624530141561586,30.0,-3.603544543773577e-10,36.733912926518826,0.9716595511343324,-7.92836647394574,0.0,1.0,0.0 -425,8.0,0.0,0.0,0.0,0.0,1.0192457943766071,-9.136478094513592,1.0,0.0,0.0 -425,9.0,3.214075827368573,2.0,0.0,0.0,1.0118206034355794,-10.11512980636716,1.0,0.0,0.0 -425,10.0,0.0,0.0,-3.17796973530371e-10,20.768829643124995,1.0599997344519192,-9.136478094548645,0.0,1.0,0.0 -425,11.0,6.206491252849658,7.5,0.0,0.0,1.022309442446273,-9.666716335866802,1.0,0.0,0.0 -425,12.0,0.0,0.0,-4.616885295382873e-10,13.480905805317423,1.0404489845173337,-9.666716335901626,0.0,1.0,0.0 -425,13.0,3.435736229256061,1.6,0.0,0.0,1.0107608509685524,-10.15245404019335,1.0,0.0,0.0 -425,14.0,4.5440382386935,2.5,0.0,0.0,1.006818998663444,-10.184460961719005,1.0,0.0,0.0 -425,15.0,1.9395285165155185,1.8,0.0,0.0,1.0116465916613129,-9.959350670934256,1.0,0.0,0.0 -425,16.0,4.987359042468476,5.8,0.0,0.0,1.0074215933500852,-10.16454031475866,1.0,0.0,0.0 -425,17.0,1.7732832150999027,0.9,0.0,0.0,0.9994108202498464,-10.507551421940448,1.0,0.0,0.0 -425,18.0,5.264434544827836,3.4,0.0,0.0,0.9973228660679428,-10.601331862927502,1.0,0.0,0.0 -425,19.0,1.2191322103811832,0.7,0.0,0.0,1.000332689345511,-10.511275920416631,1.0,0.0,0.0 -425,20.0,9.697642582577592,11.2,0.0,0.0,1.001160906066503,-10.324827992551734,1.0,0.0,0.0 -425,21.0,0.0,0.0,0.0,0.0,1.0015077440130868,-10.331478313252578,1.0,0.0,0.0 -425,22.0,1.7732832150999027,1.6,0.0,0.0,0.9969647335978904,-10.42243640908332,1.0,0.0,0.0 -425,23.0,4.82111374105286,6.7,0.0,0.0,0.9905501169032904,-10.593470860279805,1.0,0.0,0.0 -425,24.0,0.0,0.0,0.0,0.0,0.9805742737940644,-10.655941023076188,1.0,0.0,0.0 -425,25.0,1.9395285165155185,2.3,0.0,0.0,0.9664237755155431,-10.74778165887918,1.0,0.0,0.0 -425,26.0,0.0,0.0,0.0,0.0,0.9815720455290696,-10.616676878360582,1.0,0.0,0.0 -425,27.0,0.0,0.0,0.0,0.0,0.9632460610557948,-8.817083701707697,1.0,0.0,0.0 -425,28.0,1.3299624113249269,0.9,0.0,0.0,0.9676039681736024,-11.269053813188812,1.0,0.0,0.0 -425,29.0,5.874000650018427,1.9,0.0,0.0,0.9599763806599952,-11.75845362304526,1.0,0.0,0.0 -426,0.0,0.0,0.0,163.94482335593344,0.0004966231744063,1.0,0.0,0.0,0.0,1.0 -426,1.0,12.025076802396214,12.7,5.715416434045777e-07,11.338747531170815,0.9801151182629576,-3.7656655025702994,0.0,1.0,0.0 -426,2.0,1.3299624113249269,1.2,0.0,0.0,0.973799460962898,-4.931032186966396,1.0,0.0,0.0 -426,3.0,4.211547635862268,1.6,0.0,0.0,0.9670968166081362,-6.060621407890946,1.0,0.0,0.0 -426,4.0,52.20102464450338,19.0,-1.5362769228898935e-10,24.584991687760976,0.959906533614223,-9.063317356882449,0.0,1.0,0.0 -426,5.0,0.0,0.0,0.0,0.0,0.9662915756330808,-7.197056356582636,1.0,0.0,0.0 -426,6.0,12.634642907586809,10.9,0.0,0.0,0.9571589328060678,-8.242520567252033,1.0,0.0,0.0 -426,7.0,16.624530141561586,30.0,1.450236860807181e-10,33.027107841482845,0.9656944787494144,-7.651176847939211,0.0,1.0,0.0 -426,8.0,0.0,0.0,0.0,0.0,1.0148904119711888,-9.0577782710671,1.0,0.0,0.0 -426,9.0,3.214075827368573,2.0,0.0,0.0,1.0056596582127972,-10.024437481461131,1.0,0.0,0.0 -426,10.0,0.0,0.0,5.729359239387271e-10,22.987879054109072,1.0599987558885058,-9.057778271003633,0.0,1.0,0.0 -426,11.0,6.206491252849658,7.5,0.0,0.0,1.0148865635641784,-9.46289290516959,1.0,0.0,0.0 -426,12.0,0.0,0.0,-5.744152701985586e-11,10.6093244432696,1.029316579093184,-9.462892905173998,0.0,1.0,0.0 -426,13.0,3.435736229256061,1.6,0.0,0.0,0.984565691825022,-10.359412429689968,1.0,0.0,0.0 -426,14.0,4.5440382386935,2.5,0.0,0.0,0.9955287158423268,-10.165038413229269,1.0,0.0,0.0 -426,15.0,1.9395285165155185,1.8,0.0,0.0,1.0046542628931343,-9.808188462807657,1.0,0.0,0.0 -426,16.0,4.987359042468476,5.8,0.0,0.0,1.0009947671921182,-10.055267708848197,1.0,0.0,0.0 -426,17.0,1.7732832150999027,0.9,0.0,0.0,0.9898471355872478,-10.47039663520188,1.0,0.0,0.0 -426,18.0,5.264434544827836,3.4,0.0,0.0,0.9888029060542152,-10.551435467043182,1.0,0.0,0.0 -426,19.0,1.2191322103811832,0.7,0.0,0.0,0.9923992824009464,-10.452408658603126,1.0,0.0,0.0 -426,20.0,9.697642582577592,11.2,0.0,0.0,0.994854936526766,-10.208968496891863,1.0,0.0,0.0 -426,21.0,0.0,0.0,0.0,0.0,0.9951822006305484,-10.2067326637886,1.0,0.0,0.0 -426,22.0,1.7732832150999027,1.6,0.0,0.0,0.987725671048892,-10.309454435872878,1.0,0.0,0.0 -426,23.0,4.82111374105286,6.7,0.0,0.0,0.9840859649702036,-10.3495240662619,1.0,0.0,0.0 -426,24.0,0.0,0.0,0.0,0.0,0.9776489833623112,-10.040371764062392,1.0,0.0,0.0 -426,25.0,1.9395285165155185,2.3,0.0,0.0,0.9634548724049126,-10.132771059948231,1.0,0.0,0.0 -426,26.0,0.0,0.0,0.0,0.0,0.9807356111509764,-9.764279226958848,1.0,0.0,0.0 -426,27.0,0.0,0.0,0.0,0.0,0.9626882341170704,-7.521033838468718,1.0,0.0,0.0 -426,28.0,1.3299624113249269,0.9,0.0,0.0,0.966754899371255,-10.417785220276706,1.0,0.0,0.0 -426,29.0,5.874000650018427,1.9,0.0,0.0,0.9591203946917324,-10.908051107663844,1.0,0.0,0.0 -427,0.0,0.0,0.0,163.84465372527072,0.0006452962458602,1.0,0.0,0.0,0.0,1.0 -427,1.0,12.025076802396214,12.7,8.170681115331161e-07,10.687953243907096,0.9800674172752508,-3.76132562966578,0.0,1.0,0.0 -427,2.0,1.3299624113249269,1.2,0.0,0.0,0.9739803174807818,-4.932806490330255,1.0,0.0,0.0 -427,3.0,4.211547635862268,1.6,0.0,0.0,0.9673199522520216,-6.062736135236528,1.0,0.0,0.0 -427,4.0,52.20102464450338,19.0,-5.940701683835522e-10,24.292418179981325,0.959904583480332,-9.053837938951355,0.0,1.0,0.0 -427,5.0,0.0,0.0,0.0,0.0,0.966933285539591,-7.196851692977101,1.0,0.0,0.0 -427,6.0,12.634642907586809,10.9,0.0,0.0,0.9575400468588584,-8.238613364006182,1.0,0.0,0.0 -427,7.0,16.624530141561586,30.0,-1.6825200217178775e-10,30.606685861760305,0.9659278593890008,-7.632223039595129,0.0,1.0,0.0 -427,8.0,0.0,0.0,0.0,0.0,1.0154750699550534,-9.033400282545292,1.0,0.0,0.0 -427,9.0,3.214075827368573,2.0,0.0,0.0,1.0065165075773386,-9.987325257667726,1.0,0.0,0.0 -427,10.0,0.0,0.0,9.106638029690414e-10,22.67851874451736,1.059977268620128,-9.033400282444465,0.0,1.0,0.0 -427,11.0,6.206491252849658,7.5,0.0,0.0,1.0136230380445477,-9.513219431840565,1.0,0.0,0.0 -427,12.0,0.0,0.0,-2.422883134443833e-10,10.034672888306272,1.027298269917331,-9.51321943185923,0.0,1.0,0.0 -427,13.0,3.435736229256061,1.6,0.0,0.0,1.0025054161412843,-9.990656929649658,1.0,0.0,0.0 -427,14.0,4.5440382386935,2.5,0.0,0.0,0.9991558469042816,-10.018841328803358,1.0,0.0,0.0 -427,15.0,1.9395285165155185,1.8,0.0,0.0,1.0043655983315432,-9.82571007947681,1.0,0.0,0.0 -427,16.0,4.987359042468476,5.8,0.0,0.0,1.0014765757957445,-10.033724884804665,1.0,0.0,0.0 -427,17.0,1.7732832150999027,0.9,0.0,0.0,0.9925132380956913,-10.36034732502196,1.0,0.0,0.0 -427,18.0,5.264434544827836,3.4,0.0,0.0,0.9908954024008416,-10.463635759243925,1.0,0.0,0.0 -427,19.0,1.2191322103811832,0.7,0.0,0.0,0.9941795658526514,-10.376839430179029,1.0,0.0,0.0 -427,20.0,9.697642582577592,11.2,0.0,0.0,0.9959051995915628,-10.167128994837135,1.0,0.0,0.0 -427,21.0,0.0,0.0,0.0,0.0,0.9962905163484724,-10.1635636833129,1.0,0.0,0.0 -427,22.0,1.7732832150999027,1.6,0.0,0.0,0.9906305318252984,-10.200797278797246,1.0,0.0,0.0 -427,23.0,4.82111374105286,6.7,0.0,0.0,0.9860159318278702,-10.292956375517225,1.0,0.0,0.0 -427,24.0,0.0,0.0,0.0,0.0,0.979627011999508,-10.017349536762886,1.0,0.0,0.0 -427,25.0,1.9395285165155185,2.3,0.0,0.0,0.965462420965705,-10.109370518540103,1.0,0.0,0.0 -427,26.0,0.0,0.0,0.0,0.0,0.9827382729413574,-9.762457903771688,1.0,0.0,0.0 -427,27.0,0.0,0.0,0.0,0.0,0.964876321604002,-7.557061524250431,1.0,0.0,0.0 -427,28.0,1.3299624113249269,0.9,0.0,0.0,0.9687877724333364,-10.413265513943356,1.0,0.0,0.0 -427,29.0,5.874000650018427,1.9,0.0,0.0,0.9611698079029224,-10.901461640495596,1.0,0.0,0.0 -428,0.0,0.0,0.0,164.02634730691665,0.0023305866892364,1.0,0.0,0.0,0.0,1.0 -428,1.0,12.025076802396214,12.7,3.2876375692913547e-06,-1.5469684942516722,0.9786600703428104,-3.7348855321806833,0.0,1.0,0.0 -428,2.0,1.3299624113249269,1.2,0.0,0.0,0.9779838261232856,-5.007642367551925,1.0,0.0,0.0 -428,3.0,4.211547635862268,1.6,0.0,0.0,0.972265106832387,-6.153630791032601,1.0,0.0,0.0 -428,4.0,52.20102464450338,19.0,2.2978242702913e-09,25.60238306035481,0.9634494540304456,-9.077456161446715,0.0,1.0,0.0 -428,5.0,0.0,0.0,0.0,0.0,0.9726388233766776,-7.279314796396558,1.0,0.0,0.0 -428,6.0,12.634642907586809,10.9,0.0,0.0,0.962400531846467,-8.29547138502695,1.0,0.0,0.0 -428,7.0,16.624530141561586,30.0,6.3586680657638036e-09,36.38444009100808,0.973830227785258,-7.745233861882942,0.0,1.0,0.0 -428,8.0,0.0,0.0,0.0,0.0,1.0210693226945589,-9.066137666949723,1.0,0.0,0.0 -428,9.0,3.214075827368573,2.0,0.0,0.0,1.014917490621681,-9.991989228918971,1.0,0.0,0.0 -428,10.0,0.0,0.0,6.0372479229680356e-09,19.832859726022924,1.0599871057563557,-9.066137666284956,0.0,1.0,0.0 -428,11.0,6.206491252849658,7.5,0.0,0.0,1.0296978233391123,-9.622815131924902,1.0,0.0,0.0 -428,12.0,0.0,0.0,3.175850999882797e-09,17.630338133124813,1.0531349650219546,-9.622815131689984,0.0,1.0,0.0 -428,13.0,3.435736229256061,1.6,0.0,0.0,1.017856806258315,-10.08334288917253,1.0,0.0,0.0 -428,14.0,4.5440382386935,2.5,0.0,0.0,1.0137078282138512,-10.088368875302054,1.0,0.0,0.0 -428,15.0,1.9395285165155185,1.8,0.0,0.0,1.0172630969770446,-9.871343466529485,1.0,0.0,0.0 -428,16.0,4.987359042468476,5.8,0.0,0.0,1.0113083881922311,-10.05459963932971,1.0,0.0,0.0 -428,17.0,1.7732832150999027,0.9,0.0,0.0,1.0050147722576033,-10.397642686237408,1.0,0.0,0.0 -428,18.0,5.264434544827836,3.4,0.0,0.0,1.0021526241354315,-10.484435362495946,1.0,0.0,0.0 -428,19.0,1.2191322103811832,0.7,0.0,0.0,1.004734513673461,-10.391929884556887,1.0,0.0,0.0 -428,20.0,9.697642582577592,11.2,0.0,0.0,1.003185721366154,-10.181405367086844,1.0,0.0,0.0 -428,21.0,0.0,0.0,0.0,0.0,1.007424178075095,-10.16020469387491,1.0,0.0,0.0 -428,22.0,1.7732832150999027,1.6,0.0,0.0,1.003898528253611,-10.246646334047398,1.0,0.0,0.0 -428,23.0,4.82111374105286,6.7,0.0,0.0,0.9974783932289484,-10.31173913780554,1.0,0.0,0.0 -428,24.0,0.0,0.0,0.0,0.0,0.9889517678838512,-10.034888256957736,1.0,0.0,0.0 -428,25.0,1.9395285165155185,2.3,0.0,0.0,0.97492467693204,-10.125156878453303,1.0,0.0,0.0 -428,26.0,0.0,0.0,0.0,0.0,0.9906649357602092,-9.783037594593551,1.0,0.0,0.0 -428,27.0,0.0,0.0,0.0,0.0,0.9712846684689924,-7.641520460905124,1.0,0.0,0.0 -428,28.0,1.3299624113249269,0.9,0.0,0.0,0.9400017194385136,-12.134827976044376,1.0,0.0,0.0 -428,29.0,5.874000650018427,1.9,0.0,0.0,0.9477449858855412,-11.885958209690228,1.0,0.0,0.0 -429,0.0,0.0,0.0,164.2009944492377,0.0041311250290831,1.0,0.0,0.0,0.0,1.0 -429,1.0,12.010849512392662,12.7,1.7363668318619605e-06,20.42050528218386,0.9838483957193326,-3.603426750241573,0.0,1.0,0.0 -429,2.0,1.3283888861632438,1.2,0.0,0.0,0.9638446469594236,-5.470448693576456,1.0,0.0,0.0 -429,3.0,4.206564806183605,1.6,0.0,0.0,0.95492604814978,-6.737283832177014,1.0,0.0,0.0 -429,4.0,52.13926378190733,19.0,3.930541605948952e-09,22.92890724190387,0.9642215346702964,-10.028892511546912,0.0,1.0,0.0 -429,5.0,0.0,0.0,0.0,0.0,0.9569630349609588,-7.6081112717027235,1.0,0.0,0.0 -429,6.0,12.619694418550818,10.9,0.0,0.0,0.9445573362013912,-8.092413564331705,1.0,0.0,0.0 -429,7.0,16.60486107704055,30.0,6.405686379625159e-09,39.99939596071799,0.9593611687815288,-8.114165086614902,0.0,1.0,0.0 -429,8.0,0.0,0.0,0.0,0.0,0.9996895784589857,-9.756581755330982,1.0,0.0,0.0 -429,9.0,3.2102731415611725,2.0,0.0,0.0,0.9862495487537378,-10.883661020996737,1.0,0.0,0.0 -429,10.0,0.0,0.0,9.363320468019825e-09,23.999611531003413,1.0473518716534218,-9.756581754265223,0.0,1.0,0.0 -429,11.0,6.199148135428471,7.5,0.0,0.0,0.9883730168255525,-9.731616582258798,1.0,0.0,0.0 -429,12.0,0.0,0.0,0.0,0.0,0.9883730168255525,-9.731616582258798,0.0,1.0,0.0 -429,13.0,3.4316712892550467,1.6,0.0,0.0,0.9597194332652572,-10.826736591768247,1.0,0.0,0.0 -429,14.0,4.538662027724416,2.5,0.0,0.0,0.9709571939676908,-10.622783226544362,1.0,0.0,0.0 -429,15.0,1.9372337923213967,1.8,0.0,0.0,0.9727595601924294,-11.252382502713155,1.0,0.0,0.0 -429,16.0,4.9814583231121645,5.8,0.0,0.0,0.9773656121392136,-11.084720937247145,1.0,0.0,0.0 -429,17.0,1.7711851815509918,0.9,0.0,0.0,0.9668475644069852,-11.086936934382615,1.0,0.0,0.0 -429,18.0,5.258206007729507,3.4,0.0,0.0,0.9667974286374996,-11.257533908411403,1.0,0.0,0.0 -429,19.0,1.217689812316307,0.7,0.0,0.0,0.971007736937998,-11.19944910389075,1.0,0.0,0.0 -429,20.0,9.686168961606986,11.2,0.0,0.0,0.9752415042906848,-11.046837757127902,1.0,0.0,0.0 -429,21.0,0.0,0.0,0.0,0.0,0.975581485067578,-11.035420958805467,1.0,0.0,0.0 -429,22.0,1.7711851815509918,1.6,0.0,0.0,0.9652453486590474,-10.879327190309812,1.0,0.0,0.0 -429,23.0,4.815409712341759,6.7,0.0,0.0,0.9645737062317394,-11.061574467628388,1.0,0.0,0.0 -429,24.0,0.0,0.0,0.0,0.0,0.9625591185866408,-10.731011609417354,1.0,0.0,0.0 -429,25.0,1.9372337923213967,2.3,0.0,0.0,0.948141896362072,-10.825827683589186,1.0,0.0,0.0 -429,26.0,0.0,0.0,0.0,0.0,0.9685004090810616,-10.43476159288452,1.0,0.0,0.0 -429,27.0,0.0,0.0,0.0,0.0,0.9550506126472904,-8.000876139175425,1.0,0.0,0.0 -429,28.0,1.3283888861632438,0.9,0.0,0.0,0.9543420119163252,-11.104095700437837,1.0,0.0,0.0 -429,29.0,5.8670509138876605,1.9,0.0,0.0,0.9466112234178484,-11.606597325555798,1.0,0.0,0.0 -430,0.0,0.0,0.0,138.00000804844555,0.0003734605931171,1.0,0.0,0.0,0.0,1.0 -430,1.0,12.010849512392662,12.7,27.5837678469028,10.158341592928608,0.9751782353693458,-4.637419091579448,0.0,1.0,0.0 -430,2.0,1.3283888861632438,1.2,0.0,0.0,0.9513666196616318,-8.928293649819532,1.0,0.0,0.0 -430,3.0,4.206564806183605,1.6,0.0,0.0,0.9518776319276362,-8.903287181598316,1.0,0.0,0.0 -430,4.0,52.13926378190733,19.0,-4.4955944305711286e-10,38.80669559646715,0.9585744735755763,-12.910212047588397,0.0,1.0,0.0 -430,5.0,0.0,0.0,0.0,0.0,0.955311051079519,-9.30552593002365,1.0,0.0,0.0 -430,6.0,12.619694418550818,10.9,0.0,0.0,0.9400005340787666,-13.548603057689888,1.0,0.0,0.0 -430,7.0,16.60486107704055,30.0,-8.105826368307124e-10,29.55031487442269,0.953849954066592,-9.745892766513808,0.0,1.0,0.0 -430,8.0,0.0,0.0,0.0,0.0,1.0025919476490053,-11.402783026669548,1.0,0.0,0.0 -430,9.0,3.2102731415611725,2.0,0.0,0.0,0.9916292393102124,-12.495145997264126,1.0,0.0,0.0 -430,10.0,0.0,0.0,-1.1822021201652147e-09,23.98883072158729,1.0501078006591271,-11.402783026803364,0.0,1.0,0.0 -430,11.0,6.199148135428471,7.5,0.0,0.0,0.998261813565242,-12.00275703417913,1.0,0.0,0.0 -430,12.0,0.0,0.0,-8.649379727401382e-10,9.045977869381124,1.0107909805843347,-12.002757034247889,0.0,1.0,0.0 -430,13.0,3.4316712892550467,1.6,0.0,0.0,0.9882542354053002,-12.406292785252782,1.0,0.0,0.0 -430,14.0,4.538662027724416,2.5,0.0,0.0,0.9866798208023382,-12.3780244373532,1.0,0.0,0.0 -430,15.0,1.9372337923213967,1.8,0.0,0.0,0.9891130821574692,-12.327416907087857,1.0,0.0,0.0 -430,16.0,4.9814583231121645,5.8,0.0,0.0,0.986410233562874,-12.54200311172841,1.0,0.0,0.0 -430,17.0,1.7711851815509918,0.9,0.0,0.0,0.9648372149224408,-13.5486160106933,1.0,0.0,0.0 -430,18.0,5.258206007729507,3.4,0.0,0.0,0.9672170568163826,-13.44342684467773,1.0,0.0,0.0 -430,19.0,1.217689812316307,0.7,0.0,0.0,0.9727220155114256,-13.241365727633749,1.0,0.0,0.0 -430,20.0,9.686168961606986,11.2,0.0,0.0,0.9810390741442104,-12.662417545370484,1.0,0.0,0.0 -430,21.0,0.0,0.0,0.0,0.0,0.9814887158471426,-12.6531903493003,1.0,0.0,0.0 -430,22.0,1.7711851815509918,1.6,0.0,0.0,0.9774455756655852,-12.58862959660707,1.0,0.0,0.0 -430,23.0,4.815409712341759,6.7,0.0,0.0,0.9719798876679748,-12.716252216211831,1.0,0.0,0.0 -430,24.0,0.0,0.0,0.0,0.0,0.9663778286925112,-12.353777264325496,1.0,0.0,0.0 -430,25.0,1.9372337923213967,2.3,0.0,0.0,0.9520193363068742,-12.447834021065963,1.0,0.0,0.0 -430,26.0,0.0,0.0,0.0,0.0,0.9700528957833092,-12.04191108029178,1.0,0.0,0.0 -430,27.0,0.0,0.0,0.0,0.0,0.9529990444207715,-9.683966727575184,1.0,0.0,0.0 -430,28.0,1.3283888861632438,0.9,0.0,0.0,0.9559185630045928,-12.709073375202042,1.0,0.0,0.0 -430,29.0,5.8670509138876605,1.9,0.0,0.0,0.9482009494109386,-13.20990693672648,1.0,0.0,0.0 -431,0.0,0.0,0.0,136.48844725520175,7.106712445192898e-05,1.0,0.0,0.0,0.0,1.0 -431,1.0,12.010849512392662,12.7,34.013160653035825,17.775910863569173,0.9628522771164996,-18.51218198061541,0.0,1.0,0.0 -431,2.0,1.3283888861632438,1.2,0.0,0.0,0.9615263893013042,-13.505694654239756,1.0,0.0,0.0 -431,3.0,4.206564806183605,1.6,0.0,0.0,0.956544815382311,-16.727178679568446,1.0,0.0,0.0 -431,4.0,52.13926378190733,19.0,-1.2723989058018709e-10,24.380775575153866,0.9461931367056362,-22.423544947899284,0.0,1.0,0.0 -431,5.0,0.0,0.0,0.0,0.0,0.9593868175482084,-18.93795213165518,1.0,0.0,0.0 -431,6.0,12.619694418550818,10.9,0.0,0.0,0.9474875171609084,-20.6476317299334,1.0,0.0,0.0 -431,7.0,16.60486107704055,30.0,-3.661091295963057e-11,39.48436441210828,0.9617866729871414,-19.432197902153234,0.0,1.0,0.0 -431,8.0,0.0,0.0,0.0,0.0,1.0134658051674168,-20.57541763354121,1.0,0.0,0.0 -431,9.0,3.2102731415611725,2.0,0.0,0.0,1.0063639511949882,-21.419447696614174,1.0,0.0,0.0 -431,10.0,0.0,0.0,3.6126494516291857e-11,23.714280872797527,1.059999509904563,-20.575417633537203,0.0,1.0,0.0 -431,11.0,6.199148135428471,7.5,0.0,0.0,1.0254236997425332,-20.701405832989675,1.0,0.0,0.0 -431,12.0,0.0,0.0,1.3840077403175376e-10,23.996863557491015,1.0572015650899322,-20.701405832979432,0.0,1.0,0.0 -431,13.0,3.4316712892550467,1.6,0.0,0.0,1.0130594032475395,-21.21310386428956,1.0,0.0,0.0 -431,14.0,4.538662027724416,2.5,0.0,0.0,1.0081018107300284,-21.254762185096503,1.0,0.0,0.0 -431,15.0,1.9372337923213967,1.8,0.0,0.0,1.0108663004489875,-21.09046947095883,1.0,0.0,0.0 -431,16.0,4.9814583231121645,5.8,0.0,0.0,1.003469931572272,-21.420808903030903,1.0,0.0,0.0 -431,17.0,1.7711851815509918,0.9,0.0,0.0,0.998289399644838,-21.65894801466234,1.0,0.0,0.0 -431,18.0,5.258206007729507,3.4,0.0,0.0,0.9947838072672816,-21.801689921663577,1.0,0.0,0.0 -431,19.0,1.217689812316307,0.7,0.0,0.0,0.997052648311228,-21.736840547125777,1.0,0.0,0.0 -431,20.0,9.686168961606986,11.2,0.0,0.0,0.9945340721075496,-21.611643590522387,1.0,0.0,0.0 -431,21.0,0.0,0.0,0.0,0.0,0.998843471861573,-21.56645532731022,1.0,0.0,0.0 -431,22.0,1.7711851815509918,1.6,0.0,0.0,0.9969996350536596,-21.50314971303076,1.0,0.0,0.0 -431,23.0,4.815409712341759,6.7,0.0,0.0,0.9889212279289168,-21.68984225087541,1.0,0.0,0.0 -431,24.0,0.0,0.0,0.0,0.0,0.9785050750349252,-21.507413351046598,1.0,0.0,0.0 -431,25.0,1.9372337923213967,2.3,0.0,0.0,0.9643299144229812,-21.599118556043287,1.0,0.0,0.0 -431,26.0,0.0,0.0,0.0,0.0,0.9791518704927924,-21.315171647817685,1.0,0.0,0.0 -431,27.0,0.0,0.0,0.0,0.0,0.9585857239716112,-19.29505379548028,1.0,0.0,0.0 -431,28.0,1.3283888861632438,0.9,0.0,0.0,0.9651569008640488,-21.969816240243173,1.0,0.0,0.0 -431,29.0,5.8670509138876605,1.9,0.0,0.0,0.957515582473312,-22.461040523517184,1.0,0.0,0.0 -432,0.0,0.0,0.0,139.29936029335056,-2.409968224981185e-06,1.0,0.0,0.0,0.0,1.0 -432,1.0,12.010849512392662,12.7,26.093509887893124,10.685983983015412,0.9734881458600548,-4.611826520134049,0.0,1.0,0.0 -432,2.0,1.3283888861632438,1.2,0.0,0.0,1.0007886295367987,-0.1474567959376559,1.0,0.0,0.0 -432,3.0,4.206564806183605,1.6,0.0,0.0,0.9484561760399672,-9.56187731452787,1.0,0.0,0.0 -432,4.0,52.13926378190733,19.0,-6.279811282352276e-10,26.505498129112222,0.951170114302392,-11.0222088918354,0.0,1.0,0.0 -432,5.0,0.0,0.0,0.0,0.0,0.9512643447901836,-10.111497653548902,1.0,0.0,0.0 -432,6.0,12.619694418550818,10.9,0.0,0.0,0.944436913125102,-10.770381359535518,1.0,0.0,0.0 -432,7.0,16.60486107704055,30.0,-5.743258624454017e-10,32.345964408604125,0.9508664678454596,-10.572982896307025,0.0,1.0,0.0 -432,8.0,0.0,0.0,0.0,0.0,1.0007825578093197,-12.114111607342153,1.0,0.0,0.0 -432,9.0,3.2102731415611725,2.0,0.0,0.0,0.990952815927208,-13.15348445126086,1.0,0.0,0.0 -432,10.0,0.0,0.0,-1.021184908803157e-09,23.99665319576436,1.048391708330615,-12.114111607458147,0.0,1.0,0.0 -432,11.0,6.199148135428471,7.5,0.0,0.0,0.997149681820918,-12.893275762154818,1.0,0.0,0.0 -432,12.0,0.0,0.0,-8.601521282288419e-10,11.942041315756768,1.0136435060716675,-12.893275762223082,0.0,1.0,0.0 -432,13.0,3.4316712892550467,1.6,0.0,0.0,0.985881203896307,-13.35562316958971,1.0,0.0,0.0 -432,14.0,4.538662027724416,2.5,0.0,0.0,0.9827132577332488,-13.355307322022336,1.0,0.0,0.0 -432,15.0,1.9372337923213967,1.8,0.0,0.0,0.9883374076261172,-13.119536403664394,1.0,0.0,0.0 -432,16.0,4.9814583231121645,5.8,0.0,0.0,0.985650537233938,-13.24202378708113,1.0,0.0,0.0 -432,17.0,1.7711851815509918,0.9,0.0,0.0,0.976242950103344,-13.648126868551126,1.0,0.0,0.0 -432,18.0,5.258206007729507,3.4,0.0,0.0,0.9747621052372027,-13.719136582405236,1.0,0.0,0.0 -432,19.0,1.217689812316307,0.7,0.0,0.0,0.9781863422791424,-13.610924835283702,1.0,0.0,0.0 -432,20.0,9.686168961606986,11.2,0.0,0.0,0.9800969750156412,-13.342589202988034,1.0,0.0,0.0 -432,21.0,0.0,0.0,0.0,0.0,0.9804634777783588,-13.340175755702523,1.0,0.0,0.0 -432,22.0,1.7711851815509918,1.6,0.0,0.0,0.9741852107444676,-13.479265739445916,1.0,0.0,0.0 -432,23.0,4.815409712341759,6.7,0.0,0.0,0.9696657898192677,-13.488144326190795,1.0,0.0,0.0 -432,24.0,0.0,0.0,0.0,0.0,0.9633689787283326,-13.138732922001592,1.0,0.0,0.0 -432,25.0,1.9372337923213967,2.3,0.0,0.0,0.9489642524948684,-13.23338719406629,1.0,0.0,0.0 -432,26.0,0.0,0.0,0.0,0.0,0.9666401250653408,-12.83510005218307,1.0,0.0,0.0 -432,27.0,0.0,0.0,0.0,0.0,0.9492622474138304,-10.493469382934933,1.0,0.0,0.0 -432,28.0,1.3283888861632438,0.9,0.0,0.0,0.9524527811725236,-13.507050631430698,1.0,0.0,0.0 -432,29.0,5.8670509138876605,1.9,0.0,0.0,0.9447061444868616,-14.011562178343704,1.0,0.0,0.0 -433,0.0,0.0,0.0,163.9349243969056,0.0026479299529924,1.0,0.0,0.0,0.0,1.0 -433,1.0,12.010849512392662,12.7,2.682607565452288e-06,11.062650626965706,0.9801032850970752,-3.763247657497532,0.0,1.0,0.0 -433,2.0,1.3283888861632438,1.2,0.0,0.0,0.97384105156362,-4.936718958646178,1.0,0.0,0.0 -433,3.0,4.206564806183605,1.6,0.0,0.0,0.967148743907633,-6.067701033204593,1.0,0.0,0.0 -433,4.0,52.13926378190733,19.0,6.407159494041752e-10,24.71061831135205,0.9601291899538572,-9.055773387132078,0.0,1.0,0.0 -433,5.0,0.0,0.0,0.0,0.0,0.9664368432929304,-7.190311153789724,1.0,0.0,0.0 -433,6.0,12.619694418550818,10.9,0.0,0.0,0.9573401188089372,-8.234872404262429,1.0,0.0,0.0 -433,7.0,16.60486107704055,30.0,1.638770193276995e-09,30.442492978260056,0.9555475239038338,-10.30253724733892,0.0,1.0,0.0 -433,8.0,0.0,0.0,0.0,0.0,1.0155198980110545,-9.060580211687483,1.0,0.0,0.0 -433,9.0,3.2102731415611725,2.0,0.0,0.0,1.0068799599713536,-10.03116618016562,1.0,0.0,0.0 -433,10.0,0.0,0.0,1.960231281800082e-09,22.667737084424846,1.0599999864436864,-9.06058021147046,0.0,1.0,0.0 -433,11.0,6.199148135428471,7.5,0.0,0.0,1.0151350798408163,-9.563956512320718,1.0,0.0,0.0 -433,12.0,0.0,0.0,7.530252900047175e-10,11.21559241872874,1.030374040422339,-9.56395651226297,0.0,1.0,0.0 -433,13.0,3.4316712892550467,1.6,0.0,0.0,1.0038508393950352,-10.046961909123455,1.0,0.0,0.0 -433,14.0,4.538662027724416,2.5,0.0,0.0,1.000272871000903,-10.078256744324564,1.0,0.0,0.0 -433,15.0,1.9372337923213967,1.8,0.0,0.0,1.0053932406397517,-9.87052527828411,1.0,0.0,0.0 -433,16.0,4.9814583231121645,5.8,0.0,0.0,1.0020506071994664,-10.07835076705522,1.0,0.0,0.0 -433,17.0,1.7711851815509918,0.9,0.0,0.0,0.993378472846521,-10.412994525177943,1.0,0.0,0.0 -433,18.0,5.258206007729507,3.4,0.0,0.0,0.9916078558919628,-10.512614263726435,1.0,0.0,0.0 -433,19.0,1.217689812316307,0.7,0.0,0.0,0.9948064492654228,-10.42431479109703,1.0,0.0,0.0 -433,20.0,9.686168961606986,11.2,0.0,0.0,0.9962111687440304,-10.225624768667233,1.0,0.0,0.0 -433,21.0,0.0,0.0,0.0,0.0,0.9965741520358852,-10.226945695842868,1.0,0.0,0.0 -433,22.0,1.7711851815509918,1.6,0.0,0.0,0.9912159277706774,-10.288366156500924,1.0,0.0,0.0 -433,23.0,4.815409712341759,6.7,0.0,0.0,0.9858925429204072,-10.419526273045042,1.0,0.0,0.0 -433,24.0,0.0,0.0,0.0,0.0,0.9779229256420672,-10.307918224592605,1.0,0.0,0.0 -433,25.0,1.9372337923213967,2.3,0.0,0.0,0.963739073139828,-10.3997342778535,1.0,0.0,0.0 -433,26.0,0.0,0.0,0.0,0.0,0.9801170400133976,-10.157036934189,1.0,0.0,0.0 -433,27.0,0.0,0.0,0.0,0.0,0.9622704032699176,-8.137677447045922,1.0,0.0,0.0 -433,28.0,1.3283888861632438,0.9,0.0,0.0,0.9661366875671512,-10.810374531276642,1.0,0.0,0.0 -433,29.0,5.8670509138876605,1.9,0.0,0.0,0.9585033710429068,-11.300595979303436,1.0,0.0,0.0 -434,0.0,0.0,0.0,164.05101088981797,0.0203746926155545,1.0,0.0,0.0,0.0,1.0 -434,1.0,12.010849512392662,12.7,5.674486183554852e-06,27.26189870386456,0.9820898925258916,-3.792222734020004,0.0,1.0,0.0 -434,2.0,1.3283888861632438,1.2,0.0,0.0,0.9680733010595812,-4.890275679141749,1.0,0.0,0.0 -434,3.0,4.206564806183605,1.6,0.0,0.0,0.960034311269857,-6.012801985998766,1.0,0.0,0.0 -434,4.0,52.13926378190733,19.0,1.124241502607178e-08,30.1629015530321,0.9610583823566408,-9.059891636410924,0.0,1.0,0.0 -434,5.0,0.0,0.0,0.0,0.0,0.955244072532742,-6.903529193483911,1.0,0.0,0.0 -434,6.0,12.619694418550818,10.9,0.0,0.0,0.9510744013399848,-8.06554420978074,1.0,0.0,0.0 -434,7.0,16.60486107704055,30.0,0.0,0.0,0.9424258304280928,-7.162450500353231,0.0,1.0,0.0 -434,8.0,0.0,0.0,0.0,0.0,1.0183624882774736,-6.903529191793345,1.0,0.0,0.0 -434,9.0,3.2102731415611725,2.0,0.0,0.0,0.9828620152020334,-11.653052153204875,1.0,0.0,0.0 -434,10.0,0.0,0.0,1.4109907920692829e-08,21.21530111731182,1.0599927960389126,-6.90352919023557,0.0,1.0,0.0 -434,11.0,6.199148135428471,7.5,0.0,0.0,1.016490903013292,-10.56541846729989,1.0,0.0,0.0 -434,12.0,0.0,0.0,6.726220573408974e-09,23.996111328302792,1.0485305566472731,-10.565418466793671,0.0,1.0,0.0 -434,13.0,3.4316712892550467,1.6,0.0,0.0,1.002396858601182,-11.12035844102062,1.0,0.0,0.0 -434,14.0,4.538662027724416,2.5,0.0,0.0,0.995606721878444,-11.159636540256312,1.0,0.0,0.0 -434,15.0,1.9372337923213967,1.8,0.0,0.0,0.9952886474612382,-11.081133305932804,1.0,0.0,0.0 -434,16.0,4.9814583231121645,5.8,0.0,0.0,0.9824257545933728,-11.591673344196598,1.0,0.0,0.0 -434,17.0,1.7711851815509918,0.9,0.0,0.0,0.9817180920635896,-11.687484231590272,1.0,0.0,0.0 -434,18.0,5.258206007729507,3.4,0.0,0.0,0.9758481774933048,-11.902536194992969,1.0,0.0,0.0 -434,19.0,1.217689812316307,0.7,0.0,0.0,0.9769487150226156,-11.870315999303394,1.0,0.0,0.0 -434,20.0,9.686168961606986,11.2,0.0,0.0,0.973299520807171,-11.757221654831232,1.0,0.0,0.0 -434,21.0,0.0,0.0,0.0,0.0,0.9741138486750616,-11.727127948024542,1.0,0.0,0.0 -434,22.0,1.7711851815509918,1.6,0.0,0.0,0.9816450292551888,-11.387969069765775,1.0,0.0,0.0 -434,23.0,4.815409712341759,6.7,0.0,0.0,0.9698519652624576,-11.54525796833788,1.0,0.0,0.0 -434,24.0,0.0,0.0,0.0,0.0,0.9653915650599412,-10.7214580997942,1.0,0.0,0.0 -434,25.0,1.9372337923213967,2.3,0.0,0.0,0.9510179510064488,-10.815710084250576,1.0,0.0,0.0 -434,26.0,0.0,0.0,0.0,0.0,0.9696897573583572,-10.121846841193548,1.0,0.0,0.0 -434,27.0,0.0,0.0,0.0,0.0,0.9502918119803264,-7.305067737120803,1.0,0.0,0.0 -434,28.0,1.3283888861632438,0.9,0.0,0.0,0.9555498032700376,-10.78951618603294,1.0,0.0,0.0 -434,29.0,5.8670509138876605,1.9,0.0,0.0,0.9478291121066792,-11.290739165422078,1.0,0.0,0.0 -435,0.0,0.0,0.0,126.15952180585064,2.6572294586912903e-06,1.0,0.0,0.0,0.0,1.0 -435,1.0,12.010849512392662,12.7,38.10073748208407,-21.36905908303515,0.9819212868548656,-2.6807681623759736,0.0,1.0,0.0 -435,2.0,1.3283888861632438,1.2,0.0,0.0,0.9848828105078778,-4.294953415232663,1.0,0.0,0.0 -435,3.0,4.206564806183605,1.6,0.0,0.0,0.980674319358929,-5.2672853064510585,1.0,0.0,0.0 -435,4.0,52.13926378190733,19.0,-5.412176173742949e-09,39.99999735940466,0.982634716242323,-8.48828094339245,0.0,1.0,0.0 -435,5.0,0.0,0.0,0.0,0.0,0.9780867018267272,-6.831008522593405,1.0,0.0,0.0 -435,6.0,12.619694418550818,10.9,0.0,0.0,0.9735479681855068,-7.777025267567561,1.0,0.0,0.0 -435,7.0,16.60486107704055,30.0,-7.622964440480532e-09,39.99999925453197,0.9797467114247596,-7.513455332183105,0.0,1.0,0.0 -435,8.0,0.0,0.0,0.0,0.0,1.0206642507608146,-10.735004994938253,1.0,0.0,0.0 -435,9.0,3.2102731415611725,2.0,0.0,0.0,1.01261077329353,-12.772939371038028,1.0,0.0,0.0 -435,10.0,0.0,0.0,-3.9755290742566644e-09,20.04610071145983,1.0599999957122288,-10.735004995376167,0.0,1.0,0.0 -435,11.0,6.199148135428471,7.5,0.0,0.0,0.986272261866609,-19.747786587960796,1.0,0.0,0.0 -435,12.0,0.0,0.0,3.5265894962575665e-08,23.99999695515744,1.019238059621168,-19.74778658514673,0.0,1.0,0.0 -435,13.0,3.4316712892550467,1.6,0.0,0.0,0.97446805940502,-20.275654867047425,1.0,0.0,0.0 -435,14.0,4.538662027724416,2.5,0.0,0.0,0.9705049936581852,-20.32031572627497,1.0,0.0,0.0 -435,15.0,1.9372337923213967,1.8,0.0,0.0,0.9943374481893796,-16.879772477781785,1.0,0.0,0.0 -435,16.0,4.9814583231121645,5.8,0.0,0.0,1.0003867579870604,-14.11320345768866,1.0,0.0,0.0 -435,17.0,1.7711851815509918,0.9,0.0,0.0,0.952494620305828,-20.986369119842585,1.0,0.0,0.0 -435,18.0,5.258206007729507,3.4,0.0,0.0,0.9442717068068256,-21.280744312572832,1.0,0.0,0.0 -435,19.0,1.217689812316307,0.7,0.0,0.0,1.0100321389792395,-12.878804878861134,1.0,0.0,0.0 -435,20.0,9.686168961606986,11.2,0.0,0.0,0.9994138374099556,-13.044778918155188,1.0,0.0,0.0 -435,21.0,0.0,0.0,0.0,0.0,0.9989521408959476,-13.070594051020196,1.0,0.0,0.0 -435,22.0,1.7711851815509918,1.6,0.0,0.0,0.969887076927524,-13.6888635532543,1.0,0.0,0.0 -435,23.0,4.815409712341759,6.7,0.0,0.0,0.9767556369180068,-13.527368248074374,1.0,0.0,0.0 -435,24.0,0.0,0.0,0.0,0.0,0.96494280015809,-13.652231977692304,1.0,0.0,0.0 -435,25.0,1.9372337923213967,2.3,0.0,0.0,0.950562294935667,-13.746573008067683,1.0,0.0,0.0 -435,26.0,0.0,0.0,0.0,0.0,0.9906285126659315,-10.042292087220671,1.0,0.0,0.0 -435,27.0,0.0,0.0,0.0,0.0,0.9717903788121012,-8.35022551015818,1.0,0.0,0.0 -435,28.0,1.3283888861632438,0.9,0.0,0.0,0.9400000015691332,-12.39057877676428,1.0,0.0,0.0 -435,29.0,5.8670509138876605,1.9,0.0,0.0,0.9477392334583062,-12.142165787440115,1.0,0.0,0.0 -436,0.0,0.0,0.0,163.64255018773764,0.0006403185886405,1.0,0.0,0.0,0.0,1.0 -436,1.0,12.010849512392662,12.7,8.12206762712136e-07,10.667421742886148,0.980086549414492,-3.756548342384189,0.0,1.0,0.0 -436,2.0,1.3283888861632438,1.2,0.0,0.0,0.9740061940468058,-4.926560034682984,1.0,0.0,0.0 -436,3.0,4.206564806183605,1.6,0.0,0.0,0.9673506755774196,-6.055001417759051,1.0,0.0,0.0 -436,4.0,52.13926378190733,19.0,-6.756079680359066e-10,24.280392531349406,0.9599438698587092,-9.042321604021437,0.0,1.0,0.0 -436,5.0,0.0,0.0,0.0,0.0,0.9669671407150424,-7.187734371348109,1.0,0.0,0.0 -436,6.0,12.619694418550818,10.9,0.0,0.0,0.9575788839931,-8.228051174104358,1.0,0.0,0.0 -436,7.0,16.60486107704055,30.0,-2.292233864700956e-10,30.600584652643164,0.96596201472452,-7.622540580282469,0.0,1.0,0.0 -436,8.0,0.0,0.0,0.0,0.0,1.015495622874755,-9.022038816870833,1.0,0.0,0.0 -436,9.0,3.2102731415611725,2.0,0.0,0.0,1.006540058652285,-9.974809514596403,1.0,0.0,0.0 -436,10.0,0.0,0.0,8.924924869779824e-10,22.66749557813928,1.059976234123114,-9.022038816772016,0.0,1.0,0.0 -436,11.0,6.199148135428471,7.5,0.0,0.0,1.013634339225523,-9.501224172383168,1.0,0.0,0.0 -436,12.0,0.0,0.0,-3.1885565972768607e-10,10.019789395877003,1.027289405729654,-9.50122417240773,0.0,1.0,0.0 -436,13.0,3.4316712892550467,1.6,0.0,0.0,1.0025240781658762,-9.977923356232765,1.0,0.0,0.0 -436,14.0,4.538662027724416,2.5,0.0,0.0,0.9991775309334584,-10.00601780361036,1.0,0.0,0.0 -436,15.0,1.9372337923213967,1.8,0.0,0.0,1.0043847411011977,-9.813245454502288,1.0,0.0,0.0 -436,16.0,4.9814583231121645,5.8,0.0,0.0,1.0015000510022984,-10.021017874455715,1.0,0.0,0.0 -436,17.0,1.7711851815509918,0.9,0.0,0.0,0.9925407345353818,-10.347035002769935,1.0,0.0,0.0 -436,18.0,5.258206007729507,3.4,0.0,0.0,0.9909249059198632,-10.4501941879427,1.0,0.0,0.0 -436,19.0,1.217689812316307,0.7,0.0,0.0,0.9942078656975868,-10.363584560171576,1.0,0.0,0.0 -436,20.0,9.686168961606986,11.2,0.0,0.0,0.9959329293305984,-10.15417236122112,1.0,0.0,0.0 -436,21.0,0.0,0.0,0.0,0.0,0.9963181803213154,-10.15062632526239,1.0,0.0,0.0 -436,22.0,1.7711851815509918,1.6,0.0,0.0,0.9906584238221756,-10.187630621457007,1.0,0.0,0.0 -436,23.0,4.815409712341759,6.7,0.0,0.0,0.9860490486923758,-10.27966264969782,1.0,0.0,0.0 -436,24.0,0.0,0.0,0.0,0.0,0.9796635506867016,-10.004369437037484,1.0,0.0,0.0 -436,25.0,1.9372337923213967,2.3,0.0,0.0,0.9655056548306112,-10.095854657626523,1.0,0.0,0.0 -436,26.0,0.0,0.0,0.0,0.0,0.9827740636193532,-9.749961134993862,1.0,0.0,0.0 -436,27.0,0.0,0.0,0.0,0.0,0.964912055076548,-7.547463836357614,1.0,0.0,0.0 -436,28.0,1.3283888861632438,0.9,0.0,0.0,0.968833789071254,-10.399720950500068,1.0,0.0,0.0 -436,29.0,5.8670509138876605,1.9,0.0,0.0,0.9612224119459388,-10.887197698663478,1.0,0.0,0.0 -437,0.0,0.0,0.0,163.93391823746217,0.0009703847835496,1.0,0.0,0.0,0.0,1.0 -437,1.0,12.010849512392662,12.7,1.3327569378083912e-06,10.845960024592642,0.9800660102583326,-3.7688123566204954,0.0,1.0,0.0 -437,2.0,1.3283888861632438,1.2,0.0,0.0,0.9739289177862654,-4.920405441813003,1.0,0.0,0.0 -437,3.0,4.206564806183605,1.6,0.0,0.0,0.9672545065571746,-6.047394845230834,1.0,0.0,0.0 -437,4.0,52.13926378190733,19.0,5.75694029703392e-10,24.7620371745181,0.9602084494848468,-9.078655919637496,0.0,1.0,0.0 -437,5.0,0.0,0.0,0.0,0.0,0.9665103872656964,-7.230524971783462,1.0,0.0,0.0 -437,6.0,12.619694418550818,10.9,0.0,0.0,0.9574145596984276,-8.267988370623245,1.0,0.0,0.0 -437,7.0,16.60486107704055,30.0,8.333744536018776e-10,33.4357230573498,0.9664610847833256,-7.686323397787778,0.0,1.0,0.0 -437,8.0,0.0,0.0,0.0,0.0,1.0121656812700668,-9.201436591035671,1.0,0.0,0.0 -437,9.0,3.2102731415611725,2.0,0.0,0.0,1.0003610893520252,-10.230981034915564,1.0,0.0,0.0 -437,10.0,0.0,0.0,1.893796417048952e-09,23.99964413031993,1.059290849774715,-9.201436590825177,0.0,1.0,0.0 -437,11.0,6.199148135428471,7.5,0.0,0.0,1.013527802898878,-9.179687483474376,1.0,0.0,0.0 -437,12.0,0.0,0.0,8.269708428267295e-10,6.128024344788416,1.0219229893969974,-9.17968748341033,0.0,1.0,0.0 -437,13.0,3.4316712892550467,1.6,0.0,0.0,0.9908140798917252,-10.311562072340289,1.0,0.0,0.0 -437,14.0,4.538662027724416,2.5,0.0,0.0,0.9719165821711896,-10.734107111145544,1.0,0.0,0.0 -437,15.0,1.9372337923213967,1.8,0.0,0.0,1.0012331527741152,-9.726040958735725,1.0,0.0,0.0 -437,16.0,4.9814583231121645,5.8,0.0,0.0,0.9963636700129228,-10.17465324778733,1.0,0.0,0.0 -437,17.0,1.7711851815509918,0.9,0.0,0.0,0.972561162828373,-10.924390223829016,1.0,0.0,0.0 -437,18.0,5.258206007729507,3.4,0.0,0.0,0.9752999525476744,-10.9332454066518,1.0,0.0,0.0 -437,19.0,1.217689812316307,0.7,0.0,0.0,0.9809507301102044,-10.793339534211253,1.0,0.0,0.0 -437,20.0,9.686168961606986,11.2,0.0,0.0,0.9887220050533057,-10.437111194840586,1.0,0.0,0.0 -437,21.0,0.0,0.0,0.0,0.0,0.9888037091256812,-10.440966702462084,1.0,0.0,0.0 -437,22.0,1.7711851815509918,1.6,0.0,0.0,0.9699515418021454,-10.765809599781946,1.0,0.0,0.0 -437,23.0,4.815409712341759,6.7,0.0,0.0,0.974201515412108,-10.64683773717942,1.0,0.0,0.0 -437,24.0,0.0,0.0,0.0,0.0,0.9722400930903504,-10.308735565214883,1.0,0.0,0.0 -437,25.0,1.9372337923213967,2.3,0.0,0.0,0.9579708199811842,-10.401644378929795,1.0,0.0,0.0 -437,26.0,0.0,0.0,0.0,0.0,0.9781361019757396,-10.009598643866994,1.0,0.0,0.0 -437,27.0,0.0,0.0,0.0,0.0,0.9640901960749818,-7.609494755110104,1.0,0.0,0.0 -437,28.0,1.3283888861632438,0.9,0.0,0.0,0.9641257148855203,-10.665623014268547,1.0,0.0,0.0 -437,29.0,5.8670509138876605,1.9,0.0,0.0,0.9564759564555227,-11.15790607697602,1.0,0.0,0.0 -438,0.0,0.0,0.0,163.72479039539996,0.0043341826303944,1.0,0.0,0.0,0.0,1.0 -438,1.0,12.010849512392662,12.7,6.097769601448227e-06,9.520568617386552,0.9799145297941686,-3.750854566959209,0.0,1.0,0.0 -438,2.0,1.3283888861632438,1.2,0.0,0.0,0.974480092053536,-4.948610511611734,1.0,0.0,0.0 -438,3.0,4.206564806183605,1.6,0.0,0.0,0.9679380524440508,-6.082153568721366,1.0,0.0,0.0 -438,4.0,52.13926378190733,19.0,6.815510142314955e-09,24.17710471940977,0.9599529747200244,-9.029539016508044,0.0,1.0,0.0 -438,5.0,0.0,0.0,0.0,0.0,0.9673767423333344,-7.173447431051945,1.0,0.0,0.0 -438,6.0,12.619694418550818,10.9,0.0,0.0,0.9578273363094516,-8.214415692022385,1.0,0.0,0.0 -438,7.0,16.60486107704055,30.0,2.4073019884441847e-09,29.827744406806445,0.9661149211059344,-7.602563639666443,0.0,1.0,0.0 -438,8.0,0.0,0.0,0.0,0.0,1.0143929410088843,-8.899328956861801,1.0,0.0,0.0 -438,9.0,3.2102731415611725,2.0,0.0,0.0,1.0108911976766934,-9.792314866306292,1.0,0.0,0.0 -438,10.0,0.0,0.0,-6.3451791691926846e-09,16.38755169892807,1.0469504581932167,-8.899328957573829,0.0,1.0,0.0 -438,11.0,6.199148135428471,7.5,0.0,0.0,1.0184677258202215,-9.744162120318938,1.0,0.0,0.0 -438,12.0,0.0,0.0,-2.4487819278143776e-10,18.02741803130447,1.042673186899428,-9.74416212033744,0.0,1.0,0.0 -438,13.0,3.4316712892550467,1.6,0.0,0.0,1.007167750874484,-10.169540624525071,1.0,0.0,0.0 -438,14.0,4.538662027724416,2.5,0.0,0.0,1.0039262832865663,-10.145592061169657,1.0,0.0,0.0 -438,15.0,1.9372337923213967,1.8,0.0,0.0,0.9964683293845896,-10.11217124220802,1.0,0.0,0.0 -438,16.0,4.9814583231121645,5.8,0.0,0.0,0.9824363458343944,-10.494947750139316,1.0,0.0,0.0 -438,17.0,1.7711851815509918,0.9,0.0,0.0,0.9972143867646568,-10.37005955304874,1.0,0.0,0.0 -438,18.0,5.258206007729507,3.4,0.0,0.0,0.9955392759819472,-10.404568633309117,1.0,0.0,0.0 -438,19.0,1.217689812316307,0.7,0.0,0.0,0.998774864485796,-10.283098031448889,1.0,0.0,0.0 -438,20.0,9.686168961606986,11.2,0.0,0.0,1.000263328540054,-9.990776405296684,1.0,0.0,0.0 -438,21.0,0.0,0.0,0.0,0.0,1.0006235190160866,-9.993873648510656,1.0,0.0,0.0 -438,22.0,1.7711851815509918,1.6,0.0,0.0,0.9950522227677734,-10.237058193720776,1.0,0.0,0.0 -438,23.0,4.815409712341759,6.7,0.0,0.0,0.9899234048242568,-10.208819959658603,1.0,0.0,0.0 -438,24.0,0.0,0.0,0.0,0.0,0.9822529366718236,-9.93683368964922,1.0,0.0,0.0 -438,25.0,1.9372337923213967,2.3,0.0,0.0,0.9681334764952588,-10.027830073865363,1.0,0.0,0.0 -438,26.0,0.0,0.0,0.0,0.0,0.9845470164484428,-9.686264994584848,1.0,0.0,0.0 -438,27.0,0.0,0.0,0.0,0.0,0.9654394966607204,-7.529367455680775,1.0,0.0,0.0 -438,28.0,1.3283888861632438,0.9,0.0,0.0,0.9706333534531556,-10.333653871309323,1.0,0.0,0.0 -438,29.0,5.8670509138876605,1.9,0.0,0.0,0.9630365436820444,-10.819312129894962,1.0,0.0,0.0 -439,0.0,0.0,0.0,163.73487158635797,0.0008764403043315,1.0,0.0,0.0,0.0,1.0 -439,1.0,12.010849512392662,12.7,1.058006716874631e-06,10.537980844011337,0.98005102661876,-3.758956917824536,0.0,1.0,0.0 -439,2.0,1.3283888861632438,1.2,0.0,0.0,0.974068603619668,-4.928431320985565,1.0,0.0,0.0 -439,3.0,4.206564806183605,1.6,0.0,0.0,0.9674278682173976,-6.05729498518503,1.0,0.0,0.0 -439,4.0,52.13926378190733,19.0,-1.7543674936560816e-10,24.32821559656045,0.9599568048658632,-9.049463844909504,0.0,1.0,0.0 -439,5.0,0.0,0.0,0.0,0.0,0.9669277167744148,-7.197868810636044,1.0,0.0,0.0 -439,6.0,12.619694418550818,10.9,0.0,0.0,0.9575603127536514,-8.236955376438155,1.0,0.0,0.0 -439,7.0,16.60486107704055,30.0,5.510976120800837e-11,30.84344859815402,0.9659993979416408,-7.634778643317013,0.0,1.0,0.0 -439,8.0,0.0,0.0,0.0,0.0,1.0151539273849135,-9.05661002903631,1.0,0.0,0.0 -439,9.0,3.2102731415611725,2.0,0.0,0.0,1.0058567002603402,-10.022686978231386,1.0,0.0,0.0 -439,10.0,0.0,0.0,7.321918255735205e-10,22.85424407181484,1.0599999915801694,-9.05661002895522,0.0,1.0,0.0 -439,11.0,6.199148135428471,7.5,0.0,0.0,1.0143325438258974,-9.449436194351192,1.0,0.0,0.0 -439,12.0,0.0,0.0,-4.5844134075552094e-11,9.872189345838,1.0277800370500725,-9.44943619435472,0.0,1.0,0.0 -439,13.0,3.4316712892550467,1.6,0.0,0.0,0.9843014696570876,-10.349958824612983,1.0,0.0,0.0 -439,14.0,4.538662027724416,2.5,0.0,0.0,0.9952582848891126,-10.155954582438367,1.0,0.0,0.0 -439,15.0,1.9372337923213967,1.8,0.0,0.0,1.0044179371755133,-9.801158915670786,1.0,0.0,0.0 -439,16.0,4.9814583231121645,5.8,0.0,0.0,1.001060067402671,-10.05115077764942,1.0,0.0,0.0 -439,17.0,1.7711851815509918,0.9,0.0,0.0,0.9897451844776872,-10.46344495159852,1.0,0.0,0.0 -439,18.0,5.258206007729507,3.4,0.0,0.0,0.9887996900846916,-10.545869999674998,1.0,0.0,0.0 -439,19.0,1.217689812316307,0.7,0.0,0.0,0.9924459500083954,-10.447832517741086,1.0,0.0,0.0 -439,20.0,9.686168961606986,11.2,0.0,0.0,0.995089964223886,-10.20749640453068,1.0,0.0,0.0 -439,21.0,0.0,0.0,0.0,0.0,0.995427054721412,-10.20554770081038,1.0,0.0,0.0 -439,22.0,1.7711851815509918,1.6,0.0,0.0,0.9877341585663576,-10.305372046213671,1.0,0.0,0.0 -439,23.0,4.815409712341759,6.7,0.0,0.0,0.9844644454772076,-10.352342880998911,1.0,0.0,0.0 -439,24.0,0.0,0.0,0.0,0.0,0.978698350907426,-10.061693772793,1.0,0.0,0.0 -439,25.0,1.9372337923213967,2.3,0.0,0.0,0.9645260736657724,-10.153362221939805,1.0,0.0,0.0 -439,26.0,0.0,0.0,0.0,0.0,0.9821961651347249,-9.796922771882535,1.0,0.0,0.0 -439,27.0,0.0,0.0,0.0,0.0,0.9648111734718352,-7.560964512932898,1.0,0.0,0.0 -439,28.0,1.3283888861632438,0.9,0.0,0.0,0.9682471938370928,-10.447458230929628,1.0,0.0,0.0 -439,29.0,5.8670509138876605,1.9,0.0,0.0,0.960631055994924,-10.93552995660276,1.0,0.0,0.0 -440,0.0,0.0,0.0,163.64255018773764,0.0006403185886405,1.0,0.0,0.0,0.0,1.0 -440,1.0,12.010849512392662,12.7,8.12206762712136e-07,10.667421742886148,0.980086549414492,-3.756548342384189,0.0,1.0,0.0 -440,2.0,1.3283888861632438,1.2,0.0,0.0,0.9740061940468058,-4.926560034682984,1.0,0.0,0.0 -440,3.0,4.206564806183605,1.6,0.0,0.0,0.9673506755774196,-6.055001417759051,1.0,0.0,0.0 -440,4.0,52.13926378190733,19.0,-6.756079680359066e-10,24.280392531349406,0.9599438698587092,-9.042321604021437,0.0,1.0,0.0 -440,5.0,0.0,0.0,0.0,0.0,0.9669671407150424,-7.187734371348109,1.0,0.0,0.0 -440,6.0,12.619694418550818,10.9,0.0,0.0,0.9575788839931,-8.228051174104358,1.0,0.0,0.0 -440,7.0,16.60486107704055,30.0,-2.292233864700956e-10,30.600584652643164,0.96596201472452,-7.622540580282469,0.0,1.0,0.0 -440,8.0,0.0,0.0,0.0,0.0,1.015495622874755,-9.022038816870833,1.0,0.0,0.0 -440,9.0,3.2102731415611725,2.0,0.0,0.0,1.006540058652285,-9.974809514596403,1.0,0.0,0.0 -440,10.0,0.0,0.0,8.924924869779824e-10,22.66749557813928,1.059976234123114,-9.022038816772016,0.0,1.0,0.0 -440,11.0,6.199148135428471,7.5,0.0,0.0,1.013634339225523,-9.501224172383168,1.0,0.0,0.0 -440,12.0,0.0,0.0,-3.1885565972768607e-10,10.019789395877003,1.027289405729654,-9.50122417240773,0.0,1.0,0.0 -440,13.0,3.4316712892550467,1.6,0.0,0.0,1.0025240781658762,-9.977923356232765,1.0,0.0,0.0 -440,14.0,4.538662027724416,2.5,0.0,0.0,0.9991775309334584,-10.00601780361036,1.0,0.0,0.0 -440,15.0,1.9372337923213967,1.8,0.0,0.0,1.0043847411011977,-9.813245454502288,1.0,0.0,0.0 -440,16.0,4.9814583231121645,5.8,0.0,0.0,1.0015000510022984,-10.021017874455715,1.0,0.0,0.0 -440,17.0,1.7711851815509918,0.9,0.0,0.0,0.9925407345353818,-10.347035002769935,1.0,0.0,0.0 -440,18.0,5.258206007729507,3.4,0.0,0.0,0.9909249059198632,-10.4501941879427,1.0,0.0,0.0 -440,19.0,1.217689812316307,0.7,0.0,0.0,0.9942078656975868,-10.363584560171576,1.0,0.0,0.0 -440,20.0,9.686168961606986,11.2,0.0,0.0,0.9959329293305984,-10.15417236122112,1.0,0.0,0.0 -440,21.0,0.0,0.0,0.0,0.0,0.9963181803213154,-10.15062632526239,1.0,0.0,0.0 -440,22.0,1.7711851815509918,1.6,0.0,0.0,0.9906584238221756,-10.187630621457007,1.0,0.0,0.0 -440,23.0,4.815409712341759,6.7,0.0,0.0,0.9860490486923758,-10.27966264969782,1.0,0.0,0.0 -440,24.0,0.0,0.0,0.0,0.0,0.9796635506867016,-10.004369437037484,1.0,0.0,0.0 -440,25.0,1.9372337923213967,2.3,0.0,0.0,0.9655056548306112,-10.095854657626523,1.0,0.0,0.0 -440,26.0,0.0,0.0,0.0,0.0,0.9827740636193532,-9.749961134993862,1.0,0.0,0.0 -440,27.0,0.0,0.0,0.0,0.0,0.964912055076548,-7.547463836357614,1.0,0.0,0.0 -440,28.0,1.3283888861632438,0.9,0.0,0.0,0.968833789071254,-10.399720950500068,1.0,0.0,0.0 -440,29.0,5.8670509138876605,1.9,0.0,0.0,0.9612224119459388,-10.887197698663478,1.0,0.0,0.0 -441,0.0,0.0,0.0,163.64255018773764,0.0006403185886405,1.0,0.0,0.0,0.0,1.0 -441,1.0,12.010849512392662,12.7,8.12206762712136e-07,10.667421742886148,0.980086549414492,-3.756548342384189,0.0,1.0,0.0 -441,2.0,1.3283888861632438,1.2,0.0,0.0,0.9740061940468058,-4.926560034682984,1.0,0.0,0.0 -441,3.0,4.206564806183605,1.6,0.0,0.0,0.9673506755774196,-6.055001417759051,1.0,0.0,0.0 -441,4.0,52.13926378190733,19.0,-6.756079680359066e-10,24.280392531349406,0.9599438698587092,-9.042321604021437,0.0,1.0,0.0 -441,5.0,0.0,0.0,0.0,0.0,0.9669671407150424,-7.187734371348109,1.0,0.0,0.0 -441,6.0,12.619694418550818,10.9,0.0,0.0,0.9575788839931,-8.228051174104358,1.0,0.0,0.0 -441,7.0,16.60486107704055,30.0,-2.292233864700956e-10,30.600584652643164,0.96596201472452,-7.622540580282469,0.0,1.0,0.0 -441,8.0,0.0,0.0,0.0,0.0,1.015495622874755,-9.022038816870833,1.0,0.0,0.0 -441,9.0,3.2102731415611725,2.0,0.0,0.0,1.006540058652285,-9.974809514596403,1.0,0.0,0.0 -441,10.0,0.0,0.0,8.924924869779824e-10,22.66749557813928,1.059976234123114,-9.022038816772016,0.0,1.0,0.0 -441,11.0,6.199148135428471,7.5,0.0,0.0,1.013634339225523,-9.501224172383168,1.0,0.0,0.0 -441,12.0,0.0,0.0,-3.1885565972768607e-10,10.019789395877003,1.027289405729654,-9.50122417240773,0.0,1.0,0.0 -441,13.0,3.4316712892550467,1.6,0.0,0.0,1.0025240781658762,-9.977923356232765,1.0,0.0,0.0 -441,14.0,4.538662027724416,2.5,0.0,0.0,0.9991775309334584,-10.00601780361036,1.0,0.0,0.0 -441,15.0,1.9372337923213967,1.8,0.0,0.0,1.0043847411011977,-9.813245454502288,1.0,0.0,0.0 -441,16.0,4.9814583231121645,5.8,0.0,0.0,1.0015000510022984,-10.021017874455715,1.0,0.0,0.0 -441,17.0,1.7711851815509918,0.9,0.0,0.0,0.9925407345353818,-10.347035002769935,1.0,0.0,0.0 -441,18.0,5.258206007729507,3.4,0.0,0.0,0.9909249059198632,-10.4501941879427,1.0,0.0,0.0 -441,19.0,1.217689812316307,0.7,0.0,0.0,0.9942078656975868,-10.363584560171576,1.0,0.0,0.0 -441,20.0,9.686168961606986,11.2,0.0,0.0,0.9959329293305984,-10.15417236122112,1.0,0.0,0.0 -441,21.0,0.0,0.0,0.0,0.0,0.9963181803213154,-10.15062632526239,1.0,0.0,0.0 -441,22.0,1.7711851815509918,1.6,0.0,0.0,0.9906584238221756,-10.187630621457007,1.0,0.0,0.0 -441,23.0,4.815409712341759,6.7,0.0,0.0,0.9860490486923758,-10.27966264969782,1.0,0.0,0.0 -441,24.0,0.0,0.0,0.0,0.0,0.9796635506867016,-10.004369437037484,1.0,0.0,0.0 -441,25.0,1.9372337923213967,2.3,0.0,0.0,0.9655056548306112,-10.095854657626523,1.0,0.0,0.0 -441,26.0,0.0,0.0,0.0,0.0,0.9827740636193532,-9.749961134993862,1.0,0.0,0.0 -441,27.0,0.0,0.0,0.0,0.0,0.964912055076548,-7.547463836357614,1.0,0.0,0.0 -441,28.0,1.3283888861632438,0.9,0.0,0.0,0.968833789071254,-10.399720950500068,1.0,0.0,0.0 -441,29.0,5.8670509138876605,1.9,0.0,0.0,0.9612224119459388,-10.887197698663478,1.0,0.0,0.0 -442,0.0,0.0,0.0,164.0059662982227,0.0008805334387851,1.0,0.0,0.0,0.0,1.0 -442,1.0,12.010849512392662,12.7,9.287398285993882e-07,11.047887382146058,0.981725970049792,-3.4750855434095054,0.0,1.0,0.0 -442,2.0,1.3283888861632438,1.2,0.0,0.0,0.9704468661033834,-5.785402626959547,1.0,0.0,0.0 -442,3.0,4.206564806183605,1.6,0.0,0.0,0.9631295232220466,-7.1243357860567,1.0,0.0,0.0 -442,4.0,52.13926378190733,19.0,-5.11164042583274e-10,25.19453761747553,0.9607856979583916,-9.283685898288471,0.0,1.0,0.0 -442,5.0,0.0,0.0,0.0,0.0,0.9646828174704634,-7.946509650399519,1.0,0.0,0.0 -442,6.0,12.619694418550818,10.9,0.0,0.0,0.9564885307186796,-8.775130595372346,1.0,0.0,0.0 -442,7.0,16.60486107704055,30.0,-1.393273179144567e-10,31.88226559068777,0.9641603509356576,-8.392101910040394,0.0,1.0,0.0 -442,8.0,0.0,0.0,0.0,0.0,1.0143794437452631,-9.839859461178609,1.0,0.0,0.0 -442,9.0,3.2102731415611725,2.0,0.0,0.0,1.005491905377815,-10.821990746048636,1.0,0.0,0.0 -442,10.0,0.0,0.0,9.047508764668783e-10,23.24840282951319,1.0599989944600448,-9.839859461078326,0.0,1.0,0.0 -442,11.0,6.199148135428471,7.5,0.0,0.0,1.0129233678926184,-10.475853987607946,1.0,0.0,0.0 -442,12.0,0.0,0.0,1.9222931722377477e-10,12.071019499342928,1.029341081709131,-10.47585398759316,0.0,1.0,0.0 -442,13.0,3.4316712892550467,1.6,0.0,0.0,1.001707752629332,-10.937676430596609,1.0,0.0,0.0 -442,14.0,4.538662027724416,2.5,0.0,0.0,0.9983720538788092,-10.948205486353244,1.0,0.0,0.0 -442,15.0,1.9372337923213967,1.8,0.0,0.0,1.0036088326427528,-10.73271989579561,1.0,0.0,0.0 -442,16.0,4.9814583231121645,5.8,0.0,0.0,1.0005056869871287,-10.891235253324409,1.0,0.0,0.0 -442,17.0,1.7711851815509918,0.9,0.0,0.0,0.991648329376736,-11.256407081675665,1.0,0.0,0.0 -442,18.0,5.258206007729507,3.4,0.0,0.0,0.9899815881369084,-11.33980632365804,1.0,0.0,0.0 -442,19.0,1.217689812316307,0.7,0.0,0.0,0.9932424252309868,-11.24251697319503,1.0,0.0,0.0 -442,20.0,9.686168961606986,11.2,0.0,0.0,0.9948589850968764,-11.004449017081631,1.0,0.0,0.0 -442,21.0,0.0,0.0,0.0,0.0,0.9952398052519112,-11.001762649677696,1.0,0.0,0.0 -442,22.0,1.7711851815509918,1.6,0.0,0.0,0.989694617141334,-11.09608520543566,1.0,0.0,0.0 -442,23.0,4.815409712341759,6.7,0.0,0.0,0.9848735622966396,-11.142343236924564,1.0,0.0,0.0 -442,24.0,0.0,0.0,0.0,0.0,0.978189105443807,-10.828668427901995,1.0,0.0,0.0 -442,25.0,1.9372337923213967,2.3,0.0,0.0,0.964009228537522,-10.920433772820749,1.0,0.0,0.0 -442,26.0,0.0,0.0,0.0,0.0,0.9811139333613104,-10.550385938801602,1.0,0.0,0.0 -442,27.0,0.0,0.0,0.0,0.0,0.9627802676553175,-8.313895597534682,1.0,0.0,0.0 -442,28.0,1.3283888861632438,0.9,0.0,0.0,0.9671486455749176,-11.20237770774662,1.0,0.0,0.0 -442,29.0,5.8670509138876605,1.9,0.0,0.0,0.9595235757968972,-11.691566621130097,1.0,0.0,0.0 -443,0.0,0.0,0.0,163.64255018773764,0.0006403185886405,1.0,0.0,0.0,0.0,1.0 -443,1.0,12.010849512392662,12.7,8.12206762712136e-07,10.667421742886148,0.980086549414492,-3.756548342384189,0.0,1.0,0.0 -443,2.0,1.3283888861632438,1.2,0.0,0.0,0.9740061940468058,-4.926560034682984,1.0,0.0,0.0 -443,3.0,4.206564806183605,1.6,0.0,0.0,0.9673506755774196,-6.055001417759051,1.0,0.0,0.0 -443,4.0,52.13926378190733,19.0,-6.756079680359066e-10,24.280392531349406,0.9599438698587092,-9.042321604021437,0.0,1.0,0.0 -443,5.0,0.0,0.0,0.0,0.0,0.9669671407150424,-7.187734371348109,1.0,0.0,0.0 -443,6.0,12.619694418550818,10.9,0.0,0.0,0.9575788839931,-8.228051174104358,1.0,0.0,0.0 -443,7.0,16.60486107704055,30.0,-2.292233864700956e-10,30.600584652643164,0.96596201472452,-7.622540580282469,0.0,1.0,0.0 -443,8.0,0.0,0.0,0.0,0.0,1.015495622874755,-9.022038816870833,1.0,0.0,0.0 -443,9.0,3.2102731415611725,2.0,0.0,0.0,1.006540058652285,-9.974809514596403,1.0,0.0,0.0 -443,10.0,0.0,0.0,8.924924869779824e-10,22.66749557813928,1.059976234123114,-9.022038816772016,0.0,1.0,0.0 -443,11.0,6.199148135428471,7.5,0.0,0.0,1.013634339225523,-9.501224172383168,1.0,0.0,0.0 -443,12.0,0.0,0.0,-3.1885565972768607e-10,10.019789395877003,1.027289405729654,-9.50122417240773,0.0,1.0,0.0 -443,13.0,3.4316712892550467,1.6,0.0,0.0,1.0025240781658762,-9.977923356232765,1.0,0.0,0.0 -443,14.0,4.538662027724416,2.5,0.0,0.0,0.9991775309334584,-10.00601780361036,1.0,0.0,0.0 -443,15.0,1.9372337923213967,1.8,0.0,0.0,1.0043847411011977,-9.813245454502288,1.0,0.0,0.0 -443,16.0,4.9814583231121645,5.8,0.0,0.0,1.0015000510022984,-10.021017874455715,1.0,0.0,0.0 -443,17.0,1.7711851815509918,0.9,0.0,0.0,0.9925407345353818,-10.347035002769935,1.0,0.0,0.0 -443,18.0,5.258206007729507,3.4,0.0,0.0,0.9909249059198632,-10.4501941879427,1.0,0.0,0.0 -443,19.0,1.217689812316307,0.7,0.0,0.0,0.9942078656975868,-10.363584560171576,1.0,0.0,0.0 -443,20.0,9.686168961606986,11.2,0.0,0.0,0.9959329293305984,-10.15417236122112,1.0,0.0,0.0 -443,21.0,0.0,0.0,0.0,0.0,0.9963181803213154,-10.15062632526239,1.0,0.0,0.0 -443,22.0,1.7711851815509918,1.6,0.0,0.0,0.9906584238221756,-10.187630621457007,1.0,0.0,0.0 -443,23.0,4.815409712341759,6.7,0.0,0.0,0.9860490486923758,-10.27966264969782,1.0,0.0,0.0 -443,24.0,0.0,0.0,0.0,0.0,0.9796635506867016,-10.004369437037484,1.0,0.0,0.0 -443,25.0,1.9372337923213967,2.3,0.0,0.0,0.9655056548306112,-10.095854657626523,1.0,0.0,0.0 -443,26.0,0.0,0.0,0.0,0.0,0.9827740636193532,-9.749961134993862,1.0,0.0,0.0 -443,27.0,0.0,0.0,0.0,0.0,0.964912055076548,-7.547463836357614,1.0,0.0,0.0 -443,28.0,1.3283888861632438,0.9,0.0,0.0,0.968833789071254,-10.399720950500068,1.0,0.0,0.0 -443,29.0,5.8670509138876605,1.9,0.0,0.0,0.9612224119459388,-10.887197698663478,1.0,0.0,0.0 -444,0.0,0.0,0.0,163.64255018773764,0.0006403185886405,1.0,0.0,0.0,0.0,1.0 -444,1.0,12.010849512392662,12.7,8.12206762712136e-07,10.667421742886148,0.980086549414492,-3.756548342384189,0.0,1.0,0.0 -444,2.0,1.3283888861632438,1.2,0.0,0.0,0.9740061940468058,-4.926560034682984,1.0,0.0,0.0 -444,3.0,4.206564806183605,1.6,0.0,0.0,0.9673506755774196,-6.055001417759051,1.0,0.0,0.0 -444,4.0,52.13926378190733,19.0,-6.756079680359066e-10,24.280392531349406,0.9599438698587092,-9.042321604021437,0.0,1.0,0.0 -444,5.0,0.0,0.0,0.0,0.0,0.9669671407150424,-7.187734371348109,1.0,0.0,0.0 -444,6.0,12.619694418550818,10.9,0.0,0.0,0.9575788839931,-8.228051174104358,1.0,0.0,0.0 -444,7.0,16.60486107704055,30.0,-2.292233864700956e-10,30.600584652643164,0.96596201472452,-7.622540580282469,0.0,1.0,0.0 -444,8.0,0.0,0.0,0.0,0.0,1.015495622874755,-9.022038816870833,1.0,0.0,0.0 -444,9.0,3.2102731415611725,2.0,0.0,0.0,1.006540058652285,-9.974809514596403,1.0,0.0,0.0 -444,10.0,0.0,0.0,8.924924869779824e-10,22.66749557813928,1.059976234123114,-9.022038816772016,0.0,1.0,0.0 -444,11.0,6.199148135428471,7.5,0.0,0.0,1.013634339225523,-9.501224172383168,1.0,0.0,0.0 -444,12.0,0.0,0.0,-3.1885565972768607e-10,10.019789395877003,1.027289405729654,-9.50122417240773,0.0,1.0,0.0 -444,13.0,3.4316712892550467,1.6,0.0,0.0,1.0025240781658762,-9.977923356232765,1.0,0.0,0.0 -444,14.0,4.538662027724416,2.5,0.0,0.0,0.9991775309334584,-10.00601780361036,1.0,0.0,0.0 -444,15.0,1.9372337923213967,1.8,0.0,0.0,1.0043847411011977,-9.813245454502288,1.0,0.0,0.0 -444,16.0,4.9814583231121645,5.8,0.0,0.0,1.0015000510022984,-10.021017874455715,1.0,0.0,0.0 -444,17.0,1.7711851815509918,0.9,0.0,0.0,0.9925407345353818,-10.347035002769935,1.0,0.0,0.0 -444,18.0,5.258206007729507,3.4,0.0,0.0,0.9909249059198632,-10.4501941879427,1.0,0.0,0.0 -444,19.0,1.217689812316307,0.7,0.0,0.0,0.9942078656975868,-10.363584560171576,1.0,0.0,0.0 -444,20.0,9.686168961606986,11.2,0.0,0.0,0.9959329293305984,-10.15417236122112,1.0,0.0,0.0 -444,21.0,0.0,0.0,0.0,0.0,0.9963181803213154,-10.15062632526239,1.0,0.0,0.0 -444,22.0,1.7711851815509918,1.6,0.0,0.0,0.9906584238221756,-10.187630621457007,1.0,0.0,0.0 -444,23.0,4.815409712341759,6.7,0.0,0.0,0.9860490486923758,-10.27966264969782,1.0,0.0,0.0 -444,24.0,0.0,0.0,0.0,0.0,0.9796635506867016,-10.004369437037484,1.0,0.0,0.0 -444,25.0,1.9372337923213967,2.3,0.0,0.0,0.9655056548306112,-10.095854657626523,1.0,0.0,0.0 -444,26.0,0.0,0.0,0.0,0.0,0.9827740636193532,-9.749961134993862,1.0,0.0,0.0 -444,27.0,0.0,0.0,0.0,0.0,0.964912055076548,-7.547463836357614,1.0,0.0,0.0 -444,28.0,1.3283888861632438,0.9,0.0,0.0,0.968833789071254,-10.399720950500068,1.0,0.0,0.0 -444,29.0,5.8670509138876605,1.9,0.0,0.0,0.9612224119459388,-10.887197698663478,1.0,0.0,0.0 -445,0.0,0.0,0.0,163.64255018773764,0.0006403185886405,1.0,0.0,0.0,0.0,1.0 -445,1.0,12.010849512392662,12.7,8.12206762712136e-07,10.667421742886148,0.980086549414492,-3.756548342384189,0.0,1.0,0.0 -445,2.0,1.3283888861632438,1.2,0.0,0.0,0.9740061940468058,-4.926560034682984,1.0,0.0,0.0 -445,3.0,4.206564806183605,1.6,0.0,0.0,0.9673506755774196,-6.055001417759051,1.0,0.0,0.0 -445,4.0,52.13926378190733,19.0,-6.756079680359066e-10,24.280392531349406,0.9599438698587092,-9.042321604021437,0.0,1.0,0.0 -445,5.0,0.0,0.0,0.0,0.0,0.9669671407150424,-7.187734371348109,1.0,0.0,0.0 -445,6.0,12.619694418550818,10.9,0.0,0.0,0.9575788839931,-8.228051174104358,1.0,0.0,0.0 -445,7.0,16.60486107704055,30.0,-2.292233864700956e-10,30.600584652643164,0.96596201472452,-7.622540580282469,0.0,1.0,0.0 -445,8.0,0.0,0.0,0.0,0.0,1.015495622874755,-9.022038816870833,1.0,0.0,0.0 -445,9.0,3.2102731415611725,2.0,0.0,0.0,1.006540058652285,-9.974809514596403,1.0,0.0,0.0 -445,10.0,0.0,0.0,8.924924869779824e-10,22.66749557813928,1.059976234123114,-9.022038816772016,0.0,1.0,0.0 -445,11.0,6.199148135428471,7.5,0.0,0.0,1.013634339225523,-9.501224172383168,1.0,0.0,0.0 -445,12.0,0.0,0.0,-3.1885565972768607e-10,10.019789395877003,1.027289405729654,-9.50122417240773,0.0,1.0,0.0 -445,13.0,3.4316712892550467,1.6,0.0,0.0,1.0025240781658762,-9.977923356232765,1.0,0.0,0.0 -445,14.0,4.538662027724416,2.5,0.0,0.0,0.9991775309334584,-10.00601780361036,1.0,0.0,0.0 -445,15.0,1.9372337923213967,1.8,0.0,0.0,1.0043847411011977,-9.813245454502288,1.0,0.0,0.0 -445,16.0,4.9814583231121645,5.8,0.0,0.0,1.0015000510022984,-10.021017874455715,1.0,0.0,0.0 -445,17.0,1.7711851815509918,0.9,0.0,0.0,0.9925407345353818,-10.347035002769935,1.0,0.0,0.0 -445,18.0,5.258206007729507,3.4,0.0,0.0,0.9909249059198632,-10.4501941879427,1.0,0.0,0.0 -445,19.0,1.217689812316307,0.7,0.0,0.0,0.9942078656975868,-10.363584560171576,1.0,0.0,0.0 -445,20.0,9.686168961606986,11.2,0.0,0.0,0.9959329293305984,-10.15417236122112,1.0,0.0,0.0 -445,21.0,0.0,0.0,0.0,0.0,0.9963181803213154,-10.15062632526239,1.0,0.0,0.0 -445,22.0,1.7711851815509918,1.6,0.0,0.0,0.9906584238221756,-10.187630621457007,1.0,0.0,0.0 -445,23.0,4.815409712341759,6.7,0.0,0.0,0.9860490486923758,-10.27966264969782,1.0,0.0,0.0 -445,24.0,0.0,0.0,0.0,0.0,0.9796635506867016,-10.004369437037484,1.0,0.0,0.0 -445,25.0,1.9372337923213967,2.3,0.0,0.0,0.9655056548306112,-10.095854657626523,1.0,0.0,0.0 -445,26.0,0.0,0.0,0.0,0.0,0.9827740636193532,-9.749961134993862,1.0,0.0,0.0 -445,27.0,0.0,0.0,0.0,0.0,0.964912055076548,-7.547463836357614,1.0,0.0,0.0 -445,28.0,1.3283888861632438,0.9,0.0,0.0,0.968833789071254,-10.399720950500068,1.0,0.0,0.0 -445,29.0,5.8670509138876605,1.9,0.0,0.0,0.9612224119459388,-10.887197698663478,1.0,0.0,0.0 -446,0.0,0.0,0.0,162.27135184750864,3.881722498988438e-07,1.0,0.0,0.0,0.0,1.0 -446,1.0,12.010849512392662,12.7,1.7058733713707208,-8.023963009523552,0.9789337905119168,-3.6775069900051793,0.0,1.0,0.0 -446,2.0,1.3283888861632438,1.2,0.0,0.0,0.97796948564776,-4.999701731849995,1.0,0.0,0.0 -446,3.0,4.206564806183605,1.6,0.0,0.0,0.9722459614453454,-6.143821350579597,1.0,0.0,0.0 -446,4.0,52.13926378190733,19.0,-3.939858948970289e-09,39.99999932672273,0.9779631479316588,-9.17933454248756,0.0,1.0,0.0 -446,5.0,0.0,0.0,0.0,0.0,0.972083720775692,-7.124183547304372,1.0,0.0,0.0 -446,6.0,12.619694418550818,10.9,0.0,0.0,0.9680890203475871,-8.23555316343332,1.0,0.0,0.0 -446,7.0,16.60486107704055,30.0,-7.006339341115333e-09,39.99999956123082,0.9744964419822836,-7.621688132516191,0.0,1.0,0.0 -446,8.0,0.0,0.0,0.0,0.0,1.0347816148586924,-12.171241075864842,1.0,0.0,0.0 -446,9.0,3.2102731415611725,2.0,0.0,0.0,1.0214449692240983,-12.171241075632445,1.0,0.0,0.0 -446,10.0,0.0,0.0,-3.8975148861361084e-09,12.851676685413032,1.0599999993143068,-12.171241076288306,0.0,1.0,0.0 -446,11.0,6.199148135428471,7.5,0.0,0.0,1.0368797023739602,-10.330956283161118,1.0,0.0,0.0 -446,12.0,0.0,0.0,-1.5003121493066841e-09,17.505367740345562,1.0599999994025422,-10.330956283270616,0.0,1.0,0.0 -446,13.0,3.4316712892550467,1.6,0.0,0.0,1.0259895706262951,-10.812194049896704,1.0,0.0,0.0 -446,14.0,4.538662027724416,2.5,0.0,0.0,1.0225033837279045,-10.863804667069944,1.0,0.0,0.0 -446,15.0,1.9372337923213967,1.8,0.0,0.0,1.0231151480379426,-11.20420004744254,1.0,0.0,0.0 -446,16.0,4.9814583231121645,5.8,0.0,0.0,1.017949475971132,-11.96726469697167,1.0,0.0,0.0 -446,17.0,1.7711851815509918,0.9,0.0,0.0,1.0187034252176426,-11.02356099665559,1.0,0.0,0.0 -446,18.0,5.258206007729507,3.4,0.0,0.0,1.002708935445221,-12.848993331025191,1.0,0.0,0.0 -446,19.0,1.217689812316307,0.7,0.0,0.0,1.006800541152735,-12.71166987526898,1.0,0.0,0.0 -446,20.0,9.686168961606986,11.2,0.0,0.0,1.011082205633527,-12.21353904352283,1.0,0.0,0.0 -446,21.0,0.0,0.0,0.0,0.0,1.0115041272418377,-12.167763049183376,1.0,0.0,0.0 -446,22.0,1.7711851815509918,1.6,0.0,0.0,1.0113060705398322,-11.292334195461445,1.0,0.0,0.0 -446,23.0,4.815409712341759,6.7,0.0,0.0,1.0030772891300996,-11.728185160377768,1.0,0.0,0.0 -446,24.0,0.0,0.0,0.0,0.0,0.993415686991908,-10.8408565368382,1.0,0.0,0.0 -446,25.0,1.9372337923213967,2.3,0.0,0.0,0.9794595259652554,-10.929789998867737,1.0,0.0,0.0 -446,26.0,0.0,0.0,0.0,0.0,0.9942573190797656,-10.208804854514405,1.0,0.0,0.0 -446,27.0,0.0,0.0,0.0,0.0,0.9691416300003912,-7.536601734168289,1.0,0.0,0.0 -446,28.0,1.3283888861632438,0.9,0.0,0.0,0.96442089867467,-11.626775017514085,1.0,0.0,0.0 -446,29.0,5.8670509138876605,1.9,0.0,0.0,0.9400000016895672,-13.01970146029748,1.0,0.0,0.0 -447,0.0,0.0,0.0,163.98173307050308,0.0110068835678767,1.0,0.0,0.0,0.0,1.0 -447,1.0,12.010849512392662,12.7,8.01349597435725e-06,11.901053589955062,0.979889140830276,-3.84508087833553,0.0,1.0,0.0 -447,2.0,1.3283888861632438,1.2,0.0,0.0,0.974127538170674,-4.706597302538039,1.0,0.0,0.0 -447,3.0,4.206564806183605,1.6,0.0,0.0,0.9674685264740992,-5.781737658055119,1.0,0.0,0.0 -447,4.0,52.13926378190733,19.0,3.866561277614362e-09,22.995406502160648,0.9602307773626404,-10.325005618960216,0.0,1.0,0.0 -447,5.0,0.0,0.0,0.0,0.0,0.9662496071841056,-6.816419196619611,1.0,0.0,0.0 -447,6.0,12.619694418550818,10.9,0.0,0.0,0.9539801355922432,-7.29158138974164,1.0,0.0,0.0 -447,7.0,16.60486107704055,30.0,-6.475978516651411e-09,34.501456103797246,0.9666383286908043,-7.278418549648443,0.0,1.0,0.0 -447,8.0,0.0,0.0,0.0,0.0,1.0128675755727496,-8.792645180944072,1.0,0.0,0.0 -447,9.0,3.2102731415611725,2.0,0.0,0.0,1.0016469110426387,-9.823361338610464,1.0,0.0,0.0 -447,10.0,0.0,0.0,-1.5540176347031e-08,23.94554769504576,1.0598612180944054,-8.792645182669276,0.0,1.0,0.0 -447,11.0,6.199148135428471,7.5,0.0,0.0,1.0159965876837969,-8.931981438272595,1.0,0.0,0.0 -447,12.0,0.0,0.0,1.1063514668107923e-09,8.165013910176858,1.0271257213782667,-8.931981438187552,0.0,1.0,0.0 -447,13.0,3.4316712892550467,1.6,0.0,0.0,0.9908064325027016,-10.099991420428202,1.0,0.0,0.0 -447,14.0,4.538662027724416,2.5,0.0,0.0,0.9692416199165432,-10.505549250167078,1.0,0.0,0.0 -447,15.0,1.9372337923213967,1.8,0.0,0.0,1.003314777684412,-9.406938443464346,1.0,0.0,0.0 -447,16.0,4.9814583231121645,5.8,0.0,0.0,0.997874098391537,-9.795265310615866,1.0,0.0,0.0 -447,17.0,1.7711851815509918,0.9,0.0,0.0,0.971279205633939,-10.63292407373003,1.0,0.0,0.0 -447,18.0,5.258206007729507,3.4,0.0,0.0,0.9748460880111116,-10.604438779493846,1.0,0.0,0.0 -447,19.0,1.217689812316307,0.7,0.0,0.0,0.9809379775323926,-10.445067019362243,1.0,0.0,0.0 -447,20.0,9.686168961606986,11.2,0.0,0.0,0.990538207650045,-10.01146831607838,1.0,0.0,0.0 -447,21.0,0.0,0.0,0.0,0.0,0.9907835809093876,-10.009920391845728,1.0,0.0,0.0 -447,22.0,1.7711851815509918,1.6,0.0,0.0,0.964049690101943,-10.626824605050455,1.0,0.0,0.0 -447,23.0,4.815409712341759,6.7,0.0,0.0,0.9785197122424504,-10.155928219551344,1.0,0.0,0.0 -447,24.0,0.0,0.0,0.0,0.0,0.9748985271616022,-9.825981925323733,1.0,0.0,0.0 -447,25.0,1.9372337923213967,2.3,0.0,0.0,0.9606693435365956,-9.918377117583075,1.0,0.0,0.0 -447,26.0,0.0,0.0,0.0,0.0,0.9797457757407172,-9.533989608394014,1.0,0.0,0.0 -447,27.0,0.0,0.0,0.0,0.0,0.9641540216331496,-7.193265872741022,1.0,0.0,0.0 -447,28.0,1.3283888861632438,0.9,0.0,0.0,0.9657598043435556,-10.187829491288872,1.0,0.0,0.0 -447,29.0,5.8670509138876605,1.9,0.0,0.0,0.9581234118538002,-10.678436323684746,1.0,0.0,0.0 -448,0.0,0.0,0.0,116.32124216023266,1.999967835786265e-06,1.0,0.0,0.0,0.0,1.0 -448,1.0,12.010849512392662,12.7,45.92495351572119,14.036858077007636,0.985439643812083,-2.387367799595845,0.0,1.0,0.0 -448,2.0,1.3283888861632438,1.2,0.0,0.0,0.9794189879431564,-4.206740694291039,1.0,0.0,0.0 -448,3.0,4.206564806183605,1.6,0.0,0.0,0.973933045537976,-5.159442640986255,1.0,0.0,0.0 -448,4.0,52.13926378190733,19.0,0.0,0.0,0.940000000741629,-7.427994716946145,0.0,1.0,0.0 -448,5.0,0.0,0.0,0.0,0.0,0.9728494482889678,-6.147370676141055,1.0,0.0,0.0 -448,6.0,12.619694418550818,10.9,0.0,0.0,0.9527809079940596,-6.971852140114419,1.0,0.0,0.0 -448,7.0,16.60486107704055,30.0,-4.7471090545301906e-09,39.99999561985206,0.9754441364657204,-6.624594133380537,0.0,1.0,0.0 -448,8.0,0.0,0.0,0.0,0.0,1.0221423996706465,-8.029840912849629,1.0,0.0,0.0 -448,9.0,3.2102731415611725,2.0,0.0,0.0,1.017047336345327,-9.003407914049774,1.0,0.0,0.0 -448,10.0,0.0,0.0,-6.059826565046041e-09,19.29280653315581,1.059999982912036,-8.02984091351617,0.0,1.0,0.0 -448,11.0,6.199148135428471,7.5,0.0,0.0,1.0338114775146188,-8.69356777261105,1.0,0.0,0.0 -448,12.0,0.0,0.0,-8.280334923566031e-09,19.82843903611404,1.0599999823382915,-8.693567773217161,0.0,1.0,0.0 -448,13.0,3.4316712892550467,1.6,0.0,0.0,1.0215370531065673,-9.16412208192934,1.0,0.0,0.0 -448,14.0,4.538662027724416,2.5,0.0,0.0,1.016836942368515,-9.172305288899816,1.0,0.0,0.0 -448,15.0,1.9372337923213967,1.8,0.0,0.0,1.020578876815589,-8.911717737987265,1.0,0.0,0.0 -448,16.0,4.9814583231121645,5.8,0.0,0.0,1.0138093658796334,-9.07579825825978,1.0,0.0,0.0 -448,17.0,1.7711851815509918,0.9,0.0,0.0,1.0078269175919687,-9.453604474073105,1.0,0.0,0.0 -448,18.0,5.258206007729507,3.4,0.0,0.0,1.0047683095124906,-9.524372904059346,1.0,0.0,0.0 -448,19.0,1.217689812316307,0.7,0.0,0.0,1.0072344722615147,-9.42434018116882,1.0,0.0,0.0 -448,20.0,9.686168961606986,11.2,0.0,0.0,1.006634627451838,-9.22169664955498,1.0,0.0,0.0 -448,21.0,0.0,0.0,0.0,0.0,1.0070373054876418,-9.231975695327709,1.0,0.0,0.0 -448,22.0,1.7711851815509918,1.6,0.0,0.0,1.0054045932453552,-9.393029427069164,1.0,0.0,0.0 -448,23.0,4.815409712341759,6.7,0.0,0.0,0.99682280624486,-9.544931793150662,1.0,0.0,0.0 -448,24.0,0.0,0.0,0.0,0.0,0.9852610550858452,-9.664729004970738,1.0,0.0,0.0 -448,25.0,1.9372337923213967,2.3,0.0,0.0,0.9711859809746968,-9.755162430087392,1.0,0.0,0.0 -448,26.0,0.0,0.0,0.0,0.0,0.9919871561053922,-8.115930922631783,1.0,0.0,0.0 -448,27.0,0.0,0.0,0.0,0.0,0.9721900524058832,-6.454579060161947,1.0,0.0,0.0 -448,28.0,1.3283888861632438,0.9,0.0,0.0,0.9781840375533872,-8.753511098565061,1.0,0.0,0.0 -448,29.0,5.8670509138876605,1.9,0.0,0.0,0.9706477379403908,-9.231649378262333,1.0,0.0,0.0 -449,0.0,0.0,0.0,116.26393830501908,2.229465234648842e-06,1.0,0.0,0.0,0.0,1.0 -449,1.0,12.010849512392662,12.7,45.95551882218692,13.934689199993317,0.985424415816284,-2.387257247202361,0.0,1.0,0.0 -449,2.0,1.3283888861632438,1.2,0.0,0.0,0.9794812070133478,-4.201201367661652,1.0,0.0,0.0 -449,3.0,4.206564806183605,1.6,0.0,0.0,0.9740092208178608,-5.152554481005434,1.0,0.0,0.0 -449,4.0,52.13926378190733,19.0,0.0,0.0,0.9400000007689782,-7.432333860398862,0.0,1.0,0.0 -449,5.0,0.0,0.0,0.0,0.0,0.9728613348398684,-6.156452634299707,1.0,0.0,0.0 -449,6.0,12.619694418550818,10.9,0.0,0.0,0.9527872254503328,-6.97903866489627,1.0,0.0,0.0 -449,7.0,16.60486107704055,30.0,-5.67464185066437e-09,39.99999486344099,0.9754126469506756,-6.644111398148512,0.0,1.0,0.0 -449,8.0,0.0,0.0,0.0,0.0,1.0221914822067708,-7.939823876371617,1.0,0.0,0.0 -449,9.0,3.2102731415611725,2.0,0.0,0.0,1.0170977533879992,-8.862117340197292,1.0,0.0,0.0 -449,10.0,0.0,0.0,-1.2521295687030794e-08,19.267795400750494,1.0599999868581254,-7.939823877748815,0.0,1.0,0.0 -449,11.0,6.199148135428471,7.5,0.0,0.0,1.0338220417392092,-8.582285076104133,1.0,0.0,0.0 -449,12.0,0.0,0.0,-1.2265082054333124e-08,19.82043491581474,1.0599999752579237,-8.582285077001915,0.0,1.0,0.0 -449,13.0,3.4316712892550467,1.6,0.0,0.0,1.021637680017881,-9.032635390785035,1.0,0.0,0.0 -449,14.0,4.538662027724416,2.5,0.0,0.0,1.017165645749026,-9.022843813429247,1.0,0.0,0.0 -449,15.0,1.9372337923213967,1.8,0.0,0.0,1.020627056153282,-8.78771519750781,1.0,0.0,0.0 -449,16.0,4.9814583231121645,5.8,0.0,0.0,1.013852752800484,-8.939901174934342,1.0,0.0,0.0 -449,17.0,1.7711851815509918,0.9,0.0,0.0,1.0080589386800596,-9.30681589013333,1.0,0.0,0.0 -449,18.0,5.258206007729507,3.4,0.0,0.0,1.0049426540270252,-9.379241562635578,1.0,0.0,0.0 -449,19.0,1.217689812316307,0.7,0.0,0.0,1.0073776115918691,-9.280122603622754,1.0,0.0,0.0 -449,20.0,9.686168961606986,11.2,0.0,0.0,1.0069342439305355,-9.044111815657466,1.0,0.0,0.0 -449,21.0,0.0,0.0,0.0,0.0,1.007418893955981,-9.04284061410255,1.0,0.0,0.0 -449,22.0,1.7711851815509918,1.6,0.0,0.0,1.006358199149668,-9.16379008246561,1.0,0.0,0.0 -449,23.0,4.815409712341759,6.7,0.0,0.0,0.9985848232973736,-9.207078747512664,1.0,0.0,0.0 -449,24.0,0.0,0.0,0.0,0.0,0.9903259788524298,-8.914391800698406,1.0,0.0,0.0 -449,25.0,1.9372337923213967,2.3,0.0,0.0,0.9763250034889314,-9.003889138031669,1.0,0.0,0.0 -449,26.0,0.0,0.0,0.0,0.0,0.992187606310234,-8.652889033132215,1.0,0.0,0.0 -449,27.0,0.0,0.0,0.0,0.0,0.9719299317189274,-6.523815921217238,1.0,0.0,0.0 -449,28.0,1.3283888861632438,0.9,0.0,0.0,0.9783874410350856,-9.290208052393492,1.0,0.0,0.0 -449,29.0,5.8670509138876605,1.9,0.0,0.0,0.9708527579374538,-9.768146183257738,1.0,0.0,0.0 -450,0.0,0.0,0.0,163.64255018773764,0.0006403185886405,1.0,0.0,0.0,0.0,1.0 -450,1.0,12.010849512392662,12.7,8.12206762712136e-07,10.667421742886148,0.980086549414492,-3.756548342384189,0.0,1.0,0.0 -450,2.0,1.3283888861632438,1.2,0.0,0.0,0.9740061940468058,-4.926560034682984,1.0,0.0,0.0 -450,3.0,4.206564806183605,1.6,0.0,0.0,0.9673506755774196,-6.055001417759051,1.0,0.0,0.0 -450,4.0,52.13926378190733,19.0,-6.756079680359066e-10,24.280392531349406,0.9599438698587092,-9.042321604021437,0.0,1.0,0.0 -450,5.0,0.0,0.0,0.0,0.0,0.9669671407150424,-7.187734371348109,1.0,0.0,0.0 -450,6.0,12.619694418550818,10.9,0.0,0.0,0.9575788839931,-8.228051174104358,1.0,0.0,0.0 -450,7.0,16.60486107704055,30.0,-2.292233864700956e-10,30.600584652643164,0.96596201472452,-7.622540580282469,0.0,1.0,0.0 -450,8.0,0.0,0.0,0.0,0.0,1.015495622874755,-9.022038816870833,1.0,0.0,0.0 -450,9.0,3.2102731415611725,2.0,0.0,0.0,1.006540058652285,-9.974809514596403,1.0,0.0,0.0 -450,10.0,0.0,0.0,8.924924869779824e-10,22.66749557813928,1.059976234123114,-9.022038816772016,0.0,1.0,0.0 -450,11.0,6.199148135428471,7.5,0.0,0.0,1.013634339225523,-9.501224172383168,1.0,0.0,0.0 -450,12.0,0.0,0.0,-3.1885565972768607e-10,10.019789395877003,1.027289405729654,-9.50122417240773,0.0,1.0,0.0 -450,13.0,3.4316712892550467,1.6,0.0,0.0,1.0025240781658762,-9.977923356232765,1.0,0.0,0.0 -450,14.0,4.538662027724416,2.5,0.0,0.0,0.9991775309334584,-10.00601780361036,1.0,0.0,0.0 -450,15.0,1.9372337923213967,1.8,0.0,0.0,1.0043847411011977,-9.813245454502288,1.0,0.0,0.0 -450,16.0,4.9814583231121645,5.8,0.0,0.0,1.0015000510022984,-10.021017874455715,1.0,0.0,0.0 -450,17.0,1.7711851815509918,0.9,0.0,0.0,0.9925407345353818,-10.347035002769935,1.0,0.0,0.0 -450,18.0,5.258206007729507,3.4,0.0,0.0,0.9909249059198632,-10.4501941879427,1.0,0.0,0.0 -450,19.0,1.217689812316307,0.7,0.0,0.0,0.9942078656975868,-10.363584560171576,1.0,0.0,0.0 -450,20.0,9.686168961606986,11.2,0.0,0.0,0.9959329293305984,-10.15417236122112,1.0,0.0,0.0 -450,21.0,0.0,0.0,0.0,0.0,0.9963181803213154,-10.15062632526239,1.0,0.0,0.0 -450,22.0,1.7711851815509918,1.6,0.0,0.0,0.9906584238221756,-10.187630621457007,1.0,0.0,0.0 -450,23.0,4.815409712341759,6.7,0.0,0.0,0.9860490486923758,-10.27966264969782,1.0,0.0,0.0 -450,24.0,0.0,0.0,0.0,0.0,0.9796635506867016,-10.004369437037484,1.0,0.0,0.0 -450,25.0,1.9372337923213967,2.3,0.0,0.0,0.9655056548306112,-10.095854657626523,1.0,0.0,0.0 -450,26.0,0.0,0.0,0.0,0.0,0.9827740636193532,-9.749961134993862,1.0,0.0,0.0 -450,27.0,0.0,0.0,0.0,0.0,0.964912055076548,-7.547463836357614,1.0,0.0,0.0 -450,28.0,1.3283888861632438,0.9,0.0,0.0,0.968833789071254,-10.399720950500068,1.0,0.0,0.0 -450,29.0,5.8670509138876605,1.9,0.0,0.0,0.9612224119459388,-10.887197698663478,1.0,0.0,0.0 -451,0.0,0.0,0.0,165.6928724970514,0.0006317246155518,1.0,0.0,0.0,0.0,1.0 -451,1.0,12.010849512392662,12.7,9.335989344669416e-07,8.87742552338905,0.9848817532188532,-2.660042174155308,0.0,1.0,0.0 -451,2.0,1.3283888861632438,1.2,0.0,0.0,0.9661103887299202,-8.340782572553536,1.0,0.0,0.0 -451,3.0,4.206564806183605,1.6,0.0,0.0,0.9586634562938774,-10.3056731545335,1.0,0.0,0.0 -451,4.0,52.13926378190733,19.0,7.489697159812022e-10,31.28660351793988,0.9653731249926744,-10.702967194566192,0.0,1.0,0.0 -451,5.0,0.0,0.0,0.0,0.0,0.9582332675694964,-11.534248434579256,1.0,0.0,0.0 -451,6.0,12.619694418550818,10.9,0.0,0.0,0.9540124211788912,-11.46806974204264,1.0,0.0,0.0 -451,7.0,16.60486107704055,30.0,1.1365138753209163e-09,38.82401909150335,0.9603321826541256,-12.043115293777534,0.0,1.0,0.0 -451,8.0,0.0,0.0,0.0,0.0,1.0294377043046554,-16.35296103315043,1.0,0.0,0.0 -451,9.0,3.2102731415611725,2.0,0.0,0.0,1.0147087026531794,-16.35296103328566,1.0,0.0,0.0 -451,10.0,0.0,0.0,2.2413434661332483e-09,14.157100042339636,1.0572889073978011,-16.35296103290501,0.0,1.0,0.0 -451,11.0,6.199148135428471,7.5,0.0,0.0,1.031775828588466,-14.674120855701805,1.0,0.0,0.0 -451,12.0,0.0,0.0,9.016308826590185e-10,21.35249052166944,1.0599778212445374,-14.674120855635676,0.0,1.0,0.0 -451,13.0,3.4316712892550467,1.6,0.0,0.0,1.0210322359549102,-15.204157907651926,1.0,0.0,0.0 -451,14.0,4.538662027724416,2.5,0.0,0.0,1.0174164601869604,-15.30429540206828,1.0,0.0,0.0 -451,15.0,1.9372337923213967,1.8,0.0,0.0,1.0174062256623555,-15.47567898534141,1.0,0.0,0.0 -451,16.0,4.9814583231121645,5.8,0.0,0.0,1.0114749406756032,-16.179313823036768,1.0,0.0,0.0 -451,17.0,1.7711851815509918,0.9,0.0,0.0,1.0072346383172637,-16.011103976969885,1.0,0.0,0.0 -451,18.0,5.258206007729507,3.4,0.0,0.0,1.0035249743330583,-16.33732766941109,1.0,0.0,0.0 -451,19.0,1.217689812316307,0.7,0.0,0.0,1.005649359343884,-16.371813489400676,1.0,0.0,0.0 -451,20.0,9.686168961606986,11.2,0.0,0.0,0.997595185149172,-16.519108036573474,1.0,0.0,0.0 -451,21.0,0.0,0.0,0.0,0.0,0.995904233818014,-16.50922721330145,1.0,0.0,0.0 -451,22.0,1.7711851815509918,1.6,0.0,0.0,1.0124730358403464,-15.414302761930088,1.0,0.0,0.0 -451,23.0,4.815409712341759,6.7,0.0,0.0,0.9824756070600804,-16.33766062868361,1.0,0.0,0.0 -451,24.0,0.0,0.0,0.0,0.0,0.9762019318128182,-15.437678960958484,1.0,0.0,0.0 -451,25.0,1.9372337923213967,2.3,0.0,0.0,0.9619923202919988,-15.529823895845723,1.0,0.0,0.0 -451,26.0,0.0,0.0,0.0,0.0,0.9792788370395372,-14.79341597047264,1.0,0.0,0.0 -451,27.0,0.0,0.0,0.0,0.0,0.9570298487580242,-11.99327384825575,1.0,0.0,0.0 -451,28.0,1.3283888861632438,0.9,0.0,0.0,0.9652857921283556,-15.447888405348875,1.0,0.0,0.0 -451,29.0,5.8670509138876605,1.9,0.0,0.0,0.9576455273940264,-15.938980588975069,1.0,0.0,0.0 -452,0.0,0.0,0.0,163.64255018773764,0.0006403185886405,1.0,0.0,0.0,0.0,1.0 -452,1.0,12.010849512392662,12.7,8.12206762712136e-07,10.667421742886148,0.980086549414492,-3.756548342384189,0.0,1.0,0.0 -452,2.0,1.3283888861632438,1.2,0.0,0.0,0.9740061940468058,-4.926560034682984,1.0,0.0,0.0 -452,3.0,4.206564806183605,1.6,0.0,0.0,0.9673506755774196,-6.055001417759051,1.0,0.0,0.0 -452,4.0,52.13926378190733,19.0,-6.756079680359066e-10,24.280392531349406,0.9599438698587092,-9.042321604021437,0.0,1.0,0.0 -452,5.0,0.0,0.0,0.0,0.0,0.9669671407150424,-7.187734371348109,1.0,0.0,0.0 -452,6.0,12.619694418550818,10.9,0.0,0.0,0.9575788839931,-8.228051174104358,1.0,0.0,0.0 -452,7.0,16.60486107704055,30.0,-2.292233864700956e-10,30.600584652643164,0.96596201472452,-7.622540580282469,0.0,1.0,0.0 -452,8.0,0.0,0.0,0.0,0.0,1.015495622874755,-9.022038816870833,1.0,0.0,0.0 -452,9.0,3.2102731415611725,2.0,0.0,0.0,1.006540058652285,-9.974809514596403,1.0,0.0,0.0 -452,10.0,0.0,0.0,8.924924869779824e-10,22.66749557813928,1.059976234123114,-9.022038816772016,0.0,1.0,0.0 -452,11.0,6.199148135428471,7.5,0.0,0.0,1.013634339225523,-9.501224172383168,1.0,0.0,0.0 -452,12.0,0.0,0.0,-3.1885565972768607e-10,10.019789395877003,1.027289405729654,-9.50122417240773,0.0,1.0,0.0 -452,13.0,3.4316712892550467,1.6,0.0,0.0,1.0025240781658762,-9.977923356232765,1.0,0.0,0.0 -452,14.0,4.538662027724416,2.5,0.0,0.0,0.9991775309334584,-10.00601780361036,1.0,0.0,0.0 -452,15.0,1.9372337923213967,1.8,0.0,0.0,1.0043847411011977,-9.813245454502288,1.0,0.0,0.0 -452,16.0,4.9814583231121645,5.8,0.0,0.0,1.0015000510022984,-10.021017874455715,1.0,0.0,0.0 -452,17.0,1.7711851815509918,0.9,0.0,0.0,0.9925407345353818,-10.347035002769935,1.0,0.0,0.0 -452,18.0,5.258206007729507,3.4,0.0,0.0,0.9909249059198632,-10.4501941879427,1.0,0.0,0.0 -452,19.0,1.217689812316307,0.7,0.0,0.0,0.9942078656975868,-10.363584560171576,1.0,0.0,0.0 -452,20.0,9.686168961606986,11.2,0.0,0.0,0.9959329293305984,-10.15417236122112,1.0,0.0,0.0 -452,21.0,0.0,0.0,0.0,0.0,0.9963181803213154,-10.15062632526239,1.0,0.0,0.0 -452,22.0,1.7711851815509918,1.6,0.0,0.0,0.9906584238221756,-10.187630621457007,1.0,0.0,0.0 -452,23.0,4.815409712341759,6.7,0.0,0.0,0.9860490486923758,-10.27966264969782,1.0,0.0,0.0 -452,24.0,0.0,0.0,0.0,0.0,0.9796635506867016,-10.004369437037484,1.0,0.0,0.0 -452,25.0,1.9372337923213967,2.3,0.0,0.0,0.9655056548306112,-10.095854657626523,1.0,0.0,0.0 -452,26.0,0.0,0.0,0.0,0.0,0.9827740636193532,-9.749961134993862,1.0,0.0,0.0 -452,27.0,0.0,0.0,0.0,0.0,0.964912055076548,-7.547463836357614,1.0,0.0,0.0 -452,28.0,1.3283888861632438,0.9,0.0,0.0,0.968833789071254,-10.399720950500068,1.0,0.0,0.0 -452,29.0,5.8670509138876605,1.9,0.0,0.0,0.9612224119459388,-10.887197698663478,1.0,0.0,0.0 -453,0.0,0.0,0.0,163.48384368672345,0.0006363256924046,1.0,0.0,0.0,0.0,1.0 -453,1.0,11.99967612916754,12.7,8.081697785137509e-07,10.65131850506438,0.9801015797343906,-3.752797033898128,0.0,1.0,0.0 -453,2.0,1.3271531202765945,1.2,0.0,0.0,0.974026517873655,-4.92165501042138,1.0,0.0,0.0 -453,3.0,4.2026515475425485,1.6,0.0,0.0,0.9673748087072316,-6.04892779916866,1.0,0.0,0.0 -453,4.0,52.09075997085633,19.0,-7.461174849936594e-10,24.270959792999165,0.959974735556004,-9.03327858693303,0.0,1.0,0.0 -453,5.0,0.0,0.0,0.0,0.0,0.966993736104699,-7.180575078077855,1.0,0.0,0.0 -453,6.0,12.607954642627648,10.9,0.0,0.0,0.9576093935749044,-8.219757331640459,1.0,0.0,0.0 -453,7.0,16.58941400345743,30.0,-2.8165422634759536e-10,30.59580365761351,0.9659888497060344,-7.614937569887765,0.0,1.0,0.0 -453,8.0,0.0,0.0,0.0,0.0,1.0155117725254654,-9.013117197044377,1.0,0.0,0.0 -453,9.0,3.207286707335103,2.0,0.0,0.0,1.006558565914186,-9.964981417378024,1.0,0.0,0.0 -453,10.0,0.0,0.0,8.780421100110991e-10,22.65883710641557,1.0599754270395851,-9.013117196947162,0.0,1.0,0.0 -453,11.0,6.19338122795744,7.5,0.0,0.0,1.0136432375719937,-9.491804945269209,1.0,0.0,0.0 -453,12.0,0.0,0.0,-3.8459568816344e-10,10.008115161484646,1.0272824861861662,-9.491804945298837,0.0,1.0,0.0 -453,13.0,3.4284788940478688,1.6,0.0,0.0,1.0025387556959937,-9.967924311715574,1.0,0.0,0.0 -453,14.0,4.534439827611697,2.5,0.0,0.0,0.9991945802113656,-9.995948090347955,1.0,0.0,0.0 -453,15.0,1.9354316337367,1.8,0.0,0.0,1.0043997929191206,-9.803457547368222,1.0,0.0,0.0 -453,16.0,4.976824201037229,5.8,0.0,0.0,1.0015185007350165,-10.011039597754795,1.0,0.0,0.0 -453,17.0,1.769537493702126,0.9,0.0,0.0,0.9925623455054162,-10.33658140745847,1.0,0.0,0.0 -453,18.0,5.253314434428186,3.4,0.0,0.0,0.9909480913739253,-10.439639077639706,1.0,0.0,0.0 -453,19.0,1.2165570269202115,0.7,0.0,0.0,0.9942301049547082,-10.3531760539755,1.0,0.0,0.0 -453,20.0,9.6771581686835,11.2,0.0,0.0,0.9959547184649667,-10.14399804707735,1.0,0.0,0.0 -453,21.0,0.0,0.0,0.0,0.0,0.9963399178816232,-10.140467150568655,1.0,0.0,0.0 -453,22.0,1.769537493702126,1.6,0.0,0.0,0.9906803454277572,-10.177291439518122,1.0,0.0,0.0 -453,23.0,4.810930061002654,6.7,0.0,0.0,0.986075069560684,-10.269223673860562,1.0,0.0,0.0 -453,24.0,0.0,0.0,0.0,0.0,0.9796922554767068,-9.994176774567435,1.0,0.0,0.0 -453,25.0,1.9354316337367,2.3,0.0,0.0,0.9655396173185712,-10.085241295578442,1.0,0.0,0.0 -453,26.0,0.0,0.0,0.0,0.0,0.9828021791034626,-9.74014803446277,1.0,0.0,0.0 -453,27.0,0.0,0.0,0.0,0.0,0.9649401261072496,-7.539927330117572,1.0,0.0,0.0 -453,28.0,1.3271531202765945,0.9,0.0,0.0,0.9688699343707794,-10.389085078705136,1.0,0.0,0.0 -453,29.0,5.861592947888291,1.9,0.0,0.0,0.9612637300354816,-10.87599695946528,1.0,0.0,0.0 -454,0.0,0.0,0.0,163.79363282307636,0.00647820249009,1.0,0.0,0.0,0.0,1.0 -454,1.0,11.99967612916754,12.7,3.1925385325173338e-06,23.91415678079925,0.9816360708927724,-3.7935563325890977,0.0,1.0,0.0 -454,2.0,1.3271531202765945,1.2,0.0,0.0,0.9694503954994717,-4.855471299108515,1.0,0.0,0.0 -454,3.0,4.2026515475425485,1.6,0.0,0.0,0.961725889712591,-5.968882768433669,1.0,0.0,0.0 -454,4.0,52.09075997085633,19.0,-2.136665665515481e-09,32.10698577145541,0.9629288434457836,-9.128175059811504,0.0,1.0,0.0 -454,5.0,0.0,0.0,0.0,0.0,0.95537213303717,-6.990027881504103,1.0,0.0,0.0 -454,6.0,12.607954642627648,10.9,0.0,0.0,0.9519228059039616,-8.14311271224755,1.0,0.0,0.0 -454,7.0,16.58941400345743,30.0,0.0,0.0,0.9400211856737308,-7.207918517468301,0.0,1.0,0.0 -454,8.0,0.0,0.0,0.0,0.0,1.0117525080592198,-8.818134127762695,1.0,0.0,0.0 -454,9.0,3.207286707335103,2.0,0.0,0.0,1.0056703569291283,-9.757110358732769,1.0,0.0,0.0 -454,10.0,0.0,0.0,-4.02711782161288e-09,23.999622473940494,1.0588952402650074,-8.81813412821067,0.0,1.0,0.0 -454,11.0,6.19338122795744,7.5,0.0,0.0,1.0260367011371927,-9.517746867642964,1.0,0.0,0.0 -454,12.0,0.0,0.0,-3.2668203085699723e-09,23.99783183241488,1.0577979322211248,-9.5177468678844,0.0,1.0,0.0 -454,13.0,3.4284788940478688,1.6,0.0,0.0,1.0131826615725337,-9.973435123266528,1.0,0.0,0.0 -454,14.0,4.534439827611697,2.5,0.0,0.0,1.008128323456803,-9.949193552378317,1.0,0.0,0.0 -454,15.0,1.9354316337367,1.8,0.0,0.0,1.011242287154691,-9.700048382390692,1.0,0.0,0.0 -454,16.0,4.976824201037229,5.8,0.0,0.0,1.003009240801782,-9.8447742686006,1.0,0.0,0.0 -454,17.0,1.769537493702126,0.9,0.0,0.0,0.9980921160393428,-10.228251861587662,1.0,0.0,0.0 -454,18.0,5.253314434428186,3.4,0.0,0.0,0.9944469213587962,-10.29601983405644,1.0,0.0,0.0 -454,19.0,1.2165570269202115,0.7,0.0,0.0,0.9966445954810332,-10.19165289213231,1.0,0.0,0.0 -454,20.0,9.6771581686835,11.2,0.0,0.0,0.9952480781563706,-9.941947422038515,1.0,0.0,0.0 -454,21.0,0.0,0.0,0.0,0.0,0.995693167708634,-9.940267338578654,1.0,0.0,0.0 -454,22.0,1.769537493702126,1.6,0.0,0.0,0.9958446775465246,-10.076454637102218,1.0,0.0,0.0 -454,23.0,4.810930061002654,6.7,0.0,0.0,0.9861679244407414,-10.099112077353924,1.0,0.0,0.0 -454,24.0,0.0,0.0,0.0,0.0,0.9748626474004146,-9.76020744369768,1.0,0.0,0.0 -454,25.0,1.9354316337367,2.3,0.0,0.0,0.9606377801611152,-9.852190087073671,1.0,0.0,0.0 -454,26.0,0.0,0.0,0.0,0.0,0.9749351001606644,-9.470305833281389,1.0,0.0,0.0 -454,27.0,0.0,0.0,0.0,0.0,0.9525758703394256,-7.314092368501247,1.0,0.0,0.0 -454,28.0,1.3271531202765945,0.9,0.0,0.0,0.9608835773532004,-10.1299090440765,1.0,0.0,0.0 -454,29.0,5.861592947888291,1.9,0.0,0.0,0.953212082408502,-10.625006284205291,1.0,0.0,0.0 -455,0.0,0.0,0.0,163.48384368672345,0.0006363256924046,1.0,0.0,0.0,0.0,1.0 -455,1.0,11.99967612916754,12.7,8.081697785137509e-07,10.65131850506438,0.9801015797343906,-3.752797033898128,0.0,1.0,0.0 -455,2.0,1.3271531202765945,1.2,0.0,0.0,0.974026517873655,-4.92165501042138,1.0,0.0,0.0 -455,3.0,4.2026515475425485,1.6,0.0,0.0,0.9673748087072316,-6.04892779916866,1.0,0.0,0.0 -455,4.0,52.09075997085633,19.0,-7.461174849936594e-10,24.270959792999165,0.959974735556004,-9.03327858693303,0.0,1.0,0.0 -455,5.0,0.0,0.0,0.0,0.0,0.966993736104699,-7.180575078077855,1.0,0.0,0.0 -455,6.0,12.607954642627648,10.9,0.0,0.0,0.9576093935749044,-8.219757331640459,1.0,0.0,0.0 -455,7.0,16.58941400345743,30.0,-2.8165422634759536e-10,30.59580365761351,0.9659888497060344,-7.614937569887765,0.0,1.0,0.0 -455,8.0,0.0,0.0,0.0,0.0,1.0155117725254654,-9.013117197044377,1.0,0.0,0.0 -455,9.0,3.207286707335103,2.0,0.0,0.0,1.006558565914186,-9.964981417378024,1.0,0.0,0.0 -455,10.0,0.0,0.0,8.780421100110991e-10,22.65883710641557,1.0599754270395851,-9.013117196947162,0.0,1.0,0.0 -455,11.0,6.19338122795744,7.5,0.0,0.0,1.0136432375719937,-9.491804945269209,1.0,0.0,0.0 -455,12.0,0.0,0.0,-3.8459568816344e-10,10.008115161484646,1.0272824861861662,-9.491804945298837,0.0,1.0,0.0 -455,13.0,3.4284788940478688,1.6,0.0,0.0,1.0025387556959937,-9.967924311715574,1.0,0.0,0.0 -455,14.0,4.534439827611697,2.5,0.0,0.0,0.9991945802113656,-9.995948090347955,1.0,0.0,0.0 -455,15.0,1.9354316337367,1.8,0.0,0.0,1.0043997929191206,-9.803457547368222,1.0,0.0,0.0 -455,16.0,4.976824201037229,5.8,0.0,0.0,1.0015185007350165,-10.011039597754795,1.0,0.0,0.0 -455,17.0,1.769537493702126,0.9,0.0,0.0,0.9925623455054162,-10.33658140745847,1.0,0.0,0.0 -455,18.0,5.253314434428186,3.4,0.0,0.0,0.9909480913739253,-10.439639077639706,1.0,0.0,0.0 -455,19.0,1.2165570269202115,0.7,0.0,0.0,0.9942301049547082,-10.3531760539755,1.0,0.0,0.0 -455,20.0,9.6771581686835,11.2,0.0,0.0,0.9959547184649667,-10.14399804707735,1.0,0.0,0.0 -455,21.0,0.0,0.0,0.0,0.0,0.9963399178816232,-10.140467150568655,1.0,0.0,0.0 -455,22.0,1.769537493702126,1.6,0.0,0.0,0.9906803454277572,-10.177291439518122,1.0,0.0,0.0 -455,23.0,4.810930061002654,6.7,0.0,0.0,0.986075069560684,-10.269223673860562,1.0,0.0,0.0 -455,24.0,0.0,0.0,0.0,0.0,0.9796922554767068,-9.994176774567435,1.0,0.0,0.0 -455,25.0,1.9354316337367,2.3,0.0,0.0,0.9655396173185712,-10.085241295578442,1.0,0.0,0.0 -455,26.0,0.0,0.0,0.0,0.0,0.9828021791034626,-9.74014803446277,1.0,0.0,0.0 -455,27.0,0.0,0.0,0.0,0.0,0.9649401261072496,-7.539927330117572,1.0,0.0,0.0 -455,28.0,1.3271531202765945,0.9,0.0,0.0,0.9688699343707794,-10.389085078705136,1.0,0.0,0.0 -455,29.0,5.861592947888291,1.9,0.0,0.0,0.9612637300354816,-10.87599695946528,1.0,0.0,0.0 -456,0.0,0.0,0.0,163.83374797927928,0.0028434827664014,1.0,0.0,0.0,0.0,1.0 -456,1.0,11.99967612916754,12.7,2.905711967643367e-06,10.76916307817931,0.9800670188991024,-3.7660872008819632,0.0,1.0,0.0 -456,2.0,1.3271531202765945,1.2,0.0,0.0,0.973963748611224,-4.918182279726706,1.0,0.0,0.0 -456,3.0,4.2026515475425485,1.6,0.0,0.0,0.9672969287675022,-6.04464514304139,1.0,0.0,0.0 -456,4.0,52.09075997085633,19.0,-3.40954523475411e-10,24.74815226488556,0.9602373717687224,-9.07153692711649,0.0,1.0,0.0 -456,5.0,0.0,0.0,0.0,0.0,0.9665557048872864,-7.226475520108539,1.0,0.0,0.0 -456,6.0,12.607954642627648,10.9,0.0,0.0,0.9574552949114092,-8.262324715609024,1.0,0.0,0.0 -456,7.0,16.58941400345743,30.0,-4.897205760557572e-10,33.48090288825494,0.9664889407259054,-7.682827435637869,0.0,1.0,0.0 -456,8.0,0.0,0.0,0.0,0.0,1.0126523097592344,-9.178231542265998,1.0,0.0,0.0 -456,9.0,3.207286707335103,2.0,0.0,0.0,1.0010816483046647,-10.19708636347833,1.0,0.0,0.0 -456,10.0,0.0,0.0,-1.0159987712535e-09,24.000332933576946,1.0597580545899774,-9.178231542378828,0.0,1.0,0.0 -456,11.0,6.19338122795744,7.5,0.0,0.0,1.013666364187837,-9.179266235780126,1.0,0.0,0.0 -456,12.0,0.0,0.0,-5.193276822974194e-10,6.281341107288572,1.0222686795343363,-9.179266235820329,0.0,1.0,0.0 -456,13.0,3.4284788940478688,1.6,0.0,0.0,0.9902769625794594,-10.32427096353838,1.0,0.0,0.0 -456,14.0,4.534439827611697,2.5,0.0,0.0,0.9706332192398532,-10.74541324582873,1.0,0.0,0.0 -456,15.0,1.9354316337367,1.8,0.0,0.0,1.001651191095131,-9.712356103126805,1.0,0.0,0.0 -456,16.0,4.976824201037229,5.8,0.0,0.0,0.9969867731040808,-10.146443925777875,1.0,0.0,0.0 -456,17.0,1.769537493702126,0.9,0.0,0.0,0.9719856423146738,-10.91959032723829,1.0,0.0,0.0 -456,18.0,5.253314434428186,3.4,0.0,0.0,0.9751438100904898,-10.918942818707842,1.0,0.0,0.0 -456,19.0,1.2165570269202115,0.7,0.0,0.0,0.9810153203640468,-10.774309489666663,1.0,0.0,0.0 -456,20.0,9.6771581686835,11.2,0.0,0.0,0.9844016751240534,-10.499537952743031,1.0,0.0,0.0 -456,21.0,0.0,0.0,0.0,0.0,0.9828851772130168,-10.532518527014515,1.0,0.0,0.0 -456,22.0,1.769537493702126,1.6,0.0,0.0,0.967487011253508,-10.803259910743812,1.0,0.0,0.0 -456,23.0,4.810930061002654,6.7,0.0,0.0,0.9701796375524048,-10.718933484456848,1.0,0.0,0.0 -456,24.0,0.0,0.0,0.0,0.0,0.9697313920727836,-10.370765445427828,1.0,0.0,0.0 -456,25.0,1.9354316337367,2.3,0.0,0.0,0.9554289599383576,-10.463738936904132,1.0,0.0,0.0 -456,26.0,0.0,0.0,0.0,0.0,0.9765814851052492,-10.063721315005218,1.0,0.0,0.0 -456,27.0,0.0,0.0,0.0,0.0,0.9639292033061346,-7.608800128338563,1.0,0.0,0.0 -456,28.0,1.3271531202765945,0.9,0.0,0.0,0.9625550978730294,-10.72107059639602,1.0,0.0,0.0 -456,29.0,5.861592947888291,1.9,0.0,0.0,0.9548973621018966,-11.214437629747506,1.0,0.0,0.0 -457,0.0,0.0,0.0,163.48384368672345,0.0006363256924046,1.0,0.0,0.0,0.0,1.0 -457,1.0,11.99967612916754,12.7,8.081697785137509e-07,10.65131850506438,0.9801015797343906,-3.752797033898128,0.0,1.0,0.0 -457,2.0,1.3271531202765945,1.2,0.0,0.0,0.974026517873655,-4.92165501042138,1.0,0.0,0.0 -457,3.0,4.2026515475425485,1.6,0.0,0.0,0.9673748087072316,-6.04892779916866,1.0,0.0,0.0 -457,4.0,52.09075997085633,19.0,-7.461174849936594e-10,24.270959792999165,0.959974735556004,-9.03327858693303,0.0,1.0,0.0 -457,5.0,0.0,0.0,0.0,0.0,0.966993736104699,-7.180575078077855,1.0,0.0,0.0 -457,6.0,12.607954642627648,10.9,0.0,0.0,0.9576093935749044,-8.219757331640459,1.0,0.0,0.0 -457,7.0,16.58941400345743,30.0,-2.8165422634759536e-10,30.59580365761351,0.9659888497060344,-7.614937569887765,0.0,1.0,0.0 -457,8.0,0.0,0.0,0.0,0.0,1.0155117725254654,-9.013117197044377,1.0,0.0,0.0 -457,9.0,3.207286707335103,2.0,0.0,0.0,1.006558565914186,-9.964981417378024,1.0,0.0,0.0 -457,10.0,0.0,0.0,8.780421100110991e-10,22.65883710641557,1.0599754270395851,-9.013117196947162,0.0,1.0,0.0 -457,11.0,6.19338122795744,7.5,0.0,0.0,1.0136432375719937,-9.491804945269209,1.0,0.0,0.0 -457,12.0,0.0,0.0,-3.8459568816344e-10,10.008115161484646,1.0272824861861662,-9.491804945298837,0.0,1.0,0.0 -457,13.0,3.4284788940478688,1.6,0.0,0.0,1.0025387556959937,-9.967924311715574,1.0,0.0,0.0 -457,14.0,4.534439827611697,2.5,0.0,0.0,0.9991945802113656,-9.995948090347955,1.0,0.0,0.0 -457,15.0,1.9354316337367,1.8,0.0,0.0,1.0043997929191206,-9.803457547368222,1.0,0.0,0.0 -457,16.0,4.976824201037229,5.8,0.0,0.0,1.0015185007350165,-10.011039597754795,1.0,0.0,0.0 -457,17.0,1.769537493702126,0.9,0.0,0.0,0.9925623455054162,-10.33658140745847,1.0,0.0,0.0 -457,18.0,5.253314434428186,3.4,0.0,0.0,0.9909480913739253,-10.439639077639706,1.0,0.0,0.0 -457,19.0,1.2165570269202115,0.7,0.0,0.0,0.9942301049547082,-10.3531760539755,1.0,0.0,0.0 -457,20.0,9.6771581686835,11.2,0.0,0.0,0.9959547184649667,-10.14399804707735,1.0,0.0,0.0 -457,21.0,0.0,0.0,0.0,0.0,0.9963399178816232,-10.140467150568655,1.0,0.0,0.0 -457,22.0,1.769537493702126,1.6,0.0,0.0,0.9906803454277572,-10.177291439518122,1.0,0.0,0.0 -457,23.0,4.810930061002654,6.7,0.0,0.0,0.986075069560684,-10.269223673860562,1.0,0.0,0.0 -457,24.0,0.0,0.0,0.0,0.0,0.9796922554767068,-9.994176774567435,1.0,0.0,0.0 -457,25.0,1.9354316337367,2.3,0.0,0.0,0.9655396173185712,-10.085241295578442,1.0,0.0,0.0 -457,26.0,0.0,0.0,0.0,0.0,0.9828021791034626,-9.74014803446277,1.0,0.0,0.0 -457,27.0,0.0,0.0,0.0,0.0,0.9649401261072496,-7.539927330117572,1.0,0.0,0.0 -457,28.0,1.3271531202765945,0.9,0.0,0.0,0.9688699343707794,-10.389085078705136,1.0,0.0,0.0 -457,29.0,5.861592947888291,1.9,0.0,0.0,0.9612637300354816,-10.87599695946528,1.0,0.0,0.0 -458,0.0,0.0,0.0,163.51307627459562,0.0012515476324637,1.0,0.0,0.0,0.0,1.0 -458,1.0,11.99967612916754,12.7,1.131060347087221e-06,10.646132211503854,0.979966481247123,-3.754540124825192,0.0,1.0,0.0 -458,2.0,1.3271531202765945,1.2,0.0,0.0,0.9743907046517168,-4.917905715769886,1.0,0.0,0.0 -458,3.0,4.2026515475425485,1.6,0.0,0.0,0.9678230072123994,-6.044093155172632,1.0,0.0,0.0 -458,4.0,52.09075997085633,19.0,3.6681236441139884e-10,24.217258462469218,0.9594650676451504,-9.04332431689748,0.0,1.0,0.0 -458,5.0,0.0,0.0,0.0,0.0,0.9662338097569356,-7.19308650407568,1.0,0.0,0.0 -458,6.0,12.607954642627648,10.9,0.0,0.0,0.95694521333824,-8.231517343118286,1.0,0.0,0.0 -458,7.0,16.58941400345743,30.0,5.116210992076128e-10,30.161880122397527,0.964885320117529,-7.621466508113163,0.0,1.0,0.0 -458,8.0,0.0,0.0,0.0,0.0,1.0146523650830397,-9.168179840335606,1.0,0.0,0.0 -458,9.0,3.207286707335103,2.0,0.0,0.0,1.0052541581775185,-10.194591753196308,1.0,0.0,0.0 -458,10.0,0.0,0.0,1.2252505006729474e-09,23.10916455467241,1.0599987056199427,-9.168179840199842,0.0,1.0,0.0 -458,11.0,6.19338122795744,7.5,0.0,0.0,1.021033020287471,-9.24066448021274,1.0,0.0,0.0 -458,12.0,0.0,0.0,3.924072013103946e-10,10.169693031722172,1.03479189329056,-9.24066448018295,0.0,1.0,0.0 -458,13.0,3.4284788940478688,1.6,0.0,0.0,1.0093973630096422,-9.784053367566084,1.0,0.0,0.0 -458,14.0,4.534439827611697,2.5,0.0,0.0,1.0049763947661985,-9.871202149462398,1.0,0.0,0.0 -458,15.0,1.9354316337367,1.8,0.0,0.0,0.9920285873727102,-10.548786350728834,1.0,0.0,0.0 -458,16.0,4.976824201037229,5.8,0.0,0.0,0.9965440531183628,-10.387746254389585,1.0,0.0,0.0 -458,17.0,1.769537493702126,0.9,0.0,0.0,0.9958411248101672,-10.33256769650735,1.0,0.0,0.0 -458,18.0,5.253314434428186,3.4,0.0,0.0,0.9927455023312975,-10.509068902511553,1.0,0.0,0.0 -458,19.0,1.2165570269202115,0.7,0.0,0.0,0.9952365975279652,-10.46169272722975,1.0,0.0,0.0 -458,20.0,9.6771581686835,11.2,0.0,0.0,0.99567901061424,-10.370233547567318,1.0,0.0,0.0 -458,21.0,0.0,0.0,0.0,0.0,0.996393101116849,-10.365941022621946,1.0,0.0,0.0 -458,22.0,1.769537493702126,1.6,0.0,0.0,0.995882939079012,-10.207825313996466,1.0,0.0,0.0 -458,23.0,4.810930061002654,6.7,0.0,0.0,0.9905175189101032,-10.511851914239491,1.0,0.0,0.0 -458,24.0,0.0,0.0,0.0,0.0,0.9651650343877564,-9.794271543261152,1.0,0.0,0.0 -458,25.0,1.9354316337367,2.3,0.0,0.0,0.9507928505954588,-9.888140397384236,1.0,0.0,0.0 -458,26.0,0.0,0.0,0.0,0.0,0.9724423883023614,-9.700449926923245,1.0,0.0,0.0 -458,27.0,0.0,0.0,0.0,0.0,0.9631145329441868,-7.527692685279,1.0,0.0,0.0 -458,28.0,1.3271531202765945,0.9,0.0,0.0,0.9583526320122526,-10.363487950945428,1.0,0.0,0.0 -458,29.0,5.861592947888291,1.9,0.0,0.0,0.9506602076938532,-10.861222417645092,1.0,0.0,0.0 -459,0.0,0.0,0.0,163.48384368672345,0.0006363256924046,1.0,0.0,0.0,0.0,1.0 -459,1.0,11.99967612916754,12.7,8.081697785137509e-07,10.65131850506438,0.9801015797343906,-3.752797033898128,0.0,1.0,0.0 -459,2.0,1.3271531202765945,1.2,0.0,0.0,0.974026517873655,-4.92165501042138,1.0,0.0,0.0 -459,3.0,4.2026515475425485,1.6,0.0,0.0,0.9673748087072316,-6.04892779916866,1.0,0.0,0.0 -459,4.0,52.09075997085633,19.0,-7.461174849936594e-10,24.270959792999165,0.959974735556004,-9.03327858693303,0.0,1.0,0.0 -459,5.0,0.0,0.0,0.0,0.0,0.966993736104699,-7.180575078077855,1.0,0.0,0.0 -459,6.0,12.607954642627648,10.9,0.0,0.0,0.9576093935749044,-8.219757331640459,1.0,0.0,0.0 -459,7.0,16.58941400345743,30.0,-2.8165422634759536e-10,30.59580365761351,0.9659888497060344,-7.614937569887765,0.0,1.0,0.0 -459,8.0,0.0,0.0,0.0,0.0,1.0155117725254654,-9.013117197044377,1.0,0.0,0.0 -459,9.0,3.207286707335103,2.0,0.0,0.0,1.006558565914186,-9.964981417378024,1.0,0.0,0.0 -459,10.0,0.0,0.0,8.780421100110991e-10,22.65883710641557,1.0599754270395851,-9.013117196947162,0.0,1.0,0.0 -459,11.0,6.19338122795744,7.5,0.0,0.0,1.0136432375719937,-9.491804945269209,1.0,0.0,0.0 -459,12.0,0.0,0.0,-3.8459568816344e-10,10.008115161484646,1.0272824861861662,-9.491804945298837,0.0,1.0,0.0 -459,13.0,3.4284788940478688,1.6,0.0,0.0,1.0025387556959937,-9.967924311715574,1.0,0.0,0.0 -459,14.0,4.534439827611697,2.5,0.0,0.0,0.9991945802113656,-9.995948090347955,1.0,0.0,0.0 -459,15.0,1.9354316337367,1.8,0.0,0.0,1.0043997929191206,-9.803457547368222,1.0,0.0,0.0 -459,16.0,4.976824201037229,5.8,0.0,0.0,1.0015185007350165,-10.011039597754795,1.0,0.0,0.0 -459,17.0,1.769537493702126,0.9,0.0,0.0,0.9925623455054162,-10.33658140745847,1.0,0.0,0.0 -459,18.0,5.253314434428186,3.4,0.0,0.0,0.9909480913739253,-10.439639077639706,1.0,0.0,0.0 -459,19.0,1.2165570269202115,0.7,0.0,0.0,0.9942301049547082,-10.3531760539755,1.0,0.0,0.0 -459,20.0,9.6771581686835,11.2,0.0,0.0,0.9959547184649667,-10.14399804707735,1.0,0.0,0.0 -459,21.0,0.0,0.0,0.0,0.0,0.9963399178816232,-10.140467150568655,1.0,0.0,0.0 -459,22.0,1.769537493702126,1.6,0.0,0.0,0.9906803454277572,-10.177291439518122,1.0,0.0,0.0 -459,23.0,4.810930061002654,6.7,0.0,0.0,0.986075069560684,-10.269223673860562,1.0,0.0,0.0 -459,24.0,0.0,0.0,0.0,0.0,0.9796922554767068,-9.994176774567435,1.0,0.0,0.0 -459,25.0,1.9354316337367,2.3,0.0,0.0,0.9655396173185712,-10.085241295578442,1.0,0.0,0.0 -459,26.0,0.0,0.0,0.0,0.0,0.9828021791034626,-9.74014803446277,1.0,0.0,0.0 -459,27.0,0.0,0.0,0.0,0.0,0.9649401261072496,-7.539927330117572,1.0,0.0,0.0 -459,28.0,1.3271531202765945,0.9,0.0,0.0,0.9688699343707794,-10.389085078705136,1.0,0.0,0.0 -459,29.0,5.861592947888291,1.9,0.0,0.0,0.9612637300354816,-10.87599695946528,1.0,0.0,0.0 -460,0.0,0.0,0.0,139.2981269932034,5.7205264525350685e-06,1.0,0.0,0.0,0.0,1.0 -460,1.0,11.99967612916754,12.7,26.048286053945365,7.4719711112091645,0.9734881359550942,-4.611826521386343,0.0,1.0,0.0 -460,2.0,1.3271531202765945,1.2,0.0,0.0,1.000789196282818,-0.1473398956799341,1.0,0.0,0.0 -460,3.0,4.2026515475425485,1.6,0.0,0.0,0.95196881241501,-9.691685698926037,1.0,0.0,0.0 -460,4.0,52.09075997085633,19.0,-4.271427331979224e-10,25.83935120954796,0.9515255091895994,-10.988633861368545,0.0,1.0,0.0 -460,5.0,0.0,0.0,0.0,0.0,0.953301187988444,-10.087500378170423,1.0,0.0,0.0 -460,6.0,12.607954642627648,10.9,0.0,0.0,0.9457998722287024,-10.742494891176255,1.0,0.0,0.0 -460,7.0,16.58941400345743,30.0,-4.0716198492784345e-10,26.93289132328208,0.9509479651212784,-10.499233521761772,0.0,1.0,0.0 -460,8.0,0.0,0.0,0.0,0.0,1.0103916693763817,-12.886098579772028,1.0,0.0,0.0 -460,9.0,3.207286707335103,2.0,0.0,0.0,1.0052107588941477,-14.320850241963846,1.0,0.0,0.0 -460,10.0,0.0,0.0,-5.79955737766344e-10,23.99981721059628,1.0575928397346863,-12.886098579836707,0.0,1.0,0.0 -460,11.0,6.19338122795744,7.5,0.0,0.0,1.018760786733646,-13.659997746518805,1.0,0.0,0.0 -460,12.0,0.0,0.0,-5.283659798938086e-10,21.85079847654553,1.047952118407883,-13.659997746558505,0.0,1.0,0.0 -460,13.0,3.4284788940478688,1.6,0.0,0.0,1.0064572731944608,-14.189405481619076,1.0,0.0,0.0 -460,14.0,4.534439827611697,2.5,0.0,0.0,1.0015229903171898,-14.246096038749904,1.0,0.0,0.0 -460,15.0,1.9354316337367,1.8,0.0,0.0,1.006604841387123,-14.03742141408104,1.0,0.0,0.0 -460,16.0,4.976824201037229,5.8,0.0,0.0,1.0013221622630366,-14.333119878150669,1.0,0.0,0.0 -460,17.0,1.769537493702126,0.9,0.0,0.0,0.9935939740085148,-14.622563017714311,1.0,0.0,0.0 -460,18.0,5.253314434428186,3.4,0.0,0.0,0.99121149301026,-14.747484072097956,1.0,0.0,0.0 -460,19.0,1.2165570269202115,0.7,0.0,0.0,0.994086451622297,-14.672527058172149,1.0,0.0,0.0 -460,20.0,9.6771581686835,11.2,0.0,0.0,0.9898072030161674,-14.624615032117529,1.0,0.0,0.0 -460,21.0,0.0,0.0,0.0,0.0,0.9886758913597932,-14.65906193690305,1.0,0.0,0.0 -460,22.0,1.769537493702126,1.6,0.0,0.0,0.9889724913455678,-14.578059495534728,1.0,0.0,0.0 -460,23.0,4.810930061002654,6.7,0.0,0.0,0.9790423693894936,-14.8779542806054,1.0,0.0,0.0 -460,24.0,0.0,0.0,0.0,0.0,0.9672624210275644,-15.001864484782134,1.0,0.0,0.0 -460,25.0,1.9354316337367,2.3,0.0,0.0,0.9529223606950064,-15.095320483846486,1.0,0.0,0.0 -460,26.0,0.0,0.0,0.0,0.0,0.9701918921947508,-12.12388140747433,1.0,0.0,0.0 -460,27.0,0.0,0.0,0.0,0.0,0.9514126739301514,-10.3886085536891,1.0,0.0,0.0 -460,28.0,1.3271531202765945,0.9,0.0,0.0,0.9560674330745902,-12.790043708578466,1.0,0.0,0.0 -460,29.0,5.861592947888291,1.9,0.0,0.0,0.9483560116365692,-13.290177527332371,1.0,0.0,0.0 -461,0.0,0.0,0.0,163.6188641042791,0.0093121535246432,1.0,0.0,0.0,0.0,1.0 -461,1.0,11.99967612916754,12.7,6.6945207087559415e-06,12.841148212761285,0.980029210895275,-3.839397386557992,0.0,1.0,0.0 -461,2.0,1.3271531202765945,1.2,0.0,0.0,0.9738692415780884,-4.688440940556547,1.0,0.0,0.0 -461,3.0,4.2026515475425485,1.6,0.0,0.0,0.9671476545438952,-5.759322684028898,1.0,0.0,0.0 -461,4.0,52.09075997085633,19.0,-1.292642983411019e-10,22.981654583539367,0.9603847264933189,-10.311076470735555,0.0,1.0,0.0 -461,5.0,0.0,0.0,0.0,0.0,0.9654972163678366,-6.787221874138805,1.0,0.0,0.0 -461,6.0,12.607954642627648,10.9,0.0,0.0,0.953220226390944,-7.262513654463027,1.0,0.0,0.0 -461,7.0,16.58941400345743,30.0,-4.075104232464715e-09,36.16093918413648,0.9662641662882332,-7.263642395570254,0.0,1.0,0.0 -461,8.0,0.0,0.0,0.0,0.0,1.0124615830342785,-8.785048440170781,1.0,0.0,0.0 -461,9.0,3.207286707335103,2.0,0.0,0.0,1.0013790286816815,-9.826494353406463,1.0,0.0,0.0 -461,10.0,0.0,0.0,-6.1450237037522806e-09,24.00071916922779,1.059576172045488,-8.78504844085343,0.0,1.0,0.0 -461,11.0,6.19338122795744,7.5,0.0,0.0,1.0169034987298116,-8.882157479823812,1.0,0.0,0.0 -461,12.0,0.0,0.0,-9.761179465437667e-10,9.126730662904237,1.0293169952397856,-8.88215747989862,0.0,1.0,0.0 -461,13.0,3.4284788940478688,1.6,0.0,0.0,1.008637471833132,-9.262230867982566,1.0,0.0,0.0 -461,14.0,4.534439827611697,2.5,0.0,0.0,0.9989650906007036,-9.543490207461204,1.0,0.0,0.0 -461,15.0,1.9354316337367,1.8,0.0,0.0,0.9881010255897348,-10.183476445218655,1.0,0.0,0.0 -461,16.0,4.976824201037229,5.8,0.0,0.0,0.9926344710081022,-10.021159441507866,1.0,0.0,0.0 -461,17.0,1.769537493702126,0.9,0.0,0.0,0.9905383896958524,-9.994881418307989,1.0,0.0,0.0 -461,18.0,5.253314434428186,3.4,0.0,0.0,0.9878736944754072,-10.164153495709568,1.0,0.0,0.0 -461,19.0,1.2165570269202115,0.7,0.0,0.0,0.9906126277863458,-10.111607953310072,1.0,0.0,0.0 -461,20.0,9.6771581686835,11.2,0.0,0.0,0.9910132386079122,-9.982635690104148,1.0,0.0,0.0 -461,21.0,0.0,0.0,0.0,0.0,0.9914956092162328,-9.971246063595284,1.0,0.0,0.0 -461,22.0,1.769537493702126,1.6,0.0,0.0,0.9890642093068542,-9.80417280017231,1.0,0.0,0.0 -461,23.0,4.810930061002654,6.7,0.0,0.0,0.9826419882346368,-10.004190638952052,1.0,0.0,0.0 -461,24.0,0.0,0.0,0.0,0.0,0.9763437425953058,-9.676209620548445,1.0,0.0,0.0 -461,25.0,1.9354316337367,2.3,0.0,0.0,0.9621411052925818,-9.76790922696024,1.0,0.0,0.0 -461,26.0,0.0,0.0,0.0,0.0,0.9795163003260644,-9.388530114719352,1.0,0.0,0.0 -461,27.0,0.0,0.0,0.0,0.0,0.9618191499448622,-7.114933454003319,1.0,0.0,0.0 -461,28.0,1.3271531202765945,0.9,0.0,0.0,0.9726677801598428,-9.601024989388126,1.0,0.0,0.0 -461,29.0,5.861592947888291,1.9,0.0,0.0,0.9471222169902508,-11.194930317196414,1.0,0.0,0.0 -462,0.0,0.0,0.0,163.48384368672345,0.0006363256924046,1.0,0.0,0.0,0.0,1.0 -462,1.0,11.99967612916754,12.7,8.081697785137509e-07,10.65131850506438,0.9801015797343906,-3.752797033898128,0.0,1.0,0.0 -462,2.0,1.3271531202765945,1.2,0.0,0.0,0.974026517873655,-4.92165501042138,1.0,0.0,0.0 -462,3.0,4.2026515475425485,1.6,0.0,0.0,0.9673748087072316,-6.04892779916866,1.0,0.0,0.0 -462,4.0,52.09075997085633,19.0,-7.461174849936594e-10,24.270959792999165,0.959974735556004,-9.03327858693303,0.0,1.0,0.0 -462,5.0,0.0,0.0,0.0,0.0,0.966993736104699,-7.180575078077855,1.0,0.0,0.0 -462,6.0,12.607954642627648,10.9,0.0,0.0,0.9576093935749044,-8.219757331640459,1.0,0.0,0.0 -462,7.0,16.58941400345743,30.0,-2.8165422634759536e-10,30.59580365761351,0.9659888497060344,-7.614937569887765,0.0,1.0,0.0 -462,8.0,0.0,0.0,0.0,0.0,1.0155117725254654,-9.013117197044377,1.0,0.0,0.0 -462,9.0,3.207286707335103,2.0,0.0,0.0,1.006558565914186,-9.964981417378024,1.0,0.0,0.0 -462,10.0,0.0,0.0,8.780421100110991e-10,22.65883710641557,1.0599754270395851,-9.013117196947162,0.0,1.0,0.0 -462,11.0,6.19338122795744,7.5,0.0,0.0,1.0136432375719937,-9.491804945269209,1.0,0.0,0.0 -462,12.0,0.0,0.0,-3.8459568816344e-10,10.008115161484646,1.0272824861861662,-9.491804945298837,0.0,1.0,0.0 -462,13.0,3.4284788940478688,1.6,0.0,0.0,1.0025387556959937,-9.967924311715574,1.0,0.0,0.0 -462,14.0,4.534439827611697,2.5,0.0,0.0,0.9991945802113656,-9.995948090347955,1.0,0.0,0.0 -462,15.0,1.9354316337367,1.8,0.0,0.0,1.0043997929191206,-9.803457547368222,1.0,0.0,0.0 -462,16.0,4.976824201037229,5.8,0.0,0.0,1.0015185007350165,-10.011039597754795,1.0,0.0,0.0 -462,17.0,1.769537493702126,0.9,0.0,0.0,0.9925623455054162,-10.33658140745847,1.0,0.0,0.0 -462,18.0,5.253314434428186,3.4,0.0,0.0,0.9909480913739253,-10.439639077639706,1.0,0.0,0.0 -462,19.0,1.2165570269202115,0.7,0.0,0.0,0.9942301049547082,-10.3531760539755,1.0,0.0,0.0 -462,20.0,9.6771581686835,11.2,0.0,0.0,0.9959547184649667,-10.14399804707735,1.0,0.0,0.0 -462,21.0,0.0,0.0,0.0,0.0,0.9963399178816232,-10.140467150568655,1.0,0.0,0.0 -462,22.0,1.769537493702126,1.6,0.0,0.0,0.9906803454277572,-10.177291439518122,1.0,0.0,0.0 -462,23.0,4.810930061002654,6.7,0.0,0.0,0.986075069560684,-10.269223673860562,1.0,0.0,0.0 -462,24.0,0.0,0.0,0.0,0.0,0.9796922554767068,-9.994176774567435,1.0,0.0,0.0 -462,25.0,1.9354316337367,2.3,0.0,0.0,0.9655396173185712,-10.085241295578442,1.0,0.0,0.0 -462,26.0,0.0,0.0,0.0,0.0,0.9828021791034626,-9.74014803446277,1.0,0.0,0.0 -462,27.0,0.0,0.0,0.0,0.0,0.9649401261072496,-7.539927330117572,1.0,0.0,0.0 -462,28.0,1.3271531202765945,0.9,0.0,0.0,0.9688699343707794,-10.389085078705136,1.0,0.0,0.0 -462,29.0,5.861592947888291,1.9,0.0,0.0,0.9612637300354816,-10.87599695946528,1.0,0.0,0.0 -463,0.0,0.0,0.0,164.03428618138832,0.0005791431679114,1.0,0.0,0.0,0.0,1.0 -463,1.0,11.99967612916754,12.7,5.590139195920455e-07,10.748907616689642,0.9793094811050248,-3.946878694642298,0.0,1.0,0.0 -463,2.0,1.3271531202765945,1.2,0.0,0.0,0.9754340246883768,-4.417177147883164,1.0,0.0,0.0 -463,3.0,4.2026515475425485,1.6,0.0,0.0,0.9690431713719492,-5.421842102654367,1.0,0.0,0.0 -463,4.0,52.09075997085633,19.0,-1.382467092601107e-09,36.70519994015514,0.9586006568759288,-12.115770001026949,0.0,1.0,0.0 -463,5.0,0.0,0.0,0.0,0.0,0.9697838717426388,-6.262084117378922,1.0,0.0,0.0 -463,6.0,12.607954642627648,10.9,0.0,0.0,0.9400333530095792,-12.753257188997488,1.0,0.0,0.0 -463,7.0,16.58941400345743,30.0,-3.68066164249581e-10,28.34309814691983,0.9679093196672016,-6.680974140021119,0.0,1.0,0.0 -463,8.0,0.0,0.0,0.0,0.0,1.0130525866890432,-8.141111745815499,1.0,0.0,0.0 -463,9.0,3.207286707335103,2.0,0.0,0.0,1.004800346032229,-9.121644689388413,1.0,0.0,0.0 -463,10.0,0.0,0.0,-3.359591822871659e-10,19.13344099293528,1.0509217774501904,-8.14111174585311,0.0,1.0,0.0 -463,11.0,6.19338122795744,7.5,0.0,0.0,1.0102975457601504,-8.738557901822903,1.0,0.0,0.0 -463,12.0,0.0,0.0,-2.9142145027907e-10,7.460804996678378,1.0205325228543982,-8.738557901845574,0.0,1.0,0.0 -463,13.0,3.4284788940478688,1.6,0.0,0.0,0.999382535483768,-9.203759128418636,1.0,0.0,0.0 -463,14.0,4.534439827611697,2.5,0.0,0.0,0.9963419296257456,-9.223241192356872,1.0,0.0,0.0 -463,15.0,1.9354316337367,1.8,0.0,0.0,1.0017865215072446,-9.015586219978475,1.0,0.0,0.0 -463,16.0,4.976824201037229,5.8,0.0,0.0,0.9994639823771276,-9.184346090986775,1.0,0.0,0.0 -463,17.0,1.769537493702126,0.9,0.0,0.0,0.9900780664010674,-9.540923269840574,1.0,0.0,0.0 -463,18.0,5.253314434428186,3.4,0.0,0.0,0.988686624155553,-9.62972445295294,1.0,0.0,0.0 -463,19.0,1.2165570269202115,0.7,0.0,0.0,0.9920961937544251,-9.535142393218347,1.0,0.0,0.0 -463,20.0,9.6771581686835,11.2,0.0,0.0,0.9942461756181816,-9.30326329655336,1.0,0.0,0.0 -463,21.0,0.0,0.0,0.0,0.0,0.9946534484945638,-9.30038455124634,1.0,0.0,0.0 -463,22.0,1.769537493702126,1.6,0.0,0.0,0.9884305482998164,-9.381148244079958,1.0,0.0,0.0 -463,23.0,4.810930061002654,6.7,0.0,0.0,0.9846392574835866,-9.440305784184549,1.0,0.0,0.0 -463,24.0,0.0,0.0,0.0,0.0,0.9798600147179706,-9.146169386953856,1.0,0.0,0.0 -463,25.0,1.9354316337367,2.3,0.0,0.0,0.965709872097102,-9.237202264676588,1.0,0.0,0.0 -463,26.0,0.0,0.0,0.0,0.0,0.9839584177895376,-8.878667651319095,1.0,0.0,0.0 -463,27.0,0.0,0.0,0.0,0.0,0.9673345510980804,-6.621905771926594,1.0,0.0,0.0 -463,28.0,1.3271531202765945,0.9,0.0,0.0,0.9700435281962284,-9.52605901487233,1.0,0.0,0.0 -463,29.0,5.861592947888291,1.9,0.0,0.0,0.9624468233204544,-10.011785227825508,1.0,0.0,0.0 -464,0.0,0.0,0.0,164.5036463603391,0.0065754166936216,1.0,0.0,0.0,0.0,1.0 -464,1.0,11.99967612916754,12.7,5.516750963444319e-06,16.610773641125128,0.9807215536195384,-3.778233965953572,0.0,1.0,0.0 -464,2.0,1.3271531202765945,1.2,0.0,0.0,0.971862752014072,-4.958317383210099,1.0,0.0,0.0 -464,3.0,4.2026515475425485,1.6,0.0,0.0,0.9647141746780312,-6.09555108412267,1.0,0.0,0.0 -464,4.0,52.09075997085633,19.0,-4.7541551555633916e-09,28.909504596552296,0.9619667302868252,-9.078155949706176,0.0,1.0,0.0 -464,5.0,0.0,0.0,0.0,0.0,0.960886331475943,-7.04950634616665,1.0,0.0,0.0 -464,6.0,12.607954642627648,10.9,0.0,0.0,0.954806040655893,-8.158617634257135,1.0,0.0,0.0 -464,7.0,16.58941400345743,30.0,-6.850219695325475e-09,34.61444601139709,0.9595459540317676,-10.49777160693644,0.0,1.0,0.0 -464,8.0,0.0,0.0,0.0,0.0,0.9741215218160322,-12.411098855959784,1.0,0.0,0.0 -464,9.0,3.207286707335103,2.0,0.0,0.0,0.9741215218160324,-12.411098855959784,1.0,0.0,0.0 -464,10.0,0.0,0.0,0.0,0.0,0.9741215218160322,-12.411098855959784,0.0,1.0,0.0 -464,11.0,6.19338122795744,7.5,0.0,0.0,1.028152103826698,-10.314662160545083,1.0,0.0,0.0 -464,12.0,0.0,0.0,-4.3278722674584465e-09,23.337310364950092,1.0590039569262475,-10.314662160863922,0.0,1.0,0.0 -464,13.0,3.4284788940478688,1.6,0.0,0.0,0.9972507796049715,-11.508874798616333,1.0,0.0,0.0 -464,14.0,4.534439827611697,2.5,0.0,0.0,0.9697800403502288,-11.823556757837617,1.0,0.0,0.0 -464,15.0,1.9354316337367,1.8,0.0,0.0,0.997383105581985,-11.203187675810176,1.0,0.0,0.0 -464,16.0,4.976824201037229,5.8,0.0,0.0,0.9772408535021948,-12.16131597900611,1.0,0.0,0.0 -464,17.0,1.769537493702126,0.9,0.0,0.0,0.9468285118789108,-13.502505884191937,1.0,0.0,0.0 -464,18.0,5.253314434428186,3.4,0.0,0.0,0.949252565772116,-13.393423166324332,1.0,0.0,0.0 -464,19.0,1.2165570269202115,0.7,0.0,0.0,0.9548597603802988,-13.183967742056272,1.0,0.0,0.0 -464,20.0,9.6771581686835,11.2,0.0,0.0,0.9639922065752736,-12.52113589922226,1.0,0.0,0.0 -464,21.0,0.0,0.0,0.0,0.0,0.9646618455081494,-12.491647967882978,1.0,0.0,0.0 -464,22.0,1.769537493702126,1.6,0.0,0.0,0.9618748106216412,-12.09890880331829,1.0,0.0,0.0 -464,23.0,4.810930061002654,6.7,0.0,0.0,0.9583060259995028,-12.307869634949444,1.0,0.0,0.0 -464,24.0,0.0,0.0,0.0,0.0,0.9609276278077488,-11.59697074377977,1.0,0.0,0.0 -464,25.0,1.9354316337367,2.3,0.0,0.0,0.946490096191086,-11.691682138838566,1.0,0.0,0.0 -464,26.0,0.0,0.0,0.0,0.0,0.9696741865523756,-11.062736430963657,1.0,0.0,0.0 -464,27.0,0.0,0.0,0.0,0.0,0.9576089446250304,-8.167138447673251,1.0,0.0,0.0 -464,28.0,1.3271531202765945,0.9,0.0,0.0,0.9555417194131316,-11.729620582826064,1.0,0.0,0.0 -464,29.0,5.861592947888291,1.9,0.0,0.0,0.9478259141357486,-12.23030883726426,1.0,0.0,0.0 -465,0.0,0.0,0.0,163.5967768333132,0.0005224793769187,1.0,0.0,0.0,0.0,1.0 -465,1.0,11.99967612916754,12.7,8.328112003269762e-07,9.424851884656832,0.9799341878425428,-3.748518622053474,0.0,1.0,0.0 -465,2.0,1.3271531202765945,1.2,0.0,0.0,0.9744791283250964,-4.942863970554423,1.0,0.0,0.0 -465,3.0,4.2026515475425485,1.6,0.0,0.0,0.967935813779541,-6.075046001829186,1.0,0.0,0.0 -465,4.0,52.09075997085633,19.0,-7.89422373877394e-10,24.1425452409884,0.9600433164841772,-9.024081533087871,0.0,1.0,0.0 -465,5.0,0.0,0.0,0.0,0.0,0.9675639955942156,-7.174493924275764,1.0,0.0,0.0 -465,6.0,12.607954642627648,10.9,0.0,0.0,0.957977705624488,-8.212427739452052,1.0,0.0,0.0 -465,7.0,16.58941400345743,30.0,-2.7398762278497893e-10,29.629470361297635,0.9662127364694298,-7.602200770050078,0.0,1.0,0.0 -465,8.0,0.0,0.0,0.0,0.0,1.0168501203179592,-8.907498892102494,1.0,0.0,0.0 -465,9.0,3.207286707335103,2.0,0.0,0.0,1.010787399892547,-9.804435396017093,1.0,0.0,0.0 -465,10.0,0.0,0.0,6.571727809528103e-10,20.15093765553371,1.0565217597669705,-8.90749889202959,0.0,1.0,0.0 -465,11.0,6.19338122795744,7.5,0.0,0.0,1.0170954981118396,-9.704018795586748,1.0,0.0,0.0 -465,12.0,0.0,0.0,7.974936177394589e-11,14.776831861470711,1.0370440855388718,-9.704018795580682,0.0,1.0,0.0 -465,13.0,3.4284788940478688,1.6,0.0,0.0,1.0038577305392011,-10.231067309585894,1.0,0.0,0.0 -465,14.0,4.534439827611697,2.5,0.0,0.0,0.9980658302548978,-10.262998625395998,1.0,0.0,0.0 -465,15.0,1.9354316337367,1.8,0.0,0.0,1.0084574725439213,-9.856584092907486,1.0,0.0,0.0 -465,16.0,4.976824201037229,5.8,0.0,0.0,1.0056321426997854,-9.916028940826545,1.0,0.0,0.0 -465,17.0,1.769537493702126,0.9,0.0,0.0,0.9805915892886616,-10.891262423312062,1.0,0.0,0.0 -465,18.0,5.253314434428186,3.4,0.0,0.0,0.972612219940206,-11.168491158841883,1.0,0.0,0.0 -465,19.0,1.2165570269202115,0.7,0.0,0.0,1.0082051425060952,-9.910550955122126,1.0,0.0,0.0 -465,20.0,9.6771581686835,11.2,0.0,0.0,0.999860588404191,-10.009104611935454,1.0,0.0,0.0 -465,21.0,0.0,0.0,0.0,0.0,1.0001254529257193,-10.014173784295105,1.0,0.0,0.0 -465,22.0,1.769537493702126,1.6,0.0,0.0,0.9909158634746542,-10.321719344431468,1.0,0.0,0.0 -465,23.0,4.810930061002654,6.7,0.0,0.0,0.9881074843805114,-10.247554375701416,1.0,0.0,0.0 -465,24.0,0.0,0.0,0.0,0.0,0.9811859103616044,-9.969805847213005,1.0,0.0,0.0 -465,25.0,1.9354316337367,2.3,0.0,0.0,0.96705546003521,-10.06058921626325,1.0,0.0,0.0 -465,26.0,0.0,0.0,0.0,0.0,0.9839491586021069,-9.714909872487931,1.0,0.0,0.0 -465,27.0,0.0,0.0,0.0,0.0,0.9655086796830268,-7.531709583418207,1.0,0.0,0.0 -465,28.0,1.3271531202765945,0.9,0.0,0.0,0.9700341302114888,-10.362313591931414,1.0,0.0,0.0 -465,29.0,5.861592947888291,1.9,0.0,0.0,0.962437349365267,-10.84804928230529,1.0,0.0,0.0 -466,0.0,0.0,0.0,138.00001317129542,0.0002922759430035,1.0,0.0,0.0,0.0,1.0 -466,1.0,11.99967612916754,12.7,27.56171755768341,14.354392097201211,0.9751782824157303,-4.637419959835165,0.0,1.0,0.0 -466,2.0,1.3271531202765945,1.2,0.0,0.0,0.9490808291590248,-9.775563458858954,1.0,0.0,0.0 -466,3.0,4.2026515475425485,1.6,0.0,0.0,0.9495936289781493,-9.750481559066383,1.0,0.0,0.0 -466,4.0,52.09075997085633,19.0,-7.337620179075186e-10,27.60388336378428,0.9531480728936896,-11.027353546704909,0.0,1.0,0.0 -466,5.0,0.0,0.0,0.0,0.0,0.9511388722712322,-10.078990185756837,1.0,0.0,0.0 -466,6.0,12.607954642627648,10.9,0.0,0.0,0.9451871773744072,-10.751063246988997,1.0,0.0,0.0 -466,7.0,16.58941400345743,30.0,-7.18944940950702e-10,39.060252201663126,0.9531847244029662,-10.591141878874604,0.0,1.0,0.0 -466,8.0,0.0,0.0,0.0,0.0,1.0098357433739105,-15.395199751497069,1.0,0.0,0.0 -466,9.0,3.207286707335103,2.0,0.0,0.0,1.0010855421876976,-15.39519975145387,1.0,0.0,0.0 -466,10.0,0.0,0.0,-6.929273317725356e-10,8.164586637251238,1.0263815783381154,-15.39519975157674,0.0,1.0,0.0 -466,11.0,6.19338122795744,7.5,0.0,0.0,1.0136436069963133,-14.051505837868334,1.0,0.0,0.0 -466,12.0,0.0,0.0,-1.024287827236677e-09,23.99374528407608,1.0457648282223202,-14.051505837945845,0.0,1.0,0.0 -466,13.0,3.4284788940478688,1.6,0.0,0.0,1.0019442463918231,-14.60715377938317,1.0,0.0,0.0 -466,14.0,4.534439827611697,2.5,0.0,0.0,0.9974844552993042,-14.700332826248806,1.0,0.0,0.0 -466,15.0,1.9354316337367,1.8,0.0,0.0,0.9915383496113152,-14.422350488266533,1.0,0.0,0.0 -466,16.0,4.976824201037229,5.8,0.0,0.0,0.9774369145393738,-14.808470970539515,1.0,0.0,0.0 -466,17.0,1.769537493702126,0.9,0.0,0.0,0.9894193015617186,-15.297252885100356,1.0,0.0,0.0 -466,18.0,5.253314434428186,3.4,0.0,0.0,0.986986333178838,-15.55328480096059,1.0,0.0,0.0 -466,19.0,1.2165570269202115,0.7,0.0,0.0,0.9898503165008586,-15.546243180067494,1.0,0.0,0.0 -466,20.0,9.6771581686835,11.2,0.0,0.0,0.9902557028944976,-15.47225530551081,1.0,0.0,0.0 -466,21.0,0.0,0.0,0.0,0.0,0.9906021939973152,-15.435166981159169,1.0,0.0,0.0 -466,22.0,1.769537493702126,1.6,0.0,0.0,0.9873394107443408,-14.940024465269664,1.0,0.0,0.0 -466,23.0,4.810930061002654,6.7,0.0,0.0,0.980597171239326,-15.111284069263602,1.0,0.0,0.0 -466,24.0,0.0,0.0,0.0,0.0,0.9715815216043168,-14.101607018733285,1.0,0.0,0.0 -466,25.0,1.9354316337367,2.3,0.0,0.0,0.957307155144926,-14.194221402941972,1.0,0.0,0.0 -466,26.0,0.0,0.0,0.0,0.0,0.9729793814944292,-13.389151613670176,1.0,0.0,0.0 -466,27.0,0.0,0.0,0.0,0.0,0.948129520500415,-10.5227911045761,1.0,0.0,0.0 -466,28.0,1.3271531202765945,0.9,0.0,0.0,0.9660840978490116,-13.604531981197155,1.0,0.0,0.0 -466,29.0,5.861592947888291,1.9,0.0,0.0,0.940344973207068,-15.220803113657992,1.0,0.0,0.0 -467,0.0,0.0,0.0,163.8229647699732,0.0012971342644441,1.0,0.0,0.0,0.0,1.0 -467,1.0,11.99967612916754,12.7,1.253075934130132e-06,9.726484750820056,0.9799271709780234,-3.753638958265736,0.0,1.0,0.0 -467,2.0,1.3271531202765945,1.2,0.0,0.0,0.9744091523921792,-4.950662801215358,1.0,0.0,0.0 -467,3.0,4.2026515475425485,1.6,0.0,0.0,0.9678507982716694,-6.084766296282793,1.0,0.0,0.0 -467,4.0,52.09075997085633,19.0,8.138157319691967e-10,24.539255688198352,0.9601617088434756,-9.035807286780486,0.0,1.0,0.0 -467,5.0,0.0,0.0,0.0,0.0,0.9669946961388208,-7.175708405719595,1.0,0.0,0.0 -467,6.0,12.607954642627648,10.9,0.0,0.0,0.9576880124349894,-8.21777606857683,1.0,0.0,0.0 -467,7.0,16.58941400345743,30.0,1.012860617858849e-09,32.67274942894734,0.9665227076284066,-7.633338173053255,0.0,1.0,0.0 -467,8.0,0.0,0.0,0.0,0.0,1.0157473631316447,-9.597496672964231,1.0,0.0,0.0 -467,9.0,3.207286707335103,2.0,0.0,0.0,1.0073372183178773,-10.854340689931668,1.0,0.0,0.0 -467,10.0,0.0,0.0,1.9882778932560244e-09,22.547467107968508,1.0599917921289488,-9.597496672744157,0.0,1.0,0.0 -467,11.0,6.19338122795744,7.5,0.0,0.0,1.0197448133018814,-9.727720441853348,1.0,0.0,0.0 -467,12.0,0.0,0.0,9.923455097249815e-10,10.109448789899735,1.0334400712081422,-9.727720441777814,0.0,1.0,0.0 -467,13.0,3.4284788940478688,1.6,0.0,0.0,1.0101800171126334,-10.191572920631456,1.0,0.0,0.0 -467,14.0,4.534439827611697,2.5,0.0,0.0,1.0083150185907872,-10.246165104972745,1.0,0.0,0.0 -467,15.0,1.9354316337367,1.8,0.0,0.0,1.0077595111344857,-10.306390177531563,1.0,0.0,0.0 -467,16.0,4.976824201037229,5.8,0.0,0.0,1.0032470264100777,-10.7825657316098,1.0,0.0,0.0 -467,17.0,1.769537493702126,0.9,0.0,0.0,0.9987311427924486,-10.804870479546524,1.0,0.0,0.0 -467,18.0,5.253314434428186,3.4,0.0,0.0,0.995373115352395,-11.0404513830744,1.0,0.0,0.0 -467,19.0,1.2165570269202115,0.7,0.0,0.0,0.9977141847427472,-11.02499054552474,1.0,0.0,0.0 -467,20.0,9.6771581686835,11.2,0.0,0.0,0.9686092189546256,-11.428057830301324,1.0,0.0,0.0 -467,21.0,0.0,0.0,0.0,0.0,0.9724975413593376,-11.368168486695303,1.0,0.0,0.0 -467,22.0,1.769537493702126,1.6,0.0,0.0,0.952197618585666,-11.631233683104366,1.0,0.0,0.0 -467,23.0,4.810930061002654,6.7,0.0,0.0,0.9591916286281368,-11.464005140859877,1.0,0.0,0.0 -467,24.0,0.0,0.0,0.0,0.0,0.9636141293237648,-10.873161085411398,1.0,0.0,0.0 -467,25.0,1.9354316337367,2.3,0.0,0.0,0.94921809788253,-10.96733700201073,1.0,0.0,0.0 -467,26.0,0.0,0.0,0.0,0.0,0.9734792218107844,-10.4118479963456,1.0,0.0,0.0 -467,27.0,0.0,0.0,0.0,0.0,0.9636856049690204,-7.594715559349974,1.0,0.0,0.0 -467,28.0,1.3271531202765945,0.9,0.0,0.0,0.9594053946022104,-11.073454055097065,1.0,0.0,0.0 -467,29.0,5.861592947888291,1.9,0.0,0.0,0.9517216900828736,-11.570088990564557,1.0,0.0,0.0 -468,0.0,0.0,0.0,163.91877923127024,0.0001045999773907,1.0,0.0,0.0,0.0,1.0 -468,1.0,11.99967612916754,12.7,1.388432402782832e-07,11.374322417775282,0.9801033440962748,-3.765869609442122,0.0,1.0,0.0 -468,2.0,1.3271531202765945,1.2,0.0,0.0,0.9738405793524362,-4.927731349098128,1.0,0.0,0.0 -468,3.0,4.2026515475425485,1.6,0.0,0.0,0.9671466175552972,-6.056566349814909,1.0,0.0,0.0 -468,4.0,52.09075997085633,19.0,6.867422512898343e-11,24.97148540336289,0.9601424879029802,-9.065384204298551,0.0,1.0,0.0 -468,5.0,0.0,0.0,0.0,0.0,0.9658861720322848,-7.201050778578068,1.0,0.0,0.0 -468,6.0,12.607954642627648,10.9,0.0,0.0,0.9570188789724448,-8.244732602944538,1.0,0.0,0.0 -468,7.0,16.58941400345743,30.0,9.910267580325467e-11,30.87124784166501,0.9554238457217528,-10.3518254367762,0.0,1.0,0.0 -468,8.0,0.0,0.0,0.0,0.0,1.0140381379560706,-9.126874922457723,1.0,0.0,0.0 -468,9.0,3.207286707335103,2.0,0.0,0.0,1.004154476868078,-10.12842549063842,1.0,0.0,0.0 -468,10.0,0.0,0.0,1.3227969505402528e-10,23.42267486007401,1.0599996292297564,-9.12687492244306,0.0,1.0,0.0 -468,11.0,6.19338122795744,7.5,0.0,0.0,1.0171530261804806,-9.363444047029784,1.0,0.0,0.0 -468,12.0,0.0,0.0,5.1294337056403347e-11,9.893799496303185,1.0305931689182437,-9.363444047025862,0.0,1.0,0.0 -468,13.0,3.4284788940478688,1.6,0.0,0.0,0.9905117498727162,-10.21145327856553,1.0,0.0,0.0 -468,14.0,4.534439827611697,2.5,0.0,0.0,1.0013926540607847,-10.020214655678018,1.0,0.0,0.0 -468,15.0,1.9354316337367,1.8,0.0,0.0,1.0051556492061842,-9.786857779165535,1.0,0.0,0.0 -468,16.0,4.976824201037229,5.8,0.0,0.0,1.0001587923524764,-10.122321926850228,1.0,0.0,0.0 -468,17.0,1.769537493702126,0.9,0.0,0.0,0.9931295081589624,-10.408579208384923,1.0,0.0,0.0 -468,18.0,5.253314434428186,3.4,0.0,0.0,0.990551008053466,-10.540597299802467,1.0,0.0,0.0 -468,19.0,1.2165570269202115,0.7,0.0,0.0,0.993325119844364,-10.469174983953655,1.0,0.0,0.0 -468,20.0,9.6771581686835,11.2,0.0,0.0,0.991903646022489,-10.364201725907256,1.0,0.0,0.0 -468,21.0,0.0,0.0,0.0,0.0,0.991774294965487,-10.377914706672977,1.0,0.0,0.0 -468,22.0,1.769537493702126,1.6,0.0,0.0,0.9672953148813496,-10.860534651162506,1.0,0.0,0.0 -468,23.0,4.810930061002654,6.7,0.0,0.0,0.9741800376672084,-10.698449018063313,1.0,0.0,0.0 -468,24.0,0.0,0.0,0.0,0.0,0.9704476080909702,-10.545531812027766,1.0,0.0,0.0 -468,25.0,1.9354316337367,2.3,0.0,0.0,0.9561560539358728,-10.638366038997145,1.0,0.0,0.0 -468,26.0,0.0,0.0,0.0,0.0,0.9753129133861412,-10.362825690016578,1.0,0.0,0.0 -468,27.0,0.0,0.0,0.0,0.0,0.9612512703171922,-8.169313220396193,1.0,0.0,0.0 -468,28.0,1.3271531202765945,0.9,0.0,0.0,0.9612671669230476,-11.021910639170033,1.0,0.0,0.0 -468,29.0,5.861592947888291,1.9,0.0,0.0,0.9535988339634676,-11.516610016177282,1.0,0.0,0.0 -469,0.0,0.0,0.0,163.8578057366597,0.0029519000242395,1.0,0.0,0.0,0.0,1.0 -469,1.0,11.99967612916754,12.7,4.690697225837391e-06,-16.877977581656353,0.9776564638826338,-3.71292565195284,0.0,1.0,0.0 -469,2.0,1.3271531202765945,1.2,0.0,0.0,0.9809435907196424,-5.039882867359596,1.0,0.0,0.0 -469,3.0,4.2026515475425485,1.6,0.0,0.0,0.975917187673349,-6.192163541203282,1.0,0.0,0.0 -469,4.0,52.09075997085633,19.0,4.650315502325307e-09,37.963117698615534,0.9782371282711668,-9.239891435631876,0.0,1.0,0.0 -469,5.0,0.0,0.0,0.0,0.0,0.9779142336625316,-7.326277825695782,1.0,0.0,0.0 -469,6.0,12.607954642627648,10.9,0.0,0.0,0.9716673880313522,-8.379716524036507,1.0,0.0,0.0 -469,7.0,16.58941400345743,30.0,8.736054191152228e-09,39.99906516618276,0.9803968900527136,-7.809226250076441,0.0,1.0,0.0 -469,8.0,0.0,0.0,0.0,0.0,1.0251032355630294,-9.062632109829565,1.0,0.0,0.0 -469,9.0,3.207286707335103,2.0,0.0,0.0,1.020340413636294,-9.962411187634489,1.0,0.0,0.0 -469,10.0,0.0,0.0,1.1401239460508746e-08,17.782485200367773,1.0599972590165263,-9.062632108579114,0.0,1.0,0.0 -469,11.0,6.19338122795744,7.5,0.0,0.0,1.0350334892694852,-9.649710448819455,1.0,0.0,0.0 -469,12.0,0.0,0.0,1.0815136084024866e-08,18.90240858811514,1.0599989590903898,-9.649710448028731,0.0,1.0,0.0 -469,13.0,3.4284788940478688,1.6,0.0,0.0,1.0228745857254322,-10.10959915312861,1.0,0.0,0.0 -469,14.0,4.534439827611697,2.5,0.0,0.0,1.0183368804112758,-10.11092429164614,1.0,0.0,0.0 -469,15.0,1.9354316337367,1.8,0.0,0.0,1.02270810176457,-9.872746225497922,1.0,0.0,0.0 -469,16.0,4.976824201037229,5.8,0.0,0.0,1.0167524054217014,-10.033332354048396,1.0,0.0,0.0 -469,17.0,1.769537493702126,0.9,0.0,0.0,1.0099817636025243,-10.397695115381143,1.0,0.0,0.0 -469,18.0,5.253314434428186,3.4,0.0,0.0,1.0073052492096513,-10.47219714389965,1.0,0.0,0.0 -469,19.0,1.2165570269202115,0.7,0.0,0.0,1.009960823492366,-10.375064494649877,1.0,0.0,0.0 -469,20.0,9.6771581686835,11.2,0.0,0.0,1.006017579026975,-10.224444992155371,1.0,0.0,0.0 -469,21.0,0.0,0.0,0.0,0.0,1.0051724111551528,-10.247639454302806,1.0,0.0,0.0 -469,22.0,1.769537493702126,1.6,0.0,0.0,1.0067783793177123,-10.292044737900406,1.0,0.0,0.0 -469,23.0,4.810930061002654,6.7,0.0,0.0,0.9980072768042574,-10.39083828431874,1.0,0.0,0.0 -469,24.0,0.0,0.0,0.0,0.0,0.9913648769314852,-10.11833560687531,1.0,0.0,0.0 -469,25.0,1.9354316337367,2.3,0.0,0.0,0.9773837726548428,-10.207237359945625,1.0,0.0,0.0 -469,26.0,0.0,0.0,0.0,0.0,0.9942262855122964,-9.868191275977988,1.0,0.0,0.0 -469,27.0,0.0,0.0,0.0,0.0,0.9766025383015688,-7.691898031278407,1.0,0.0,0.0 -469,28.0,1.3271531202765945,0.9,0.0,0.0,0.9644072089973184,-11.28456419149034,1.0,0.0,0.0 -469,29.0,5.861592947888291,1.9,0.0,0.0,0.9400009005887592,-12.67594492840392,1.0,0.0,0.0 -470,0.0,0.0,0.0,163.98060048192178,0.002133803061799,1.0,0.0,0.0,0.0,1.0 -470,1.0,11.99967612916754,12.7,2.9428747636604763e-06,8.210640402286607,0.9796888548281424,-3.752585429173615,0.0,1.0,0.0 -470,2.0,1.3271531202765945,1.2,0.0,0.0,0.9750345013609368,-4.966228892813105,1.0,0.0,0.0 -470,3.0,4.2026515475425485,1.6,0.0,0.0,0.9686238272523616,-6.103784030937986,1.0,0.0,0.0 -470,4.0,52.09075997085633,19.0,2.1433105575694623e-09,24.340229864547865,0.9601361610971024,-9.039605993199595,0.0,1.0,0.0 -470,5.0,0.0,0.0,0.0,0.0,0.9675866982871264,-7.194946781333512,1.0,0.0,0.0 -470,6.0,12.607954642627648,10.9,0.0,0.0,0.9580289388741022,-8.230817361276577,1.0,0.0,0.0 -470,7.0,16.58941400345743,30.0,3.0723152795542436e-09,30.27239360397769,0.9558398173816808,-10.29615375301588,0.0,1.0,0.0 -470,8.0,0.0,0.0,0.0,0.0,1.0177065312629494,-8.965104916009501,1.0,0.0,0.0 -470,9.0,3.207286707335103,2.0,0.0,0.0,1.0112172857196609,-9.880898012940714,1.0,0.0,0.0 -470,10.0,0.0,0.0,3.5854920229235203e-09,21.049095399192087,1.059047562561328,-8.965104915613043,0.0,1.0,0.0 -470,11.0,6.19338122795744,7.5,0.0,0.0,1.0238661777844615,-9.718323651392366,1.0,0.0,0.0 -470,12.0,0.0,0.0,2.987654775997897e-09,16.41256370280695,1.0458367100512098,-9.71832365116856,0.0,1.0,0.0 -470,13.0,3.4284788940478688,1.6,0.0,0.0,1.0118549704471778,-10.238427014627655,1.0,0.0,0.0 -470,14.0,4.534439827611697,2.5,0.0,0.0,1.0071934148150397,-10.295781079193862,1.0,0.0,0.0 -470,15.0,1.9354316337367,1.8,0.0,0.0,1.012467599155914,-9.883590191804174,1.0,0.0,0.0 -470,16.0,4.976824201037229,5.8,0.0,0.0,1.0072042869377478,-9.98115570941746,1.0,0.0,0.0 -470,17.0,1.769537493702126,0.9,0.0,0.0,0.986860533941589,-11.024348266077352,1.0,0.0,0.0 -470,18.0,5.253314434428186,3.4,0.0,0.0,0.9771891298747302,-11.365337697559468,1.0,0.0,0.0 -470,19.0,1.2165570269202115,0.7,0.0,0.0,0.976277697222292,-11.400727384923766,1.0,0.0,0.0 -470,20.0,9.6771581686835,11.2,0.0,0.0,0.9988384171533932,-10.121077304209596,1.0,0.0,0.0 -470,21.0,0.0,0.0,0.0,0.0,0.9986413373351122,-10.136990386628296,1.0,0.0,0.0 -470,22.0,1.769537493702126,1.6,0.0,0.0,0.9733564632250304,-10.639975055977844,1.0,0.0,0.0 -470,23.0,4.810930061002654,6.7,0.0,0.0,0.9801982666751188,-10.479887722618049,1.0,0.0,0.0 -470,24.0,0.0,0.0,0.0,0.0,0.9746587659800244,-10.376335176423074,1.0,0.0,0.0 -470,25.0,1.9354316337367,2.3,0.0,0.0,0.9604308331692802,-10.46835688844721,1.0,0.0,0.0 -470,26.0,0.0,0.0,0.0,0.0,0.9783869112645188,-10.227190766603965,1.0,0.0,0.0 -470,27.0,0.0,0.0,0.0,0.0,0.9628976654641984,-8.141983476536405,1.0,0.0,0.0 -470,28.0,1.3271531202765945,0.9,0.0,0.0,0.9643879815261412,-10.882081713688684,1.0,0.0,0.0 -470,29.0,5.861592947888291,1.9,0.0,0.0,0.9567452756826668,-11.373561943202525,1.0,0.0,0.0 -471,0.0,0.0,0.0,163.48384368672345,0.0006363256924046,1.0,0.0,0.0,0.0,1.0 -471,1.0,11.99967612916754,12.7,8.081697785137509e-07,10.65131850506438,0.9801015797343906,-3.752797033898128,0.0,1.0,0.0 -471,2.0,1.3271531202765945,1.2,0.0,0.0,0.974026517873655,-4.92165501042138,1.0,0.0,0.0 -471,3.0,4.2026515475425485,1.6,0.0,0.0,0.9673748087072316,-6.04892779916866,1.0,0.0,0.0 -471,4.0,52.09075997085633,19.0,-7.461174849936594e-10,24.270959792999165,0.959974735556004,-9.03327858693303,0.0,1.0,0.0 -471,5.0,0.0,0.0,0.0,0.0,0.966993736104699,-7.180575078077855,1.0,0.0,0.0 -471,6.0,12.607954642627648,10.9,0.0,0.0,0.9576093935749044,-8.219757331640459,1.0,0.0,0.0 -471,7.0,16.58941400345743,30.0,-2.8165422634759536e-10,30.59580365761351,0.9659888497060344,-7.614937569887765,0.0,1.0,0.0 -471,8.0,0.0,0.0,0.0,0.0,1.0155117725254654,-9.013117197044377,1.0,0.0,0.0 -471,9.0,3.207286707335103,2.0,0.0,0.0,1.006558565914186,-9.964981417378024,1.0,0.0,0.0 -471,10.0,0.0,0.0,8.780421100110991e-10,22.65883710641557,1.0599754270395851,-9.013117196947162,0.0,1.0,0.0 -471,11.0,6.19338122795744,7.5,0.0,0.0,1.0136432375719937,-9.491804945269209,1.0,0.0,0.0 -471,12.0,0.0,0.0,-3.8459568816344e-10,10.008115161484646,1.0272824861861662,-9.491804945298837,0.0,1.0,0.0 -471,13.0,3.4284788940478688,1.6,0.0,0.0,1.0025387556959937,-9.967924311715574,1.0,0.0,0.0 -471,14.0,4.534439827611697,2.5,0.0,0.0,0.9991945802113656,-9.995948090347955,1.0,0.0,0.0 -471,15.0,1.9354316337367,1.8,0.0,0.0,1.0043997929191206,-9.803457547368222,1.0,0.0,0.0 -471,16.0,4.976824201037229,5.8,0.0,0.0,1.0015185007350165,-10.011039597754795,1.0,0.0,0.0 -471,17.0,1.769537493702126,0.9,0.0,0.0,0.9925623455054162,-10.33658140745847,1.0,0.0,0.0 -471,18.0,5.253314434428186,3.4,0.0,0.0,0.9909480913739253,-10.439639077639706,1.0,0.0,0.0 -471,19.0,1.2165570269202115,0.7,0.0,0.0,0.9942301049547082,-10.3531760539755,1.0,0.0,0.0 -471,20.0,9.6771581686835,11.2,0.0,0.0,0.9959547184649667,-10.14399804707735,1.0,0.0,0.0 -471,21.0,0.0,0.0,0.0,0.0,0.9963399178816232,-10.140467150568655,1.0,0.0,0.0 -471,22.0,1.769537493702126,1.6,0.0,0.0,0.9906803454277572,-10.177291439518122,1.0,0.0,0.0 -471,23.0,4.810930061002654,6.7,0.0,0.0,0.986075069560684,-10.269223673860562,1.0,0.0,0.0 -471,24.0,0.0,0.0,0.0,0.0,0.9796922554767068,-9.994176774567435,1.0,0.0,0.0 -471,25.0,1.9354316337367,2.3,0.0,0.0,0.9655396173185712,-10.085241295578442,1.0,0.0,0.0 -471,26.0,0.0,0.0,0.0,0.0,0.9828021791034626,-9.74014803446277,1.0,0.0,0.0 -471,27.0,0.0,0.0,0.0,0.0,0.9649401261072496,-7.539927330117572,1.0,0.0,0.0 -471,28.0,1.3271531202765945,0.9,0.0,0.0,0.9688699343707794,-10.389085078705136,1.0,0.0,0.0 -471,29.0,5.861592947888291,1.9,0.0,0.0,0.9612637300354816,-10.87599695946528,1.0,0.0,0.0 -472,0.0,0.0,0.0,163.4917884562821,0.0028812369232689,1.0,0.0,0.0,0.0,1.0 -472,1.0,11.992219066820848,12.7,5.333220117910517e-06,11.525418960721955,0.9801515089570424,-3.737636146241725,0.0,1.0,0.0 -472,2.0,1.3263283760539188,1.2,0.0,0.0,0.9739353552198536,-4.966012282072517,1.0,0.0,0.0 -472,3.0,4.200039857504076,1.6,0.0,0.0,0.9672692556062988,-6.1040867642445455,1.0,0.0,0.0 -472,4.0,52.05838876011632,19.0,7.840698827639629e-09,25.164624919845465,0.9601364140987144,-8.981521423122393,0.0,1.0,0.0 -472,5.0,0.0,0.0,0.0,0.0,0.9654588539460264,-7.05286726087148,1.0,0.0,0.0 -472,6.0,12.600119572512227,10.9,0.0,0.0,0.956770525687799,-8.122465686271749,1.0,0.0,0.0 -472,7.0,16.579104700673987,30.0,7.260782290078936e-09,36.83924707621334,0.966521075686536,-7.533913896150073,0.0,1.0,0.0 -472,8.0,0.0,0.0,0.0,0.0,1.0281636468805733,-11.950627013025365,1.0,0.0,0.0 -472,9.0,3.205293575463637,2.0,0.0,0.0,1.0147105455059453,-11.950627013124336,1.0,0.0,0.0 -472,10.0,0.0,0.0,1.6383060004764954e-09,12.885652469085066,1.0536022385567,-11.950627012845128,0.0,1.0,0.0 -472,11.0,6.189532421584954,7.5,0.0,0.0,1.0273831085895175,-10.453573393170336,1.0,0.0,0.0 -472,12.0,0.0,0.0,9.02896297336194e-09,15.849230517034217,1.048544745065472,-10.453573392498026,0.0,1.0,0.0 -472,13.0,3.426348304805957,1.6,0.0,0.0,1.015968442094625,-11.009816756382312,1.0,0.0,0.0 -472,14.0,4.531621951517556,2.5,0.0,0.0,1.011576257506697,-11.118844387848918,1.0,0.0,0.0 -472,15.0,1.9342288817452984,1.8,0.0,0.0,1.0150450269569895,-11.18821513469292,1.0,0.0,0.0 -472,16.0,4.973731410202196,5.8,0.0,0.0,1.0107000311621752,-11.81029042246041,1.0,0.0,0.0 -472,17.0,1.7684378347385583,0.9,0.0,0.0,1.0034605029699075,-11.753651288459864,1.0,0.0,0.0 -472,18.0,5.250049821880095,3.4,0.0,0.0,1.0009700158651993,-12.035214839466766,1.0,0.0,0.0 -472,19.0,1.2158010113827589,0.7,0.0,0.0,1.0037445673569914,-12.04569406017287,1.0,0.0,0.0 -472,20.0,9.67114440872649,11.2,0.0,0.0,1.002985693482838,-12.139002224077217,1.0,0.0,0.0 -472,21.0,0.0,0.0,0.0,0.0,1.0062952288049385,-11.810973035089804,1.0,0.0,0.0 -472,22.0,1.7684378347385583,1.6,0.0,0.0,1.00204095749907,-11.368315575665244,1.0,0.0,0.0 -472,23.0,4.807940363195455,6.7,0.0,0.0,0.9960150687825524,-11.55690602264361,1.0,0.0,0.0 -472,24.0,0.0,0.0,0.0,0.0,0.9867198053846392,-10.706906865656212,1.0,0.0,0.0 -472,25.0,1.9342288817452984,2.3,0.0,0.0,0.9726741471245322,-10.796386765850803,1.0,0.0,0.0 -472,26.0,0.0,0.0,0.0,0.0,0.9878411783598642,-10.0973125657018,1.0,0.0,0.0 -472,27.0,0.0,0.0,0.0,0.0,0.9626120569602392,-7.460586428926979,1.0,0.0,0.0 -472,28.0,1.3263283760539188,0.9,0.0,0.0,0.9739892912166124,-10.739035305420511,1.0,0.0,0.0 -472,29.0,5.857950327571475,1.9,0.0,0.0,0.9664275868097484,-11.22045803655355,1.0,0.0,0.0 -473,0.0,0.0,0.0,112.86111167703238,2.4156772582273334e-06,1.0,0.0,0.0,0.0,1.0 -473,1.0,11.992219066820848,12.7,49.35904358941676,15.458862630939876,0.9860683763142836,-2.293845099598088,0.0,1.0,0.0 -473,2.0,1.3263283760539188,1.2,0.0,0.0,0.9791890712294716,-4.140545835225468,1.0,0.0,0.0 -473,3.0,4.200039857504076,1.6,0.0,0.0,0.9736437030142316,-5.0774288871863344,1.0,0.0,0.0 -473,4.0,52.05838876011632,19.0,0.0,0.0,0.9400000008172644,-7.335618553149811,0.0,1.0,0.0 -473,5.0,0.0,0.0,0.0,0.0,0.972133840125184,-6.064999519588416,1.0,0.0,0.0 -473,6.0,12.600119572512227,10.9,0.0,0.0,0.9523556544485502,-6.884709143694818,1.0,0.0,0.0 -473,7.0,16.579104700673987,30.0,1.6804755382418261e-09,39.99999415916504,0.9868071127642845,-9.526934927509153,0.0,1.0,0.0 -473,8.0,0.0,0.0,0.0,0.0,1.0219859020546629,-7.885521571358816,1.0,0.0,0.0 -473,9.0,3.205293575463637,2.0,0.0,0.0,1.017083991891474,-8.826331989761158,1.0,0.0,0.0 -473,10.0,0.0,0.0,-1.4827028989929262e-08,19.37255992337372,1.0599999825307882,-7.88552157298995,0.0,1.0,0.0 -473,11.0,6.189532421584954,7.5,0.0,0.0,1.0337929922315223,-8.539283768713453,1.0,0.0,0.0 -473,12.0,0.0,0.0,-1.2676808943286734e-08,19.84242772152704,1.0599999729108271,-8.539283769641393,0.0,1.0,0.0 -473,13.0,3.426348304805957,1.6,0.0,0.0,1.0216449607406386,-8.99703285032222,1.0,0.0,0.0 -473,14.0,4.531621951517556,2.5,0.0,0.0,1.0171447935472917,-8.99595331256009,1.0,0.0,0.0 -473,15.0,1.9342288817452984,1.8,0.0,0.0,1.0206023419752313,-8.747485841931454,1.0,0.0,0.0 -473,16.0,4.973731410202196,5.8,0.0,0.0,1.0138387610202937,-8.902463978297844,1.0,0.0,0.0 -473,17.0,1.7684378347385583,0.9,0.0,0.0,1.0080474430364887,-9.276085320757868,1.0,0.0,0.0 -473,18.0,5.250049821880095,3.4,0.0,0.0,1.0049348522733126,-9.346407182004349,1.0,0.0,0.0 -473,19.0,1.2158010113827589,0.7,0.0,0.0,1.007369115242612,-9.24648986331601,1.0,0.0,0.0 -473,20.0,9.67114440872649,11.2,0.0,0.0,1.006964619479225,-9.024670017727814,1.0,0.0,0.0 -473,21.0,0.0,0.0,0.0,0.0,1.0074597622417087,-9.028870156122125,1.0,0.0,0.0 -473,22.0,1.7684378347385583,1.6,0.0,0.0,1.006367271783437,-9.173396511988583,1.0,0.0,0.0 -473,23.0,4.807940363195455,6.7,0.0,0.0,0.9986378561280717,-9.266656404068428,1.0,0.0,0.0 -473,24.0,0.0,0.0,0.0,0.0,0.9904826560741038,-9.17272492667096,1.0,0.0,0.0 -473,25.0,1.9342288817452984,2.3,0.0,0.0,0.9764919210953318,-9.261516381253688,1.0,0.0,0.0 -473,26.0,0.0,0.0,0.0,0.0,0.9924700933115542,-9.035657562404555,1.0,0.0,0.0 -473,27.0,0.0,0.0,0.0,0.0,0.9738814047939616,-7.091150703286606,1.0,0.0,0.0 -473,28.0,1.3263283760539188,0.9,0.0,0.0,0.978686626876721,-9.671325715303512,1.0,0.0,0.0 -473,29.0,5.857950327571475,1.9,0.0,0.0,0.9711623682519178,-10.148106683269033,1.0,0.0,0.0 -474,0.0,0.0,0.0,163.46011316820957,0.0042899554689057,1.0,0.0,0.0,0.0,1.0 -474,1.0,11.992219066820848,12.7,6.0812959017581554e-06,9.49877724544256,0.97994026722691,-3.7446190898461977,0.0,1.0,0.0 -474,2.0,1.3263283760539188,1.2,0.0,0.0,0.974512066964792,-4.94038166653513,1.0,0.0,0.0 -474,3.0,4.200039857504076,1.6,0.0,0.0,0.9679759124251712,-6.071966015460849,1.0,0.0,0.0 -474,4.0,52.05838876011632,19.0,6.6685716589381265e-09,24.162475718451333,0.9600045327286152,-9.014494803882044,0.0,1.0,0.0 -474,5.0,0.0,0.0,0.0,0.0,0.9674183534460292,-7.161503278402214,1.0,0.0,0.0 -474,6.0,12.600119572512227,10.9,0.0,0.0,0.9578766180449912,-8.200596696003306,1.0,0.0,0.0 -474,7.0,16.579104700673987,30.0,2.724354642919214e-09,29.82764032729916,0.9661597896723902,-7.589933256979095,0.0,1.0,0.0 -474,8.0,0.0,0.0,0.0,0.0,1.014400652359454,-8.884623343536346,1.0,0.0,0.0 -474,9.0,3.205293575463637,2.0,0.0,0.0,1.0109070913200744,-9.776205099299736,1.0,0.0,0.0 -474,10.0,0.0,0.0,-5.076184979584635e-09,16.360452772050735,1.0469057204854415,-8.884623344105993,0.0,1.0,0.0 -474,11.0,6.189532421584954,7.5,0.0,0.0,1.0184726476949286,-9.728137173436773,1.0,0.0,0.0 -474,12.0,0.0,0.0,4.4496630583237236e-10,18.005883882223316,1.0426497385276656,-9.728137173403155,0.0,1.0,0.0 -474,13.0,3.426348304805957,1.6,0.0,0.0,1.0071818505760264,-10.15263742027108,1.0,0.0,0.0 -474,14.0,4.531621951517556,2.5,0.0,0.0,1.003943528872099,-10.128636110896874,1.0,0.0,0.0 -474,15.0,1.9342288817452984,1.8,0.0,0.0,0.996484273987455,-10.094938350686826,1.0,0.0,0.0 -474,16.0,4.973731410202196,5.8,0.0,0.0,0.9824568055983022,-10.4768311340757,1.0,0.0,0.0 -474,17.0,1.7684378347385583,0.9,0.0,0.0,0.9972377235382224,-10.352634631183456,1.0,0.0,0.0 -474,18.0,5.250049821880095,3.4,0.0,0.0,0.9955643991490092,-10.387072862100544,1.0,0.0,0.0 -474,19.0,1.2158010113827589,0.7,0.0,0.0,0.9987980322820832,-10.26589151984787,1.0,0.0,0.0 -474,20.0,9.67114440872649,11.2,0.0,0.0,1.0002850349633066,-9.97407000620501,1.0,0.0,0.0 -474,21.0,0.0,0.0,0.0,0.0,1.0006453131995607,-9.9771828172379,1.0,0.0,0.0 -474,22.0,1.7684378347385583,1.6,0.0,0.0,0.9950771027657368,-10.21978679514825,1.0,0.0,0.0 -474,23.0,4.807940363195455,6.7,0.0,0.0,0.9899546043416828,-10.191557438371822,1.0,0.0,0.0 -474,24.0,0.0,0.0,0.0,0.0,0.9822921764555992,-9.919984654773431,1.0,0.0,0.0 -474,25.0,1.9342288817452984,2.3,0.0,0.0,0.968181328623011,-10.010284981882126,1.0,0.0,0.0 -474,26.0,0.0,0.0,0.0,0.0,0.9845875668685444,-9.670044147558484,1.0,0.0,0.0 -474,27.0,0.0,0.0,0.0,0.0,0.9654837034067518,-7.5168120091995165,1.0,0.0,0.0 -474,28.0,1.3263283760539188,0.9,0.0,0.0,0.9706871679153356,-10.316074778352082,1.0,0.0,0.0 -474,29.0,5.857950327571475,1.9,0.0,0.0,0.9630989126142586,-10.800801364623668,1.0,0.0,0.0 -475,0.0,0.0,0.0,164.1732647804603,0.0025187924943104,1.0,0.0,0.0,0.0,1.0 -475,1.0,11.992219066820848,12.7,3.698505683160538e-06,7.064217461564176,0.9795857627718048,-3.762166616101429,0.0,1.0,0.0 -475,2.0,1.3263283760539188,1.2,0.0,0.0,0.9752298000280062,-4.956876718540776,1.0,0.0,0.0 -475,3.0,4.200039857504076,1.6,0.0,0.0,0.9688629140532764,-6.09209271051757,1.0,0.0,0.0 -475,4.0,52.05838876011632,19.0,3.7445788848785416e-09,26.06976338131173,0.961827027004762,-9.091957653027965,0.0,1.0,0.0 -475,5.0,0.0,0.0,0.0,0.0,0.9674476226035644,-7.242753308310097,1.0,0.0,0.0 -475,6.0,12.600119572512227,10.9,0.0,0.0,0.9586453782789792,-8.2791054530358,1.0,0.0,0.0 -475,7.0,16.579104700673987,30.0,3.503012508531677e-09,33.07415596148648,0.961017082604183,-10.53693962314406,0.0,1.0,0.0 -475,8.0,0.0,0.0,0.0,0.0,1.016916023242069,-9.045403754652932,1.0,0.0,0.0 -475,9.0,3.205293575463637,2.0,0.0,0.0,1.0091783870690132,-9.979752774179554,1.0,0.0,0.0 -475,10.0,0.0,0.0,5.0944450209530445e-09,21.95426813786576,1.0599962490156662,-9.045403754089689,0.0,1.0,0.0 -475,11.0,6.189532421584954,7.5,0.0,0.0,1.0247238161750831,-9.32229916180303,1.0,0.0,0.0 -475,12.0,0.0,0.0,4.130024445031027e-09,12.988922311093692,1.042172455448235,-9.322299161492817,0.0,1.0,0.0 -475,13.0,3.426348304805957,1.6,0.0,0.0,0.9947277052850252,-10.593112251298322,1.0,0.0,0.0 -475,14.0,4.531621951517556,2.5,0.0,0.0,0.9676822288090688,-11.004802408577744,1.0,0.0,0.0 -475,15.0,1.9342288817452984,1.8,0.0,0.0,1.0117359239741583,-9.692707506539149,1.0,0.0,0.0 -475,16.0,4.973731410202196,5.8,0.0,0.0,1.0056742374659144,-9.991280765857132,1.0,0.0,0.0 -475,17.0,1.7684378347385583,0.9,0.0,0.0,0.972959597761143,-11.006819823386731,1.0,0.0,0.0 -475,18.0,5.250049821880095,3.4,0.0,0.0,0.9784424820670796,-10.905616844628586,1.0,0.0,0.0 -475,19.0,1.2158010113827589,0.7,0.0,0.0,0.985532177405544,-10.710212006191435,1.0,0.0,0.0 -475,20.0,9.67114440872649,11.2,0.0,0.0,1.0009407496688838,-10.110222742708228,1.0,0.0,0.0 -475,21.0,0.0,0.0,0.0,0.0,1.0020648638571672,-10.092602755074026,1.0,0.0,0.0 -475,22.0,1.7684378347385583,1.6,0.0,0.0,0.9556857720955264,-11.341767632879694,1.0,0.0,0.0 -475,23.0,4.807940363195455,6.7,0.0,0.0,0.9467256107388964,-11.637178783740625,1.0,0.0,0.0 -475,24.0,0.0,0.0,0.0,0.0,0.9545354753698312,-11.302073855976372,1.0,0.0,0.0 -475,25.0,1.9342288817452984,2.3,0.0,0.0,0.94000153093016,-11.397785807747065,1.0,0.0,0.0 -475,26.0,0.0,0.0,0.0,0.0,0.9666354485553148,-10.99226919289441,1.0,0.0,0.0 -475,27.0,0.0,0.0,0.0,0.0,0.9622228013237208,-8.282827097720741,1.0,0.0,0.0 -475,28.0,1.3263283760539188,0.9,0.0,0.0,0.9524609649719656,-11.662872215728042,1.0,0.0,0.0 -475,29.0,5.857950327571475,1.9,0.0,0.0,0.9447226852379074,-12.166463248976129,1.0,0.0,0.0 -476,0.0,0.0,0.0,136.4863417373742,3.934045800235708e-06,1.0,0.0,0.0,0.0,1.0 -476,1.0,11.992219066820848,12.7,33.83023672883566,18.95044241730482,0.9651699809121148,-18.265488343829027,0.0,1.0,0.0 -476,2.0,1.3263283760539188,1.2,0.0,0.0,0.9615266172754884,-13.505480089433409,1.0,0.0,0.0 -476,3.0,4.200039857504076,1.6,0.0,0.0,0.9565446644546226,-16.726961661181015,1.0,0.0,0.0 -476,4.0,52.05838876011632,19.0,-1.8847051735340383e-11,26.175729836351906,0.9488994154187156,-22.358232747493947,0.0,1.0,0.0 -476,5.0,0.0,0.0,0.0,0.0,0.958272740661034,-19.01932199890426,1.0,0.0,0.0 -476,6.0,12.600119572512227,10.9,0.0,0.0,0.9479407135959232,-20.668452923634604,1.0,0.0,0.0 -476,7.0,16.579104700673987,30.0,-1.184746684227714e-11,39.999977785062654,0.9608647333466156,-19.51723326507003,0.0,1.0,0.0 -476,8.0,0.0,0.0,0.0,0.0,1.0111204687455897,-20.74493890977183,1.0,0.0,0.0 -476,9.0,3.205293575463637,2.0,0.0,0.0,1.0030793514181728,-21.636273142729703,1.0,0.0,0.0 -476,10.0,0.0,0.0,-2.4349096476703738e-11,23.99999063079874,1.0582908478646988,-20.744938909774536,0.0,1.0,0.0 -476,11.0,6.189532421584954,7.5,0.0,0.0,1.0280556622024064,-20.53743386077391,1.0,0.0,0.0 -476,12.0,0.0,0.0,-3.8113445783588986e-11,23.999981642757557,1.059760902708988,-20.53743386077672,0.0,1.0,0.0 -476,13.0,3.426348304805957,1.6,0.0,0.0,1.0170943285239598,-20.977296152035755,1.0,0.0,0.0 -476,14.0,4.531621951517556,2.5,0.0,0.0,1.0139365203338988,-20.98179463432543,1.0,0.0,0.0 -476,15.0,1.9342288817452984,1.8,0.0,0.0,1.010670534104844,-21.07474106559477,1.0,0.0,0.0 -476,16.0,4.973731410202196,5.8,0.0,0.0,1.0012213560794072,-21.56848191821576,1.0,0.0,0.0 -476,17.0,1.7684378347385583,0.9,0.0,0.0,0.9766308778504378,-22.66292974844537,1.0,0.0,0.0 -476,18.0,5.250049821880095,3.4,0.0,0.0,0.9789801384660908,-22.56047220209206,1.0,0.0,0.0 -476,19.0,1.2158010113827589,0.7,0.0,0.0,0.9844148713819322,-22.3636510144917,1.0,0.0,0.0 -476,20.0,9.67114440872649,11.2,0.0,0.0,0.9932432568992297,-21.78044361611508,1.0,0.0,0.0 -476,21.0,0.0,0.0,0.0,0.0,0.9938862789766848,-21.7657442067187,1.0,0.0,0.0 -476,22.0,1.7684378347385583,1.6,0.0,0.0,0.99962124488779,-21.37607837450849,1.0,0.0,0.0 -476,23.0,4.807940363195455,6.7,0.0,0.0,0.9872918178149956,-21.76688378860959,1.0,0.0,0.0 -476,24.0,0.0,0.0,0.0,0.0,0.9770382271561744,-21.589021855192797,1.0,0.0,0.0 -476,25.0,1.9342288817452984,2.3,0.0,0.0,0.9628492222473995,-21.680310523373397,1.0,0.0,0.0 -476,26.0,0.0,0.0,0.0,0.0,0.977795143015086,-21.39957831720391,1.0,0.0,0.0 -476,27.0,0.0,0.0,0.0,0.0,0.9574877640834668,-19.37695971691113,1.0,0.0,0.0 -476,28.0,1.3263283760539188,0.9,0.0,0.0,0.9637923327052252,-22.054744065366823,1.0,0.0,0.0 -476,29.0,5.857950327571475,1.9,0.0,0.0,0.956148024124982,-22.54647996179701,1.0,0.0,0.0 -477,0.0,0.0,0.0,163.37793118915752,0.000633619295165,1.0,0.0,0.0,0.0,1.0 -477,1.0,11.992219066820848,12.7,8.053627744671408e-07,10.640581614473945,0.9801116133030424,-3.750293686839389,0.0,1.0,0.0 -477,2.0,1.3263283760539188,1.2,0.0,0.0,0.974040082737768,-4.918381724990646,1.0,0.0,0.0 -477,3.0,4.200039857504076,1.6,0.0,0.0,0.9673909173061576,-6.0448747023619935,1.0,0.0,0.0 -477,4.0,52.05838876011632,19.0,-7.96841411240551e-10,24.26467009405718,0.9599953411379378,-9.027243967379697,0.0,1.0,0.0 -477,5.0,0.0,0.0,0.0,0.0,0.967011489308934,-7.175797481494822,1.0,0.0,0.0 -477,6.0,12.600119572512227,10.9,0.0,0.0,0.9576297598785328,-8.214222628526725,1.0,0.0,0.0 -477,7.0,16.579104700673987,30.0,-3.1922053504074626e-10,30.592617979467093,0.9660067646865554,-7.6098638936553025,0.0,1.0,0.0 -477,8.0,0.0,0.0,0.0,0.0,1.015522554956645,-9.007163485673972,1.0,0.0,0.0 -477,9.0,3.205293575463637,2.0,0.0,0.0,1.0065709232493028,-9.95842274344286,1.0,0.0,0.0 -477,10.0,0.0,0.0,8.683021706968271e-10,22.65305785760272,1.0599748912639944,-9.00716348557784,0.0,1.0,0.0 -477,11.0,6.189532421584954,7.5,0.0,0.0,1.0136491875634244,-9.485519202013078,1.0,0.0,0.0 -477,12.0,0.0,0.0,-4.3164486133002067e-10,10.000330920222652,1.027277888660618,-9.485519202046326,0.0,1.0,0.0 -477,13.0,3.426348304805957,1.6,0.0,0.0,1.0025485618861367,-9.961251609200488,1.0,0.0,0.0 -477,14.0,4.531621951517556,2.5,0.0,0.0,0.9992059685255632,-9.989228211618888,1.0,0.0,0.0 -477,15.0,1.9342288817452984,1.8,0.0,0.0,1.0044098473216,-9.796925717645314,1.0,0.0,0.0 -477,16.0,4.973731410202196,5.8,0.0,0.0,1.0015308206740836,-10.004380710310157,1.0,0.0,0.0 -477,17.0,1.7684378347385583,0.9,0.0,0.0,0.992576776776361,-10.329605324944172,1.0,0.0,0.0 -477,18.0,5.250049821880095,3.4,0.0,0.0,0.9909635725866976,-10.43259523998819,1.0,0.0,0.0 -477,19.0,1.2158010113827589,0.7,0.0,0.0,0.994244954246317,-10.34623004873278,1.0,0.0,0.0 -477,20.0,9.67114440872649,11.2,0.0,0.0,0.995969266183706,-10.137208327147192,1.0,0.0,0.0 -477,21.0,0.0,0.0,0.0,0.0,0.9963544312158692,-10.133687535314902,1.0,0.0,0.0 -477,22.0,1.7684378347385583,1.6,0.0,0.0,0.9906949840029574,-10.17039172351425,1.0,0.0,0.0 -477,23.0,4.807940363195455,6.7,0.0,0.0,0.9860924419749528,-10.26225735558018,1.0,0.0,0.0 -477,24.0,0.0,0.0,0.0,0.0,0.9797114174457467,-9.987374848134875,1.0,0.0,0.0 -477,25.0,1.9342288817452984,2.3,0.0,0.0,0.965562288078698,-10.0781586255179,1.0,0.0,0.0 -477,26.0,0.0,0.0,0.0,0.0,0.9828209468527008,-9.733599415279842,1.0,0.0,0.0 -477,27.0,0.0,0.0,0.0,0.0,0.9649588644018218,-7.5348980039257745,1.0,0.0,0.0 -477,28.0,1.3263283760539188,0.9,0.0,0.0,0.9688940606282694,-10.38198740115818,1.0,0.0,0.0 -477,29.0,5.857950327571475,1.9,0.0,0.0,0.9612913082850352,-10.868522338825274,1.0,0.0,0.0 -478,0.0,0.0,0.0,163.37793118915752,0.000633619295165,1.0,0.0,0.0,0.0,1.0 -478,1.0,11.992219066820848,12.7,8.053627744671408e-07,10.640581614473945,0.9801116133030424,-3.750293686839389,0.0,1.0,0.0 -478,2.0,1.3263283760539188,1.2,0.0,0.0,0.974040082737768,-4.918381724990646,1.0,0.0,0.0 -478,3.0,4.200039857504076,1.6,0.0,0.0,0.9673909173061576,-6.0448747023619935,1.0,0.0,0.0 -478,4.0,52.05838876011632,19.0,-7.96841411240551e-10,24.26467009405718,0.9599953411379378,-9.027243967379697,0.0,1.0,0.0 -478,5.0,0.0,0.0,0.0,0.0,0.967011489308934,-7.175797481494822,1.0,0.0,0.0 -478,6.0,12.600119572512227,10.9,0.0,0.0,0.9576297598785328,-8.214222628526725,1.0,0.0,0.0 -478,7.0,16.579104700673987,30.0,-3.1922053504074626e-10,30.592617979467093,0.9660067646865554,-7.6098638936553025,0.0,1.0,0.0 -478,8.0,0.0,0.0,0.0,0.0,1.015522554956645,-9.007163485673972,1.0,0.0,0.0 -478,9.0,3.205293575463637,2.0,0.0,0.0,1.0065709232493028,-9.95842274344286,1.0,0.0,0.0 -478,10.0,0.0,0.0,8.683021706968271e-10,22.65305785760272,1.0599748912639944,-9.00716348557784,0.0,1.0,0.0 -478,11.0,6.189532421584954,7.5,0.0,0.0,1.0136491875634244,-9.485519202013078,1.0,0.0,0.0 -478,12.0,0.0,0.0,-4.3164486133002067e-10,10.000330920222652,1.027277888660618,-9.485519202046326,0.0,1.0,0.0 -478,13.0,3.426348304805957,1.6,0.0,0.0,1.0025485618861367,-9.961251609200488,1.0,0.0,0.0 -478,14.0,4.531621951517556,2.5,0.0,0.0,0.9992059685255632,-9.989228211618888,1.0,0.0,0.0 -478,15.0,1.9342288817452984,1.8,0.0,0.0,1.0044098473216,-9.796925717645314,1.0,0.0,0.0 -478,16.0,4.973731410202196,5.8,0.0,0.0,1.0015308206740836,-10.004380710310157,1.0,0.0,0.0 -478,17.0,1.7684378347385583,0.9,0.0,0.0,0.992576776776361,-10.329605324944172,1.0,0.0,0.0 -478,18.0,5.250049821880095,3.4,0.0,0.0,0.9909635725866976,-10.43259523998819,1.0,0.0,0.0 -478,19.0,1.2158010113827589,0.7,0.0,0.0,0.994244954246317,-10.34623004873278,1.0,0.0,0.0 -478,20.0,9.67114440872649,11.2,0.0,0.0,0.995969266183706,-10.137208327147192,1.0,0.0,0.0 -478,21.0,0.0,0.0,0.0,0.0,0.9963544312158692,-10.133687535314902,1.0,0.0,0.0 -478,22.0,1.7684378347385583,1.6,0.0,0.0,0.9906949840029574,-10.17039172351425,1.0,0.0,0.0 -478,23.0,4.807940363195455,6.7,0.0,0.0,0.9860924419749528,-10.26225735558018,1.0,0.0,0.0 -478,24.0,0.0,0.0,0.0,0.0,0.9797114174457467,-9.987374848134875,1.0,0.0,0.0 -478,25.0,1.9342288817452984,2.3,0.0,0.0,0.965562288078698,-10.0781586255179,1.0,0.0,0.0 -478,26.0,0.0,0.0,0.0,0.0,0.9828209468527008,-9.733599415279842,1.0,0.0,0.0 -478,27.0,0.0,0.0,0.0,0.0,0.9649588644018218,-7.5348980039257745,1.0,0.0,0.0 -478,28.0,1.3263283760539188,0.9,0.0,0.0,0.9688940606282694,-10.38198740115818,1.0,0.0,0.0 -478,29.0,5.857950327571475,1.9,0.0,0.0,0.9612913082850352,-10.868522338825274,1.0,0.0,0.0 -479,0.0,0.0,0.0,163.74306757565728,0.0133846844745377,1.0,0.0,0.0,0.0,1.0 -479,1.0,11.992219066820848,12.7,9.058986400010389e-06,19.192038670863667,0.9808304098034558,-3.842557551198541,0.0,1.0,0.0 -479,2.0,1.3263283760539188,1.2,0.0,0.0,0.971554461449448,-4.701043607362568,1.0,0.0,0.0 -479,3.0,4.200039857504076,1.6,0.0,0.0,0.9642968055101854,-5.775975423053778,1.0,0.0,0.0 -479,4.0,52.05838876011632,19.0,6.369309967786792e-09,22.96126169148124,0.9612022075211876,-10.298984657145867,0.0,1.0,0.0 -479,5.0,0.0,0.0,0.0,0.0,0.9608207975663812,-6.592144176072492,1.0,0.0,0.0 -479,6.0,12.600119572512227,10.9,0.0,0.0,0.9484777440104876,-7.071604796640354,1.0,0.0,0.0 -479,7.0,16.579104700673987,30.0,2.12226775925843e-08,39.995924486221526,0.9631899502353876,-7.106177047820023,0.0,1.0,0.0 -479,8.0,0.0,0.0,0.0,0.0,0.9824343533404964,-6.592144176072494,1.0,0.0,0.0 -479,9.0,3.205293575463637,2.0,0.0,0.0,0.9718076058532022,-11.82236382109436,1.0,0.0,0.0 -479,10.0,0.0,0.0,0.0,0.0,0.9824343533404964,-6.592144176072494,0.0,1.0,0.0 -479,11.0,6.189532421584954,7.5,0.0,0.0,1.0227204536229677,-9.981754420412395,1.0,0.0,0.0 -479,12.0,0.0,0.0,1.824618589910037e-08,20.91855799947313,1.0505960404996644,-9.981754419050231,0.0,1.0,0.0 -479,13.0,3.426348304805957,1.6,0.0,0.0,1.007020942927304,-10.630683597615644,1.0,0.0,0.0 -479,14.0,4.531621951517556,2.5,0.0,0.0,0.9979403585279956,-10.732109544351356,1.0,0.0,0.0 -479,15.0,1.9342288817452984,1.8,0.0,0.0,1.0174063016740518,-10.099719767998584,1.0,0.0,0.0 -479,16.0,4.973731410202196,5.8,0.0,0.0,0.9650563237927288,-11.964319266686918,1.0,0.0,0.0 -479,17.0,1.7684378347385583,0.9,0.0,0.0,0.9792278737002512,-11.462660459611106,1.0,0.0,0.0 -479,18.0,5.250049821880095,3.4,0.0,0.0,0.970533069614997,-11.802530777525895,1.0,0.0,0.0 -479,19.0,1.2158010113827589,0.7,0.0,0.0,0.9701643516167636,-11.835398411699725,1.0,0.0,0.0 -479,20.0,9.67114440872649,11.2,0.0,0.0,0.9633738012405524,-11.882353263697976,1.0,0.0,0.0 -479,21.0,0.0,0.0,0.0,0.0,0.964590664909328,-11.837478731958322,1.0,0.0,0.0 -479,22.0,1.7684378347385583,1.6,0.0,0.0,0.9812601336381568,-11.119362346406684,1.0,0.0,0.0 -479,23.0,4.807940363195455,6.7,0.0,0.0,0.965896953596046,-11.49840351836958,1.0,0.0,0.0 -479,24.0,0.0,0.0,0.0,0.0,0.9665300843853926,-10.638045471998709,1.0,0.0,0.0 -479,25.0,1.9342288817452984,2.3,0.0,0.0,0.952182094730394,-10.73136044396842,1.0,0.0,0.0 -479,26.0,0.0,0.0,0.0,0.0,0.9739738867857776,-10.014139080296248,1.0,0.0,0.0 -479,27.0,0.0,0.0,0.0,0.0,0.9587307986186508,-7.054023458050481,1.0,0.0,0.0 -479,28.0,1.3263283760539188,0.9,0.0,0.0,0.9599127767023112,-10.674529905283167,1.0,0.0,0.0 -479,29.0,5.857950327571475,1.9,0.0,0.0,0.9522365569652584,-11.170276987776704,1.0,0.0,0.0 -480,0.0,0.0,0.0,164.26327655390045,0.0023418704755862,1.0,0.0,0.0,0.0,1.0 -480,1.0,11.992219066820848,12.7,3.3004392808677005e-06,9.546522632663766,0.981100437852283,-3.433609388715222,0.0,1.0,0.0 -480,2.0,1.3263283760539188,1.2,0.0,0.0,0.9723255309903884,-5.918753895730463,1.0,0.0,0.0 -480,3.0,4.200039857504076,1.6,0.0,0.0,0.9654756297302534,-7.288617461080802,1.0,0.0,0.0 -480,4.0,52.05838876011632,19.0,2.057144776163945e-09,25.95158346206904,0.9606332696962304,-9.777429816658174,0.0,1.0,0.0 -480,5.0,0.0,0.0,0.0,0.0,0.963176320373648,-8.980962138701797,1.0,0.0,0.0 -480,6.0,12.600119572512227,10.9,0.0,0.0,0.9554322600778667,-9.588209404644122,1.0,0.0,0.0 -480,7.0,16.579104700673987,30.0,2.0807726168588558e-09,30.2771448225808,0.9619934108708158,-9.41645447906635,0.0,1.0,0.0 -480,8.0,0.0,0.0,0.0,0.0,1.0129316279859024,-10.710366295984814,1.0,0.0,0.0 -480,9.0,3.205293575463637,2.0,0.0,0.0,1.0073248130572503,-11.60444332678351,1.0,0.0,0.0 -480,10.0,0.0,0.0,4.424402430878326e-09,19.918492976567663,1.0523028648925796,-10.710366295490138,0.0,1.0,0.0 -480,11.0,6.189532421584954,7.5,0.0,0.0,1.0253941238839903,-10.902976788020124,1.0,0.0,0.0 -480,12.0,0.0,0.0,2.913488175953057e-09,19.64692622168672,1.0515513780927666,-10.90297678780338,0.0,1.0,0.0 -480,13.0,3.426348304805957,1.6,0.0,0.0,1.0154070735445555,-11.3365160658692,1.0,0.0,0.0 -480,14.0,4.531621951517556,2.5,0.0,0.0,1.013265088560558,-11.35519759121783,1.0,0.0,0.0 -480,15.0,1.9342288817452984,1.8,0.0,0.0,1.0035649323355635,-11.264769265029296,1.0,0.0,0.0 -480,16.0,4.973731410202196,5.8,0.0,0.0,0.9896395884192616,-11.641215309160469,1.0,0.0,0.0 -480,17.0,1.7684378347385583,0.9,0.0,0.0,1.0020019330715175,-11.784787339952352,1.0,0.0,0.0 -480,18.0,5.250049821880095,3.4,0.0,0.0,0.9976290188590428,-11.944068282753085,1.0,0.0,0.0 -480,19.0,1.2158010113827589,0.7,0.0,0.0,0.9994254056810962,-11.88900107290093,1.0,0.0,0.0 -480,20.0,9.67114440872649,11.2,0.0,0.0,0.9949912898096624,-11.826474797766643,1.0,0.0,0.0 -480,21.0,0.0,0.0,0.0,0.0,0.994824414283196,-11.836180631919111,1.0,0.0,0.0 -480,22.0,1.7684378347385583,1.6,0.0,0.0,0.9700143216702573,-12.259077911706,1.0,0.0,0.0 -480,23.0,4.807940363195455,6.7,0.0,0.0,0.9768782195451118,-12.098072575427732,1.0,0.0,0.0 -480,24.0,0.0,0.0,0.0,0.0,0.9722657556537704,-11.842826201868704,1.0,0.0,0.0 -480,25.0,1.9342288817452984,2.3,0.0,0.0,0.9580049904536552,-11.935026849469129,1.0,0.0,0.0 -480,26.0,0.0,0.0,0.0,0.0,0.9765364839396904,-11.59808398909778,1.0,0.0,0.0 -480,27.0,0.0,0.0,0.0,0.0,0.9608079015285378,-9.342394045438276,1.0,0.0,0.0 -480,28.0,1.3263283760539188,0.9,0.0,0.0,0.962514525703806,-12.254963885857736,1.0,0.0,0.0 -480,29.0,5.857950327571475,1.9,0.0,0.0,0.954859736390702,-12.74801553673671,1.0,0.0,0.0 -481,0.0,0.0,0.0,163.40897933214356,0.2888891124554149,1.0,0.0,0.0,0.0,1.0 -481,1.0,11.992219066820848,12.7,0.0,0.0,0.9790087439995616,-3.730586749108808,0.0,1.0,0.0 -481,2.0,1.3263283760539188,1.2,0.0,0.0,0.9767241592723156,-4.958075128633804,1.0,0.0,0.0 -481,3.0,4.200039857504076,1.6,0.0,0.0,0.9707045422087844,-6.092835814033085,1.0,0.0,0.0 -481,4.0,52.05838876011632,19.0,-1.981679254018405e-10,28.723252330941836,0.966100347669506,-9.095533725246828,0.0,1.0,0.0 -481,5.0,0.0,0.0,0.0,0.0,0.9710683141730848,-7.234202215625154,1.0,0.0,0.0 -481,6.0,12.600119572512227,10.9,0.0,0.0,0.9625707634317164,-8.273101276307328,1.0,0.0,0.0 -481,7.0,16.579104700673987,30.0,-3.0726826819175667e-10,34.56914255721871,0.9715713168531308,-7.689354912517349,0.0,1.0,0.0 -481,8.0,0.0,0.0,0.0,0.0,1.018563954409441,-9.074437649949166,1.0,0.0,0.0 -481,9.0,3.205293575463637,2.0,0.0,0.0,1.0106279971593193,-10.03045951327334,1.0,0.0,0.0 -481,10.0,0.0,0.0,-2.604914039550028e-10,21.116342101066184,1.059999803206174,-9.074437649977918,0.0,1.0,0.0 -481,11.0,6.189532421584954,7.5,0.0,0.0,1.022697718783945,-9.4586394965392,1.0,0.0,0.0 -481,12.0,0.0,0.0,-3.5156413646017286e-10,12.99563833007428,1.040188674140801,-9.458639496565713,0.0,1.0,0.0 -481,13.0,3.426348304805957,1.6,0.0,0.0,1.0118603477645316,-9.89690492647304,1.0,0.0,0.0 -481,14.0,4.531621951517556,2.5,0.0,0.0,1.0089049208273666,-9.899413212286678,1.0,0.0,0.0 -481,15.0,1.9342288817452984,1.8,0.0,0.0,1.011269703730496,-9.800119798074086,1.0,0.0,0.0 -481,16.0,4.973731410202196,5.8,0.0,0.0,1.006509487246311,-10.057298369340264,1.0,0.0,0.0 -481,17.0,1.7684378347385583,0.9,0.0,0.0,1.005056204756667,-10.063182124922978,1.0,0.0,0.0 -481,18.0,5.250049821880095,3.4,0.0,0.0,0.9916952011369558,-10.721555157770135,1.0,0.0,0.0 -481,19.0,1.2158010113827589,0.7,0.0,0.0,0.9958295031129876,-10.58149867206986,1.0,0.0,0.0 -481,20.0,9.67114440872649,11.2,0.0,0.0,1.000390455815117,-10.197266902988918,1.0,0.0,0.0 -481,21.0,0.0,0.0,0.0,0.0,1.0008760149826437,-10.19053744051168,1.0,0.0,0.0 -481,22.0,1.7684378347385583,1.6,0.0,0.0,0.99882973665888,-10.125910568799185,1.0,0.0,0.0 -481,23.0,4.807940363195455,6.7,0.0,0.0,0.9920986408412034,-10.282912139004154,1.0,0.0,0.0 -481,24.0,0.0,0.0,0.0,0.0,0.985253899885488,-10.009560138207334,1.0,0.0,0.0 -481,25.0,1.9342288817452984,2.3,0.0,0.0,0.9711867263463329,-10.099310416343265,1.0,0.0,0.0 -481,26.0,0.0,0.0,0.0,0.0,0.9880339136070466,-9.75818642968848,1.0,0.0,0.0 -481,27.0,0.0,0.0,0.0,0.0,0.9694534310328692,-7.59494741231542,1.0,0.0,0.0 -481,28.0,1.3263283760539188,0.9,0.0,0.0,0.9741848892352988,-10.399655341133148,1.0,0.0,0.0 -481,29.0,5.857950327571475,1.9,0.0,0.0,0.9666247516176836,-10.880883434840833,1.0,0.0,0.0 -482,0.0,0.0,0.0,163.37793118915752,0.000633619295165,1.0,0.0,0.0,0.0,1.0 -482,1.0,11.992219066820848,12.7,8.053627744671408e-07,10.640581614473945,0.9801116133030424,-3.750293686839389,0.0,1.0,0.0 -482,2.0,1.3263283760539188,1.2,0.0,0.0,0.974040082737768,-4.918381724990646,1.0,0.0,0.0 -482,3.0,4.200039857504076,1.6,0.0,0.0,0.9673909173061576,-6.0448747023619935,1.0,0.0,0.0 -482,4.0,52.05838876011632,19.0,-7.96841411240551e-10,24.26467009405718,0.9599953411379378,-9.027243967379697,0.0,1.0,0.0 -482,5.0,0.0,0.0,0.0,0.0,0.967011489308934,-7.175797481494822,1.0,0.0,0.0 -482,6.0,12.600119572512227,10.9,0.0,0.0,0.9576297598785328,-8.214222628526725,1.0,0.0,0.0 -482,7.0,16.579104700673987,30.0,-3.1922053504074626e-10,30.592617979467093,0.9660067646865554,-7.6098638936553025,0.0,1.0,0.0 -482,8.0,0.0,0.0,0.0,0.0,1.015522554956645,-9.007163485673972,1.0,0.0,0.0 -482,9.0,3.205293575463637,2.0,0.0,0.0,1.0065709232493028,-9.95842274344286,1.0,0.0,0.0 -482,10.0,0.0,0.0,8.683021706968271e-10,22.65305785760272,1.0599748912639944,-9.00716348557784,0.0,1.0,0.0 -482,11.0,6.189532421584954,7.5,0.0,0.0,1.0136491875634244,-9.485519202013078,1.0,0.0,0.0 -482,12.0,0.0,0.0,-4.3164486133002067e-10,10.000330920222652,1.027277888660618,-9.485519202046326,0.0,1.0,0.0 -482,13.0,3.426348304805957,1.6,0.0,0.0,1.0025485618861367,-9.961251609200488,1.0,0.0,0.0 -482,14.0,4.531621951517556,2.5,0.0,0.0,0.9992059685255632,-9.989228211618888,1.0,0.0,0.0 -482,15.0,1.9342288817452984,1.8,0.0,0.0,1.0044098473216,-9.796925717645314,1.0,0.0,0.0 -482,16.0,4.973731410202196,5.8,0.0,0.0,1.0015308206740836,-10.004380710310157,1.0,0.0,0.0 -482,17.0,1.7684378347385583,0.9,0.0,0.0,0.992576776776361,-10.329605324944172,1.0,0.0,0.0 -482,18.0,5.250049821880095,3.4,0.0,0.0,0.9909635725866976,-10.43259523998819,1.0,0.0,0.0 -482,19.0,1.2158010113827589,0.7,0.0,0.0,0.994244954246317,-10.34623004873278,1.0,0.0,0.0 -482,20.0,9.67114440872649,11.2,0.0,0.0,0.995969266183706,-10.137208327147192,1.0,0.0,0.0 -482,21.0,0.0,0.0,0.0,0.0,0.9963544312158692,-10.133687535314902,1.0,0.0,0.0 -482,22.0,1.7684378347385583,1.6,0.0,0.0,0.9906949840029574,-10.17039172351425,1.0,0.0,0.0 -482,23.0,4.807940363195455,6.7,0.0,0.0,0.9860924419749528,-10.26225735558018,1.0,0.0,0.0 -482,24.0,0.0,0.0,0.0,0.0,0.9797114174457467,-9.987374848134875,1.0,0.0,0.0 -482,25.0,1.9342288817452984,2.3,0.0,0.0,0.965562288078698,-10.0781586255179,1.0,0.0,0.0 -482,26.0,0.0,0.0,0.0,0.0,0.9828209468527008,-9.733599415279842,1.0,0.0,0.0 -482,27.0,0.0,0.0,0.0,0.0,0.9649588644018218,-7.5348980039257745,1.0,0.0,0.0 -482,28.0,1.3263283760539188,0.9,0.0,0.0,0.9688940606282694,-10.38198740115818,1.0,0.0,0.0 -482,29.0,5.857950327571475,1.9,0.0,0.0,0.9612913082850352,-10.868522338825274,1.0,0.0,0.0 -483,0.0,0.0,0.0,136.39622871700567,3.176238120065822,1.0,0.0,0.0,0.0,1.0 -483,1.0,11.992219066820848,12.7,35.24205549746447,45.81649933543238,1.0049879823064956,-20.88683756070848,0.0,1.0,0.0 -483,2.0,1.3263283760539188,1.2,0.0,0.0,0.956094187116569,-13.486015066338288,1.0,0.0,0.0 -483,3.0,4.200039857504076,1.6,0.0,0.0,0.9498390885538338,-16.720273372545268,1.0,0.0,0.0 -483,4.0,52.05838876011632,19.0,-8.634990149243369e-11,39.9740987981951,0.9804271148521688,-23.99176235298868,0.0,1.0,0.0 -483,5.0,0.0,0.0,0.0,0.0,0.9544956449025918,-19.274565397409187,1.0,0.0,0.0 -483,6.0,12.600119572512227,10.9,0.0,0.0,0.9586507270239848,-21.48775996991313,1.0,0.0,0.0 -483,7.0,16.579104700673987,30.0,0.0,0.0,0.941775978883244,-19.52140853206003,0.0,1.0,0.0 -483,8.0,0.0,0.0,0.0,0.0,1.0129091144183984,-21.330006932303785,1.0,0.0,0.0 -483,9.0,3.205293575463637,2.0,0.0,0.0,1.0080444891432792,-22.3822622556487,1.0,0.0,0.0 -483,10.0,0.0,0.0,-6.583250101000401e-11,23.997849904753892,1.0599992675261294,-21.330006932311097,0.0,1.0,0.0 -483,11.0,6.189532421584954,7.5,0.0,0.0,1.0184754156510134,-21.26928075340985,1.0,0.0,0.0 -483,12.0,0.0,0.0,-9.999337302446531e-11,23.99958495624942,1.0504608244882423,-21.269280753417352,0.0,1.0,0.0 -483,13.0,3.426348304805957,1.6,0.0,0.0,1.0045835182304828,-21.86503354012623,1.0,0.0,0.0 -483,14.0,4.531621951517556,2.5,0.0,0.0,0.997667401348348,-21.951552654476675,1.0,0.0,0.0 -483,15.0,1.9342288817452984,1.8,0.0,0.0,1.007353949668126,-21.846611729888387,1.0,0.0,0.0 -483,16.0,4.973731410202196,5.8,0.0,0.0,1.0036052322255953,-22.312918305118146,1.0,0.0,0.0 -483,17.0,1.7684378347385583,0.9,0.0,0.0,0.980190859441447,-22.57976558198942,1.0,0.0,0.0 -483,18.0,5.250049821880095,3.4,0.0,0.0,0.9722103490242926,-22.85696869838624,1.0,0.0,0.0 -483,19.0,1.2158010113827589,0.7,0.0,0.0,1.0054558681656327,-22.488868183515763,1.0,0.0,0.0 -483,20.0,9.67114440872649,11.2,0.0,0.0,0.992126746850953,-22.587120990904584,1.0,0.0,0.0 -483,21.0,0.0,0.0,0.0,0.0,0.9908315627614532,-22.58974524794373,1.0,0.0,0.0 -483,22.0,1.7684378347385583,1.6,0.0,0.0,0.9873409307129886,-22.26696127159072,1.0,0.0,0.0 -483,23.0,4.807940363195455,6.7,0.0,0.0,0.9803794044703976,-22.54130002807415,1.0,0.0,0.0 -483,24.0,0.0,0.0,0.0,0.0,0.970433646025612,-22.165312569418766,1.0,0.0,0.0 -483,25.0,1.9342288817452984,2.3,0.0,0.0,0.9561451364938958,-22.257866965011104,1.0,0.0,0.0 -483,26.0,0.0,0.0,0.0,0.0,0.9713728816126213,-21.85021971710846,1.0,0.0,0.0 -483,27.0,0.0,0.0,0.0,0.0,0.9501759385492335,-19.60837104332084,1.0,0.0,0.0 -483,28.0,1.3263283760539188,0.9,0.0,0.0,0.9572718020827568,-22.514203112053124,1.0,0.0,0.0 -483,29.0,5.857950327571475,1.9,0.0,0.0,0.9495737038301104,-23.01270899252221,1.0,0.0,0.0 -484,0.0,0.0,0.0,163.37793118915752,0.000633619295165,1.0,0.0,0.0,0.0,1.0 -484,1.0,11.992219066820848,12.7,8.053627744671408e-07,10.640581614473945,0.9801116133030424,-3.750293686839389,0.0,1.0,0.0 -484,2.0,1.3263283760539188,1.2,0.0,0.0,0.974040082737768,-4.918381724990646,1.0,0.0,0.0 -484,3.0,4.200039857504076,1.6,0.0,0.0,0.9673909173061576,-6.0448747023619935,1.0,0.0,0.0 -484,4.0,52.05838876011632,19.0,-7.96841411240551e-10,24.26467009405718,0.9599953411379378,-9.027243967379697,0.0,1.0,0.0 -484,5.0,0.0,0.0,0.0,0.0,0.967011489308934,-7.175797481494822,1.0,0.0,0.0 -484,6.0,12.600119572512227,10.9,0.0,0.0,0.9576297598785328,-8.214222628526725,1.0,0.0,0.0 -484,7.0,16.579104700673987,30.0,-3.1922053504074626e-10,30.592617979467093,0.9660067646865554,-7.6098638936553025,0.0,1.0,0.0 -484,8.0,0.0,0.0,0.0,0.0,1.015522554956645,-9.007163485673972,1.0,0.0,0.0 -484,9.0,3.205293575463637,2.0,0.0,0.0,1.0065709232493028,-9.95842274344286,1.0,0.0,0.0 -484,10.0,0.0,0.0,8.683021706968271e-10,22.65305785760272,1.0599748912639944,-9.00716348557784,0.0,1.0,0.0 -484,11.0,6.189532421584954,7.5,0.0,0.0,1.0136491875634244,-9.485519202013078,1.0,0.0,0.0 -484,12.0,0.0,0.0,-4.3164486133002067e-10,10.000330920222652,1.027277888660618,-9.485519202046326,0.0,1.0,0.0 -484,13.0,3.426348304805957,1.6,0.0,0.0,1.0025485618861367,-9.961251609200488,1.0,0.0,0.0 -484,14.0,4.531621951517556,2.5,0.0,0.0,0.9992059685255632,-9.989228211618888,1.0,0.0,0.0 -484,15.0,1.9342288817452984,1.8,0.0,0.0,1.0044098473216,-9.796925717645314,1.0,0.0,0.0 -484,16.0,4.973731410202196,5.8,0.0,0.0,1.0015308206740836,-10.004380710310157,1.0,0.0,0.0 -484,17.0,1.7684378347385583,0.9,0.0,0.0,0.992576776776361,-10.329605324944172,1.0,0.0,0.0 -484,18.0,5.250049821880095,3.4,0.0,0.0,0.9909635725866976,-10.43259523998819,1.0,0.0,0.0 -484,19.0,1.2158010113827589,0.7,0.0,0.0,0.994244954246317,-10.34623004873278,1.0,0.0,0.0 -484,20.0,9.67114440872649,11.2,0.0,0.0,0.995969266183706,-10.137208327147192,1.0,0.0,0.0 -484,21.0,0.0,0.0,0.0,0.0,0.9963544312158692,-10.133687535314902,1.0,0.0,0.0 -484,22.0,1.7684378347385583,1.6,0.0,0.0,0.9906949840029574,-10.17039172351425,1.0,0.0,0.0 -484,23.0,4.807940363195455,6.7,0.0,0.0,0.9860924419749528,-10.26225735558018,1.0,0.0,0.0 -484,24.0,0.0,0.0,0.0,0.0,0.9797114174457467,-9.987374848134875,1.0,0.0,0.0 -484,25.0,1.9342288817452984,2.3,0.0,0.0,0.965562288078698,-10.0781586255179,1.0,0.0,0.0 -484,26.0,0.0,0.0,0.0,0.0,0.9828209468527008,-9.733599415279842,1.0,0.0,0.0 -484,27.0,0.0,0.0,0.0,0.0,0.9649588644018218,-7.5348980039257745,1.0,0.0,0.0 -484,28.0,1.3263283760539188,0.9,0.0,0.0,0.9688940606282694,-10.38198740115818,1.0,0.0,0.0 -484,29.0,5.857950327571475,1.9,0.0,0.0,0.9612913082850352,-10.868522338825274,1.0,0.0,0.0 -485,0.0,0.0,0.0,138.00000214606155,6.676993393739394e-05,1.0,0.0,0.0,0.0,1.0 -485,1.0,11.992219066820848,12.7,27.321842529848123,12.38032036011895,0.9751784167551336,-4.63742149813802,0.0,1.0,0.0 -485,2.0,1.3263283760539188,1.2,0.0,0.0,0.94960826206146,-9.644528532043491,1.0,0.0,0.0 -485,3.0,4.200039857504076,1.6,0.0,0.0,0.9501204943309048,-9.619490788283205,1.0,0.0,0.0 -485,4.0,52.05838876011632,19.0,-1.313146330376432e-12,23.055389987565263,0.9555027741189266,-11.172416563890035,0.0,1.0,0.0 -485,5.0,0.0,0.0,0.0,0.0,0.9524714953765708,-10.091074889203744,1.0,0.0,0.0 -485,6.0,12.600119572512227,10.9,0.0,0.0,0.940004746338446,-10.578865873447008,1.0,0.0,0.0 -485,7.0,16.579104700673987,30.0,-1.9702559822863468e-10,33.23553473829764,0.9524566621255997,-10.556370614128092,0.0,1.0,0.0 -485,8.0,0.0,0.0,0.0,0.0,1.0065476593204417,-11.976579388793471,1.0,0.0,0.0 -485,9.0,3.205293575463637,2.0,0.0,0.0,0.999188297099474,-12.948353107737235,1.0,0.0,0.0 -485,10.0,0.0,0.0,-2.7992538526447317e-10,23.99949960136497,1.0539130098787228,-11.97657938882492,0.0,1.0,0.0 -485,11.0,6.189532421584954,7.5,0.0,0.0,1.0048940874309702,-13.136985607589413,1.0,0.0,0.0 -485,12.0,0.0,0.0,-2.7437270510137353e-10,18.22406523074234,1.0296725391739938,-13.136985607610685,0.0,1.0,0.0 -485,13.0,3.426348304805957,1.6,0.0,0.0,0.9914143839505088,-13.655384222720656,1.0,0.0,0.0 -485,14.0,4.531621951517556,2.5,0.0,0.0,0.9856201293196402,-13.66504235369963,1.0,0.0,0.0 -485,15.0,1.9342288817452984,1.8,0.0,0.0,0.9966310109816005,-13.169431669351182,1.0,0.0,0.0 -485,16.0,4.973731410202196,5.8,0.0,0.0,0.9938459257632491,-13.114444165077474,1.0,0.0,0.0 -485,17.0,1.7684378347385583,0.9,0.0,0.0,0.967916547747124,-14.308999093680656,1.0,0.0,0.0 -485,18.0,5.250049821880095,3.4,0.0,0.0,0.9598328255803052,-14.593337531423089,1.0,0.0,0.0 -485,19.0,1.2158010113827589,0.7,0.0,0.0,0.9965765806264268,-13.05686218253166,1.0,0.0,0.0 -485,20.0,9.67114440872649,11.2,0.0,0.0,0.987982484740422,-13.165866465638311,1.0,0.0,0.0 -485,21.0,0.0,0.0,0.0,0.0,0.9882020816836588,-13.173650503238957,1.0,0.0,0.0 -485,22.0,1.7684378347385583,1.6,0.0,0.0,0.978296443612012,-13.637526278831109,1.0,0.0,0.0 -485,23.0,4.807940363195455,6.7,0.0,0.0,0.9753359210579324,-13.443401041841156,1.0,0.0,0.0 -485,24.0,0.0,0.0,0.0,0.0,0.9675386209032568,-13.079247795178174,1.0,0.0,0.0 -485,25.0,1.9342288817452984,2.3,0.0,0.0,0.953206046881862,-13.172365365780578,1.0,0.0,0.0 -485,26.0,0.0,0.0,0.0,0.0,0.969837632827032,-12.769011441640522,1.0,0.0,0.0 -485,27.0,0.0,0.0,0.0,0.0,0.9507806954320472,-10.472392648243652,1.0,0.0,0.0 -485,28.0,1.3263283760539188,0.9,0.0,0.0,0.955712851301502,-13.435129209811931,1.0,0.0,0.0 -485,29.0,5.857950327571475,1.9,0.0,0.0,0.948001778758966,-13.935274442474366,1.0,0.0,0.0 -486,0.0,0.0,0.0,163.46300408972797,0.0009874339351512,1.0,0.0,0.0,0.0,1.0 -486,1.0,11.992219066820848,12.7,1.0427677260541445e-06,10.58103120454195,0.980089047681789,-3.753515793049865,0.0,1.0,0.0 -486,2.0,1.3263283760539188,1.2,0.0,0.0,0.9740650424206476,-4.917388792265621,1.0,0.0,0.0 -486,3.0,4.200039857504076,1.6,0.0,0.0,0.9674215222086572,-6.04362924025822,1.0,0.0,0.0 -486,4.0,52.05838876011632,19.0,1.0688593693177464e-12,24.3303299793822,0.9600283446451934,-9.036942152234587,0.0,1.0,0.0 -486,5.0,0.0,0.0,0.0,0.0,0.9669604300435382,-7.189762073161704,1.0,0.0,0.0 -486,6.0,12.600119572512227,10.9,0.0,0.0,0.9576123612627268,-8.226423919184628,1.0,0.0,0.0 -486,7.0,16.579104700673987,30.0,3.179380711503307e-10,31.20884309944234,0.966020961921444,-7.630280532248942,0.0,1.0,0.0 -486,8.0,0.0,0.0,0.0,0.0,1.0167167753108606,-9.005381806502264,1.0,0.0,0.0 -486,9.0,3.205293575463637,2.0,0.0,0.0,1.0090369002577932,-9.94610937176124,1.0,0.0,0.0 -486,10.0,0.0,0.0,1.2783557723172355e-09,22.056175662676385,1.0599969429414031,-9.005381806360903,0.0,1.0,0.0 -486,11.0,6.189532421584954,7.5,0.0,0.0,1.0137093940990602,-9.391117893864145,1.0,0.0,0.0 -486,12.0,0.0,0.0,2.8756327197391823e-10,10.27520832771583,1.0277068599326011,-9.391117893842,0.0,1.0,0.0 -486,13.0,3.426348304805957,1.6,0.0,0.0,1.005419412027634,-9.773302725390026,1.0,0.0,0.0 -486,14.0,4.531621951517556,2.5,0.0,0.0,0.997199308789018,-9.853483702700876,1.0,0.0,0.0 -486,15.0,1.9342288817452984,1.8,0.0,0.0,1.005460892856474,-9.742676222067589,1.0,0.0,0.0 -486,16.0,4.973731410202196,5.8,0.0,0.0,1.0035800094259706,-9.976942037144278,1.0,0.0,0.0 -486,17.0,1.7684378347385583,0.9,0.0,0.0,0.9827540561260826,-10.960342298897071,1.0,0.0,0.0 -486,18.0,5.250049821880095,3.4,0.0,0.0,0.9850886600867692,-10.859154508384313,1.0,0.0,0.0 -486,19.0,1.2158010113827589,0.7,0.0,0.0,0.9904895642753336,-10.664753424462653,1.0,0.0,0.0 -486,20.0,9.67114440872649,11.2,0.0,0.0,1.0007980878577123,-10.076616235886664,1.0,0.0,0.0 -486,21.0,0.0,0.0,0.0,0.0,1.0019223622998743,-10.058991230121617,1.0,0.0,0.0 -486,22.0,1.7684378347385583,1.6,0.0,0.0,0.9815602109649952,-10.214867885879194,1.0,0.0,0.0 -486,23.0,4.807940363195455,6.7,0.0,0.0,0.9675723084549188,-10.556951541492127,1.0,0.0,0.0 -486,24.0,0.0,0.0,0.0,0.0,0.967971612820429,-10.265868975907935,1.0,0.0,0.0 -486,25.0,1.9342288817452984,2.3,0.0,0.0,0.9536456468040996,-10.358901987314749,1.0,0.0,0.0 -486,26.0,0.0,0.0,0.0,0.0,0.9753763916378954,-9.992993025263091,1.0,0.0,0.0 -486,27.0,0.0,0.0,0.0,0.0,0.9639988475311796,-7.562683891295815,1.0,0.0,0.0 -486,28.0,1.3263283760539188,0.9,0.0,0.0,0.961336737128032,-10.651458829927751,1.0,0.0,0.0 -486,29.0,5.857950327571475,1.9,0.0,0.0,0.9536722615298338,-11.145727941477988,1.0,0.0,0.0 -487,0.0,0.0,0.0,163.37793118915752,0.000633619295165,1.0,0.0,0.0,0.0,1.0 -487,1.0,11.992219066820848,12.7,8.053627744671408e-07,10.640581614473945,0.9801116133030424,-3.750293686839389,0.0,1.0,0.0 -487,2.0,1.3263283760539188,1.2,0.0,0.0,0.974040082737768,-4.918381724990646,1.0,0.0,0.0 -487,3.0,4.200039857504076,1.6,0.0,0.0,0.9673909173061576,-6.0448747023619935,1.0,0.0,0.0 -487,4.0,52.05838876011632,19.0,-7.96841411240551e-10,24.26467009405718,0.9599953411379378,-9.027243967379697,0.0,1.0,0.0 -487,5.0,0.0,0.0,0.0,0.0,0.967011489308934,-7.175797481494822,1.0,0.0,0.0 -487,6.0,12.600119572512227,10.9,0.0,0.0,0.9576297598785328,-8.214222628526725,1.0,0.0,0.0 -487,7.0,16.579104700673987,30.0,-3.1922053504074626e-10,30.592617979467093,0.9660067646865554,-7.6098638936553025,0.0,1.0,0.0 -487,8.0,0.0,0.0,0.0,0.0,1.015522554956645,-9.007163485673972,1.0,0.0,0.0 -487,9.0,3.205293575463637,2.0,0.0,0.0,1.0065709232493028,-9.95842274344286,1.0,0.0,0.0 -487,10.0,0.0,0.0,8.683021706968271e-10,22.65305785760272,1.0599748912639944,-9.00716348557784,0.0,1.0,0.0 -487,11.0,6.189532421584954,7.5,0.0,0.0,1.0136491875634244,-9.485519202013078,1.0,0.0,0.0 -487,12.0,0.0,0.0,-4.3164486133002067e-10,10.000330920222652,1.027277888660618,-9.485519202046326,0.0,1.0,0.0 -487,13.0,3.426348304805957,1.6,0.0,0.0,1.0025485618861367,-9.961251609200488,1.0,0.0,0.0 -487,14.0,4.531621951517556,2.5,0.0,0.0,0.9992059685255632,-9.989228211618888,1.0,0.0,0.0 -487,15.0,1.9342288817452984,1.8,0.0,0.0,1.0044098473216,-9.796925717645314,1.0,0.0,0.0 -487,16.0,4.973731410202196,5.8,0.0,0.0,1.0015308206740836,-10.004380710310157,1.0,0.0,0.0 -487,17.0,1.7684378347385583,0.9,0.0,0.0,0.992576776776361,-10.329605324944172,1.0,0.0,0.0 -487,18.0,5.250049821880095,3.4,0.0,0.0,0.9909635725866976,-10.43259523998819,1.0,0.0,0.0 -487,19.0,1.2158010113827589,0.7,0.0,0.0,0.994244954246317,-10.34623004873278,1.0,0.0,0.0 -487,20.0,9.67114440872649,11.2,0.0,0.0,0.995969266183706,-10.137208327147192,1.0,0.0,0.0 -487,21.0,0.0,0.0,0.0,0.0,0.9963544312158692,-10.133687535314902,1.0,0.0,0.0 -487,22.0,1.7684378347385583,1.6,0.0,0.0,0.9906949840029574,-10.17039172351425,1.0,0.0,0.0 -487,23.0,4.807940363195455,6.7,0.0,0.0,0.9860924419749528,-10.26225735558018,1.0,0.0,0.0 -487,24.0,0.0,0.0,0.0,0.0,0.9797114174457467,-9.987374848134875,1.0,0.0,0.0 -487,25.0,1.9342288817452984,2.3,0.0,0.0,0.965562288078698,-10.0781586255179,1.0,0.0,0.0 -487,26.0,0.0,0.0,0.0,0.0,0.9828209468527008,-9.733599415279842,1.0,0.0,0.0 -487,27.0,0.0,0.0,0.0,0.0,0.9649588644018218,-7.5348980039257745,1.0,0.0,0.0 -487,28.0,1.3263283760539188,0.9,0.0,0.0,0.9688940606282694,-10.38198740115818,1.0,0.0,0.0 -487,29.0,5.857950327571475,1.9,0.0,0.0,0.9612913082850352,-10.868522338825274,1.0,0.0,0.0 -488,0.0,0.0,0.0,164.21346577881013,6.459558274940491e-05,1.0,0.0,0.0,0.0,1.0 -488,1.0,11.992219066820848,12.7,3.3444936669487746e-07,11.274872946428331,0.9815026522461054,-3.442450588782876,0.0,1.0,0.0 -488,2.0,1.3263283760539188,1.2,0.0,0.0,0.9711704320260556,-5.8953012205657815,1.0,0.0,0.0 -488,3.0,4.200039857504076,1.6,0.0,0.0,0.9640466590156348,-7.260399818480115,1.0,0.0,0.0 -488,4.0,52.05838876011632,19.0,-1.6354772929438587e-10,26.71731241025381,0.9610288970716392,-9.795796232390604,0.0,1.0,0.0 -488,5.0,0.0,0.0,0.0,0.0,0.9619816854468428,-8.97888645452335,1.0,0.0,0.0 -488,6.0,12.600119572512227,10.9,0.0,0.0,0.9548864205583896,-9.593660874680854,1.0,0.0,0.0 -488,7.0,16.579104700673987,30.0,-1.8910145930595027e-10,35.19626737108763,0.9623313253282288,-9.451544074775724,0.0,1.0,0.0 -488,8.0,0.0,0.0,0.0,0.0,1.011735356349653,-10.756006628774484,1.0,0.0,0.0 -488,9.0,3.205293575463637,2.0,0.0,0.0,1.0020516600677245,-11.678435971071922,1.0,0.0,0.0 -488,10.0,0.0,0.0,-3.0526857344424835e-10,23.99971652512693,1.0588789964986505,-10.756006628808445,0.0,1.0,0.0 -488,11.0,6.189532421584954,7.5,0.0,0.0,1.0176443325184796,-10.796156172404702,1.0,0.0,0.0 -488,12.0,0.0,0.0,-1.7988239200288558e-10,12.40149203431254,1.0344285643603122,-10.796156172418408,0.0,1.0,0.0 -488,13.0,3.426348304805957,1.6,0.0,0.0,1.007794824257989,-11.246413591398564,1.0,0.0,0.0 -488,14.0,4.531621951517556,2.5,0.0,0.0,1.0057741587551303,-11.280168508140086,1.0,0.0,0.0 -488,15.0,1.9342288817452984,1.8,0.0,0.0,1.0044400168959269,-11.263846260796914,1.0,0.0,0.0 -488,16.0,4.973731410202196,5.8,0.0,0.0,0.9985074514316812,-11.651346538330168,1.0,0.0,0.0 -488,17.0,1.7684378347385583,0.9,0.0,0.0,0.9952155985998058,-11.766904253999115,1.0,0.0,0.0 -488,18.0,5.250049821880095,3.4,0.0,0.0,0.991280256264574,-11.959010751606696,1.0,0.0,0.0 -488,19.0,1.2158010113827589,0.7,0.0,0.0,0.9933331613947852,-11.919542524723704,1.0,0.0,0.0 -488,20.0,9.67114440872649,11.2,0.0,0.0,0.9897351554688576,-11.899166111241197,1.0,0.0,0.0 -488,21.0,0.0,0.0,0.0,0.0,0.989594050557506,-11.907830156617283,1.0,0.0,0.0 -488,22.0,1.7684378347385583,1.6,0.0,0.0,0.96503566712993,-12.321889430299084,1.0,0.0,0.0 -488,23.0,4.807940363195455,6.7,0.0,0.0,0.971935015925752,-12.159230368939804,1.0,0.0,0.0 -488,24.0,0.0,0.0,0.0,0.0,0.9680933839895154,-11.880251620182298,1.0,0.0,0.0 -488,25.0,1.9342288817452984,2.3,0.0,0.0,0.95376927526209,-11.973260873623538,1.0,0.0,0.0 -488,26.0,0.0,0.0,0.0,0.0,0.9728680162088535,-11.619208607802006,1.0,0.0,0.0 -488,27.0,0.0,0.0,0.0,0.0,0.9578774154699792,-9.30491726119823,1.0,0.0,0.0 -488,28.0,1.3263283760539188,0.9,0.0,0.0,0.9587899408764508,-12.281123297419969,1.0,0.0,0.0 -488,29.0,5.857950327571475,1.9,0.0,0.0,0.9511044347604122,-12.778040496682726,1.0,0.0,0.0 -489,0.0,0.0,0.0,164.12496053931096,0.0073642503775062,1.0,0.0,0.0,0.0,1.0 -489,1.0,11.992219066820848,12.7,6.917982512187945e-06,9.07661207564584,0.9813180241256448,-3.4573922810893274,0.0,1.0,0.0 -489,2.0,1.3263283760539188,1.2,0.0,0.0,0.971631779772592,-5.840920726218983,1.0,0.0,0.0 -489,3.0,4.200039857504076,1.6,0.0,0.0,0.9646022344091154,-7.192464822179082,1.0,0.0,0.0 -489,4.0,52.05838876011632,19.0,-3.277444112917992e-09,24.99874412146788,0.9610304483499206,-9.258993979643314,0.0,1.0,0.0 -489,5.0,0.0,0.0,0.0,0.0,0.9659140144055076,-7.940198872301522,1.0,0.0,0.0 -489,6.0,12.600119572512227,10.9,0.0,0.0,0.9573249876849724,-8.760851005335295,1.0,0.0,0.0 -489,7.0,16.579104700673987,30.0,-4.322483710637543e-09,35.23017109482637,0.9650894412344432,-8.648569248061493,0.0,1.0,0.0 -489,8.0,0.0,0.0,0.0,0.0,1.0160282008852846,-10.632349550915215,1.0,0.0,0.0 -489,9.0,3.205293575463637,2.0,0.0,0.0,1.0086649020934322,-12.026033919094216,1.0,0.0,0.0 -489,10.0,0.0,0.0,-1.1956544732361269e-08,22.404380938864207,1.0599918523506198,-10.632349552238283,0.0,1.0,0.0 -489,11.0,6.189532421584954,7.5,0.0,0.0,1.0201228210185656,-10.917409573831062,1.0,0.0,0.0 -489,12.0,0.0,0.0,-6.140905090575926e-09,14.35288502984004,1.039454158412477,-10.917409574295602,0.0,1.0,0.0 -489,13.0,3.426348304805957,1.6,0.0,0.0,1.011886101153517,-11.2947644867706,1.0,0.0,0.0 -489,14.0,4.531621951517556,2.5,0.0,0.0,1.0041289036277383,-11.42790568985892,1.0,0.0,0.0 -489,15.0,1.9342288817452984,1.8,0.0,0.0,1.0085665131454136,-11.49025994129259,1.0,0.0,0.0 -489,16.0,4.973731410202196,5.8,0.0,0.0,1.0044141146906804,-11.95715010243869,1.0,0.0,0.0 -489,17.0,1.7684378347385583,0.9,0.0,0.0,0.9823717783761872,-13.041035913748363,1.0,0.0,0.0 -489,18.0,5.250049821880095,3.4,0.0,0.0,0.9847072920110764,-12.939769542828325,1.0,0.0,0.0 -489,19.0,1.2158010113827589,0.7,0.0,0.0,0.990110295843366,-12.745218673962745,1.0,0.0,0.0 -489,20.0,9.67114440872649,11.2,0.0,0.0,0.9768595216527708,-12.436083728622526,1.0,0.0,0.0 -489,21.0,0.0,0.0,0.0,0.0,0.9807142798589428,-12.37728261016452,1.0,0.0,0.0 -489,22.0,1.7684378347385583,1.6,0.0,0.0,0.9892545612676568,-11.869786215834916,1.0,0.0,0.0 -489,23.0,4.807940363195455,6.7,0.0,0.0,0.9762699856464158,-12.32357338794821,1.0,0.0,0.0 -489,24.0,0.0,0.0,0.0,0.0,0.9693753075565346,-12.109562221105383,1.0,0.0,0.0 -489,25.0,1.9342288817452984,2.3,0.0,0.0,0.9550707212888266,-12.202321904599147,1.0,0.0,0.0 -489,26.0,0.0,0.0,0.0,0.0,0.9722646407416484,-11.892400837325248,1.0,0.0,0.0 -489,27.0,0.0,0.0,0.0,0.0,0.9550412251288044,-9.71946185788385,1.0,0.0,0.0 -489,28.0,1.3263283760539188,0.9,0.0,0.0,0.9581772911883154,-12.555149201396222,1.0,0.0,0.0 -489,29.0,5.857950327571475,1.9,0.0,0.0,0.9504867085361548,-13.052706600228534,1.0,0.0,0.0 -490,0.0,0.0,0.0,83.85862074568165,2.915247865331594e-06,1.0,0.0,0.0,0.0,1.0 -490,1.0,11.992219066820848,12.7,78.7969950211729,-8.278803076220562,0.9911755578158836,-1.0987706052127113,0.0,1.0,0.0 -490,2.0,1.3263283760539188,1.2,0.0,0.0,0.9801951292909662,-4.763428776066768,1.0,0.0,0.0 -490,3.0,4.200039857504076,1.6,0.0,0.0,0.9749529415955926,-5.849719097527237,1.0,0.0,0.0 -490,4.0,52.05838876011632,19.0,-2.7183156181681884e-09,39.99999948405818,0.9862575442600237,-7.84306681148852,0.0,1.0,0.0 -490,5.0,0.0,0.0,0.0,0.0,0.975377573984832,-7.2257352948874525,1.0,0.0,0.0 -490,6.0,12.600119572512227,10.9,0.0,0.0,0.9732422592019324,-7.74058793587983,1.0,0.0,0.0 -490,7.0,16.579104700673987,30.0,-1.7491428984039936e-09,39.99999969829005,0.9905215018017742,-10.620829130911716,0.0,1.0,0.0 -490,8.0,0.0,0.0,0.0,0.0,1.0397143182507451,-12.178915463212082,1.0,0.0,0.0 -490,9.0,3.205293575463637,2.0,0.0,0.0,1.028986313617677,-12.178915463125612,1.0,0.0,0.0 -490,10.0,0.0,0.0,-1.4678602672460046e-09,10.337895361854066,1.0599999997208576,-12.178915463370808,0.0,1.0,0.0 -490,11.0,6.189532421584954,7.5,0.0,0.0,1.0361201925131531,-10.639039689887571,1.0,0.0,0.0 -490,12.0,0.0,0.0,-1.3140472161828587e-09,18.080425608302008,1.0599999999221,-10.639039689983544,0.0,1.0,0.0 -490,13.0,3.426348304805957,1.6,0.0,0.0,1.0280133612160032,-11.004739735125872,1.0,0.0,0.0 -490,14.0,4.531621951517556,2.5,0.0,0.0,1.0127480352413585,-11.564688404660004,1.0,0.0,0.0 -490,15.0,1.9342288817452984,1.8,0.0,0.0,1.0261963397469362,-11.402801065694124,1.0,0.0,0.0 -490,16.0,4.973731410202196,5.8,0.0,0.0,1.02406649559715,-12.028552348425723,1.0,0.0,0.0 -490,17.0,1.7684378347385583,0.9,0.0,0.0,1.0093394342855413,-12.1230595475812,1.0,0.0,0.0 -490,18.0,5.250049821880095,3.4,0.0,0.0,1.0096132286781443,-12.35825900107718,1.0,0.0,0.0 -490,19.0,1.2158010113827589,0.7,0.0,0.0,1.0138106610210205,-12.346673058999713,1.0,0.0,0.0 -490,20.0,9.67114440872649,11.2,0.0,0.0,1.0209099042627414,-12.30437099749071,1.0,0.0,0.0 -490,21.0,0.0,0.0,0.0,0.0,1.0220120288072396,-12.28743283173773,1.0,0.0,0.0 -490,22.0,1.7684378347385583,1.6,0.0,0.0,0.989941911169614,-12.171872552419252,1.0,0.0,0.0 -490,23.0,4.807940363195455,6.7,0.0,0.0,0.9664735780353604,-12.869688897145666,1.0,0.0,0.0 -490,24.0,0.0,0.0,0.0,0.0,0.954533971411778,-12.996658779146006,1.0,0.0,0.0 -490,25.0,1.9342288817452984,2.3,0.0,0.0,0.9400000039120422,-13.092371090838371,1.0,0.0,0.0 -490,26.0,0.0,0.0,0.0,0.0,0.9976696632464868,-9.84273772291485,1.0,0.0,0.0 -490,27.0,0.0,0.0,0.0,0.0,0.9776063230714912,-8.202843815539149,1.0,0.0,0.0 -490,28.0,1.3263283760539188,0.9,0.0,0.0,0.9839622285246268,-10.471707015801655,1.0,0.0,0.0 -490,29.0,5.857950327571475,1.9,0.0,0.0,0.9764795791775625,-10.9433545811792,1.0,0.0,0.0 -491,0.0,0.0,0.0,133.22568267711952,3.670256099042035e-06,1.0,0.0,0.0,0.0,1.0 -491,1.0,11.950552566847875,12.7,28.958479916306874,-20.72847537563258,0.981510703843082,-2.846918315140604,0.0,1.0,0.0 -491,2.0,1.3217200995592122,1.2,0.0,0.0,0.9830772569009992,-4.514594444920522,1.0,0.0,0.0 -491,3.0,4.185446981937505,1.6,0.0,0.0,0.9784720728797364,-5.540181920526103,1.0,0.0,0.0 -491,4.0,51.87751390769908,19.0,8.580245232162488e-09,39.9999976746288,0.9837219340070972,-8.437981657835934,0.0,1.0,0.0 -491,5.0,0.0,0.0,0.0,0.0,0.9806214259278924,-6.610220718047387,1.0,0.0,0.0 -491,6.0,12.556340945812517,10.9,0.0,0.0,0.9755432942515604,-7.623886458139528,1.0,0.0,0.0 -491,7.0,16.521501244490153,30.0,1.1472682547635316e-08,39.999998993549895,0.9830453606967948,-7.09017829978697,0.0,1.0,0.0 -491,8.0,0.0,0.0,0.0,0.0,1.0266487966651996,-8.346657029775038,1.0,0.0,0.0 -491,9.0,3.194156907268096,2.0,0.0,0.0,1.0220565530682453,-9.247454614300894,1.0,0.0,0.0 -491,10.0,0.0,0.0,1.7423303062715945e-08,16.996284891023883,1.0599999972913017,-8.346657027866994,0.0,1.0,0.0 -491,11.0,6.168027131276324,7.5,0.0,0.0,1.0364510400628832,-8.903750115432786,1.0,0.0,0.0 -491,12.0,0.0,0.0,1.778116187263834e-08,17.82992510353275,1.0599999977957637,-8.903750114134544,0.0,1.0,0.0 -491,13.0,3.414443590527965,1.6,0.0,0.0,1.0246147100138865,-9.345513314421146,1.0,0.0,0.0 -491,14.0,4.515877006827308,2.5,0.0,0.0,1.020465125665518,-9.338547912767057,1.0,0.0,0.0 -491,15.0,1.9275084785238512,1.8,0.0,0.0,1.0242493556425831,-9.139437325100122,1.0,0.0,0.0 -491,16.0,4.956450373347046,5.8,0.0,0.0,1.0184323017876409,-9.311457215227838,1.0,0.0,0.0 -491,17.0,1.7622934660789498,0.9,0.0,0.0,1.016666977370693,-9.49787101730158,1.0,0.0,0.0 -491,18.0,5.231808727421882,3.4,0.0,0.0,1.0033731629644818,-9.919554041198872,1.0,0.0,0.0 -491,19.0,1.211576757929278,0.7,0.0,0.0,1.0074530687027776,-9.783427808958502,1.0,0.0,0.0 -491,20.0,9.637542392619256,11.2,0.0,0.0,0.9922398707369448,-9.742817541256882,1.0,0.0,0.0 -491,21.0,0.0,0.0,0.0,0.0,0.9960309259257768,-9.686277825435845,1.0,0.0,0.0 -491,22.0,1.7622934660789498,1.6,0.0,0.0,1.0059533094875222,-9.585759255959177,1.0,0.0,0.0 -491,23.0,4.791235360902144,6.7,0.0,0.0,0.993258121919191,-9.778200392508218,1.0,0.0,0.0 -491,24.0,0.0,0.0,0.0,0.0,0.9894579635467364,-9.49401812814782,1.0,0.0,0.0 -491,25.0,1.9275084785238512,2.3,0.0,0.0,0.9754701380804998,-9.581478672234308,1.0,0.0,0.0 -491,26.0,0.0,0.0,0.0,0.0,0.99408531535019,-9.234370338554497,1.0,0.0,0.0 -491,27.0,0.0,0.0,0.0,0.0,0.9789376319491988,-6.978820199846809,1.0,0.0,0.0 -491,28.0,1.3217200995592122,0.9,0.0,0.0,0.9643423086490926,-10.64373257901786,1.0,0.0,0.0 -491,29.0,5.837597106386521,1.9,0.0,0.0,0.9400000018736174,-12.028331088528905,1.0,0.0,0.0 -492,0.0,0.0,0.0,136.4816780605436,0.0001116790453892,1.0,0.0,0.0,0.0,1.0 -492,1.0,11.950552566847875,12.7,33.56238363915269,18.563851167688853,0.9629586509659782,-18.5624632714569,0.0,1.0,0.0 -492,2.0,1.3217200995592122,1.2,0.0,0.0,0.9615266832819646,-13.505004012608277,1.0,0.0,0.0 -492,3.0,4.185446981937505,1.6,0.0,0.0,0.9565437839292824,-16.72648241899846,1.0,0.0,0.0 -492,4.0,51.87751390769908,19.0,2.783895155043731e-12,25.06785453998184,0.9464897919688,-22.46524621319342,0.0,1.0,0.0 -492,5.0,0.0,0.0,0.0,0.0,0.958231063854198,-18.974617559646926,1.0,0.0,0.0 -492,6.0,12.556340945812517,10.9,0.0,0.0,0.9469315311204672,-20.684681535252647,1.0,0.0,0.0 -492,7.0,16.521501244490153,30.0,6.800730174514046e-12,39.99176078721775,0.9607099789967408,-19.47426795769949,0.0,1.0,0.0 -492,8.0,0.0,0.0,0.0,0.0,1.0088672027218055,-20.738193502088265,1.0,0.0,0.0 -492,9.0,3.194156907268096,2.0,0.0,0.0,0.9996226947159113,-21.652240743518146,1.0,0.0,0.0 -492,10.0,0.0,0.0,-1.3267369129276694e-11,23.99960421968689,1.0561331889616905,-20.73819350208976,0.0,1.0,0.0 -492,11.0,6.168027131276324,7.5,0.0,0.0,1.0299502919117451,-20.356082984326733,1.0,0.0,0.0 -492,12.0,0.0,0.0,-4.729791539911635e-11,22.48144954205628,1.0596525094575615,-20.356082984330207,0.0,1.0,0.0 -492,13.0,3.414443590527965,1.6,0.0,0.0,1.0020656423824608,-21.58453592281657,1.0,0.0,0.0 -492,14.0,4.515877006827308,2.5,0.0,0.0,0.9772076732899444,-22.00701218475803,1.0,0.0,0.0 -492,15.0,1.9275084785238512,1.8,0.0,0.0,1.0101098286400645,-20.963911923734926,1.0,0.0,0.0 -492,16.0,4.956450373347046,5.8,0.0,0.0,0.998702656309528,-21.547758255693445,1.0,0.0,0.0 -492,17.0,1.7622934660789498,0.9,0.0,0.0,0.9757681436479368,-22.24485452106537,1.0,0.0,0.0 -492,18.0,5.231808727421882,3.4,0.0,0.0,0.9772599385411168,-22.28328714418276,1.0,0.0,0.0 -492,19.0,1.211576757929278,0.7,0.0,0.0,0.9822336692333152,-22.160272244276637,1.0,0.0,0.0 -492,20.0,9.637542392619256,11.2,0.0,0.0,0.9880977757792287,-21.856401614012128,1.0,0.0,0.0 -492,21.0,0.0,0.0,0.0,0.0,0.9882127372813742,-21.860259210639096,1.0,0.0,0.0 -492,22.0,1.7622934660789498,1.6,0.0,0.0,0.9729301801961712,-22.100192293547423,1.0,0.0,0.0 -492,23.0,4.791235360902144,6.7,0.0,0.0,0.974070291013586,-22.06651618507097,1.0,0.0,0.0 -492,24.0,0.0,0.0,0.0,0.0,0.9688410306958526,-21.82236784022948,1.0,0.0,0.0 -492,25.0,1.9275084785238512,2.3,0.0,0.0,0.9545465415530268,-21.91364747014418,1.0,0.0,0.0 -492,26.0,0.0,0.0,0.0,0.0,0.972750969131106,-21.585397345919084,1.0,0.0,0.0 -492,27.0,0.0,0.0,0.0,0.0,0.956764709665265,-19.348314200342937,1.0,0.0,0.0 -492,28.0,1.3217200995592122,0.9,0.0,0.0,0.9586998006805146,-22.24448403603032,1.0,0.0,0.0 -492,29.0,5.837597106386521,1.9,0.0,0.0,0.9510319516676328,-22.739483021127874,1.0,0.0,0.0 -493,0.0,0.0,0.0,163.33881507315593,0.0013539482265123,1.0,0.0,0.0,0.0,1.0 -493,1.0,11.950552566847875,12.7,9.003145538906834e-07,11.628465542519486,0.9816868412289386,-3.440715897626786,0.0,1.0,0.0 -493,2.0,1.3217200995592122,1.2,0.0,0.0,0.9709043524133966,-5.816002368602136,1.0,0.0,0.0 -493,3.0,4.185446981937505,1.6,0.0,0.0,0.9636994784739276,-7.162171352113597,1.0,0.0,0.0 -493,4.0,51.87751390769908,19.0,-2.4874460215170214e-11,25.3945029239769,0.9604171043071306,-9.204340176666726,0.0,1.0,0.0 -493,5.0,0.0,0.0,0.0,0.0,0.9633963801227946,-7.8385035491586,1.0,0.0,0.0 -493,6.0,12.556340945812517,10.9,0.0,0.0,0.9555847355846798,-8.676892574616085,1.0,0.0,0.0 -493,7.0,16.521501244490153,30.0,9.532746419556481e-11,34.36926625464832,0.9636803520686902,-8.29701751854203,0.0,1.0,0.0 -493,8.0,0.0,0.0,0.0,0.0,0.998752483161194,-9.411335058456194,1.0,0.0,0.0 -493,9.0,3.194156907268096,2.0,0.0,0.0,0.9974116087985055,-10.232751930347126,1.0,0.0,0.0 -493,10.0,0.0,0.0,4.1060263837033387e-10,8.195108944859248,1.0155375121738774,-9.41133505840795,0.0,1.0,0.0 -493,11.0,6.168027131276324,7.5,0.0,0.0,1.0285940653521153,-11.07321758629996,1.0,0.0,0.0 -493,12.0,0.0,0.0,3.490754588201045e-10,23.77796988344644,1.0599989619893255,-11.07321758627428,0.0,1.0,0.0 -493,13.0,3.414443590527965,1.6,0.0,0.0,1.0173322378933995,-11.554689083689023,1.0,0.0,0.0 -493,14.0,4.515877006827308,2.5,0.0,0.0,1.0135625930033436,-11.595185163799092,1.0,0.0,0.0 -493,15.0,1.9275084785238512,1.8,0.0,0.0,1.0068617695727424,-11.43008979947389,1.0,0.0,0.0 -493,16.0,4.956450373347046,5.8,0.0,0.0,0.9929929320117415,-11.802131656475598,1.0,0.0,0.0 -493,17.0,1.7622934660789498,0.9,0.0,0.0,0.996404603053267,-12.200459351809762,1.0,0.0,0.0 -493,18.0,5.231808727421882,3.4,0.0,0.0,0.988568417358795,-12.467268503007055,1.0,0.0,0.0 -493,19.0,1.211576757929278,0.7,0.0,0.0,0.9947992110617596,-10.341138695399223,1.0,0.0,0.0 -493,20.0,9.637542392619256,11.2,0.0,0.0,0.985344519382474,-10.467332039875409,1.0,0.0,0.0 -493,21.0,0.0,0.0,0.0,0.0,0.9852945571060326,-10.480478090310472,1.0,0.0,0.0 -493,22.0,1.7622934660789498,1.6,0.0,0.0,0.9617768842638256,-10.962376592222052,1.0,0.0,0.0 -493,23.0,4.791235360902144,6.7,0.0,0.0,0.968691154561814,-10.79964009651641,1.0,0.0,0.0 -493,24.0,0.0,0.0,0.0,0.0,0.9669747892894104,-10.640511436895844,1.0,0.0,0.0 -493,25.0,1.9275084785238512,2.3,0.0,0.0,0.9526518658404164,-10.732149129004164,1.0,0.0,0.0 -493,26.0,0.0,0.0,0.0,0.0,0.9731070876621988,-10.451987717069738,1.0,0.0,0.0 -493,27.0,0.0,0.0,0.0,0.0,0.9609418947314766,-8.19629676960176,1.0,0.0,0.0 -493,28.0,1.3217200995592122,0.9,0.0,0.0,0.9590613761842084,-11.110585161247151,1.0,0.0,0.0 -493,29.0,5.837597106386521,1.9,0.0,0.0,0.9513965131618292,-11.605208320903191,1.0,0.0,0.0 -494,0.0,0.0,0.0,95.78680251404565,5.230858324267729e-06,1.0,0.0,0.0,0.0,1.0 -494,1.0,11.950552566847875,12.7,65.70430763784701,-19.49058409658743,0.9867218986622662,-1.81132756917834,0.0,1.0,0.0 -494,2.0,1.3217200995592122,1.2,0.0,0.0,0.9851725210895248,-3.8410086909040126,1.0,0.0,0.0 -494,3.0,4.185446981937505,1.6,0.0,0.0,0.980995298159656,-4.704999104223163,1.0,0.0,0.0 -494,4.0,51.87751390769908,19.0,2.3202517898773453e-08,39.99999492425512,0.9865340708150436,-7.502082742094789,0.0,1.0,0.0 -494,5.0,0.0,0.0,0.0,0.0,0.9808114356820216,-5.813091566252771,1.0,0.0,0.0 -494,6.0,12.556340945812517,10.9,0.0,0.0,0.9767976687319928,-6.768081726616984,1.0,0.0,0.0 -494,7.0,16.521501244490153,30.0,3.6489167278685023e-08,39.99999755469141,0.9830879799133184,-6.300528755649669,0.0,1.0,0.0 -494,8.0,0.0,0.0,0.0,0.0,1.020221817218644,-7.977259067755687,1.0,0.0,0.0 -494,9.0,3.194156907268096,2.0,0.0,0.0,1.00893634873628,-9.114698739980252,1.0,0.0,0.0 -494,10.0,0.0,0.0,4.0964111720752624e-08,20.27157286070096,1.0599999980014334,-7.9772590632414015,0.0,1.0,0.0 -494,11.0,6.168027131276324,7.5,0.0,0.0,1.044898738877991,-7.076029618128161,1.0,0.0,0.0 -494,12.0,0.0,0.0,2.4139604816036524e-08,11.433809008650538,1.0599999961145807,-7.076029616379922,0.0,1.0,0.0 -494,13.0,3.414443590527965,1.6,0.0,0.0,0.9400000019546092,-11.277949479662556,1.0,0.0,0.0 -494,14.0,4.515877006827308,2.5,0.0,0.0,0.9514331343197724,-11.067648502159685,1.0,0.0,0.0 -494,15.0,1.9275084785238512,1.8,0.0,0.0,1.0221047860680132,-7.981935638050149,1.0,0.0,0.0 -494,16.0,4.956450373347046,5.8,0.0,0.0,1.0090436253328765,-8.871067685389658,1.0,0.0,0.0 -494,17.0,1.7622934660789498,0.9,0.0,0.0,0.9622518547645036,-10.737311109375284,1.0,0.0,0.0 -494,18.0,5.231808727421882,3.4,0.0,0.0,0.9710679753605403,-10.442383848522011,1.0,0.0,0.0 -494,19.0,1.211576757929278,0.7,0.0,0.0,0.9799618896627929,-10.146217565381937,1.0,0.0,0.0 -494,20.0,9.637542392619256,11.2,0.0,0.0,0.9960948761543096,-9.385402870190076,1.0,0.0,0.0 -494,21.0,0.0,0.0,0.0,0.0,0.9957534458447715,-9.411231578499486,1.0,0.0,0.0 -494,22.0,1.7622934660789498,1.6,0.0,0.0,0.958588609060471,-10.62148644072748,1.0,0.0,0.0 -494,23.0,4.791235360902144,6.7,0.0,0.0,0.975134769543387,-9.876045906724933,1.0,0.0,0.0 -494,24.0,0.0,0.0,0.0,0.0,0.9793026818655024,-9.337239295766684,1.0,0.0,0.0 -494,25.0,1.9275084785238512,2.3,0.0,0.0,0.9651654899265426,-9.42655026505751,1.0,0.0,0.0 -494,26.0,0.0,0.0,0.0,0.0,0.988887859362888,-8.911885771279112,1.0,0.0,0.0 -494,27.0,0.0,0.0,0.0,0.0,0.9782584186123172,-6.224434243139055,1.0,0.0,0.0 -494,28.0,1.3217200995592122,0.9,0.0,0.0,0.975079661170336,-9.549341108024644,1.0,0.0,0.0 -494,29.0,5.837597106386521,1.9,0.0,0.0,0.9675447520004108,-10.027735846988636,1.0,0.0,0.0 -495,0.0,0.0,0.0,162.7862525232875,0.0006121010589055,1.0,0.0,0.0,0.0,1.0 -495,1.0,11.950552566847875,12.7,7.88256466708249e-07,10.580714898472756,0.9801677090371128,-3.7363099231474814,0.0,1.0,0.0 -495,2.0,1.3217200995592122,1.2,0.0,0.0,0.9741159060242806,-4.90009688496057,1.0,0.0,0.0 -495,3.0,4.185446981937505,1.6,0.0,0.0,0.9674809787097276,-6.022234212878806,1.0,0.0,0.0 -495,4.0,51.87751390769908,19.0,-8.247482078669327e-10,24.229588566677197,0.9601105511947224,-8.993534701485396,0.0,1.0,0.0 -495,5.0,0.0,0.0,0.0,0.0,0.9671107603815028,-7.149110089713274,1.0,0.0,0.0 -495,6.0,12.556340945812517,10.9,0.0,0.0,0.9577436293781216,-8.183305896548985,1.0,0.0,0.0 -495,7.0,16.521501244490153,30.0,-4.1628561953043624e-10,30.574767235541863,0.9661069211626144,-7.581522146693941,0.0,1.0,0.0 -495,8.0,0.0,0.0,0.0,0.0,1.0155831381120417,-8.973905680965798,1.0,0.0,0.0 -495,9.0,3.194156907268096,2.0,0.0,0.0,1.006640240804039,-9.921784970060504,1.0,0.0,0.0 -495,10.0,0.0,0.0,5.829081462913747e-10,22.62098334498677,1.0599726290009883,-8.973905680901266,0.0,1.0,0.0 -495,11.0,6.168027131276324,7.5,0.0,0.0,1.0136826657728588,-9.450405368806797,1.0,0.0,0.0 -495,12.0,0.0,0.0,-5.460394425551163e-10,9.956908299580087,1.0272525244854422,-9.45040536884886,0.0,1.0,0.0 -495,13.0,3.414443590527965,1.6,0.0,0.0,1.0026035890021352,-9.923975757751071,1.0,0.0,0.0 -495,14.0,4.515877006827308,2.5,0.0,0.0,0.999269837062134,-9.95168895069762,1.0,0.0,0.0 -495,15.0,1.9275084785238512,1.8,0.0,0.0,1.0044662754770437,-9.760437434030155,1.0,0.0,0.0 -495,16.0,4.956450373347046,5.8,0.0,0.0,1.0015999234959956,-9.96718285128872,1.0,0.0,0.0 -495,17.0,1.7622934660789498,0.9,0.0,0.0,0.992657660127985,-10.29063492131559,1.0,0.0,0.0 -495,18.0,5.231808727421882,3.4,0.0,0.0,0.991050329830104,-10.39324646981052,1.0,0.0,0.0 -495,19.0,1.211576757929278,0.7,0.0,0.0,0.9943281841527276,-10.307427957949375,1.0,0.0,0.0 -495,20.0,9.637542392619256,11.2,0.0,0.0,0.996050815935668,-10.099279689950714,1.0,0.0,0.0 -495,21.0,0.0,0.0,0.0,0.0,0.9964357862321342,-10.09581533898819,1.0,0.0,0.0 -495,22.0,1.7622934660789498,1.6,0.0,0.0,0.9907770107609616,-10.131847927242688,1.0,0.0,0.0 -495,23.0,4.791235360902144,6.7,0.0,0.0,0.986189740136479,-10.22334175461195,1.0,0.0,0.0 -495,24.0,0.0,0.0,0.0,0.0,0.9798186458918506,-9.949377353449297,1.0,0.0,0.0 -495,25.0,1.9275084785238512,2.3,0.0,0.0,0.9656891208400512,-10.038592883450065,1.0,0.0,0.0 -495,26.0,0.0,0.0,0.0,0.0,0.982925930784532,-9.69701688242023,1.0,0.0,0.0 -495,27.0,0.0,0.0,0.0,0.0,0.9650636391319136,-7.506804183938063,1.0,0.0,0.0 -495,28.0,1.3217200995592122,0.9,0.0,0.0,0.969028978193072,-10.342337719245927,1.0,0.0,0.0 -495,29.0,5.837597106386521,1.9,0.0,0.0,0.961445510002474,-10.82676710019808,1.0,0.0,0.0 -496,0.0,0.0,0.0,162.7862525232875,0.0006121010589055,1.0,0.0,0.0,0.0,1.0 -496,1.0,11.950552566847875,12.7,7.88256466708249e-07,10.580714898472756,0.9801677090371128,-3.7363099231474814,0.0,1.0,0.0 -496,2.0,1.3217200995592122,1.2,0.0,0.0,0.9741159060242806,-4.90009688496057,1.0,0.0,0.0 -496,3.0,4.185446981937505,1.6,0.0,0.0,0.9674809787097276,-6.022234212878806,1.0,0.0,0.0 -496,4.0,51.87751390769908,19.0,-8.247482078669327e-10,24.229588566677197,0.9601105511947224,-8.993534701485396,0.0,1.0,0.0 -496,5.0,0.0,0.0,0.0,0.0,0.9671107603815028,-7.149110089713274,1.0,0.0,0.0 -496,6.0,12.556340945812517,10.9,0.0,0.0,0.9577436293781216,-8.183305896548985,1.0,0.0,0.0 -496,7.0,16.521501244490153,30.0,-4.1628561953043624e-10,30.574767235541863,0.9661069211626144,-7.581522146693941,0.0,1.0,0.0 -496,8.0,0.0,0.0,0.0,0.0,1.0155831381120417,-8.973905680965798,1.0,0.0,0.0 -496,9.0,3.194156907268096,2.0,0.0,0.0,1.006640240804039,-9.921784970060504,1.0,0.0,0.0 -496,10.0,0.0,0.0,5.829081462913747e-10,22.62098334498677,1.0599726290009883,-8.973905680901266,0.0,1.0,0.0 -496,11.0,6.168027131276324,7.5,0.0,0.0,1.0136826657728588,-9.450405368806797,1.0,0.0,0.0 -496,12.0,0.0,0.0,-5.460394425551163e-10,9.956908299580087,1.0272525244854422,-9.45040536884886,0.0,1.0,0.0 -496,13.0,3.414443590527965,1.6,0.0,0.0,1.0026035890021352,-9.923975757751071,1.0,0.0,0.0 -496,14.0,4.515877006827308,2.5,0.0,0.0,0.999269837062134,-9.95168895069762,1.0,0.0,0.0 -496,15.0,1.9275084785238512,1.8,0.0,0.0,1.0044662754770437,-9.760437434030155,1.0,0.0,0.0 -496,16.0,4.956450373347046,5.8,0.0,0.0,1.0015999234959956,-9.96718285128872,1.0,0.0,0.0 -496,17.0,1.7622934660789498,0.9,0.0,0.0,0.992657660127985,-10.29063492131559,1.0,0.0,0.0 -496,18.0,5.231808727421882,3.4,0.0,0.0,0.991050329830104,-10.39324646981052,1.0,0.0,0.0 -496,19.0,1.211576757929278,0.7,0.0,0.0,0.9943281841527276,-10.307427957949375,1.0,0.0,0.0 -496,20.0,9.637542392619256,11.2,0.0,0.0,0.996050815935668,-10.099279689950714,1.0,0.0,0.0 -496,21.0,0.0,0.0,0.0,0.0,0.9964357862321342,-10.09581533898819,1.0,0.0,0.0 -496,22.0,1.7622934660789498,1.6,0.0,0.0,0.9907770107609616,-10.131847927242688,1.0,0.0,0.0 -496,23.0,4.791235360902144,6.7,0.0,0.0,0.986189740136479,-10.22334175461195,1.0,0.0,0.0 -496,24.0,0.0,0.0,0.0,0.0,0.9798186458918506,-9.949377353449297,1.0,0.0,0.0 -496,25.0,1.9275084785238512,2.3,0.0,0.0,0.9656891208400512,-10.038592883450065,1.0,0.0,0.0 -496,26.0,0.0,0.0,0.0,0.0,0.982925930784532,-9.69701688242023,1.0,0.0,0.0 -496,27.0,0.0,0.0,0.0,0.0,0.9650636391319136,-7.506804183938063,1.0,0.0,0.0 -496,28.0,1.3217200995592122,0.9,0.0,0.0,0.969028978193072,-10.342337719245927,1.0,0.0,0.0 -496,29.0,5.837597106386521,1.9,0.0,0.0,0.961445510002474,-10.82676710019808,1.0,0.0,0.0 -497,0.0,0.0,0.0,163.20356751433286,0.0010964165120697,1.0,0.0,0.0,0.0,1.0 -497,1.0,11.950552566847875,12.7,1.792960525261975e-06,24.73157874850408,0.982217880436106,-3.7727495069158814,0.0,1.0,0.0 -497,2.0,1.3217200995592122,1.2,0.0,0.0,0.9680778169106714,-4.863396441707123,1.0,0.0,0.0 -497,3.0,4.185446981937505,1.6,0.0,0.0,0.9600349977508292,-5.979521190225083,1.0,0.0,0.0 -497,4.0,51.87751390769908,19.0,2.2223320401329016e-09,39.81392392284897,0.9697935375580472,-9.125442813316631,0.0,1.0,0.0 -497,5.0,0.0,0.0,0.0,0.0,0.9527375719981708,-6.779372717350329,1.0,0.0,0.0 -497,6.0,12.556340945812517,10.9,0.0,0.0,0.9532115637947416,-8.01257744519317,1.0,0.0,0.0 -497,7.0,16.521501244490153,30.0,0.0,0.0,0.9400001995983396,-7.01361146212446,0.0,1.0,0.0 -497,8.0,0.0,0.0,0.0,0.0,1.0321045626267582,-12.244815949784108,1.0,0.0,0.0 -497,9.0,3.194156907268096,2.0,0.0,0.0,1.017354275659584,-12.244815949974344,1.0,0.0,0.0 -497,10.0,0.0,0.0,3.1694015805777594e-09,14.213859426473668,1.0599960143003568,-12.244815949438856,0.0,1.0,0.0 -497,11.0,6.168027131276324,7.5,0.0,0.0,1.031828417658473,-10.669033077153614,1.0,0.0,0.0 -497,12.0,0.0,0.0,2.5667313376641566e-09,21.32928887852593,1.0599991978721557,-10.669033076965372,0.0,1.0,0.0 -497,13.0,3.414443590527965,1.6,0.0,0.0,1.020207114810685,-11.279497258657296,1.0,0.0,0.0 -497,14.0,4.515877006827308,2.5,0.0,0.0,1.0151523130448512,-11.441704188784216,1.0,0.0,0.0 -497,15.0,1.9275084785238512,1.8,0.0,0.0,1.0186742357876164,-11.431511657536522,1.0,0.0,0.0 -497,16.0,4.956450373347046,5.8,0.0,0.0,1.0136852026675474,-12.088488975637915,1.0,0.0,0.0 -497,17.0,1.7622934660789498,0.9,0.0,0.0,1.00675566285405,-12.062286514421354,1.0,0.0,0.0 -497,18.0,5.231808727421882,3.4,0.0,0.0,1.0040857381885182,-12.336541079886644,1.0,0.0,0.0 -497,19.0,1.211576757929278,0.7,0.0,0.0,1.0067467109369976,-12.34472552002212,1.0,0.0,0.0 -497,20.0,9.637542392619256,11.2,0.0,0.0,1.006788047437053,-12.402008091851622,1.0,0.0,0.0 -497,21.0,0.0,0.0,0.0,0.0,1.0071421039583437,-12.393256138351422,1.0,0.0,0.0 -497,22.0,1.7622934660789498,1.6,0.0,0.0,1.0043819578985238,-11.929163891704256,1.0,0.0,0.0 -497,23.0,4.791235360902144,6.7,0.0,0.0,0.9967847380514095,-12.44373792181041,1.0,0.0,0.0 -497,24.0,0.0,0.0,0.0,0.0,0.9852421413899232,-12.561671328709316,1.0,0.0,0.0 -497,25.0,1.9275084785238512,2.3,0.0,0.0,0.9711926990182448,-12.64989296284556,1.0,0.0,0.0 -497,26.0,0.0,0.0,0.0,0.0,0.967094542970778,-8.78264520045143,1.0,0.0,0.0 -497,27.0,0.0,0.0,0.0,0.0,0.9484524517874922,-7.04344369854556,1.0,0.0,0.0 -497,28.0,1.3217200995592122,0.9,0.0,0.0,0.9529561097653168,-9.449576929958496,1.0,0.0,0.0 -497,29.0,5.837597106386521,1.9,0.0,0.0,0.9452405090877108,-9.95060402526949,1.0,0.0,0.0 -498,0.0,0.0,0.0,138.00001057669036,0.0004681298889863,1.0,0.0,0.0,0.0,1.0 -498,1.0,11.950552566847875,12.7,26.611358902614125,13.629415728680428,0.975178179276837,-4.637418373149917,0.0,1.0,0.0 -498,2.0,1.3217200995592122,1.2,0.0,0.0,0.949315682497452,-9.638520679837722,1.0,0.0,0.0 -498,3.0,4.185446981937505,1.6,0.0,0.0,0.9498275242671864,-9.613580431585913,1.0,0.0,0.0 -498,4.0,51.87751390769908,19.0,7.072853569878088e-10,26.474025849396668,0.9529224212850734,-11.019634530870546,0.0,1.0,0.0 -498,5.0,0.0,0.0,0.0,0.0,0.9528327820578718,-10.143645081705747,1.0,0.0,0.0 -498,6.0,12.556340945812517,10.9,0.0,0.0,0.946101132891736,-10.785346636973452,1.0,0.0,0.0 -498,7.0,16.521501244490153,30.0,6.097784994633682e-10,32.39979280605316,0.9524728982466764,-10.601874967294108,0.0,1.0,0.0 -498,8.0,0.0,0.0,0.0,0.0,1.0025095648811957,-12.13195655369725,1.0,0.0,0.0 -498,9.0,3.194156907268096,2.0,0.0,0.0,0.992777840047042,-13.163709766552625,1.0,0.0,0.0 -498,10.0,0.0,0.0,9.68535397295454e-10,23.997402574855457,1.05004522903681,-12.131956553587605,0.0,1.0,0.0 -498,11.0,6.168027131276324,7.5,0.0,0.0,0.9990019757216336,-12.912704715272875,1.0,0.0,0.0 -498,12.0,0.0,0.0,8.410900102836258e-10,12.10447354930201,1.0156865163706297,-12.912704715206385,0.0,1.0,0.0 -498,13.0,3.414443590527965,1.6,0.0,0.0,0.9877717893354826,-13.36955277682264,1.0,0.0,0.0 -498,14.0,4.515877006827308,2.5,0.0,0.0,0.9846129577901302,-13.367932460300857,1.0,0.0,0.0 -498,15.0,1.9275084785238512,1.8,0.0,0.0,0.990203801134678,-13.133339954696565,1.0,0.0,0.0 -498,16.0,4.956450373347046,5.8,0.0,0.0,0.9875008110484164,-13.252178448791923,1.0,0.0,0.0 -498,17.0,1.7622934660789498,0.9,0.0,0.0,0.978156106809111,-13.655973422867,1.0,0.0,0.0 -498,18.0,5.231808727421882,3.4,0.0,0.0,0.9766726779857532,-13.725220623859023,1.0,0.0,0.0 -498,19.0,1.211576757929278,0.7,0.0,0.0,0.9800781602989804,-13.617721011341828,1.0,0.0,0.0 -498,20.0,9.637542392619256,11.2,0.0,0.0,0.981960561709621,-13.35043608715159,1.0,0.0,0.0 -498,21.0,0.0,0.0,0.0,0.0,0.9823265071482252,-13.348182606402863,1.0,0.0,0.0 -498,22.0,1.7622934660789498,1.6,0.0,0.0,0.9761000327888084,-13.488559074064774,1.0,0.0,0.0 -498,23.0,4.791235360902144,6.7,0.0,0.0,0.9715748293811656,-13.495002970928232,1.0,0.0,0.0 -498,24.0,0.0,0.0,0.0,0.0,0.9652176320122478,-13.145664495606548,1.0,0.0,0.0 -498,25.0,1.9275084785238512,2.3,0.0,0.0,0.9508678310537464,-13.237641257024515,1.0,0.0,0.0 -498,26.0,0.0,0.0,0.0,0.0,0.9684250648393784,-12.843723692222117,1.0,0.0,0.0 -498,27.0,0.0,0.0,0.0,0.0,0.950867768020504,-10.52273863259774,1.0,0.0,0.0 -498,28.0,1.3217200995592122,0.9,0.0,0.0,0.9543072585746885,-13.50879746929984,1.0,0.0,0.0 -498,29.0,5.837597106386521,1.9,0.0,0.0,0.946602945307696,-14.00839661662553,1.0,0.0,0.0 -499,0.0,0.0,0.0,162.8649367516322,0.0024524399164782,1.0,0.0,0.0,0.0,1.0 -499,1.0,11.950552566847875,12.7,1.7581001907167502e-06,17.188634136250613,0.9810739974292204,-3.756291031796257,0.0,1.0,0.0 -499,2.0,1.3217200995592122,1.2,0.0,0.0,0.9714626911469256,-4.862424457677983,1.0,0.0,0.0 -499,3.0,4.185446981937505,1.6,0.0,0.0,0.964205885551749,-5.976698855231439,1.0,0.0,0.0 -499,4.0,51.87751390769908,19.0,7.775729526072762e-10,26.826360824969484,0.9611550907171896,-9.022869612479516,0.0,1.0,0.0 -499,5.0,0.0,0.0,0.0,0.0,0.9629763297717884,-7.074937403148438,1.0,0.0,0.0 -499,6.0,12.556340945812517,10.9,0.0,0.0,0.9557190374709068,-8.150202928566017,1.0,0.0,0.0 -499,7.0,16.521501244490153,30.0,1.7048437821171303e-09,39.996722783802255,0.9653774323930774,-7.570662607148659,0.0,1.0,0.0 -499,8.0,0.0,0.0,0.0,0.0,0.9848309379748644,-8.8659557503823,1.0,0.0,0.0 -499,9.0,3.194156907268096,2.0,0.0,0.0,0.98532157689836,-9.812361060592742,1.0,0.0,0.0 -499,10.0,0.0,0.0,0.0,0.0,0.9848309379748644,-8.8659557503823,0.0,1.0,0.0 -499,11.0,6.168027131276324,7.5,0.0,0.0,1.0061826881663245,-9.556881199401042,1.0,0.0,0.0 -499,12.0,0.0,0.0,2.38391242900643e-09,14.140461201943303,1.02548731092644,-9.556881199215711,0.0,1.0,0.0 -499,13.0,3.414443590527965,1.6,0.0,0.0,0.9934574621887976,-10.029699379436444,1.0,0.0,0.0 -499,14.0,4.515877006827308,2.5,0.0,0.0,0.988653137281074,-10.013899490454536,1.0,0.0,0.0 -499,15.0,1.9275084785238512,1.8,0.0,0.0,0.991054319858243,-9.748152646640284,1.0,0.0,0.0 -499,16.0,4.956450373347046,5.8,0.0,0.0,0.9826253149787224,-9.901536053611876,1.0,0.0,0.0 -499,17.0,1.7622934660789498,0.9,0.0,0.0,0.978136869054195,-10.30166425250914,1.0,0.0,0.0 -499,18.0,5.231808727421882,3.4,0.0,0.0,0.9742497997087224,-10.371224161374265,1.0,0.0,0.0 -499,19.0,1.211576757929278,0.7,0.0,0.0,0.9763979152663188,-10.26280186384475,1.0,0.0,0.0 -499,20.0,9.637542392619256,11.2,0.0,0.0,0.9755528500465902,-10.006801158649184,1.0,0.0,0.0 -499,21.0,0.0,0.0,0.0,0.0,0.9762771068475796,-10.006604366210553,1.0,0.0,0.0 -499,22.0,1.7622934660789498,1.6,0.0,0.0,0.9777959698690571,-10.164411188545918,1.0,0.0,0.0 -499,23.0,4.791235360902144,6.7,0.0,0.0,0.9701386917032842,-10.213335239997098,1.0,0.0,0.0 -499,24.0,0.0,0.0,0.0,0.0,0.9681464172286546,-9.98534389834312,1.0,0.0,0.0 -499,25.0,1.9275084785238512,2.3,0.0,0.0,0.9538413582514113,-10.0767565504741,1.0,0.0,0.0 -499,26.0,0.0,0.0,0.0,0.0,0.9740761980323348,-9.754784642353004,1.0,0.0,0.0 -499,27.0,0.0,0.0,0.0,0.0,0.9610731714198796,-7.448738130860668,1.0,0.0,0.0 -499,28.0,1.3217200995592122,0.9,0.0,0.0,0.9600453145323418,-10.412053462693258,1.0,0.0,0.0 -499,29.0,5.837597106386521,1.9,0.0,0.0,0.952388565135475,-10.90565607633834,1.0,0.0,0.0 -500,0.0,0.0,0.0,162.7862525232875,0.0006121010589055,1.0,0.0,0.0,0.0,1.0 -500,1.0,11.950552566847875,12.7,7.88256466708249e-07,10.580714898472756,0.9801677090371128,-3.7363099231474814,0.0,1.0,0.0 -500,2.0,1.3217200995592122,1.2,0.0,0.0,0.9741159060242806,-4.90009688496057,1.0,0.0,0.0 -500,3.0,4.185446981937505,1.6,0.0,0.0,0.9674809787097276,-6.022234212878806,1.0,0.0,0.0 -500,4.0,51.87751390769908,19.0,-8.247482078669327e-10,24.229588566677197,0.9601105511947224,-8.993534701485396,0.0,1.0,0.0 -500,5.0,0.0,0.0,0.0,0.0,0.9671107603815028,-7.149110089713274,1.0,0.0,0.0 -500,6.0,12.556340945812517,10.9,0.0,0.0,0.9577436293781216,-8.183305896548985,1.0,0.0,0.0 -500,7.0,16.521501244490153,30.0,-4.1628561953043624e-10,30.574767235541863,0.9661069211626144,-7.581522146693941,0.0,1.0,0.0 -500,8.0,0.0,0.0,0.0,0.0,1.0155831381120417,-8.973905680965798,1.0,0.0,0.0 -500,9.0,3.194156907268096,2.0,0.0,0.0,1.006640240804039,-9.921784970060504,1.0,0.0,0.0 -500,10.0,0.0,0.0,5.829081462913747e-10,22.62098334498677,1.0599726290009883,-8.973905680901266,0.0,1.0,0.0 -500,11.0,6.168027131276324,7.5,0.0,0.0,1.0136826657728588,-9.450405368806797,1.0,0.0,0.0 -500,12.0,0.0,0.0,-5.460394425551163e-10,9.956908299580087,1.0272525244854422,-9.45040536884886,0.0,1.0,0.0 -500,13.0,3.414443590527965,1.6,0.0,0.0,1.0026035890021352,-9.923975757751071,1.0,0.0,0.0 -500,14.0,4.515877006827308,2.5,0.0,0.0,0.999269837062134,-9.95168895069762,1.0,0.0,0.0 -500,15.0,1.9275084785238512,1.8,0.0,0.0,1.0044662754770437,-9.760437434030155,1.0,0.0,0.0 -500,16.0,4.956450373347046,5.8,0.0,0.0,1.0015999234959956,-9.96718285128872,1.0,0.0,0.0 -500,17.0,1.7622934660789498,0.9,0.0,0.0,0.992657660127985,-10.29063492131559,1.0,0.0,0.0 -500,18.0,5.231808727421882,3.4,0.0,0.0,0.991050329830104,-10.39324646981052,1.0,0.0,0.0 -500,19.0,1.211576757929278,0.7,0.0,0.0,0.9943281841527276,-10.307427957949375,1.0,0.0,0.0 -500,20.0,9.637542392619256,11.2,0.0,0.0,0.996050815935668,-10.099279689950714,1.0,0.0,0.0 -500,21.0,0.0,0.0,0.0,0.0,0.9964357862321342,-10.09581533898819,1.0,0.0,0.0 -500,22.0,1.7622934660789498,1.6,0.0,0.0,0.9907770107609616,-10.131847927242688,1.0,0.0,0.0 -500,23.0,4.791235360902144,6.7,0.0,0.0,0.986189740136479,-10.22334175461195,1.0,0.0,0.0 -500,24.0,0.0,0.0,0.0,0.0,0.9798186458918506,-9.949377353449297,1.0,0.0,0.0 -500,25.0,1.9275084785238512,2.3,0.0,0.0,0.9656891208400512,-10.038592883450065,1.0,0.0,0.0 -500,26.0,0.0,0.0,0.0,0.0,0.982925930784532,-9.69701688242023,1.0,0.0,0.0 -500,27.0,0.0,0.0,0.0,0.0,0.9650636391319136,-7.506804183938063,1.0,0.0,0.0 -500,28.0,1.3217200995592122,0.9,0.0,0.0,0.969028978193072,-10.342337719245927,1.0,0.0,0.0 -500,29.0,5.837597106386521,1.9,0.0,0.0,0.961445510002474,-10.82676710019808,1.0,0.0,0.0 -501,0.0,0.0,0.0,139.29267261367596,2.473227311838855e-06,1.0,0.0,0.0,0.0,1.0 -501,1.0,11.950552566847875,12.7,27.955071408181947,-3.599411029447083,0.9734881200697576,-4.611825744513383,0.0,1.0,0.0 -501,2.0,1.3217200995592122,1.2,0.0,0.0,1.0007916879133754,-0.1468259475481763,1.0,0.0,0.0 -501,3.0,4.185446981937505,1.6,0.0,0.0,0.9712450844973438,-5.057077326054804,1.0,0.0,0.0 -501,4.0,51.87751390769908,19.0,2.0019503188427456e-10,34.159684298648415,0.960467627604081,-12.825608796764328,0.0,1.0,0.0 -501,5.0,0.0,0.0,0.0,0.0,0.9541748737095744,-13.657254947191372,1.0,0.0,0.0 -501,6.0,12.556340945812517,10.9,0.0,0.0,0.9495801518255668,-13.592360915084926,1.0,0.0,0.0 -501,7.0,16.521501244490153,30.0,2.773992506409509e-10,39.991286595681935,0.9559020564344736,-14.36798957751158,0.0,1.0,0.0 -501,8.0,0.0,0.0,0.0,0.0,1.003601171856292,-17.660382357508322,1.0,0.0,0.0 -501,9.0,3.194156907268096,2.0,0.0,0.0,0.9951831305021284,-19.73460969731107,1.0,0.0,0.0 -501,10.0,0.0,0.0,4.964736303659595e-10,23.999983054300912,1.0510944897635852,-17.660382357452235,0.0,1.0,0.0 -501,11.0,6.168027131276324,7.5,0.0,0.0,0.9886134042371956,-23.643779467141727,1.0,0.0,0.0 -501,12.0,0.0,0.0,4.2839828947686567e-10,23.999960480995465,1.0215059627713017,-23.643779467107706,0.0,1.0,0.0 -501,13.0,3.414443590527965,1.6,0.0,0.0,0.9781940387144012,-23.80082670275192,1.0,0.0,0.0 -501,14.0,4.515877006827308,2.5,0.0,0.0,0.9779976104761277,-23.51646364839011,1.0,0.0,0.0 -501,15.0,1.9275084785238512,1.8,0.0,0.0,0.9873817275945976,-22.0949526460399,1.0,0.0,0.0 -501,16.0,4.956450373347046,5.8,0.0,0.0,0.9872060562380848,-20.557772977175688,1.0,0.0,0.0 -501,17.0,1.7622934660789498,0.9,0.0,0.0,0.9685543241612886,-20.773032720851525,1.0,0.0,0.0 -501,18.0,5.231808727421882,3.4,0.0,0.0,0.97091913250705,-20.669346738316428,1.0,0.0,0.0 -501,19.0,1.211576757929278,0.7,0.0,0.0,0.9763905372035327,-20.47026268446906,1.0,0.0,0.0 -501,20.0,9.637542392619256,11.2,0.0,0.0,0.9834089425602216,-20.179614826400325,1.0,0.0,0.0 -501,21.0,0.0,0.0,0.0,0.0,0.9834421573247067,-20.260413037484973,1.0,0.0,0.0 -501,22.0,1.7622934660789498,1.6,0.0,0.0,0.9699995186859862,-22.72746015332697,1.0,0.0,0.0 -501,23.0,4.791235360902144,6.7,0.0,0.0,0.9664418090528462,-21.504163681189205,1.0,0.0,0.0 -501,24.0,0.0,0.0,0.0,0.0,0.9545158300782918,-21.629763810922817,1.0,0.0,0.0 -501,25.0,1.9275084785238512,2.3,0.0,0.0,0.9400000963080538,-21.723847105156963,1.0,0.0,0.0 -501,26.0,0.0,0.0,0.0,0.0,0.966736664374244,-16.97319825833985,1.0,0.0,0.0 -501,27.0,0.0,0.0,0.0,0.0,0.94811150556311,-15.23270775059692,1.0,0.0,0.0 -501,28.0,1.3217200995592122,0.9,0.0,0.0,0.952592672462213,-17.64063106936876,1.0,0.0,0.0 -501,29.0,5.837597106386521,1.9,0.0,0.0,0.944874029945442,-18.142043307203046,1.0,0.0,0.0 -502,0.0,0.0,0.0,163.08365305224325,0.0006038846592559,1.0,0.0,0.0,0.0,1.0 -502,1.0,11.950552566847875,12.7,6.403386755253544e-07,12.02852188224042,0.980390347493446,-3.729204475338204,0.0,1.0,0.0 -502,2.0,1.3217200995592122,1.2,0.0,0.0,0.9734230688943936,-4.95253961842274,1.0,0.0,0.0 -502,3.0,4.185446981937505,1.6,0.0,0.0,0.966635286820404,-6.087715720580718,1.0,0.0,0.0 -502,4.0,51.87751390769908,19.0,4.899801235712908e-10,25.613942977331615,0.9609495650071797,-8.954797183032653,0.0,1.0,0.0 -502,5.0,0.0,0.0,0.0,0.0,0.9657609691088082,-7.022926017270835,1.0,0.0,0.0 -502,6.0,12.556340945812517,10.9,0.0,0.0,0.9572946548991428,-8.092032261593657,1.0,0.0,0.0 -502,7.0,16.521501244490153,30.0,7.69277483846855e-10,39.68567253204249,0.9680979668254268,-7.52554781874495,0.0,1.0,0.0 -502,8.0,0.0,0.0,0.0,0.0,0.995534048395982,-11.521998295209524,1.0,0.0,0.0 -502,9.0,3.194156907268096,2.0,0.0,0.0,0.995534048395982,-11.521998295209524,1.0,0.0,0.0 -502,10.0,0.0,0.0,0.0,0.0,0.995534048395982,-11.521998295209524,0.0,1.0,0.0 -502,11.0,6.168027131276324,7.5,0.0,0.0,1.0203395160049833,-10.623069842911525,1.0,0.0,0.0 -502,12.0,0.0,0.0,1.2088863469426654e-09,21.883568231881767,1.049530655273471,-10.623069842820971,0.0,1.0,0.0 -502,13.0,3.414443590527965,1.6,0.0,0.0,1.0056488931082432,-11.210416313313504,1.0,0.0,0.0 -502,14.0,4.515877006827308,2.5,0.0,0.0,0.99796933333676,-11.272987562896173,1.0,0.0,0.0 -502,15.0,1.9275084785238512,1.8,0.0,0.0,1.003137910078726,-11.076566638538178,1.0,0.0,0.0 -502,16.0,4.956450373347046,5.8,0.0,0.0,0.9936083342553936,-11.491618594264288,1.0,0.0,0.0 -502,17.0,1.7622934660789498,0.9,0.0,0.0,0.977474576262986,-12.011021446442246,1.0,0.0,0.0 -502,18.0,5.231808727421882,3.4,0.0,0.0,0.9677259251638368,-12.356578949759443,1.0,0.0,0.0 -502,19.0,1.211576757929278,0.7,0.0,0.0,0.9668073144748364,-12.392457364354003,1.0,0.0,0.0 -502,20.0,9.637542392619256,11.2,0.0,0.0,0.9856442718354504,-11.64196597675054,1.0,0.0,0.0 -502,21.0,0.0,0.0,0.0,0.0,0.986298270356526,-11.619027780205936,1.0,0.0,0.0 -502,22.0,1.7622934660789498,1.6,0.0,0.0,0.9873535921286524,-11.43891880825496,1.0,0.0,0.0 -502,23.0,4.791235360902144,6.7,0.0,0.0,0.979955830651518,-11.511636296912249,1.0,0.0,0.0 -502,24.0,0.0,0.0,0.0,0.0,0.9770140088079732,-10.755296688824515,1.0,0.0,0.0 -502,25.0,1.9275084785238512,2.3,0.0,0.0,0.9628427062256106,-10.84503282324656,1.0,0.0,0.0 -502,26.0,0.0,0.0,0.0,0.0,0.9821613872587844,-10.200101822075812,1.0,0.0,0.0 -502,27.0,0.0,0.0,0.0,0.0,0.9641257923957576,-7.462223007068506,1.0,0.0,0.0 -502,28.0,1.3217200995592122,0.9,0.0,0.0,0.9753440239171952,-10.410093373672224,1.0,0.0,0.0 -502,29.0,5.837597106386521,1.9,0.0,0.0,0.9499522038669496,-11.987381251824752,1.0,0.0,0.0 -503,0.0,0.0,0.0,163.0147984935169,0.0004191013071697,1.0,0.0,0.0,0.0,1.0 -503,1.0,11.950552566847875,12.7,7.818243192687653e-07,10.554495987461024,0.9800373510100188,-3.723728239785652,0.0,1.0,0.0 -503,2.0,1.3217200995592122,1.2,0.0,0.0,0.9744592200635784,-4.956752175529066,1.0,0.0,0.0 -503,3.0,4.185446981937505,1.6,0.0,0.0,0.9679127515202184,-6.092429762582348,1.0,0.0,0.0 -503,4.0,51.87751390769908,19.0,-1.1493673094767635e-09,25.129004119806154,0.96022773249884,-8.954160523619421,0.0,1.0,0.0 -503,5.0,0.0,0.0,0.0,0.0,0.9656808688971804,-7.039430958476857,1.0,0.0,0.0 -503,6.0,12.556340945812517,10.9,0.0,0.0,0.9569470330083018,-8.102011371164451,1.0,0.0,0.0 -503,7.0,16.521501244490153,30.0,-8.610908316770072e-10,36.63813016249669,0.9666631878412064,-7.517330845604662,0.0,1.0,0.0 -503,8.0,0.0,0.0,0.0,0.0,1.036105416097584,-11.932597209156384,1.0,0.0,0.0 -503,9.0,3.194156907268096,2.0,0.0,0.0,1.024114408615688,-11.932597209198654,1.0,0.0,0.0 -503,10.0,0.0,0.0,7.116941592003801e-10,11.541664313691946,1.0587793211252767,-11.932597209079066,0.0,1.0,0.0 -503,11.0,6.168027131276324,7.5,0.0,0.0,1.03181386411704,-10.360205612571706,1.0,0.0,0.0 -503,12.0,0.0,0.0,-1.3234428571962035e-09,18.3480660718424,1.05613582340608,-10.360205612669128,0.0,1.0,0.0 -503,13.0,3.414443590527965,1.6,0.0,0.0,0.9970687286746374,-11.39262145701566,1.0,0.0,0.0 -503,14.0,4.515877006827308,2.5,0.0,0.0,1.0078468041277702,-11.205455201290832,1.0,0.0,0.0 -503,15.0,1.9275084785238512,1.8,0.0,0.0,1.0216053740408502,-11.136765373401127,1.0,0.0,0.0 -503,16.0,4.956450373347046,5.8,0.0,0.0,1.0192705735540897,-11.776702826415548,1.0,0.0,0.0 -503,17.0,1.7622934660789498,0.9,0.0,0.0,1.0044037354147812,-11.80543341496244,1.0,0.0,0.0 -503,18.0,5.231808727421882,3.4,0.0,0.0,1.0046692667623782,-12.064864255389033,1.0,0.0,0.0 -503,19.0,1.211576757929278,0.7,0.0,0.0,1.0088761346950896,-12.06537087134431,1.0,0.0,0.0 -503,20.0,9.637542392619256,11.2,0.0,0.0,1.016007190224623,-12.05828975241276,1.0,0.0,0.0 -503,21.0,0.0,0.0,0.0,0.0,1.017113511089392,-12.041320477548528,1.0,0.0,0.0 -503,22.0,1.7622934660789498,1.6,0.0,0.0,0.990766067057646,-11.334981303847526,1.0,0.0,0.0 -503,23.0,4.791235360902144,6.7,0.0,0.0,0.9747180933971544,-11.36319735558309,1.0,0.0,0.0 -503,24.0,0.0,0.0,0.0,0.0,0.9726335955642544,-10.666136352636086,1.0,0.0,0.0 -503,25.0,1.9275084785238512,2.3,0.0,0.0,0.9583965388780294,-10.756694810659338,1.0,0.0,0.0 -503,26.0,0.0,0.0,0.0,0.0,0.978357411353284,-10.146375368647542,1.0,0.0,0.0 -503,27.0,0.0,0.0,0.0,0.0,0.9614884759334824,-7.433190510594224,1.0,0.0,0.0 -503,28.0,1.3217200995592122,0.9,0.0,0.0,0.9643916494584468,-10.7978228627837,1.0,0.0,0.0 -503,29.0,5.837597106386521,1.9,0.0,0.0,0.9567705326050996,-11.286955107062692,1.0,0.0,0.0 -504,0.0,0.0,0.0,162.7862525232875,0.0006121010589055,1.0,0.0,0.0,0.0,1.0 -504,1.0,11.950552566847875,12.7,7.88256466708249e-07,10.580714898472756,0.9801677090371128,-3.7363099231474814,0.0,1.0,0.0 -504,2.0,1.3217200995592122,1.2,0.0,0.0,0.9741159060242806,-4.90009688496057,1.0,0.0,0.0 -504,3.0,4.185446981937505,1.6,0.0,0.0,0.9674809787097276,-6.022234212878806,1.0,0.0,0.0 -504,4.0,51.87751390769908,19.0,-8.247482078669327e-10,24.229588566677197,0.9601105511947224,-8.993534701485396,0.0,1.0,0.0 -504,5.0,0.0,0.0,0.0,0.0,0.9671107603815028,-7.149110089713274,1.0,0.0,0.0 -504,6.0,12.556340945812517,10.9,0.0,0.0,0.9577436293781216,-8.183305896548985,1.0,0.0,0.0 -504,7.0,16.521501244490153,30.0,-4.1628561953043624e-10,30.574767235541863,0.9661069211626144,-7.581522146693941,0.0,1.0,0.0 -504,8.0,0.0,0.0,0.0,0.0,1.0155831381120417,-8.973905680965798,1.0,0.0,0.0 -504,9.0,3.194156907268096,2.0,0.0,0.0,1.006640240804039,-9.921784970060504,1.0,0.0,0.0 -504,10.0,0.0,0.0,5.829081462913747e-10,22.62098334498677,1.0599726290009883,-8.973905680901266,0.0,1.0,0.0 -504,11.0,6.168027131276324,7.5,0.0,0.0,1.0136826657728588,-9.450405368806797,1.0,0.0,0.0 -504,12.0,0.0,0.0,-5.460394425551163e-10,9.956908299580087,1.0272525244854422,-9.45040536884886,0.0,1.0,0.0 -504,13.0,3.414443590527965,1.6,0.0,0.0,1.0026035890021352,-9.923975757751071,1.0,0.0,0.0 -504,14.0,4.515877006827308,2.5,0.0,0.0,0.999269837062134,-9.95168895069762,1.0,0.0,0.0 -504,15.0,1.9275084785238512,1.8,0.0,0.0,1.0044662754770437,-9.760437434030155,1.0,0.0,0.0 -504,16.0,4.956450373347046,5.8,0.0,0.0,1.0015999234959956,-9.96718285128872,1.0,0.0,0.0 -504,17.0,1.7622934660789498,0.9,0.0,0.0,0.992657660127985,-10.29063492131559,1.0,0.0,0.0 -504,18.0,5.231808727421882,3.4,0.0,0.0,0.991050329830104,-10.39324646981052,1.0,0.0,0.0 -504,19.0,1.211576757929278,0.7,0.0,0.0,0.9943281841527276,-10.307427957949375,1.0,0.0,0.0 -504,20.0,9.637542392619256,11.2,0.0,0.0,0.996050815935668,-10.099279689950714,1.0,0.0,0.0 -504,21.0,0.0,0.0,0.0,0.0,0.9964357862321342,-10.09581533898819,1.0,0.0,0.0 -504,22.0,1.7622934660789498,1.6,0.0,0.0,0.9907770107609616,-10.131847927242688,1.0,0.0,0.0 -504,23.0,4.791235360902144,6.7,0.0,0.0,0.986189740136479,-10.22334175461195,1.0,0.0,0.0 -504,24.0,0.0,0.0,0.0,0.0,0.9798186458918506,-9.949377353449297,1.0,0.0,0.0 -504,25.0,1.9275084785238512,2.3,0.0,0.0,0.9656891208400512,-10.038592883450065,1.0,0.0,0.0 -504,26.0,0.0,0.0,0.0,0.0,0.982925930784532,-9.69701688242023,1.0,0.0,0.0 -504,27.0,0.0,0.0,0.0,0.0,0.9650636391319136,-7.506804183938063,1.0,0.0,0.0 -504,28.0,1.3217200995592122,0.9,0.0,0.0,0.969028978193072,-10.342337719245927,1.0,0.0,0.0 -504,29.0,5.837597106386521,1.9,0.0,0.0,0.961445510002474,-10.82676710019808,1.0,0.0,0.0 -505,0.0,0.0,0.0,163.07491072388714,3.1056168126042394e-05,1.0,0.0,0.0,0.0,1.0 -505,1.0,11.950552566847875,12.7,7.876791093697879e-08,10.703928527557665,0.9801412198673708,-3.748347152173376,0.0,1.0,0.0 -505,2.0,1.3217200995592122,1.2,0.0,0.0,0.9740584238493786,-4.894254434423986,1.0,0.0,0.0 -505,3.0,4.185446981937505,1.6,0.0,0.0,0.967409262507164,-6.015005365589191,1.0,0.0,0.0 -505,4.0,51.87751390769908,19.0,3.6009806703471446e-11,24.70974030139996,0.9603855000692988,-9.02964988997762,0.0,1.0,0.0 -505,5.0,0.0,0.0,0.0,0.0,0.9666834563561276,-7.191979461843896,1.0,0.0,0.0 -505,6.0,12.556340945812517,10.9,0.0,0.0,0.9576011219939976,-8.223194713318232,1.0,0.0,0.0 -505,7.0,16.521501244490153,30.0,5.7553956610694e-11,33.38533647953685,0.9666270063614152,-7.645176799426698,0.0,1.0,0.0 -505,8.0,0.0,0.0,0.0,0.0,1.012361399719491,-9.152401525526855,1.0,0.0,0.0 -505,9.0,3.194156907268096,2.0,0.0,0.0,1.0005659175407773,-10.176441799003491,1.0,0.0,0.0 -505,10.0,0.0,0.0,1.410056680029962e-10,23.99994654442558,1.0594788019014088,-9.152401525511188,0.0,1.0,0.0 -505,11.0,6.168027131276324,7.5,0.0,0.0,1.013655996545627,-9.130723588464445,1.0,0.0,0.0 -505,12.0,0.0,0.0,5.2306517755607987e-11,6.094441648356575,1.0220045099083177,-9.130723588460397,0.0,1.0,0.0 -505,13.0,3.414443590527965,1.6,0.0,0.0,0.9910082088444858,-10.25530963055791,1.0,0.0,0.0 -505,14.0,4.515877006827308,2.5,0.0,0.0,0.972181395784253,-10.674072488190296,1.0,0.0,0.0 -505,15.0,1.9275084785238512,1.8,0.0,0.0,1.0014083071366635,-9.673690943919098,1.0,0.0,0.0 -505,16.0,4.956450373347046,5.8,0.0,0.0,0.996564589220548,-10.11987888213398,1.0,0.0,0.0 -505,17.0,1.7622934660789498,0.9,0.0,0.0,0.972828298425524,-10.863572401096778,1.0,0.0,0.0 -505,18.0,5.231808727421882,3.4,0.0,0.0,0.975561970974026,-10.872715834170489,1.0,0.0,0.0 -505,19.0,1.211576757929278,0.7,0.0,0.0,0.9811996562964992,-10.7341101256329,1.0,0.0,0.0 -505,20.0,9.637542392619256,11.2,0.0,0.0,0.9889474164634224,-10.380438440891888,1.0,0.0,0.0 -505,21.0,0.0,0.0,0.0,0.0,0.989029313273218,-10.384313266576129,1.0,0.0,0.0 -505,22.0,1.7622934660789498,1.6,0.0,0.0,0.9702196211487027,-10.705538349294011,1.0,0.0,0.0 -505,23.0,4.791235360902144,6.7,0.0,0.0,0.974459884168448,-10.587793120495862,1.0,0.0,0.0 -505,24.0,0.0,0.0,0.0,0.0,0.9724798410580264,-10.25154692296051,1.0,0.0,0.0 -505,25.0,1.9275084785238512,2.3,0.0,0.0,0.9582404650857425,-10.342134448095472,1.0,0.0,0.0 -505,26.0,0.0,0.0,0.0,0.0,0.9783514461788776,-9.954841774283246,1.0,0.0,0.0 -505,27.0,0.0,0.0,0.0,0.0,0.964274069569182,-7.568745241856963,1.0,0.0,0.0 -505,28.0,1.3217200995592122,0.9,0.0,0.0,0.964385593957992,-10.6062973249402,1.0,0.0,0.0 -505,29.0,5.837597106386521,1.9,0.0,0.0,0.9567644276795206,-11.09543575516544,1.0,0.0,0.0 -506,0.0,0.0,0.0,163.26242967047523,0.000920554314554,1.0,0.0,0.0,0.0,1.0 -506,1.0,11.950552566847875,12.7,1.4665128463266691e-06,9.405741699286963,0.9813892495416138,-3.4446634335728445,0.0,1.0,0.0 -506,2.0,1.3217200995592122,1.2,0.0,0.0,0.9717451590189056,-5.792405929797433,1.0,0.0,0.0 -506,3.0,4.185446981937505,1.6,0.0,0.0,0.964730068772319,-7.132204915152432,1.0,0.0,0.0 -506,4.0,51.87751390769908,19.0,-8.677505802060083e-10,24.9108423488496,0.9609006201588488,-9.222342721456716,0.0,1.0,0.0 -506,5.0,0.0,0.0,0.0,0.0,0.9656239900310244,-7.904286588539131,1.0,0.0,0.0 -506,6.0,12.556340945812517,10.9,0.0,0.0,0.9571061702781808,-8.723359898791125,1.0,0.0,0.0 -506,7.0,16.521501244490153,30.0,-2.4972646492502967e-10,29.99917791952208,0.9644273975143858,-8.335040563496621,0.0,1.0,0.0 -506,8.0,0.0,0.0,0.0,0.0,1.0157859647307277,-9.688174176110666,1.0,0.0,0.0 -506,9.0,3.194156907268096,2.0,0.0,0.0,1.008857663216547,-10.61135070127644,1.0,0.0,0.0 -506,10.0,0.0,0.0,1.2258702684626404e-09,21.50050331427652,1.058053257584939,-9.688174175974734,0.0,1.0,0.0 -506,11.0,6.168027131276324,7.5,0.0,0.0,1.0213128702820216,-10.63377885125883,1.0,0.0,0.0 -506,12.0,0.0,0.0,5.283490785587295e-10,17.36453784090214,1.0445855949817038,-10.6337788512191,0.0,1.0,0.0 -506,13.0,3.414443590527965,1.6,0.0,0.0,1.0077078823039374,-11.149363670459124,1.0,0.0,0.0 -506,14.0,4.515877006827308,2.5,0.0,0.0,1.0015514798654956,-11.165932355374158,1.0,0.0,0.0 -506,15.0,1.9275084785238512,1.8,0.0,0.0,1.015997622095696,-10.751333229455328,1.0,0.0,0.0 -506,16.0,4.956450373347046,5.8,0.0,0.0,1.0023634860831585,-10.742176053772408,1.0,0.0,0.0 -506,17.0,1.7622934660789498,0.9,0.0,0.0,0.9841752685480312,-11.78607777322239,1.0,0.0,0.0 -506,18.0,5.231808727421882,3.4,0.0,0.0,0.9762398467630924,-12.059613640661537,1.0,0.0,0.0 -506,19.0,1.211576757929278,0.7,0.0,0.0,1.0062750980182529,-10.71728570123042,1.0,0.0,0.0 -506,20.0,9.637542392619256,11.2,0.0,0.0,0.9982216988691078,-10.816834954039436,1.0,0.0,0.0 -506,21.0,0.0,0.0,0.0,0.0,0.9985806891798898,-10.822609181994872,1.0,0.0,0.0 -506,22.0,1.7622934660789498,1.6,0.0,0.0,0.9927844828833244,-11.190131854465454,1.0,0.0,0.0 -506,23.0,4.791235360902144,6.7,0.0,0.0,0.9877944857282586,-11.07160629187136,1.0,0.0,0.0 -506,24.0,0.0,0.0,0.0,0.0,0.9803904267564164,-10.751417756242388,1.0,0.0,0.0 -506,25.0,1.9275084785238512,2.3,0.0,0.0,0.9662693882288506,-10.84052771012892,1.0,0.0,0.0 -506,26.0,0.0,0.0,0.0,0.0,0.9828383601313452,-10.471379254716211,1.0,0.0,0.0 -506,27.0,0.0,0.0,0.0,0.0,0.9636818431635849,-8.266553601967253,1.0,0.0,0.0 -506,28.0,1.3217200995592122,0.9,0.0,0.0,0.9689400951495688,-11.116816711027164,1.0,0.0,0.0 -506,29.0,5.837597106386521,1.9,0.0,0.0,0.961355908908162,-11.601335590841328,1.0,0.0,0.0 -507,0.0,0.0,0.0,162.7862525232875,0.0006121010589055,1.0,0.0,0.0,0.0,1.0 -507,1.0,11.950552566847875,12.7,7.88256466708249e-07,10.580714898472756,0.9801677090371128,-3.7363099231474814,0.0,1.0,0.0 -507,2.0,1.3217200995592122,1.2,0.0,0.0,0.9741159060242806,-4.90009688496057,1.0,0.0,0.0 -507,3.0,4.185446981937505,1.6,0.0,0.0,0.9674809787097276,-6.022234212878806,1.0,0.0,0.0 -507,4.0,51.87751390769908,19.0,-8.247482078669327e-10,24.229588566677197,0.9601105511947224,-8.993534701485396,0.0,1.0,0.0 -507,5.0,0.0,0.0,0.0,0.0,0.9671107603815028,-7.149110089713274,1.0,0.0,0.0 -507,6.0,12.556340945812517,10.9,0.0,0.0,0.9577436293781216,-8.183305896548985,1.0,0.0,0.0 -507,7.0,16.521501244490153,30.0,-4.1628561953043624e-10,30.574767235541863,0.9661069211626144,-7.581522146693941,0.0,1.0,0.0 -507,8.0,0.0,0.0,0.0,0.0,1.0155831381120417,-8.973905680965798,1.0,0.0,0.0 -507,9.0,3.194156907268096,2.0,0.0,0.0,1.006640240804039,-9.921784970060504,1.0,0.0,0.0 -507,10.0,0.0,0.0,5.829081462913747e-10,22.62098334498677,1.0599726290009883,-8.973905680901266,0.0,1.0,0.0 -507,11.0,6.168027131276324,7.5,0.0,0.0,1.0136826657728588,-9.450405368806797,1.0,0.0,0.0 -507,12.0,0.0,0.0,-5.460394425551163e-10,9.956908299580087,1.0272525244854422,-9.45040536884886,0.0,1.0,0.0 -507,13.0,3.414443590527965,1.6,0.0,0.0,1.0026035890021352,-9.923975757751071,1.0,0.0,0.0 -507,14.0,4.515877006827308,2.5,0.0,0.0,0.999269837062134,-9.95168895069762,1.0,0.0,0.0 -507,15.0,1.9275084785238512,1.8,0.0,0.0,1.0044662754770437,-9.760437434030155,1.0,0.0,0.0 -507,16.0,4.956450373347046,5.8,0.0,0.0,1.0015999234959956,-9.96718285128872,1.0,0.0,0.0 -507,17.0,1.7622934660789498,0.9,0.0,0.0,0.992657660127985,-10.29063492131559,1.0,0.0,0.0 -507,18.0,5.231808727421882,3.4,0.0,0.0,0.991050329830104,-10.39324646981052,1.0,0.0,0.0 -507,19.0,1.211576757929278,0.7,0.0,0.0,0.9943281841527276,-10.307427957949375,1.0,0.0,0.0 -507,20.0,9.637542392619256,11.2,0.0,0.0,0.996050815935668,-10.099279689950714,1.0,0.0,0.0 -507,21.0,0.0,0.0,0.0,0.0,0.9964357862321342,-10.09581533898819,1.0,0.0,0.0 -507,22.0,1.7622934660789498,1.6,0.0,0.0,0.9907770107609616,-10.131847927242688,1.0,0.0,0.0 -507,23.0,4.791235360902144,6.7,0.0,0.0,0.986189740136479,-10.22334175461195,1.0,0.0,0.0 -507,24.0,0.0,0.0,0.0,0.0,0.9798186458918506,-9.949377353449297,1.0,0.0,0.0 -507,25.0,1.9275084785238512,2.3,0.0,0.0,0.9656891208400512,-10.038592883450065,1.0,0.0,0.0 -507,26.0,0.0,0.0,0.0,0.0,0.982925930784532,-9.69701688242023,1.0,0.0,0.0 -507,27.0,0.0,0.0,0.0,0.0,0.9650636391319136,-7.506804183938063,1.0,0.0,0.0 -507,28.0,1.3217200995592122,0.9,0.0,0.0,0.969028978193072,-10.342337719245927,1.0,0.0,0.0 -507,29.0,5.837597106386521,1.9,0.0,0.0,0.961445510002474,-10.82676710019808,1.0,0.0,0.0 -508,0.0,0.0,0.0,163.1870426695298,0.0016230942374129,1.0,0.0,0.0,0.0,1.0 -508,1.0,11.950552566847875,12.7,2.266786433376617e-06,8.978026246192009,0.9799268647515712,-3.736757616745664,0.0,1.0,0.0 -508,2.0,1.3217200995592122,1.2,0.0,0.0,0.9746673354017724,-4.935481984709404,1.0,0.0,0.0 -508,3.0,4.185446981937505,1.6,0.0,0.0,0.9681658966333554,-6.065911261517204,1.0,0.0,0.0 -508,4.0,51.87751390769908,19.0,9.580787748460175e-10,24.307411517726507,0.9603585996674404,-8.9956476925141,0.0,1.0,0.0 -508,5.0,0.0,0.0,0.0,0.0,0.9676848300728572,-7.154647974108194,1.0,0.0,0.0 -508,6.0,12.556340945812517,10.9,0.0,0.0,0.9581881983277416,-8.1873535598488,1.0,0.0,0.0 -508,7.0,16.521501244490153,30.0,2.5020451184322332e-09,30.134217041793303,0.9561911366099972,-10.229355869590096,0.0,1.0,0.0 -508,8.0,0.0,0.0,0.0,0.0,1.0181903440085731,-8.916795450066994,1.0,0.0,0.0 -508,9.0,3.194156907268096,2.0,0.0,0.0,1.0120449909804614,-9.827791915387214,1.0,0.0,0.0 -508,10.0,0.0,0.0,2.4423225827313477e-09,20.9140643016766,1.059258009631076,-8.916795449797117,0.0,1.0,0.0 -508,11.0,6.168027131276324,7.5,0.0,0.0,1.0187048651491457,-9.720933605914391,1.0,0.0,0.0 -508,12.0,0.0,0.0,1.935579953521081e-09,15.4550234386678,1.039519324584787,-9.72093360576778,0.0,1.0,0.0 -508,13.0,3.414443590527965,1.6,0.0,0.0,1.0054334913650609,-10.25190879197949,1.0,0.0,0.0 -508,14.0,4.515877006827308,2.5,0.0,0.0,0.9995284938722292,-10.289650372657478,1.0,0.0,0.0 -508,15.0,1.9275084785238512,1.8,0.0,0.0,1.0099260557992529,-9.87428921338118,1.0,0.0,0.0 -508,16.0,4.956450373347046,5.8,0.0,0.0,1.006967684254627,-9.936955508446486,1.0,0.0,0.0 -508,17.0,1.7622934660789498,0.9,0.0,0.0,0.982114964680048,-10.912354717804414,1.0,0.0,0.0 -508,18.0,5.231808727421882,3.4,0.0,0.0,0.9741625740622536,-11.18704892669345,1.0,0.0,0.0 -508,19.0,1.211576757929278,0.7,0.0,0.0,1.0094706118183006,-9.93305899881304,1.0,0.0,0.0 -508,20.0,9.637542392619256,11.2,0.0,0.0,1.0010411548968747,-10.044962480146223,1.0,0.0,0.0 -508,21.0,0.0,0.0,0.0,0.0,1.001271168986809,-10.05470047543042,1.0,0.0,0.0 -508,22.0,1.7622934660789498,1.6,0.0,0.0,0.9920178670080244,-10.378161413403628,1.0,0.0,0.0 -508,23.0,4.791235360902144,6.7,0.0,0.0,0.9887151663284616,-10.345767174097904,1.0,0.0,0.0 -508,24.0,0.0,0.0,0.0,0.0,0.980177886104182,-10.230405682504522,1.0,0.0,0.0 -508,25.0,1.9275084785238512,2.3,0.0,0.0,0.9660536942031084,-10.319554859067267,1.0,0.0,0.0 -508,26.0,0.0,0.0,0.0,0.0,0.9819898493397328,-10.079466115908197,1.0,0.0,0.0 -508,27.0,0.0,0.0,0.0,0.0,0.9634778405044324,-8.09114036784704,1.0,0.0,0.0 -508,28.0,1.3217200995592122,0.9,0.0,0.0,0.9680788547263348,-10.726035196295332,1.0,0.0,0.0 -508,29.0,5.837597106386521,1.9,0.0,0.0,0.9604877036533412,-11.21142257293418,1.0,0.0,0.0 -509,0.0,0.0,0.0,162.7862525232875,0.0006121010589055,1.0,0.0,0.0,0.0,1.0 -509,1.0,11.950552566847875,12.7,7.88256466708249e-07,10.580714898472756,0.9801677090371128,-3.7363099231474814,0.0,1.0,0.0 -509,2.0,1.3217200995592122,1.2,0.0,0.0,0.9741159060242806,-4.90009688496057,1.0,0.0,0.0 -509,3.0,4.185446981937505,1.6,0.0,0.0,0.9674809787097276,-6.022234212878806,1.0,0.0,0.0 -509,4.0,51.87751390769908,19.0,-8.247482078669327e-10,24.229588566677197,0.9601105511947224,-8.993534701485396,0.0,1.0,0.0 -509,5.0,0.0,0.0,0.0,0.0,0.9671107603815028,-7.149110089713274,1.0,0.0,0.0 -509,6.0,12.556340945812517,10.9,0.0,0.0,0.9577436293781216,-8.183305896548985,1.0,0.0,0.0 -509,7.0,16.521501244490153,30.0,-4.1628561953043624e-10,30.574767235541863,0.9661069211626144,-7.581522146693941,0.0,1.0,0.0 -509,8.0,0.0,0.0,0.0,0.0,1.0155831381120417,-8.973905680965798,1.0,0.0,0.0 -509,9.0,3.194156907268096,2.0,0.0,0.0,1.006640240804039,-9.921784970060504,1.0,0.0,0.0 -509,10.0,0.0,0.0,5.829081462913747e-10,22.62098334498677,1.0599726290009883,-8.973905680901266,0.0,1.0,0.0 -509,11.0,6.168027131276324,7.5,0.0,0.0,1.0136826657728588,-9.450405368806797,1.0,0.0,0.0 -509,12.0,0.0,0.0,-5.460394425551163e-10,9.956908299580087,1.0272525244854422,-9.45040536884886,0.0,1.0,0.0 -509,13.0,3.414443590527965,1.6,0.0,0.0,1.0026035890021352,-9.923975757751071,1.0,0.0,0.0 -509,14.0,4.515877006827308,2.5,0.0,0.0,0.999269837062134,-9.95168895069762,1.0,0.0,0.0 -509,15.0,1.9275084785238512,1.8,0.0,0.0,1.0044662754770437,-9.760437434030155,1.0,0.0,0.0 -509,16.0,4.956450373347046,5.8,0.0,0.0,1.0015999234959956,-9.96718285128872,1.0,0.0,0.0 -509,17.0,1.7622934660789498,0.9,0.0,0.0,0.992657660127985,-10.29063492131559,1.0,0.0,0.0 -509,18.0,5.231808727421882,3.4,0.0,0.0,0.991050329830104,-10.39324646981052,1.0,0.0,0.0 -509,19.0,1.211576757929278,0.7,0.0,0.0,0.9943281841527276,-10.307427957949375,1.0,0.0,0.0 -509,20.0,9.637542392619256,11.2,0.0,0.0,0.996050815935668,-10.099279689950714,1.0,0.0,0.0 -509,21.0,0.0,0.0,0.0,0.0,0.9964357862321342,-10.09581533898819,1.0,0.0,0.0 -509,22.0,1.7622934660789498,1.6,0.0,0.0,0.9907770107609616,-10.131847927242688,1.0,0.0,0.0 -509,23.0,4.791235360902144,6.7,0.0,0.0,0.986189740136479,-10.22334175461195,1.0,0.0,0.0 -509,24.0,0.0,0.0,0.0,0.0,0.9798186458918506,-9.949377353449297,1.0,0.0,0.0 -509,25.0,1.9275084785238512,2.3,0.0,0.0,0.9656891208400512,-10.038592883450065,1.0,0.0,0.0 -509,26.0,0.0,0.0,0.0,0.0,0.982925930784532,-9.69701688242023,1.0,0.0,0.0 -509,27.0,0.0,0.0,0.0,0.0,0.9650636391319136,-7.506804183938063,1.0,0.0,0.0 -509,28.0,1.3217200995592122,0.9,0.0,0.0,0.969028978193072,-10.342337719245927,1.0,0.0,0.0 -509,29.0,5.837597106386521,1.9,0.0,0.0,0.961445510002474,-10.82676710019808,1.0,0.0,0.0 -510,0.0,0.0,0.0,162.7862525232875,0.0006121010589055,1.0,0.0,0.0,0.0,1.0 -510,1.0,11.950552566847875,12.7,7.88256466708249e-07,10.580714898472756,0.9801677090371128,-3.7363099231474814,0.0,1.0,0.0 -510,2.0,1.3217200995592122,1.2,0.0,0.0,0.9741159060242806,-4.90009688496057,1.0,0.0,0.0 -510,3.0,4.185446981937505,1.6,0.0,0.0,0.9674809787097276,-6.022234212878806,1.0,0.0,0.0 -510,4.0,51.87751390769908,19.0,-8.247482078669327e-10,24.229588566677197,0.9601105511947224,-8.993534701485396,0.0,1.0,0.0 -510,5.0,0.0,0.0,0.0,0.0,0.9671107603815028,-7.149110089713274,1.0,0.0,0.0 -510,6.0,12.556340945812517,10.9,0.0,0.0,0.9577436293781216,-8.183305896548985,1.0,0.0,0.0 -510,7.0,16.521501244490153,30.0,-4.1628561953043624e-10,30.574767235541863,0.9661069211626144,-7.581522146693941,0.0,1.0,0.0 -510,8.0,0.0,0.0,0.0,0.0,1.0155831381120417,-8.973905680965798,1.0,0.0,0.0 -510,9.0,3.194156907268096,2.0,0.0,0.0,1.006640240804039,-9.921784970060504,1.0,0.0,0.0 -510,10.0,0.0,0.0,5.829081462913747e-10,22.62098334498677,1.0599726290009883,-8.973905680901266,0.0,1.0,0.0 -510,11.0,6.168027131276324,7.5,0.0,0.0,1.0136826657728588,-9.450405368806797,1.0,0.0,0.0 -510,12.0,0.0,0.0,-5.460394425551163e-10,9.956908299580087,1.0272525244854422,-9.45040536884886,0.0,1.0,0.0 -510,13.0,3.414443590527965,1.6,0.0,0.0,1.0026035890021352,-9.923975757751071,1.0,0.0,0.0 -510,14.0,4.515877006827308,2.5,0.0,0.0,0.999269837062134,-9.95168895069762,1.0,0.0,0.0 -510,15.0,1.9275084785238512,1.8,0.0,0.0,1.0044662754770437,-9.760437434030155,1.0,0.0,0.0 -510,16.0,4.956450373347046,5.8,0.0,0.0,1.0015999234959956,-9.96718285128872,1.0,0.0,0.0 -510,17.0,1.7622934660789498,0.9,0.0,0.0,0.992657660127985,-10.29063492131559,1.0,0.0,0.0 -510,18.0,5.231808727421882,3.4,0.0,0.0,0.991050329830104,-10.39324646981052,1.0,0.0,0.0 -510,19.0,1.211576757929278,0.7,0.0,0.0,0.9943281841527276,-10.307427957949375,1.0,0.0,0.0 -510,20.0,9.637542392619256,11.2,0.0,0.0,0.996050815935668,-10.099279689950714,1.0,0.0,0.0 -510,21.0,0.0,0.0,0.0,0.0,0.9964357862321342,-10.09581533898819,1.0,0.0,0.0 -510,22.0,1.7622934660789498,1.6,0.0,0.0,0.9907770107609616,-10.131847927242688,1.0,0.0,0.0 -510,23.0,4.791235360902144,6.7,0.0,0.0,0.986189740136479,-10.22334175461195,1.0,0.0,0.0 -510,24.0,0.0,0.0,0.0,0.0,0.9798186458918506,-9.949377353449297,1.0,0.0,0.0 -510,25.0,1.9275084785238512,2.3,0.0,0.0,0.9656891208400512,-10.038592883450065,1.0,0.0,0.0 -510,26.0,0.0,0.0,0.0,0.0,0.982925930784532,-9.69701688242023,1.0,0.0,0.0 -510,27.0,0.0,0.0,0.0,0.0,0.9650636391319136,-7.506804183938063,1.0,0.0,0.0 -510,28.0,1.3217200995592122,0.9,0.0,0.0,0.969028978193072,-10.342337719245927,1.0,0.0,0.0 -510,29.0,5.837597106386521,1.9,0.0,0.0,0.961445510002474,-10.82676710019808,1.0,0.0,0.0 -511,0.0,0.0,0.0,163.14122151614146,0.0016778491307434,1.0,0.0,0.0,0.0,1.0 -511,1.0,11.950552566847875,12.7,1.7036014056793922e-06,9.606125925057825,0.9799501257617312,-3.7376441731080794,0.0,1.0,0.0 -511,2.0,1.3217200995592122,1.2,0.0,0.0,0.9746125852635632,-4.928725278056837,1.0,0.0,0.0 -511,3.0,4.185446981937505,1.6,0.0,0.0,0.9680973880601615,-6.057547310367614,1.0,0.0,0.0 -511,4.0,51.87751390769908,19.0,3.8488008634842096e-10,24.20940604934493,0.9599715228212176,-8.996038190826829,0.0,1.0,0.0 -511,5.0,0.0,0.0,0.0,0.0,0.9671007248361548,-7.152115499300324,1.0,0.0,0.0 -511,6.0,12.556340945812517,10.9,0.0,0.0,0.9576802280799336,-8.186197949802992,1.0,0.0,0.0 -511,7.0,16.521501244490153,30.0,1.441418206874357e-09,29.337788012259068,0.9537582613831118,-10.15002338525761,0.0,1.0,0.0 -511,8.0,0.0,0.0,0.0,0.0,1.0168002951671995,-9.058718267744426,1.0,0.0,0.0 -511,9.0,3.194156907268096,2.0,0.0,0.0,1.009172914566162,-10.046584638038231,1.0,0.0,0.0 -511,10.0,0.0,0.0,1.6810406391538606e-09,22.014595050680573,1.0599987949427478,-9.058718267558548,0.0,1.0,0.0 -511,11.0,6.168027131276324,7.5,0.0,0.0,1.0208294508985143,-9.618142427478231,1.0,0.0,0.0 -511,12.0,0.0,0.0,6.320054304892883e-10,14.69430473160045,1.0405988619336308,-9.61814242743051,0.0,1.0,0.0 -511,13.0,3.414443590527965,1.6,0.0,0.0,1.0090813203151,-10.103635303237803,1.0,0.0,0.0 -511,14.0,4.515877006827308,2.5,0.0,0.0,1.004923411628882,-10.13234416941986,1.0,0.0,0.0 -511,15.0,1.9275084785238512,1.8,0.0,0.0,1.0096749609544002,-9.898788438462196,1.0,0.0,0.0 -511,16.0,4.956450373347046,5.8,0.0,0.0,1.004977284187769,-10.098737808917,1.0,0.0,0.0 -511,17.0,1.7622934660789498,0.9,0.0,0.0,0.9972566210275696,-10.448050777921669,1.0,0.0,0.0 -511,18.0,5.231808727421882,3.4,0.0,0.0,0.995013131850234,-10.537850143006594,1.0,0.0,0.0 -511,19.0,1.211576757929278,0.7,0.0,0.0,0.9979394621500864,-10.446308847890446,1.0,0.0,0.0 -511,20.0,9.637542392619256,11.2,0.0,0.0,0.9984076962419686,-10.261345357770718,1.0,0.0,0.0 -511,21.0,0.0,0.0,0.0,0.0,0.9987238904862764,-10.27008220340053,1.0,0.0,0.0 -511,22.0,1.7622934660789498,1.6,0.0,0.0,0.9944866537378164,-10.375650390833757,1.0,0.0,0.0 -511,23.0,4.791235360902144,6.7,0.0,0.0,0.9872989411175216,-10.55544034826272,1.0,0.0,0.0 -511,24.0,0.0,0.0,0.0,0.0,0.9756392419029596,-10.675692798388503,1.0,0.0,0.0 -511,25.0,1.9275084785238512,2.3,0.0,0.0,0.961447369279262,-10.76568579965556,1.0,0.0,0.0 -511,26.0,0.0,0.0,0.0,0.0,0.9817718337554896,-9.733036812204189,1.0,0.0,0.0 -511,27.0,0.0,0.0,0.0,0.0,0.9627367336022504,-8.036723737128119,1.0,0.0,0.0 -511,28.0,1.3217200995592122,0.9,0.0,0.0,0.9749517219671738,-9.943196216846868,1.0,0.0,0.0 -511,29.0,5.837597106386521,1.9,0.0,0.0,0.9495485657341326,-11.521785933789936,1.0,0.0,0.0 -512,0.0,0.0,0.0,138.00001085702505,0.0004822055538866,1.0,0.0,0.0,0.0,1.0 -512,1.0,11.896502385775625,12.7,25.861795103237903,13.628195185912418,0.9751781709507108,-4.637418263026698,0.0,1.0,0.0 -512,2.0,1.3157421993484562,1.2,0.0,0.0,0.9494071318494072,-9.614428306209016,1.0,0.0,0.0 -512,3.0,4.166516964603445,1.6,0.0,0.0,0.9499180630242056,-9.589636162394148,1.0,0.0,0.0 -512,4.0,51.64288132442691,19.0,7.005384341812854e-10,26.40714912423374,0.9529961864478932,-10.989187354716302,0.0,1.0,0.0 -512,5.0,0.0,0.0,0.0,0.0,0.952925548033526,-10.117498285555984,1.0,0.0,0.0 -512,6.0,12.499550893810335,10.9,0.0,0.0,0.9461965735987152,-10.755670519225616,1.0,0.0,0.0 -512,7.0,16.446777491855702,30.0,6.093502320216718e-10,32.346131445534944,0.9525553235170092,-10.573342316269589,0.0,1.0,0.0 -512,8.0,0.0,0.0,0.0,0.0,1.0025984487604498,-12.09668432563207,1.0,0.0,0.0 -512,9.0,3.1797103150921027,2.0,0.0,0.0,0.9928614679091248,-13.123717123924203,1.0,0.0,0.0 -512,10.0,0.0,0.0,9.597562503090008e-10,23.997271218507517,1.0501300147871686,-12.096684325523434,0.0,1.0,0.0 -512,11.0,6.140130263626129,7.5,0.0,0.0,0.9990267562411196,-12.873298300333236,1.0,0.0,0.0 -512,12.0,0.0,0.0,8.358376778968899e-10,12.04540278572492,1.0156307861019491,-12.873298300267155,0.0,1.0,0.0 -512,13.0,3.3990006816501785,1.6,0.0,0.0,0.98782614893797,-13.327435206392494,1.0,0.0,0.0 -512,14.0,4.495452514440558,2.5,0.0,0.0,0.9846791931292362,-13.325656017431465,1.0,0.0,0.0 -512,15.0,1.9187907073831652,1.8,0.0,0.0,0.9902627873867348,-13.09274463476661,1.0,0.0,0.0 -512,16.0,4.934033247556711,5.8,0.0,0.0,0.9875820187710534,-13.211180475866678,1.0,0.0,0.0 -512,17.0,1.7543229324646084,0.9,0.0,0.0,0.9782481687133128,-13.612175445998655,1.0,0.0,0.0 -512,18.0,5.208146205754306,3.4,0.0,0.0,0.976774566224038,-13.681148382579517,1.0,0.0,0.0 -512,19.0,1.2060970160694184,0.7,0.0,0.0,0.9801765385209936,-13.574497852855954,1.0,0.0,0.0 -512,20.0,9.593953536915826,11.2,0.0,0.0,0.9820586487703964,-13.308684133219362,1.0,0.0,0.0 -512,21.0,0.0,0.0,0.0,0.0,0.982423844999008,-13.306492483444911,1.0,0.0,0.0 -512,22.0,1.7543229324646084,1.6,0.0,0.0,0.976190829191794,-13.445286037145635,1.0,0.0,0.0 -512,23.0,4.769565472638154,6.7,0.0,0.0,0.9716868033980444,-13.45169878453922,1.0,0.0,0.0 -512,24.0,0.0,0.0,0.0,0.0,0.965332308620597,-13.103814943038335,1.0,0.0,0.0 -512,25.0,1.9187907073831652,2.3,0.0,0.0,0.9510079987947831,-13.19369969613466,1.0,0.0,0.0 -512,26.0,0.0,0.0,0.0,0.0,0.9685305291745894,-12.803912989340288,1.0,0.0,0.0 -512,27.0,0.0,0.0,0.0,0.0,0.9509663818480102,-10.494648679615835,1.0,0.0,0.0 -512,28.0,1.3157421993484562,0.9,0.0,0.0,0.9544517705743824,-13.464927354521848,1.0,0.0,0.0 -512,29.0,5.811194713789015,1.9,0.0,0.0,0.9467726473290672,-13.96174026625733,1.0,0.0,0.0 -513,0.0,0.0,0.0,162.0189989040834,0.0005888720269631,1.0,0.0,0.0,0.0,1.0 -513,1.0,11.896502385775625,12.7,7.683162588962352e-07,10.503490268754774,0.9802405718591792,-3.718179783698535,0.0,1.0,0.0 -513,2.0,1.3157421993484562,1.2,0.0,0.0,0.97421426951753,-4.876388549964449,1.0,0.0,0.0 -513,3.0,4.166516964603445,1.6,0.0,0.0,0.9675978587830218,-5.992879436968917,1.0,0.0,0.0 -513,4.0,51.64288132442691,19.0,-7.732515258613747e-10,24.18431447498897,0.9602602338268518,-8.949831044739708,0.0,1.0,0.0 -513,5.0,0.0,0.0,0.0,0.0,0.9672396340102866,-7.114508241363871,1.0,0.0,0.0 -513,6.0,12.499550893810335,10.9,0.0,0.0,0.9578914872887576,-8.14322126476558,1.0,0.0,0.0 -513,7.0,16.446777491855702,30.0,-4.6264470194622846e-10,30.55194968629452,0.9662370667586128,-7.544777261679407,0.0,1.0,0.0 -513,8.0,0.0,0.0,0.0,0.0,1.0156615454226383,-8.930782292433896,1.0,0.0,0.0 -513,9.0,3.1797103150921027,2.0,0.0,0.0,1.006730131183028,-9.874277676420151,1.0,0.0,0.0 -513,10.0,0.0,0.0,2.9097036259126857e-10,22.57908459924268,1.0599689707007358,-8.93078229240169,0.0,1.0,0.0 -513,11.0,6.140130263626129,7.5,0.0,0.0,1.0137264043920893,-9.40487889063175,1.0,0.0,0.0 -513,12.0,0.0,0.0,-5.967310156930455e-10,9.900867821234488,1.027220311007058,-9.404878890677717,0.0,1.0,0.0 -513,13.0,3.3990006816501785,1.6,0.0,0.0,1.0026752358459772,-9.87564502278999,1.0,0.0,0.0 -513,14.0,4.495452514440558,2.5,0.0,0.0,0.9993529110153196,-9.90301566952992,1.0,0.0,0.0 -513,15.0,1.9187907073831652,1.8,0.0,0.0,1.0045396399368658,-9.713125753503665,1.0,0.0,0.0 -513,16.0,4.934033247556711,5.8,0.0,0.0,1.001689594480489,-9.918949998428976,1.0,0.0,0.0 -513,17.0,1.7543229324646084,0.9,0.0,0.0,0.992762712656608,-10.24010458746165,1.0,0.0,0.0 -513,18.0,5.208146205754306,3.4,0.0,0.0,0.9911629481138856,-10.342224843151769,1.0,0.0,0.0 -513,19.0,1.2060970160694184,0.7,0.0,0.0,0.9944361999097736,-10.257114879140174,1.0,0.0,0.0 -513,20.0,9.593953536915826,11.2,0.0,0.0,0.996156585640877,-10.050098705559586,1.0,0.0,0.0 -513,21.0,0.0,0.0,0.0,0.0,0.9965413082987772,-10.046707627747557,1.0,0.0,0.0 -513,22.0,1.7543229324646084,1.6,0.0,0.0,0.9908835636071764,-10.0818714944118,1.0,0.0,0.0 -513,23.0,4.769565472638154,6.7,0.0,0.0,0.986316003472388,-10.17288264277984,1.0,0.0,0.0 -513,24.0,0.0,0.0,0.0,0.0,0.9799577845998056,-9.90010994569044,1.0,0.0,0.0 -513,25.0,1.9187907073831652,2.3,0.0,0.0,0.9658536821652326,-9.987292244814004,1.0,0.0,0.0 -513,26.0,0.0,0.0,0.0,0.0,0.9830621597655764,-9.649584874631714,1.0,0.0,0.0 -513,27.0,0.0,0.0,0.0,0.0,0.9651996658950394,-7.470378895085704,1.0,0.0,0.0 -513,28.0,1.3157421993484562,0.9,0.0,0.0,0.9692040154429226,-10.290929157093514,1.0,0.0,0.0 -513,29.0,5.811194713789015,1.9,0.0,0.0,0.9616455507983986,-10.77262902312501,1.0,0.0,0.0 -514,0.0,0.0,0.0,162.0189989040834,0.0005888720269631,1.0,0.0,0.0,0.0,1.0 -514,1.0,11.896502385775625,12.7,7.683162588962352e-07,10.503490268754774,0.9802405718591792,-3.718179783698535,0.0,1.0,0.0 -514,2.0,1.3157421993484562,1.2,0.0,0.0,0.97421426951753,-4.876388549964449,1.0,0.0,0.0 -514,3.0,4.166516964603445,1.6,0.0,0.0,0.9675978587830218,-5.992879436968917,1.0,0.0,0.0 -514,4.0,51.64288132442691,19.0,-7.732515258613747e-10,24.18431447498897,0.9602602338268518,-8.949831044739708,0.0,1.0,0.0 -514,5.0,0.0,0.0,0.0,0.0,0.9672396340102866,-7.114508241363871,1.0,0.0,0.0 -514,6.0,12.499550893810335,10.9,0.0,0.0,0.9578914872887576,-8.14322126476558,1.0,0.0,0.0 -514,7.0,16.446777491855702,30.0,-4.6264470194622846e-10,30.55194968629452,0.9662370667586128,-7.544777261679407,0.0,1.0,0.0 -514,8.0,0.0,0.0,0.0,0.0,1.0156615454226383,-8.930782292433896,1.0,0.0,0.0 -514,9.0,3.1797103150921027,2.0,0.0,0.0,1.006730131183028,-9.874277676420151,1.0,0.0,0.0 -514,10.0,0.0,0.0,2.9097036259126857e-10,22.57908459924268,1.0599689707007358,-8.93078229240169,0.0,1.0,0.0 -514,11.0,6.140130263626129,7.5,0.0,0.0,1.0137264043920893,-9.40487889063175,1.0,0.0,0.0 -514,12.0,0.0,0.0,-5.967310156930455e-10,9.900867821234488,1.027220311007058,-9.404878890677717,0.0,1.0,0.0 -514,13.0,3.3990006816501785,1.6,0.0,0.0,1.0026752358459772,-9.87564502278999,1.0,0.0,0.0 -514,14.0,4.495452514440558,2.5,0.0,0.0,0.9993529110153196,-9.90301566952992,1.0,0.0,0.0 -514,15.0,1.9187907073831652,1.8,0.0,0.0,1.0045396399368658,-9.713125753503665,1.0,0.0,0.0 -514,16.0,4.934033247556711,5.8,0.0,0.0,1.001689594480489,-9.918949998428976,1.0,0.0,0.0 -514,17.0,1.7543229324646084,0.9,0.0,0.0,0.992762712656608,-10.24010458746165,1.0,0.0,0.0 -514,18.0,5.208146205754306,3.4,0.0,0.0,0.9911629481138856,-10.342224843151769,1.0,0.0,0.0 -514,19.0,1.2060970160694184,0.7,0.0,0.0,0.9944361999097736,-10.257114879140174,1.0,0.0,0.0 -514,20.0,9.593953536915826,11.2,0.0,0.0,0.996156585640877,-10.050098705559586,1.0,0.0,0.0 -514,21.0,0.0,0.0,0.0,0.0,0.9965413082987772,-10.046707627747557,1.0,0.0,0.0 -514,22.0,1.7543229324646084,1.6,0.0,0.0,0.9908835636071764,-10.0818714944118,1.0,0.0,0.0 -514,23.0,4.769565472638154,6.7,0.0,0.0,0.986316003472388,-10.17288264277984,1.0,0.0,0.0 -514,24.0,0.0,0.0,0.0,0.0,0.9799577845998056,-9.90010994569044,1.0,0.0,0.0 -514,25.0,1.9187907073831652,2.3,0.0,0.0,0.9658536821652326,-9.987292244814004,1.0,0.0,0.0 -514,26.0,0.0,0.0,0.0,0.0,0.9830621597655764,-9.649584874631714,1.0,0.0,0.0 -514,27.0,0.0,0.0,0.0,0.0,0.9651996658950394,-7.470378895085704,1.0,0.0,0.0 -514,28.0,1.3157421993484562,0.9,0.0,0.0,0.9692040154429226,-10.290929157093514,1.0,0.0,0.0 -514,29.0,5.811194713789015,1.9,0.0,0.0,0.9616455507983986,-10.77262902312501,1.0,0.0,0.0 -515,0.0,0.0,0.0,162.07599369990643,0.0005672660552846,1.0,0.0,0.0,0.0,1.0 -515,1.0,11.896502385775625,12.7,8.158985823904289e-07,10.132866638726938,0.9802008105944164,-3.71184440474683,0.0,1.0,0.0 -515,2.0,1.3157421993484562,1.2,0.0,0.0,0.9743318270499364,-4.899492670241586,1.0,0.0,0.0 -515,3.0,4.166516964603445,1.6,0.0,0.0,0.9677461941509072,-6.021518085897982,1.0,0.0,0.0 -515,4.0,51.64288132442691,19.0,-8.253312488678321e-10,24.21219363581247,0.9603341423329236,-8.928399010486824,0.0,1.0,0.0 -515,5.0,0.0,0.0,0.0,0.0,0.9673832457008978,-7.077306036760976,1.0,0.0,0.0 -515,6.0,12.499550893810335,10.9,0.0,0.0,0.9580096764800976,-8.112402861751201,1.0,0.0,0.0 -515,7.0,16.446777491855702,30.0,-5.201612417952287e-10,30.791248915140777,0.9664799029938312,-7.514515450858893,0.0,1.0,0.0 -515,8.0,0.0,0.0,0.0,0.0,1.0160970961484477,-9.476669500522492,1.0,0.0,0.0 -515,9.0,3.1797103150921027,2.0,0.0,0.0,1.007998919202593,-10.721563177026807,1.0,0.0,0.0 -515,10.0,0.0,0.0,3.3716198331185166e-10,22.20368579777912,1.059679759718115,-9.476669500485176,0.0,1.0,0.0 -515,11.0,6.140130263626129,7.5,0.0,0.0,1.016809208738804,-9.821697764352663,1.0,0.0,0.0 -515,12.0,0.0,0.0,-8.319911653659455e-10,10.865970944317322,1.0315562086544814,-9.821697764416289,0.0,1.0,0.0 -515,13.0,3.3990006816501785,1.6,0.0,0.0,1.0056809493712606,-10.332226399345442,1.0,0.0,0.0 -515,14.0,4.495452514440558,2.5,0.0,0.0,1.0019685802211655,-10.3990620575853,1.0,0.0,0.0 -515,15.0,1.9187907073831652,1.8,0.0,0.0,1.0065512466254176,-10.309899602920572,1.0,0.0,0.0 -515,16.0,4.934033247556711,5.8,0.0,0.0,1.00328716636962,-10.688755315686372,1.0,0.0,0.0 -515,17.0,1.7543229324646084,0.9,0.0,0.0,0.9948909279765036,-10.857905264778156,1.0,0.0,0.0 -515,18.0,5.208146205754306,3.4,0.0,0.0,0.993005886816265,-11.033269374008494,1.0,0.0,0.0 -515,19.0,1.2060970160694184,0.7,0.0,0.0,0.996118953066378,-10.9872226830436,1.0,0.0,0.0 -515,20.0,9.593953536915826,11.2,0.0,0.0,0.9974739647142724,-10.855275481589793,1.0,0.0,0.0 -515,21.0,0.0,0.0,0.0,0.0,0.9978737193681144,-10.838511930409595,1.0,0.0,0.0 -515,22.0,1.7543229324646084,1.6,0.0,0.0,0.993190393907537,-10.627206806996396,1.0,0.0,0.0 -515,23.0,4.769565472638154,6.7,0.0,0.0,0.9882078803746598,-10.785783640993744,1.0,0.0,0.0 -515,24.0,0.0,0.0,0.0,0.0,0.9818845322088788,-10.27095066758596,1.0,0.0,0.0 -515,25.0,1.9187907073831652,2.3,0.0,0.0,0.9678089285357075,-10.357786101967784,1.0,0.0,0.0 -515,26.0,0.0,0.0,0.0,0.0,0.9849310128874252,-9.869946335680831,1.0,0.0,0.0 -515,27.0,0.0,0.0,0.0,0.0,0.9654071468399936,-7.465827140263874,1.0,0.0,0.0 -515,28.0,1.3157421993484562,0.9,0.0,0.0,0.9781467460434856,-10.077270905559342,1.0,0.0,0.0 -515,29.0,5.811194713789015,1.9,0.0,0.0,0.952918804912195,-11.636929262897809,1.0,0.0,0.0 -516,0.0,0.0,0.0,162.0625844175755,0.0006665948089512,1.0,0.0,0.0,0.0,1.0 -516,1.0,11.896502385775625,12.7,8.678261333278547e-07,10.403914119312752,0.9802258553472748,-3.718901371799163,0.0,1.0,0.0 -516,2.0,1.3157421993484562,1.2,0.0,0.0,0.9742394633053238,-4.8784752292238025,1.0,0.0,0.0 -516,3.0,4.166516964603445,1.6,0.0,0.0,0.967629215935077,-5.995459099412598,1.0,0.0,0.0 -516,4.0,51.64288132442691,19.0,-8.100147415460965e-10,24.204424994423817,0.960293779294689,-8.951779159143022,0.0,1.0,0.0 -516,5.0,0.0,0.0,0.0,0.0,0.9672786505852063,-7.117428839466951,1.0,0.0,0.0 -516,6.0,12.499550893810335,10.9,0.0,0.0,0.9579284917717368,-8.145728736284898,1.0,0.0,0.0 -516,7.0,16.446777491855702,30.0,-4.13528631511345e-10,30.66759276699571,0.9663144243067529,-7.548409881497487,0.0,1.0,0.0 -516,8.0,0.0,0.0,0.0,0.0,1.015694404386381,-8.934196028254526,1.0,0.0,0.0 -516,9.0,3.1797103150921027,2.0,0.0,0.0,1.0067733995232349,-9.877945026002932,1.0,0.0,0.0 -516,10.0,0.0,0.0,5.201969289961033e-10,22.565833037168083,1.05997555094261,-8.934196028196943,0.0,1.0,0.0 -516,11.0,6.140130263626129,7.5,0.0,0.0,1.0138357118105548,-9.409015392941814,1.0,0.0,0.0 -516,12.0,0.0,0.0,-5.44299538347414e-10,9.965139423341212,1.0274146453557802,-9.409015392983733,0.0,1.0,0.0 -516,13.0,3.3990006816501785,1.6,0.0,0.0,1.0027729097004825,-9.879834926854064,1.0,0.0,0.0 -516,14.0,4.495452514440558,2.5,0.0,0.0,0.9994375265673692,-9.907059810632386,1.0,0.0,0.0 -516,15.0,1.9187907073831652,1.8,0.0,0.0,1.0046211491116503,-9.716901082646825,1.0,0.0,0.0 -516,16.0,4.934033247556711,5.8,0.0,0.0,1.0017449977472108,-9.922685902920223,1.0,0.0,0.0 -516,17.0,1.7543229324646084,0.9,0.0,0.0,0.9928334212202826,-10.243961263102578,1.0,0.0,0.0 -516,18.0,5.208146205754306,3.4,0.0,0.0,0.9912252494307848,-10.345985887431716,1.0,0.0,0.0 -516,19.0,1.2060970160694184,0.7,0.0,0.0,0.994493810881878,-10.2608419323823,1.0,0.0,0.0 -516,20.0,9.593953536915826,11.2,0.0,0.0,0.9961927822997332,-10.053976062123793,1.0,0.0,0.0 -516,21.0,0.0,0.0,0.0,0.0,0.9965750937965095,-10.050654257208086,1.0,0.0,0.0 -516,22.0,1.7543229324646084,1.6,0.0,0.0,0.990932267775294,-10.08616242276262,1.0,0.0,0.0 -516,23.0,4.769565472638154,6.7,0.0,0.0,0.9863165546866004,-10.177548765937448,1.0,0.0,0.0 -516,24.0,0.0,0.0,0.0,0.0,0.9798390071311994,-9.906481978015172,1.0,0.0,0.0 -516,25.0,1.9187907073831652,2.3,0.0,0.0,0.965733144013506,-9.993685728696684,1.0,0.0,0.0 -516,26.0,0.0,0.0,0.0,0.0,0.9828707291137871,-9.65712194856615,1.0,0.0,0.0 -516,27.0,0.0,0.0,0.0,0.0,0.965219332468647,-7.473485366637053,1.0,0.0,0.0 -516,28.0,1.3157421993484562,0.9,0.0,0.0,0.9760720143718054,-9.865322725378986,1.0,0.0,0.0 -516,29.0,5.811194713789015,1.9,0.0,0.0,0.9507846241355452,-11.431785834972477,1.0,0.0,0.0 -517,0.0,0.0,0.0,139.28669513670522,-2.6586426393748752e-06,1.0,0.0,0.0,0.0,1.0 -517,1.0,11.896502385775625,12.7,27.058045941182485,6.954911117743819,0.9734881001074231,-4.611825731706529,0.0,1.0,0.0 -517,2.0,1.3157421993484562,1.2,0.0,0.0,1.0007944293225075,-0.1462604583594223,1.0,0.0,0.0 -517,3.0,4.166516964603445,1.6,0.0,0.0,0.9426299860566788,-13.30979305481362,1.0,0.0,0.0 -517,4.0,51.64288132442691,19.0,-5.139745604735559e-12,33.60880151731442,0.955227454199639,-13.319329042651058,0.0,1.0,0.0 -517,5.0,0.0,0.0,0.0,0.0,0.9451500147051322,-14.665639161053088,1.0,0.0,0.0 -517,6.0,12.499550893810335,10.9,0.0,0.0,0.9418741091500432,-14.38740233688164,1.0,0.0,0.0 -517,7.0,16.446777491855702,30.0,-5.215548884476775e-12,34.86466877438643,0.9457594590340858,-15.142722641030526,0.0,1.0,0.0 -517,8.0,0.0,0.0,0.0,0.0,0.9971000663988164,-16.50758534987501,1.0,0.0,0.0 -517,9.0,3.1797103150921027,2.0,0.0,0.0,0.9884646558779668,-17.45983806312264,1.0,0.0,0.0 -517,10.0,0.0,0.0,-1.3295944630765107e-11,23.999615934674555,1.0448753362444478,-16.507585349876532,0.0,1.0,0.0 -517,11.0,6.140130263626129,7.5,0.0,0.0,1.0016765622763917,-16.996756850901953,1.0,0.0,0.0 -517,12.0,0.0,0.0,-1.0896473433996395e-11,18.70195296367212,1.0271668078233864,-16.996756850902806,0.0,1.0,0.0 -517,13.0,3.3990006816501785,1.6,0.0,0.0,0.9896467984861748,-17.485586762569383,1.0,0.0,0.0 -517,14.0,4.495452514440558,2.5,0.0,0.0,0.9854308780830302,-17.500594971827546,1.0,0.0,0.0 -517,15.0,1.9187907073831652,1.8,0.0,0.0,0.9897215530056328,-17.292161811964,1.0,0.0,0.0 -517,16.0,4.934033247556711,5.8,0.0,0.0,0.9844231100534868,-17.510040043540094,1.0,0.0,0.0 -517,17.0,1.7543229324646084,0.9,0.0,0.0,0.9771601422722368,-17.843867358775906,1.0,0.0,0.0 -517,18.0,5.208146205754306,3.4,0.0,0.0,0.9746022111177248,-17.94680928007289,1.0,0.0,0.0 -517,19.0,1.2060970160694184,0.7,0.0,0.0,0.977440201416708,-17.85726685220047,1.0,0.0,0.0 -517,20.0,9.593953536915826,11.2,0.0,0.0,0.9777728122534904,-17.64286820688154,1.0,0.0,0.0 -517,21.0,0.0,0.0,0.0,0.0,0.978190391067485,-17.63957238299391,1.0,0.0,0.0 -517,22.0,1.7543229324646084,1.6,0.0,0.0,0.9750781508492636,-17.68319604187127,1.0,0.0,0.0 -517,23.0,4.769565472638154,6.7,0.0,0.0,0.9681082568160456,-17.775768554519512,1.0,0.0,0.0 -517,24.0,0.0,0.0,0.0,0.0,0.9598410249757864,-17.504000275198603,1.0,0.0,0.0 -517,25.0,1.9187907073831652,2.3,0.0,0.0,0.9454322222807782,-17.594932402750906,1.0,0.0,0.0 -517,26.0,0.0,0.0,0.0,0.0,0.9619171836669868,-17.25251064489311,1.0,0.0,0.0 -517,27.0,0.0,0.0,0.0,0.0,0.9436003344906234,-15.038110068706004,1.0,0.0,0.0 -517,28.0,1.3157421993484562,0.9,0.0,0.0,0.947735610768994,-17.922779426058437,1.0,0.0,0.0 -517,29.0,5.811194713789015,1.9,0.0,0.0,0.9400002500320984,-18.42671001903706,1.0,0.0,0.0 -518,0.0,0.0,0.0,138.00001006475748,0.00020808041441,1.0,0.0,0.0,0.0,1.0 -518,1.0,11.896502385775625,12.7,28.44357089517413,10.902796043507266,0.975178332426737,-4.637420569106644,0.0,1.0,0.0 -518,2.0,1.3157421993484562,1.2,0.0,0.0,0.942118586001642,-13.426714530367272,1.0,0.0,0.0 -518,3.0,4.166516964603445,1.6,0.0,0.0,0.9426358003024532,-13.401586886198356,1.0,0.0,0.0 -518,4.0,51.64288132442691,19.0,-1.1468967897410772e-09,33.60263457047593,0.9561180604390505,-13.364139938958017,0.0,1.0,0.0 -518,5.0,0.0,0.0,0.0,0.0,0.9452297539376716,-14.748293281297594,1.0,0.0,0.0 -518,6.0,12.499550893810335,10.9,0.0,0.0,0.9422754696681892,-14.453253193162157,1.0,0.0,0.0 -518,7.0,16.446777491855702,30.0,-1.384775065300812e-09,34.780973152321344,0.9458056498735912,-15.224790338801585,0.0,1.0,0.0 -518,8.0,0.0,0.0,0.0,0.0,0.9970709918243345,-16.592696225159354,1.0,0.0,0.0 -518,9.0,3.1797103150921027,2.0,0.0,0.0,0.9883772865055797,-17.54638347093488,1.0,0.0,0.0 -518,10.0,0.0,0.0,-2.174045806028548e-09,23.999869037096005,1.0448480147890002,-16.592696225408055,0.0,1.0,0.0 -518,11.0,6.140130263626129,7.5,0.0,0.0,1.0013478847695272,-17.083205872796416,1.0,0.0,0.0 -518,12.0,0.0,0.0,-1.8566999060388891e-09,18.46327145129776,1.0265284627750693,-17.083205872941313,0.0,1.0,0.0 -518,13.0,3.3990006816501785,1.6,0.0,0.0,0.9893464547312324,-17.571971273496775,1.0,0.0,0.0 -518,14.0,4.495452514440558,2.5,0.0,0.0,0.9851628732702268,-17.58735633496712,1.0,0.0,0.0 -518,15.0,1.9187907073831652,1.8,0.0,0.0,0.9894959060566408,-17.37922756365854,1.0,0.0,0.0 -518,16.0,4.934033247556711,5.8,0.0,0.0,0.9842918178887275,-17.59660756844144,1.0,0.0,0.0 -518,17.0,1.7543229324646084,0.9,0.0,0.0,0.9769539404700504,-17.930728552625407,1.0,0.0,0.0 -518,18.0,5.208146205754306,3.4,0.0,0.0,0.9744331006850112,-18.03367678612384,1.0,0.0,0.0 -518,19.0,1.2060970160694184,0.7,0.0,0.0,0.9772913832648884,-17.94409267278668,1.0,0.0,0.0 -518,20.0,9.593953536915826,11.2,0.0,0.0,0.9776791137136024,-17.729406271135378,1.0,0.0,0.0 -518,21.0,0.0,0.0,0.0,0.0,0.9780950485199632,-17.726094433300375,1.0,0.0,0.0 -518,22.0,1.7543229324646084,1.6,0.0,0.0,0.9748737020132902,-17.769767285037197,1.0,0.0,0.0 -518,23.0,4.769565472638154,6.7,0.0,0.0,0.9679899248815924,-17.861967420897262,1.0,0.0,0.0 -518,24.0,0.0,0.0,0.0,0.0,0.9597958511485162,-17.5896569798221,1.0,0.0,0.0 -518,25.0,1.9187907073831652,2.3,0.0,0.0,0.9453863491790188,-17.680597799837386,1.0,0.0,0.0 -518,26.0,0.0,0.0,0.0,0.0,0.9619176227435478,-17.337743411446603,1.0,0.0,0.0 -518,27.0,0.0,0.0,0.0,0.0,0.9436630033472472,-15.120792598343954,1.0,0.0,0.0 -518,28.0,1.3157421993484562,0.9,0.0,0.0,0.9477360567241876,-18.008011571741022,1.0,0.0,0.0 -518,29.0,5.811194713789015,1.9,0.0,0.0,0.940000699750041,-18.51194168702014,1.0,0.0,0.0 -519,0.0,0.0,0.0,162.6525823719885,0.0021278717158068,1.0,0.0,0.0,0.0,1.0 -519,1.0,11.896502385775625,12.7,2.851542669581975e-06,7.867485833043361,0.9797533490875404,-3.7224016561370576,0.0,1.0,0.0 -519,2.0,1.3157421993484562,1.2,0.0,0.0,0.9753728801484433,-4.921012508916465,1.0,0.0,0.0 -519,3.0,4.166516964603445,1.6,0.0,0.0,0.969032322363411,-6.047735836193884,1.0,0.0,0.0 -519,4.0,51.64288132442691,19.0,1.4372987841339614e-09,24.321517332558727,0.96036775244508,-8.970718474584478,0.0,1.0,0.0 -519,5.0,0.0,0.0,0.0,0.0,0.9676562756990544,-7.150028407437786,1.0,0.0,0.0 -519,6.0,12.499550893810335,10.9,0.0,0.0,0.9581826899693658,-8.172768812169927,1.0,0.0,0.0 -519,7.0,16.446777491855702,30.0,2.463795927662388e-09,30.15677465616733,0.9561927400908892,-10.221444853400344,0.0,1.0,0.0 -519,8.0,0.0,0.0,0.0,0.0,1.0164296944058666,-9.004211089125041,1.0,0.0,0.0 -519,9.0,3.1797103150921027,2.0,0.0,0.0,1.008154351494747,-9.966447336821837,1.0,0.0,0.0 -519,10.0,0.0,0.0,3.357604206980637e-09,22.135449579983195,1.059870596782203,-9.004211088753607,0.0,1.0,0.0 -519,11.0,6.140130263626129,7.5,0.0,0.0,1.0258823820538348,-9.47369428995282,1.0,0.0,0.0 -519,12.0,0.0,0.0,1.3882488237910167e-09,15.680986259732158,1.0468532120713376,-9.473694289849131,0.0,1.0,0.0 -519,13.0,3.3990006816501785,1.6,0.0,0.0,0.9869373466539486,-10.562532599200296,1.0,0.0,0.0 -519,14.0,4.495452514440558,2.5,0.0,0.0,0.9977914910446564,-10.373333766938543,1.0,0.0,0.0 -519,15.0,1.9187907073831652,1.8,0.0,0.0,0.9949964527726932,-10.313867002280857,1.0,0.0,0.0 -519,16.0,4.934033247556711,5.8,0.0,0.0,0.9994895735566132,-10.155624092761231,1.0,0.0,0.0 -519,17.0,1.7543229324646084,0.9,0.0,0.0,0.977337042928768,-11.106837999405972,1.0,0.0,0.0 -519,18.0,5.208146205754306,3.4,0.0,0.0,0.967606680549384,-11.450205469748228,1.0,0.0,0.0 -519,19.0,1.2060970160694184,0.7,0.0,0.0,0.9666898879479198,-11.485864417524644,1.0,0.0,0.0 -519,20.0,9.593953536915826,11.2,0.0,0.0,0.9963788323990188,-10.1540070303454,1.0,0.0,0.0 -519,21.0,0.0,0.0,0.0,0.0,0.9991278215911504,-10.220754260325014,1.0,0.0,0.0 -519,22.0,1.7543229324646084,1.6,0.0,0.0,0.9902987251548482,-10.478990754696818,1.0,0.0,0.0 -519,23.0,4.769565472638154,6.7,0.0,0.0,0.9870233278466038,-10.470430014782316,1.0,0.0,0.0 -519,24.0,0.0,0.0,0.0,0.0,0.9792557275467202,-10.311514693183195,1.0,0.0,0.0 -519,25.0,1.9187907073831652,2.3,0.0,0.0,0.9651412117848256,-10.398823902076517,1.0,0.0,0.0 -519,26.0,0.0,0.0,0.0,0.0,0.9815271804380498,-10.13339612416062,1.0,0.0,0.0 -519,27.0,0.0,0.0,0.0,0.0,0.9633773379474798,-8.091418431764106,1.0,0.0,0.0 -519,28.0,1.3157421993484562,0.9,0.0,0.0,0.9676460691009976,-10.776776174176645,1.0,0.0,0.0 -519,29.0,5.811194713789015,1.9,0.0,0.0,0.9600750441488476,-11.260039200843188,1.0,0.0,0.0 -520,0.0,0.0,0.0,162.0189989040834,0.0005888720269631,1.0,0.0,0.0,0.0,1.0 -520,1.0,11.896502385775625,12.7,7.683162588962352e-07,10.503490268754774,0.9802405718591792,-3.718179783698535,0.0,1.0,0.0 -520,2.0,1.3157421993484562,1.2,0.0,0.0,0.97421426951753,-4.876388549964449,1.0,0.0,0.0 -520,3.0,4.166516964603445,1.6,0.0,0.0,0.9675978587830218,-5.992879436968917,1.0,0.0,0.0 -520,4.0,51.64288132442691,19.0,-7.732515258613747e-10,24.18431447498897,0.9602602338268518,-8.949831044739708,0.0,1.0,0.0 -520,5.0,0.0,0.0,0.0,0.0,0.9672396340102866,-7.114508241363871,1.0,0.0,0.0 -520,6.0,12.499550893810335,10.9,0.0,0.0,0.9578914872887576,-8.14322126476558,1.0,0.0,0.0 -520,7.0,16.446777491855702,30.0,-4.6264470194622846e-10,30.55194968629452,0.9662370667586128,-7.544777261679407,0.0,1.0,0.0 -520,8.0,0.0,0.0,0.0,0.0,1.0156615454226383,-8.930782292433896,1.0,0.0,0.0 -520,9.0,3.1797103150921027,2.0,0.0,0.0,1.006730131183028,-9.874277676420151,1.0,0.0,0.0 -520,10.0,0.0,0.0,2.9097036259126857e-10,22.57908459924268,1.0599689707007358,-8.93078229240169,0.0,1.0,0.0 -520,11.0,6.140130263626129,7.5,0.0,0.0,1.0137264043920893,-9.40487889063175,1.0,0.0,0.0 -520,12.0,0.0,0.0,-5.967310156930455e-10,9.900867821234488,1.027220311007058,-9.404878890677717,0.0,1.0,0.0 -520,13.0,3.3990006816501785,1.6,0.0,0.0,1.0026752358459772,-9.87564502278999,1.0,0.0,0.0 -520,14.0,4.495452514440558,2.5,0.0,0.0,0.9993529110153196,-9.90301566952992,1.0,0.0,0.0 -520,15.0,1.9187907073831652,1.8,0.0,0.0,1.0045396399368658,-9.713125753503665,1.0,0.0,0.0 -520,16.0,4.934033247556711,5.8,0.0,0.0,1.001689594480489,-9.918949998428976,1.0,0.0,0.0 -520,17.0,1.7543229324646084,0.9,0.0,0.0,0.992762712656608,-10.24010458746165,1.0,0.0,0.0 -520,18.0,5.208146205754306,3.4,0.0,0.0,0.9911629481138856,-10.342224843151769,1.0,0.0,0.0 -520,19.0,1.2060970160694184,0.7,0.0,0.0,0.9944361999097736,-10.257114879140174,1.0,0.0,0.0 -520,20.0,9.593953536915826,11.2,0.0,0.0,0.996156585640877,-10.050098705559586,1.0,0.0,0.0 -520,21.0,0.0,0.0,0.0,0.0,0.9965413082987772,-10.046707627747557,1.0,0.0,0.0 -520,22.0,1.7543229324646084,1.6,0.0,0.0,0.9908835636071764,-10.0818714944118,1.0,0.0,0.0 -520,23.0,4.769565472638154,6.7,0.0,0.0,0.986316003472388,-10.17288264277984,1.0,0.0,0.0 -520,24.0,0.0,0.0,0.0,0.0,0.9799577845998056,-9.90010994569044,1.0,0.0,0.0 -520,25.0,1.9187907073831652,2.3,0.0,0.0,0.9658536821652326,-9.987292244814004,1.0,0.0,0.0 -520,26.0,0.0,0.0,0.0,0.0,0.9830621597655764,-9.649584874631714,1.0,0.0,0.0 -520,27.0,0.0,0.0,0.0,0.0,0.9651996658950394,-7.470378895085704,1.0,0.0,0.0 -520,28.0,1.3157421993484562,0.9,0.0,0.0,0.9692040154429226,-10.290929157093514,1.0,0.0,0.0 -520,29.0,5.811194713789015,1.9,0.0,0.0,0.9616455507983986,-10.77262902312501,1.0,0.0,0.0 -521,0.0,0.0,0.0,162.04262667289706,0.3316979598622538,1.0,0.0,0.0,0.0,1.0 -521,1.0,11.896502385775625,12.7,0.0,0.0,0.9791567305370694,-3.697548558851629,0.0,1.0,0.0 -521,2.0,1.3157421993484562,1.2,0.0,0.0,0.9767781636875934,-4.91743460277107,1.0,0.0,0.0 -521,3.0,4.166516964603445,1.6,0.0,0.0,0.97076345488878,-6.042609721948868,1.0,0.0,0.0 -521,4.0,51.64288132442691,19.0,-2.173764164203451e-10,28.589718598660312,0.9663305533005436,-9.013466911330474,0.0,1.0,0.0 -521,5.0,0.0,0.0,0.0,0.0,0.9713214608492547,-7.165907489184362,1.0,0.0,0.0 -521,6.0,12.499550893810335,10.9,0.0,0.0,0.9628332857720728,-8.196102594830798,1.0,0.0,0.0 -521,7.0,16.446777491855702,30.0,-3.266763214214431e-10,34.46639032767179,0.9718005186272144,-7.616896307078997,0.0,1.0,0.0 -521,8.0,0.0,0.0,0.0,0.0,1.019141366308109,-8.951032110828208,1.0,0.0,0.0 -521,9.0,3.1797103150921027,2.0,0.0,0.0,1.011654980735294,-9.87773019655736,1.0,0.0,0.0 -521,10.0,0.0,0.0,-2.828197245365694e-10,20.822076029909425,1.0599997878281275,-8.951032110859412,0.0,1.0,0.0 -521,11.0,6.140130263626129,7.5,0.0,0.0,1.0216522324853567,-9.454725489181728,1.0,0.0,0.0 -521,12.0,0.0,0.0,-3.6991848410478014e-10,13.008572818474647,1.039177630843936,-9.454725489209675,0.0,1.0,0.0 -521,13.0,3.3990006816501785,1.6,0.0,0.0,1.010300608787704,-9.91774057432684,1.0,0.0,0.0 -521,14.0,4.495452514440558,2.5,0.0,0.0,1.00663399008097,-9.935467261000529,1.0,0.0,0.0 -521,15.0,1.9187907073831652,1.8,0.0,0.0,1.0112356436453085,-9.73523039261656,1.0,0.0,0.0 -521,16.0,4.934033247556711,5.8,0.0,0.0,1.0071843896064705,-9.92927279427189,1.0,0.0,0.0 -521,17.0,1.7543229324646084,0.9,0.0,0.0,0.99927465977173,-10.257568870691667,1.0,0.0,0.0 -521,18.0,5.208146205754306,3.4,0.0,0.0,0.9972038117543354,-10.352133716067422,1.0,0.0,0.0 -521,19.0,1.2060970160694184,0.7,0.0,0.0,1.000203868006014,-10.26465717789658,1.0,0.0,0.0 -521,20.0,9.593953536915826,11.2,0.0,0.0,1.00126341918601,-10.053661221443951,1.0,0.0,0.0 -521,21.0,0.0,0.0,0.0,0.0,1.001686730401973,-10.050953294785025,1.0,0.0,0.0 -521,22.0,1.7543229324646084,1.6,0.0,0.0,0.9975156800656452,-10.105858662291684,1.0,0.0,0.0 -521,23.0,4.769565472638154,6.7,0.0,0.0,0.992036677792083,-10.187908346252955,1.0,0.0,0.0 -521,24.0,0.0,0.0,0.0,0.0,0.9853228307309824,-9.917590073441971,1.0,0.0,0.0 -521,25.0,1.9187907073831652,2.3,0.0,0.0,0.9712977940327396,-10.003811671327686,1.0,0.0,0.0 -521,26.0,0.0,0.0,0.0,0.0,0.9881665478922624,-9.669880799761868,1.0,0.0,0.0 -521,27.0,0.0,0.0,0.0,0.0,0.9696980537627812,-7.52340711001812,1.0,0.0,0.0 -521,28.0,1.3157421993484562,0.9,0.0,0.0,0.9743842187125658,-10.304524779726757,1.0,0.0,0.0 -521,29.0,5.811194713789015,1.9,0.0,0.0,0.966867214849624,-10.781081413541155,1.0,0.0,0.0 -522,0.0,0.0,0.0,162.23706792767524,0.0024172887061801,1.0,0.0,0.0,0.0,1.0 -522,1.0,11.896502385775625,12.7,3.042852496234884e-06,10.265723743583251,0.9801606478793016,-3.7035947297316607,0.0,1.0,0.0 -522,2.0,1.3157421993484562,1.2,0.0,0.0,0.9744225402119004,-4.93828501402712,1.0,0.0,0.0 -522,3.0,4.166516964603445,1.6,0.0,0.0,0.9678639150218308,-6.069651804046999,1.0,0.0,0.0 -522,4.0,51.64288132442691,19.0,5.839239087266028e-09,24.8146348842608,0.960490297170722,-8.899687655823028,0.0,1.0,0.0 -522,5.0,0.0,0.0,0.0,0.0,0.9665324153847364,-7.000148818185516,1.0,0.0,0.0 -522,6.0,12.499550893810335,10.9,0.0,0.0,0.9575721647985456,-8.05476365001056,1.0,0.0,0.0 -522,7.0,16.446777491855702,30.0,5.063743806045048e-09,35.05575799370181,0.9672775736811892,-7.471264847787299,0.0,1.0,0.0 -522,8.0,0.0,0.0,0.0,0.0,1.023172831250157,-11.59217184913214,1.0,0.0,0.0 -522,9.0,3.1797103150921027,2.0,0.0,0.0,1.0150340528354669,-11.592171849165808,1.0,0.0,0.0 -522,10.0,0.0,0.0,5.548007103147887e-10,7.6842092976057295,1.0385625213368417,-11.592171849069915,0.0,1.0,0.0 -522,11.0,6.140130263626129,7.5,0.0,0.0,1.0270979156832878,-10.49522556033882,1.0,0.0,0.0 -522,12.0,0.0,0.0,6.712864810855252e-09,20.083518014204323,1.0537798874635274,-10.495225559841314,0.0,1.0,0.0 -522,13.0,3.3990006816501785,1.6,0.0,0.0,1.013182154714952,-11.074426987269243,1.0,0.0,0.0 -522,14.0,4.495452514440558,2.5,0.0,0.0,1.006171634320393,-11.15282920355466,1.0,0.0,0.0 -522,15.0,1.9187907073831652,1.8,0.0,0.0,1.0153362083151436,-11.058513481586983,1.0,0.0,0.0 -522,16.0,4.934033247556711,5.8,0.0,0.0,1.0109453365478256,-11.521825431657014,1.0,0.0,0.0 -522,17.0,1.7543229324646084,0.9,0.0,0.0,0.9859001767541016,-11.873905091871292,1.0,0.0,0.0 -522,18.0,5.208146205754306,3.4,0.0,0.0,0.976256371117148,-12.211274296264955,1.0,0.0,0.0 -522,19.0,1.2060970160694184,0.7,0.0,0.0,0.9753477198518534,-12.246303575536546,1.0,0.0,0.0 -522,20.0,9.593953536915826,11.2,0.0,0.0,1.0042501406460296,-11.692997825296032,1.0,0.0,0.0 -522,21.0,0.0,0.0,0.0,0.0,1.004545694105648,-11.666334700993968,1.0,0.0,0.0 -522,22.0,1.7543229324646084,1.6,0.0,0.0,0.9980321571553322,-11.350785740365689,1.0,0.0,0.0 -522,23.0,4.769565472638154,6.7,0.0,0.0,0.9938612287879576,-11.46949316017881,1.0,0.0,0.0 -522,24.0,0.0,0.0,0.0,0.0,0.98638156504122,-10.65277008595142,1.0,0.0,0.0 -522,25.0,1.9187907073831652,2.3,0.0,0.0,0.9723720249814518,-10.7388039873891,1.0,0.0,0.0 -522,26.0,0.0,0.0,0.0,0.0,0.9886193779283348,-10.064986447427954,1.0,0.0,0.0 -522,27.0,0.0,0.0,0.0,0.0,0.9652336611143534,-7.432885515224463,1.0,0.0,0.0 -522,28.0,1.3157421993484562,0.9,0.0,0.0,0.9748437334440568,-10.699041120432094,1.0,0.0,0.0 -522,29.0,5.811194713789015,1.9,0.0,0.0,0.9673303851206726,-11.175145511241642,1.0,0.0,0.0 -523,0.0,0.0,0.0,161.9634039307305,0.0016045184418445,1.0,0.0,0.0,0.0,1.0 -523,1.0,11.896502385775625,12.7,5.0224979118737005,0.2132893725316123,0.9742147839208524,-4.623115027200971,0.0,1.0,0.0 -523,2.0,1.3157421993484562,1.2,0.0,0.0,0.989285737901058,-2.2837742207356198,1.0,0.0,0.0 -523,3.0,4.166516964603445,1.6,0.0,0.0,0.9860809941788974,-2.777235919284512,1.0,0.0,0.0 -523,4.0,51.64288132442691,19.0,-2.0337655285672874e-09,39.02449711003541,0.9585319300227932,-12.835009974284482,0.0,1.0,0.0 -523,5.0,0.0,0.0,0.0,0.0,0.9519746258384691,-13.522914844016174,1.0,0.0,0.0 -523,6.0,12.499550893810335,10.9,0.0,0.0,0.9400188265791468,-13.464555254864134,1.0,0.0,0.0 -523,7.0,16.446777491855702,30.0,1.242064255991613e-09,34.51380561066895,0.9522293524736958,-14.017954605105588,0.0,1.0,0.0 -523,8.0,0.0,0.0,0.0,0.0,0.9993928322796378,-16.96850663148925,1.0,0.0,0.0 -523,9.0,3.1797103150921027,2.0,0.0,0.0,0.9893493491202456,-18.760510851661184,1.0,0.0,0.0 -523,10.0,0.0,0.0,1.4621332454480243e-09,23.996585521087454,1.0470622957732143,-16.968506631322736,0.0,1.0,0.0 -523,11.0,6.140130263626129,7.5,0.0,0.0,0.971615244368044,-21.70198841378298,1.0,0.0,0.0 -523,12.0,0.0,0.0,-6.384142746326414e-11,21.22138745938793,1.0012869992838596,-21.70198841378824,0.0,1.0,0.0 -523,13.0,3.3990006816501785,1.6,0.0,0.0,0.9610247599267532,-21.77525071713693,1.0,0.0,0.0 -523,14.0,4.495452514440558,2.5,0.0,0.0,0.96141086323648,-21.39528361551552,1.0,0.0,0.0 -523,15.0,1.9187907073831652,1.8,0.0,0.0,0.9747669451799716,-20.588881706611726,1.0,0.0,0.0 -523,16.0,4.934033247556711,5.8,0.0,0.0,0.979505061455802,-19.40836593057187,1.0,0.0,0.0 -523,17.0,1.7543229324646084,0.9,0.0,0.0,0.9617526341775272,-20.82889819261908,1.0,0.0,0.0 -523,18.0,5.208146205754306,3.4,0.0,0.0,0.9644016114760536,-20.3901184060058,1.0,0.0,0.0 -523,19.0,1.2060970160694184,0.7,0.0,0.0,0.9700848336269524,-20.01493703269958,1.0,0.0,0.0 -523,20.0,9.593953536915826,11.2,0.0,0.0,0.9547974509311228,-19.48494847477188,1.0,0.0,0.0 -523,21.0,0.0,0.0,0.0,0.0,0.958731905529098,-19.42454951426897,1.0,0.0,0.0 -523,22.0,1.7543229324646084,1.6,0.0,0.0,0.9538241985944506,-20.76461397784061,1.0,0.0,0.0 -523,23.0,4.769565472638154,6.7,0.0,0.0,0.9508217066209582,-19.751486752105237,1.0,0.0,0.0 -523,24.0,0.0,0.0,0.0,0.0,0.954502752362436,-18.43345641357976,1.0,0.0,0.0 -523,25.0,1.9187907073831652,2.3,0.0,0.0,0.9400108349702044,-18.52542447282449,1.0,0.0,0.0 -523,26.0,0.0,0.0,0.0,0.0,0.9638934254742182,-17.527600522017618,1.0,0.0,0.0 -523,27.0,0.0,0.0,0.0,0.0,0.9490261834668446,-14.043009834954791,1.0,0.0,0.0 -523,28.0,1.3157421993484562,0.9,0.0,0.0,0.9497427378350816,-18.195083471723738,1.0,0.0,0.0 -523,29.0,5.811194713789015,1.9,0.0,0.0,0.9420242711722157,-18.69687095869475,1.0,0.0,0.0 -524,0.0,0.0,0.0,162.17353276977354,0.0007801343023139,1.0,0.0,0.0,0.0,1.0 -524,1.0,11.896502385775625,12.7,9.098240834676976e-07,10.50328469173705,0.9801632642730352,-3.726488784318219,0.0,1.0,0.0 -524,2.0,1.3157421993484562,1.2,0.0,0.0,0.9743536320400048,-4.867175854133145,1.0,0.0,0.0 -524,3.0,4.166516964603445,1.6,0.0,0.0,0.9677682181493708,-5.98137124790563,1.0,0.0,0.0 -524,4.0,51.64288132442691,19.0,1.2275138547600929e-10,24.41291700059949,0.9602144404144388,-8.978411646392829,0.0,1.0,0.0 -524,5.0,0.0,0.0,0.0,0.0,0.9667475051626748,-7.152573368119616,1.0,0.0,0.0 -524,6.0,12.499550893810335,10.9,0.0,0.0,0.957577634803421,-8.177397707385094,1.0,0.0,0.0 -524,7.0,16.446777491855702,30.0,3.210834093146609e-10,31.79603739916938,0.9661749165014484,-7.59237263504893,0.0,1.0,0.0 -524,8.0,0.0,0.0,0.0,0.0,1.012847167343755,-9.150480892312146,1.0,0.0,0.0 -524,9.0,3.1797103150921027,2.0,0.0,0.0,1.0013107836617203,-10.193388922763855,1.0,0.0,0.0 -524,10.0,0.0,0.0,1.241755701323207e-09,23.99189142548924,1.0599287600379927,-9.150480892174295,0.0,1.0,0.0 -524,11.0,6.140130263626129,7.5,0.0,0.0,1.016152834288427,-9.033939179529169,1.0,0.0,0.0 -524,12.0,0.0,0.0,-2.6339901230623064e-11,7.603673455011968,1.0265229317386484,-9.033939179531195,0.0,1.0,0.0 -524,13.0,3.3990006816501785,1.6,0.0,0.0,0.9844792453727912,-10.081971238504826,1.0,0.0,0.0 -524,14.0,4.495452514440558,2.5,0.0,0.0,0.9953605179560084,-9.891836766069842,1.0,0.0,0.0 -524,15.0,1.9187907073831652,1.8,0.0,0.0,0.9880607677791816,-10.545644568698457,1.0,0.0,0.0 -524,16.0,4.934033247556711,5.8,0.0,0.0,0.9925854818250014,-10.385182457581523,1.0,0.0,0.0 -524,17.0,1.7543229324646084,0.9,0.0,0.0,0.9881941888275174,-10.347942566164605,1.0,0.0,0.0 -524,18.0,5.208146205754306,3.4,0.0,0.0,0.9862718287596608,-10.520369914831791,1.0,0.0,0.0 -524,19.0,1.2060970160694184,0.7,0.0,0.0,0.989393396578863,-10.470882192340232,1.0,0.0,0.0 -524,20.0,9.593953536915826,11.2,0.0,0.0,0.9908735723891162,-10.3466602276997,1.0,0.0,0.0 -524,21.0,0.0,0.0,0.0,0.0,0.9913243099263952,-10.335450849615093,1.0,0.0,0.0 -524,22.0,1.7543229324646084,1.6,0.0,0.0,0.9867692783395764,-10.157133387412902,1.0,0.0,0.0 -524,23.0,4.769565472638154,6.7,0.0,0.0,0.982089840962638,-10.363780798310588,1.0,0.0,0.0 -524,24.0,0.0,0.0,0.0,0.0,0.97723740704246,-10.054328227932702,1.0,0.0,0.0 -524,25.0,1.9187907073831652,2.3,0.0,0.0,0.963092867163924,-10.142003834536252,1.0,0.0,0.0 -524,26.0,0.0,0.0,0.0,0.0,0.9812864434079116,-9.778987775529725,1.0,0.0,0.0 -524,27.0,0.0,0.0,0.0,0.0,0.9646116286711688,-7.517615627492915,1.0,0.0,0.0 -524,28.0,1.3157421993484562,0.9,0.0,0.0,0.9674017229362954,-10.422687986788665,1.0,0.0,0.0 -524,29.0,5.811194713789015,1.9,0.0,0.0,0.9598287241841744,-10.906196869433105,1.0,0.0,0.0 -525,0.0,0.0,0.0,163.3374310518618,0.0011465224547535,1.0,0.0,0.0,0.0,1.0 -525,1.0,11.896502385775625,12.7,1.6892139844480605e-06,11.029628406305854,0.9787911232676608,-4.1563021954940025,0.0,1.0,0.0 -525,2.0,1.3157421993484562,1.2,0.0,0.0,0.9765639631110928,-3.751033407024064,1.0,0.0,0.0 -525,3.0,4.166516964603445,1.6,0.0,0.0,0.9703814307987092,-4.5947640459013055,1.0,0.0,0.0 -525,4.0,51.64288132442691,19.0,-1.718286104431442e-09,25.98028416401455,0.9594005396962368,-10.529378565956511,0.0,1.0,0.0 -525,5.0,0.0,0.0,0.0,0.0,0.962702440246826,-9.801960189165833,1.0,0.0,0.0 -525,6.0,12.499550893810335,10.9,0.0,0.0,0.9546454063717092,-10.37900080529348,1.0,0.0,0.0 -525,7.0,16.446777491855702,30.0,-1.6807023784236066e-09,28.340034970532063,0.9608984818500256,-10.214841721006705,0.0,1.0,0.0 -525,8.0,0.0,0.0,0.0,0.0,1.0104589734697893,-11.216224035219266,1.0,0.0,0.0 -525,9.0,3.1797103150921027,2.0,0.0,0.0,1.007742516216828,-11.946742319039954,1.0,0.0,0.0 -525,10.0,0.0,0.0,-2.9731929361419643e-09,15.878755175203246,1.0421509381882963,-11.216224035555744,0.0,1.0,0.0 -525,11.0,6.140130263626129,7.5,0.0,0.0,1.0309340408633532,-9.886007703021471,1.0,0.0,0.0 -525,12.0,0.0,0.0,-1.2003913250773075e-09,21.99663080459347,1.0599865630370284,-9.886007703109588,0.0,1.0,0.0 -525,13.0,3.3990006816501785,1.6,0.0,0.0,0.9907861748692564,-11.211075031898757,1.0,0.0,0.0 -525,14.0,4.495452514440558,2.5,0.0,0.0,1.0015981134640233,-11.023327436898464,1.0,0.0,0.0 -525,15.0,1.9187907073831652,1.8,0.0,0.0,1.0136152994295955,-10.833498807483595,1.0,0.0,0.0 -525,16.0,4.934033247556711,5.8,0.0,0.0,1.0055555230715405,-11.70205060974244,1.0,0.0,0.0 -525,17.0,1.7543229324646084,0.9,0.0,0.0,0.9812272101098142,-11.751146347558729,1.0,0.0,0.0 -525,18.0,5.208146205754306,3.4,0.0,0.0,0.9715363639383684,-12.091769116791244,1.0,0.0,0.0 -525,19.0,1.2060970160694184,0.7,0.0,0.0,0.9706232880991554,-12.127139909196776,1.0,0.0,0.0 -525,20.0,9.593953536915826,11.2,0.0,0.0,0.996995738252298,-12.088441317140806,1.0,0.0,0.0 -525,21.0,0.0,0.0,0.0,0.0,0.997325807340402,-12.074111156374608,1.0,0.0,0.0 -525,22.0,1.7543229324646084,1.6,0.0,0.0,0.992267289014465,-11.522570027926513,1.0,0.0,0.0 -525,23.0,4.769565472638154,6.7,0.0,0.0,0.9866633115097622,-12.048280625406267,1.0,0.0,0.0 -525,24.0,0.0,0.0,0.0,0.0,0.9773802185712724,-12.052216588236304,1.0,0.0,0.0 -525,25.0,1.9187907073831652,2.3,0.0,0.0,0.9632378074009016,-12.139866194337078,1.0,0.0,0.0 -525,26.0,0.0,0.0,0.0,0.0,0.97878450253137,-11.977414678362871,1.0,0.0,0.0 -525,27.0,0.0,0.0,0.0,0.0,0.9607337234911324,-10.116288948377091,1.0,0.0,0.0 -525,28.0,1.3157421993484562,0.9,0.0,0.0,0.9648621584699284,-12.624456546043014,1.0,0.0,0.0 -525,29.0,5.811194713789015,1.9,0.0,0.0,0.957268583485609,-13.110531858830027,1.0,0.0,0.0 -526,0.0,0.0,0.0,162.19180208129512,0.0023466967861374,1.0,0.0,0.0,0.0,1.0 -526,1.0,11.896502385775625,12.7,3.215511575234981e-06,-1.5932688619854076,0.978850782309008,-3.6919046196128873,0.0,1.0,0.0 -526,2.0,1.3157421993484562,1.2,0.0,0.0,0.9781698132445772,-4.950151880250893,1.0,0.0,0.0 -526,3.0,4.166516964603445,1.6,0.0,0.0,0.9724833845775926,-6.082530040140331,1.0,0.0,0.0 -526,4.0,51.64288132442691,19.0,2.291774034590452e-09,25.47989109839737,0.9637679304608936,-8.973176582760528,0.0,1.0,0.0 -526,5.0,0.0,0.0,0.0,0.0,0.97288499841565,-7.195852874869554,1.0,0.0,0.0 -526,6.0,12.499550893810335,10.9,0.0,0.0,0.9627005717615396,-8.19937480029765,1.0,0.0,0.0 -526,7.0,16.446777491855702,30.0,5.569444330170395e-09,36.2812962696752,0.9740484805308832,-7.656555075396072,0.0,1.0,0.0 -526,8.0,0.0,0.0,0.0,0.0,1.0213459508275526,-8.958647662990712,1.0,0.0,0.0 -526,9.0,3.1797103150921027,2.0,0.0,0.0,1.0153434682368916,-9.871899705799985,1.0,0.0,0.0 -526,10.0,0.0,0.0,6.548987956893584e-09,19.69171249808964,1.0599867744521636,-8.95864766226979,0.0,1.0,0.0 -526,11.0,6.140130263626129,7.5,0.0,0.0,1.0295589712550524,-9.51467190046174,1.0,0.0,0.0 -526,12.0,0.0,0.0,3.77041132126406e-09,17.4504153332831,1.0527650804993005,-9.514671900182709,0.0,1.0,0.0 -526,13.0,3.3990006816501785,1.6,0.0,0.0,1.0177131126688228,-9.96963259912823,1.0,0.0,0.0 -526,14.0,4.495452514440558,2.5,0.0,0.0,1.0135204768467465,-9.973029089793345,1.0,0.0,0.0 -526,15.0,1.9187907073831652,1.8,0.0,0.0,1.0173959553001295,-9.756890893901524,1.0,0.0,0.0 -526,16.0,4.934033247556711,5.8,0.0,0.0,1.0116531971067226,-9.934107378375971,1.0,0.0,0.0 -526,17.0,1.7543229324646084,0.9,0.0,0.0,1.0050888469820567,-10.275567744478456,1.0,0.0,0.0 -526,18.0,5.208146205754306,3.4,0.0,0.0,1.0023690263552865,-10.35970033473061,1.0,0.0,0.0 -526,19.0,1.2060970160694184,0.7,0.0,0.0,1.005006056278908,-10.26804537832412,1.0,0.0,0.0 -526,20.0,9.593953536915826,11.2,0.0,0.0,1.0050906393758858,-10.049387369489612,1.0,0.0,0.0 -526,21.0,0.0,0.0,0.0,0.0,1.0055435889512103,-10.047659868885164,1.0,0.0,0.0 -526,22.0,1.7543229324646084,1.6,0.0,0.0,1.0033048152631254,-10.131135600249232,1.0,0.0,0.0 -526,23.0,4.769565472638154,6.7,0.0,0.0,0.9963218554680848,-10.19903052175346,1.0,0.0,0.0 -526,24.0,0.0,0.0,0.0,0.0,0.9883255506844406,-9.92842184892991,1.0,0.0,0.0 -526,25.0,1.9187907073831652,2.3,0.0,0.0,0.9743443743403803,-10.014112712130927,1.0,0.0,0.0 -526,26.0,0.0,0.0,0.0,0.0,0.990350504746197,-9.6823549928351,1.0,0.0,0.0 -526,27.0,0.0,0.0,0.0,0.0,0.971472787249315,-7.554081908589282,1.0,0.0,0.0 -526,28.0,1.3157421993484562,0.9,0.0,0.0,0.9400016687216144,-12.002399854259512,1.0,0.0,0.0 -526,29.0,5.811194713789015,1.9,0.0,0.0,0.9477083488116456,-11.757666318211452,1.0,0.0,0.0 -527,0.0,0.0,0.0,162.27566695159908,0.0004132585556426,1.0,0.0,0.0,0.0,1.0 -527,1.0,11.896502385775625,12.7,7.855459496346074e-07,-8.940216705180081,0.9781776808108612,-3.680309797385152,0.0,1.0,0.0 -527,2.0,1.3157421993484562,1.2,0.0,0.0,0.9800866369002094,-4.982474642736888,1.0,0.0,0.0 -527,3.0,4.166516964603445,1.6,0.0,0.0,0.9748505006125878,-6.121671801191297,1.0,0.0,0.0 -527,4.0,51.64288132442691,19.0,-4.2067504293688044e-10,28.46578838198606,0.9681088962507054,-9.01996596277818,0.0,1.0,0.0 -527,5.0,0.0,0.0,0.0,0.0,0.9760564394894932,-7.239708689355963,1.0,0.0,0.0 -527,6.0,12.499550893810335,10.9,0.0,0.0,0.9663842101538676,-8.241955677900542,1.0,0.0,0.0 -527,7.0,16.446777491855702,30.0,-1.1656809440706022e-09,39.99886383720258,0.9785937925835704,-7.720254070782309,0.0,1.0,0.0 -527,8.0,0.0,0.0,0.0,0.0,1.0238291970300142,-8.982424631136011,1.0,0.0,0.0 -527,9.0,3.1797103150921027,2.0,0.0,0.0,1.0187247930372991,-9.88521342393737,1.0,0.0,0.0 -527,10.0,0.0,0.0,-5.289473176217343e-10,18.43234083622933,1.0599983741480192,-8.982424631194096,0.0,1.0,0.0 -527,11.0,6.140130263626129,7.5,0.0,0.0,1.0345941160023764,-9.551795878034014,1.0,0.0,0.0 -527,12.0,0.0,0.0,-5.1102338374697646e-11,19.23174785847662,1.0599946655309729,-9.551795878037751,0.0,1.0,0.0 -527,13.0,3.3990006816501785,1.6,0.0,0.0,1.0225915092049265,-10.002373829946793,1.0,0.0,0.0 -527,14.0,4.495452514440558,2.5,0.0,0.0,1.0182115339825983,-10.00096531834068,1.0,0.0,0.0 -527,15.0,1.9187907073831652,1.8,0.0,0.0,1.021755655121579,-9.779536623384976,1.0,0.0,0.0 -527,16.0,4.934033247556711,5.8,0.0,0.0,1.0153522535594834,-9.950794897353823,1.0,0.0,0.0 -527,17.0,1.7543229324646084,0.9,0.0,0.0,1.0093574423771807,-10.295386496985625,1.0,0.0,0.0 -527,18.0,5.208146205754306,3.4,0.0,0.0,1.0063775593203932,-10.375520940133544,1.0,0.0,0.0 -527,19.0,1.2060970160694184,0.7,0.0,0.0,1.0088613271780498,-10.282798648529951,1.0,0.0,0.0 -527,20.0,9.593953536915826,11.2,0.0,0.0,1.0085844531929562,-10.0627672668705,1.0,0.0,0.0 -527,21.0,0.0,0.0,0.0,0.0,1.0090601903556076,-10.06148976804926,1.0,0.0,0.0 -527,22.0,1.7543229324646084,1.6,0.0,0.0,1.0076528558770053,-10.155342562531926,1.0,0.0,0.0 -527,23.0,4.769565472638154,6.7,0.0,0.0,1.0001833540143483,-10.21967871068091,1.0,0.0,0.0 -527,24.0,0.0,0.0,0.0,0.0,0.9920300688323312,-9.953958838838286,1.0,0.0,0.0 -527,25.0,1.9187907073831652,2.3,0.0,0.0,0.9781026218881884,-10.039001680119018,1.0,0.0,0.0 -527,26.0,0.0,0.0,0.0,0.0,0.9939314699292447,-9.711722710335804,1.0,0.0,0.0 -527,27.0,0.0,0.0,0.0,0.0,0.9749675864336366,-7.600156669511151,1.0,0.0,0.0 -527,28.0,1.3157421993484562,0.9,0.0,0.0,0.9642721614072116,-11.11336416070659,1.0,0.0,0.0 -527,29.0,5.811194713789015,1.9,0.0,0.0,0.9400002931480028,-12.490495524164816,1.0,0.0,0.0 -528,0.0,0.0,0.0,162.0189989040834,0.0005888720269631,1.0,0.0,0.0,0.0,1.0 -528,1.0,11.896502385775625,12.7,7.683162588962352e-07,10.503490268754774,0.9802405718591792,-3.718179783698535,0.0,1.0,0.0 -528,2.0,1.3157421993484562,1.2,0.0,0.0,0.97421426951753,-4.876388549964449,1.0,0.0,0.0 -528,3.0,4.166516964603445,1.6,0.0,0.0,0.9675978587830218,-5.992879436968917,1.0,0.0,0.0 -528,4.0,51.64288132442691,19.0,-7.732515258613747e-10,24.18431447498897,0.9602602338268518,-8.949831044739708,0.0,1.0,0.0 -528,5.0,0.0,0.0,0.0,0.0,0.9672396340102866,-7.114508241363871,1.0,0.0,0.0 -528,6.0,12.499550893810335,10.9,0.0,0.0,0.9578914872887576,-8.14322126476558,1.0,0.0,0.0 -528,7.0,16.446777491855702,30.0,-4.6264470194622846e-10,30.55194968629452,0.9662370667586128,-7.544777261679407,0.0,1.0,0.0 -528,8.0,0.0,0.0,0.0,0.0,1.0156615454226383,-8.930782292433896,1.0,0.0,0.0 -528,9.0,3.1797103150921027,2.0,0.0,0.0,1.006730131183028,-9.874277676420151,1.0,0.0,0.0 -528,10.0,0.0,0.0,2.9097036259126857e-10,22.57908459924268,1.0599689707007358,-8.93078229240169,0.0,1.0,0.0 -528,11.0,6.140130263626129,7.5,0.0,0.0,1.0137264043920893,-9.40487889063175,1.0,0.0,0.0 -528,12.0,0.0,0.0,-5.967310156930455e-10,9.900867821234488,1.027220311007058,-9.404878890677717,0.0,1.0,0.0 -528,13.0,3.3990006816501785,1.6,0.0,0.0,1.0026752358459772,-9.87564502278999,1.0,0.0,0.0 -528,14.0,4.495452514440558,2.5,0.0,0.0,0.9993529110153196,-9.90301566952992,1.0,0.0,0.0 -528,15.0,1.9187907073831652,1.8,0.0,0.0,1.0045396399368658,-9.713125753503665,1.0,0.0,0.0 -528,16.0,4.934033247556711,5.8,0.0,0.0,1.001689594480489,-9.918949998428976,1.0,0.0,0.0 -528,17.0,1.7543229324646084,0.9,0.0,0.0,0.992762712656608,-10.24010458746165,1.0,0.0,0.0 -528,18.0,5.208146205754306,3.4,0.0,0.0,0.9911629481138856,-10.342224843151769,1.0,0.0,0.0 -528,19.0,1.2060970160694184,0.7,0.0,0.0,0.9944361999097736,-10.257114879140174,1.0,0.0,0.0 -528,20.0,9.593953536915826,11.2,0.0,0.0,0.996156585640877,-10.050098705559586,1.0,0.0,0.0 -528,21.0,0.0,0.0,0.0,0.0,0.9965413082987772,-10.046707627747557,1.0,0.0,0.0 -528,22.0,1.7543229324646084,1.6,0.0,0.0,0.9908835636071764,-10.0818714944118,1.0,0.0,0.0 -528,23.0,4.769565472638154,6.7,0.0,0.0,0.986316003472388,-10.17288264277984,1.0,0.0,0.0 -528,24.0,0.0,0.0,0.0,0.0,0.9799577845998056,-9.90010994569044,1.0,0.0,0.0 -528,25.0,1.9187907073831652,2.3,0.0,0.0,0.9658536821652326,-9.987292244814004,1.0,0.0,0.0 -528,26.0,0.0,0.0,0.0,0.0,0.9830621597655764,-9.649584874631714,1.0,0.0,0.0 -528,27.0,0.0,0.0,0.0,0.0,0.9651996658950394,-7.470378895085704,1.0,0.0,0.0 -528,28.0,1.3157421993484562,0.9,0.0,0.0,0.9692040154429226,-10.290929157093514,1.0,0.0,0.0 -528,29.0,5.811194713789015,1.9,0.0,0.0,0.9616455507983986,-10.77262902312501,1.0,0.0,0.0 -529,0.0,0.0,0.0,138.00000296444804,0.0005316843918024,1.0,0.0,0.0,0.0,1.0 -529,1.0,11.896502385775625,12.7,26.576167336051004,4.019859092952373,0.9751781429689472,-4.637417568874191,0.0,1.0,0.0 -529,2.0,1.3157421993484562,1.2,0.0,0.0,0.95548285277405,-9.81849710360886,1.0,0.0,0.0 -529,3.0,4.166516964603445,1.6,0.0,0.0,0.9559886060920064,-9.793978790019322,1.0,0.0,0.0 -529,4.0,51.64288132442691,19.0,-1.6512956724702e-10,28.069443587997483,0.958140799818564,-11.01687008808601,0.0,1.0,0.0 -529,5.0,0.0,0.0,0.0,0.0,0.9596590291838608,-10.181152107290991,1.0,0.0,0.0 -529,6.0,12.499550893810335,10.9,0.0,0.0,0.952331000887394,-10.80237082056611,1.0,0.0,0.0 -529,7.0,16.446777491855702,30.0,-2.306971559160598e-09,39.15229603246885,0.9615731393467368,-10.69146071305005,0.0,1.0,0.0 -529,8.0,0.0,0.0,0.0,0.0,1.0206191568351812,-10.18115210779753,1.0,0.0,0.0 -529,9.0,3.1797103150921027,2.0,0.0,0.0,0.969875624094892,-15.492564958994612,1.0,0.0,0.0 -529,10.0,0.0,0.0,-4.256666596898297e-09,20.06478252390261,1.0599918625367502,-10.18115210826644,0.0,1.0,0.0 -529,11.0,6.140130263626129,7.5,0.0,0.0,1.0155849649149162,-13.874546124108749,1.0,0.0,0.0 -529,12.0,0.0,0.0,-4.6559601093829075e-10,20.938393610250035,1.0436720923463378,-13.874546124143986,0.0,1.0,0.0 -529,13.0,3.3990006816501785,1.6,0.0,0.0,0.9829921264488684,-15.193456491393391,1.0,0.0,0.0 -529,14.0,4.495452514440558,2.5,0.0,0.0,0.9532493738902952,-15.588777359422297,1.0,0.0,0.0 -529,15.0,1.9187907073831652,1.8,0.0,0.0,0.9887549116944796,-14.583129228731291,1.0,0.0,0.0 -529,16.0,4.934033247556711,5.8,0.0,0.0,0.9715178060974892,-15.332614121454732,1.0,0.0,0.0 -529,17.0,1.7543229324646084,0.9,0.0,0.0,0.949508286705612,-15.93530882986045,1.0,0.0,0.0 -529,18.0,5.208146205754306,3.4,0.0,0.0,0.9497004388244006,-16.0334144517338,1.0,0.0,0.0 -529,19.0,1.2060970160694184,0.7,0.0,0.0,0.9540992398715736,-15.934093371198868,1.0,0.0,0.0 -529,20.0,9.593953536915826,11.2,0.0,0.0,0.9549130917066966,-15.67121524962862,1.0,0.0,0.0 -529,21.0,0.0,0.0,0.0,0.0,0.9540639960219228,-15.662076316383445,1.0,0.0,0.0 -529,22.0,1.7543229324646084,1.6,0.0,0.0,0.9477308237638254,-15.638824880420518,1.0,0.0,0.0 -529,23.0,4.769565472638154,6.7,0.0,0.0,0.9473816717363956,-15.54068710093225,1.0,0.0,0.0 -529,24.0,0.0,0.0,0.0,0.0,0.9544928221210324,-14.58100737403594,1.0,0.0,0.0 -529,25.0,1.9187907073831652,2.3,0.0,0.0,0.9400007493682786,-14.672977391582291,1.0,0.0,0.0 -529,26.0,0.0,0.0,0.0,0.0,0.9660278073910104,-13.89355772249707,1.0,0.0,0.0 -529,27.0,0.0,0.0,0.0,0.0,0.9565948714527458,-10.660305047599214,1.0,0.0,0.0 -529,28.0,1.3157421993484562,0.9,0.0,0.0,0.951910321355217,-14.558051487538927,1.0,0.0,0.0 -529,29.0,5.811194713789015,1.9,0.0,0.0,0.9442100154038672,-15.057539899003874,1.0,0.0,0.0 -530,0.0,0.0,0.0,138.00001428095655,0.0006747460490785,1.0,0.0,0.0,0.0,1.0 -530,1.0,11.896502385775625,12.7,26.17380691809388,11.2993860420816,0.9751780571174528,-4.637416742449076,0.0,1.0,0.0 -530,2.0,1.3157421993484562,1.2,0.0,0.0,0.9512799932842744,-9.692835869490148,1.0,0.0,0.0 -530,3.0,4.166516964603445,1.6,0.0,0.0,0.95178932263089,-9.668128693864617,1.0,0.0,0.0 -530,4.0,51.64288132442691,19.0,5.258674894375971e-10,26.09039441348719,0.9535611009925132,-10.984785804968215,0.0,1.0,0.0 -530,5.0,0.0,0.0,0.0,0.0,0.954689035509164,-10.133370387588812,1.0,0.0,0.0 -530,6.0,12.499550893810335,10.9,0.0,0.0,0.947478412946712,-10.763383843032912,1.0,0.0,0.0 -530,7.0,16.446777491855702,30.0,3.7643134229078265e-10,30.01643149375846,0.9533991524194968,-10.573795064548088,0.0,1.0,0.0 -530,8.0,0.0,0.0,0.0,0.0,1.0076973318998543,-11.901967253809405,1.0,0.0,0.0 -530,9.0,3.1797103150921027,2.0,0.0,0.0,1.0039064681164824,-12.811330280201677,1.0,0.0,0.0 -530,10.0,0.0,0.0,2.3016385282759804e-10,19.837029701878905,1.0471022899225884,-11.901967253783411,0.0,1.0,0.0 -530,11.0,6.140130263626129,7.5,0.0,0.0,1.0064698180314613,-13.28021983584125,1.0,0.0,0.0 -530,12.0,0.0,0.0,4.195130046084399e-10,21.55852505523486,1.0356138236333172,-13.280219835808966,0.0,1.0,0.0 -530,13.0,3.3990006816501785,1.6,0.0,0.0,0.9945661014172086,-13.671804591758034,1.0,0.0,0.0 -530,14.0,4.495452514440558,2.5,0.0,0.0,0.9910683468616132,-13.596655223339203,1.0,0.0,0.0 -530,15.0,1.9187907073831652,1.8,0.0,0.0,0.9842564398075314,-13.649619124433436,1.0,0.0,0.0 -530,16.0,4.934033247556711,5.8,0.0,0.0,0.9700712837576309,-14.036611810439034,1.0,0.0,0.0 -530,17.0,1.7543229324646084,0.9,0.0,0.0,0.9863853223690262,-13.671972325495888,1.0,0.0,0.0 -530,18.0,5.208146205754306,3.4,0.0,0.0,0.985926512216872,-13.616692312123485,1.0,0.0,0.0 -530,19.0,1.2060970160694184,0.7,0.0,0.0,0.9898322992602692,-13.447519003622473,1.0,0.0,0.0 -530,20.0,9.593953536915826,11.2,0.0,0.0,0.971046797374947,-13.42927814061072,1.0,0.0,0.0 -530,21.0,0.0,0.0,0.0,0.0,0.9749153961088688,-13.37087572657043,1.0,0.0,0.0 -530,22.0,1.7543229324646084,1.6,0.0,0.0,0.9785908835135698,-13.657161555728194,1.0,0.0,0.0 -530,23.0,4.769565472638154,6.7,0.0,0.0,0.9687432241445588,-13.585947020163283,1.0,0.0,0.0 -530,24.0,0.0,0.0,0.0,0.0,0.9641514308079728,-13.21220242380561,1.0,0.0,0.0 -530,25.0,1.9187907073831652,2.3,0.0,0.0,0.9498090361927064,-13.302310871386068,1.0,0.0,0.0 -530,26.0,0.0,0.0,0.0,0.0,0.968446269760717,-12.894324551620796,1.0,0.0,0.0 -530,27.0,0.0,0.0,0.0,0.0,0.9522957397047254,-10.512491511840969,1.0,0.0,0.0 -530,28.0,1.3157421993484562,0.9,0.0,0.0,0.9543662108946622,-13.555455610961443,1.0,0.0,0.0 -530,29.0,5.811194713789015,1.9,0.0,0.0,0.9466863764552716,-14.052358244210629,1.0,0.0,0.0 -531,0.0,0.0,0.0,115.98655698950986,2.627292250423352e-06,1.0,0.0,0.0,0.0,1.0 -531,1.0,11.896502385775625,12.7,44.61817226889888,14.71008933375922,0.9854837163597656,-2.3892636202785846,0.0,1.0,0.0 -531,2.0,1.3157421993484562,1.2,0.0,0.0,0.9793974632671368,-4.169096841195444,1.0,0.0,0.0 -531,3.0,4.166516964603445,1.6,0.0,0.0,0.9739015773015108,-5.113038983464819,1.0,0.0,0.0 -531,4.0,51.64288132442691,19.0,0.0,0.0,0.9400000009166392,-7.375226909026312,0.0,1.0,0.0 -531,5.0,0.0,0.0,0.0,0.0,0.9724170926402764,-6.104288534196379,1.0,0.0,0.0 -531,6.0,12.499550893810335,10.9,0.0,0.0,0.9525431985621644,-6.9211588841681175,1.0,0.0,0.0 -531,7.0,16.446777491855702,30.0,1.0038221147604232e-09,39.99999468800527,0.9747641612431892,-6.584781440184601,0.0,1.0,0.0 -531,8.0,0.0,0.0,0.0,0.0,1.0231273090820805,-7.875543520223171,1.0,0.0,0.0 -531,9.0,3.1797103150921027,2.0,0.0,0.0,1.019257878167848,-8.789213419996253,1.0,0.0,0.0 -531,10.0,0.0,0.0,9.51975416068374e-09,18.790880248177714,1.059999980438217,-7.875543519177063,0.0,1.0,0.0 -531,11.0,6.140130263626129,7.5,0.0,0.0,1.034841459725416,-8.50080907499257,1.0,0.0,0.0 -531,12.0,0.0,0.0,-1.232901946289542e-09,19.04858768697012,1.0599999724194205,-8.500809075082728,0.0,1.0,0.0 -531,13.0,3.3990006816501785,1.6,0.0,0.0,1.023226955261303,-8.952544116328705,1.0,0.0,0.0 -531,14.0,4.495452514440558,2.5,0.0,0.0,1.0192084873519434,-8.961148910896398,1.0,0.0,0.0 -531,15.0,1.9187907073831652,1.8,0.0,0.0,1.022159063436179,-8.709861998131084,1.0,0.0,0.0 -531,16.0,4.934033247556711,5.8,0.0,0.0,1.0158370651241195,-8.86277555935223,1.0,0.0,0.0 -531,17.0,1.7543229324646084,0.9,0.0,0.0,1.0102022768693637,-9.235287602850926,1.0,0.0,0.0 -531,18.0,5.208146205754306,3.4,0.0,0.0,1.0071296985138591,-9.303446217999753,1.0,0.0,0.0 -531,19.0,1.2060970160694184,0.7,0.0,0.0,1.0095620635279474,-9.204591388080274,1.0,0.0,0.0 -531,20.0,9.593953536915826,11.2,0.0,0.0,1.0099168936281595,-8.987673913258412,1.0,0.0,0.0 -531,21.0,0.0,0.0,0.0,0.0,1.0106399628121447,-8.993528100113993,1.0,0.0,0.0 -531,22.0,1.7543229324646084,1.6,0.0,0.0,1.0102458847730391,-9.15264208432632,1.0,0.0,0.0 -531,23.0,4.769565472638154,6.7,0.0,0.0,1.0048960349596423,-9.266852875699785,1.0,0.0,0.0 -531,24.0,0.0,0.0,0.0,0.0,0.972797683079172,-8.656038661132515,1.0,0.0,0.0 -531,25.0,1.9187907073831652,2.3,0.0,0.0,0.958586640341928,-8.744528443214096,1.0,0.0,0.0 -531,26.0,0.0,0.0,0.0,0.0,0.9799966129066164,-8.565774072639218,1.0,0.0,0.0 -531,27.0,0.0,0.0,0.0,0.0,0.9702079135189328,-6.4446095778116925,1.0,0.0,0.0 -531,28.0,1.3157421993484562,0.9,0.0,0.0,0.966092522412149,-9.211193755902237,1.0,0.0,0.0 -531,29.0,5.811194713789015,1.9,0.0,0.0,0.9585089303127472,-9.696023137293706,1.0,0.0,0.0 -532,0.0,0.0,0.0,161.27256535153003,0.0022305055090043,1.0,0.0,0.0,0.0,1.0 -532,1.0,11.832038044173323,12.7,3.0478191859791454e-06,-1.1958217977393917,0.9789939197266426,-3.67141983275366,0.0,1.0,0.0 -532,2.0,1.3086125025813815,1.2,0.0,0.0,0.978126265207059,-4.919011524388052,1.0,0.0,0.0 -532,3.0,4.143939591507708,1.6,0.0,0.0,0.9724240077564404,-6.044076605439859,1.0,0.0,0.0 -532,4.0,51.36304072631923,19.0,1.9981453803080444e-09,25.374156907714,0.9638042938249312,-8.920385135747788,0.0,1.0,0.0 -532,5.0,0.0,0.0,0.0,0.0,0.9728088418895346,-7.151567448487226,1.0,0.0,0.0 -532,6.0,12.431818774523125,10.9,0.0,0.0,0.9626812543688285,-8.14959553382479,1.0,0.0,0.0 -532,7.0,16.357656282267268,30.0,4.372297324622769e-09,36.02586148203678,0.9738873744070636,-7.608549843532809,0.0,1.0,0.0 -532,8.0,0.0,0.0,0.0,0.0,1.021209296577106,-8.906593362955997,1.0,0.0,0.0 -532,9.0,3.162480214571672,2.0,0.0,0.0,1.0151000277613913,-9.81596837641488,1.0,0.0,0.0 -532,10.0,0.0,0.0,6.1391002866045e-09,19.761449579389588,1.0599869577771344,-8.90659336228011,0.0,1.0,0.0 -532,11.0,6.10685834537978,7.5,0.0,0.0,1.0289688261370271,-9.456526856166642,1.0,0.0,0.0 -532,12.0,0.0,0.0,3.709134348198639e-09,17.070060505486264,1.051692283448438,-9.456526855891706,0.0,1.0,0.0 -532,13.0,3.380582298335236,1.6,0.0,0.0,1.0171875826820935,-9.908874238681754,1.0,0.0,0.0 -532,14.0,4.471092717153053,2.5,0.0,0.0,1.0130431998638376,-9.912829269384602,1.0,0.0,0.0 -532,15.0,1.9083932329311812,1.8,0.0,0.0,1.0169612351174513,-9.699317717363126,1.0,0.0,0.0 -532,16.0,4.907296884680181,5.8,0.0,0.0,1.011354849324737,-9.876615825000323,1.0,0.0,0.0 -532,17.0,1.7448166701085088,0.9,0.0,0.0,1.0047123733571806,-10.21458625535112,1.0,0.0,0.0 -532,18.0,5.179924489384636,3.4,0.0,0.0,1.002047029926458,-10.298865182787038,1.0,0.0,0.0 -532,19.0,1.1995614606996,0.7,0.0,0.0,1.0047044932767415,-10.208298947236882,1.0,0.0,0.0 -532,20.0,9.541966164655909,11.2,0.0,0.0,1.0048520099449705,-9.991446111884311,1.0,0.0,0.0 -532,21.0,0.0,0.0,0.0,0.0,1.0053015953018036,-9.98974322050531,1.0,0.0,0.0 -532,22.0,1.7448166701085088,1.6,0.0,0.0,1.0029239696101848,-10.070275428947255,1.0,0.0,0.0 -532,23.0,4.743720321857508,6.7,0.0,0.0,0.9960594641347732,-10.138570030865028,1.0,0.0,0.0 -532,24.0,0.0,0.0,0.0,0.0,0.988134070862152,-9.869415607627625,1.0,0.0,0.0 -532,25.0,1.9083932329311812,2.3,0.0,0.0,0.9741777144060604,-9.95278604624092,1.0,0.0,0.0 -532,26.0,0.0,0.0,0.0,0.0,0.9901928727625802,-9.625422615978469,1.0,0.0,0.0 -532,27.0,0.0,0.0,0.0,0.0,0.9713771313539752,-7.507567235772647,1.0,0.0,0.0 -532,28.0,1.3086125025813815,0.9,0.0,0.0,0.9400015693442152,-11.92954377929313,1.0,0.0,0.0 -532,29.0,5.779705219734435,1.9,0.0,0.0,0.9476899083159948,-11.686884139466924,1.0,0.0,0.0 -533,0.0,0.0,0.0,165.197205602993,0.0009479882509211,1.0,0.0,0.0,0.0,1.0 -533,1.0,11.832038044173323,12.7,2.9517658514997e-06,1.9772609319841763,0.9807877043083504,-3.4286277245589982,0.0,1.0,0.0 -533,2.0,1.3086125025813815,1.2,0.0,0.0,0.972971634420694,-6.020708563634264,1.0,0.0,0.0 -533,3.0,4.143939591507708,1.6,0.0,0.0,0.9662946303851896,-7.415147135899142,1.0,0.0,0.0 -533,4.0,51.36304072631923,19.0,1.1253432435267147e-09,34.15005375318178,0.940001993223226,-16.885828746689654,0.0,1.0,0.0 -533,5.0,0.0,0.0,0.0,0.0,0.9654844264876772,-9.171549343600924,1.0,0.0,0.0 -533,6.0,12.431818774523125,10.9,0.0,0.0,0.94800950587967,-12.576229078118509,1.0,0.0,0.0 -533,7.0,16.357656282267268,30.0,3.273988774614408e-09,38.73007680549509,0.9675724849706108,-9.650529156597903,0.0,1.0,0.0 -533,8.0,0.0,0.0,0.0,0.0,1.0158489515114102,-10.857048202607135,1.0,0.0,0.0 -533,9.0,3.162480214571672,2.0,0.0,0.0,1.0079930348300397,-11.729940898435364,1.0,0.0,0.0 -533,10.0,0.0,0.0,4.033037604870694e-09,22.499073800120595,1.0599981543312722,-10.857048202160778,0.0,1.0,0.0 -533,11.0,6.10685834537978,7.5,0.0,0.0,1.0211784832570634,-11.076788667525266,1.0,0.0,0.0 -533,12.0,0.0,0.0,1.6288831199628467e-09,15.30882236272926,1.0417518579473195,-11.07678866740244,0.0,1.0,0.0 -533,13.0,3.380582298335236,1.6,0.0,0.0,1.0130072948762952,-11.44684944130534,1.0,0.0,0.0 -533,14.0,4.471092717153053,2.5,0.0,0.0,1.003962397664879,-11.656300067067246,1.0,0.0,0.0 -533,15.0,1.9083932329311812,1.8,0.0,0.0,1.009224242964197,-11.448033524727188,1.0,0.0,0.0 -533,16.0,4.907296884680181,5.8,0.0,0.0,1.0040797905779362,-11.739637374007431,1.0,0.0,0.0 -533,17.0,1.7448166701085088,0.9,0.0,0.0,0.996236976424337,-12.023834779069446,1.0,0.0,0.0 -533,18.0,5.179924489384636,3.4,0.0,0.0,0.9939526271263556,-12.145747196916489,1.0,0.0,0.0 -533,19.0,1.1995614606996,0.7,0.0,0.0,0.9968428449110502,-12.07287138495178,1.0,0.0,0.0 -533,20.0,9.541966164655909,11.2,0.0,0.0,0.9975563842885096,-11.902327109273193,1.0,0.0,0.0 -533,21.0,0.0,0.0,0.0,0.0,0.9979736858871456,-11.89874624465588,1.0,0.0,0.0 -533,22.0,1.7448166701085088,1.6,0.0,0.0,0.994352059674432,-11.87437899186564,1.0,0.0,0.0 -533,23.0,4.743720321857508,6.7,0.0,0.0,0.98823704693762,-12.021924914057562,1.0,0.0,0.0 -533,24.0,0.0,0.0,0.0,0.0,0.9805744052908516,-11.811275422799978,1.0,0.0,0.0 -533,25.0,1.9083932329311812,2.3,0.0,0.0,0.9665072711383048,-11.895955349918768,1.0,0.0,0.0 -533,26.0,0.0,0.0,0.0,0.0,0.9828717122645264,-11.602265658983962,1.0,0.0,0.0 -533,27.0,0.0,0.0,0.0,0.0,0.96431225607742,-9.52690642830698,1.0,0.0,0.0 -533,28.0,1.3086125025813815,0.9,0.0,0.0,0.9690545669638024,-12.239334153856568,1.0,0.0,0.0 -533,29.0,5.779705219734435,1.9,0.0,0.0,0.9615230337829704,-12.718137554040329,1.0,0.0,0.0 -534,0.0,0.0,0.0,161.10432350860003,0.0005643854974479,1.0,0.0,0.0,0.0,1.0 -534,1.0,11.832038044173323,12.7,7.156961190779646e-07,10.411988244494609,0.9803276090480942,-3.696570664673021,0.0,1.0,0.0 -534,2.0,1.3086125025813815,1.2,0.0,0.0,0.9743316115165126,-4.848128616458175,1.0,0.0,0.0 -534,3.0,4.143939591507708,1.6,0.0,0.0,0.9677373584950346,-5.957890725365198,1.0,0.0,0.0 -534,4.0,51.36304072631923,19.0,-7.66582812575979e-10,24.13064822153217,0.9604390931212556,-8.897742518770745,0.0,1.0,0.0 -534,5.0,0.0,0.0,0.0,0.0,0.9673935083162069,-7.073265417998087,1.0,0.0,0.0 -534,6.0,12.431818774523125,10.9,0.0,0.0,0.958068061182218,-8.095444280686689,1.0,0.0,0.0 -534,7.0,16.357656282267268,30.0,-5.155132973145821e-10,30.52514446731148,0.966392607120946,-7.500982336637066,0.0,1.0,0.0 -534,8.0,0.0,0.0,0.0,0.0,1.0157550096991046,-8.879378673286409,1.0,0.0,0.0 -534,9.0,3.162480214571672,2.0,0.0,0.0,1.0068374560184932,-9.817646369766722,1.0,0.0,0.0 -534,10.0,0.0,0.0,1.015429860021584e-10,22.52885066126041,1.0599640644646446,-8.879378673275172,0.0,1.0,0.0 -534,11.0,6.10685834537978,7.5,0.0,0.0,1.0137791088014556,-9.350614709947104,1.0,0.0,0.0 -534,12.0,0.0,0.0,-6.646689440761528e-10,9.834444575538932,1.0271829742767848,-9.350614709998306,0.0,1.0,0.0 -534,13.0,3.380582298335236,1.6,0.0,0.0,1.0027611680550146,-9.818036743884049,1.0,0.0,0.0 -534,14.0,4.471092717153053,2.5,0.0,0.0,0.999452417811596,-9.844997820898325,1.0,0.0,0.0 -534,15.0,1.9083932329311812,1.8,0.0,0.0,1.0046274975362202,-9.656729724457817,1.0,0.0,0.0 -534,16.0,4.907296884680181,5.8,0.0,0.0,1.0017967320802887,-9.861454551792376,1.0,0.0,0.0 -534,17.0,1.7448166701085088,0.9,0.0,0.0,0.9928883175271246,-10.179871316243696,1.0,0.0,0.0 -534,18.0,5.179924489384636,3.4,0.0,0.0,0.9912975098665509,-10.281405099909492,1.0,0.0,0.0 -534,19.0,1.1995614606996,0.7,0.0,0.0,0.9945652390215768,-10.197139434883598,1.0,0.0,0.0 -534,20.0,9.541966164655909,11.2,0.0,0.0,0.9962828612091162,-9.991472345148722,1.0,0.0,0.0 -534,21.0,0.0,0.0,0.0,0.0,0.9966672936080028,-9.988168724050146,1.0,0.0,0.0 -534,22.0,1.7448166701085088,1.6,0.0,0.0,0.9910109720786754,-10.022299456228884,1.0,0.0,0.0 -534,23.0,4.743720321857508,6.7,0.0,0.0,0.9864667873957907,-10.112734582199575,1.0,0.0,0.0 -534,24.0,0.0,0.0,0.0,0.0,0.9801238786488712,-9.841383887365737,1.0,0.0,0.0 -534,25.0,1.9083932329311812,2.3,0.0,0.0,0.9660500861942732,-9.926142831621744,1.0,0.0,0.0 -534,26.0,0.0,0.0,0.0,0.0,0.9832247626485564,-9.593047513087503,1.0,0.0,0.0 -534,27.0,0.0,0.0,0.0,0.0,0.9653620895203664,-7.426962620706711,1.0,0.0,0.0 -534,28.0,1.3086125025813815,0.9,0.0,0.0,0.9694128725912794,-10.229652192260374,1.0,0.0,0.0 -534,29.0,5.779705219734435,1.9,0.0,0.0,0.9618842118139324,-10.70809927411973,1.0,0.0,0.0 -535,0.0,0.0,0.0,162.6448090241594,0.0032298229284855,1.0,0.0,0.0,0.0,1.0 -535,1.0,11.832038044173323,12.7,4.103949405516958e-06,11.47441374803502,0.9783489543045266,-4.238738367019086,0.0,1.0,0.0 -535,2.0,1.3086125025813815,1.2,0.0,0.0,0.9778711501388786,-3.4466115926585337,1.0,0.0,0.0 -535,3.0,4.143939591507708,1.6,0.0,0.0,0.9719803609452292,-4.216952383167522,1.0,0.0,0.0 -535,4.0,51.36304072631923,19.0,-3.026860376432454e-09,36.79590465447595,0.9585341037567762,-12.308178337209906,0.0,1.0,0.0 -535,5.0,0.0,0.0,0.0,0.0,0.9628872550369316,-9.10671576145347,1.0,0.0,0.0 -535,6.0,12.431818774523125,10.9,0.0,0.0,0.9400558779829602,-12.932703251938554,1.0,0.0,0.0 -535,7.0,16.357656282267268,30.0,-1.6311083338516224e-09,27.488973250120974,0.9606618152361628,-9.506332580745369,0.0,1.0,0.0 -535,8.0,0.0,0.0,0.0,0.0,0.9990966152704566,-10.585052452008073,1.0,0.0,0.0 -535,9.0,3.162480214571672,2.0,0.0,0.0,0.9992940619309334,-11.355265504608289,1.0,0.0,0.0 -535,10.0,0.0,0.0,-1.681156366015361e-09,7.152154201539524,1.013771014641077,-10.58505245220588,0.0,1.0,0.0 -535,11.0,6.10685834537978,7.5,0.0,0.0,1.0295582337084657,-8.512501126009058,1.0,0.0,0.0 -535,12.0,0.0,0.0,-6.462962836639383e-10,22.441831911872317,1.0592202099266104,-8.512501126056595,0.0,1.0,0.0 -535,13.0,3.380582298335236,1.6,0.0,0.0,1.0168645354197108,-9.072502659641268,1.0,0.0,0.0 -535,14.0,4.471092717153053,2.5,0.0,0.0,1.0110864954873484,-9.162997923570776,1.0,0.0,0.0 -535,15.0,1.9083932329311812,1.8,0.0,0.0,1.0079162031060804,-8.86120284272536,1.0,0.0,0.0 -535,16.0,4.907296884680181,5.8,0.0,0.0,0.9940892270122512,-9.22704036665505,1.0,0.0,0.0 -535,17.0,1.7448166701085088,0.9,0.0,0.0,1.0072715691318077,-9.32315042959216,1.0,0.0,0.0 -535,18.0,5.179924489384636,3.4,0.0,0.0,0.980248144378459,-12.049013592363666,1.0,0.0,0.0 -535,19.0,1.1995614606996,0.7,0.0,0.0,0.9844063524981772,-11.9085087266091,1.0,0.0,0.0 -535,20.0,9.541966164655909,11.2,0.0,0.0,0.991006065286672,-11.484436604610126,1.0,0.0,0.0 -535,21.0,0.0,0.0,0.0,0.0,0.9921370256977772,-11.4669976560121,1.0,0.0,0.0 -535,22.0,1.7448166701085088,1.6,0.0,0.0,0.9923164763741822,-9.854822348712345,1.0,0.0,0.0 -535,23.0,4.743720321857508,6.7,0.0,0.0,0.9742402430749562,-10.66540350051457,1.0,0.0,0.0 -535,24.0,0.0,0.0,0.0,0.0,0.9684824458567102,-10.97529321233564,1.0,0.0,0.0 -535,25.0,1.9083932329311812,2.3,0.0,0.0,0.9542343592171668,-11.062133123120809,1.0,0.0,0.0 -535,26.0,0.0,0.0,0.0,0.0,0.9722613462561764,-11.08582886872655,1.0,0.0,0.0 -535,27.0,0.0,0.0,0.0,0.0,0.9602151306285908,-9.384868126584688,1.0,0.0,0.0 -535,28.0,1.3086125025813815,0.9,0.0,0.0,0.958284320229254,-11.73707789184281,1.0,0.0,0.0 -535,29.0,5.779705219734435,1.9,0.0,0.0,0.9506653947204092,-12.2267808876339,1.0,0.0,0.0 -536,0.0,0.0,0.0,73.45565572652374,1.8905064180785305e-06,1.0,0.0,0.0,0.0,1.0 -536,1.0,11.832038044173323,12.7,86.37505493770125,12.30515036214895,0.9907983889291342,-1.5892840578815854,0.0,1.0,0.0 -536,2.0,1.3086125025813815,1.2,0.0,0.0,0.9826395384805732,-2.345816243493928,1.0,0.0,0.0 -536,3.0,4.143939591507708,1.6,0.0,0.0,0.9778851844929594,-2.852219487322373,1.0,0.0,0.0 -536,4.0,51.36304072631923,19.0,7.461410128314673e-09,39.99999833553174,0.975038712582473,-8.109291520303373,0.0,1.0,0.0 -536,5.0,0.0,0.0,0.0,0.0,0.9528038271459232,-7.155225903135241,1.0,0.0,0.0 -536,6.0,12.431818774523125,10.9,0.0,0.0,0.9552433876300024,-7.805391121917543,1.0,0.0,0.0 -536,7.0,16.357656282267268,30.0,0.0,0.0,0.9400000008136136,-7.391301956877558,0.0,1.0,0.0 -536,8.0,0.0,0.0,0.0,0.0,1.008505330141965,-8.44201800921769,1.0,0.0,0.0 -536,9.0,3.162480214571672,2.0,0.0,0.0,1.0018197018225905,-9.1037558248693,1.0,0.0,0.0 -536,10.0,0.0,0.0,7.608400481570877e-09,23.99999897943539,1.0557875670567174,-8.442018008366112,0.0,1.0,0.0 -536,11.0,6.10685834537978,7.5,0.0,0.0,1.0346467326530095,-7.292745138416192,1.0,0.0,0.0 -536,12.0,0.0,0.0,1.3179811339305532e-08,19.19603686111454,1.059999989144318,-7.292745137452227,0.0,1.0,0.0 -536,13.0,3.380582298335236,1.6,0.0,0.0,1.026584158487574,-7.653158162404658,1.0,0.0,0.0 -536,14.0,4.471092717153053,2.5,0.0,0.0,1.0163071394166383,-7.916852231255619,1.0,0.0,0.0 -536,15.0,1.9083932329311812,1.8,0.0,0.0,1.0133675254809376,-8.10942491018626,1.0,0.0,0.0 -536,16.0,4.907296884680181,5.8,0.0,0.0,1.0013520119891868,-8.902003748732303,1.0,0.0,0.0 -536,17.0,1.7448166701085088,0.9,0.0,0.0,0.9963041007494224,-8.617807257168396,1.0,0.0,0.0 -536,18.0,5.179924489384636,3.4,0.0,0.0,0.986786394373128,-8.94547378358042,1.0,0.0,0.0 -536,19.0,1.1995614606996,0.7,0.0,0.0,0.9858897196198644,-8.979496961970716,1.0,0.0,0.0 -536,20.0,9.541966164655909,11.2,0.0,0.0,0.989087249677336,-9.345109886028917,1.0,0.0,0.0 -536,21.0,0.0,0.0,0.0,0.0,0.9887990654464726,-9.361996777055028,1.0,0.0,0.0 -536,22.0,1.7448166701085088,1.6,0.0,0.0,0.9621601977646316,-9.865953262310253,1.0,0.0,0.0 -536,23.0,4.743720321857508,6.7,0.0,0.0,0.9690475959214911,-9.706241163992363,1.0,0.0,0.0 -536,24.0,0.0,0.0,0.0,0.0,0.9616210836232568,-9.624380627954183,1.0,0.0,0.0 -536,25.0,1.9083932329311812,2.3,0.0,0.0,0.9472682010060196,-9.71248332926324,1.0,0.0,0.0 -536,26.0,0.0,0.0,0.0,0.0,0.9642547483003604,-9.49214543562764,1.0,0.0,0.0 -536,27.0,0.0,0.0,0.0,0.0,0.9480188696658538,-7.4505935263276895,1.0,0.0,0.0 -536,28.0,1.3086125025813815,0.9,0.0,0.0,0.9501545318475368,-10.15441264201829,1.0,0.0,0.0 -536,29.0,5.779705219734435,1.9,0.0,0.0,0.9424682626922009,-10.652592122585116,1.0,0.0,0.0 -537,0.0,0.0,0.0,162.4017563564013,0.0020941449194289,1.0,0.0,0.0,0.0,1.0 -537,1.0,11.832038044173323,12.7,2.414444171526836e-06,11.388629494458016,0.9789585974403548,-4.198620652331117,0.0,1.0,0.0 -537,2.0,1.3086125025813815,1.2,0.0,0.0,0.9763197198697364,-3.5404595291711147,1.0,0.0,0.0 -537,3.0,4.143939591507708,1.6,0.0,0.0,0.9700710544510778,-4.333523981832359,1.0,0.0,0.0 -537,4.0,51.36304072631923,19.0,-2.1355927736472347e-09,36.50638558401417,0.9585729846140992,-12.2542542312816,0.0,1.0,0.0 -537,5.0,0.0,0.0,0.0,0.0,0.9679811501048808,-8.771796439136038,1.0,0.0,0.0 -537,6.0,12.431818774523125,10.9,0.0,0.0,0.9400956388168912,-12.878729629976926,1.0,0.0,0.0 -537,7.0,16.357656282267268,30.0,-8.210946549569266e-10,24.90440492866272,0.9648777000235442,-9.155079037876012,0.0,1.0,0.0 -537,8.0,0.0,0.0,0.0,0.0,1.010043902805072,-9.969049929421754,1.0,0.0,0.0 -537,9.0,3.162480214571672,2.0,0.0,0.0,1.004279964905702,-10.593022771034368,1.0,0.0,0.0 -537,10.0,0.0,0.0,-7.44693726406267e-10,15.7815816582048,1.0415597983877152,-9.969049929506117,0.0,1.0,0.0 -537,11.0,6.10685834537978,7.5,0.0,0.0,1.0248041308316893,-9.045535865289969,1.0,0.0,0.0 -537,12.0,0.0,0.0,-5.805706231729316e-10,16.19497801972699,1.046470268803803,-9.045535865333395,0.0,1.0,0.0 -537,13.0,3.380582298335236,1.6,0.0,0.0,1.0125592527001688,-9.657471252333494,1.0,0.0,0.0 -537,14.0,4.471092717153053,2.5,0.0,0.0,1.0069229803947304,-9.806669001582222,1.0,0.0,0.0 -537,15.0,1.9083932329311812,1.8,0.0,0.0,1.0090273295640155,-9.781125075013495,1.0,0.0,0.0 -537,16.0,4.907296884680181,5.8,0.0,0.0,1.0016337729529232,-10.441426124279358,1.0,0.0,0.0 -537,17.0,1.7448166701085088,0.9,0.0,0.0,0.99676817003867,-10.421735704216678,1.0,0.0,0.0 -537,18.0,5.179924489384636,3.4,0.0,0.0,0.993067791820602,-10.692836892364465,1.0,0.0,0.0 -537,19.0,1.1995614606996,0.7,0.0,0.0,0.995212723030666,-10.698380283251453,1.0,0.0,0.0 -537,20.0,9.541966164655909,11.2,0.0,0.0,0.9942284394897128,-10.746806753454024,1.0,0.0,0.0 -537,21.0,0.0,0.0,0.0,0.0,0.9947829829625504,-10.737001654710925,1.0,0.0,0.0 -537,22.0,1.7448166701085088,1.6,0.0,0.0,0.9954626239644911,-10.285277701087894,1.0,0.0,0.0 -537,23.0,4.743720321857508,6.7,0.0,0.0,0.9869758292634782,-10.78915328912576,1.0,0.0,0.0 -537,24.0,0.0,0.0,0.0,0.0,0.9792322841278756,-10.884319536870231,1.0,0.0,0.0 -537,25.0,1.9083932329311812,2.3,0.0,0.0,0.965145295998216,-10.969235185586468,1.0,0.0,0.0 -537,26.0,0.0,0.0,0.0,0.0,0.9816027059580972,-10.866030033616548,1.0,0.0,0.0 -537,27.0,0.0,0.0,0.0,0.0,0.9655043429759608,-9.067424375446874,1.0,0.0,0.0 -537,28.0,1.3086125025813815,0.9,0.0,0.0,0.967766637144633,-11.5047698842408,1.0,0.0,0.0 -537,29.0,5.779705219734435,1.9,0.0,0.0,0.9602247606890688,-11.984857371727353,1.0,0.0,0.0 -538,0.0,0.0,0.0,136.4683359537311,5.440928418920521e-06,1.0,0.0,0.0,0.0,1.0 -538,1.0,11.832038044173323,12.7,33.943489512449744,15.30169474641793,0.9693294713798206,-16.92001257427189,0.0,1.0,0.0 -538,2.0,1.3086125025813815,1.2,0.0,0.0,0.9615275820236404,-13.503643353378148,1.0,0.0,0.0 -538,3.0,4.143939591507708,1.6,0.0,0.0,0.9565421488818788,-16.72510892699513,1.0,0.0,0.0 -538,4.0,51.36304072631923,19.0,1.1051590151949623e-10,37.5365918046512,0.9400000361265808,-27.23398155808324,0.0,1.0,0.0 -538,5.0,0.0,0.0,0.0,0.0,0.9588197801832208,-19.304239433645247,1.0,0.0,0.0 -538,6.0,12.431818774523125,10.9,0.0,0.0,0.943966849338904,-22.8049976975515,1.0,0.0,0.0 -538,7.0,16.357656282267268,30.0,1.0151060718105977e-13,39.63289458625361,0.9611344791793738,-19.796206081034704,0.0,1.0,0.0 -538,8.0,0.0,0.0,0.0,0.0,1.0145948637981406,-20.75186578530326,1.0,0.0,0.0 -538,9.0,3.162480214571672,2.0,0.0,0.0,1.008923173809881,-21.495726899221705,1.0,0.0,0.0 -538,10.0,0.0,0.0,4.79463735138583e-13,23.13901739006365,1.0599997392786615,-20.7518657853032,0.0,1.0,0.0 -538,11.0,6.10685834537978,7.5,0.0,0.0,1.0227958479954098,-20.831075521916244,1.0,0.0,0.0 -538,12.0,0.0,0.0,3.1231012891383066e-12,23.3084383855133,1.053762792337166,-20.83107552191601,0.0,1.0,0.0 -538,13.0,3.380582298335236,1.6,0.0,0.0,1.0094910531667574,-21.37838324639328,1.0,0.0,0.0 -538,14.0,4.471092717153053,2.5,0.0,0.0,1.0033090754167284,-21.438137138403608,1.0,0.0,0.0 -538,15.0,1.9083932329311812,1.8,0.0,0.0,1.0105434883261544,-21.20546164514508,1.0,0.0,0.0 -538,16.0,4.907296884680181,5.8,0.0,0.0,1.0051390544630547,-21.50306209435498,1.0,0.0,0.0 -538,17.0,1.7448166701085088,0.9,0.0,0.0,0.996143111321807,-21.800367245289284,1.0,0.0,0.0 -538,18.0,5.179924489384636,3.4,0.0,0.0,0.9941899302597116,-21.918982462935528,1.0,0.0,0.0 -538,19.0,1.1995614606996,0.7,0.0,0.0,0.997253949435282,-21.84446970091492,1.0,0.0,0.0 -538,20.0,9.541966164655909,11.2,0.0,0.0,1.000715640715163,-21.622423854507648,1.0,0.0,0.0 -538,21.0,0.0,0.0,0.0,0.0,1.0018356269559576,-21.605321295097287,1.0,0.0,0.0 -538,22.0,1.7448166701085088,1.6,0.0,0.0,0.9856635169281748,-21.85335631131788,1.0,0.0,0.0 -538,23.0,4.743720321857508,6.7,0.0,0.0,0.968964910423227,-22.27758835154293,1.0,0.0,0.0 -538,24.0,0.0,0.0,0.0,0.0,0.9656452323038264,-22.0926026091364,1.0,0.0,0.0 -538,25.0,1.9083932329311812,2.3,0.0,0.0,0.9513540008693532,-22.179961358477986,1.0,0.0,0.0 -538,26.0,0.0,0.0,0.0,0.0,0.9707615385030448,-21.892099389079537,1.0,0.0,0.0 -538,27.0,0.0,0.0,0.0,0.0,0.9570534076795444,-19.669061640390037,1.0,0.0,0.0 -538,28.0,1.3086125025813815,0.9,0.0,0.0,0.9567616051374732,-22.54539121010473,1.0,0.0,0.0 -538,29.0,5.779705219734435,1.9,0.0,0.0,0.9491301574678764,-23.03666526699281,1.0,0.0,0.0 -539,0.0,0.0,0.0,162.25571868191113,2.604635594415772,1.0,0.0,0.0,0.0,1.0 -539,1.0,11.832038044173323,12.7,0.0,0.0,0.9772400351194576,-4.120605840551775,0.0,1.0,0.0 -539,2.0,1.3086125025813815,1.2,0.0,0.0,0.9770274442830386,-3.680619419976225,1.0,0.0,0.0 -539,3.0,4.143939591507708,1.6,0.0,0.0,0.9709483810881404,-4.507462441094047,1.0,0.0,0.0 -539,4.0,51.36304072631923,19.0,2.096971979304414e-09,30.60770641565938,0.965861577006512,-10.597466525504643,0.0,1.0,0.0 -539,5.0,0.0,0.0,0.0,0.0,0.9673890277555434,-9.90661757481408,1.0,0.0,0.0 -539,6.0,12.431818774523125,10.9,0.0,0.0,0.9601116963552888,-10.462517921523292,1.0,0.0,0.0 -539,7.0,16.357656282267268,30.0,3.106945091478654e-09,27.55973873805513,0.9653695577371764,-10.30522837272058,0.0,1.0,0.0 -539,8.0,0.0,0.0,0.0,0.0,1.0175077152804963,-10.924950100452389,1.0,0.0,0.0 -539,9.0,3.162480214571672,2.0,0.0,0.0,1.01015968965491,-11.452270412271556,1.0,0.0,0.0 -539,10.0,0.0,0.0,1.545586580849967e-09,21.652955501531977,1.0599966672142331,-10.92495010028161,0.0,1.0,0.0 -539,11.0,6.10685834537978,7.5,0.0,0.0,1.033456704755526,-9.581091852229449,1.0,0.0,0.0 -539,12.0,0.0,0.0,8.797912511591061e-09,20.09484636651094,1.0599971395026566,-9.58109185158523,0.0,1.0,0.0 -539,13.0,3.380582298335236,1.6,0.0,0.0,1.0209078033806152,-10.227946366726195,1.0,0.0,0.0 -539,14.0,4.471092717153053,2.5,0.0,0.0,1.0146127431352585,-10.410444430484825,1.0,0.0,0.0 -539,15.0,1.9083932329311812,1.8,0.0,0.0,1.0162640251512514,-10.446197948810008,1.0,0.0,0.0 -539,16.0,4.907296884680181,5.8,0.0,0.0,1.0080288653871508,-11.240012904879062,1.0,0.0,0.0 -539,17.0,1.7448166701085088,0.9,0.0,0.0,1.0038467859824332,-11.109351217103184,1.0,0.0,0.0 -539,18.0,5.179924489384636,3.4,0.0,0.0,0.9997809221302334,-11.432434801977235,1.0,0.0,0.0 -539,19.0,1.1995614606996,0.7,0.0,0.0,1.0017060877327864,-11.467296907122472,1.0,0.0,0.0 -539,20.0,9.541966164655909,11.2,0.0,0.0,0.99994673865055,-11.591754411445056,1.0,0.0,0.0 -539,21.0,0.0,0.0,0.0,0.0,1.000429790154397,-11.57794516896159,1.0,0.0,0.0 -539,22.0,1.7448166701085088,1.6,0.0,0.0,1.0019519655584428,-10.961684664127606,1.0,0.0,0.0 -539,23.0,4.743720321857508,6.7,0.0,0.0,0.991863651988231,-11.568521579447513,1.0,0.0,0.0 -539,24.0,0.0,0.0,0.0,0.0,0.9802993728630413,-11.683930997601747,1.0,0.0,0.0 -539,25.0,1.9083932329311812,2.3,0.0,0.0,0.9662281747732904,-11.768659147059084,1.0,0.0,0.0 -539,26.0,0.0,0.0,0.0,0.0,0.9851721490304576,-11.855581088041491,1.0,0.0,0.0 -539,27.0,0.0,0.0,0.0,0.0,0.9656602392775702,-10.19643901637553,1.0,0.0,0.0 -539,28.0,1.3086125025813815,0.9,0.0,0.0,0.9713891726161188,-12.48963653783746,1.0,0.0,0.0 -539,29.0,5.779705219734435,1.9,0.0,0.0,0.9638763152358792,-12.966125427081558,1.0,0.0,0.0 -540,0.0,0.0,0.0,161.10432350860003,0.0005643854974479,1.0,0.0,0.0,0.0,1.0 -540,1.0,11.832038044173323,12.7,7.156961190779646e-07,10.411988244494609,0.9803276090480942,-3.696570664673021,0.0,1.0,0.0 -540,2.0,1.3086125025813815,1.2,0.0,0.0,0.9743316115165126,-4.848128616458175,1.0,0.0,0.0 -540,3.0,4.143939591507708,1.6,0.0,0.0,0.9677373584950346,-5.957890725365198,1.0,0.0,0.0 -540,4.0,51.36304072631923,19.0,-7.66582812575979e-10,24.13064822153217,0.9604390931212556,-8.897742518770745,0.0,1.0,0.0 -540,5.0,0.0,0.0,0.0,0.0,0.9673935083162069,-7.073265417998087,1.0,0.0,0.0 -540,6.0,12.431818774523125,10.9,0.0,0.0,0.958068061182218,-8.095444280686689,1.0,0.0,0.0 -540,7.0,16.357656282267268,30.0,-5.155132973145821e-10,30.52514446731148,0.966392607120946,-7.500982336637066,0.0,1.0,0.0 -540,8.0,0.0,0.0,0.0,0.0,1.0157550096991046,-8.879378673286409,1.0,0.0,0.0 -540,9.0,3.162480214571672,2.0,0.0,0.0,1.0068374560184932,-9.817646369766722,1.0,0.0,0.0 -540,10.0,0.0,0.0,1.015429860021584e-10,22.52885066126041,1.0599640644646446,-8.879378673275172,0.0,1.0,0.0 -540,11.0,6.10685834537978,7.5,0.0,0.0,1.0137791088014556,-9.350614709947104,1.0,0.0,0.0 -540,12.0,0.0,0.0,-6.646689440761528e-10,9.834444575538932,1.0271829742767848,-9.350614709998306,0.0,1.0,0.0 -540,13.0,3.380582298335236,1.6,0.0,0.0,1.0027611680550146,-9.818036743884049,1.0,0.0,0.0 -540,14.0,4.471092717153053,2.5,0.0,0.0,0.999452417811596,-9.844997820898325,1.0,0.0,0.0 -540,15.0,1.9083932329311812,1.8,0.0,0.0,1.0046274975362202,-9.656729724457817,1.0,0.0,0.0 -540,16.0,4.907296884680181,5.8,0.0,0.0,1.0017967320802887,-9.861454551792376,1.0,0.0,0.0 -540,17.0,1.7448166701085088,0.9,0.0,0.0,0.9928883175271246,-10.179871316243696,1.0,0.0,0.0 -540,18.0,5.179924489384636,3.4,0.0,0.0,0.9912975098665509,-10.281405099909492,1.0,0.0,0.0 -540,19.0,1.1995614606996,0.7,0.0,0.0,0.9945652390215768,-10.197139434883598,1.0,0.0,0.0 -540,20.0,9.541966164655909,11.2,0.0,0.0,0.9962828612091162,-9.991472345148722,1.0,0.0,0.0 -540,21.0,0.0,0.0,0.0,0.0,0.9966672936080028,-9.988168724050146,1.0,0.0,0.0 -540,22.0,1.7448166701085088,1.6,0.0,0.0,0.9910109720786754,-10.022299456228884,1.0,0.0,0.0 -540,23.0,4.743720321857508,6.7,0.0,0.0,0.9864667873957907,-10.112734582199575,1.0,0.0,0.0 -540,24.0,0.0,0.0,0.0,0.0,0.9801238786488712,-9.841383887365737,1.0,0.0,0.0 -540,25.0,1.9083932329311812,2.3,0.0,0.0,0.9660500861942732,-9.926142831621744,1.0,0.0,0.0 -540,26.0,0.0,0.0,0.0,0.0,0.9832247626485564,-9.593047513087503,1.0,0.0,0.0 -540,27.0,0.0,0.0,0.0,0.0,0.9653620895203664,-7.426962620706711,1.0,0.0,0.0 -540,28.0,1.3086125025813815,0.9,0.0,0.0,0.9694128725912794,-10.229652192260374,1.0,0.0,0.0 -540,29.0,5.779705219734435,1.9,0.0,0.0,0.9618842118139324,-10.70809927411973,1.0,0.0,0.0 -541,0.0,0.0,0.0,161.1988109158667,0.0023592818345186,1.0,0.0,0.0,0.0,1.0 -541,1.0,11.832038044173323,12.7,3.4134898378860667e-06,11.02941678300283,0.9803713216455558,-3.683806000623005,0.0,1.0,0.0 -541,2.0,1.3086125025813815,1.2,0.0,0.0,0.9742228791286762,-4.894190202503751,1.0,0.0,0.0 -541,3.0,4.143939591507708,1.6,0.0,0.0,0.967610228784001,-6.015150375592746,1.0,0.0,0.0 -541,4.0,51.36304072631923,19.0,4.9389861809860395e-09,24.826208552074306,0.960617651948821,-8.851242431132146,0.0,1.0,0.0 -541,5.0,0.0,0.0,0.0,0.0,0.9663254059568828,-6.959788920053583,1.0,0.0,0.0 -541,6.0,12.431818774523125,10.9,0.0,0.0,0.957512466855482,-8.008983513573572,1.0,0.0,0.0 -541,7.0,16.357656282267268,30.0,4.534075293543011e-09,35.537050299548824,0.967254010357948,-7.432515417543139,0.0,1.0,0.0 -541,8.0,0.0,0.0,0.0,0.0,1.0239576928694645,-11.73223974105094,1.0,0.0,0.0 -541,9.0,3.162480214571672,2.0,0.0,0.0,1.011845356766263,-11.7322397411364,1.0,0.0,0.0 -541,10.0,0.0,0.0,1.404856911585847e-09,11.5272113773067,1.0468610193115604,-11.732239740894752,0.0,1.0,0.0 -541,11.0,6.10685834537978,7.5,0.0,0.0,1.0245324747047704,-10.308117731805655,1.0,0.0,0.0 -541,12.0,0.0,0.0,5.9626106754426655e-09,14.586992933048592,1.0440918554241725,-10.30811773135854,0.0,1.0,0.0 -541,13.0,3.380582298335236,1.6,0.0,0.0,1.0131349323401326,-10.86197284000894,1.0,0.0,0.0 -541,14.0,4.471092717153053,2.5,0.0,0.0,1.0087165990982878,-10.972407836414131,1.0,0.0,0.0 -541,15.0,1.9083932329311812,1.8,0.0,0.0,1.0122533384742634,-11.009173013489344,1.0,0.0,0.0 -541,16.0,4.907296884680181,5.8,0.0,0.0,1.0078451278906029,-11.602613691918965,1.0,0.0,0.0 -541,17.0,1.7448166701085088,0.9,0.0,0.0,1.0006381153902242,-11.577490159995929,1.0,0.0,0.0 -541,18.0,5.179924489384636,3.4,0.0,0.0,0.9981571157243412,-11.842462163601468,1.0,0.0,0.0 -541,19.0,1.1995614606996,0.7,0.0,0.0,1.0009242533402556,-11.846150246916746,1.0,0.0,0.0 -541,20.0,9.541966164655909,11.2,0.0,0.0,1.0014155921992658,-11.809022054683725,1.0,0.0,0.0 -541,21.0,0.0,0.0,0.0,0.0,1.0018313000369483,-11.77514039823577,1.0,0.0,0.0 -541,22.0,1.7448166701085088,1.6,0.0,0.0,0.9990809940874744,-11.254453964633573,1.0,0.0,0.0 -541,23.0,4.743720321857508,6.7,0.0,0.0,0.9929200496333452,-11.49006579627809,1.0,0.0,0.0 -541,24.0,0.0,0.0,0.0,0.0,0.9858029818565184,-10.649893713609558,1.0,0.0,0.0 -541,25.0,1.9083932329311812,2.3,0.0,0.0,0.9718126553631043,-10.733664669256022,1.0,0.0,0.0 -541,26.0,0.0,0.0,0.0,0.0,0.9882549557403072,-10.048483800227638,1.0,0.0,0.0 -541,27.0,0.0,0.0,0.0,0.0,0.9650348709873092,-7.395037230305015,1.0,0.0,0.0 -541,28.0,1.3086125025813815,0.9,0.0,0.0,0.9745174974304872,-10.678535052815626,1.0,0.0,0.0 -541,29.0,5.779705219734435,1.9,0.0,0.0,0.967029518364562,-11.151948827283764,1.0,0.0,0.0 -542,0.0,0.0,0.0,161.14247975558283,0.0035706172075045,1.0,0.0,0.0,0.0,1.0 -542,1.0,11.832038044173323,12.7,3.231268373648228e-06,9.683371427953062,0.9801641575110592,-3.691374081985208,0.0,1.0,0.0 -542,2.0,1.3086125025813815,1.2,0.0,0.0,0.9747941269957991,-4.8645300440940735,1.0,0.0,0.0 -542,3.0,4.143939591507708,1.6,0.0,0.0,0.968309720052794,-5.978042433718989,1.0,0.0,0.0 -542,4.0,51.36304072631923,19.0,2.340423568668485e-09,23.849288777702583,0.9600824567888436,-8.884528290004628,0.0,1.0,0.0 -542,5.0,0.0,0.0,0.0,0.0,0.9674383788482216,-7.059626607164002,1.0,0.0,0.0 -542,6.0,12.431818774523125,10.9,0.0,0.0,0.9579477948677192,-8.082220321850869,1.0,0.0,0.0 -542,7.0,16.357656282267268,30.0,1.6027567040797986e-09,28.004521068072265,0.9655860415203008,-7.460991645737917,0.0,1.0,0.0 -542,8.0,0.0,0.0,0.0,0.0,1.0167281797472174,-8.949695585484239,1.0,0.0,0.0 -542,9.0,3.162480214571672,2.0,0.0,0.0,1.008836468963214,-9.9296662906154,1.0,0.0,0.0 -542,10.0,0.0,0.0,-6.568027206842201e-10,22.0494740456866,1.059995265468363,-8.94969558555687,0.0,1.0,0.0 -542,11.0,6.10685834537978,7.5,0.0,0.0,1.0200316330783952,-9.499722663308813,1.0,0.0,0.0 -542,12.0,0.0,0.0,1.890204454048529e-09,13.865453872983302,1.0387196736674782,-9.499722663165707,0.0,1.0,0.0 -542,13.0,3.380582298335236,1.6,0.0,0.0,1.008487723851675,-9.981288390228071,1.0,0.0,0.0 -542,14.0,4.471092717153053,2.5,0.0,0.0,1.0044900331471125,-10.014082439196754,1.0,0.0,0.0 -542,15.0,1.9083932329311812,1.8,0.0,0.0,1.0090897608589573,-9.779901784858463,1.0,0.0,0.0 -542,16.0,4.907296884680181,5.8,0.0,0.0,1.004572249673194,-9.979354062782168,1.0,0.0,0.0 -542,17.0,1.7448166701085088,0.9,0.0,0.0,0.996894791853409,-10.32574557661784,1.0,0.0,0.0 -542,18.0,5.179924489384636,3.4,0.0,0.0,0.994683155434199,-10.41435135100693,1.0,0.0,0.0 -542,19.0,1.1995614606996,0.7,0.0,0.0,0.9976099101401608,-10.324128875218642,1.0,0.0,0.0 -542,20.0,9.541966164655909,11.2,0.0,0.0,0.9970875991810162,-10.114747988313049,1.0,0.0,0.0 -542,21.0,0.0,0.0,0.0,0.0,1.0000460432669878,-10.19429173249818,1.0,0.0,0.0 -542,22.0,1.7448166701085088,1.6,0.0,0.0,0.994640896401294,-10.26584529476568,1.0,0.0,0.0 -542,23.0,4.743720321857508,6.7,0.0,0.0,0.9882150555208524,-10.459336683524755,1.0,0.0,0.0 -542,24.0,0.0,0.0,0.0,0.0,0.976605700168438,-10.57561568771681,1.0,0.0,0.0 -542,25.0,1.9083932329311812,2.3,0.0,0.0,0.9624796920050454,-10.660995526979786,1.0,0.0,0.0 -542,26.0,0.0,0.0,0.0,0.0,0.9852646316157118,-9.008829982386176,1.0,0.0,0.0 -542,27.0,0.0,0.0,0.0,0.0,0.9657484177188692,-7.349999613112306,1.0,0.0,0.0 -542,28.0,1.3086125025813815,0.9,0.0,0.0,0.9714830252423022,-9.642764750979472,1.0,0.0,0.0 -542,29.0,5.779705219734435,1.9,0.0,0.0,0.9639709166823394,-10.119160947497202,1.0,0.0,0.0 -543,0.0,0.0,0.0,138.00001092546617,0.0004701617807967,1.0,0.0,0.0,0.0,1.0 -543,1.0,11.832038044173323,12.7,25.001854744344744,13.739044663644805,0.975178178030251,-4.637418367915952,0.0,1.0,0.0 -543,2.0,1.3086125025813815,1.2,0.0,0.0,0.9494974925428108,-9.573336992521144,1.0,0.0,0.0 -543,3.0,4.143939591507708,1.6,0.0,0.0,0.950007353911717,-9.548720571332955,1.0,0.0,0.0 -543,4.0,51.36304072631923,19.0,7.249523594961936e-10,26.47747098702017,0.9531253294408728,-10.95955670684042,0.0,1.0,0.0 -543,5.0,0.0,0.0,0.0,0.0,0.9528077086305003,-10.093508648713405,1.0,0.0,0.0 -543,6.0,12.431818774523125,10.9,0.0,0.0,0.946190881585608,-10.72714215846766,1.0,0.0,0.0 -543,7.0,16.357656282267268,30.0,6.251560022548205e-10,33.11521515639063,0.9527365047597616,-10.552115278237126,0.0,1.0,0.0 -543,8.0,0.0,0.0,0.0,0.0,1.000867244320393,-12.138036769948323,1.0,0.0,0.0 -543,9.0,3.162480214571672,2.0,0.0,0.0,0.9902692686736738,-13.201612247906636,1.0,0.0,0.0 -543,10.0,0.0,0.0,9.721264524921255e-10,23.99843190285202,1.0484760918158853,-12.138036769837926,0.0,1.0,0.0 -543,11.0,6.10685834537978,7.5,0.0,0.0,0.9994160674275764,-12.681244436718796,1.0,0.0,0.0 -543,12.0,0.0,0.0,8.890449495013753e-10,11.024819368267966,1.01462828586326,-12.68124443664847,0.0,1.0,0.0 -543,13.0,3.380582298335236,1.6,0.0,0.0,0.9893051784779738,-13.08073922852741,1.0,0.0,0.0 -543,14.0,4.471092717153053,2.5,0.0,0.0,0.987528992030472,-13.052784996499843,1.0,0.0,0.0 -543,15.0,1.9083932329311812,1.8,0.0,0.0,0.9891880738903992,-13.008889002788402,1.0,0.0,0.0 -543,16.0,4.907296884680181,5.8,0.0,0.0,0.9855181614780572,-13.240034324802002,1.0,0.0,0.0 -543,17.0,1.7448166701085088,0.9,0.0,0.0,0.9636216928744707,-14.236130131918603,1.0,0.0,0.0 -543,18.0,5.179924489384636,3.4,0.0,0.0,0.9659869908652874,-14.132771141312578,1.0,0.0,0.0 -543,19.0,1.1995614606996,0.7,0.0,0.0,0.9714617823946858,-13.934535105403754,1.0,0.0,0.0 -543,20.0,9.541966164655909,11.2,0.0,0.0,0.9798002659071302,-13.363041764103627,1.0,0.0,0.0 -543,21.0,0.0,0.0,0.0,0.0,0.9802768965305486,-13.353855719173993,1.0,0.0,0.0 -543,22.0,1.7448166701085088,1.6,0.0,0.0,0.97760607747529,-13.270376874371705,1.0,0.0,0.0 -543,23.0,4.743720321857508,6.7,0.0,0.0,0.971187421103681,-13.412413084161482,1.0,0.0,0.0 -543,24.0,0.0,0.0,0.0,0.0,0.9650013451799836,-13.067277323853554,1.0,0.0,0.0 -543,25.0,1.9083932329311812,2.3,0.0,0.0,0.9507002853876352,-13.1547544739239,1.0,0.0,0.0 -543,26.0,0.0,0.0,0.0,0.0,0.9682951063220868,-12.770193837804667,1.0,0.0,0.0 -543,27.0,0.0,0.0,0.0,0.0,0.9509029905560568,-10.469736398698304,1.0,0.0,0.0 -543,28.0,1.3086125025813815,0.9,0.0,0.0,0.954257333423443,-13.42686611286074,1.0,0.0,0.0 -543,29.0,5.779705219734435,1.9,0.0,0.0,0.946605200571471,-13.920740485081511,1.0,0.0,0.0 -544,0.0,0.0,0.0,161.10432350860003,0.0005643854974479,1.0,0.0,0.0,0.0,1.0 -544,1.0,11.832038044173323,12.7,7.156961190779646e-07,10.411988244494609,0.9803276090480942,-3.696570664673021,0.0,1.0,0.0 -544,2.0,1.3086125025813815,1.2,0.0,0.0,0.9743316115165126,-4.848128616458175,1.0,0.0,0.0 -544,3.0,4.143939591507708,1.6,0.0,0.0,0.9677373584950346,-5.957890725365198,1.0,0.0,0.0 -544,4.0,51.36304072631923,19.0,-7.66582812575979e-10,24.13064822153217,0.9604390931212556,-8.897742518770745,0.0,1.0,0.0 -544,5.0,0.0,0.0,0.0,0.0,0.9673935083162069,-7.073265417998087,1.0,0.0,0.0 -544,6.0,12.431818774523125,10.9,0.0,0.0,0.958068061182218,-8.095444280686689,1.0,0.0,0.0 -544,7.0,16.357656282267268,30.0,-5.155132973145821e-10,30.52514446731148,0.966392607120946,-7.500982336637066,0.0,1.0,0.0 -544,8.0,0.0,0.0,0.0,0.0,1.0157550096991046,-8.879378673286409,1.0,0.0,0.0 -544,9.0,3.162480214571672,2.0,0.0,0.0,1.0068374560184932,-9.817646369766722,1.0,0.0,0.0 -544,10.0,0.0,0.0,1.015429860021584e-10,22.52885066126041,1.0599640644646446,-8.879378673275172,0.0,1.0,0.0 -544,11.0,6.10685834537978,7.5,0.0,0.0,1.0137791088014556,-9.350614709947104,1.0,0.0,0.0 -544,12.0,0.0,0.0,-6.646689440761528e-10,9.834444575538932,1.0271829742767848,-9.350614709998306,0.0,1.0,0.0 -544,13.0,3.380582298335236,1.6,0.0,0.0,1.0027611680550146,-9.818036743884049,1.0,0.0,0.0 -544,14.0,4.471092717153053,2.5,0.0,0.0,0.999452417811596,-9.844997820898325,1.0,0.0,0.0 -544,15.0,1.9083932329311812,1.8,0.0,0.0,1.0046274975362202,-9.656729724457817,1.0,0.0,0.0 -544,16.0,4.907296884680181,5.8,0.0,0.0,1.0017967320802887,-9.861454551792376,1.0,0.0,0.0 -544,17.0,1.7448166701085088,0.9,0.0,0.0,0.9928883175271246,-10.179871316243696,1.0,0.0,0.0 -544,18.0,5.179924489384636,3.4,0.0,0.0,0.9912975098665509,-10.281405099909492,1.0,0.0,0.0 -544,19.0,1.1995614606996,0.7,0.0,0.0,0.9945652390215768,-10.197139434883598,1.0,0.0,0.0 -544,20.0,9.541966164655909,11.2,0.0,0.0,0.9962828612091162,-9.991472345148722,1.0,0.0,0.0 -544,21.0,0.0,0.0,0.0,0.0,0.9966672936080028,-9.988168724050146,1.0,0.0,0.0 -544,22.0,1.7448166701085088,1.6,0.0,0.0,0.9910109720786754,-10.022299456228884,1.0,0.0,0.0 -544,23.0,4.743720321857508,6.7,0.0,0.0,0.9864667873957907,-10.112734582199575,1.0,0.0,0.0 -544,24.0,0.0,0.0,0.0,0.0,0.9801238786488712,-9.841383887365737,1.0,0.0,0.0 -544,25.0,1.9083932329311812,2.3,0.0,0.0,0.9660500861942732,-9.926142831621744,1.0,0.0,0.0 -544,26.0,0.0,0.0,0.0,0.0,0.9832247626485564,-9.593047513087503,1.0,0.0,0.0 -544,27.0,0.0,0.0,0.0,0.0,0.9653620895203664,-7.426962620706711,1.0,0.0,0.0 -544,28.0,1.3086125025813815,0.9,0.0,0.0,0.9694128725912794,-10.229652192260374,1.0,0.0,0.0 -544,29.0,5.779705219734435,1.9,0.0,0.0,0.9618842118139324,-10.70809927411973,1.0,0.0,0.0 -545,0.0,0.0,0.0,161.3352291964315,0.0016071780540194,1.0,0.0,0.0,0.0,1.0 -545,1.0,11.832038044173323,12.7,1.3913107396783536e-06,13.987314505139068,0.9808372050694872,-3.707474371965411,0.0,1.0,0.0 -545,2.0,1.3086125025813815,1.2,0.0,0.0,0.972782795387099,-4.846421887729513,1.0,0.0,0.0 -545,3.0,4.143939591507708,1.6,0.0,0.0,0.9658285580874152,-5.956495779729616,1.0,0.0,0.0 -545,4.0,51.36304072631923,19.0,8.45197700497304e-10,25.89526587029249,0.9613454940902,-8.908878202288868,0.0,1.0,0.0 -545,5.0,0.0,0.0,0.0,0.0,0.9650843024574624,-7.011785091177847,1.0,0.0,0.0 -545,6.0,12.431818774523125,10.9,0.0,0.0,0.9570725287032426,-8.06267190267445,1.0,0.0,0.0 -545,7.0,16.357656282267268,30.0,1.3793878263477122e-09,39.975802571064094,0.9675169594291314,-7.501089290911162,0.0,1.0,0.0 -545,8.0,0.0,0.0,0.0,0.0,0.990160401967668,-8.657014089926596,1.0,0.0,0.0 -545,9.0,3.162480214571672,2.0,0.0,0.0,0.9922690926375856,-9.522200044003336,1.0,0.0,0.0 -545,10.0,0.0,0.0,0.0,0.0,0.990160401967668,-8.657014089926596,0.0,1.0,0.0 -545,11.0,6.10685834537978,7.5,0.0,0.0,1.0106413523349445,-9.719897405216724,1.0,0.0,0.0 -545,12.0,0.0,0.0,2.1295852863436435e-09,17.84848149912792,1.0347891453524942,-9.719897405053382,0.0,1.0,0.0 -545,13.0,3.380582298335236,1.6,0.0,0.0,0.9961602190312464,-10.263259656886524,1.0,0.0,0.0 -545,14.0,4.471092717153053,2.5,0.0,0.0,0.9890492491792284,-10.28391401816952,1.0,0.0,0.0 -545,15.0,1.9083932329311812,1.8,0.0,0.0,0.996929151018111,-9.719978931611724,1.0,0.0,0.0 -545,16.0,4.907296884680181,5.8,0.0,0.0,0.9891795129980528,-9.688950937389144,1.0,0.0,0.0 -545,17.0,1.7448166701085088,0.9,0.0,0.0,0.9684535213635396,-11.024904957212405,1.0,0.0,0.0 -545,18.0,5.179924489384636,3.4,0.0,0.0,0.9586554014286466,-11.37188633926979,1.0,0.0,0.0 -545,19.0,1.1995614606996,0.7,0.0,0.0,0.957732353729886,-11.407937536662848,1.0,0.0,0.0 -545,20.0,9.541966164655909,11.2,0.0,0.0,0.9821551592509384,-9.746061294650884,1.0,0.0,0.0 -545,21.0,0.0,0.0,0.0,0.0,0.982729229168298,-9.757350969039583,1.0,0.0,0.0 -545,22.0,1.7448166701085088,1.6,0.0,0.0,0.979906213962448,-10.269765810854704,1.0,0.0,0.0 -545,23.0,4.743720321857508,6.7,0.0,0.0,0.9744770239833936,-10.098228367041347,1.0,0.0,0.0 -545,24.0,0.0,0.0,0.0,0.0,0.9717780153238416,-9.86558454938651,1.0,0.0,0.0 -545,25.0,1.9083932329311812,2.3,0.0,0.0,0.9575797126814451,-9.951827606964864,1.0,0.0,0.0 -545,26.0,0.0,0.0,0.0,0.0,0.9772168258366908,-9.635987461608355,1.0,0.0,0.0 -545,27.0,0.0,0.0,0.0,0.0,0.9633190901435984,-7.380146783256286,1.0,0.0,0.0 -545,28.0,1.3086125025813815,0.9,0.0,0.0,0.9633149418844704,-10.280554976543405,1.0,0.0,0.0 -545,29.0,5.779705219734435,1.9,0.0,0.0,0.9557370909389654,-10.765120993663574,1.0,0.0,0.0 -546,0.0,0.0,0.0,161.23198453811787,0.0250519064983301,1.0,0.0,0.0,0.0,1.0 -546,1.0,11.832038044173323,12.7,0.0,0.0,0.9792985537233312,-3.675317720870136,0.0,1.0,0.0 -546,2.0,1.3086125025813815,1.2,0.0,0.0,0.9772277638128488,-4.907467333549243,1.0,0.0,0.0 -546,3.0,4.143939591507708,1.6,0.0,0.0,0.9713150536345626,-6.030185562656811,1.0,0.0,0.0 -546,4.0,51.36304072631923,19.0,1.6711735775786262e-09,27.7260275766981,0.9658495706004444,-8.943350322440464,0.0,1.0,0.0 -546,5.0,0.0,0.0,0.0,0.0,0.9717657652172677,-7.1155131889372685,1.0,0.0,0.0 -546,6.0,12.431818774523125,10.9,0.0,0.0,0.9629098578914178,-8.136045493404158,1.0,0.0,0.0 -546,7.0,16.357656282267268,30.0,2.406712866166001e-09,32.39072949272115,0.9715034789290812,-7.55090505168832,0.0,1.0,0.0 -546,8.0,0.0,0.0,0.0,0.0,1.021521920704537,-8.798363710872389,1.0,0.0,0.0 -546,9.0,3.162480214571672,2.0,0.0,0.0,1.0162722709108865,-9.668408885801274,1.0,0.0,0.0 -546,10.0,0.0,0.0,2.1856469403976127e-09,19.60639933635594,1.059995035441926,-8.798363710631836,0.0,1.0,0.0 -546,11.0,6.10685834537978,7.5,0.0,0.0,1.0249811162360916,-9.596904057865258,1.0,0.0,0.0 -546,12.0,0.0,0.0,2.489964024394139e-09,17.27039435424388,1.0480511282276157,-9.596904057679328,0.0,1.0,0.0 -546,13.0,3.380582298335236,1.6,0.0,0.0,1.011751597396122,-10.106777575507246,1.0,0.0,0.0 -546,14.0,4.471092717153053,2.5,0.0,0.0,1.005869984073667,-10.132460406665896,1.0,0.0,0.0 -546,15.0,1.9083932329311812,1.8,0.0,0.0,1.0153872382975246,-9.727537860666162,1.0,0.0,0.0 -546,16.0,4.907296884680181,5.8,0.0,0.0,1.011604999345579,-9.78053270155482,1.0,0.0,0.0 -546,17.0,1.7448166701085088,0.9,0.0,0.0,0.9886532363116782,-10.738413506589662,1.0,0.0,0.0 -546,18.0,5.179924489384636,3.4,0.0,0.0,0.980788846316198,-11.005486461477318,1.0,0.0,0.0 -546,19.0,1.1995614606996,0.7,0.0,0.0,1.01371983592707,-9.771402072660122,1.0,0.0,0.0 -546,20.0,9.541966164655909,11.2,0.0,0.0,1.005559197921403,-9.866660388012455,1.0,0.0,0.0 -546,21.0,0.0,0.0,0.0,0.0,1.005855703195768,-9.872201860746232,1.0,0.0,0.0 -546,22.0,1.7448166701085088,1.6,0.0,0.0,0.998110627133577,-10.183715765791188,1.0,0.0,0.0 -546,23.0,4.743720321857508,6.7,0.0,0.0,0.9944077175375032,-10.105769056097849,1.0,0.0,0.0 -546,24.0,0.0,0.0,0.0,0.0,0.9869669346970882,-9.830760304074705,1.0,0.0,0.0 -546,25.0,1.9083932329311812,2.3,0.0,0.0,0.9729935909620032,-9.914330911526587,1.0,0.0,0.0 -546,26.0,0.0,0.0,0.0,0.0,0.9893335075921064,-9.582422707514835,1.0,0.0,0.0 -546,27.0,0.0,0.0,0.0,0.0,0.9700845379840932,-7.4676301987409905,1.0,0.0,0.0 -546,28.0,1.3086125025813815,0.9,0.0,0.0,0.975611901353053,-10.211082048664988,1.0,0.0,0.0 -546,29.0,5.779705219734435,1.9,0.0,0.0,0.9681325861928062,-10.683427077024966,1.0,0.0,0.0 -547,0.0,0.0,0.0,166.31261306051815,0.002033770769394,1.0,0.0,0.0,0.0,1.0 -547,1.0,11.832038044173323,12.7,7.101584970018246e-06,-0.7640375321024848,0.9798001185619896,-3.4859354045320843,0.0,1.0,0.0 -547,2.0,1.3086125025813815,1.2,0.0,0.0,0.9751622693058009,-5.953157957569731,1.0,0.0,0.0 -547,3.0,4.143939591507708,1.6,0.0,0.0,0.9689772271416532,-7.329475218722862,1.0,0.0,0.0 -547,4.0,51.36304072631923,19.0,-5.1775244421140785e-09,35.16686696201202,0.9400032705837548,-17.434258028998173,0.0,1.0,0.0 -547,5.0,0.0,0.0,0.0,0.0,0.9634836927917791,-9.655632923211416,1.0,0.0,0.0 -547,6.0,12.431818774523125,10.9,0.0,0.0,0.9467970993072596,-13.0889372080445,1.0,0.0,0.0 -547,7.0,16.357656282267268,30.0,-3.82652046400791e-10,39.96036241617416,0.9658765905495884,-10.16985888642777,0.0,1.0,0.0 -547,8.0,0.0,0.0,0.0,0.0,1.0101433697208932,-13.020519534557156,1.0,0.0,0.0 -547,9.0,3.162480214571672,2.0,0.0,0.0,0.9997570892635076,-14.773305433647645,1.0,0.0,0.0 -547,10.0,0.0,0.0,-1.21570723716553e-09,23.9981751595936,1.057352058565438,-13.0205195346928,0.0,1.0,0.0 -547,11.0,6.10685834537978,7.5,0.0,0.0,0.9826558532202002,-17.491893979396405,1.0,0.0,0.0 -547,12.0,0.0,0.0,-1.1797986935399083e-08,19.97262429761437,1.0103315927663616,-17.49189398034962,0.0,1.0,0.0 -547,13.0,3.380582298335236,1.6,0.0,0.0,0.9728683095453928,-17.55749573816255,1.0,0.0,0.0 -547,14.0,4.471092717153053,2.5,0.0,0.0,0.9739009421309832,-17.199075185922883,1.0,0.0,0.0 -547,15.0,1.9083932329311812,1.8,0.0,0.0,0.9855316252307929,-16.47046049229395,1.0,0.0,0.0 -547,16.0,4.907296884680181,5.8,0.0,0.0,0.990133442485674,-15.378435160155696,1.0,0.0,0.0 -547,17.0,1.7448166701085088,0.9,0.0,0.0,0.9736644503298963,-16.69652667510121,1.0,0.0,0.0 -547,18.0,5.179924489384636,3.4,0.0,0.0,0.9759237878143674,-16.298301841021285,1.0,0.0,0.0 -547,19.0,1.1995614606996,0.7,0.0,0.0,0.981335316546508,-15.948636358029471,1.0,0.0,0.0 -547,20.0,9.541966164655909,11.2,0.0,0.0,0.983625776270174,-15.127279793033711,1.0,0.0,0.0 -547,21.0,0.0,0.0,0.0,0.0,0.9822666555002924,-15.178915367024194,1.0,0.0,0.0 -547,22.0,1.7448166701085088,1.6,0.0,0.0,0.9694642164978368,-16.550270438580316,1.0,0.0,0.0 -547,23.0,4.743720321857508,6.7,0.0,0.0,0.9705457597786756,-15.525597665520886,1.0,0.0,0.0 -547,24.0,0.0,0.0,0.0,0.0,0.971660787122033,-14.285359760552009,1.0,0.0,0.0 -547,25.0,1.9083932329311812,2.3,0.0,0.0,0.9574607196626552,-14.371623944318875,1.0,0.0,0.0 -547,26.0,0.0,0.0,0.0,0.0,0.9793065508425446,-13.43162538021686,1.0,0.0,0.0 -547,27.0,0.0,0.0,0.0,0.0,0.9614690728800332,-10.161080039460815,1.0,0.0,0.0 -547,28.0,1.3086125025813815,0.9,0.0,0.0,0.9654361057533444,-14.073406252898277,1.0,0.0,0.0 -547,29.0,5.779705219734435,1.9,0.0,0.0,0.9578754394619536,-14.555830519328692,1.0,0.0,0.0 -548,0.0,0.0,0.0,161.1263778549413,0.003987274434003,1.0,0.0,0.0,0.0,1.0 -548,1.0,11.832038044173323,12.7,3.340818038480309e-06,11.74089939165166,0.9802234903201096,-3.7748661599782336,0.0,1.0,0.0 -548,2.0,1.3086125025813815,1.2,0.0,0.0,0.97433746126843,-4.627023457305719,1.0,0.0,0.0 -548,3.0,4.143939591507708,1.6,0.0,0.0,0.9677142678347082,-5.683275277317175,1.0,0.0,0.0 -548,4.0,51.36304072631923,19.0,6.311270701192778e-09,22.8090399491617,0.9607737002621354,-10.149335564416786,0.0,1.0,0.0 -548,5.0,0.0,0.0,0.0,0.0,0.9670251175267528,-6.664233695705835,1.0,0.0,0.0 -548,6.0,12.431818774523125,10.9,0.0,0.0,0.9548215418821334,-7.129058963697143,1.0,0.0,0.0 -548,7.0,16.357656282267268,30.0,4.260592734091008e-09,32.47951109271319,0.9667573896567064,-7.104815463747948,0.0,1.0,0.0 -548,8.0,0.0,0.0,0.0,0.0,1.0157099103813656,-8.492007895411785,1.0,0.0,0.0 -548,9.0,3.162480214571672,2.0,0.0,0.0,1.0069341811121,-9.441072784246105,1.0,0.0,0.0 -548,10.0,0.0,0.0,4.210863743846764e-09,22.570892670698303,1.059999965370783,-8.492007894945685,0.0,1.0,0.0 -548,11.0,6.10685834537978,7.5,0.0,0.0,1.0141386694887655,-9.029523995375516,1.0,0.0,0.0 -548,12.0,0.0,0.0,6.138596566936825e-09,10.238158970836928,1.02808059450494,-9.02952399490324,0.0,1.0,0.0 -548,13.0,3.380582298335236,1.6,0.0,0.0,1.003071193383711,-9.490112820920526,1.0,0.0,0.0 -548,14.0,4.471092717153053,2.5,0.0,0.0,0.9997568459599734,-9.509407221465004,1.0,0.0,0.0 -548,15.0,1.9083932329311812,1.8,0.0,0.0,1.00491221131731,-9.311235355694471,1.0,0.0,0.0 -548,16.0,4.907296884680181,5.8,0.0,0.0,1.0019412990393457,-9.49475707598472,1.0,0.0,0.0 -548,17.0,1.7448166701085088,0.9,0.0,0.0,0.993124770790036,-9.829676332845253,1.0,0.0,0.0 -548,18.0,5.179924489384636,3.4,0.0,0.0,0.9914924764693944,-9.922548032384157,1.0,0.0,0.0 -548,19.0,1.1995614606996,0.7,0.0,0.0,0.9947378429236072,-9.833769850674464,1.0,0.0,0.0 -548,20.0,9.541966164655909,11.2,0.0,0.0,0.9963870383632516,-9.616150571251929,1.0,0.0,0.0 -548,21.0,0.0,0.0,0.0,0.0,0.996773315031922,-9.613263976612195,1.0,0.0,0.0 -548,22.0,1.7448166701085088,1.6,0.0,0.0,0.991239109314802,-9.672370833428934,1.0,0.0,0.0 -548,23.0,4.743720321857508,6.7,0.0,0.0,0.9865885589693624,-9.743559540362591,1.0,0.0,0.0 -548,24.0,0.0,0.0,0.0,0.0,0.9801716369100364,-9.45749757439092,1.0,0.0,0.0 -548,25.0,1.9083932329311812,2.3,0.0,0.0,0.9660985505747838,-9.542248137157822,1.0,0.0,0.0 -548,26.0,0.0,0.0,0.0,0.0,0.983221758479606,-9.20008188771886,1.0,0.0,0.0 -548,27.0,0.0,0.0,0.0,0.0,0.9651768409846854,-7.022504137705143,1.0,0.0,0.0 -548,28.0,1.3086125025813815,0.9,0.0,0.0,0.9694098237226902,-9.836690511446845,1.0,0.0,0.0 -548,29.0,5.779705219734435,1.9,0.0,0.0,0.9618811385136244,-10.315140623581396,1.0,0.0,0.0 -549,0.0,0.0,0.0,161.10432350860003,0.0005643854974479,1.0,0.0,0.0,0.0,1.0 -549,1.0,11.832038044173323,12.7,7.156961190779646e-07,10.411988244494609,0.9803276090480942,-3.696570664673021,0.0,1.0,0.0 -549,2.0,1.3086125025813815,1.2,0.0,0.0,0.9743316115165126,-4.848128616458175,1.0,0.0,0.0 -549,3.0,4.143939591507708,1.6,0.0,0.0,0.9677373584950346,-5.957890725365198,1.0,0.0,0.0 -549,4.0,51.36304072631923,19.0,-7.66582812575979e-10,24.13064822153217,0.9604390931212556,-8.897742518770745,0.0,1.0,0.0 -549,5.0,0.0,0.0,0.0,0.0,0.9673935083162069,-7.073265417998087,1.0,0.0,0.0 -549,6.0,12.431818774523125,10.9,0.0,0.0,0.958068061182218,-8.095444280686689,1.0,0.0,0.0 -549,7.0,16.357656282267268,30.0,-5.155132973145821e-10,30.52514446731148,0.966392607120946,-7.500982336637066,0.0,1.0,0.0 -549,8.0,0.0,0.0,0.0,0.0,1.0157550096991046,-8.879378673286409,1.0,0.0,0.0 -549,9.0,3.162480214571672,2.0,0.0,0.0,1.0068374560184932,-9.817646369766722,1.0,0.0,0.0 -549,10.0,0.0,0.0,1.015429860021584e-10,22.52885066126041,1.0599640644646446,-8.879378673275172,0.0,1.0,0.0 -549,11.0,6.10685834537978,7.5,0.0,0.0,1.0137791088014556,-9.350614709947104,1.0,0.0,0.0 -549,12.0,0.0,0.0,-6.646689440761528e-10,9.834444575538932,1.0271829742767848,-9.350614709998306,0.0,1.0,0.0 -549,13.0,3.380582298335236,1.6,0.0,0.0,1.0027611680550146,-9.818036743884049,1.0,0.0,0.0 -549,14.0,4.471092717153053,2.5,0.0,0.0,0.999452417811596,-9.844997820898325,1.0,0.0,0.0 -549,15.0,1.9083932329311812,1.8,0.0,0.0,1.0046274975362202,-9.656729724457817,1.0,0.0,0.0 -549,16.0,4.907296884680181,5.8,0.0,0.0,1.0017967320802887,-9.861454551792376,1.0,0.0,0.0 -549,17.0,1.7448166701085088,0.9,0.0,0.0,0.9928883175271246,-10.179871316243696,1.0,0.0,0.0 -549,18.0,5.179924489384636,3.4,0.0,0.0,0.9912975098665509,-10.281405099909492,1.0,0.0,0.0 -549,19.0,1.1995614606996,0.7,0.0,0.0,0.9945652390215768,-10.197139434883598,1.0,0.0,0.0 -549,20.0,9.541966164655909,11.2,0.0,0.0,0.9962828612091162,-9.991472345148722,1.0,0.0,0.0 -549,21.0,0.0,0.0,0.0,0.0,0.9966672936080028,-9.988168724050146,1.0,0.0,0.0 -549,22.0,1.7448166701085088,1.6,0.0,0.0,0.9910109720786754,-10.022299456228884,1.0,0.0,0.0 -549,23.0,4.743720321857508,6.7,0.0,0.0,0.9864667873957907,-10.112734582199575,1.0,0.0,0.0 -549,24.0,0.0,0.0,0.0,0.0,0.9801238786488712,-9.841383887365737,1.0,0.0,0.0 -549,25.0,1.9083932329311812,2.3,0.0,0.0,0.9660500861942732,-9.926142831621744,1.0,0.0,0.0 -549,26.0,0.0,0.0,0.0,0.0,0.9832247626485564,-9.593047513087503,1.0,0.0,0.0 -549,27.0,0.0,0.0,0.0,0.0,0.9653620895203664,-7.426962620706711,1.0,0.0,0.0 -549,28.0,1.3086125025813815,0.9,0.0,0.0,0.9694128725912794,-10.229652192260374,1.0,0.0,0.0 -549,29.0,5.779705219734435,1.9,0.0,0.0,0.9618842118139324,-10.70809927411973,1.0,0.0,0.0 -550,0.0,0.0,0.0,166.70015218022763,1.4085922020927732,1.0,0.0,0.0,0.0,1.0 -550,1.0,11.832038044173323,12.7,0.0,0.0,0.9821109274439256,-2.843146241265213,0.0,1.0,0.0 -550,2.0,1.3086125025813815,1.2,0.0,0.0,0.9699313871564964,-7.835856741452289,1.0,0.0,0.0 -550,3.0,4.143939591507708,1.6,0.0,0.0,0.9631495596401118,-9.67310552134522,1.0,0.0,0.0 -550,4.0,51.36304072631923,19.0,2.2328124955938143e-09,35.256531381399626,0.9400018368217306,-18.7307112685594,0.0,1.0,0.0 -550,5.0,0.0,0.0,0.0,0.0,0.9633058524671676,-10.94637427049151,1.0,0.0,0.0 -550,6.0,12.431818774523125,10.9,0.0,0.0,0.9466886820117736,-14.382222016528068,1.0,0.0,0.0 -550,7.0,16.357656282267268,30.0,2.6610135321218944e-09,39.99810712770423,0.9658440451867518,-11.436833276155422,0.0,1.0,0.0 -550,8.0,0.0,0.0,0.0,0.0,1.015875956142283,-12.704402349202248,1.0,0.0,0.0 -550,9.0,3.162480214571672,2.0,0.0,0.0,1.0092552507692178,-13.61165758825262,1.0,0.0,0.0 -550,10.0,0.0,0.0,2.806238740713413e-09,22.485563115929967,1.0599986276814302,-12.704402348891673,0.0,1.0,0.0 -550,11.0,6.10685834537978,7.5,0.0,0.0,1.0304962353105322,-13.15208205736451,1.0,0.0,0.0 -550,12.0,0.0,0.0,1.4935296380018275e-09,22.33708788624508,1.0599981023161544,-13.152082057254836,0.0,1.0,0.0 -550,13.0,3.380582298335236,1.6,0.0,0.0,1.0193238439702414,-13.593860272527827,1.0,0.0,0.0 -550,14.0,4.471092717153053,2.5,0.0,0.0,1.0158179405383945,-13.60201016316517,1.0,0.0,0.0 -550,15.0,1.9083932329311812,1.8,0.0,0.0,1.0152226715109047,-13.4223227037331,1.0,0.0,0.0 -550,16.0,4.907296884680181,5.8,0.0,0.0,1.0067976526588345,-13.655313229289211,1.0,0.0,0.0 -550,17.0,1.7448166701085088,0.9,0.0,0.0,1.0044337889246662,-13.939942634258385,1.0,0.0,0.0 -550,18.0,5.179924489384636,3.4,0.0,0.0,0.9999628118321198,-14.046334273473477,1.0,0.0,0.0 -550,19.0,1.1995614606996,0.7,0.0,0.0,1.0016755341673995,-13.966659160326426,1.0,0.0,0.0 -550,20.0,9.541966164655909,11.2,0.0,0.0,0.9978715794409184,-13.801919301956588,1.0,0.0,0.0 -550,21.0,0.0,0.0,0.0,0.0,0.9979843276129632,-13.803800982726234,1.0,0.0,0.0 -550,22.0,1.7448166701085088,1.6,0.0,0.0,1.0108929680093597,-13.70939091548797,1.0,0.0,0.0 -550,23.0,4.743720321857508,6.7,0.0,0.0,0.984065669301908,-13.975208657697571,1.0,0.0,0.0 -550,24.0,0.0,0.0,0.0,0.0,0.977140692950238,-13.715462118995696,1.0,0.0,0.0 -550,25.0,1.9083932329311812,2.3,0.0,0.0,0.9630226502960588,-13.80074709781042,1.0,0.0,0.0 -550,26.0,0.0,0.0,0.0,0.0,0.9799065364046292,-13.47445137156381,1.0,0.0,0.0 -550,27.0,0.0,0.0,0.0,0.0,0.9620983858369208,-11.31296561427216,1.0,0.0,0.0 -550,28.0,1.3086125025813815,0.9,0.0,0.0,0.9731032554199944,-13.682139899860616,1.0,0.0,0.0 -550,29.0,5.779705219734435,1.9,0.0,0.0,0.94783010479286,-15.24832228050281,1.0,0.0,0.0 -551,0.0,0.0,0.0,89.05650437598226,8.988189748038167e-07,1.0,0.0,0.0,0.0,1.0 -551,1.0,11.832038044173323,12.7,81.97709981437623,40.87484248003456,1.0043140741417365,-14.809675441076743,0.0,1.0,0.0 -551,2.0,1.3086125025813815,1.2,0.0,0.0,0.9674864352840752,-8.691401310835705,1.0,0.0,0.0 -551,3.0,4.143939591507708,1.6,0.0,0.0,0.9605216538342272,-10.739573751245215,1.0,0.0,0.0 -551,4.0,51.36304072631923,19.0,1.2820938051663935e-10,36.166832098787424,0.9491780961817996,-32.83360465985181,0.0,1.0,0.0 -551,5.0,0.0,0.0,0.0,0.0,0.9702666632901028,-25.13776335719839,1.0,0.0,0.0 -551,6.0,12.431818774523125,10.9,0.0,0.0,0.9546513658428332,-28.536153431063106,1.0,0.0,0.0 -551,7.0,16.357656282267268,30.0,3.363872252757109e-10,39.99996708169475,0.972622978114722,-25.59349500298496,0.0,1.0,0.0 -551,8.0,0.0,0.0,0.0,0.0,1.0109221180999948,-25.495030625250227,1.0,0.0,0.0 -551,9.0,3.162480214571672,2.0,0.0,0.0,0.995945431256562,-25.683238269000125,1.0,0.0,0.0 -551,10.0,0.0,0.0,1.1048170995647647e-09,23.999762956040733,1.0581005339018303,-25.495030625127136,0.0,1.0,0.0 -551,11.0,6.10685834537978,7.5,0.0,0.0,0.9890915823591218,-17.978937742871253,1.0,0.0,0.0 -551,12.0,0.0,0.0,1.532304373531525e-10,-1.4633439227898446,0.9870159507643952,-17.978937742858665,0.0,1.0,0.0 -551,13.0,3.380582298335236,1.6,0.0,0.0,0.9809523938522072,-19.343881829139463,1.0,0.0,0.0 -551,14.0,4.471092717153053,2.5,0.0,0.0,0.9749926035138824,-20.312776889419755,1.0,0.0,0.0 -551,15.0,1.9083932329311812,1.8,0.0,0.0,0.9664968670768908,-18.357216149281147,1.0,0.0,0.0 -551,16.0,4.907296884680181,5.8,0.0,0.0,0.9520575469957792,-18.75557543174437,1.0,0.0,0.0 -551,17.0,1.7448166701085088,0.9,0.0,0.0,0.9715993566050176,-22.579116821067867,1.0,0.0,0.0 -551,18.0,5.179924489384636,3.4,0.0,0.0,0.9725504712927906,-23.822111805049605,1.0,0.0,0.0 -551,19.0,1.1995614606996,0.7,0.0,0.0,0.9773511758442184,-24.331344754725528,1.0,0.0,0.0 -551,20.0,9.541966164655909,11.2,0.0,0.0,0.984267709105408,-25.64968546640537,1.0,0.0,0.0 -551,21.0,0.0,0.0,0.0,0.0,0.9843652862934644,-25.577800562187683,1.0,0.0,0.0 -551,22.0,1.7448166701085088,1.6,0.0,0.0,0.9699678065125902,-22.28084493162528,1.0,0.0,0.0 -551,23.0,4.743720321857508,6.7,0.0,0.0,0.9719921255240968,-24.757129456252866,1.0,0.0,0.0 -551,24.0,0.0,0.0,0.0,0.0,0.967396834799396,-25.82831309360241,1.0,0.0,0.0 -551,25.0,1.9083932329311812,2.3,0.0,0.0,0.953132270796002,-25.91535097677138,1.0,0.0,0.0 -551,26.0,0.0,0.0,0.0,0.0,0.9723512887326972,-26.408733655328383,1.0,0.0,0.0 -551,27.0,0.0,0.0,0.0,0.0,0.9680947902993464,-25.334568929677243,1.0,0.0,0.0 -551,28.0,1.3086125025813815,0.9,0.0,0.0,0.9654942898100964,-26.61968544569606,1.0,0.0,0.0 -551,29.0,5.779705219734435,1.9,0.0,0.0,0.9400000061370996,-28.211288038242227,1.0,0.0,0.0 -552,0.0,0.0,0.0,161.1275234143514,0.321445711655155,1.0,0.0,0.0,0.0,1.0 -552,1.0,11.832038044173323,12.7,0.0,0.0,0.9792562223244042,-3.676156220949367,0.0,1.0,0.0 -552,2.0,1.3086125025813815,1.2,0.0,0.0,0.9768769321736508,-4.888868599706349,1.0,0.0,0.0 -552,3.0,4.143939591507708,1.6,0.0,0.0,0.9708799238599374,-6.007270409079133,1.0,0.0,0.0 -552,4.0,51.36304072631923,19.0,-2.1998939070570328e-10,28.50015009341338,0.9664627158333202,-8.961024285503262,0.0,1.0,0.0 -552,5.0,0.0,0.0,0.0,0.0,0.971444948273367,-7.124336595571738,1.0,0.0,0.0 -552,6.0,12.431818774523125,10.9,0.0,0.0,0.9629723824952016,-8.148030360410184,1.0,0.0,0.0 -552,7.0,16.357656282267268,30.0,-3.2633315786278544e-10,34.407671880781955,0.9719134385075664,-7.572621147985099,0.0,1.0,0.0 -552,8.0,0.0,0.0,0.0,0.0,1.019210296687966,-8.89964308072623,1.0,0.0,0.0 -552,9.0,3.162480214571672,2.0,0.0,0.0,1.011725853298614,-9.821298150905909,1.0,0.0,0.0 -552,10.0,0.0,0.0,-2.8514104343295773e-10,20.78694711326394,1.0599997860488592,-8.899643080757683,0.0,1.0,0.0 -552,11.0,6.10685834537978,7.5,0.0,0.0,1.021644072883538,-9.4002649887073,1.0,0.0,0.0 -552,12.0,0.0,0.0,-3.716292858262709e-10,12.916117537203654,1.0390470997117742,-9.400264988735383,0.0,1.0,0.0 -552,13.0,3.380582298335236,1.6,0.0,0.0,1.010327936679569,-9.860041814973975,1.0,0.0,0.0 -552,14.0,4.471092717153053,2.5,0.0,0.0,1.0066776695620614,-9.877440045421055,1.0,0.0,0.0 -552,15.0,1.9083932329311812,1.8,0.0,0.0,1.011272587234404,-9.678886293877731,1.0,0.0,0.0 -552,16.0,4.907296884680181,5.8,0.0,0.0,1.007250400828486,-9.871931177993824,1.0,0.0,0.0 -552,17.0,1.7448166701085088,0.9,0.0,0.0,0.9993506463813916,-10.197469008948154,1.0,0.0,0.0 -552,18.0,5.179924489384636,3.4,0.0,0.0,0.9972926011471388,-10.29151154942383,1.0,0.0,0.0 -552,19.0,1.1995614606996,0.7,0.0,0.0,1.0002894144982868,-10.204887145662996,1.0,0.0,0.0 -552,20.0,9.541966164655909,11.2,0.0,0.0,1.0013516692741729,-9.995253130971005,1.0,0.0,0.0 -552,21.0,0.0,0.0,0.0,0.0,1.001774367107787,-9.992626646673171,1.0,0.0,0.0 -552,22.0,1.7448166701085088,1.6,0.0,0.0,0.9975924505607648,-10.046360192900812,1.0,0.0,0.0 -552,23.0,4.743720321857508,6.7,0.0,0.0,0.9921441957689574,-10.127905460103552,1.0,0.0,0.0 -552,24.0,0.0,0.0,0.0,0.0,0.9854482793298106,-9.858971208763691,1.0,0.0,0.0 -552,25.0,1.9083932329311812,2.3,0.0,0.0,0.9714527691754123,-9.94280336112496,1.0,0.0,0.0 -552,26.0,0.0,0.0,0.0,0.0,0.9882905167073088,-9.61340384791683,1.0,0.0,0.0 -552,27.0,0.0,0.0,0.0,0.0,0.9698266214478222,-7.479665864123462,1.0,0.0,0.0 -552,28.0,1.3086125025813815,0.9,0.0,0.0,0.974553581648391,-10.243409133432902,1.0,0.0,0.0 -552,29.0,5.779705219734435,1.9,0.0,0.0,0.9670658885639506,-10.716787611619042,1.0,0.0,0.0 -553,0.0,0.0,0.0,160.3429164848232,0.0005413379658314,1.0,0.0,0.0,0.0,1.0 -553,1.0,11.778351808304176,12.7,6.704077883171084e-07,10.33624950275606,0.9804002026129164,-3.678586220732796,0.0,1.0,0.0 -553,2.0,1.3026748543746554,1.2,0.0,0.0,0.9744293761349524,-4.824607501732465,1.0,0.0,0.0 -553,3.0,4.125137038853075,1.6,0.0,0.0,0.967853641687846,-5.92877055168338,1.0,0.0,0.0 -553,4.0,51.129988034205226,19.0,-7.54525980823369e-10,24.08620673248582,0.9605883148318856,-8.854392380286976,0.0,1.0,0.0 -553,5.0,0.0,0.0,0.0,0.0,0.9675218222387106,-7.038940239477295,1.0,0.0,0.0 -553,6.0,12.375411116559226,10.9,0.0,0.0,0.9582153115897214,-8.055681299474577,1.0,0.0,0.0 -553,7.0,16.28343567968319,30.0,-5.425025133805806e-10,30.503019005887403,0.966522380676769,-7.464534037569422,0.0,1.0,0.0 -553,8.0,0.0,0.0,0.0,0.0,1.015833113308682,-8.836594126720138,1.0,0.0,0.0 -553,9.0,3.1481308980720835,2.0,0.0,0.0,1.006927143619556,-9.77050895491404,1.0,0.0,0.0 -553,10.0,0.0,0.0,-1.3920785880455459e-11,22.48705050228877,1.0599602990954298,-8.836594126721682,0.0,1.0,0.0 -553,11.0,6.079149320415058,7.5,0.0,0.0,1.0138235274981189,-9.305450491078057,1.0,0.0,0.0 -553,12.0,0.0,0.0,-7.002721874775373e-10,9.779437634569303,1.0271528126058171,-9.305450491131996,0.0,1.0,0.0 -553,13.0,3.365243373801193,1.6,0.0,0.0,1.0028332266251108,-9.770087941742206,1.0,0.0,0.0 -553,14.0,4.450805752446739,2.5,0.0,0.0,0.9995357501124504,-9.796707481524685,1.0,0.0,0.0 -553,15.0,1.899734162629706,1.8,0.0,0.0,1.004701098541194,-9.609788989620258,1.0,0.0,0.0 -553,16.0,4.885030703904958,5.8,0.0,0.0,1.0018863030805585,-9.813598081689198,1.0,0.0,0.0 -553,17.0,1.736899805832874,0.9,0.0,0.0,0.992993326418458,-10.129735981427125,1.0,0.0,0.0 -553,18.0,5.156421298566344,3.4,0.0,0.0,0.9914099447832906,-10.230781228173251,1.0,0.0,0.0 -553,19.0,1.1941186165101008,0.7,0.0,0.0,0.994673057887788,-10.147218272951577,1.0,0.0,0.0 -553,20.0,9.498670813148529,11.2,0.0,0.0,0.996388332311962,-9.942674204526488,1.0,0.0,0.0 -553,21.0,0.0,0.0,0.0,0.0,0.996772523721008,-9.93944343989476,1.0,0.0,0.0 -553,22.0,1.736899805832874,1.6,0.0,0.0,0.9911174783572088,-9.972715078941745,1.0,0.0,0.0 -553,23.0,4.722196347108126,6.7,0.0,0.0,0.9865926781036964,-10.062670576714629,1.0,0.0,0.0 -553,24.0,0.0,0.0,0.0,0.0,0.9802624315273772,-9.79250414653288,1.0,0.0,0.0 -553,25.0,1.899734162629706,2.3,0.0,0.0,0.9662138738583832,-9.875246244146693,1.0,0.0,0.0 -553,26.0,0.0,0.0,0.0,0.0,0.9833603587879668,-9.545989971185792,1.0,0.0,0.0 -553,27.0,0.0,0.0,0.0,0.0,0.9654975335531768,-7.3908282717948595,1.0,0.0,0.0 -553,28.0,1.3026748543746554,0.9,0.0,0.0,0.969586964569889,-10.178649990916483,1.0,0.0,0.0 -553,29.0,5.753480606821395,1.9,0.0,0.0,0.9620831108965218,-10.654390254866362,1.0,0.0,0.0 -554,0.0,0.0,0.0,160.35005010283342,0.0006994201128485,1.0,0.0,0.0,0.0,1.0 -554,1.0,11.778351808304176,12.7,7.989295330202432e-07,11.091280743751897,0.9804806102921294,-3.680443182347661,0.0,1.0,0.0 -554,2.0,1.3026748543746554,1.2,0.0,0.0,0.9741936125652204,-4.821049629951523,1.0,0.0,0.0 -554,3.0,4.125137038853075,1.6,0.0,0.0,0.9675626037146884,-5.924460192365936,1.0,0.0,0.0 -554,4.0,51.129988034205226,19.0,-8.817428896927244e-10,24.324629831458992,0.9605787678259154,-8.856628928102818,0.0,1.0,0.0 -554,5.0,0.0,0.0,0.0,0.0,0.9669382493780724,-7.029271129805631,1.0,0.0,0.0 -554,6.0,12.375411116559226,10.9,0.0,0.0,0.957864544506015,-8.050787684295818,1.0,0.0,0.0 -554,7.0,16.28343567968319,30.0,-5.55449146490899e-10,32.7242254442434,0.966253907999306,-7.471814211719441,0.0,1.0,0.0 -554,8.0,0.0,0.0,0.0,0.0,1.0156177524047287,-8.826505188939716,1.0,0.0,0.0 -554,9.0,3.1481308980720835,2.0,0.0,0.0,1.0067787961347447,-9.75977624826044,1.0,0.0,0.0 -554,10.0,0.0,0.0,-8.818873956886411e-11,22.61716182731225,1.0599986545854103,-8.826505188949476,0.0,1.0,0.0 -554,11.0,6.079149320415058,7.5,0.0,0.0,1.014370962526541,-9.306725594987892,1.0,0.0,0.0 -554,12.0,0.0,0.0,-8.441386094789403e-10,10.483371821005058,1.0286390582513492,-9.306725595052788,0.0,1.0,0.0 -554,13.0,3.365243373801193,1.6,0.0,0.0,1.003269947928909,-9.770001022538448,1.0,0.0,0.0 -554,14.0,4.450805752446739,2.5,0.0,0.0,0.9998679426141128,-9.793076808362072,1.0,0.0,0.0 -554,15.0,1.899734162629706,1.8,0.0,0.0,1.004957060146892,-9.604369848411933,1.0,0.0,0.0 -554,16.0,4.885030703904958,5.8,0.0,0.0,1.0018619949346712,-9.80500642214974,1.0,0.0,0.0 -554,17.0,1.736899805832874,0.9,0.0,0.0,0.9931579664272316,-10.123424785182282,1.0,0.0,0.0 -554,18.0,5.156421298566344,3.4,0.0,0.0,0.9914748647280874,-10.222928769821214,1.0,0.0,0.0 -554,19.0,1.1941186165101008,0.7,0.0,0.0,0.9946851686422896,-10.138559740172589,1.0,0.0,0.0 -554,20.0,9.498670813148529,11.2,0.0,0.0,0.9962086178290256,-9.931203143552992,1.0,0.0,0.0 -554,21.0,0.0,0.0,0.0,0.0,0.9965835835924614,-9.927703767092629,1.0,0.0,0.0 -554,22.0,1.736899805832874,1.6,0.0,0.0,0.9911760936108096,-9.963702373583006,1.0,0.0,0.0 -554,23.0,4.722196347108126,6.7,0.0,0.0,0.98628494726987,-10.046604145861696,1.0,0.0,0.0 -554,24.0,0.0,0.0,0.0,0.0,0.9793000452863948,-9.758262124352743,1.0,0.0,0.0 -554,25.0,1.899734162629706,2.3,0.0,0.0,0.9652372716090007,-9.841169333957026,1.0,0.0,0.0 -554,26.0,0.0,0.0,0.0,0.0,0.9819933809315288,-9.500930841768067,1.0,0.0,0.0 -554,27.0,0.0,0.0,0.0,0.0,0.9634753704484902,-7.34150402054391,1.0,0.0,0.0 -554,28.0,1.3026748543746554,0.9,0.0,0.0,0.9681996814980948,-10.135378072750688,1.0,0.0,0.0 -554,29.0,5.753480606821395,1.9,0.0,0.0,0.960684734526896,-10.612492041504323,1.0,0.0,0.0 -555,0.0,0.0,0.0,160.47578885287786,0.0006778198263113,1.0,0.0,0.0,0.0,1.0 -555,1.0,11.778351808304176,12.7,8.664433727016902e-07,10.01791516320769,0.9803375519324402,-3.6812019916254393,0.0,1.0,0.0 -555,2.0,1.3026748543746554,1.2,0.0,0.0,0.9745547750519264,-4.829566297349171,1.0,0.0,0.0 -555,3.0,4.125137038853075,1.6,0.0,0.0,0.968008885442796,-5.934871208556687,1.0,0.0,0.0 -555,4.0,51.129988034205226,19.0,-8.322459872703032e-10,24.13662188407922,0.9606306674694493,-8.862499411908022,0.0,1.0,0.0 -555,5.0,0.0,0.0,0.0,0.0,0.9675618488236531,-7.051360382751398,1.0,0.0,0.0 -555,6.0,12.375411116559226,10.9,0.0,0.0,0.9582561227637184,-8.066323837409572,1.0,0.0,0.0 -555,7.0,16.28343567968319,30.0,-4.643219834308784e-10,30.78502582765565,0.9666250056308276,-7.479800883870749,0.0,1.0,0.0 -555,8.0,0.0,0.0,0.0,0.0,1.0159340843922604,-8.85494210054191,1.0,0.0,0.0 -555,9.0,3.1481308980720835,2.0,0.0,0.0,1.007096729872308,-9.791816771007024,1.0,0.0,0.0 -555,10.0,0.0,0.0,3.3634779438083544e-10,22.454786390373343,1.059996454138521,-8.854942100504687,0.0,1.0,0.0 -555,11.0,6.079149320415058,7.5,0.0,0.0,1.0149139846692132,-9.2680351513605,1.0,0.0,0.0 -555,12.0,0.0,0.0,-6.703236452182786e-10,10.090237385567384,1.0286469110869547,-9.268035151412008,0.0,1.0,0.0 -555,13.0,3.365243373801193,1.6,0.0,0.0,0.9846482661121853,-10.145776683551706,1.0,0.0,0.0 -555,14.0,4.450805752446739,2.5,0.0,0.0,0.9954516778317988,-9.95963292305044,1.0,0.0,0.0 -555,15.0,1.899734162629706,1.8,0.0,0.0,1.0053571399674563,-9.59540975039178,1.0,0.0,0.0 -555,16.0,4.885030703904958,5.8,0.0,0.0,1.002222161990673,-9.824304553849387,1.0,0.0,0.0 -555,17.0,1.736899805832874,0.9,0.0,0.0,0.9903970566348372,-10.24512560668126,1.0,0.0,0.0 -555,18.0,5.156421298566344,3.4,0.0,0.0,0.9896986176450392,-10.317109849360278,1.0,0.0,0.0 -555,19.0,1.1941186165101008,0.7,0.0,0.0,0.9934367735043822,-10.217902730580754,1.0,0.0,0.0 -555,20.0,9.498670813148529,11.2,0.0,0.0,0.9919383589784364,-10.050674399803167,1.0,0.0,0.0 -555,21.0,0.0,0.0,0.0,0.0,0.9908601572063296,-10.073376625830292,1.0,0.0,0.0 -555,22.0,1.736899805832874,1.6,0.0,0.0,0.9867327368721496,-10.125107126139234,1.0,0.0,0.0 -555,23.0,4.722196347108126,6.7,0.0,0.0,0.981834255178762,-10.199724704134686,1.0,0.0,0.0 -555,24.0,0.0,0.0,0.0,0.0,0.977335262326246,-9.90650532793723,1.0,0.0,0.0 -555,25.0,1.899734162629706,2.3,0.0,0.0,0.9632433747601828,-9.989751171673902,1.0,0.0,0.0 -555,26.0,0.0,0.0,0.0,0.0,0.9815853630615112,-9.64328599585045,1.0,0.0,0.0 -555,27.0,0.0,0.0,0.0,0.0,0.96531051870689,-7.409590745043902,1.0,0.0,0.0 -555,28.0,1.3026748543746554,0.9,0.0,0.0,0.9677855909552884,-10.278268151998455,1.0,0.0,0.0 -555,29.0,5.753480606821395,1.9,0.0,0.0,0.960267326285488,-10.755793314369448,1.0,0.0,0.0 -556,0.0,0.0,0.0,136.46230332747905,4.567662266197203e-05,1.0,0.0,0.0,0.0,1.0 -556,1.0,11.778351808304176,12.7,34.06917714610707,20.297254085435824,0.9853774648687192,-14.695553012386178,0.0,1.0,0.0 -556,2.0,1.3026748543746554,1.2,0.0,0.0,0.9615278374579344,-13.503027850070326,1.0,0.0,0.0 -556,3.0,4.125137038853075,1.6,0.0,0.0,0.9565412222983752,-16.724488300711172,1.0,0.0,0.0 -556,4.0,51.129988034205226,19.0,-6.915739982944114e-09,39.58221105641489,0.9400004397949286,-27.899252186571097,0.0,1.0,0.0 -556,5.0,0.0,0.0,0.0,0.0,0.954540410221799,-19.868611102067764,1.0,0.0,0.0 -556,6.0,12.375411116559226,10.9,0.0,0.0,0.941392239515384,-23.414578457301584,1.0,0.0,0.0 -556,7.0,16.28343567968319,30.0,1.2265801254806225e-12,39.99978742253128,0.9563272743710904,-20.558264627379536,0.0,1.0,0.0 -556,8.0,0.0,0.0,0.0,0.0,1.0043674402987883,-21.614898656231304,1.0,0.0,0.0 -556,9.0,3.1481308980720835,2.0,0.0,0.0,0.994628268001778,-22.52102892537317,1.0,0.0,0.0 -556,10.0,0.0,0.0,9.03375371047148e-13,23.99940926306409,1.0518265678698555,-21.614898656231205,0.0,1.0,0.0 -556,11.0,6.079149320415058,7.5,0.0,0.0,1.0301469422204634,-20.656304509188075,1.0,0.0,0.0 -556,12.0,0.0,0.0,9.887645231142093e-13,22.6023623590823,1.0599991430548172,-20.656304509188,0.0,1.0,0.0 -556,13.0,3.365243373801193,1.6,0.0,0.0,1.0160811646243284,-21.319544565169217,1.0,0.0,0.0 -556,14.0,4.450805752446739,2.5,0.0,0.0,1.0082294266053753,-21.484150733459845,1.0,0.0,0.0 -556,15.0,1.899734162629706,1.8,0.0,0.0,0.9813203763102208,-22.872561646625755,1.0,0.0,0.0 -556,16.0,4.885030703904958,5.8,0.0,0.0,0.985865942040137,-22.71206645886542,1.0,0.0,0.0 -556,17.0,1.736899805832874,0.9,0.0,0.0,0.99416525357227,-22.18206229641635,1.0,0.0,0.0 -556,18.0,5.156421298566344,3.4,0.0,0.0,0.9881629954900464,-22.50500240119209,1.0,0.0,0.0 -556,19.0,1.1941186165101008,0.7,0.0,0.0,0.9891066415657204,-22.53763244341579,1.0,0.0,0.0 -556,20.0,9.498670813148529,11.2,0.0,0.0,0.984799026757008,-22.670245715533348,1.0,0.0,0.0 -556,21.0,0.0,0.0,0.0,0.0,0.9854560061197272,-22.658560777596044,1.0,0.0,0.0 -556,22.0,1.736899805832874,1.6,0.0,0.0,0.9927356932420812,-22.055875376025444,1.0,0.0,0.0 -556,23.0,4.722196347108126,6.7,0.0,0.0,0.978932440836928,-22.695012701649823,1.0,0.0,0.0 -556,24.0,0.0,0.0,0.0,0.0,0.9669267029990954,-22.90904378617445,1.0,0.0,0.0 -556,25.0,1.899734162629706,2.3,0.0,0.0,0.9526785186232032,-22.99411883984437,1.0,0.0,0.0 -556,26.0,0.0,0.0,0.0,0.0,0.9667864357962266,-22.970516167165464,1.0,0.0,0.0 -556,27.0,0.0,0.0,0.0,0.0,0.948661570211912,-21.35319579791008,1.0,0.0,0.0 -556,28.0,1.3026748543746554,0.9,0.0,0.0,0.9527626257690068,-23.625369448307268,1.0,0.0,0.0 -556,29.0,5.753480606821395,1.9,0.0,0.0,0.945121952088578,-24.118180495271,1.0,0.0,0.0 -557,0.0,0.0,0.0,160.86129194186455,0.0018306324881756,1.0,0.0,0.0,0.0,1.0 -557,1.0,11.778351808304176,12.7,1.8967411094994584e-06,10.334401053520637,0.98014630632014,-3.668901751179251,0.0,1.0,0.0 -557,2.0,1.3026748543746554,1.2,0.0,0.0,0.9750171122369452,-4.9001469359326535,1.0,0.0,0.0 -557,3.0,4.125137038853075,1.6,0.0,0.0,0.9685890751961752,-6.022302243921463,1.0,0.0,0.0 -557,4.0,51.129988034205226,19.0,1.6225711639746634e-10,24.4799922535081,0.9599248286888014,-8.81229724561046,0.0,1.0,0.0 -557,5.0,0.0,0.0,0.0,0.0,0.9657154724440898,-6.93188619382851,1.0,0.0,0.0 -557,6.0,12.375411116559226,10.9,0.0,0.0,0.9568715183433624,-7.97527866994268,1.0,0.0,0.0 -557,7.0,16.28343567968319,30.0,1.2330616592905583e-10,33.54229943551694,0.9656719240383712,-7.374273732119947,0.0,1.0,0.0 -557,8.0,0.0,0.0,0.0,0.0,1.0337860874993632,-12.389427589884413,1.0,0.0,0.0 -557,9.0,3.1481308980720835,2.0,0.0,0.0,1.019923881192032,-12.389427590038151,1.0,0.0,0.0 -557,10.0,0.0,0.0,2.5720158845689803e-09,13.358104107688373,1.0599982593578563,-12.389427589604692,0.0,1.0,0.0 -557,11.0,6.079149320415058,7.5,0.0,0.0,1.0376800259427756,-10.296107137153498,1.0,0.0,0.0 -557,12.0,0.0,0.0,4.8989151051038224e-11,16.894199224095544,1.0599932611126917,-10.296107137149924,0.0,1.0,0.0 -557,13.0,3.365243373801193,1.6,0.0,0.0,1.0107490117199427,-11.321414507218522,1.0,0.0,0.0 -557,14.0,4.450805752446739,2.5,0.0,0.0,1.0212731868704006,-11.14466245963636,1.0,0.0,0.0 -557,15.0,1.899734162629706,1.8,0.0,0.0,1.0227412773266,-11.267313798721911,1.0,0.0,0.0 -557,16.0,4.885030703904958,5.8,0.0,0.0,1.0168493822716198,-12.135207931136646,1.0,0.0,0.0 -557,17.0,1.736899805832874,0.9,0.0,0.0,1.01165828106764,-11.90855097038102,1.0,0.0,0.0 -557,18.0,5.156421298566344,3.4,0.0,0.0,1.0082628351864251,-12.2720409529054,1.0,0.0,0.0 -557,19.0,1.1941186165101008,0.7,0.0,0.0,1.0105003546865254,-12.331368730663955,1.0,0.0,0.0 -557,20.0,9.498670813148529,11.2,0.0,0.0,0.9803152297325136,-13.170605999972878,1.0,0.0,0.0 -557,21.0,0.0,0.0,0.0,0.0,0.9841359458125892,-13.11463321503058,1.0,0.0,0.0 -557,22.0,1.736899805832874,1.6,0.0,0.0,0.9616375607885548,-13.67300244127272,1.0,0.0,0.0 -557,23.0,4.722196347108126,6.7,0.0,0.0,0.9685177772695316,-13.51443110980378,1.0,0.0,0.0 -557,24.0,0.0,0.0,0.0,0.0,0.965066583516644,-9.487079636543331,1.0,0.0,0.0 -557,25.0,1.899734162629706,2.3,0.0,0.0,0.9507900958217386,-9.57248797272618,1.0,0.0,0.0 -557,26.0,0.0,0.0,0.0,0.0,0.9723024465706176,-9.397794717795083,1.0,0.0,0.0 -557,27.0,0.0,0.0,0.0,0.0,0.9629287439320928,-7.264718791600796,1.0,0.0,0.0 -557,28.0,1.3026748543746554,0.9,0.0,0.0,0.9583630120717926,-10.045133205551842,1.0,0.0,0.0 -557,29.0,5.753480606821395,1.9,0.0,0.0,0.9507684414401664,-10.532160950602876,1.0,0.0,0.0 -558,0.0,0.0,0.0,160.67327264767485,0.004573980215472,1.0,0.0,0.0,0.0,1.0 -558,1.0,11.778351808304176,12.7,3.627838483506249e-06,17.788817066395332,0.981483029515978,-3.712630593702076,0.0,1.0,0.0 -558,2.0,1.3026748543746554,1.2,0.0,0.0,0.9711461077070818,-4.77398249212794,1.0,0.0,0.0 -558,3.0,4.125137038853075,1.6,0.0,0.0,0.9638005678242054,-5.867363163012523,1.0,0.0,0.0 -558,4.0,51.129988034205226,19.0,2.9252368733286613e-09,26.321204183139884,0.9615922004462044,-8.907964525926278,0.0,1.0,0.0 -558,5.0,0.0,0.0,0.0,0.0,0.9638490343645444,-7.016411089410471,1.0,0.0,0.0 -558,6.0,12.375411116559226,10.9,0.0,0.0,0.9564465195698586,-8.06305498924224,1.0,0.0,0.0 -558,7.0,16.28343567968319,30.0,3.991883909757537e-09,32.01056619257906,0.9569187529244446,-10.157254304919991,0.0,1.0,0.0 -558,8.0,0.0,0.0,0.0,0.0,1.0092931445021482,-8.952734122576363,1.0,0.0,0.0 -558,9.0,3.1481308980720835,2.0,0.0,0.0,0.9973262747981876,-9.964499844462445,1.0,0.0,0.0 -558,10.0,0.0,0.0,4.679354733510954e-09,23.999452965127418,1.056540606511478,-8.952734122053403,0.0,1.0,0.0 -558,11.0,6.079149320415058,7.5,0.0,0.0,0.9946451150382828,-9.176068843264764,1.0,0.0,0.0 -558,12.0,0.0,0.0,0.0,0.0,0.9946451150382828,-9.176068843264764,0.0,1.0,0.0 -558,13.0,3.365243373801193,1.6,0.0,0.0,0.986270638021042,-9.564008647701977,1.0,0.0,0.0 -558,14.0,4.450805752446739,2.5,0.0,0.0,0.9819700047364608,-9.703400526913589,1.0,0.0,0.0 -558,15.0,1.899734162629706,1.8,0.0,0.0,0.9893609912588,-9.6440774773045,1.0,0.0,0.0 -558,16.0,4.885030703904958,5.8,0.0,0.0,0.9905010693484986,-9.953318920300047,1.0,0.0,0.0 -558,17.0,1.736899805832874,0.9,0.0,0.0,0.9780495886837024,-9.872196668545458,1.0,0.0,0.0 -558,18.0,5.156421298566344,3.4,0.0,0.0,0.9782784880117548,-10.656524974076072,1.0,0.0,0.0 -558,19.0,1.1941186165101008,0.7,0.0,0.0,0.9824368715511976,-10.516407760208654,1.0,0.0,0.0 -558,20.0,9.498670813148529,11.2,0.0,0.0,0.986321895904918,-10.138808118733342,1.0,0.0,0.0 -558,21.0,0.0,0.0,0.0,0.0,0.9865962093110784,-10.134951171955151,1.0,0.0,0.0 -558,22.0,1.736899805832874,1.6,0.0,0.0,0.9759732457379052,-9.999201280934146,1.0,0.0,0.0 -558,23.0,4.722196347108126,6.7,0.0,0.0,0.974812756339408,-10.243597866082958,1.0,0.0,0.0 -558,24.0,0.0,0.0,0.0,0.0,0.9701695462759924,-10.16438470966738,1.0,0.0,0.0 -558,25.0,1.899734162629706,2.3,0.0,0.0,0.9559704331719194,-10.24888341534113,1.0,0.0,0.0 -558,26.0,0.0,0.0,0.0,0.0,0.9744551229435048,-10.032965560436098,1.0,0.0,0.0 -558,27.0,0.0,0.0,0.0,0.0,0.9601440623152648,-7.968366335536991,1.0,0.0,0.0 -558,28.0,1.3026748543746554,0.9,0.0,0.0,0.960548334048054,-10.67740656517953,1.0,0.0,0.0 -558,29.0,5.753480606821395,1.9,0.0,0.0,0.9529716003328836,-11.16220526554711,1.0,0.0,0.0 -559,0.0,0.0,0.0,138.00003556523404,0.0011277229241102,1.0,0.0,0.0,0.0,1.0 -559,1.0,11.778351808304176,12.7,24.58397267923672,12.182454126913356,0.9751777873930636,-4.637413622615928,0.0,1.0,0.0 -559,2.0,1.3026748543746554,1.2,0.0,0.0,0.94679594961294,-8.375895310126264,1.0,0.0,0.0 -559,3.0,4.125137038853075,1.6,0.0,0.0,0.9473072986212524,-8.351300186891265,1.0,0.0,0.0 -559,4.0,51.129988034205226,19.0,1.7124402544841596e-09,26.715213796511208,0.9557678181971212,-11.337623043061068,0.0,1.0,0.0 -559,5.0,0.0,0.0,0.0,0.0,0.9572660325729572,-10.937644084253236,1.0,0.0,0.0 -559,6.0,12.375411116559226,10.9,0.0,0.0,0.9498544294490756,-11.378565039835063,1.0,0.0,0.0 -559,7.0,16.28343567968319,30.0,1.5986217083287854e-09,28.618835073169578,0.9547664299139708,-11.35907792574848,0.0,1.0,0.0 -559,8.0,0.0,0.0,0.0,0.0,1.0098790252744445,-12.418819242153797,1.0,0.0,0.0 -559,9.0,3.1481308980720835,2.0,0.0,0.0,1.0033741291617655,-13.18288574964694,1.0,0.0,0.0 -559,10.0,0.0,0.0,2.173154503767755e-09,22.227788901199965,1.0537543378167278,-12.418819241910423,0.0,1.0,0.0 -559,11.0,6.079149320415058,7.5,0.0,0.0,1.0138952767474514,-12.60286839712002,1.0,0.0,0.0 -559,12.0,0.0,0.0,1.8370445440640302e-09,23.98476302593562,1.0459973357941097,-12.60286839698107,0.0,1.0,0.0 -559,13.0,3.365243373801193,1.6,0.0,0.0,0.9999181390542912,-13.1861170261308,1.0,0.0,0.0 -559,14.0,4.450805752446739,2.5,0.0,0.0,0.9929380902927836,-13.262129092796656,1.0,0.0,0.0 -559,15.0,1.899734162629706,1.8,0.0,0.0,1.0031183368561492,-12.948931778171206,1.0,0.0,0.0 -559,16.0,4.885030703904958,5.8,0.0,0.0,0.9989613313150248,-13.206042109740764,1.0,0.0,0.0 -559,17.0,1.736899805832874,0.9,0.0,0.0,0.9724732979794996,-13.992386425940156,1.0,0.0,0.0 -559,18.0,5.156421298566344,3.4,0.0,0.0,0.9627363403154215,-14.334180016201692,1.0,0.0,0.0 -559,19.0,1.1941186165101008,0.7,0.0,0.0,0.9618191426898044,-14.36969685230771,1.0,0.0,0.0 -559,20.0,9.498670813148529,11.2,0.0,0.0,0.9915751871788526,-13.368142055177747,1.0,0.0,0.0 -559,21.0,0.0,0.0,0.0,0.0,0.9938207231427348,-13.381103721108344,1.0,0.0,0.0 -559,22.0,1.736899805832874,1.6,0.0,0.0,0.9850136327091076,-13.44978706471959,1.0,0.0,0.0 -559,23.0,4.722196347108126,6.7,0.0,0.0,0.9811910064017216,-13.553247793648271,1.0,0.0,0.0 -559,24.0,0.0,0.0,0.0,0.0,0.9716869620912648,-13.40381255880509,1.0,0.0,0.0 -559,25.0,1.899734162629706,2.3,0.0,0.0,0.9575106931891748,-13.48804360010351,1.0,0.0,0.0 -559,26.0,0.0,0.0,0.0,0.0,0.9729192284190102,-13.234731461189066,1.0,0.0,0.0 -559,27.0,0.0,0.0,0.0,0.0,0.9540498913192904,-11.22761266670979,1.0,0.0,0.0 -559,28.0,1.3026748543746554,0.9,0.0,0.0,0.9660799972655838,-13.44392910509408,1.0,0.0,0.0 -559,29.0,5.753480606821395,1.9,0.0,0.0,0.9406867271463348,-15.025017940112324,1.0,0.0,0.0 -560,0.0,0.0,0.0,160.3429164848232,0.0005413379658314,1.0,0.0,0.0,0.0,1.0 -560,1.0,11.778351808304176,12.7,6.704077883171084e-07,10.33624950275606,0.9804002026129164,-3.678586220732796,0.0,1.0,0.0 -560,2.0,1.3026748543746554,1.2,0.0,0.0,0.9744293761349524,-4.824607501732465,1.0,0.0,0.0 -560,3.0,4.125137038853075,1.6,0.0,0.0,0.967853641687846,-5.92877055168338,1.0,0.0,0.0 -560,4.0,51.129988034205226,19.0,-7.54525980823369e-10,24.08620673248582,0.9605883148318856,-8.854392380286976,0.0,1.0,0.0 -560,5.0,0.0,0.0,0.0,0.0,0.9675218222387106,-7.038940239477295,1.0,0.0,0.0 -560,6.0,12.375411116559226,10.9,0.0,0.0,0.9582153115897214,-8.055681299474577,1.0,0.0,0.0 -560,7.0,16.28343567968319,30.0,-5.425025133805806e-10,30.503019005887403,0.966522380676769,-7.464534037569422,0.0,1.0,0.0 -560,8.0,0.0,0.0,0.0,0.0,1.015833113308682,-8.836594126720138,1.0,0.0,0.0 -560,9.0,3.1481308980720835,2.0,0.0,0.0,1.006927143619556,-9.77050895491404,1.0,0.0,0.0 -560,10.0,0.0,0.0,-1.3920785880455459e-11,22.48705050228877,1.0599602990954298,-8.836594126721682,0.0,1.0,0.0 -560,11.0,6.079149320415058,7.5,0.0,0.0,1.0138235274981189,-9.305450491078057,1.0,0.0,0.0 -560,12.0,0.0,0.0,-7.002721874775373e-10,9.779437634569303,1.0271528126058171,-9.305450491131996,0.0,1.0,0.0 -560,13.0,3.365243373801193,1.6,0.0,0.0,1.0028332266251108,-9.770087941742206,1.0,0.0,0.0 -560,14.0,4.450805752446739,2.5,0.0,0.0,0.9995357501124504,-9.796707481524685,1.0,0.0,0.0 -560,15.0,1.899734162629706,1.8,0.0,0.0,1.004701098541194,-9.609788989620258,1.0,0.0,0.0 -560,16.0,4.885030703904958,5.8,0.0,0.0,1.0018863030805585,-9.813598081689198,1.0,0.0,0.0 -560,17.0,1.736899805832874,0.9,0.0,0.0,0.992993326418458,-10.129735981427125,1.0,0.0,0.0 -560,18.0,5.156421298566344,3.4,0.0,0.0,0.9914099447832906,-10.230781228173251,1.0,0.0,0.0 -560,19.0,1.1941186165101008,0.7,0.0,0.0,0.994673057887788,-10.147218272951577,1.0,0.0,0.0 -560,20.0,9.498670813148529,11.2,0.0,0.0,0.996388332311962,-9.942674204526488,1.0,0.0,0.0 -560,21.0,0.0,0.0,0.0,0.0,0.996772523721008,-9.93944343989476,1.0,0.0,0.0 -560,22.0,1.736899805832874,1.6,0.0,0.0,0.9911174783572088,-9.972715078941745,1.0,0.0,0.0 -560,23.0,4.722196347108126,6.7,0.0,0.0,0.9865926781036964,-10.062670576714629,1.0,0.0,0.0 -560,24.0,0.0,0.0,0.0,0.0,0.9802624315273772,-9.79250414653288,1.0,0.0,0.0 -560,25.0,1.899734162629706,2.3,0.0,0.0,0.9662138738583832,-9.875246244146693,1.0,0.0,0.0 -560,26.0,0.0,0.0,0.0,0.0,0.9833603587879668,-9.545989971185792,1.0,0.0,0.0 -560,27.0,0.0,0.0,0.0,0.0,0.9654975335531768,-7.3908282717948595,1.0,0.0,0.0 -560,28.0,1.3026748543746554,0.9,0.0,0.0,0.969586964569889,-10.178649990916483,1.0,0.0,0.0 -560,29.0,5.753480606821395,1.9,0.0,0.0,0.9620831108965218,-10.654390254866362,1.0,0.0,0.0 -561,0.0,0.0,0.0,161.57456956238704,0.0002265238652654,1.0,0.0,0.0,0.0,1.0 -561,1.0,11.778351808304176,12.7,4.390145480814486e-07,10.062132022820691,0.978855326606616,-4.134627957932517,0.0,1.0,0.0 -561,2.0,1.3026748543746554,1.2,0.0,0.0,0.9770412908309256,-3.639370402559677,1.0,0.0,0.0 -561,3.0,4.125137038853075,1.6,0.0,0.0,0.9709629628412928,-4.456394410087996,1.0,0.0,0.0 -561,4.0,51.129988034205226,19.0,-3.166775110640725e-10,25.719102651861107,0.9599134262695148,-10.506502140033176,0.0,1.0,0.0 -561,5.0,0.0,0.0,0.0,0.0,0.9637521282133832,-9.86774396014942,1.0,0.0,0.0 -561,6.0,12.375411116559226,10.9,0.0,0.0,0.9554876420351526,-10.404861243482983,1.0,0.0,0.0 -561,7.0,16.28343567968319,30.0,-3.086402358485224e-10,26.30751760841132,0.9612055141206408,-10.259131604336384,0.0,1.0,0.0 -561,8.0,0.0,0.0,0.0,0.0,1.0143723809970384,-10.927131847458112,1.0,0.0,0.0 -561,9.0,3.1481308980720835,2.0,0.0,0.0,1.006393340904299,-11.475692916828262,1.0,0.0,0.0 -561,10.0,0.0,0.0,-5.617255682605211e-10,22.539231561031716,1.0586564376373346,-10.927131847520457,0.0,1.0,0.0 -561,11.0,6.079149320415058,7.5,0.0,0.0,1.0305645412496365,-9.454973160984634,1.0,0.0,0.0 -561,12.0,0.0,0.0,-1.4519393840915223e-10,18.059405497079087,1.054540081060772,-9.454973160995351,0.0,1.0,0.0 -561,13.0,3.365243373801193,1.6,0.0,0.0,0.9960846121384316,-10.750971261219563,1.0,0.0,0.0 -561,14.0,4.450805752446739,2.5,0.0,0.0,1.0067638693442345,-10.569032220812783,1.0,0.0,0.0 -561,15.0,1.899734162629706,1.8,0.0,0.0,1.0128683397879563,-10.38096001795177,1.0,0.0,0.0 -561,16.0,4.885030703904958,5.8,0.0,0.0,1.0043930748254677,-11.235995447474718,1.0,0.0,0.0 -561,17.0,1.736899805832874,0.9,0.0,0.0,0.9974190188750957,-11.22435190399709,1.0,0.0,0.0 -561,18.0,5.156421298566344,3.4,0.0,0.0,0.9941972488670404,-11.519954781896717,1.0,0.0,0.0 -561,19.0,1.1941186165101008,0.7,0.0,0.0,0.9965821105511974,-11.539661196943785,1.0,0.0,0.0 -561,20.0,9.498670813148529,11.2,0.0,0.0,0.9960617851618973,-11.626632000314384,1.0,0.0,0.0 -561,21.0,0.0,0.0,0.0,0.0,0.996515472723072,-11.616612082796545,1.0,0.0,0.0 -561,22.0,1.736899805832874,1.6,0.0,0.0,0.9955591099959772,-11.090948269824311,1.0,0.0,0.0 -561,23.0,4.722196347108126,6.7,0.0,0.0,0.9874254536735172,-11.65452701514598,1.0,0.0,0.0 -561,24.0,0.0,0.0,0.0,0.0,0.9776869128066475,-11.813463090910108,1.0,0.0,0.0 -561,25.0,1.899734162629706,2.3,0.0,0.0,0.96360024494847,-11.896648175145517,1.0,0.0,0.0 -561,26.0,0.0,0.0,0.0,0.0,0.9788480160995372,-11.838735705627773,1.0,0.0,0.0 -561,27.0,0.0,0.0,0.0,0.0,0.961627444106337,-10.154053619260877,1.0,0.0,0.0 -561,28.0,1.3026748543746554,0.9,0.0,0.0,0.965007360482543,-12.477324266050829,1.0,0.0,0.0 -561,29.0,5.753480606821395,1.9,0.0,0.0,0.9574667594607718,-12.957622056024196,1.0,0.0,0.0 -562,0.0,0.0,0.0,160.49993298405602,0.0039753347510718,1.0,0.0,0.0,0.0,1.0 -562,1.0,11.778351808304176,12.7,2.295437397512991e-06,21.51608335254541,0.9815299062288136,-3.782354703934693,0.0,1.0,0.0 -562,2.0,1.3026748543746554,1.2,0.0,0.0,0.97082961057768,-4.558712177090345,1.0,0.0,0.0 -562,3.0,4.125137038853075,1.6,0.0,0.0,0.9633823947433712,-5.599902446451659,1.0,0.0,0.0 -562,4.0,51.129988034205226,19.0,-2.855435846234238e-09,22.7342634793994,0.9621536368139468,-10.108931130186129,0.0,1.0,0.0 -562,5.0,0.0,0.0,0.0,0.0,0.9600803940748937,-6.512992726832061,1.0,0.0,0.0 -562,6.0,12.375411116559226,10.9,0.0,0.0,0.9477923223529052,-6.981549089467182,1.0,0.0,0.0 -562,7.0,16.28343567968319,30.0,-7.756557899476821e-10,39.998905802661696,0.962558413281267,-7.014509306342557,0.0,1.0,0.0 -562,8.0,0.0,0.0,0.0,0.0,0.9844774467821218,-8.289998530197996,1.0,0.0,0.0 -562,9.0,3.1481308980720835,2.0,0.0,0.0,0.9863393560309012,-9.225210889384838,1.0,0.0,0.0 -562,10.0,0.0,0.0,0.0,0.0,0.9844774467821218,-8.289998530197996,0.0,1.0,0.0 -562,11.0,6.079149320415058,7.5,0.0,0.0,1.012493506730507,-9.120775871561795,1.0,0.0,0.0 -562,12.0,0.0,0.0,-2.908317358552021e-09,19.742479940568693,1.0390931169726785,-9.120775871783538,0.0,1.0,0.0 -562,13.0,3.365243373801193,1.6,0.0,0.0,0.9991198706302048,-9.569007923518702,1.0,0.0,0.0 -562,14.0,4.450805752446739,2.5,0.0,0.0,0.9936644606118452,-9.523728410563738,1.0,0.0,0.0 -562,15.0,1.899734162629706,1.8,0.0,0.0,0.9952226007632478,-9.232653711860362,1.0,0.0,0.0 -562,16.0,4.885030703904958,5.8,0.0,0.0,0.9846232280511216,-9.337854142000158,1.0,0.0,0.0 -562,17.0,1.736899805832874,0.9,0.0,0.0,0.9818402260675442,-9.767443316237776,1.0,0.0,0.0 -562,18.0,5.156421298566344,3.4,0.0,0.0,0.9771520938848072,-9.813362632640036,1.0,0.0,0.0 -562,19.0,1.1941186165101008,0.7,0.0,0.0,0.9788399882484292,-9.69623413518268,1.0,0.0,0.0 -562,20.0,9.498670813148529,11.2,0.0,0.0,0.9766714553864388,-9.416252306241145,1.0,0.0,0.0 -562,21.0,0.0,0.0,0.0,0.0,0.9774072214312476,-9.417103763172571,1.0,0.0,0.0 -562,22.0,1.736899805832874,1.6,0.0,0.0,0.9812681394161747,-9.632554044170933,1.0,0.0,0.0 -562,23.0,4.722196347108126,6.7,0.0,0.0,0.97149319889226,-9.630880804934831,1.0,0.0,0.0 -562,24.0,0.0,0.0,0.0,0.0,0.967121902384081,-9.353247138181263,1.0,0.0,0.0 -562,25.0,1.899734162629706,2.3,0.0,0.0,0.952876681537525,-9.438287331461757,1.0,0.0,0.0 -562,26.0,0.0,0.0,0.0,0.0,0.9715347883561556,-9.097793551931488,1.0,0.0,0.0 -562,27.0,0.0,0.0,0.0,0.0,0.956099325377166,-6.8327845237413385,1.0,0.0,0.0 -562,28.0,1.3026748543746554,0.9,0.0,0.0,0.957583673984352,-9.746170052681986,1.0,0.0,0.0 -562,29.0,5.753480606821395,1.9,0.0,0.0,0.9499827215925348,-10.23399645781017,1.0,0.0,0.0 -563,0.0,0.0,0.0,160.50747362028943,0.0028770959263901,1.0,0.0,0.0,0.0,1.0 -563,1.0,11.778351808304176,12.7,1.987020796825269e-06,10.201914887991547,0.9803021730503274,-3.680593305936981,0.0,1.0,0.0 -563,2.0,1.3026748543746554,1.2,0.0,0.0,0.974643095134497,-4.833946168082778,1.0,0.0,0.0 -563,3.0,4.125137038853075,1.6,0.0,0.0,0.9681183560628672,-5.940269716401031,1.0,0.0,0.0 -563,4.0,51.129988034205226,19.0,3.9609504389283835e-10,24.055612470684157,0.9603260084808756,-8.858745966900925,0.0,1.0,0.0 -563,5.0,0.0,0.0,0.0,0.0,0.9671673869321984,-7.042853837747562,1.0,0.0,0.0 -563,6.0,12.375411116559226,10.9,0.0,0.0,0.9578956078386254,-8.0599018076104,1.0,0.0,0.0 -563,7.0,16.28343567968319,30.0,8.700286728282668e-10,29.5137929456844,0.9658892428861532,-7.452096151705937,0.0,1.0,0.0 -563,8.0,0.0,0.0,0.0,0.0,1.0143079909208423,-9.021491552561598,1.0,0.0,0.0 -563,9.0,3.1481308980720835,2.0,0.0,0.0,1.004043036793196,-10.051980130019848,1.0,0.0,0.0 -563,10.0,0.0,0.0,2.449157058748032e-09,23.28484800128236,1.0599990541831488,-9.021491552290122,0.0,1.0,0.0 -563,11.0,6.079149320415058,7.5,0.0,0.0,1.018475201411846,-9.298797191856574,1.0,0.0,0.0 -563,12.0,0.0,0.0,6.319792759416508e-10,10.77613223144953,1.0330787207955494,-9.298797191808395,0.0,1.0,0.0 -563,13.0,3.365243373801193,1.6,0.0,0.0,1.0087766151161088,-9.729826119478648,1.0,0.0,0.0 -563,14.0,4.450805752446739,2.5,0.0,0.0,1.0068885650266064,-9.75542853382322,1.0,0.0,0.0 -563,15.0,1.899734162629706,1.8,0.0,0.0,1.005902454643001,-9.709675165570172,1.0,0.0,0.0 -563,16.0,4.885030703904958,5.8,0.0,0.0,1.000334994784544,-10.043524089116236,1.0,0.0,0.0 -563,17.0,1.736899805832874,0.9,0.0,0.0,0.996738275333,-10.197163656533084,1.0,0.0,0.0 -563,18.0,5.156421298566344,3.4,0.0,0.0,0.9930171546102414,-10.364789058231633,1.0,0.0,0.0 -563,19.0,1.1941186165101008,0.7,0.0,0.0,0.9951441439585108,-10.316579323459576,1.0,0.0,0.0 -563,20.0,9.498670813148529,11.2,0.0,0.0,0.9907799174462648,-10.317688527123696,1.0,0.0,0.0 -563,21.0,0.0,0.0,0.0,0.0,0.9903088820455253,-10.343060793486163,1.0,0.0,0.0 -563,22.0,1.736899805832874,1.6,0.0,0.0,0.9610892307600254,-10.94405189854107,1.0,0.0,0.0 -563,23.0,4.722196347108126,6.7,0.0,0.0,0.9679733768603922,-10.785300866213776,1.0,0.0,0.0 -563,24.0,0.0,0.0,0.0,0.0,0.9561252814205154,-10.904818990926213,1.0,0.0,0.0 -563,25.0,1.899734162629706,2.3,0.0,0.0,0.9417111346972102,-10.991857157026946,1.0,0.0,0.0 -563,26.0,0.0,0.0,0.0,0.0,0.985134637240082,-8.98569179656425,1.0,0.0,0.0 -563,27.0,0.0,0.0,0.0,0.0,0.965615019001374,-7.334017012831636,1.0,0.0,0.0 -563,28.0,1.3026748543746554,0.9,0.0,0.0,0.9713875068331996,-9.616043390901686,1.0,0.0,0.0 -563,29.0,5.753480606821395,1.9,0.0,0.0,0.9638980015728414,-10.090009586811128,1.0,0.0,0.0 -564,0.0,0.0,0.0,160.3429164848232,0.0005413379658314,1.0,0.0,0.0,0.0,1.0 -564,1.0,11.778351808304176,12.7,6.704077883171084e-07,10.33624950275606,0.9804002026129164,-3.678586220732796,0.0,1.0,0.0 -564,2.0,1.3026748543746554,1.2,0.0,0.0,0.9744293761349524,-4.824607501732465,1.0,0.0,0.0 -564,3.0,4.125137038853075,1.6,0.0,0.0,0.967853641687846,-5.92877055168338,1.0,0.0,0.0 -564,4.0,51.129988034205226,19.0,-7.54525980823369e-10,24.08620673248582,0.9605883148318856,-8.854392380286976,0.0,1.0,0.0 -564,5.0,0.0,0.0,0.0,0.0,0.9675218222387106,-7.038940239477295,1.0,0.0,0.0 -564,6.0,12.375411116559226,10.9,0.0,0.0,0.9582153115897214,-8.055681299474577,1.0,0.0,0.0 -564,7.0,16.28343567968319,30.0,-5.425025133805806e-10,30.503019005887403,0.966522380676769,-7.464534037569422,0.0,1.0,0.0 -564,8.0,0.0,0.0,0.0,0.0,1.015833113308682,-8.836594126720138,1.0,0.0,0.0 -564,9.0,3.1481308980720835,2.0,0.0,0.0,1.006927143619556,-9.77050895491404,1.0,0.0,0.0 -564,10.0,0.0,0.0,-1.3920785880455459e-11,22.48705050228877,1.0599602990954298,-8.836594126721682,0.0,1.0,0.0 -564,11.0,6.079149320415058,7.5,0.0,0.0,1.0138235274981189,-9.305450491078057,1.0,0.0,0.0 -564,12.0,0.0,0.0,-7.002721874775373e-10,9.779437634569303,1.0271528126058171,-9.305450491131996,0.0,1.0,0.0 -564,13.0,3.365243373801193,1.6,0.0,0.0,1.0028332266251108,-9.770087941742206,1.0,0.0,0.0 -564,14.0,4.450805752446739,2.5,0.0,0.0,0.9995357501124504,-9.796707481524685,1.0,0.0,0.0 -564,15.0,1.899734162629706,1.8,0.0,0.0,1.004701098541194,-9.609788989620258,1.0,0.0,0.0 -564,16.0,4.885030703904958,5.8,0.0,0.0,1.0018863030805585,-9.813598081689198,1.0,0.0,0.0 -564,17.0,1.736899805832874,0.9,0.0,0.0,0.992993326418458,-10.129735981427125,1.0,0.0,0.0 -564,18.0,5.156421298566344,3.4,0.0,0.0,0.9914099447832906,-10.230781228173251,1.0,0.0,0.0 -564,19.0,1.1941186165101008,0.7,0.0,0.0,0.994673057887788,-10.147218272951577,1.0,0.0,0.0 -564,20.0,9.498670813148529,11.2,0.0,0.0,0.996388332311962,-9.942674204526488,1.0,0.0,0.0 -564,21.0,0.0,0.0,0.0,0.0,0.996772523721008,-9.93944343989476,1.0,0.0,0.0 -564,22.0,1.736899805832874,1.6,0.0,0.0,0.9911174783572088,-9.972715078941745,1.0,0.0,0.0 -564,23.0,4.722196347108126,6.7,0.0,0.0,0.9865926781036964,-10.062670576714629,1.0,0.0,0.0 -564,24.0,0.0,0.0,0.0,0.0,0.9802624315273772,-9.79250414653288,1.0,0.0,0.0 -564,25.0,1.899734162629706,2.3,0.0,0.0,0.9662138738583832,-9.875246244146693,1.0,0.0,0.0 -564,26.0,0.0,0.0,0.0,0.0,0.9833603587879668,-9.545989971185792,1.0,0.0,0.0 -564,27.0,0.0,0.0,0.0,0.0,0.9654975335531768,-7.3908282717948595,1.0,0.0,0.0 -564,28.0,1.3026748543746554,0.9,0.0,0.0,0.969586964569889,-10.178649990916483,1.0,0.0,0.0 -564,29.0,5.753480606821395,1.9,0.0,0.0,0.9620831108965218,-10.654390254866362,1.0,0.0,0.0 -565,0.0,0.0,0.0,160.39739128713174,0.0180478647203052,1.0,0.0,0.0,0.0,1.0 -565,1.0,11.778351808304176,12.7,1.0279511174840088e-05,15.74344054155815,0.9809866423818064,-3.77297549322512,0.0,1.0,0.0 -565,2.0,1.3026748543746554,1.2,0.0,0.0,0.9724011443390018,-4.568737558938143,1.0,0.0,0.0 -565,3.0,4.125137038853075,1.6,0.0,0.0,0.9653201694280584,-5.611761176938858,1.0,0.0,0.0 -565,4.0,51.129988034205226,19.0,-3.821076435747031e-11,22.74362124750129,0.9616069771668816,-10.106889670697806,0.0,1.0,0.0 -565,5.0,0.0,0.0,0.0,0.0,0.965839024484108,-6.631609636568708,1.0,0.0,0.0 -565,6.0,12.375411116559226,10.9,0.0,0.0,0.9536347175660554,-7.094675564024018,1.0,0.0,0.0 -565,7.0,16.28343567968319,30.0,2.9940211384281277e-10,37.987425585406896,0.9675603638642496,-7.106358010232606,0.0,1.0,0.0 -565,8.0,0.0,0.0,0.0,0.0,1.011252322559514,-8.504319308720781,1.0,0.0,0.0 -565,9.0,3.1481308980720835,2.0,0.0,0.0,0.9992603763924932,-9.48297701428161,1.0,0.0,0.0 -565,10.0,0.0,0.0,1.0817447382891308e-11,24.00045707054086,1.0584179536186336,-8.504319308719575,0.0,1.0,0.0 -565,11.0,6.079149320415058,7.5,0.0,0.0,0.9966117567448132,-8.888440116679982,1.0,0.0,0.0 -565,12.0,0.0,0.0,0.0,0.0,0.9966117567448132,-8.888440116679982,0.0,1.0,0.0 -565,13.0,3.365243373801193,1.6,0.0,0.0,0.9882541787548412,-9.274837261589669,1.0,0.0,0.0 -565,14.0,4.450805752446739,2.5,0.0,0.0,0.9840706668707084,-9.461147908464568,1.0,0.0,0.0 -565,15.0,1.899734162629706,1.8,0.0,0.0,0.9914573882732683,-9.272305025970644,1.0,0.0,0.0 -565,16.0,4.885030703904958,5.8,0.0,0.0,0.9924557517397778,-9.50566636875888,1.0,0.0,0.0 -565,17.0,1.736899805832874,0.9,0.0,0.0,0.9801568406296006,-9.821230629466353,1.0,0.0,0.0 -565,18.0,5.156421298566344,3.4,0.0,0.0,0.980161177184444,-9.93537751271055,1.0,0.0,0.0 -565,19.0,1.1941186165101008,0.7,0.0,0.0,0.9843084312024796,-9.855748967629884,1.0,0.0,0.0 -565,20.0,9.498670813148529,11.2,0.0,0.0,0.9883825904307998,-9.655121225579402,1.0,0.0,0.0 -565,21.0,0.0,0.0,0.0,0.0,0.9886894744831376,-9.650851312338478,1.0,0.0,0.0 -565,22.0,1.736899805832874,1.6,0.0,0.0,0.9782941768201968,-9.652026320345628,1.0,0.0,0.0 -565,23.0,4.722196347108126,6.7,0.0,0.0,0.977382039637098,-9.756057017826787,1.0,0.0,0.0 -565,24.0,0.0,0.0,0.0,0.0,0.973971041324708,-9.492362112225068,1.0,0.0,0.0 -565,25.0,1.899734162629706,2.3,0.0,0.0,0.9598290180327572,-9.576192646193778,1.0,0.0,0.0 -565,26.0,0.0,0.0,0.0,0.0,0.9789312063494028,-9.24576066194902,1.0,0.0,0.0 -565,27.0,0.0,0.0,0.0,0.0,0.9640316446706771,-6.998186700250543,1.0,0.0,0.0 -565,28.0,1.3026748543746554,0.9,0.0,0.0,0.9650917968599526,-9.884239165515172,1.0,0.0,0.0 -565,29.0,5.753480606821395,1.9,0.0,0.0,0.9575518766549028,-10.364452332971092,1.0,0.0,0.0 -566,0.0,0.0,0.0,160.3429164848232,0.0005413379658314,1.0,0.0,0.0,0.0,1.0 -566,1.0,11.778351808304176,12.7,6.704077883171084e-07,10.33624950275606,0.9804002026129164,-3.678586220732796,0.0,1.0,0.0 -566,2.0,1.3026748543746554,1.2,0.0,0.0,0.9744293761349524,-4.824607501732465,1.0,0.0,0.0 -566,3.0,4.125137038853075,1.6,0.0,0.0,0.967853641687846,-5.92877055168338,1.0,0.0,0.0 -566,4.0,51.129988034205226,19.0,-7.54525980823369e-10,24.08620673248582,0.9605883148318856,-8.854392380286976,0.0,1.0,0.0 -566,5.0,0.0,0.0,0.0,0.0,0.9675218222387106,-7.038940239477295,1.0,0.0,0.0 -566,6.0,12.375411116559226,10.9,0.0,0.0,0.9582153115897214,-8.055681299474577,1.0,0.0,0.0 -566,7.0,16.28343567968319,30.0,-5.425025133805806e-10,30.503019005887403,0.966522380676769,-7.464534037569422,0.0,1.0,0.0 -566,8.0,0.0,0.0,0.0,0.0,1.015833113308682,-8.836594126720138,1.0,0.0,0.0 -566,9.0,3.1481308980720835,2.0,0.0,0.0,1.006927143619556,-9.77050895491404,1.0,0.0,0.0 -566,10.0,0.0,0.0,-1.3920785880455459e-11,22.48705050228877,1.0599602990954298,-8.836594126721682,0.0,1.0,0.0 -566,11.0,6.079149320415058,7.5,0.0,0.0,1.0138235274981189,-9.305450491078057,1.0,0.0,0.0 -566,12.0,0.0,0.0,-7.002721874775373e-10,9.779437634569303,1.0271528126058171,-9.305450491131996,0.0,1.0,0.0 -566,13.0,3.365243373801193,1.6,0.0,0.0,1.0028332266251108,-9.770087941742206,1.0,0.0,0.0 -566,14.0,4.450805752446739,2.5,0.0,0.0,0.9995357501124504,-9.796707481524685,1.0,0.0,0.0 -566,15.0,1.899734162629706,1.8,0.0,0.0,1.004701098541194,-9.609788989620258,1.0,0.0,0.0 -566,16.0,4.885030703904958,5.8,0.0,0.0,1.0018863030805585,-9.813598081689198,1.0,0.0,0.0 -566,17.0,1.736899805832874,0.9,0.0,0.0,0.992993326418458,-10.129735981427125,1.0,0.0,0.0 -566,18.0,5.156421298566344,3.4,0.0,0.0,0.9914099447832906,-10.230781228173251,1.0,0.0,0.0 -566,19.0,1.1941186165101008,0.7,0.0,0.0,0.994673057887788,-10.147218272951577,1.0,0.0,0.0 -566,20.0,9.498670813148529,11.2,0.0,0.0,0.996388332311962,-9.942674204526488,1.0,0.0,0.0 -566,21.0,0.0,0.0,0.0,0.0,0.996772523721008,-9.93944343989476,1.0,0.0,0.0 -566,22.0,1.736899805832874,1.6,0.0,0.0,0.9911174783572088,-9.972715078941745,1.0,0.0,0.0 -566,23.0,4.722196347108126,6.7,0.0,0.0,0.9865926781036964,-10.062670576714629,1.0,0.0,0.0 -566,24.0,0.0,0.0,0.0,0.0,0.9802624315273772,-9.79250414653288,1.0,0.0,0.0 -566,25.0,1.899734162629706,2.3,0.0,0.0,0.9662138738583832,-9.875246244146693,1.0,0.0,0.0 -566,26.0,0.0,0.0,0.0,0.0,0.9833603587879668,-9.545989971185792,1.0,0.0,0.0 -566,27.0,0.0,0.0,0.0,0.0,0.9654975335531768,-7.3908282717948595,1.0,0.0,0.0 -566,28.0,1.3026748543746554,0.9,0.0,0.0,0.969586964569889,-10.178649990916483,1.0,0.0,0.0 -566,29.0,5.753480606821395,1.9,0.0,0.0,0.9620831108965218,-10.654390254866362,1.0,0.0,0.0 -567,0.0,0.0,0.0,160.3429164848232,0.0005413379658314,1.0,0.0,0.0,0.0,1.0 -567,1.0,11.778351808304176,12.7,6.704077883171084e-07,10.33624950275606,0.9804002026129164,-3.678586220732796,0.0,1.0,0.0 -567,2.0,1.3026748543746554,1.2,0.0,0.0,0.9744293761349524,-4.824607501732465,1.0,0.0,0.0 -567,3.0,4.125137038853075,1.6,0.0,0.0,0.967853641687846,-5.92877055168338,1.0,0.0,0.0 -567,4.0,51.129988034205226,19.0,-7.54525980823369e-10,24.08620673248582,0.9605883148318856,-8.854392380286976,0.0,1.0,0.0 -567,5.0,0.0,0.0,0.0,0.0,0.9675218222387106,-7.038940239477295,1.0,0.0,0.0 -567,6.0,12.375411116559226,10.9,0.0,0.0,0.9582153115897214,-8.055681299474577,1.0,0.0,0.0 -567,7.0,16.28343567968319,30.0,-5.425025133805806e-10,30.503019005887403,0.966522380676769,-7.464534037569422,0.0,1.0,0.0 -567,8.0,0.0,0.0,0.0,0.0,1.015833113308682,-8.836594126720138,1.0,0.0,0.0 -567,9.0,3.1481308980720835,2.0,0.0,0.0,1.006927143619556,-9.77050895491404,1.0,0.0,0.0 -567,10.0,0.0,0.0,-1.3920785880455459e-11,22.48705050228877,1.0599602990954298,-8.836594126721682,0.0,1.0,0.0 -567,11.0,6.079149320415058,7.5,0.0,0.0,1.0138235274981189,-9.305450491078057,1.0,0.0,0.0 -567,12.0,0.0,0.0,-7.002721874775373e-10,9.779437634569303,1.0271528126058171,-9.305450491131996,0.0,1.0,0.0 -567,13.0,3.365243373801193,1.6,0.0,0.0,1.0028332266251108,-9.770087941742206,1.0,0.0,0.0 -567,14.0,4.450805752446739,2.5,0.0,0.0,0.9995357501124504,-9.796707481524685,1.0,0.0,0.0 -567,15.0,1.899734162629706,1.8,0.0,0.0,1.004701098541194,-9.609788989620258,1.0,0.0,0.0 -567,16.0,4.885030703904958,5.8,0.0,0.0,1.0018863030805585,-9.813598081689198,1.0,0.0,0.0 -567,17.0,1.736899805832874,0.9,0.0,0.0,0.992993326418458,-10.129735981427125,1.0,0.0,0.0 -567,18.0,5.156421298566344,3.4,0.0,0.0,0.9914099447832906,-10.230781228173251,1.0,0.0,0.0 -567,19.0,1.1941186165101008,0.7,0.0,0.0,0.994673057887788,-10.147218272951577,1.0,0.0,0.0 -567,20.0,9.498670813148529,11.2,0.0,0.0,0.996388332311962,-9.942674204526488,1.0,0.0,0.0 -567,21.0,0.0,0.0,0.0,0.0,0.996772523721008,-9.93944343989476,1.0,0.0,0.0 -567,22.0,1.736899805832874,1.6,0.0,0.0,0.9911174783572088,-9.972715078941745,1.0,0.0,0.0 -567,23.0,4.722196347108126,6.7,0.0,0.0,0.9865926781036964,-10.062670576714629,1.0,0.0,0.0 -567,24.0,0.0,0.0,0.0,0.0,0.9802624315273772,-9.79250414653288,1.0,0.0,0.0 -567,25.0,1.899734162629706,2.3,0.0,0.0,0.9662138738583832,-9.875246244146693,1.0,0.0,0.0 -567,26.0,0.0,0.0,0.0,0.0,0.9833603587879668,-9.545989971185792,1.0,0.0,0.0 -567,27.0,0.0,0.0,0.0,0.0,0.9654975335531768,-7.3908282717948595,1.0,0.0,0.0 -567,28.0,1.3026748543746554,0.9,0.0,0.0,0.969586964569889,-10.178649990916483,1.0,0.0,0.0 -567,29.0,5.753480606821395,1.9,0.0,0.0,0.9620831108965218,-10.654390254866362,1.0,0.0,0.0 -568,0.0,0.0,0.0,160.32872523098885,2.0389975771387903,1.0,0.0,0.0,0.0,1.0 -568,1.0,11.748229201193208,12.7,0.0,0.0,0.9798350660854852,-3.420140337616011,0.0,1.0,0.0 -568,2.0,1.2993433217909538,1.2,0.0,0.0,0.9736290868142534,-5.511432932632974,1.0,0.0,0.0 -568,3.0,4.114587185671354,1.6,0.0,0.0,0.9669873827980096,-6.782332057375088,1.0,0.0,0.0 -568,4.0,50.99922538029494,19.0,1.9683378136559867e-09,27.41529611732957,0.9701293941926864,-9.824582870533428,0.0,1.0,0.0 -568,5.0,0.0,0.0,0.0,0.0,0.9677412298350072,-7.4822347974130015,1.0,0.0,0.0 -568,6.0,12.34376155701406,10.9,0.0,0.0,0.9555735654618126,-7.941896787416721,1.0,0.0,0.0 -568,7.0,16.241791522386922,30.0,1.4348502312415396e-09,37.83320181848041,0.969515039928299,-7.959518654032462,0.0,1.0,0.0 -568,8.0,0.0,0.0,0.0,0.0,1.0165913296612736,-10.053169346730089,1.0,0.0,0.0 -568,9.0,3.140079694328138,2.0,0.0,0.0,1.0087567478104955,-11.38653038612945,1.0,0.0,0.0 -568,10.0,0.0,0.0,1.427453332527579e-09,22.12127791772096,1.0599991548997851,-10.05316934657222,0.0,1.0,0.0 -568,11.0,6.063602168357784,7.5,0.0,0.0,1.0259042628515944,-10.231422110421155,1.0,0.0,0.0 -568,12.0,0.0,0.0,2.1174447259729054e-09,15.207381941235443,1.0462533819887394,-10.231422110262915,0.0,1.0,0.0 -568,13.0,3.356636914626631,1.6,0.0,0.0,1.0139842710211435,-10.764148292513072,1.0,0.0,0.0 -568,14.0,4.439423016119092,2.5,0.0,0.0,1.0091380261348923,-10.845398507703193,1.0,0.0,0.0 -568,15.0,1.894875677611808,1.8,0.0,0.0,1.0206435703086276,-10.344369575746668,1.0,0.0,0.0 -568,16.0,4.872537456716077,5.8,0.0,0.0,1.00228937479166,-11.513360318055405,1.0,0.0,0.0 -568,17.0,1.7324577623879385,0.9,0.0,0.0,0.9998699754292394,-11.369964847624775,1.0,0.0,0.0 -568,18.0,5.143233982089192,3.4,0.0,0.0,0.9966690906740656,-11.587942286831876,1.0,0.0,0.0 -568,19.0,1.1910647116417077,0.7,0.0,0.0,0.9990502206677014,-11.567860090114022,1.0,0.0,0.0 -568,20.0,9.47437838805904,11.2,0.0,0.0,0.9986374509225808,-11.494652124542762,1.0,0.0,0.0 -568,21.0,0.0,0.0,0.0,0.0,0.9991509257527348,-11.471564739747167,1.0,0.0,0.0 -568,22.0,1.7324577623879385,1.6,0.0,0.0,0.9986117707890874,-11.115300361732167,1.0,0.0,0.0 -568,23.0,4.710119541492207,6.7,0.0,0.0,0.9912463177105104,-11.337186723386033,1.0,0.0,0.0 -568,24.0,0.0,0.0,0.0,0.0,0.9846048961516768,-10.747956959297008,1.0,0.0,0.0 -568,25.0,1.894875677611808,2.3,0.0,0.0,0.9706330702477952,-10.828852223167289,1.0,0.0,0.0 -568,26.0,0.0,0.0,0.0,0.0,0.9873886638504672,-10.304228510986023,1.0,0.0,0.0 -568,27.0,0.0,0.0,0.0,0.0,0.9665235322365174,-7.88430017235836,1.0,0.0,0.0 -568,28.0,1.2993433217909538,0.9,0.0,0.0,0.973695115186382,-10.929570050459716,1.0,0.0,0.0 -568,29.0,5.738766337910046,1.9,0.0,0.0,0.9662369926238236,-11.399867543621363,1.0,0.0,0.0 -569,0.0,0.0,0.0,160.2481374259097,0.0029459338572124,1.0,0.0,0.0,0.0,1.0 -569,1.0,11.748229201193208,12.7,2.7599555683735564e-06,8.446258879085882,0.980317491565044,-3.666738439150624,0.0,1.0,0.0 -569,2.0,1.2993433217909538,1.2,0.0,0.0,0.9747310367643744,-4.8477185501721465,1.0,0.0,0.0 -569,3.0,4.114587185671354,1.6,0.0,0.0,0.968228310842156,-5.957409478977515,1.0,0.0,0.0 -569,4.0,50.99922538029494,19.0,1.8278238893437411e-09,25.31871476591148,0.962325819953184,-8.83628991081617,0.0,1.0,0.0 -569,5.0,0.0,0.0,0.0,0.0,0.9684182773094164,-7.002939908293503,1.0,0.0,0.0 -569,6.0,12.34376155701406,10.9,0.0,0.0,0.9594750858739712,-8.024989752674339,1.0,0.0,0.0 -569,7.0,16.241791522386922,30.0,2.7742755965577515e-09,38.047202944332014,0.969885585957902,-7.493069337623936,0.0,1.0,0.0 -569,8.0,0.0,0.0,0.0,0.0,1.0250909849411811,-7.002939907806938,1.0,0.0,0.0 -569,9.0,3.140079694328138,2.0,0.0,0.0,0.9642932283855448,-12.418078272040368,1.0,0.0,0.0 -569,10.0,0.0,0.0,4.1442210611453595e-09,17.779239272298568,1.0599792323316823,-7.002939907352399,0.0,1.0,0.0 -569,11.0,6.063602168357784,7.5,0.0,0.0,1.0149554970938106,-9.763195468129483,1.0,0.0,0.0 -569,12.0,0.0,0.0,2.906632004617728e-09,11.425163229809703,1.030477647009581,-9.763195467906565,0.0,1.0,0.0 -569,13.0,3.356636914626631,1.6,0.0,0.0,1.0067630382274333,-10.134398588842718,1.0,0.0,0.0 -569,14.0,4.439423016119092,2.5,0.0,0.0,0.993222349629809,-10.615010263334002,1.0,0.0,0.0 -569,15.0,1.894875677611808,1.8,0.0,0.0,1.0096374132812311,-9.878605883810623,1.0,0.0,0.0 -569,16.0,4.872537456716077,5.8,0.0,0.0,0.9575232469485928,-12.55695931566051,1.0,0.0,0.0 -569,17.0,1.7324577623879385,0.9,0.0,0.0,0.9734277424370408,-11.582899495127435,1.0,0.0,0.0 -569,18.0,5.143233982089192,3.4,0.0,0.0,0.9641293637123468,-12.069791145342952,1.0,0.0,0.0 -569,19.0,1.1910647116417077,0.7,0.0,0.0,0.9634382085720912,-12.183575361428622,1.0,0.0,0.0 -569,20.0,9.47437838805904,11.2,0.0,0.0,0.954368255534452,-12.522424577683491,1.0,0.0,0.0 -569,21.0,0.0,0.0,0.0,0.0,0.9551184229496836,-12.492928235976215,1.0,0.0,0.0 -569,22.0,1.7324577623879385,1.6,0.0,0.0,0.9881967350252704,-10.72589891208458,1.0,0.0,0.0 -569,23.0,4.710119541492207,6.7,0.0,0.0,0.9497831609306172,-12.3085348098841,1.0,0.0,0.0 -569,24.0,0.0,0.0,0.0,0.0,0.9592665917982668,-11.369824998566145,1.0,0.0,0.0 -569,25.0,1.894875677611808,2.3,0.0,0.0,0.9449144266064085,-11.45511702666603,1.0,0.0,0.0 -569,26.0,0.0,0.0,0.0,0.0,0.9722087693877276,-10.69827516996407,1.0,0.0,0.0 -569,27.0,0.0,0.0,0.0,0.0,0.9649574841524312,-7.471184092894853,1.0,0.0,0.0 -569,28.0,1.2993433217909538,0.9,0.0,0.0,0.96537215163541,-10.90693454283258,1.0,0.0,0.0 -569,29.0,5.738766337910046,1.9,0.0,0.0,0.9400052798029404,-12.48560689477918,1.0,0.0,0.0 -570,0.0,0.0,0.0,162.02744341315525,0.0004871331618971,1.0,0.0,0.0,0.0,1.0 -570,1.0,11.748229201193208,12.7,1.4678811105825647e-06,7.468441474528817,0.984686918711415,-2.6070903994160872,0.0,1.0,0.0 -570,2.0,1.2993433217909538,1.2,0.0,0.0,0.967819234366568,-8.11725053056066,1.0,0.0,0.0 -570,3.0,4.114587185671354,1.6,0.0,0.0,0.96066542823614,-10.025954771069358,1.0,0.0,0.0 -570,4.0,50.99922538029494,19.0,-8.315009485367643e-11,31.0036612881588,0.966557868803422,-10.531075018513665,0.0,1.0,0.0 -570,5.0,0.0,0.0,0.0,0.0,0.9603998483524616,-11.418207374720762,1.0,0.0,0.0 -570,6.0,12.34376155701406,10.9,0.0,0.0,0.9558260390930702,-11.320993088909328,1.0,0.0,0.0 -570,7.0,16.241791522386922,30.0,-3.416186701476629e-10,36.8768136158005,0.9615250478543524,-11.895757797198485,0.0,1.0,0.0 -570,8.0,0.0,0.0,0.0,0.0,1.0118629654423097,-13.313318703868974,1.0,0.0,0.0 -570,9.0,3.140079694328138,2.0,0.0,0.0,1.0031561698990163,-14.294277541889867,1.0,0.0,0.0 -570,10.0,0.0,0.0,-2.2494946450334164e-10,23.999562309898906,1.059000876932239,-13.31331870389399,0.0,1.0,0.0 -570,11.0,6.063602168357784,7.5,0.0,0.0,1.0275120001676477,-13.29751549174355,1.0,0.0,0.0 -570,12.0,0.0,0.0,-2.1867671963670538e-10,18.001062507430063,1.051479642052942,-13.297515491759786,0.0,1.0,0.0 -570,13.0,3.356636914626631,1.6,0.0,0.0,1.0020388348935734,-14.42871855626035,1.0,0.0,0.0 -570,14.0,4.439423016119092,2.5,0.0,0.0,0.9800671920292856,-14.80978116405604,1.0,0.0,0.0 -570,15.0,1.894875677611808,1.8,0.0,0.0,1.010503726885773,-13.78840117036298,1.0,0.0,0.0 -570,16.0,4.872537456716077,5.8,0.0,0.0,1.0012238794320183,-14.240278427962378,1.0,0.0,0.0 -570,17.0,1.7324577623879385,0.9,0.0,0.0,0.9789750169010464,-14.979796830700732,1.0,0.0,0.0 -570,18.0,5.143233982089192,3.4,0.0,0.0,0.9806445986262546,-14.98103739992926,1.0,0.0,0.0 -570,19.0,1.1910647116417077,0.7,0.0,0.0,0.98566887215825,-14.84312040253831,1.0,0.0,0.0 -570,20.0,9.47437838805904,11.2,0.0,0.0,0.992188835944074,-14.518092967873956,1.0,0.0,0.0 -570,21.0,0.0,0.0,0.0,0.0,0.9924444731452328,-14.531190047896605,1.0,0.0,0.0 -570,22.0,1.7324577623879385,1.6,0.0,0.0,0.9771804717257744,-14.898215367749152,1.0,0.0,0.0 -570,23.0,4.710119541492207,6.7,0.0,0.0,0.9801043039222196,-14.863754433046791,1.0,0.0,0.0 -570,24.0,0.0,0.0,0.0,0.0,0.9571393562192664,-13.954567099972898,1.0,0.0,0.0 -570,25.0,1.894875677611808,2.3,0.0,0.0,0.9427543012603902,-14.040244557142971,1.0,0.0,0.0 -570,26.0,0.0,0.0,0.0,0.0,0.964431257100572,-13.864426727303226,1.0,0.0,0.0 -570,27.0,0.0,0.0,0.0,0.0,0.955507220429911,-11.702260901415746,1.0,0.0,0.0 -570,28.0,1.2993433217909538,0.9,0.0,0.0,0.950392033620978,-14.52032984289368,1.0,0.0,0.0 -570,29.0,5.738766337910046,1.9,0.0,0.0,0.9427450950497972,-15.014139691559404,1.0,0.0,0.0 -571,0.0,0.0,0.0,160.23418255869984,0.004201501424994,1.0,0.0,0.0,0.0,1.0 -571,1.0,11.748229201193208,12.7,4.210369358173062e-06,8.782327090544847,0.980053026976552,-3.662803115713211,0.0,1.0,0.0 -571,2.0,1.2993433217909538,1.2,0.0,0.0,0.9754927206695836,-4.854129469936527,1.0,0.0,0.0 -571,3.0,4.114587185671354,1.6,0.0,0.0,0.9691678515798298,-5.965013654409215,1.0,0.0,0.0 -571,4.0,50.99922538029494,19.0,-2.4521139282002988e-12,23.994330547990486,0.9601778124547692,-8.818014606751426,0.0,1.0,0.0 -571,5.0,0.0,0.0,0.0,0.0,0.9671633665679016,-6.996704005960988,1.0,0.0,0.0 -571,6.0,12.34376155701406,10.9,0.0,0.0,0.9578385256260684,-8.015108929260006,1.0,0.0,0.0 -571,7.0,16.241791522386922,30.0,2.471549732399385e-09,29.8085707885825,0.9534682521631104,-10.017295677315722,0.0,1.0,0.0 -571,8.0,0.0,0.0,0.0,0.0,1.0187332378363538,-9.573425218880129,1.0,0.0,0.0 -571,9.0,3.140079694328138,2.0,0.0,0.0,1.0134789705413627,-10.902763727013674,1.0,0.0,0.0 -571,10.0,0.0,0.0,3.859579402544706e-09,21.029052000251784,1.059997875412629,-9.573425218454178,0.0,1.0,0.0 -571,11.0,6.063602168357784,7.5,0.0,0.0,1.0304652805332402,-9.580305658092255,1.0,0.0,0.0 -571,12.0,0.0,0.0,-3.3939356057895316e-10,15.54023594157828,1.0511626766653293,-9.580305658117393,0.0,1.0,0.0 -571,13.0,3.356636914626631,1.6,0.0,0.0,1.0187087059154356,-10.15574566188378,1.0,0.0,0.0 -571,14.0,4.439423016119092,2.5,0.0,0.0,1.0136602436079956,-10.285778373778706,1.0,0.0,0.0 -571,15.0,1.894875677611808,1.8,0.0,0.0,1.025228130087919,-9.692250360139584,1.0,0.0,0.0 -571,16.0,4.872537456716077,5.8,0.0,0.0,1.0070421435196644,-11.02840691419815,1.0,0.0,0.0 -571,17.0,1.7324577623879385,0.9,0.0,0.0,1.0044956401338134,-10.833902580042064,1.0,0.0,0.0 -571,18.0,5.143233982089192,3.4,0.0,0.0,1.001348274276469,-11.066832952183535,1.0,0.0,0.0 -571,19.0,1.1910647116417077,0.7,0.0,0.0,1.0037384718741662,-11.055900961134524,1.0,0.0,0.0 -571,20.0,9.47437838805904,11.2,0.0,0.0,1.00027969318316,-11.112221713215986,1.0,0.0,0.0 -571,21.0,0.0,0.0,0.0,0.0,0.9997955307593132,-11.120870687035026,1.0,0.0,0.0 -571,22.0,1.7324577623879385,1.6,0.0,0.0,1.0031170303340795,-10.71949448367088,1.0,0.0,0.0 -571,23.0,4.710119541492207,6.7,0.0,0.0,0.9957650251491768,-11.165020237147385,1.0,0.0,0.0 -571,24.0,0.0,0.0,0.0,0.0,0.9633047138510784,-10.140649140175734,1.0,0.0,0.0 -571,25.0,1.894875677611808,2.3,0.0,0.0,0.9490145649382092,-10.225216671572442,1.0,0.0,0.0 -571,26.0,0.0,0.0,0.0,0.0,0.9705484688485564,-10.051659499489457,1.0,0.0,0.0 -571,27.0,0.0,0.0,0.0,0.0,0.9612689738978072,-7.916435339871943,1.0,0.0,0.0 -571,28.0,1.2993433217909538,0.9,0.0,0.0,0.9566030968388765,-10.699202701680548,1.0,0.0,0.0 -571,29.0,5.738766337910046,1.9,0.0,0.0,0.9490074267787352,-11.186575822165787,1.0,0.0,0.0 -572,0.0,0.0,0.0,116.12614349689288,8.450657063008293e-07,1.0,0.0,0.0,0.0,1.0 -572,1.0,11.748229201193208,12.7,47.49100719806364,-15.735351420060784,0.9801476015099062,-3.2561088629864527,0.0,1.0,0.0 -572,2.0,1.2993433217909538,1.2,0.0,0.0,0.9920026011647068,-1.6945392613084127,1.0,0.0,0.0 -572,3.0,4.114587185671354,1.6,0.0,0.0,0.9894893598126204,-2.049711645093016,1.0,0.0,0.0 -572,4.0,50.99922538029494,19.0,-6.578550859476001e-10,39.999999312563446,0.9759704395453068,-11.326807536034838,0.0,1.0,0.0 -572,5.0,0.0,0.0,0.0,0.0,0.9656491256700058,-12.093845845976997,1.0,0.0,0.0 -572,6.0,12.34376155701406,10.9,0.0,0.0,0.9628751067039582,-12.037725898665776,1.0,0.0,0.0 -572,7.0,16.241791522386922,30.0,-5.835801178378097e-11,39.99999937723618,0.9677515152926106,-12.62742874040492,0.0,1.0,0.0 -572,8.0,0.0,0.0,0.0,0.0,1.0156974036202042,-15.075594014639348,1.0,0.0,0.0 -572,9.0,3.140079694328138,2.0,0.0,0.0,1.008321143682425,-16.619206992265294,1.0,0.0,0.0 -572,10.0,0.0,0.0,1.6037604958274384e-10,22.57728425987615,1.0599999991831577,-15.075594014621595,0.0,1.0,0.0 -572,11.0,6.063602168357784,7.5,0.0,0.0,0.9650091159103832,-24.045196820151997,1.0,0.0,0.0 -572,12.0,0.0,0.0,4.267502202055413e-09,23.9999995865668,0.9986543887879916,-24.04519681979679,0.0,1.0,0.0 -572,13.0,3.356636914626631,1.6,0.0,0.0,0.9543827161012316,-23.74163899255621,1.0,0.0,0.0 -572,14.0,4.439423016119092,2.5,0.0,0.0,0.957305713850538,-22.994004505389768,1.0,0.0,0.0 -572,15.0,1.894875677611808,1.8,0.0,0.0,0.9594124002166708,-24.172935012324128,1.0,0.0,0.0 -572,16.0,4.872537456716077,5.8,0.0,0.0,1.0018509382187573,-16.746147244155754,1.0,0.0,0.0 -572,17.0,1.7324577623879385,0.9,0.0,0.0,0.965018563542944,-21.055238983591256,1.0,0.0,0.0 -572,18.0,5.143233982089192,3.4,0.0,0.0,0.9725405603782732,-19.82462628698425,1.0,0.0,0.0 -572,19.0,1.1910647116417077,0.7,0.0,0.0,0.9809387227966738,-19.046516393351936,1.0,0.0,0.0 -572,20.0,9.47437838805904,11.2,0.0,0.0,1.0001254939351187,-16.744045297391263,1.0,0.0,0.0 -572,21.0,0.0,0.0,0.0,0.0,1.001243847669534,-16.727197765808096,1.0,0.0,0.0 -572,22.0,1.7324577623879385,1.6,0.0,0.0,0.9473391910770042,-22.188702202028143,1.0,0.0,0.0 -572,23.0,4.710119541492207,6.7,0.0,0.0,0.941286497466484,-20.935730733466045,1.0,0.0,0.0 -572,24.0,0.0,0.0,0.0,0.0,0.9559210898012784,-18.70208489572988,1.0,0.0,0.0 -572,25.0,1.894875677611808,2.3,0.0,0.0,0.9415171297872108,-18.78798426516713,1.0,0.0,0.0 -572,26.0,0.0,0.0,0.0,0.0,0.9722036767779028,-17.249508420818138,1.0,0.0,0.0 -572,27.0,0.0,0.0,0.0,0.0,0.9617673582793904,-12.73230765149819,1.0,0.0,0.0 -572,28.0,1.2993433217909538,0.9,0.0,0.0,0.965367022633373,-17.45816999517478,1.0,0.0,0.0 -572,29.0,5.738766337910046,1.9,0.0,0.0,0.9400000011858194,-19.03685955071601,1.0,0.0,0.0 -573,0.0,0.0,0.0,159.9158364114361,0.0005270378983013,1.0,0.0,0.0,0.0,1.0 -573,1.0,11.748229201193208,12.7,6.447653704159147e-07,10.293933837749345,0.980440976456103,-3.6685000547418185,0.0,1.0,0.0 -573,2.0,1.2993433217909538,1.2,0.0,0.0,0.9744842491525516,-4.811415689566567,1.0,0.0,0.0 -573,3.0,4.114587185671354,1.6,0.0,0.0,0.9679189317529538,-5.912439062334741,1.0,0.0,0.0 -573,4.0,50.99922538029494,19.0,-7.434356797852743e-10,24.0613696501336,0.9606721463445586,-8.830080917923194,0.0,1.0,0.0 -573,5.0,0.0,0.0,0.0,0.0,0.9675938863587484,-7.019689681373259,1.0,0.0,0.0 -573,6.0,12.34376155701406,10.9,0.0,0.0,0.958298012063719,-8.033381183274244,1.0,0.0,0.0 -573,7.0,16.241791522386922,30.0,-5.508413478907295e-10,30.490671535156523,0.9665952881050658,-7.444093056926769,0.0,1.0,0.0 -573,8.0,0.0,0.0,0.0,0.0,1.0158770692656602,-8.812598199184782,1.0,0.0,0.0 -573,9.0,3.140079694328138,2.0,0.0,0.0,1.0069776074625625,-9.744071004604262,1.0,0.0,0.0 -573,10.0,0.0,0.0,-6.607847414366455e-11,22.463632505182712,1.0599583808120476,-8.812598199192093,0.0,1.0,0.0 -573,11.0,6.063602168357784,7.5,0.0,0.0,1.0138486682874617,-9.280120244879871,1.0,0.0,0.0 -573,12.0,0.0,0.0,-7.115686150052231e-10,9.748695598590407,1.0271362663262702,-9.280120244934684,0.0,1.0,0.0 -573,13.0,3.356636914626631,1.6,0.0,0.0,1.0028738640957426,-9.743195463981376,1.0,0.0,0.0 -573,14.0,4.439423016119092,2.5,0.0,0.0,0.9995827017623798,-9.769623226599762,1.0,0.0,0.0 -573,15.0,1.894875677611808,1.8,0.0,0.0,1.0047425804588923,-9.58346161644578,1.0,0.0,0.0 -573,16.0,4.872537456716077,5.8,0.0,0.0,1.0019367153740182,-9.786756887944511,1.0,0.0,0.0 -573,17.0,1.7324577623879385,0.9,0.0,0.0,0.9930524204373682,-10.10161657174837,1.0,0.0,0.0 -573,18.0,5.143233982089192,3.4,0.0,0.0,0.9914731939477364,-10.202387684215594,1.0,0.0,0.0 -573,19.0,1.1910647116417077,0.7,0.0,0.0,0.9947337112440472,-10.119218856819764,1.0,0.0,0.0 -573,20.0,9.47437838805904,11.2,0.0,0.0,0.9964476518400732,-9.91530473555183,1.0,0.0,0.0 -573,21.0,0.0,0.0,0.0,0.0,0.9968317080339322,-9.91211485576839,1.0,0.0,0.0 -573,22.0,1.7324577623879385,1.6,0.0,0.0,0.9911774092725684,-9.944904896265228,1.0,0.0,0.0 -573,23.0,4.710119541492207,6.7,0.0,0.0,0.9866634544896032,-10.034591343955444,1.0,0.0,0.0 -573,24.0,0.0,0.0,0.0,0.0,0.9803402728666528,-9.765089342879415,1.0,0.0,0.0 -573,25.0,1.894875677611808,2.3,0.0,0.0,0.96630587123906,-9.84670034624443,1.0,0.0,0.0 -573,26.0,0.0,0.0,0.0,0.0,0.9834365186323902,-9.519597330121815,1.0,0.0,0.0 -573,27.0,0.0,0.0,0.0,0.0,0.9655736019811252,-7.370562950157991,1.0,0.0,0.0 -573,28.0,1.2993433217909538,0.9,0.0,0.0,0.9696847140778904,-10.150045044821322,1.0,0.0,0.0 -573,29.0,5.738766337910046,1.9,0.0,0.0,0.962194773930914,-10.62426738630162,1.0,0.0,0.0 -574,0.0,0.0,0.0,159.92966312199263,0.0008368925717761,1.0,0.0,0.0,0.0,1.0 -574,1.0,11.748229201193208,12.7,1.1616000145171575e-06,9.829062380546198,0.9803140737664964,-3.669258738602576,0.0,1.0,0.0 -574,2.0,1.2993433217909538,1.2,0.0,0.0,0.9748341890200456,-4.809047020779422,1.0,0.0,0.0 -574,3.0,4.114587185671354,1.6,0.0,0.0,0.968349811483116,-5.909337856232502,1.0,0.0,0.0 -574,4.0,50.99922538029494,19.0,-1.0533131655332915e-09,24.0503769889086,0.9605099646203512,-8.83934808948518,0.0,1.0,0.0 -574,5.0,0.0,0.0,0.0,0.0,0.9674198128039596,-7.035996637021528,1.0,0.0,0.0 -574,6.0,12.34376155701406,10.9,0.0,0.0,0.9581263110045192,-8.046908649530096,1.0,0.0,0.0 -574,7.0,16.241791522386922,30.0,-6.33711913838862e-10,30.36934974982978,0.9663354816988236,-7.461097532438183,0.0,1.0,0.0 -574,8.0,0.0,0.0,0.0,0.0,1.0150938308076696,-8.900954371850082,1.0,0.0,0.0 -574,9.0,3.140079694328138,2.0,0.0,0.0,1.005538867734049,-9.871061430790052,1.0,0.0,0.0 -574,10.0,0.0,0.0,5.261938418453841e-10,22.81578044923632,1.059869913902321,-8.900954371791794,0.0,1.0,0.0 -574,11.0,6.063602168357784,7.5,0.0,0.0,1.0179786913581543,-9.085133480426943,1.0,0.0,0.0 -574,12.0,0.0,0.0,-1.0605415806577494e-09,10.090109245338482,1.0316711867241712,-9.085133480507947,0.0,1.0,0.0 -574,13.0,3.356636914626631,1.6,0.0,0.0,1.0084338135936697,-9.475937913245588,1.0,0.0,0.0 -574,14.0,4.439423016119092,2.5,0.0,0.0,1.0069594960529789,-9.4661038011054,1.0,0.0,0.0 -574,15.0,1.894875677611808,1.8,0.0,0.0,1.0062511495400928,-9.513774869751908,1.0,0.0,0.0 -574,16.0,4.872537456716077,5.8,0.0,0.0,1.0014861187713282,-9.855968201933104,1.0,0.0,0.0 -574,17.0,1.7324577623879385,0.9,0.0,0.0,1.0031421279559392,-9.626042935896216,1.0,0.0,0.0 -574,18.0,5.143233982089192,3.4,0.0,0.0,0.98667451088238,-10.549116845202448,1.0,0.0,0.0 -574,19.0,1.1910647116417077,0.7,0.0,0.0,0.990792893816734,-10.411889170587113,1.0,0.0,0.0 -574,20.0,9.47437838805904,11.2,0.0,0.0,0.9944362884691692,-10.05271390676292,1.0,0.0,0.0 -574,21.0,0.0,0.0,0.0,0.0,0.9946445902740572,-10.052451737935456,1.0,0.0,0.0 -574,22.0,1.7324577623879385,1.6,0.0,0.0,1.0020031785562322,-9.573972607628413,1.0,0.0,0.0 -574,23.0,4.710119541492207,6.7,0.0,0.0,0.9820346511455498,-10.200308291559397,1.0,0.0,0.0 -574,24.0,0.0,0.0,0.0,0.0,0.9774329852953558,-9.897149998953342,1.0,0.0,0.0 -574,25.0,1.894875677611808,2.3,0.0,0.0,0.963355597325715,-9.979254424765202,1.0,0.0,0.0 -574,26.0,0.0,0.0,0.0,0.0,0.9816099640826018,-9.62848381103084,1.0,0.0,0.0 -574,27.0,0.0,0.0,0.0,0.0,0.965155876691806,-7.394026948997458,1.0,0.0,0.0 -574,28.0,1.2993433217909538,0.9,0.0,0.0,0.967831062968163,-10.261312701840314,1.0,0.0,0.0 -574,29.0,5.738766337910046,1.9,0.0,0.0,0.960326323071114,-10.737365815171191,1.0,0.0,0.0 -575,0.0,0.0,0.0,160.70515655553598,0.0010228772682197,1.0,0.0,0.0,0.0,1.0 -575,1.0,11.748229201193208,12.7,1.447002445448043e-06,9.872391834865027,0.9815578401239734,-3.3582719428312964,0.0,1.0,0.0 -575,2.0,1.2993433217909538,1.2,0.0,0.0,0.972399171358777,-5.785797464434732,1.0,0.0,0.0 -575,3.0,4.114587185671354,1.6,0.0,0.0,0.965531600247633,-7.124018577404777,1.0,0.0,0.0 -575,4.0,50.99922538029494,19.0,4.2692191635898905e-10,25.610821084340746,0.9613761243503592,-9.545584192454571,0.0,1.0,0.0 -575,5.0,0.0,0.0,0.0,0.0,0.9640252776382248,-8.753549606929083,1.0,0.0,0.0 -575,6.0,12.34376155701406,10.9,0.0,0.0,0.9562911665020316,-9.350939013399705,1.0,0.0,0.0 -575,7.0,16.241791522386922,30.0,6.796915080500378e-10,29.886356559761,0.9628443952336192,-9.175161768850488,0.0,1.0,0.0 -575,8.0,0.0,0.0,0.0,0.0,1.0138687357923737,-10.378180905605973,1.0,0.0,0.0 -575,9.0,3.140079694328138,2.0,0.0,0.0,1.0098643167661367,-11.216729068801625,1.0,0.0,0.0 -575,10.0,0.0,0.0,1.9314426537824427e-09,18.343423738917256,1.0501992892110592,-10.378180905389796,0.0,1.0,0.0 -575,11.0,6.063602168357784,7.5,0.0,0.0,1.0203648121598892,-10.889406620992032,1.0,0.0,0.0 -575,12.0,0.0,0.0,1.1025562425908235e-09,20.092107255070086,1.0472252699470848,-10.889406620909266,0.0,1.0,0.0 -575,13.0,3.356636914626631,1.6,0.0,0.0,1.0088827236031432,-11.3390933346079,1.0,0.0,0.0 -575,14.0,4.439423016119092,2.5,0.0,0.0,1.0051078130986857,-11.34466173938989,1.0,0.0,0.0 -575,15.0,1.894875677611808,1.8,0.0,0.0,0.998562623251162,-11.239117642571635,1.0,0.0,0.0 -575,16.0,4.872537456716077,5.8,0.0,0.0,0.9846212308667396,-11.608037597136835,1.0,0.0,0.0 -575,17.0,1.7324577623879385,0.9,0.0,0.0,0.9976967060044604,-11.637185962700498,1.0,0.0,0.0 -575,18.0,5.143233982089192,3.4,0.0,0.0,0.9955835986883622,-11.71540173387408,1.0,0.0,0.0 -575,19.0,1.1910647116417077,0.7,0.0,0.0,0.9985464690307208,-11.621400193731752,1.0,0.0,0.0 -575,20.0,9.47437838805904,11.2,0.0,0.0,0.9993266531269186,-11.398248512946736,1.0,0.0,0.0 -575,21.0,0.0,0.0,0.0,0.0,0.9996962921195776,-11.398685043120013,1.0,0.0,0.0 -575,22.0,1.7324577623879385,1.6,0.0,0.0,0.9954744008475558,-11.501283412891729,1.0,0.0,0.0 -575,23.0,4.710119541492207,6.7,0.0,0.0,0.9892903249454684,-11.567876654679386,1.0,0.0,0.0 -575,24.0,0.0,0.0,0.0,0.0,0.9804264690388128,-11.347235093124848,1.0,0.0,0.0 -575,25.0,1.894875677611808,2.3,0.0,0.0,0.9663933378258583,-11.42883153637104,1.0,0.0,0.0 -575,26.0,0.0,0.0,0.0,0.0,0.9819602248984314,-11.1349478616298,1.0,0.0,0.0 -575,27.0,0.0,0.0,0.0,0.0,0.9622681042475666,-9.095110705093049,1.0,0.0,0.0 -575,28.0,1.2993433217909538,0.9,0.0,0.0,0.9681865283422502,-11.76731908756465,1.0,0.0,0.0 -575,29.0,5.738766337910046,1.9,0.0,0.0,0.9606846311221244,-12.243020300233692,1.0,0.0,0.0 -576,0.0,0.0,0.0,121.60028062508503,2.171367174952365e-06,1.0,0.0,0.0,0.0,1.0 -576,1.0,11.748229201193208,12.7,37.192997802183896,13.809087530064332,0.98456831630725,-2.55484270656462,0.0,1.0,0.0 -576,2.0,1.2993433217909538,1.2,0.0,0.0,0.9794373499759924,-4.239356534543317,1.0,0.0,0.0 -576,3.0,4.114587185671354,1.6,0.0,0.0,0.97395492533757,-5.200563594127333,1.0,0.0,0.0 -576,4.0,50.99922538029494,19.0,0.0,0.0,0.9400000007621302,-7.462337685639559,0.0,1.0,0.0 -576,5.0,0.0,0.0,0.0,0.0,0.972860652886895,-6.199489012369851,1.0,0.0,0.0 -576,6.0,12.34376155701406,10.9,0.0,0.0,0.952835135633244,-7.008530726501721,1.0,0.0,0.0 -576,7.0,16.241791522386922,30.0,-5.951904872628313e-09,39.999995140348,0.9754591847120322,-6.678035876902284,0.0,1.0,0.0 -576,8.0,0.0,0.0,0.0,0.0,1.0222288573356415,-7.940486407601759,1.0,0.0,0.0 -576,9.0,3.140079694328138,2.0,0.0,0.0,1.0171568708858598,-8.840817725000107,1.0,0.0,0.0 -576,10.0,0.0,0.0,-1.1549894827241586e-08,19.24874864582524,1.059999987209626,-7.940486408872074,0.0,1.0,0.0 -576,11.0,6.063602168357784,7.5,0.0,0.0,1.033836733065403,-8.565405192638,1.0,0.0,0.0 -576,12.0,0.0,0.0,-1.1709784116595641e-08,19.80931178153396,1.05999997564222,-8.56540519349512,0.0,1.0,0.0 -576,13.0,3.356636914626631,1.6,0.0,0.0,1.021759129142834,-9.003620457937854,1.0,0.0,0.0 -576,14.0,4.439423016119092,2.5,0.0,0.0,1.017312339355132,-8.992488422352212,1.0,0.0,0.0 -576,15.0,1.894875677611808,1.8,0.0,0.0,1.020702227265518,-8.76422256887537,1.0,0.0,0.0 -576,16.0,4.872537456716077,5.8,0.0,0.0,1.0139401875696437,-8.914363604714042,1.0,0.0,0.0 -576,17.0,1.7324577623879385,0.9,0.0,0.0,1.0082653203214935,-9.269123870149343,1.0,0.0,0.0 -576,18.0,5.143233982089192,3.4,0.0,0.0,1.0051591751882334,-9.340016007973713,1.0,0.0,0.0 -576,19.0,1.1910647116417077,0.7,0.0,0.0,1.0075596463957928,-9.244567181167517,1.0,0.0,0.0 -576,20.0,9.47437838805904,11.2,0.0,0.0,1.0070637360104662,-9.014886168993238,1.0,0.0,0.0 -576,21.0,0.0,0.0,0.0,0.0,1.0075467523160724,-9.01392870973551,1.0,0.0,0.0 -576,22.0,1.7324577623879385,1.6,0.0,0.0,1.0065574931205,-9.128623953860457,1.0,0.0,0.0 -576,23.0,4.710119541492207,6.7,0.0,0.0,0.9988013109877278,-9.171366982162631,1.0,0.0,0.0 -576,24.0,0.0,0.0,0.0,0.0,0.9905021573873556,-8.885396294652532,1.0,0.0,0.0 -576,25.0,1.894875677611808,2.3,0.0,0.0,0.9766159363070468,-8.96531729949649,1.0,0.0,0.0 -576,26.0,0.0,0.0,0.0,0.0,0.99229047684638,-8.63331275064303,1.0,0.0,0.0 -576,27.0,0.0,0.0,0.0,0.0,0.971982446957002,-6.558322342798872,1.0,0.0,0.0 -576,28.0,1.2993433217909538,0.9,0.0,0.0,0.9786684814898324,-9.25240730245594,1.0,0.0,0.0 -576,29.0,5.738766337910046,1.9,0.0,0.0,0.9712494374067586,-9.717905000296827,1.0,0.0,0.0 -577,0.0,0.0,0.0,139.27026957369242,-2.3955162298250343e-06,1.0,0.0,0.0,0.0,1.0 -577,1.0,11.748229201193208,12.7,22.484089885859408,10.682086172085931,0.9734880413291792,-4.611824608873111,0.0,1.0,0.0 -577,2.0,1.2993433217909538,1.2,0.0,0.0,1.0008019491139704,-0.1447091958828652,1.0,0.0,0.0 -577,3.0,4.114587185671354,1.6,0.0,0.0,0.9488896188222524,-9.44685577996554,1.0,0.0,0.0 -577,4.0,50.99922538029494,19.0,-5.245281290307985e-10,26.18388979930546,0.9515297589014888,-10.874485285283978,0.0,1.0,0.0 -577,5.0,0.0,0.0,0.0,0.0,0.9517112933770712,-9.985365076088636,1.0,0.0,0.0 -577,6.0,12.34376155701406,10.9,0.0,0.0,0.944898892042334,-10.626787934345176,1.0,0.0,0.0 -577,7.0,16.241791522386922,30.0,-5.034775457289705e-10,32.08894294446587,0.9512645220055076,-10.43525336057038,0.0,1.0,0.0 -577,8.0,0.0,0.0,0.0,0.0,1.0012112697065778,-11.943581098045154,1.0,0.0,0.0 -577,9.0,3.140079694328138,2.0,0.0,0.0,0.9913565073841478,-12.959981158255744,1.0,0.0,0.0 -577,10.0,0.0,0.0,-8.904002617844217e-10,23.995862164717494,1.0488003036977394,-11.943581098146208,0.0,1.0,0.0 -577,11.0,6.063602168357784,7.5,0.0,0.0,0.9972686033536003,-12.70280648233549,1.0,0.0,0.0 -577,12.0,0.0,0.0,-7.483721595115537e-10,11.658714803322397,1.013375370111563,-12.702806482394893,0.0,1.0,0.0 -577,13.0,3.356636914626631,1.6,0.0,0.0,0.9861438178569332,-13.151916287341525,1.0,0.0,0.0 -577,14.0,4.439423016119092,2.5,0.0,0.0,0.9830335357865196,-13.150800762277152,1.0,0.0,0.0 -577,15.0,1.894875677611808,1.8,0.0,0.0,0.9886222082106908,-12.923192594912848,1.0,0.0,0.0 -577,16.0,4.872537456716077,5.8,0.0,0.0,0.9860427289692648,-13.043651816349286,1.0,0.0,0.0 -577,17.0,1.7324577623879385,0.9,0.0,0.0,0.9766884856699164,-13.43615753909106,1.0,0.0,0.0 -577,18.0,5.143233982089192,3.4,0.0,0.0,0.9752552021937364,-13.505803217354432,1.0,0.0,0.0 -577,19.0,1.1910647116417077,0.7,0.0,0.0,0.978662224021273,-13.401716229646324,1.0,0.0,0.0 -577,20.0,9.47437838805904,11.2,0.0,0.0,0.9805710536323352,-13.14051471382784,1.0,0.0,0.0 -577,21.0,0.0,0.0,0.0,0.0,0.980933922836273,-13.13840398549335,1.0,0.0,0.0 -577,22.0,1.7324577623879385,1.6,0.0,0.0,0.9746245589481556,-13.26985655964545,1.0,0.0,0.0 -577,23.0,4.710119541492207,6.7,0.0,0.0,0.9702075802130686,-13.27852374550753,1.0,0.0,0.0 -577,24.0,0.0,0.0,0.0,0.0,0.9639235524282216,-12.936157726699111,1.0,0.0,0.0 -577,25.0,1.894875677611808,2.3,0.0,0.0,0.949642859365026,-13.020615046949851,1.0,0.0,0.0 -577,26.0,0.0,0.0,0.0,0.0,0.9671496485126576,-12.642434272654814,1.0,0.0,0.0 -577,27.0,0.0,0.0,0.0,0.0,0.9497380085210078,-10.357881178327832,1.0,0.0,0.0 -577,28.0,1.2993433217909538,0.9,0.0,0.0,0.9531522910882484,-13.294602400386689,1.0,0.0,0.0 -577,29.0,5.738766337910046,1.9,0.0,0.0,0.945528223224289,-13.785536016838211,1.0,0.0,0.0 -578,0.0,0.0,0.0,159.9158364114361,0.0005270378983013,1.0,0.0,0.0,0.0,1.0 -578,1.0,11.748229201193208,12.7,6.447653704159147e-07,10.293933837749345,0.980440976456103,-3.6685000547418185,0.0,1.0,0.0 -578,2.0,1.2993433217909538,1.2,0.0,0.0,0.9744842491525516,-4.811415689566567,1.0,0.0,0.0 -578,3.0,4.114587185671354,1.6,0.0,0.0,0.9679189317529538,-5.912439062334741,1.0,0.0,0.0 -578,4.0,50.99922538029494,19.0,-7.434356797852743e-10,24.0613696501336,0.9606721463445586,-8.830080917923194,0.0,1.0,0.0 -578,5.0,0.0,0.0,0.0,0.0,0.9675938863587484,-7.019689681373259,1.0,0.0,0.0 -578,6.0,12.34376155701406,10.9,0.0,0.0,0.958298012063719,-8.033381183274244,1.0,0.0,0.0 -578,7.0,16.241791522386922,30.0,-5.508413478907295e-10,30.490671535156523,0.9665952881050658,-7.444093056926769,0.0,1.0,0.0 -578,8.0,0.0,0.0,0.0,0.0,1.0158770692656602,-8.812598199184782,1.0,0.0,0.0 -578,9.0,3.140079694328138,2.0,0.0,0.0,1.0069776074625625,-9.744071004604262,1.0,0.0,0.0 -578,10.0,0.0,0.0,-6.607847414366455e-11,22.463632505182712,1.0599583808120476,-8.812598199192093,0.0,1.0,0.0 -578,11.0,6.063602168357784,7.5,0.0,0.0,1.0138486682874617,-9.280120244879871,1.0,0.0,0.0 -578,12.0,0.0,0.0,-7.115686150052231e-10,9.748695598590407,1.0271362663262702,-9.280120244934684,0.0,1.0,0.0 -578,13.0,3.356636914626631,1.6,0.0,0.0,1.0028738640957426,-9.743195463981376,1.0,0.0,0.0 -578,14.0,4.439423016119092,2.5,0.0,0.0,0.9995827017623798,-9.769623226599762,1.0,0.0,0.0 -578,15.0,1.894875677611808,1.8,0.0,0.0,1.0047425804588923,-9.58346161644578,1.0,0.0,0.0 -578,16.0,4.872537456716077,5.8,0.0,0.0,1.0019367153740182,-9.786756887944511,1.0,0.0,0.0 -578,17.0,1.7324577623879385,0.9,0.0,0.0,0.9930524204373682,-10.10161657174837,1.0,0.0,0.0 -578,18.0,5.143233982089192,3.4,0.0,0.0,0.9914731939477364,-10.202387684215594,1.0,0.0,0.0 -578,19.0,1.1910647116417077,0.7,0.0,0.0,0.9947337112440472,-10.119218856819764,1.0,0.0,0.0 -578,20.0,9.47437838805904,11.2,0.0,0.0,0.9964476518400732,-9.91530473555183,1.0,0.0,0.0 -578,21.0,0.0,0.0,0.0,0.0,0.9968317080339322,-9.91211485576839,1.0,0.0,0.0 -578,22.0,1.7324577623879385,1.6,0.0,0.0,0.9911774092725684,-9.944904896265228,1.0,0.0,0.0 -578,23.0,4.710119541492207,6.7,0.0,0.0,0.9866634544896032,-10.034591343955444,1.0,0.0,0.0 -578,24.0,0.0,0.0,0.0,0.0,0.9803402728666528,-9.765089342879415,1.0,0.0,0.0 -578,25.0,1.894875677611808,2.3,0.0,0.0,0.96630587123906,-9.84670034624443,1.0,0.0,0.0 -578,26.0,0.0,0.0,0.0,0.0,0.9834365186323902,-9.519597330121815,1.0,0.0,0.0 -578,27.0,0.0,0.0,0.0,0.0,0.9655736019811252,-7.370562950157991,1.0,0.0,0.0 -578,28.0,1.2993433217909538,0.9,0.0,0.0,0.9696847140778904,-10.150045044821322,1.0,0.0,0.0 -578,29.0,5.738766337910046,1.9,0.0,0.0,0.962194773930914,-10.62426738630162,1.0,0.0,0.0 -579,0.0,0.0,0.0,159.9986396614859,0.0171130426964261,1.0,0.0,0.0,0.0,1.0 -579,1.0,11.748229201193208,12.7,7.827747283677885e-06,16.751580134961543,0.9812872567477888,-3.6882011695349455,0.0,1.0,0.0 -579,2.0,1.2993433217909538,1.2,0.0,0.0,0.9719750510189522,-4.773875800108415,1.0,0.0,0.0 -579,3.0,4.114587185671354,1.6,0.0,0.0,0.964821602301554,-5.866936766975979,1.0,0.0,0.0 -579,4.0,50.99922538029494,19.0,-5.4994993986066975e-09,26.716818125413468,0.9616472111360636,-8.861973486320293,0.0,1.0,0.0 -579,5.0,0.0,0.0,0.0,0.0,0.9632653704319905,-6.947172871770006,1.0,0.0,0.0 -579,6.0,12.34376155701406,10.9,0.0,0.0,0.9561293822510794,-8.002256138707361,1.0,0.0,0.0 -579,7.0,16.241791522386922,30.0,-1.3508006005960494e-08,39.98175583657312,0.9656387781231244,-7.435785811637293,0.0,1.0,0.0 -579,8.0,0.0,0.0,0.0,0.0,0.9844982653021974,-8.716040100822141,1.0,0.0,0.0 -579,9.0,3.140079694328138,2.0,0.0,0.0,0.9846473615141108,-9.651663917043225,1.0,0.0,0.0 -579,10.0,0.0,0.0,0.0,0.0,0.9844982653021974,-8.716040100822141,0.0,1.0,0.0 -579,11.0,6.063602168357784,7.5,0.0,0.0,1.008913757736254,-9.328880135620896,1.0,0.0,0.0 -579,12.0,0.0,0.0,-1.6833957505471398e-08,13.869065948265051,1.0278051710836873,-9.32888013692308,0.0,1.0,0.0 -579,13.0,3.356636914626631,1.6,0.0,0.0,0.9973149326645662,-9.777167211480029,1.0,0.0,0.0 -579,14.0,4.439423016119092,2.5,0.0,0.0,0.9935935517447204,-9.77160612389022,1.0,0.0,0.0 -579,15.0,1.894875677611808,1.8,0.0,0.0,0.9923058771690756,-9.537306150472556,1.0,0.0,0.0 -579,16.0,4.872537456716077,5.8,0.0,0.0,0.9825874505440464,-9.724585594493211,1.0,0.0,0.0 -579,17.0,1.7324577623879385,0.9,0.0,0.0,0.9811897336152892,-10.0765154846974,1.0,0.0,0.0 -579,18.0,5.143233982089192,3.4,0.0,0.0,0.9761590049203848,-10.159573387431218,1.0,0.0,0.0 -579,19.0,1.1910647116417077,0.7,0.0,0.0,0.9776641215759514,-10.062296324388216,1.0,0.0,0.0 -579,20.0,9.47437838805904,11.2,0.0,0.0,0.9739243822562628,-9.849540993125371,1.0,0.0,0.0 -579,21.0,0.0,0.0,0.0,0.0,0.9743315564290812,-9.852242177667616,1.0,0.0,0.0 -579,22.0,1.7324577623879385,1.6,0.0,0.0,0.9885698352728683,-9.88241150941636,1.0,0.0,0.0 -579,23.0,4.710119541492207,6.7,0.0,0.0,0.9639714827074508,-10.062988283129856,1.0,0.0,0.0 -579,24.0,0.0,0.0,0.0,0.0,0.964312980715929,-9.8565733175511,1.0,0.0,0.0 -579,25.0,1.894875677611808,2.3,0.0,0.0,0.9500382316046014,-9.94096139413725,1.0,0.0,0.0 -579,26.0,0.0,0.0,0.0,0.0,0.9716894521479252,-9.64022062519968,1.0,0.0,0.0 -579,27.0,0.0,0.0,0.0,0.0,0.9610612791783116,-7.315857041753957,1.0,0.0,0.0 -579,28.0,1.2993433217909538,0.9,0.0,0.0,0.9577614426140696,-10.28622232357816,1.0,0.0,0.0 -579,29.0,5.738766337910046,1.9,0.0,0.0,0.9501752568231864,-10.772408979883746,1.0,0.0,0.0 -580,0.0,0.0,0.0,136.44547092356558,0.6938267041765478,1.0,0.0,0.0,0.0,1.0 -580,1.0,11.748229201193208,12.7,32.1403271765022,29.006032169428124,0.9747140699194136,-23.522937377413847,0.0,1.0,0.0 -580,2.0,1.2993433217909538,1.2,0.0,0.0,0.9603410782208142,-13.499083071280694,1.0,0.0,0.0 -580,3.0,4.114587185671354,1.6,0.0,0.0,0.95507621731401,-16.72347408317263,1.0,0.0,0.0 -580,4.0,50.99922538029494,19.0,-1.31463524284331e-13,22.815207243464044,0.9553163698156868,-29.92523373091983,0.0,1.0,0.0 -580,5.0,0.0,0.0,0.0,0.0,0.960011530993824,-19.354261503161087,1.0,0.0,0.0 -580,6.0,12.34376155701406,10.9,0.0,0.0,0.9477317250419288,-19.82124540316764,1.0,0.0,0.0 -580,7.0,16.241791522386922,30.0,-1.986545525185939e-12,39.99996707168502,0.9625871040892556,-19.84212906463166,0.0,1.0,0.0 -580,8.0,0.0,0.0,0.0,0.0,1.0136427866472697,-20.885159301729,1.0,0.0,0.0 -580,9.0,3.140079694328138,2.0,0.0,0.0,1.0063499212257332,-21.67479395365305,1.0,0.0,0.0 -580,10.0,0.0,0.0,4.898487464878653e-12,23.624307215507795,1.0599999212319102,-20.88515930172845,0.0,1.0,0.0 -580,11.0,6.063602168357784,7.5,0.0,0.0,1.0255750076739008,-20.734660099231785,1.0,0.0,0.0 -580,12.0,0.0,0.0,1.5901152600686034e-11,23.99996828192987,1.0573524491704085,-20.734660099230616,0.0,1.0,0.0 -580,13.0,3.356636914626631,1.6,0.0,0.0,0.9919453262522784,-21.724339633654587,1.0,0.0,0.0 -580,14.0,4.439423016119092,2.5,0.0,0.0,1.0026499591254674,-21.541881883004567,1.0,0.0,0.0 -580,15.0,1.894875677611808,1.8,0.0,0.0,1.0108278911688369,-21.212996693457228,1.0,0.0,0.0 -580,16.0,4.872537456716077,5.8,0.0,0.0,1.003517706759624,-21.630933714364776,1.0,0.0,0.0 -580,17.0,1.7324577623879385,0.9,0.0,0.0,0.9948184340954148,-21.927729157630157,1.0,0.0,0.0 -580,18.0,5.143233982089192,3.4,0.0,0.0,0.9924677356708668,-22.06126838996725,1.0,0.0,0.0 -580,19.0,1.1910647116417077,0.7,0.0,0.0,0.9953161478476588,-21.995552016655186,1.0,0.0,0.0 -580,20.0,9.47437838805904,11.2,0.0,0.0,0.9915394563562608,-21.92277537491021,1.0,0.0,0.0 -580,21.0,0.0,0.0,0.0,0.0,0.9905717433400724,-21.942357081165625,1.0,0.0,0.0 -580,22.0,1.7324577623879385,1.6,0.0,0.0,0.991126435416383,-21.818835889676837,1.0,0.0,0.0 -580,23.0,4.710119541492207,6.7,0.0,0.0,0.9824830411199432,-22.04917374350894,1.0,0.0,0.0 -580,24.0,0.0,0.0,0.0,0.0,0.9746281243512732,-21.898681639226535,1.0,0.0,0.0 -580,25.0,1.894875677611808,2.3,0.0,0.0,0.960509010401198,-21.98126637731456,1.0,0.0,0.0 -580,26.0,0.0,0.0,0.0,0.0,0.976855446232744,-21.72812420805133,1.0,0.0,0.0 -580,27.0,0.0,0.0,0.0,0.0,0.958932167255359,-19.704067134508723,1.0,0.0,0.0 -580,28.0,1.2993433217909538,0.9,0.0,0.0,0.9630054950969844,-22.367215267481303,1.0,0.0,0.0 -580,29.0,5.738766337910046,1.9,0.0,0.0,0.9554619473712042,-22.848084541334327,1.0,0.0,0.0 -581,0.0,0.0,0.0,161.00923493515248,8.482849755964139e-05,1.0,0.0,0.0,0.0,1.0 -581,1.0,11.748229201193208,12.7,1.6078278741790558e-07,10.57699627877897,0.9790519108661686,-4.116250524246366,0.0,1.0,0.0 -581,2.0,1.2993433217909538,1.2,0.0,0.0,0.976723889009691,-3.6372516601558416,1.0,0.0,0.0 -581,3.0,4.114587185671354,1.6,0.0,0.0,0.9705713150615666,-4.453870946139793,1.0,0.0,0.0 -581,4.0,50.99922538029494,19.0,-1.4222717642308808e-10,25.634588253004807,0.9600777175394004,-10.448967883109644,0.0,1.0,0.0 -581,5.0,0.0,0.0,0.0,0.0,0.9639469698362084,-9.79279622084717,1.0,0.0,0.0 -581,6.0,12.34376155701406,10.9,0.0,0.0,0.9556811183755018,-10.335985003487774,1.0,0.0,0.0 -581,7.0,16.241791522386922,30.0,-1.5013550156890843e-10,26.424128179275016,0.9614592374477368,-10.183130544299978,0.0,1.0,0.0 -581,8.0,0.0,0.0,0.0,0.0,1.013731785029584,-10.825307458494375,1.0,0.0,0.0 -581,9.0,3.140079694328138,2.0,0.0,0.0,1.0064163882291757,-11.36004850731827,1.0,0.0,0.0 -581,10.0,0.0,0.0,-2.7918845305795806e-10,21.410879748972096,1.0559083889325815,-10.825307458525458,0.0,1.0,0.0 -581,11.0,6.063602168357784,7.5,0.0,0.0,1.029156386041785,-9.497263580008186,1.0,0.0,0.0 -581,12.0,0.0,0.0,-8.964618193947044e-11,18.12294239366777,1.0532458420251574,-9.49726358001482,0.0,1.0,0.0 -581,13.0,3.356636914626631,1.6,0.0,0.0,1.016718927710802,-10.14399712003863,1.0,0.0,0.0 -581,14.0,4.439423016119092,2.5,0.0,0.0,1.0105430193248388,-10.328866917061829,1.0,0.0,0.0 -581,15.0,1.894875677611808,1.8,0.0,0.0,1.0122053614899555,-10.359319578535928,1.0,0.0,0.0 -581,16.0,4.872537456716077,5.8,0.0,0.0,1.0041744595445203,-11.148744675445812,1.0,0.0,0.0 -581,17.0,1.7324577623879385,0.9,0.0,0.0,0.999886901523507,-11.023452960084889,1.0,0.0,0.0 -581,18.0,5.143233982089192,3.4,0.0,0.0,0.995886342681318,-11.344061029374837,1.0,0.0,0.0 -581,19.0,1.1910647116417077,0.7,0.0,0.0,0.9978493378094752,-11.377988848261657,1.0,0.0,0.0 -581,20.0,9.47437838805904,11.2,0.0,0.0,0.9962920056603348,-11.50329930286819,1.0,0.0,0.0 -581,21.0,0.0,0.0,0.0,0.0,0.996808782376196,-11.491238693480703,1.0,0.0,0.0 -581,22.0,1.7324577623879385,1.6,0.0,0.0,0.998233848254895,-10.887982881463577,1.0,0.0,0.0 -581,23.0,4.710119541492207,6.7,0.0,0.0,0.9886266695910207,-11.505757326050109,1.0,0.0,0.0 -581,24.0,0.0,0.0,0.0,0.0,0.978466858401783,-11.68382244431177,1.0,0.0,0.0 -581,25.0,1.894875677611808,2.3,0.0,0.0,0.9644047875862723,-11.76575088872732,1.0,0.0,0.0 -581,26.0,0.0,0.0,0.0,0.0,0.979363526086196,-11.722438713122722,1.0,0.0,0.0 -581,27.0,0.0,0.0,0.0,0.0,0.9618895143918034,-10.074924719780896,1.0,0.0,0.0 -581,28.0,1.2993433217909538,0.9,0.0,0.0,0.9655511485789876,-12.35821479970724,1.0,0.0,0.0 -581,29.0,5.738766337910046,1.9,0.0,0.0,0.9580281239738608,-12.836534299364136,1.0,0.0,0.0 -582,0.0,0.0,0.0,161.6515525575791,0.0056997437040351,1.0,0.0,0.0,0.0,1.0 -582,1.0,11.748229201193208,12.7,8.247815335173838e-06,9.882091443305988,0.9785519649817191,-4.167935029710924,0.0,1.0,0.0 -582,2.0,1.2993433217909538,1.2,0.0,0.0,0.977788461915689,-3.5504134463035046,1.0,0.0,0.0 -582,3.0,4.114587185671354,1.6,0.0,0.0,0.9718800860764322,-4.3459963086735165,1.0,0.0,0.0 -582,4.0,50.99922538029494,19.0,-3.360641203191932e-09,26.557995845024337,0.9598510169294152,-10.639747076810243,0.0,1.0,0.0 -582,5.0,0.0,0.0,0.0,0.0,0.9620996549710166,-10.084284302052795,1.0,0.0,0.0 -582,6.0,12.34376155701406,10.9,0.0,0.0,0.9544635646964436,-10.585829442107372,1.0,0.0,0.0 -582,7.0,16.241791522386922,30.0,-3.018626919675066e-09,29.175367862845636,0.9605242788823344,-10.497532964215576,0.0,1.0,0.0 -582,8.0,0.0,0.0,0.0,0.0,1.00999205440247,-11.27538749210952,1.0,0.0,0.0 -582,9.0,3.140079694328138,2.0,0.0,0.0,0.999073146360531,-11.89559905011278,1.0,0.0,0.0 -582,10.0,0.0,0.0,-5.339361175184313e-09,24.00073707324005,1.0572120362061983,-11.27538749270545,0.0,1.0,0.0 -582,11.0,6.063602168357784,7.5,0.0,0.0,1.0317754059707418,-9.014400138274954,1.0,0.0,0.0 -582,12.0,0.0,0.0,-1.3545702173264594e-09,14.180129673519088,1.050670185527992,-9.014400138375189,0.0,1.0,0.0 -582,13.0,3.356636914626631,1.6,0.0,0.0,1.004129429375002,-10.714911032460478,1.0,0.0,0.0 -582,14.0,4.439423016119092,2.5,0.0,0.0,0.9762819227647976,-11.642130233006554,1.0,0.0,0.0 -582,15.0,1.894875677611808,1.8,0.0,0.0,1.0096700784755523,-10.282204427549893,1.0,0.0,0.0 -582,16.0,4.872537456716077,5.8,0.0,0.0,0.9984829769593152,-11.497729355607378,1.0,0.0,0.0 -582,17.0,1.7324577623879385,0.9,0.0,0.0,0.9749925172760736,-12.088144615814674,1.0,0.0,0.0 -582,18.0,5.143233982089192,3.4,0.0,0.0,0.9765658980880588,-12.251951994337436,1.0,0.0,0.0 -582,19.0,1.1910647116417077,0.7,0.0,0.0,0.9815500678997326,-12.198032031867076,1.0,0.0,0.0 -582,20.0,9.47437838805904,11.2,0.0,0.0,0.9876103411495106,-12.084097293415432,1.0,0.0,0.0 -582,21.0,0.0,0.0,0.0,0.0,0.9877294061244254,-12.085135747944204,1.0,0.0,0.0 -582,22.0,1.7324577623879385,1.6,0.0,0.0,0.9722740275669663,-11.965930936091668,1.0,0.0,0.0 -582,23.0,4.710119541492207,6.7,0.0,0.0,0.973794144856172,-12.245068221220103,1.0,0.0,0.0 -582,24.0,0.0,0.0,0.0,0.0,0.9687603170005296,-12.329170827320793,1.0,0.0,0.0 -582,25.0,1.894875677611808,2.3,0.0,0.0,0.954553094596192,-12.412774195953023,1.0,0.0,0.0 -582,26.0,0.0,0.0,0.0,0.0,0.9728710047888568,-12.300062260520823,1.0,0.0,0.0 -582,27.0,0.0,0.0,0.0,0.0,0.9595898136069716,-10.39305081880832,1.0,0.0,0.0 -582,28.0,1.2993433217909538,0.9,0.0,0.0,0.9589609283517152,-12.944473471628603,1.0,0.0,0.0 -582,29.0,5.738766337910046,1.9,0.0,0.0,0.951384538421558,-13.429436097063922,1.0,0.0,0.0 -583,0.0,0.0,0.0,160.32582135446205,0.0002074376141081,1.0,0.0,0.0,0.0,1.0 -583,1.0,11.748229201193208,12.7,1.7306972348882152e-07,11.605704260544847,0.982047035938166,-3.459485772286011,0.0,1.0,0.0 -583,2.0,1.2993433217909538,1.2,0.0,0.0,0.9706741939851832,-5.467976814557853,1.0,0.0,0.0 -583,3.0,4.114587185671354,1.6,0.0,0.0,0.9633374001250186,-6.730316236245725,1.0,0.0,0.0 -583,4.0,50.99922538029494,19.0,-2.1702422861341088e-10,22.695784402934265,0.9627098103516848,-9.76219585894043,0.0,1.0,0.0 -583,5.0,0.0,0.0,0.0,0.0,0.9641498520067594,-7.43212255781008,1.0,0.0,0.0 -583,6.0,12.34376155701406,10.9,0.0,0.0,0.9519303075959604,-7.895164149383257,1.0,0.0,0.0 -583,7.0,16.241791522386922,30.0,-2.0799672085838287e-10,34.59135352802433,0.9647076772241666,-7.892051757617872,0.0,1.0,0.0 -583,8.0,0.0,0.0,0.0,0.0,1.013591892251524,-10.028544519791836,1.0,0.0,0.0 -583,9.0,3.140079694328138,2.0,0.0,0.0,1.0045396932047008,-11.375752274536891,1.0,0.0,0.0 -583,10.0,0.0,0.0,-2.0880627179488518e-10,23.650019525359184,1.059999499641331,-10.028544519814998,0.0,1.0,0.0 -583,11.0,6.063602168357784,7.5,0.0,0.0,1.0174149186672057,-10.225089674065265,1.0,0.0,0.0 -583,12.0,0.0,0.0,-2.0352225356553277e-10,12.518607037980694,1.0343587972324253,-10.225089674080785,0.0,1.0,0.0 -583,13.0,3.356636914626631,1.6,0.0,0.0,1.0073504972029903,-10.638803204774042,1.0,0.0,0.0 -583,14.0,4.439423016119092,2.5,0.0,0.0,1.0052259557654462,-10.639386680288624,1.0,0.0,0.0 -583,15.0,1.894875677611808,1.8,0.0,0.0,1.0052340846053502,-10.808752579960515,1.0,0.0,0.0 -583,16.0,4.872537456716077,5.8,0.0,0.0,1.0005498646766484,-11.295371030628573,1.0,0.0,0.0 -583,17.0,1.7324577623879385,0.9,0.0,0.0,0.9783782619837992,-12.370295779244652,1.0,0.0,0.0 -583,18.0,5.143233982089192,3.4,0.0,0.0,0.98069973841518,-12.270976462485756,1.0,0.0,0.0 -583,19.0,1.1910647116417077,0.7,0.0,0.0,0.9860749183544842,-12.080584241238611,1.0,0.0,0.0 -583,20.0,9.47437838805904,11.2,0.0,0.0,0.994376056169224,-11.474273413889016,1.0,0.0,0.0 -583,21.0,0.0,0.0,0.0,0.0,0.9948926322973976,-11.447606133837622,1.0,0.0,0.0 -583,22.0,1.7324577623879385,1.6,0.0,0.0,0.994559822489656,-10.967249463506398,1.0,0.0,0.0 -583,23.0,4.710119541492207,6.7,0.0,0.0,0.9870544915955264,-11.266801151821673,1.0,0.0,0.0 -583,24.0,0.0,0.0,0.0,0.0,0.9803740935347726,-10.690510890435664,1.0,0.0,0.0 -583,25.0,1.894875677611808,2.3,0.0,0.0,0.9663401904096264,-10.772116180747958,1.0,0.0,0.0 -583,26.0,0.0,0.0,0.0,0.0,0.983168710518183,-10.254178570753254,1.0,0.0,0.0 -583,27.0,0.0,0.0,0.0,0.0,0.9626281634868872,-7.8304124497178895,1.0,0.0,0.0 -583,28.0,1.2993433217909538,0.9,0.0,0.0,0.9694129399490744,-10.884974565879812,1.0,0.0,0.0 -583,29.0,5.738766337910046,1.9,0.0,0.0,0.9619208336403022,-11.359464664004344,1.0,0.0,0.0 -584,0.0,0.0,0.0,164.14093011048064,0.0008989347031196,1.0,0.0,0.0,0.0,1.0 -584,1.0,11.748229201193208,12.7,2.9345067315314297e-06,1.0396659054099544,0.9807284540839654,-3.3983285610453318,0.0,1.0,0.0 -584,2.0,1.2993433217909538,1.2,0.0,0.0,0.9735774237009254,-6.000444218652768,1.0,0.0,0.0 -584,3.0,4.114587185671354,1.6,0.0,0.0,0.9670348586510524,-7.38969406224436,1.0,0.0,0.0 -584,4.0,50.99922538029494,19.0,1.1716884257066842e-09,33.75033740268816,0.9400024189954718,-16.718164110007866,0.0,1.0,0.0 -584,5.0,0.0,0.0,0.0,0.0,0.9658685136175096,-9.076599225948872,1.0,0.0,0.0 -584,6.0,12.34376155701406,10.9,0.0,0.0,0.9482760598761164,-12.448834855324886,1.0,0.0,0.0 -584,7.0,16.241791522386922,30.0,3.8563925606899505e-09,38.77664614243505,0.9679401299706132,-9.558529122394557,0.0,1.0,0.0 -584,8.0,0.0,0.0,0.0,0.0,1.0182639750193176,-11.318860680932952,1.0,0.0,0.0 -584,9.0,3.140079694328138,2.0,0.0,0.0,1.0130247010655484,-12.474688957049128,1.0,0.0,0.0 -584,10.0,0.0,0.0,4.163027482156083e-09,21.26150630139338,1.059985247291639,-11.318860680473296,0.0,1.0,0.0 -584,11.0,6.063602168357784,7.5,0.0,0.0,1.027386722278434,-11.300729240472837,1.0,0.0,0.0 -584,12.0,0.0,0.0,2.053313796704377e-09,18.01445743583611,1.051374595411603,-11.300729240320354,0.0,1.0,0.0 -584,13.0,3.356636914626631,1.6,0.0,0.0,1.0155534909618067,-11.777216031363896,1.0,0.0,0.0 -584,14.0,4.439423016119092,2.5,0.0,0.0,1.0111602121861385,-11.805598102730064,1.0,0.0,0.0 -584,15.0,1.894875677611808,1.8,0.0,0.0,1.0145927200636342,-11.889060728367356,1.0,0.0,0.0 -584,16.0,4.872537456716077,5.8,0.0,0.0,1.0093540334040243,-12.38778603781704,1.0,0.0,0.0 -584,17.0,1.7324577623879385,0.9,0.0,0.0,1.0073588558187256,-11.964206078563416,1.0,0.0,0.0 -584,18.0,5.143233982089192,3.4,0.0,0.0,0.9943059480586974,-13.142568957297236,1.0,0.0,0.0 -584,19.0,1.1910647116417077,0.7,0.0,0.0,0.99839267888312,-13.007431090813812,1.0,0.0,0.0 -584,20.0,9.47437838805904,11.2,0.0,0.0,0.9825254655139166,-12.786874752533548,1.0,0.0,0.0 -584,21.0,0.0,0.0,0.0,0.0,0.9863347109379986,-12.73149132867033,1.0,0.0,0.0 -584,22.0,1.7324577623879385,1.6,0.0,0.0,0.996342007441006,-12.197353446512224,1.0,0.0,0.0 -584,23.0,4.710119541492207,6.7,0.0,0.0,0.9833154605433172,-12.590152675107314,1.0,0.0,0.0 -584,24.0,0.0,0.0,0.0,0.0,0.9783512706636768,-12.15551940413872,1.0,0.0,0.0 -584,25.0,1.894875677611808,2.3,0.0,0.0,0.9642874890674744,-12.237467495852886,1.0,0.0,0.0 -584,26.0,0.0,0.0,0.0,0.0,0.982260100148062,-11.8056617558599,1.0,0.0,0.0 -584,27.0,0.0,0.0,0.0,0.0,0.9644230828434512,-9.463151591940528,1.0,0.0,0.0 -584,28.0,1.2993433217909538,0.9,0.0,0.0,0.968490856257342,-12.437641549109102,1.0,0.0,0.0 -584,29.0,5.738766337910046,1.9,0.0,0.0,0.9609913910299376,-12.913041796406992,1.0,0.0,0.0 -585,0.0,0.0,0.0,160.02553414105037,0.0004245549513726,1.0,0.0,0.0,0.0,1.0 -585,1.0,11.748229201193208,12.7,6.169301614653277e-07,9.138871909817588,0.9802832040807804,-3.664425689597863,0.0,1.0,0.0 -585,2.0,1.2993433217909538,1.2,0.0,0.0,0.9749095643850784,-4.831850079764224,1.0,0.0,0.0 -585,3.0,4.114587185671354,1.6,0.0,0.0,0.9684459863015712,-5.937620525600928,1.0,0.0,0.0 -585,4.0,50.99922538029494,19.0,-7.111912497653048e-10,23.946507712640692,0.96074059365299,-8.8212091114519,0.0,1.0,0.0 -585,5.0,0.0,0.0,0.0,0.0,0.9681265859115976,-7.013322925593824,1.0,0.0,0.0 -585,6.0,12.34376155701406,10.9,0.0,0.0,0.9586438932139496,-8.02602100035399,1.0,0.0,0.0 -585,7.0,16.241791522386922,30.0,-5.138896343063714e-10,29.623631159187283,0.9668177388639574,-7.431741570371671,0.0,1.0,0.0 -585,8.0,0.0,0.0,0.0,0.0,1.0169707349598405,-8.70895878844136,1.0,0.0,0.0 -585,9.0,3.140079694328138,2.0,0.0,0.0,1.0110003793674525,-9.58688398714255,1.0,0.0,0.0 -585,10.0,0.0,0.0,-1.5184338284087287e-10,19.80657301276886,1.0559842631936454,-8.70895878845821,0.0,1.0,0.0 -585,11.0,6.063602168357784,7.5,0.0,0.0,1.0171552155422487,-9.48818330578036,1.0,0.0,0.0 -585,12.0,0.0,0.0,-4.4192480268137067e-10,14.466746300792714,1.0366918264277605,-9.488183305813982,0.0,1.0,0.0 -585,13.0,3.356636914626631,1.6,0.0,0.0,1.0040562168113507,-10.000635457477523,1.0,0.0,0.0 -585,14.0,4.439423016119092,2.5,0.0,0.0,0.9983390299198006,-10.029489570136931,1.0,0.0,0.0 -585,15.0,1.894875677611808,1.8,0.0,0.0,1.0086221362423882,-9.635585324858452,1.0,0.0,0.0 -585,16.0,4.872537456716077,5.8,0.0,0.0,1.005853674390315,-9.693844115720216,1.0,0.0,0.0 -585,17.0,1.7324577623879385,0.9,0.0,0.0,0.9810418272170994,-10.638480911199432,1.0,0.0,0.0 -585,18.0,5.143233982089192,3.4,0.0,0.0,0.9731397735946898,-10.906896524551302,1.0,0.0,0.0 -585,19.0,1.1910647116417077,0.7,0.0,0.0,1.0084424879850735,-9.689958051635454,1.0,0.0,0.0 -585,20.0,9.47437838805904,11.2,0.0,0.0,1.000154144786452,-9.783260117828748,1.0,0.0,0.0 -585,21.0,0.0,0.0,0.0,0.0,1.0004208874115903,-9.788462753521218,1.0,0.0,0.0 -585,22.0,1.7324577623879385,1.6,0.0,0.0,0.9912801543391604,-10.085296424571467,1.0,0.0,0.0 -585,23.0,4.710119541492207,6.7,0.0,0.0,0.9885409431308224,-10.01313800168062,1.0,0.0,0.0 -585,24.0,0.0,0.0,0.0,0.0,0.9817219270754056,-9.741461135706365,1.0,0.0,0.0 -585,25.0,1.894875677611808,2.3,0.0,0.0,0.9677078609557956,-9.822839212011658,1.0,0.0,0.0 -585,26.0,0.0,0.0,0.0,0.0,0.9844992439693828,-9.495356261602534,1.0,0.0,0.0 -585,27.0,0.0,0.0,0.0,0.0,0.9661065234597788,-7.362220496435185,1.0,0.0,0.0 -585,28.0,1.2993433217909538,0.9,0.0,0.0,0.9707631543673628,-10.124424772456813,1.0,0.0,0.0 -585,29.0,5.738766337910046,1.9,0.0,0.0,0.9632817973734796,-10.59758685205026,1.0,0.0,0.0 -586,0.0,0.0,0.0,163.59723462681754,0.0017490687630683,1.0,0.0,0.0,0.0,1.0 -586,1.0,11.748229201193208,12.7,2.529039283275428e-06,11.469533145002572,0.9804501960785768,-3.9202130383588703,0.0,1.0,0.0 -586,2.0,1.2993433217909538,1.2,0.0,0.0,0.9724393132779582,-4.461682155590106,1.0,0.0,0.0 -586,3.0,4.114587185671354,1.6,0.0,0.0,0.965354207546035,-5.478793740547142,1.0,0.0,0.0 -586,4.0,50.99922538029494,19.0,2.407929643612637e-09,37.68419600074573,0.9695967856980652,-14.455766055998645,0.0,1.0,0.0 -586,5.0,0.0,0.0,0.0,0.0,0.9609888608614116,-17.85560506353906,1.0,0.0,0.0 -586,6.0,12.34376155701406,10.9,0.0,0.0,0.95639515691446,-16.7236437907467,1.0,0.0,0.0 -586,7.0,16.241791522386922,30.0,2.397064330130634e-09,27.559692742888167,0.9588689636395392,-18.23768698944101,0.0,1.0,0.0 -586,8.0,0.0,0.0,0.0,0.0,1.006897166419329,-17.71080141583311,1.0,0.0,0.0 -586,9.0,3.140079694328138,2.0,0.0,0.0,0.99728606889365,-17.635349849735523,1.0,0.0,0.0 -586,10.0,0.0,0.0,5.248559484689436e-09,21.42597476819393,1.0493666205134906,-17.71080141524112,0.0,1.0,0.0 -586,11.0,6.063602168357784,7.5,0.0,0.0,1.0314125304801642,-13.244193574727817,1.0,0.0,0.0 -586,12.0,0.0,0.0,-3.081051236996742e-10,21.64251123262553,1.0599970585974103,-13.244193574750422,0.0,1.0,0.0 -586,13.0,3.356636914626631,1.6,0.0,0.0,1.0181558195860922,-14.214484527325297,1.0,0.0,0.0 -586,14.0,4.439423016119092,2.5,0.0,0.0,1.008962274671673,-14.70587940323605,1.0,0.0,0.0 -586,15.0,1.894875677611808,1.8,0.0,0.0,1.0073009376259463,-15.145163001049864,1.0,0.0,0.0 -586,16.0,4.872537456716077,5.8,0.0,0.0,0.9967177729793076,-16.96178838622711,1.0,0.0,0.0 -586,17.0,1.7324577623879385,0.9,0.0,0.0,0.9951857595769013,-16.05990446050805,1.0,0.0,0.0 -586,18.0,5.143233982089192,3.4,0.0,0.0,0.989514147695128,-16.779279315717588,1.0,0.0,0.0 -586,19.0,1.1910647116417077,0.7,0.0,0.0,0.9906480897807516,-17.02284664040771,1.0,0.0,0.0 -586,20.0,9.47437838805904,11.2,0.0,0.0,0.987364041237389,-17.727365004390375,1.0,0.0,0.0 -586,21.0,0.0,0.0,0.0,0.0,0.9879850907656208,-17.69790013725864,1.0,0.0,0.0 -586,22.0,1.7324577623879385,1.6,0.0,0.0,0.9939923093313164,-15.941844263789,1.0,0.0,0.0 -586,23.0,4.710119541492207,6.7,0.0,0.0,0.9814944181697458,-17.49101933852453,1.0,0.0,0.0 -586,24.0,0.0,0.0,0.0,0.0,0.9698859677436978,-18.447990387409856,1.0,0.0,0.0 -586,25.0,1.894875677611808,2.3,0.0,0.0,0.955695734079808,-18.53139688630468,1.0,0.0,0.0 -586,26.0,0.0,0.0,0.0,0.0,0.9703824447998676,-18.976081113919733,1.0,0.0,0.0 -586,27.0,0.0,0.0,0.0,0.0,0.9587816582754632,-18.036912165736204,1.0,0.0,0.0 -586,28.0,1.2993433217909538,0.9,0.0,0.0,0.956434542681698,-19.62384908214128,1.0,0.0,0.0 -586,29.0,5.738766337910046,1.9,0.0,0.0,0.9488374905386764,-20.11139521112001,1.0,0.0,0.0 -587,0.0,0.0,0.0,159.9158364114361,0.0005270378983013,1.0,0.0,0.0,0.0,1.0 -587,1.0,11.748229201193208,12.7,6.447653704159147e-07,10.293933837749345,0.980440976456103,-3.6685000547418185,0.0,1.0,0.0 -587,2.0,1.2993433217909538,1.2,0.0,0.0,0.9744842491525516,-4.811415689566567,1.0,0.0,0.0 -587,3.0,4.114587185671354,1.6,0.0,0.0,0.9679189317529538,-5.912439062334741,1.0,0.0,0.0 -587,4.0,50.99922538029494,19.0,-7.434356797852743e-10,24.0613696501336,0.9606721463445586,-8.830080917923194,0.0,1.0,0.0 -587,5.0,0.0,0.0,0.0,0.0,0.9675938863587484,-7.019689681373259,1.0,0.0,0.0 -587,6.0,12.34376155701406,10.9,0.0,0.0,0.958298012063719,-8.033381183274244,1.0,0.0,0.0 -587,7.0,16.241791522386922,30.0,-5.508413478907295e-10,30.490671535156523,0.9665952881050658,-7.444093056926769,0.0,1.0,0.0 -587,8.0,0.0,0.0,0.0,0.0,1.0158770692656602,-8.812598199184782,1.0,0.0,0.0 -587,9.0,3.140079694328138,2.0,0.0,0.0,1.0069776074625625,-9.744071004604262,1.0,0.0,0.0 -587,10.0,0.0,0.0,-6.607847414366455e-11,22.463632505182712,1.0599583808120476,-8.812598199192093,0.0,1.0,0.0 -587,11.0,6.063602168357784,7.5,0.0,0.0,1.0138486682874617,-9.280120244879871,1.0,0.0,0.0 -587,12.0,0.0,0.0,-7.115686150052231e-10,9.748695598590407,1.0271362663262702,-9.280120244934684,0.0,1.0,0.0 -587,13.0,3.356636914626631,1.6,0.0,0.0,1.0028738640957426,-9.743195463981376,1.0,0.0,0.0 -587,14.0,4.439423016119092,2.5,0.0,0.0,0.9995827017623798,-9.769623226599762,1.0,0.0,0.0 -587,15.0,1.894875677611808,1.8,0.0,0.0,1.0047425804588923,-9.58346161644578,1.0,0.0,0.0 -587,16.0,4.872537456716077,5.8,0.0,0.0,1.0019367153740182,-9.786756887944511,1.0,0.0,0.0 -587,17.0,1.7324577623879385,0.9,0.0,0.0,0.9930524204373682,-10.10161657174837,1.0,0.0,0.0 -587,18.0,5.143233982089192,3.4,0.0,0.0,0.9914731939477364,-10.202387684215594,1.0,0.0,0.0 -587,19.0,1.1910647116417077,0.7,0.0,0.0,0.9947337112440472,-10.119218856819764,1.0,0.0,0.0 -587,20.0,9.47437838805904,11.2,0.0,0.0,0.9964476518400732,-9.91530473555183,1.0,0.0,0.0 -587,21.0,0.0,0.0,0.0,0.0,0.9968317080339322,-9.91211485576839,1.0,0.0,0.0 -587,22.0,1.7324577623879385,1.6,0.0,0.0,0.9911774092725684,-9.944904896265228,1.0,0.0,0.0 -587,23.0,4.710119541492207,6.7,0.0,0.0,0.9866634544896032,-10.034591343955444,1.0,0.0,0.0 -587,24.0,0.0,0.0,0.0,0.0,0.9803402728666528,-9.765089342879415,1.0,0.0,0.0 -587,25.0,1.894875677611808,2.3,0.0,0.0,0.96630587123906,-9.84670034624443,1.0,0.0,0.0 -587,26.0,0.0,0.0,0.0,0.0,0.9834365186323902,-9.519597330121815,1.0,0.0,0.0 -587,27.0,0.0,0.0,0.0,0.0,0.9655736019811252,-7.370562950157991,1.0,0.0,0.0 -587,28.0,1.2993433217909538,0.9,0.0,0.0,0.9696847140778904,-10.150045044821322,1.0,0.0,0.0 -587,29.0,5.738766337910046,1.9,0.0,0.0,0.962194773930914,-10.62426738630162,1.0,0.0,0.0 -588,0.0,0.0,0.0,160.2848267427512,0.0022857511282836,1.0,0.0,0.0,0.0,1.0 -588,1.0,11.748229201193208,12.7,2.2973851991763976e-06,10.62753841072761,0.98043090072531,-3.677419835604277,0.0,1.0,0.0 -588,2.0,1.2993433217909538,1.2,0.0,0.0,0.9743622823897083,-4.822512382611115,1.0,0.0,0.0 -588,3.0,4.114587185671354,1.6,0.0,0.0,0.967770234949416,-5.926276590717291,1.0,0.0,0.0 -588,4.0,50.99922538029494,19.0,-2.8472450532286338e-11,24.5434339654674,0.960858372158334,-8.850059993376053,0.0,1.0,0.0 -588,5.0,0.0,0.0,0.0,0.0,0.9669842522478124,-7.0309095491692375,1.0,0.0,0.0 -588,6.0,12.34376155701406,10.9,0.0,0.0,0.9580120467397494,-8.047961559232018,1.0,0.0,0.0 -588,7.0,16.241791522386922,30.0,1.679452422243988e-09,30.446868256641032,0.9564196382949186,-10.076910659694995,0.0,1.0,0.0 -588,8.0,0.0,0.0,0.0,0.0,1.0155341401001188,-8.883192308775518,1.0,0.0,0.0 -588,9.0,3.140079694328138,2.0,0.0,0.0,1.0066055149938269,-9.845253359003657,1.0,0.0,0.0 -588,10.0,0.0,0.0,1.9388317104514144e-09,22.66048372377767,1.0599999951574632,-8.88319230856087,0.0,1.0,0.0 -588,11.0,6.063602168357784,7.5,0.0,0.0,1.0160316604809712,-9.289558514511892,1.0,0.0,0.0 -588,12.0,0.0,0.0,-1.7347658149789918e-10,10.797830923310896,1.0306983792772455,-9.289558514525178,0.0,1.0,0.0 -588,13.0,3.356636914626631,1.6,0.0,0.0,0.9859607966768568,-10.171506022757388,1.0,0.0,0.0 -588,14.0,4.439423016119092,2.5,0.0,0.0,0.996730465534822,-9.98685061514516,1.0,0.0,0.0 -588,15.0,1.894875677611808,1.8,0.0,0.0,1.0057638271656584,-9.62646332547186,1.0,0.0,0.0 -588,16.0,4.872537456716077,5.8,0.0,0.0,1.0020208070679577,-9.871446459333582,1.0,0.0,0.0 -588,17.0,1.7324577623879385,0.9,0.0,0.0,0.9910658433061356,-10.279687080024273,1.0,0.0,0.0 -588,18.0,5.143233982089192,3.4,0.0,0.0,0.9900020727848626,-10.356587594921066,1.0,0.0,0.0 -588,19.0,1.1910647116417077,0.7,0.0,0.0,0.993541516123824,-10.26051919499232,1.0,0.0,0.0 -588,20.0,9.47437838805904,11.2,0.0,0.0,0.9958558253497138,-10.036642998619673,1.0,0.0,0.0 -588,21.0,0.0,0.0,0.0,0.0,0.9961700611663816,-10.039794172273776,1.0,0.0,0.0 -588,22.0,1.7324577623879385,1.6,0.0,0.0,0.9887882176909109,-10.15840399629114,1.0,0.0,0.0 -588,23.0,4.710119541492207,6.7,0.0,0.0,0.9849068473748016,-10.242000852065066,1.0,0.0,0.0 -588,24.0,0.0,0.0,0.0,0.0,0.9776445817537734,-10.117636986915173,1.0,0.0,0.0 -588,25.0,1.894875677611808,2.3,0.0,0.0,0.9635703314080896,-10.199705349367235,1.0,0.0,0.0 -588,26.0,0.0,0.0,0.0,0.0,0.9802258567027898,-9.963193531342732,1.0,0.0,0.0 -588,27.0,0.0,0.0,0.0,0.0,0.9628491421240748,-7.960222354119232,1.0,0.0,0.0 -588,28.0,1.2993433217909538,0.9,0.0,0.0,0.9664263493982076,-10.597835847724143,1.0,0.0,0.0 -588,29.0,5.738766337910046,1.9,0.0,0.0,0.958910354510564,-11.075283424689225,1.0,0.0,0.0 -589,0.0,0.0,0.0,159.9158364114361,0.0005270378983013,1.0,0.0,0.0,0.0,1.0 -589,1.0,11.748229201193208,12.7,6.447653704159147e-07,10.293933837749345,0.980440976456103,-3.6685000547418185,0.0,1.0,0.0 -589,2.0,1.2993433217909538,1.2,0.0,0.0,0.9744842491525516,-4.811415689566567,1.0,0.0,0.0 -589,3.0,4.114587185671354,1.6,0.0,0.0,0.9679189317529538,-5.912439062334741,1.0,0.0,0.0 -589,4.0,50.99922538029494,19.0,-7.434356797852743e-10,24.0613696501336,0.9606721463445586,-8.830080917923194,0.0,1.0,0.0 -589,5.0,0.0,0.0,0.0,0.0,0.9675938863587484,-7.019689681373259,1.0,0.0,0.0 -589,6.0,12.34376155701406,10.9,0.0,0.0,0.958298012063719,-8.033381183274244,1.0,0.0,0.0 -589,7.0,16.241791522386922,30.0,-5.508413478907295e-10,30.490671535156523,0.9665952881050658,-7.444093056926769,0.0,1.0,0.0 -589,8.0,0.0,0.0,0.0,0.0,1.0158770692656602,-8.812598199184782,1.0,0.0,0.0 -589,9.0,3.140079694328138,2.0,0.0,0.0,1.0069776074625625,-9.744071004604262,1.0,0.0,0.0 -589,10.0,0.0,0.0,-6.607847414366455e-11,22.463632505182712,1.0599583808120476,-8.812598199192093,0.0,1.0,0.0 -589,11.0,6.063602168357784,7.5,0.0,0.0,1.0138486682874617,-9.280120244879871,1.0,0.0,0.0 -589,12.0,0.0,0.0,-7.115686150052231e-10,9.748695598590407,1.0271362663262702,-9.280120244934684,0.0,1.0,0.0 -589,13.0,3.356636914626631,1.6,0.0,0.0,1.0028738640957426,-9.743195463981376,1.0,0.0,0.0 -589,14.0,4.439423016119092,2.5,0.0,0.0,0.9995827017623798,-9.769623226599762,1.0,0.0,0.0 -589,15.0,1.894875677611808,1.8,0.0,0.0,1.0047425804588923,-9.58346161644578,1.0,0.0,0.0 -589,16.0,4.872537456716077,5.8,0.0,0.0,1.0019367153740182,-9.786756887944511,1.0,0.0,0.0 -589,17.0,1.7324577623879385,0.9,0.0,0.0,0.9930524204373682,-10.10161657174837,1.0,0.0,0.0 -589,18.0,5.143233982089192,3.4,0.0,0.0,0.9914731939477364,-10.202387684215594,1.0,0.0,0.0 -589,19.0,1.1910647116417077,0.7,0.0,0.0,0.9947337112440472,-10.119218856819764,1.0,0.0,0.0 -589,20.0,9.47437838805904,11.2,0.0,0.0,0.9964476518400732,-9.91530473555183,1.0,0.0,0.0 -589,21.0,0.0,0.0,0.0,0.0,0.9968317080339322,-9.91211485576839,1.0,0.0,0.0 -589,22.0,1.7324577623879385,1.6,0.0,0.0,0.9911774092725684,-9.944904896265228,1.0,0.0,0.0 -589,23.0,4.710119541492207,6.7,0.0,0.0,0.9866634544896032,-10.034591343955444,1.0,0.0,0.0 -589,24.0,0.0,0.0,0.0,0.0,0.9803402728666528,-9.765089342879415,1.0,0.0,0.0 -589,25.0,1.894875677611808,2.3,0.0,0.0,0.96630587123906,-9.84670034624443,1.0,0.0,0.0 -589,26.0,0.0,0.0,0.0,0.0,0.9834365186323902,-9.519597330121815,1.0,0.0,0.0 -589,27.0,0.0,0.0,0.0,0.0,0.9655736019811252,-7.370562950157991,1.0,0.0,0.0 -589,28.0,1.2993433217909538,0.9,0.0,0.0,0.9696847140778904,-10.150045044821322,1.0,0.0,0.0 -589,29.0,5.738766337910046,1.9,0.0,0.0,0.962194773930914,-10.62426738630162,1.0,0.0,0.0 -590,0.0,0.0,0.0,160.5315365310618,0.0040763353113426,1.0,0.0,0.0,0.0,1.0 -590,1.0,11.748229201193208,12.7,2.831121831758493e-06,9.952169277033732,0.9795664905833276,-3.8541509118071335,0.0,1.0,0.0 -590,2.0,1.2993433217909538,1.2,0.0,0.0,0.9761247559906522,-4.33637446884069,1.0,0.0,0.0 -590,3.0,4.114587185671354,1.6,0.0,0.0,0.9698822854570348,-5.321935988910185,1.0,0.0,0.0 -590,4.0,50.99922538029494,19.0,9.094658807953984e-09,36.12355858045788,0.9587934311914492,-11.836547419559656,0.0,1.0,0.0 -590,5.0,0.0,0.0,0.0,0.0,0.9705348450996524,-6.098680928159836,1.0,0.0,0.0 -590,6.0,12.34376155701406,10.9,0.0,0.0,0.9403663234747428,-12.4542231310067,1.0,0.0,0.0 -590,7.0,16.241791522386922,30.0,-2.5058745261248303e-09,28.52000035398085,0.9687946662374723,-6.508800631099806,0.0,1.0,0.0 -590,8.0,0.0,0.0,0.0,0.0,1.010073075548784,-7.815397741004168,1.0,0.0,0.0 -590,9.0,3.140079694328138,2.0,0.0,0.0,1.008023749282668,-8.70907797181205,1.0,0.0,0.0 -590,10.0,0.0,0.0,-4.576519558798385e-09,11.047197581655702,1.032331593181693,-7.815397741527225,0.0,1.0,0.0 -590,11.0,6.063602168357784,7.5,0.0,0.0,1.014259833804554,-8.81596009630449,1.0,0.0,0.0 -590,12.0,0.0,0.0,-5.126290824643606e-09,15.229733583608647,1.0348631635661216,-8.815960096696253,0.0,1.0,0.0 -590,13.0,3.356636914626631,1.6,0.0,0.0,1.0032121154551956,-9.211989123734115,1.0,0.0,0.0 -590,14.0,4.439423016119092,2.5,0.0,0.0,1.0003073289823403,-9.170770839373764,1.0,0.0,0.0 -590,15.0,1.894875677611808,1.8,0.0,0.0,0.9923168405786578,-9.16995653125626,1.0,0.0,0.0 -590,16.0,4.872537456716077,5.8,0.0,0.0,0.9782848829142684,-9.543603119991742,1.0,0.0,0.0 -590,17.0,1.7324577623879385,0.9,0.0,0.0,0.993926116022293,-9.34879459970706,1.0,0.0,0.0 -590,18.0,5.143233982089192,3.4,0.0,0.0,0.9924290328014572,-9.3578183647848,1.0,0.0,0.0 -590,19.0,1.1910647116417077,0.7,0.0,0.0,0.9957333338402328,-9.226616903256662,1.0,0.0,0.0 -590,20.0,9.47437838805904,11.2,0.0,0.0,0.9975637863574518,-8.905470193707252,1.0,0.0,0.0 -590,21.0,0.0,0.0,0.0,0.0,0.9979632689741972,-8.910519352244265,1.0,0.0,0.0 -590,22.0,1.7324577623879385,1.6,0.0,0.0,0.9920957532666816,-9.222177286979958,1.0,0.0,0.0 -590,23.0,4.710119541492207,6.7,0.0,0.0,0.9878136273170802,-9.144738097398443,1.0,0.0,0.0 -590,24.0,0.0,0.0,0.0,0.0,0.982189436618319,-8.86628476238998,1.0,0.0,0.0 -590,25.0,1.894875677611808,2.3,0.0,0.0,0.9681822378719228,-8.94758424960462,1.0,0.0,0.0 -590,26.0,0.0,0.0,0.0,0.0,0.9857028869097284,-8.614810311822273,1.0,0.0,0.0 -590,27.0,0.0,0.0,0.0,0.0,0.96826944991585,-6.447555431746137,1.0,0.0,0.0 -590,28.0,1.2993433217909538,0.9,0.0,0.0,0.9719845515232964,-9.242322222800832,1.0,0.0,0.0 -590,29.0,5.738766337910046,1.9,0.0,0.0,0.964512891368618,-9.714287792361294,1.0,0.0,0.0 -591,0.0,0.0,0.0,159.94223699566774,0.0005279521572809,1.0,0.0,0.0,0.0,1.0 -591,1.0,11.750091472805115,12.7,6.463613225578118e-07,10.296546208607792,0.9804384548109067,-3.669123515407176,0.0,1.0,0.0 -591,2.0,1.2995492873148515,1.2,0.0,0.0,0.9744808563276208,-4.812231131521837,1.0,0.0,0.0 -591,3.0,4.115239409830362,1.6,0.0,0.0,0.9679148943572172,-5.913448569526731,1.0,0.0,0.0 -591,4.0,51.00730952710792,19.0,-7.442078763856174e-10,24.062903117171917,0.960666961435913,-8.831583682995653,0.0,1.0,0.0 -591,5.0,0.0,0.0,0.0,0.0,0.9675894296737616,-7.020879625282248,1.0,0.0,0.0 -591,6.0,12.345718229491087,10.9,0.0,0.0,0.9582928975822226,-8.034759628753113,1.0,0.0,0.0 -591,7.0,16.244366091435644,30.0,-5.504579408691451e-10,30.491433595322896,0.96659077881157,-7.445356579679635,0.0,1.0,0.0 -591,8.0,0.0,0.0,0.0,0.0,1.0158743487785504,-8.81408149387667,1.0,0.0,0.0 -591,9.0,3.140577444344224,2.0,0.0,0.0,1.0069744845276565,-9.745705266095042,1.0,0.0,0.0 -591,10.0,0.0,0.0,-6.309414837207424e-11,22.46507936621014,1.059958494818367,-8.81408149388365,0.0,1.0,0.0 -591,11.0,6.064563340802639,7.5,0.0,0.0,1.0138471093812709,-9.281686014029,1.0,0.0,0.0 -591,12.0,0.0,0.0,-7.110391325831822e-10,9.750593641417511,1.0271372813436084,-9.281686014083768,0.0,1.0,0.0 -591,13.0,3.357168992230033,1.6,0.0,0.0,1.0028713473714803,-9.744857811721568,1.0,0.0,0.0 -591,14.0,4.440126731659075,2.5,0.0,0.0,0.9995797949049596,-9.771297433381834,1.0,0.0,0.0 -591,15.0,1.895176044000825,1.8,0.0,0.0,1.0047400119410952,-9.585089037615193,1.0,0.0,0.0 -591,16.0,4.873309827430693,5.8,0.0,0.0,1.0019335953501132,-9.788416075070112,1.0,0.0,0.0 -591,17.0,1.7327323830864687,0.9,0.0,0.0,0.9930487632971106,-10.103354773693711,1.0,0.0,0.0 -591,18.0,5.144049262287954,3.4,0.0,0.0,0.9914692801500364,-10.2041428342717,1.0,0.0,0.0 -591,19.0,1.1912535133719473,0.7,0.0,0.0,0.994729958041683,-10.12094964375117,1.0,0.0,0.0 -591,20.0,9.475880220004123,11.2,0.0,0.0,0.996443981429742,-9.916996580389249,1.0,0.0,0.0 -591,21.0,0.0,0.0,0.0,0.0,0.9968280459852952,-9.91380417287353,1.0,0.0,0.0 -591,22.0,1.7327323830864687,1.6,0.0,0.0,0.9911737004721416,-9.94662397907358,1.0,0.0,0.0 -591,23.0,4.710866166516336,6.7,0.0,0.0,0.9866590758176657,-10.036327058749434,1.0,0.0,0.0 -591,24.0,0.0,0.0,0.0,0.0,0.980335458280889,-9.766783982007968,1.0,0.0,0.0 -591,25.0,1.895176044000825,2.3,0.0,0.0,0.96630018154175,-9.848464902019463,1.0,0.0,0.0 -591,26.0,0.0,0.0,0.0,0.0,0.9834318084949438,-9.521228781422767,1.0,0.0,0.0 -591,27.0,0.0,0.0,0.0,0.0,0.9655688976629688,-7.371815622960959,1.0,0.0,0.0 -591,28.0,1.2995492873148515,0.9,0.0,0.0,0.9696786694052802,-10.15181324703091,1.0,0.0,0.0 -591,29.0,5.739676018973928,1.9,0.0,0.0,0.9621878691936158,-10.6261294137518,1.0,0.0,0.0 -592,0.0,0.0,0.0,159.94223699566774,0.0005279521572809,1.0,0.0,0.0,0.0,1.0 -592,1.0,11.750091472805115,12.7,6.463613225578118e-07,10.296546208607792,0.9804384548109067,-3.669123515407176,0.0,1.0,0.0 -592,2.0,1.2995492873148515,1.2,0.0,0.0,0.9744808563276208,-4.812231131521837,1.0,0.0,0.0 -592,3.0,4.115239409830362,1.6,0.0,0.0,0.9679148943572172,-5.913448569526731,1.0,0.0,0.0 -592,4.0,51.00730952710792,19.0,-7.442078763856174e-10,24.062903117171917,0.960666961435913,-8.831583682995653,0.0,1.0,0.0 -592,5.0,0.0,0.0,0.0,0.0,0.9675894296737616,-7.020879625282248,1.0,0.0,0.0 -592,6.0,12.345718229491087,10.9,0.0,0.0,0.9582928975822226,-8.034759628753113,1.0,0.0,0.0 -592,7.0,16.244366091435644,30.0,-5.504579408691451e-10,30.491433595322896,0.96659077881157,-7.445356579679635,0.0,1.0,0.0 -592,8.0,0.0,0.0,0.0,0.0,1.0158743487785504,-8.81408149387667,1.0,0.0,0.0 -592,9.0,3.140577444344224,2.0,0.0,0.0,1.0069744845276565,-9.745705266095042,1.0,0.0,0.0 -592,10.0,0.0,0.0,-6.309414837207424e-11,22.46507936621014,1.059958494818367,-8.81408149388365,0.0,1.0,0.0 -592,11.0,6.064563340802639,7.5,0.0,0.0,1.0138471093812709,-9.281686014029,1.0,0.0,0.0 -592,12.0,0.0,0.0,-7.110391325831822e-10,9.750593641417511,1.0271372813436084,-9.281686014083768,0.0,1.0,0.0 -592,13.0,3.357168992230033,1.6,0.0,0.0,1.0028713473714803,-9.744857811721568,1.0,0.0,0.0 -592,14.0,4.440126731659075,2.5,0.0,0.0,0.9995797949049596,-9.771297433381834,1.0,0.0,0.0 -592,15.0,1.895176044000825,1.8,0.0,0.0,1.0047400119410952,-9.585089037615193,1.0,0.0,0.0 -592,16.0,4.873309827430693,5.8,0.0,0.0,1.0019335953501132,-9.788416075070112,1.0,0.0,0.0 -592,17.0,1.7327323830864687,0.9,0.0,0.0,0.9930487632971106,-10.103354773693711,1.0,0.0,0.0 -592,18.0,5.144049262287954,3.4,0.0,0.0,0.9914692801500364,-10.2041428342717,1.0,0.0,0.0 -592,19.0,1.1912535133719473,0.7,0.0,0.0,0.994729958041683,-10.12094964375117,1.0,0.0,0.0 -592,20.0,9.475880220004123,11.2,0.0,0.0,0.996443981429742,-9.916996580389249,1.0,0.0,0.0 -592,21.0,0.0,0.0,0.0,0.0,0.9968280459852952,-9.91380417287353,1.0,0.0,0.0 -592,22.0,1.7327323830864687,1.6,0.0,0.0,0.9911737004721416,-9.94662397907358,1.0,0.0,0.0 -592,23.0,4.710866166516336,6.7,0.0,0.0,0.9866590758176657,-10.036327058749434,1.0,0.0,0.0 -592,24.0,0.0,0.0,0.0,0.0,0.980335458280889,-9.766783982007968,1.0,0.0,0.0 -592,25.0,1.895176044000825,2.3,0.0,0.0,0.96630018154175,-9.848464902019463,1.0,0.0,0.0 -592,26.0,0.0,0.0,0.0,0.0,0.9834318084949438,-9.521228781422767,1.0,0.0,0.0 -592,27.0,0.0,0.0,0.0,0.0,0.9655688976629688,-7.371815622960959,1.0,0.0,0.0 -592,28.0,1.2995492873148515,0.9,0.0,0.0,0.9696786694052802,-10.15181324703091,1.0,0.0,0.0 -592,29.0,5.739676018973928,1.9,0.0,0.0,0.9621878691936158,-10.6261294137518,1.0,0.0,0.0 -593,0.0,0.0,0.0,160.18318489158193,0.0004089665498696,1.0,0.0,0.0,0.0,1.0 -593,1.0,11.750091472805115,12.7,6.873640498638473e-07,8.269848241765303,0.9801411679648252,-3.657869072204891,0.0,1.0,0.0 -593,2.0,1.2995492873148515,1.2,0.0,0.0,0.9752847721210024,-4.864232199788089,1.0,0.0,0.0 -593,3.0,4.115239409830362,1.6,0.0,0.0,0.9689131228190668,-5.97765074767018,1.0,0.0,0.0 -593,4.0,51.00730952710792,19.0,-7.34201066839583e-10,23.992967869907545,0.9607824474998016,-8.80158661849361,0.0,1.0,0.0 -593,5.0,0.0,0.0,0.0,0.0,0.968279891763528,-6.977897287022833,1.0,0.0,0.0 -593,6.0,12.345718229491087,10.9,0.0,0.0,0.9587543230274226,-7.997073424876814,1.0,0.0,0.0 -593,7.0,16.244366091435644,30.0,-4.862503365370485e-10,29.980929456306768,0.9671193523281916,-7.397912323395897,0.0,1.0,0.0 -593,8.0,0.0,0.0,0.0,0.0,1.0123660060760735,-8.46540008054026,1.0,0.0,0.0 -593,9.0,3.140577444344224,2.0,0.0,0.0,1.0124488332871229,-9.234602022258672,1.0,0.0,0.0 -593,10.0,0.0,0.0,-1.9037316439600484e-10,11.272918548336968,1.0350203155880744,-8.465400080561913,0.0,1.0,0.0 -593,11.0,6.064563340802639,7.5,0.0,0.0,1.023548987634234,-9.934382843384467,1.0,0.0,0.0 -593,12.0,0.0,0.0,-1.0993218649621196e-10,23.51573960510741,1.0547617569908645,-9.93438284339264,0.0,1.0,0.0 -593,13.0,3.357168992230033,1.6,0.0,0.0,1.0100206769547793,-10.397772140167294,1.0,0.0,0.0 -593,14.0,4.440126731659075,2.5,0.0,0.0,1.0041431113618824,-10.372191670171322,1.0,0.0,0.0 -593,15.0,1.895176044000825,1.8,0.0,0.0,1.0018184155743313,-10.282008829095576,1.0,0.0,0.0 -593,16.0,4.873309827430693,5.8,0.0,0.0,0.9879233384177324,-10.64858669136046,1.0,0.0,0.0 -593,17.0,1.7327323830864687,0.9,0.0,0.0,0.9869506128386372,-10.974175206092545,1.0,0.0,0.0 -593,18.0,5.144049262287954,3.4,0.0,0.0,0.979096224014182,-11.23942310937102,1.0,0.0,0.0 -593,19.0,1.1912535133719473,0.7,0.0,0.0,1.0098944484688614,-9.337402754882064,1.0,0.0,0.0 -593,20.0,9.475880220004123,11.2,0.0,0.0,1.0018392410755816,-9.473984640507876,1.0,0.0,0.0 -593,21.0,0.0,0.0,0.0,0.0,1.002170835523015,-9.493264270373457,1.0,0.0,0.0 -593,22.0,1.7327323830864687,1.6,0.0,0.0,0.9955948084629928,-10.238638764412926,1.0,0.0,0.0 -593,23.0,4.710866166516336,6.7,0.0,0.0,0.9908375096234172,-9.912381018904052,1.0,0.0,0.0 -593,24.0,0.0,0.0,0.0,0.0,0.9830725862274808,-9.656778656900924,1.0,0.0,0.0 -593,25.0,1.895176044000825,2.3,0.0,0.0,0.969077539940798,-9.737998711849498,1.0,0.0,0.0 -593,26.0,0.0,0.0,0.0,0.0,0.9852578260384424,-9.421870812010448,1.0,0.0,0.0 -593,27.0,0.0,0.0,0.0,0.0,0.9663751173045726,-7.324002943070462,1.0,0.0,0.0 -593,28.0,1.2995492873148515,0.9,0.0,0.0,0.97851272083831,-9.625052446706404,1.0,0.0,0.0 -593,29.0,5.739676018973928,1.9,0.0,0.0,0.9535202549905224,-11.160852237562503,1.0,0.0,0.0 -594,0.0,0.0,0.0,159.98642983821102,0.0005945844772092,1.0,0.0,0.0,0.0,1.0 -594,1.0,11.750091472805115,12.7,7.468448611321983e-07,10.09911343338075,0.9804061725174644,-3.669537602241978,0.0,1.0,0.0 -594,2.0,1.2995492873148515,1.2,0.0,0.0,0.9745564117410124,-4.815029256090014,1.0,0.0,0.0 -594,3.0,4.115239409830362,1.6,0.0,0.0,0.9680084011450364,-5.916889094234724,1.0,0.0,0.0 -594,4.0,51.00730952710792,19.0,-8.191652621233613e-10,24.07083314467228,0.9606889166043804,-8.833437972053948,0.0,1.0,0.0 -594,5.0,0.0,0.0,0.0,0.0,0.96764813472731,-7.02438821955784,1.0,0.0,0.0 -594,6.0,12.345718229491087,10.9,0.0,0.0,0.9583367831693268,-8.037588427411698,1.0,0.0,0.0 -594,7.0,16.244366091435644,30.0,-5.583165256109378e-10,30.562615050026054,0.9666442500846034,-7.449922723957022,0.0,1.0,0.0 -594,8.0,0.0,0.0,0.0,0.0,1.016213533454813,-8.804613765653183,1.0,0.0,0.0 -594,9.0,3.140577444344224,2.0,0.0,0.0,1.0076346064291783,-9.728947646742292,1.0,0.0,0.0 -594,10.0,0.0,0.0,-1.4326996473812057e-11,22.29263684447,1.0599592570096164,-8.804613765654768,0.0,1.0,0.0 -594,11.0,6.064563340802639,7.5,0.0,0.0,1.0144314674264627,-9.28205617783125,1.0,0.0,0.0 -594,12.0,0.0,0.0,-7.180024978537432e-10,10.150734893943335,1.0282520370336163,-9.282056177886464,0.0,1.0,0.0 -594,13.0,3.357168992230033,1.6,0.0,0.0,1.0062340195202917,-9.65372274427454,1.0,0.0,0.0 -594,14.0,4.440126731659075,2.5,0.0,0.0,0.998438320794194,-9.813251111248988,1.0,0.0,0.0 -594,15.0,1.895176044000825,1.8,0.0,0.0,1.005372166032272,-9.578141814830916,1.0,0.0,0.0 -594,16.0,4.873309827430693,5.8,0.0,0.0,1.0025842882767906,-9.774558557355387,1.0,0.0,0.0 -594,17.0,1.7327323830864687,0.9,0.0,0.0,0.9925430431670113,-10.125247438241184,1.0,0.0,0.0 -594,18.0,5.144049262287954,3.4,0.0,0.0,0.9913402425606204,-10.213870580278082,1.0,0.0,0.0 -594,19.0,1.1912535133719473,0.7,0.0,0.0,0.9948006025019746,-10.1242864136409,1.0,0.0,0.0 -594,20.0,9.475880220004123,11.2,0.0,0.0,0.992674487372078,-9.979783531381642,1.0,0.0,0.0 -594,21.0,0.0,0.0,0.0,0.0,0.9916546862251931,-10.000350990206734,1.0,0.0,0.0 -594,22.0,1.7327323830864687,1.6,0.0,0.0,0.989001904137898,-10.003056144415526,1.0,0.0,0.0 -594,23.0,4.710866166516336,6.7,0.0,0.0,0.9831314218083516,-10.112480653935949,1.0,0.0,0.0 -594,24.0,0.0,0.0,0.0,0.0,0.9781486997908484,-9.833040586619637,1.0,0.0,0.0 -594,25.0,1.895176044000825,2.3,0.0,0.0,0.9640811128944452,-9.915092542731877,1.0,0.0,0.0 -594,26.0,0.0,0.0,0.0,0.0,0.9820910723197852,-9.579579486943851,1.0,0.0,0.0 -594,27.0,0.0,0.0,0.0,0.0,0.965447136803526,-7.37887054447561,1.0,0.0,0.0 -594,28.0,1.2995492873148515,0.9,0.0,0.0,0.9683180521718672,-10.211910862698756,1.0,0.0,0.0 -594,29.0,5.739676018973928,1.9,0.0,0.0,0.9608163930638052,-10.687570092129276,1.0,0.0,0.0 -595,0.0,0.0,0.0,159.96490327981644,0.3087474283439029,1.0,0.0,0.0,0.0,1.0 -595,1.0,11.750091472805115,12.7,0.0,0.0,0.9793826860003844,-3.648981566434257,0.0,1.0,0.0 -595,2.0,1.2995492873148515,1.2,0.0,0.0,0.9770026053594368,-4.852583517149506,1.0,0.0,0.0 -595,3.0,4.115239409830362,1.6,0.0,0.0,0.971028233492084,-5.96238391156795,1.0,0.0,0.0 -595,4.0,51.00730952710792,19.0,-2.2307552929922728e-10,28.387065712832225,0.9666314807322032,-8.89441599918467,0.0,1.0,0.0 -595,5.0,0.0,0.0,0.0,0.0,0.9716023411162236,-7.071534468297629,1.0,0.0,0.0 -595,6.0,12.345718229491087,10.9,0.0,0.0,0.963149745194442,-8.086970562919637,1.0,0.0,0.0 -595,7.0,16.244366091435644,30.0,-3.2555821629251016e-10,34.33372421367443,0.9720576558178358,-7.516387114123996,0.0,1.0,0.0 -595,8.0,0.0,0.0,0.0,0.0,1.019298301103737,-8.834361426656383,1.0,0.0,0.0 -595,9.0,3.140577444344224,2.0,0.0,0.0,1.0118165365495977,-9.749605463005793,1.0,0.0,0.0 -595,10.0,0.0,0.0,-2.878081143889154e-10,20.742097590779156,1.059999783918509,-8.834361426688131,0.0,1.0,0.0 -595,11.0,6.064563340802639,7.5,0.0,0.0,1.0216349329755603,-9.331085766808132,1.0,0.0,0.0 -595,12.0,0.0,0.0,-3.734243515993951e-10,12.799381118106377,1.0388833881626631,-9.331085766836354,0.0,1.0,0.0 -595,13.0,3.357168992230033,1.6,0.0,0.0,1.010363826821061,-9.786745596454544,1.0,0.0,0.0 -595,14.0,4.440126731659075,2.5,0.0,0.0,1.006734261945111,-9.803724703779924,1.0,0.0,0.0 -595,15.0,1.895176044000825,1.8,0.0,0.0,1.0113205118419848,-9.607308117900663,1.0,0.0,0.0 -595,16.0,4.873309827430693,5.8,0.0,0.0,1.0073350209369527,-9.799083734875548,1.0,0.0,0.0 -595,17.0,1.7327323830864687,0.9,0.0,0.0,0.9994481380170578,-10.12111752325118,1.0,0.0,0.0 -595,18.0,5.144049262287954,3.4,0.0,0.0,0.9974062678270794,-10.214495288054025,1.0,0.0,0.0 -595,19.0,1.1912535133719473,0.7,0.0,0.0,1.000398905939879,-10.128953321125325,1.0,0.0,0.0 -595,20.0,9.475880220004123,11.2,0.0,0.0,1.0014644611291978,-9.921049620758222,1.0,0.0,0.0 -595,21.0,0.0,0.0,0.0,0.0,1.0018863849148612,-9.918526768062613,1.0,0.0,0.0 -595,22.0,1.7327323830864687,1.6,0.0,0.0,0.9976909469849108,-9.970774304890131,1.0,0.0,0.0 -595,23.0,4.710866166516336,6.7,0.0,0.0,0.99228156168684,-10.05167791072028,1.0,0.0,0.0 -595,24.0,0.0,0.0,0.0,0.0,0.9856082931630756,-9.784503900653837,1.0,0.0,0.0 -595,25.0,1.895176044000825,2.3,0.0,0.0,0.9716503085572812,-9.865300492506195,1.0,0.0,0.0 -595,26.0,0.0,0.0,0.0,0.0,0.9884485668832091,-9.54165910901733,1.0,0.0,0.0 -595,27.0,0.0,0.0,0.0,0.0,0.969990519776775,-7.424106386491728,1.0,0.0,0.0 -595,28.0,1.2995492873148515,0.9,0.0,0.0,0.9747692980450652,-10.165771132578914,1.0,0.0,0.0 -595,29.0,5.739676018973928,1.9,0.0,0.0,0.9673188439426424,-10.635112597262378,1.0,0.0,0.0 -596,0.0,0.0,0.0,164.30261414297377,0.0006062230236913,1.0,0.0,0.0,0.0,1.0 -596,1.0,11.750091472805115,12.7,1.661285376212638e-06,14.2683545834985,0.9823650776248892,-3.441772494885951,0.0,1.0,0.0 -596,2.0,1.2995492873148515,1.2,0.0,0.0,0.9687229539731254,-5.920237266947627,1.0,0.0,0.0 -596,3.0,4.115239409830362,1.6,0.0,0.0,0.9610334661130888,-7.293987117518114,1.0,0.0,0.0 -596,4.0,51.00730952710792,19.0,1.0381373022655244e-10,38.66017610872112,0.9400007888491668,-16.96922748227652,0.0,1.0,0.0 -596,5.0,0.0,0.0,0.0,0.0,0.956214181145612,-9.014146935081062,1.0,0.0,0.0 -596,6.0,12.345718229491087,10.9,0.0,0.0,0.9424202108646824,-12.526204368242787,1.0,0.0,0.0 -596,7.0,16.244366091435644,30.0,-1.132565829625554e-09,39.99960191344977,0.9586731266446504,-9.50824273106843,0.0,1.0,0.0 -596,8.0,0.0,0.0,0.0,0.0,0.9748770352407534,-10.795707073480385,1.0,0.0,0.0 -596,9.0,3.140577444344224,2.0,0.0,0.0,0.973754006097287,-11.741610172945704,1.0,0.0,0.0 -596,10.0,0.0,0.0,0.0,0.0,0.9748770352407536,-10.795707073480385,0.0,1.0,0.0 -596,11.0,6.064563340802639,7.5,0.0,0.0,1.0218710665776805,-10.853922990429089,1.0,0.0,0.0 -596,12.0,0.0,0.0,-2.1515650114363182e-09,20.57422624410932,1.049321116230011,-10.853922990590036,0.0,1.0,0.0 -596,13.0,3.357168992230033,1.6,0.0,0.0,1.0062565961842496,-11.4104180488003,1.0,0.0,0.0 -596,14.0,4.440126731659075,2.5,0.0,0.0,0.9977537610619044,-11.428679470699231,1.0,0.0,0.0 -596,15.0,1.895176044000825,1.8,0.0,0.0,0.9601617259323048,-12.107230867723349,1.0,0.0,0.0 -596,16.0,4.873309827430693,5.8,0.0,0.0,0.9648051213305374,-11.94016036407821,1.0,0.0,0.0 -596,17.0,1.7327323830864687,0.9,0.0,0.0,0.9799859016644058,-11.8817000683048,1.0,0.0,0.0 -596,18.0,5.144049262287954,3.4,0.0,0.0,0.9717912365432868,-12.055275002425862,1.0,0.0,0.0 -596,19.0,1.1912535133719473,0.7,0.0,0.0,0.9716437793411064,-12.004397523269782,1.0,0.0,0.0 -596,20.0,9.475880220004123,11.2,0.0,0.0,0.9651125710497632,-11.90137172863604,1.0,0.0,0.0 -596,21.0,0.0,0.0,0.0,0.0,0.966221746811654,-11.891474978383126,1.0,0.0,0.0 -596,22.0,1.7327323830864687,1.6,0.0,0.0,0.9809564482162432,-11.72988769881838,1.0,0.0,0.0 -596,23.0,4.710866166516336,6.7,0.0,0.0,0.9653585733406588,-11.996294936349123,1.0,0.0,0.0 -596,24.0,0.0,0.0,0.0,0.0,0.9623631118733026,-11.810549337926226,1.0,0.0,0.0 -596,25.0,1.895176044000825,2.3,0.0,0.0,0.948057730588277,-11.895356717738329,1.0,0.0,0.0 -596,26.0,0.0,0.0,0.0,0.0,0.9676904036818034,-11.61030580562041,1.0,0.0,0.0 -596,27.0,0.0,0.0,0.0,0.0,0.9544328820425436,-9.3793743333252,1.0,0.0,0.0 -596,28.0,1.2995492873148515,0.9,0.0,0.0,0.953700054888046,-12.26186978315277,1.0,0.0,0.0 -596,29.0,5.739676018973928,1.9,0.0,0.0,0.94607968250509,-12.752326495544713,1.0,0.0,0.0 -597,0.0,0.0,0.0,159.94223699566774,0.0005279521572809,1.0,0.0,0.0,0.0,1.0 -597,1.0,11.750091472805115,12.7,6.463613225578118e-07,10.296546208607792,0.9804384548109067,-3.669123515407176,0.0,1.0,0.0 -597,2.0,1.2995492873148515,1.2,0.0,0.0,0.9744808563276208,-4.812231131521837,1.0,0.0,0.0 -597,3.0,4.115239409830362,1.6,0.0,0.0,0.9679148943572172,-5.913448569526731,1.0,0.0,0.0 -597,4.0,51.00730952710792,19.0,-7.442078763856174e-10,24.062903117171917,0.960666961435913,-8.831583682995653,0.0,1.0,0.0 -597,5.0,0.0,0.0,0.0,0.0,0.9675894296737616,-7.020879625282248,1.0,0.0,0.0 -597,6.0,12.345718229491087,10.9,0.0,0.0,0.9582928975822226,-8.034759628753113,1.0,0.0,0.0 -597,7.0,16.244366091435644,30.0,-5.504579408691451e-10,30.491433595322896,0.96659077881157,-7.445356579679635,0.0,1.0,0.0 -597,8.0,0.0,0.0,0.0,0.0,1.0158743487785504,-8.81408149387667,1.0,0.0,0.0 -597,9.0,3.140577444344224,2.0,0.0,0.0,1.0069744845276565,-9.745705266095042,1.0,0.0,0.0 -597,10.0,0.0,0.0,-6.309414837207424e-11,22.46507936621014,1.059958494818367,-8.81408149388365,0.0,1.0,0.0 -597,11.0,6.064563340802639,7.5,0.0,0.0,1.0138471093812709,-9.281686014029,1.0,0.0,0.0 -597,12.0,0.0,0.0,-7.110391325831822e-10,9.750593641417511,1.0271372813436084,-9.281686014083768,0.0,1.0,0.0 -597,13.0,3.357168992230033,1.6,0.0,0.0,1.0028713473714803,-9.744857811721568,1.0,0.0,0.0 -597,14.0,4.440126731659075,2.5,0.0,0.0,0.9995797949049596,-9.771297433381834,1.0,0.0,0.0 -597,15.0,1.895176044000825,1.8,0.0,0.0,1.0047400119410952,-9.585089037615193,1.0,0.0,0.0 -597,16.0,4.873309827430693,5.8,0.0,0.0,1.0019335953501132,-9.788416075070112,1.0,0.0,0.0 -597,17.0,1.7327323830864687,0.9,0.0,0.0,0.9930487632971106,-10.103354773693711,1.0,0.0,0.0 -597,18.0,5.144049262287954,3.4,0.0,0.0,0.9914692801500364,-10.2041428342717,1.0,0.0,0.0 -597,19.0,1.1912535133719473,0.7,0.0,0.0,0.994729958041683,-10.12094964375117,1.0,0.0,0.0 -597,20.0,9.475880220004123,11.2,0.0,0.0,0.996443981429742,-9.916996580389249,1.0,0.0,0.0 -597,21.0,0.0,0.0,0.0,0.0,0.9968280459852952,-9.91380417287353,1.0,0.0,0.0 -597,22.0,1.7327323830864687,1.6,0.0,0.0,0.9911737004721416,-9.94662397907358,1.0,0.0,0.0 -597,23.0,4.710866166516336,6.7,0.0,0.0,0.9866590758176657,-10.036327058749434,1.0,0.0,0.0 -597,24.0,0.0,0.0,0.0,0.0,0.980335458280889,-9.766783982007968,1.0,0.0,0.0 -597,25.0,1.895176044000825,2.3,0.0,0.0,0.96630018154175,-9.848464902019463,1.0,0.0,0.0 -597,26.0,0.0,0.0,0.0,0.0,0.9834318084949438,-9.521228781422767,1.0,0.0,0.0 -597,27.0,0.0,0.0,0.0,0.0,0.9655688976629688,-7.371815622960959,1.0,0.0,0.0 -597,28.0,1.2995492873148515,0.9,0.0,0.0,0.9696786694052802,-10.15181324703091,1.0,0.0,0.0 -597,29.0,5.739676018973928,1.9,0.0,0.0,0.9621878691936158,-10.6261294137518,1.0,0.0,0.0 -598,0.0,0.0,0.0,160.4690459583068,0.0004264999756919,1.0,0.0,0.0,0.0,1.0 -598,1.0,11.750091472805115,12.7,3.5832236182672e-07,10.597302044601854,0.9796626091955362,-3.8584557372867976,0.0,1.0,0.0 -598,2.0,1.2995492873148515,1.2,0.0,0.0,0.9758670692939628,-4.319103670154031,1.0,0.0,0.0 -598,3.0,4.115239409830362,1.6,0.0,0.0,0.96956303001765,-5.300567385274822,1.0,0.0,0.0 -598,4.0,51.00730952710792,19.0,-9.378715578096548e-10,36.042127202568,0.9587158480258998,-11.8395574107772,0.0,1.0,0.0 -598,5.0,0.0,0.0,0.0,0.0,0.9703541661357348,-6.123256190437058,1.0,0.0,0.0 -598,6.0,12.345718229491087,10.9,0.0,0.0,0.9402859840382572,-12.457475653796015,1.0,0.0,0.0 -598,7.0,16.244366091435644,30.0,3.347654330260573e-10,28.350134927849325,0.9685280466305856,-6.533021907751252,0.0,1.0,0.0 -598,8.0,0.0,0.0,0.0,0.0,1.013346915209562,-7.9614765294842895,1.0,0.0,0.0 -598,9.0,3.140577444344224,2.0,0.0,0.0,1.0051900396418918,-8.92091239730854,1.0,0.0,0.0 -598,10.0,0.0,0.0,6.666223682819875e-10,18.875306896623368,1.0507126390854535,-7.961476529409677,0.0,1.0,0.0 -598,11.0,6.064563340802639,7.5,0.0,0.0,1.010585332257892,-8.54608519434158,1.0,0.0,0.0 -598,12.0,0.0,0.0,4.61294049803105e-10,7.289473774837226,1.020584759730692,-8.546085194305704,0.0,1.0,0.0 -598,13.0,3.357168992230033,1.6,0.0,0.0,0.999786921245227,-8.998473154793498,1.0,0.0,0.0 -598,14.0,4.440126731659075,2.5,0.0,0.0,0.996784473611615,-9.016342647030374,1.0,0.0,0.0 -598,15.0,1.895176044000825,1.8,0.0,0.0,1.00216263028686,-8.814973628524395,1.0,0.0,0.0 -598,16.0,4.873309827430693,5.8,0.0,0.0,0.9998725280470252,-8.98008175071508,1.0,0.0,0.0 -598,17.0,1.7327323830864687,0.9,0.0,0.0,0.9905927478728644,-9.325645747346991,1.0,0.0,0.0 -598,18.0,5.144049262287954,3.4,0.0,0.0,0.9892187902865548,-9.41232334269388,1.0,0.0,0.0 -598,19.0,1.1912535133719473,0.7,0.0,0.0,0.9925977562631004,-9.32110932624555,1.0,0.0,0.0 -598,20.0,9.475880220004123,11.2,0.0,0.0,0.9947137651086694,-9.094799892664636,1.0,0.0,0.0 -598,21.0,0.0,0.0,0.0,0.0,0.9951213850335884,-9.092266660944944,1.0,0.0,0.0 -598,22.0,1.7327323830864687,1.6,0.0,0.0,0.9889564047093424,-9.168621436858718,1.0,0.0,0.0 -598,23.0,4.710866166516336,6.7,0.0,0.0,0.9852224745079644,-9.226141083026864,1.0,0.0,0.0 -598,24.0,0.0,0.0,0.0,0.0,0.9804941504428342,-8.938384219343442,1.0,0.0,0.0 -598,25.0,1.895176044000825,2.3,0.0,0.0,0.9664612125736524,-9.02003831155336,1.0,0.0,0.0 -598,26.0,0.0,0.0,0.0,0.0,0.984574123081965,-8.679892680303949,1.0,0.0,0.0 -598,27.0,0.0,0.0,0.0,0.0,0.9679484725400288,-6.474744529237215,1.0,0.0,0.0 -598,28.0,1.2995492873148515,0.9,0.0,0.0,0.9708378762612384,-9.308994503266325,1.0,0.0,0.0 -598,29.0,5.739676018973928,1.9,0.0,0.0,0.9633563023717776,-9.782170912749011,1.0,0.0,0.0 -599,0.0,0.0,0.0,159.94223699566774,0.0005279521572809,1.0,0.0,0.0,0.0,1.0 -599,1.0,11.750091472805115,12.7,6.463613225578118e-07,10.296546208607792,0.9804384548109067,-3.669123515407176,0.0,1.0,0.0 -599,2.0,1.2995492873148515,1.2,0.0,0.0,0.9744808563276208,-4.812231131521837,1.0,0.0,0.0 -599,3.0,4.115239409830362,1.6,0.0,0.0,0.9679148943572172,-5.913448569526731,1.0,0.0,0.0 -599,4.0,51.00730952710792,19.0,-7.442078763856174e-10,24.062903117171917,0.960666961435913,-8.831583682995653,0.0,1.0,0.0 -599,5.0,0.0,0.0,0.0,0.0,0.9675894296737616,-7.020879625282248,1.0,0.0,0.0 -599,6.0,12.345718229491087,10.9,0.0,0.0,0.9582928975822226,-8.034759628753113,1.0,0.0,0.0 -599,7.0,16.244366091435644,30.0,-5.504579408691451e-10,30.491433595322896,0.96659077881157,-7.445356579679635,0.0,1.0,0.0 -599,8.0,0.0,0.0,0.0,0.0,1.0158743487785504,-8.81408149387667,1.0,0.0,0.0 -599,9.0,3.140577444344224,2.0,0.0,0.0,1.0069744845276565,-9.745705266095042,1.0,0.0,0.0 -599,10.0,0.0,0.0,-6.309414837207424e-11,22.46507936621014,1.059958494818367,-8.81408149388365,0.0,1.0,0.0 -599,11.0,6.064563340802639,7.5,0.0,0.0,1.0138471093812709,-9.281686014029,1.0,0.0,0.0 -599,12.0,0.0,0.0,-7.110391325831822e-10,9.750593641417511,1.0271372813436084,-9.281686014083768,0.0,1.0,0.0 -599,13.0,3.357168992230033,1.6,0.0,0.0,1.0028713473714803,-9.744857811721568,1.0,0.0,0.0 -599,14.0,4.440126731659075,2.5,0.0,0.0,0.9995797949049596,-9.771297433381834,1.0,0.0,0.0 -599,15.0,1.895176044000825,1.8,0.0,0.0,1.0047400119410952,-9.585089037615193,1.0,0.0,0.0 -599,16.0,4.873309827430693,5.8,0.0,0.0,1.0019335953501132,-9.788416075070112,1.0,0.0,0.0 -599,17.0,1.7327323830864687,0.9,0.0,0.0,0.9930487632971106,-10.103354773693711,1.0,0.0,0.0 -599,18.0,5.144049262287954,3.4,0.0,0.0,0.9914692801500364,-10.2041428342717,1.0,0.0,0.0 -599,19.0,1.1912535133719473,0.7,0.0,0.0,0.994729958041683,-10.12094964375117,1.0,0.0,0.0 -599,20.0,9.475880220004123,11.2,0.0,0.0,0.996443981429742,-9.916996580389249,1.0,0.0,0.0 -599,21.0,0.0,0.0,0.0,0.0,0.9968280459852952,-9.91380417287353,1.0,0.0,0.0 -599,22.0,1.7327323830864687,1.6,0.0,0.0,0.9911737004721416,-9.94662397907358,1.0,0.0,0.0 -599,23.0,4.710866166516336,6.7,0.0,0.0,0.9866590758176657,-10.036327058749434,1.0,0.0,0.0 -599,24.0,0.0,0.0,0.0,0.0,0.980335458280889,-9.766783982007968,1.0,0.0,0.0 -599,25.0,1.895176044000825,2.3,0.0,0.0,0.96630018154175,-9.848464902019463,1.0,0.0,0.0 -599,26.0,0.0,0.0,0.0,0.0,0.9834318084949438,-9.521228781422767,1.0,0.0,0.0 -599,27.0,0.0,0.0,0.0,0.0,0.9655688976629688,-7.371815622960959,1.0,0.0,0.0 -599,28.0,1.2995492873148515,0.9,0.0,0.0,0.9696786694052802,-10.15181324703091,1.0,0.0,0.0 -599,29.0,5.739676018973928,1.9,0.0,0.0,0.9621878691936158,-10.6261294137518,1.0,0.0,0.0 -600,0.0,0.0,0.0,159.94223699566774,0.0005279521572809,1.0,0.0,0.0,0.0,1.0 -600,1.0,11.750091472805115,12.7,6.463613225578118e-07,10.296546208607792,0.9804384548109067,-3.669123515407176,0.0,1.0,0.0 -600,2.0,1.2995492873148515,1.2,0.0,0.0,0.9744808563276208,-4.812231131521837,1.0,0.0,0.0 -600,3.0,4.115239409830362,1.6,0.0,0.0,0.9679148943572172,-5.913448569526731,1.0,0.0,0.0 -600,4.0,51.00730952710792,19.0,-7.442078763856174e-10,24.062903117171917,0.960666961435913,-8.831583682995653,0.0,1.0,0.0 -600,5.0,0.0,0.0,0.0,0.0,0.9675894296737616,-7.020879625282248,1.0,0.0,0.0 -600,6.0,12.345718229491087,10.9,0.0,0.0,0.9582928975822226,-8.034759628753113,1.0,0.0,0.0 -600,7.0,16.244366091435644,30.0,-5.504579408691451e-10,30.491433595322896,0.96659077881157,-7.445356579679635,0.0,1.0,0.0 -600,8.0,0.0,0.0,0.0,0.0,1.0158743487785504,-8.81408149387667,1.0,0.0,0.0 -600,9.0,3.140577444344224,2.0,0.0,0.0,1.0069744845276565,-9.745705266095042,1.0,0.0,0.0 -600,10.0,0.0,0.0,-6.309414837207424e-11,22.46507936621014,1.059958494818367,-8.81408149388365,0.0,1.0,0.0 -600,11.0,6.064563340802639,7.5,0.0,0.0,1.0138471093812709,-9.281686014029,1.0,0.0,0.0 -600,12.0,0.0,0.0,-7.110391325831822e-10,9.750593641417511,1.0271372813436084,-9.281686014083768,0.0,1.0,0.0 -600,13.0,3.357168992230033,1.6,0.0,0.0,1.0028713473714803,-9.744857811721568,1.0,0.0,0.0 -600,14.0,4.440126731659075,2.5,0.0,0.0,0.9995797949049596,-9.771297433381834,1.0,0.0,0.0 -600,15.0,1.895176044000825,1.8,0.0,0.0,1.0047400119410952,-9.585089037615193,1.0,0.0,0.0 -600,16.0,4.873309827430693,5.8,0.0,0.0,1.0019335953501132,-9.788416075070112,1.0,0.0,0.0 -600,17.0,1.7327323830864687,0.9,0.0,0.0,0.9930487632971106,-10.103354773693711,1.0,0.0,0.0 -600,18.0,5.144049262287954,3.4,0.0,0.0,0.9914692801500364,-10.2041428342717,1.0,0.0,0.0 -600,19.0,1.1912535133719473,0.7,0.0,0.0,0.994729958041683,-10.12094964375117,1.0,0.0,0.0 -600,20.0,9.475880220004123,11.2,0.0,0.0,0.996443981429742,-9.916996580389249,1.0,0.0,0.0 -600,21.0,0.0,0.0,0.0,0.0,0.9968280459852952,-9.91380417287353,1.0,0.0,0.0 -600,22.0,1.7327323830864687,1.6,0.0,0.0,0.9911737004721416,-9.94662397907358,1.0,0.0,0.0 -600,23.0,4.710866166516336,6.7,0.0,0.0,0.9866590758176657,-10.036327058749434,1.0,0.0,0.0 -600,24.0,0.0,0.0,0.0,0.0,0.980335458280889,-9.766783982007968,1.0,0.0,0.0 -600,25.0,1.895176044000825,2.3,0.0,0.0,0.96630018154175,-9.848464902019463,1.0,0.0,0.0 -600,26.0,0.0,0.0,0.0,0.0,0.9834318084949438,-9.521228781422767,1.0,0.0,0.0 -600,27.0,0.0,0.0,0.0,0.0,0.9655688976629688,-7.371815622960959,1.0,0.0,0.0 -600,28.0,1.2995492873148515,0.9,0.0,0.0,0.9696786694052802,-10.15181324703091,1.0,0.0,0.0 -600,29.0,5.739676018973928,1.9,0.0,0.0,0.9621878691936158,-10.6261294137518,1.0,0.0,0.0 -601,0.0,0.0,0.0,116.4952359254452,4.003488029979962e-06,1.0,0.0,0.0,0.0,1.0 -601,1.0,11.750091472805115,12.7,42.430892590579326,-23.530177638047743,0.9836435993718128,-2.377093018418398,0.0,1.0,0.0 -601,2.0,1.2995492873148515,1.2,0.0,0.0,0.9844602101681864,-4.22700777530303,1.0,0.0,0.0 -601,3.0,4.115239409830362,1.6,0.0,0.0,0.9801434464935403,-5.18387516492184,1.0,0.0,0.0 -601,4.0,51.00730952710792,19.0,3.762863820785581e-09,39.99999891476459,0.9869439899310898,-7.878489809735143,0.0,1.0,0.0 -601,5.0,0.0,0.0,0.0,0.0,0.984197678777333,-6.121141752430296,1.0,0.0,0.0 -601,6.0,12.345718229491087,10.9,0.0,0.0,0.9790341761196436,-7.098375438866527,1.0,0.0,0.0 -601,7.0,16.244366091435644,30.0,6.4190076372765264e-09,39.99999962888409,0.9868347704555164,-6.57939315927796,0.0,1.0,0.0 -601,8.0,0.0,0.0,0.0,0.0,1.0323789917767388,-7.656740939116118,1.0,0.0,0.0 -601,9.0,3.140577444344224,2.0,0.0,0.0,1.031833581892313,-8.448700273835861,1.0,0.0,0.0 -601,10.0,0.0,0.0,7.415777032252607e-09,14.076090377541735,1.0599999993275506,-7.656740938308515,0.0,1.0,0.0 -601,11.0,6.064563340802639,7.5,0.0,0.0,1.0315801787933967,-9.154413404145394,1.0,0.0,0.0 -601,12.0,0.0,0.0,5.966556905655168e-09,21.517864564061824,1.0599999999179428,-9.154413403707704,0.0,1.0,0.0 -601,13.0,3.357168992230033,1.6,0.0,0.0,1.0181707464174186,-9.632687228036872,1.0,0.0,0.0 -601,14.0,4.440126731659075,2.5,0.0,0.0,1.012194798537543,-9.6297560121025,1.0,0.0,0.0 -601,15.0,1.895176044000825,1.8,0.0,0.0,1.0100307691500596,-9.496570252615816,1.0,0.0,0.0 -601,16.0,4.873309827430693,5.8,0.0,0.0,0.996252191350796,-9.85712772450402,1.0,0.0,0.0 -601,17.0,1.7327323830864687,0.9,0.0,0.0,1.010185467511968,-9.542707680537577,1.0,0.0,0.0 -601,18.0,5.144049262287954,3.4,0.0,0.0,1.011249323832616,-9.39761979648756,1.0,0.0,0.0 -601,19.0,1.1912535133719473,0.7,0.0,0.0,1.0158404276374575,-9.19103463008085,1.0,0.0,0.0 -601,20.0,9.475880220004123,11.2,0.0,0.0,1.0238274070369071,-8.567912301595635,1.0,0.0,0.0 -601,21.0,0.0,0.0,0.0,0.0,1.0249199183920896,-8.551829134385013,1.0,0.0,0.0 -601,22.0,1.7327323830864687,1.6,0.0,0.0,0.989570715118808,-10.217541688064305,1.0,0.0,0.0 -601,23.0,4.710866166516336,6.7,0.0,0.0,0.9662884728766742,-10.893580891017358,1.0,0.0,0.0 -601,24.0,0.0,0.0,0.0,0.0,0.954428027961508,-11.012589399437784,1.0,0.0,0.0 -601,25.0,1.895176044000825,2.3,0.0,0.0,0.9400000027427188,-11.098834937214631,1.0,0.0,0.0 -601,26.0,0.0,0.0,0.0,0.0,1.0040228432646183,-8.001926833073755,1.0,0.0,0.0 -601,27.0,0.0,0.0,0.0,0.0,0.9836264147784712,-6.415704036094938,1.0,0.0,0.0 -601,28.0,1.2995492873148515,0.9,0.0,0.0,0.9905677941002085,-8.606571222223057,1.0,0.0,0.0 -601,29.0,5.739676018973928,1.9,0.0,0.0,0.9832397907656806,-9.060963681312186,1.0,0.0,0.0 -602,0.0,0.0,0.0,159.94223699566774,0.0005279521572809,1.0,0.0,0.0,0.0,1.0 -602,1.0,11.750091472805115,12.7,6.463613225578118e-07,10.296546208607792,0.9804384548109067,-3.669123515407176,0.0,1.0,0.0 -602,2.0,1.2995492873148515,1.2,0.0,0.0,0.9744808563276208,-4.812231131521837,1.0,0.0,0.0 -602,3.0,4.115239409830362,1.6,0.0,0.0,0.9679148943572172,-5.913448569526731,1.0,0.0,0.0 -602,4.0,51.00730952710792,19.0,-7.442078763856174e-10,24.062903117171917,0.960666961435913,-8.831583682995653,0.0,1.0,0.0 -602,5.0,0.0,0.0,0.0,0.0,0.9675894296737616,-7.020879625282248,1.0,0.0,0.0 -602,6.0,12.345718229491087,10.9,0.0,0.0,0.9582928975822226,-8.034759628753113,1.0,0.0,0.0 -602,7.0,16.244366091435644,30.0,-5.504579408691451e-10,30.491433595322896,0.96659077881157,-7.445356579679635,0.0,1.0,0.0 -602,8.0,0.0,0.0,0.0,0.0,1.0158743487785504,-8.81408149387667,1.0,0.0,0.0 -602,9.0,3.140577444344224,2.0,0.0,0.0,1.0069744845276565,-9.745705266095042,1.0,0.0,0.0 -602,10.0,0.0,0.0,-6.309414837207424e-11,22.46507936621014,1.059958494818367,-8.81408149388365,0.0,1.0,0.0 -602,11.0,6.064563340802639,7.5,0.0,0.0,1.0138471093812709,-9.281686014029,1.0,0.0,0.0 -602,12.0,0.0,0.0,-7.110391325831822e-10,9.750593641417511,1.0271372813436084,-9.281686014083768,0.0,1.0,0.0 -602,13.0,3.357168992230033,1.6,0.0,0.0,1.0028713473714803,-9.744857811721568,1.0,0.0,0.0 -602,14.0,4.440126731659075,2.5,0.0,0.0,0.9995797949049596,-9.771297433381834,1.0,0.0,0.0 -602,15.0,1.895176044000825,1.8,0.0,0.0,1.0047400119410952,-9.585089037615193,1.0,0.0,0.0 -602,16.0,4.873309827430693,5.8,0.0,0.0,1.0019335953501132,-9.788416075070112,1.0,0.0,0.0 -602,17.0,1.7327323830864687,0.9,0.0,0.0,0.9930487632971106,-10.103354773693711,1.0,0.0,0.0 -602,18.0,5.144049262287954,3.4,0.0,0.0,0.9914692801500364,-10.2041428342717,1.0,0.0,0.0 -602,19.0,1.1912535133719473,0.7,0.0,0.0,0.994729958041683,-10.12094964375117,1.0,0.0,0.0 -602,20.0,9.475880220004123,11.2,0.0,0.0,0.996443981429742,-9.916996580389249,1.0,0.0,0.0 -602,21.0,0.0,0.0,0.0,0.0,0.9968280459852952,-9.91380417287353,1.0,0.0,0.0 -602,22.0,1.7327323830864687,1.6,0.0,0.0,0.9911737004721416,-9.94662397907358,1.0,0.0,0.0 -602,23.0,4.710866166516336,6.7,0.0,0.0,0.9866590758176657,-10.036327058749434,1.0,0.0,0.0 -602,24.0,0.0,0.0,0.0,0.0,0.980335458280889,-9.766783982007968,1.0,0.0,0.0 -602,25.0,1.895176044000825,2.3,0.0,0.0,0.96630018154175,-9.848464902019463,1.0,0.0,0.0 -602,26.0,0.0,0.0,0.0,0.0,0.9834318084949438,-9.521228781422767,1.0,0.0,0.0 -602,27.0,0.0,0.0,0.0,0.0,0.9655688976629688,-7.371815622960959,1.0,0.0,0.0 -602,28.0,1.2995492873148515,0.9,0.0,0.0,0.9696786694052802,-10.15181324703091,1.0,0.0,0.0 -602,29.0,5.739676018973928,1.9,0.0,0.0,0.9621878691936158,-10.6261294137518,1.0,0.0,0.0 -603,0.0,0.0,0.0,106.0792653997334,1.8075772878489715e-06,1.0,0.0,0.0,0.0,1.0 -603,1.0,11.750091472805115,12.7,60.467610934652,17.97412480715016,0.9892122507820478,-2.476375175174909,0.0,1.0,0.0 -603,2.0,1.2995492873148515,1.2,0.0,0.0,0.9720211766266996,-2.991578263408621,1.0,0.0,0.0 -603,3.0,4.115239409830362,1.6,0.0,0.0,0.964769198790872,-3.6518197566850095,1.0,0.0,0.0 -603,4.0,51.00730952710792,19.0,-1.0111578469609016e-09,39.99999918770948,0.9415898857882744,-22.114921141695028,0.0,1.0,0.0 -603,5.0,0.0,0.0,0.0,0.0,0.955109138067326,-14.099992178609329,1.0,0.0,0.0 -603,6.0,12.345718229491087,10.9,0.0,0.0,0.9423972637099276,-17.639296385519206,1.0,0.0,0.0 -603,7.0,16.244366091435644,30.0,4.281127662697221e-09,39.9999991118254,0.9575574725914532,-14.575492941338233,0.0,1.0,0.0 -603,8.0,0.0,0.0,0.0,0.0,0.9961250843699648,-14.974231551682346,1.0,0.0,0.0 -603,9.0,3.140577444344224,2.0,0.0,0.0,0.981256955841958,-15.434359831412005,1.0,0.0,0.0 -603,10.0,0.0,0.0,7.388204306926756e-09,23.999999281577384,1.043943751271216,-14.974231550835642,0.0,1.0,0.0 -603,11.0,6.064563340802639,7.5,0.0,0.0,0.9988687243890532,-9.500523914143518,1.0,0.0,0.0 -603,12.0,0.0,0.0,0.0,0.0,0.9988687243890532,-9.500523914143518,0.0,1.0,0.0 -603,13.0,3.357168992230033,1.6,0.0,0.0,0.9876694442346968,-10.647513440092064,1.0,0.0,0.0 -603,14.0,4.440126731659075,2.5,0.0,0.0,0.9798794761001332,-11.34032952956208,1.0,0.0,0.0 -603,15.0,1.895176044000825,1.8,0.0,0.0,0.9934637062615242,-9.619736632976863,1.0,0.0,0.0 -603,16.0,4.873309827430693,5.8,0.0,0.0,0.9746054717488116,-15.568486893748782,1.0,0.0,0.0 -603,17.0,1.7327323830864687,0.9,0.0,0.0,0.9701112662498464,-13.130142044071048,1.0,0.0,0.0 -603,18.0,5.144049262287954,3.4,0.0,0.0,0.9670380905568704,-14.101357318789894,1.0,0.0,0.0 -603,19.0,1.1912535133719473,0.7,0.0,0.0,0.9696724878162032,-14.470338856754918,1.0,0.0,0.0 -603,20.0,9.475880220004123,11.2,0.0,0.0,0.9706686179663004,-15.438793514247928,1.0,0.0,0.0 -603,21.0,0.0,0.0,0.0,0.0,0.9711535618588324,-15.378906087782909,1.0,0.0,0.0 -603,22.0,1.7327323830864687,1.6,0.0,0.0,0.9693916586319942,-12.855671882353294,1.0,0.0,0.0 -603,23.0,4.710866166516336,6.7,0.0,0.0,0.9633823773525344,-14.75741653538462,1.0,0.0,0.0 -603,24.0,0.0,0.0,0.0,0.0,0.957682400042208,-15.428403142952446,1.0,0.0,0.0 -603,25.0,1.895176044000825,2.3,0.0,0.0,0.943304931195639,-15.514054409214104,1.0,0.0,0.0 -603,26.0,0.0,0.0,0.0,0.0,0.9617524899906136,-15.762968724048338,1.0,0.0,0.0 -603,27.0,0.0,0.0,0.0,0.0,0.9532969652267212,-14.351393960353487,1.0,0.0,0.0 -603,28.0,1.2995492873148515,0.9,0.0,0.0,0.9476704592381852,-16.42272074347948,1.0,0.0,0.0 -603,29.0,5.739676018973928,1.9,0.0,0.0,0.940000001148994,-16.919483453746047,1.0,0.0,0.0 -604,0.0,0.0,0.0,160.20294995666612,0.0073699942538141,1.0,0.0,0.0,0.0,1.0 -604,1.0,11.750091472805115,12.7,5.394963964662097e-06,10.694549451459558,0.9801680271318736,-3.74903423800391,0.0,1.0,0.0 -604,2.0,1.2995492873148515,1.2,0.0,0.0,0.9748688026346616,-4.608169076463484,1.0,0.0,0.0 -604,3.0,4.115239409830362,1.6,0.0,0.0,0.9683654796119688,-5.659858409745513,1.0,0.0,0.0 -604,4.0,51.00730952710792,19.0,5.319268253567031e-09,22.72832266270248,0.9608135775601186,-10.078090680175032,0.0,1.0,0.0 -604,5.0,0.0,0.0,0.0,0.0,0.9676012141692608,-6.6363708440951,1.0,0.0,0.0 -604,6.0,12.345718229491087,10.9,0.0,0.0,0.9554309660462176,-7.096263576923469,1.0,0.0,0.0 -604,7.0,16.244366091435644,30.0,-8.1504953958338e-09,32.70590818220219,0.9673464012258466,-7.076480867893356,0.0,1.0,0.0 -604,8.0,0.0,0.0,0.0,0.0,1.017084243763641,-8.42899780903874,1.0,0.0,0.0 -604,9.0,3.140577444344224,2.0,0.0,0.0,1.0094670909420256,-9.358034429413044,1.0,0.0,0.0 -604,10.0,0.0,0.0,-9.947448888026321e-09,21.83853800731785,1.0599396633918323,-8.428997810138403,0.0,1.0,0.0 -604,11.0,6.064563340802639,7.5,0.0,0.0,1.0167149390277623,-8.967128601380486,1.0,0.0,0.0 -604,12.0,0.0,0.0,9.534151514482124e-10,11.99337725223402,1.0329697501208874,-8.967128601307667,0.0,1.0,0.0 -604,13.0,3.357168992230033,1.6,0.0,0.0,1.0051805832063732,-9.412178017344544,1.0,0.0,0.0 -604,14.0,4.440126731659075,2.5,0.0,0.0,1.001438075621112,-9.409678671815357,1.0,0.0,0.0 -604,15.0,1.895176044000825,1.8,0.0,0.0,1.007509968447719,-9.237792338491545,1.0,0.0,0.0 -604,16.0,4.873309827430693,5.8,0.0,0.0,1.004509249006028,-9.413169756378458,1.0,0.0,0.0 -604,17.0,1.7327323830864687,0.9,0.0,0.0,0.9975991561705998,-9.571427619220524,1.0,0.0,0.0 -604,18.0,5.144049262287954,3.4,0.0,0.0,0.9906781470247652,-10.030874139135047,1.0,0.0,0.0 -604,19.0,1.1912535133719473,0.7,0.0,0.0,0.9947801446990846,-9.894716623966984,1.0,0.0,0.0 -604,20.0,9.475880220004123,11.2,0.0,0.0,0.9782620324742176,-9.838317022507898,1.0,0.0,0.0 -604,21.0,0.0,0.0,0.0,0.0,0.9820880617050411,-9.78243056341151,1.0,0.0,0.0 -604,22.0,1.7327323830864687,1.6,0.0,0.0,0.9884687142805,-9.658559879891854,1.0,0.0,0.0 -604,23.0,4.710866166516336,6.7,0.0,0.0,0.9779070770293812,-9.851295642480109,1.0,0.0,0.0 -604,24.0,0.0,0.0,0.0,0.0,0.9748067172366168,-9.553320475407762,1.0,0.0,0.0 -604,25.0,1.895176044000825,2.3,0.0,0.0,0.960689458599184,-9.63594440888515,1.0,0.0,0.0 -604,26.0,0.0,0.0,0.0,0.0,0.979937694506122,-9.285875015395185,1.0,0.0,0.0 -604,27.0,0.0,0.0,0.0,0.0,0.9652789972445448,-6.999570980282351,1.0,0.0,0.0 -604,28.0,1.2995492873148515,0.9,0.0,0.0,0.973155388431016,-9.491284354035328,1.0,0.0,0.0 -604,29.0,5.739676018973928,1.9,0.0,0.0,0.94801052099531,-11.044465224324313,1.0,0.0,0.0 -605,0.0,0.0,0.0,159.94223699566774,0.0005279521572809,1.0,0.0,0.0,0.0,1.0 -605,1.0,11.750091472805115,12.7,6.463613225578118e-07,10.296546208607792,0.9804384548109067,-3.669123515407176,0.0,1.0,0.0 -605,2.0,1.2995492873148515,1.2,0.0,0.0,0.9744808563276208,-4.812231131521837,1.0,0.0,0.0 -605,3.0,4.115239409830362,1.6,0.0,0.0,0.9679148943572172,-5.913448569526731,1.0,0.0,0.0 -605,4.0,51.00730952710792,19.0,-7.442078763856174e-10,24.062903117171917,0.960666961435913,-8.831583682995653,0.0,1.0,0.0 -605,5.0,0.0,0.0,0.0,0.0,0.9675894296737616,-7.020879625282248,1.0,0.0,0.0 -605,6.0,12.345718229491087,10.9,0.0,0.0,0.9582928975822226,-8.034759628753113,1.0,0.0,0.0 -605,7.0,16.244366091435644,30.0,-5.504579408691451e-10,30.491433595322896,0.96659077881157,-7.445356579679635,0.0,1.0,0.0 -605,8.0,0.0,0.0,0.0,0.0,1.0158743487785504,-8.81408149387667,1.0,0.0,0.0 -605,9.0,3.140577444344224,2.0,0.0,0.0,1.0069744845276565,-9.745705266095042,1.0,0.0,0.0 -605,10.0,0.0,0.0,-6.309414837207424e-11,22.46507936621014,1.059958494818367,-8.81408149388365,0.0,1.0,0.0 -605,11.0,6.064563340802639,7.5,0.0,0.0,1.0138471093812709,-9.281686014029,1.0,0.0,0.0 -605,12.0,0.0,0.0,-7.110391325831822e-10,9.750593641417511,1.0271372813436084,-9.281686014083768,0.0,1.0,0.0 -605,13.0,3.357168992230033,1.6,0.0,0.0,1.0028713473714803,-9.744857811721568,1.0,0.0,0.0 -605,14.0,4.440126731659075,2.5,0.0,0.0,0.9995797949049596,-9.771297433381834,1.0,0.0,0.0 -605,15.0,1.895176044000825,1.8,0.0,0.0,1.0047400119410952,-9.585089037615193,1.0,0.0,0.0 -605,16.0,4.873309827430693,5.8,0.0,0.0,1.0019335953501132,-9.788416075070112,1.0,0.0,0.0 -605,17.0,1.7327323830864687,0.9,0.0,0.0,0.9930487632971106,-10.103354773693711,1.0,0.0,0.0 -605,18.0,5.144049262287954,3.4,0.0,0.0,0.9914692801500364,-10.2041428342717,1.0,0.0,0.0 -605,19.0,1.1912535133719473,0.7,0.0,0.0,0.994729958041683,-10.12094964375117,1.0,0.0,0.0 -605,20.0,9.475880220004123,11.2,0.0,0.0,0.996443981429742,-9.916996580389249,1.0,0.0,0.0 -605,21.0,0.0,0.0,0.0,0.0,0.9968280459852952,-9.91380417287353,1.0,0.0,0.0 -605,22.0,1.7327323830864687,1.6,0.0,0.0,0.9911737004721416,-9.94662397907358,1.0,0.0,0.0 -605,23.0,4.710866166516336,6.7,0.0,0.0,0.9866590758176657,-10.036327058749434,1.0,0.0,0.0 -605,24.0,0.0,0.0,0.0,0.0,0.980335458280889,-9.766783982007968,1.0,0.0,0.0 -605,25.0,1.895176044000825,2.3,0.0,0.0,0.96630018154175,-9.848464902019463,1.0,0.0,0.0 -605,26.0,0.0,0.0,0.0,0.0,0.9834318084949438,-9.521228781422767,1.0,0.0,0.0 -605,27.0,0.0,0.0,0.0,0.0,0.9655688976629688,-7.371815622960959,1.0,0.0,0.0 -605,28.0,1.2995492873148515,0.9,0.0,0.0,0.9696786694052802,-10.15181324703091,1.0,0.0,0.0 -605,29.0,5.739676018973928,1.9,0.0,0.0,0.9621878691936158,-10.6261294137518,1.0,0.0,0.0 -606,0.0,0.0,0.0,159.94223699566774,0.0005279521572809,1.0,0.0,0.0,0.0,1.0 -606,1.0,11.750091472805115,12.7,6.463613225578118e-07,10.296546208607792,0.9804384548109067,-3.669123515407176,0.0,1.0,0.0 -606,2.0,1.2995492873148515,1.2,0.0,0.0,0.9744808563276208,-4.812231131521837,1.0,0.0,0.0 -606,3.0,4.115239409830362,1.6,0.0,0.0,0.9679148943572172,-5.913448569526731,1.0,0.0,0.0 -606,4.0,51.00730952710792,19.0,-7.442078763856174e-10,24.062903117171917,0.960666961435913,-8.831583682995653,0.0,1.0,0.0 -606,5.0,0.0,0.0,0.0,0.0,0.9675894296737616,-7.020879625282248,1.0,0.0,0.0 -606,6.0,12.345718229491087,10.9,0.0,0.0,0.9582928975822226,-8.034759628753113,1.0,0.0,0.0 -606,7.0,16.244366091435644,30.0,-5.504579408691451e-10,30.491433595322896,0.96659077881157,-7.445356579679635,0.0,1.0,0.0 -606,8.0,0.0,0.0,0.0,0.0,1.0158743487785504,-8.81408149387667,1.0,0.0,0.0 -606,9.0,3.140577444344224,2.0,0.0,0.0,1.0069744845276565,-9.745705266095042,1.0,0.0,0.0 -606,10.0,0.0,0.0,-6.309414837207424e-11,22.46507936621014,1.059958494818367,-8.81408149388365,0.0,1.0,0.0 -606,11.0,6.064563340802639,7.5,0.0,0.0,1.0138471093812709,-9.281686014029,1.0,0.0,0.0 -606,12.0,0.0,0.0,-7.110391325831822e-10,9.750593641417511,1.0271372813436084,-9.281686014083768,0.0,1.0,0.0 -606,13.0,3.357168992230033,1.6,0.0,0.0,1.0028713473714803,-9.744857811721568,1.0,0.0,0.0 -606,14.0,4.440126731659075,2.5,0.0,0.0,0.9995797949049596,-9.771297433381834,1.0,0.0,0.0 -606,15.0,1.895176044000825,1.8,0.0,0.0,1.0047400119410952,-9.585089037615193,1.0,0.0,0.0 -606,16.0,4.873309827430693,5.8,0.0,0.0,1.0019335953501132,-9.788416075070112,1.0,0.0,0.0 -606,17.0,1.7327323830864687,0.9,0.0,0.0,0.9930487632971106,-10.103354773693711,1.0,0.0,0.0 -606,18.0,5.144049262287954,3.4,0.0,0.0,0.9914692801500364,-10.2041428342717,1.0,0.0,0.0 -606,19.0,1.1912535133719473,0.7,0.0,0.0,0.994729958041683,-10.12094964375117,1.0,0.0,0.0 -606,20.0,9.475880220004123,11.2,0.0,0.0,0.996443981429742,-9.916996580389249,1.0,0.0,0.0 -606,21.0,0.0,0.0,0.0,0.0,0.9968280459852952,-9.91380417287353,1.0,0.0,0.0 -606,22.0,1.7327323830864687,1.6,0.0,0.0,0.9911737004721416,-9.94662397907358,1.0,0.0,0.0 -606,23.0,4.710866166516336,6.7,0.0,0.0,0.9866590758176657,-10.036327058749434,1.0,0.0,0.0 -606,24.0,0.0,0.0,0.0,0.0,0.980335458280889,-9.766783982007968,1.0,0.0,0.0 -606,25.0,1.895176044000825,2.3,0.0,0.0,0.96630018154175,-9.848464902019463,1.0,0.0,0.0 -606,26.0,0.0,0.0,0.0,0.0,0.9834318084949438,-9.521228781422767,1.0,0.0,0.0 -606,27.0,0.0,0.0,0.0,0.0,0.9655688976629688,-7.371815622960959,1.0,0.0,0.0 -606,28.0,1.2995492873148515,0.9,0.0,0.0,0.9696786694052802,-10.15181324703091,1.0,0.0,0.0 -606,29.0,5.739676018973928,1.9,0.0,0.0,0.9621878691936158,-10.6261294137518,1.0,0.0,0.0 -607,0.0,0.0,0.0,160.8639347368419,0.0024500710420483,1.0,0.0,0.0,0.0,1.0 -607,1.0,11.750091472805115,12.7,3.4927711591777947e-06,9.416574608187076,0.9814506414450866,-3.362881630578113,0.0,1.0,0.0 -607,2.0,1.2995492873148515,1.2,0.0,0.0,0.9726315054475764,-5.786755418489977,1.0,0.0,0.0 -607,3.0,4.115239409830362,1.6,0.0,0.0,0.9658181338864816,-7.125027172575412,1.0,0.0,0.0 -607,4.0,51.00730952710792,19.0,2.649494578564046e-09,26.06244776628739,0.961500793614424,-9.585120462773371,0.0,1.0,0.0 -607,5.0,0.0,0.0,0.0,0.0,0.9634572394520876,-8.809824883038779,1.0,0.0,0.0 -607,6.0,12.345718229491087,10.9,0.0,0.0,0.9559998196685208,-9.4001077459532,1.0,0.0,0.0 -607,7.0,16.244366091435644,30.0,2.449007903838313e-09,32.527170074664404,0.9620147121804704,-9.44399410215871,0.0,1.0,0.0 -607,8.0,0.0,0.0,0.0,0.0,1.0113419943502666,-10.77002221593705,1.0,0.0,0.0 -607,9.0,3.140577444344224,2.0,0.0,0.0,1.0007272014253388,-11.79036303406719,1.0,0.0,0.0 -607,10.0,0.0,0.0,4.540418160381249e-09,23.99950625305484,1.0585020114918482,-10.770022215431585,0.0,1.0,0.0 -607,11.0,6.064563340802639,7.5,0.0,0.0,1.0243204710814595,-10.510422465040271,1.0,0.0,0.0 -607,12.0,0.0,0.0,2.833642584524187e-09,13.963819871414188,1.0430627262950265,-10.510422464827531,0.0,1.0,0.0 -607,13.0,3.357168992230033,1.6,0.0,0.0,1.0162038565863163,-10.874889619493336,1.0,0.0,0.0 -607,14.0,4.440126731659075,2.5,0.0,0.0,1.0036850706595135,-11.28510999134085,1.0,0.0,0.0 -607,15.0,1.895176044000825,1.8,0.0,0.0,0.9875103165859116,-12.136250981599105,1.0,0.0,0.0 -607,16.0,4.873309827430693,5.8,0.0,0.0,0.992024898686826,-11.978264657902477,1.0,0.0,0.0 -607,17.0,1.7327323830864687,0.9,0.0,0.0,0.9934520219777236,-11.80079835414472,1.0,0.0,0.0 -607,18.0,5.144049262287954,3.4,0.0,0.0,0.9896934974585808,-12.012533490947485,1.0,0.0,0.0 -607,19.0,1.1912535133719473,0.7,0.0,0.0,0.9918095983771708,-11.987200025869557,1.0,0.0,0.0 -607,20.0,9.475880220004123,11.2,0.0,0.0,0.9903438476027662,-11.963680897358609,1.0,0.0,0.0 -607,21.0,0.0,0.0,0.0,0.0,0.9907977960638222,-11.960501196587211,1.0,0.0,0.0 -607,22.0,1.7327323830864687,1.6,0.0,0.0,0.9912602483376082,-11.687957732187662,1.0,0.0,0.0 -607,23.0,4.710866166516336,6.7,0.0,0.0,0.9814629756306402,-12.090906058625812,1.0,0.0,0.0 -607,24.0,0.0,0.0,0.0,0.0,0.9697963566154312,-12.206194026016362,1.0,0.0,0.0 -607,25.0,1.895176044000825,2.3,0.0,0.0,0.9556039585547615,-12.289686808425326,1.0,0.0,0.0 -607,26.0,0.0,0.0,0.0,0.0,0.9734375114115904,-11.971305935254945,1.0,0.0,0.0 -607,27.0,0.0,0.0,0.0,0.0,0.95445938175331,-10.283763042246395,1.0,0.0,0.0 -607,28.0,1.2995492873148515,0.9,0.0,0.0,0.9595347362914532,-12.615090047286923,1.0,0.0,0.0 -607,29.0,5.739676018973928,1.9,0.0,0.0,0.951962202212629,-13.09955852393666,1.0,0.0,0.0 -608,0.0,0.0,0.0,163.9816722301219,0.0010374371425037,1.0,0.0,0.0,0.0,1.0 -608,1.0,11.750091472805115,12.7,2.781482617339894e-06,3.2076253602469507,0.9810494281986242,-3.4054233277932218,0.0,1.0,0.0 -608,2.0,1.2995492873148515,1.2,0.0,0.0,0.9726847010536748,-5.969836659845081,1.0,0.0,0.0 -608,3.0,4.115239409830362,1.6,0.0,0.0,0.965927283312274,-7.352406969282589,1.0,0.0,0.0 -608,4.0,51.00730952710792,19.0,3.6501976403352943e-09,34.35696490114248,0.9400018899554736,-16.767334895764943,0.0,1.0,0.0 -608,5.0,0.0,0.0,0.0,0.0,0.964681676917457,-9.086447477916623,1.0,0.0,0.0 -608,6.0,12.345718229491087,10.9,0.0,0.0,0.947555870686822,-12.4761469881239,1.0,0.0,0.0 -608,7.0,16.244366091435644,30.0,2.2852017728666653e-09,39.72913863685377,0.96703836519534,-9.580292078790649,0.0,1.0,0.0 -608,8.0,0.0,0.0,0.0,0.0,1.015640891050536,-10.754102839046109,1.0,0.0,0.0 -608,9.0,3.140577444344224,2.0,0.0,0.0,1.0079912637384263,-11.617039974234608,1.0,0.0,0.0 -608,10.0,0.0,0.0,2.698279544529736e-09,22.60523838427128,1.0599984066327048,-10.754102838747414,0.0,1.0,0.0 -608,11.0,6.064563340802639,7.5,0.0,0.0,1.0216644139687003,-11.012865083727622,1.0,0.0,0.0 -608,12.0,0.0,0.0,3.405825853108816e-09,16.32734724416947,1.0435683798075774,-11.01286508347139,0.0,1.0,0.0 -608,13.0,3.357168992230033,1.6,0.0,0.0,1.0099006606639531,-11.496602539674065,1.0,0.0,0.0 -608,14.0,4.440126731659075,2.5,0.0,0.0,1.0056030322515692,-11.53019670074234,1.0,0.0,0.0 -608,15.0,1.895176044000825,1.8,0.0,0.0,1.009546661355049,-11.360537040893188,1.0,0.0,0.0 -608,16.0,4.873309827430693,5.8,0.0,0.0,1.004177365236484,-11.633895736885044,1.0,0.0,0.0 -608,17.0,1.7327323830864687,0.9,0.0,0.0,0.9973350748012244,-11.898035365179387,1.0,0.0,0.0 -608,18.0,5.144049262287954,3.4,0.0,0.0,0.9947192842117688,-12.021351109635392,1.0,0.0,0.0 -608,19.0,1.1912535133719473,0.7,0.0,0.0,0.997419180304148,-11.95079890694558,1.0,0.0,0.0 -608,20.0,9.475880220004123,11.2,0.0,0.0,0.9975791976235406,-11.78470577692563,1.0,0.0,0.0 -608,21.0,0.0,0.0,0.0,0.0,0.9979970558899804,-11.78051579118181,1.0,0.0,0.0 -608,22.0,1.7327323830864687,1.6,0.0,0.0,0.9953350788292968,-11.74551926452436,1.0,0.0,0.0 -608,23.0,4.710866166516336,6.7,0.0,0.0,0.9883200745791052,-11.892098258592124,1.0,0.0,0.0 -608,24.0,0.0,0.0,0.0,0.0,0.9795469972571428,-11.66086855558004,1.0,0.0,0.0 -608,25.0,1.895176044000825,2.3,0.0,0.0,0.965500088105494,-11.742682965672918,1.0,0.0,0.0 -608,26.0,0.0,0.0,0.0,0.0,0.981140723520534,-11.441679369889776,1.0,0.0,0.0 -608,27.0,0.0,0.0,0.0,0.0,0.9614955071459812,-9.385928939588704,1.0,0.0,0.0 -608,28.0,1.2995492873148515,0.9,0.0,0.0,0.9673535753358414,-12.075253424223982,1.0,0.0,0.0 -608,29.0,5.739676018973928,1.9,0.0,0.0,0.9598441995017292,-12.551868153479472,1.0,0.0,0.0 -609,0.0,0.0,0.0,121.57200417102172,1.7308418698291916e-06,1.0,0.0,0.0,0.0,1.0 -609,1.0,11.750091472805115,12.7,37.25130142918015,13.790248965516447,0.9845701987360002,-2.55383622176429,0.0,1.0,0.0 -609,2.0,1.2995492873148515,1.2,0.0,0.0,0.9794454736609728,-4.23945070247379,1.0,0.0,0.0 -609,3.0,4.115239409830362,1.6,0.0,0.0,0.9739649712221344,-5.200673445536081,1.0,0.0,0.0 -609,4.0,51.00730952710792,19.0,0.0,0.0,0.940000000559007,-7.462487008501598,0.0,1.0,0.0 -609,5.0,0.0,0.0,0.0,0.0,0.9728647702181532,-6.1997498151121535,1.0,0.0,0.0 -609,6.0,12.345718229491087,10.9,0.0,0.0,0.9528372171269724,-7.0088070220687,1.0,0.0,0.0 -609,7.0,16.244366091435644,30.0,-9.349489491385124e-09,39.99999578041688,0.9754756463761072,-6.678299764463089,0.0,1.0,0.0 -609,8.0,0.0,0.0,0.0,0.0,1.022070292248923,-7.945522658397878,1.0,0.0,0.0 -609,9.0,3.140577444344224,2.0,0.0,0.0,1.0168304313865115,-8.84861664744377,1.0,0.0,0.0 -609,10.0,0.0,0.0,-1.6201407212805333e-08,19.329557029467427,1.0599999894393517,-7.945522660180058,0.0,1.0,0.0 -609,11.0,6.064563340802639,7.5,0.0,0.0,1.0339053775162073,-8.564959923715474,1.0,0.0,0.0 -609,12.0,0.0,0.0,-1.695433281269359e-08,19.757341448077987,1.059999979923009,-8.564959924956396,0.0,1.0,0.0 -609,13.0,3.357168992230033,1.6,0.0,0.0,1.0219125369732944,-9.002619157020508,1.0,0.0,0.0 -609,14.0,4.440126731659075,2.5,0.0,0.0,1.0175513455386132,-8.992828088320843,1.0,0.0,0.0 -609,15.0,1.895176044000825,1.8,0.0,0.0,1.0205936026225435,-8.766528826843667,1.0,0.0,0.0 -609,16.0,4.873309827430693,5.8,0.0,0.0,1.0136824813749674,-8.920778787210415,1.0,0.0,0.0 -609,17.0,1.7327323830864687,0.9,0.0,0.0,1.008303934661294,-9.272054226742604,1.0,0.0,0.0 -609,18.0,5.144049262287954,3.4,0.0,0.0,1.005079309617399,-9.344508459341077,1.0,0.0,0.0 -609,19.0,1.1912535133719473,0.7,0.0,0.0,1.007417818359307,-9.24981494622406,1.0,0.0,0.0 -609,20.0,9.475880220004123,11.2,0.0,0.0,1.00519949133938,-9.027986740443684,1.0,0.0,0.0 -609,21.0,0.0,0.0,0.0,0.0,1.0097074414581182,-9.015034956010505,1.0,0.0,0.0 -609,22.0,1.7327323830864687,1.6,0.0,0.0,1.0073106561931302,-9.127228235274927,1.0,0.0,0.0 -609,23.0,4.710866166516336,6.7,0.0,0.0,1.0002351548122366,-9.167471666679946,1.0,0.0,0.0 -609,24.0,0.0,0.0,0.0,0.0,0.9914318560705624,-8.876638270091895,1.0,0.0,0.0 -609,25.0,1.895176044000825,2.3,0.0,0.0,0.9775582389344888,-8.956474840319817,1.0,0.0,0.0 -609,26.0,0.0,0.0,0.0,0.0,0.992899174063141,-8.622135181406223,1.0,0.0,0.0 -609,27.0,0.0,0.0,0.0,0.0,0.9720599472169172,-6.5584506132732,1.0,0.0,0.0 -609,28.0,1.2995492873148515,0.9,0.0,0.0,0.979284759705054,-9.240588664673323,1.0,0.0,0.0 -609,29.0,5.739676018973928,1.9,0.0,0.0,0.9718697258294448,-9.705582862967294,1.0,0.0,0.0 -610,0.0,0.0,0.0,120.74720951692916,5.076243692059279e-06,1.0,0.0,0.0,0.0,1.0 -610,1.0,11.750091472805115,12.7,38.19853740647474,-21.911485292004237,0.9830693639094724,-2.5079152240595617,0.0,1.0,0.0 -610,2.0,1.2995492873148515,1.2,0.0,0.0,0.9841308070906098,-4.267002475634611,1.0,0.0,0.0 -610,3.0,4.115239409830362,1.6,0.0,0.0,0.9797412591709392,-5.233521844370566,1.0,0.0,0.0 -610,4.0,51.00730952710792,19.0,9.206512005324941e-09,39.99999767004283,0.9856689254067736,-8.020792424695195,0.0,1.0,0.0 -610,5.0,0.0,0.0,0.0,0.0,0.9822314319940189,-6.254008351931047,1.0,0.0,0.0 -610,6.0,12.345718229491087,10.9,0.0,0.0,0.9773364262816892,-7.2356272288938435,1.0,0.0,0.0 -610,7.0,16.244366091435644,30.0,1.193251635155209e-08,39.999999062462685,0.9846309363858172,-6.728157557015355,0.0,1.0,0.0 -610,8.0,0.0,0.0,0.0,0.0,1.0288324829033897,-7.866801349891033,1.0,0.0,0.0 -610,9.0,3.140577444344224,2.0,0.0,0.0,1.0256288472377688,-8.70192493706958,1.0,0.0,0.0 -610,10.0,0.0,0.0,1.7775347487219645e-08,15.883444111760245,1.0599999959951651,-7.866801347948567,0.0,1.0,0.0 -610,11.0,6.064563340802639,7.5,0.0,0.0,1.0362550509936022,-8.597614369186811,1.0,0.0,0.0 -610,12.0,0.0,0.0,2.1377970605121573e-08,17.978316973608162,1.0599999979850143,-8.597614367625662,0.0,1.0,0.0 -610,13.0,3.357168992230033,1.6,0.0,0.0,1.023606847798812,-9.063166022692185,1.0,0.0,0.0 -610,14.0,4.440126731659075,2.5,0.0,0.0,1.018388838806969,-9.06768484552615,1.0,0.0,0.0 -610,15.0,1.895176044000825,1.8,0.0,0.0,1.0258808813578562,-8.73474731711601,1.0,0.0,0.0 -610,16.0,4.873309827430693,5.8,0.0,0.0,1.02137483081344,-8.80434414603033,1.0,0.0,0.0 -610,17.0,1.7327323830864687,0.9,0.0,0.0,1.0119983641982202,-9.267576404408352,1.0,0.0,0.0 -610,18.0,5.144049262287954,3.4,0.0,0.0,1.010455342930038,-9.293049389339718,1.0,0.0,0.0 -610,19.0,1.1912535133719473,0.7,0.0,0.0,1.01366159925377,-9.175257269598474,1.0,0.0,0.0 -610,20.0,9.475880220004123,11.2,0.0,0.0,1.0141000753224405,-8.878195488022252,1.0,0.0,0.0 -610,21.0,0.0,0.0,0.0,0.0,1.0256288472377688,-8.70192493706958,1.0,0.0,0.0 -610,22.0,1.7327323830864687,1.6,0.0,0.0,1.0026557092995914,-9.369702640437604,1.0,0.0,0.0 -610,23.0,4.710866166516336,6.7,0.0,0.0,0.9883330492649168,-9.642288815959642,1.0,0.0,0.0 -610,24.0,0.0,0.0,0.0,0.0,0.9872444786634936,-9.288594083972171,1.0,0.0,0.0 -610,25.0,1.895176044000825,2.3,0.0,0.0,0.9733103029219534,-9.369119201896998,1.0,0.0,0.0 -610,26.0,0.0,0.0,0.0,0.0,0.9935140239529222,-8.986847811132536,1.0,0.0,0.0 -610,27.0,0.0,0.0,0.0,0.0,0.9802423488286336,-6.629096904715918,1.0,0.0,0.0 -610,28.0,1.2995492873148515,0.9,0.0,0.0,0.9640811769311692,-10.367559905977888,1.0,0.0,0.0 -610,29.0,5.739676018973928,1.9,0.0,0.0,0.9400000018540268,-11.724461903857932,1.0,0.0,0.0 -611,0.0,0.0,0.0,160.72452716994215,0.000346099315962,1.0,0.0,0.0,0.0,1.0 -611,1.0,11.750091472805115,12.7,5.459114183702513e-07,5.705141087292695,0.9791498947213184,-3.7193565958040367,0.0,1.0,0.0 -611,2.0,1.2995492873148515,1.2,0.0,0.0,0.9776874440193142,-4.731683880480947,1.0,0.0,0.0 -611,3.0,4.115239409830362,1.6,0.0,0.0,0.9718549989021996,-5.812032970806005,1.0,0.0,0.0 -611,4.0,51.00730952710792,19.0,-4.5863259637067904e-10,24.245399194749524,0.959500725436778,-9.0521329968206,0.0,1.0,0.0 -611,5.0,0.0,0.0,0.0,0.0,0.9660966021702518,-7.395581371642847,1.0,0.0,0.0 -611,6.0,12.345718229491087,10.9,0.0,0.0,0.9569002562927676,-8.347312487430223,1.0,0.0,0.0 -611,7.0,16.244366091435644,30.0,-3.2294911575315994e-10,29.817777007035914,0.9647239704378268,-7.839719267239928,0.0,1.0,0.0 -611,8.0,0.0,0.0,0.0,0.0,1.010384251732721,-10.736699298684982,1.0,0.0,0.0 -611,9.0,3.140577444344224,2.0,0.0,0.0,0.9987020816168424,-12.48367969639695,1.0,0.0,0.0 -611,10.0,0.0,0.0,-6.435153192580706e-10,24.00017223290059,1.0575864074097214,-10.73669929875675,0.0,1.0,0.0 -611,11.0,6.064563340802639,7.5,0.0,0.0,0.9787926698794842,-15.034816959483283,1.0,0.0,0.0 -611,12.0,0.0,0.0,-9.391266558894195e-11,17.90214221518119,1.0037617417797686,-15.034816959490952,0.0,1.0,0.0 -611,13.0,3.357168992230033,1.6,0.0,0.0,0.9697416803694776,-15.102243007871632,1.0,0.0,0.0 -611,14.0,4.440126731659075,2.5,0.0,0.0,0.9714588888178768,-14.763892745793454,1.0,0.0,0.0 -611,15.0,1.895176044000825,1.8,0.0,0.0,0.9828034552876638,-14.089388729267927,1.0,0.0,0.0 -611,16.0,4.873309827430693,5.8,0.0,0.0,0.9886020787974626,-13.057042750139384,1.0,0.0,0.0 -611,17.0,1.7327323830864687,0.9,0.0,0.0,0.9717340755214802,-14.31055888591451,1.0,0.0,0.0 -611,18.0,5.144049262287954,3.4,0.0,0.0,0.9742840409146638,-13.942259029185504,1.0,0.0,0.0 -611,19.0,1.1912535133719473,0.7,0.0,0.0,0.9798386183284916,-13.609390529219946,1.0,0.0,0.0 -611,20.0,9.475880220004123,11.2,0.0,0.0,0.987311191984446,-12.71606302333059,1.0,0.0,0.0 -611,21.0,0.0,0.0,0.0,0.0,0.987450077091654,-12.731200818090528,1.0,0.0,0.0 -611,22.0,1.7327323830864687,1.6,0.0,0.0,0.9693117979280744,-14.109390437227658,1.0,0.0,0.0 -611,23.0,4.710866166516336,6.7,0.0,0.0,0.9734325250158716,-13.083409981052505,1.0,0.0,0.0 -611,24.0,0.0,0.0,0.0,0.0,0.9740848513763384,-11.890798825807142,1.0,0.0,0.0 -611,25.0,1.895176044000825,2.3,0.0,0.0,0.9599568168630176,-11.973547093439713,1.0,0.0,0.0 -611,26.0,0.0,0.0,0.0,0.0,0.9814091177735016,-11.068477929210198,1.0,0.0,0.0 -611,27.0,0.0,0.0,0.0,0.0,0.9632967380665076,-7.8770910128113405,1.0,0.0,0.0 -611,28.0,1.2995492873148515,0.9,0.0,0.0,0.96762596258708,-11.701700657494596,1.0,0.0,0.0 -611,29.0,5.739676018973928,1.9,0.0,0.0,0.9601187677326458,-12.178045242567626,1.0,0.0,0.0 -612,0.0,0.0,0.0,139.27303000077725,-2.4016943989124684e-06,1.0,0.0,0.0,0.0,1.0 -612,1.0,11.77314949453501,12.7,22.82637267235918,10.682460751622491,0.973488051178309,-4.611824789718128,0.0,1.0,0.0 -612,2.0,1.302099483266545,1.2,0.0,0.0,1.000800685321119,-0.1449699151283242,1.0,0.0,0.0 -612,3.0,4.123315030344059,1.6,0.0,0.0,0.9488483603258452,-9.4577581075155,1.0,0.0,0.0 -612,4.0,51.10740471821189,19.0,-5.324371347449638e-10,26.214078977486366,0.9514953571732322,-10.888488153109982,0.0,1.0,0.0 -612,5.0,0.0,0.0,0.0,0.0,0.951668720400307,-9.997321055568586,1.0,0.0,0.0 -612,6.0,12.369945091032177,10.9,0.0,0.0,0.9448548490880142,-10.640399482892,1.0,0.0,0.0 -612,7.0,16.27624354083181,30.0,-5.087743166394101e-10,32.113091501443954,0.9512264976557866,-10.448307534998404,0.0,1.0,0.0 -612,8.0,0.0,0.0,0.0,0.0,1.0011703695402112,-11.959748122048028,1.0,0.0,0.0 -612,9.0,3.14674041789415,2.0,0.0,0.0,0.9913179269048654,-12.978327350116754,1.0,0.0,0.0 -612,10.0,0.0,0.0,-9.001083763759801e-10,23.99593825974112,1.048761323243482,-11.95974812215019,0.0,1.0,0.0 -612,11.0,6.076464255243876,7.5,0.0,0.0,0.9972568090901992,-12.720861797497346,1.0,0.0,0.0 -612,12.0,0.0,0.0,-7.567155706230767e-10,11.685304786434411,1.0133999194137835,-12.72086179755741,0.0,1.0,0.0 -612,13.0,3.363756998438575,1.6,0.0,0.0,0.9861184212219004,-13.171227631821663,1.0,0.0,0.0 -612,14.0,4.448839901160695,2.5,0.0,0.0,0.9830026995390724,-13.170188592249524,1.0,0.0,0.0 -612,15.0,1.8988950797637116,1.8,0.0,0.0,0.9885947728934826,-12.941807001589794,1.0,0.0,0.0 -612,16.0,4.882873062249543,5.8,0.0,0.0,0.9860051972062582,-13.06245921978284,1.0,0.0,0.0 -612,17.0,1.7361326443553933,0.9,0.0,0.0,0.9766458264142898,-13.456253853181556,1.0,0.0,0.0 -612,18.0,5.1541437879300736,3.4,0.0,0.0,0.9752080664231692,-13.526029265493312,1.0,0.0,0.0 -612,19.0,1.193591192994333,0.7,0.0,0.0,0.9786167405336224,-13.421551346192748,1.0,0.0,0.0 -612,20.0,9.494475398818556,11.2,0.0,0.0,0.9805257909140938,-13.159673539948384,1.0,0.0,0.0 -612,21.0,0.0,0.0,0.0,0.0,0.9808890036154344,-13.157534062361917,1.0,0.0,0.0 -612,22.0,1.7361326443553933,1.6,0.0,0.0,0.9745824884031604,-13.289709655823057,1.0,0.0,0.0 -612,23.0,4.720110626841224,6.7,0.0,0.0,0.9701558747854918,-13.298397238856136,1.0,0.0,0.0 -612,24.0,0.0,0.0,0.0,0.0,0.9638707123315602,-12.955363048863124,1.0,0.0,0.0 -612,25.0,1.8988950797637116,2.3,0.0,0.0,0.949578255398416,-13.040786879153384,1.0,0.0,0.0 -612,26.0,0.0,0.0,0.0,0.0,0.9671011271253198,-12.660699920957152,1.0,0.0,0.0 -612,27.0,0.0,0.0,0.0,0.0,0.9496926877107869,-10.370733706472214,1.0,0.0,0.0 -612,28.0,1.302099483266545,0.9,0.0,0.0,0.95308576294778,-13.314743320687986,1.0,0.0,0.0 -612,29.0,5.75093938442724,1.9,0.0,0.0,0.945450075829754,-13.80696366642332,1.0,0.0,0.0 -613,0.0,0.0,0.0,123.59106292733205,5.812032632945829e-07,1.0,0.0,0.0,0.0,1.0 -613,1.0,11.77314949453501,12.7,50.77229447259087,45.99999854008357,1.003142637029467,-21.435285652092688,0.0,1.0,0.0 -613,2.0,1.302099483266545,1.2,0.0,0.0,0.962472233973516,-12.191236284839093,1.0,0.0,0.0 -613,3.0,4.123315030344059,1.6,0.0,0.0,0.9565876859152936,-15.095588407456324,1.0,0.0,0.0 -613,4.0,51.10740471821189,19.0,2.0015528547221472e-12,39.99999786991109,0.9681499908005996,-38.0964051806428,0.0,1.0,0.0 -613,5.0,0.0,0.0,0.0,0.0,0.980777255696286,-30.493595608193385,1.0,0.0,0.0 -613,6.0,12.369945091032177,10.9,0.0,0.0,0.9687803738193552,-33.853989144799165,1.0,0.0,0.0 -613,7.0,16.27624354083181,30.0,1.977370565611193e-12,39.99999846542363,0.983067597698319,-30.932183938211217,0.0,1.0,0.0 -613,8.0,0.0,0.0,0.0,0.0,1.0142234714148737,-29.86955299066916,1.0,0.0,0.0 -613,9.0,3.14674041789415,2.0,0.0,0.0,0.9960831845163312,-29.537296579203595,1.0,0.0,0.0 -613,10.0,0.0,0.0,5.292241883766471e-12,23.32842159922441,1.0599999969488887,-29.86955299066857,0.0,1.0,0.0 -613,11.0,6.076464255243876,7.5,0.0,0.0,1.0107240537086049,-23.726919888373565,1.0,0.0,0.0 -613,12.0,0.0,0.0,-8.779899640286024e-13,7.20829684890867,1.0206118631228458,-23.726919888373637,0.0,1.0,0.0 -613,13.0,3.363756998438575,1.6,0.0,0.0,1.0024876123465012,-24.1022971824523,1.0,0.0,0.0 -613,14.0,4.448839901160695,2.5,0.0,0.0,0.991146121110858,-25.880643714473702,1.0,0.0,0.0 -613,15.0,1.8988950797637116,1.8,0.0,0.0,0.9935509110532424,-26.295910133067665,1.0,0.0,0.0 -613,16.0,4.882873062249543,5.8,0.0,0.0,0.9917105426761582,-28.622217664993748,1.0,0.0,0.0 -613,17.0,1.7361326443553933,0.9,0.0,0.0,0.9828903265821808,-27.512880903843417,1.0,0.0,0.0 -613,18.0,5.1541437879300736,3.4,0.0,0.0,0.980619406511296,-28.38972576169289,1.0,0.0,0.0 -613,19.0,1.193591192994333,0.7,0.0,0.0,0.9836081594471848,-28.71205093324881,1.0,0.0,0.0 -613,20.0,9.494475398818556,11.2,0.0,0.0,0.9816004653579532,-29.647143033318223,1.0,0.0,0.0 -613,21.0,0.0,0.0,0.0,0.0,0.9807923545977484,-29.620725687448783,1.0,0.0,0.0 -613,22.0,1.7361326443553933,1.6,0.0,0.0,0.9806989213475844,-27.422688335257234,1.0,0.0,0.0 -613,23.0,4.720110626841224,6.7,0.0,0.0,0.9747247935614648,-29.363093371502167,1.0,0.0,0.0 -613,24.0,0.0,0.0,0.0,0.0,0.9722205352371566,-30.72996167554028,1.0,0.0,0.0 -613,25.0,1.8988950797637116,2.3,0.0,0.0,0.9580545478043594,-30.81390256033346,1.0,0.0,0.0 -613,26.0,0.0,0.0,0.0,0.0,0.9786460542225668,-31.489885996666864,1.0,0.0,0.0 -613,27.0,0.0,0.0,0.0,0.0,0.9782429648564984,-30.65004405061806,1.0,0.0,0.0 -613,28.0,1.302099483266545,0.9,0.0,0.0,0.9648059264064056,-32.1283732785082,1.0,0.0,0.0 -613,29.0,5.75093938442724,1.9,0.0,0.0,0.9572659812777916,-32.60862504065385,1.0,0.0,0.0 -614,0.0,0.0,0.0,160.50485244629894,0.0082123868063277,1.0,0.0,0.0,0.0,1.0 -614,1.0,11.77314949453501,12.7,7.591475314226885e-06,8.664969547690447,0.9798014802614832,-3.743514062885684,0.0,1.0,0.0 -614,2.0,1.302099483266545,1.2,0.0,0.0,0.9758234598776214,-4.649342561796863,1.0,0.0,0.0 -614,3.0,4.123315030344059,1.6,0.0,0.0,0.969547450220561,-5.710543766233564,1.0,0.0,0.0 -614,4.0,51.10740471821189,19.0,3.386744089251581e-09,22.75732146360505,0.9604172474593764,-10.090523625998406,0.0,1.0,0.0 -614,5.0,0.0,0.0,0.0,0.0,0.9682844131884496,-6.60702139036592,1.0,0.0,0.0 -614,6.0,12.369945091032177,10.9,0.0,0.0,0.9561169625173956,-7.0675078210970845,1.0,0.0,0.0 -614,7.0,16.27624354083181,30.0,-1.0520876413196852e-08,27.39943891540387,0.9662191384386034,-7.001936899097707,0.0,1.0,0.0 -614,8.0,0.0,0.0,0.0,0.0,1.020569680475434,-8.373191202427467,1.0,0.0,0.0 -614,9.0,3.14674041789415,2.0,0.0,0.0,1.0162335177820123,-9.283066451985574,1.0,0.0,0.0 -614,10.0,0.0,0.0,-1.3418729287776326e-08,20.086596646542944,1.0599854307424406,-8.37319120390574,0.0,1.0,0.0 -614,11.0,6.076464255243876,7.5,0.0,0.0,1.0269902036932954,-9.403328783352796,1.0,0.0,0.0 -614,12.0,0.0,0.0,-1.076530428065918e-08,20.86609829236893,1.0546880038971231,-9.40332878415003,0.0,1.0,0.0 -614,13.0,3.363756998438575,1.6,0.0,0.0,1.0129137525198777,-9.943429393959676,1.0,0.0,0.0 -614,14.0,4.448839901160695,2.5,0.0,0.0,1.0059440246248936,-9.983151344187712,1.0,0.0,0.0 -614,15.0,1.8988950797637116,1.8,0.0,0.0,1.016649520057724,-9.446425694875378,1.0,0.0,0.0 -614,16.0,4.882873062249543,5.8,0.0,0.0,1.0119378302254023,-9.428435470369417,1.0,0.0,0.0 -614,17.0,1.7361326443553933,0.9,0.0,0.0,0.985767541505208,-10.693793030707583,1.0,0.0,0.0 -614,18.0,5.1541437879300736,3.4,0.0,0.0,0.976166934338708,-11.026122076423611,1.0,0.0,0.0 -614,19.0,1.193591192994333,0.7,0.0,0.0,0.9752625688298716,-11.060645826216454,1.0,0.0,0.0 -614,20.0,9.494475398818556,11.2,0.0,0.0,1.0052437655389015,-9.52792208797877,1.0,0.0,0.0 -614,21.0,0.0,0.0,0.0,0.0,1.0054432045434682,-9.548967572153726,1.0,0.0,0.0 -614,22.0,1.7361326443553933,1.6,0.0,0.0,0.9972726734978388,-10.044438751532262,1.0,0.0,0.0 -614,23.0,4.720110626841224,6.7,0.0,0.0,0.9923489040794008,-9.98147433822979,1.0,0.0,0.0 -614,24.0,0.0,0.0,0.0,0.0,0.9808098360928702,-10.094923101620722,1.0,0.0,0.0 -614,25.0,1.8988950797637116,2.3,0.0,0.0,0.9667715968595058,-10.177378650287231,1.0,0.0,0.0 -614,26.0,0.0,0.0,0.0,0.0,0.9861221541136972,-8.542329765766993,1.0,0.0,0.0 -614,27.0,0.0,0.0,0.0,0.0,0.966555710155464,-6.894698143324732,1.0,0.0,0.0 -614,28.0,1.302099483266545,0.9,0.0,0.0,0.972393119516408,-9.17103915088776,1.0,0.0,0.0 -614,29.0,5.75093938442724,1.9,0.0,0.0,0.96491386513223,-9.643774750815512,1.0,0.0,0.0 -615,0.0,0.0,0.0,136.4617150976105,3.615642203413927e-05,1.0,0.0,0.0,0.0,1.0 -615,1.0,11.77314949453501,12.7,31.43752538713952,26.784202833674517,0.9647115880218192,-19.81638338456152,0.0,1.0,0.0 -615,2.0,1.302099483266545,1.2,0.0,0.0,0.9615278853843874,-13.502967876609825,1.0,0.0,0.0 -615,3.0,4.123315030344059,1.6,0.0,0.0,0.9565411607427844,-16.724427678040005,1.0,0.0,0.0 -615,4.0,51.10740471821189,19.0,-1.2920873955164956e-11,23.006978909561333,0.9452047287786214,-26.37294096657288,0.0,1.0,0.0 -615,5.0,0.0,0.0,0.0,0.0,0.9587258870203929,-18.65993985178708,1.0,0.0,0.0 -615,6.0,12.369945091032177,10.9,0.0,0.0,0.9464195707042392,-19.129518513068117,1.0,0.0,0.0 -615,7.0,16.27624354083181,30.0,-3.044973791810302e-12,39.99985215066485,0.9612081119316574,-19.162681066486407,0.0,1.0,0.0 -615,8.0,0.0,0.0,0.0,0.0,1.0132485544140188,-20.29957798895756,1.0,0.0,0.0 -615,9.0,3.14674041789415,2.0,0.0,0.0,1.0062747063198592,-21.144220345521585,1.0,0.0,0.0 -615,10.0,0.0,0.0,-6.546043846780776e-12,23.825164022376107,1.0599998272831463,-20.299577988958283,0.0,1.0,0.0 -615,11.0,6.076464255243876,7.5,0.0,0.0,1.0247706199255129,-20.541262649079624,1.0,0.0,0.0 -615,12.0,0.0,0.0,-9.579066095986479e-12,23.99988452829893,1.056571440073813,-20.541262649080338,0.0,1.0,0.0 -615,13.0,3.363756998438575,1.6,0.0,0.0,1.012373652129034,-21.03019268525139,1.0,0.0,0.0 -615,14.0,4.448839901160695,2.5,0.0,0.0,1.0074033961794808,-21.055743058333576,1.0,0.0,0.0 -615,15.0,1.8988950797637116,1.8,0.0,0.0,1.0105698316611798,-20.8781844468355,1.0,0.0,0.0 -615,16.0,4.882873062249543,5.8,0.0,0.0,1.0033129484744698,-21.16177841949304,1.0,0.0,0.0 -615,17.0,1.7361326443553933,0.9,0.0,0.0,0.9978910183091476,-21.42409737929432,1.0,0.0,0.0 -615,18.0,5.1541437879300736,3.4,0.0,0.0,0.994539321720886,-21.547819151608635,1.0,0.0,0.0 -615,19.0,1.193591192994333,0.7,0.0,0.0,0.9968552506458842,-21.476959597960647,1.0,0.0,0.0 -615,20.0,9.494475398818556,11.2,0.0,0.0,0.995901632077038,-21.31364662709905,1.0,0.0,0.0 -615,21.0,0.0,0.0,0.0,0.0,0.9963402335380888,-21.309594982454524,1.0,0.0,0.0 -615,22.0,1.7361326443553933,1.6,0.0,0.0,0.99575383830598,-21.27437491923349,1.0,0.0,0.0 -615,23.0,4.720110626841224,6.7,0.0,0.0,0.986899347661992,-21.426250897697656,1.0,0.0,0.0 -615,24.0,0.0,0.0,0.0,0.0,0.9763130247321792,-21.19848888971493,1.0,0.0,0.0 -615,25.0,1.8988950797637116,2.3,0.0,0.0,0.9622081977004956,-21.281717076088597,1.0,0.0,0.0 -615,26.0,0.0,0.0,0.0,0.0,0.976811220876606,-20.982433681280693,1.0,0.0,0.0 -615,27.0,0.0,0.0,0.0,0.0,0.9558128910585312,-18.95880239436957,1.0,0.0,0.0 -615,28.0,1.302099483266545,0.9,0.0,0.0,0.962943544630319,-21.62335576211941,1.0,0.0,0.0 -615,29.0,5.75093938442724,1.9,0.0,0.0,0.9553885489429936,-22.105479939283683,1.0,0.0,0.0 -616,0.0,0.0,0.0,160.26915085266677,0.0005389413265888,1.0,0.0,0.0,0.0,1.0 -616,1.0,11.77314949453501,12.7,6.660014735756468e-07,10.328932210635337,0.980407242267978,-3.6768440542431606,0.0,1.0,0.0 -616,2.0,1.302099483266545,1.2,0.0,0.0,0.9744388519702096,-4.822328928666349,1.0,0.0,0.0 -616,3.0,4.123315030344059,1.6,0.0,0.0,0.9678649152262112,-5.925949645305471,1.0,0.0,0.0 -616,4.0,51.10740471821189,19.0,-7.528257218684898e-10,24.08191222378809,0.9606027875271738,-8.850193077409989,0.0,1.0,0.0 -616,5.0,0.0,0.0,0.0,0.0,0.9675342644653532,-7.035615124963498,1.0,0.0,0.0 -616,6.0,12.369945091032177,10.9,0.0,0.0,0.9582295902015198,-8.051829434564166,1.0,0.0,0.0 -616,7.0,16.27624354083181,30.0,-5.442738647402947e-10,30.50088327076657,0.9665349673562774,-7.461003289931022,0.0,1.0,0.0 -616,8.0,0.0,0.0,0.0,0.0,1.0158406974945873,-8.832449409793034,1.0,0.0,0.0 -616,9.0,3.14674041789415,2.0,0.0,0.0,1.0069358514286726,-9.76594247331298,1.0,0.0,0.0 -616,10.0,0.0,0.0,-2.3534984342903522e-11,22.48300399101575,1.0599599569031624,-8.83244940979564,0.0,1.0,0.0 -616,11.0,6.076464255243876,7.5,0.0,0.0,1.0138278580948126,-9.301075287859522,1.0,0.0,0.0 -616,12.0,0.0,0.0,-7.026462795169796e-10,9.774122117377068,1.0271499355162077,-9.301075287913648,0.0,1.0,0.0 -616,13.0,3.363756998438575,1.6,0.0,0.0,1.0028402341541,-9.765442925678704,1.0,0.0,0.0 -616,14.0,4.448839901160695,2.5,0.0,0.0,0.9995438486988836,-9.792029351713191,1.0,0.0,0.0 -616,15.0,1.8988950797637116,1.8,0.0,0.0,1.0047082529456626,-9.605241594684175,1.0,0.0,0.0 -616,16.0,4.882873062249543,5.8,0.0,0.0,1.0018950012970445,-9.808961947780706,1.0,0.0,0.0 -616,17.0,1.7361326443553933,0.9,0.0,0.0,0.993003523039806,-10.12487907269456,1.0,0.0,0.0 -616,18.0,5.1541437879300736,3.4,0.0,0.0,0.9914208595851424,-10.225876976041109,1.0,0.0,0.0 -616,19.0,1.193591192994333,0.7,0.0,0.0,0.9946835246686018,-10.142382096159205,1.0,0.0,0.0 -616,20.0,9.494475398818556,11.2,0.0,0.0,0.9963985695596058,-9.937946830523789,1.0,0.0,0.0 -616,21.0,0.0,0.0,0.0,0.0,0.9967827376202342,-9.934723126617753,1.0,0.0,0.0 -616,22.0,1.7361326443553933,1.6,0.0,0.0,0.99112781970135,-9.967911570652944,1.0,0.0,0.0 -616,23.0,4.720110626841224,6.7,0.0,0.0,0.986604894070522,-10.057820598660063,1.0,0.0,0.0 -616,24.0,0.0,0.0,0.0,0.0,0.9802758697423508,-9.787768921521554,1.0,0.0,0.0 -616,25.0,1.8988950797637116,2.3,0.0,0.0,0.9662297570315316,-9.870315646680009,1.0,0.0,0.0 -616,26.0,0.0,0.0,0.0,0.0,0.9833735077976684,-9.541431291496254,1.0,0.0,0.0 -616,27.0,0.0,0.0,0.0,0.0,0.9655106671566176,-7.387327885845399,1.0,0.0,0.0 -616,28.0,1.302099483266545,0.9,0.0,0.0,0.9696038427172486,-10.173709185230033,1.0,0.0,0.0 -616,29.0,5.75093938442724,1.9,0.0,0.0,0.962102392250675,-10.649187254119116,1.0,0.0,0.0 -617,0.0,0.0,0.0,160.54997601577122,0.0025287557322783,1.0,0.0,0.0,0.0,1.0 -617,1.0,11.77314949453501,12.7,2.7538825437999924e-06,10.663591224907409,0.9804054933524516,-3.689162026233223,0.0,1.0,0.0 -617,2.0,1.302099483266545,1.2,0.0,0.0,0.9743082802175,-4.815162297641053,1.0,0.0,0.0 -617,3.0,4.123315030344059,1.6,0.0,0.0,0.96770298232566,-5.9171087996016,1.0,0.0,0.0 -617,4.0,51.10740471821189,19.0,-7.310862490145492e-12,24.525635612538323,0.9608083829806912,-8.885304643868523,0.0,1.0,0.0 -617,5.0,0.0,0.0,0.0,0.0,0.9670204095392922,-7.076559807733452,1.0,0.0,0.0 -617,6.0,12.369945091032177,10.9,0.0,0.0,0.9580069229480502,-8.090196150842633,1.0,0.0,0.0 -617,7.0,16.27624354083181,30.0,-1.7100441086825104e-10,33.1686954518607,0.9669153569778496,-7.521855095216669,0.0,1.0,0.0 -617,8.0,0.0,0.0,0.0,0.0,1.012653820412722,-9.00804056172072,1.0,0.0,0.0 -617,9.0,3.14674041789415,2.0,0.0,0.0,1.0008235106614554,-10.017059252330936,1.0,0.0,0.0 -617,10.0,0.0,0.0,-7.160560240073524e-10,24.000323706004387,1.0597594836131037,-9.008040561800238,0.0,1.0,0.0 -617,11.0,6.076464255243876,7.5,0.0,0.0,1.013436331700455,-8.98357875403581,1.0,0.0,0.0 -617,12.0,0.0,0.0,-6.112898244255802e-11,5.748838431511508,1.021316721431892,-8.983578754040545,0.0,1.0,0.0 -617,13.0,3.363756998438575,1.6,0.0,0.0,0.9910560285311564,-10.088171168661976,1.0,0.0,0.0 -617,14.0,4.448839901160695,2.5,0.0,0.0,0.9725095549355224,-10.498429696091886,1.0,0.0,0.0 -617,15.0,1.8988950797637116,1.8,0.0,0.0,1.0014301375376868,-9.519044782415705,1.0,0.0,0.0 -617,16.0,4.882873062249543,5.8,0.0,0.0,0.996763124630652,-9.95918575369486,1.0,0.0,0.0 -617,17.0,1.7361326443553933,0.9,0.0,0.0,0.9731965711365296,-10.685979282619602,1.0,0.0,0.0 -617,18.0,5.1541437879300736,3.4,0.0,0.0,0.97593592121518,-10.69608794103372,1.0,0.0,0.0 -617,19.0,1.193591192994333,0.7,0.0,0.0,0.9815477478597902,-10.561252616975532,1.0,0.0,0.0 -617,20.0,9.494475398818556,11.2,0.0,0.0,0.9892598128025576,-10.214878846685917,1.0,0.0,0.0 -617,21.0,0.0,0.0,0.0,0.0,0.9893418040322562,-10.218796837456916,1.0,0.0,0.0 -617,22.0,1.7361326443553933,1.6,0.0,0.0,0.9705939249263268,-10.52929479095023,1.0,0.0,0.0 -617,23.0,4.720110626841224,6.7,0.0,0.0,0.9748572989154876,-10.415133665089805,1.0,0.0,0.0 -617,24.0,0.0,0.0,0.0,0.0,0.9728839251567531,-10.08434732439501,1.0,0.0,0.0 -617,25.0,1.8988950797637116,2.3,0.0,0.0,0.958727888344396,-10.168172059626208,1.0,0.0,0.0 -617,26.0,0.0,0.0,0.0,0.0,0.978724279384834,-9.794677394605806,1.0,0.0,0.0 -617,27.0,0.0,0.0,0.0,0.0,0.9646267174469872,-7.446962607432745,1.0,0.0,0.0 -617,28.0,1.302099483266545,0.9,0.0,0.0,0.9648853235659988,-10.433061183126828,1.0,0.0,0.0 -617,29.0,5.75093938442724,1.9,0.0,0.0,0.9573460187316162,-10.91323336356272,1.0,0.0,0.0 -618,0.0,0.0,0.0,81.1278523093061,3.82493317019339e-06,1.0,0.0,0.0,0.0,1.0 -618,1.0,11.77314949453501,12.7,77.49590649804068,33.19028978780223,0.9949029384582442,-1.537256539188194,0.0,1.0,0.0 -618,2.0,1.302099483266545,1.2,0.0,0.0,0.9684341389182104,-3.301041634778976,1.0,0.0,0.0 -618,3.0,4.123315030344059,1.6,0.0,0.0,0.9603480353657036,-4.036352779152285,1.0,0.0,0.0 -618,4.0,51.10740471821189,19.0,2.0227883467760816e-08,39.99999322009171,0.9781766935329582,-6.981771691567464,0.0,1.0,0.0 -618,5.0,0.0,0.0,0.0,0.0,0.9553108028944594,-4.943510022723414,1.0,0.0,0.0 -618,6.0,12.369945091032177,10.9,0.0,0.0,0.9582089033856456,-6.039131042992002,1.0,0.0,0.0 -618,7.0,16.27624354083181,30.0,0.0,0.0,0.9400000021410048,-5.1530270729866245,0.0,1.0,0.0 -618,8.0,0.0,0.0,0.0,0.0,1.0004817643003077,-6.940935610183148,1.0,0.0,0.0 -618,9.0,3.14674041789415,2.0,0.0,0.0,0.9882952722519772,-7.984826547793731,1.0,0.0,0.0 -618,10.0,0.0,0.0,2.2178508227456757e-08,23.999996260262236,1.0481103304639925,-6.94093560766256,0.0,1.0,0.0 -618,11.0,6.076464255243876,7.5,0.0,0.0,0.9893083461565392,-7.180059995453844,1.0,0.0,0.0 -618,12.0,0.0,0.0,0.0,0.0,0.9893083461565392,-7.180059995453844,0.0,1.0,0.0 -618,13.0,3.363756998438575,1.6,0.0,0.0,0.9622662655689508,-7.983893378539891,1.0,0.0,0.0 -618,14.0,4.448839901160695,2.5,0.0,0.0,0.9733177870465616,-7.789270051963308,1.0,0.0,0.0 -618,15.0,1.8988950797637116,1.8,0.0,0.0,0.9823771826937384,-7.648354403658862,1.0,0.0,0.0 -618,16.0,4.882873062249543,5.8,0.0,0.0,0.9820753946822934,-7.9726029089143715,1.0,0.0,0.0 -618,17.0,1.7361326443553933,0.9,0.0,0.0,0.9616516979097032,-9.016349825948684,1.0,0.0,0.0 -618,18.0,5.1541437879300736,3.4,0.0,0.0,0.96401605635137,-8.913260785848198,1.0,0.0,0.0 -618,19.0,1.193591192994333,0.7,0.0,0.0,0.9694898075278572,-8.71565216529792,1.0,0.0,0.0 -618,20.0,9.494475398818556,11.2,0.0,0.0,0.9726723505169912,-8.214209763588068,1.0,0.0,0.0 -618,21.0,0.0,0.0,0.0,0.0,0.9715238775793168,-8.224982939525558,1.0,0.0,0.0 -618,22.0,1.7361326443553933,1.6,0.0,0.0,0.9655650329227704,-8.051522022610023,1.0,0.0,0.0 -618,23.0,4.720110626841224,6.7,0.0,0.0,0.9621241122543248,-8.249467181898494,1.0,0.0,0.0 -618,24.0,0.0,0.0,0.0,0.0,0.9593901686223087,-7.93237998524412,1.0,0.0,0.0 -618,25.0,1.8988950797637116,2.3,0.0,0.0,0.945028897754762,-8.018615892710487,1.0,0.0,0.0 -618,26.0,0.0,0.0,0.0,0.0,0.9648679640269258,-7.649518982676997,1.0,0.0,0.0 -618,27.0,0.0,0.0,0.0,0.0,0.9510242107346776,-5.275619840365384,1.0,0.0,0.0 -618,28.0,1.302099483266545,0.9,0.0,0.0,0.9508181749532016,-8.306637336423865,1.0,0.0,0.0 -618,29.0,5.75093938442724,1.9,0.0,0.0,0.9431636780713858,-8.80122506452761,1.0,0.0,0.0 -619,0.0,0.0,0.0,160.26915085266677,0.0005389413265888,1.0,0.0,0.0,0.0,1.0 -619,1.0,11.77314949453501,12.7,6.660014735756468e-07,10.328932210635337,0.980407242267978,-3.6768440542431606,0.0,1.0,0.0 -619,2.0,1.302099483266545,1.2,0.0,0.0,0.9744388519702096,-4.822328928666349,1.0,0.0,0.0 -619,3.0,4.123315030344059,1.6,0.0,0.0,0.9678649152262112,-5.925949645305471,1.0,0.0,0.0 -619,4.0,51.10740471821189,19.0,-7.528257218684898e-10,24.08191222378809,0.9606027875271738,-8.850193077409989,0.0,1.0,0.0 -619,5.0,0.0,0.0,0.0,0.0,0.9675342644653532,-7.035615124963498,1.0,0.0,0.0 -619,6.0,12.369945091032177,10.9,0.0,0.0,0.9582295902015198,-8.051829434564166,1.0,0.0,0.0 -619,7.0,16.27624354083181,30.0,-5.442738647402947e-10,30.50088327076657,0.9665349673562774,-7.461003289931022,0.0,1.0,0.0 -619,8.0,0.0,0.0,0.0,0.0,1.0158406974945873,-8.832449409793034,1.0,0.0,0.0 -619,9.0,3.14674041789415,2.0,0.0,0.0,1.0069358514286726,-9.76594247331298,1.0,0.0,0.0 -619,10.0,0.0,0.0,-2.3534984342903522e-11,22.48300399101575,1.0599599569031624,-8.83244940979564,0.0,1.0,0.0 -619,11.0,6.076464255243876,7.5,0.0,0.0,1.0138278580948126,-9.301075287859522,1.0,0.0,0.0 -619,12.0,0.0,0.0,-7.026462795169796e-10,9.774122117377068,1.0271499355162077,-9.301075287913648,0.0,1.0,0.0 -619,13.0,3.363756998438575,1.6,0.0,0.0,1.0028402341541,-9.765442925678704,1.0,0.0,0.0 -619,14.0,4.448839901160695,2.5,0.0,0.0,0.9995438486988836,-9.792029351713191,1.0,0.0,0.0 -619,15.0,1.8988950797637116,1.8,0.0,0.0,1.0047082529456626,-9.605241594684175,1.0,0.0,0.0 -619,16.0,4.882873062249543,5.8,0.0,0.0,1.0018950012970445,-9.808961947780706,1.0,0.0,0.0 -619,17.0,1.7361326443553933,0.9,0.0,0.0,0.993003523039806,-10.12487907269456,1.0,0.0,0.0 -619,18.0,5.1541437879300736,3.4,0.0,0.0,0.9914208595851424,-10.225876976041109,1.0,0.0,0.0 -619,19.0,1.193591192994333,0.7,0.0,0.0,0.9946835246686018,-10.142382096159205,1.0,0.0,0.0 -619,20.0,9.494475398818556,11.2,0.0,0.0,0.9963985695596058,-9.937946830523789,1.0,0.0,0.0 -619,21.0,0.0,0.0,0.0,0.0,0.9967827376202342,-9.934723126617753,1.0,0.0,0.0 -619,22.0,1.7361326443553933,1.6,0.0,0.0,0.99112781970135,-9.967911570652944,1.0,0.0,0.0 -619,23.0,4.720110626841224,6.7,0.0,0.0,0.986604894070522,-10.057820598660063,1.0,0.0,0.0 -619,24.0,0.0,0.0,0.0,0.0,0.9802758697423508,-9.787768921521554,1.0,0.0,0.0 -619,25.0,1.8988950797637116,2.3,0.0,0.0,0.9662297570315316,-9.870315646680009,1.0,0.0,0.0 -619,26.0,0.0,0.0,0.0,0.0,0.9833735077976684,-9.541431291496254,1.0,0.0,0.0 -619,27.0,0.0,0.0,0.0,0.0,0.9655106671566176,-7.387327885845399,1.0,0.0,0.0 -619,28.0,1.302099483266545,0.9,0.0,0.0,0.9696038427172486,-10.173709185230033,1.0,0.0,0.0 -619,29.0,5.75093938442724,1.9,0.0,0.0,0.962102392250675,-10.649187254119116,1.0,0.0,0.0 -620,0.0,0.0,0.0,139.27303631219758,9.22234066891292e-06,1.0,0.0,0.0,0.0,1.0 -620,1.0,11.77314949453501,12.7,23.113172629727064,9.36042172926696,0.9734880434206054,-4.611824909053252,0.0,1.0,0.0 -620,2.0,1.302099483266545,1.2,0.0,0.0,1.000800685321119,-0.1449699151283273,1.0,0.0,0.0 -620,3.0,4.123315030344059,1.6,0.0,0.0,0.9488463002075922,-9.588437718183007,1.0,0.0,0.0 -620,4.0,51.10740471821189,19.0,4.4162612276698076e-10,26.20173533907169,0.9522761480897376,-10.86005095491864,0.0,1.0,0.0 -620,5.0,0.0,0.0,0.0,0.0,0.9532412831342492,-9.952466275571776,1.0,0.0,0.0 -620,6.0,12.369945091032177,10.9,0.0,0.0,0.9461188179732294,-10.60210191784518,1.0,0.0,0.0 -620,7.0,16.27624354083181,30.0,3.859686445815472e-10,31.749694738657382,0.9525430144885716,-10.41283878073936,0.0,1.0,0.0 -620,8.0,0.0,0.0,0.0,0.0,1.0173408214803217,-9.952466275493135,1.0,0.0,0.0 -620,9.0,3.14674041789415,2.0,0.0,0.0,0.9745809931300328,-14.80361841195952,1.0,0.0,0.0 -620,10.0,0.0,0.0,6.54310083744952e-10,21.738344638712075,1.059997304344205,-9.952466275420823,0.0,1.0,0.0 -620,11.0,6.076464255243876,7.5,0.0,0.0,0.9957208672880988,-14.043391304517383,1.0,0.0,0.0 -620,12.0,0.0,0.0,5.151999630633426e-10,18.68422555683409,1.021332426369361,-14.04339130447675,0.0,1.0,0.0 -620,13.0,3.363756998438575,1.6,0.0,0.0,0.9810832520053644,-14.630892310762036,1.0,0.0,0.0 -620,14.0,4.448839901160695,2.5,0.0,0.0,0.9737060026296834,-14.683224072669804,1.0,0.0,0.0 -620,15.0,1.8988950797637116,1.8,0.0,0.0,0.980100588989354,-14.447350632990576,1.0,0.0,0.0 -620,16.0,4.882873062249543,5.8,0.0,0.0,0.9718870837972996,-14.800805396574598,1.0,0.0,0.0 -620,17.0,1.7361326443553933,0.9,0.0,0.0,0.9528099503986766,-15.442794485568673,1.0,0.0,0.0 -620,18.0,5.1541437879300736,3.4,0.0,0.0,0.9428689019439176,-15.798761475321507,1.0,0.0,0.0 -620,19.0,1.193591192994333,0.7,0.0,0.0,0.941932522490645,-15.835769210789126,1.0,0.0,0.0 -620,20.0,9.494475398818556,11.2,0.0,0.0,0.9645093968024504,-14.924184908935413,1.0,0.0,0.0 -620,21.0,0.0,0.0,0.0,0.0,0.965172156040429,-14.900823777991643,1.0,0.0,0.0 -620,22.0,1.7361326443553933,1.6,0.0,0.0,0.964323535868148,-14.794015563850698,1.0,0.0,0.0 -620,23.0,4.720110626841224,6.7,0.0,0.0,0.9586845223715192,-14.788139870754987,1.0,0.0,0.0 -620,24.0,0.0,0.0,0.0,0.0,0.9586904299252766,-13.940380031392396,1.0,0.0,0.0 -620,25.0,1.8988950797637116,2.3,0.0,0.0,0.9443183514282424,-14.026743840326604,1.0,0.0,0.0 -620,26.0,0.0,0.0,0.0,0.0,0.9657667442958008,-13.327586004158691,1.0,0.0,0.0 -620,27.0,0.0,0.0,0.0,0.0,0.9505082230725744,-10.399400677601893,1.0,0.0,0.0 -620,28.0,1.302099483266545,0.9,0.0,0.0,0.9517308311044782,-13.983464178958933,1.0,0.0,0.0 -620,29.0,5.75093938442724,1.9,0.0,0.0,0.94408391607229,-14.477097038740208,1.0,0.0,0.0 -621,0.0,0.0,0.0,160.26915085266677,0.0005389413265888,1.0,0.0,0.0,0.0,1.0 -621,1.0,11.77314949453501,12.7,6.660014735756468e-07,10.328932210635337,0.980407242267978,-3.6768440542431606,0.0,1.0,0.0 -621,2.0,1.302099483266545,1.2,0.0,0.0,0.9744388519702096,-4.822328928666349,1.0,0.0,0.0 -621,3.0,4.123315030344059,1.6,0.0,0.0,0.9678649152262112,-5.925949645305471,1.0,0.0,0.0 -621,4.0,51.10740471821189,19.0,-7.528257218684898e-10,24.08191222378809,0.9606027875271738,-8.850193077409989,0.0,1.0,0.0 -621,5.0,0.0,0.0,0.0,0.0,0.9675342644653532,-7.035615124963498,1.0,0.0,0.0 -621,6.0,12.369945091032177,10.9,0.0,0.0,0.9582295902015198,-8.051829434564166,1.0,0.0,0.0 -621,7.0,16.27624354083181,30.0,-5.442738647402947e-10,30.50088327076657,0.9665349673562774,-7.461003289931022,0.0,1.0,0.0 -621,8.0,0.0,0.0,0.0,0.0,1.0158406974945873,-8.832449409793034,1.0,0.0,0.0 -621,9.0,3.14674041789415,2.0,0.0,0.0,1.0069358514286726,-9.76594247331298,1.0,0.0,0.0 -621,10.0,0.0,0.0,-2.3534984342903522e-11,22.48300399101575,1.0599599569031624,-8.83244940979564,0.0,1.0,0.0 -621,11.0,6.076464255243876,7.5,0.0,0.0,1.0138278580948126,-9.301075287859522,1.0,0.0,0.0 -621,12.0,0.0,0.0,-7.026462795169796e-10,9.774122117377068,1.0271499355162077,-9.301075287913648,0.0,1.0,0.0 -621,13.0,3.363756998438575,1.6,0.0,0.0,1.0028402341541,-9.765442925678704,1.0,0.0,0.0 -621,14.0,4.448839901160695,2.5,0.0,0.0,0.9995438486988836,-9.792029351713191,1.0,0.0,0.0 -621,15.0,1.8988950797637116,1.8,0.0,0.0,1.0047082529456626,-9.605241594684175,1.0,0.0,0.0 -621,16.0,4.882873062249543,5.8,0.0,0.0,1.0018950012970445,-9.808961947780706,1.0,0.0,0.0 -621,17.0,1.7361326443553933,0.9,0.0,0.0,0.993003523039806,-10.12487907269456,1.0,0.0,0.0 -621,18.0,5.1541437879300736,3.4,0.0,0.0,0.9914208595851424,-10.225876976041109,1.0,0.0,0.0 -621,19.0,1.193591192994333,0.7,0.0,0.0,0.9946835246686018,-10.142382096159205,1.0,0.0,0.0 -621,20.0,9.494475398818556,11.2,0.0,0.0,0.9963985695596058,-9.937946830523789,1.0,0.0,0.0 -621,21.0,0.0,0.0,0.0,0.0,0.9967827376202342,-9.934723126617753,1.0,0.0,0.0 -621,22.0,1.7361326443553933,1.6,0.0,0.0,0.99112781970135,-9.967911570652944,1.0,0.0,0.0 -621,23.0,4.720110626841224,6.7,0.0,0.0,0.986604894070522,-10.057820598660063,1.0,0.0,0.0 -621,24.0,0.0,0.0,0.0,0.0,0.9802758697423508,-9.787768921521554,1.0,0.0,0.0 -621,25.0,1.8988950797637116,2.3,0.0,0.0,0.9662297570315316,-9.870315646680009,1.0,0.0,0.0 -621,26.0,0.0,0.0,0.0,0.0,0.9833735077976684,-9.541431291496254,1.0,0.0,0.0 -621,27.0,0.0,0.0,0.0,0.0,0.9655106671566176,-7.387327885845399,1.0,0.0,0.0 -621,28.0,1.302099483266545,0.9,0.0,0.0,0.9696038427172486,-10.173709185230033,1.0,0.0,0.0 -621,29.0,5.75093938442724,1.9,0.0,0.0,0.962102392250675,-10.649187254119116,1.0,0.0,0.0 -622,0.0,0.0,0.0,160.26915085266677,0.0005389413265888,1.0,0.0,0.0,0.0,1.0 -622,1.0,11.77314949453501,12.7,6.660014735756468e-07,10.328932210635337,0.980407242267978,-3.6768440542431606,0.0,1.0,0.0 -622,2.0,1.302099483266545,1.2,0.0,0.0,0.9744388519702096,-4.822328928666349,1.0,0.0,0.0 -622,3.0,4.123315030344059,1.6,0.0,0.0,0.9678649152262112,-5.925949645305471,1.0,0.0,0.0 -622,4.0,51.10740471821189,19.0,-7.528257218684898e-10,24.08191222378809,0.9606027875271738,-8.850193077409989,0.0,1.0,0.0 -622,5.0,0.0,0.0,0.0,0.0,0.9675342644653532,-7.035615124963498,1.0,0.0,0.0 -622,6.0,12.369945091032177,10.9,0.0,0.0,0.9582295902015198,-8.051829434564166,1.0,0.0,0.0 -622,7.0,16.27624354083181,30.0,-5.442738647402947e-10,30.50088327076657,0.9665349673562774,-7.461003289931022,0.0,1.0,0.0 -622,8.0,0.0,0.0,0.0,0.0,1.0158406974945873,-8.832449409793034,1.0,0.0,0.0 -622,9.0,3.14674041789415,2.0,0.0,0.0,1.0069358514286726,-9.76594247331298,1.0,0.0,0.0 -622,10.0,0.0,0.0,-2.3534984342903522e-11,22.48300399101575,1.0599599569031624,-8.83244940979564,0.0,1.0,0.0 -622,11.0,6.076464255243876,7.5,0.0,0.0,1.0138278580948126,-9.301075287859522,1.0,0.0,0.0 -622,12.0,0.0,0.0,-7.026462795169796e-10,9.774122117377068,1.0271499355162077,-9.301075287913648,0.0,1.0,0.0 -622,13.0,3.363756998438575,1.6,0.0,0.0,1.0028402341541,-9.765442925678704,1.0,0.0,0.0 -622,14.0,4.448839901160695,2.5,0.0,0.0,0.9995438486988836,-9.792029351713191,1.0,0.0,0.0 -622,15.0,1.8988950797637116,1.8,0.0,0.0,1.0047082529456626,-9.605241594684175,1.0,0.0,0.0 -622,16.0,4.882873062249543,5.8,0.0,0.0,1.0018950012970445,-9.808961947780706,1.0,0.0,0.0 -622,17.0,1.7361326443553933,0.9,0.0,0.0,0.993003523039806,-10.12487907269456,1.0,0.0,0.0 -622,18.0,5.1541437879300736,3.4,0.0,0.0,0.9914208595851424,-10.225876976041109,1.0,0.0,0.0 -622,19.0,1.193591192994333,0.7,0.0,0.0,0.9946835246686018,-10.142382096159205,1.0,0.0,0.0 -622,20.0,9.494475398818556,11.2,0.0,0.0,0.9963985695596058,-9.937946830523789,1.0,0.0,0.0 -622,21.0,0.0,0.0,0.0,0.0,0.9967827376202342,-9.934723126617753,1.0,0.0,0.0 -622,22.0,1.7361326443553933,1.6,0.0,0.0,0.99112781970135,-9.967911570652944,1.0,0.0,0.0 -622,23.0,4.720110626841224,6.7,0.0,0.0,0.986604894070522,-10.057820598660063,1.0,0.0,0.0 -622,24.0,0.0,0.0,0.0,0.0,0.9802758697423508,-9.787768921521554,1.0,0.0,0.0 -622,25.0,1.8988950797637116,2.3,0.0,0.0,0.9662297570315316,-9.870315646680009,1.0,0.0,0.0 -622,26.0,0.0,0.0,0.0,0.0,0.9833735077976684,-9.541431291496254,1.0,0.0,0.0 -622,27.0,0.0,0.0,0.0,0.0,0.9655106671566176,-7.387327885845399,1.0,0.0,0.0 -622,28.0,1.302099483266545,0.9,0.0,0.0,0.9696038427172486,-10.173709185230033,1.0,0.0,0.0 -622,29.0,5.75093938442724,1.9,0.0,0.0,0.962102392250675,-10.649187254119116,1.0,0.0,0.0 -623,0.0,0.0,0.0,109.02873611977596,8.699091225139455e-07,1.0,0.0,0.0,0.0,1.0 -623,1.0,11.77314949453501,12.7,50.67439472654832,11.97480930171558,0.985641406599617,-2.238063491476971,0.0,1.0,0.0 -623,2.0,1.302099483266545,1.2,0.0,0.0,0.9819069475761444,-3.9162242569275287,1.0,0.0,0.0 -623,3.0,4.123315030344059,1.6,0.0,0.0,0.9769731910704132,-4.799199783075209,1.0,0.0,0.0 -623,4.0,51.10740471821189,19.0,0.0,0.0,0.9400000002476344,-7.346819885865362,0.0,1.0,0.0 -623,5.0,0.0,0.0,0.0,0.0,0.9716917757568038,-6.277770782448014,1.0,0.0,0.0 -623,6.0,12.369945091032177,10.9,0.0,0.0,0.9520992743926314,-7.009678328495507,1.0,0.0,0.0 -623,7.0,16.27624354083181,30.0,-5.240098695784553e-10,39.99999758552495,0.9741563949378592,-6.775935818843933,0.0,1.0,0.0 -623,8.0,0.0,0.0,0.0,0.0,1.0190479189807544,-9.666981848404417,1.0,0.0,0.0 -623,9.0,3.14674041789415,2.0,0.0,0.0,1.0122708273682397,-11.425455232435413,1.0,0.0,0.0 -623,10.0,0.0,0.0,6.914969338756371e-09,20.869807870514144,1.0599999949954853,-9.666981847641503,0.0,1.0,0.0 -623,11.0,6.076464255243876,7.5,0.0,0.0,1.00591876066616,-15.155309955123172,1.0,0.0,0.0 -623,12.0,0.0,0.0,-5.347680079353599e-09,23.999997671553945,1.0382799711991622,-15.155309955533884,0.0,1.0,0.0 -623,13.0,3.363756998438575,1.6,0.0,0.0,0.9956774555134174,-15.302559884017093,1.0,0.0,0.0 -623,14.0,4.448839901160695,2.5,0.0,0.0,0.9953968957092436,-15.029502306245538,1.0,0.0,0.0 -623,15.0,1.8988950797637116,1.8,0.0,0.0,1.0046899920317625,-13.67580125663712,1.0,0.0,0.0 -623,16.0,4.882873062249543,5.8,0.0,0.0,1.0044947393106471,-12.20926352416248,1.0,0.0,0.0 -623,17.0,1.7361326443553933,0.9,0.0,0.0,0.9920280293393277,-14.098356820423254,1.0,0.0,0.0 -623,18.0,5.1541437879300736,3.4,0.0,0.0,0.9924924761830172,-13.448022125539634,1.0,0.0,0.0 -623,19.0,1.193591192994333,0.7,0.0,0.0,0.996926692061121,-12.970747332436233,1.0,0.0,0.0 -623,20.0,9.494475398818556,11.2,0.0,0.0,0.9962670892465216,-11.55779647957991,1.0,0.0,0.0 -623,21.0,0.0,0.0,0.0,0.0,0.9949158731033702,-11.539811409374584,1.0,0.0,0.0 -623,22.0,1.7361326443553933,1.6,0.0,0.0,0.9903786361051308,-15.14033638211527,1.0,0.0,0.0 -623,23.0,4.720110626841224,6.7,0.0,0.0,0.9843507879452124,-11.32098324166399,1.0,0.0,0.0 -623,24.0,0.0,0.0,0.0,0.0,0.9828595125542174,-10.345067024121322,1.0,0.0,0.0 -623,25.0,1.8988950797637116,2.3,0.0,0.0,0.9688514132111762,-10.427173977900228,1.0,0.0,0.0 -623,26.0,0.0,0.0,0.0,0.0,0.9888012678610796,-9.657900065031589,1.0,0.0,0.0 -623,27.0,0.0,0.0,0.0,0.0,0.9700181165221352,-6.739288683822741,1.0,0.0,0.0 -623,28.0,1.302099483266545,0.9,0.0,0.0,0.982074927433162,-9.860244127955806,1.0,0.0,0.0 -623,29.0,5.75093938442724,1.9,0.0,0.0,0.9571474784820716,-11.388190888725422,1.0,0.0,0.0 -624,0.0,0.0,0.0,139.27303453124702,9.749286231652832e-05,1.0,0.0,0.0,0.0,1.0 -624,1.0,11.77314949453501,12.7,25.167133625534905,4.787128617273524,0.9734879917251904,-4.611824093288372,0.0,1.0,0.0 -624,2.0,1.302099483266545,1.2,0.0,0.0,1.0008006853211195,-0.1449699151283243,1.0,0.0,0.0 -624,3.0,4.123315030344059,1.6,0.0,0.0,0.94000269533277,-14.326301393297978,1.0,0.0,0.0 -624,4.0,51.10740471821189,19.0,-6.050809883681045e-09,32.90947073059402,0.955374131362358,-12.82101894575167,0.0,1.0,0.0 -624,5.0,0.0,0.0,0.0,0.0,0.9460050151943308,-13.741238496197203,1.0,0.0,0.0 -624,6.0,12.369945091032177,10.9,0.0,0.0,0.9426112194796608,-13.634583578450693,1.0,0.0,0.0 -624,7.0,16.27624354083181,30.0,-7.537706333424193e-09,38.71484136516153,0.948075825324877,-14.243270237312853,0.0,1.0,0.0 -624,8.0,0.0,0.0,0.0,0.0,0.9962121994201598,-15.915174379010631,1.0,0.0,0.0 -624,9.0,3.14674041789415,2.0,0.0,0.0,0.9867856748582022,-17.04193487967841,1.0,0.0,0.0 -624,10.0,0.0,0.0,-1.1628898547298098e-08,23.99671148251533,1.0440207875982337,-15.915174380343124,0.0,1.0,0.0 -624,11.0,6.076464255243876,7.5,0.0,0.0,0.995988652578344,-17.207551733669977,1.0,0.0,0.0 -624,12.0,0.0,0.0,-9.819793332335273e-09,16.16361864693714,1.0182129487181644,-17.20755173444669,0.0,1.0,0.0 -624,13.0,3.363756998438575,1.6,0.0,0.0,0.9876276225618944,-17.594214351092766,1.0,0.0,0.0 -624,14.0,4.448839901160695,2.5,0.0,0.0,0.9812121832964296,-17.54992156786839,1.0,0.0,0.0 -624,15.0,1.8988950797637116,1.8,0.0,0.0,0.9861667000077614,-17.24102021956856,1.0,0.0,0.0 -624,16.0,4.882873062249543,5.8,0.0,0.0,0.982022472027061,-17.202907783470362,1.0,0.0,0.0 -624,17.0,1.7361326443553933,0.9,0.0,0.0,0.977289559111032,-17.71887929374715,1.0,0.0,0.0 -624,18.0,5.1541437879300736,3.4,0.0,0.0,0.967528595421164,-17.74867700659193,1.0,0.0,0.0 -624,19.0,1.193591192994333,0.7,0.0,0.0,0.9717324431370108,-17.605536715085414,1.0,0.0,0.0 -624,20.0,9.494475398818556,11.2,0.0,0.0,0.9760888283772292,-17.23298097766746,1.0,0.0,0.0 -624,21.0,0.0,0.0,0.0,0.0,0.976498833925401,-17.233467296379462,1.0,0.0,0.0 -624,22.0,1.7361326443553933,1.6,0.0,0.0,0.9718840549374606,-17.557823844077014,1.0,0.0,0.0 -624,23.0,4.720110626841224,6.7,0.0,0.0,0.966253180365078,-17.415040922312862,1.0,0.0,0.0 -624,24.0,0.0,0.0,0.0,0.0,0.9597997670696616,-16.942541109463573,1.0,0.0,0.0 -624,25.0,1.8988950797637116,2.3,0.0,0.0,0.945444814919138,-17.028702316592565,1.0,0.0,0.0 -624,26.0,0.0,0.0,0.0,0.0,0.9629245750691262,-16.566663109810108,1.0,0.0,0.0 -624,27.0,0.0,0.0,0.0,0.0,0.944641899331002,-14.144029381413274,1.0,0.0,0.0 -624,28.0,1.302099483266545,0.9,0.0,0.0,0.9488446860106652,-17.22647523040996,1.0,0.0,0.0 -624,29.0,5.75093938442724,1.9,0.0,0.0,0.94117374215024,-17.723137287980503,1.0,0.0,0.0 -625,0.0,0.0,0.0,110.31447422902204,5.533107305666363e-07,1.0,0.0,0.0,0.0,1.0 -625,1.0,11.77314949453501,12.7,49.23884851596288,11.444063067702558,0.9853970053427342,-2.2740041578877026,0.0,1.0,0.0 -625,2.0,1.302099483266545,1.2,0.0,0.0,0.9820134968959618,-3.937246210850369,1.0,0.0,0.0 -625,3.0,4.123315030344059,1.6,0.0,0.0,0.9771058596591132,-4.825243519088666,1.0,0.0,0.0 -625,4.0,51.10740471821189,19.0,0.0,0.0,0.9400000001821734,-7.378716353983819,0.0,1.0,0.0 -625,5.0,0.0,0.0,0.0,0.0,0.9719452436991762,-6.306181831361633,1.0,0.0,0.0 -625,6.0,12.369945091032177,10.9,0.0,0.0,0.952251198498244,-7.039562508648992,1.0,0.0,0.0 -625,7.0,16.27624354083181,30.0,-7.21944829094644e-10,39.99999825756309,0.9744500168870004,-6.80955579427676,0.0,1.0,0.0 -625,8.0,0.0,0.0,0.0,0.0,1.0190932048042125,-9.61307006731847,1.0,0.0,0.0 -625,9.0,3.14674041789415,2.0,0.0,0.0,1.0121605177462625,-11.32950062201609,1.0,0.0,0.0 -625,10.0,0.0,0.0,4.8815231474372825e-09,20.846730311370557,1.0599999964939046,-9.613070066779926,0.0,1.0,0.0 -625,11.0,6.076464255243876,7.5,0.0,0.0,1.005023187794549,-14.11938886745932,1.0,0.0,0.0 -625,12.0,0.0,0.0,-5.530513797731122e-09,23.9999982953502,1.037411490714118,-14.119388867884814,0.0,1.0,0.0 -625,13.0,3.363756998438575,1.6,0.0,0.0,0.9944818886450496,-14.159502355688828,1.0,0.0,0.0 -625,14.0,4.448839901160695,2.5,0.0,0.0,0.9946770689761804,-13.77385116456893,1.0,0.0,0.0 -625,15.0,1.8988950797637116,1.8,0.0,0.0,1.0037589525962645,-13.047345391289406,1.0,0.0,0.0 -625,16.0,4.882873062249543,5.8,0.0,0.0,1.0043993846537895,-11.946988101310184,1.0,0.0,0.0 -625,17.0,1.7361326443553933,0.9,0.0,0.0,0.991671977758385,-13.253036175676872,1.0,0.0,0.0 -625,18.0,5.1541437879300736,3.4,0.0,0.0,0.9922482750077216,-12.84648494753124,1.0,0.0,0.0 -625,19.0,1.193591192994333,0.7,0.0,0.0,0.9966962200157812,-12.497131420437755,1.0,0.0,0.0 -625,20.0,9.494475398818556,11.2,0.0,0.0,1.0012922435538405,-11.566366527465243,1.0,0.0,0.0 -625,21.0,0.0,0.0,0.0,0.0,1.0015459395351118,-11.584443411943578,1.0,0.0,0.0 -625,22.0,1.7361326443553933,1.6,0.0,0.0,0.9893751748318728,-13.072074086164514,1.0,0.0,0.0 -625,23.0,4.720110626841224,6.7,0.0,0.0,0.9891863606925982,-11.982335375632278,1.0,0.0,0.0 -625,24.0,0.0,0.0,0.0,0.0,0.9869073763362256,-10.754211948014095,1.0,0.0,0.0 -625,25.0,1.8988950797637116,2.3,0.0,0.0,0.9729584156135482,-10.835636970257806,1.0,0.0,0.0 -625,26.0,0.0,0.0,0.0,0.0,0.9923153196540724,-9.911821359315816,1.0,0.0,0.0 -625,27.0,0.0,0.0,0.0,0.0,0.9704967393561096,-6.799629423306877,1.0,0.0,0.0 -625,28.0,1.302099483266545,0.9,0.0,0.0,0.978676935226611,-10.532600736150142,1.0,0.0,0.0 -625,29.0,5.75093938442724,1.9,0.0,0.0,0.9712472000179329,-10.999244454267638,1.0,0.0,0.0 -626,0.0,0.0,0.0,160.37595322725872,0.0005651209987078,1.0,0.0,0.0,0.0,1.0 -626,1.0,11.77314949453501,12.7,7.691637975018825e-07,9.898269143356435,0.980342706202053,-3.6721539861409687,0.0,1.0,0.0 -626,2.0,1.302099483266545,1.2,0.0,0.0,0.9746044751295408,-4.845388752614617,1.0,0.0,0.0 -626,3.0,4.123315030344059,1.6,0.0,0.0,0.9680723638921408,-5.954511441089191,1.0,0.0,0.0 -626,4.0,51.10740471821189,19.0,-7.47908514952435e-10,24.123965492329702,0.9606512334831362,-8.833912041850471,0.0,1.0,0.0 -626,5.0,0.0,0.0,0.0,0.0,0.9676214939443434,-7.00618249590184,1.0,0.0,0.0 -626,6.0,12.369945091032177,10.9,0.0,0.0,0.9583033109357526,-8.027726474663211,1.0,0.0,0.0 -626,7.0,16.27624354083181,30.0,-5.21413435921702e-10,30.779530156430035,0.966726450476272,-7.439373209373993,0.0,1.0,0.0 -626,8.0,0.0,0.0,0.0,0.0,1.0159421945108005,-9.41220112100786,1.0,0.0,0.0 -626,9.0,3.14674041789415,2.0,0.0,0.0,1.0074072403356398,-10.661587279642998,1.0,0.0,0.0 -626,10.0,0.0,0.0,1.9287075871397488e-10,22.431449294961283,1.059960273037294,-9.412201120986513,0.0,1.0,0.0 -626,11.0,6.076464255243876,7.5,0.0,0.0,1.017485374981601,-9.661088803757536,1.0,0.0,0.0 -626,12.0,0.0,0.0,-8.435534441844151e-10,10.550832956435414,1.0318012771481848,-9.66108880382199,0.0,1.0,0.0 -626,13.0,3.363756998438575,1.6,0.0,0.0,0.9873759588304662,-10.629483064700864,1.0,0.0,0.0 -626,14.0,4.448839901160695,2.5,0.0,0.0,0.9981461602229348,-10.444527212746742,1.0,0.0,0.0 -626,15.0,1.8988950797637116,1.8,0.0,0.0,1.0066259273144844,-10.187159670922076,1.0,0.0,0.0 -626,16.0,4.882873062249543,5.8,0.0,0.0,1.0029341180027105,-10.608330312522904,1.0,0.0,0.0 -626,17.0,1.7361326443553933,0.9,0.0,0.0,0.99223745313648,-10.86379414578441,1.0,0.0,0.0 -626,18.0,5.1541437879300736,3.4,0.0,0.0,0.9910358487908604,-11.016076209161016,1.0,0.0,0.0 -626,19.0,1.193591192994333,0.7,0.0,0.0,0.9944995273036232,-10.959510579878248,1.0,0.0,0.0 -626,20.0,9.494475398818556,11.2,0.0,0.0,0.9967717536273814,-10.796997697882995,1.0,0.0,0.0 -626,21.0,0.0,0.0,0.0,0.0,0.9971272135928972,-10.7820124154357,1.0,0.0,0.0 -626,22.0,1.7361326443553933,1.6,0.0,0.0,0.99043978644188,-10.635240888884637,1.0,0.0,0.0 -626,23.0,4.720110626841224,6.7,0.0,0.0,0.9868710711736864,-10.744417448920418,1.0,0.0,0.0 -626,24.0,0.0,0.0,0.0,0.0,0.9813389317904372,-10.213336403841632,1.0,0.0,0.0 -626,25.0,1.8988950797637116,2.3,0.0,0.0,0.96730848533338,-10.295701752803234,1.0,0.0,0.0 -626,26.0,0.0,0.0,0.0,0.0,0.984853777099772,-9.803969697961175,1.0,0.0,0.0 -626,27.0,0.0,0.0,0.0,0.0,0.9656088855079764,-7.393829888258046,1.0,0.0,0.0 -626,28.0,1.302099483266545,0.9,0.0,0.0,0.9711060240302802,-10.434322006386129,1.0,0.0,0.0 -626,29.0,5.75093938442724,1.9,0.0,0.0,0.963616543983176,-10.908320138890607,1.0,0.0,0.0 -627,0.0,0.0,0.0,160.30631302108603,0.002342007367595,1.0,0.0,0.0,0.0,1.0 -627,1.0,11.77314949453501,12.7,1.987877584474637e-06,9.582922822011824,0.9802425769368884,-3.671629380377328,0.0,1.0,0.0 -627,2.0,1.302099483266545,1.2,0.0,0.0,0.974907138793352,-4.838691913175327,1.0,0.0,0.0 -627,3.0,4.123315030344059,1.6,0.0,0.0,0.9684443464906296,-5.946054060515789,1.0,0.0,0.0 -627,4.0,51.10740471821189,19.0,7.906084755947826e-10,23.796518377023983,0.9602490196184305,-8.837031091907345,0.0,1.0,0.0 -627,5.0,0.0,0.0,0.0,0.0,0.9675940159439176,-7.022375202639608,1.0,0.0,0.0 -627,6.0,12.369945091032177,10.9,0.0,0.0,0.9581193477620878,-8.038863894369065,1.0,0.0,0.0 -627,7.0,16.27624354083181,30.0,5.80654683717154e-10,27.94830996939624,0.9657314957263512,-7.421275411131453,0.0,1.0,0.0 -627,8.0,0.0,0.0,0.0,0.0,1.01690486898981,-8.902974455141457,1.0,0.0,0.0 -627,9.0,3.14674041789415,2.0,0.0,0.0,1.0091113165433687,-9.877927787373038,1.0,0.0,0.0 -627,10.0,0.0,0.0,-1.5810722205321976e-10,21.95973014731385,1.0599958297506258,-8.902974455158937,0.0,1.0,0.0 -627,11.0,6.076464255243876,7.5,0.0,0.0,1.0200497046993078,-9.448296860619395,1.0,0.0,0.0 -627,12.0,0.0,0.0,6.801796120590715e-10,13.90363097681939,1.0387879688600945,-9.448296860567904,0.0,1.0,0.0 -627,13.0,3.363756998438575,1.6,0.0,0.0,1.008452873164554,-9.925248012336706,1.0,0.0,0.0 -627,14.0,4.448839901160695,2.5,0.0,0.0,1.004399089976184,-9.954184452209844,1.0,0.0,0.0 -627,15.0,1.8988950797637116,1.8,0.0,0.0,1.0092284720158642,-9.727758994258034,1.0,0.0,0.0 -627,16.0,4.882873062249543,5.8,0.0,0.0,1.004810847102458,-9.926470479335146,1.0,0.0,0.0 -627,17.0,1.7361326443553933,0.9,0.0,0.0,0.9969531661025836,-10.26634904675008,1.0,0.0,0.0 -627,18.0,5.1541437879300736,3.4,0.0,0.0,0.9948242835689745,-10.35589337635222,1.0,0.0,0.0 -627,19.0,1.193591192994333,0.7,0.0,0.0,0.997785228500536,-10.26722629850124,1.0,0.0,0.0 -627,20.0,9.494475398818556,11.2,0.0,0.0,0.9983653400427576,-10.086293061850526,1.0,0.0,0.0 -627,21.0,0.0,0.0,0.0,0.0,0.9986718504875692,-10.094914461310536,1.0,0.0,0.0 -627,22.0,1.7361326443553933,1.6,0.0,0.0,0.9941586887343926,-10.192967962374766,1.0,0.0,0.0 -627,23.0,4.720110626841224,6.7,0.0,0.0,0.9871991458993252,-10.37046578678462,1.0,0.0,0.0 -627,24.0,0.0,0.0,0.0,0.0,0.9755965324726652,-10.48512333273558,1.0,0.0,0.0 -627,25.0,1.8988950797637116,2.3,0.0,0.0,0.961481036553764,-10.56847563680865,1.0,0.0,0.0 -627,26.0,0.0,0.0,0.0,0.0,0.985444042278796,-8.961041902296936,1.0,0.0,0.0 -627,27.0,0.0,0.0,0.0,0.0,0.9659091214451256,-7.31114024871089,1.0,0.0,0.0 -627,28.0,1.302099483266545,0.9,0.0,0.0,0.9717050067546388,-9.590628838483074,1.0,0.0,0.0 -627,29.0,5.75093938442724,1.9,0.0,0.0,0.9642202890075516,-10.064038789291468,1.0,0.0,0.0 -628,0.0,0.0,0.0,160.27162291858508,0.0005581343784477,1.0,0.0,0.0,0.0,1.0 -628,1.0,11.77314949453501,12.7,6.923767571179176e-07,10.320340884516137,0.9804024678729322,-3.677007220297995,0.0,1.0,0.0 -628,2.0,1.302099483266545,1.2,0.0,0.0,0.974450907953138,-4.822051293129567,1.0,0.0,0.0 -628,3.0,4.123315030344059,1.6,0.0,0.0,0.9678797312822748,-5.925599292364431,1.0,0.0,0.0 -628,4.0,51.10740471821189,19.0,-7.708547799961834e-10,24.08630120058692,0.9605955034083,-8.85094935864187,0.0,1.0,0.0 -628,5.0,0.0,0.0,0.0,0.0,0.96751542302154,-7.036664263961934,1.0,0.0,0.0 -628,6.0,12.369945091032177,10.9,0.0,0.0,0.958215301788675,-8.052761795549593,1.0,0.0,0.0 -628,7.0,16.27624354083181,30.0,-5.498622937080732e-10,30.530007229123623,0.96652365319629,-7.462349851288765,0.0,1.0,0.0 -628,8.0,0.0,0.0,0.0,0.0,1.015752513748974,-8.838065923681883,1.0,0.0,0.0 -628,9.0,3.14674041789415,2.0,0.0,0.0,1.006762720761211,-9.774073987400207,1.0,0.0,0.0 -628,10.0,0.0,0.0,1.730917049589593e-11,22.53182308658621,1.0599672677748089,-8.838065923679967,0.0,1.0,0.0 -628,11.0,6.076464255243876,7.5,0.0,0.0,1.0140107810147851,-9.28846566144317,1.0,0.0,0.0 -628,12.0,0.0,0.0,-7.476793388136704e-10,9.716137473663474,1.027252503393839,-9.288465661500744,0.0,1.0,0.0 -628,13.0,3.363756998438575,1.6,0.0,0.0,1.0058016189137424,-9.661393386814623,1.0,0.0,0.0 -628,14.0,4.448839901160695,2.5,0.0,0.0,0.9986011736338564,-9.817604675444306,1.0,0.0,0.0 -628,15.0,1.8988950797637116,1.8,0.0,0.0,1.0047232557978711,-9.6007523299646,1.0,0.0,0.0 -628,16.0,4.882873062249543,5.8,0.0,0.0,1.0017846793659582,-9.813407390331168,1.0,0.0,0.0 -628,17.0,1.7361326443553933,0.9,0.0,0.0,0.9923275790145568,-10.144891398254993,1.0,0.0,0.0 -628,18.0,5.1541437879300736,3.4,0.0,0.0,0.990904137724697,-10.242394498556369,1.0,0.0,0.0 -628,19.0,1.193591192994333,0.7,0.0,0.0,0.9942530574556754,-10.156937307304206,1.0,0.0,0.0 -628,20.0,9.494475398818556,11.2,0.0,0.0,0.9961868674855152,-9.94707255263117,1.0,0.0,0.0 -628,21.0,0.0,0.0,0.0,0.0,0.9965594539393606,-9.944131349234128,1.0,0.0,0.0 -628,22.0,1.7361326443553933,1.6,0.0,0.0,0.990421501098486,-9.98800597618382,1.0,0.0,0.0 -628,23.0,4.720110626841224,6.7,0.0,0.0,0.9862172375219302,-10.070128041258156,1.0,0.0,0.0 -628,24.0,0.0,0.0,0.0,0.0,0.9800305497769084,-9.797737894897956,1.0,0.0,0.0 -628,25.0,1.8988950797637116,2.3,0.0,0.0,0.965980816764208,-9.880326561319894,1.0,0.0,0.0 -628,26.0,0.0,0.0,0.0,0.0,0.9832176962499274,-9.549755738126184,1.0,0.0,0.0 -628,27.0,0.0,0.0,0.0,0.0,0.9654748856768244,-7.388967183940964,1.0,0.0,0.0 -628,28.0,1.302099483266545,0.9,0.0,0.0,0.9694457205565824,-10.18223683264781,1.0,0.0,0.0 -628,29.0,5.75093938442724,1.9,0.0,0.0,0.9619430078034862,-10.657871086230632,1.0,0.0,0.0 -629,0.0,0.0,0.0,161.81038451623112,0.0004456735279489,1.0,0.0,0.0,0.0,1.0 -629,1.0,11.77314949453501,12.7,8.672759431230622e-07,10.372491696680726,0.9782773624368024,-4.182234292420415,0.0,1.0,0.0 -629,2.0,1.302099483266545,1.2,0.0,0.0,0.9784864945201692,-3.523747162209599,1.0,0.0,0.0 -629,3.0,4.123315030344059,1.6,0.0,0.0,0.972739809272786,-4.312796241880215,1.0,0.0,0.0 -629,4.0,51.10740471821189,19.0,6.077274215858385e-10,26.35124603753323,0.9584947770428648,-10.696520257030215,0.0,1.0,0.0 -629,5.0,0.0,0.0,0.0,0.0,0.9602117590740192,-10.15984474025401,1.0,0.0,0.0 -629,6.0,12.369945091032177,10.9,0.0,0.0,0.9527686176132976,-10.655004622779964,1.0,0.0,0.0 -629,7.0,16.27624354083181,30.0,5.32446836830414e-10,27.621934647268603,0.9581401100223408,-10.561983642098143,0.0,1.0,0.0 -629,8.0,0.0,0.0,0.0,0.0,1.0079833111385958,-11.489298997307394,1.0,0.0,0.0 -629,9.0,3.14674041789415,2.0,0.0,0.0,0.9970778267177516,-12.181565713934244,1.0,0.0,0.0 -629,10.0,0.0,0.0,9.426559508954663e-10,23.94183132416785,1.0551781920864292,-11.489298997201772,0.0,1.0,0.0 -629,11.0,6.076464255243876,7.5,0.0,0.0,1.034265363280562,-8.838488626873053,1.0,0.0,0.0 -629,12.0,0.0,0.0,4.788085484221652e-11,15.297988640718664,1.0545742082433842,-8.838488626869534,0.0,1.0,0.0 -629,13.0,3.363756998438575,1.6,0.0,0.0,1.020494261054426,-9.663004454835445,1.0,0.0,0.0 -629,14.0,4.448839901160695,2.5,0.0,0.0,1.0117573047076092,-9.99814937575388,1.0,0.0,0.0 -629,15.0,1.8988950797637116,1.8,0.0,0.0,0.9838048957451548,-12.531104626953262,1.0,0.0,0.0 -629,16.0,4.882873062249543,5.8,0.0,0.0,0.9883385111576198,-12.371510343581509,1.0,0.0,0.0 -629,17.0,1.7361326443553933,0.9,0.0,0.0,0.9971216279653908,-11.090887620797297,1.0,0.0,0.0 -629,18.0,5.1541437879300736,3.4,0.0,0.0,0.9908587033713312,-11.65341633212177,1.0,0.0,0.0 -629,19.0,1.193591192994333,0.7,0.0,0.0,0.9916640479701936,-11.813966527369816,1.0,0.0,0.0 -629,20.0,9.494475398818556,11.2,0.0,0.0,0.9874744596109722,-12.253757870025064,1.0,0.0,0.0 -629,21.0,0.0,0.0,0.0,0.0,0.988201198531188,-12.217782709063076,1.0,0.0,0.0 -629,22.0,1.7361326443553933,1.6,0.0,0.0,0.9965245599415226,-10.875424500923764,1.0,0.0,0.0 -629,23.0,4.720110626841224,6.7,0.0,0.0,0.983277066349178,-11.934264417364496,1.0,0.0,0.0 -629,24.0,0.0,0.0,0.0,0.0,0.9736630982194858,-12.106550133110558,1.0,0.0,0.0 -629,25.0,1.8988950797637116,2.3,0.0,0.0,0.959518730618967,-12.190238755285629,1.0,0.0,0.0 -629,26.0,0.0,0.0,0.0,0.0,0.9749364750520396,-12.139425385889483,1.0,0.0,0.0 -629,27.0,0.0,0.0,0.0,0.0,0.9581532276599388,-10.448380873133203,1.0,0.0,0.0 -629,28.0,1.302099483266545,0.9,0.0,0.0,0.9610405343916124,-12.782849719165888,1.0,0.0,0.0 -629,29.0,5.75093938442724,1.9,0.0,0.0,0.9534700966853986,-13.266898521548468,1.0,0.0,0.0 -630,0.0,0.0,0.0,160.5489896156406,0.0019585295714996,1.0,0.0,0.0,0.0,1.0 -630,1.0,11.77314949453501,12.7,2.071557106248831e-06,10.714113470286208,0.9804240450916484,-3.683255582873642,0.0,1.0,0.0 -630,2.0,1.302099483266545,1.2,0.0,0.0,0.9742786919899796,-4.832051195383556,1.0,0.0,0.0 -630,3.0,4.123315030344059,1.6,0.0,0.0,0.9676689650575035,-5.938098364707236,1.0,0.0,0.0 -630,4.0,51.10740471821189,19.0,-1.875428637835078e-10,24.49442125031256,0.9607787948986084,-8.863005391774644,0.0,1.0,0.0 -630,5.0,0.0,0.0,0.0,0.0,0.967022113151415,-7.037906655146834,1.0,0.0,0.0 -630,6.0,12.369945091032177,10.9,0.0,0.0,0.9579978173319283,-8.058219054306145,1.0,0.0,0.0 -630,7.0,16.27624354083181,30.0,1.895351218176061e-09,30.37259908059484,0.9563192655243404,-10.082671372755176,0.0,1.0,0.0 -630,8.0,0.0,0.0,0.0,0.0,1.0158688132026712,-8.870012784332598,1.0,0.0,0.0 -630,9.0,3.14674041789415,2.0,0.0,0.0,1.0072647382531266,-9.821011272705311,1.0,0.0,0.0 -630,10.0,0.0,0.0,1.896045951460368e-09,22.48982420033163,1.0599997974257749,-8.870012784122753,0.0,1.0,0.0 -630,11.0,6.076464255243876,7.5,0.0,0.0,1.015267918291305,-9.362005381519126,1.0,0.0,0.0 -630,12.0,0.0,0.0,-7.436820466245311e-11,10.919681985928824,1.0301086391620051,-9.36200538152483,0.0,1.0,0.0 -630,13.0,3.363756998438575,1.6,0.0,0.0,1.0041129237888724,-9.832605727457532,1.0,0.0,0.0 -630,14.0,4.448839901160695,2.5,0.0,0.0,1.0005931057870956,-9.86240647059685,1.0,0.0,0.0 -630,15.0,1.8988950797637116,1.8,0.0,0.0,1.0056769603863185,-9.661065209749626,1.0,0.0,0.0 -630,16.0,4.882873062249543,5.8,0.0,0.0,1.0024255266692588,-9.864927640209183,1.0,0.0,0.0 -630,17.0,1.7361326443553933,0.9,0.0,0.0,0.9938071272353992,-10.189221330985491,1.0,0.0,0.0 -630,18.0,5.1541437879300736,3.4,0.0,0.0,0.992076872252441,-10.286811572077251,1.0,0.0,0.0 -630,19.0,1.193591192994333,0.7,0.0,0.0,0.995259100637314,-10.20168395384036,1.0,0.0,0.0 -630,20.0,9.494475398818556,11.2,0.0,0.0,0.9966662282959228,-10.007779089364336,1.0,0.0,0.0 -630,21.0,0.0,0.0,0.0,0.0,0.9970283379658982,-10.00931244165958,1.0,0.0,0.0 -630,22.0,1.7361326443553933,1.6,0.0,0.0,0.991656743431942,-10.066238506438628,1.0,0.0,0.0 -630,23.0,4.720110626841224,6.7,0.0,0.0,0.986443137555113,-10.19449308336627,1.0,0.0,0.0 -630,24.0,0.0,0.0,0.0,0.0,0.9785674770735244,-10.08454274333573,1.0,0.0,0.0 -630,25.0,1.8988950797637116,2.3,0.0,0.0,0.9644961134218196,-10.167382213568237,1.0,0.0,0.0 -630,26.0,0.0,0.0,0.0,0.0,0.9807708041743328,-9.93947909181697,1.0,0.0,0.0 -630,27.0,0.0,0.0,0.0,0.0,0.9629293805544268,-7.964604408253916,1.0,0.0,0.0 -630,28.0,1.302099483266545,0.9,0.0,0.0,0.9669624373323378,-10.575164245580428,1.0,0.0,0.0 -630,29.0,5.75093938442724,1.9,0.0,0.0,0.959439843850031,-11.053261508955725,1.0,0.0,0.0 -631,0.0,0.0,0.0,164.3677066519588,0.0014952793871536,1.0,0.0,0.0,0.0,1.0 -631,1.0,11.77314949453501,12.7,5.195337521830649e-06,-0.0350697869942138,0.9805579673566878,-3.4020267944482807,0.0,1.0,0.0 -631,2.0,1.302099483266545,1.2,0.0,0.0,0.9739749335492792,-6.009670397910593,1.0,0.0,0.0 -631,3.0,4.123315030344059,1.6,0.0,0.0,0.9675273224901476,-7.40075903443338,1.0,0.0,0.0 -631,4.0,51.10740471821189,19.0,1.8151266099885033e-09,33.472254223100975,0.9400047365639876,-16.751886637811882,0.0,1.0,0.0 -631,5.0,0.0,0.0,0.0,0.0,0.9665386846705638,-9.113748089586649,1.0,0.0,0.0 -631,6.0,12.369945091032177,10.9,0.0,0.0,0.9486731511291158,-12.48451471957408,1.0,0.0,0.0 -631,7.0,16.27624354083181,30.0,5.9146428455518626e-09,35.79029050014789,0.9675951863306624,-9.570750955525629,0.0,1.0,0.0 -631,8.0,0.0,0.0,0.0,0.0,1.019820215092752,-10.71592672341309,1.0,0.0,0.0 -631,9.0,3.14674041789415,2.0,0.0,0.0,1.015580200529712,-11.54037769370034,1.0,0.0,0.0 -631,10.0,0.0,0.0,6.850359272514021e-09,20.45625491514316,1.0599622214423727,-10.71592672265785,0.0,1.0,0.0 -631,11.0,6.076464255243876,7.5,0.0,0.0,1.0276732449081918,-11.182128022446555,1.0,0.0,0.0 -631,12.0,0.0,0.0,4.397055149826239e-09,22.565896059062236,1.0575464063073206,-11.182128022122024,0.0,1.0,0.0 -631,13.0,3.363756998438575,1.6,0.0,0.0,1.016042476342566,-11.633202969770691,1.0,0.0,0.0 -631,14.0,4.448839901160695,2.5,0.0,0.0,1.0120323367883812,-11.640388052792872,1.0,0.0,0.0 -631,15.0,1.8988950797637116,1.8,0.0,0.0,1.006022759900879,-11.528392151551088,1.0,0.0,0.0 -631,16.0,4.882873062249543,5.8,0.0,0.0,0.9921823323031372,-11.892926641837729,1.0,0.0,0.0 -631,17.0,1.7361326443553933,0.9,0.0,0.0,1.004243892810735,-11.939207236538564,1.0,0.0,0.0 -631,18.0,5.1541437879300736,3.4,0.0,0.0,1.0018951328669878,-12.022207661036203,1.0,0.0,0.0 -631,19.0,1.193591192994333,0.7,0.0,0.0,1.00471147167887,-11.931966082793704,1.0,0.0,0.0 -631,20.0,9.494475398818556,11.2,0.0,0.0,1.0050981904366654,-11.719735914457708,1.0,0.0,0.0 -631,21.0,0.0,0.0,0.0,0.0,1.0054664730581158,-11.719863436098896,1.0,0.0,0.0 -631,22.0,1.7361326443553933,1.6,0.0,0.0,1.0019481726084565,-11.805023428553488,1.0,0.0,0.0 -631,23.0,4.720110626841224,6.7,0.0,0.0,0.995126946260664,-11.884105965123572,1.0,0.0,0.0 -631,24.0,0.0,0.0,0.0,0.0,0.9853065958713324,-11.666793730772495,1.0,0.0,0.0 -631,25.0,1.8988950797637116,2.3,0.0,0.0,0.9713343086945893,-11.748487409014714,1.0,0.0,0.0 -631,26.0,0.0,0.0,0.0,0.0,0.9862156394582048,-11.45793098339536,1.0,0.0,0.0 -631,27.0,0.0,0.0,0.0,0.0,0.9654405411883492,-9.460113213674212,1.0,0.0,0.0 -631,28.0,1.302099483266545,0.9,0.0,0.0,0.972487982432936,-12.086519532855828,1.0,0.0,0.0 -631,29.0,5.75093938442724,1.9,0.0,0.0,0.9650094805942764,-12.559162280283966,1.0,0.0,0.0 -632,0.0,0.0,0.0,164.4552695567149,0.0006974528660386,1.0,0.0,0.0,0.0,1.0 -632,1.0,12.065052826246053,12.7,9.054021560292488e-07,10.55548571815821,0.9799862115335066,-3.77501003529542,0.0,1.0,0.0 -632,2.0,1.3343837227184574,1.2,0.0,0.0,0.973970932322882,-4.953512450745624,1.0,0.0,0.0 -632,3.0,4.225548455275115,1.6,0.0,0.0,0.9673121664325208,-6.088356363197805,1.0,0.0,0.0 -632,4.0,52.374561116699454,19.0,-3.389243570064544e-10,24.32956724557549,0.9598244984456424,-9.087283921622245,0.0,1.0,0.0 -632,5.0,0.0,0.0,0.0,0.0,0.9669182058854932,-7.224925972083106,1.0,0.0,0.0 -632,6.0,12.676645365825346,10.9,0.0,0.0,0.9574910323312924,-8.270179430234785,1.0,0.0,0.0 -632,7.0,16.67979653398072,30.0,8.449632926955473e-11,30.663314473980837,0.9658983956268063,-7.662643719731067,0.0,1.0,0.0 -632,8.0,0.0,0.0,0.0,0.0,1.0158538226091556,-9.049551513529993,1.0,0.0,0.0 -632,9.0,3.224760663236272,2.0,0.0,0.0,1.0073012843896425,-9.996531845366505,1.0,0.0,0.0 -632,10.0,0.0,0.0,9.997314394498734e-10,22.48283228355762,1.059972234060969,-9.049551513419342,0.0,1.0,0.0 -632,11.0,6.227124039352801,7.5,0.0,0.0,1.0139832971699767,-9.560899900626874,1.0,0.0,0.0 -632,12.0,0.0,0.0,1.7432036243741043e-10,10.546111082338836,1.0283409434442017,-9.560899900613464,0.0,1.0,0.0 -632,13.0,3.4471579503560155,1.6,0.0,0.0,1.002602703475852,-10.04412260929383,1.0,0.0,0.0 -632,14.0,4.559144385954729,2.5,0.0,0.0,0.9989809469145564,-10.070935012630075,1.0,0.0,0.0 -632,15.0,1.9459762622977503,1.8,0.0,0.0,1.004932695331665,-9.858433483752508,1.0,0.0,0.0 -632,16.0,5.003938960194216,5.8,0.0,0.0,1.002184583787418,-10.050410985789664,1.0,0.0,0.0 -632,17.0,1.7791782969579435,0.9,0.0,0.0,0.9926680558150676,-10.399003973695583,1.0,0.0,0.0 -632,18.0,5.281935569093894,3.4,0.0,0.0,0.9912482155827084,-10.493805417609318,1.0,0.0,0.0 -632,19.0,1.223185079158586,0.7,0.0,0.0,0.9946416800827844,-10.401974987517727,1.0,0.0,0.0 -632,20.0,9.729881311488752,11.2,0.0,0.0,0.9922752423306924,-10.259594796445294,1.0,0.0,0.0 -632,21.0,0.0,0.0,0.0,0.0,0.9912644862191436,-10.28055869961767,1.0,0.0,0.0 -632,22.0,1.7791782969579435,1.6,0.0,0.0,0.9891458032958106,-10.274851675937423,1.0,0.0,0.0 -632,23.0,4.837140994854408,6.7,0.0,0.0,0.9828078714923904,-10.39636174564646,1.0,0.0,0.0 -632,24.0,0.0,0.0,0.0,0.0,0.9776019029040508,-10.111437255085384,1.0,0.0,0.0 -632,25.0,1.9459762622977503,2.3,0.0,0.0,0.9633897647775602,-10.205337809511304,1.0,0.0,0.0 -632,26.0,0.0,0.0,0.0,0.0,0.981467829439213,-9.848372627056056,1.0,0.0,0.0 -632,27.0,0.0,0.0,0.0,0.0,0.9646931506513196,-7.589539231129148,1.0,0.0,0.0 -632,28.0,1.3343837227184574,0.9,0.0,0.0,0.9674709124970672,-10.503706869312053,1.0,0.0,0.0 -632,29.0,5.893528108673187,1.9,0.0,0.0,0.9598247540137396,-10.995137793030908,1.0,0.0,0.0 -633,0.0,0.0,0.0,164.41264329268915,0.0006586635161731,1.0,0.0,0.0,0.0,1.0 -633,1.0,12.065052826246053,12.7,8.291932560514501e-07,10.745804854159305,0.980013697180047,-3.774752944843076,0.0,1.0,0.0 -633,2.0,1.3343837227184574,1.2,0.0,0.0,0.973907621975614,-4.950362604969287,1.0,0.0,0.0 -633,3.0,4.225548455275115,1.6,0.0,0.0,0.967233660424836,-6.084475591039174,1.0,0.0,0.0 -633,4.0,52.374561116699454,19.0,-4.0296361057257677e-10,24.32629670836633,0.9597942893568387,-9.086206775369355,0.0,1.0,0.0 -633,5.0,0.0,0.0,0.0,0.0,0.9668382141516996,-7.222477163599969,1.0,0.0,0.0 -633,6.0,12.676645365825346,10.9,0.0,0.0,0.9574309895973286,-8.26829999147253,1.0,0.0,0.0 -633,7.0,16.67979653398072,30.0,-2.3660556198844652e-11,30.62391121700876,0.9658319745730816,-7.659437312462828,0.0,1.0,0.0 -633,8.0,0.0,0.0,0.0,0.0,1.015417381763537,-9.065332205104651,1.0,0.0,0.0 -633,9.0,3.224760663236272,2.0,0.0,0.0,1.0064504190297945,-10.02250073315707,1.0,0.0,0.0 -633,10.0,0.0,0.0,9.605196948375236e-10,22.70947844362837,1.0599802092127668,-9.065332204998295,0.0,1.0,0.0 -633,11.0,6.227124039352801,7.5,0.0,0.0,1.0135914586112469,-9.546933297015862,1.0,0.0,0.0 -633,12.0,0.0,0.0,-6.010978317014905e-11,10.076603755454173,1.0273234965765488,-9.546933297020493,0.0,1.0,0.0 -633,13.0,3.4471579503560155,1.6,0.0,0.0,1.0024531414146405,-10.026445443765006,1.0,0.0,0.0 -633,14.0,4.559144385954729,2.5,0.0,0.0,0.9990950687222802,-10.054882394116996,1.0,0.0,0.0 -633,15.0,1.9459762622977503,1.8,0.0,0.0,1.004311947490331,-9.860742271067837,1.0,0.0,0.0 -633,16.0,5.003938960194216,5.8,0.0,0.0,1.0014107163160948,-10.069438033584868,1.0,0.0,0.0 -633,17.0,1.7791782969579435,0.9,0.0,0.0,0.992436104288768,-10.397761768477684,1.0,0.0,0.0 -633,18.0,5.281935569093894,3.4,0.0,0.0,0.990812615335106,-10.501413293507714,1.0,0.0,0.0 -633,19.0,1.223185079158586,0.7,0.0,0.0,0.9941001539646964,-10.414092202802252,1.0,0.0,0.0 -633,20.0,9.729881311488752,11.2,0.0,0.0,0.9958273711141064,-10.203543565396776,1.0,0.0,0.0 -633,21.0,0.0,0.0,0.0,0.0,0.9962128732689172,-10.19992410421941,1.0,0.0,0.0 -633,22.0,1.7791782969579435,1.6,0.0,0.0,0.9905522866142342,-10.237802552737843,1.0,0.0,0.0 -633,23.0,4.837140994854408,6.7,0.0,0.0,0.9859229743065252,-10.330318678489585,1.0,0.0,0.0 -633,24.0,0.0,0.0,0.0,0.0,0.9795244142708712,-10.053830672239949,1.0,0.0,0.0 -633,25.0,1.9459762622977503,2.3,0.0,0.0,0.9653410083480488,-10.147357498939314,1.0,0.0,0.0 -633,26.0,0.0,0.0,0.0,0.0,0.9826377630816104,-9.79758080946141,1.0,0.0,0.0 -633,27.0,0.0,0.0,0.0,0.0,0.9647759765904214,-7.584037056827171,1.0,0.0,0.0 -633,28.0,1.3343837227184574,0.9,0.0,0.0,0.9686585209114208,-10.451333389108626,1.0,0.0,0.0 -633,29.0,5.893528108673187,1.9,0.0,0.0,0.9610220422670596,-10.941551563793745,1.0,0.0,0.0 -634,0.0,0.0,0.0,164.9419527479614,0.00151290371182,1.0,0.0,0.0,0.0,1.0 -634,1.0,12.065052826246053,12.7,1.6159461891214514e-06,8.987407323255653,0.978921824453053,-3.962975777329184,0.0,1.0,0.0 -634,2.0,1.3343837227184574,1.2,0.0,0.0,0.976183046361335,-4.457172901225716,1.0,0.0,0.0 -634,3.0,4.225548455275115,1.6,0.0,0.0,0.9699715143688622,-5.471080455024018,1.0,0.0,0.0 -634,4.0,52.374561116699454,19.0,-3.35301721616024e-09,37.05598757241218,0.9586270044496178,-12.188277826774891,0.0,1.0,0.0 -634,5.0,0.0,0.0,0.0,0.0,0.9700042715875222,-6.296348020526652,1.0,0.0,0.0 -634,6.0,12.676645365825346,10.9,0.0,0.0,0.9400249554889276,-12.830819318577031,1.0,0.0,0.0 -634,7.0,16.67979653398072,30.0,-1.1925418955863999e-09,24.964566668717357,0.9667126677919908,-6.691319475309496,0.0,1.0,0.0 -634,8.0,0.0,0.0,0.0,0.0,1.018796216556815,-8.19162477556942,1.0,0.0,0.0 -634,9.0,3.224760663236272,2.0,0.0,0.0,1.0117123643612482,-9.174100434521264,1.0,0.0,0.0 -634,10.0,0.0,0.0,-1.2096668557646294e-09,20.99107890648992,1.0599867722037732,-8.191624775702914,0.0,1.0,0.0 -634,11.0,6.227124039352801,7.5,0.0,0.0,1.0186902114720675,-8.814391260148117,1.0,0.0,0.0 -634,12.0,0.0,0.0,-1.0190190978042184e-09,10.53874631754978,1.0329734869204583,-8.814391260225797,0.0,1.0,0.0 -634,13.0,3.4471579503560155,1.6,0.0,0.0,1.0078887981350253,-9.284169875275612,1.0,0.0,0.0 -634,14.0,4.559144385954729,2.5,0.0,0.0,1.0048502038810532,-9.313839463407543,1.0,0.0,0.0 -634,15.0,1.9459762622977503,1.8,0.0,0.0,1.0095885538372664,-9.077685676040462,1.0,0.0,0.0 -634,16.0,5.003938960194216,5.8,0.0,0.0,1.0066765281825762,-9.240380205841356,1.0,0.0,0.0 -634,17.0,1.7791782969579435,0.9,0.0,0.0,0.9980778873947114,-9.614956616299631,1.0,0.0,0.0 -634,18.0,5.281935569093894,3.4,0.0,0.0,0.9963723177412492,-9.694817235356693,1.0,0.0,0.0 -634,19.0,1.223185079158586,0.7,0.0,0.0,0.9995943260119148,-9.59653060367619,1.0,0.0,0.0 -634,20.0,9.729881311488752,11.2,0.0,0.0,1.0017978194183432,-9.379307295060595,1.0,0.0,0.0 -634,21.0,0.0,0.0,0.0,0.0,1.002383660421103,-9.38440026257268,1.0,0.0,0.0 -634,22.0,1.7791782969579435,1.6,0.0,0.0,0.9975928423229292,-9.520509285245025,1.0,0.0,0.0 -634,23.0,4.837140994854408,6.7,0.0,0.0,0.9946358583137096,-9.646232643562248,1.0,0.0,0.0 -634,24.0,0.0,0.0,0.0,0.0,0.9687026856967615,-8.887292204539692,1.0,0.0,0.0 -634,25.0,1.9459762622977503,2.3,0.0,0.0,0.9543559930617388,-8.982952413718344,1.0,0.0,0.0 -634,26.0,0.0,0.0,0.0,0.0,0.9759650616084566,-8.79281901523361,1.0,0.0,0.0 -634,27.0,0.0,0.0,0.0,0.0,0.9664493118703276,-6.623771650350145,1.0,0.0,0.0 -634,28.0,1.3343837227184574,0.9,0.0,0.0,0.9618843907871388,-9.45567055223052,1.0,0.0,0.0 -634,29.0,5.893528108673187,1.9,0.0,0.0,0.9541923618231992,-9.95286724034056,1.0,0.0,0.0 -635,0.0,0.0,0.0,164.59900499082138,0.0005818724036821,1.0,0.0,0.0,0.0,1.0 -635,1.0,12.065052826246053,12.7,9.13372106636244e-07,9.071117206058638,0.9797849919895852,-3.769748115357609,0.0,1.0,0.0 -635,2.0,1.3343837227184574,1.2,0.0,0.0,0.9745131391572144,-4.980126789919259,1.0,0.0,0.0 -635,3.0,4.225548455275115,1.6,0.0,0.0,0.9679844912955868,-6.121138110302339,1.0,0.0,0.0 -635,4.0,52.374561116699454,19.0,-2.5060637482792163e-10,24.165665574192204,0.959906422769174,-9.0753942125987,0.0,1.0,0.0 -635,5.0,0.0,0.0,0.0,0.0,0.967622617394826,-7.216499398917379,1.0,0.0,0.0 -635,6.0,12.676645365825346,10.9,0.0,0.0,0.9579448955187236,-8.260366137442238,1.0,0.0,0.0 -635,7.0,16.67979653398072,30.0,1.7036082434807779e-10,29.37066449226252,0.9661673140572058,-7.644815147704572,0.0,1.0,0.0 -635,8.0,0.0,0.0,0.0,0.0,1.0173614026763376,-8.926714561223475,1.0,0.0,0.0 -635,9.0,3.224760663236272,2.0,0.0,0.0,1.0119769409162502,-9.810871556445822,1.0,0.0,0.0 -635,10.0,0.0,0.0,9.491766899657386e-10,19.7132129362643,1.0561837048197211,-8.926714561118198,0.0,1.0,0.0 -635,11.0,6.227124039352801,7.5,0.0,0.0,1.0181207140578046,-9.83479413868951,1.0,0.0,0.0 -635,12.0,0.0,0.0,5.871967939028245e-10,16.21544752209683,1.0399502454514726,-9.834794138645025,0.0,1.0,0.0 -635,13.0,3.4471579503560155,1.6,0.0,0.0,1.004250697031696,-10.385146666310108,1.0,0.0,0.0 -635,14.0,4.559144385954729,2.5,0.0,0.0,0.9977177136349648,-10.424342990133484,1.0,0.0,0.0 -635,15.0,1.9459762622977503,1.8,0.0,0.0,1.0096311562672378,-9.93532762378094,1.0,0.0,0.0 -635,16.0,5.003938960194216,5.8,0.0,0.0,1.0067883911957205,-9.945635047368858,1.0,0.0,0.0 -635,17.0,1.7791782969579435,0.9,0.0,0.0,0.977123615602066,-11.172925596151437,1.0,0.0,0.0 -635,18.0,5.281935569093894,3.4,0.0,0.0,0.967329638580115,-11.523583904190913,1.0,0.0,0.0 -635,19.0,1.223185079158586,0.7,0.0,0.0,0.9664065576201109,-11.55997570261183,1.0,0.0,0.0 -635,20.0,9.729881311488752,11.2,0.0,0.0,1.0009388194044186,-10.026598424934122,1.0,0.0,0.0 -635,21.0,0.0,0.0,0.0,0.0,1.0011691490244246,-10.034602808369424,1.0,0.0,0.0 -635,22.0,1.7791782969579435,1.6,0.0,0.0,0.9909272408848712,-10.440391207334576,1.0,0.0,0.0 -635,23.0,4.837140994854408,6.7,0.0,0.0,0.9886072434685472,-10.307155709034223,1.0,0.0,0.0 -635,24.0,0.0,0.0,0.0,0.0,0.981514011724635,-10.02596886078797,1.0,0.0,0.0 -635,25.0,1.9459762622977503,2.3,0.0,0.0,0.9673602167289336,-10.119111275567764,1.0,0.0,0.0 -635,26.0,0.0,0.0,0.0,0.0,0.984179483171293,-9.767857017159676,1.0,0.0,0.0 -635,27.0,0.0,0.0,0.0,0.0,0.9655584317864472,-7.575422386106214,1.0,0.0,0.0 -635,28.0,1.3343837227184574,0.9,0.0,0.0,0.970223462519254,-10.419534082477272,1.0,0.0,0.0 -635,29.0,5.893528108673187,1.9,0.0,0.0,0.9625997013035258,-10.908161047843231,1.0,0.0,0.0 -636,0.0,0.0,0.0,168.7343881742724,0.0006901354006494,1.0,0.0,0.0,0.0,1.0 -636,1.0,12.065052826246053,12.7,2.0096100981457598e-06,1.4213930623173638,0.9803875241485676,-3.5015899894664533,0.0,1.0,0.0 -636,2.0,1.3343837227184574,1.2,0.0,0.0,0.97277131740477,-6.159469072596775,1.0,0.0,0.0 -636,3.0,4.225548455275115,1.6,0.0,0.0,0.9660866875631248,-7.587064131291055,1.0,0.0,0.0 -636,4.0,52.374561116699454,19.0,-3.322433753992134e-09,34.76259593022512,0.9400010353684106,-17.25688817418439,0.0,1.0,0.0 -636,5.0,0.0,0.0,0.0,0.0,0.9654050436564682,-9.371840236677702,1.0,0.0,0.0 -636,6.0,12.676645365825346,10.9,0.0,0.0,0.9478660139081138,-12.852786391248475,1.0,0.0,0.0 -636,7.0,16.67979653398072,30.0,1.6247316701439514e-09,39.26462773155844,0.9675035227823234,-9.865935764278117,0.0,1.0,0.0 -636,8.0,0.0,0.0,0.0,0.0,1.017938477438566,-10.973463613891134,1.0,0.0,0.0 -636,9.0,3.224760663236272,2.0,0.0,0.0,1.012305373600321,-11.799325441497164,1.0,0.0,0.0 -636,10.0,0.0,0.0,2.254021380123901e-09,21.43064804729924,1.0599914105970294,-10.97346361364218,0.0,1.0,0.0 -636,11.0,6.227124039352801,7.5,0.0,0.0,1.0219715574012909,-11.385941097539378,1.0,0.0,0.0 -636,12.0,0.0,0.0,5.054591493719666e-10,17.459345122915828,1.0453541434139648,-11.385941097501428,0.0,1.0,0.0 -636,13.0,3.4471579503560155,1.6,0.0,0.0,1.0090403640145504,-11.912390499889518,1.0,0.0,0.0 -636,14.0,4.559144385954729,2.5,0.0,0.0,1.0035186164290044,-11.951841374686168,1.0,0.0,0.0 -636,15.0,1.9459762622977503,1.8,0.0,0.0,1.0116825986688829,-11.666070058110336,1.0,0.0,0.0 -636,16.0,5.003938960194216,5.8,0.0,0.0,1.0077561566892437,-11.855709049737875,1.0,0.0,0.0 -636,17.0,1.7791782969579435,0.9,0.0,0.0,0.9974204905930916,-12.24915020315338,1.0,0.0,0.0 -636,18.0,5.281935569093894,3.4,0.0,0.0,0.9961154908517188,-12.326520612252969,1.0,0.0,0.0 -636,19.0,1.223185079158586,0.7,0.0,0.0,0.9995499518777444,-12.226907722969106,1.0,0.0,0.0 -636,20.0,9.729881311488752,11.2,0.0,0.0,1.0040790154476622,-11.93071814609686,1.0,0.0,0.0 -636,21.0,0.0,0.0,0.0,0.0,1.0052016012016605,-11.912970730338676,1.0,0.0,0.0 -636,22.0,1.7791782969579435,1.6,0.0,0.0,0.9868906599136876,-12.32378757574664,1.0,0.0,0.0 -636,23.0,4.837140994854408,6.7,0.0,0.0,0.9715669417727036,-12.681661329435832,1.0,0.0,0.0 -636,24.0,0.0,0.0,0.0,0.0,0.9701279993527876,-12.40038115849889,1.0,0.0,0.0 -636,25.0,1.9459762622977503,2.3,0.0,0.0,0.9558030309235024,-12.495756212590193,1.0,0.0,0.0 -636,26.0,0.0,0.0,0.0,0.0,0.9763915215934352,-12.134345061085526,1.0,0.0,0.0 -636,27.0,0.0,0.0,0.0,0.0,0.9633737835470266,-9.754188605275676,1.0,0.0,0.0 -636,28.0,1.3343837227184574,0.9,0.0,0.0,0.9623173785065082,-12.796609377111375,1.0,0.0,0.0 -636,29.0,5.893528108673187,1.9,0.0,0.0,0.9546289247540674,-13.293355557354882,1.0,0.0,0.0 -637,0.0,0.0,0.0,164.70427762841356,0.0017522199971864,1.0,0.0,0.0,0.0,1.0 -637,1.0,12.065052826246053,12.7,3.829343109731414e-06,-12.847567504972698,0.977756676625456,-3.735328832862917,0.0,1.0,0.0 -637,2.0,1.3343837227184574,1.2,0.0,0.0,0.98032079739042,-5.0616399448421445,1.0,0.0,0.0 -637,3.0,4.225548455275115,1.6,0.0,0.0,0.975154238060831,-6.219301470457408,1.0,0.0,0.0 -637,4.0,52.374561116699454,19.0,-2.17558489497019e-09,33.42446867077777,0.9730018456165744,-9.22516511992057,0.0,1.0,0.0 -637,5.0,0.0,0.0,0.0,0.0,0.976730628364915,-7.35686404075574,1.0,0.0,0.0 -637,6.0,12.676645365825346,10.9,0.0,0.0,0.9687839474766676,-8.397014091503118,1.0,0.0,0.0 -637,7.0,16.67979653398072,30.0,-7.230169569114926e-09,39.99910401687448,0.979234545647079,-7.842558323577977,0.0,1.0,0.0 -637,8.0,0.0,0.0,0.0,0.0,1.0241617889029762,-9.122541750201814,1.0,0.0,0.0 -637,9.0,3.224760663236272,2.0,0.0,0.0,1.0190555116883764,-10.037557589732078,1.0,0.0,0.0 -637,10.0,0.0,0.0,-9.865746705174762e-09,18.262079324402453,1.0599969167185808,-9.122541751284851,0.0,1.0,0.0 -637,11.0,6.227124039352801,7.5,0.0,0.0,1.034777179913792,-9.692966046579672,1.0,0.0,0.0 -637,12.0,0.0,0.0,-6.358434532885818e-09,19.09420638203572,1.0599960373370765,-9.692966047044669,0.0,1.0,0.0 -637,13.0,3.4471579503560155,1.6,0.0,0.0,1.0227367227450872,-10.151965453656976,1.0,0.0,0.0 -637,14.0,4.559144385954729,2.5,0.0,0.0,1.0183628737349844,-10.152863131130648,1.0,0.0,0.0 -637,15.0,1.9459762622977503,1.8,0.0,0.0,1.0219719333712258,-9.928813447075074,1.0,0.0,0.0 -637,16.0,5.003938960194216,5.8,0.0,0.0,1.015635499265191,-10.104264826476436,1.0,0.0,0.0 -637,17.0,1.7791782969579435,0.9,0.0,0.0,1.0095162108661262,-10.453988818493468,1.0,0.0,0.0 -637,18.0,5.281935569093894,3.4,0.0,0.0,1.0065563268989066,-10.536356697112735,1.0,0.0,0.0 -637,19.0,1.223185079158586,0.7,0.0,0.0,1.0090748328037265,-10.442035218356578,1.0,0.0,0.0 -637,20.0,9.729881311488752,11.2,0.0,0.0,1.0088756942016175,-10.21989707349687,1.0,0.0,0.0 -637,21.0,0.0,0.0,0.0,0.0,1.0093529035030595,-10.218371718342109,1.0,0.0,0.0 -637,22.0,1.7791782969579435,1.6,0.0,0.0,1.0078319198297412,-10.312500141724447,1.0,0.0,0.0 -637,23.0,4.837140994854408,6.7,0.0,0.0,1.0004317993542762,-10.380192628665494,1.0,0.0,0.0 -637,24.0,0.0,0.0,0.0,0.0,0.9924046998564928,-10.11319328912322,1.0,0.0,0.0 -637,25.0,1.9459762622977503,2.3,0.0,0.0,0.9784107920653058,-10.204273109841084,1.0,0.0,0.0 -637,26.0,0.0,0.0,0.0,0.0,0.9944126408054872,-9.866796400219624,1.0,0.0,0.0 -637,27.0,0.0,0.0,0.0,0.0,0.975592075906342,-7.722135364989162,1.0,0.0,0.0 -637,28.0,1.3343837227184574,0.9,0.0,0.0,0.9644922219609138,-11.292498817529026,1.0,0.0,0.0 -637,29.0,5.893528108673187,1.9,0.0,0.0,0.9400006776756048,-12.692908449546335,1.0,0.0,0.0 -638,0.0,0.0,0.0,164.41264329268915,0.0006586635161731,1.0,0.0,0.0,0.0,1.0 -638,1.0,12.065052826246053,12.7,8.291932560514501e-07,10.745804854159305,0.980013697180047,-3.774752944843076,0.0,1.0,0.0 -638,2.0,1.3343837227184574,1.2,0.0,0.0,0.973907621975614,-4.950362604969287,1.0,0.0,0.0 -638,3.0,4.225548455275115,1.6,0.0,0.0,0.967233660424836,-6.084475591039174,1.0,0.0,0.0 -638,4.0,52.374561116699454,19.0,-4.0296361057257677e-10,24.32629670836633,0.9597942893568387,-9.086206775369355,0.0,1.0,0.0 -638,5.0,0.0,0.0,0.0,0.0,0.9668382141516996,-7.222477163599969,1.0,0.0,0.0 -638,6.0,12.676645365825346,10.9,0.0,0.0,0.9574309895973286,-8.26829999147253,1.0,0.0,0.0 -638,7.0,16.67979653398072,30.0,-2.3660556198844652e-11,30.62391121700876,0.9658319745730816,-7.659437312462828,0.0,1.0,0.0 -638,8.0,0.0,0.0,0.0,0.0,1.015417381763537,-9.065332205104651,1.0,0.0,0.0 -638,9.0,3.224760663236272,2.0,0.0,0.0,1.0064504190297945,-10.02250073315707,1.0,0.0,0.0 -638,10.0,0.0,0.0,9.605196948375236e-10,22.70947844362837,1.0599802092127668,-9.065332204998295,0.0,1.0,0.0 -638,11.0,6.227124039352801,7.5,0.0,0.0,1.0135914586112469,-9.546933297015862,1.0,0.0,0.0 -638,12.0,0.0,0.0,-6.010978317014905e-11,10.076603755454173,1.0273234965765488,-9.546933297020493,0.0,1.0,0.0 -638,13.0,3.4471579503560155,1.6,0.0,0.0,1.0024531414146405,-10.026445443765006,1.0,0.0,0.0 -638,14.0,4.559144385954729,2.5,0.0,0.0,0.9990950687222802,-10.054882394116996,1.0,0.0,0.0 -638,15.0,1.9459762622977503,1.8,0.0,0.0,1.004311947490331,-9.860742271067837,1.0,0.0,0.0 -638,16.0,5.003938960194216,5.8,0.0,0.0,1.0014107163160948,-10.069438033584868,1.0,0.0,0.0 -638,17.0,1.7791782969579435,0.9,0.0,0.0,0.992436104288768,-10.397761768477684,1.0,0.0,0.0 -638,18.0,5.281935569093894,3.4,0.0,0.0,0.990812615335106,-10.501413293507714,1.0,0.0,0.0 -638,19.0,1.223185079158586,0.7,0.0,0.0,0.9941001539646964,-10.414092202802252,1.0,0.0,0.0 -638,20.0,9.729881311488752,11.2,0.0,0.0,0.9958273711141064,-10.203543565396776,1.0,0.0,0.0 -638,21.0,0.0,0.0,0.0,0.0,0.9962128732689172,-10.19992410421941,1.0,0.0,0.0 -638,22.0,1.7791782969579435,1.6,0.0,0.0,0.9905522866142342,-10.237802552737843,1.0,0.0,0.0 -638,23.0,4.837140994854408,6.7,0.0,0.0,0.9859229743065252,-10.330318678489585,1.0,0.0,0.0 -638,24.0,0.0,0.0,0.0,0.0,0.9795244142708712,-10.053830672239949,1.0,0.0,0.0 -638,25.0,1.9459762622977503,2.3,0.0,0.0,0.9653410083480488,-10.147357498939314,1.0,0.0,0.0 -638,26.0,0.0,0.0,0.0,0.0,0.9826377630816104,-9.79758080946141,1.0,0.0,0.0 -638,27.0,0.0,0.0,0.0,0.0,0.9647759765904214,-7.584037056827171,1.0,0.0,0.0 -638,28.0,1.3343837227184574,0.9,0.0,0.0,0.9686585209114208,-10.451333389108626,1.0,0.0,0.0 -638,29.0,5.893528108673187,1.9,0.0,0.0,0.9610220422670596,-10.941551563793745,1.0,0.0,0.0 -639,0.0,0.0,0.0,164.61339712297823,0.0010051069154748,1.0,0.0,0.0,0.0,1.0 -639,1.0,12.065052826246053,12.7,1.1354534612437937e-06,10.07079276072072,0.9799177513123388,-3.7765511084690977,0.0,1.0,0.0 -639,2.0,1.3343837227184574,1.2,0.0,0.0,0.9741090093525218,-4.963948929085707,1.0,0.0,0.0 -639,3.0,4.225548455275115,1.6,0.0,0.0,0.9674839471588804,-6.101249779090575,1.0,0.0,0.0 -639,4.0,52.374561116699454,19.0,1.604365719035348e-10,24.349826201364408,0.9599257081521158,-9.091103204946586,0.0,1.0,0.0 -639,5.0,0.0,0.0,0.0,0.0,0.9671436337302762,-7.23229127316279,1.0,0.0,0.0 -639,6.0,12.676645365825346,10.9,0.0,0.0,0.9576669111547714,-8.276059707532335,1.0,0.0,0.0 -639,7.0,16.67979653398072,30.0,5.236807225089335e-10,30.880632648407197,0.9660703659791848,-7.674499229851096,0.0,1.0,0.0 -639,8.0,0.0,0.0,0.0,0.0,1.0176464781834382,-8.963253275706293,1.0,0.0,0.0 -639,9.0,3.224760663236272,2.0,0.0,0.0,1.010817575439776,-9.858716670427428,1.0,0.0,0.0 -639,10.0,0.0,0.0,1.4781393566471943e-09,21.57926331034922,1.0599910504933965,-8.963253275542987,0.0,1.0,0.0 -639,11.0,6.227124039352801,7.5,0.0,0.0,1.0147252325321512,-9.620918271782635,1.0,0.0,0.0 -639,12.0,0.0,0.0,7.57196147476616e-10,12.0630112895356,1.0311040030112009,-9.620918271724586,0.0,1.0,0.0 -639,13.0,3.4471579503560155,1.6,0.0,0.0,1.0023131249142612,-10.126368468315729,1.0,0.0,0.0 -639,14.0,4.559144385954729,2.5,0.0,0.0,0.9975375431317302,-10.15205766815212,1.0,0.0,0.0 -639,15.0,1.9459762622977503,1.8,0.0,0.0,1.0070181088755,-9.838952778739136,1.0,0.0,0.0 -639,16.0,5.003938960194216,5.8,0.0,0.0,1.0052239958360607,-9.947109885079405,1.0,0.0,0.0 -639,17.0,1.7791782969579435,0.9,0.0,0.0,0.9929934408750926,-10.403280397076765,1.0,0.0,0.0 -639,18.0,5.281935569093894,3.4,0.0,0.0,0.9926174192138092,-10.452143798251432,1.0,0.0,0.0 -639,19.0,1.223185079158586,0.7,0.0,0.0,0.9965577704962156,-10.336695166704946,1.0,0.0,0.0 -639,20.0,9.729881311488752,11.2,0.0,0.0,0.9826675128843808,-10.287862904888188,1.0,0.0,0.0 -639,21.0,0.0,0.0,0.0,0.0,0.9865064298357796,-10.228933236717708,1.0,0.0,0.0 -639,22.0,1.7791782969579435,1.6,0.0,0.0,0.9819040644744874,-10.482557609434318,1.0,0.0,0.0 -639,23.0,4.837140994854408,6.7,0.0,0.0,0.9679237031001936,-10.780552906914073,1.0,0.0,0.0 -639,24.0,0.0,0.0,0.0,0.0,0.9684353789407404,-10.42750255338563,1.0,0.0,0.0 -639,25.0,1.9459762622977503,2.3,0.0,0.0,0.9540846046539456,-10.523216385311922,1.0,0.0,0.0 -639,26.0,0.0,0.0,0.0,0.0,0.9759027732794332,-10.114959521006131,1.0,0.0,0.0 -639,27.0,0.0,0.0,0.0,0.0,0.9641474335177278,-7.614880067335653,1.0,0.0,0.0 -639,28.0,1.3343837227184574,0.9,0.0,0.0,0.9618211485088,-10.77789689272047,1.0,0.0,0.0 -639,29.0,5.893528108673187,1.9,0.0,0.0,0.9541285970705587,-11.275159433480756,1.0,0.0,0.0 -640,0.0,0.0,0.0,164.46402191943693,0.0009605188232342,1.0,0.0,0.0,0.0,1.0 -640,1.0,12.065052826246053,12.7,1.1377929670001928e-06,10.31339911149059,0.9799602113702508,-3.7739706653310745,0.0,1.0,0.0 -640,2.0,1.3343837227184574,1.2,0.0,0.0,0.974044847844067,-4.956993912838069,1.0,0.0,0.0 -640,3.0,4.225548455275115,1.6,0.0,0.0,0.9674037934874232,-6.092643593289076,1.0,0.0,0.0 -640,4.0,52.374561116699454,19.0,-1.1762673680511851e-11,24.306883067047693,0.9598632575118016,-9.085091199992274,0.0,1.0,0.0 -640,5.0,0.0,0.0,0.0,0.0,0.9670677786438592,-7.223468485375965,1.0,0.0,0.0 -640,6.0,12.676645365825346,10.9,0.0,0.0,0.95759621724963,-8.268413330035731,1.0,0.0,0.0 -640,7.0,16.67979653398072,30.0,3.910791414803897e-10,30.733247178176107,0.9659372508457852,-7.664786111950194,0.0,1.0,0.0 -640,8.0,0.0,0.0,0.0,0.0,1.017670888848064,-8.949554033410564,1.0,0.0,0.0 -640,9.0,3.224760663236272,2.0,0.0,0.0,1.0109308867048756,-9.842325167196597,1.0,0.0,0.0 -640,10.0,0.0,0.0,1.3736031045501355e-09,21.542621421666063,1.0599453808788808,-8.949554033258803,0.0,1.0,0.0 -640,11.0,6.227124039352801,7.5,0.0,0.0,1.014266116674948,-9.604114075782023,1.0,0.0,0.0 -640,12.0,0.0,0.0,6.047688416272882e-10,11.714848281646,1.0301863313919728,-9.604114075735598,0.0,1.0,0.0 -640,13.0,3.4471579503560155,1.6,0.0,0.0,1.0018986281694462,-10.109800592439749,1.0,0.0,0.0 -640,14.0,4.559144385954729,2.5,0.0,0.0,0.997170812799444,-10.136444147778173,1.0,0.0,0.0 -640,15.0,1.9459762622977503,1.8,0.0,0.0,1.0068051387221515,-9.82357037397943,1.0,0.0,0.0 -640,16.0,5.003938960194216,5.8,0.0,0.0,1.0052352200766743,-9.930633146222084,1.0,0.0,0.0 -640,17.0,1.7791782969579435,0.9,0.0,0.0,0.9927943558586344,-10.387573777441965,1.0,0.0,0.0 -640,18.0,5.281935569093894,3.4,0.0,0.0,0.9925180629941388,-10.4363277945932,1.0,0.0,0.0 -640,19.0,1.223185079158586,0.7,0.0,0.0,0.9965114365668164,-10.320810180439636,1.0,0.0,0.0 -640,20.0,9.729881311488752,11.2,0.0,0.0,1.002693151244971,-9.97407836767475,1.0,0.0,0.0 -640,21.0,0.0,0.0,0.0,0.0,1.0038172887051606,-9.95628191408018,1.0,0.0,0.0 -640,22.0,1.7791782969579435,1.6,0.0,0.0,0.9815668926634542,-10.468350347760143,1.0,0.0,0.0 -640,23.0,4.837140994854408,6.7,0.0,0.0,0.9676287582721312,-10.768134361624044,1.0,0.0,0.0 -640,24.0,0.0,0.0,0.0,0.0,0.968205179615988,-10.417440099081311,1.0,0.0,0.0 -640,25.0,1.9459762622977503,2.3,0.0,0.0,0.9538508883913708,-10.51320014536788,1.0,0.0,0.0 -640,26.0,0.0,0.0,0.0,0.0,0.975715224238681,-10.106242079083142,1.0,0.0,0.0 -640,27.0,0.0,0.0,0.0,0.0,0.964048085674214,-7.605712855328637,1.0,0.0,0.0 -640,28.0,1.3343837227184574,0.9,0.0,0.0,0.9616307263229816,-10.76943799861744,1.0,0.0,0.0 -640,29.0,5.893528108673187,1.9,0.0,0.0,0.9539366012704796,-11.266898900714828,1.0,0.0,0.0 -641,0.0,0.0,0.0,165.93916278926125,0.0004319128005469,1.0,0.0,0.0,0.0,1.0 -641,1.0,12.065052826246053,12.7,9.499503563755084e-07,9.568571203495992,0.9781621571111634,-4.236887968880876,0.0,1.0,0.0 -641,2.0,1.3343837227184574,1.2,0.0,0.0,0.9772636546597792,-3.774364571785848,1.0,0.0,0.0 -641,3.0,4.225548455275115,1.6,0.0,0.0,0.97124724498998,-4.6232052431507125,1.0,0.0,0.0 -641,4.0,52.374561116699454,19.0,6.766546140779033e-10,26.337388244298552,0.9589663946730856,-10.769032015917418,0.0,1.0,0.0 -641,5.0,0.0,0.0,0.0,0.0,0.96233946377832,-10.087864025693406,1.0,0.0,0.0 -641,6.0,12.676645365825346,10.9,0.0,0.0,0.9542078266173004,-10.651645659495705,1.0,0.0,0.0 -641,7.0,16.67979653398072,30.0,4.88246515506309e-10,29.822539988605826,0.9494936426236772,-13.19206680087261,0.0,1.0,0.0 -641,8.0,0.0,0.0,0.0,0.0,1.013564792587122,-11.6256083064703,1.0,0.0,0.0 -641,9.0,3.224760663236272,2.0,0.0,0.0,1.006896600546234,-12.420265503495107,1.0,0.0,0.0 -641,10.0,0.0,0.0,1.1472258788387456e-09,21.696601341489814,1.0562888366410266,-11.625608306342595,0.0,1.0,0.0 -641,11.0,6.227124039352801,7.5,0.0,0.0,1.0343034603125445,-9.806392890060376,1.0,0.0,0.0 -641,12.0,0.0,0.0,2.278570211131517e-10,18.68399823702672,1.0590036559952998,-9.806392890043687,0.0,1.0,0.0 -641,13.0,3.4471579503560155,1.6,0.0,0.0,1.022927450991982,-10.406948188539404,1.0,0.0,0.0 -641,14.0,4.559144385954729,2.5,0.0,0.0,1.0182119868141148,-10.562655682128971,1.0,0.0,0.0 -641,15.0,1.9459762622977503,1.8,0.0,0.0,1.0146870019838328,-10.980495719015384,1.0,0.0,0.0 -641,16.0,5.003938960194216,5.8,0.0,0.0,1.0053892823854478,-12.077388067087885,1.0,0.0,0.0 -641,17.0,1.7791782969579435,0.9,0.0,0.0,1.004803412537936,-11.550957970022251,1.0,0.0,0.0 -641,18.0,5.281935569093894,3.4,0.0,0.0,0.9992504574620767,-12.047611000682148,1.0,0.0,0.0 -641,19.0,1.223185079158586,0.7,0.0,0.0,1.000434749243052,-12.17038690331612,1.0,0.0,0.0 -641,20.0,9.729881311488752,11.2,0.0,0.0,0.9952766340435564,-12.654953882117852,1.0,0.0,0.0 -641,21.0,0.0,0.0,0.0,0.0,0.9953414175871518,-12.6682013639476,1.0,0.0,0.0 -641,22.0,1.7791782969579435,1.6,0.0,0.0,1.0132645076051516,-10.67338789674546,1.0,0.0,0.0 -641,23.0,4.837140994854408,6.7,0.0,0.0,0.9803637760243692,-12.999956858146676,1.0,0.0,0.0 -641,24.0,0.0,0.0,0.0,0.0,0.972168429262417,-13.018599247229057,1.0,0.0,0.0 -641,25.0,1.9459762622977503,2.3,0.0,0.0,0.957874444445179,-13.113568307697465,1.0,0.0,0.0 -641,26.0,0.0,0.0,0.0,0.0,0.9743250049668724,-12.947197721263526,1.0,0.0,0.0 -641,27.0,0.0,0.0,0.0,0.0,0.9576647519279498,-11.019316638388752,1.0,0.0,0.0 -641,28.0,1.3343837227184574,0.9,0.0,0.0,0.9602191720267096,-13.612314893777317,1.0,0.0,0.0 -641,29.0,5.893528108673187,1.9,0.0,0.0,0.9525133617488284,-14.11124991858499,1.0,0.0,0.0 -642,0.0,0.0,0.0,164.79085014063918,6.429168877275515e-05,1.0,0.0,0.0,0.0,1.0 -642,1.0,12.065052826246053,12.7,2.99377877034528e-07,10.104405926142562,0.9797732411032258,-3.7905777444504873,0.0,1.0,0.0 -642,2.0,1.3343837227184574,1.2,0.0,0.0,0.9744119258280908,-4.939992821647148,1.0,0.0,0.0 -642,3.0,4.225548455275115,1.6,0.0,0.0,0.9678534814509584,-6.071345938655258,1.0,0.0,0.0 -642,4.0,52.374561116699454,19.0,2.0839904057070288e-11,24.80771448296464,0.9598207813515068,-9.144213784836278,0.0,1.0,0.0 -642,5.0,0.0,0.0,0.0,0.0,0.9661236097701876,-7.302446963327662,1.0,0.0,0.0 -642,6.0,12.676645365825346,10.9,0.0,0.0,0.957012593307968,-8.339237270713017,1.0,0.0,0.0 -642,7.0,16.67979653398072,30.0,2.7942724889981846e-11,33.08027800232804,0.96594382906649,-7.759529332155079,0.0,1.0,0.0 -642,8.0,0.0,0.0,0.0,0.0,1.01019335248979,-9.466381512967338,1.0,0.0,0.0 -642,9.0,3.224760663236272,2.0,0.0,0.0,0.997607189676696,-10.599389038158623,1.0,0.0,0.0 -642,10.0,0.0,0.0,4.64166495491934e-11,23.99972005453955,1.0574028142400131,-9.466381512962162,0.0,1.0,0.0 -642,11.0,6.227124039352801,7.5,0.0,0.0,1.0199033892477214,-8.850547932285354,1.0,0.0,0.0 -642,12.0,0.0,0.0,4.5572458240958405e-11,7.574643597007277,1.0301970520135806,-8.850547932281872,0.0,1.0,0.0 -642,13.0,3.4471579503560155,1.6,0.0,0.0,0.9930605101327096,-10.21575134071552,1.0,0.0,0.0 -642,14.0,4.559144385954729,2.5,0.0,0.0,0.9685779931977028,-10.789446072813163,1.0,0.0,0.0 -642,15.0,1.9459762622977503,1.8,0.0,0.0,1.014563344327016,-8.970463063115343,1.0,0.0,0.0 -642,16.0,5.003938960194216,5.8,0.0,0.0,0.9910230165639996,-10.735529270912458,1.0,0.0,0.0 -642,17.0,1.7791782969579435,0.9,0.0,0.0,0.9693611829152644,-11.096113622781685,1.0,0.0,0.0 -642,18.0,5.281935569093894,3.4,0.0,0.0,0.9721977250836648,-11.17231093306986,1.0,0.0,0.0 -642,19.0,1.223185079158586,0.7,0.0,0.0,0.97791837828159,-11.065741724628255,1.0,0.0,0.0 -642,20.0,9.729881311488752,11.2,0.0,0.0,0.9865874317568428,-10.78091592381137,1.0,0.0,0.0 -642,21.0,0.0,0.0,0.0,0.0,0.9868822561633642,-10.77619658157354,1.0,0.0,0.0 -642,22.0,1.7791782969579435,1.6,0.0,0.0,0.9633740866587568,-10.911881056598848,1.0,0.0,0.0 -642,23.0,4.837140994854408,6.7,0.0,0.0,0.9752674250163114,-10.887238100413455,1.0,0.0,0.0 -642,24.0,0.0,0.0,0.0,0.0,0.9729457539396006,-10.48554739351661,1.0,0.0,0.0 -642,25.0,1.9459762622977503,2.3,0.0,0.0,0.9586635368878192,-10.580362469028277,1.0,0.0,0.0 -642,26.0,0.0,0.0,0.0,0.0,0.978605774892079,-10.146447815312346,1.0,0.0,0.0 -642,27.0,0.0,0.0,0.0,0.0,0.9637342967105856,-7.690448024029185,1.0,0.0,0.0 -642,28.0,1.3343837227184574,0.9,0.0,0.0,0.9645654249471808,-10.805675753121104,1.0,0.0,0.0 -642,29.0,5.893528108673187,1.9,0.0,0.0,0.9568954793029496,-11.300092762322391,1.0,0.0,0.0 -643,0.0,0.0,0.0,166.5094576724384,0.0026923754208318,1.0,0.0,0.0,0.0,1.0 -643,1.0,12.065052826246053,12.7,7.695050315671665e-06,19.002304054193598,0.9816115060116676,-4.411722839536097,0.0,1.0,0.0 -643,2.0,1.3343837227184574,1.2,0.0,0.0,0.9669698812939465,-3.3573087827389734,1.0,0.0,0.0 -643,3.0,4.225548455275115,1.6,0.0,0.0,0.9585485852099392,-4.105601199782461,1.0,0.0,0.0 -643,4.0,52.374561116699454,19.0,5.8792106000305935e-09,29.26847114211101,0.9689293452491734,-11.19946592339974,0.0,1.0,0.0 -643,5.0,0.0,0.0,0.0,0.0,0.9724860809965484,-10.807604247197846,1.0,0.0,0.0 -643,6.0,12.676645365825346,10.9,0.0,0.0,0.9643084734736408,-11.24806724624144,1.0,0.0,0.0 -643,7.0,16.67979653398072,30.0,7.248521720880644e-09,37.46385962377113,0.9738145464560322,-11.270935167269451,0.0,1.0,0.0 -643,8.0,0.0,0.0,0.0,0.0,1.01977605108891,-12.248562194766103,1.0,0.0,0.0 -643,9.0,3.224760663236272,2.0,0.0,0.0,1.0122039639957412,-12.997117228258787,1.0,0.0,0.0 -643,10.0,0.0,0.0,7.138842837626383e-09,20.491325845769648,1.0599859771429168,-12.24856219397904,0.0,1.0,0.0 -643,11.0,6.227124039352801,7.5,0.0,0.0,0.9777028818750974,-8.77334108154795,1.0,0.0,0.0 -643,12.0,0.0,0.0,0.0,0.0,0.9777028818750974,-8.77334108154795,0.0,1.0,0.0 -643,13.0,3.4471579503560155,1.6,0.0,0.0,0.96876735054902,-9.488747213574689,1.0,0.0,0.0 -643,14.0,4.559144385954729,2.5,0.0,0.0,0.9664985057265266,-9.778420094827926,1.0,0.0,0.0 -643,15.0,1.9459762622977503,1.8,0.0,0.0,0.9546808750848196,-9.1770043765495,1.0,0.0,0.0 -643,16.0,5.003938960194216,5.8,0.0,0.0,0.940000443367914,-9.597332854890196,1.0,0.0,0.0 -643,17.0,1.7791782969579435,0.9,0.0,0.0,0.96246704616325,-9.958384848362948,1.0,0.0,0.0 -643,18.0,5.281935569093894,3.4,0.0,0.0,0.9932519777037138,-13.691968328270171,1.0,0.0,0.0 -643,19.0,1.223185079158586,0.7,0.0,0.0,0.9973907587109888,-13.551096233326248,1.0,0.0,0.0 -643,20.0,9.729881311488752,11.2,0.0,0.0,0.9743004324027956,-13.101775424226938,1.0,0.0,0.0 -643,21.0,0.0,0.0,0.0,0.0,0.9781723261827394,-13.041833283685456,1.0,0.0,0.0 -643,22.0,1.7791782969579435,1.6,0.0,0.0,0.9634190261898016,-11.024337265408205,1.0,0.0,0.0 -643,23.0,4.837140994854408,6.7,0.0,0.0,0.967007952542436,-12.52032855974714,1.0,0.0,0.0 -643,24.0,0.0,0.0,0.0,0.0,0.9678198003319236,-12.870532273891508,1.0,0.0,0.0 -643,25.0,1.9459762622977503,2.3,0.0,0.0,0.9534596174149004,-12.966369760717331,1.0,0.0,0.0 -643,26.0,0.0,0.0,0.0,0.0,0.975742787332869,-12.990201683773488,1.0,0.0,0.0 -643,27.0,0.0,0.0,0.0,0.0,0.9697535388172296,-11.106996404844203,1.0,0.0,0.0 -643,28.0,1.3343837227184574,0.9,0.0,0.0,0.9616587117211268,-13.653359595669157,1.0,0.0,0.0 -643,29.0,5.893528108673187,1.9,0.0,0.0,0.9539648179603212,-14.150791337971093,1.0,0.0,0.0 -644,0.0,0.0,0.0,108.16311862578962,3.0918041460381573e-07,1.0,0.0,0.0,0.0,1.0 -644,1.0,12.065052826246053,12.7,57.05197824215755,-21.34684686073124,0.9781800773305068,-3.538129910427898,0.0,1.0,0.0 -644,2.0,1.3343837227184574,1.2,0.0,0.0,1.000785880120806,-0.1480238938668863,1.0,0.0,0.0 -644,3.0,4.225548455275115,1.6,0.0,0.0,0.967033222653824,-8.735822446258087,1.0,0.0,0.0 -644,4.0,52.374561116699454,19.0,9.040292764511251e-10,39.99999944613359,0.978126808613839,-10.121609443300445,0.0,1.0,0.0 -644,5.0,0.0,0.0,0.0,0.0,0.972740066186677,-9.173734136220734,1.0,0.0,0.0 -644,6.0,12.676645365825346,10.9,0.0,0.0,0.9683699234124792,-9.832860850156235,1.0,0.0,0.0 -644,7.0,16.67979653398072,30.0,2.824687566021536e-09,39.999999548342224,0.9753016978787686,-9.653178826878182,0.0,1.0,0.0 -644,8.0,0.0,0.0,0.0,0.0,1.0253693991888273,-10.863046985172916,1.0,0.0,0.0 -644,9.0,3.224760663236272,2.0,0.0,0.0,1.023661983794802,-11.730996562143469,1.0,0.0,0.0 -644,10.0,0.0,0.0,3.06807292013556e-09,17.64828651463722,1.0599999991692195,-10.86304698483651,0.0,1.0,0.0 -644,11.0,6.227124039352801,7.5,0.0,0.0,1.0243713064208353,-12.736817890327536,1.0,0.0,0.0 -644,12.0,0.0,0.0,5.924531873979999e-10,23.99999958890093,1.056183946203184,-12.73681789028361,0.0,1.0,0.0 -644,13.0,3.4471579503560155,1.6,0.0,0.0,1.0111793535485454,-13.20885972118568,1.0,0.0,0.0 -644,14.0,4.559144385954729,2.5,0.0,0.0,1.0057503012051805,-13.189952358955926,1.0,0.0,0.0 -644,15.0,1.9459762622977503,1.8,0.0,0.0,1.0024763815756652,-13.103997027367951,1.0,0.0,0.0 -644,16.0,5.003938960194216,5.8,0.0,0.0,0.9885187995825998,-13.484637806371977,1.0,0.0,0.0 -644,17.0,1.7791782969579435,0.9,0.0,0.0,0.9883733282719936,-13.813325588406554,1.0,0.0,0.0 -644,18.0,5.281935569093894,3.4,0.0,0.0,0.9804390034544456,-14.088362345085534,1.0,0.0,0.0 -644,19.0,1.223185079158586,0.7,0.0,0.0,1.0211062945726614,-11.835212976449322,1.0,0.0,0.0 -644,20.0,9.729881311488752,11.2,0.0,0.0,1.0122124359076214,-12.029793319630109,1.0,0.0,0.0 -644,21.0,0.0,0.0,0.0,0.0,1.012261509399784,-12.065711829745933,1.0,0.0,0.0 -644,22.0,1.7791782969579435,1.6,0.0,0.0,0.9990469343102374,-13.045039380617885,1.0,0.0,0.0 -644,23.0,4.837140994854408,6.7,0.0,0.0,0.99678958897043,-12.697754427809157,1.0,0.0,0.0 -644,24.0,0.0,0.0,0.0,0.0,0.9852097890438588,-12.819243651073904,1.0,0.0,0.0 -644,25.0,1.9459762622977503,2.3,0.0,0.0,0.9711106661389396,-12.911678297669036,1.0,0.0,0.0 -644,26.0,0.0,0.0,0.0,0.0,0.9907611058961124,-11.183259551225076,1.0,0.0,0.0 -644,27.0,0.0,0.0,0.0,0.0,0.9719332685737444,-9.483868291584033,1.0,0.0,0.0 -644,28.0,1.3343837227184574,0.9,0.0,0.0,0.9400000014639712,-13.544924326484333,1.0,0.0,0.0 -644,29.0,5.893528108673187,1.9,0.0,0.0,0.9477546585571476,-13.294767682459744,1.0,0.0,0.0 -645,0.0,0.0,0.0,164.4170866776489,0.0007195461579456,1.0,0.0,0.0,0.0,1.0 -645,1.0,12.065052826246053,12.7,8.69431056149655e-07,10.845005826372038,0.9800269189889078,-3.775196696433484,0.0,1.0,0.0 -645,2.0,1.3343837227184574,1.2,0.0,0.0,0.973867281337604,-4.949710159441565,1.0,0.0,0.0 -645,3.0,4.225548455275115,1.6,0.0,0.0,0.9671838487069734,-6.083685290003596,1.0,0.0,0.0 -645,4.0,52.374561116699454,19.0,-4.0510145238437415e-10,24.33389498883028,0.9597873490357468,-9.086695893848322,0.0,1.0,0.0 -645,5.0,0.0,0.0,0.0,0.0,0.9667956525347264,-7.222455779753424,1.0,0.0,0.0 -645,6.0,12.676645365825346,10.9,0.0,0.0,0.9574027825769552,-8.268486318045758,1.0,0.0,0.0 -645,7.0,16.67979653398072,30.0,-8.730827848701883e-11,30.646825216704755,0.9658068885057332,-7.659487953514868,0.0,1.0,0.0 -645,8.0,0.0,0.0,0.0,0.0,1.0152213619157566,-9.071157644154,1.0,0.0,0.0 -645,9.0,3.224760663236272,2.0,0.0,0.0,1.0060622673781776,-10.031690414592124,1.0,0.0,0.0 -645,10.0,0.0,0.0,8.041263314564783e-10,22.8198753522296,1.0599999858463405,-9.071157644064948,0.0,1.0,0.0 -645,11.0,6.227124039352801,7.5,0.0,0.0,1.013332797540634,-9.54403194548252,1.0,0.0,0.0 -645,12.0,0.0,0.0,-1.6392134439524472e-10,9.858422835612716,1.0267746871225982,-9.544031945495156,0.0,1.0,0.0 -645,13.0,3.4471579503560155,1.6,0.0,0.0,1.0022819810616586,-10.022958495379148,1.0,0.0,0.0 -645,14.0,4.559144385954729,2.5,0.0,0.0,0.99901560532695,-10.05265508933261,1.0,0.0,0.0 -645,15.0,1.9459762622977503,1.8,0.0,0.0,1.0039873053475237,-9.86281842196711,1.0,0.0,0.0 -645,16.0,5.003938960194216,5.8,0.0,0.0,1.001043327966831,-10.076560012073932,1.0,0.0,0.0 -645,17.0,1.7791782969579435,0.9,0.0,0.0,0.9922449707776922,-10.399638709819952,1.0,0.0,0.0 -645,18.0,5.281935569093894,3.4,0.0,0.0,0.990556017565968,-10.5057216384878,1.0,0.0,0.0 -645,19.0,1.223185079158586,0.7,0.0,0.0,0.99381001411409,-10.41959961036593,1.0,0.0,0.0 -645,20.0,9.729881311488752,11.2,0.0,0.0,0.9942131547405232,-10.225881453744307,1.0,0.0,0.0 -645,21.0,0.0,0.0,0.0,0.0,0.9977926315930278,-10.18894272420824,1.0,0.0,0.0 -645,22.0,1.7791782969579435,1.6,0.0,0.0,0.9909245072387132,-10.231866223509924,1.0,0.0,0.0 -645,23.0,4.837140994854408,6.7,0.0,0.0,0.9868940808253058,-10.319151396258286,1.0,0.0,0.0 -645,24.0,0.0,0.0,0.0,0.0,0.9801284667315386,-10.0421051941476,1.0,0.0,0.0 -645,25.0,1.9459762622977503,2.3,0.0,0.0,0.9659540641292388,-10.135515058711867,1.0,0.0,0.0 -645,26.0,0.0,0.0,0.0,0.0,0.9830091587488764,-9.78599207447323,1.0,0.0,0.0 -645,27.0,0.0,0.0,0.0,0.0,0.9647876724247636,-7.583542666258904,1.0,0.0,0.0 -645,28.0,1.3343837227184574,0.9,0.0,0.0,0.969035517838055,-10.439243758598725,1.0,0.0,0.0 -645,29.0,5.893528108673187,1.9,0.0,0.0,0.9614021067800198,-10.929077896680589,1.0,0.0,0.0 -646,0.0,0.0,0.0,92.68091220004789,1.913224156879778e-06,1.0,0.0,0.0,0.0,1.0 -646,1.0,12.065052826246053,12.7,70.77882662643738,20.360758466898176,0.991274372640051,-1.3574044187928511,0.0,1.0,0.0 -646,2.0,1.3343837227184574,1.2,0.0,0.0,0.9756825478675876,-4.900406761612621,1.0,0.0,0.0 -646,3.0,4.225548455275115,1.6,0.0,0.0,0.969413155690975,-6.021570795085807,1.0,0.0,0.0 -646,4.0,52.374561116699454,19.0,0.0,0.0,0.940000000592965,-7.627942708447241,0.0,1.0,0.0 -646,5.0,0.0,0.0,0.0,0.0,0.9665114116154682,-7.607998451441308,1.0,0.0,0.0 -646,6.0,12.676645365825346,10.9,0.0,0.0,0.9487244583441296,-7.926157756935398,1.0,0.0,0.0 -646,7.0,16.67979653398072,30.0,-8.729895993593788e-09,39.99999664992392,0.9689259042334214,-8.113138092586189,0.0,1.0,0.0 -646,8.0,0.0,0.0,0.0,0.0,1.0199777355109272,-9.262154104725186,1.0,0.0,0.0 -646,9.0,3.224760663236272,2.0,0.0,0.0,1.015919455229199,-10.113037812685992,1.0,0.0,0.0 -646,10.0,0.0,0.0,-1.4033239319775356e-08,20.395956635400186,1.0599999904031172,-9.262154106272035,0.0,1.0,0.0 -646,11.0,6.227124039352801,7.5,0.0,0.0,1.0295293633628946,-9.850269956414692,1.0,0.0,0.0 -646,12.0,0.0,0.0,-8.919678271075709e-09,23.070614471542687,1.0599999866340533,-9.850269957070314,0.0,1.0,0.0 -646,13.0,3.4471579503560155,1.6,0.0,0.0,1.0175555626114663,-10.302958030958848,1.0,0.0,0.0 -646,14.0,4.559144385954729,2.5,0.0,0.0,1.013360875946108,-10.295853096182784,1.0,0.0,0.0 -646,15.0,1.9459762622977503,1.8,0.0,0.0,1.007752032658433,-10.213724494942408,1.0,0.0,0.0 -646,16.0,5.003938960194216,5.8,0.0,0.0,0.9938698318363955,-10.590333879083817,1.0,0.0,0.0 -646,17.0,1.7791782969579435,0.9,0.0,0.0,1.0051376075838303,-10.576499903626804,1.0,0.0,0.0 -646,18.0,5.281935569093894,3.4,0.0,0.0,1.0025559844966545,-10.64568453041368,1.0,0.0,0.0 -646,19.0,1.223185079158586,0.7,0.0,0.0,1.0052909041301488,-10.543365402757376,1.0,0.0,0.0 -646,20.0,9.729881311488752,11.2,0.0,0.0,1.0053633681179932,-10.303082404727412,1.0,0.0,0.0 -646,21.0,0.0,0.0,0.0,0.0,1.005733115244573,-10.303502152046438,1.0,0.0,0.0 -646,22.0,1.7791782969579435,1.6,0.0,0.0,1.0027529906432802,-10.439419313492827,1.0,0.0,0.0 -646,23.0,4.837140994854408,6.7,0.0,0.0,0.9952804064443268,-10.48382589293907,1.0,0.0,0.0 -646,24.0,0.0,0.0,0.0,0.0,0.9847319861927492,-10.22621902142519,1.0,0.0,0.0 -646,25.0,1.9459762622977503,2.3,0.0,0.0,0.970625819191302,-10.318744710105184,1.0,0.0,0.0 -646,26.0,0.0,0.0,0.0,0.0,0.98523530827116,-9.986982786694792,1.0,0.0,0.0 -646,27.0,0.0,0.0,0.0,0.0,0.9636045419744476,-7.915730305297151,1.0,0.0,0.0 -646,28.0,1.3343837227184574,0.9,0.0,0.0,0.9712951447910946,-10.637244192091432,1.0,0.0,0.0 -646,29.0,5.893528108673187,1.9,0.0,0.0,0.9636800677580724,-11.124785963332815,1.0,0.0,0.0 -647,0.0,0.0,0.0,164.42420739252947,0.0006506369044423,1.0,0.0,0.0,0.0,1.0 -647,1.0,12.065052826246053,12.7,7.358291199335124e-07,11.601135849358812,0.9801076345061446,-3.7770605866889952,0.0,1.0,0.0 -647,2.0,1.3343837227184574,1.2,0.0,0.0,0.9736310043407131,-4.94614643432666,1.0,0.0,0.0 -647,3.0,4.225548455275115,1.6,0.0,0.0,0.9668921399853224,-6.079376252939824,1.0,0.0,0.0 -647,4.0,52.374561116699454,19.0,-5.289122327629501e-10,24.571745402029592,0.959777558953816,-9.088962213065312,0.0,1.0,0.0 -647,5.0,0.0,0.0,0.0,0.0,0.9662122092343336,-7.212818107558791,1.0,0.0,0.0 -647,6.0,12.676645365825346,10.9,0.0,0.0,0.957051922624208,-8.263637237682445,1.0,0.0,0.0 -647,7.0,16.67979653398072,30.0,2.0709024386739585e-11,32.87599213247397,0.9655423095953172,-7.667358382247359,0.0,1.0,0.0 -647,8.0,0.0,0.0,0.0,0.0,1.0149937717161917,-9.061120880096004,1.0,0.0,0.0 -647,9.0,3.224760663236272,2.0,0.0,0.0,1.005909631105251,-10.021012398450246,1.0,0.0,0.0 -647,10.0,0.0,0.0,8.0503088706672e-10,22.935182287574456,1.0599987123834202,-9.061120880006834,0.0,1.0,0.0 -647,11.0,6.227124039352801,7.5,0.0,0.0,1.013872542575036,-9.545318886495838,1.0,0.0,0.0 -647,12.0,0.0,0.0,-2.8216620619603406e-10,10.562745643944329,1.0282540506202529,-9.54531888651755,0.0,1.0,0.0 -647,13.0,3.4471579503560155,1.6,0.0,0.0,1.00270884571326,-10.022840495977452,1.0,0.0,0.0 -647,14.0,4.559144385954729,2.5,0.0,0.0,0.9993361120641012,-10.04890594832185,1.0,0.0,0.0 -647,15.0,1.9459762622977503,1.8,0.0,0.0,1.0042370056951202,-9.857432645076786,1.0,0.0,0.0 -647,16.0,5.003938960194216,5.8,0.0,0.0,1.0010141055333004,-10.068015088824392,1.0,0.0,0.0 -647,17.0,1.7791782969579435,0.9,0.0,0.0,0.9924004535884312,-10.393274366990388,1.0,0.0,0.0 -647,18.0,5.281935569093894,3.4,0.0,0.0,0.990613288357722,-10.497855271305976,1.0,0.0,0.0 -647,19.0,1.223185079158586,0.7,0.0,0.0,0.9938152977973164,-10.410946559018877,1.0,0.0,0.0 -647,20.0,9.729881311488752,11.2,0.0,0.0,0.9940586753080688,-10.21526308668209,1.0,0.0,0.0 -647,21.0,0.0,0.0,0.0,0.0,0.997553271577798,-10.17590813569889,1.0,0.0,0.0 -647,22.0,1.7791782969579435,1.6,0.0,0.0,0.9909611861419948,-10.22245547560106,1.0,0.0,0.0 -647,23.0,4.837140994854408,6.7,0.0,0.0,0.9865508295457256,-10.30231686052754,1.0,0.0,0.0 -647,24.0,0.0,0.0,0.0,0.0,0.9791430520508556,-10.007398180973464,1.0,0.0,0.0 -647,25.0,1.9459762622977503,2.3,0.0,0.0,0.9649539559971748,-10.100998964451106,1.0,0.0,0.0 -647,26.0,0.0,0.0,0.0,0.0,0.981627287246382,-9.740615263286823,1.0,0.0,0.0 -647,27.0,0.0,0.0,0.0,0.0,0.962765516704016,-7.533584712195425,1.0,0.0,0.0 -647,28.0,1.3343837227184574,0.9,0.0,0.0,0.9676327820214956,-10.395733591122273,1.0,0.0,0.0 -647,29.0,5.893528108673187,1.9,0.0,0.0,0.9599879443558909,-10.886998953266213,1.0,0.0,0.0 -648,0.0,0.0,0.0,164.5548516557543,4.291948643646126,1.0,0.0,0.0,0.0,1.0 -648,1.0,12.065052826246053,12.7,0.0,0.0,0.9776076639363582,-3.7389603686378687,0.0,1.0,0.0 -648,2.0,1.3343837227184574,1.2,0.0,0.0,0.973543059496906,-4.957727524546276,1.0,0.0,0.0 -648,3.0,4.225548455275115,1.6,0.0,0.0,0.96678557611951,-6.093805982651396,1.0,0.0,0.0 -648,4.0,52.374561116699454,19.0,-1.2927080867909389e-08,33.4141500164442,0.967395312455547,-9.19893342259845,0.0,1.0,0.0 -648,5.0,0.0,0.0,0.0,0.0,0.9658313872234302,-7.193718225857578,1.0,0.0,0.0 -648,6.0,12.676645365825346,10.9,0.0,0.0,0.9599822342815072,-8.292293769166813,1.0,0.0,0.0 -648,7.0,16.67979653398072,30.0,-1.754833608232432e-08,39.98847376035164,0.968249301845706,-7.690391384897553,0.0,1.0,0.0 -648,8.0,0.0,0.0,0.0,0.0,0.9905504554428032,-8.969983892864429,1.0,0.0,0.0 -648,9.0,3.224760663236272,2.0,0.0,0.0,0.9925161732542208,-9.904553876337676,1.0,0.0,0.0 -648,10.0,0.0,0.0,0.0,0.0,0.9905504554428032,-8.969983892864429,0.0,1.0,0.0 -648,11.0,6.227124039352801,7.5,0.0,0.0,1.019533539381656,-9.705960506644852,1.0,0.0,0.0 -648,12.0,0.0,0.0,-2.1080967486325457e-08,20.77319268256553,1.0473024701206817,-9.705960508228532,0.0,1.0,0.0 -648,13.0,3.4471579503560155,1.6,0.0,0.0,1.011266063072976,-10.08672441195884,1.0,0.0,0.0 -648,14.0,4.559144385954729,2.5,0.0,0.0,0.9985828314714028,-10.173028358539693,1.0,0.0,0.0 -648,15.0,1.9459762622977503,1.8,0.0,0.0,1.0018249774536836,-9.860175408047915,1.0,0.0,0.0 -648,16.0,5.003938960194216,5.8,0.0,0.0,0.9909560936614172,-10.004191926596276,1.0,0.0,0.0 -648,17.0,1.7791782969579435,0.9,0.0,0.0,0.9871517896237898,-10.43541317002876,1.0,0.0,0.0 -648,18.0,5.281935569093894,3.4,0.0,0.0,0.9827118264279012,-10.490373777462256,1.0,0.0,0.0 -648,19.0,1.223185079158586,0.7,0.0,0.0,0.984550177098769,-10.374607427867112,1.0,0.0,0.0 -648,20.0,9.729881311488752,11.2,0.0,0.0,0.9828447165057344,-10.103356363661913,1.0,0.0,0.0 -648,21.0,0.0,0.0,0.0,0.0,0.9835816300896568,-10.104195140164023,1.0,0.0,0.0 -648,22.0,1.7791782969579435,1.6,0.0,0.0,0.9867079923372984,-10.304435357900058,1.0,0.0,0.0 -648,23.0,4.837140994854408,6.7,0.0,0.0,0.977651641360232,-10.328122513652076,1.0,0.0,0.0 -648,24.0,0.0,0.0,0.0,0.0,0.9740715154984116,-10.08445204435988,1.0,0.0,0.0 -648,25.0,1.9459762622977503,2.3,0.0,0.0,0.9598063063057316,-10.17904477821476,1.0,0.0,0.0 -648,26.0,0.0,0.0,0.0,0.0,0.9789865114071804,-9.84465977395086,1.0,0.0,0.0 -648,27.0,0.0,0.0,0.0,0.0,0.9641564693110048,-7.568415052059558,1.0,0.0,0.0 -648,28.0,1.3343837227184574,0.9,0.0,0.0,0.9649519552868572,-10.503367727917276,1.0,0.0,0.0 -648,29.0,5.893528108673187,1.9,0.0,0.0,0.9572851828096915,-10.99738591331846,1.0,0.0,0.0 -649,0.0,0.0,0.0,165.17943196965595,0.0010897306740531,1.0,0.0,0.0,0.0,1.0 -649,1.0,12.065052826246053,12.7,1.4243244011744815e-06,7.089957319133234,0.97978876456948,-3.744336477532018,0.0,1.0,0.0 -649,2.0,1.3343837227184574,1.2,0.0,0.0,0.9744199113296304,-5.109652609835257,1.0,0.0,0.0 -649,3.0,4.225548455275115,1.6,0.0,0.0,0.967890880597273,-6.282043925555361,1.0,0.0,0.0 -649,4.0,52.374561116699454,19.0,1.0962382121926447e-09,24.40653939917435,0.9612321105015882,-8.97095080807512,0.0,1.0,0.0 -649,5.0,0.0,0.0,0.0,0.0,0.9698057342084884,-7.0417137432342125,1.0,0.0,0.0 -649,6.0,12.676645365825346,10.9,0.0,0.0,0.9598034981318848,-8.113532010582736,1.0,0.0,0.0 -649,7.0,16.67979653398072,30.0,1.679638516109842e-09,31.242663638607084,0.9688310517855442,-7.513910080985765,0.0,1.0,0.0 -649,8.0,0.0,0.0,0.0,0.0,1.0257412871018787,-7.041713743027967,1.0,0.0,0.0 -649,9.0,3.224760663236272,2.0,0.0,0.0,0.9733093840553744,-15.257328886695475,1.0,0.0,0.0 -649,10.0,0.0,0.0,1.7602999002166644e-09,17.385739418857014,1.0598611690699629,-7.041713742834999,0.0,1.0,0.0 -649,11.0,6.227124039352801,7.5,0.0,0.0,1.0199204505629915,-12.274895020952096,1.0,0.0,0.0 -649,12.0,0.0,0.0,2.912770298534081e-09,23.99895036093868,1.051862395303418,-12.27489502073431,0.0,1.0,0.0 -649,13.0,3.4471579503560155,1.6,0.0,0.0,1.0049225226379457,-12.93558006525444,1.0,0.0,0.0 -649,14.0,4.559144385954729,2.5,0.0,0.0,0.9965238966897496,-13.060334486854536,1.0,0.0,0.0 -649,15.0,1.9459762622977503,1.8,0.0,0.0,0.9915992180684324,-13.55526940387898,1.0,0.0,0.0 -649,16.0,5.003938960194216,5.8,0.0,0.0,0.9749968087172426,-14.847915540430703,1.0,0.0,0.0 -649,17.0,1.7791782969579435,0.9,0.0,0.0,0.9789760974543984,-13.695519406016595,1.0,0.0,0.0 -649,18.0,5.281935569093894,3.4,0.0,0.0,0.97096412412199,-13.97590592547278,1.0,0.0,0.0 -649,19.0,1.223185079158586,0.7,0.0,0.0,0.9706205739749671,-15.37263791359687,1.0,0.0,0.0 -649,20.0,9.729881311488752,11.2,0.0,0.0,0.9648140987486716,-15.179388512042882,1.0,0.0,0.0 -649,21.0,0.0,0.0,0.0,0.0,0.9660299532203142,-15.089585899096608,1.0,0.0,0.0 -649,22.0,1.7791782969579435,1.6,0.0,0.0,0.9815502529126892,-13.588893842993969,1.0,0.0,0.0 -649,23.0,4.837140994854408,6.7,0.0,0.0,0.9685439138716022,-14.15762411823622,1.0,0.0,0.0 -649,24.0,0.0,0.0,0.0,0.0,0.9735825435817916,-12.49385832861753,1.0,0.0,0.0 -649,25.0,1.9459762622977503,2.3,0.0,0.0,0.9593099521874172,-12.588547545503516,1.0,0.0,0.0 -649,26.0,0.0,0.0,0.0,0.0,0.9837171586053518,-11.376671115909057,1.0,0.0,0.0 -649,27.0,0.0,0.0,0.0,0.0,0.966539091433826,-7.597227928786909,1.0,0.0,0.0 -649,28.0,1.3343837227184574,0.9,0.0,0.0,0.9697541827481184,-12.02896953376616,1.0,0.0,0.0 -649,29.0,5.893528108673187,1.9,0.0,0.0,0.9621266124878824,-12.518072839263548,1.0,0.0,0.0 -650,0.0,0.0,0.0,129.00216531010636,0.5055474402247739,1.0,0.0,0.0,0.0,1.0 -650,1.0,12.065052826246053,12.7,42.85975262388428,45.999999319427815,0.9805824241182074,-19.318216152223027,0.0,1.0,0.0 -650,2.0,1.3343837227184574,1.2,0.0,0.0,0.9611488142004866,-12.7400935476882,1.0,0.0,0.0 -650,3.0,4.225548455275115,1.6,0.0,0.0,0.9554108052292908,-15.779281762760412,1.0,0.0,0.0 -650,4.0,52.374561116699454,19.0,3.70397663327298e-10,39.99999931419242,0.966524905653631,-27.548499889250973,0.0,1.0,0.0 -650,5.0,0.0,0.0,0.0,0.0,0.9527350798181292,-17.426588030535044,1.0,0.0,0.0 -650,6.0,12.676645365825346,10.9,0.0,0.0,0.9481012566230006,-28.180809144128528,1.0,0.0,0.0 -650,7.0,16.67979653398072,30.0,0.0,0.0,0.9400000020676088,-17.67409818603513,0.0,1.0,0.0 -650,8.0,0.0,0.0,0.0,0.0,1.007963627457057,-19.18050377422284,1.0,0.0,0.0 -650,9.0,3.224760663236272,2.0,0.0,0.0,1.001185203087223,-20.08292038761933,1.0,0.0,0.0 -650,10.0,0.0,0.0,3.7265896286389977e-10,23.99999939837686,1.0552690957491833,-19.180503774181084,0.0,1.0,0.0 -650,11.0,6.227124039352801,7.5,0.0,0.0,1.0211325534511284,-19.60068313493463,1.0,0.0,0.0 -650,12.0,0.0,0.0,3.4616564086400175e-10,23.999999369102383,1.0530401673840444,-19.600683134908813,0.0,1.0,0.0 -650,13.0,3.4471579503560155,1.6,0.0,0.0,1.008326552003088,-20.092773915435107,1.0,0.0,0.0 -650,14.0,4.559144385954729,2.5,0.0,0.0,1.0031742400541712,-20.100425673454435,1.0,0.0,0.0 -650,15.0,1.9459762622977503,1.8,0.0,0.0,1.00632009066808,-19.889399688054915,1.0,0.0,0.0 -650,16.0,5.003938960194216,5.8,0.0,0.0,0.9984120768657628,-20.129193925443715,1.0,0.0,0.0 -650,17.0,1.7791782969579435,0.9,0.0,0.0,0.9932226739015336,-20.446593701899065,1.0,0.0,0.0 -650,18.0,5.281935569093894,3.4,0.0,0.0,0.9896479136433888,-20.55293914878509,1.0,0.0,0.0 -650,19.0,1.223185079158586,0.7,0.0,0.0,0.9919110463565004,-20.46646614077998,1.0,0.0,0.0 -650,20.0,9.729881311488752,11.2,0.0,0.0,0.990658142594972,-20.26602421304518,1.0,0.0,0.0 -650,21.0,0.0,0.0,0.0,0.0,0.9910938569131768,-20.26247933965545,1.0,0.0,0.0 -650,22.0,1.7791782969579435,1.6,0.0,0.0,0.990940149631696,-20.29223430153949,1.0,0.0,0.0 -650,23.0,4.837140994854408,6.7,0.0,0.0,0.9813886266407214,-20.39979340897325,1.0,0.0,0.0 -650,24.0,0.0,0.0,0.0,0.0,0.9700308676151584,-20.12553461666572,1.0,0.0,0.0 -650,25.0,1.9459762622977503,2.3,0.0,0.0,0.9557044208141716,-20.220929058667465,1.0,0.0,0.0 -650,26.0,0.0,0.0,0.0,0.0,0.9701397506602116,-19.874087060610005,1.0,0.0,0.0 -650,27.0,0.0,0.0,0.0,0.0,0.9485441353629144,-17.747625350847535,1.0,0.0,0.0 -650,28.0,1.3343837227184574,0.9,0.0,0.0,0.95596928486356,-20.54503910843531,1.0,0.0,0.0 -650,29.0,5.893528108673187,1.9,0.0,0.0,0.9482280740749668,-21.048452285197516,1.0,0.0,0.0 -651,0.0,0.0,0.0,164.59900499082138,0.0005818724036821,1.0,0.0,0.0,0.0,1.0 -651,1.0,12.065052826246053,12.7,9.13372106636244e-07,9.071117206058638,0.9797849919895852,-3.769748115357609,0.0,1.0,0.0 -651,2.0,1.3343837227184574,1.2,0.0,0.0,0.9745131391572144,-4.980126789919259,1.0,0.0,0.0 -651,3.0,4.225548455275115,1.6,0.0,0.0,0.9679844912955868,-6.121138110302339,1.0,0.0,0.0 -651,4.0,52.374561116699454,19.0,-2.5060637482792163e-10,24.165665574192204,0.959906422769174,-9.0753942125987,0.0,1.0,0.0 -651,5.0,0.0,0.0,0.0,0.0,0.967622617394826,-7.216499398917379,1.0,0.0,0.0 -651,6.0,12.676645365825346,10.9,0.0,0.0,0.9579448955187236,-8.260366137442238,1.0,0.0,0.0 -651,7.0,16.67979653398072,30.0,1.7036082434807779e-10,29.37066449226252,0.9661673140572058,-7.644815147704572,0.0,1.0,0.0 -651,8.0,0.0,0.0,0.0,0.0,1.0173614026763376,-8.926714561223475,1.0,0.0,0.0 -651,9.0,3.224760663236272,2.0,0.0,0.0,1.0119769409162502,-9.810871556445822,1.0,0.0,0.0 -651,10.0,0.0,0.0,9.491766899657386e-10,19.7132129362643,1.0561837048197211,-8.926714561118198,0.0,1.0,0.0 -651,11.0,6.227124039352801,7.5,0.0,0.0,1.0181207140578046,-9.83479413868951,1.0,0.0,0.0 -651,12.0,0.0,0.0,5.871967939028245e-10,16.21544752209683,1.0399502454514726,-9.834794138645025,0.0,1.0,0.0 -651,13.0,3.4471579503560155,1.6,0.0,0.0,1.004250697031696,-10.385146666310108,1.0,0.0,0.0 -651,14.0,4.559144385954729,2.5,0.0,0.0,0.9977177136349648,-10.424342990133484,1.0,0.0,0.0 -651,15.0,1.9459762622977503,1.8,0.0,0.0,1.0096311562672378,-9.93532762378094,1.0,0.0,0.0 -651,16.0,5.003938960194216,5.8,0.0,0.0,1.0067883911957205,-9.945635047368858,1.0,0.0,0.0 -651,17.0,1.7791782969579435,0.9,0.0,0.0,0.977123615602066,-11.172925596151437,1.0,0.0,0.0 -651,18.0,5.281935569093894,3.4,0.0,0.0,0.967329638580115,-11.523583904190913,1.0,0.0,0.0 -651,19.0,1.223185079158586,0.7,0.0,0.0,0.9664065576201109,-11.55997570261183,1.0,0.0,0.0 -651,20.0,9.729881311488752,11.2,0.0,0.0,1.0009388194044186,-10.026598424934122,1.0,0.0,0.0 -651,21.0,0.0,0.0,0.0,0.0,1.0011691490244246,-10.034602808369424,1.0,0.0,0.0 -651,22.0,1.7791782969579435,1.6,0.0,0.0,0.9909272408848712,-10.440391207334576,1.0,0.0,0.0 -651,23.0,4.837140994854408,6.7,0.0,0.0,0.9886072434685472,-10.307155709034223,1.0,0.0,0.0 -651,24.0,0.0,0.0,0.0,0.0,0.981514011724635,-10.02596886078797,1.0,0.0,0.0 -651,25.0,1.9459762622977503,2.3,0.0,0.0,0.9673602167289336,-10.119111275567764,1.0,0.0,0.0 -651,26.0,0.0,0.0,0.0,0.0,0.984179483171293,-9.767857017159676,1.0,0.0,0.0 -651,27.0,0.0,0.0,0.0,0.0,0.9655584317864472,-7.575422386106214,1.0,0.0,0.0 -651,28.0,1.3343837227184574,0.9,0.0,0.0,0.970223462519254,-10.419534082477272,1.0,0.0,0.0 -651,29.0,5.893528108673187,1.9,0.0,0.0,0.9625997013035258,-10.908161047843231,1.0,0.0,0.0 -652,0.0,0.0,0.0,162.00190935943678,9.394101656567956e-05,1.0,0.0,0.0,0.0,1.0 -652,1.0,12.065052826246053,12.7,7.219947878649815,4.345374376849371,0.9742169999658596,-4.623148491598708,0.0,1.0,0.0 -652,2.0,1.3343837227184574,1.2,0.0,0.0,0.9892671213791588,-2.287441511278065,1.0,0.0,0.0 -652,3.0,4.225548455275115,1.6,0.0,0.0,0.9860601853922456,-2.78135252568214,1.0,0.0,0.0 -652,4.0,52.374561116699454,19.0,-8.276055097264007e-10,32.629609656441616,0.955253788789476,-12.865582358435402,0.0,1.0,0.0 -652,5.0,0.0,0.0,0.0,0.0,0.9466131050521104,-13.657134005767944,1.0,0.0,0.0 -652,6.0,12.676645365825346,10.9,0.0,0.0,0.9429083188727184,-13.613422068769948,1.0,0.0,0.0 -652,7.0,16.67979653398072,30.0,-6.4072364915683e-10,37.84230229391216,0.9482105964126184,-14.176663302997545,0.0,1.0,0.0 -652,8.0,0.0,0.0,0.0,0.0,0.990353696115755,-17.3465380837898,1.0,0.0,0.0 -652,9.0,3.224760663236272,2.0,0.0,0.0,0.9784171294422476,-19.275737331902864,1.0,0.0,0.0 -652,10.0,0.0,0.0,-1.026580703788117e-09,23.999723082421028,1.0384259022346611,-17.34653808390876,0.0,1.0,0.0 -652,11.0,6.227124039352801,7.5,0.0,0.0,0.9587983338739616,-23.096774822642416,1.0,0.0,0.0 -652,12.0,0.0,0.0,-2.1533569982879166e-10,19.62680661357214,0.9866477159924436,-23.09677482266068,0.0,1.0,0.0 -652,13.0,3.4471579503560155,1.6,0.0,0.0,0.94891184543949,-23.28124578994905,1.0,0.0,0.0 -652,14.0,4.559144385954729,2.5,0.0,0.0,0.949497982858301,-23.012826153415755,1.0,0.0,0.0 -652,15.0,1.9459762622977503,1.8,0.0,0.0,0.9629738793419688,-21.61023590700229,1.0,0.0,0.0 -652,16.0,5.003938960194216,5.8,0.0,0.0,0.9679944583303672,-20.082746553971496,1.0,0.0,0.0 -652,17.0,1.7791782969579435,0.9,0.0,0.0,0.9498598082145596,-22.069351319193853,1.0,0.0,0.0 -652,18.0,5.281935569093894,3.4,0.0,0.0,0.9526618177790314,-21.40347723665749,1.0,0.0,0.0 -652,19.0,1.223185079158586,0.7,0.0,0.0,0.95854740467415,-20.903013907002634,1.0,0.0,0.0 -652,20.0,9.729881311488752,11.2,0.0,0.0,0.966224437309534,-19.48119936773208,1.0,0.0,0.0 -652,21.0,0.0,0.0,0.0,0.0,0.9691345912385404,-19.173227181052766,1.0,0.0,0.0 -652,22.0,1.7791782969579435,1.6,0.0,0.0,0.9441882411506298,-23.14025932089405,1.0,0.0,0.0 -652,23.0,4.837140994854408,6.7,0.0,0.0,0.9576400651774002,-18.955897133379388,1.0,0.0,0.0 -652,24.0,0.0,0.0,0.0,0.0,0.9559934317697066,-17.954756509153082,1.0,0.0,0.0 -652,25.0,1.9459762622977503,2.3,0.0,0.0,0.9414500288292847,-18.05301725754149,1.0,0.0,0.0 -652,26.0,0.0,0.0,0.0,0.0,0.962107018980632,-17.241305859031375,1.0,0.0,0.0 -652,27.0,0.0,0.0,0.0,0.0,0.9445843671998356,-14.143321111511522,1.0,0.0,0.0 -652,28.0,1.3343837227184574,0.9,0.0,0.0,0.9478107791348602,-17.923675183725326,1.0,0.0,0.0 -652,29.0,5.893528108673187,1.9,0.0,0.0,0.9400006755171724,-18.43585619199,1.0,0.0,0.0 -653,0.0,0.0,0.0,164.56613101610566,0.0054575713261506,1.0,0.0,0.0,0.0,1.0 -653,1.0,12.065052826246053,12.7,2.443047334323367e-06,10.62449440634672,0.979842951955169,-3.769570033633805,0.0,1.0,0.0 -653,2.0,1.3343837227184574,1.2,0.0,0.0,0.974352391489168,-4.978020247286246,1.0,0.0,0.0 -653,3.0,4.225548455275115,1.6,0.0,0.0,0.9677860752043802,-6.118603367810639,1.0,0.0,0.0 -653,4.0,52.374561116699454,19.0,9.62345391302187e-10,24.334981332171,0.9592381275462356,-9.068935573404486,0.0,1.0,0.0 -653,5.0,0.0,0.0,0.0,0.0,0.9659165520820848,-7.182282638667147,1.0,0.0,0.0 -653,6.0,12.676645365825346,10.9,0.0,0.0,0.9566541944205524,-8.23770186720896,1.0,0.0,0.0 -653,7.0,16.67979653398072,30.0,1.4141602229779476e-09,31.632016191253637,0.9647053514259016,-7.628172168580682,0.0,1.0,0.0 -653,8.0,0.0,0.0,0.0,0.0,1.0134714191214609,-10.099557170396958,1.0,0.0,0.0 -653,9.0,3.224760663236272,2.0,0.0,0.0,1.0035537220934403,-11.61741087126161,1.0,0.0,0.0 -653,10.0,0.0,0.0,2.658452102300476e-09,23.71026366198567,1.0599973364254054,-10.099557170102043,0.0,1.0,0.0 -653,11.0,6.227124039352801,7.5,0.0,0.0,1.0262137237316369,-9.847485373462778,1.0,0.0,0.0 -653,12.0,0.0,0.0,3.771945310790848e-10,13.360077222731036,1.0441273509296694,-9.84748537343454,0.0,1.0,0.0 -653,13.0,3.4471579503560155,1.6,0.0,0.0,1.0135287277533362,-10.498989136574217,1.0,0.0,0.0 -653,14.0,4.559144385954729,2.5,0.0,0.0,1.0073220107375538,-10.671067120332996,1.0,0.0,0.0 -653,15.0,1.9459762622977503,1.8,0.0,0.0,0.9902869142178437,-11.975837240215183,1.0,0.0,0.0 -653,16.0,5.003938960194216,5.8,0.0,0.0,0.9948159729072938,-11.81305436114734,1.0,0.0,0.0 -653,17.0,1.7791782969579435,0.9,0.0,0.0,0.9966657619220436,-11.351082171358888,1.0,0.0,0.0 -653,18.0,5.281935569093894,3.4,0.0,0.0,0.9926996778173772,-11.658824220893814,1.0,0.0,0.0 -653,19.0,1.223185079158586,0.7,0.0,0.0,0.9947412217171616,-11.679608449946938,1.0,0.0,0.0 -653,20.0,9.729881311488752,11.2,0.0,0.0,0.9931475066784834,-11.773112388414685,1.0,0.0,0.0 -653,21.0,0.0,0.0,0.0,0.0,0.9936150114969188,-11.761098851651012,1.0,0.0,0.0 -653,22.0,1.7791782969579435,1.6,0.0,0.0,0.9946304555602528,-11.207419515451688,1.0,0.0,0.0 -653,23.0,4.837140994854408,6.7,0.0,0.0,0.9845840571672956,-11.786464390520893,1.0,0.0,0.0 -653,24.0,0.0,0.0,0.0,0.0,0.9728526031090992,-11.911040340822536,1.0,0.0,0.0 -653,25.0,1.9459762622977503,2.3,0.0,0.0,0.958568976922591,-12.005873851046548,1.0,0.0,0.0 -653,26.0,0.0,0.0,0.0,0.0,0.9823127221455064,-9.127155174910332,1.0,0.0,0.0 -653,27.0,0.0,0.0,0.0,0.0,0.9629759682262492,-7.425174180039819,1.0,0.0,0.0 -653,28.0,1.3343837227184574,0.9,0.0,0.0,0.9683285740335574,-9.781346607660277,1.0,0.0,0.0 -653,29.0,5.893528108673187,1.9,0.0,0.0,0.9606894085922104,-10.271901262013245,1.0,0.0,0.0 -654,0.0,0.0,0.0,164.5209309286065,0.0010433585650559,1.0,0.0,0.0,0.0,1.0 -654,1.0,12.065052826246053,12.7,1.2565468769123622e-06,9.787172981505208,0.9798967175611962,-3.773202766265221,0.0,1.0,0.0 -654,2.0,1.3343837227184574,1.2,0.0,0.0,0.9742088973884676,-4.96400812100435,1.0,0.0,0.0 -654,3.0,4.225548455275115,1.6,0.0,0.0,0.9676070442087568,-6.101273140629437,1.0,0.0,0.0 -654,4.0,52.374561116699454,19.0,1.542726473686786e-10,24.13252204103348,0.9598457045626472,-9.08293926565208,0.0,1.0,0.0 -654,5.0,0.0,0.0,0.0,0.0,0.9674524490391548,-7.228438079485202,1.0,0.0,0.0 -654,6.0,12.676645365825346,10.9,0.0,0.0,0.957817720830822,-8.27053980031723,1.0,0.0,0.0 -654,7.0,16.67979653398072,30.0,5.372368249569133e-10,33.19435473736447,0.9660420717934852,-7.888906439823201,0.0,1.0,0.0 -654,8.0,0.0,0.0,0.0,0.0,1.015726743237951,-9.1526412249939,1.0,0.0,0.0 -654,9.0,3.224760663236272,2.0,0.0,0.0,1.0067976463229933,-10.152340202162994,1.0,0.0,0.0 -654,10.0,0.0,0.0,1.6384265614867803e-09,22.546400431207523,1.0599699891568437,-9.152641224812538,0.0,1.0,0.0 -654,11.0,6.227124039352801,7.5,0.0,0.0,1.014325774667654,-9.654951208188615,1.0,0.0,0.0 -654,12.0,0.0,0.0,6.68812237854484e-10,10.40281855222264,1.0284863380454707,-9.654951208137192,0.0,1.0,0.0 -654,13.0,3.4471579503560155,1.6,0.0,0.0,1.0030395474181182,-10.15083209702983,1.0,0.0,0.0 -654,14.0,4.559144385954729,2.5,0.0,0.0,0.9994167719693656,-10.192541012096203,1.0,0.0,0.0 -654,15.0,1.9459762622977503,1.8,0.0,0.0,1.0048671691709326,-9.97715011615292,1.0,0.0,0.0 -654,16.0,5.003938960194216,5.8,0.0,0.0,1.001829614926967,-10.195259311188416,1.0,0.0,0.0 -654,17.0,1.7791782969579435,0.9,0.0,0.0,0.9927705707266928,-10.532438418620394,1.0,0.0,0.0 -654,18.0,5.281935569093894,3.4,0.0,0.0,0.9911537093999616,-10.63437480869824,1.0,0.0,0.0 -654,19.0,1.223185079158586,0.7,0.0,0.0,0.994443377642568,-10.546248730772318,1.0,0.0,0.0 -654,20.0,9.729881311488752,11.2,0.0,0.0,0.9959077602611162,-10.363133191584744,1.0,0.0,0.0 -654,21.0,0.0,0.0,0.0,0.0,0.996204935235266,-10.369003048397497,1.0,0.0,0.0 -654,22.0,1.7791782969579435,1.6,0.0,0.0,0.9901210884789478,-10.439800930524974,1.0,0.0,0.0 -654,23.0,4.837140994854408,6.7,0.0,0.0,0.9845074435704612,-10.61983590985382,1.0,0.0,0.0 -654,24.0,0.0,0.0,0.0,0.0,0.9745000175048956,-10.6762380975446,1.0,0.0,0.0 -654,25.0,1.9459762622977503,2.3,0.0,0.0,0.9602412712970736,-10.770746410131908,1.0,0.0,0.0 -654,26.0,0.0,0.0,0.0,0.0,0.9755291563604516,-10.631335107118474,1.0,0.0,0.0 -654,27.0,0.0,0.0,0.0,0.0,0.957475855398352,-8.794889275581477,1.0,0.0,0.0 -654,28.0,1.3343837227184574,0.9,0.0,0.0,0.9614418068021438,-11.29478768295038,1.0,0.0,0.0 -654,29.0,5.893528108673187,1.9,0.0,0.0,0.9537461199099224,-11.79244549865185,1.0,0.0,0.0 -655,0.0,0.0,0.0,138.0000229158485,0.0006496011721424,1.0,0.0,0.0,0.0,1.0 -655,1.0,12.411812498546146,12.7,33.63837163074865,11.792291625839994,0.975178070667706,-4.637417255132652,0.0,1.0,0.0 -655,2.0,1.3727350228806798,1.2,0.0,0.0,0.9475413125203824,-8.26711461929516,1.0,0.0,0.0 -655,3.0,4.346994239122153,1.6,0.0,0.0,0.9480617943470846,-8.240859857795439,1.0,0.0,0.0 -655,4.0,53.87984964806669,19.0,-1.5807264680652355e-09,28.664745013334624,0.955506656940367,-11.855447360703296,0.0,1.0,0.0 -655,5.0,0.0,0.0,0.0,0.0,0.9550394577898303,-11.532658245791716,1.0,0.0,0.0 -655,6.0,13.04098271736646,10.9,0.0,0.0,0.9482776122331128,-11.961505535314032,1.0,0.0,0.0 -655,7.0,17.1591877860085,30.0,5.750905318043235e-10,31.48812414702339,0.95417061799191,-11.996468767864142,0.0,1.0,0.0 -655,8.0,0.0,0.0,0.0,0.0,1.001726729790282,-13.281215602220446,1.0,0.0,0.0 -655,9.0,3.317442971961643,2.0,0.0,0.0,0.9902642272529888,-14.192998657569683,1.0,0.0,0.0 -655,10.0,0.0,0.0,-2.3225409825990258e-10,23.997681082398536,1.0492968494176238,-13.281215602246782,0.0,1.0,0.0 -655,11.0,6.406096773443172,7.5,0.0,0.0,1.0144758021348783,-12.30265885091358,1.0,0.0,0.0 -655,12.0,0.0,0.0,-2.642259846867744e-09,16.830236129888686,1.0371931999947597,-12.302658851115009,0.0,1.0,0.0 -655,13.0,3.5462321424417564,1.6,0.0,0.0,0.9883001644804814,-13.758973447428364,1.0,0.0,0.0 -655,14.0,4.690177994842323,2.5,0.0,0.0,0.9642050672240232,-14.42463480461029,1.0,0.0,0.0 -655,15.0,2.0019052417009915,1.8,0.0,0.0,0.9966967708816544,-13.18814256802582,1.0,0.0,0.0 -655,16.0,5.1477563358025495,5.8,0.0,0.0,0.9880899878904376,-13.993714749300835,1.0,0.0,0.0 -655,17.0,1.8303133638409064,0.9,0.0,0.0,0.9637639367964695,-14.73532969586965,1.0,0.0,0.0 -655,18.0,5.433742798902691,3.4,0.0,0.0,0.9659232496329904,-14.808780261887891,1.0,0.0,0.0 -655,19.0,1.2583404376406233,0.7,0.0,0.0,0.9713679797583368,-14.692468174431657,1.0,0.0,0.0 -655,20.0,10.009526208504957,11.2,0.0,0.0,0.9784328421934136,-14.41319854499582,1.0,0.0,0.0 -655,21.0,0.0,0.0,0.0,0.0,0.9785305550603908,-14.415690444313476,1.0,0.0,0.0 -655,22.0,1.8303133638409064,1.6,0.0,0.0,0.961030062047732,-14.58511224111301,1.0,0.0,0.0 -655,23.0,4.976164457942464,6.7,0.0,0.0,0.963828940180423,-14.62537185827416,1.0,0.0,0.0 -655,24.0,0.0,0.0,0.0,0.0,0.9604344029415056,-14.451715434412732,1.0,0.0,0.0 -655,25.0,2.0019052417009915,2.3,0.0,0.0,0.945807167408059,-14.562476468773829,1.0,0.0,0.0 -655,26.0,0.0,0.0,0.0,0.0,0.9656605777379774,-14.245298295638548,1.0,0.0,0.0 -655,27.0,0.0,0.0,0.0,0.0,0.95242623457924,-11.904953412013224,1.0,0.0,0.0 -655,28.0,1.3727350228806798,0.9,0.0,0.0,0.9511788700010408,-14.947846382361565,1.0,0.0,0.0 -655,29.0,6.062913017723002,1.9,0.0,0.0,0.9432427494410164,-15.473400988061089,1.0,0.0,0.0 -656,0.0,0.0,0.0,169.43021268871146,0.0049760639929452,1.0,0.0,0.0,0.0,1.0 -656,1.0,12.411812498546146,12.7,6.186019346045368e-06,9.99937649690979,0.9793632249654513,-3.885359908604424,0.0,1.0,0.0 -656,2.0,1.3727350228806798,1.2,0.0,0.0,0.9737943102162264,-5.126100677476235,1.0,0.0,0.0 -656,3.0,4.346994239122153,1.6,0.0,0.0,0.9671276814065785,-6.301925528041478,1.0,0.0,0.0 -656,4.0,53.87984964806669,19.0,-3.1424674990614e-09,24.497899069151487,0.9588503350979972,-9.35408713434584,0.0,1.0,0.0 -656,5.0,0.0,0.0,0.0,0.0,0.9664872365494912,-7.431114711704162,1.0,0.0,0.0 -656,6.0,13.04098271736646,10.9,0.0,0.0,0.9567729083736416,-8.512520035280236,1.0,0.0,0.0 -656,7.0,17.1591877860085,30.0,-5.3616363748054395e-09,29.8301579008868,0.9651553275693406,-7.875023373579082,0.0,1.0,0.0 -656,8.0,0.0,0.0,0.0,0.0,1.014246396765919,-9.216480104893243,1.0,0.0,0.0 -656,9.0,3.317442971961643,2.0,0.0,0.0,1.010566313412306,-10.139683561561515,1.0,0.0,0.0 -656,10.0,0.0,0.0,-1.1213338546662562e-08,16.981154579752364,1.047951026683286,-9.21648010615054,0.0,1.0,0.0 -656,11.0,6.406096773443172,7.5,0.0,0.0,1.018382065197749,-10.089701345782858,1.0,0.0,0.0 -656,12.0,0.0,0.0,-8.033645222292533e-09,18.499791558743368,1.043209024675311,-10.089701346389427,0.0,1.0,0.0 -656,13.0,3.5462321424417564,1.6,0.0,0.0,1.0068841038339862,-10.533980422177736,1.0,0.0,0.0 -656,14.0,4.690177994842323,2.5,0.0,0.0,1.003574364572421,-10.51116410345008,1.0,0.0,0.0 -656,15.0,2.0019052417009915,1.8,0.0,0.0,0.9961455738896442,-10.48370280194056,1.0,0.0,0.0 -656,16.0,5.1477563358025495,5.8,0.0,0.0,0.9820166096450392,-10.885497847318373,1.0,0.0,0.0 -656,17.0,1.8303133638409064,0.9,0.0,0.0,0.996730683498632,-10.745729039556648,1.0,0.0,0.0 -656,18.0,5.433742798902691,3.4,0.0,0.0,0.9950167043026736,-10.781765554596364,1.0,0.0,0.0 -656,19.0,1.2583404376406233,0.7,0.0,0.0,0.9982941191112508,-10.654068527643725,1.0,0.0,0.0 -656,20.0,10.009526208504957,11.2,0.0,0.0,0.9998131913431896,-10.350991430173872,1.0,0.0,0.0 -656,21.0,0.0,0.0,0.0,0.0,1.0001714074216137,-10.3537537619704,1.0,0.0,0.0 -656,22.0,1.8303133638409064,1.6,0.0,0.0,0.9945346319754363,-10.60942965176706,1.0,0.0,0.0 -656,23.0,4.976164457942464,6.7,0.0,0.0,0.9892679216862228,-10.58101189379054,1.0,0.0,0.0 -656,24.0,0.0,0.0,0.0,0.0,0.9814198874629132,-10.300116130505724,1.0,0.0,0.0 -656,25.0,2.0019052417009915,2.3,0.0,0.0,0.967114999860363,-10.406120628856938,1.0,0.0,0.0 -656,26.0,0.0,0.0,0.0,0.0,0.9836830299466808,-10.036011640418506,1.0,0.0,0.0 -656,27.0,0.0,0.0,0.0,0.0,0.9644943027509166,-7.800203233146742,1.0,0.0,0.0 -656,28.0,1.3727350228806798,0.9,0.0,0.0,0.9694833516524648,-10.712683961503435,1.0,0.0,0.0 -656,29.0,6.062913017723002,1.9,0.0,0.0,0.9617021364582654,-11.218438771561532,1.0,0.0,0.0 -657,0.0,0.0,0.0,87.87007734914069,3.446156249253818e-07,1.0,0.0,0.0,0.0,1.0 -657,1.0,12.411812498546146,12.7,82.02660831163124,44.18716321571901,0.9969512373059904,-10.444479277253697,0.0,1.0,0.0 -657,2.0,1.3727350228806798,1.2,0.0,0.0,0.9677224711863434,-8.571891858481589,1.0,0.0,0.0 -657,3.0,4.346994239122153,1.6,0.0,0.0,0.960762726909102,-10.589210178399524,1.0,0.0,0.0 -657,4.0,53.87984964806669,19.0,1.1706157825981404e-08,39.9999341961167,0.9773161813271845,-15.219460624204064,0.0,1.0,0.0 -657,5.0,0.0,0.0,0.0,0.0,0.9547966997203748,-12.060850223724554,1.0,0.0,0.0 -657,6.0,13.04098271736646,10.9,0.0,0.0,0.9575052612026752,-13.641116429801944,1.0,0.0,0.0 -657,7.0,17.1591877860085,30.0,0.0,0.0,0.9418026565007138,-12.325394499168327,0.0,1.0,0.0 -657,8.0,0.0,0.0,0.0,0.0,0.981915087351573,-13.747110415549166,1.0,0.0,0.0 -657,9.0,3.317442971961643,2.0,0.0,0.0,0.9852386950832668,-14.63067652186732,1.0,0.0,0.0 -657,10.0,0.0,0.0,0.0,0.0,0.981915087351573,-13.747110415549166,0.0,1.0,0.0 -657,11.0,6.406096773443172,7.5,0.0,0.0,1.0140544616998823,-14.581293992367817,1.0,0.0,0.0 -657,12.0,0.0,0.0,1.4329640636743288e-08,23.99999477806302,1.0461715580135011,-14.581293991284328,0.0,1.0,0.0 -657,13.0,3.5462321424417564,1.6,0.0,0.0,0.9992453171262856,-15.112832078365726,1.0,0.0,0.0 -657,14.0,4.690177994842323,2.5,0.0,0.0,0.9922174663582392,-15.097408543247733,1.0,0.0,0.0 -657,15.0,2.0019052417009915,1.8,0.0,0.0,0.9955753560876712,-14.676488045423117,1.0,0.0,0.0 -657,16.0,5.1477563358025495,5.8,0.0,0.0,0.9839032331454346,-14.76644065804996,1.0,0.0,0.0 -657,17.0,1.8303133638409064,0.9,0.0,0.0,0.9802876567330744,-15.310097721642846,1.0,0.0,0.0 -657,18.0,5.433742798902691,3.4,0.0,0.0,0.9756009453375222,-15.329792961077958,1.0,0.0,0.0 -657,19.0,1.2583404376406233,0.7,0.0,0.0,0.9773947350614416,-15.187024779705762,1.0,0.0,0.0 -657,20.0,10.009526208504957,11.2,0.0,0.0,0.9767107511737124,-14.778173144803986,1.0,0.0,0.0 -657,21.0,0.0,0.0,0.0,0.0,0.9778745129635796,-14.75822462627911,1.0,0.0,0.0 -657,22.0,1.8303133638409064,1.6,0.0,0.0,0.9746443621042148,-15.439465919700089,1.0,0.0,0.0 -657,23.0,4.976164457942464,6.7,0.0,0.0,0.9582007307070536,-15.745070700593796,1.0,0.0,0.0 -657,24.0,0.0,0.0,0.0,0.0,0.9563445831325486,-15.356357582101571,1.0,0.0,0.0 -657,25.0,2.0019052417009915,2.3,0.0,0.0,0.9416527996442174,-15.468083025597323,1.0,0.0,0.0 -657,26.0,0.0,0.0,0.0,0.0,0.9624963972492658,-15.014411470492371,1.0,0.0,0.0 -657,27.0,0.0,0.0,0.0,0.0,0.9492388548091508,-12.421651436413578,1.0,0.0,0.0 -657,28.0,1.3727350228806798,0.9,0.0,0.0,0.9479639775766796,-15.721656291293,1.0,0.0,0.0 -657,29.0,6.062913017723002,1.9,0.0,0.0,0.940000000651268,-16.250808563288935,1.0,0.0,0.0 -658,0.0,0.0,0.0,169.34672097664333,0.0008031398020413,1.0,0.0,0.0,0.0,1.0 -658,1.0,12.411812498546146,12.7,9.149031803834754e-07,11.257763797177624,0.9795500597779216,-3.891474232520013,0.0,1.0,0.0 -658,2.0,1.3727350228806798,1.2,0.0,0.0,0.9732777222526278,-5.102940371594023,1.0,0.0,0.0 -658,3.0,4.346994239122153,1.6,0.0,0.0,0.9664871726491524,-6.273439508710683,1.0,0.0,0.0 -658,4.0,53.87984964806669,19.0,3.5247782151455567e-10,24.625922912352934,0.9588435563553313,-9.367607427372263,0.0,1.0,0.0 -658,5.0,0.0,0.0,0.0,0.0,0.9660168270951972,-7.445218249140368,1.0,0.0,0.0 -658,6.0,13.04098271736646,10.9,0.0,0.0,0.9564892040063466,-8.52635403572564,1.0,0.0,0.0 -658,7.0,17.1591877860085,30.0,5.511429801410245e-10,30.779915312387004,0.965005940661015,-7.896023456543146,0.0,1.0,0.0 -658,8.0,0.0,0.0,0.0,0.0,1.014917809081878,-9.342822022264365,1.0,0.0,0.0 -658,9.0,3.317442971961643,2.0,0.0,0.0,1.0058805159239468,-10.328139834209091,1.0,0.0,0.0 -658,10.0,0.0,0.0,1.2026001784346715e-09,22.974564369916397,1.059999974224737,-9.342822022131145,0.0,1.0,0.0 -658,11.0,6.406096773443172,7.5,0.0,0.0,1.0133279713242014,-9.839970778174669,1.0,0.0,0.0 -658,12.0,0.0,0.0,6.80375949653081e-10,10.44776151934337,1.027562498324679,-9.839970778122256,0.0,1.0,0.0 -658,13.0,3.5462321424417564,1.6,0.0,0.0,1.0020091737386192,-10.337485755118648,1.0,0.0,0.0 -658,14.0,4.690177994842323,2.5,0.0,0.0,0.99857642061264,-10.368096396734286,1.0,0.0,0.0 -658,15.0,2.0019052417009915,1.8,0.0,0.0,1.0038539936428057,-10.16517053992002,1.0,0.0,0.0 -658,16.0,5.1477563358025495,5.8,0.0,0.0,1.000844051391361,-10.379760971635008,1.0,0.0,0.0 -658,17.0,1.8303133638409064,0.9,0.0,0.0,0.9917736726868124,-10.722879608262645,1.0,0.0,0.0 -658,18.0,5.433742798902691,3.4,0.0,0.0,0.9901000395806704,-10.829672352736312,1.0,0.0,0.0 -658,19.0,1.2583404376406233,0.7,0.0,0.0,0.9934162973582455,-10.73778681473853,1.0,0.0,0.0 -658,20.0,10.009526208504957,11.2,0.0,0.0,0.9951558128153676,-10.519949477226652,1.0,0.0,0.0 -658,21.0,0.0,0.0,0.0,0.0,0.9955429982045548,-10.515861366229473,1.0,0.0,0.0 -658,22.0,1.8303133638409064,1.6,0.0,0.0,0.989880386874819,-10.559381385388006,1.0,0.0,0.0 -658,23.0,4.976164457942464,6.7,0.0,0.0,0.985121163617605,-10.65498940766298,1.0,0.0,0.0 -658,24.0,0.0,0.0,0.0,0.0,0.9786378642058172,-10.370867430881669,1.0,0.0,0.0 -658,25.0,2.0019052417009915,2.3,0.0,0.0,0.9642910750270648,-10.477484590768375,1.0,0.0,0.0 -658,26.0,0.0,0.0,0.0,0.0,0.9817687581904856,-10.102828946598288,1.0,0.0,0.0 -658,27.0,0.0,0.0,0.0,0.0,0.9639091564138708,-7.818510824708632,1.0,0.0,0.0 -658,28.0,1.3727350228806798,0.9,0.0,0.0,0.9675396619642156,-10.782180857132811,1.0,0.0,0.0 -658,29.0,6.062913017723002,1.9,0.0,0.0,0.9597422900724112,-11.289984417819998,1.0,0.0,0.0 -659,0.0,0.0,0.0,169.34672097664333,0.0008031398020413,1.0,0.0,0.0,0.0,1.0 -659,1.0,12.411812498546146,12.7,9.149031803834754e-07,11.257763797177624,0.9795500597779216,-3.891474232520013,0.0,1.0,0.0 -659,2.0,1.3727350228806798,1.2,0.0,0.0,0.9732777222526278,-5.102940371594023,1.0,0.0,0.0 -659,3.0,4.346994239122153,1.6,0.0,0.0,0.9664871726491524,-6.273439508710683,1.0,0.0,0.0 -659,4.0,53.87984964806669,19.0,3.5247782151455567e-10,24.625922912352934,0.9588435563553313,-9.367607427372263,0.0,1.0,0.0 -659,5.0,0.0,0.0,0.0,0.0,0.9660168270951972,-7.445218249140368,1.0,0.0,0.0 -659,6.0,13.04098271736646,10.9,0.0,0.0,0.9564892040063466,-8.52635403572564,1.0,0.0,0.0 -659,7.0,17.1591877860085,30.0,5.511429801410245e-10,30.779915312387004,0.965005940661015,-7.896023456543146,0.0,1.0,0.0 -659,8.0,0.0,0.0,0.0,0.0,1.014917809081878,-9.342822022264365,1.0,0.0,0.0 -659,9.0,3.317442971961643,2.0,0.0,0.0,1.0058805159239468,-10.328139834209091,1.0,0.0,0.0 -659,10.0,0.0,0.0,1.2026001784346715e-09,22.974564369916397,1.059999974224737,-9.342822022131145,0.0,1.0,0.0 -659,11.0,6.406096773443172,7.5,0.0,0.0,1.0133279713242014,-9.839970778174669,1.0,0.0,0.0 -659,12.0,0.0,0.0,6.80375949653081e-10,10.44776151934337,1.027562498324679,-9.839970778122256,0.0,1.0,0.0 -659,13.0,3.5462321424417564,1.6,0.0,0.0,1.0020091737386192,-10.337485755118648,1.0,0.0,0.0 -659,14.0,4.690177994842323,2.5,0.0,0.0,0.99857642061264,-10.368096396734286,1.0,0.0,0.0 -659,15.0,2.0019052417009915,1.8,0.0,0.0,1.0038539936428057,-10.16517053992002,1.0,0.0,0.0 -659,16.0,5.1477563358025495,5.8,0.0,0.0,1.000844051391361,-10.379760971635008,1.0,0.0,0.0 -659,17.0,1.8303133638409064,0.9,0.0,0.0,0.9917736726868124,-10.722879608262645,1.0,0.0,0.0 -659,18.0,5.433742798902691,3.4,0.0,0.0,0.9901000395806704,-10.829672352736312,1.0,0.0,0.0 -659,19.0,1.2583404376406233,0.7,0.0,0.0,0.9934162973582455,-10.73778681473853,1.0,0.0,0.0 -659,20.0,10.009526208504957,11.2,0.0,0.0,0.9951558128153676,-10.519949477226652,1.0,0.0,0.0 -659,21.0,0.0,0.0,0.0,0.0,0.9955429982045548,-10.515861366229473,1.0,0.0,0.0 -659,22.0,1.8303133638409064,1.6,0.0,0.0,0.989880386874819,-10.559381385388006,1.0,0.0,0.0 -659,23.0,4.976164457942464,6.7,0.0,0.0,0.985121163617605,-10.65498940766298,1.0,0.0,0.0 -659,24.0,0.0,0.0,0.0,0.0,0.9786378642058172,-10.370867430881669,1.0,0.0,0.0 -659,25.0,2.0019052417009915,2.3,0.0,0.0,0.9642910750270648,-10.477484590768375,1.0,0.0,0.0 -659,26.0,0.0,0.0,0.0,0.0,0.9817687581904856,-10.102828946598288,1.0,0.0,0.0 -659,27.0,0.0,0.0,0.0,0.0,0.9639091564138708,-7.818510824708632,1.0,0.0,0.0 -659,28.0,1.3727350228806798,0.9,0.0,0.0,0.9675396619642156,-10.782180857132811,1.0,0.0,0.0 -659,29.0,6.062913017723002,1.9,0.0,0.0,0.9597422900724112,-11.289984417819998,1.0,0.0,0.0 -660,0.0,0.0,0.0,169.38611477465648,0.0115137080591409,1.0,0.0,0.0,0.0,1.0 -660,1.0,12.411812498546146,12.7,1.0019857834701389e-05,10.467604451551722,0.9793752045795224,-3.885950517199568,0.0,1.0,0.0 -660,2.0,1.3727350228806798,1.2,0.0,0.0,0.9737607022309837,-5.120089772846133,1.0,0.0,0.0 -660,3.0,4.346994239122153,1.6,0.0,0.0,0.9670852396259229,-6.294477972118674,1.0,0.0,0.0 -660,4.0,53.87984964806669,19.0,-6.318967955532155e-09,24.33756083441169,0.9584829992776092,-9.3539303787011,0.0,1.0,0.0 -660,5.0,0.0,0.0,0.0,0.0,0.9660807720519264,-7.431139587674486,1.0,0.0,0.0 -660,6.0,13.04098271736646,10.9,0.0,0.0,0.9563786820584136,-8.512680169161737,1.0,0.0,0.0 -660,7.0,17.1591877860085,30.0,-9.103578942689246e-09,28.19385228906236,0.9641926374963338,-7.854416295983541,0.0,1.0,0.0 -660,8.0,0.0,0.0,0.0,0.0,1.016024537126645,-9.418457340873328,1.0,0.0,0.0 -660,9.0,3.317442971961643,2.0,0.0,0.0,1.0081687359345466,-10.44807103489178,1.0,0.0,0.0 -660,10.0,0.0,0.0,-1.8393012822014742e-08,22.406841121780648,1.059992969805818,-9.41845734290864,0.0,1.0,0.0 -660,11.0,6.406096773443172,7.5,0.0,0.0,1.0197769649172022,-9.995037112902468,1.0,0.0,0.0 -660,12.0,0.0,0.0,-1.118411812823208e-08,14.709377502591517,1.0395859367167497,-9.995037113748694,0.0,1.0,0.0 -660,13.0,3.5462321424417564,1.6,0.0,0.0,1.007839094223916,-10.506081622812736,1.0,0.0,0.0 -660,14.0,4.690177994842323,2.5,0.0,0.0,1.0036261264441064,-10.540202155020843,1.0,0.0,0.0 -660,15.0,2.0019052417009915,1.8,0.0,0.0,1.0085531957325653,-10.295170568264902,1.0,0.0,0.0 -660,16.0,5.1477563358025495,5.8,0.0,0.0,1.0038942774554414,-10.505070275183137,1.0,0.0,0.0 -660,17.0,1.8303133638409064,0.9,0.0,0.0,0.9958915902711378,-10.873272760514658,1.0,0.0,0.0 -660,18.0,5.433742798902691,3.4,0.0,0.0,0.9936554280524462,-10.96810589015405,1.0,0.0,0.0 -660,19.0,1.2583404376406233,0.7,0.0,0.0,0.9966603750239476,-10.870902281968103,1.0,0.0,0.0 -660,20.0,10.009526208504957,11.2,0.0,0.0,0.9972400949694424,-10.679080605416695,1.0,0.0,0.0 -660,21.0,0.0,0.0,0.0,0.0,0.997550332194756,-10.687799474502926,1.0,0.0,0.0 -660,22.0,1.8303133638409064,1.6,0.0,0.0,0.9930682977517036,-10.800513519242644,1.0,0.0,0.0 -660,23.0,4.976164457942464,6.7,0.0,0.0,0.9858234382016564,-10.992305688774682,1.0,0.0,0.0 -660,24.0,0.0,0.0,0.0,0.0,0.973993165231006,-11.127581819123666,1.0,0.0,0.0 -660,25.0,2.0019052417009915,2.3,0.0,0.0,0.9595758615534186,-11.2352338085535,1.0,0.0,0.0 -660,26.0,0.0,0.0,0.0,0.0,0.9836448547870544,-9.483422982114392,1.0,0.0,0.0 -660,27.0,0.0,0.0,0.0,0.0,0.9643095054754448,-7.736820723331738,1.0,0.0,0.0 -660,28.0,1.3727350228806798,0.9,0.0,0.0,0.9694445910517304,-10.16014858476085,1.0,0.0,0.0 -660,29.0,6.062913017723002,1.9,0.0,0.0,0.9616630543283964,-10.665944128978694,1.0,0.0,0.0 -661,0.0,0.0,0.0,136.53350574365172,1.713026946958962e-05,1.0,0.0,0.0,0.0,1.0 -661,1.0,12.411812498546146,12.7,39.426083470758485,20.589244339923876,0.9691933715314316,-17.998994892052984,0.0,1.0,0.0 -661,2.0,1.3727350228806798,1.2,0.0,0.0,0.9615240655692012,-13.510291163574523,1.0,0.0,0.0 -661,3.0,4.346994239122153,1.6,0.0,0.0,0.9565512246661712,-16.73181464199039,1.0,0.0,0.0 -661,4.0,53.87984964806669,19.0,2.3266118191132304e-12,27.326622506472205,0.9513387379611992,-22.33588509758889,0.0,1.0,0.0 -661,5.0,0.0,0.0,0.0,0.0,0.9579121667287184,-18.97233078986712,1.0,0.0,0.0 -661,6.0,13.04098271736646,10.9,0.0,0.0,0.9486513394725916,-20.64429023029348,1.0,0.0,0.0 -661,7.0,17.1591877860085,30.0,2.460730245935751e-12,39.9999707794932,0.9597684060603636,-19.72033300841342,0.0,1.0,0.0 -661,8.0,0.0,0.0,0.0,0.0,1.01277586219954,-21.46342799576128,1.0,0.0,0.0 -661,9.0,3.317442971961643,2.0,0.0,0.0,1.006227500846239,-22.74549311369824,1.0,0.0,0.0 -661,10.0,0.0,0.0,3.849049968728283e-13,23.99998942320544,1.0598757040123905,-21.463427995761243,0.0,1.0,0.0 -661,11.0,6.406096773443172,7.5,0.0,0.0,1.028729816166733,-21.1558667034812,1.0,0.0,0.0 -661,12.0,0.0,0.0,3.654272734431973e-12,23.67594410572483,1.0599999329998622,-21.15586670348093,0.0,1.0,0.0 -661,13.0,3.5462321424417564,1.6,0.0,0.0,1.017159679282243,-21.68054710677734,1.0,0.0,0.0 -661,14.0,4.690177994842323,2.5,0.0,0.0,1.013077694561601,-21.74230749085656,1.0,0.0,0.0 -661,15.0,2.0019052417009915,1.8,0.0,0.0,1.0119942881205977,-21.914857407630123,1.0,0.0,0.0 -661,16.0,5.1477563358025495,5.8,0.0,0.0,1.0038665939053768,-22.596663281676857,1.0,0.0,0.0 -661,17.0,1.8303133638409064,0.9,0.0,0.0,1.0091785563095492,-21.912312402807025,1.0,0.0,0.0 -661,18.0,5.433742798902691,3.4,0.0,0.0,0.986917945443472,-23.47745631675337,1.0,0.0,0.0 -661,19.0,1.2583404376406233,0.7,0.0,0.0,0.991135892466505,-23.328738780823286,1.0,0.0,0.0 -661,20.0,10.009526208504957,11.2,0.0,0.0,0.9942805809970674,-22.95163433546904,1.0,0.0,0.0 -661,21.0,0.0,0.0,0.0,0.0,0.9987822517774524,-22.783519774517973,1.0,0.0,0.0 -661,22.0,1.8303133638409064,1.6,0.0,0.0,0.9999099418449012,-22.24262786911548,1.0,0.0,0.0 -661,23.0,4.976164457942464,6.7,0.0,0.0,0.9892406359799794,-22.766921006324235,1.0,0.0,0.0 -661,24.0,0.0,0.0,0.0,0.0,0.9758599208556,-22.71937605224409,1.0,0.0,0.0 -661,25.0,2.0019052417009915,2.3,0.0,0.0,0.961471042123418,-22.826610317355925,1.0,0.0,0.0 -661,26.0,0.0,0.0,0.0,0.0,0.974810254948029,-22.606858648913207,1.0,0.0,0.0 -661,27.0,0.0,0.0,0.0,0.0,0.9529989476049496,-20.704438573497843,1.0,0.0,0.0 -661,28.0,1.3727350228806798,0.9,0.0,0.0,0.9604731565704008,-23.296087086990887,1.0,0.0,0.0 -661,29.0,6.062913017723002,1.9,0.0,0.0,0.9526164662076156,-23.81144526847787,1.0,0.0,0.0 -662,0.0,0.0,0.0,169.3593563516522,0.001223653369653,1.0,0.0,0.0,0.0,1.0 -662,1.0,12.411812498546146,12.7,1.3009488767122242e-06,11.329838814415346,0.9795422678336366,-3.893051300879194,0.0,1.0,0.0 -662,2.0,1.3727350228806798,1.2,0.0,0.0,0.973289324625196,-5.099616593322869,1.0,0.0,0.0 -662,3.0,4.346994239122153,1.6,0.0,0.0,0.9665009072786134,-6.269304276970881,1.0,0.0,0.0 -662,4.0,53.87984964806669,19.0,3.3102479133169394e-11,24.649297852190955,0.9587982175161728,-9.372958692122747,0.0,1.0,0.0 -662,5.0,0.0,0.0,0.0,0.0,0.9658852945394488,-7.452548221589836,1.0,0.0,0.0 -662,6.0,13.04098271736646,10.9,0.0,0.0,0.9563917368094754,-8.532898533020001,1.0,0.0,0.0 -662,7.0,17.1591877860085,30.0,5.183446708887349e-11,30.862040459232414,0.9649169735448524,-7.903728067101608,0.0,1.0,0.0 -662,8.0,0.0,0.0,0.0,0.0,1.0142813143681202,-9.402862155736388,1.0,0.0,0.0 -662,9.0,3.317442971961643,2.0,0.0,0.0,1.004666539368508,-10.416627460647028,1.0,0.0,0.0 -662,10.0,0.0,0.0,1.2713767417048138e-10,23.29893817875652,1.05999998611041,-9.402862155722296,0.0,1.0,0.0 -662,11.0,6.406096773443172,7.5,0.0,0.0,1.013720935720863,-9.752303463335847,1.0,0.0,0.0 -662,12.0,0.0,0.0,6.043126926902128e-11,10.020490460739293,1.0273758091566612,-9.752303463331192,0.0,1.0,0.0 -662,13.0,3.5462321424417564,1.6,0.0,0.0,1.002965005003909,-10.215571166307386,1.0,0.0,0.0 -662,14.0,4.690177994842323,2.5,0.0,0.0,1.0003021871920426,-10.225476588260229,1.0,0.0,0.0 -662,15.0,2.0019052417009915,1.8,0.0,0.0,1.0034293519574158,-10.149549022670044,1.0,0.0,0.0 -662,16.0,5.1477563358025495,5.8,0.0,0.0,0.9999097884217572,-10.43693910007901,1.0,0.0,0.0 -662,17.0,1.8303133638409064,0.9,0.0,0.0,0.9963527396643376,-10.399869139975106,1.0,0.0,0.0 -662,18.0,5.433742798902691,3.4,0.0,0.0,0.9853255705746984,-11.15091250271812,1.0,0.0,0.0 -662,19.0,1.2583404376406233,0.7,0.0,0.0,0.9895503449506136,-11.00171595090678,1.0,0.0,0.0 -662,20.0,10.009526208504957,11.2,0.0,0.0,0.9927005840934736,-10.623417576222012,1.0,0.0,0.0 -662,21.0,0.0,0.0,0.0,0.0,0.996739865312714,-10.542350823107135,1.0,0.0,0.0 -662,22.0,1.8303133638409064,1.6,0.0,0.0,0.9913953081037924,-10.46846625362025,1.0,0.0,0.0 -662,23.0,4.976164457942464,6.7,0.0,0.0,0.986357913569162,-10.634649317823888,1.0,0.0,0.0 -662,24.0,0.0,0.0,0.0,0.0,0.9793633900189064,-10.354504787694976,1.0,0.0,0.0 -662,25.0,2.0019052417009915,2.3,0.0,0.0,0.965027552383776,-10.460961657470916,1.0,0.0,0.0 -662,26.0,0.0,0.0,0.0,0.0,0.9821724906718118,-10.089604844995636,1.0,0.0,0.0 -662,27.0,0.0,0.0,0.0,0.0,0.9638552468656352,-7.824671843545938,1.0,0.0,0.0 -662,28.0,1.3727350228806798,0.9,0.0,0.0,0.9679496093213174,-10.768390282499851,1.0,0.0,0.0 -662,29.0,6.062913017723002,1.9,0.0,0.0,0.9601556507398252,-11.27576069986456,1.0,0.0,0.0 -663,0.0,0.0,0.0,170.26195955392535,0.0001886486369784,1.0,0.0,0.0,0.0,1.0 -663,1.0,12.411812498546146,12.7,3.137296052102501e-07,10.664979430514087,0.980741174079525,-3.564486449958328,0.0,1.0,0.0 -663,2.0,1.3727350228806798,1.2,0.0,0.0,0.9710556847187484,-6.139307813443391,1.0,0.0,0.0 -663,3.0,4.346994239122153,1.6,0.0,0.0,0.963972246999004,-7.562616159982922,1.0,0.0,0.0 -663,4.0,53.87984964806669,19.0,-1.993530606870653e-10,26.34074107066955,0.9598184538094436,-10.131771338335293,0.0,1.0,0.0 -663,5.0,0.0,0.0,0.0,0.0,0.9626184545419412,-9.29487288817074,1.0,0.0,0.0 -663,6.0,13.04098271736646,10.9,0.0,0.0,0.9546907542023254,-9.932406073708686,1.0,0.0,0.0 -663,7.0,17.1591877860085,30.0,-1.9962195746770368e-10,29.98035682029635,0.9613374608135712,-9.741854406569404,0.0,1.0,0.0 -663,8.0,0.0,0.0,0.0,0.0,1.0155699389734931,-11.005667816057253,1.0,0.0,0.0 -663,9.0,3.317442971961643,2.0,0.0,0.0,1.0090416346867237,-11.888109837880345,1.0,0.0,0.0 -663,10.0,0.0,0.0,-4.12463904189738e-10,22.576880088364263,1.0598768873957611,-11.005667816102918,0.0,1.0,0.0 -663,11.0,6.406096773443172,7.5,0.0,0.0,1.0185963435898788,-11.555296079585352,1.0,0.0,0.0 -663,12.0,0.0,0.0,-3.159755583552133e-10,17.93625408027513,1.0426792583606828,-11.555296079609214,0.0,1.0,0.0 -663,13.0,3.5462321424417564,1.6,0.0,0.0,1.0049421795406148,-12.123533657220708,1.0,0.0,0.0 -663,14.0,4.690177994842323,2.5,0.0,0.0,0.9987046101787412,-12.1744766040823,1.0,0.0,0.0 -663,15.0,2.0019052417009915,1.8,0.0,0.0,1.0083403433594702,-11.808411585091743,1.0,0.0,0.0 -663,16.0,5.1477563358025495,5.8,0.0,0.0,1.004403680539908,-11.966531999388124,1.0,0.0,0.0 -663,17.0,1.8303133638409064,0.9,0.0,0.0,0.9809599146509904,-12.832928596836744,1.0,0.0,0.0 -663,18.0,5.433742798902691,3.4,0.0,0.0,0.9728629110556152,-13.123977456173264,1.0,0.0,0.0 -663,19.0,1.2583404376406233,0.7,0.0,0.0,1.006415755042912,-11.999525039293808,1.0,0.0,0.0 -663,20.0,10.009526208504957,11.2,0.0,0.0,0.9980076018317148,-12.099637680422868,1.0,0.0,0.0 -663,21.0,0.0,0.0,0.0,0.0,0.9982832938578045,-12.102150461812748,1.0,0.0,0.0 -663,22.0,1.8303133638409064,1.6,0.0,0.0,0.9904486172076804,-12.305646582889828,1.0,0.0,0.0 -663,23.0,4.976164457942464,6.7,0.0,0.0,0.986260023858738,-12.319938663292506,1.0,0.0,0.0 -663,24.0,0.0,0.0,0.0,0.0,0.9778337892599602,-12.086578999136014,1.0,0.0,0.0 -663,25.0,2.0019052417009915,2.3,0.0,0.0,0.9634748430178782,-12.193374229614795,1.0,0.0,0.0 -663,26.0,0.0,0.0,0.0,0.0,0.9797803323755696,-11.8520763797276,1.0,0.0,0.0 -663,27.0,0.0,0.0,0.0,0.0,0.9606730224366123,-9.65942526162478,1.0,0.0,0.0 -663,28.0,1.3727350228806798,0.9,0.0,0.0,0.9655205454315748,-12.534228661117002,1.0,0.0,0.0 -663,29.0,6.062913017723002,1.9,0.0,0.0,0.9577063175251892,-13.044173722250203,1.0,0.0,0.0 -664,0.0,0.0,0.0,169.4409899593821,0.0153567901632456,1.0,0.0,0.0,0.0,1.0 -664,1.0,12.411812498546146,12.7,7.369910861941601e-06,17.54340523394849,0.9803247596018486,-3.908048541556898,0.0,1.0,0.0 -664,2.0,1.3727350228806798,1.2,0.0,0.0,0.9709813434441958,-5.074766566763527,1.0,0.0,0.0 -664,3.0,4.346994239122153,1.6,0.0,0.0,0.9636527349887504,-6.239673649136134,1.0,0.0,0.0 -664,4.0,53.87984964806669,19.0,1.0802667972132304e-08,27.45398733069148,0.959769070602126,-9.393744866139675,0.0,1.0,0.0 -664,5.0,0.0,0.0,0.0,0.0,0.9613105686911168,-7.354431338412216,1.0,0.0,0.0 -664,6.0,13.04098271736646,10.9,0.0,0.0,0.9540747619413422,-8.482318605793745,1.0,0.0,0.0 -664,7.0,17.1591877860085,30.0,1.7413401740786558e-08,39.97957001498129,0.9636653810724276,-7.877344304228502,0.0,1.0,0.0 -664,8.0,0.0,0.0,0.0,0.0,0.9864369551448848,-9.2277851506548,1.0,0.0,0.0 -664,9.0,3.317442971961643,2.0,0.0,0.0,0.988712748864922,-10.21258480617145,1.0,0.0,0.0 -664,10.0,0.0,0.0,0.0,0.0,0.9864369551448848,-9.2277851506548,0.0,1.0,0.0 -664,11.0,6.406096773443172,7.5,0.0,0.0,1.013838079553744,-10.000130364291202,1.0,0.0,0.0 -664,12.0,0.0,0.0,1.5951939582055673e-08,19.142387159320894,1.0396161909907256,-10.00013036307719,0.0,1.0,0.0 -664,13.0,3.5462321424417564,1.6,0.0,0.0,1.00059249479059,-10.496512661321937,1.0,0.0,0.0 -664,14.0,4.690177994842323,2.5,0.0,0.0,0.9953101475796048,-10.48208362974324,1.0,0.0,0.0 -664,15.0,2.0019052417009915,1.8,0.0,0.0,0.9968586324194572,-10.171817236008804,1.0,0.0,0.0 -664,16.0,5.1477563358025495,5.8,0.0,0.0,0.9867394154864472,-10.317792992370116,1.0,0.0,0.0 -664,17.0,1.8303133638409064,0.9,0.0,0.0,0.9835358945844492,-10.76104880822969,1.0,0.0,0.0 -664,18.0,5.433742798902691,3.4,0.0,0.0,0.978934913729828,-10.8213431800167,1.0,0.0,0.0 -664,19.0,1.2583404376406233,0.7,0.0,0.0,0.9807571844742852,-10.701102892502384,1.0,0.0,0.0 -664,20.0,10.009526208504957,11.2,0.0,0.0,0.9792883047509048,-10.442098446018369,1.0,0.0,0.0 -664,21.0,0.0,0.0,0.0,0.0,0.9801479371250756,-10.448502750945348,1.0,0.0,0.0 -664,22.0,1.8303133638409064,1.6,0.0,0.0,0.983874170585346,-10.675194657485283,1.0,0.0,0.0 -664,23.0,4.976164457942464,6.7,0.0,0.0,0.9755034763071876,-10.77341477410337,1.0,0.0,0.0 -664,24.0,0.0,0.0,0.0,0.0,0.957668185854414,-10.042457608633068,1.0,0.0,0.0 -664,25.0,2.0019052417009915,2.3,0.0,0.0,0.9429973554756688,-10.153869553256316,1.0,0.0,0.0 -664,26.0,0.0,0.0,0.0,0.0,0.96508379696023,-9.938547252567137,1.0,0.0,0.0 -664,27.0,0.0,0.0,0.0,0.0,0.9562900218539998,-7.656608738939552,1.0,0.0,0.0 -664,28.0,1.3727350228806798,0.9,0.0,0.0,0.9505928723906708,-10.641947966713548,1.0,0.0,0.0 -664,29.0,6.062913017723002,1.9,0.0,0.0,0.942651689025864,-11.168155593537616,1.0,0.0,0.0 -665,0.0,0.0,0.0,112.32409012371818,8.840185472536177e-07,1.0,0.0,0.0,0.0,1.0 -665,1.0,12.411812498546146,12.7,56.00274817403539,-16.984228707607798,0.9859770758183064,-1.8538282337033225,0.0,1.0,0.0 -665,2.0,1.3727350228806798,1.2,0.0,0.0,0.981785504225694,-5.329941621662064,1.0,0.0,0.0 -665,3.0,4.346994239122153,1.6,0.0,0.0,0.9770115469588032,-6.550252005566732,1.0,0.0,0.0 -665,4.0,53.87984964806669,19.0,-2.24149082118533e-09,39.99999950773966,0.985179407983798,-8.321147953617956,0.0,1.0,0.0 -665,5.0,0.0,0.0,0.0,0.0,0.9801148376007696,-7.165260161539658,1.0,0.0,0.0 -665,6.0,13.04098271736646,10.9,0.0,0.0,0.9756522752281852,-7.916541207728735,1.0,0.0,0.0 -665,7.0,17.1591877860085,30.0,-1.9029026464116236e-09,39.99999966879679,0.9825054409189964,-7.6598942464446464,0.0,1.0,0.0 -665,8.0,0.0,0.0,0.0,0.0,1.026647288016505,-8.96151292264253,1.0,0.0,0.0 -665,9.0,3.317442971961643,2.0,0.0,0.0,1.0223529816594188,-9.892582229760718,1.0,0.0,0.0 -665,10.0,0.0,0.0,-3.05686228162757e-09,16.997054893236758,1.0599999995202167,-8.961512922977292,0.0,1.0,0.0 -665,11.0,6.406096773443172,7.5,0.0,0.0,1.035191875627688,-10.113194185208156,1.0,0.0,0.0 -665,12.0,0.0,0.0,-3.888229390711901e-09,18.783293623272385,1.0599999992975075,-10.113194185492386,0.0,1.0,0.0 -665,13.0,3.5462321424417564,1.6,0.0,0.0,1.0225726826368071,-10.653240485563586,1.0,0.0,0.0 -665,14.0,4.690177994842323,2.5,0.0,0.0,1.0172837075173382,-10.710843351210617,1.0,0.0,0.0 -665,15.0,2.0019052417009915,1.8,0.0,0.0,1.0239648341636194,-10.119429828003303,1.0,0.0,0.0 -665,16.0,5.1477563358025495,5.8,0.0,0.0,1.0183786665055945,-10.066639729451234,1.0,0.0,0.0 -665,17.0,1.8303133638409064,0.9,0.0,0.0,0.999883023649071,-11.345033986803507,1.0,0.0,0.0 -665,18.0,5.433742798902691,3.4,0.0,0.0,0.991942229436122,-11.625082387058187,1.0,0.0,0.0 -665,19.0,1.2583404376406233,0.7,0.0,0.0,1.0197615161024152,-10.001107646569798,1.0,0.0,0.0 -665,20.0,10.009526208504957,11.2,0.0,0.0,1.011123058860858,-10.097590448931271,1.0,0.0,0.0 -665,21.0,0.0,0.0,0.0,0.0,1.0112873115043557,-10.099564444834328,1.0,0.0,0.0 -665,22.0,1.8303133638409064,1.6,0.0,0.0,1.012280698991241,-10.827531451279633,1.0,0.0,0.0 -665,23.0,4.976164457942464,6.7,0.0,0.0,0.99799675615712,-10.296532573929134,1.0,0.0,0.0 -665,24.0,0.0,0.0,0.0,0.0,0.9920396263253516,-10.039512681660188,1.0,0.0,0.0 -665,25.0,2.0019052417009915,2.3,0.0,0.0,0.9778924299372276,-10.14322662824738,1.0,0.0,0.0 -665,26.0,0.0,0.0,0.0,0.0,0.9954030420482868,-9.790374043166018,1.0,0.0,0.0 -665,27.0,0.0,0.0,0.0,0.0,0.9786232843564074,-7.540399610217337,1.0,0.0,0.0 -665,28.0,1.3727350228806798,0.9,0.0,0.0,0.9649440263038498,-11.265470090878354,1.0,0.0,0.0 -665,29.0,6.062913017723002,1.9,0.0,0.0,0.9400000018795648,-12.71374115391336,1.0,0.0,0.0 -666,0.0,0.0,0.0,170.2467011006445,0.0032354688387137,1.0,0.0,0.0,0.0,1.0 -666,1.0,12.411812498546146,12.7,3.5333399969709026e-06,10.007258322282937,0.9785948118732578,-4.09723223303435,0.0,1.0,0.0 -666,2.0,1.3727350228806798,1.2,0.0,0.0,0.9749900238179884,-4.598088765951132,1.0,0.0,0.0 -666,3.0,4.346994239122153,1.6,0.0,0.0,0.968522982264743,-5.6455992699121404,1.0,0.0,0.0 -666,4.0,53.87984964806669,19.0,-5.677921361516204e-09,38.06632179859915,0.9588040523542888,-12.58229851091741,0.0,1.0,0.0 -666,5.0,0.0,0.0,0.0,0.0,0.9692514264529511,-6.512762933156945,1.0,0.0,0.0 -666,6.0,13.04098271736646,10.9,0.0,0.0,0.9400184335979096,-13.251594134025105,1.0,0.0,0.0 -666,7.0,17.1591877860085,30.0,-2.591558752358451e-09,29.8881615705388,0.9560333400604744,-9.69475577851954,0.0,1.0,0.0 -666,8.0,0.0,0.0,0.0,0.0,1.014046632536486,-8.496906080877947,1.0,0.0,0.0 -666,9.0,3.317442971961643,2.0,0.0,0.0,1.0054790146326384,-9.53100886462958,1.0,0.0,0.0 -666,10.0,0.0,0.0,-1.9477806659008e-09,20.320857652474025,1.0541430720409553,-8.496906081095103,0.0,1.0,0.0 -666,11.0,6.406096773443172,7.5,0.0,0.0,1.0111677870934428,-9.120587382173827,1.0,0.0,0.0 -666,12.0,0.0,0.0,-1.595931431043178e-09,8.130814495830789,1.0223025923645843,-9.120587382297671,0.0,1.0,0.0 -666,13.0,3.5462321424417564,1.6,0.0,0.0,1.000028197611568,-9.614481359719464,1.0,0.0,0.0 -666,14.0,4.690177994842323,2.5,0.0,0.0,0.9968234322220162,-9.644198530137936,1.0,0.0,0.0 -666,15.0,2.0019052417009915,1.8,0.0,0.0,1.0024991966828791,-9.416563120482484,1.0,0.0,0.0 -666,16.0,5.1477563358025495,5.8,0.0,0.0,1.000124134568506,-9.59674513597092,1.0,0.0,0.0 -666,17.0,1.8303133638409064,0.9,0.0,0.0,0.9904911338717484,-9.974343051104862,1.0,0.0,0.0 -666,18.0,5.433742798902691,3.4,0.0,0.0,0.989097855862832,-10.066078717495364,1.0,0.0,0.0 -666,19.0,1.2583404376406233,0.7,0.0,0.0,0.9925668426655784,-9.966003562201175,1.0,0.0,0.0 -666,20.0,10.009526208504957,11.2,0.0,0.0,0.994689216567172,-9.739934933088865,1.0,0.0,0.0 -666,21.0,0.0,0.0,0.0,0.0,0.9950557201665656,-9.741271267233415,1.0,0.0,0.0 -666,22.0,1.8303133638409064,1.6,0.0,0.0,0.9884863757854851,-9.844630417084185,1.0,0.0,0.0 -666,23.0,4.976164457942464,6.7,0.0,0.0,0.984217472804821,-9.95185110037698,1.0,0.0,0.0 -666,24.0,0.0,0.0,0.0,0.0,0.9777466609252462,-9.816239662204651,1.0,0.0,0.0 -666,25.0,2.0019052417009915,2.3,0.0,0.0,0.9633863960909048,-9.923054213722818,1.0,0.0,0.0 -666,26.0,0.0,0.0,0.0,0.0,0.9809398238932276,-9.640513748757249,1.0,0.0,0.0 -666,27.0,0.0,0.0,0.0,0.0,0.9643054554466848,-7.488461517475497,1.0,0.0,0.0 -666,28.0,1.3727350228806798,0.9,0.0,0.0,0.9666979498770172,-10.32103096564848,1.0,0.0,0.0 -666,29.0,6.062913017723002,1.9,0.0,0.0,0.958893560178191,-10.829725609755302,1.0,0.0,0.0 -667,0.0,0.0,0.0,169.3542970619316,0.0009142517806814,1.0,0.0,0.0,0.0,1.0 -667,1.0,12.411812498546146,12.7,1.0167512202856204e-06,11.210542643669982,0.9795263711473584,-3.892456700880484,0.0,1.0,0.0 -667,2.0,1.3727350228806798,1.2,0.0,0.0,0.9733383516466542,-5.100604376133062,1.0,0.0,0.0 -667,3.0,4.346994239122153,1.6,0.0,0.0,0.9665614876499372,-6.270504701591093,1.0,0.0,0.0 -667,4.0,53.87984964806669,19.0,2.786343697928161e-10,24.636024820965687,0.9588030477705364,-9.372093965885671,0.0,1.0,0.0 -667,5.0,0.0,0.0,0.0,0.0,0.965938150641542,-7.452213382566192,1.0,0.0,0.0 -667,6.0,13.04098271736646,10.9,0.0,0.0,0.956425221685686,-8.532349133173424,1.0,0.0,0.0 -667,7.0,17.1591877860085,30.0,4.097515163698175e-10,30.804160608442487,0.964938344235968,-7.903209132030244,0.0,1.0,0.0 -667,8.0,0.0,0.0,0.0,0.0,1.0145349762580769,-9.392269273792452,1.0,0.0,0.0 -667,9.0,3.317442971961643,2.0,0.0,0.0,1.0051550566405067,-10.400268982520265,1.0,0.0,0.0 -667,10.0,0.0,0.0,8.95506116547456e-10,23.169661787488995,1.059999974084696,-9.392269273693216,0.0,1.0,0.0 -667,11.0,6.406096773443172,7.5,0.0,0.0,1.0140518415479212,-9.759742096676176,1.0,0.0,0.0 -667,12.0,0.0,0.0,4.722426287744277e-10,10.312235759989507,1.0280944521598694,-9.759742096639842,0.0,1.0,0.0 -667,13.0,3.5462321424417564,1.6,0.0,0.0,1.00317621672803,-10.225387894544546,1.0,0.0,0.0 -667,14.0,4.690177994842323,2.5,0.0,0.0,1.000377441575246,-10.235114913484196,1.0,0.0,0.0 -667,15.0,2.0019052417009915,1.8,0.0,0.0,1.0038471037518424,-10.147046722720296,1.0,0.0,0.0 -667,16.0,5.1477563358025495,5.8,0.0,0.0,1.0003733648879969,-10.424719492625815,1.0,0.0,0.0 -667,17.0,1.8303133638409064,0.9,0.0,0.0,0.9964282942157168,-10.409481123878765,1.0,0.0,0.0 -667,18.0,5.433742798902691,3.4,0.0,0.0,0.9858239301943826,-11.133826188835227,1.0,0.0,0.0 -667,19.0,1.2583404376406233,0.7,0.0,0.0,0.990046565462124,-10.98477980099113,1.0,0.0,0.0 -667,20.0,10.009526208504957,11.2,0.0,0.0,0.9945661228563611,-10.579370024358475,1.0,0.0,0.0 -667,21.0,0.0,0.0,0.0,0.0,0.9950001419039656,-10.57116616528187,1.0,0.0,0.0 -667,22.0,1.8303133638409064,1.6,0.0,0.0,0.9909806157530908,-10.484251024865442,1.0,0.0,0.0 -667,23.0,4.976164457942464,6.7,0.0,0.0,0.985294554456672,-10.659077815238245,1.0,0.0,0.0 -667,24.0,0.0,0.0,0.0,0.0,0.9787181178202916,-10.374987625587544,1.0,0.0,0.0 -667,25.0,2.0019052417009915,2.3,0.0,0.0,0.9643725408759122,-10.481587037204749,1.0,0.0,0.0 -667,26.0,0.0,0.0,0.0,0.0,0.9817905802061836,-10.107078915770032,1.0,0.0,0.0 -667,27.0,0.0,0.0,0.0,0.0,0.963845295704014,-7.825431930747205,1.0,0.0,0.0 -667,28.0,1.3727350228806798,0.9,0.0,0.0,0.9675618200414178,-10.786400189830788,1.0,0.0,0.0 -667,29.0,6.062913017723002,1.9,0.0,0.0,0.9597646327203664,-11.2941803244593,1.0,0.0,0.0 -668,0.0,0.0,0.0,139.34377720536048,5.094242894188028e-06,1.0,0.0,0.0,0.0,1.0 -668,1.0,12.411812498546146,12.7,31.614148094952064,10.691345961981447,0.97348830415225,-4.611829432547822,0.0,1.0,0.0 -668,2.0,1.3727350228806798,1.2,0.0,0.0,1.000768288347298,-0.1516519140190024,1.0,0.0,0.0 -668,3.0,4.346994239122153,1.6,0.0,0.0,0.9478004422028188,-9.738041104461557,1.0,0.0,0.0 -668,4.0,53.87984964806669,19.0,-7.57487570627578e-10,27.011437486828854,0.9506336403426072,-11.248414670727412,0.0,1.0,0.0 -668,5.0,0.0,0.0,0.0,0.0,0.9505894892936612,-10.304655232473454,1.0,0.0,0.0 -668,6.0,13.04098271736646,10.9,0.0,0.0,0.9437410803022098,-10.990255191339616,1.0,0.0,0.0 -668,7.0,17.1591877860085,30.0,-6.409899055684331e-10,32.74945725728454,0.9502704599730528,-10.783948766430866,0.0,1.0,0.0 -668,8.0,0.0,0.0,0.0,0.0,1.000137973180421,-12.375136477785295,1.0,0.0,0.0 -668,9.0,3.317442971961643,2.0,0.0,0.0,0.99034904708917,-13.449614277115256,1.0,0.0,0.0 -668,10.0,0.0,0.0,-1.157912766356909e-09,23.997562080963792,1.0477768653702817,-12.375136477916977,0.0,1.0,0.0 -668,11.0,6.406096773443172,7.5,0.0,0.0,0.9969916182717036,-13.184912528406793,1.0,0.0,0.0 -668,12.0,0.0,0.0,-9.764429288777142e-10,12.388185397845056,1.014094035745477,-13.18491252848426,0.0,1.0,0.0 -668,13.0,3.5462321424417564,1.6,0.0,0.0,0.985502253830584,-13.667473311483214,1.0,0.0,0.0 -668,14.0,4.690177994842323,2.5,0.0,0.0,0.9822447836786844,-13.668350210294046,1.0,0.0,0.0 -668,15.0,2.0019052417009915,1.8,0.0,0.0,0.9879214855203812,-13.420064469872983,1.0,0.0,0.0 -668,16.0,5.1477563358025495,5.8,0.0,0.0,0.9850662976306572,-13.545622649530662,1.0,0.0,0.0 -668,17.0,1.8303133638409064,0.9,0.0,0.0,0.9755803304565028,-13.972546639222754,1.0,0.0,0.0 -668,18.0,5.433742798902691,3.4,0.0,0.0,0.9740251721402684,-14.045624641721952,1.0,0.0,0.0 -668,19.0,1.2583404376406233,0.7,0.0,0.0,0.9774748214283138,-13.931094170169956,1.0,0.0,0.0 -668,20.0,10.009526208504957,11.2,0.0,0.0,0.9793859021260082,-13.651836165689236,1.0,0.0,0.0 -668,21.0,0.0,0.0,0.0,0.0,0.9797580153215796,-13.648961704019037,1.0,0.0,0.0 -668,22.0,1.8303133638409064,1.6,0.0,0.0,0.9735319814751192,-13.799790391969038,1.0,0.0,0.0 -668,23.0,4.976164457942464,6.7,0.0,0.0,0.9688521944830388,-13.808975857544382,1.0,0.0,0.0 -668,24.0,0.0,0.0,0.0,0.0,0.962532323357986,-13.44879208929345,1.0,0.0,0.0 -668,25.0,2.0019052417009915,2.3,0.0,0.0,0.9479379753093292,-13.559063276403506,1.0,0.0,0.0 -668,26.0,0.0,0.0,0.0,0.0,0.9658702640236406,-13.130001903747852,1.0,0.0,0.0 -668,27.0,0.0,0.0,0.0,0.0,0.9485440495575136,-10.70109500604725,1.0,0.0,0.0 -668,28.0,1.3727350228806798,0.9,0.0,0.0,0.9513919039843916,-13.83224040696,1.0,0.0,0.0 -668,29.0,6.062913017723002,1.9,0.0,0.0,0.9434576223013889,-14.357557915328696,1.0,0.0,0.0 -669,0.0,0.0,0.0,169.34672097664333,0.0008031398020413,1.0,0.0,0.0,0.0,1.0 -669,1.0,12.411812498546146,12.7,9.149031803834754e-07,11.257763797177624,0.9795500597779216,-3.891474232520013,0.0,1.0,0.0 -669,2.0,1.3727350228806798,1.2,0.0,0.0,0.9732777222526278,-5.102940371594023,1.0,0.0,0.0 -669,3.0,4.346994239122153,1.6,0.0,0.0,0.9664871726491524,-6.273439508710683,1.0,0.0,0.0 -669,4.0,53.87984964806669,19.0,3.5247782151455567e-10,24.625922912352934,0.9588435563553313,-9.367607427372263,0.0,1.0,0.0 -669,5.0,0.0,0.0,0.0,0.0,0.9660168270951972,-7.445218249140368,1.0,0.0,0.0 -669,6.0,13.04098271736646,10.9,0.0,0.0,0.9564892040063466,-8.52635403572564,1.0,0.0,0.0 -669,7.0,17.1591877860085,30.0,5.511429801410245e-10,30.779915312387004,0.965005940661015,-7.896023456543146,0.0,1.0,0.0 -669,8.0,0.0,0.0,0.0,0.0,1.014917809081878,-9.342822022264365,1.0,0.0,0.0 -669,9.0,3.317442971961643,2.0,0.0,0.0,1.0058805159239468,-10.328139834209091,1.0,0.0,0.0 -669,10.0,0.0,0.0,1.2026001784346715e-09,22.974564369916397,1.059999974224737,-9.342822022131145,0.0,1.0,0.0 -669,11.0,6.406096773443172,7.5,0.0,0.0,1.0133279713242014,-9.839970778174669,1.0,0.0,0.0 -669,12.0,0.0,0.0,6.80375949653081e-10,10.44776151934337,1.027562498324679,-9.839970778122256,0.0,1.0,0.0 -669,13.0,3.5462321424417564,1.6,0.0,0.0,1.0020091737386192,-10.337485755118648,1.0,0.0,0.0 -669,14.0,4.690177994842323,2.5,0.0,0.0,0.99857642061264,-10.368096396734286,1.0,0.0,0.0 -669,15.0,2.0019052417009915,1.8,0.0,0.0,1.0038539936428057,-10.16517053992002,1.0,0.0,0.0 -669,16.0,5.1477563358025495,5.8,0.0,0.0,1.000844051391361,-10.379760971635008,1.0,0.0,0.0 -669,17.0,1.8303133638409064,0.9,0.0,0.0,0.9917736726868124,-10.722879608262645,1.0,0.0,0.0 -669,18.0,5.433742798902691,3.4,0.0,0.0,0.9901000395806704,-10.829672352736312,1.0,0.0,0.0 -669,19.0,1.2583404376406233,0.7,0.0,0.0,0.9934162973582455,-10.73778681473853,1.0,0.0,0.0 -669,20.0,10.009526208504957,11.2,0.0,0.0,0.9951558128153676,-10.519949477226652,1.0,0.0,0.0 -669,21.0,0.0,0.0,0.0,0.0,0.9955429982045548,-10.515861366229473,1.0,0.0,0.0 -669,22.0,1.8303133638409064,1.6,0.0,0.0,0.989880386874819,-10.559381385388006,1.0,0.0,0.0 -669,23.0,4.976164457942464,6.7,0.0,0.0,0.985121163617605,-10.65498940766298,1.0,0.0,0.0 -669,24.0,0.0,0.0,0.0,0.0,0.9786378642058172,-10.370867430881669,1.0,0.0,0.0 -669,25.0,2.0019052417009915,2.3,0.0,0.0,0.9642910750270648,-10.477484590768375,1.0,0.0,0.0 -669,26.0,0.0,0.0,0.0,0.0,0.9817687581904856,-10.102828946598288,1.0,0.0,0.0 -669,27.0,0.0,0.0,0.0,0.0,0.9639091564138708,-7.818510824708632,1.0,0.0,0.0 -669,28.0,1.3727350228806798,0.9,0.0,0.0,0.9675396619642156,-10.782180857132811,1.0,0.0,0.0 -669,29.0,6.062913017723002,1.9,0.0,0.0,0.9597422900724112,-11.289984417819998,1.0,0.0,0.0 -670,0.0,0.0,0.0,170.80210955493123,0.0032537467943072,1.0,0.0,0.0,0.0,1.0 -670,1.0,12.411812498546146,12.7,4.54100191536522e-06,11.369592833377247,0.97995903057661,-4.243073318868938,0.0,1.0,0.0 -670,2.0,1.3727350228806798,1.2,0.0,0.0,0.9705431419967304,-4.2525809913840735,1.0,0.0,0.0 -670,3.0,4.346994239122153,1.6,0.0,0.0,0.9630054776545214,-5.217780955780987,1.0,0.0,0.0 -670,4.0,53.87984964806669,19.0,-3.5453798065213993e-09,23.40971254221973,0.9598484806527312,-10.948719714598187,0.0,1.0,0.0 -670,5.0,0.0,0.0,0.0,0.0,0.9644519403788474,-10.303254725188555,1.0,0.0,0.0 -670,6.0,13.04098271736646,10.9,0.0,0.0,0.9520332987190664,-10.801781083298874,1.0,0.0,0.0 -670,7.0,17.1591877860085,30.0,-4.533102296931058e-09,34.038828898411246,0.9645371114779822,-10.770759235145722,0.0,1.0,0.0 -670,8.0,0.0,0.0,0.0,0.0,1.0184804170689747,-11.86108845061756,1.0,0.0,0.0 -670,9.0,3.317442971961643,2.0,0.0,0.0,1.0139672182102366,-12.662266267009596,1.0,0.0,0.0 -670,10.0,0.0,0.0,-6.151665020264289e-09,21.1058720064473,1.0598996348241485,-11.861088451296704,0.0,1.0,0.0 -670,11.0,6.406096773443172,7.5,0.0,0.0,1.0311203514330187,-10.531274486047428,1.0,0.0,0.0 -670,12.0,0.0,0.0,-5.296770396134258e-09,21.85421996709102,1.0599848286656255,-10.53127448643616,0.0,1.0,0.0 -670,13.0,3.5462321424417564,1.6,0.0,0.0,0.9936245849137582,-11.92394497987005,1.0,0.0,0.0 -670,14.0,4.690177994842323,2.5,0.0,0.0,1.004734082582869,-11.720443556352857,1.0,0.0,0.0 -670,15.0,2.0019052417009915,1.8,0.0,0.0,1.0162916843072154,-11.532847914146153,1.0,0.0,0.0 -670,16.0,5.1477563358025495,5.8,0.0,0.0,1.0106587307305492,-12.415067026073764,1.0,0.0,0.0 -670,17.0,1.8303133638409064,0.9,0.0,0.0,0.998565570310591,-12.416217423344763,1.0,0.0,0.0 -670,18.0,5.433742798902691,3.4,0.0,0.0,0.997286984296358,-12.727718286872314,1.0,0.0,0.0 -670,19.0,1.2583404376406233,0.7,0.0,0.0,1.000778778595549,-12.745736086776716,1.0,0.0,0.0 -670,20.0,10.009526208504957,11.2,0.0,0.0,1.0056851481075313,-12.801454813882854,1.0,0.0,0.0 -670,21.0,0.0,0.0,0.0,0.0,1.0068153779515174,-12.782637923065224,1.0,0.0,0.0 -670,22.0,1.8303133638409064,1.6,0.0,0.0,0.9871415723290944,-12.281231032906245,1.0,0.0,0.0 -670,23.0,4.976164457942464,6.7,0.0,0.0,0.9706926916758633,-12.892823550779992,1.0,0.0,0.0 -670,24.0,0.0,0.0,0.0,0.0,0.9678225210566742,-12.903945177991258,1.0,0.0,0.0 -670,25.0,2.0019052417009915,2.3,0.0,0.0,0.9533104404437086,-13.012995573040795,1.0,0.0,0.0 -670,26.0,0.0,0.0,0.0,0.0,0.973380684229224,-12.812843055180364,1.0,0.0,0.0 -670,27.0,0.0,0.0,0.0,0.0,0.9619274610485272,-10.650276547240736,1.0,0.0,0.0 -670,28.0,1.3727350228806798,0.9,0.0,0.0,0.966383109276784,-13.039598513548446,1.0,0.0,0.0 -670,29.0,6.062913017723002,1.9,0.0,0.0,0.9400066547263028,-14.72041844794469,1.0,0.0,0.0 -671,0.0,0.0,0.0,175.9261970934625,0.0439394793989578,1.0,0.0,0.0,0.0,1.0 -671,1.0,12.857862569967851,12.7,0.0,0.0,0.9775067780521134,-4.104870382542872,0.0,1.0,0.0 -671,2.0,1.422067749673864,1.2,0.0,0.0,0.976200360306912,-5.125234286336688,1.0,0.0,0.0 -671,3.0,4.503214540633903,1.6,0.0,0.0,0.9700986591032692,-6.298390364381462,1.0,0.0,0.0 -671,4.0,55.816159174699166,19.0,-1.8297656869518607e-10,28.46471608743204,0.9662610945867336,-11.163727339307142,0.0,1.0,0.0 -671,5.0,0.0,0.0,0.0,0.0,0.9691967700939792,-7.357313420304037,1.0,0.0,0.0 -671,6.0,13.509643621901708,10.9,0.0,0.0,0.9567113542566018,-7.8748461307042525,1.0,0.0,0.0 -671,7.0,17.7758468709233,30.0,-3.0592946365723305e-10,36.42161477785827,0.9702432961519648,-7.856448589526412,0.0,1.0,0.0 -671,8.0,0.0,0.0,0.0,0.0,1.017635979860214,-9.326104295529792,1.0,0.0,0.0 -671,9.0,3.4366637283785044,2.0,0.0,0.0,1.0097889914919729,-10.347770332430638,1.0,0.0,0.0 -671,10.0,0.0,0.0,-3.1476608422116047e-10,21.58920183180007,1.059999708319477,-9.326104295564567,0.0,1.0,0.0 -671,11.0,6.636316165144698,7.5,0.0,0.0,1.0317537955124827,-9.899503638747138,1.0,0.0,0.0 -671,12.0,0.0,0.0,-4.6333439149705164e-10,18.079770737528715,1.055729333771069,-9.899503638781256,0.0,1.0,0.0 -671,13.0,3.673675019990816,1.6,0.0,0.0,1.0173323620525478,-10.490368409944326,1.0,0.0,0.0 -671,14.0,4.858731478052368,2.5,0.0,0.0,1.0102842057131969,-10.541457828942823,1.0,0.0,0.0 -671,15.0,2.0738488016077183,1.8,0.0,0.0,0.9963856729770824,-10.737805161309929,1.0,0.0,0.0 -671,16.0,5.33275406127699,5.8,0.0,0.0,1.000954932371902,-10.562884269208826,1.0,0.0,0.0 -671,17.0,1.8960903328984853,0.9,0.0,0.0,0.99245331474369,-11.21742181932042,1.0,0.0,0.0 -671,18.0,5.629018175792378,3.4,0.0,0.0,0.9843227951444844,-11.516548355354626,1.0,0.0,0.0 -671,19.0,1.3035621038677088,0.7,0.0,0.0,1.0071227432236154,-10.464349719707943,1.0,0.0,0.0 -671,20.0,10.369244008038592,11.2,0.0,0.0,0.9994319773794704,-10.556718654947671,1.0,0.0,0.0 -671,21.0,0.0,0.0,0.0,0.0,0.999959747114142,-10.553938755048092,1.0,0.0,0.0 -671,22.0,1.8960903328984853,1.6,0.0,0.0,0.9991877134467932,-10.697325711117273,1.0,0.0,0.0 -671,23.0,5.154995592567757,6.7,0.0,0.0,0.991243913841202,-10.73940871880732,1.0,0.0,0.0 -671,24.0,0.0,0.0,0.0,0.0,0.9840003517863076,-10.414058727906612,1.0,0.0,0.0 -671,25.0,2.0738488016077183,2.3,0.0,0.0,0.9695419470649352,-10.535939221220431,1.0,0.0,0.0 -671,26.0,0.0,0.0,0.0,0.0,0.986689951890382,-10.11325121415751,1.0,0.0,0.0 -671,27.0,0.0,0.0,0.0,0.0,0.96763654888354,-7.752971700918532,1.0,0.0,0.0 -671,28.0,1.422067749673864,0.9,0.0,0.0,0.97223272305347,-10.816863994723462,1.0,0.0,0.0 -671,29.0,6.280799227726232,1.9,0.0,0.0,0.9642797907004116,-11.340694771350307,1.0,0.0,0.0 -672,0.0,0.0,0.0,116.49901313628192,4.25404955706199e-06,1.0,0.0,0.0,0.0,1.0 -672,1.0,12.857862569967851,12.7,58.35887974365927,-15.556175399902155,0.9847843102755192,-2.75814866207599,0.0,1.0,0.0 -672,2.0,1.422067749673864,1.2,0.0,0.0,0.9798610484621167,-3.165611712716874,1.0,0.0,0.0 -672,3.0,4.503214540633903,1.6,0.0,0.0,0.9744443980451514,-3.8657189530719016,1.0,0.0,0.0 -672,4.0,55.816159174699166,19.0,1.4060507646250068e-08,39.99999785309232,0.9857382901537216,-9.90886559175272,0.0,1.0,0.0 -672,5.0,0.0,0.0,0.0,0.0,0.9839229527740818,-9.228665267019098,1.0,0.0,0.0 -672,6.0,13.509643621901708,10.9,0.0,0.0,0.9779785326892384,-9.799457331426156,1.0,0.0,0.0 -672,7.0,17.7758468709233,30.0,1.516856181860585e-08,39.999998906249374,0.9862306357008944,-9.724192428128458,0.0,1.0,0.0 -672,8.0,0.0,0.0,0.0,0.0,1.0262919082322293,-10.408657054979129,1.0,0.0,0.0 -672,9.0,3.4366637283785044,2.0,0.0,0.0,1.0193388128033205,-11.024527941155789,1.0,0.0,0.0 -672,10.0,0.0,0.0,2.596544242738733e-08,17.17816062656207,1.0599999971010656,-10.408657052134634,0.0,1.0,0.0 -672,11.0,6.636316165144698,7.5,0.0,0.0,1.037071265853239,-9.087146686739215,1.0,0.0,0.0 -672,12.0,0.0,0.0,1.2136825275356268e-08,17.360324234716177,1.0599999960597926,-9.087146685853606,0.0,1.0,0.0 -672,13.0,3.673675019990816,1.6,0.0,0.0,1.0250313506157238,-9.779928598915442,1.0,0.0,0.0 -672,14.0,4.858731478052368,2.5,0.0,0.0,1.0194860362874336,-9.989331623627177,1.0,0.0,0.0 -672,15.0,2.0738488016077183,1.8,0.0,0.0,1.0221080447227051,-10.0117473372112,1.0,0.0,0.0 -672,16.0,5.33275406127699,5.8,0.0,0.0,1.0161211363881866,-10.81912001559411,1.0,0.0,0.0 -672,17.0,1.8960903328984853,0.9,0.0,0.0,1.0099444795453545,-10.723848234696083,1.0,0.0,0.0 -672,18.0,5.629018175792378,3.4,0.0,0.0,1.006690575327893,-11.057747322913944,1.0,0.0,0.0 -672,19.0,1.3035621038677088,0.7,0.0,0.0,1.0091677457818735,-11.08289535214213,1.0,0.0,0.0 -672,20.0,10.369244008038592,11.2,0.0,0.0,1.0090832219584858,-11.197090624928782,1.0,0.0,0.0 -672,21.0,0.0,0.0,0.0,0.0,1.009610101896621,-11.18393513119283,1.0,0.0,0.0 -672,22.0,1.8960903328984853,1.6,0.0,0.0,1.0087036052932323,-10.584618637405036,1.0,0.0,0.0 -672,23.0,5.154995592567757,6.7,0.0,0.0,1.001296914134757,-11.2262216782624,1.0,0.0,0.0 -672,24.0,0.0,0.0,0.0,0.0,0.993946029590611,-11.413773155385195,1.0,0.0,0.0 -672,25.0,2.0738488016077183,2.3,0.0,0.0,0.9796366566959164,-11.533190724204484,1.0,0.0,0.0 -672,26.0,0.0,0.0,0.0,0.0,0.996681530664404,-11.43496398629632,1.0,0.0,0.0 -672,27.0,0.0,0.0,0.0,0.0,0.9823602433959128,-9.553797383475622,1.0,0.0,0.0 -672,28.0,1.422067749673864,0.9,0.0,0.0,0.9655270349806198,-12.97337447202239,1.0,0.0,0.0 -672,29.0,6.280799227726232,1.9,0.0,0.0,0.9400000022521958,-14.48314295865115,1.0,0.0,0.0 -673,0.0,0.0,0.0,175.77768715347852,0.0038749328901133,1.0,0.0,0.0,0.0,1.0 -673,1.0,12.857862569967851,12.7,3.2791355553328467e-06,18.125063749867778,0.979650621425596,-4.147177035290277,0.0,1.0,0.0 -673,2.0,1.422067749673864,1.2,0.0,0.0,0.9701253926394716,-5.016874473038712,1.0,0.0,0.0 -673,3.0,4.503214540633903,1.6,0.0,0.0,0.9625948025049784,-6.167006723207099,1.0,0.0,0.0 -673,4.0,55.816159174699166,19.0,7.782549239712309e-09,23.894969476858456,0.9590508028504432,-11.110358879198658,0.0,1.0,0.0 -673,5.0,0.0,0.0,0.0,0.0,0.9629896574746116,-7.284457328839048,1.0,0.0,0.0 -673,6.0,13.509643621901708,10.9,0.0,0.0,0.95041218449606,-7.808607613315939,1.0,0.0,0.0 -673,7.0,17.7758468709233,30.0,-1.934365883966968e-10,39.63263384725949,0.965121628172634,-7.810345563994992,0.0,1.0,0.0 -673,8.0,0.0,0.0,0.0,0.0,1.0078673071401558,-9.337629899075212,1.0,0.0,0.0 -673,9.0,3.4366637283785044,2.0,0.0,0.0,0.99563899488047,-10.411293276674884,1.0,0.0,0.0 -673,10.0,0.0,0.0,6.306450801092314e-10,23.99523269961498,1.0551679152190492,-9.33762989900454,0.0,1.0,0.0 -673,11.0,6.636316165144698,7.5,0.0,0.0,0.9932156171554076,-9.767152604343464,1.0,0.0,0.0 -673,12.0,0.0,0.0,0.0,0.0,0.9932156171554076,-9.767152604343464,0.0,1.0,0.0 -673,13.0,3.673675019990816,1.6,0.0,0.0,0.9844339872642944,-10.202627854857266,1.0,0.0,0.0 -673,14.0,4.858731478052368,2.5,0.0,0.0,0.9800335614040389,-10.413589410146669,1.0,0.0,0.0 -673,15.0,2.0738488016077183,1.8,0.0,0.0,0.98774877817609,-10.19381640538014,1.0,0.0,0.0 -673,16.0,5.33275406127699,5.8,0.0,0.0,0.988699177923601,-10.44783595448698,1.0,0.0,0.0 -673,17.0,1.8960903328984853,0.9,0.0,0.0,0.9758475819396368,-10.813559359037786,1.0,0.0,0.0 -673,18.0,5.629018175792378,3.4,0.0,0.0,0.9758071484777808,-10.938210389895485,1.0,0.0,0.0 -673,19.0,1.3035621038677088,0.7,0.0,0.0,0.980114148472632,-10.8436089427554,1.0,0.0,0.0 -673,20.0,10.369244008038592,11.2,0.0,0.0,0.984432359841826,-10.618262657760944,1.0,0.0,0.0 -673,21.0,0.0,0.0,0.0,0.0,0.9847488411660128,-10.612484138365325,1.0,0.0,0.0 -673,22.0,1.8960903328984853,1.6,0.0,0.0,0.9740249368165342,-10.63212818781344,1.0,0.0,0.0 -673,23.0,5.154995592567757,6.7,0.0,0.0,0.9730542227124194,-10.746137480466468,1.0,0.0,0.0 -673,24.0,0.0,0.0,0.0,0.0,0.9699549479422108,-10.460648824156168,1.0,0.0,0.0 -673,25.0,2.0738488016077183,2.3,0.0,0.0,0.9552806277421476,-10.586140103476616,1.0,0.0,0.0 -673,26.0,0.0,0.0,0.0,0.0,0.9753395750948992,-10.177509741124569,1.0,0.0,0.0 -673,27.0,0.0,0.0,0.0,0.0,0.9610542424526776,-7.690070728293212,1.0,0.0,0.0 -673,28.0,1.422067749673864,0.9,0.0,0.0,0.9607030672655203,-10.897841981670393,1.0,0.0,0.0 -673,29.0,6.280799227726232,1.9,0.0,0.0,0.9526513301001002,-11.434417056716834,1.0,0.0,0.0 -674,0.0,0.0,0.0,175.71278728582143,0.0011764701075556,1.0,0.0,0.0,0.0,1.0 -674,1.0,12.857862569967851,12.7,1.123643877928329e-06,11.940476136108911,0.9789595435343824,-4.042272626796005,0.0,1.0,0.0 -674,2.0,1.422067749673864,1.2,0.0,0.0,0.9724700647428608,-5.29999675296126,1.0,0.0,0.0 -674,3.0,4.503214540633903,1.6,0.0,0.0,0.9655333218551596,-6.517565504573109,1.0,0.0,0.0 -674,4.0,55.816159174699166,19.0,2.3129525703165022e-10,25.027225701841687,0.9576375004380576,-9.731244139078962,0.0,1.0,0.0 -674,5.0,0.0,0.0,0.0,0.0,0.9649700235903595,-7.732965982646458,1.0,0.0,0.0 -674,6.0,13.509643621901708,10.9,0.0,0.0,0.9552899605984232,-8.859748948244274,1.0,0.0,0.0 -674,7.0,17.7758468709233,30.0,2.752138699948185e-10,31.000718203595525,0.9639605595644456,-8.2017640615197,0.0,1.0,0.0 -674,8.0,0.0,0.0,0.0,0.0,1.014274973323907,-9.701088919855389,1.0,0.0,0.0 -674,9.0,3.4366637283785044,2.0,0.0,0.0,1.0051561835532137,-10.722641186094164,1.0,0.0,0.0 -674,10.0,0.0,0.0,4.909645332073086e-10,23.302164564334056,1.0599999765015318,-9.701088919800965,0.0,1.0,0.0 -674,11.0,6.636316165144698,7.5,0.0,0.0,1.0130208403694096,-10.218533848063313,1.0,0.0,0.0 -674,12.0,0.0,0.0,3.561987042842309e-10,10.948029408046716,1.0279316001601175,-10.218533848035872,0.0,1.0,0.0 -674,13.0,3.673675019990816,1.6,0.0,0.0,1.0014668495717878,-10.739216885646169,1.0,0.0,0.0 -674,14.0,4.858731478052368,2.5,0.0,0.0,0.9979351071443582,-10.772564405916912,1.0,0.0,0.0 -674,15.0,2.0738488016077183,1.8,0.0,0.0,1.0032869287433688,-10.55822782592876,1.0,0.0,0.0 -674,16.0,5.33275406127699,5.8,0.0,0.0,1.000127972882393,-10.7803516144962,1.0,0.0,0.0 -674,17.0,1.8960903328984853,0.9,0.0,0.0,0.990941193120982,-11.142616291938952,1.0,0.0,0.0 -674,18.0,5.629018175792378,3.4,0.0,0.0,0.989199438189927,-11.253417174693238,1.0,0.0,0.0 -674,19.0,1.3035621038677088,0.7,0.0,0.0,0.9925507902585756,-11.155622212119988,1.0,0.0,0.0 -674,20.0,10.369244008038592,11.2,0.0,0.0,0.9943014202180098,-10.928351986603898,1.0,0.0,0.0 -674,21.0,0.0,0.0,0.0,0.0,0.9946910406510738,-10.923664755150478,1.0,0.0,0.0 -674,22.0,1.8960903328984853,1.6,0.0,0.0,0.9890364395572094,-10.97460024737173,1.0,0.0,0.0 -674,23.0,5.154995592567757,6.7,0.0,0.0,0.98410281777684,-11.074158304989316,1.0,0.0,0.0 -674,24.0,0.0,0.0,0.0,0.0,0.9775076639161694,-10.780246991011731,1.0,0.0,0.0 -674,25.0,2.0738488016077183,2.3,0.0,0.0,0.9629502566515996,-10.903776879778226,1.0,0.0,0.0 -674,26.0,0.0,0.0,0.0,0.0,0.9806596881584364,-10.497029482774265,1.0,0.0,0.0 -674,27.0,0.0,0.0,0.0,0.0,0.9628049622653287,-8.121410671529123,1.0,0.0,0.0 -674,28.0,1.422067749673864,0.9,0.0,0.0,0.966107778911606,-11.20945125257977,1.0,0.0,0.0 -674,29.0,6.280799227726232,1.9,0.0,0.0,0.9581026670696488,-11.739994833291645,1.0,0.0,0.0 -675,0.0,0.0,0.0,175.97029938801754,0.0155470273307756,1.0,0.0,0.0,0.0,1.0 -675,1.0,12.857862569967851,12.7,8.485845576148308e-06,25.09910930335394,0.9804056369572456,-4.079339766000983,0.0,1.0,0.0 -675,2.0,1.422067749673864,1.2,0.0,0.0,0.9681587536330124,-5.238346711224351,1.0,0.0,0.0 -675,3.0,4.503214540633903,1.6,0.0,0.0,0.9602094515227848,-6.443501739368319,1.0,0.0,0.0 -675,4.0,55.816159174699166,19.0,4.1714366012930434e-10,30.87142607784685,0.958895063924944,-9.799241092884175,0.0,1.0,0.0 -675,5.0,0.0,0.0,0.0,0.0,0.9541097811534588,-7.55676345389928,1.0,0.0,0.0 -675,6.0,13.509643621901708,10.9,0.0,0.0,0.9493496946746708,-8.782357914058723,1.0,0.0,0.0 -675,7.0,17.7758468709233,30.0,0.0,0.0,0.9412598011756927,-7.833885685681408,0.0,1.0,0.0 -675,8.0,0.0,0.0,0.0,0.0,1.0099937104821903,-9.523508261668994,1.0,0.0,0.0 -675,9.0,3.4366637283785044,2.0,0.0,0.0,1.0036876939093655,-10.534332145832163,1.0,0.0,0.0 -675,10.0,0.0,0.0,5.256098570199594e-09,23.99838655587536,1.0572091946899855,-9.523508261082354,0.0,1.0,0.0 -675,11.0,6.636316165144698,7.5,0.0,0.0,1.0241960896246642,-10.250315181929071,1.0,0.0,0.0 -675,12.0,0.0,0.0,3.324093332030782e-09,24.000212552808023,1.0560141275627362,-10.25031518168254,0.0,1.0,0.0 -675,13.0,3.673675019990816,1.6,0.0,0.0,1.010965346650798,-10.751735817997504,1.0,0.0,0.0 -675,14.0,4.858731478052368,2.5,0.0,0.0,1.0057927414635854,-10.73549563164968,1.0,0.0,0.0 -675,15.0,2.0738488016077183,1.8,0.0,0.0,1.009173588124826,-10.46779384573063,1.0,0.0,0.0 -675,16.0,5.33275406127699,5.8,0.0,0.0,1.00092081477962,-10.631266526204293,1.0,0.0,0.0 -675,17.0,1.8960903328984853,0.9,0.0,0.0,0.9955618892594044,-11.047874054940609,1.0,0.0,0.0 -675,18.0,5.629018175792378,3.4,0.0,0.0,0.991889540446002,-11.1256765172251,1.0,0.0,0.0 -675,19.0,1.3035621038677088,0.7,0.0,0.0,0.994212360374298,-11.011055105824235,1.0,0.0,0.0 -675,20.0,10.369244008038592,11.2,0.0,0.0,0.9929774650145212,-10.745811324158373,1.0,0.0,0.0 -675,21.0,0.0,0.0,0.0,0.0,0.993417696244068,-10.742845969305955,1.0,0.0,0.0 -675,22.0,1.8960903328984853,1.6,0.0,0.0,0.9932591262823056,-10.886664747168838,1.0,0.0,0.0 -675,23.0,5.154995592567757,6.7,0.0,0.0,0.9834388509311685,-10.9212321998684,1.0,0.0,0.0 -675,24.0,0.0,0.0,0.0,0.0,0.9719476067049632,-10.566075830110565,1.0,0.0,0.0 -675,25.0,2.0738488016077183,2.3,0.0,0.0,0.9573043168750148,-10.691045092269428,1.0,0.0,0.0 -675,26.0,0.0,0.0,0.0,0.0,0.972086703709926,-10.248120993376771,1.0,0.0,0.0 -675,27.0,0.0,0.0,0.0,0.0,0.9498257054269243,-7.911537080845802,1.0,0.0,0.0 -675,28.0,1.422067749673864,0.9,0.0,0.0,0.9573979682024464,-10.973355379070789,1.0,0.0,0.0 -675,29.0,6.280799227726232,1.9,0.0,0.0,0.9493174455122472,-11.513669806440143,1.0,0.0,0.0 -676,0.0,0.0,0.0,177.09226892345478,0.0005245969052047,1.0,0.0,0.0,0.0,1.0 -676,1.0,12.857862569967851,12.7,1.1015516989956725e-06,11.475377702060342,0.9772503439828468,-4.533912904409659,0.0,1.0,0.0 -676,2.0,1.422067749673864,1.2,0.0,0.0,0.9753915904929672,-4.02673669302935,1.0,0.0,0.0 -676,3.0,4.503214540633903,1.6,0.0,0.0,0.9689674958828484,-4.934828347725387,1.0,0.0,0.0 -676,4.0,55.816159174699166,19.0,-6.579825310485397e-10,26.896627454866007,0.9571001570370642,-11.515335512202329,0.0,1.0,0.0 -676,5.0,0.0,0.0,0.0,0.0,0.961278240462675,-10.786541520010225,1.0,0.0,0.0 -676,6.0,13.509643621901708,10.9,0.0,0.0,0.9526620121194216,-11.396240417103911,1.0,0.0,0.0 -676,7.0,17.7758468709233,30.0,-6.188632256837464e-10,26.565202967139086,0.9585053045963072,-11.220262551832414,0.0,1.0,0.0 -676,8.0,0.0,0.0,0.0,0.0,1.0151207738668786,-11.844487245409024,1.0,0.0,0.0 -676,9.0,3.4366637283785044,2.0,0.0,0.0,1.009306117249242,-12.389318428484987,1.0,0.0,0.0 -676,10.0,0.0,0.0,-6.088837738722074e-10,22.122211171655675,1.0585882860647504,-11.844487245476548,0.0,1.0,0.0 -676,11.0,6.636316165144698,7.5,0.0,0.0,1.0306183931196662,-10.495254276905737,1.0,0.0,0.0 -676,12.0,0.0,0.0,-3.33450308358879e-10,21.486864026813013,1.0590234392431377,-10.495254276930243,0.0,1.0,0.0 -676,13.0,3.673675019990816,1.6,0.0,0.0,1.0164537937306282,-11.228651520752312,1.0,0.0,0.0 -676,14.0,4.858731478052368,2.5,0.0,0.0,1.0086872349820146,-11.42685672910534,1.0,0.0,0.0 -676,15.0,2.0738488016077183,1.8,0.0,0.0,1.0141053415878352,-11.39432280898514,1.0,0.0,0.0 -676,16.0,5.33275406127699,5.8,0.0,0.0,1.0066712828886553,-12.19356435527978,1.0,0.0,0.0 -676,17.0,1.8960903328984853,0.9,0.0,0.0,0.9993275313646872,-12.144045945733655,1.0,0.0,0.0 -676,18.0,5.629018175792378,3.4,0.0,0.0,0.9962027706787068,-12.465240670354222,1.0,0.0,0.0 -676,19.0,1.3035621038677088,0.7,0.0,0.0,0.998792075415552,-12.480487480619384,1.0,0.0,0.0 -676,20.0,10.369244008038592,11.2,0.0,0.0,0.9972685038728488,-12.609551915233528,1.0,0.0,0.0 -676,21.0,0.0,0.0,0.0,0.0,1.009306117249242,-12.389318428484987,1.0,0.0,0.0 -676,22.0,1.8960903328984853,1.6,0.0,0.0,0.989545846391494,-12.121149641152616,1.0,0.0,0.0 -676,23.0,5.154995592567757,6.7,0.0,0.0,0.9711902207646588,-12.910775245468196,1.0,0.0,0.0 -676,24.0,0.0,0.0,0.0,0.0,0.96603977090389,-13.1083068015237,1.0,0.0,0.0 -676,25.0,2.0738488016077183,2.3,0.0,0.0,0.9513040915416928,-13.23483337320692,1.0,0.0,0.0 -676,26.0,0.0,0.0,0.0,0.0,0.9703579327037994,-13.126451528595576,1.0,0.0,0.0 -676,27.0,0.0,0.0,0.0,0.0,0.958284759397832,-11.110581249492236,1.0,0.0,0.0 -676,28.0,1.422067749673864,0.9,0.0,0.0,0.95564128355821,-13.854311717331411,1.0,0.0,0.0 -676,29.0,6.280799227726232,1.9,0.0,0.0,0.9475453758402556,-14.396629612704466,1.0,0.0,0.0 -677,0.0,0.0,0.0,175.76995771069832,0.0012394164405016,1.0,0.0,0.0,0.0,1.0 -677,1.0,12.857862569967851,12.7,1.3545975441497695e-06,11.493200497081318,0.9789042557401352,-4.041523532907274,0.0,1.0,0.0 -677,2.0,1.422067749673864,1.2,0.0,0.0,0.9726114864370948,-5.307090715930792,1.0,0.0,0.0 -677,3.0,4.503214540633903,1.6,0.0,0.0,0.9657089129240268,-6.526293643706213,1.0,0.0,0.0 -677,4.0,55.816159174699166,19.0,-6.76666963758583e-10,25.006744699689435,0.9577093190300524,-9.730076419335074,0.0,1.0,0.0 -677,5.0,0.0,0.0,0.0,0.0,0.9652090892647228,-7.733990865685672,1.0,0.0,0.0 -677,6.0,13.509643621901708,10.9,0.0,0.0,0.9554620836099252,-8.859845254411491,1.0,0.0,0.0 -677,7.0,17.7758468709233,30.0,-1.851164793983068e-10,31.113448471719902,0.9640716227179512,-8.207505571773806,0.0,1.0,0.0 -677,8.0,0.0,0.0,0.0,0.0,1.0165865910488356,-9.577289930187762,1.0,0.0,0.0 -677,9.0,3.4366637283785044,2.0,0.0,0.0,1.0097361513625944,-10.52996519125191,1.0,0.0,0.0 -677,10.0,0.0,0.0,-1.414848149472979e-09,22.113533105616064,1.0599800029361106,-9.577289930344238,0.0,1.0,0.0 -677,11.0,6.636316165144698,7.5,0.0,0.0,1.0137230049579498,-10.279767193722698,1.0,0.0,0.0 -677,12.0,0.0,0.0,-4.125799718554047e-10,12.639296797967477,1.0308878359894182,-10.279767193754369,0.0,1.0,0.0 -677,13.0,3.673675019990816,1.6,0.0,0.0,1.0009087210103598,-10.828970991853213,1.0,0.0,0.0 -677,14.0,4.858731478052368,2.5,0.0,0.0,0.9959614179712604,-10.8621717124412,1.0,0.0,0.0 -677,15.0,2.0738488016077183,1.8,0.0,0.0,1.0058510239278216,-10.518136482079296,1.0,0.0,0.0 -677,16.0,5.33275406127699,5.8,0.0,0.0,1.00404023041349,-10.631891632302924,1.0,0.0,0.0 -677,17.0,1.8960903328984853,0.9,0.0,0.0,0.9913043813400424,-11.133164289424938,1.0,0.0,0.0 -677,18.0,5.629018175792378,3.4,0.0,0.0,0.9909411914667744,-11.184647109710976,1.0,0.0,0.0 -677,19.0,1.3035621038677088,0.7,0.0,0.0,0.9950147876780984,-11.056400091858936,1.0,0.0,0.0 -677,20.0,10.369244008038592,11.2,0.0,0.0,1.0013290302758135,-10.681010123675224,1.0,0.0,0.0 -677,21.0,0.0,0.0,0.0,0.0,1.0024763701979726,-10.66056827479346,1.0,0.0,0.0 -677,22.0,1.8960903328984853,1.6,0.0,0.0,0.97981318298152,-11.228706232433812,1.0,0.0,0.0 -677,23.0,5.154995592567757,6.7,0.0,0.0,0.9653303531665752,-11.557085428784076,1.0,0.0,0.0 -677,24.0,0.0,0.0,0.0,0.0,0.9659177820530884,-11.175086653441207,1.0,0.0,0.0 -677,25.0,2.0738488016077183,2.3,0.0,0.0,0.9511801824462974,-11.30164568548689,1.0,0.0,0.0 -677,26.0,0.0,0.0,0.0,0.0,0.9735970472217816,-10.827915234357452,1.0,0.0,0.0 -677,27.0,0.0,0.0,0.0,0.0,0.962056969624872,-8.14511397006271,1.0,0.0,0.0 -677,28.0,1.422067749673864,0.9,0.0,0.0,0.95893260935671,-11.55086726279164,1.0,0.0,0.0 -677,29.0,6.280799227726232,1.9,0.0,0.0,0.9508654785212188,-12.089440555524714,1.0,0.0,0.0 -678,0.0,0.0,0.0,175.71278728582143,0.0011764701075556,1.0,0.0,0.0,0.0,1.0 -678,1.0,12.857862569967851,12.7,1.123643877928329e-06,11.940476136108911,0.9789595435343824,-4.042272626796005,0.0,1.0,0.0 -678,2.0,1.422067749673864,1.2,0.0,0.0,0.9724700647428608,-5.29999675296126,1.0,0.0,0.0 -678,3.0,4.503214540633903,1.6,0.0,0.0,0.9655333218551596,-6.517565504573109,1.0,0.0,0.0 -678,4.0,55.816159174699166,19.0,2.3129525703165022e-10,25.027225701841687,0.9576375004380576,-9.731244139078962,0.0,1.0,0.0 -678,5.0,0.0,0.0,0.0,0.0,0.9649700235903595,-7.732965982646458,1.0,0.0,0.0 -678,6.0,13.509643621901708,10.9,0.0,0.0,0.9552899605984232,-8.859748948244274,1.0,0.0,0.0 -678,7.0,17.7758468709233,30.0,2.752138699948185e-10,31.000718203595525,0.9639605595644456,-8.2017640615197,0.0,1.0,0.0 -678,8.0,0.0,0.0,0.0,0.0,1.014274973323907,-9.701088919855389,1.0,0.0,0.0 -678,9.0,3.4366637283785044,2.0,0.0,0.0,1.0051561835532137,-10.722641186094164,1.0,0.0,0.0 -678,10.0,0.0,0.0,4.909645332073086e-10,23.302164564334056,1.0599999765015318,-9.701088919800965,0.0,1.0,0.0 -678,11.0,6.636316165144698,7.5,0.0,0.0,1.0130208403694096,-10.218533848063313,1.0,0.0,0.0 -678,12.0,0.0,0.0,3.561987042842309e-10,10.948029408046716,1.0279316001601175,-10.218533848035872,0.0,1.0,0.0 -678,13.0,3.673675019990816,1.6,0.0,0.0,1.0014668495717878,-10.739216885646169,1.0,0.0,0.0 -678,14.0,4.858731478052368,2.5,0.0,0.0,0.9979351071443582,-10.772564405916912,1.0,0.0,0.0 -678,15.0,2.0738488016077183,1.8,0.0,0.0,1.0032869287433688,-10.55822782592876,1.0,0.0,0.0 -678,16.0,5.33275406127699,5.8,0.0,0.0,1.000127972882393,-10.7803516144962,1.0,0.0,0.0 -678,17.0,1.8960903328984853,0.9,0.0,0.0,0.990941193120982,-11.142616291938952,1.0,0.0,0.0 -678,18.0,5.629018175792378,3.4,0.0,0.0,0.989199438189927,-11.253417174693238,1.0,0.0,0.0 -678,19.0,1.3035621038677088,0.7,0.0,0.0,0.9925507902585756,-11.155622212119988,1.0,0.0,0.0 -678,20.0,10.369244008038592,11.2,0.0,0.0,0.9943014202180098,-10.928351986603898,1.0,0.0,0.0 -678,21.0,0.0,0.0,0.0,0.0,0.9946910406510738,-10.923664755150478,1.0,0.0,0.0 -678,22.0,1.8960903328984853,1.6,0.0,0.0,0.9890364395572094,-10.97460024737173,1.0,0.0,0.0 -678,23.0,5.154995592567757,6.7,0.0,0.0,0.98410281777684,-11.074158304989316,1.0,0.0,0.0 -678,24.0,0.0,0.0,0.0,0.0,0.9775076639161694,-10.780246991011731,1.0,0.0,0.0 -678,25.0,2.0738488016077183,2.3,0.0,0.0,0.9629502566515996,-10.903776879778226,1.0,0.0,0.0 -678,26.0,0.0,0.0,0.0,0.0,0.9806596881584364,-10.497029482774265,1.0,0.0,0.0 -678,27.0,0.0,0.0,0.0,0.0,0.9628049622653287,-8.121410671529123,1.0,0.0,0.0 -678,28.0,1.422067749673864,0.9,0.0,0.0,0.966107778911606,-11.20945125257977,1.0,0.0,0.0 -678,29.0,6.280799227726232,1.9,0.0,0.0,0.9581026670696488,-11.739994833291645,1.0,0.0,0.0 -679,0.0,0.0,0.0,175.71278728582143,0.0011764701075556,1.0,0.0,0.0,0.0,1.0 -679,1.0,12.857862569967851,12.7,1.123643877928329e-06,11.940476136108911,0.9789595435343824,-4.042272626796005,0.0,1.0,0.0 -679,2.0,1.422067749673864,1.2,0.0,0.0,0.9724700647428608,-5.29999675296126,1.0,0.0,0.0 -679,3.0,4.503214540633903,1.6,0.0,0.0,0.9655333218551596,-6.517565504573109,1.0,0.0,0.0 -679,4.0,55.816159174699166,19.0,2.3129525703165022e-10,25.027225701841687,0.9576375004380576,-9.731244139078962,0.0,1.0,0.0 -679,5.0,0.0,0.0,0.0,0.0,0.9649700235903595,-7.732965982646458,1.0,0.0,0.0 -679,6.0,13.509643621901708,10.9,0.0,0.0,0.9552899605984232,-8.859748948244274,1.0,0.0,0.0 -679,7.0,17.7758468709233,30.0,2.752138699948185e-10,31.000718203595525,0.9639605595644456,-8.2017640615197,0.0,1.0,0.0 -679,8.0,0.0,0.0,0.0,0.0,1.014274973323907,-9.701088919855389,1.0,0.0,0.0 -679,9.0,3.4366637283785044,2.0,0.0,0.0,1.0051561835532137,-10.722641186094164,1.0,0.0,0.0 -679,10.0,0.0,0.0,4.909645332073086e-10,23.302164564334056,1.0599999765015318,-9.701088919800965,0.0,1.0,0.0 -679,11.0,6.636316165144698,7.5,0.0,0.0,1.0130208403694096,-10.218533848063313,1.0,0.0,0.0 -679,12.0,0.0,0.0,3.561987042842309e-10,10.948029408046716,1.0279316001601175,-10.218533848035872,0.0,1.0,0.0 -679,13.0,3.673675019990816,1.6,0.0,0.0,1.0014668495717878,-10.739216885646169,1.0,0.0,0.0 -679,14.0,4.858731478052368,2.5,0.0,0.0,0.9979351071443582,-10.772564405916912,1.0,0.0,0.0 -679,15.0,2.0738488016077183,1.8,0.0,0.0,1.0032869287433688,-10.55822782592876,1.0,0.0,0.0 -679,16.0,5.33275406127699,5.8,0.0,0.0,1.000127972882393,-10.7803516144962,1.0,0.0,0.0 -679,17.0,1.8960903328984853,0.9,0.0,0.0,0.990941193120982,-11.142616291938952,1.0,0.0,0.0 -679,18.0,5.629018175792378,3.4,0.0,0.0,0.989199438189927,-11.253417174693238,1.0,0.0,0.0 -679,19.0,1.3035621038677088,0.7,0.0,0.0,0.9925507902585756,-11.155622212119988,1.0,0.0,0.0 -679,20.0,10.369244008038592,11.2,0.0,0.0,0.9943014202180098,-10.928351986603898,1.0,0.0,0.0 -679,21.0,0.0,0.0,0.0,0.0,0.9946910406510738,-10.923664755150478,1.0,0.0,0.0 -679,22.0,1.8960903328984853,1.6,0.0,0.0,0.9890364395572094,-10.97460024737173,1.0,0.0,0.0 -679,23.0,5.154995592567757,6.7,0.0,0.0,0.98410281777684,-11.074158304989316,1.0,0.0,0.0 -679,24.0,0.0,0.0,0.0,0.0,0.9775076639161694,-10.780246991011731,1.0,0.0,0.0 -679,25.0,2.0738488016077183,2.3,0.0,0.0,0.9629502566515996,-10.903776879778226,1.0,0.0,0.0 -679,26.0,0.0,0.0,0.0,0.0,0.9806596881584364,-10.497029482774265,1.0,0.0,0.0 -679,27.0,0.0,0.0,0.0,0.0,0.9628049622653287,-8.121410671529123,1.0,0.0,0.0 -679,28.0,1.422067749673864,0.9,0.0,0.0,0.966107778911606,-11.20945125257977,1.0,0.0,0.0 -679,29.0,6.280799227726232,1.9,0.0,0.0,0.9581026670696488,-11.739994833291645,1.0,0.0,0.0 -680,0.0,0.0,0.0,176.30338065764272,0.0039313136888985,1.0,0.0,0.0,0.0,1.0 -680,1.0,12.857862569967851,12.7,3.435368843130404e-06,10.71101722440968,0.9799794601435604,-3.805776511478386,0.0,1.0,0.0 -680,2.0,1.422067749673864,1.2,0.0,0.0,0.970403030947963,-6.044547610564501,1.0,0.0,0.0 -680,3.0,4.503214540633903,1.6,0.0,0.0,0.9631499310849698,-7.444259402139361,1.0,0.0,0.0 -680,4.0,55.816159174699166,19.0,3.3656303272481113e-09,23.888609071245817,0.9593815911576988,-10.764052449292942,0.0,1.0,0.0 -680,5.0,0.0,0.0,0.0,0.0,0.9629570160165692,-8.2379473309447,1.0,0.0,0.0 -680,6.0,13.509643621901708,10.9,0.0,0.0,0.9503790558137348,-8.762132761257849,1.0,0.0,0.0 -680,7.0,17.7758468709233,30.0,2.552781157155706e-09,33.41525043095679,0.9629408576129196,-8.712024838595191,0.0,1.0,0.0 -680,8.0,0.0,0.0,0.0,0.0,1.013425598328319,-10.453772572914428,1.0,0.0,0.0 -680,9.0,3.4366637283785044,2.0,0.0,0.0,1.0046204699723589,-11.602062855448285,1.0,0.0,0.0 -680,10.0,0.0,0.0,3.1421526333831195e-10,23.73502326982165,1.0599999843022272,-10.453772572879574,0.0,1.0,0.0 -680,11.0,6.636316165144698,7.5,0.0,0.0,1.0257554646868012,-11.027012742798323,1.0,0.0,0.0 -680,12.0,0.0,0.0,3.7903598616319785e-09,18.609073472243523,1.0505544671895812,-11.027012742516185,0.0,1.0,0.0 -680,13.0,3.673675019990816,1.6,0.0,0.0,1.0152124268382603,-11.489274646708443,1.0,0.0,0.0 -680,14.0,4.858731478052368,2.5,0.0,0.0,1.0128698727192735,-11.496425162097236,1.0,0.0,0.0 -680,15.0,2.0738488016077183,1.8,0.0,0.0,1.0102720053286958,-11.366663814039065,1.0,0.0,0.0 -680,16.0,5.33275406127699,5.8,0.0,0.0,1.0019722551694306,-11.646090236501982,1.0,0.0,0.0 -680,17.0,1.8960903328984853,0.9,0.0,0.0,1.0004929161525018,-11.911247419777531,1.0,0.0,0.0 -680,18.0,5.629018175792378,3.4,0.0,0.0,0.9955439234946808,-12.052122156753574,1.0,0.0,0.0 -680,19.0,1.3035621038677088,0.7,0.0,0.0,0.99717530221382,-11.971822651614463,1.0,0.0,0.0 -680,20.0,10.369244008038592,11.2,0.0,0.0,0.9909508499972,-11.913772643565103,1.0,0.0,0.0 -680,21.0,0.0,0.0,0.0,0.0,0.9904473468314046,-11.941896868591568,1.0,0.0,0.0 -680,22.0,1.8960903328984853,1.6,0.0,0.0,0.9600255114051488,-12.651554739646496,1.0,0.0,0.0 -680,23.0,5.154995592567757,6.7,0.0,0.0,0.9671375202637889,-12.465966724748968,1.0,0.0,0.0 -680,24.0,0.0,0.0,0.0,0.0,0.9549143987862134,-12.621361823578583,1.0,0.0,0.0 -680,25.0,2.0738488016077183,2.3,0.0,0.0,0.9400014805182328,-12.75090161890452,1.0,0.0,0.0 -680,26.0,0.0,0.0,0.0,0.0,0.9806610841904556,-10.384386692118076,1.0,0.0,0.0 -680,27.0,0.0,0.0,0.0,0.0,0.9615514178963884,-8.563368190075371,1.0,0.0,0.0 -680,28.0,1.422067749673864,0.9,0.0,0.0,0.9661091970241864,-11.096806403573348,1.0,0.0,0.0 -680,29.0,6.280799227726232,1.9,0.0,0.0,0.9581040973529978,-11.627348415063077,1.0,0.0,0.0 -681,0.0,0.0,0.0,175.71278728582143,0.0011764701075556,1.0,0.0,0.0,0.0,1.0 -681,1.0,12.857862569967851,12.7,1.123643877928329e-06,11.940476136108911,0.9789595435343824,-4.042272626796005,0.0,1.0,0.0 -681,2.0,1.422067749673864,1.2,0.0,0.0,0.9724700647428608,-5.29999675296126,1.0,0.0,0.0 -681,3.0,4.503214540633903,1.6,0.0,0.0,0.9655333218551596,-6.517565504573109,1.0,0.0,0.0 -681,4.0,55.816159174699166,19.0,2.3129525703165022e-10,25.027225701841687,0.9576375004380576,-9.731244139078962,0.0,1.0,0.0 -681,5.0,0.0,0.0,0.0,0.0,0.9649700235903595,-7.732965982646458,1.0,0.0,0.0 -681,6.0,13.509643621901708,10.9,0.0,0.0,0.9552899605984232,-8.859748948244274,1.0,0.0,0.0 -681,7.0,17.7758468709233,30.0,2.752138699948185e-10,31.000718203595525,0.9639605595644456,-8.2017640615197,0.0,1.0,0.0 -681,8.0,0.0,0.0,0.0,0.0,1.014274973323907,-9.701088919855389,1.0,0.0,0.0 -681,9.0,3.4366637283785044,2.0,0.0,0.0,1.0051561835532137,-10.722641186094164,1.0,0.0,0.0 -681,10.0,0.0,0.0,4.909645332073086e-10,23.302164564334056,1.0599999765015318,-9.701088919800965,0.0,1.0,0.0 -681,11.0,6.636316165144698,7.5,0.0,0.0,1.0130208403694096,-10.218533848063313,1.0,0.0,0.0 -681,12.0,0.0,0.0,3.561987042842309e-10,10.948029408046716,1.0279316001601175,-10.218533848035872,0.0,1.0,0.0 -681,13.0,3.673675019990816,1.6,0.0,0.0,1.0014668495717878,-10.739216885646169,1.0,0.0,0.0 -681,14.0,4.858731478052368,2.5,0.0,0.0,0.9979351071443582,-10.772564405916912,1.0,0.0,0.0 -681,15.0,2.0738488016077183,1.8,0.0,0.0,1.0032869287433688,-10.55822782592876,1.0,0.0,0.0 -681,16.0,5.33275406127699,5.8,0.0,0.0,1.000127972882393,-10.7803516144962,1.0,0.0,0.0 -681,17.0,1.8960903328984853,0.9,0.0,0.0,0.990941193120982,-11.142616291938952,1.0,0.0,0.0 -681,18.0,5.629018175792378,3.4,0.0,0.0,0.989199438189927,-11.253417174693238,1.0,0.0,0.0 -681,19.0,1.3035621038677088,0.7,0.0,0.0,0.9925507902585756,-11.155622212119988,1.0,0.0,0.0 -681,20.0,10.369244008038592,11.2,0.0,0.0,0.9943014202180098,-10.928351986603898,1.0,0.0,0.0 -681,21.0,0.0,0.0,0.0,0.0,0.9946910406510738,-10.923664755150478,1.0,0.0,0.0 -681,22.0,1.8960903328984853,1.6,0.0,0.0,0.9890364395572094,-10.97460024737173,1.0,0.0,0.0 -681,23.0,5.154995592567757,6.7,0.0,0.0,0.98410281777684,-11.074158304989316,1.0,0.0,0.0 -681,24.0,0.0,0.0,0.0,0.0,0.9775076639161694,-10.780246991011731,1.0,0.0,0.0 -681,25.0,2.0738488016077183,2.3,0.0,0.0,0.9629502566515996,-10.903776879778226,1.0,0.0,0.0 -681,26.0,0.0,0.0,0.0,0.0,0.9806596881584364,-10.497029482774265,1.0,0.0,0.0 -681,27.0,0.0,0.0,0.0,0.0,0.9628049622653287,-8.121410671529123,1.0,0.0,0.0 -681,28.0,1.422067749673864,0.9,0.0,0.0,0.966107778911606,-11.20945125257977,1.0,0.0,0.0 -681,29.0,6.280799227726232,1.9,0.0,0.0,0.9581026670696488,-11.739994833291645,1.0,0.0,0.0 -682,0.0,0.0,0.0,175.75375507644551,0.0008752398708899,1.0,0.0,0.0,0.0,1.0 -682,1.0,12.857862569967851,12.7,8.609345006261389e-07,11.175295608556771,0.9787902047219376,-4.036755858331201,0.0,1.0,0.0 -682,2.0,1.422067749673864,1.2,0.0,0.0,0.9729559762468928,-5.317532939519851,1.0,0.0,0.0 -682,3.0,4.503214540633903,1.6,0.0,0.0,0.9661353649872436,-6.53905733854545,1.0,0.0,0.0 -682,4.0,55.816159174699166,19.0,7.588654718819158e-10,24.728864546383505,0.9572651429130612,-9.717142609010562,0.0,1.0,0.0 -682,5.0,0.0,0.0,0.0,0.0,0.9650264338963652,-7.718139774089708,1.0,0.0,0.0 -682,6.0,13.509643621901708,10.9,0.0,0.0,0.9551700913910228,-8.845461810401298,1.0,0.0,0.0 -682,7.0,17.7758468709233,30.0,8.733716221418393e-10,28.370404113775592,0.9631220332110624,-8.15856166651455,0.0,1.0,0.0 -682,8.0,0.0,0.0,0.0,0.0,1.015411096495053,-9.780303691355812,1.0,0.0,0.0 -682,9.0,3.4366637283785044,2.0,0.0,0.0,1.0075092244932968,-10.848215122885982,1.0,0.0,0.0 -682,10.0,0.0,0.0,1.42716626163747e-09,22.722797554013702,1.0599992587256288,-9.780303691197796,0.0,1.0,0.0 -682,11.0,6.636316165144698,7.5,0.0,0.0,1.0195848912329517,-10.378707992162916,1.0,0.0,0.0 -682,12.0,0.0,0.0,1.0758699806855804e-09,15.276181513749144,1.0401460934090374,-10.378707992081546,0.0,1.0,0.0 -682,13.0,3.673675019990816,1.6,0.0,0.0,1.0074082981418544,-10.9136183909832,1.0,0.0,0.0 -682,14.0,4.858731478052368,2.5,0.0,0.0,1.0030838678648155,-10.951384147870357,1.0,0.0,0.0 -682,15.0,2.0738488016077183,1.8,0.0,0.0,1.0080799045337978,-10.693347659719937,1.0,0.0,0.0 -682,16.0,5.33275406127699,5.8,0.0,0.0,1.0032527225429433,-10.911120686749513,1.0,0.0,0.0 -682,17.0,1.8960903328984853,0.9,0.0,0.0,0.9951476810499412,-11.29913629326549,1.0,0.0,0.0 -682,18.0,5.629018175792378,3.4,0.0,0.0,0.9928366862552932,-11.397697710878202,1.0,0.0,0.0 -682,19.0,1.3035621038677088,0.7,0.0,0.0,0.9958725795666716,-11.294519002348812,1.0,0.0,0.0 -682,20.0,10.369244008038592,11.2,0.0,0.0,0.9964524227552136,-11.095090663699184,1.0,0.0,0.0 -682,21.0,0.0,0.0,0.0,0.0,0.9967651964887974,-11.103876166463616,1.0,0.0,0.0 -682,22.0,1.8960903328984853,1.6,0.0,0.0,0.9923039475361092,-11.226807370238069,1.0,0.0,0.0 -682,23.0,5.154995592567757,6.7,0.0,0.0,0.9848596478243712,-11.428663467583377,1.0,0.0,0.0 -682,24.0,0.0,0.0,0.0,0.0,0.97286952137862,-11.57841628099296,1.0,0.0,0.0 -682,25.0,2.0738488016077183,2.3,0.0,0.0,0.9582405429078608,-11.703145139832854,1.0,0.0,0.0 -682,26.0,0.0,0.0,0.0,0.0,0.9823854187436716,-9.850323761140194,1.0,0.0,0.0 -682,27.0,0.0,0.0,0.0,0.0,0.9631942234530012,-8.035701444241854,1.0,0.0,0.0 -682,28.0,1.422067749673864,0.9,0.0,0.0,0.9678607353130328,-10.560207673979,1.0,0.0,0.0 -682,29.0,6.280799227726232,1.9,0.0,0.0,0.9598706281857396,-11.088816897039516,1.0,0.0,0.0 -683,0.0,0.0,0.0,176.04261386848427,0.0015645166778099,1.0,0.0,0.0,0.0,1.0 -683,1.0,12.857862569967851,12.7,1.4063408129838275e-06,11.525578902852368,0.9790650338095728,-4.033947369804405,0.0,1.0,0.0 -683,2.0,1.422067749673864,1.2,0.0,0.0,0.9721056435676142,-5.357752139310236,1.0,0.0,0.0 -683,3.0,4.503214540633903,1.6,0.0,0.0,0.965095205345292,-6.589548806387532,1.0,0.0,0.0 -683,4.0,55.816159174699166,19.0,1.4167501076677072e-09,25.39986877867767,0.9585170007265686,-9.688350509380916,0.0,1.0,0.0 -683,5.0,0.0,0.0,0.0,0.0,0.9658591997020632,-7.651711035268661,1.0,0.0,0.0 -683,6.0,13.509643621901708,10.9,0.0,0.0,0.9561880666481132,-8.793562256275177,1.0,0.0,0.0 -683,7.0,17.7758468709233,30.0,1.7579269410548416e-09,33.52658534049625,0.9655804557426214,-8.150037966217033,0.0,1.0,0.0 -683,8.0,0.0,0.0,0.0,0.0,1.0237881176100243,-7.65171103498678,1.0,0.0,0.0 -683,9.0,3.4366637283785044,2.0,0.0,0.0,0.985998643479573,-12.62782137985052,1.0,0.0,0.0 -683,10.0,0.0,0.0,2.3914356413828357e-09,18.448936710005317,1.0599901414371364,-7.651711034724158,0.0,1.0,0.0 -683,11.0,6.636316165144698,7.5,0.0,0.0,1.0105979633486255,-11.385290224132596,1.0,0.0,0.0 -683,12.0,0.0,0.0,2.6115283784880567e-09,16.385392788667293,1.032808802232406,-11.385290223931898,0.0,1.0,0.0 -683,13.0,3.673675019990816,1.6,0.0,0.0,0.9965886874805694,-12.010528563732176,1.0,0.0,0.0 -683,14.0,4.858731478052368,2.5,0.0,0.0,0.9900240942147472,-12.089553331406952,1.0,0.0,0.0 -683,15.0,2.0738488016077183,1.8,0.0,0.0,0.9930514359662952,-12.004430556493965,1.0,0.0,0.0 -683,16.0,5.33275406127699,5.8,0.0,0.0,0.9838364511320032,-12.556131606327888,1.0,0.0,0.0 -683,17.0,1.8960903328984853,0.9,0.0,0.0,0.9788824765258388,-12.672827441712034,1.0,0.0,0.0 -683,18.0,5.629018175792378,3.4,0.0,0.0,0.9747327609276544,-12.90995115187618,1.0,0.0,0.0 -683,19.0,1.3035621038677088,0.7,0.0,0.0,0.9768747405335726,-12.873957119998694,1.0,0.0,0.0 -683,20.0,10.369244008038592,11.2,0.0,0.0,0.9567973847502036,-12.98400005294305,1.0,0.0,0.0 -683,21.0,0.0,0.0,0.0,0.0,0.9608178273947856,-12.912454686719276,1.0,0.0,0.0 -683,22.0,1.8960903328984853,1.6,0.0,0.0,0.9748075201011768,-12.423007609693348,1.0,0.0,0.0 -683,23.0,5.154995592567757,6.7,0.0,0.0,0.9615894589572702,-12.702929872509683,1.0,0.0,0.0 -683,24.0,0.0,0.0,0.0,0.0,0.965157636395078,-11.888124055826204,1.0,0.0,0.0 -683,25.0,2.0738488016077183,2.3,0.0,0.0,0.9504080600506124,-12.01488566630662,1.0,0.0,0.0 -683,26.0,0.0,0.0,0.0,0.0,0.9746092009657136,-11.272935257464168,1.0,0.0,0.0 -683,27.0,0.0,0.0,0.0,0.0,0.9626254387913477,-8.12481598291075,1.0,0.0,0.0 -683,28.0,1.422067749673864,0.9,0.0,0.0,0.9599609997670382,-11.994363826724811,1.0,0.0,0.0 -683,29.0,6.280799227726232,1.9,0.0,0.0,0.951902817818452,-12.531775072267775,1.0,0.0,0.0 -684,0.0,0.0,0.0,175.71278728582143,0.0011764701075556,1.0,0.0,0.0,0.0,1.0 -684,1.0,12.857862569967851,12.7,1.123643877928329e-06,11.940476136108911,0.9789595435343824,-4.042272626796005,0.0,1.0,0.0 -684,2.0,1.422067749673864,1.2,0.0,0.0,0.9724700647428608,-5.29999675296126,1.0,0.0,0.0 -684,3.0,4.503214540633903,1.6,0.0,0.0,0.9655333218551596,-6.517565504573109,1.0,0.0,0.0 -684,4.0,55.816159174699166,19.0,2.3129525703165022e-10,25.027225701841687,0.9576375004380576,-9.731244139078962,0.0,1.0,0.0 -684,5.0,0.0,0.0,0.0,0.0,0.9649700235903595,-7.732965982646458,1.0,0.0,0.0 -684,6.0,13.509643621901708,10.9,0.0,0.0,0.9552899605984232,-8.859748948244274,1.0,0.0,0.0 -684,7.0,17.7758468709233,30.0,2.752138699948185e-10,31.000718203595525,0.9639605595644456,-8.2017640615197,0.0,1.0,0.0 -684,8.0,0.0,0.0,0.0,0.0,1.014274973323907,-9.701088919855389,1.0,0.0,0.0 -684,9.0,3.4366637283785044,2.0,0.0,0.0,1.0051561835532137,-10.722641186094164,1.0,0.0,0.0 -684,10.0,0.0,0.0,4.909645332073086e-10,23.302164564334056,1.0599999765015318,-9.701088919800965,0.0,1.0,0.0 -684,11.0,6.636316165144698,7.5,0.0,0.0,1.0130208403694096,-10.218533848063313,1.0,0.0,0.0 -684,12.0,0.0,0.0,3.561987042842309e-10,10.948029408046716,1.0279316001601175,-10.218533848035872,0.0,1.0,0.0 -684,13.0,3.673675019990816,1.6,0.0,0.0,1.0014668495717878,-10.739216885646169,1.0,0.0,0.0 -684,14.0,4.858731478052368,2.5,0.0,0.0,0.9979351071443582,-10.772564405916912,1.0,0.0,0.0 -684,15.0,2.0738488016077183,1.8,0.0,0.0,1.0032869287433688,-10.55822782592876,1.0,0.0,0.0 -684,16.0,5.33275406127699,5.8,0.0,0.0,1.000127972882393,-10.7803516144962,1.0,0.0,0.0 -684,17.0,1.8960903328984853,0.9,0.0,0.0,0.990941193120982,-11.142616291938952,1.0,0.0,0.0 -684,18.0,5.629018175792378,3.4,0.0,0.0,0.989199438189927,-11.253417174693238,1.0,0.0,0.0 -684,19.0,1.3035621038677088,0.7,0.0,0.0,0.9925507902585756,-11.155622212119988,1.0,0.0,0.0 -684,20.0,10.369244008038592,11.2,0.0,0.0,0.9943014202180098,-10.928351986603898,1.0,0.0,0.0 -684,21.0,0.0,0.0,0.0,0.0,0.9946910406510738,-10.923664755150478,1.0,0.0,0.0 -684,22.0,1.8960903328984853,1.6,0.0,0.0,0.9890364395572094,-10.97460024737173,1.0,0.0,0.0 -684,23.0,5.154995592567757,6.7,0.0,0.0,0.98410281777684,-11.074158304989316,1.0,0.0,0.0 -684,24.0,0.0,0.0,0.0,0.0,0.9775076639161694,-10.780246991011731,1.0,0.0,0.0 -684,25.0,2.0738488016077183,2.3,0.0,0.0,0.9629502566515996,-10.903776879778226,1.0,0.0,0.0 -684,26.0,0.0,0.0,0.0,0.0,0.9806596881584364,-10.497029482774265,1.0,0.0,0.0 -684,27.0,0.0,0.0,0.0,0.0,0.9628049622653287,-8.121410671529123,1.0,0.0,0.0 -684,28.0,1.422067749673864,0.9,0.0,0.0,0.966107778911606,-11.20945125257977,1.0,0.0,0.0 -684,29.0,6.280799227726232,1.9,0.0,0.0,0.9581026670696488,-11.739994833291645,1.0,0.0,0.0 -685,0.0,0.0,0.0,175.71278728582143,0.0011764701075556,1.0,0.0,0.0,0.0,1.0 -685,1.0,12.857862569967851,12.7,1.123643877928329e-06,11.940476136108911,0.9789595435343824,-4.042272626796005,0.0,1.0,0.0 -685,2.0,1.422067749673864,1.2,0.0,0.0,0.9724700647428608,-5.29999675296126,1.0,0.0,0.0 -685,3.0,4.503214540633903,1.6,0.0,0.0,0.9655333218551596,-6.517565504573109,1.0,0.0,0.0 -685,4.0,55.816159174699166,19.0,2.3129525703165022e-10,25.027225701841687,0.9576375004380576,-9.731244139078962,0.0,1.0,0.0 -685,5.0,0.0,0.0,0.0,0.0,0.9649700235903595,-7.732965982646458,1.0,0.0,0.0 -685,6.0,13.509643621901708,10.9,0.0,0.0,0.9552899605984232,-8.859748948244274,1.0,0.0,0.0 -685,7.0,17.7758468709233,30.0,2.752138699948185e-10,31.000718203595525,0.9639605595644456,-8.2017640615197,0.0,1.0,0.0 -685,8.0,0.0,0.0,0.0,0.0,1.014274973323907,-9.701088919855389,1.0,0.0,0.0 -685,9.0,3.4366637283785044,2.0,0.0,0.0,1.0051561835532137,-10.722641186094164,1.0,0.0,0.0 -685,10.0,0.0,0.0,4.909645332073086e-10,23.302164564334056,1.0599999765015318,-9.701088919800965,0.0,1.0,0.0 -685,11.0,6.636316165144698,7.5,0.0,0.0,1.0130208403694096,-10.218533848063313,1.0,0.0,0.0 -685,12.0,0.0,0.0,3.561987042842309e-10,10.948029408046716,1.0279316001601175,-10.218533848035872,0.0,1.0,0.0 -685,13.0,3.673675019990816,1.6,0.0,0.0,1.0014668495717878,-10.739216885646169,1.0,0.0,0.0 -685,14.0,4.858731478052368,2.5,0.0,0.0,0.9979351071443582,-10.772564405916912,1.0,0.0,0.0 -685,15.0,2.0738488016077183,1.8,0.0,0.0,1.0032869287433688,-10.55822782592876,1.0,0.0,0.0 -685,16.0,5.33275406127699,5.8,0.0,0.0,1.000127972882393,-10.7803516144962,1.0,0.0,0.0 -685,17.0,1.8960903328984853,0.9,0.0,0.0,0.990941193120982,-11.142616291938952,1.0,0.0,0.0 -685,18.0,5.629018175792378,3.4,0.0,0.0,0.989199438189927,-11.253417174693238,1.0,0.0,0.0 -685,19.0,1.3035621038677088,0.7,0.0,0.0,0.9925507902585756,-11.155622212119988,1.0,0.0,0.0 -685,20.0,10.369244008038592,11.2,0.0,0.0,0.9943014202180098,-10.928351986603898,1.0,0.0,0.0 -685,21.0,0.0,0.0,0.0,0.0,0.9946910406510738,-10.923664755150478,1.0,0.0,0.0 -685,22.0,1.8960903328984853,1.6,0.0,0.0,0.9890364395572094,-10.97460024737173,1.0,0.0,0.0 -685,23.0,5.154995592567757,6.7,0.0,0.0,0.98410281777684,-11.074158304989316,1.0,0.0,0.0 -685,24.0,0.0,0.0,0.0,0.0,0.9775076639161694,-10.780246991011731,1.0,0.0,0.0 -685,25.0,2.0738488016077183,2.3,0.0,0.0,0.9629502566515996,-10.903776879778226,1.0,0.0,0.0 -685,26.0,0.0,0.0,0.0,0.0,0.9806596881584364,-10.497029482774265,1.0,0.0,0.0 -685,27.0,0.0,0.0,0.0,0.0,0.9628049622653287,-8.121410671529123,1.0,0.0,0.0 -685,28.0,1.422067749673864,0.9,0.0,0.0,0.966107778911606,-11.20945125257977,1.0,0.0,0.0 -685,29.0,6.280799227726232,1.9,0.0,0.0,0.9581026670696488,-11.739994833291645,1.0,0.0,0.0 -686,0.0,0.0,0.0,175.79689279290645,0.0092631069194659,1.0,0.0,0.0,0.0,1.0 -686,1.0,12.857862569967851,12.7,6.5852867840966285e-06,16.28085388720666,0.9796566594145416,-4.064058988748518,0.0,1.0,0.0 -686,2.0,1.422067749673864,1.2,0.0,0.0,0.9703870833995596,-5.255236972810375,1.0,0.0,0.0 -686,3.0,4.503214540633903,1.6,0.0,0.0,0.9629583383442316,-6.463185429937716,1.0,0.0,0.0 -686,4.0,55.816159174699166,19.0,1.1457498115635384e-08,25.91920694437019,0.9581787485106285,-9.766830339300077,0.0,1.0,0.0 -686,5.0,0.0,0.0,0.0,0.0,0.963498101727962,-7.746331147270008,1.0,0.0,0.0 -686,6.0,13.509643621901708,10.9,0.0,0.0,0.9546369332333784,-8.881751007827663,1.0,0.0,0.0 -686,7.0,17.7758468709233,30.0,1.0788210554795382e-08,37.05341061178673,0.96467221541248,-8.254967315801798,0.0,1.0,0.0 -686,8.0,0.0,0.0,0.0,0.0,1.0076101868917493,-9.861346917951822,1.0,0.0,0.0 -686,9.0,3.4366637283785044,2.0,0.0,0.0,0.9950056315777324,-10.96862786853763,1.0,0.0,0.0 -686,10.0,0.0,0.0,1.6937872649230923e-08,23.98633470642832,1.0549050375316795,-9.861346916052764,0.0,1.0,0.0 -686,11.0,6.636316165144698,7.5,0.0,0.0,0.994757754470371,-9.96141258857868,1.0,0.0,0.0 -686,12.0,0.0,0.0,0.0,0.0,0.994757754470371,-9.96141258857868,0.0,1.0,0.0 -686,13.0,3.673675019990816,1.6,0.0,0.0,0.9850384957911752,-10.4337684873676,1.0,0.0,0.0 -686,14.0,4.858731478052368,2.5,0.0,0.0,0.9838674071294746,-10.449249152254632,1.0,0.0,0.0 -686,15.0,2.0738488016077183,1.8,0.0,0.0,0.988100694728719,-10.5393453744754,1.0,0.0,0.0 -686,16.0,5.33275406127699,5.8,0.0,0.0,0.98844622634102,-10.940654792332774,1.0,0.0,0.0 -686,17.0,1.8960903328984853,0.9,0.0,0.0,0.9674430223822872,-12.117734088856066,1.0,0.0,0.0 -686,18.0,5.629018175792378,3.4,0.0,0.0,0.9698992645842988,-12.003264323704665,1.0,0.0,0.0 -686,19.0,1.3035621038677088,0.7,0.0,0.0,0.9755645478295925,-11.781937241227082,1.0,0.0,0.0 -686,20.0,10.369244008038592,11.2,0.0,0.0,0.9840300436099167,-11.14513156938365,1.0,0.0,0.0 -686,21.0,0.0,0.0,0.0,0.0,0.9844248418820344,-11.129571843771748,1.0,0.0,0.0 -686,22.0,1.8960903328984853,1.6,0.0,0.0,0.9766119152574414,-10.818881150110013,1.0,0.0,0.0 -686,23.0,5.154995592567757,6.7,0.0,0.0,0.9740083905818115,-11.138386383351502,1.0,0.0,0.0 -686,24.0,0.0,0.0,0.0,0.0,0.9706092439463394,-10.873437863076555,1.0,0.0,0.0 -686,25.0,2.0738488016077183,2.3,0.0,0.0,0.9559451273890632,-10.998757374308182,1.0,0.0,0.0 -686,26.0,0.0,0.0,0.0,0.0,0.9758085473988832,-10.603474015541249,1.0,0.0,0.0 -686,27.0,0.0,0.0,0.0,0.0,0.9613782951164608,-8.145088316970424,1.0,0.0,0.0 -686,28.0,1.422067749673864,0.9,0.0,0.0,0.9611795377518718,-11.323103629712664,1.0,0.0,0.0 -686,29.0,6.280799227726232,1.9,0.0,0.0,0.9531319331829156,-11.859142843244769,1.0,0.0,0.0 -687,0.0,0.0,0.0,175.71278728582143,0.0011764701075556,1.0,0.0,0.0,0.0,1.0 -687,1.0,12.857862569967851,12.7,1.123643877928329e-06,11.940476136108911,0.9789595435343824,-4.042272626796005,0.0,1.0,0.0 -687,2.0,1.422067749673864,1.2,0.0,0.0,0.9724700647428608,-5.29999675296126,1.0,0.0,0.0 -687,3.0,4.503214540633903,1.6,0.0,0.0,0.9655333218551596,-6.517565504573109,1.0,0.0,0.0 -687,4.0,55.816159174699166,19.0,2.3129525703165022e-10,25.027225701841687,0.9576375004380576,-9.731244139078962,0.0,1.0,0.0 -687,5.0,0.0,0.0,0.0,0.0,0.9649700235903595,-7.732965982646458,1.0,0.0,0.0 -687,6.0,13.509643621901708,10.9,0.0,0.0,0.9552899605984232,-8.859748948244274,1.0,0.0,0.0 -687,7.0,17.7758468709233,30.0,2.752138699948185e-10,31.000718203595525,0.9639605595644456,-8.2017640615197,0.0,1.0,0.0 -687,8.0,0.0,0.0,0.0,0.0,1.014274973323907,-9.701088919855389,1.0,0.0,0.0 -687,9.0,3.4366637283785044,2.0,0.0,0.0,1.0051561835532137,-10.722641186094164,1.0,0.0,0.0 -687,10.0,0.0,0.0,4.909645332073086e-10,23.302164564334056,1.0599999765015318,-9.701088919800965,0.0,1.0,0.0 -687,11.0,6.636316165144698,7.5,0.0,0.0,1.0130208403694096,-10.218533848063313,1.0,0.0,0.0 -687,12.0,0.0,0.0,3.561987042842309e-10,10.948029408046716,1.0279316001601175,-10.218533848035872,0.0,1.0,0.0 -687,13.0,3.673675019990816,1.6,0.0,0.0,1.0014668495717878,-10.739216885646169,1.0,0.0,0.0 -687,14.0,4.858731478052368,2.5,0.0,0.0,0.9979351071443582,-10.772564405916912,1.0,0.0,0.0 -687,15.0,2.0738488016077183,1.8,0.0,0.0,1.0032869287433688,-10.55822782592876,1.0,0.0,0.0 -687,16.0,5.33275406127699,5.8,0.0,0.0,1.000127972882393,-10.7803516144962,1.0,0.0,0.0 -687,17.0,1.8960903328984853,0.9,0.0,0.0,0.990941193120982,-11.142616291938952,1.0,0.0,0.0 -687,18.0,5.629018175792378,3.4,0.0,0.0,0.989199438189927,-11.253417174693238,1.0,0.0,0.0 -687,19.0,1.3035621038677088,0.7,0.0,0.0,0.9925507902585756,-11.155622212119988,1.0,0.0,0.0 -687,20.0,10.369244008038592,11.2,0.0,0.0,0.9943014202180098,-10.928351986603898,1.0,0.0,0.0 -687,21.0,0.0,0.0,0.0,0.0,0.9946910406510738,-10.923664755150478,1.0,0.0,0.0 -687,22.0,1.8960903328984853,1.6,0.0,0.0,0.9890364395572094,-10.97460024737173,1.0,0.0,0.0 -687,23.0,5.154995592567757,6.7,0.0,0.0,0.98410281777684,-11.074158304989316,1.0,0.0,0.0 -687,24.0,0.0,0.0,0.0,0.0,0.9775076639161694,-10.780246991011731,1.0,0.0,0.0 -687,25.0,2.0738488016077183,2.3,0.0,0.0,0.9629502566515996,-10.903776879778226,1.0,0.0,0.0 -687,26.0,0.0,0.0,0.0,0.0,0.9806596881584364,-10.497029482774265,1.0,0.0,0.0 -687,27.0,0.0,0.0,0.0,0.0,0.9628049622653287,-8.121410671529123,1.0,0.0,0.0 -687,28.0,1.422067749673864,0.9,0.0,0.0,0.966107778911606,-11.20945125257977,1.0,0.0,0.0 -687,29.0,6.280799227726232,1.9,0.0,0.0,0.9581026670696488,-11.739994833291645,1.0,0.0,0.0 -688,0.0,0.0,0.0,175.71278728582143,0.0011764701075556,1.0,0.0,0.0,0.0,1.0 -688,1.0,12.857862569967851,12.7,1.123643877928329e-06,11.940476136108911,0.9789595435343824,-4.042272626796005,0.0,1.0,0.0 -688,2.0,1.422067749673864,1.2,0.0,0.0,0.9724700647428608,-5.29999675296126,1.0,0.0,0.0 -688,3.0,4.503214540633903,1.6,0.0,0.0,0.9655333218551596,-6.517565504573109,1.0,0.0,0.0 -688,4.0,55.816159174699166,19.0,2.3129525703165022e-10,25.027225701841687,0.9576375004380576,-9.731244139078962,0.0,1.0,0.0 -688,5.0,0.0,0.0,0.0,0.0,0.9649700235903595,-7.732965982646458,1.0,0.0,0.0 -688,6.0,13.509643621901708,10.9,0.0,0.0,0.9552899605984232,-8.859748948244274,1.0,0.0,0.0 -688,7.0,17.7758468709233,30.0,2.752138699948185e-10,31.000718203595525,0.9639605595644456,-8.2017640615197,0.0,1.0,0.0 -688,8.0,0.0,0.0,0.0,0.0,1.014274973323907,-9.701088919855389,1.0,0.0,0.0 -688,9.0,3.4366637283785044,2.0,0.0,0.0,1.0051561835532137,-10.722641186094164,1.0,0.0,0.0 -688,10.0,0.0,0.0,4.909645332073086e-10,23.302164564334056,1.0599999765015318,-9.701088919800965,0.0,1.0,0.0 -688,11.0,6.636316165144698,7.5,0.0,0.0,1.0130208403694096,-10.218533848063313,1.0,0.0,0.0 -688,12.0,0.0,0.0,3.561987042842309e-10,10.948029408046716,1.0279316001601175,-10.218533848035872,0.0,1.0,0.0 -688,13.0,3.673675019990816,1.6,0.0,0.0,1.0014668495717878,-10.739216885646169,1.0,0.0,0.0 -688,14.0,4.858731478052368,2.5,0.0,0.0,0.9979351071443582,-10.772564405916912,1.0,0.0,0.0 -688,15.0,2.0738488016077183,1.8,0.0,0.0,1.0032869287433688,-10.55822782592876,1.0,0.0,0.0 -688,16.0,5.33275406127699,5.8,0.0,0.0,1.000127972882393,-10.7803516144962,1.0,0.0,0.0 -688,17.0,1.8960903328984853,0.9,0.0,0.0,0.990941193120982,-11.142616291938952,1.0,0.0,0.0 -688,18.0,5.629018175792378,3.4,0.0,0.0,0.989199438189927,-11.253417174693238,1.0,0.0,0.0 -688,19.0,1.3035621038677088,0.7,0.0,0.0,0.9925507902585756,-11.155622212119988,1.0,0.0,0.0 -688,20.0,10.369244008038592,11.2,0.0,0.0,0.9943014202180098,-10.928351986603898,1.0,0.0,0.0 -688,21.0,0.0,0.0,0.0,0.0,0.9946910406510738,-10.923664755150478,1.0,0.0,0.0 -688,22.0,1.8960903328984853,1.6,0.0,0.0,0.9890364395572094,-10.97460024737173,1.0,0.0,0.0 -688,23.0,5.154995592567757,6.7,0.0,0.0,0.98410281777684,-11.074158304989316,1.0,0.0,0.0 -688,24.0,0.0,0.0,0.0,0.0,0.9775076639161694,-10.780246991011731,1.0,0.0,0.0 -688,25.0,2.0738488016077183,2.3,0.0,0.0,0.9629502566515996,-10.903776879778226,1.0,0.0,0.0 -688,26.0,0.0,0.0,0.0,0.0,0.9806596881584364,-10.497029482774265,1.0,0.0,0.0 -688,27.0,0.0,0.0,0.0,0.0,0.9628049622653287,-8.121410671529123,1.0,0.0,0.0 -688,28.0,1.422067749673864,0.9,0.0,0.0,0.966107778911606,-11.20945125257977,1.0,0.0,0.0 -688,29.0,6.280799227726232,1.9,0.0,0.0,0.9581026670696488,-11.739994833291645,1.0,0.0,0.0 -689,0.0,0.0,0.0,136.5836398971529,4.340968908778109e-05,1.0,0.0,0.0,0.0,1.0 -689,1.0,12.857862569967851,12.7,45.33331629280725,20.184217852548823,0.969896196503542,-17.68233010670419,0.0,1.0,0.0 -689,2.0,1.422067749673864,1.2,0.0,0.0,0.961521339628632,-13.515405203463578,1.0,0.0,0.0 -689,3.0,4.503214540633903,1.6,0.0,0.0,0.9565581835405944,-16.736973149764072,1.0,0.0,0.0 -689,4.0,55.816159174699166,19.0,1.7984215161543164e-11,27.12715546780441,0.9508053370194977,-22.342052940760286,0.0,1.0,0.0 -689,5.0,0.0,0.0,0.0,0.0,0.9578565005843463,-19.05073928042388,1.0,0.0,0.0 -689,6.0,13.509643621901708,10.9,0.0,0.0,0.9483103683648538,-20.70775950585083,1.0,0.0,0.0 -689,7.0,17.7758468709233,30.0,8.728994313352818e-14,39.999862283114126,0.9602928711555192,-19.586161205762057,0.0,1.0,0.0 -689,8.0,0.0,0.0,0.0,0.0,1.0123925839600525,-21.51941683339494,1.0,0.0,0.0 -689,9.0,3.4366637283785044,2.0,0.0,0.0,1.0056498314981774,-22.79060481006704,1.0,0.0,0.0 -689,10.0,0.0,0.0,-6.415493250290641e-12,23.99996306150867,1.0595086894394234,-21.51941683339564,0.0,1.0,0.0 -689,11.0,6.636316165144698,7.5,0.0,0.0,1.0287318570546873,-21.16008963272605,1.0,0.0,0.0 -689,12.0,0.0,0.0,-1.494362477937551e-11,23.67425999327024,1.059999754843468,-21.16008963272715,0.0,1.0,0.0 -689,13.0,3.673675019990816,1.6,0.0,0.0,0.9960770975669506,-22.19946888601643,1.0,0.0,0.0 -689,14.0,4.858731478052368,2.5,0.0,0.0,1.0074429024606473,-21.982483007006103,1.0,0.0,0.0 -689,15.0,2.0738488016077183,1.8,0.0,0.0,1.0116469865614426,-21.943413288455837,1.0,0.0,0.0 -689,16.0,5.33275406127699,5.8,0.0,0.0,1.003325642663644,-22.64310916333704,1.0,0.0,0.0 -689,17.0,1.8960903328984853,0.9,0.0,0.0,1.003450680440823,-22.162560431568743,1.0,0.0,0.0 -689,18.0,5.629018175792378,3.4,0.0,0.0,0.9860194056476852,-23.56037071496697,1.0,0.0,0.0 -689,19.0,1.3035621038677088,0.7,0.0,0.0,0.9903088965710756,-23.403601789357616,1.0,0.0,0.0 -689,20.0,10.369244008038592,11.2,0.0,0.0,0.9950556268822688,-22.92976523617384,1.0,0.0,0.0 -689,21.0,0.0,0.0,0.0,0.0,0.995532370642992,-22.90386801098465,1.0,0.0,0.0 -689,22.0,1.8960903328984853,1.6,0.0,0.0,0.9955516689354128,-22.39104860303646,1.0,0.0,0.0 -689,23.0,5.154995592567757,6.7,0.0,0.0,0.9866536849200208,-22.77642213261196,1.0,0.0,0.0 -689,24.0,0.0,0.0,0.0,0.0,0.9771841083831292,-22.317319039522847,1.0,0.0,0.0 -689,25.0,2.0738488016077183,2.3,0.0,0.0,0.9626217313973228,-22.44093200164909,1.0,0.0,0.0 -689,26.0,0.0,0.0,0.0,0.0,0.978509685322614,-21.93349899454873,1.0,0.0,0.0 -689,27.0,0.0,0.0,0.0,0.0,0.9568959235356356,-19.473158016497173,1.0,0.0,0.0 -689,28.0,1.422067749673864,0.9,0.0,0.0,0.9639237091707836,-22.64910174768808,1.0,0.0,0.0 -689,29.0,6.280799227726232,1.9,0.0,0.0,0.9558998220633824,-23.18207034524944,1.0,0.0,0.0 -690,0.0,0.0,0.0,175.89090012970766,5.9735121915593936e-05,1.0,0.0,0.0,0.0,1.0 -690,1.0,12.857862569967851,12.7,1.1698755684264961e-07,11.803030746379072,0.9788685132334888,-4.027529289972604,0.0,1.0,0.0 -690,2.0,1.422067749673864,1.2,0.0,0.0,0.9727308332361034,-5.358336129327117,1.0,0.0,0.0 -690,3.0,4.503214540633903,1.6,0.0,0.0,0.9658656934593538,-6.589885834154616,1.0,0.0,0.0 -690,4.0,55.816159174699166,19.0,-9.622172011440516e-11,25.676438044079845,0.9577660367537506,-9.68264718587884,0.0,1.0,0.0 -690,5.0,0.0,0.0,0.0,0.0,0.964029251683709,-7.61877925311048,1.0,0.0,0.0 -690,6.0,13.509643621901708,10.9,0.0,0.0,0.9547885981023204,-8.772135227786702,1.0,0.0,0.0 -690,7.0,17.7758468709233,30.0,-1.0157256716191888e-10,35.61933789234809,0.9648157106283676,-8.131524182364391,0.0,1.0,0.0 -690,8.0,0.0,0.0,0.0,0.0,1.0173796167622693,-12.87290576227054,1.0,0.0,0.0 -690,9.0,3.4366637283785044,2.0,0.0,0.0,1.010633272083422,-12.872905762255954,1.0,0.0,0.0 -690,10.0,0.0,0.0,-2.3792151242751965e-10,6.317868020031563,1.0301363412418882,-12.87290576229759,0.0,1.0,0.0 -690,11.0,6.636316165144698,7.5,0.0,0.0,1.0280286179053668,-11.23199983685294,1.0,0.0,0.0 -690,12.0,0.0,0.0,-1.4916175958024907e-10,23.241753410788156,1.058761190158265,-11.231999836863936,0.0,1.0,0.0 -690,13.0,3.673675019990816,1.6,0.0,0.0,1.0157188065925624,-11.856873403429468,1.0,0.0,0.0 -690,14.0,4.858731478052368,2.5,0.0,0.0,1.010520526495404,-11.986705315032792,1.0,0.0,0.0 -690,15.0,2.0738488016077183,1.8,0.0,0.0,1.0057568293069838,-11.646833558685726,1.0,0.0,0.0 -690,16.0,5.33275406127699,5.8,0.0,0.0,0.991665520520994,-12.061353899659714,1.0,0.0,0.0 -690,17.0,1.8960903328984853,0.9,0.0,0.0,1.0010093141168035,-12.675760751515918,1.0,0.0,0.0 -690,18.0,5.629018175792378,3.4,0.0,0.0,0.9977865811341128,-12.980521472834392,1.0,0.0,0.0 -690,19.0,1.3035621038677088,0.7,0.0,0.0,1.000317272258197,-12.987586671854835,1.0,0.0,0.0 -690,20.0,10.369244008038592,11.2,0.0,0.0,1.0000480805918563,-12.966281935310723,1.0,0.0,0.0 -690,21.0,0.0,0.0,0.0,0.0,1.0005135687016165,-12.926345331328578,1.0,0.0,0.0 -690,22.0,1.8960903328984853,1.6,0.0,0.0,0.9996007611357594,-12.32189404705724,1.0,0.0,0.0 -690,23.0,5.154995592567757,6.7,0.0,0.0,0.9919408359658248,-12.607572648266352,1.0,0.0,0.0 -690,24.0,0.0,0.0,0.0,0.0,0.9842727239436684,-11.68182606996095,1.0,0.0,0.0 -690,25.0,2.0738488016077183,2.3,0.0,0.0,0.96981844258011,-11.803638098540064,1.0,0.0,0.0 -690,26.0,0.0,0.0,0.0,0.0,0.9865794400703712,-11.006674043011536,1.0,0.0,0.0 -690,27.0,0.0,0.0,0.0,0.0,0.962623478378495,-8.096241259443689,1.0,0.0,0.0 -690,28.0,1.422067749673864,0.9,0.0,0.0,0.9721204875372316,-11.710446778086482,1.0,0.0,0.0 -690,29.0,6.280799227726232,1.9,0.0,0.0,0.9641666052582945,-12.234399410810138,1.0,0.0,0.0 -691,0.0,0.0,0.0,175.74369506077804,0.6128961796726173,1.0,0.0,0.0,0.0,1.0 -691,1.0,12.857862569967851,12.7,0.0,0.0,0.977632309686552,-4.017588933689079,0.0,1.0,0.0 -691,2.0,1.422067749673864,1.2,0.0,0.0,0.9752600379371,-5.345088430320918,1.0,0.0,0.0 -691,3.0,4.503214540633903,1.6,0.0,0.0,0.9689797225325752,-6.571872061956012,1.0,0.0,0.0 -691,4.0,55.816159174699166,19.0,1.135933246651663e-09,29.950955654605025,0.9643215938158524,-9.799503094928074,0.0,1.0,0.0 -691,5.0,0.0,0.0,0.0,0.0,0.9694340363156384,-7.788635348223509,1.0,0.0,0.0 -691,6.0,13.509643621901708,10.9,0.0,0.0,0.960714344808082,-8.916416432886168,1.0,0.0,0.0 -691,7.0,17.7758468709233,30.0,1.9502598464339803e-09,35.35339927101056,0.970074656261838,-8.280217106057576,0.0,1.0,0.0 -691,8.0,0.0,0.0,0.0,0.0,1.0180828668546629,-9.720778753272558,1.0,0.0,0.0 -691,9.0,3.4366637283785044,2.0,0.0,0.0,1.010563367289739,-10.7229095117905,1.0,0.0,0.0 -691,10.0,0.0,0.0,1.5125357243651791e-09,21.36104283204249,1.0599989182085083,-9.720778753105526,0.0,1.0,0.0 -691,11.0,6.636316165144698,7.5,0.0,0.0,1.0217548352447028,-10.270498160582845,1.0,0.0,0.0 -691,12.0,0.0,0.0,2.0835350820771118e-09,14.417568135641122,1.041141815094386,-10.27049816042574,0.0,1.0,0.0 -691,13.0,3.673675019990816,1.6,0.0,0.0,1.0098706586585606,-10.781877761935595,1.0,0.0,0.0 -691,14.0,4.858731478052368,2.5,0.0,0.0,1.005957373288806,-10.804490139313868,1.0,0.0,0.0 -691,15.0,2.0738488016077183,1.8,0.0,0.0,1.0106584864618826,-10.579079176217656,1.0,0.0,0.0 -691,16.0,5.33275406127699,5.8,0.0,0.0,1.006167657800027,-10.788054748406047,1.0,0.0,0.0 -691,17.0,1.8960903328984853,0.9,0.0,0.0,0.998111828840586,-11.157589612929703,1.0,0.0,0.0 -691,18.0,5.629018175792378,3.4,0.0,0.0,0.995847726266234,-11.259976194311228,1.0,0.0,0.0 -691,19.0,1.3035621038677088,0.7,0.0,0.0,0.9988952963744258,-11.159752855400782,1.0,0.0,0.0 -691,20.0,10.369244008038592,11.2,0.0,0.0,0.9999113691143732,-10.928406932735568,1.0,0.0,0.0 -691,21.0,0.0,0.0,0.0,0.0,1.0003437301079976,-10.924483510527647,1.0,0.0,0.0 -691,22.0,1.8960903328984853,1.6,0.0,0.0,0.9963396354999766,-10.996906954105857,1.0,0.0,0.0 -691,23.0,5.154995592567757,6.7,0.0,0.0,0.9903947567083692,-11.086552252495297,1.0,0.0,0.0 -691,24.0,0.0,0.0,0.0,0.0,0.9834033805761916,-10.795608106507766,1.0,0.0,0.0 -691,25.0,2.0738488016077183,2.3,0.0,0.0,0.9689359301598534,-10.91763886304777,1.0,0.0,0.0 -691,26.0,0.0,0.0,0.0,0.0,0.9862642068875924,-10.515882303592551,1.0,0.0,0.0 -691,27.0,0.0,0.0,0.0,0.0,0.9677340240779854,-8.178636078138005,1.0,0.0,0.0 -691,28.0,1.422067749673864,0.9,0.0,0.0,0.9718003351599012,-11.220111606795422,1.0,0.0,0.0 -691,29.0,6.280799227726232,1.9,0.0,0.0,0.9638437419095034,-11.7444120688796,1.0,0.0,0.0 -692,0.0,0.0,0.0,179.52202664501462,0.0018397587075114,1.0,0.0,0.0,0.0,1.0 -692,1.0,13.116483606307982,12.7,1.979781837641653e-06,12.150051137488177,0.9785733239714436,-4.132671260898359,0.0,1.0,0.0 -692,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720930026706412,-5.41736543891556,1.0,0.0,0.0 -692,3.0,4.593791493453487,1.6,0.0,0.0,0.965094865436322,-6.662960770032656,1.0,0.0,0.0 -692,4.0,56.9388366688577,19.0,6.655215484121492e-10,25.32182696330796,0.9569707195958777,-9.951005408482269,0.0,1.0,0.0 -692,5.0,0.0,0.0,0.0,0.0,0.9643493136771016,-7.912180028345794,1.0,0.0,0.0 -692,6.0,13.781374480360462,10.9,0.0,0.0,0.9545991008473615,-9.064032903305849,1.0,0.0,0.0 -692,7.0,18.133387474158503,30.0,6.314349828769031e-10,31.38918656591493,0.9634239230584654,-8.393703828320405,0.0,1.0,0.0 -692,8.0,0.0,0.0,0.0,0.0,1.0135778953398036,-9.94790465917858,1.0,0.0,0.0 -692,9.0,3.505788245003977,2.0,0.0,0.0,1.0040898668256275,-11.00497667919784,1.0,0.0,0.0 -692,10.0,0.0,0.0,1.030755387557478e-09,23.657411342082018,1.0599999861280085,-9.947904659064244,0.0,1.0,0.0 -692,11.0,6.769797990352507,7.5,0.0,0.0,1.013749387774636,-10.383146480261816,1.0,0.0,0.0 -692,12.0,0.0,0.0,6.979746858190211e-10,11.199624710008685,1.0289871625158449,-10.383146480208143,0.0,1.0,0.0 -692,13.0,3.747566744659424,1.6,0.0,0.0,0.981871540658914,-11.40959119687496,1.0,0.0,0.0 -692,14.0,4.956459242936657,2.5,0.0,0.0,0.9935689065929804,-11.17772561648288,1.0,0.0,0.0 -692,15.0,2.1155618719851583,1.8,0.0,0.0,1.0031198722974866,-10.774273559983731,1.0,0.0,0.0 -692,16.0,5.440016242247551,5.8,0.0,0.0,0.9993405296728564,-11.046873232601069,1.0,0.0,0.0 -692,17.0,1.9342279972435736,0.9,0.0,0.0,0.9876269743286424,-11.5181247259289,1.0,0.0,0.0 -692,18.0,5.742239366816859,3.4,0.0,0.0,0.9865391523722986,-11.607407183030269,1.0,0.0,0.0 -692,19.0,1.329781748104957,0.7,0.0,0.0,0.990287008190717,-11.493023615715977,1.0,0.0,0.0 -692,20.0,10.577809359925794,11.2,0.0,0.0,0.9929943669469736,-11.224981163917068,1.0,0.0,0.0 -692,21.0,0.0,0.0,0.0,0.0,0.9933353827233716,-11.2217732946898,1.0,0.0,0.0 -692,22.0,1.9342279972435736,1.6,0.0,0.0,0.9855796993230318,-11.349282542665604,1.0,0.0,0.0 -692,23.0,5.2586823675059655,6.7,0.0,0.0,0.9819269515585384,-11.399673418799678,1.0,0.0,0.0 -692,24.0,0.0,0.0,0.0,0.0,0.9759021496851455,-11.082208122743284,1.0,0.0,0.0 -692,25.0,2.1155618719851583,2.3,0.0,0.0,0.9612075702399678,-11.215847367368426,1.0,0.0,0.0 -692,26.0,0.0,0.0,0.0,0.0,0.9794633849411932,-10.778200256699373,1.0,0.0,0.0 -692,27.0,0.0,0.0,0.0,0.0,0.9620885548476532,-8.313154309313745,1.0,0.0,0.0 -692,28.0,1.4506709979326802,0.9,0.0,0.0,0.964714621177425,-11.510714278864778,1.0,0.0,0.0 -692,29.0,6.407130240869337,1.9,0.0,0.0,0.9565837153908288,-12.055147984844696,1.0,0.0,0.0 -693,0.0,0.0,0.0,179.45901148689893,0.0031591084618476,1.0,0.0,0.0,0.0,1.0 -693,1.0,13.116483606307982,12.7,2.2065848056139714e-06,12.09474096771752,0.9785016507586328,-4.125639918206968,0.0,1.0,0.0 -693,2.0,1.4506709979326802,1.2,0.0,0.0,0.9723375454822952,-5.430083265052216,1.0,0.0,0.0 -693,3.0,4.593791493453487,1.6,0.0,0.0,0.9653987101189484,-6.678605711495095,1.0,0.0,0.0 -693,4.0,56.9388366688577,19.0,8.200343345211942e-10,25.13468098463595,0.9565569572989788,-9.930187852737072,0.0,1.0,0.0 -693,5.0,0.0,0.0,0.0,0.0,0.9640037432289276,-7.878284824111693,1.0,0.0,0.0 -693,6.0,13.781374480360462,10.9,0.0,0.0,0.954223468716737,-9.03571751821886,1.0,0.0,0.0 -693,7.0,18.133387474158503,30.0,1.044333881115464e-09,31.22309874159358,0.9624242546563254,-8.360776577952562,0.0,1.0,0.0 -693,8.0,0.0,0.0,0.0,0.0,1.0149810183129118,-9.982732634441824,1.0,0.0,0.0 -693,9.0,3.505788245003977,2.0,0.0,0.0,1.0071995330382506,-11.071713765888944,1.0,0.0,0.0 -693,10.0,0.0,0.0,1.5117254541273855e-09,22.940243163782085,1.0599960047531471,-9.982732634274369,0.0,1.0,0.0 -693,11.0,6.769797990352507,7.5,0.0,0.0,1.020064896310123,-10.602022017022374,1.0,0.0,0.0 -693,12.0,0.0,0.0,1.1248573089320846e-09,16.164896025076104,1.0417879865429114,-10.602022016937468,0.0,1.0,0.0 -693,13.0,3.747566744659424,1.6,0.0,0.0,1.0076911836403797,-11.14982016724589,1.0,0.0,0.0 -693,14.0,4.956459242936657,2.5,0.0,0.0,1.0032436178934006,-11.187836781663243,1.0,0.0,0.0 -693,15.0,2.1155618719851583,1.8,0.0,0.0,1.0081809043706775,-10.91987139553906,1.0,0.0,0.0 -693,16.0,5.440016242247551,5.8,0.0,0.0,1.003047051873665,-11.13967342009795,1.0,0.0,0.0 -693,17.0,1.9342279972435736,0.9,0.0,0.0,0.995052349301655,-11.541512764322125,1.0,0.0,0.0 -693,18.0,5.742239366816859,3.4,0.0,0.0,0.9926152576240392,-11.640781167648385,1.0,0.0,0.0 -693,19.0,1.329781748104957,0.7,0.0,0.0,0.9956244885210852,-11.5334297054234,1.0,0.0,0.0 -693,20.0,10.577809359925794,11.2,0.0,0.0,0.9960954584894748,-11.328094858767749,1.0,0.0,0.0 -693,21.0,0.0,0.0,0.0,0.0,0.9964179329599184,-11.3370337654265,1.0,0.0,0.0 -693,22.0,1.9342279972435736,1.6,0.0,0.0,0.9922256387700384,-11.470252888444634,1.0,0.0,0.0 -693,23.0,5.2586823675059655,6.7,0.0,0.0,0.9845170340044602,-11.675778009659684,1.0,0.0,0.0 -693,24.0,0.0,0.0,0.0,0.0,0.97243672529598,-11.833882406540694,1.0,0.0,0.0 -693,25.0,2.1155618719851583,2.3,0.0,0.0,0.9576881248733377,-11.968490764866695,1.0,0.0,0.0 -693,26.0,0.0,0.0,0.0,0.0,0.979915994896774,-10.00618365970342,1.0,0.0,0.0 -693,27.0,0.0,0.0,0.0,0.0,0.9608927151990336,-8.145345393884417,1.0,0.0,0.0 -693,28.0,1.4506709979326802,0.9,0.0,0.0,0.9651744985650668,-10.73801093549734,1.0,0.0,0.0 -693,29.0,6.407130240869337,1.9,0.0,0.0,0.9570476057485142,-11.281921999281952,1.0,0.0,0.0 -694,0.0,0.0,0.0,179.41380394958438,0.0013429403704634,1.0,0.0,0.0,0.0,1.0 -694,1.0,13.116483606307982,12.7,1.4883826578849062e-06,12.344189755852788,0.9786196947161924,-4.130033713421867,0.0,1.0,0.0 -694,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720049173127976,-5.414689113127129,1.0,0.0,0.0 -694,3.0,4.593791493453487,1.6,0.0,0.0,0.9649857975885076,-6.65969159492333,1.0,0.0,0.0 -694,4.0,56.9388366688577,19.0,-1.178915336241568e-10,25.268157715236526,0.9569479595364052,-9.942936540154522,0.0,1.0,0.0 -694,5.0,0.0,0.0,0.0,0.0,0.9643704868042487,-7.900467051580474,1.0,0.0,0.0 -694,6.0,13.781374480360462,10.9,0.0,0.0,0.9546027566166052,-9.053817183546093,1.0,0.0,0.0 -694,7.0,18.133387474158503,30.0,-1.2458048055242778e-10,31.13784047194073,0.963365240203962,-8.379781350746466,0.0,1.0,0.0 -694,8.0,0.0,0.0,0.0,0.0,1.0139096083505452,-9.90950513792036,1.0,0.0,0.0 -694,9.0,3.505788245003977,2.0,0.0,0.0,1.0047478723569818,-10.9520636743591,1.0,0.0,0.0 -694,10.0,0.0,0.0,-2.1410113543888867e-10,23.48835850972423,1.0599999733763203,-9.909505137944102,0.0,1.0,0.0 -694,11.0,6.769797990352507,7.5,0.0,0.0,1.012867459669291,-10.438876703151992,1.0,0.0,0.0 -694,12.0,0.0,0.0,-1.5529286973904112e-10,11.25284239113954,1.0281895175953817,-10.438876703163954,0.0,1.0,0.0 -694,13.0,3.747566744659424,1.6,0.0,0.0,1.0011754339546,-10.972988085086442,1.0,0.0,0.0 -694,14.0,4.956459242936657,2.5,0.0,0.0,0.9975846147808918,-11.007886892745017,1.0,0.0,0.0 -694,15.0,2.1155618719851583,1.8,0.0,0.0,1.0029773551815049,-10.786878677700852,1.0,0.0,0.0 -694,16.0,5.440016242247551,5.8,0.0,0.0,0.9997268104664252,-11.01333906139929,1.0,0.0,0.0 -694,17.0,1.9342279972435736,0.9,0.0,0.0,0.9904764308944252,-11.3867597627881,1.0,0.0,0.0 -694,18.0,5.742239366816859,3.4,0.0,0.0,0.9886931565315668,-11.499864358997204,1.0,0.0,0.0 -694,19.0,1.329781748104957,0.7,0.0,0.0,0.9920637865316704,-11.398624423644192,1.0,0.0,0.0 -694,20.0,10.577809359925794,11.2,0.0,0.0,0.9938180687698428,-11.165857890472251,1.0,0.0,0.0 -694,21.0,0.0,0.0,0.0,0.0,0.994209213973212,-11.160825360894473,1.0,0.0,0.0 -694,22.0,1.9342279972435736,1.6,0.0,0.0,0.9885651650981157,-11.216144358617058,1.0,0.0,0.0 -694,23.0,5.2586823675059655,6.7,0.0,0.0,0.9835260001775604,-11.31797288244114,1.0,0.0,0.0 -694,24.0,0.0,0.0,0.0,0.0,0.9768629394330892,-11.018389965883772,1.0,0.0,0.0 -694,25.0,2.1155618719851583,2.3,0.0,0.0,0.9621832662274986,-11.151762386688327,1.0,0.0,0.0 -694,26.0,0.0,0.0,0.0,0.0,0.9800254440064796,-10.726359689429128,1.0,0.0,0.0 -694,27.0,0.0,0.0,0.0,0.0,0.962172831007051,-8.2977232464812,1.0,0.0,0.0 -694,28.0,1.4506709979326802,0.9,0.0,0.0,0.9652857039522242,-11.458021043518976,1.0,0.0,0.0 -694,29.0,6.407130240869337,1.9,0.0,0.0,0.9571597809236324,-12.00180583777116,1.0,0.0,0.0 -695,0.0,0.0,0.0,180.41521607140876,0.008374880304629,1.0,0.0,0.0,0.0,1.0 -695,1.0,13.116483606307982,12.7,1.15819724933704e-05,8.18685623069549,0.9773538289418922,-4.1933303669167135,0.0,1.0,0.0 -695,2.0,1.4506709979326802,1.2,0.0,0.0,0.975030713812178,-5.31883458165022,1.0,0.0,0.0 -695,3.0,4.593791493453487,1.6,0.0,0.0,0.9686958023987404,-6.5387526569699705,1.0,0.0,0.0 -695,4.0,56.9388366688577,19.0,-1.4244574380934406e-08,25.831036370443258,0.955994230703938,-10.203169198942462,0.0,1.0,0.0 -695,5.0,0.0,0.0,0.0,0.0,0.9625079044967166,-8.325870296640039,1.0,0.0,0.0 -695,6.0,13.781374480360462,10.9,0.0,0.0,0.9530777672908548,-9.412590257485386,1.0,0.0,0.0 -695,7.0,18.133387474158503,30.0,-1.1396632369781178e-08,32.47191580709632,0.9618540242079612,-8.840934343927975,0.0,1.0,0.0 -695,8.0,0.0,0.0,0.0,0.0,1.0060113592124151,-12.085478818604134,1.0,0.0,0.0 -695,9.0,3.505788245003977,2.0,0.0,0.0,0.9942487532238368,-14.052531487151866,1.0,0.0,0.0 -695,10.0,0.0,0.0,-1.7717509583322132e-08,23.96317318555554,1.0533311414395288,-12.085478820596736,0.0,1.0,0.0 -695,11.0,6.769797990352507,7.5,0.0,0.0,0.9735349703663728,-16.972088635276172,1.0,0.0,0.0 -695,12.0,0.0,0.0,-3.269065550356164e-09,18.75385338826863,0.9997957294106752,-16.972088635545585,0.0,1.0,0.0 -695,13.0,3.747566744659424,1.6,0.0,0.0,0.9638223691545134,-17.06251484062856,1.0,0.0,0.0 -695,14.0,4.956459242936657,2.5,0.0,0.0,0.9657121303212012,-16.679578078177045,1.0,0.0,0.0 -695,15.0,2.1155618719851583,1.8,0.0,0.0,0.9778125433935796,-15.895947420026172,1.0,0.0,0.0 -695,16.0,5.440016242247551,5.8,0.0,0.0,0.9837296488255708,-14.718743639062206,1.0,0.0,0.0 -695,17.0,1.9342279972435736,0.9,0.0,0.0,0.9658793446066682,-16.164885764924964,1.0,0.0,0.0 -695,18.0,5.742239366816859,3.4,0.0,0.0,0.9685256622086844,-15.743194184891196,1.0,0.0,0.0 -695,19.0,1.329781748104957,0.7,0.0,0.0,0.974376712850032,-15.35618787129834,1.0,0.0,0.0 -695,20.0,10.577809359925794,11.2,0.0,0.0,0.9824000655596534,-14.33757298757618,1.0,0.0,0.0 -695,21.0,0.0,0.0,0.0,0.0,0.982537344408777,-14.353515557508969,1.0,0.0,0.0 -695,22.0,1.9342279972435736,1.6,0.0,0.0,0.9634481926090184,-15.94518203375386,1.0,0.0,0.0 -695,23.0,5.2586823675059655,6.7,0.0,0.0,0.9677882909533028,-14.777738533772082,1.0,0.0,0.0 -695,24.0,0.0,0.0,0.0,0.0,0.9691701189124295,-13.433283395190232,1.0,0.0,0.0 -695,25.0,2.1155618719851583,2.3,0.0,0.0,0.9543702260052352,-13.568815000406774,1.0,0.0,0.0 -695,26.0,0.0,0.0,0.0,0.0,0.9772529603002016,-12.489009326496149,1.0,0.0,0.0 -695,27.0,0.0,0.0,0.0,0.0,0.9595387529032856,-8.873295437054956,1.0,0.0,0.0 -695,28.0,1.4506709979326802,0.9,0.0,0.0,0.9624685978925828,-13.224891241205263,1.0,0.0,0.0 -695,29.0,6.407130240869337,1.9,0.0,0.0,0.954318034868158,-13.771888397996792,1.0,0.0,0.0 -696,0.0,0.0,0.0,139.42182953294542,0.0001041791599654,1.0,0.0,0.0,0.0,1.0 -696,1.0,13.116483606307982,12.7,41.434758551256216,0.1125788601793473,0.9734885428868552,-4.6118335247024485,0.0,1.0,0.0 -696,2.0,1.4506709979326802,1.2,0.0,0.0,1.0007325247108383,-0.1590250268933195,1.0,0.0,0.0 -696,3.0,4.593791493453487,1.6,0.0,0.0,0.9542039002786792,-10.159452580605569,1.0,0.0,0.0 -696,4.0,56.9388366688577,19.0,7.627952912156794e-09,29.06602140943949,0.9547307106907243,-11.679784962105694,0.0,1.0,0.0 -696,5.0,0.0,0.0,0.0,0.0,0.9569698926014418,-10.747308538018178,1.0,0.0,0.0 -696,6.0,13.781374480360462,10.9,0.0,0.0,0.9491023511310632,-11.449124260575472,1.0,0.0,0.0 -696,7.0,18.133387474158503,30.0,5.4819163089599316e-09,36.73739266975576,0.9580850096546852,-11.270915475588035,0.0,1.0,0.0 -696,8.0,0.0,0.0,0.0,0.0,1.00870717318036,-12.9104748351853,1.0,0.0,0.0 -696,9.0,3.505788245003977,2.0,0.0,0.0,1.000243441769519,-14.029390598582127,1.0,0.0,0.0 -696,10.0,0.0,0.0,9.006780218883531e-09,23.9993867068316,1.055979605425938,-12.91047483417759,0.0,1.0,0.0 -696,11.0,6.769797990352507,7.5,0.0,0.0,1.0151306254254804,-13.723023415965915,1.0,0.0,0.0 -696,12.0,0.0,0.0,8.315973206630026e-09,18.9536395374644,1.0406297009639456,-13.723023415334456,0.0,1.0,0.0 -696,13.0,3.747566744659424,1.6,0.0,0.0,1.003446836903252,-14.20069185329604,1.0,0.0,0.0 -696,14.0,4.956459242936657,2.5,0.0,0.0,1.0002175590498297,-14.181545401095232,1.0,0.0,0.0 -696,15.0,2.1155618719851583,1.8,0.0,0.0,1.0024480142287202,-13.968327219358669,1.0,0.0,0.0 -696,16.0,5.440016242247551,5.8,0.0,0.0,0.9964084736818948,-14.128698336405789,1.0,0.0,0.0 -696,17.0,1.9342279972435736,0.9,0.0,0.0,0.9961546742023614,-14.369044033709775,1.0,0.0,0.0 -696,18.0,5.742239366816859,3.4,0.0,0.0,0.980321052592328,-14.829342159862843,1.0,0.0,0.0 -696,19.0,1.329781748104957,0.7,0.0,0.0,0.9846750088058392,-14.666189967305748,1.0,0.0,0.0 -696,20.0,10.577809359925794,11.2,0.0,0.0,0.9895686306368368,-14.243292003840429,1.0,0.0,0.0 -696,21.0,0.0,0.0,0.0,0.0,0.9900577668459608,-14.237766732915894,1.0,0.0,0.0 -696,22.0,1.9342279972435736,1.6,0.0,0.0,0.988829273986184,-14.349386749660956,1.0,0.0,0.0 -696,23.0,5.2586823675059655,6.7,0.0,0.0,0.9806208788681428,-14.398261987018934,1.0,0.0,0.0 -696,24.0,0.0,0.0,0.0,0.0,0.9724096549015886,-14.012881586882926,1.0,0.0,0.0 -696,25.0,2.1155618719851583,2.3,0.0,0.0,0.9576606308960848,-14.147497556667002,1.0,0.0,0.0 -696,26.0,0.0,0.0,0.0,0.0,0.9746228020616204,-13.667791082030815,1.0,0.0,0.0 -696,27.0,0.0,0.0,0.0,0.0,0.9554010402808448,-11.16654345288496,1.0,0.0,0.0 -696,28.0,1.4506709979326802,0.9,0.0,0.0,0.9674545506427472,-13.913674687501285,1.0,0.0,0.0 -696,29.0,6.407130240869337,1.9,0.0,0.0,0.9400007979825166,-15.702768384316528,1.0,0.0,0.0 -697,0.0,0.0,0.0,179.41380394958438,0.0013429403704634,1.0,0.0,0.0,0.0,1.0 -697,1.0,13.116483606307982,12.7,1.4883826578849062e-06,12.344189755852788,0.9786196947161924,-4.130033713421867,0.0,1.0,0.0 -697,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720049173127976,-5.414689113127129,1.0,0.0,0.0 -697,3.0,4.593791493453487,1.6,0.0,0.0,0.9649857975885076,-6.65969159492333,1.0,0.0,0.0 -697,4.0,56.9388366688577,19.0,-1.178915336241568e-10,25.268157715236526,0.9569479595364052,-9.942936540154522,0.0,1.0,0.0 -697,5.0,0.0,0.0,0.0,0.0,0.9643704868042487,-7.900467051580474,1.0,0.0,0.0 -697,6.0,13.781374480360462,10.9,0.0,0.0,0.9546027566166052,-9.053817183546093,1.0,0.0,0.0 -697,7.0,18.133387474158503,30.0,-1.2458048055242778e-10,31.13784047194073,0.963365240203962,-8.379781350746466,0.0,1.0,0.0 -697,8.0,0.0,0.0,0.0,0.0,1.0139096083505452,-9.90950513792036,1.0,0.0,0.0 -697,9.0,3.505788245003977,2.0,0.0,0.0,1.0047478723569818,-10.9520636743591,1.0,0.0,0.0 -697,10.0,0.0,0.0,-2.1410113543888867e-10,23.48835850972423,1.0599999733763203,-9.909505137944102,0.0,1.0,0.0 -697,11.0,6.769797990352507,7.5,0.0,0.0,1.012867459669291,-10.438876703151992,1.0,0.0,0.0 -697,12.0,0.0,0.0,-1.5529286973904112e-10,11.25284239113954,1.0281895175953817,-10.438876703163954,0.0,1.0,0.0 -697,13.0,3.747566744659424,1.6,0.0,0.0,1.0011754339546,-10.972988085086442,1.0,0.0,0.0 -697,14.0,4.956459242936657,2.5,0.0,0.0,0.9975846147808918,-11.007886892745017,1.0,0.0,0.0 -697,15.0,2.1155618719851583,1.8,0.0,0.0,1.0029773551815049,-10.786878677700852,1.0,0.0,0.0 -697,16.0,5.440016242247551,5.8,0.0,0.0,0.9997268104664252,-11.01333906139929,1.0,0.0,0.0 -697,17.0,1.9342279972435736,0.9,0.0,0.0,0.9904764308944252,-11.3867597627881,1.0,0.0,0.0 -697,18.0,5.742239366816859,3.4,0.0,0.0,0.9886931565315668,-11.499864358997204,1.0,0.0,0.0 -697,19.0,1.329781748104957,0.7,0.0,0.0,0.9920637865316704,-11.398624423644192,1.0,0.0,0.0 -697,20.0,10.577809359925794,11.2,0.0,0.0,0.9938180687698428,-11.165857890472251,1.0,0.0,0.0 -697,21.0,0.0,0.0,0.0,0.0,0.994209213973212,-11.160825360894473,1.0,0.0,0.0 -697,22.0,1.9342279972435736,1.6,0.0,0.0,0.9885651650981157,-11.216144358617058,1.0,0.0,0.0 -697,23.0,5.2586823675059655,6.7,0.0,0.0,0.9835260001775604,-11.31797288244114,1.0,0.0,0.0 -697,24.0,0.0,0.0,0.0,0.0,0.9768629394330892,-11.018389965883772,1.0,0.0,0.0 -697,25.0,2.1155618719851583,2.3,0.0,0.0,0.9621832662274986,-11.151762386688327,1.0,0.0,0.0 -697,26.0,0.0,0.0,0.0,0.0,0.9800254440064796,-10.726359689429128,1.0,0.0,0.0 -697,27.0,0.0,0.0,0.0,0.0,0.962172831007051,-8.2977232464812,1.0,0.0,0.0 -697,28.0,1.4506709979326802,0.9,0.0,0.0,0.9652857039522242,-11.458021043518976,1.0,0.0,0.0 -697,29.0,6.407130240869337,1.9,0.0,0.0,0.9571597809236324,-12.00180583777116,1.0,0.0,0.0 -698,0.0,0.0,0.0,179.41380394958438,0.0013429403704634,1.0,0.0,0.0,0.0,1.0 -698,1.0,13.116483606307982,12.7,1.4883826578849062e-06,12.344189755852788,0.9786196947161924,-4.130033713421867,0.0,1.0,0.0 -698,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720049173127976,-5.414689113127129,1.0,0.0,0.0 -698,3.0,4.593791493453487,1.6,0.0,0.0,0.9649857975885076,-6.65969159492333,1.0,0.0,0.0 -698,4.0,56.9388366688577,19.0,-1.178915336241568e-10,25.268157715236526,0.9569479595364052,-9.942936540154522,0.0,1.0,0.0 -698,5.0,0.0,0.0,0.0,0.0,0.9643704868042487,-7.900467051580474,1.0,0.0,0.0 -698,6.0,13.781374480360462,10.9,0.0,0.0,0.9546027566166052,-9.053817183546093,1.0,0.0,0.0 -698,7.0,18.133387474158503,30.0,-1.2458048055242778e-10,31.13784047194073,0.963365240203962,-8.379781350746466,0.0,1.0,0.0 -698,8.0,0.0,0.0,0.0,0.0,1.0139096083505452,-9.90950513792036,1.0,0.0,0.0 -698,9.0,3.505788245003977,2.0,0.0,0.0,1.0047478723569818,-10.9520636743591,1.0,0.0,0.0 -698,10.0,0.0,0.0,-2.1410113543888867e-10,23.48835850972423,1.0599999733763203,-9.909505137944102,0.0,1.0,0.0 -698,11.0,6.769797990352507,7.5,0.0,0.0,1.012867459669291,-10.438876703151992,1.0,0.0,0.0 -698,12.0,0.0,0.0,-1.5529286973904112e-10,11.25284239113954,1.0281895175953817,-10.438876703163954,0.0,1.0,0.0 -698,13.0,3.747566744659424,1.6,0.0,0.0,1.0011754339546,-10.972988085086442,1.0,0.0,0.0 -698,14.0,4.956459242936657,2.5,0.0,0.0,0.9975846147808918,-11.007886892745017,1.0,0.0,0.0 -698,15.0,2.1155618719851583,1.8,0.0,0.0,1.0029773551815049,-10.786878677700852,1.0,0.0,0.0 -698,16.0,5.440016242247551,5.8,0.0,0.0,0.9997268104664252,-11.01333906139929,1.0,0.0,0.0 -698,17.0,1.9342279972435736,0.9,0.0,0.0,0.9904764308944252,-11.3867597627881,1.0,0.0,0.0 -698,18.0,5.742239366816859,3.4,0.0,0.0,0.9886931565315668,-11.499864358997204,1.0,0.0,0.0 -698,19.0,1.329781748104957,0.7,0.0,0.0,0.9920637865316704,-11.398624423644192,1.0,0.0,0.0 -698,20.0,10.577809359925794,11.2,0.0,0.0,0.9938180687698428,-11.165857890472251,1.0,0.0,0.0 -698,21.0,0.0,0.0,0.0,0.0,0.994209213973212,-11.160825360894473,1.0,0.0,0.0 -698,22.0,1.9342279972435736,1.6,0.0,0.0,0.9885651650981157,-11.216144358617058,1.0,0.0,0.0 -698,23.0,5.2586823675059655,6.7,0.0,0.0,0.9835260001775604,-11.31797288244114,1.0,0.0,0.0 -698,24.0,0.0,0.0,0.0,0.0,0.9768629394330892,-11.018389965883772,1.0,0.0,0.0 -698,25.0,2.1155618719851583,2.3,0.0,0.0,0.9621832662274986,-11.151762386688327,1.0,0.0,0.0 -698,26.0,0.0,0.0,0.0,0.0,0.9800254440064796,-10.726359689429128,1.0,0.0,0.0 -698,27.0,0.0,0.0,0.0,0.0,0.962172831007051,-8.2977232464812,1.0,0.0,0.0 -698,28.0,1.4506709979326802,0.9,0.0,0.0,0.9652857039522242,-11.458021043518976,1.0,0.0,0.0 -698,29.0,6.407130240869337,1.9,0.0,0.0,0.9571597809236324,-12.00180583777116,1.0,0.0,0.0 -699,0.0,0.0,0.0,179.50697400932597,0.0041365293110828,1.0,0.0,0.0,0.0,1.0 -699,1.0,13.116483606307982,12.7,2.861290174455745e-06,19.418025523342703,0.979580524347146,-4.151499675151291,0.0,1.0,0.0 -699,2.0,1.4506709979326802,1.2,0.0,0.0,0.9691863664225044,-5.3752640444389135,1.0,0.0,0.0 -699,3.0,4.593791493453487,1.6,0.0,0.0,0.9615050279934246,-6.612474301908481,1.0,0.0,0.0 -699,4.0,56.9388366688577,19.0,-4.205428954526217e-09,28.10888130946134,0.9580754630418636,-9.975618341491932,0.0,1.0,0.0 -699,5.0,0.0,0.0,0.0,0.0,0.9598350771863444,-7.82025651587119,1.0,0.0,0.0 -699,6.0,13.781374480360462,10.9,0.0,0.0,0.9523717973728127,-9.018864924845737,1.0,0.0,0.0 -699,7.0,18.133387474158503,30.0,-4.738647594765708e-09,39.99578219065436,0.9620324655469404,-8.360399634589433,0.0,1.0,0.0 -699,8.0,0.0,0.0,0.0,0.0,0.9819749319521648,-9.797355391944963,1.0,0.0,0.0 -699,9.0,3.505788245003977,2.0,0.0,0.0,0.9827371142833112,-10.841392624204245,1.0,0.0,0.0 -699,10.0,0.0,0.0,0.0,0.0,0.9819749319521648,-9.797355391944963,0.0,1.0,0.0 -699,11.0,6.769797990352507,7.5,0.0,0.0,1.0057489064976226,-10.559650242800595,1.0,0.0,0.0 -699,12.0,0.0,0.0,-5.043265055333546e-09,16.16199672519939,1.02776445233964,-10.559650243191957,0.0,1.0,0.0 -699,13.0,3.747566744659424,1.6,0.0,0.0,0.9922744849651298,-11.093399169377342,1.0,0.0,0.0 -699,14.0,4.956459242936657,2.5,0.0,0.0,0.9870839166796778,-11.081489490222362,1.0,0.0,0.0 -699,15.0,2.1155618719851583,1.8,0.0,0.0,0.9894899100335242,-10.780539255092844,1.0,0.0,0.0 -699,16.0,5.440016242247551,5.8,0.0,0.0,0.9802451621471816,-10.950268824329427,1.0,0.0,0.0 -699,17.0,1.9342279972435736,0.9,0.0,0.0,0.9757776115907802,-11.4064872590897,1.0,0.0,0.0 -699,18.0,5.742239366816859,3.4,0.0,0.0,0.9715421393066191,-11.48461352372353,1.0,0.0,0.0 -699,19.0,1.329781748104957,0.7,0.0,0.0,0.9736971900460196,-11.358855896689445,1.0,0.0,0.0 -699,20.0,10.577809359925794,11.2,0.0,0.0,0.9726623246871596,-11.074369722528488,1.0,0.0,0.0 -699,21.0,0.0,0.0,0.0,0.0,0.9734089804750988,-11.072664827425262,1.0,0.0,0.0 -699,22.0,1.9342279972435736,1.6,0.0,0.0,0.9754558574743832,-11.257896237147008,1.0,0.0,0.0 -699,23.0,5.2586823675059655,6.7,0.0,0.0,0.9670243903579048,-11.313615492932206,1.0,0.0,0.0 -699,24.0,0.0,0.0,0.0,0.0,0.9647257813682836,-11.057608794297932,1.0,0.0,0.0 -699,25.0,2.1155618719851583,2.3,0.0,0.0,0.9498555183025298,-11.194411928525756,1.0,0.0,0.0 -699,26.0,0.0,0.0,0.0,0.0,0.9707080213790396,-10.78539577674341,1.0,0.0,0.0 -699,27.0,0.0,0.0,0.0,0.0,0.9577306043322596,-8.23374793119459,1.0,0.0,0.0 -699,28.0,1.4506709979326802,0.9,0.0,0.0,0.9558172057010498,-11.531387974744394,1.0,0.0,0.0 -699,29.0,6.407130240869337,1.9,0.0,0.0,0.9476078583087316,-12.086083972060289,1.0,0.0,0.0 -700,0.0,0.0,0.0,90.22919510182057,2.140708232900579e-06,1.0,0.0,0.0,0.0,1.0 -700,1.0,13.116483606307982,12.7,86.61675170350739,16.038472971414635,0.9896959146376022,-1.5885960823609475,0.0,1.0,0.0 -700,2.0,1.4506709979326802,1.2,0.0,0.0,0.979703270813189,-3.972884709583724,1.0,0.0,0.0 -700,3.0,4.593791493453487,1.6,0.0,0.0,0.9742805052379072,-4.866480366317984,1.0,0.0,0.0 -700,4.0,56.9388366688577,19.0,0.0,0.0,0.9400000007009036,-7.220157469196139,0.0,1.0,0.0 -700,5.0,0.0,0.0,0.0,0.0,0.9722381846166328,-5.898092753595268,1.0,0.0,0.0 -700,6.0,13.781374480360462,10.9,0.0,0.0,0.9522099135535264,-6.774115250645328,1.0,0.0,0.0 -700,7.0,18.133387474158503,30.0,6.232585569762859e-09,39.99999442322498,0.9744650979922572,-6.426601549726288,0.0,1.0,0.0 -700,8.0,0.0,0.0,0.0,0.0,1.02046237051193,-7.901480118655251,1.0,0.0,0.0 -700,9.0,3.505788245003977,2.0,0.0,0.0,1.013978080487815,-8.940047832798266,1.0,0.0,0.0 -700,10.0,0.0,0.0,1.013978366538784e-08,20.1489772584532,1.0599999867582777,-7.901480117538102,0.0,1.0,0.0 -700,11.0,6.769797990352507,7.5,0.0,0.0,1.0359187574436592,-8.416471118974957,1.0,0.0,0.0 -700,12.0,0.0,0.0,3.9941792753648046e-09,18.23292356687744,1.0599999777543487,-8.416471118683187,0.0,1.0,0.0 -700,13.0,3.747566744659424,1.6,0.0,0.0,1.0253088951970606,-8.877970706234725,1.0,0.0,0.0 -700,14.0,4.956459242936657,2.5,0.0,0.0,1.0229241370839155,-8.88128576238525,1.0,0.0,0.0 -700,15.0,2.1155618719851583,1.8,0.0,0.0,1.020139378682421,-8.735066689641796,1.0,0.0,0.0 -700,16.0,5.440016242247551,5.8,0.0,0.0,1.0114990663688317,-8.995581289051838,1.0,0.0,0.0 -700,17.0,1.9342279972435736,0.9,0.0,0.0,1.0103101881812144,-9.282579117171116,1.0,0.0,0.0 -700,18.0,5.742239366816859,3.4,0.0,0.0,1.0052210070796048,-9.414637939008191,1.0,0.0,0.0 -700,19.0,1.329781748104957,0.7,0.0,0.0,1.0067761611833097,-9.328255678362826,1.0,0.0,0.0 -700,20.0,10.577809359925794,11.2,0.0,0.0,1.0015332822648126,-9.191857678094848,1.0,0.0,0.0 -700,21.0,0.0,0.0,0.0,0.0,1.001408130447056,-9.19966945667493,1.0,0.0,0.0 -700,22.0,1.9342279972435736,1.6,0.0,0.0,0.976621229069234,-9.670359520424206,1.0,0.0,0.0 -700,23.0,5.2586823675059655,6.7,0.0,0.0,0.9836640990822382,-9.484848877820127,1.0,0.0,0.0 -700,24.0,0.0,0.0,0.0,0.0,0.9802724977388694,-9.154781374627191,1.0,0.0,0.0 -700,25.0,2.1155618719851583,2.3,0.0,0.0,0.965645475366468,-9.287213371837169,1.0,0.0,0.0 -700,26.0,0.0,0.0,0.0,0.0,0.9854302775061582,-8.841400280621258,1.0,0.0,0.0 -700,27.0,0.0,0.0,0.0,0.0,0.970349043947606,-6.31101650653294,1.0,0.0,0.0 -700,28.0,1.4506709979326802,0.9,0.0,0.0,0.978341992708216,-9.081880886118128,1.0,0.0,0.0 -700,29.0,6.407130240869337,1.9,0.0,0.0,0.9512307733970043,-10.830279801596742,1.0,0.0,0.0 -701,0.0,0.0,0.0,179.52202664501462,0.0018397587075114,1.0,0.0,0.0,0.0,1.0 -701,1.0,13.116483606307982,12.7,1.979781837641653e-06,12.150051137488177,0.9785733239714436,-4.132671260898359,0.0,1.0,0.0 -701,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720930026706412,-5.41736543891556,1.0,0.0,0.0 -701,3.0,4.593791493453487,1.6,0.0,0.0,0.965094865436322,-6.662960770032656,1.0,0.0,0.0 -701,4.0,56.9388366688577,19.0,6.655215484121492e-10,25.32182696330796,0.9569707195958777,-9.951005408482269,0.0,1.0,0.0 -701,5.0,0.0,0.0,0.0,0.0,0.9643493136771016,-7.912180028345794,1.0,0.0,0.0 -701,6.0,13.781374480360462,10.9,0.0,0.0,0.9545991008473615,-9.064032903305849,1.0,0.0,0.0 -701,7.0,18.133387474158503,30.0,6.314349828769031e-10,31.38918656591493,0.9634239230584654,-8.393703828320405,0.0,1.0,0.0 -701,8.0,0.0,0.0,0.0,0.0,1.0135778953398036,-9.94790465917858,1.0,0.0,0.0 -701,9.0,3.505788245003977,2.0,0.0,0.0,1.0040898668256275,-11.00497667919784,1.0,0.0,0.0 -701,10.0,0.0,0.0,1.030755387557478e-09,23.657411342082018,1.0599999861280085,-9.947904659064244,0.0,1.0,0.0 -701,11.0,6.769797990352507,7.5,0.0,0.0,1.013749387774636,-10.383146480261816,1.0,0.0,0.0 -701,12.0,0.0,0.0,6.979746858190211e-10,11.199624710008685,1.0289871625158449,-10.383146480208143,0.0,1.0,0.0 -701,13.0,3.747566744659424,1.6,0.0,0.0,0.981871540658914,-11.40959119687496,1.0,0.0,0.0 -701,14.0,4.956459242936657,2.5,0.0,0.0,0.9935689065929804,-11.17772561648288,1.0,0.0,0.0 -701,15.0,2.1155618719851583,1.8,0.0,0.0,1.0031198722974866,-10.774273559983731,1.0,0.0,0.0 -701,16.0,5.440016242247551,5.8,0.0,0.0,0.9993405296728564,-11.046873232601069,1.0,0.0,0.0 -701,17.0,1.9342279972435736,0.9,0.0,0.0,0.9876269743286424,-11.5181247259289,1.0,0.0,0.0 -701,18.0,5.742239366816859,3.4,0.0,0.0,0.9865391523722986,-11.607407183030269,1.0,0.0,0.0 -701,19.0,1.329781748104957,0.7,0.0,0.0,0.990287008190717,-11.493023615715977,1.0,0.0,0.0 -701,20.0,10.577809359925794,11.2,0.0,0.0,0.9929943669469736,-11.224981163917068,1.0,0.0,0.0 -701,21.0,0.0,0.0,0.0,0.0,0.9933353827233716,-11.2217732946898,1.0,0.0,0.0 -701,22.0,1.9342279972435736,1.6,0.0,0.0,0.9855796993230318,-11.349282542665604,1.0,0.0,0.0 -701,23.0,5.2586823675059655,6.7,0.0,0.0,0.9819269515585384,-11.399673418799678,1.0,0.0,0.0 -701,24.0,0.0,0.0,0.0,0.0,0.9759021496851455,-11.082208122743284,1.0,0.0,0.0 -701,25.0,2.1155618719851583,2.3,0.0,0.0,0.9612075702399678,-11.215847367368426,1.0,0.0,0.0 -701,26.0,0.0,0.0,0.0,0.0,0.9794633849411932,-10.778200256699373,1.0,0.0,0.0 -701,27.0,0.0,0.0,0.0,0.0,0.9620885548476532,-8.313154309313745,1.0,0.0,0.0 -701,28.0,1.4506709979326802,0.9,0.0,0.0,0.964714621177425,-11.510714278864778,1.0,0.0,0.0 -701,29.0,6.407130240869337,1.9,0.0,0.0,0.9565837153908288,-12.055147984844696,1.0,0.0,0.0 -702,0.0,0.0,0.0,179.64023354668393,0.0029295237306214,1.0,0.0,0.0,0.0,1.0 -702,1.0,13.116483606307982,12.7,3.482549905526978e-06,9.887559977233678,0.9781719851457746,-4.121461901489942,0.0,1.0,0.0 -702,2.0,1.4506709979326802,1.2,0.0,0.0,0.9732290928769836,-5.455646574635483,1.0,0.0,0.0 -702,3.0,4.593791493453487,1.6,0.0,0.0,0.9665023891583704,-6.709787290639711,1.0,0.0,0.0 -702,4.0,56.9388366688577,19.0,-3.4591596602370187e-09,24.857234335140845,0.9565686098699032,-9.927680935696015,0.0,1.0,0.0 -702,5.0,0.0,0.0,0.0,0.0,0.9649253146081692,-7.892952026837794,1.0,0.0,0.0 -702,6.0,13.781374480360462,10.9,0.0,0.0,0.9547766667911726,-9.043411821068004,1.0,0.0,0.0 -702,7.0,18.133387474158503,30.0,-3.4273367452801063e-09,28.085307561437773,0.9625880814768064,-8.348203044460462,0.0,1.0,0.0 -702,8.0,0.0,0.0,0.0,0.0,1.018505558570281,-9.788944058132657,1.0,0.0,0.0 -702,9.0,3.505788245003977,2.0,0.0,0.0,1.0138527925245635,-10.764579402034125,1.0,0.0,0.0 -702,10.0,0.0,0.0,-5.383438864410025e-09,21.14406183197169,1.059995951571589,-9.788944058726916,0.0,1.0,0.0 -702,11.0,6.769797990352507,7.5,0.0,0.0,1.026139389166996,-10.692845087374527,1.0,0.0,0.0 -702,12.0,0.0,0.0,-4.437269024659662e-09,19.895659493964345,1.0526013755731822,-10.692845087704056,0.0,1.0,0.0 -702,13.0,3.747566744659424,1.6,0.0,0.0,1.0128430269918067,-11.282906071528563,1.0,0.0,0.0 -702,14.0,4.956459242936657,2.5,0.0,0.0,1.0071263991130923,-11.34629777591239,1.0,0.0,0.0 -702,15.0,2.1155618719851583,1.8,0.0,0.0,1.0148083703595228,-10.840195689524196,1.0,0.0,0.0 -702,16.0,5.440016242247551,5.8,0.0,0.0,1.0096360774292163,-10.90200596881908,1.0,0.0,0.0 -702,17.0,1.9342279972435736,0.9,0.0,0.0,0.9999883605038076,-11.53280915749179,1.0,0.0,0.0 -702,18.0,5.742239366816859,3.4,0.0,0.0,0.9981582338029756,-11.533117913519073,1.0,0.0,0.0 -702,19.0,1.329781748104957,0.7,0.0,0.0,1.001468942766881,-11.375491057708304,1.0,0.0,0.0 -702,20.0,10.577809359925794,11.2,0.0,0.0,0.9850325796046348,-11.27581893704249,1.0,0.0,0.0 -702,21.0,0.0,0.0,0.0,0.0,0.9889623597673488,-11.205407100122429,1.0,0.0,0.0 -702,22.0,1.9342279972435736,1.6,0.0,0.0,0.9910100433018664,-11.93932080131068,1.0,0.0,0.0 -702,23.0,5.2586823675059655,6.7,0.0,0.0,0.9766579942728716,-12.57680367148938,1.0,0.0,0.0 -702,24.0,0.0,0.0,0.0,0.0,0.9627980811987106,-10.762537501403452,1.0,0.0,0.0 -702,25.0,2.1155618719851583,2.3,0.0,0.0,0.9478970837781115,-10.899897761032774,1.0,0.0,0.0 -702,26.0,0.0,0.0,0.0,0.0,0.9703082601969728,-10.645160271265071,1.0,0.0,0.0 -702,27.0,0.0,0.0,0.0,0.0,0.9613942663899212,-8.25853801827952,1.0,0.0,0.0 -702,28.0,1.4506709979326802,0.9,0.0,0.0,0.9554108911655702,-11.3917767803392,1.0,0.0,0.0 -702,29.0,6.407130240869337,1.9,0.0,0.0,0.9471979248735374,-11.946948351176458,1.0,0.0,0.0 -703,0.0,0.0,0.0,180.41876442830275,0.0074730655235555,1.0,0.0,0.0,0.0,1.0 -703,1.0,13.116483606307982,12.7,9.491044261213433e-06,9.650941022425016,0.9772768575682989,-4.268731386310516,0.0,1.0,0.0 -703,2.0,1.4506709979326802,1.2,0.0,0.0,0.9749854939257808,-5.10530240241738,1.0,0.0,0.0 -703,3.0,4.593791493453487,1.6,0.0,0.0,0.968601900511961,-6.273640849636717,1.0,0.0,0.0 -703,4.0,56.9388366688577,19.0,-1.224710183469826e-08,24.22830304225076,0.9563879547924322,-11.415370590830983,0.0,1.0,0.0 -703,5.0,0.0,0.0,0.0,0.0,0.9621146600367032,-7.924283855368985,1.0,0.0,0.0 -703,6.0,13.781374480360462,10.9,0.0,0.0,0.9494443472551132,-8.46339595334619,1.0,0.0,0.0 -703,7.0,18.133387474158503,30.0,-1.036909613182058e-08,34.717316034388006,0.962306330592001,-8.453917631807505,0.0,1.0,0.0 -703,8.0,0.0,0.0,0.0,0.0,1.005919231044739,-11.68640109048003,1.0,0.0,0.0 -703,9.0,3.505788245003977,2.0,0.0,0.0,0.9943037300659132,-13.653851616126085,1.0,0.0,0.0 -703,10.0,0.0,0.0,-1.4233352583138036e-08,23.97921035510244,1.0532732827931564,-11.686401092081018,0.0,1.0,0.0 -703,11.0,6.769797990352507,7.5,0.0,0.0,0.9741361192420964,-16.58646337809891,1.0,0.0,0.0 -703,12.0,0.0,0.0,-5.000000587500722e-09,19.01212284121122,1.0007335798583994,-16.586463378510327,0.0,1.0,0.0 -703,13.0,3.747566744659424,1.6,0.0,0.0,0.9643539933204104,-16.67570389063738,1.0,0.0,0.0 -703,14.0,4.956459242936657,2.5,0.0,0.0,0.9661775447915883,-16.290343818962008,1.0,0.0,0.0 -703,15.0,2.1155618719851583,1.8,0.0,0.0,0.978185486282946,-15.503769982008084,1.0,0.0,0.0 -703,16.0,5.440016242247551,5.8,0.0,0.0,0.9838811018738738,-14.322558327990812,1.0,0.0,0.0 -703,17.0,1.9342279972435736,0.9,0.0,0.0,0.9662021686135353,-15.77220309360921,1.0,0.0,0.0 -703,18.0,5.742239366816859,3.4,0.0,0.0,0.9687639133303576,-15.348457723073452,1.0,0.0,0.0 -703,19.0,1.329781748104957,0.7,0.0,0.0,0.9745696216450216,-14.96041005285345,1.0,0.0,0.0 -703,20.0,10.577809359925794,11.2,0.0,0.0,0.9824710964633416,-13.939318330478272,1.0,0.0,0.0 -703,21.0,0.0,0.0,0.0,0.0,0.9826131602078668,-13.955413391982509,1.0,0.0,0.0 -703,22.0,1.9342279972435736,1.6,0.0,0.0,0.9637731478511624,-15.553260473743071,1.0,0.0,0.0 -703,23.0,5.2586823675059655,6.7,0.0,0.0,0.967925371807842,-14.382053493637375,1.0,0.0,0.0 -703,24.0,0.0,0.0,0.0,0.0,0.9691856937353766,-13.03557185027791,1.0,0.0,0.0 -703,25.0,2.1155618719851583,2.3,0.0,0.0,0.9543860462459328,-13.171099030991178,1.0,0.0,0.0 -703,26.0,0.0,0.0,0.0,0.0,0.9771929978666783,-12.090044259720443,1.0,0.0,0.0 -703,27.0,0.0,0.0,0.0,0.0,0.9593558386130826,-8.475067139081899,1.0,0.0,0.0 -703,28.0,1.4506709979326802,0.9,0.0,0.0,0.9624076673013652,-12.826017860856467,1.0,0.0,0.0 -703,29.0,6.407130240869337,1.9,0.0,0.0,0.9542565696651244,-13.37308481224405,1.0,0.0,0.0 -704,0.0,0.0,0.0,179.53649019577796,0.0004589792432341,1.0,0.0,0.0,0.0,1.0 -704,1.0,13.116483606307982,12.7,8.388151303583015e-07,12.05345524941736,0.9785152978607174,-4.112947230691626,0.0,1.0,0.0 -704,2.0,1.4506709979326802,1.2,0.0,0.0,0.9723289658171426,-5.473989477650655,1.0,0.0,0.0 -704,3.0,4.593791493453487,1.6,0.0,0.0,0.965396926891232,-6.733161696799605,1.0,0.0,0.0 -704,4.0,56.9388366688577,19.0,-8.67938907968172e-10,25.876006311110544,0.9570754089754115,-9.889199510331611,0.0,1.0,0.0 -704,5.0,0.0,0.0,0.0,0.0,0.9635258674310324,-7.780203971217031,1.0,0.0,0.0 -704,6.0,13.781374480360462,10.9,0.0,0.0,0.9541582142163836,-8.960528441141905,1.0,0.0,0.0 -704,7.0,18.133387474158503,30.0,-7.041040099214539e-10,35.83918040824168,0.9641993000148414,-8.300620226656063,0.0,1.0,0.0 -704,8.0,0.0,0.0,0.0,0.0,1.0323817658278909,-13.108743723234523,1.0,0.0,0.0 -704,9.0,3.505788245003977,2.0,0.0,0.0,1.0206912506883723,-13.108743723141712,1.0,0.0,0.0 -704,10.0,0.0,0.0,-1.5518450031457094e-09,11.206819715072946,1.05448746715987,-13.108743723404416,0.0,1.0,0.0 -704,11.0,6.769797990352507,7.5,0.0,0.0,1.028346578400213,-11.489018614594196,1.0,0.0,0.0 -704,12.0,0.0,0.0,-9.709504494892464e-10,18.72166430383573,1.0532321926162604,-11.489018614666108,0.0,1.0,0.0 -704,13.0,3.747566744659424,1.6,0.0,0.0,1.015044662692635,-12.100562513337536,1.0,0.0,0.0 -704,14.0,4.956459242936657,2.5,0.0,0.0,1.009140755856108,-12.186787644640118,1.0,0.0,0.0 -704,15.0,2.1155618719851583,1.8,0.0,0.0,1.0179337708864669,-12.308092828802502,1.0,0.0,0.0 -704,16.0,5.440016242247551,5.8,0.0,0.0,1.0156570471026032,-12.967481704994483,1.0,0.0,0.0 -704,17.0,1.9342279972435736,0.9,0.0,0.0,1.003597451294818,-12.900743289630672,1.0,0.0,0.0 -704,18.0,5.742239366816859,3.4,0.0,0.0,1.0027458714142383,-13.216122310925234,1.0,0.0,0.0 -704,19.0,1.329781748104957,0.7,0.0,0.0,1.006544767637784,-13.225833917756065,1.0,0.0,0.0 -704,20.0,10.577809359925794,11.2,0.0,0.0,1.0123244697465783,-13.262595339617686,1.0,0.0,0.0 -704,21.0,0.0,0.0,0.0,0.0,1.0134663391563352,-13.241765809443034,1.0,0.0,0.0 -704,22.0,1.9342279972435736,1.6,0.0,0.0,0.9912869738352248,-12.377987785400476,1.0,0.0,0.0 -704,23.0,5.2586823675059655,6.7,0.0,0.0,0.9744459295655612,-12.464448809230335,1.0,0.0,0.0 -704,24.0,0.0,0.0,0.0,0.0,0.9722024272577066,-11.745061121451508,1.0,0.0,0.0 -704,25.0,2.1155618719851583,2.3,0.0,0.0,0.957450159899294,-11.879735383891276,1.0,0.0,0.0 -704,26.0,0.0,0.0,0.0,0.0,0.9780516344458812,-11.187915147866208,1.0,0.0,0.0 -704,27.0,0.0,0.0,0.0,0.0,0.9612353759585144,-8.245642442226433,1.0,0.0,0.0 -704,28.0,1.4506709979326802,0.9,0.0,0.0,0.9632801550595972,-11.92257748021714,1.0,0.0,0.0 -704,29.0,6.407130240869337,1.9,0.0,0.0,0.9551367059576634,-12.468646292514029,1.0,0.0,0.0 -705,0.0,0.0,0.0,179.41380394958438,0.0013429403704634,1.0,0.0,0.0,0.0,1.0 -705,1.0,13.116483606307982,12.7,1.4883826578849062e-06,12.344189755852788,0.9786196947161924,-4.130033713421867,0.0,1.0,0.0 -705,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720049173127976,-5.414689113127129,1.0,0.0,0.0 -705,3.0,4.593791493453487,1.6,0.0,0.0,0.9649857975885076,-6.65969159492333,1.0,0.0,0.0 -705,4.0,56.9388366688577,19.0,-1.178915336241568e-10,25.268157715236526,0.9569479595364052,-9.942936540154522,0.0,1.0,0.0 -705,5.0,0.0,0.0,0.0,0.0,0.9643704868042487,-7.900467051580474,1.0,0.0,0.0 -705,6.0,13.781374480360462,10.9,0.0,0.0,0.9546027566166052,-9.053817183546093,1.0,0.0,0.0 -705,7.0,18.133387474158503,30.0,-1.2458048055242778e-10,31.13784047194073,0.963365240203962,-8.379781350746466,0.0,1.0,0.0 -705,8.0,0.0,0.0,0.0,0.0,1.0139096083505452,-9.90950513792036,1.0,0.0,0.0 -705,9.0,3.505788245003977,2.0,0.0,0.0,1.0047478723569818,-10.9520636743591,1.0,0.0,0.0 -705,10.0,0.0,0.0,-2.1410113543888867e-10,23.48835850972423,1.0599999733763203,-9.909505137944102,0.0,1.0,0.0 -705,11.0,6.769797990352507,7.5,0.0,0.0,1.012867459669291,-10.438876703151992,1.0,0.0,0.0 -705,12.0,0.0,0.0,-1.5529286973904112e-10,11.25284239113954,1.0281895175953817,-10.438876703163954,0.0,1.0,0.0 -705,13.0,3.747566744659424,1.6,0.0,0.0,1.0011754339546,-10.972988085086442,1.0,0.0,0.0 -705,14.0,4.956459242936657,2.5,0.0,0.0,0.9975846147808918,-11.007886892745017,1.0,0.0,0.0 -705,15.0,2.1155618719851583,1.8,0.0,0.0,1.0029773551815049,-10.786878677700852,1.0,0.0,0.0 -705,16.0,5.440016242247551,5.8,0.0,0.0,0.9997268104664252,-11.01333906139929,1.0,0.0,0.0 -705,17.0,1.9342279972435736,0.9,0.0,0.0,0.9904764308944252,-11.3867597627881,1.0,0.0,0.0 -705,18.0,5.742239366816859,3.4,0.0,0.0,0.9886931565315668,-11.499864358997204,1.0,0.0,0.0 -705,19.0,1.329781748104957,0.7,0.0,0.0,0.9920637865316704,-11.398624423644192,1.0,0.0,0.0 -705,20.0,10.577809359925794,11.2,0.0,0.0,0.9938180687698428,-11.165857890472251,1.0,0.0,0.0 -705,21.0,0.0,0.0,0.0,0.0,0.994209213973212,-11.160825360894473,1.0,0.0,0.0 -705,22.0,1.9342279972435736,1.6,0.0,0.0,0.9885651650981157,-11.216144358617058,1.0,0.0,0.0 -705,23.0,5.2586823675059655,6.7,0.0,0.0,0.9835260001775604,-11.31797288244114,1.0,0.0,0.0 -705,24.0,0.0,0.0,0.0,0.0,0.9768629394330892,-11.018389965883772,1.0,0.0,0.0 -705,25.0,2.1155618719851583,2.3,0.0,0.0,0.9621832662274986,-11.151762386688327,1.0,0.0,0.0 -705,26.0,0.0,0.0,0.0,0.0,0.9800254440064796,-10.726359689429128,1.0,0.0,0.0 -705,27.0,0.0,0.0,0.0,0.0,0.962172831007051,-8.2977232464812,1.0,0.0,0.0 -705,28.0,1.4506709979326802,0.9,0.0,0.0,0.9652857039522242,-11.458021043518976,1.0,0.0,0.0 -705,29.0,6.407130240869337,1.9,0.0,0.0,0.9571597809236324,-12.00180583777116,1.0,0.0,0.0 -706,0.0,0.0,0.0,179.41380394958438,0.0013429403704634,1.0,0.0,0.0,0.0,1.0 -706,1.0,13.116483606307982,12.7,1.4883826578849062e-06,12.344189755852788,0.9786196947161924,-4.130033713421867,0.0,1.0,0.0 -706,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720049173127976,-5.414689113127129,1.0,0.0,0.0 -706,3.0,4.593791493453487,1.6,0.0,0.0,0.9649857975885076,-6.65969159492333,1.0,0.0,0.0 -706,4.0,56.9388366688577,19.0,-1.178915336241568e-10,25.268157715236526,0.9569479595364052,-9.942936540154522,0.0,1.0,0.0 -706,5.0,0.0,0.0,0.0,0.0,0.9643704868042487,-7.900467051580474,1.0,0.0,0.0 -706,6.0,13.781374480360462,10.9,0.0,0.0,0.9546027566166052,-9.053817183546093,1.0,0.0,0.0 -706,7.0,18.133387474158503,30.0,-1.2458048055242778e-10,31.13784047194073,0.963365240203962,-8.379781350746466,0.0,1.0,0.0 -706,8.0,0.0,0.0,0.0,0.0,1.0139096083505452,-9.90950513792036,1.0,0.0,0.0 -706,9.0,3.505788245003977,2.0,0.0,0.0,1.0047478723569818,-10.9520636743591,1.0,0.0,0.0 -706,10.0,0.0,0.0,-2.1410113543888867e-10,23.48835850972423,1.0599999733763203,-9.909505137944102,0.0,1.0,0.0 -706,11.0,6.769797990352507,7.5,0.0,0.0,1.012867459669291,-10.438876703151992,1.0,0.0,0.0 -706,12.0,0.0,0.0,-1.5529286973904112e-10,11.25284239113954,1.0281895175953817,-10.438876703163954,0.0,1.0,0.0 -706,13.0,3.747566744659424,1.6,0.0,0.0,1.0011754339546,-10.972988085086442,1.0,0.0,0.0 -706,14.0,4.956459242936657,2.5,0.0,0.0,0.9975846147808918,-11.007886892745017,1.0,0.0,0.0 -706,15.0,2.1155618719851583,1.8,0.0,0.0,1.0029773551815049,-10.786878677700852,1.0,0.0,0.0 -706,16.0,5.440016242247551,5.8,0.0,0.0,0.9997268104664252,-11.01333906139929,1.0,0.0,0.0 -706,17.0,1.9342279972435736,0.9,0.0,0.0,0.9904764308944252,-11.3867597627881,1.0,0.0,0.0 -706,18.0,5.742239366816859,3.4,0.0,0.0,0.9886931565315668,-11.499864358997204,1.0,0.0,0.0 -706,19.0,1.329781748104957,0.7,0.0,0.0,0.9920637865316704,-11.398624423644192,1.0,0.0,0.0 -706,20.0,10.577809359925794,11.2,0.0,0.0,0.9938180687698428,-11.165857890472251,1.0,0.0,0.0 -706,21.0,0.0,0.0,0.0,0.0,0.994209213973212,-11.160825360894473,1.0,0.0,0.0 -706,22.0,1.9342279972435736,1.6,0.0,0.0,0.9885651650981157,-11.216144358617058,1.0,0.0,0.0 -706,23.0,5.2586823675059655,6.7,0.0,0.0,0.9835260001775604,-11.31797288244114,1.0,0.0,0.0 -706,24.0,0.0,0.0,0.0,0.0,0.9768629394330892,-11.018389965883772,1.0,0.0,0.0 -706,25.0,2.1155618719851583,2.3,0.0,0.0,0.9621832662274986,-11.151762386688327,1.0,0.0,0.0 -706,26.0,0.0,0.0,0.0,0.0,0.9800254440064796,-10.726359689429128,1.0,0.0,0.0 -706,27.0,0.0,0.0,0.0,0.0,0.962172831007051,-8.2977232464812,1.0,0.0,0.0 -706,28.0,1.4506709979326802,0.9,0.0,0.0,0.9652857039522242,-11.458021043518976,1.0,0.0,0.0 -706,29.0,6.407130240869337,1.9,0.0,0.0,0.9571597809236324,-12.00180583777116,1.0,0.0,0.0 -707,0.0,0.0,0.0,180.5611201638905,0.0048296125930491,1.0,0.0,0.0,0.0,1.0 -707,1.0,13.116483606307982,12.7,5.263190602534076e-06,8.690635309055331,0.9802892369330276,-3.805278133900136,0.0,1.0,0.0 -707,2.0,1.4506709979326802,1.2,0.0,0.0,0.9683868674931148,-6.476669604334716,1.0,0.0,0.0 -707,3.0,4.593791493453487,1.6,0.0,0.0,0.960786802665662,-7.982563235027148,1.0,0.0,0.0 -707,4.0,56.9388366688577,19.0,8.276364688458072e-09,38.89942740903713,0.9685268273011568,-10.924565916956556,0.0,1.0,0.0 -707,5.0,0.0,0.0,0.0,0.0,0.9573441238989576,-9.81504203460824,1.0,0.0,0.0 -707,6.0,13.781374480360462,10.9,0.0,0.0,0.9550499386315998,-10.577003870765784,1.0,0.0,0.0 -707,7.0,18.133387474158503,30.0,6.179805187391811e-09,39.99873645126972,0.9594662680135356,-10.35311166322311,0.0,1.0,0.0 -707,8.0,0.0,0.0,0.0,0.0,0.9813761070137276,-11.770991676794242,1.0,0.0,0.0 -707,9.0,3.505788245003977,2.0,0.0,0.0,0.9831568419581452,-12.800743236740336,1.0,0.0,0.0 -707,10.0,0.0,0.0,0.0,0.0,0.9813761070137276,-11.770991676794242,0.0,1.0,0.0 -707,11.0,6.769797990352507,7.5,0.0,0.0,1.0223593453721904,-12.027823167576118,1.0,0.0,0.0 -707,12.0,0.0,0.0,7.200889500921984e-09,23.997923815159687,1.0542282442786248,-12.027823167040202,0.0,1.0,0.0 -707,13.0,3.747566744659424,1.6,0.0,0.0,1.0104411692970423,-12.511662437953555,1.0,0.0,0.0 -707,14.0,4.956459242936657,2.5,0.0,0.0,1.0068386685269357,-12.498344996481318,1.0,0.0,0.0 -707,15.0,2.1155618719851583,1.8,0.0,0.0,0.9988214499130696,-12.418865805579056,1.0,0.0,0.0 -707,16.0,5.440016242247551,5.8,0.0,0.0,0.9835751803999688,-12.81856611289643,1.0,0.0,0.0 -707,17.0,1.9342279972435736,0.9,0.0,0.0,0.954970288993884,-14.010839976929152,1.0,0.0,0.0 -707,18.0,5.742239366816859,3.4,0.0,0.0,0.9574842894622644,-13.890283922523375,1.0,0.0,0.0 -707,19.0,1.329781748104957,0.7,0.0,0.0,0.9632777250579454,-13.656833622534862,1.0,0.0,0.0 -707,20.0,10.577809359925794,11.2,0.0,0.0,0.9745489235718808,-13.015843279722,1.0,0.0,0.0 -707,21.0,0.0,0.0,0.0,0.0,0.9757565727101172,-13.009180524919582,1.0,0.0,0.0 -707,22.0,1.9342279972435736,1.6,0.0,0.0,0.9904615437698964,-12.877567780796122,1.0,0.0,0.0 -707,23.0,5.2586823675059655,6.7,0.0,0.0,0.9756553544472598,-13.221299910534126,1.0,0.0,0.0 -707,24.0,0.0,0.0,0.0,0.0,0.9557241660445824,-12.742050933129546,1.0,0.0,0.0 -707,25.0,2.1155618719851583,2.3,0.0,0.0,0.9407092702467714,-12.881485196803611,1.0,0.0,0.0 -707,26.0,0.0,0.0,0.0,0.0,0.96329183186126,-12.62293164404008,1.0,0.0,0.0 -707,27.0,0.0,0.0,0.0,0.0,0.9547938222349924,-10.201698217169312,1.0,0.0,0.0 -707,28.0,1.4506709979326802,0.9,0.0,0.0,0.9482784627925056,-13.380635366051257,1.0,0.0,0.0 -707,29.0,6.407130240869337,1.9,0.0,0.0,0.9400014369010246,-13.944256025564282,1.0,0.0,0.0 -708,0.0,0.0,0.0,180.08258185755545,0.0006539257558557,1.0,0.0,0.0,0.0,1.0 -708,1.0,13.116483606307982,12.7,9.086363966708656e-07,14.674845599911954,0.9782264179232484,-4.355550671066018,0.0,1.0,0.0 -708,2.0,1.4506709979326802,1.2,0.0,0.0,0.9721444157971608,-4.8368149863040175,1.0,0.0,0.0 -708,3.0,4.593791493453487,1.6,0.0,0.0,0.9650587173757694,-5.941547618655524,1.0,0.0,0.0 -708,4.0,56.9388366688577,19.0,2.255830964319031e-09,39.99985165594258,0.959159669304694,-13.363107115341323,0.0,1.0,0.0 -708,5.0,0.0,0.0,0.0,0.0,0.9652875610756196,-6.860065624049788,1.0,0.0,0.0 -708,6.0,13.781374480360462,10.9,0.0,0.0,0.9400002428561997,-14.086749258519957,1.0,0.0,0.0 -708,7.0,18.133387474158503,30.0,4.940585707482828e-10,28.437766914507364,0.9632116637146708,-7.3227414023212285,0.0,1.0,0.0 -708,8.0,0.0,0.0,0.0,0.0,1.006930607317762,-8.935468134607582,1.0,0.0,0.0 -708,9.0,3.505788245003977,2.0,0.0,0.0,0.998474514510618,-10.020252781250072,1.0,0.0,0.0 -708,10.0,0.0,0.0,4.797896300971901e-10,18.520313098673927,1.0438351429667116,-8.935468134553183,0.0,1.0,0.0 -708,11.0,6.769797990352507,7.5,0.0,0.0,1.0040258281520422,-9.592853637187575,1.0,0.0,0.0 -708,12.0,0.0,0.0,4.007536285957256e-10,6.795006924305978,1.0134129293215497,-9.59285363715598,0.0,1.0,0.0 -708,13.0,3.747566744659424,1.6,0.0,0.0,0.9926108018934302,-10.120523436019624,1.0,0.0,0.0 -708,14.0,4.956459242936657,2.5,0.0,0.0,0.9894638707235586,-10.149083043845105,1.0,0.0,0.0 -708,15.0,2.1155618719851583,1.8,0.0,0.0,0.9952597346059908,-9.911745971919224,1.0,0.0,0.0 -708,16.0,5.440016242247551,5.8,0.0,0.0,0.9929509610373314,-10.09898496817255,1.0,0.0,0.0 -708,17.0,1.9342279972435736,0.9,0.0,0.0,0.982938956989403,-10.508566168058822,1.0,0.0,0.0 -708,18.0,5.742239366816859,3.4,0.0,0.0,0.9815184483343544,-10.60825472464276,1.0,0.0,0.0 -708,19.0,1.329781748104957,0.7,0.0,0.0,0.9851125619151772,-10.497649585775902,1.0,0.0,0.0 -708,20.0,10.577809359925794,11.2,0.0,0.0,0.987564936381576,-10.238528880336643,1.0,0.0,0.0 -708,21.0,0.0,0.0,0.0,0.0,0.98798687575689,-10.234040305963097,1.0,0.0,0.0 -708,22.0,1.9342279972435736,1.6,0.0,0.0,0.9813645290749364,-10.335198904650785,1.0,0.0,0.0 -708,23.0,5.2586823675059655,6.7,0.0,0.0,0.9775978095809684,-10.403748162216674,1.0,0.0,0.0 -708,24.0,0.0,0.0,0.0,0.0,0.9734099401967964,-10.086523817904624,1.0,0.0,0.0 -708,25.0,2.1155618719851583,2.3,0.0,0.0,0.9586765514663445,-10.220858944594257,1.0,0.0,0.0 -708,26.0,0.0,0.0,0.0,0.0,0.9781315253079996,-9.78031442619618,1.0,0.0,0.0 -708,27.0,0.0,0.0,0.0,0.0,0.9625136019130324,-7.259470960233662,1.0,0.0,0.0 -708,28.0,1.4506709979326802,0.9,0.0,0.0,0.963361333298374,-10.514854931948358,1.0,0.0,0.0 -708,29.0,6.407130240869337,1.9,0.0,0.0,0.9552185950716742,-11.060831014611612,1.0,0.0,0.0 -709,0.0,0.0,0.0,179.41380394958438,0.0013429403704634,1.0,0.0,0.0,0.0,1.0 -709,1.0,13.116483606307982,12.7,1.4883826578849062e-06,12.344189755852788,0.9786196947161924,-4.130033713421867,0.0,1.0,0.0 -709,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720049173127976,-5.414689113127129,1.0,0.0,0.0 -709,3.0,4.593791493453487,1.6,0.0,0.0,0.9649857975885076,-6.65969159492333,1.0,0.0,0.0 -709,4.0,56.9388366688577,19.0,-1.178915336241568e-10,25.268157715236526,0.9569479595364052,-9.942936540154522,0.0,1.0,0.0 -709,5.0,0.0,0.0,0.0,0.0,0.9643704868042487,-7.900467051580474,1.0,0.0,0.0 -709,6.0,13.781374480360462,10.9,0.0,0.0,0.9546027566166052,-9.053817183546093,1.0,0.0,0.0 -709,7.0,18.133387474158503,30.0,-1.2458048055242778e-10,31.13784047194073,0.963365240203962,-8.379781350746466,0.0,1.0,0.0 -709,8.0,0.0,0.0,0.0,0.0,1.0139096083505452,-9.90950513792036,1.0,0.0,0.0 -709,9.0,3.505788245003977,2.0,0.0,0.0,1.0047478723569818,-10.9520636743591,1.0,0.0,0.0 -709,10.0,0.0,0.0,-2.1410113543888867e-10,23.48835850972423,1.0599999733763203,-9.909505137944102,0.0,1.0,0.0 -709,11.0,6.769797990352507,7.5,0.0,0.0,1.012867459669291,-10.438876703151992,1.0,0.0,0.0 -709,12.0,0.0,0.0,-1.5529286973904112e-10,11.25284239113954,1.0281895175953817,-10.438876703163954,0.0,1.0,0.0 -709,13.0,3.747566744659424,1.6,0.0,0.0,1.0011754339546,-10.972988085086442,1.0,0.0,0.0 -709,14.0,4.956459242936657,2.5,0.0,0.0,0.9975846147808918,-11.007886892745017,1.0,0.0,0.0 -709,15.0,2.1155618719851583,1.8,0.0,0.0,1.0029773551815049,-10.786878677700852,1.0,0.0,0.0 -709,16.0,5.440016242247551,5.8,0.0,0.0,0.9997268104664252,-11.01333906139929,1.0,0.0,0.0 -709,17.0,1.9342279972435736,0.9,0.0,0.0,0.9904764308944252,-11.3867597627881,1.0,0.0,0.0 -709,18.0,5.742239366816859,3.4,0.0,0.0,0.9886931565315668,-11.499864358997204,1.0,0.0,0.0 -709,19.0,1.329781748104957,0.7,0.0,0.0,0.9920637865316704,-11.398624423644192,1.0,0.0,0.0 -709,20.0,10.577809359925794,11.2,0.0,0.0,0.9938180687698428,-11.165857890472251,1.0,0.0,0.0 -709,21.0,0.0,0.0,0.0,0.0,0.994209213973212,-11.160825360894473,1.0,0.0,0.0 -709,22.0,1.9342279972435736,1.6,0.0,0.0,0.9885651650981157,-11.216144358617058,1.0,0.0,0.0 -709,23.0,5.2586823675059655,6.7,0.0,0.0,0.9835260001775604,-11.31797288244114,1.0,0.0,0.0 -709,24.0,0.0,0.0,0.0,0.0,0.9768629394330892,-11.018389965883772,1.0,0.0,0.0 -709,25.0,2.1155618719851583,2.3,0.0,0.0,0.9621832662274986,-11.151762386688327,1.0,0.0,0.0 -709,26.0,0.0,0.0,0.0,0.0,0.9800254440064796,-10.726359689429128,1.0,0.0,0.0 -709,27.0,0.0,0.0,0.0,0.0,0.962172831007051,-8.2977232464812,1.0,0.0,0.0 -709,28.0,1.4506709979326802,0.9,0.0,0.0,0.9652857039522242,-11.458021043518976,1.0,0.0,0.0 -709,29.0,6.407130240869337,1.9,0.0,0.0,0.9571597809236324,-12.00180583777116,1.0,0.0,0.0 -710,0.0,0.0,0.0,179.52202664501462,0.0018397587075114,1.0,0.0,0.0,0.0,1.0 -710,1.0,13.116483606307982,12.7,1.979781837641653e-06,12.150051137488177,0.9785733239714436,-4.132671260898359,0.0,1.0,0.0 -710,2.0,1.4506709979326802,1.2,0.0,0.0,0.9720930026706412,-5.41736543891556,1.0,0.0,0.0 -710,3.0,4.593791493453487,1.6,0.0,0.0,0.965094865436322,-6.662960770032656,1.0,0.0,0.0 -710,4.0,56.9388366688577,19.0,6.655215484121492e-10,25.32182696330796,0.9569707195958777,-9.951005408482269,0.0,1.0,0.0 -710,5.0,0.0,0.0,0.0,0.0,0.9643493136771016,-7.912180028345794,1.0,0.0,0.0 -710,6.0,13.781374480360462,10.9,0.0,0.0,0.9545991008473615,-9.064032903305849,1.0,0.0,0.0 -710,7.0,18.133387474158503,30.0,6.314349828769031e-10,31.38918656591493,0.9634239230584654,-8.393703828320405,0.0,1.0,0.0 -710,8.0,0.0,0.0,0.0,0.0,1.0135778953398036,-9.94790465917858,1.0,0.0,0.0 -710,9.0,3.505788245003977,2.0,0.0,0.0,1.0040898668256275,-11.00497667919784,1.0,0.0,0.0 -710,10.0,0.0,0.0,1.030755387557478e-09,23.657411342082018,1.0599999861280085,-9.947904659064244,0.0,1.0,0.0 -710,11.0,6.769797990352507,7.5,0.0,0.0,1.013749387774636,-10.383146480261816,1.0,0.0,0.0 -710,12.0,0.0,0.0,6.979746858190211e-10,11.199624710008685,1.0289871625158449,-10.383146480208143,0.0,1.0,0.0 -710,13.0,3.747566744659424,1.6,0.0,0.0,0.981871540658914,-11.40959119687496,1.0,0.0,0.0 -710,14.0,4.956459242936657,2.5,0.0,0.0,0.9935689065929804,-11.17772561648288,1.0,0.0,0.0 -710,15.0,2.1155618719851583,1.8,0.0,0.0,1.0031198722974866,-10.774273559983731,1.0,0.0,0.0 -710,16.0,5.440016242247551,5.8,0.0,0.0,0.9993405296728564,-11.046873232601069,1.0,0.0,0.0 -710,17.0,1.9342279972435736,0.9,0.0,0.0,0.9876269743286424,-11.5181247259289,1.0,0.0,0.0 -710,18.0,5.742239366816859,3.4,0.0,0.0,0.9865391523722986,-11.607407183030269,1.0,0.0,0.0 -710,19.0,1.329781748104957,0.7,0.0,0.0,0.990287008190717,-11.493023615715977,1.0,0.0,0.0 -710,20.0,10.577809359925794,11.2,0.0,0.0,0.9929943669469736,-11.224981163917068,1.0,0.0,0.0 -710,21.0,0.0,0.0,0.0,0.0,0.9933353827233716,-11.2217732946898,1.0,0.0,0.0 -710,22.0,1.9342279972435736,1.6,0.0,0.0,0.9855796993230318,-11.349282542665604,1.0,0.0,0.0 -710,23.0,5.2586823675059655,6.7,0.0,0.0,0.9819269515585384,-11.399673418799678,1.0,0.0,0.0 -710,24.0,0.0,0.0,0.0,0.0,0.9759021496851455,-11.082208122743284,1.0,0.0,0.0 -710,25.0,2.1155618719851583,2.3,0.0,0.0,0.9612075702399678,-11.215847367368426,1.0,0.0,0.0 -710,26.0,0.0,0.0,0.0,0.0,0.9794633849411932,-10.778200256699373,1.0,0.0,0.0 -710,27.0,0.0,0.0,0.0,0.0,0.9620885548476532,-8.313154309313745,1.0,0.0,0.0 -710,28.0,1.4506709979326802,0.9,0.0,0.0,0.964714621177425,-11.510714278864778,1.0,0.0,0.0 -710,29.0,6.407130240869337,1.9,0.0,0.0,0.9565837153908288,-12.055147984844696,1.0,0.0,0.0 -711,0.0,0.0,0.0,180.0196837560282,2.15072678777517e-05,1.0,0.0,0.0,0.0,1.0 -711,1.0,13.158772999353022,12.7,4.1468978188504355e-08,12.45398146651128,0.97856988137248,-4.144526754335138,0.0,1.0,0.0 -711,2.0,1.4553481658270626,1.2,0.0,0.0,0.9719151833681486,-5.433230301841045,1.0,0.0,0.0 -711,3.0,4.608602525119031,1.6,0.0,0.0,0.964879486526508,-6.68267845690805,1.0,0.0,0.0 -711,4.0,57.12241550871221,19.0,1.4904084781120883e-11,25.303695730464128,0.956824921766702,-9.977576019039816,0.0,1.0,0.0 -711,5.0,0.0,0.0,0.0,0.0,0.9642549142536584,-7.927689126553564,1.0,0.0,0.0 -711,6.0,13.825807575357096,10.9,0.0,0.0,0.9544756676778564,-9.085469692901404,1.0,0.0,0.0 -711,7.0,18.19185207283828,30.0,1.5769227968823658e-11,31.1501826128508,0.9632463210309342,-8.408680224861325,0.0,1.0,0.0 -711,8.0,0.0,0.0,0.0,0.0,1.0138288963903597,-9.943658156390336,1.0,0.0,0.0 -711,9.0,3.5170914007487344,2.0,0.0,0.0,1.0046477940309546,-10.989791137867766,1.0,0.0,0.0 -711,10.0,0.0,0.0,2.6683455804866707e-11,23.52928473073193,1.0599995863330132,-9.943658156387375,0.0,1.0,0.0 -711,11.0,6.791624773859625,7.5,0.0,0.0,1.012776910364688,-10.47459550310094,1.0,0.0,0.0 -711,12.0,0.0,0.0,1.9603861555507976e-11,11.269602329585936,1.0281227848975556,-10.47459550309943,0.0,1.0,0.0 -711,13.0,3.759649428386578,1.6,0.0,0.0,1.0010658475525362,-11.01098267471616,1.0,0.0,0.0 -711,14.0,4.9724395665757966,2.5,0.0,0.0,0.9974692219017948,-11.046247881167853,1.0,0.0,0.0 -711,15.0,2.1223827418311325,1.8,0.0,0.0,1.002874518664753,-10.82426431134122,1.0,0.0,0.0 -711,16.0,5.457555621851485,5.8,0.0,0.0,0.9996219010905524,-11.051569261765286,1.0,0.0,0.0 -711,17.0,1.94046422110275,0.9,0.0,0.0,0.9903505683697938,-11.42672449351555,1.0,0.0,0.0 -711,18.0,5.760753156398789,3.4,0.0,0.0,0.9885655043647132,-11.540288819463449,1.0,0.0,0.0 -711,19.0,1.3340691520081407,0.7,0.0,0.0,0.9919421215933436,-11.43851443102418,1.0,0.0,0.0 -711,20.0,10.611913709155663,11.2,0.0,0.0,0.9937043000178388,-11.20490566200269,1.0,0.0,0.0 -711,21.0,0.0,0.0,0.0,0.0,0.9940953828660132,-11.199810205462288,1.0,0.0,0.0 -711,22.0,1.94046422110275,1.6,0.0,0.0,0.988437775553948,-11.255630259882594,1.0,0.0,0.0 -711,23.0,5.275637101123102,6.7,0.0,0.0,0.9833920746343872,-11.357949908738563,1.0,0.0,0.0 -711,24.0,0.0,0.0,0.0,0.0,0.9767248599545588,-11.057471082609108,1.0,0.0,0.0 -711,25.0,2.1223827418311325,2.3,0.0,0.0,0.9620246654551894,-11.19246482844073,1.0,0.0,0.0 -711,26.0,0.0,0.0,0.0,0.0,0.9798936759706924,-10.764003733825314,1.0,0.0,0.0 -711,27.0,0.0,0.0,0.0,0.0,0.9620498662084968,-8.326394249635525,1.0,0.0,0.0 -711,28.0,1.4553481658270626,0.9,0.0,0.0,0.965122714726516,-11.498859302712754,1.0,0.0,0.0 -711,29.0,6.427787732402859,1.9,0.0,0.0,0.956976756833023,-12.044846412751673,1.0,0.0,0.0 -712,0.0,0.0,0.0,181.0491482064924,0.0111974317017704,1.0,0.0,0.0,0.0,1.0 -712,1.0,13.158772999353022,12.7,1.243149083494248e-05,12.771129535201666,0.980062806585776,-3.807714698189501,0.0,1.0,0.0 -712,2.0,1.4553481658270626,1.2,0.0,0.0,0.9688725152266224,-6.514641986466158,1.0,0.0,0.0 -712,3.0,4.608602525119031,1.6,0.0,0.0,0.9613969019598422,-8.029183629805814,1.0,0.0,0.0 -712,4.0,57.12241550871221,19.0,2.2688854975810465e-08,28.04739101292607,0.9581455402204772,-10.845118800320774,0.0,1.0,0.0 -712,5.0,0.0,0.0,0.0,0.0,0.959193955747036,-9.958782956398624,1.0,0.0,0.0 -712,6.0,13.825807575357096,10.9,0.0,0.0,0.9518221457149556,-10.6405888810236,1.0,0.0,0.0 -712,7.0,18.19185207283828,30.0,1.393771517024716e-08,34.853338086871815,0.95955517185211,-10.467199863118802,0.0,1.0,0.0 -712,8.0,0.0,0.0,0.0,0.0,1.006338945236198,-12.05317113899811,1.0,0.0,0.0 -712,9.0,3.5170914007487344,2.0,0.0,0.0,0.9953428531136358,-13.144387678201548,1.0,0.0,0.0 -712,10.0,0.0,0.0,2.5514752541117612e-08,23.99040487045532,1.0536960935051574,-12.053171136130516,0.0,1.0,0.0 -712,11.0,6.791624773859625,7.5,0.0,0.0,1.016164762941821,-11.760713698147494,1.0,0.0,0.0 -712,12.0,0.0,0.0,1.9661275924267345e-08,12.230473049714057,1.0327445286006147,-11.76071369664468,0.0,1.0,0.0 -712,13.0,3.759649428386578,1.6,0.0,0.0,1.0032145338114895,-12.409708689755991,1.0,0.0,0.0 -712,14.0,4.9724395665757966,2.5,0.0,0.0,0.9976078390755208,-12.530865403317966,1.0,0.0,0.0 -712,15.0,2.1223827418311325,1.8,0.0,0.0,0.981654988377292,-13.560109079081563,1.0,0.0,0.0 -712,16.0,5.457555621851485,5.8,0.0,0.0,0.9863191669159276,-13.374405773104376,1.0,0.0,0.0 -712,17.0,1.94046422110275,0.9,0.0,0.0,0.9870539711732692,-13.146820817364032,1.0,0.0,0.0 -712,18.0,5.760753156398789,3.4,0.0,0.0,0.9832649893333364,-13.401780550589269,1.0,0.0,0.0 -712,19.0,1.3340691520081407,0.7,0.0,0.0,0.985605055111491,-13.372698386860373,1.0,0.0,0.0 -712,20.0,10.611913709155663,11.2,0.0,0.0,0.984875168665561,-13.32372737571981,1.0,0.0,0.0 -712,21.0,0.0,0.0,0.0,0.0,0.9854565834712709,-13.305998263057305,1.0,0.0,0.0 -712,22.0,1.94046422110275,1.6,0.0,0.0,0.9859355527646037,-12.939559781951814,1.0,0.0,0.0 -712,23.0,5.275637101123102,6.7,0.0,0.0,0.9774535853667708,-13.314319252533789,1.0,0.0,0.0 -712,24.0,0.0,0.0,0.0,0.0,0.9709403390538812,-13.056921871692332,1.0,0.0,0.0 -712,25.0,2.1223827418311325,2.3,0.0,0.0,0.9561497889734908,-13.193554251523077,1.0,0.0,0.0 -712,26.0,0.0,0.0,0.0,0.0,0.9742636871408464,-12.788812151518538,1.0,0.0,0.0 -712,27.0,0.0,0.0,0.0,0.0,0.9572345315760212,-10.360529009640397,1.0,0.0,0.0 -712,28.0,1.4553481658270626,0.9,0.0,0.0,0.959401592905953,-13.532315919771507,1.0,0.0,0.0 -712,29.0,6.427787732402859,1.9,0.0,0.0,0.951205296314568,-14.084884656471765,1.0,0.0,0.0 -713,0.0,0.0,0.0,136.61748482395151,7.136501389837235e-05,1.0,0.0,0.0,0.0,1.0 -713,1.0,13.158772999353022,12.7,49.18081456524555,18.4094260355014,0.9657450236536224,-18.06487472000164,0.0,1.0,0.0 -713,2.0,1.4553481658270626,1.2,0.0,0.0,0.9615194862262242,-13.518857610422495,1.0,0.0,0.0 -713,3.0,4.608602525119031,1.6,0.0,0.0,0.9565628635281412,-16.740456160591105,1.0,0.0,0.0 -713,4.0,57.12241550871221,19.0,-4.882543773933389e-12,25.153411754385218,0.946558836074372,-22.580286572632595,0.0,1.0,0.0 -713,5.0,0.0,0.0,0.0,0.0,0.959271737648632,-18.997714815954147,1.0,0.0,0.0 -713,6.0,13.825807575357096,10.9,0.0,0.0,0.9473479679954382,-20.78346516697476,1.0,0.0,0.0 -713,7.0,18.19185207283828,30.0,-1.0458938431568776e-11,39.71447458164692,0.9615345432041912,-19.53459836028633,0.0,1.0,0.0 -713,8.0,0.0,0.0,0.0,0.0,1.01332339937782,-20.816669111342136,1.0,0.0,0.0 -713,9.0,3.5170914007487344,2.0,0.0,0.0,1.006208278427,-21.75425804931001,1.0,0.0,0.0 -713,10.0,0.0,0.0,-8.302742500332198e-12,23.78678138033231,1.0599993752566832,-20.81666911134306,0.0,1.0,0.0 -713,11.0,6.791624773859625,7.5,0.0,0.0,1.024957704037818,-21.01675546633049,1.0,0.0,0.0 -713,12.0,0.0,0.0,-1.1539169051471154e-12,23.999326770171788,1.056752341401645,-21.01675546633058,0.0,1.0,0.0 -713,13.0,3.759649428386578,1.6,0.0,0.0,1.01205603256253,-21.58506136902825,1.0,0.0,0.0 -713,14.0,4.9724395665757966,2.5,0.0,0.0,1.0069128638140776,-21.6335750947536,1.0,0.0,0.0 -713,15.0,2.1223827418311325,1.8,0.0,0.0,1.010350145858455,-21.436308428434327,1.0,0.0,0.0 -713,16.0,5.457555621851485,5.8,0.0,0.0,1.0030984938543912,-21.77459917968955,1.0,0.0,0.0 -713,17.0,1.94046422110275,0.9,0.0,0.0,0.9970613751963742,-22.06965987252052,1.0,0.0,0.0 -713,18.0,5.760753156398789,3.4,0.0,0.0,0.9936457292519928,-22.218645125061844,1.0,0.0,0.0 -713,19.0,1.3340691520081407,0.7,0.0,0.0,0.9961389659344926,-22.13700978762845,1.0,0.0,0.0 -713,20.0,10.611913709155663,11.2,0.0,0.0,0.9955278720128288,-21.96562994946225,1.0,0.0,0.0 -713,21.0,0.0,0.0,0.0,0.0,0.9959959055273834,-21.959681153043228,1.0,0.0,0.0 -713,22.0,1.94046422110275,1.6,0.0,0.0,0.9951207427521503,-21.91157452891415,1.0,0.0,0.0 -713,23.0,5.275637101123102,6.7,0.0,0.0,0.9863669051039554,-22.11194777988449,1.0,0.0,0.0 -713,24.0,0.0,0.0,0.0,0.0,0.9766500491190286,-21.903857768740192,1.0,0.0,0.0 -713,25.0,2.1223827418311325,2.3,0.0,0.0,0.9619486931973084,-22.038872515999877,1.0,0.0,0.0 -713,26.0,0.0,0.0,0.0,0.0,0.977954454438646,-21.671241209090283,1.0,0.0,0.0 -713,27.0,0.0,0.0,0.0,0.0,0.9581751457949724,-19.393892048218525,1.0,0.0,0.0 -713,28.0,1.4553481658270626,0.9,0.0,0.0,0.963152233350124,-22.409058393799825,1.0,0.0,0.0 -713,29.0,6.427787732402859,1.9,0.0,0.0,0.9549890088278804,-22.95729898600358,1.0,0.0,0.0 -714,0.0,0.0,0.0,180.46285908485933,0.0009900466371171,1.0,0.0,0.0,0.0,1.0 -714,1.0,13.158772999353022,12.7,1.0958761978099243e-06,12.441676026862496,0.980299724731679,-3.8338773119916434,0.0,1.0,0.0 -714,2.0,1.4553481658270626,1.2,0.0,0.0,0.9682507456544304,-6.385681715691825,1.0,0.0,0.0 -714,3.0,4.608602525119031,1.6,0.0,0.0,0.9605935455368572,-7.869457874135893,1.0,0.0,0.0 -714,4.0,57.12241550871221,19.0,1.0780018027578834e-09,26.43441675574796,0.9579476246242848,-10.246407822457668,0.0,1.0,0.0 -714,5.0,0.0,0.0,0.0,0.0,0.9620180886340806,-8.77034734366047,1.0,0.0,0.0 -714,6.0,13.825807575357096,10.9,0.0,0.0,0.9535282554940384,-9.693515172383051,1.0,0.0,0.0 -714,7.0,18.19185207283828,30.0,1.0117783737776768e-09,32.67378055565229,0.9615858141374668,-9.263925686437233,0.0,1.0,0.0 -714,8.0,0.0,0.0,0.0,0.0,1.0127769001036886,-10.850255338068894,1.0,0.0,0.0 -714,9.0,3.5170914007487344,2.0,0.0,0.0,1.003787544722669,-11.927976167381988,1.0,0.0,0.0 -714,10.0,0.0,0.0,1.6957488035226995e-09,24.000200612648115,1.0598770945787372,-10.850255337880624,0.0,1.0,0.0 -714,11.0,6.791624773859625,7.5,0.0,0.0,1.0125201834929736,-11.557570837008104,1.0,0.0,0.0 -714,12.0,0.0,0.0,1.4352312438127711e-09,13.682882644068217,1.031098463244662,-11.557570836897831,0.0,1.0,0.0 -714,13.0,3.759649428386578,1.6,0.0,0.0,1.0006694482784717,-12.077006067469938,1.0,0.0,0.0 -714,14.0,4.9724395665757966,2.5,0.0,0.0,0.9970586121249696,-12.092099358432773,1.0,0.0,0.0 -714,15.0,2.1223827418311325,1.8,0.0,0.0,1.0024515235737457,-11.844065338257932,1.0,0.0,0.0 -714,16.0,5.457555621851485,5.8,0.0,0.0,0.9988644792975684,-12.015879948818156,1.0,0.0,0.0 -714,17.0,1.94046422110275,0.9,0.0,0.0,0.989783676634336,-12.435128180468686,1.0,0.0,0.0 -714,18.0,5.760753156398789,3.4,0.0,0.0,0.9879054219139212,-12.526215608469068,1.0,0.0,0.0 -714,19.0,1.3340691520081407,0.7,0.0,0.0,0.9912366897701654,-12.412376181083644,1.0,0.0,0.0 -714,20.0,10.611913709155663,11.2,0.0,0.0,0.9928290597261796,-12.146620528374484,1.0,0.0,0.0 -714,21.0,0.0,0.0,0.0,0.0,0.993218470040958,-12.142529235966482,1.0,0.0,0.0 -714,22.0,1.94046422110275,1.6,0.0,0.0,0.9878027864032428,-12.263519029277136,1.0,0.0,0.0 -714,23.0,5.275637101123102,6.7,0.0,0.0,0.9824538921274856,-12.314418319842437,1.0,0.0,0.0 -714,24.0,0.0,0.0,0.0,0.0,0.9754383787941974,-11.971575685617095,1.0,0.0,0.0 -714,25.0,2.1223827418311325,2.3,0.0,0.0,0.9607181862524518,-12.10693129244921,1.0,0.0,0.0 -714,26.0,0.0,0.0,0.0,0.0,0.9783891988767284,-11.651751822859646,1.0,0.0,0.0 -714,27.0,0.0,0.0,0.0,0.0,0.9599944115400209,-9.177608526121796,1.0,0.0,0.0 -714,28.0,1.4553481658270626,0.9,0.0,0.0,0.9635939976658436,-12.38890349393104,1.0,0.0,0.0 -714,29.0,6.427787732402859,1.9,0.0,0.0,0.9554346506536056,-12.936637660357963,1.0,0.0,0.0 -715,0.0,0.0,0.0,93.12066695569314,3.0757631996891632e-06,1.0,0.0,0.0,0.0,1.0 -715,1.0,13.158772999353022,12.7,91.0005903076481,28.355615197413783,0.997349063132688,-8.663360379577265,0.0,1.0,0.0 -715,2.0,1.4553481658270626,1.2,0.0,0.0,0.9667098223810772,-9.101218695022755,1.0,0.0,0.0 -715,3.0,4.608602525119031,1.6,0.0,0.0,0.9597897799286608,-11.246515144349438,1.0,0.0,0.0 -715,4.0,57.12241550871221,19.0,1.0278316317585924e-07,39.99999926294044,0.9400000013200766,-22.43003025351979,0.0,1.0,0.0 -715,5.0,0.0,0.0,0.0,0.0,0.9605339987611708,-13.587957666447169,1.0,0.0,0.0 -715,6.0,13.825807575357096,10.9,0.0,0.0,0.9444244051602936,-17.497191028698676,1.0,0.0,0.0 -715,7.0,18.19185207283828,30.0,1.234172350776538e-08,39.99998962653112,0.962702848380985,-14.127380927499136,0.0,1.0,0.0 -715,8.0,0.0,0.0,0.0,0.0,1.0028776208987848,-15.681554134586536,1.0,0.0,0.0 -715,9.0,3.5170914007487344,2.0,0.0,0.0,0.989239542824445,-16.780622564202844,1.0,0.0,0.0 -715,10.0,0.0,0.0,3.2107135176253704e-08,23.999983198557064,1.0504022388104268,-15.681554130954217,0.0,1.0,0.0 -715,11.0,6.791624773859625,7.5,0.0,0.0,0.9787335504148452,-15.08635564096858,1.0,0.0,0.0 -715,12.0,0.0,0.0,1.6895748839713243e-08,-5.999969964994436,0.9700744646881712,-15.086355639541145,0.0,1.0,0.0 -715,13.0,3.759649428386578,1.6,0.0,0.0,0.9694070373662864,-15.771319966697956,1.0,0.0,0.0 -715,14.0,4.9724395665757966,2.5,0.0,0.0,0.967652828113209,-15.98418077895572,1.0,0.0,0.0 -715,15.0,2.1223827418311325,1.8,0.0,0.0,0.9729929375016292,-15.237743041573417,1.0,0.0,0.0 -715,16.0,5.457555621851485,5.8,0.0,0.0,0.9824472297570286,-16.941710220962893,1.0,0.0,0.0 -715,17.0,1.94046422110275,0.9,0.0,0.0,0.9652783524056374,-16.69006406936874,1.0,0.0,0.0 -715,18.0,5.760753156398789,3.4,0.0,0.0,0.9663983326823916,-16.98967714947473,1.0,0.0,0.0 -715,19.0,1.3340691520081407,0.7,0.0,0.0,0.9714036272439645,-16.97833174211623,1.0,0.0,0.0 -715,20.0,10.611913709155663,11.2,0.0,0.0,0.9775959981168852,-16.961106101780455,1.0,0.0,0.0 -715,21.0,0.0,0.0,0.0,0.0,0.977832407316845,-16.9422364955514,1.0,0.0,0.0 -715,22.0,1.94046422110275,1.6,0.0,0.0,0.9634631024068642,-16.4615010406728,1.0,0.0,0.0 -715,23.0,5.275637101123102,6.7,0.0,0.0,0.9651465269171504,-16.90853303307698,1.0,0.0,0.0 -715,24.0,0.0,0.0,0.0,0.0,0.96354206967082,-16.73052536718434,1.0,0.0,0.0 -715,25.0,2.1223827418311325,2.3,0.0,0.0,0.9486342988835056,-16.869297613113677,1.0,0.0,0.0 -715,26.0,0.0,0.0,0.0,0.0,0.9699970512211136,-16.504613616946465,1.0,0.0,0.0 -715,27.0,0.0,0.0,0.0,0.0,0.9582971272155628,-13.993338217579405,1.0,0.0,0.0 -715,28.0,1.4553481658270626,0.9,0.0,0.0,0.9550651156753942,-17.254774039301346,1.0,0.0,0.0 -715,29.0,6.427787732402859,1.9,0.0,0.0,0.9468302397965064,-17.81241133984232,1.0,0.0,0.0 -716,0.0,0.0,0.0,180.0196837560282,2.15072678777517e-05,1.0,0.0,0.0,0.0,1.0 -716,1.0,13.158772999353022,12.7,4.1468978188504355e-08,12.45398146651128,0.97856988137248,-4.144526754335138,0.0,1.0,0.0 -716,2.0,1.4553481658270626,1.2,0.0,0.0,0.9719151833681486,-5.433230301841045,1.0,0.0,0.0 -716,3.0,4.608602525119031,1.6,0.0,0.0,0.964879486526508,-6.68267845690805,1.0,0.0,0.0 -716,4.0,57.12241550871221,19.0,1.4904084781120883e-11,25.303695730464128,0.956824921766702,-9.977576019039816,0.0,1.0,0.0 -716,5.0,0.0,0.0,0.0,0.0,0.9642549142536584,-7.927689126553564,1.0,0.0,0.0 -716,6.0,13.825807575357096,10.9,0.0,0.0,0.9544756676778564,-9.085469692901404,1.0,0.0,0.0 -716,7.0,18.19185207283828,30.0,1.5769227968823658e-11,31.1501826128508,0.9632463210309342,-8.408680224861325,0.0,1.0,0.0 -716,8.0,0.0,0.0,0.0,0.0,1.0138288963903597,-9.943658156390336,1.0,0.0,0.0 -716,9.0,3.5170914007487344,2.0,0.0,0.0,1.0046477940309546,-10.989791137867766,1.0,0.0,0.0 -716,10.0,0.0,0.0,2.6683455804866707e-11,23.52928473073193,1.0599995863330132,-9.943658156387375,0.0,1.0,0.0 -716,11.0,6.791624773859625,7.5,0.0,0.0,1.012776910364688,-10.47459550310094,1.0,0.0,0.0 -716,12.0,0.0,0.0,1.9603861555507976e-11,11.269602329585936,1.0281227848975556,-10.47459550309943,0.0,1.0,0.0 -716,13.0,3.759649428386578,1.6,0.0,0.0,1.0010658475525362,-11.01098267471616,1.0,0.0,0.0 -716,14.0,4.9724395665757966,2.5,0.0,0.0,0.9974692219017948,-11.046247881167853,1.0,0.0,0.0 -716,15.0,2.1223827418311325,1.8,0.0,0.0,1.002874518664753,-10.82426431134122,1.0,0.0,0.0 -716,16.0,5.457555621851485,5.8,0.0,0.0,0.9996219010905524,-11.051569261765286,1.0,0.0,0.0 -716,17.0,1.94046422110275,0.9,0.0,0.0,0.9903505683697938,-11.42672449351555,1.0,0.0,0.0 -716,18.0,5.760753156398789,3.4,0.0,0.0,0.9885655043647132,-11.540288819463449,1.0,0.0,0.0 -716,19.0,1.3340691520081407,0.7,0.0,0.0,0.9919421215933436,-11.43851443102418,1.0,0.0,0.0 -716,20.0,10.611913709155663,11.2,0.0,0.0,0.9937043000178388,-11.20490566200269,1.0,0.0,0.0 -716,21.0,0.0,0.0,0.0,0.0,0.9940953828660132,-11.199810205462288,1.0,0.0,0.0 -716,22.0,1.94046422110275,1.6,0.0,0.0,0.988437775553948,-11.255630259882594,1.0,0.0,0.0 -716,23.0,5.275637101123102,6.7,0.0,0.0,0.9833920746343872,-11.357949908738563,1.0,0.0,0.0 -716,24.0,0.0,0.0,0.0,0.0,0.9767248599545588,-11.057471082609108,1.0,0.0,0.0 -716,25.0,2.1223827418311325,2.3,0.0,0.0,0.9620246654551894,-11.19246482844073,1.0,0.0,0.0 -716,26.0,0.0,0.0,0.0,0.0,0.9798936759706924,-10.764003733825314,1.0,0.0,0.0 -716,27.0,0.0,0.0,0.0,0.0,0.9620498662084968,-8.326394249635525,1.0,0.0,0.0 -716,28.0,1.4553481658270626,0.9,0.0,0.0,0.965122714726516,-11.498859302712754,1.0,0.0,0.0 -716,29.0,6.427787732402859,1.9,0.0,0.0,0.956976756833023,-12.044846412751673,1.0,0.0,0.0 -717,0.0,0.0,0.0,180.06177739756447,0.0002987655167707,1.0,0.0,0.0,0.0,1.0 -717,1.0,13.158772999353022,12.7,4.616192288233852e-07,11.652237379352648,0.9783950895082478,-4.138838546471579,0.0,1.0,0.0 -717,2.0,1.4553481658270626,1.2,0.0,0.0,0.9724160697845092,-5.451272991213102,1.0,0.0,0.0 -717,3.0,4.608602525119031,1.6,0.0,0.0,0.965500284461595,-6.704772592574395,1.0,0.0,0.0 -717,4.0,57.12241550871221,19.0,1.8657960914192407e-10,25.004394401836763,0.9564545850006788,-9.963235714090027,0.0,1.0,0.0 -717,5.0,0.0,0.0,0.0,0.0,0.9643232188397614,-7.912576979754052,1.0,0.0,0.0 -717,6.0,13.825807575357096,10.9,0.0,0.0,0.9543637268041766,-9.070911761951042,1.0,0.0,0.0 -717,7.0,18.19185207283828,30.0,1.6845758183706108e-10,28.50283477959888,0.962412761868104,-8.364684222555635,0.0,1.0,0.0 -717,8.0,0.0,0.0,0.0,0.0,1.0150046705235458,-10.025240215199217,1.0,0.0,0.0 -717,9.0,3.5170914007487344,2.0,0.0,0.0,1.0070782231279345,-11.11896523848361,1.0,0.0,0.0 -717,10.0,0.0,0.0,2.3663182959210956e-10,22.929855768326885,1.0599991409487133,-10.025240215173003,0.0,1.0,0.0 -717,11.0,6.791624773859625,7.5,0.0,0.0,1.0194870696645604,-10.638577731306317,1.0,0.0,0.0 -717,12.0,0.0,0.0,1.8427173665177368e-10,15.679033878246038,1.0405816633920628,-10.638577731292385,0.0,1.0,0.0 -717,13.0,3.759649428386578,1.6,0.0,0.0,1.007147312065675,-11.189572709989644,1.0,0.0,0.0 -717,14.0,4.9724395665757966,2.5,0.0,0.0,1.002745552807368,-11.229748969948911,1.0,0.0,0.0 -717,15.0,2.1223827418311325,1.8,0.0,0.0,1.0077848771163975,-10.962865734184849,1.0,0.0,0.0 -717,16.0,5.457555621851485,5.8,0.0,0.0,1.0028370686047925,-11.18590209580328,1.0,0.0,0.0 -717,17.0,1.94046422110275,0.9,0.0,0.0,0.994668543307008,-11.587355436131382,1.0,0.0,0.0 -717,18.0,5.760753156398789,3.4,0.0,0.0,0.9923042345579592,-11.688401889528894,1.0,0.0,0.0 -717,19.0,1.3340691520081407,0.7,0.0,0.0,0.9953594994482242,-11.581168179293227,1.0,0.0,0.0 -717,20.0,10.611913709155663,11.2,0.0,0.0,0.9959358127850094,-11.376570362978557,1.0,0.0,0.0 -717,21.0,0.0,0.0,0.0,0.0,0.9962505628483904,-11.38540351494357,1.0,0.0,0.0 -717,22.0,1.94046422110275,1.6,0.0,0.0,0.9918120068081928,-11.51534505652321,1.0,0.0,0.0 -717,23.0,5.275637101123102,6.7,0.0,0.0,0.9842280721554538,-11.723962753892591,1.0,0.0,0.0 -717,24.0,0.0,0.0,0.0,0.0,0.9721299669234252,-11.883510928899591,1.0,0.0,0.0 -717,25.0,2.1223827418311325,2.3,0.0,0.0,0.9573580911747548,-12.019803871780343,1.0,0.0,0.0 -717,26.0,0.0,0.0,0.0,0.0,0.9815426841976512,-10.098898760343562,1.0,0.0,0.0 -717,27.0,0.0,0.0,0.0,0.0,0.96245059476102,-8.238194208675594,1.0,0.0,0.0 -717,28.0,1.4553481658270626,0.9,0.0,0.0,0.966798197637906,-10.831250018462834,1.0,0.0,0.0 -717,29.0,6.427787732402859,1.9,0.0,0.0,0.9586668630647512,-11.375331954731594,1.0,0.0,0.0 -718,0.0,0.0,0.0,136.61748439324865,0.0002047755504719,1.0,0.0,0.0,0.0,1.0 -718,1.0,13.158772999353022,12.7,49.83510482882824,35.281826749851575,0.9952416961977484,-18.02534835045577,0.0,1.0,0.0 -718,2.0,1.4553481658270626,1.2,0.0,0.0,0.9615192578650092,-13.518857142795287,1.0,0.0,0.0 -718,3.0,4.608602525119031,1.6,0.0,0.0,0.9565625819671716,-16.74045630936845,1.0,0.0,0.0 -718,4.0,57.12241550871221,19.0,7.088838214469509e-10,37.40203899009235,0.9736887110005812,-22.78185136386923,0.0,1.0,0.0 -718,5.0,0.0,0.0,0.0,0.0,0.9574837436971386,-19.2399737773559,1.0,0.0,0.0 -718,6.0,13.825807575357096,10.9,0.0,0.0,0.9574765829705706,-21.002502943231903,1.0,0.0,0.0 -718,7.0,18.19185207283828,30.0,-3.3736310003118826e-14,39.99997524533418,0.9595986675849492,-19.77938886039605,0.0,1.0,0.0 -718,8.0,0.0,0.0,0.0,0.0,1.0000873453846688,-21.438020507505104,1.0,0.0,0.0 -718,9.0,3.5170914007487344,2.0,0.0,0.0,0.9866111281844556,-22.591302763785485,1.0,0.0,0.0 -718,10.0,0.0,0.0,7.785779173604573e-11,23.999973493767484,1.0477330184593256,-21.438020507496248,0.0,1.0,0.0 -718,11.0,6.791624773859625,7.5,0.0,0.0,0.9919258036390508,-20.45667213202807,1.0,0.0,0.0 -718,12.0,0.0,0.0,0.0,0.0,0.9919258036390508,-20.45667213202807,0.0,1.0,0.0 -718,13.0,3.759649428386578,1.6,0.0,0.0,0.96093745356131,-21.97324816293063,1.0,0.0,0.0 -718,14.0,4.9724395665757966,2.5,0.0,0.0,0.9729179033631504,-21.72982380145485,1.0,0.0,0.0 -718,15.0,2.1223827418311325,1.8,0.0,0.0,0.9727989316435628,-23.01453079378221,1.0,0.0,0.0 -718,16.0,5.457555621851485,5.8,0.0,0.0,0.9775056665610876,-22.82544728831234,1.0,0.0,0.0 -718,17.0,1.94046422110275,0.9,0.0,0.0,0.967772404883209,-22.45389805207317,1.0,0.0,0.0 -718,18.0,5.760753156398789,3.4,0.0,0.0,0.967248246616276,-22.76638851495132,1.0,0.0,0.0 -718,19.0,1.3340691520081407,0.7,0.0,0.0,0.9713825451907636,-22.762141495472616,1.0,0.0,0.0 -718,20.0,10.611913709155663,11.2,0.0,0.0,0.9756056252680888,-22.780801729987115,1.0,0.0,0.0 -718,21.0,0.0,0.0,0.0,0.0,0.9760523409476144,-22.764757581521344,1.0,0.0,0.0 -718,22.0,1.94046422110275,1.6,0.0,0.0,0.966860755748002,-22.26248116724763,1.0,0.0,0.0 -718,23.0,5.275637101123102,6.7,0.0,0.0,0.9660582283496358,-22.788273674696946,1.0,0.0,0.0 -718,24.0,0.0,0.0,0.0,0.0,0.955844903495786,-22.17621468967745,1.0,0.0,0.0 -718,25.0,2.1223827418311325,2.3,0.0,0.0,0.9408131549571636,-22.31726736234496,1.0,0.0,0.0 -718,26.0,0.0,0.0,0.0,0.0,0.963419782269336,-22.056238399518275,1.0,0.0,0.0 -718,27.0,0.0,0.0,0.0,0.0,0.9549259166044032,-19.62778731353537,1.0,0.0,0.0 -718,28.0,1.4553481658270626,0.9,0.0,0.0,0.9483788443413814,-22.816837985779948,1.0,0.0,0.0 -718,29.0,6.427787732402859,1.9,0.0,0.0,0.9400837547804588,-23.38242849048975,1.0,0.0,0.0 -719,0.0,0.0,0.0,180.0196837560282,2.15072678777517e-05,1.0,0.0,0.0,0.0,1.0 -719,1.0,13.158772999353022,12.7,4.1468978188504355e-08,12.45398146651128,0.97856988137248,-4.144526754335138,0.0,1.0,0.0 -719,2.0,1.4553481658270626,1.2,0.0,0.0,0.9719151833681486,-5.433230301841045,1.0,0.0,0.0 -719,3.0,4.608602525119031,1.6,0.0,0.0,0.964879486526508,-6.68267845690805,1.0,0.0,0.0 -719,4.0,57.12241550871221,19.0,1.4904084781120883e-11,25.303695730464128,0.956824921766702,-9.977576019039816,0.0,1.0,0.0 -719,5.0,0.0,0.0,0.0,0.0,0.9642549142536584,-7.927689126553564,1.0,0.0,0.0 -719,6.0,13.825807575357096,10.9,0.0,0.0,0.9544756676778564,-9.085469692901404,1.0,0.0,0.0 -719,7.0,18.19185207283828,30.0,1.5769227968823658e-11,31.1501826128508,0.9632463210309342,-8.408680224861325,0.0,1.0,0.0 -719,8.0,0.0,0.0,0.0,0.0,1.0138288963903597,-9.943658156390336,1.0,0.0,0.0 -719,9.0,3.5170914007487344,2.0,0.0,0.0,1.0046477940309546,-10.989791137867766,1.0,0.0,0.0 -719,10.0,0.0,0.0,2.6683455804866707e-11,23.52928473073193,1.0599995863330132,-9.943658156387375,0.0,1.0,0.0 -719,11.0,6.791624773859625,7.5,0.0,0.0,1.012776910364688,-10.47459550310094,1.0,0.0,0.0 -719,12.0,0.0,0.0,1.9603861555507976e-11,11.269602329585936,1.0281227848975556,-10.47459550309943,0.0,1.0,0.0 -719,13.0,3.759649428386578,1.6,0.0,0.0,1.0010658475525362,-11.01098267471616,1.0,0.0,0.0 -719,14.0,4.9724395665757966,2.5,0.0,0.0,0.9974692219017948,-11.046247881167853,1.0,0.0,0.0 -719,15.0,2.1223827418311325,1.8,0.0,0.0,1.002874518664753,-10.82426431134122,1.0,0.0,0.0 -719,16.0,5.457555621851485,5.8,0.0,0.0,0.9996219010905524,-11.051569261765286,1.0,0.0,0.0 -719,17.0,1.94046422110275,0.9,0.0,0.0,0.9903505683697938,-11.42672449351555,1.0,0.0,0.0 -719,18.0,5.760753156398789,3.4,0.0,0.0,0.9885655043647132,-11.540288819463449,1.0,0.0,0.0 -719,19.0,1.3340691520081407,0.7,0.0,0.0,0.9919421215933436,-11.43851443102418,1.0,0.0,0.0 -719,20.0,10.611913709155663,11.2,0.0,0.0,0.9937043000178388,-11.20490566200269,1.0,0.0,0.0 -719,21.0,0.0,0.0,0.0,0.0,0.9940953828660132,-11.199810205462288,1.0,0.0,0.0 -719,22.0,1.94046422110275,1.6,0.0,0.0,0.988437775553948,-11.255630259882594,1.0,0.0,0.0 -719,23.0,5.275637101123102,6.7,0.0,0.0,0.9833920746343872,-11.357949908738563,1.0,0.0,0.0 -719,24.0,0.0,0.0,0.0,0.0,0.9767248599545588,-11.057471082609108,1.0,0.0,0.0 -719,25.0,2.1223827418311325,2.3,0.0,0.0,0.9620246654551894,-11.19246482844073,1.0,0.0,0.0 -719,26.0,0.0,0.0,0.0,0.0,0.9798936759706924,-10.764003733825314,1.0,0.0,0.0 -719,27.0,0.0,0.0,0.0,0.0,0.9620498662084968,-8.326394249635525,1.0,0.0,0.0 -719,28.0,1.4553481658270626,0.9,0.0,0.0,0.965122714726516,-11.498859302712754,1.0,0.0,0.0 -719,29.0,6.427787732402859,1.9,0.0,0.0,0.956976756833023,-12.044846412751673,1.0,0.0,0.0 -720,0.0,0.0,0.0,180.105464475273,0.0006280360084431,1.0,0.0,0.0,0.0,1.0 -720,1.0,13.158772999353022,12.7,9.101502076023952e-07,10.92246248983738,0.9783481278693896,-4.137455604119958,0.0,1.0,0.0 -720,2.0,1.4553481658270626,1.2,0.0,0.0,0.9725402044032484,-5.458919096521588,1.0,0.0,0.0 -720,3.0,4.608602525119031,1.6,0.0,0.0,0.9656547780252492,-6.714191357645241,1.0,0.0,0.0 -720,4.0,57.12241550871221,19.0,-9.75065713745263e-10,25.119332781214663,0.9568310991236622,-9.96251799578178,0.0,1.0,0.0 -720,5.0,0.0,0.0,0.0,0.0,0.9648742906431752,-7.914413265096551,1.0,0.0,0.0 -720,6.0,13.825807575357096,10.9,0.0,0.0,0.9548478661341062,-9.07147506459804,1.0,0.0,0.0 -720,7.0,18.19185207283828,30.0,-1.001281141891828e-09,29.79346278878598,0.9633966479827846,-8.385717166329592,0.0,1.0,0.0 -720,8.0,0.0,0.0,0.0,0.0,1.0141670488085932,-9.810837211817962,1.0,0.0,0.0 -720,9.0,3.5170914007487344,2.0,0.0,0.0,1.010126015814362,-10.790243649290378,1.0,0.0,0.0 -720,10.0,0.0,0.0,-1.6089662768495011e-09,18.2013814425157,1.050215712847143,-9.810837211997992,0.0,1.0,0.0 -720,11.0,6.791624773859625,7.5,0.0,0.0,1.018383206062183,-10.736541126554192,1.0,0.0,0.0 -720,12.0,0.0,0.0,-1.3147275224696207e-09,19.43942738984597,1.0444404114773658,-10.73654112665334,0.0,1.0,0.0 -720,13.0,3.759649428386578,1.6,0.0,0.0,1.0065165012098365,-11.21596876105492,1.0,0.0,0.0 -720,14.0,4.9724395665757966,2.5,0.0,0.0,1.003078464687854,-11.195297517997531,1.0,0.0,0.0 -720,15.0,2.1223827418311325,1.8,0.0,0.0,0.9957071736710976,-11.178872602890134,1.0,0.0,0.0 -720,16.0,5.457555621851485,5.8,0.0,0.0,0.9813994398002452,-11.616028793237152,1.0,0.0,0.0 -720,17.0,1.94046422110275,0.9,0.0,0.0,0.9959920061658228,-11.448737863516389,1.0,0.0,0.0 -720,18.0,5.760753156398789,3.4,0.0,0.0,0.9942069925205548,-11.487676135387932,1.0,0.0,0.0 -720,19.0,1.3340691520081407,0.7,0.0,0.0,0.9975625458662544,-11.348424527576826,1.0,0.0,0.0 -720,20.0,10.611913709155663,11.2,0.0,0.0,0.9991370527319688,-11.025456070499784,1.0,0.0,0.0 -720,21.0,0.0,0.0,0.0,0.0,0.9994903008238608,-11.02758960161402,1.0,0.0,0.0 -720,22.0,1.94046422110275,1.6,0.0,0.0,0.9937247082290674,-11.306292349222009,1.0,0.0,0.0 -720,23.0,5.275637101123102,6.7,0.0,0.0,0.9881931405861196,-11.277639403976831,1.0,0.0,0.0 -720,24.0,0.0,0.0,0.0,0.0,0.97997211920795,-10.979917029484836,1.0,0.0,0.0 -720,25.0,2.1223827418311325,2.3,0.0,0.0,0.9653221579940212,-11.11400385124502,1.0,0.0,0.0 -720,26.0,0.0,0.0,0.0,0.0,0.9821514084285168,-10.690436099154464,1.0,0.0,0.0 -720,27.0,0.0,0.0,0.0,0.0,0.9627777647737504,-8.308022440001052,1.0,0.0,0.0 -720,28.0,1.4553481658270626,0.9,0.0,0.0,0.9674166701612495,-11.421866154383087,1.0,0.0,0.0 -720,29.0,6.427787732402859,1.9,0.0,0.0,0.9592907200258224,-11.965247358251991,1.0,0.0,0.0 -721,0.0,0.0,0.0,180.69749366791345,0.0018183812354521,1.0,0.0,0.0,0.0,1.0 -721,1.0,13.158772999353022,12.7,4.030519256274492e-06,16.735251369528143,0.9784369662977735,-4.376352994197589,0.0,1.0,0.0 -721,2.0,1.4553481658270626,1.2,0.0,0.0,0.9712938928541652,-4.84103015609947,1.0,0.0,0.0 -721,3.0,4.608602525119031,1.6,0.0,0.0,0.964011881498755,-5.947068306257836,1.0,0.0,0.0 -721,4.0,57.12241550871221,19.0,-6.5970486872839965e-09,39.99959452351055,0.9591826048223752,-13.409715046889817,0.0,1.0,0.0 -721,5.0,0.0,0.0,0.0,0.0,0.9640636401252548,-6.868080578725803,1.0,0.0,0.0 -721,6.0,13.825807575357096,10.9,0.0,0.0,0.9400007538961308,-14.136615133201008,1.0,0.0,0.0 -721,7.0,18.19185207283828,30.0,-2.7619515294793592e-09,28.520229385996416,0.9619931196779082,-7.3339692985909934,0.0,1.0,0.0 -721,8.0,0.0,0.0,0.0,0.0,1.0040608935107205,-8.957930109473805,1.0,0.0,0.0 -721,9.0,3.5170914007487344,2.0,0.0,0.0,0.9957319111895314,-10.0518836446118,1.0,0.0,0.0 -721,10.0,0.0,0.0,-2.4104731650307163e-09,17.514629951449752,1.0391198245765958,-8.95793010974914,0.0,1.0,0.0 -721,11.0,6.791624773859625,7.5,0.0,0.0,1.0010808174966617,-9.619116350299192,1.0,0.0,0.0 -721,12.0,0.0,0.0,-1.9989574454042593e-09,5.99872128658701,1.0094008125833784,-9.619116350457874,0.0,1.0,0.0 -721,13.0,3.759649428386578,1.6,0.0,0.0,0.9896578371566256,-10.151871744458855,1.0,0.0,0.0 -721,14.0,4.9724395665757966,2.5,0.0,0.0,0.9865408785625948,-10.181725201647383,1.0,0.0,0.0 -721,15.0,2.1223827418311325,1.8,0.0,0.0,0.9923754828366556,-9.942377635381208,1.0,0.0,0.0 -721,16.0,5.457555621851485,5.8,0.0,0.0,0.990147860677301,-10.13137914071986,1.0,0.0,0.0 -721,17.0,1.94046422110275,0.9,0.0,0.0,0.9800358602565152,-10.545004864529188,1.0,0.0,0.0 -721,18.0,5.760753156398789,3.4,0.0,0.0,0.9786385875255392,-10.64579834557266,1.0,0.0,0.0 -721,19.0,1.3340691520081407,0.7,0.0,0.0,0.98226418950203,-10.534070572974713,1.0,0.0,0.0 -721,20.0,10.611913709155663,11.2,0.0,0.0,0.984806779212783,-10.272621633275795,1.0,0.0,0.0 -721,21.0,0.0,0.0,0.0,0.0,0.9852385808840616,-10.268040172426351,1.0,0.0,0.0 -721,22.0,1.94046422110275,1.6,0.0,0.0,0.9785334647197108,-10.370439188618654,1.0,0.0,0.0 -721,23.0,5.275637101123102,6.7,0.0,0.0,0.9749184270825134,-10.440352375472468,1.0,0.0,0.0 -721,24.0,0.0,0.0,0.0,0.0,0.9712066127162652,-10.125231049693936,1.0,0.0,0.0 -721,25.0,2.1223827418311325,2.3,0.0,0.0,0.956420246640219,-10.261787340808151,1.0,0.0,0.0 -721,26.0,0.0,0.0,0.0,0.0,0.9762501108660456,-9.81849578167919,1.0,0.0,0.0 -721,27.0,0.0,0.0,0.0,0.0,0.961209321777121,-7.270167791190377,1.0,0.0,0.0 -721,28.0,1.4553481658270626,0.9,0.0,0.0,0.9614203031918682,-10.558930765462234,1.0,0.0,0.0 -721,29.0,6.427787732402859,1.9,0.0,0.0,0.9532418408029422,-11.109163600575268,1.0,0.0,0.0 -722,0.0,0.0,0.0,180.05876839746065,0.0009537109668222,1.0,0.0,0.0,0.0,1.0 -722,1.0,13.158772999353022,12.7,1.2262708612047724e-06,13.561030019216702,0.9783703711100524,-4.233045021627261,0.0,1.0,0.0 -722,2.0,1.4553481658270626,1.2,0.0,0.0,0.9721451769754916,-5.183574267532014,1.0,0.0,0.0 -722,3.0,4.608602525119031,1.6,0.0,0.0,0.9651160914889348,-6.372325077213195,1.0,0.0,0.0 -722,4.0,57.12241550871221,19.0,-1.981654263738903e-09,24.253855509584756,0.9574431265672428,-11.387053624995648,0.0,1.0,0.0 -722,5.0,0.0,0.0,0.0,0.0,0.9637585342746292,-7.484155733642629,1.0,0.0,0.0 -722,6.0,13.825807575357096,10.9,0.0,0.0,0.9510998877572124,-8.023733595702433,1.0,0.0,0.0 -722,7.0,18.19185207283828,30.0,-8.60175580118637e-10,33.111954727892254,0.9634837270005376,-7.978607455679359,0.0,1.0,0.0 -722,8.0,0.0,0.0,0.0,0.0,1.012882342825134,-9.59572648452694,1.0,0.0,0.0 -722,9.0,3.5170914007487344,2.0,0.0,0.0,1.0030485952927368,-10.692635512212972,1.0,0.0,0.0 -722,10.0,0.0,0.0,-1.6511281278205046e-09,23.978855157106963,1.059937945412665,-9.59572648471022,0.0,1.0,0.0 -722,11.0,6.791624773859625,7.5,0.0,0.0,1.0152432734756822,-9.968112719723614,1.0,0.0,0.0 -722,12.0,0.0,0.0,-1.3892050833200234e-09,11.395587282592595,1.0307215777434142,-9.968112719830106,0.0,1.0,0.0 -722,13.0,3.759649428386578,1.6,0.0,0.0,1.0031340590173876,-10.53009540634196,1.0,0.0,0.0 -722,14.0,4.9724395665757966,2.5,0.0,0.0,0.9989427029222554,-10.583371473376957,1.0,0.0,0.0 -722,15.0,2.1223827418311325,1.8,0.0,0.0,1.0097116549024867,-10.108748664912072,1.0,0.0,0.0 -722,16.0,5.457555621851485,5.8,0.0,0.0,0.9963511741585616,-10.849288442312726,1.0,0.0,0.0 -722,17.0,1.94046422110275,0.9,0.0,0.0,0.990728831475998,-11.021283902863564,1.0,0.0,0.0 -722,18.0,5.760753156398789,3.4,0.0,0.0,0.9882982664029368,-11.169527304613368,1.0,0.0,0.0 -722,19.0,1.3340691520081407,0.7,0.0,0.0,0.9913344222827214,-11.08586467762282,1.0,0.0,0.0 -722,20.0,10.611913709155663,11.2,0.0,0.0,0.9922813392790096,-10.89535121468801,1.0,0.0,0.0 -722,21.0,0.0,0.0,0.0,0.0,0.9927354229515958,-10.886120838378956,1.0,0.0,0.0 -722,22.0,1.94046422110275,1.6,0.0,0.0,0.9890873262953144,-10.834594928434708,1.0,0.0,0.0 -722,23.0,5.275637101123102,6.7,0.0,0.0,0.982949501673912,-10.99451337785186,1.0,0.0,0.0 -722,24.0,0.0,0.0,0.0,0.0,0.9764022914406272,-10.666983020069605,1.0,0.0,0.0 -722,25.0,2.1223827418311325,2.3,0.0,0.0,0.9616970878780572,-10.80206736080817,1.0,0.0,0.0 -722,26.0,0.0,0.0,0.0,0.0,0.9796404383992902,-10.356473340324294,1.0,0.0,0.0 -722,27.0,0.0,0.0,0.0,0.0,0.961713195842586,-7.889502296784035,1.0,0.0,0.0 -722,28.0,1.4553481658270626,0.9,0.0,0.0,0.9648654027591916,-11.09171463937263,1.0,0.0,0.0 -722,29.0,6.427787732402859,1.9,0.0,0.0,0.9567171943541306,-11.637995224785053,1.0,0.0,0.0 -723,0.0,0.0,0.0,180.0196837560282,2.15072678777517e-05,1.0,0.0,0.0,0.0,1.0 -723,1.0,13.158772999353022,12.7,4.1468978188504355e-08,12.45398146651128,0.97856988137248,-4.144526754335138,0.0,1.0,0.0 -723,2.0,1.4553481658270626,1.2,0.0,0.0,0.9719151833681486,-5.433230301841045,1.0,0.0,0.0 -723,3.0,4.608602525119031,1.6,0.0,0.0,0.964879486526508,-6.68267845690805,1.0,0.0,0.0 -723,4.0,57.12241550871221,19.0,1.4904084781120883e-11,25.303695730464128,0.956824921766702,-9.977576019039816,0.0,1.0,0.0 -723,5.0,0.0,0.0,0.0,0.0,0.9642549142536584,-7.927689126553564,1.0,0.0,0.0 -723,6.0,13.825807575357096,10.9,0.0,0.0,0.9544756676778564,-9.085469692901404,1.0,0.0,0.0 -723,7.0,18.19185207283828,30.0,1.5769227968823658e-11,31.1501826128508,0.9632463210309342,-8.408680224861325,0.0,1.0,0.0 -723,8.0,0.0,0.0,0.0,0.0,1.0138288963903597,-9.943658156390336,1.0,0.0,0.0 -723,9.0,3.5170914007487344,2.0,0.0,0.0,1.0046477940309546,-10.989791137867766,1.0,0.0,0.0 -723,10.0,0.0,0.0,2.6683455804866707e-11,23.52928473073193,1.0599995863330132,-9.943658156387375,0.0,1.0,0.0 -723,11.0,6.791624773859625,7.5,0.0,0.0,1.012776910364688,-10.47459550310094,1.0,0.0,0.0 -723,12.0,0.0,0.0,1.9603861555507976e-11,11.269602329585936,1.0281227848975556,-10.47459550309943,0.0,1.0,0.0 -723,13.0,3.759649428386578,1.6,0.0,0.0,1.0010658475525362,-11.01098267471616,1.0,0.0,0.0 -723,14.0,4.9724395665757966,2.5,0.0,0.0,0.9974692219017948,-11.046247881167853,1.0,0.0,0.0 -723,15.0,2.1223827418311325,1.8,0.0,0.0,1.002874518664753,-10.82426431134122,1.0,0.0,0.0 -723,16.0,5.457555621851485,5.8,0.0,0.0,0.9996219010905524,-11.051569261765286,1.0,0.0,0.0 -723,17.0,1.94046422110275,0.9,0.0,0.0,0.9903505683697938,-11.42672449351555,1.0,0.0,0.0 -723,18.0,5.760753156398789,3.4,0.0,0.0,0.9885655043647132,-11.540288819463449,1.0,0.0,0.0 -723,19.0,1.3340691520081407,0.7,0.0,0.0,0.9919421215933436,-11.43851443102418,1.0,0.0,0.0 -723,20.0,10.611913709155663,11.2,0.0,0.0,0.9937043000178388,-11.20490566200269,1.0,0.0,0.0 -723,21.0,0.0,0.0,0.0,0.0,0.9940953828660132,-11.199810205462288,1.0,0.0,0.0 -723,22.0,1.94046422110275,1.6,0.0,0.0,0.988437775553948,-11.255630259882594,1.0,0.0,0.0 -723,23.0,5.275637101123102,6.7,0.0,0.0,0.9833920746343872,-11.357949908738563,1.0,0.0,0.0 -723,24.0,0.0,0.0,0.0,0.0,0.9767248599545588,-11.057471082609108,1.0,0.0,0.0 -723,25.0,2.1223827418311325,2.3,0.0,0.0,0.9620246654551894,-11.19246482844073,1.0,0.0,0.0 -723,26.0,0.0,0.0,0.0,0.0,0.9798936759706924,-10.764003733825314,1.0,0.0,0.0 -723,27.0,0.0,0.0,0.0,0.0,0.9620498662084968,-8.326394249635525,1.0,0.0,0.0 -723,28.0,1.4553481658270626,0.9,0.0,0.0,0.965122714726516,-11.498859302712754,1.0,0.0,0.0 -723,29.0,6.427787732402859,1.9,0.0,0.0,0.956976756833023,-12.044846412751673,1.0,0.0,0.0 -724,0.0,0.0,0.0,180.5447539334483,1.1539572689212465,1.0,0.0,0.0,0.0,1.0 -724,1.0,13.158772999353022,12.7,0.0,0.0,0.976958809166611,-4.125436964465544,0.0,1.0,0.0 -724,2.0,1.4553481658270626,1.2,0.0,0.0,0.9744241164787084,-5.4985465311923765,1.0,0.0,0.0 -724,3.0,4.608602525119031,1.6,0.0,0.0,0.9679841950543694,-6.762176808354743,1.0,0.0,0.0 -724,4.0,57.12241550871221,19.0,-1.3268938470000246e-10,31.91516902202656,0.9644957278450256,-10.075716777855869,0.0,1.0,0.0 -724,5.0,0.0,0.0,0.0,0.0,0.9675303548351848,-7.976357320825754,1.0,0.0,0.0 -724,6.0,13.825807575357096,10.9,0.0,0.0,0.9596019076460308,-9.149443139297324,1.0,0.0,0.0 -724,7.0,18.19185207283828,30.0,2.300707628294798e-09,32.241830918256056,0.9587314788199714,-11.494242344470395,0.0,1.0,0.0 -724,8.0,0.0,0.0,0.0,0.0,1.019882619112286,-9.842367127426536,1.0,0.0,0.0 -724,9.0,3.5170914007487344,2.0,0.0,0.0,1.0152648776131732,-10.80383164093858,1.0,0.0,0.0 -724,10.0,0.0,0.0,2.4805386018886613e-10,20.44286417903306,1.059997030991911,-9.842367127399196,0.0,1.0,0.0 -724,11.0,6.791624773859625,7.5,0.0,0.0,1.0265362301144851,-10.68415226295709,1.0,0.0,0.0 -724,12.0,0.0,0.0,-5.95290563037424e-10,19.9785036903039,1.0530959238081814,-10.684152263001264,0.0,1.0,0.0 -724,13.0,3.759649428386578,1.6,0.0,0.0,1.012864839115885,-11.251267922514378,1.0,0.0,0.0 -724,14.0,4.9724395665757966,2.5,0.0,0.0,1.00696701893373,-11.282277130159123,1.0,0.0,0.0 -724,15.0,2.1223827418311325,1.8,0.0,0.0,1.015611694822322,-10.854637228669027,1.0,0.0,0.0 -724,16.0,5.457555621851485,5.8,0.0,0.0,1.010869752151749,-10.933071105601838,1.0,0.0,0.0 -724,17.0,1.94046422110275,0.9,0.0,0.0,1.000368247844747,-11.506544887401354,1.0,0.0,0.0 -724,18.0,5.760753156398789,3.4,0.0,0.0,0.9988608843792371,-11.5290053867889,1.0,0.0,0.0 -724,19.0,1.3340691520081407,0.7,0.0,0.0,1.0023437674682,-11.382609651082984,1.0,0.0,0.0 -724,20.0,10.611913709155663,11.2,0.0,0.0,1.006844120954764,-10.960347598683931,1.0,0.0,0.0 -724,21.0,0.0,0.0,0.0,0.0,1.0079933561057814,-10.939153949408452,1.0,0.0,0.0 -724,22.0,1.94046422110275,1.6,0.0,0.0,0.9891739153658212,-11.730975601677606,1.0,0.0,0.0 -724,23.0,5.275637101123102,6.7,0.0,0.0,0.972528055093888,-12.171100617410444,1.0,0.0,0.0 -724,24.0,0.0,0.0,0.0,0.0,0.970121787268524,-11.902199718734046,1.0,0.0,0.0 -724,25.0,2.1223827418311325,2.3,0.0,0.0,0.9553183599630036,-12.039066394892702,1.0,0.0,0.0 -724,26.0,0.0,0.0,0.0,0.0,0.975997856557594,-11.622531302478995,1.0,0.0,0.0 -724,27.0,0.0,0.0,0.0,0.0,0.962881826467144,-9.06919363817114,1.0,0.0,0.0 -724,28.0,1.4553481658270626,0.9,0.0,0.0,0.9688291034263248,-11.868897119735792,1.0,0.0,0.0 -724,29.0,6.427787732402859,1.9,0.0,0.0,0.9413523453216333,-13.65949071410074,1.0,0.0,0.0 -725,0.0,0.0,0.0,180.02536778495127,2.566888888111407e-05,1.0,0.0,0.0,0.0,1.0 -725,1.0,13.158772999353022,12.7,4.650294260712149e-08,12.277176428685763,0.9785200014009604,-4.144525368651206,0.0,1.0,0.0 -725,2.0,1.4553481658270626,1.2,0.0,0.0,0.9720540136041902,-5.43315477285727,1.0,0.0,0.0 -725,3.0,4.608602525119031,1.6,0.0,0.0,0.9650505408544672,-6.682495255186415,1.0,0.0,0.0 -725,4.0,57.12241550871221,19.0,3.0372052384094e-11,25.30796271384321,0.9567616166989252,-9.980280540518018,0.0,1.0,0.0 -725,5.0,0.0,0.0,0.0,0.0,0.9641712836973368,-7.931952478221927,1.0,0.0,0.0 -725,6.0,13.825807575357096,10.9,0.0,0.0,0.9543994358494652,-9.089138645734208,1.0,0.0,0.0 -725,7.0,18.19185207283828,30.0,3.0592303475393454e-11,31.19758824397948,0.9631421972386328,-8.414055865422664,0.0,1.0,0.0 -725,8.0,0.0,0.0,0.0,0.0,1.013555354412265,-9.959272907959626,1.0,0.0,0.0 -725,9.0,3.5170914007487344,2.0,0.0,0.0,1.0041357589478643,-11.011739816123784,1.0,0.0,0.0 -725,10.0,0.0,0.0,5.142253387018176e-11,23.668641415025206,1.059999502749644,-9.95927290795392,0.0,1.0,0.0 -725,11.0,6.791624773859625,7.5,0.0,0.0,1.0146008953757053,-10.414876880473134,1.0,0.0,0.0 -725,12.0,0.0,0.0,3.646308797997829e-11,11.304642989980556,1.0299669229952595,-10.414876880470333,0.0,1.0,0.0 -725,13.0,3.759649428386578,1.6,0.0,0.0,1.0035525873520788,-10.932832999454265,1.0,0.0,0.0 -725,14.0,4.9724395665757966,2.5,0.0,0.0,1.0006908581941552,-10.96632901090958,1.0,0.0,0.0 -725,15.0,2.1223827418311325,1.8,0.0,0.0,1.003636671715225,-10.794229521884516,1.0,0.0,0.0 -725,16.0,5.457555621851485,5.8,0.0,0.0,0.99952576107001,-11.05885114065569,1.0,0.0,0.0 -725,17.0,1.94046422110275,0.9,0.0,0.0,0.9922642959956276,-11.38051241169865,1.0,0.0,0.0 -725,18.0,5.760753156398789,3.4,0.0,0.0,0.9897023305176216,-11.5149511476267,1.0,0.0,0.0 -725,19.0,1.3340691520081407,0.7,0.0,0.0,0.9926634606419794,-11.424454498083785,1.0,0.0,0.0 -725,20.0,10.611913709155663,11.2,0.0,0.0,0.9925225010763472,-11.242278433788428,1.0,0.0,0.0 -725,21.0,0.0,0.0,0.0,0.0,0.9927034809072102,-11.241754449626685,1.0,0.0,0.0 -725,22.0,1.94046422110275,1.6,0.0,0.0,0.9954922591230002,-11.099749980007095,1.0,0.0,0.0 -725,23.0,5.275637101123102,6.7,0.0,0.0,0.9790736275505144,-11.444591196715674,1.0,0.0,0.0 -725,24.0,0.0,0.0,0.0,0.0,0.973973760400866,-11.134089544035987,1.0,0.0,0.0 -725,25.0,2.1223827418311325,2.3,0.0,0.0,0.9592307333248808,-11.26985890123972,1.0,0.0,0.0 -725,26.0,0.0,0.0,0.0,0.0,0.9781346499099852,-10.83221694964318,1.0,0.0,0.0 -725,27.0,0.0,0.0,0.0,0.0,0.9617485763619495,-8.33462322289957,1.0,0.0,0.0 -725,28.0,1.4553481658270626,0.9,0.0,0.0,0.9633353393083662,-11.569758178477622,1.0,0.0,0.0 -725,29.0,6.427787732402859,1.9,0.0,0.0,0.9551737224302658,-12.11778877785783,1.0,0.0,0.0 -726,0.0,0.0,0.0,179.18619251973843,0.0013321339123351,1.0,0.0,0.0,0.0,1.0 -726,1.0,13.100593285339585,12.7,1.4739366576137775e-06,12.319355308524436,0.97864053872689,-4.124634859804846,0.0,1.0,0.0 -726,2.0,1.4489135430790323,1.2,0.0,0.0,0.9720333842642624,-5.407632014666465,1.0,0.0,0.0 -726,3.0,4.588226219750269,1.6,0.0,0.0,0.9650192642492544,-6.650945715844487,1.0,0.0,0.0 -726,4.0,56.869856565852025,19.0,-1.211451309984867e-10,25.253163936708333,0.9569900818752858,-9.929911425484828,0.0,1.0,0.0 -726,5.0,0.0,0.0,0.0,0.0,0.9644071062619288,-7.890160599846635,1.0,0.0,0.0 -726,6.0,13.764678659250809,10.9,0.0,0.0,0.9546447559812848,-9.041876518098686,1.0,0.0,0.0 -726,7.0,18.111419288487905,30.0,-1.2801216156835384e-10,31.12918765425788,0.963401514620192,-8.368826828297593,0.0,1.0,0.0 -726,8.0,0.0,0.0,0.0,0.0,1.013931830094881,-9.896685008122551,1.0,0.0,0.0 -726,9.0,3.501541062440995,2.0,0.0,0.0,1.0047725993261851,-10.937953415795098,1.0,0.0,0.0 -726,10.0,0.0,0.0,-2.209025378433202e-10,23.477034108303148,1.059999973641628,-9.896685008147047,0.0,1.0,0.0 -726,11.0,6.7615965343688185,7.5,0.0,0.0,1.0128761368509132,-10.425319107779153,1.0,0.0,0.0 -726,12.0,0.0,0.0,-1.5962589724337587e-10,11.233687052072746,1.0281723676845809,-10.425319107791449,0.0,1.0,0.0 -726,13.0,3.743026652954168,1.6,0.0,0.0,1.0011926397121749,-10.958605813319812,1.0,0.0,0.0 -726,14.0,4.950454605520028,2.5,0.0,0.0,0.9976054992155422,-10.993410443487406,1.0,0.0,0.0 -726,15.0,2.1129989169902554,1.8,0.0,0.0,1.0029957907245828,-10.772813711363373,1.0,0.0,0.0 -726,16.0,5.433425786546372,5.8,0.0,0.0,0.9997510275767644,-10.99900876670888,1.0,0.0,0.0 -726,17.0,1.9318847241053767,0.9,0.0,0.0,0.990504437149278,-11.371742561818683,1.0,0.0,0.0 -726,18.0,5.735282774687837,3.4,0.0,0.0,0.988723773803829,-11.484706322040424,1.0,0.0,0.0 -726,19.0,1.3281707478224465,0.7,0.0,0.0,0.9920932517120836,-11.38367854264764,1.0,0.0,0.0 -726,20.0,10.56499458495128,11.2,0.0,0.0,0.9938473937012552,-11.151250469441948,1.0,0.0,0.0 -726,21.0,0.0,0.0,0.0,0.0,0.9942384417590636,-11.14623908956745,1.0,0.0,0.0 -726,22.0,1.9318847241053767,1.6,0.0,0.0,0.9885935669945136,-11.201286252655418,1.0,0.0,0.0 -726,23.0,5.252311593661492,6.7,0.0,0.0,0.9835610173845832,-11.302976089451311,1.0,0.0,0.0 -726,24.0,0.0,0.0,0.0,0.0,0.976902217466734,-11.003741645177376,1.0,0.0,0.0 -726,25.0,2.1129989169902554,2.3,0.0,0.0,0.9622300579415632,-11.136508584607943,1.0,0.0,0.0 -726,26.0,0.0,0.0,0.0,0.0,0.9800641313227292,-10.712253100231711,1.0,0.0,0.0 -726,27.0,0.0,0.0,0.0,0.0,0.962211431755406,-8.286874867557746,1.0,0.0,0.0 -726,28.0,1.4489135430790323,0.9,0.0,0.0,0.9653359445194848,-11.442731097769933,1.0,0.0,0.0 -726,29.0,6.39936814859906,1.9,0.0,0.0,0.9572174512361106,-11.985701241624946,1.0,0.0,0.0 -727,0.0,0.0,0.0,179.18619251973843,0.0013321339123351,1.0,0.0,0.0,0.0,1.0 -727,1.0,13.100593285339585,12.7,1.4739366576137775e-06,12.319355308524436,0.97864053872689,-4.124634859804846,0.0,1.0,0.0 -727,2.0,1.4489135430790323,1.2,0.0,0.0,0.9720333842642624,-5.407632014666465,1.0,0.0,0.0 -727,3.0,4.588226219750269,1.6,0.0,0.0,0.9650192642492544,-6.650945715844487,1.0,0.0,0.0 -727,4.0,56.869856565852025,19.0,-1.211451309984867e-10,25.253163936708333,0.9569900818752858,-9.929911425484828,0.0,1.0,0.0 -727,5.0,0.0,0.0,0.0,0.0,0.9644071062619288,-7.890160599846635,1.0,0.0,0.0 -727,6.0,13.764678659250809,10.9,0.0,0.0,0.9546447559812848,-9.041876518098686,1.0,0.0,0.0 -727,7.0,18.111419288487905,30.0,-1.2801216156835384e-10,31.12918765425788,0.963401514620192,-8.368826828297593,0.0,1.0,0.0 -727,8.0,0.0,0.0,0.0,0.0,1.013931830094881,-9.896685008122551,1.0,0.0,0.0 -727,9.0,3.501541062440995,2.0,0.0,0.0,1.0047725993261851,-10.937953415795098,1.0,0.0,0.0 -727,10.0,0.0,0.0,-2.209025378433202e-10,23.477034108303148,1.059999973641628,-9.896685008147047,0.0,1.0,0.0 -727,11.0,6.7615965343688185,7.5,0.0,0.0,1.0128761368509132,-10.425319107779153,1.0,0.0,0.0 -727,12.0,0.0,0.0,-1.5962589724337587e-10,11.233687052072746,1.0281723676845809,-10.425319107791449,0.0,1.0,0.0 -727,13.0,3.743026652954168,1.6,0.0,0.0,1.0011926397121749,-10.958605813319812,1.0,0.0,0.0 -727,14.0,4.950454605520028,2.5,0.0,0.0,0.9976054992155422,-10.993410443487406,1.0,0.0,0.0 -727,15.0,2.1129989169902554,1.8,0.0,0.0,1.0029957907245828,-10.772813711363373,1.0,0.0,0.0 -727,16.0,5.433425786546372,5.8,0.0,0.0,0.9997510275767644,-10.99900876670888,1.0,0.0,0.0 -727,17.0,1.9318847241053767,0.9,0.0,0.0,0.990504437149278,-11.371742561818683,1.0,0.0,0.0 -727,18.0,5.735282774687837,3.4,0.0,0.0,0.988723773803829,-11.484706322040424,1.0,0.0,0.0 -727,19.0,1.3281707478224465,0.7,0.0,0.0,0.9920932517120836,-11.38367854264764,1.0,0.0,0.0 -727,20.0,10.56499458495128,11.2,0.0,0.0,0.9938473937012552,-11.151250469441948,1.0,0.0,0.0 -727,21.0,0.0,0.0,0.0,0.0,0.9942384417590636,-11.14623908956745,1.0,0.0,0.0 -727,22.0,1.9318847241053767,1.6,0.0,0.0,0.9885935669945136,-11.201286252655418,1.0,0.0,0.0 -727,23.0,5.252311593661492,6.7,0.0,0.0,0.9835610173845832,-11.302976089451311,1.0,0.0,0.0 -727,24.0,0.0,0.0,0.0,0.0,0.976902217466734,-11.003741645177376,1.0,0.0,0.0 -727,25.0,2.1129989169902554,2.3,0.0,0.0,0.9622300579415632,-11.136508584607943,1.0,0.0,0.0 -727,26.0,0.0,0.0,0.0,0.0,0.9800641313227292,-10.712253100231711,1.0,0.0,0.0 -727,27.0,0.0,0.0,0.0,0.0,0.962211431755406,-8.286874867557746,1.0,0.0,0.0 -727,28.0,1.4489135430790323,0.9,0.0,0.0,0.9653359445194848,-11.442731097769933,1.0,0.0,0.0 -727,29.0,6.39936814859906,1.9,0.0,0.0,0.9572174512361106,-11.985701241624946,1.0,0.0,0.0 -728,0.0,0.0,0.0,179.18619251973843,0.0013321339123351,1.0,0.0,0.0,0.0,1.0 -728,1.0,13.100593285339585,12.7,1.4739366576137775e-06,12.319355308524436,0.97864053872689,-4.124634859804846,0.0,1.0,0.0 -728,2.0,1.4489135430790323,1.2,0.0,0.0,0.9720333842642624,-5.407632014666465,1.0,0.0,0.0 -728,3.0,4.588226219750269,1.6,0.0,0.0,0.9650192642492544,-6.650945715844487,1.0,0.0,0.0 -728,4.0,56.869856565852025,19.0,-1.211451309984867e-10,25.253163936708333,0.9569900818752858,-9.929911425484828,0.0,1.0,0.0 -728,5.0,0.0,0.0,0.0,0.0,0.9644071062619288,-7.890160599846635,1.0,0.0,0.0 -728,6.0,13.764678659250809,10.9,0.0,0.0,0.9546447559812848,-9.041876518098686,1.0,0.0,0.0 -728,7.0,18.111419288487905,30.0,-1.2801216156835384e-10,31.12918765425788,0.963401514620192,-8.368826828297593,0.0,1.0,0.0 -728,8.0,0.0,0.0,0.0,0.0,1.013931830094881,-9.896685008122551,1.0,0.0,0.0 -728,9.0,3.501541062440995,2.0,0.0,0.0,1.0047725993261851,-10.937953415795098,1.0,0.0,0.0 -728,10.0,0.0,0.0,-2.209025378433202e-10,23.477034108303148,1.059999973641628,-9.896685008147047,0.0,1.0,0.0 -728,11.0,6.7615965343688185,7.5,0.0,0.0,1.0128761368509132,-10.425319107779153,1.0,0.0,0.0 -728,12.0,0.0,0.0,-1.5962589724337587e-10,11.233687052072746,1.0281723676845809,-10.425319107791449,0.0,1.0,0.0 -728,13.0,3.743026652954168,1.6,0.0,0.0,1.0011926397121749,-10.958605813319812,1.0,0.0,0.0 -728,14.0,4.950454605520028,2.5,0.0,0.0,0.9976054992155422,-10.993410443487406,1.0,0.0,0.0 -728,15.0,2.1129989169902554,1.8,0.0,0.0,1.0029957907245828,-10.772813711363373,1.0,0.0,0.0 -728,16.0,5.433425786546372,5.8,0.0,0.0,0.9997510275767644,-10.99900876670888,1.0,0.0,0.0 -728,17.0,1.9318847241053767,0.9,0.0,0.0,0.990504437149278,-11.371742561818683,1.0,0.0,0.0 -728,18.0,5.735282774687837,3.4,0.0,0.0,0.988723773803829,-11.484706322040424,1.0,0.0,0.0 -728,19.0,1.3281707478224465,0.7,0.0,0.0,0.9920932517120836,-11.38367854264764,1.0,0.0,0.0 -728,20.0,10.56499458495128,11.2,0.0,0.0,0.9938473937012552,-11.151250469441948,1.0,0.0,0.0 -728,21.0,0.0,0.0,0.0,0.0,0.9942384417590636,-11.14623908956745,1.0,0.0,0.0 -728,22.0,1.9318847241053767,1.6,0.0,0.0,0.9885935669945136,-11.201286252655418,1.0,0.0,0.0 -728,23.0,5.252311593661492,6.7,0.0,0.0,0.9835610173845832,-11.302976089451311,1.0,0.0,0.0 -728,24.0,0.0,0.0,0.0,0.0,0.976902217466734,-11.003741645177376,1.0,0.0,0.0 -728,25.0,2.1129989169902554,2.3,0.0,0.0,0.9622300579415632,-11.136508584607943,1.0,0.0,0.0 -728,26.0,0.0,0.0,0.0,0.0,0.9800641313227292,-10.712253100231711,1.0,0.0,0.0 -728,27.0,0.0,0.0,0.0,0.0,0.962211431755406,-8.286874867557746,1.0,0.0,0.0 -728,28.0,1.4489135430790323,0.9,0.0,0.0,0.9653359445194848,-11.442731097769933,1.0,0.0,0.0 -728,29.0,6.39936814859906,1.9,0.0,0.0,0.9572174512361106,-11.985701241624946,1.0,0.0,0.0 -729,0.0,0.0,0.0,180.5686219250969,0.0003634805838537,1.0,0.0,0.0,0.0,1.0 -729,1.0,13.100593285339585,12.7,1.2244613163793091e-06,12.294221121810589,0.976911855390584,-4.6286061545707,0.0,1.0,0.0 -729,2.0,1.4489135430790323,1.2,0.0,0.0,0.9749762150467371,-4.099488504830569,1.0,0.0,0.0 -729,3.0,4.588226219750269,1.6,0.0,0.0,0.968464712771651,-5.024645254983762,1.0,0.0,0.0 -729,4.0,56.869856565852025,19.0,6.804794508035017e-10,27.236782090350506,0.9563170531707368,-11.75865148595038,0.0,1.0,0.0 -729,5.0,0.0,0.0,0.0,0.0,0.9602656187927436,-11.014707922116866,1.0,0.0,0.0 -729,6.0,13.764678659250809,10.9,0.0,0.0,0.9516907196332516,-11.638693992389635,1.0,0.0,0.0 -729,7.0,18.111419288487905,30.0,4.6175143182282513e-10,26.610306764509303,0.9576045612075672,-11.455743315661902,0.0,1.0,0.0 -729,8.0,0.0,0.0,0.0,0.0,1.0124882006390183,-12.16729884993124,1.0,0.0,0.0 -729,9.0,3.501541062440995,2.0,0.0,0.0,1.004738286566113,-12.762937198934177,1.0,0.0,0.0 -729,10.0,0.0,0.0,1.0189077763645526e-09,23.18446223328575,1.058065421540014,-12.167298849817891,0.0,1.0,0.0 -729,11.0,6.7615965343688185,7.5,0.0,0.0,1.0300841908677498,-10.671851771261226,1.0,0.0,0.0 -729,12.0,0.0,0.0,4.5601874600343903e-10,20.443630201183502,1.0571578048083348,-10.671851771227637,0.0,1.0,0.0 -729,13.0,3.743026652954168,1.6,0.0,0.0,1.0168175633225276,-11.409185391319136,1.0,0.0,0.0 -729,14.0,4.950454605520028,2.5,0.0,0.0,1.0100462851259768,-11.623210045370104,1.0,0.0,0.0 -729,15.0,2.1129989169902554,1.8,0.0,0.0,1.0116229741667595,-11.64952015636853,1.0,0.0,0.0 -729,16.0,5.433425786546372,5.8,0.0,0.0,1.0027512145358743,-12.536404289316248,1.0,0.0,0.0 -729,17.0,1.9318847241053767,0.9,0.0,0.0,0.9984741809514248,-12.410439112383878,1.0,0.0,0.0 -729,18.0,5.735282774687837,3.4,0.0,0.0,0.9940760579164036,-12.772063794544623,1.0,0.0,0.0 -729,19.0,1.3281707478224465,0.7,0.0,0.0,0.996039872023035,-12.803905327531774,1.0,0.0,0.0 -729,20.0,10.56499458495128,11.2,0.0,0.0,0.9942335022284228,-12.944124539875435,1.0,0.0,0.0 -729,21.0,0.0,0.0,0.0,0.0,0.99476021048275,-12.928984551793254,1.0,0.0,0.0 -729,22.0,1.9318847241053767,1.6,0.0,0.0,0.9967505901930874,-12.262963642312563,1.0,0.0,0.0 -729,23.0,5.252311593661492,6.7,0.0,0.0,0.9861468152760412,-12.960804715515811,1.0,0.0,0.0 -729,24.0,0.0,0.0,0.0,0.0,0.9750495151570036,-13.16472240303361,1.0,0.0,0.0 -729,25.0,2.1129989169902554,2.3,0.0,0.0,0.9603486006901976,-13.29800222051808,1.0,0.0,0.0 -729,26.0,0.0,0.0,0.0,0.0,0.9756561806491952,-13.192909601353724,1.0,0.0,0.0 -729,27.0,0.0,0.0,0.0,0.0,0.958060898841018,-11.334425625269676,1.0,0.0,0.0 -729,28.0,1.4489135430790323,0.9,0.0,0.0,0.9608569831070806,-13.930103839370856,1.0,0.0,0.0 -729,29.0,6.39936814859906,1.9,0.0,0.0,0.9526992827631848,-14.478186788169712,1.0,0.0,0.0 -730,0.0,0.0,0.0,179.4863705121707,0.0011190507460234,1.0,0.0,0.0,0.0,1.0 -730,1.0,13.100593285339585,12.7,7.339122581390831e-07,24.937808153341702,0.9800343980374272,-4.164193521944711,0.0,1.0,0.0 -730,2.0,1.4489135430790323,1.2,0.0,0.0,0.9678722721925724,-5.342856634615685,1.0,0.0,0.0 -730,3.0,4.588226219750269,1.6,0.0,0.0,0.9598793266873198,-6.573035441321973,1.0,0.0,0.0 -730,4.0,56.869856565852025,19.0,-4.851068134193883e-10,32.67436943910562,0.959538654430543,-10.026439776550884,0.0,1.0,0.0 -730,5.0,0.0,0.0,0.0,0.0,0.9529314908783786,-7.715820486006595,1.0,0.0,0.0 -730,6.0,13.764678659250809,10.9,0.0,0.0,0.9488711113697512,-8.976775308808305,1.0,0.0,0.0 -730,7.0,18.111419288487905,30.0,0.0,0.0,0.9400012731718538,-8.002764290896714,0.0,1.0,0.0 -730,8.0,0.0,0.0,0.0,0.0,1.005723759773733,-9.785939621900283,1.0,0.0,0.0 -730,9.0,3.501541062440995,2.0,0.0,0.0,0.9977483081319052,-10.8548891905128,1.0,0.0,0.0 -730,10.0,0.0,0.0,-7.45455724110743e-10,23.99974498282885,1.0531250349387355,-9.785939621984168,0.0,1.0,0.0 -730,11.0,6.7615965343688185,7.5,0.0,0.0,1.028651859243254,-10.32349108818834,1.0,0.0,0.0 -730,12.0,0.0,0.0,-6.13845269008145e-10,23.734660658351174,1.0599995379286828,-10.323491088233498,0.0,1.0,0.0 -730,13.0,3.743026652954168,1.6,0.0,0.0,1.0142174233560255,-10.872253551228289,1.0,0.0,0.0 -730,14.0,4.950454605520028,2.5,0.0,0.0,1.0076464053995515,-10.871091139635846,1.0,0.0,0.0 -730,15.0,2.1129989169902554,1.8,0.0,0.0,1.0232019603976208,-10.459448777068053,1.0,0.0,0.0 -730,16.0,5.433425786546372,5.8,0.0,0.0,0.9910227823799644,-11.012039556146654,1.0,0.0,0.0 -730,17.0,1.9318847241053767,0.9,0.0,0.0,0.994556355642202,-11.257602042365653,1.0,0.0,0.0 -730,18.0,5.735282774687837,3.4,0.0,0.0,0.9892201989714464,-11.377594191854044,1.0,0.0,0.0 -730,19.0,1.3281707478224465,0.7,0.0,0.0,0.9907119045824008,-11.28000020520936,1.0,0.0,0.0 -730,20.0,10.56499458495128,11.2,0.0,0.0,0.9874469062976754,-11.062063558331769,1.0,0.0,0.0 -730,21.0,0.0,0.0,0.0,0.0,0.9880625502032776,-11.0543704743294,1.0,0.0,0.0 -730,22.0,1.9318847241053767,1.6,0.0,0.0,0.9929607706845034,-11.083074204683196,1.0,0.0,0.0 -730,23.0,5.252311593661492,6.7,0.0,0.0,0.9803341049028028,-11.196566747438146,1.0,0.0,0.0 -730,24.0,0.0,0.0,0.0,0.0,0.9694780128739108,-10.83048456137568,1.0,0.0,0.0 -730,25.0,2.1129989169902554,2.3,0.0,0.0,0.9546899315609808,-10.965324845686034,1.0,0.0,0.0 -730,26.0,0.0,0.0,0.0,0.0,0.970074849638054,-10.499569200117216,1.0,0.0,0.0 -730,27.0,0.0,0.0,0.0,0.0,0.948498228672238,-8.081157533896132,1.0,0.0,0.0 -730,28.0,1.4489135430790323,0.9,0.0,0.0,0.955184718086026,-11.245402026519184,1.0,0.0,0.0 -730,29.0,6.39936814859906,1.9,0.0,0.0,0.9469768086288274,-11.800064559445891,1.0,0.0,0.0 -731,0.0,0.0,0.0,179.3540970549512,0.0030679190968996,1.0,0.0,0.0,0.0,1.0 -731,1.0,13.100593285339585,12.7,4.855637763769939e-06,12.43003307198304,0.978610128034784,-4.1101627490312,0.0,1.0,0.0 -731,2.0,1.4489135430790323,1.2,0.0,0.0,0.972121410023083,-5.464943212869831,1.0,0.0,0.0 -731,3.0,4.588226219750269,1.6,0.0,0.0,0.9651391243794444,-6.722098953780535,1.0,0.0,0.0 -731,4.0,56.869856565852025,19.0,4.5522437238914625e-09,25.93565358522403,0.9572045521945456,-9.879458278212802,0.0,1.0,0.0 -731,5.0,0.0,0.0,0.0,0.0,0.9635054557192022,-7.771586977039222,1.0,0.0,0.0 -731,6.0,13.764678659250809,10.9,0.0,0.0,0.9542022506813896,-8.950870003995929,1.0,0.0,0.0 -731,7.0,18.111419288487905,30.0,3.3149767586064713e-09,36.031162273702975,0.96440102949816,-8.296009612123639,0.0,1.0,0.0 -731,8.0,0.0,0.0,0.0,0.0,1.0251218656075016,-13.07181205085388,1.0,0.0,0.0 -731,9.0,3.501541062440995,2.0,0.0,0.0,1.0118905798823368,-13.071812051427909,1.0,0.0,0.0 -731,10.0,0.0,0.0,9.4477280003227e-09,12.631559939809833,1.0501410240566316,-13.071812049807974,0.0,1.0,0.0 -731,11.0,6.7615965343688185,7.5,0.0,0.0,1.0258970376995262,-11.490143648268424,1.0,0.0,0.0 -731,12.0,0.0,0.0,4.784969228789726e-09,16.779259240737268,1.0483055454471526,-11.490143647911532,0.0,1.0,0.0 -731,13.0,3.743026652954168,1.6,0.0,0.0,1.0138425507006197,-12.117304670595292,1.0,0.0,0.0 -731,14.0,4.950454605520028,2.5,0.0,0.0,1.0090572437986538,-12.245906687339016,1.0,0.0,0.0 -731,15.0,2.1129989169902554,1.8,0.0,0.0,1.0127441223290152,-12.278736144485524,1.0,0.0,0.0 -731,16.0,5.433425786546372,5.8,0.0,0.0,1.0079454793461289,-12.938160513969034,1.0,0.0,0.0 -731,17.0,1.9318847241053767,0.9,0.0,0.0,1.0004256455747038,-12.924902630016929,1.0,0.0,0.0 -731,18.0,5.735282774687837,3.4,0.0,0.0,0.9977461672608472,-13.22042048417558,1.0,0.0,0.0 -731,19.0,1.3281707478224465,0.7,0.0,0.0,1.0005997002065738,-13.218433592275726,1.0,0.0,0.0 -731,20.0,10.56499458495128,11.2,0.0,0.0,1.0010526403525433,-13.17631185342858,1.0,0.0,0.0 -731,21.0,0.0,0.0,0.0,0.0,1.001455208894237,-13.137352894077749,1.0,0.0,0.0 -731,22.0,1.9318847241053767,1.6,0.0,0.0,0.9987378524450478,-12.570759562522827,1.0,0.0,0.0 -731,23.0,5.252311593661492,6.7,0.0,0.0,0.991927237732677,-12.83579480706525,1.0,0.0,0.0 -731,24.0,0.0,0.0,0.0,0.0,0.9838669131740524,-11.903942318630788,1.0,0.0,0.0 -731,25.0,2.1129989169902554,2.3,0.0,0.0,0.9693018352502611,-12.0348076342394,1.0,0.0,0.0 -731,26.0,0.0,0.0,0.0,0.0,0.9859790482712674,-11.22022143540555,1.0,0.0,0.0 -731,27.0,0.0,0.0,0.0,0.0,0.9620834715934604,-8.257851150089584,1.0,0.0,0.0 -731,28.0,1.4489135430790323,0.9,0.0,0.0,0.9788987823814348,-11.459998208412843,1.0,0.0,0.0 -731,29.0,6.39936814859906,1.9,0.0,0.0,0.9518295787665692,-13.203884693299791,1.0,0.0,0.0 -732,0.0,0.0,0.0,94.27783722521384,2.109770935732058e-06,1.0,0.0,0.0,0.0,1.0 -732,1.0,13.100593285339585,12.7,82.32097713740353,14.978208904364266,0.9890440151369956,-1.6993567368380602,0.0,1.0,0.0 -732,2.0,1.4489135430790323,1.2,0.0,0.0,0.979658091378015,-4.045639654429485,1.0,0.0,0.0 -732,3.0,4.588226219750269,1.6,0.0,0.0,0.9742298569713844,-4.956780411572997,1.0,0.0,0.0 -732,4.0,56.869856565852025,19.0,0.0,0.0,0.9400000007794368,-7.312207515439942,0.0,1.0,0.0 -732,5.0,0.0,0.0,0.0,0.0,0.9728582571248028,-5.981631021045711,1.0,0.0,0.0 -732,6.0,13.764678659250809,10.9,0.0,0.0,0.9525845916937308,-6.860673655241469,1.0,0.0,0.0 -732,7.0,18.111419288487905,30.0,8.868916784853079e-09,39.999994704548,0.9752127725991654,-6.507108858550352,0.0,1.0,0.0 -732,8.0,0.0,0.0,0.0,0.0,1.022024729455544,-7.940939057521249,1.0,0.0,0.0 -732,9.0,3.501541062440995,2.0,0.0,0.0,1.0168363567670375,-8.954452985092704,1.0,0.0,0.0 -732,10.0,0.0,0.0,3.6487550111980756e-09,19.35277302337289,1.0599999827969642,-7.94093905711986,0.0,1.0,0.0 -732,11.0,6.7615965343688185,7.5,0.0,0.0,1.033750476938825,-8.656177131907176,1.0,0.0,0.0 -732,12.0,0.0,0.0,-6.568729214017177e-09,19.87462389718287,1.0599999806777456,-8.656177132388027,0.0,1.0,0.0 -732,13.0,3.743026652954168,1.6,0.0,0.0,1.021121186093123,-9.156952860845308,1.0,0.0,0.0 -732,14.0,4.950454605520028,2.5,0.0,0.0,1.016543125913609,-9.1527330443371,1.0,0.0,0.0 -732,15.0,2.1129989169902554,1.8,0.0,0.0,1.020301826856038,-8.889092879185778,1.0,0.0,0.0 -732,16.0,5.433425786546372,5.8,0.0,0.0,1.0134745889970858,-9.049822140871298,1.0,0.0,0.0 -732,17.0,1.9318847241053767,0.9,0.0,0.0,1.007186903548713,-9.467235180747926,1.0,0.0,0.0 -732,18.0,5.735282774687837,3.4,0.0,0.0,1.004027717761634,-9.546054104464414,1.0,0.0,0.0 -732,19.0,1.3281707478224465,0.7,0.0,0.0,1.0066056413354976,-9.431678210277086,1.0,0.0,0.0 -732,20.0,10.56499458495128,11.2,0.0,0.0,1.0063798703521507,-9.16938023586336,1.0,0.0,0.0 -732,21.0,0.0,0.0,0.0,0.0,1.0068711916954969,-9.166806811973274,1.0,0.0,0.0 -732,22.0,1.9318847241053767,1.6,0.0,0.0,1.0055149741073373,-9.313717659863084,1.0,0.0,0.0 -732,23.0,5.252311593661492,6.7,0.0,0.0,0.9976674456456448,-9.359326836355624,1.0,0.0,0.0 -732,24.0,0.0,0.0,0.0,0.0,0.9895711769130512,-9.038791897324648,1.0,0.0,0.0 -732,25.0,2.1129989169902554,2.3,0.0,0.0,0.97509262649797,-9.168130160407715,1.0,0.0,0.0 -732,26.0,0.0,0.0,0.0,0.0,0.9917353153021242,-8.7381926928601,1.0,0.0,0.0 -732,27.0,0.0,0.0,0.0,0.0,0.9717026015951904,-6.384358649146448,1.0,0.0,0.0 -732,28.0,1.4489135430790323,0.9,0.0,0.0,0.9771917980186828,-9.451326986535513,1.0,0.0,0.0 -732,29.0,6.39936814859906,1.9,0.0,0.0,0.969175260285059,-9.981104647818714,1.0,0.0,0.0 -733,0.0,0.0,0.0,179.18619251973843,0.0013321339123351,1.0,0.0,0.0,0.0,1.0 -733,1.0,13.100593285339585,12.7,1.4739366576137775e-06,12.319355308524436,0.97864053872689,-4.124634859804846,0.0,1.0,0.0 -733,2.0,1.4489135430790323,1.2,0.0,0.0,0.9720333842642624,-5.407632014666465,1.0,0.0,0.0 -733,3.0,4.588226219750269,1.6,0.0,0.0,0.9650192642492544,-6.650945715844487,1.0,0.0,0.0 -733,4.0,56.869856565852025,19.0,-1.211451309984867e-10,25.253163936708333,0.9569900818752858,-9.929911425484828,0.0,1.0,0.0 -733,5.0,0.0,0.0,0.0,0.0,0.9644071062619288,-7.890160599846635,1.0,0.0,0.0 -733,6.0,13.764678659250809,10.9,0.0,0.0,0.9546447559812848,-9.041876518098686,1.0,0.0,0.0 -733,7.0,18.111419288487905,30.0,-1.2801216156835384e-10,31.12918765425788,0.963401514620192,-8.368826828297593,0.0,1.0,0.0 -733,8.0,0.0,0.0,0.0,0.0,1.013931830094881,-9.896685008122551,1.0,0.0,0.0 -733,9.0,3.501541062440995,2.0,0.0,0.0,1.0047725993261851,-10.937953415795098,1.0,0.0,0.0 -733,10.0,0.0,0.0,-2.209025378433202e-10,23.477034108303148,1.059999973641628,-9.896685008147047,0.0,1.0,0.0 -733,11.0,6.7615965343688185,7.5,0.0,0.0,1.0128761368509132,-10.425319107779153,1.0,0.0,0.0 -733,12.0,0.0,0.0,-1.5962589724337587e-10,11.233687052072746,1.0281723676845809,-10.425319107791449,0.0,1.0,0.0 -733,13.0,3.743026652954168,1.6,0.0,0.0,1.0011926397121749,-10.958605813319812,1.0,0.0,0.0 -733,14.0,4.950454605520028,2.5,0.0,0.0,0.9976054992155422,-10.993410443487406,1.0,0.0,0.0 -733,15.0,2.1129989169902554,1.8,0.0,0.0,1.0029957907245828,-10.772813711363373,1.0,0.0,0.0 -733,16.0,5.433425786546372,5.8,0.0,0.0,0.9997510275767644,-10.99900876670888,1.0,0.0,0.0 -733,17.0,1.9318847241053767,0.9,0.0,0.0,0.990504437149278,-11.371742561818683,1.0,0.0,0.0 -733,18.0,5.735282774687837,3.4,0.0,0.0,0.988723773803829,-11.484706322040424,1.0,0.0,0.0 -733,19.0,1.3281707478224465,0.7,0.0,0.0,0.9920932517120836,-11.38367854264764,1.0,0.0,0.0 -733,20.0,10.56499458495128,11.2,0.0,0.0,0.9938473937012552,-11.151250469441948,1.0,0.0,0.0 -733,21.0,0.0,0.0,0.0,0.0,0.9942384417590636,-11.14623908956745,1.0,0.0,0.0 -733,22.0,1.9318847241053767,1.6,0.0,0.0,0.9885935669945136,-11.201286252655418,1.0,0.0,0.0 -733,23.0,5.252311593661492,6.7,0.0,0.0,0.9835610173845832,-11.302976089451311,1.0,0.0,0.0 -733,24.0,0.0,0.0,0.0,0.0,0.976902217466734,-11.003741645177376,1.0,0.0,0.0 -733,25.0,2.1129989169902554,2.3,0.0,0.0,0.9622300579415632,-11.136508584607943,1.0,0.0,0.0 -733,26.0,0.0,0.0,0.0,0.0,0.9800641313227292,-10.712253100231711,1.0,0.0,0.0 -733,27.0,0.0,0.0,0.0,0.0,0.962211431755406,-8.286874867557746,1.0,0.0,0.0 -733,28.0,1.4489135430790323,0.9,0.0,0.0,0.9653359445194848,-11.442731097769933,1.0,0.0,0.0 -733,29.0,6.39936814859906,1.9,0.0,0.0,0.9572174512361106,-11.985701241624946,1.0,0.0,0.0 -734,0.0,0.0,0.0,179.9105916870587,0.0001662538852365,1.0,0.0,0.0,0.0,1.0 -734,1.0,13.100593285339585,12.7,4.5657238752518403e-07,14.11069392083452,0.9781474160820725,-4.35117644640949,0.0,1.0,0.0 -734,2.0,1.4489135430790323,1.2,0.0,0.0,0.9724349171626894,-4.831326610150909,1.0,0.0,0.0 -734,3.0,4.588226219750269,1.6,0.0,0.0,0.9654156625328428,-5.934635597337703,1.0,0.0,0.0 -734,4.0,56.869856565852025,19.0,-1.170175102679528e-09,39.99994420268112,0.9591511067482192,-13.349032000449322,0.0,1.0,0.0 -734,5.0,0.0,0.0,0.0,0.0,0.9654267337254198,-6.873283331760726,1.0,0.0,0.0 -734,6.0,13.764678659250809,10.9,0.0,0.0,0.9400001068294228,-14.071449842922036,1.0,0.0,0.0 -734,7.0,18.111419288487905,30.0,-9.08196496717006e-12,28.811896880937027,0.963414465869492,-7.339510172250833,0.0,1.0,0.0 -734,8.0,0.0,0.0,0.0,0.0,1.0080337858846862,-8.982716340895049,1.0,0.0,0.0 -734,9.0,3.501541062440995,2.0,0.0,0.0,0.9979974544327062,-10.085968642262944,1.0,0.0,0.0 -734,10.0,0.0,0.0,-1.8488955963943795e-11,20.61856997444953,1.0489202365897354,-8.982716340897133,0.0,1.0,0.0 -734,11.0,6.7615965343688185,7.5,0.0,0.0,1.0057600979197756,-9.430803526880498,1.0,0.0,0.0 -734,12.0,0.0,0.0,-4.217689498003853e-11,5.150881018006494,1.0128796343196294,-9.430803526883818,0.0,1.0,0.0 -734,13.0,3.743026652954168,1.6,0.0,0.0,0.9959220589933416,-9.91674031203442,1.0,0.0,0.0 -734,14.0,4.950454605520028,2.5,0.0,0.0,0.99453588382927,-9.942224772745764,1.0,0.0,0.0 -734,15.0,2.1129989169902554,1.8,0.0,0.0,0.9958896423725832,-9.842010523306158,1.0,0.0,0.0 -734,16.0,5.433425786546372,5.8,0.0,0.0,0.9928692461841632,-10.123652992930998,1.0,0.0,0.0 -734,17.0,1.9318847241053767,0.9,0.0,0.0,0.986065608406471,-10.393471020626883,1.0,0.0,0.0 -734,18.0,5.735282774687837,3.4,0.0,0.0,0.9834901184169548,-10.549353900003076,1.0,0.0,0.0 -734,19.0,1.3281707478224465,0.7,0.0,0.0,0.9864619663252155,-10.469146462627554,1.0,0.0,0.0 -734,20.0,10.56499458495128,11.2,0.0,0.0,0.9856431939262422,-10.340298788235016,1.0,0.0,0.0 -734,21.0,0.0,0.0,0.0,0.0,0.9856078463044068,-10.34684332013349,1.0,0.0,0.0 -734,22.0,1.9318847241053767,1.6,0.0,0.0,0.9616943627313724,-10.818601822289711,1.0,0.0,0.0 -734,23.0,5.252311593661492,6.7,0.0,0.0,0.9688434724595516,-10.627718986104828,1.0,0.0,0.0 -734,24.0,0.0,0.0,0.0,0.0,0.9680157605095308,-10.2735919490818,1.0,0.0,0.0 -734,25.0,2.1129989169902554,2.3,0.0,0.0,0.9532046278578428,-10.40884634970637,1.0,0.0,0.0 -734,26.0,0.0,0.0,0.0,0.0,0.9748536150070756,-9.940419711127037,1.0,0.0,0.0 -734,27.0,0.0,0.0,0.0,0.0,0.9622201285812804,-7.282642809874984,1.0,0.0,0.0 -734,28.0,1.4489135430790323,0.9,0.0,0.0,0.9600414122367638,-10.678846811158255,1.0,0.0,0.0 -734,29.0,6.39936814859906,1.9,0.0,0.0,0.9518765311947488,-11.227868537961706,1.0,0.0,0.0 -735,0.0,0.0,0.0,179.4791750927446,0.0004371546935999,1.0,0.0,0.0,0.0,1.0 -735,1.0,13.100593285339585,12.7,1.4640814837646011e-06,-11.36472072666605,0.976513985409042,-4.081599949813603,0.0,1.0,0.0 -735,2.0,1.4489135430790323,1.2,0.0,0.0,0.9781023854719618,-5.530343557603707,1.0,0.0,0.0 -735,3.0,4.588226219750269,1.6,0.0,0.0,0.97252236107135,-6.79935727154552,1.0,0.0,0.0 -735,4.0,56.869856565852025,19.0,3.561498958284262e-09,36.33503718969507,0.9721342919136052,-10.065405668858466,0.0,1.0,0.0 -735,5.0,0.0,0.0,0.0,0.0,0.9739814633921702,-7.970123306284998,1.0,0.0,0.0 -735,6.0,13.764678659250809,10.9,0.0,0.0,0.9666155325873832,-9.135066229859778,1.0,0.0,0.0 -735,7.0,18.111419288487905,30.0,4.9987820936350725e-09,39.99977814389443,0.9763175269018816,-8.500012404254148,0.0,1.0,0.0 -735,8.0,0.0,0.0,0.0,0.0,1.0226609478760305,-10.526373081048726,1.0,0.0,0.0 -735,9.0,3.501541062440995,2.0,0.0,0.0,1.0178668929584496,-11.848727755435965,1.0,0.0,0.0 -735,10.0,0.0,0.0,4.559950802264999e-09,19.028305707811143,1.0599995266919704,-10.526373080547414,0.0,1.0,0.0 -735,11.0,6.7615965343688185,7.5,0.0,0.0,1.0343606459262538,-10.978532122469254,1.0,0.0,0.0 -735,12.0,0.0,0.0,3.046499058982182e-09,19.41229260960924,1.059999534223835,-10.978532122246376,0.0,1.0,0.0 -735,13.0,3.743026652954168,1.6,0.0,0.0,1.021953010854524,-11.534477266032086,1.0,0.0,0.0 -735,14.0,4.950454605520028,2.5,0.0,0.0,1.0171935109422732,-11.590361534112464,1.0,0.0,0.0 -735,15.0,2.1129989169902554,1.8,0.0,0.0,1.0206993285740982,-11.456041669225042,1.0,0.0,0.0 -735,16.0,5.433425786546372,5.8,0.0,0.0,1.0144322593276915,-11.84083942688542,1.0,0.0,0.0 -735,17.0,1.9318847241053767,0.9,0.0,0.0,1.0079397038028393,-12.064223388026877,1.0,0.0,0.0 -735,18.0,5.735282774687837,3.4,0.0,0.0,1.0048498911797572,-12.238709098124646,1.0,0.0,0.0 -735,19.0,1.3281707478224465,0.7,0.0,0.0,1.0074576522944232,-12.175081116120792,1.0,0.0,0.0 -735,20.0,10.56499458495128,11.2,0.0,0.0,1.007364847706453,-12.016504394159316,1.0,0.0,0.0 -735,21.0,0.0,0.0,0.0,0.0,1.007842879555797,-11.998891720620945,1.0,0.0,0.0 -735,22.0,1.9318847241053767,1.6,0.0,0.0,1.006391632105259,-11.832276078801833,1.0,0.0,0.0 -735,23.0,5.252311593661492,6.7,0.0,0.0,0.9988594783607052,-11.98792593792249,1.0,0.0,0.0 -735,24.0,0.0,0.0,0.0,0.0,0.9910371190687628,-11.440658400030475,1.0,0.0,0.0 -735,25.0,2.1129989169902554,2.3,0.0,0.0,0.9765806371208536,-11.569608566865115,1.0,0.0,0.0 -735,26.0,0.0,0.0,0.0,0.0,0.9933022254600148,-10.998556316635408,1.0,0.0,0.0 -735,27.0,0.0,0.0,0.0,0.0,0.9727138536204488,-8.40417890186719,1.0,0.0,0.0 -735,28.0,1.4489135430790323,0.9,0.0,0.0,0.9400001419588588,-13.615121826106806,1.0,0.0,0.0 -735,29.0,6.39936814859906,1.9,0.0,0.0,0.9480496612815392,-13.33166411396175,1.0,0.0,0.0 -736,0.0,0.0,0.0,138.00000531204094,0.0001479309208463,1.0,0.0,0.0,0.0,1.0 -736,1.0,13.100593285339585,12.7,42.61224960853789,13.65386025442428,0.9751783685217698,-4.637420916753852,0.0,1.0,0.0 -736,2.0,1.4489135430790323,1.2,0.0,0.0,0.9474009593597602,-10.154057837346198,1.0,0.0,0.0 -736,3.0,4.588226219750269,1.6,0.0,0.0,0.9479321913026538,-10.125954563622392,1.0,0.0,0.0 -736,4.0,56.869856565852025,19.0,-5.559508662766477e-10,27.975233399899626,0.9514188179203268,-11.670933294841204,0.0,1.0,0.0 -736,5.0,0.0,0.0,0.0,0.0,0.9508980219684728,-10.703031247151335,1.0,0.0,0.0 -736,6.0,13.764678659250809,10.9,0.0,0.0,0.9441199011037278,-11.420114914747682,1.0,0.0,0.0 -736,7.0,18.111419288487905,30.0,-4.18596126733306e-10,33.59948370896015,0.950780091830246,-11.212558033465882,0.0,1.0,0.0 -736,8.0,0.0,0.0,0.0,0.0,1.0006706108654595,-12.885927192050206,1.0,0.0,0.0 -736,9.0,3.501541062440995,2.0,0.0,0.0,0.991064143020039,-14.01827257227283,1.0,0.0,0.0 -736,10.0,0.0,0.0,-7.957670391554488e-10,23.99913662294997,1.0482893382112093,-12.885927192140612,0.0,1.0,0.0 -736,11.0,6.7615965343688185,7.5,0.0,0.0,0.998596994012934,-13.75551747617064,1.0,0.0,0.0 -736,12.0,0.0,0.0,-6.506628444719224e-10,13.43235586968082,1.017086375708229,-13.755517476222032,0.0,1.0,0.0 -736,13.0,3.743026652954168,1.6,0.0,0.0,0.9867296985760388,-14.27005801297133,1.0,0.0,0.0 -736,14.0,4.950454605520028,2.5,0.0,0.0,0.9833104894174384,-14.27167229483502,1.0,0.0,0.0 -736,15.0,2.1129989169902554,1.8,0.0,0.0,0.9890472029393624,-14.001043983669934,1.0,0.0,0.0 -736,16.0,5.433425786546372,5.8,0.0,0.0,0.9858488316557652,-14.128315532179132,1.0,0.0,0.0 -736,17.0,1.9318847241053767,0.9,0.0,0.0,0.976289077939048,-14.591996285267747,1.0,0.0,0.0 -736,18.0,5.735282774687837,3.4,0.0,0.0,0.9745877737856208,-14.667004940946075,1.0,0.0,0.0 -736,19.0,1.3281707478224465,0.7,0.0,0.0,0.978063415502024,-14.541331269120828,1.0,0.0,0.0 -736,20.0,10.56499458495128,11.2,0.0,0.0,0.9799400449214872,-14.242589905263564,1.0,0.0,0.0 -736,21.0,0.0,0.0,0.0,0.0,0.9803222517776252,-14.239026963037844,1.0,0.0,0.0 -736,22.0,1.9318847241053767,1.6,0.0,0.0,0.9742596014051982,-14.413484705208656,1.0,0.0,0.0 -736,23.0,5.252311593661492,6.7,0.0,0.0,0.9692632314373149,-14.420510073802786,1.0,0.0,0.0 -736,24.0,0.0,0.0,0.0,0.0,0.9628299893576476,-14.040141808971716,1.0,0.0,0.0 -736,25.0,2.1129989169902554,2.3,0.0,0.0,0.9479365147767608,-14.176880407828856,1.0,0.0,0.0 -736,26.0,0.0,0.0,0.0,0.0,0.966223023527199,-13.69467707479861,1.0,0.0,0.0 -736,27.0,0.0,0.0,0.0,0.0,0.9488119918764176,-11.123632533242612,1.0,0.0,0.0 -736,28.0,1.4489135430790323,0.9,0.0,0.0,0.9512694602309508,-14.446561009716264,1.0,0.0,0.0 -736,29.0,6.39936814859906,1.9,0.0,0.0,0.9430265257825994,-15.005834632675953,1.0,0.0,0.0 -737,0.0,0.0,0.0,179.18619251973843,0.0013321339123351,1.0,0.0,0.0,0.0,1.0 -737,1.0,13.100593285339585,12.7,1.4739366576137775e-06,12.319355308524436,0.97864053872689,-4.124634859804846,0.0,1.0,0.0 -737,2.0,1.4489135430790323,1.2,0.0,0.0,0.9720333842642624,-5.407632014666465,1.0,0.0,0.0 -737,3.0,4.588226219750269,1.6,0.0,0.0,0.9650192642492544,-6.650945715844487,1.0,0.0,0.0 -737,4.0,56.869856565852025,19.0,-1.211451309984867e-10,25.253163936708333,0.9569900818752858,-9.929911425484828,0.0,1.0,0.0 -737,5.0,0.0,0.0,0.0,0.0,0.9644071062619288,-7.890160599846635,1.0,0.0,0.0 -737,6.0,13.764678659250809,10.9,0.0,0.0,0.9546447559812848,-9.041876518098686,1.0,0.0,0.0 -737,7.0,18.111419288487905,30.0,-1.2801216156835384e-10,31.12918765425788,0.963401514620192,-8.368826828297593,0.0,1.0,0.0 -737,8.0,0.0,0.0,0.0,0.0,1.013931830094881,-9.896685008122551,1.0,0.0,0.0 -737,9.0,3.501541062440995,2.0,0.0,0.0,1.0047725993261851,-10.937953415795098,1.0,0.0,0.0 -737,10.0,0.0,0.0,-2.209025378433202e-10,23.477034108303148,1.059999973641628,-9.896685008147047,0.0,1.0,0.0 -737,11.0,6.7615965343688185,7.5,0.0,0.0,1.0128761368509132,-10.425319107779153,1.0,0.0,0.0 -737,12.0,0.0,0.0,-1.5962589724337587e-10,11.233687052072746,1.0281723676845809,-10.425319107791449,0.0,1.0,0.0 -737,13.0,3.743026652954168,1.6,0.0,0.0,1.0011926397121749,-10.958605813319812,1.0,0.0,0.0 -737,14.0,4.950454605520028,2.5,0.0,0.0,0.9976054992155422,-10.993410443487406,1.0,0.0,0.0 -737,15.0,2.1129989169902554,1.8,0.0,0.0,1.0029957907245828,-10.772813711363373,1.0,0.0,0.0 -737,16.0,5.433425786546372,5.8,0.0,0.0,0.9997510275767644,-10.99900876670888,1.0,0.0,0.0 -737,17.0,1.9318847241053767,0.9,0.0,0.0,0.990504437149278,-11.371742561818683,1.0,0.0,0.0 -737,18.0,5.735282774687837,3.4,0.0,0.0,0.988723773803829,-11.484706322040424,1.0,0.0,0.0 -737,19.0,1.3281707478224465,0.7,0.0,0.0,0.9920932517120836,-11.38367854264764,1.0,0.0,0.0 -737,20.0,10.56499458495128,11.2,0.0,0.0,0.9938473937012552,-11.151250469441948,1.0,0.0,0.0 -737,21.0,0.0,0.0,0.0,0.0,0.9942384417590636,-11.14623908956745,1.0,0.0,0.0 -737,22.0,1.9318847241053767,1.6,0.0,0.0,0.9885935669945136,-11.201286252655418,1.0,0.0,0.0 -737,23.0,5.252311593661492,6.7,0.0,0.0,0.9835610173845832,-11.302976089451311,1.0,0.0,0.0 -737,24.0,0.0,0.0,0.0,0.0,0.976902217466734,-11.003741645177376,1.0,0.0,0.0 -737,25.0,2.1129989169902554,2.3,0.0,0.0,0.9622300579415632,-11.136508584607943,1.0,0.0,0.0 -737,26.0,0.0,0.0,0.0,0.0,0.9800641313227292,-10.712253100231711,1.0,0.0,0.0 -737,27.0,0.0,0.0,0.0,0.0,0.962211431755406,-8.286874867557746,1.0,0.0,0.0 -737,28.0,1.4489135430790323,0.9,0.0,0.0,0.9653359445194848,-11.442731097769933,1.0,0.0,0.0 -737,29.0,6.39936814859906,1.9,0.0,0.0,0.9572174512361106,-11.985701241624946,1.0,0.0,0.0 -738,0.0,0.0,0.0,179.529803388911,0.020956745892775,1.0,0.0,0.0,0.0,1.0 -738,1.0,13.100593285339585,12.7,1.994852225548977e-05,12.49603638032434,0.9786076806712704,-4.138455827439759,0.0,1.0,0.0 -738,2.0,1.4489135430790323,1.2,0.0,0.0,0.9719400884573453,-5.4018455962851135,1.0,0.0,0.0 -738,3.0,4.588226219750269,1.6,0.0,0.0,0.9649031689949228,-6.643815046083747,1.0,0.0,0.0 -738,4.0,56.869856565852025,19.0,-1.7094935612135314e-09,25.84644514853153,0.957322363655567,-9.971251578548324,0.0,1.0,0.0 -738,5.0,0.0,0.0,0.0,0.0,0.963866631202662,-7.937352001797937,1.0,0.0,0.0 -738,6.0,13.764678659250809,10.9,0.0,0.0,0.9544584845079092,-9.0864607334265,1.0,0.0,0.0 -738,7.0,18.111419288487905,30.0,-1.470712384588489e-09,34.56937272799245,0.9640351748091208,-8.441331000754467,0.0,1.0,0.0 -738,8.0,0.0,0.0,0.0,0.0,1.009422074215899,-10.093534408789523,1.0,0.0,0.0 -738,9.0,3.501541062440995,2.0,0.0,0.0,0.9976238322027876,-11.219827916067096,1.0,0.0,0.0 -738,10.0,0.0,0.0,-2.0160015442123307e-09,24.00108685145833,1.0566670966177762,-10.093534409014772,0.0,1.0,0.0 -738,11.0,6.7615965343688185,7.5,0.0,0.0,1.0129135362442756,-10.079045873543144,1.0,0.0,0.0 -738,12.0,0.0,0.0,-1.4254601288731103e-09,7.46318452741615,1.0231258269161625,-10.079045873653476,0.0,1.0,0.0 -738,13.0,3.743026652954168,1.6,0.0,0.0,0.9887857604173664,-11.339160788749602,1.0,0.0,0.0 -738,14.0,4.950454605520028,2.5,0.0,0.0,0.9683933945022988,-11.823104996418024,1.0,0.0,0.0 -738,15.0,2.1129989169902554,1.8,0.0,0.0,0.9994655501984876,-10.679811039457984,1.0,0.0,0.0 -738,16.0,5.433425786546372,5.8,0.0,0.0,0.9938354314303898,-11.16949476722009,1.0,0.0,0.0 -738,17.0,1.9318847241053767,0.9,0.0,0.0,0.9688997678291296,-12.026711833220013,1.0,0.0,0.0 -738,18.0,5.735282774687837,3.4,0.0,0.0,0.971671700528483,-12.0300123524378,1.0,0.0,0.0 -738,19.0,1.3281707478224465,0.7,0.0,0.0,0.9775238540507648,-11.866586774702824,1.0,0.0,0.0 -738,20.0,10.56499458495128,11.2,0.0,0.0,0.9856267662843904,-11.464501147182697,1.0,0.0,0.0 -738,21.0,0.0,0.0,0.0,0.0,0.9857061336857572,-11.468046446975166,1.0,0.0,0.0 -738,22.0,1.9318847241053767,1.6,0.0,0.0,0.9662631256376089,-11.85894095306996,1.0,0.0,0.0 -738,23.0,5.252311593661492,6.7,0.0,0.0,0.970539869781432,-11.717801134605333,1.0,0.0,0.0 -738,24.0,0.0,0.0,0.0,0.0,0.9687363397533258,-11.346055465138251,1.0,0.0,0.0 -738,25.0,2.1129989169902554,2.3,0.0,0.0,0.9539365756458136,-11.481105557100005,1.0,0.0,0.0 -738,26.0,0.0,0.0,0.0,0.0,0.9749578402833878,-11.003074975993693,1.0,0.0,0.0 -738,27.0,0.0,0.0,0.0,0.0,0.9612948856839328,-8.356038724237683,1.0,0.0,0.0 -738,28.0,1.4489135430790323,0.9,0.0,0.0,0.9601473277772664,-11.741341794657382,1.0,0.0,0.0 -738,29.0,6.39936814859906,1.9,0.0,0.0,0.9519833799998034,-12.290241468763542,1.0,0.0,0.0 -739,0.0,0.0,0.0,179.18619251973843,0.0013321339123351,1.0,0.0,0.0,0.0,1.0 -739,1.0,13.100593285339585,12.7,1.4739366576137775e-06,12.319355308524436,0.97864053872689,-4.124634859804846,0.0,1.0,0.0 -739,2.0,1.4489135430790323,1.2,0.0,0.0,0.9720333842642624,-5.407632014666465,1.0,0.0,0.0 -739,3.0,4.588226219750269,1.6,0.0,0.0,0.9650192642492544,-6.650945715844487,1.0,0.0,0.0 -739,4.0,56.869856565852025,19.0,-1.211451309984867e-10,25.253163936708333,0.9569900818752858,-9.929911425484828,0.0,1.0,0.0 -739,5.0,0.0,0.0,0.0,0.0,0.9644071062619288,-7.890160599846635,1.0,0.0,0.0 -739,6.0,13.764678659250809,10.9,0.0,0.0,0.9546447559812848,-9.041876518098686,1.0,0.0,0.0 -739,7.0,18.111419288487905,30.0,-1.2801216156835384e-10,31.12918765425788,0.963401514620192,-8.368826828297593,0.0,1.0,0.0 -739,8.0,0.0,0.0,0.0,0.0,1.013931830094881,-9.896685008122551,1.0,0.0,0.0 -739,9.0,3.501541062440995,2.0,0.0,0.0,1.0047725993261851,-10.937953415795098,1.0,0.0,0.0 -739,10.0,0.0,0.0,-2.209025378433202e-10,23.477034108303148,1.059999973641628,-9.896685008147047,0.0,1.0,0.0 -739,11.0,6.7615965343688185,7.5,0.0,0.0,1.0128761368509132,-10.425319107779153,1.0,0.0,0.0 -739,12.0,0.0,0.0,-1.5962589724337587e-10,11.233687052072746,1.0281723676845809,-10.425319107791449,0.0,1.0,0.0 -739,13.0,3.743026652954168,1.6,0.0,0.0,1.0011926397121749,-10.958605813319812,1.0,0.0,0.0 -739,14.0,4.950454605520028,2.5,0.0,0.0,0.9976054992155422,-10.993410443487406,1.0,0.0,0.0 -739,15.0,2.1129989169902554,1.8,0.0,0.0,1.0029957907245828,-10.772813711363373,1.0,0.0,0.0 -739,16.0,5.433425786546372,5.8,0.0,0.0,0.9997510275767644,-10.99900876670888,1.0,0.0,0.0 -739,17.0,1.9318847241053767,0.9,0.0,0.0,0.990504437149278,-11.371742561818683,1.0,0.0,0.0 -739,18.0,5.735282774687837,3.4,0.0,0.0,0.988723773803829,-11.484706322040424,1.0,0.0,0.0 -739,19.0,1.3281707478224465,0.7,0.0,0.0,0.9920932517120836,-11.38367854264764,1.0,0.0,0.0 -739,20.0,10.56499458495128,11.2,0.0,0.0,0.9938473937012552,-11.151250469441948,1.0,0.0,0.0 -739,21.0,0.0,0.0,0.0,0.0,0.9942384417590636,-11.14623908956745,1.0,0.0,0.0 -739,22.0,1.9318847241053767,1.6,0.0,0.0,0.9885935669945136,-11.201286252655418,1.0,0.0,0.0 -739,23.0,5.252311593661492,6.7,0.0,0.0,0.9835610173845832,-11.302976089451311,1.0,0.0,0.0 -739,24.0,0.0,0.0,0.0,0.0,0.976902217466734,-11.003741645177376,1.0,0.0,0.0 -739,25.0,2.1129989169902554,2.3,0.0,0.0,0.9622300579415632,-11.136508584607943,1.0,0.0,0.0 -739,26.0,0.0,0.0,0.0,0.0,0.9800641313227292,-10.712253100231711,1.0,0.0,0.0 -739,27.0,0.0,0.0,0.0,0.0,0.962211431755406,-8.286874867557746,1.0,0.0,0.0 -739,28.0,1.4489135430790323,0.9,0.0,0.0,0.9653359445194848,-11.442731097769933,1.0,0.0,0.0 -739,29.0,6.39936814859906,1.9,0.0,0.0,0.9572174512361106,-11.985701241624946,1.0,0.0,0.0 -740,0.0,0.0,0.0,179.18619251973843,0.0013321339123351,1.0,0.0,0.0,0.0,1.0 -740,1.0,13.100593285339585,12.7,1.4739366576137775e-06,12.319355308524436,0.97864053872689,-4.124634859804846,0.0,1.0,0.0 -740,2.0,1.4489135430790323,1.2,0.0,0.0,0.9720333842642624,-5.407632014666465,1.0,0.0,0.0 -740,3.0,4.588226219750269,1.6,0.0,0.0,0.9650192642492544,-6.650945715844487,1.0,0.0,0.0 -740,4.0,56.869856565852025,19.0,-1.211451309984867e-10,25.253163936708333,0.9569900818752858,-9.929911425484828,0.0,1.0,0.0 -740,5.0,0.0,0.0,0.0,0.0,0.9644071062619288,-7.890160599846635,1.0,0.0,0.0 -740,6.0,13.764678659250809,10.9,0.0,0.0,0.9546447559812848,-9.041876518098686,1.0,0.0,0.0 -740,7.0,18.111419288487905,30.0,-1.2801216156835384e-10,31.12918765425788,0.963401514620192,-8.368826828297593,0.0,1.0,0.0 -740,8.0,0.0,0.0,0.0,0.0,1.013931830094881,-9.896685008122551,1.0,0.0,0.0 -740,9.0,3.501541062440995,2.0,0.0,0.0,1.0047725993261851,-10.937953415795098,1.0,0.0,0.0 -740,10.0,0.0,0.0,-2.209025378433202e-10,23.477034108303148,1.059999973641628,-9.896685008147047,0.0,1.0,0.0 -740,11.0,6.7615965343688185,7.5,0.0,0.0,1.0128761368509132,-10.425319107779153,1.0,0.0,0.0 -740,12.0,0.0,0.0,-1.5962589724337587e-10,11.233687052072746,1.0281723676845809,-10.425319107791449,0.0,1.0,0.0 -740,13.0,3.743026652954168,1.6,0.0,0.0,1.0011926397121749,-10.958605813319812,1.0,0.0,0.0 -740,14.0,4.950454605520028,2.5,0.0,0.0,0.9976054992155422,-10.993410443487406,1.0,0.0,0.0 -740,15.0,2.1129989169902554,1.8,0.0,0.0,1.0029957907245828,-10.772813711363373,1.0,0.0,0.0 -740,16.0,5.433425786546372,5.8,0.0,0.0,0.9997510275767644,-10.99900876670888,1.0,0.0,0.0 -740,17.0,1.9318847241053767,0.9,0.0,0.0,0.990504437149278,-11.371742561818683,1.0,0.0,0.0 -740,18.0,5.735282774687837,3.4,0.0,0.0,0.988723773803829,-11.484706322040424,1.0,0.0,0.0 -740,19.0,1.3281707478224465,0.7,0.0,0.0,0.9920932517120836,-11.38367854264764,1.0,0.0,0.0 -740,20.0,10.56499458495128,11.2,0.0,0.0,0.9938473937012552,-11.151250469441948,1.0,0.0,0.0 -740,21.0,0.0,0.0,0.0,0.0,0.9942384417590636,-11.14623908956745,1.0,0.0,0.0 -740,22.0,1.9318847241053767,1.6,0.0,0.0,0.9885935669945136,-11.201286252655418,1.0,0.0,0.0 -740,23.0,5.252311593661492,6.7,0.0,0.0,0.9835610173845832,-11.302976089451311,1.0,0.0,0.0 -740,24.0,0.0,0.0,0.0,0.0,0.976902217466734,-11.003741645177376,1.0,0.0,0.0 -740,25.0,2.1129989169902554,2.3,0.0,0.0,0.9622300579415632,-11.136508584607943,1.0,0.0,0.0 -740,26.0,0.0,0.0,0.0,0.0,0.9800641313227292,-10.712253100231711,1.0,0.0,0.0 -740,27.0,0.0,0.0,0.0,0.0,0.962211431755406,-8.286874867557746,1.0,0.0,0.0 -740,28.0,1.4489135430790323,0.9,0.0,0.0,0.9653359445194848,-11.442731097769933,1.0,0.0,0.0 -740,29.0,6.39936814859906,1.9,0.0,0.0,0.9572174512361106,-11.985701241624946,1.0,0.0,0.0 -741,0.0,0.0,0.0,179.65166275088637,0.0005514773688375,1.0,0.0,0.0,0.0,1.0 -741,1.0,13.100593285339585,12.7,9.6446071464708e-07,10.075954023700334,0.9783272255690172,-4.135113255649332,0.0,1.0,0.0 -741,2.0,1.4489135430790323,1.2,0.0,0.0,0.9727411370263072,-5.420177606836085,1.0,0.0,0.0 -741,3.0,4.588226219750269,1.6,0.0,0.0,0.9658938415299946,-6.666081587124757,1.0,0.0,0.0 -741,4.0,56.869856565852025,19.0,-2.853788834039802e-10,26.0732842793809,0.95799870621384,-9.978251057230878,0.0,1.0,0.0 -741,5.0,0.0,0.0,0.0,0.0,0.9650107329474632,-7.958242115251616,1.0,0.0,0.0 -741,6.0,13.764678659250809,10.9,0.0,0.0,0.9554191633989172,-9.101287472148716,1.0,0.0,0.0 -741,7.0,18.111419288487905,30.0,-2.912174766689018e-10,35.55057098741022,0.965511512193062,-8.467978968513455,0.0,1.0,0.0 -741,8.0,0.0,0.0,0.0,0.0,1.0115179462616684,-10.085507836807643,1.0,0.0,0.0 -741,9.0,3.501541062440995,2.0,0.0,0.0,1.0002438796296182,-11.195106292501375,1.0,0.0,0.0 -741,10.0,0.0,0.0,-5.074645876348365e-10,23.99939845128781,1.058670256865426,-10.085507836864124,0.0,1.0,0.0 -741,11.0,6.7615965343688185,7.5,0.0,0.0,1.016168979380034,-10.109082694057156,1.0,0.0,0.0 -741,12.0,0.0,0.0,-3.4959681819310885e-10,8.850202281095333,1.02821921440766,-10.109082694083998,0.0,1.0,0.0 -741,13.0,3.743026652954168,1.6,0.0,0.0,0.990977367338522,-11.378566355684338,1.0,0.0,0.0 -741,14.0,4.950454605520028,2.5,0.0,0.0,0.9694347957112568,-11.851330458098708,1.0,0.0,0.0 -741,15.0,2.1129989169902554,1.8,0.0,0.0,1.0025018731198347,-10.684274830650102,1.0,0.0,0.0 -741,16.0,5.433425786546372,5.8,0.0,0.0,0.9965884866001796,-11.153712521825158,1.0,0.0,0.0 -741,17.0,1.9318847241053767,0.9,0.0,0.0,0.970517183710139,-12.034679303957256,1.0,0.0,0.0 -741,18.0,5.735282774687837,3.4,0.0,0.0,0.973625959007326,-12.026409546904947,1.0,0.0,0.0 -741,19.0,1.3281707478224465,0.7,0.0,0.0,0.9796477009422704,-11.85767192581578,1.0,0.0,0.0 -741,20.0,10.56499458495128,11.2,0.0,0.0,0.983072783529498,-11.553062664127602,1.0,0.0,0.0 -741,21.0,0.0,0.0,0.0,0.0,0.981504986026972,-11.591294567934936,1.0,0.0,0.0 -741,22.0,1.9318847241053767,1.6,0.0,0.0,0.965899290947864,-11.917802838138831,1.0,0.0,0.0 -741,23.0,5.252311593661492,6.7,0.0,0.0,0.9683076097330208,-11.81776416988921,1.0,0.0,0.0 -741,24.0,0.0,0.0,0.0,0.0,0.967665560495058,-11.43406336703814,1.0,0.0,0.0 -741,25.0,2.1129989169902554,2.3,0.0,0.0,0.952848896379046,-11.569417232578273,1.0,0.0,0.0 -741,26.0,0.0,0.0,0.0,0.0,0.9746137071669148,-11.082393699610655,1.0,0.0,0.0 -741,27.0,0.0,0.0,0.0,0.0,0.9623120285262928,-8.381270293809168,1.0,0.0,0.0 -741,28.0,1.4489135430790323,0.9,0.0,0.0,0.967449442974083,-11.327837379081538,1.0,0.0,0.0 -741,29.0,6.39936814859906,1.9,0.0,0.0,0.9400206485481812,-13.1144194455285,1.0,0.0,0.0 -742,0.0,0.0,0.0,179.21031934177608,0.0015614484457415,1.0,0.0,0.0,0.0,1.0 -742,1.0,13.100593285339585,12.7,1.7841326939723848e-06,13.75199344121718,0.9785230942102052,-4.2121256031199446,0.0,1.0,0.0 -742,2.0,1.4489135430790323,1.2,0.0,0.0,0.972041738700464,-5.160409239430908,1.0,0.0,0.0 -742,3.0,4.588226219750269,1.6,0.0,0.0,0.964983747529004,-6.343748745984681,1.0,0.0,0.0 -742,4.0,56.869856565852025,19.0,4.100348688576276e-10,24.185479385357496,0.9576577577337252,-11.330576144486471,0.0,1.0,0.0 -742,5.0,0.0,0.0,0.0,0.0,0.9640018263641138,-7.43352769699464,1.0,0.0,0.0 -742,6.0,13.764678659250809,10.9,0.0,0.0,0.9513647449817948,-7.969694658830065,1.0,0.0,0.0 -742,7.0,18.111419288487905,30.0,1.2180848787201967e-10,32.95917523920484,0.963683955635986,-7.924437650156259,0.0,1.0,0.0 -742,8.0,0.0,0.0,0.0,0.0,1.013814855193449,-9.465077103801812,1.0,0.0,0.0 -742,9.0,3.501541062440995,2.0,0.0,0.0,1.0047629489027647,-10.518895101049596,1.0,0.0,0.0 -742,10.0,0.0,0.0,3.050994000193816e-10,23.53665939769548,1.05999999823923,-9.46507710376798,0.0,1.0,0.0 -742,11.0,6.7615965343688185,7.5,0.0,0.0,1.0129963044381145,-10.065401990937508,1.0,0.0,0.0 -742,12.0,0.0,0.0,2.5661290148678917e-10,11.499534453291725,1.028647294165999,-10.065401990917756,0.0,1.0,0.0 -742,13.0,3.743026652954168,1.6,0.0,0.0,1.001277058782142,-10.59139713053234,1.0,0.0,0.0 -742,14.0,4.950454605520028,2.5,0.0,0.0,0.9977036761918842,-10.618249706391172,1.0,0.0,0.0 -742,15.0,2.1129989169902554,1.8,0.0,0.0,1.003100322639422,-10.387262545625356,1.0,0.0,0.0 -742,16.0,5.433425786546372,5.8,0.0,0.0,0.9997647544724646,-10.590521905652096,1.0,0.0,0.0 -742,17.0,1.9318847241053767,0.9,0.0,0.0,0.9905685560504208,-10.98108449220557,1.0,0.0,0.0 -742,18.0,5.735282774687837,3.4,0.0,0.0,0.9887666855286084,-11.08481028438017,1.0,0.0,0.0 -742,19.0,1.3281707478224465,0.7,0.0,0.0,0.9921251488623216,-10.978928802750769,1.0,0.0,0.0 -742,20.0,10.56499458495128,11.2,0.0,0.0,0.9938402226361894,-10.733533517386917,1.0,0.0,0.0 -742,21.0,0.0,0.0,0.0,0.0,0.99423195158086,-10.728953488471472,1.0,0.0,0.0 -742,22.0,1.9318847241053767,1.6,0.0,0.0,0.9886478517085164,-10.810688364179036,1.0,0.0,0.0 -742,23.0,5.252311593661492,6.7,0.0,0.0,0.9835528001732802,-10.891554718065152,1.0,0.0,0.0 -742,24.0,0.0,0.0,0.0,0.0,0.9768526999328738,-10.576098216090758,1.0,0.0,0.0 -742,25.0,2.1129989169902554,2.3,0.0,0.0,0.962179773355467,-10.70887882462148,1.0,0.0,0.0 -742,26.0,0.0,0.0,0.0,0.0,0.9799846899736148,-10.274532026939555,1.0,0.0,0.0 -742,27.0,0.0,0.0,0.0,0.0,0.9619741762697274,-7.834964646448561,1.0,0.0,0.0 -742,28.0,1.4489135430790323,0.9,0.0,0.0,0.9652552296166096,-11.005130248370708,1.0,0.0,0.0 -742,29.0,6.39936814859906,1.9,0.0,0.0,0.9571360331788576,-11.548191893711325,1.0,0.0,0.0 -743,0.0,0.0,0.0,179.69212275561827,0.003501837323494,1.0,0.0,0.0,0.0,1.0 -743,1.0,13.100593285339585,12.7,3.011994778393357e-06,12.167531189329104,0.9784697837124512,-4.148036812627357,0.0,1.0,0.0 -743,2.0,1.4489135430790323,1.2,0.0,0.0,0.9722745638950668,-5.389355031594446,1.0,0.0,0.0 -743,3.0,4.588226219750269,1.6,0.0,0.0,0.9653128790635914,-6.628083866159852,1.0,0.0,0.0 -743,4.0,56.869856565852025,19.0,-3.894233832810369e-09,26.14998131184481,0.9573211646802152,-10.00893967627928,0.0,1.0,0.0 -743,5.0,0.0,0.0,0.0,0.0,0.9633679663555904,-7.989891767398877,1.0,0.0,0.0 -743,6.0,13.764678659250809,10.9,0.0,0.0,0.9541585636908266,-9.13294483365007,1.0,0.0,0.0 -743,7.0,18.111419288487905,30.0,-3.5623786126499824e-09,36.36045616084492,0.9641123448267142,-8.510451224138123,0.0,1.0,0.0 -743,8.0,0.0,0.0,0.0,0.0,1.0058805854528212,-10.343971060666403,1.0,0.0,0.0 -743,9.0,3.501541062440995,2.0,0.0,0.0,0.9925127554027344,-11.579290110559697,1.0,0.0,0.0 -743,10.0,0.0,0.0,-5.3355900254472245e-09,23.995556590854395,1.0532671917207308,-10.343971061266586,0.0,1.0,0.0 -743,11.0,6.7615965343688185,7.5,0.0,0.0,1.0168995726062835,-9.561952477778084,1.0,0.0,0.0 -743,12.0,0.0,0.0,-2.503753513229681e-09,6.549687012475243,1.0258381771751983,-9.561952477970609,0.0,1.0,0.0 -743,13.0,3.743026652954168,1.6,0.0,0.0,1.008240628311622,-9.987159889250393,1.0,0.0,0.0 -743,14.0,4.950454605520028,2.5,0.0,0.0,0.943573618293224,-13.277888471822637,1.0,0.0,0.0 -743,15.0,2.1129989169902554,1.8,0.0,0.0,0.9988526307465614,-10.51356140404257,1.0,0.0,0.0 -743,16.0,5.433425786546372,5.8,0.0,0.0,0.9902796435452812,-11.370118181769971,1.0,0.0,0.0 -743,17.0,1.9318847241053767,0.9,0.0,0.0,0.9508575994072318,-13.10137779368772,1.0,0.0,0.0 -743,18.0,5.735282774687837,3.4,0.0,0.0,0.957706563376824,-12.87827302917962,1.0,0.0,0.0 -743,19.0,1.3281707478224465,0.7,0.0,0.0,0.9657934780449616,-12.59337106265148,1.0,0.0,0.0 -743,20.0,10.56499458495128,11.2,0.0,0.0,0.979553349508452,-11.877927682200763,1.0,0.0,0.0 -743,21.0,0.0,0.0,0.0,0.0,0.979345802027816,-11.89766831785036,1.0,0.0,0.0 -743,22.0,1.9318847241053767,1.6,0.0,0.0,0.9474376821600472,-12.95993521045548,1.0,0.0,0.0 -743,23.0,5.252311593661492,6.7,0.0,0.0,0.9598809280348544,-12.34608686268755,1.0,0.0,0.0 -743,24.0,0.0,0.0,0.0,0.0,0.962294791999574,-11.811659036382633,1.0,0.0,0.0 -743,25.0,2.1129989169902554,2.3,0.0,0.0,0.9473927663696377,-11.94855221243566,1.0,0.0,0.0 -743,26.0,0.0,0.0,0.0,0.0,0.9711486665684864,-11.363452502947275,1.0,0.0,0.0 -743,27.0,0.0,0.0,0.0,0.0,0.9603939800096564,-8.438295161774981,1.0,0.0,0.0 -743,28.0,1.4489135430790323,0.9,0.0,0.0,0.956276119762966,-12.10761148903772,1.0,0.0,0.0 -743,29.0,6.39936814859906,1.9,0.0,0.0,0.9480779198716108,-12.660998843573886,1.0,0.0,0.0 -744,0.0,0.0,0.0,179.54027699711747,0.0050586316143963,1.0,0.0,0.0,0.0,1.0 -744,1.0,13.100593285339585,12.7,5.035445082162185e-06,12.751277367360949,0.9786557246412452,-4.132724821370521,0.0,1.0,0.0 -744,2.0,1.4489135430790323,1.2,0.0,0.0,0.9718499008921596,-5.420037493900116,1.0,0.0,0.0 -744,3.0,4.588226219750269,1.6,0.0,0.0,0.9647956136776976,-6.666477379647367,1.0,0.0,0.0 -744,4.0,56.869856565852025,19.0,6.425730898062703e-10,25.775335399742147,0.95722736908967,-9.946569330364598,0.0,1.0,0.0 -744,5.0,0.0,0.0,0.0,0.0,0.9637909294031288,-7.894174603925796,1.0,0.0,0.0 -744,6.0,13.764678659250809,10.9,0.0,0.0,0.9543761323316668,-9.050869385194789,1.0,0.0,0.0 -744,7.0,18.111419288487905,30.0,5.91307016835763e-10,30.791878762372107,0.9521090230290108,-11.319057019395617,0.0,1.0,0.0 -744,8.0,0.0,0.0,0.0,0.0,1.0139695640104585,-9.939701612429907,1.0,0.0,0.0 -744,9.0,3.501541062440995,2.0,0.0,0.0,1.0052019892977373,-11.00007236399131,1.0,0.0,0.0 -744,10.0,0.0,0.0,7.946992778510265e-10,23.45780711997667,1.0599999788980825,-9.939701612341796,0.0,1.0,0.0 -744,11.0,6.7615965343688185,7.5,0.0,0.0,1.014730900825951,-10.49676943443589,1.0,0.0,0.0 -744,12.0,0.0,0.0,5.410377812514636e-10,12.706824639515824,1.0319693531511116,-10.496769434394444,0.0,1.0,0.0 -744,13.0,3.743026652954168,1.6,0.0,0.0,1.0028389267193296,-11.036585313494612,1.0,0.0,0.0 -744,14.0,4.950454605520028,2.5,0.0,0.0,0.9989790058011512,-11.07440003706593,1.0,0.0,0.0 -744,15.0,2.1129989169902554,1.8,0.0,0.0,1.0042473981909426,-10.836864646102804,1.0,0.0,0.0 -744,16.0,5.433425786546372,5.8,0.0,0.0,1.0004393088153811,-11.06255361611202,1.0,0.0,0.0 -744,17.0,1.9318847241053767,0.9,0.0,0.0,0.9915563737920904,-11.445142154591712,1.0,0.0,0.0 -744,18.0,5.735282774687837,3.4,0.0,0.0,0.98958230485481,-11.553869964323027,1.0,0.0,0.0 -744,19.0,1.3281707478224465,0.7,0.0,0.0,0.9928461831274208,-11.450863942715356,1.0,0.0,0.0 -744,20.0,10.56499458495128,11.2,0.0,0.0,0.9942141628053032,-11.22999842943552,1.0,0.0,0.0 -744,21.0,0.0,0.0,0.0,0.0,0.99458215202732,-11.2303688654847,1.0,0.0,0.0 -744,22.0,1.9318847241053767,1.6,0.0,0.0,0.989338911580498,-11.31317605189469,1.0,0.0,0.0 -744,23.0,5.252311593661492,6.7,0.0,0.0,0.9834715394236306,-11.457491798172189,1.0,0.0,0.0 -744,24.0,0.0,0.0,0.0,0.0,0.9750426245773596,-11.33848270478845,1.0,0.0,0.0 -744,25.0,2.1129989169902554,2.3,0.0,0.0,0.9603416029371492,-11.471764434106795,1.0,0.0,0.0 -744,26.0,0.0,0.0,0.0,0.0,0.9771777713257546,-11.160934559161952,1.0,0.0,0.0 -744,27.0,0.0,0.0,0.0,0.0,0.9592977121508812,-8.937083293909758,1.0,0.0,0.0 -744,28.0,1.4489135430790323,0.9,0.0,0.0,0.962403165855412,-11.895799912164987,1.0,0.0,0.0 -744,29.0,6.39936814859906,1.9,0.0,0.0,0.9542590436385366,-12.442109714635745,1.0,0.0,0.0 -745,0.0,0.0,0.0,179.86350215504038,0.0005534607121049,1.0,0.0,0.0,0.0,1.0 -745,1.0,13.100593285339585,12.7,1.670966967802674e-06,-5.677238663439546,0.978049816332184,-3.770311975372203,0.0,1.0,0.0 -745,2.0,1.4489135430790323,1.2,0.0,0.0,0.9750436148502089,-6.46814198450842,1.0,0.0,0.0 -745,3.0,4.588226219750269,1.6,0.0,0.0,0.9689862832771726,-7.965580899366694,1.0,0.0,0.0 -745,4.0,56.869856565852025,19.0,4.6207129611856995e-09,37.2015761670483,0.9724513379751752,-10.333767151360034,0.0,1.0,0.0 -745,5.0,0.0,0.0,0.0,0.0,0.9709523525699172,-8.804637917156258,1.0,0.0,0.0 -745,6.0,13.764678659250809,10.9,0.0,0.0,0.9648650274225627,-9.737815074891012,1.0,0.0,0.0 -745,7.0,18.111419288487905,30.0,4.176217223600105e-09,39.99971048348318,0.9731759844133756,-9.341757049052031,0.0,1.0,0.0 -745,8.0,0.0,0.0,0.0,0.0,1.024200145612344,-10.692034503082242,1.0,0.0,0.0 -745,9.0,3.501541062440995,2.0,0.0,0.0,1.0223082715162963,-11.661231073791306,1.0,0.0,0.0 -745,10.0,0.0,0.0,3.672218987035251e-09,18.24363132067236,1.0599990030068842,-10.692034502679128,0.0,1.0,0.0 -745,11.0,6.7615965343688185,7.5,0.0,0.0,1.0300191830893832,-11.868450561438292,1.0,0.0,0.0 -745,12.0,0.0,0.0,4.69474102604748e-09,22.698809392070533,1.059998777246508,-11.868450561093375,0.0,1.0,0.0 -745,13.0,3.743026652954168,1.6,0.0,0.0,1.0183645605818026,-12.324981804866486,1.0,0.0,0.0 -745,14.0,4.950454605520028,2.5,0.0,0.0,1.015085205440735,-12.296442169902736,1.0,0.0,0.0 -745,15.0,2.1129989169902554,1.8,0.0,0.0,1.0076525613871103,-12.297004131834631,1.0,0.0,0.0 -745,16.0,5.433425786546372,5.8,0.0,0.0,0.993533323827237,-12.721046472510809,1.0,0.0,0.0 -745,17.0,1.9318847241053767,0.9,0.0,0.0,1.008208711852966,-12.45724213593596,1.0,0.0,0.0 -745,18.0,5.735282774687837,3.4,0.0,0.0,1.006512360236667,-12.444156280690036,1.0,0.0,0.0 -745,19.0,1.3281707478224465,0.7,0.0,0.0,1.0098566089643886,-12.282367362754098,1.0,0.0,0.0 -745,20.0,10.56499458495128,11.2,0.0,0.0,1.008113199822222,-12.047136370207904,1.0,0.0,0.0 -745,21.0,0.0,0.0,0.0,0.0,1.0073919200285826,-12.098807639064306,1.0,0.0,0.0 -745,22.0,1.9318847241053767,1.6,0.0,0.0,1.0060187102998437,-12.44773636506399,1.0,0.0,0.0 -745,23.0,5.252311593661492,6.7,0.0,0.0,1.000781394528676,-12.479131404560986,1.0,0.0,0.0 -745,24.0,0.0,0.0,0.0,0.0,0.9671216244389034,-11.6101709676005,1.0,0.0,0.0 -745,25.0,2.1129989169902554,2.3,0.0,0.0,0.9522963604574908,-11.745679544319849,1.0,0.0,0.0 -745,26.0,0.0,0.0,0.0,0.0,0.9745940610308944,-11.494165366184946,1.0,0.0,0.0 -745,27.0,0.0,0.0,0.0,0.0,0.9657902784562272,-9.12073209790098,1.0,0.0,0.0 -745,28.0,1.4489135430790323,0.9,0.0,0.0,0.9674296499106496,-11.739619015888335,1.0,0.0,0.0 -745,29.0,6.39936814859906,1.9,0.0,0.0,0.940000225373104,-13.526276260094114,1.0,0.0,0.0 -746,0.0,0.0,0.0,94.07315279716164,1.8971818782631544e-06,1.0,0.0,0.0,0.0,1.0 -746,1.0,13.100593285339585,12.7,82.57286369251,15.299144727489209,0.9891251826784068,-1.6936057230481043,0.0,1.0,0.0 -746,2.0,1.4489135430790323,1.2,0.0,0.0,0.9795252034259618,-4.043147728889346,1.0,0.0,0.0 -746,3.0,4.588226219750269,1.6,0.0,0.0,0.974065915072177,-4.953717064158825,1.0,0.0,0.0 -746,4.0,56.869856565852025,19.0,0.0,0.0,0.9400000006506672,-7.304878269034847,0.0,1.0,0.0 -746,5.0,0.0,0.0,0.0,0.0,0.9727761477986184,-5.972389186966118,1.0,0.0,0.0 -746,6.0,13.764678659250809,10.9,0.0,0.0,0.9525358706476068,-6.852181931149065,1.0,0.0,0.0 -746,7.0,18.111419288487905,30.0,6.613355571915214e-09,39.99999539896839,0.974978412030846,-6.502619312696223,0.0,1.0,0.0 -746,8.0,0.0,0.0,0.0,0.0,1.0235613641341763,-7.811673568898485,1.0,0.0,0.0 -746,9.0,3.501541062440995,2.0,0.0,0.0,1.0199867850584845,-8.760098555052988,1.0,0.0,0.0 -746,10.0,0.0,0.0,8.404822651403582e-09,18.569682061543265,1.0599999860185856,-7.811673567975286,0.0,1.0,0.0 -746,11.0,6.7615965343688185,7.5,0.0,0.0,1.0328721393370308,-8.703430608974504,1.0,0.0,0.0 -746,12.0,0.0,0.0,3.820237139386142e-09,20.53965103570524,1.059999980818484,-8.703430608694614,0.0,1.0,0.0 -746,13.0,3.743026652954168,1.6,0.0,0.0,1.019255653473374,-9.23614646496624,1.0,0.0,0.0 -746,14.0,4.950454605520028,2.5,0.0,0.0,1.0135192592853703,-9.240691189619602,1.0,0.0,0.0 -746,15.0,2.1129989169902554,1.8,0.0,0.0,1.0213323154965532,-8.841214423193621,1.0,0.0,0.0 -746,16.0,5.433425786546372,5.8,0.0,0.0,1.015918462265644,-8.89811442270078,1.0,0.0,0.0 -746,17.0,1.9318847241053767,0.9,0.0,0.0,1.006351611191051,-9.457233004416924,1.0,0.0,0.0 -746,18.0,5.735282774687837,3.4,0.0,0.0,1.004487560527536,-9.47704707074126,1.0,0.0,0.0 -746,19.0,1.3281707478224465,0.7,0.0,0.0,1.0077497914361315,-9.331927362596495,1.0,0.0,0.0 -746,20.0,10.56499458495128,11.2,0.0,0.0,1.0116172892445368,-8.913791761983262,1.0,0.0,0.0 -746,21.0,0.0,0.0,0.0,0.0,1.012759527022136,-8.89298412890161,1.0,0.0,0.0 -746,22.0,1.9318847241053767,1.6,0.0,0.0,0.9964384019837376,-9.58445384680434,1.0,0.0,0.0 -746,23.0,5.252311593661492,6.7,0.0,0.0,0.9806359522511084,-9.882763500736145,1.0,0.0,0.0 -746,24.0,0.0,0.0,0.0,0.0,0.9790569379325672,-9.445722321652736,1.0,0.0,0.0 -746,25.0,2.1129989169902554,2.3,0.0,0.0,0.9644180774754552,-9.577896511970993,1.0,0.0,0.0 -746,26.0,0.0,0.0,0.0,0.0,0.9853183766547096,-9.06456260619694,1.0,0.0,0.0 -746,27.0,0.0,0.0,0.0,0.0,0.970727677261232,-6.400534675365567,1.0,0.0,0.0 -746,28.0,1.4489135430790323,0.9,0.0,0.0,0.9706739212850316,-9.78715478675157,1.0,0.0,0.0 -746,29.0,6.39936814859906,1.9,0.0,0.0,0.9626016569284982,-10.32412469628886,1.0,0.0,0.0 -747,0.0,0.0,0.0,94.27783722521384,2.109770935732058e-06,1.0,0.0,0.0,0.0,1.0 -747,1.0,13.100593285339585,12.7,82.32097713740353,14.978208904364266,0.9890440151369956,-1.6993567368380602,0.0,1.0,0.0 -747,2.0,1.4489135430790323,1.2,0.0,0.0,0.979658091378015,-4.045639654429485,1.0,0.0,0.0 -747,3.0,4.588226219750269,1.6,0.0,0.0,0.9742298569713844,-4.956780411572997,1.0,0.0,0.0 -747,4.0,56.869856565852025,19.0,0.0,0.0,0.9400000007794368,-7.312207515439942,0.0,1.0,0.0 -747,5.0,0.0,0.0,0.0,0.0,0.9728582571248028,-5.981631021045711,1.0,0.0,0.0 -747,6.0,13.764678659250809,10.9,0.0,0.0,0.9525845916937308,-6.860673655241469,1.0,0.0,0.0 -747,7.0,18.111419288487905,30.0,8.868916784853079e-09,39.999994704548,0.9752127725991654,-6.507108858550352,0.0,1.0,0.0 -747,8.0,0.0,0.0,0.0,0.0,1.022024729455544,-7.940939057521249,1.0,0.0,0.0 -747,9.0,3.501541062440995,2.0,0.0,0.0,1.0168363567670375,-8.954452985092704,1.0,0.0,0.0 -747,10.0,0.0,0.0,3.6487550111980756e-09,19.35277302337289,1.0599999827969642,-7.94093905711986,0.0,1.0,0.0 -747,11.0,6.7615965343688185,7.5,0.0,0.0,1.033750476938825,-8.656177131907176,1.0,0.0,0.0 -747,12.0,0.0,0.0,-6.568729214017177e-09,19.87462389718287,1.0599999806777456,-8.656177132388027,0.0,1.0,0.0 -747,13.0,3.743026652954168,1.6,0.0,0.0,1.021121186093123,-9.156952860845308,1.0,0.0,0.0 -747,14.0,4.950454605520028,2.5,0.0,0.0,1.016543125913609,-9.1527330443371,1.0,0.0,0.0 -747,15.0,2.1129989169902554,1.8,0.0,0.0,1.020301826856038,-8.889092879185778,1.0,0.0,0.0 -747,16.0,5.433425786546372,5.8,0.0,0.0,1.0134745889970858,-9.049822140871298,1.0,0.0,0.0 -747,17.0,1.9318847241053767,0.9,0.0,0.0,1.007186903548713,-9.467235180747926,1.0,0.0,0.0 -747,18.0,5.735282774687837,3.4,0.0,0.0,1.004027717761634,-9.546054104464414,1.0,0.0,0.0 -747,19.0,1.3281707478224465,0.7,0.0,0.0,1.0066056413354976,-9.431678210277086,1.0,0.0,0.0 -747,20.0,10.56499458495128,11.2,0.0,0.0,1.0063798703521507,-9.16938023586336,1.0,0.0,0.0 -747,21.0,0.0,0.0,0.0,0.0,1.0068711916954969,-9.166806811973274,1.0,0.0,0.0 -747,22.0,1.9318847241053767,1.6,0.0,0.0,1.0055149741073373,-9.313717659863084,1.0,0.0,0.0 -747,23.0,5.252311593661492,6.7,0.0,0.0,0.9976674456456448,-9.359326836355624,1.0,0.0,0.0 -747,24.0,0.0,0.0,0.0,0.0,0.9895711769130512,-9.038791897324648,1.0,0.0,0.0 -747,25.0,2.1129989169902554,2.3,0.0,0.0,0.97509262649797,-9.168130160407715,1.0,0.0,0.0 -747,26.0,0.0,0.0,0.0,0.0,0.9917353153021242,-8.7381926928601,1.0,0.0,0.0 -747,27.0,0.0,0.0,0.0,0.0,0.9717026015951904,-6.384358649146448,1.0,0.0,0.0 -747,28.0,1.4489135430790323,0.9,0.0,0.0,0.9771917980186828,-9.451326986535513,1.0,0.0,0.0 -747,29.0,6.39936814859906,1.9,0.0,0.0,0.969175260285059,-9.981104647818714,1.0,0.0,0.0 -748,0.0,0.0,0.0,179.52651796414924,0.0027430702967734,1.0,0.0,0.0,0.0,1.0 -748,1.0,13.100593285339585,12.7,2.858195193011287e-06,10.521188806637356,0.9782410155448152,-4.125130766528697,0.0,1.0,0.0 -748,2.0,1.4489135430790323,1.2,0.0,0.0,0.9730544760352028,-5.4348621941654685,1.0,0.0,0.0 -748,3.0,4.588226219750269,1.6,0.0,0.0,0.9662828519482232,-6.684122938857239,1.0,0.0,0.0 -748,4.0,56.869856565852025,19.0,-3.019240596527494e-09,25.051203689428988,0.9565847021778888,-9.939508744495896,0.0,1.0,0.0 -748,5.0,0.0,0.0,0.0,0.0,0.9644250640237014,-7.91293591681304,1.0,0.0,0.0 -748,6.0,13.764678659250809,10.9,0.0,0.0,0.9544867407205948,-9.05955629251783,1.0,0.0,0.0 -748,7.0,18.111419288487905,30.0,-2.7781833095924875e-09,29.32994227209357,0.9625566749911388,-8.375931601949933,0.0,1.0,0.0 -748,8.0,0.0,0.0,0.0,0.0,1.016050634441655,-9.981495175284252,1.0,0.0,0.0 -748,9.0,3.501541062440995,2.0,0.0,0.0,1.0091538323729805,-11.050304943599766,1.0,0.0,0.0 -748,10.0,0.0,0.0,-4.520719680227426e-09,22.39589450053937,1.059997403017242,-9.981495175784486,0.0,1.0,0.0 -748,11.0,6.7615965343688185,7.5,0.0,0.0,1.024949495087964,-10.37137024006439,1.0,0.0,0.0 -748,12.0,0.0,0.0,-3.047328334488299e-09,16.78390467478809,1.0473839299431733,-10.371370240292086,0.0,1.0,0.0 -748,13.0,3.743026652954168,1.6,0.0,0.0,0.9932687453963588,-11.31771219936819,1.0,0.0,0.0 -748,14.0,4.950454605520028,2.5,0.0,0.0,1.0048215716041324,-11.091594457418106,1.0,0.0,0.0 -748,15.0,2.1129989169902554,1.8,0.0,0.0,1.011676283137742,-10.771027167044132,1.0,0.0,0.0 -748,16.0,5.433425786546372,5.8,0.0,0.0,1.005541235783477,-11.079496043876734,1.0,0.0,0.0 -748,17.0,1.9318847241053767,0.9,0.0,0.0,0.9817574156611216,-12.195184429693333,1.0,0.0,0.0 -748,18.0,5.735282774687837,3.4,0.0,0.0,0.9842011799418048,-12.081280557783275,1.0,0.0,0.0 -748,19.0,1.3281707478224465,0.7,0.0,0.0,0.9898333871007902,-11.860632448080962,1.0,0.0,0.0 -748,20.0,10.56499458495128,11.2,0.0,0.0,0.9784800831965458,-11.719885806401884,1.0,0.0,0.0 -748,21.0,0.0,0.0,0.0,0.0,0.9824346665618204,-11.648711726990804,1.0,0.0,0.0 -748,22.0,1.9318847241053767,1.6,0.0,0.0,0.9911469148206796,-11.480648884239192,1.0,0.0,0.0 -748,23.0,5.252311593661492,6.7,0.0,0.0,0.9799398576087434,-11.834733957567204,1.0,0.0,0.0 -748,24.0,0.0,0.0,0.0,0.0,0.962385197752002,-10.782895188435717,1.0,0.0,0.0 -748,25.0,2.1129989169902554,2.3,0.0,0.0,0.9474846172694156,-10.919762234836096,1.0,0.0,0.0 -748,26.0,0.0,0.0,0.0,0.0,0.9698956493123756,-10.665746161976063,1.0,0.0,0.0 -748,27.0,0.0,0.0,0.0,0.0,0.9610017037866564,-8.280021555840337,1.0,0.0,0.0 -748,28.0,1.4489135430790323,0.9,0.0,0.0,0.9550025790723876,-11.41185887552276,1.0,0.0,0.0 -748,29.0,6.39936814859906,1.9,0.0,0.0,0.9467930469949778,-11.966734647129131,1.0,0.0,0.0 -749,0.0,0.0,0.0,177.92680067977216,0.0105101364487936,1.0,0.0,0.0,0.0,1.0 -749,1.0,13.006117707958436,12.7,6.22202897785106e-06,16.35476227848983,0.9794342615953706,-4.113611315421357,0.0,1.0,0.0 -749,2.0,1.4384646312949425,1.2,0.0,0.0,0.9701951492821448,-5.323596551866107,1.0,0.0,0.0 -749,3.0,4.5551379991006495,1.6,0.0,0.0,0.9627366334842627,-6.547895972362681,1.0,0.0,0.0 -749,4.0,56.45973677832649,19.0,1.1897006744769097e-08,26.10004582310721,0.957811713129612,-9.887397169651454,0.0,1.0,0.0 -749,5.0,0.0,0.0,0.0,0.0,0.9631503106954392,-7.84011460100174,1.0,0.0,0.0 -749,6.0,13.66541399730195,10.9,0.0,0.0,0.9542523193934044,-8.991353069704395,1.0,0.0,0.0 -749,7.0,17.980807891186778,30.0,1.355886428767622e-08,37.54690054445344,0.964411554768236,-8.3598456583854,0.0,1.0,0.0 -749,8.0,0.0,0.0,0.0,0.0,1.007288392266379,-9.91834168156617,1.0,0.0,0.0 -749,9.0,3.4762895256294435,2.0,0.0,0.0,0.9946804082554872,-11.006331588444562,1.0,0.0,0.0 -749,10.0,0.0,0.0,1.5394324790187477e-08,23.981497734334773,1.054587924281594,-9.9183416798391,0.0,1.0,0.0 -749,11.0,6.712834946043063,7.5,0.0,0.0,0.9957336355715164,-10.111941627861148,1.0,0.0,0.0 -749,12.0,0.0,0.0,0.0,0.0,0.9957336355715164,-10.111941627861148,0.0,1.0,0.0 -749,13.0,3.716033630845268,1.6,0.0,0.0,0.9863569609061976,-10.614800242009556,1.0,0.0,0.0 -749,14.0,4.914754156924386,2.5,0.0,0.0,0.9853894989937768,-10.663958109067012,1.0,0.0,0.0 -749,15.0,2.097760920638457,1.8,0.0,0.0,0.988573292632521,-10.641105738486171,1.0,0.0,0.0 -749,16.0,5.394242367356033,5.8,0.0,0.0,0.9883343464895944,-11.001306584889148,1.0,0.0,0.0 -749,17.0,1.9179528417265896,0.9,0.0,0.0,0.9789200592862028,-11.188043251297644,1.0,0.0,0.0 -749,18.0,5.693922498875813,3.4,0.0,0.0,0.9775443500856932,-11.386289982818065,1.0,0.0,0.0 -749,19.0,1.3185925786870305,0.7,0.0,0.0,0.9811600835849432,-11.328193950003252,1.0,0.0,0.0 -749,20.0,10.488804603192287,11.2,0.0,0.0,0.982369692989762,-11.260856770358728,1.0,0.0,0.0 -749,21.0,0.0,0.0,0.0,0.0,0.9823523644750422,-11.26806227348513,1.0,0.0,0.0 -749,22.0,1.9179528417265896,1.6,0.0,0.0,0.9586489358114422,-11.746336699165038,1.0,0.0,0.0 -749,23.0,5.214434288444165,6.7,0.0,0.0,0.96580147685433,-11.5565721577795,1.0,0.0,0.0 -749,24.0,0.0,0.0,0.0,0.0,0.9654382108097832,-11.22288967933578,1.0,0.0,0.0 -749,25.0,2.097760920638457,2.3,0.0,0.0,0.9506278376668472,-11.355257853556548,1.0,0.0,0.0 -749,26.0,0.0,0.0,0.0,0.0,0.972572650054616,-10.903218726719022,1.0,0.0,0.0 -749,27.0,0.0,0.0,0.0,0.0,0.9606300685059028,-8.257764802540004,1.0,0.0,0.0 -749,28.0,1.4384646312949425,0.9,0.0,0.0,0.9577889273448924,-11.638374437133873,1.0,0.0,0.0 -749,29.0,6.353218788219328,1.9,0.0,0.0,0.949646065983953,-12.185425130396736,1.0,0.0,0.0 -750,0.0,0.0,0.0,133.73995556344894,1.029413709829896e-06,1.0,0.0,0.0,0.0,1.0 -750,1.0,13.006117707958436,12.7,46.03293617123272,-7.963069287452029,0.9743171955566448,-4.415596182508527,0.0,1.0,0.0 -750,2.0,1.4384646312949425,1.2,0.0,0.0,1.000738127296891,-0.1578702116660557,1.0,0.0,0.0 -750,3.0,4.5551379991006495,1.6,0.0,0.0,0.9559826649889316,-10.016618912502182,1.0,0.0,0.0 -750,4.0,56.45973677832649,19.0,2.4521128077466926e-09,39.99999864732145,0.9678372423092924,-11.541099141755163,0.0,1.0,0.0 -750,5.0,0.0,0.0,0.0,0.0,0.9594705812072968,-10.443514913902368,1.0,0.0,0.0 -750,6.0,13.66541399730195,10.9,0.0,0.0,0.9560541102323488,-11.19825454825011,1.0,0.0,0.0 -750,7.0,17.980807891186778,30.0,-1.017158709240728e-09,39.99999862334696,0.9617322644782262,-10.99005128841581,0.0,1.0,0.0 -750,8.0,0.0,0.0,0.0,0.0,1.0205268808275103,-10.443514913897964,1.0,0.0,0.0 -750,9.0,3.4762895256294435,2.0,0.0,0.0,0.9691836206896768,-16.287048680823208,1.0,0.0,0.0 -750,10.0,0.0,0.0,3.701601425691009e-11,20.11610754823697,1.059999997614761,-10.443514913893887,0.0,1.0,0.0 -750,11.0,6.712834946043063,7.5,0.0,0.0,1.0199597965839586,-14.47928664528562,1.0,0.0,0.0 -750,12.0,0.0,0.0,-9.715201586561223e-10,23.999999208155938,1.0519019365533109,-14.479286645358249,0.0,1.0,0.0 -750,13.0,3.716033630845268,1.6,0.0,0.0,0.985816883479706,-15.93329326767304,1.0,0.0,0.0 -750,14.0,4.914754156924386,2.5,0.0,0.0,0.9543219307508606,-16.400744473289894,1.0,0.0,0.0 -750,15.0,2.097760920638457,1.8,0.0,0.0,0.9906367785218708,-15.276007613140653,1.0,0.0,0.0 -750,16.0,5.394242367356033,5.8,0.0,0.0,0.9715627757035176,-16.11398993054297,1.0,0.0,0.0 -750,17.0,1.9179528417265896,0.9,0.0,0.0,0.9495579232980323,-16.78994772121689,1.0,0.0,0.0 -750,18.0,5.693922498875813,3.4,0.0,0.0,0.9492562478524988,-16.90019712103575,1.0,0.0,0.0 -750,19.0,1.3185925786870305,0.7,0.0,0.0,0.95357077186423,-16.786154452399032,1.0,0.0,0.0 -750,20.0,10.488804603192287,11.2,0.0,0.0,0.95823425644974,-16.445190458314954,1.0,0.0,0.0 -750,21.0,0.0,0.0,0.0,0.0,0.9587595547811152,-16.418166421828772,1.0,0.0,0.0 -750,22.0,1.9179528417265896,1.6,0.0,0.0,0.949308835119993,-16.44104842194771,1.0,0.0,0.0 -750,23.0,5.214434288444165,6.7,0.0,0.0,0.949849684464552,-16.302191280262072,1.0,0.0,0.0 -750,24.0,0.0,0.0,0.0,0.0,0.9549778826558458,-15.223769645423852,1.0,0.0,0.0 -750,25.0,2.097760920638457,2.3,0.0,0.0,0.9400000023487454,-15.359100719678128,1.0,0.0,0.0 -750,26.0,0.0,0.0,0.0,0.0,0.9654880068828348,-14.441395305017004,1.0,0.0,0.0 -750,27.0,0.0,0.0,0.0,0.0,0.9538223471081592,-10.942564217562111,1.0,0.0,0.0 -750,28.0,1.4384646312949425,0.9,0.0,0.0,0.950588421095104,-15.187547537176972,1.0,0.0,0.0 -750,29.0,6.353218788219328,1.9,0.0,0.0,0.9423816284711408,-15.742982163695633,1.0,0.0,0.0 -751,0.0,0.0,0.0,177.83350643332366,0.0012716961734327,1.0,0.0,0.0,0.0,1.0 -751,1.0,13.006117707958436,12.7,1.3994058582706772e-06,12.1715706860793,0.978764541265021,-4.092553360073217,0.0,1.0,0.0 -751,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722030101391338,-5.3657027712641,1.0,0.0,0.0 -751,3.0,4.5551379991006495,1.6,0.0,0.0,0.9652187995748696,-6.598984720853695,1.0,0.0,0.0 -751,4.0,56.45973677832649,19.0,-1.6356056872204474e-10,25.164555409801608,0.9572412383256624,-9.852520255082489,0.0,1.0,0.0 -751,5.0,0.0,0.0,0.0,0.0,0.9646255073256476,-7.828924806858134,1.0,0.0,0.0 -751,6.0,13.66541399730195,10.9,0.0,0.0,0.9548951471686228,-8.970929159733126,1.0,0.0,0.0 -751,7.0,17.980807891186778,30.0,-1.7129125562746715e-10,31.07841228883405,0.963618118206128,-8.303743397126544,0.0,1.0,0.0 -751,8.0,0.0,0.0,0.0,0.0,1.0140646718425348,-9.820502269205166,1.0,0.0,0.0 -751,9.0,3.4762895256294435,2.0,0.0,0.0,1.0049207611977276,-10.854098028761848,1.0,0.0,0.0 -751,10.0,0.0,0.0,-3.0476505299212186e-10,23.409336417873316,1.059999974593689,-9.820502269238958,0.0,1.0,0.0 -751,11.0,6.712834946043063,7.5,0.0,0.0,1.0129300868962108,-10.344766381328716,1.0,0.0,0.0 -751,12.0,0.0,0.0,-2.138267744318796e-10,11.121126673912896,1.028074492728282,-10.344766381345185,0.0,1.0,0.0 -751,13.0,3.716033630845268,1.6,0.0,0.0,1.0012971497743504,-10.873148494365926,1.0,0.0,0.0 -751,14.0,4.914754156924386,2.5,0.0,0.0,0.997731728571681,-10.907389534539384,1.0,0.0,0.0 -751,15.0,2.097760920638457,1.8,0.0,0.0,1.0031072532152725,-10.68923445078716,1.0,0.0,0.0 -751,16.0,5.394242367356033,5.8,0.0,0.0,0.9998963803069996,-10.913848266520734,1.0,0.0,0.0 -751,17.0,1.9179528417265896,0.9,0.0,0.0,0.9906726937797556,-11.282502456529498,1.0,0.0,0.0 -751,18.0,5.693922498875813,3.4,0.0,0.0,0.9889073659996688,-11.39462653134534,1.0,0.0,0.0 -751,19.0,1.3185925786870305,0.7,0.0,0.0,0.9922698918069788,-11.294858653444342,1.0,0.0,0.0 -751,20.0,10.488804603192287,11.2,0.0,0.0,0.9940229343936734,-11.064440565717645,1.0,0.0,0.0 -751,21.0,0.0,0.0,0.0,0.0,0.994413415858771,-11.059555143941264,1.0,0.0,0.0 -751,22.0,1.9179528417265896,1.6,0.0,0.0,0.9887641904872532,-11.11299399445132,1.0,0.0,0.0 -751,23.0,5.214434288444165,6.7,0.0,0.0,0.9837705634442996,-11.213856454311188,1.0,0.0,0.0 -751,24.0,0.0,0.0,0.0,0.0,0.9771368209863048,-10.916693715856866,1.0,0.0,0.0 -751,25.0,2.097760920638457,2.3,0.0,0.0,0.9625093329147149,-11.045862701276784,1.0,0.0,0.0 -751,26.0,0.0,0.0,0.0,0.0,0.9802950550691304,-10.6284253285461,1.0,0.0,0.0 -751,27.0,0.0,0.0,0.0,0.0,0.9624416810581508,-8.222418442385564,1.0,0.0,0.0 -751,28.0,1.4384646312949425,0.9,0.0,0.0,0.965635526589944,-11.351870791652996,1.0,0.0,0.0 -751,29.0,6.353218788219328,1.9,0.0,0.0,0.9575611896328796,-11.890000184735326,1.0,0.0,0.0 -752,0.0,0.0,0.0,178.27241671157358,0.0025022238882677,1.0,0.0,0.0,0.0,1.0 -752,1.0,13.006117707958436,12.7,6.477162107629119e-07,27.35918130993518,0.9804594090537542,-4.129260850406284,0.0,1.0,0.0 -752,2.0,1.4384646312949425,1.2,0.0,0.0,0.9671605881707264,-5.326664130682439,1.0,0.0,0.0 -752,3.0,4.5551379991006495,1.6,0.0,0.0,0.9589979622079684,-6.553580399223254,1.0,0.0,0.0 -752,4.0,56.45973677832649,19.0,-3.766773530638808e-10,30.36308430449799,0.9576360721561866,-9.885814217217902,0.0,1.0,0.0 -752,5.0,0.0,0.0,0.0,0.0,0.9531462743626924,-7.595285082372148,1.0,0.0,0.0 -752,6.0,13.66541399730195,10.9,0.0,0.0,0.9482306438748684,-8.846083710630937,1.0,0.0,0.0 -752,7.0,17.980807891186778,30.0,0.0,0.0,0.9402834245268448,-7.884001515847978,0.0,1.0,0.0 -752,8.0,0.0,0.0,0.0,0.0,1.0133496075781827,-10.13583435202152,1.0,0.0,0.0 -752,9.0,3.4762895256294435,2.0,0.0,0.0,1.0099432270323314,-11.432044553899324,1.0,0.0,0.0 -752,10.0,0.0,0.0,-5.540752648847861e-10,23.77364023299245,1.0599997792595093,-10.135834352082988,0.0,1.0,0.0 -752,11.0,6.712834946043063,7.5,0.0,0.0,1.0225274813007612,-10.974906418564066,1.0,0.0,0.0 -752,12.0,0.0,0.0,-4.983378658520756e-10,23.999148238828692,1.0543930254787537,-10.974906418601142,0.0,1.0,0.0 -752,13.0,3.716033630845268,1.6,0.0,0.0,1.007692619897813,-11.595285544951944,1.0,0.0,0.0 -752,14.0,4.914754156924386,2.5,0.0,0.0,1.0002762366215467,-11.65476232905292,1.0,0.0,0.0 -752,15.0,2.097760920638457,1.8,0.0,0.0,1.0108046236143544,-11.285269809891606,1.0,0.0,0.0 -752,16.0,5.394242367356033,5.8,0.0,0.0,1.0057732290204455,-11.49930705441616,1.0,0.0,0.0 -752,17.0,1.9179528417265896,0.9,0.0,0.0,0.9789672956487224,-12.482645814286364,1.0,0.0,0.0 -752,18.0,5.693922498875813,3.4,0.0,0.0,0.9688494495545016,-12.871696596279524,1.0,0.0,0.0 -752,19.0,1.3185925786870305,0.7,0.0,0.0,0.967894228668914,-12.911939426888758,1.0,0.0,0.0 -752,20.0,10.488804603192287,11.2,0.0,0.0,0.9978708446889992,-11.657097503891263,1.0,0.0,0.0 -752,21.0,0.0,0.0,0.0,0.0,0.9995454167774014,-11.57402411243433,1.0,0.0,0.0 -752,22.0,1.9179528417265896,1.6,0.0,0.0,0.9911844336946825,-11.73466745240808,1.0,0.0,0.0 -752,23.0,5.214434288444165,6.7,0.0,0.0,0.9859856491880172,-11.666469597106529,1.0,0.0,0.0 -752,24.0,0.0,0.0,0.0,0.0,0.973976192084962,-11.054531846974738,1.0,0.0,0.0 -752,25.0,2.097760920638457,2.3,0.0,0.0,0.9592997475055436,-11.184553566505588,1.0,0.0,0.0 -752,26.0,0.0,0.0,0.0,0.0,0.9737449484899784,-10.573053783838391,1.0,0.0,0.0 -752,27.0,0.0,0.0,0.0,0.0,0.9489883606122638,-7.988871354993032,1.0,0.0,0.0 -752,28.0,1.4384646312949425,0.9,0.0,0.0,0.9589802186698502,-11.306413490933132,1.0,0.0,0.0 -752,29.0,6.353218788219328,1.9,0.0,0.0,0.9508478369295466,-11.852095467744077,1.0,0.0,0.0 -753,0.0,0.0,0.0,177.97355502133,0.003655793102375,1.0,0.0,0.0,0.0,1.0 -753,1.0,13.006117707958436,12.7,2.429185638963666e-06,18.498136042747035,0.9796307728399716,-4.112255703214333,0.0,1.0,0.0 -753,2.0,1.4384646312949425,1.2,0.0,0.0,0.9696442611965344,-5.334736414855469,1.0,0.0,0.0 -753,3.0,4.5551379991006495,1.6,0.0,0.0,0.9620599264586804,-6.562084280955529,1.0,0.0,0.0 -753,4.0,56.45973677832649,19.0,-3.186954821088834e-09,27.84153506875427,0.9583796589911694,-9.882198584706297,0.0,1.0,0.0 -753,5.0,0.0,0.0,0.0,0.0,0.9605418638471004,-7.753328181221173,1.0,0.0,0.0 -753,6.0,13.66541399730195,10.9,0.0,0.0,0.952937882715802,-8.937433132113572,1.0,0.0,0.0 -753,7.0,17.980807891186778,30.0,-3.719720742922834e-09,39.996082785095226,0.9626629304827534,-8.293538385382378,0.0,1.0,0.0 -753,8.0,0.0,0.0,0.0,0.0,0.984521807652736,-9.596973324127084,1.0,0.0,0.0 -753,9.0,3.4762895256294435,2.0,0.0,0.0,0.9861870393624472,-10.567864765348965,1.0,0.0,0.0 -753,10.0,0.0,0.0,0.0,0.0,0.984521807652736,-9.596973324127084,0.0,1.0,0.0 -753,11.0,6.712834946043063,7.5,0.0,0.0,1.006672769771158,-10.519329960278396,1.0,0.0,0.0 -753,12.0,0.0,0.0,-4.184250699468238e-09,16.91645866178453,1.0296733097504245,-10.519329960602198,0.0,1.0,0.0 -753,13.0,3.716033630845268,1.6,0.0,0.0,0.99260707241589,-11.077714492570124,1.0,0.0,0.0 -753,14.0,4.914754156924386,2.5,0.0,0.0,0.986597242244517,-11.080937357926608,1.0,0.0,0.0 -753,15.0,2.097760920638457,1.8,0.0,0.0,0.9916862743055688,-10.64374186728019,1.0,0.0,0.0 -753,16.0,5.394242367356033,5.8,0.0,0.0,0.98327716907553,-10.715652731710223,1.0,0.0,0.0 -753,17.0,1.9179528417265896,0.9,0.0,0.0,0.9767451107840044,-11.305367465479296,1.0,0.0,0.0 -753,18.0,5.693922498875813,3.4,0.0,0.0,0.9733547352833668,-11.32441832435192,1.0,0.0,0.0 -753,19.0,1.3185925786870305,0.7,0.0,0.0,0.975933523963205,-11.170209053490964,1.0,0.0,0.0 -753,20.0,10.488804603192287,11.2,0.0,0.0,0.9775448778147234,-10.729997009950186,1.0,0.0,0.0 -753,21.0,0.0,0.0,0.0,0.0,0.978724287740664,-10.70804005148745,1.0,0.0,0.0 -753,22.0,1.9179528417265896,1.6,0.0,0.0,0.9709314902245604,-11.44603204281874,1.0,0.0,0.0 -753,23.0,5.214434288444165,6.7,0.0,0.0,0.9571833499707152,-11.764935377358867,1.0,0.0,0.0 -753,24.0,0.0,0.0,0.0,0.0,0.9592275644194418,-11.357419100926316,1.0,0.0,0.0 -753,25.0,2.097760920638457,2.3,0.0,0.0,0.9443181987596112,-11.4915344827623,1.0,0.0,0.0 -753,26.0,0.0,0.0,0.0,0.0,0.967888182963658,-10.98863858323295,1.0,0.0,0.0 -753,27.0,0.0,0.0,0.0,0.0,0.9578939424462344,-8.189119321088498,1.0,0.0,0.0 -753,28.0,1.4384646312949425,0.9,0.0,0.0,0.9530280592064696,-11.731037715106496,1.0,0.0,0.0 -753,29.0,6.353218788219328,1.9,0.0,0.0,0.9448430414359114,-12.283610222141592,1.0,0.0,0.0 -754,0.0,0.0,0.0,119.20726934321613,4.853233370738508e-07,1.0,0.0,0.0,0.0,1.0 -754,1.0,13.006117707958436,12.7,56.78758169854704,-20.39595247769159,0.9838796384351772,-2.3815356921427697,0.0,1.0,0.0 -754,2.0,1.4384646312949425,1.2,0.0,0.0,0.9828946480814008,-4.483614040739254,1.0,0.0,0.0 -754,3.0,4.5551379991006495,1.6,0.0,0.0,0.9782583405360548,-5.499196291431132,1.0,0.0,0.0 -754,4.0,56.45973677832649,19.0,-1.4484150095765583e-09,39.999999495580994,0.9830068770574631,-8.494029924624702,0.0,1.0,0.0 -754,5.0,0.0,0.0,0.0,0.0,0.9802983203813698,-6.599427472079507,1.0,0.0,0.0 -754,6.0,13.66541399730195,10.9,0.0,0.0,0.9748658272423862,-7.672843483471797,1.0,0.0,0.0 -754,7.0,17.980807891186778,30.0,-1.7198611277515227e-09,39.99999967676073,0.9826186461928864,-7.114143884309824,0.0,1.0,0.0 -754,8.0,0.0,0.0,0.0,0.0,1.026038327149068,-8.515373814343402,1.0,0.0,0.0 -754,9.0,3.4762895256294435,2.0,0.0,0.0,1.021055462637868,-9.509916964478768,1.0,0.0,0.0 -754,10.0,0.0,0.0,-2.7296402215562053e-09,17.307390690671944,1.0599999994648897,-8.515373814642503,0.0,1.0,0.0 -754,11.0,6.712834946043063,7.5,0.0,0.0,1.0361372311991413,-9.159896402842392,1.0,0.0,0.0 -754,12.0,0.0,0.0,-3.019469527284873e-09,18.06752460192233,1.0599999995514016,-9.159896403062916,0.0,1.0,0.0 -754,13.0,3.716033630845268,1.6,0.0,0.0,1.0238435439596312,-9.658709078592889,1.0,0.0,0.0 -754,14.0,4.914754156924386,2.5,0.0,0.0,1.019508858492328,-9.664710816877372,1.0,0.0,0.0 -754,15.0,2.097760920638457,1.8,0.0,0.0,1.023477834321202,-9.416203422802736,1.0,0.0,0.0 -754,16.0,5.394242367356033,5.8,0.0,0.0,1.0174044099873247,-9.59304275040566,1.0,0.0,0.0 -754,17.0,1.9179528417265896,0.9,0.0,0.0,1.0106570799323151,-9.988260701813504,1.0,0.0,0.0 -754,18.0,5.693922498875813,3.4,0.0,0.0,1.0077800510591413,-10.074186724359611,1.0,0.0,0.0 -754,19.0,1.3185925786870305,0.7,0.0,0.0,1.0104766218927266,-9.966337160095472,1.0,0.0,0.0 -754,20.0,10.488804603192287,11.2,0.0,0.0,1.010658444991872,-9.7200492991913,1.0,0.0,0.0 -754,21.0,0.0,0.0,0.0,0.0,1.0111440716256932,-9.71754707711096,1.0,0.0,0.0 -754,22.0,1.9179528417265896,1.6,0.0,0.0,1.0090711982394784,-9.838701146994312,1.0,0.0,0.0 -754,23.0,5.214434288444165,6.7,0.0,0.0,1.0019715598746464,-9.904924710609418,1.0,0.0,0.0 -754,24.0,0.0,0.0,0.0,0.0,0.9945632850057592,-9.61441530512125,1.0,0.0,0.0 -754,25.0,2.097760920638457,2.3,0.0,0.0,0.980199878282921,-9.739030639273494,1.0,0.0,0.0 -754,26.0,0.0,0.0,0.0,0.0,0.9971073798417616,-9.334787698251946,1.0,0.0,0.0 -754,27.0,0.0,0.0,0.0,0.0,0.978896799860838,-6.993534988220055,1.0,0.0,0.0 -754,28.0,1.4384646312949425,0.9,0.0,0.0,0.965721057078538,-10.894187420781597,1.0,0.0,0.0 -754,29.0,6.353218788219328,1.9,0.0,0.0,0.9400000018487346,-12.424379560634035,1.0,0.0,0.0 -755,0.0,0.0,0.0,177.84144904100302,0.0018631904571186,1.0,0.0,0.0,0.0,1.0 -755,1.0,13.006117707958436,12.7,1.909131499261599e-06,12.946889296107544,0.9788469822848436,-4.094474966333571,0.0,1.0,0.0 -755,2.0,1.4384646312949425,1.2,0.0,0.0,0.9719602720172238,-5.362093102092914,1.0,0.0,0.0 -755,3.0,4.5551379991006495,1.6,0.0,0.0,0.9649189971313084,-6.59465078681492,1.0,0.0,0.0 -755,4.0,56.45973677832649,19.0,4.6397780980204606e-10,25.41270193776562,0.9572332292187552,-9.85500983079921,0.0,1.0,0.0 -755,5.0,0.0,0.0,0.0,0.0,0.9640221200208484,-7.819050325835101,1.0,0.0,0.0 -755,6.0,13.66541399730195,10.9,0.0,0.0,0.9545329374306276,-8.966073198084857,1.0,0.0,0.0 -755,7.0,17.980807891186778,30.0,5.384473173947812e-10,33.22465544661709,0.9633346010714796,-8.311948072628773,0.0,1.0,0.0 -755,8.0,0.0,0.0,0.0,0.0,1.0138301324886787,-9.810240836520904,1.0,0.0,0.0 -755,9.0,3.4762895256294435,2.0,0.0,0.0,1.004763854973305,-10.843150653913575,1.0,0.0,0.0 -755,10.0,0.0,0.0,7.845370048140833e-10,23.528873025326718,1.0599999966828593,-9.810240836433898,0.0,1.0,0.0 -755,11.0,6.712834946043063,7.5,0.0,0.0,1.0135087949036807,-10.346432897932848,1.0,0.0,0.0 -755,12.0,0.0,0.0,5.472104635893747e-10,11.862870492389115,1.0296387422415103,-10.346432897890786,0.0,1.0,0.0 -755,13.0,3.716033630845268,1.6,0.0,0.0,1.0017598860791723,-10.873352580730735,1.0,0.0,0.0 -755,14.0,4.914754156924386,2.5,0.0,0.0,0.99808447781992,-10.903895504780724,1.0,0.0,0.0 -755,15.0,2.097760920638457,1.8,0.0,0.0,1.0033778076022914,-10.683843161689945,1.0,0.0,0.0 -755,16.0,5.394242367356033,5.8,0.0,0.0,0.9998706406951968,-10.905147319218102,1.0,0.0,0.0 -755,17.0,1.9179528417265896,0.9,0.0,0.0,0.9908477869526277,-11.276182705688448,1.0,0.0,0.0 -755,18.0,5.693922498875813,3.4,0.0,0.0,0.9889766773231776,-11.386692030412688,1.0,0.0,0.0 -755,19.0,1.3185925786870305,0.7,0.0,0.0,0.992283167816465,-11.286082569342677,1.0,0.0,0.0 -755,20.0,10.488804603192287,11.2,0.0,0.0,0.9938345192284332,-11.052757173017312,1.0,0.0,0.0 -755,21.0,0.0,0.0,0.0,0.0,0.994215785776274,-11.047597827104283,1.0,0.0,0.0 -755,22.0,1.9179528417265896,1.6,0.0,0.0,0.9888308935127796,-11.103936846016056,1.0,0.0,0.0 -755,23.0,5.214434288444165,6.7,0.0,0.0,0.9834540972566568,-11.197524679847866,1.0,0.0,0.0 -755,24.0,0.0,0.0,0.0,0.0,0.9761454867845746,-10.881642720370532,1.0,0.0,0.0 -755,25.0,2.097760920638457,2.3,0.0,0.0,0.9615026792100148,-11.011078257373782,1.0,0.0,0.0 -755,26.0,0.0,0.0,0.0,0.0,0.9788871975141742,-10.582151932316304,1.0,0.0,0.0 -755,27.0,0.0,0.0,0.0,0.0,0.9603607746149052,-8.170895702741415,1.0,0.0,0.0 -755,28.0,1.4384646312949425,0.9,0.0,0.0,0.9642051880887532,-11.30771119907814,1.0,0.0,0.0 -755,29.0,6.353218788219328,1.9,0.0,0.0,0.9561184475218442,-11.847450448277227,1.0,0.0,0.0 -756,0.0,0.0,0.0,178.11094612093345,0.0096900978167724,1.0,0.0,0.0,0.0,1.0 -756,1.0,13.006117707958436,12.7,8.432844620985924e-06,14.141872733464195,0.9785344462912644,-4.191725480104133,0.0,1.0,0.0 -756,2.0,1.4384646312949425,1.2,0.0,0.0,0.9723987261394852,-5.10903835932672,1.0,0.0,0.0 -756,3.0,4.5551379991006495,1.6,0.0,0.0,0.9654134652030028,-6.279964123378867,1.0,0.0,0.0 -756,4.0,56.45973677832649,19.0,2.2396698027492855e-08,24.08019866771764,0.9577696402729416,-11.25610704910297,0.0,1.0,0.0 -756,5.0,0.0,0.0,0.0,0.0,0.9625153953403616,-7.439678042845123,1.0,0.0,0.0 -756,6.0,13.66541399730195,10.9,0.0,0.0,0.94988514302652,-7.97236832559583,1.0,0.0,0.0 -756,7.0,17.980807891186778,30.0,1.1601637431913821e-08,38.56662172418928,0.9641498367219892,-7.972514691793173,0.0,1.0,0.0 -756,8.0,0.0,0.0,0.0,0.0,1.006794392613218,-9.731350572632834,1.0,0.0,0.0 -756,9.0,3.4762895256294435,2.0,0.0,0.0,0.9943577865256442,-10.93063990798224,1.0,0.0,0.0 -756,10.0,0.0,0.0,1.6523980091389693e-08,23.99318266456134,1.0541372050145676,-9.731350570777323,0.0,1.0,0.0 -756,11.0,6.712834946043063,7.5,0.0,0.0,1.0215054625955926,-9.33373711573246,1.0,0.0,0.0 -756,12.0,0.0,0.0,1.1868497823511496e-08,9.611487745287722,1.0345126337068693,-9.333737114831576,0.0,1.0,0.0 -756,13.0,3.716033630845268,1.6,0.0,0.0,0.991079523107926,-10.410429060532024,1.0,0.0,0.0 -756,14.0,4.914754156924386,2.5,0.0,0.0,1.0025974977807082,-10.186417410317013,1.0,0.0,0.0 -756,15.0,2.097760920638457,1.8,0.0,0.0,0.9806992116114446,-11.340025930603266,1.0,0.0,0.0 -756,16.0,5.394242367356033,5.8,0.0,0.0,0.9853546345775428,-11.156767029169009,1.0,0.0,0.0 -756,17.0,1.9179528417265896,0.9,0.0,0.0,0.9899995853552808,-10.837558841355593,1.0,0.0,0.0 -756,18.0,5.693922498875813,3.4,0.0,0.0,0.9849835629129078,-11.11697707817942,1.0,0.0,0.0 -756,19.0,1.3185925786870305,0.7,0.0,0.0,0.9866457350939992,-11.104072220125197,1.0,0.0,0.0 -756,20.0,10.488804603192287,11.2,0.0,0.0,0.981947899013328,-11.171713252619607,1.0,0.0,0.0 -756,21.0,0.0,0.0,0.0,0.0,0.9819019978379204,-11.174488315116228,1.0,0.0,0.0 -756,22.0,1.9179528417265896,1.6,0.0,0.0,0.9579124340985914,-11.5908064581705,1.0,0.0,0.0 -756,23.0,5.214434288444165,6.7,0.0,0.0,0.9650704825301116,-11.400752163875207,1.0,0.0,0.0 -756,24.0,0.0,0.0,0.0,0.0,0.9641570560718494,-10.955034740685685,1.0,0.0,0.0 -756,25.0,2.097760920638457,2.3,0.0,0.0,0.9493263719484348,-11.087760519066372,1.0,0.0,0.0 -756,26.0,0.0,0.0,0.0,0.0,0.9709315239491444,-10.566456221684229,1.0,0.0,0.0 -756,27.0,0.0,0.0,0.0,0.0,0.9577575804636962,-7.826279421808459,1.0,0.0,0.0 -756,28.0,1.4384646312949425,0.9,0.0,0.0,0.9561211278679108,-11.304137365308089,1.0,0.0,0.0 -756,29.0,6.353218788219328,1.9,0.0,0.0,0.9479635489103214,-11.853112944312446,1.0,0.0,0.0 -757,0.0,0.0,0.0,96.32072790718374,1.6999412544294046e-06,1.0,0.0,0.0,0.0,1.0 -757,1.0,13.006117707958436,12.7,79.23903241568156,33.229555517522144,0.9932036067351108,-1.8758313178437824,0.0,1.0,0.0 -757,2.0,1.4384646312949425,1.2,0.0,0.0,0.966469271200892,-3.8058686573024185,1.0,0.0,0.0 -757,3.0,4.5551379991006495,1.6,0.0,0.0,0.9579608061407708,-4.661429222062478,1.0,0.0,0.0 -757,4.0,56.45973677832649,19.0,1.1444260524927996e-08,39.999995508342806,0.9742666947920888,-7.883765342007065,0.0,1.0,0.0 -757,5.0,0.0,0.0,0.0,0.0,0.9534399494084476,-5.671248738094844,1.0,0.0,0.0 -757,6.0,13.66541399730195,10.9,0.0,0.0,0.9552611794282072,-6.880080675240119,1.0,0.0,0.0 -757,7.0,17.980807891186778,30.0,0.0,0.0,0.9403733918769972,-5.955671818747513,0.0,1.0,0.0 -757,8.0,0.0,0.0,0.0,0.0,0.9983994106379588,-7.798679822365221,1.0,0.0,0.0 -757,9.0,3.4762895256294435,2.0,0.0,0.0,0.9861385680203992,-8.910741472146562,1.0,0.0,0.0 -757,10.0,0.0,0.0,2.2475541779727992e-08,23.999998312837352,1.0461186593526253,-7.79867981980067,0.0,1.0,0.0 -757,11.0,6.712834946043063,7.5,0.0,0.0,0.985268165418366,-8.340859321543503,1.0,0.0,0.0 -757,12.0,0.0,0.0,0.0,0.0,0.985268165418366,-8.340859321543503,0.0,1.0,0.0 -757,13.0,3.716033630845268,1.6,0.0,0.0,0.974471088202608,-8.889183259786519,1.0,0.0,0.0 -757,14.0,4.914754156924386,2.5,0.0,0.0,0.9719984225105642,-8.942643864846422,1.0,0.0,0.0 -757,15.0,2.097760920638457,1.8,0.0,0.0,0.9791065975172678,-8.737587595349435,1.0,0.0,0.0 -757,16.0,5.394242367356033,5.8,0.0,0.0,0.9793936371716296,-8.966297776522275,1.0,0.0,0.0 -757,17.0,1.9179528417265896,0.9,0.0,0.0,0.9671569758385206,-9.34539292103171,1.0,0.0,0.0 -757,18.0,5.693922498875813,3.4,0.0,0.0,0.9667647339018232,-9.46807710500977,1.0,0.0,0.0 -757,19.0,1.3185925786870305,0.7,0.0,0.0,0.9709497589846272,-9.366708217012052,1.0,0.0,0.0 -757,20.0,10.488804603192287,11.2,0.0,0.0,0.9747361993180672,-9.125210739860195,1.0,0.0,0.0 -757,21.0,0.0,0.0,0.0,0.0,0.975042937208944,-9.118684642025071,1.0,0.0,0.0 -757,22.0,1.9179528417265896,1.6,0.0,0.0,0.9650882959435292,-9.153940463642485,1.0,0.0,0.0 -757,23.0,5.214434288444165,6.7,0.0,0.0,0.9630080974201058,-9.251976065114407,1.0,0.0,0.0 -757,24.0,0.0,0.0,0.0,0.0,0.9585286417836266,-8.924746417194122,1.0,0.0,0.0 -757,25.0,2.097760920638457,2.3,0.0,0.0,0.9436080516765007,-9.059060578585656,1.0,0.0,0.0 -757,26.0,0.0,0.0,0.0,0.0,0.9631659458661544,-8.61142839707887,1.0,0.0,0.0 -757,27.0,0.0,0.0,0.0,0.0,0.9480999356171615,-6.038676660594814,1.0,0.0,0.0 -757,28.0,1.4384646312949425,0.9,0.0,0.0,0.948227975560648,-9.361238867121848,1.0,0.0,0.0 -757,29.0,6.353218788219328,1.9,0.0,0.0,0.940000002191723,-9.919463975729862,1.0,0.0,0.0 -758,0.0,0.0,0.0,133.75137799536566,5.327036589619638e-07,1.0,0.0,0.0,0.0,1.0 -758,1.0,13.006117707958436,12.7,44.782824416156416,2.35076368482526,0.9834295051213444,-3.405407031292388,0.0,1.0,0.0 -758,2.0,1.4384646312949425,1.2,0.0,0.0,0.97569516538916,-3.007782922634056,1.0,0.0,0.0 -758,3.0,4.5551379991006495,1.6,0.0,0.0,0.9693145087030376,-3.6691232780847822,1.0,0.0,0.0 -758,4.0,56.45973677832649,19.0,2.369791111108753e-09,39.99999931723433,0.9772886617790452,-10.980871616488134,0.0,1.0,0.0 -758,5.0,0.0,0.0,0.0,0.0,0.9690034573247156,-10.521296122748169,1.0,0.0,0.0 -758,6.0,13.66541399730195,10.9,0.0,0.0,0.9655136287277,-11.008457423253097,1.0,0.0,0.0 -758,7.0,17.980807891186778,30.0,3.668906844560226e-09,39.9999996278558,0.9710239242978744,-11.050272297288211,0.0,1.0,0.0 -758,8.0,0.0,0.0,0.0,0.0,1.007427526018855,-12.179320095047704,1.0,0.0,0.0 -758,9.0,3.4762895256294435,2.0,0.0,0.0,0.9915261642989248,-13.05543033797413,1.0,0.0,0.0 -758,10.0,0.0,0.0,7.723360707072619e-09,23.99999977549061,1.054756006923756,-12.179320094181485,0.0,1.0,0.0 -758,11.0,6.712834946043063,7.5,0.0,0.0,1.0124982495234125,-7.957810287281613,1.0,0.0,0.0 -758,12.0,0.0,0.0,0.0,0.0,1.0124982495234125,-7.957810287281613,0.0,1.0,0.0 -758,13.0,3.716033630845268,1.6,0.0,0.0,1.0038346680345105,-8.382846508065052,1.0,0.0,0.0 -758,14.0,4.914754156924386,2.5,0.0,0.0,0.9400000003095662,-14.953961640527831,1.0,0.0,0.0 -758,15.0,2.097760920638457,1.8,0.0,0.0,0.9931439290427216,-10.225862032225354,1.0,0.0,0.0 -758,16.0,5.394242367356033,5.8,0.0,0.0,0.988251879578104,-12.289537411740252,1.0,0.0,0.0 -758,17.0,1.9179528417265896,0.9,0.0,0.0,0.9481954489297664,-14.702576243755388,1.0,0.0,0.0 -758,18.0,5.693922498875813,3.4,0.0,0.0,0.955589576756779,-14.43664601034128,1.0,0.0,0.0 -758,19.0,1.3185925786870305,0.7,0.0,0.0,0.9639641628976672,-14.13075629638833,1.0,0.0,0.0 -758,20.0,10.488804603192287,11.2,0.0,0.0,0.9731081386618636,-13.547384043470084,1.0,0.0,0.0 -758,21.0,0.0,0.0,0.0,0.0,0.9711650111346144,-13.628398510013865,1.0,0.0,0.0 -758,22.0,1.9179528417265896,1.6,0.0,0.0,0.9430172558488588,-14.706429220303107,1.0,0.0,0.0 -758,23.0,5.214434288444165,6.7,0.0,0.0,0.9543304339596008,-14.184899320403218,1.0,0.0,0.0 -758,24.0,0.0,0.0,0.0,0.0,0.9602092870202942,-13.943719982716413,1.0,0.0,0.0 -758,25.0,2.097760920638457,2.3,0.0,0.0,0.9453156585865204,-14.077556875271624,1.0,0.0,0.0 -758,26.0,0.0,0.0,0.0,0.0,0.9712878594809032,-13.673261388268903,1.0,0.0,0.0 -758,27.0,0.0,0.0,0.0,0.0,0.9658062491195908,-10.935936391946049,1.0,0.0,0.0 -758,28.0,1.4384646312949425,0.9,0.0,0.0,0.956483263351788,-14.4103930760857,1.0,0.0,0.0 -758,29.0,6.353218788219328,1.9,0.0,0.0,0.948328884650646,-14.958949832726406,1.0,0.0,0.0 -759,0.0,0.0,0.0,177.83350643332366,0.0012716961734327,1.0,0.0,0.0,0.0,1.0 -759,1.0,13.006117707958436,12.7,1.3994058582706772e-06,12.1715706860793,0.978764541265021,-4.092553360073217,0.0,1.0,0.0 -759,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722030101391338,-5.3657027712641,1.0,0.0,0.0 -759,3.0,4.5551379991006495,1.6,0.0,0.0,0.9652187995748696,-6.598984720853695,1.0,0.0,0.0 -759,4.0,56.45973677832649,19.0,-1.6356056872204474e-10,25.164555409801608,0.9572412383256624,-9.852520255082489,0.0,1.0,0.0 -759,5.0,0.0,0.0,0.0,0.0,0.9646255073256476,-7.828924806858134,1.0,0.0,0.0 -759,6.0,13.66541399730195,10.9,0.0,0.0,0.9548951471686228,-8.970929159733126,1.0,0.0,0.0 -759,7.0,17.980807891186778,30.0,-1.7129125562746715e-10,31.07841228883405,0.963618118206128,-8.303743397126544,0.0,1.0,0.0 -759,8.0,0.0,0.0,0.0,0.0,1.0140646718425348,-9.820502269205166,1.0,0.0,0.0 -759,9.0,3.4762895256294435,2.0,0.0,0.0,1.0049207611977276,-10.854098028761848,1.0,0.0,0.0 -759,10.0,0.0,0.0,-3.0476505299212186e-10,23.409336417873316,1.059999974593689,-9.820502269238958,0.0,1.0,0.0 -759,11.0,6.712834946043063,7.5,0.0,0.0,1.0129300868962108,-10.344766381328716,1.0,0.0,0.0 -759,12.0,0.0,0.0,-2.138267744318796e-10,11.121126673912896,1.028074492728282,-10.344766381345185,0.0,1.0,0.0 -759,13.0,3.716033630845268,1.6,0.0,0.0,1.0012971497743504,-10.873148494365926,1.0,0.0,0.0 -759,14.0,4.914754156924386,2.5,0.0,0.0,0.997731728571681,-10.907389534539384,1.0,0.0,0.0 -759,15.0,2.097760920638457,1.8,0.0,0.0,1.0031072532152725,-10.68923445078716,1.0,0.0,0.0 -759,16.0,5.394242367356033,5.8,0.0,0.0,0.9998963803069996,-10.913848266520734,1.0,0.0,0.0 -759,17.0,1.9179528417265896,0.9,0.0,0.0,0.9906726937797556,-11.282502456529498,1.0,0.0,0.0 -759,18.0,5.693922498875813,3.4,0.0,0.0,0.9889073659996688,-11.39462653134534,1.0,0.0,0.0 -759,19.0,1.3185925786870305,0.7,0.0,0.0,0.9922698918069788,-11.294858653444342,1.0,0.0,0.0 -759,20.0,10.488804603192287,11.2,0.0,0.0,0.9940229343936734,-11.064440565717645,1.0,0.0,0.0 -759,21.0,0.0,0.0,0.0,0.0,0.994413415858771,-11.059555143941264,1.0,0.0,0.0 -759,22.0,1.9179528417265896,1.6,0.0,0.0,0.9887641904872532,-11.11299399445132,1.0,0.0,0.0 -759,23.0,5.214434288444165,6.7,0.0,0.0,0.9837705634442996,-11.213856454311188,1.0,0.0,0.0 -759,24.0,0.0,0.0,0.0,0.0,0.9771368209863048,-10.916693715856866,1.0,0.0,0.0 -759,25.0,2.097760920638457,2.3,0.0,0.0,0.9625093329147149,-11.045862701276784,1.0,0.0,0.0 -759,26.0,0.0,0.0,0.0,0.0,0.9802950550691304,-10.6284253285461,1.0,0.0,0.0 -759,27.0,0.0,0.0,0.0,0.0,0.9624416810581508,-8.222418442385564,1.0,0.0,0.0 -759,28.0,1.4384646312949425,0.9,0.0,0.0,0.965635526589944,-11.351870791652996,1.0,0.0,0.0 -759,29.0,6.353218788219328,1.9,0.0,0.0,0.9575611896328796,-11.890000184735326,1.0,0.0,0.0 -760,0.0,0.0,0.0,177.8862929694033,0.0016987069835217,1.0,0.0,0.0,0.0,1.0 -760,1.0,13.006117707958436,12.7,1.6773418504434836e-06,12.049172954418076,0.9787465099061392,-4.093423569606199,0.0,1.0,0.0 -760,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722342336431852,-5.368243516108095,1.0,0.0,0.0 -760,3.0,4.5551379991006495,1.6,0.0,0.0,0.96525776346236,-6.602122102915379,1.0,0.0,0.0 -760,4.0,56.45973677832649,19.0,-3.785824215499381e-10,25.189515301451834,0.957283029320859,-9.85486537598374,0.0,1.0,0.0 -760,5.0,0.0,0.0,0.0,0.0,0.9646739703874938,-7.832458819807812,1.0,0.0,0.0 -760,6.0,13.66541399730195,10.9,0.0,0.0,0.9549411947376102,-8.973953931262121,1.0,0.0,0.0 -760,7.0,17.980807891186778,30.0,-3.8969313206629227e-10,31.220541681687564,0.963713956010791,-8.30814905744497,0.0,1.0,0.0 -760,8.0,0.0,0.0,0.0,0.0,1.0141029218785411,-9.824591657140884,1.0,0.0,0.0 -760,9.0,3.4762895256294435,2.0,0.0,0.0,1.0049735552609207,-10.858473189058444,1.0,0.0,0.0 -760,10.0,0.0,0.0,-6.800611566426776e-10,23.389840897332896,1.0599999694887567,-9.824591657216274,0.0,1.0,0.0 -760,11.0,6.712834946043063,7.5,0.0,0.0,1.0130663850246522,-10.349769655818358,1.0,0.0,0.0 -760,12.0,0.0,0.0,-4.776213190041683e-10,11.201980973331878,1.028317293917681,-10.34976965585514,0.0,1.0,0.0 -760,13.0,3.716033630845268,1.6,0.0,0.0,1.0014190416819442,-10.878198979071367,1.0,0.0,0.0 -760,14.0,4.914754156924386,2.5,0.0,0.0,0.9978374257098096,-10.912252484235124,1.0,0.0,0.0 -760,15.0,2.097760920638457,1.8,0.0,0.0,1.0032084293029515,-10.693761874705087,1.0,0.0,0.0 -760,16.0,5.394242367356033,5.8,0.0,0.0,0.999964520753472,-10.918313285955508,1.0,0.0,0.0 -760,17.0,1.9179528417265896,0.9,0.0,0.0,0.9907606094923916,-11.2871177313872,1.0,0.0,0.0 -760,18.0,5.693922498875813,3.4,0.0,0.0,0.9889845255707088,-11.399116983327218,1.0,0.0,0.0 -760,19.0,1.3185925786870305,0.7,0.0,0.0,0.9923410467252984,-11.299306713727146,1.0,0.0,0.0 -760,20.0,10.488804603192287,11.2,0.0,0.0,0.9940674240802332,-11.06906938680096,1.0,0.0,0.0 -760,21.0,0.0,0.0,0.0,0.0,0.994455061071532,-11.064269046411027,1.0,0.0,0.0 -760,22.0,1.9179528417265896,1.6,0.0,0.0,0.9888257803222116,-11.118147596387551,1.0,0.0,0.0 -760,23.0,5.214434288444165,6.7,0.0,0.0,0.983772985552216,-11.219460577196706,1.0,0.0,0.0 -760,24.0,0.0,0.0,0.0,0.0,0.9769954335323764,-10.924385123831584,1.0,0.0,0.0 -760,25.0,2.097760920638457,2.3,0.0,0.0,0.9623657625347138,-11.05359207533815,1.0,0.0,0.0 -760,26.0,0.0,0.0,0.0,0.0,0.9800661179823892,-10.63752920540358,1.0,0.0,0.0 -760,27.0,0.0,0.0,0.0,0.0,0.962467086270702,-8.226170480454996,1.0,0.0,0.0 -760,28.0,1.4384646312949425,0.9,0.0,0.0,0.9729663690283624,-10.87761602210464,1.0,0.0,0.0 -760,29.0,6.353218788219328,1.9,0.0,0.0,0.945860259952836,-12.628562996548384,1.0,0.0,0.0 -761,0.0,0.0,0.0,178.4872698395162,0.0017696370113284,1.0,0.0,0.0,0.0,1.0 -761,1.0,13.006117707958436,12.7,1.0097242616479174e-06,11.11037092955295,0.9779139049676092,-4.306329378343626,0.0,1.0,0.0 -761,2.0,1.4384646312949425,1.2,0.0,0.0,0.9736719354020952,-4.814767665635543,1.0,0.0,0.0 -761,3.0,4.5551379991006495,1.6,0.0,0.0,0.9669362433170736,-5.913744408780002,1.0,0.0,0.0 -761,4.0,56.45973677832649,19.0,3.197062505405257e-09,39.88215256038768,0.9591033349619952,-13.240818003477994,0.0,1.0,0.0 -761,5.0,0.0,0.0,0.0,0.0,0.9674763334451004,-6.82528060551738,1.0,0.0,0.0 -761,6.0,13.66541399730195,10.9,0.0,0.0,0.940002498861402,-13.955951744533364,1.0,0.0,0.0 -761,7.0,17.980807891186778,30.0,1.204204267522729e-10,28.31767240498285,0.9654062687931184,-7.281206528308427,0.0,1.0,0.0 -761,8.0,0.0,0.0,0.0,0.0,1.0118704541271897,-8.869766258520475,1.0,0.0,0.0 -761,9.0,3.4762895256294435,2.0,0.0,0.0,1.0032256194497895,-9.935746577644569,1.0,0.0,0.0 -761,10.0,0.0,0.0,-4.4225313080050366e-11,20.19440772508585,1.0518059279187235,-8.869766258525429,0.0,1.0,0.0 -761,11.0,6.712834946043063,7.5,0.0,0.0,1.0091369089809543,-9.519167657743235,1.0,0.0,0.0 -761,12.0,0.0,0.0,3.2064862012638337e-11,8.166436946617548,1.0203419871500865,-9.519167657740738,0.0,1.0,0.0 -761,13.0,3.716033630845268,1.6,0.0,0.0,0.9977493656539372,-10.036244685836088,1.0,0.0,0.0 -761,14.0,4.914754156924386,2.5,0.0,0.0,0.9945535700047674,-10.0622642132886,1.0,0.0,0.0 -761,15.0,2.097760920638457,1.8,0.0,0.0,1.0002677842715713,-9.829156551629495,1.0,0.0,0.0 -761,16.0,5.394242367356033,5.8,0.0,0.0,0.9978133843073936,-10.012734892404568,1.0,0.0,0.0 -761,17.0,1.9179528417265896,0.9,0.0,0.0,0.9879975149637904,-10.41391749447128,1.0,0.0,0.0 -761,18.0,5.693922498875813,3.4,0.0,0.0,0.9865352197190356,-10.511338436817518,1.0,0.0,0.0 -761,19.0,1.3185925786870305,0.7,0.0,0.0,0.990068516275455,-10.403107964331616,1.0,0.0,0.0 -761,20.0,10.488804603192287,11.2,0.0,0.0,0.9923555558582464,-10.148691831069588,1.0,0.0,0.0 -761,21.0,0.0,0.0,0.0,0.0,0.992761174313042,-10.144417684845042,1.0,0.0,0.0 -761,22.0,1.9179528417265896,1.6,0.0,0.0,0.9863033000192316,-10.2430276953026,1.0,0.0,0.0 -761,23.0,5.214434288444165,6.7,0.0,0.0,0.9822775706924384,-10.308893236349927,1.0,0.0,0.0 -761,24.0,0.0,0.0,0.0,0.0,0.977284348019124,-9.989025220149871,1.0,0.0,0.0 -761,25.0,2.097760920638457,2.3,0.0,0.0,0.9626591369568618,-10.118154608583035,1.0,0.0,0.0 -761,26.0,0.0,0.0,0.0,0.0,0.9814533262890262,-9.685054135493482,1.0,0.0,0.0 -761,27.0,0.0,0.0,0.0,0.0,0.964848162970181,-7.218866072519307,1.0,0.0,0.0 -761,28.0,1.4384646312949425,0.9,0.0,0.0,0.9668122401421316,-10.40676748946749,1.0,0.0,0.0 -761,29.0,6.353218788219328,1.9,0.0,0.0,0.9587480784382706,-10.943577891853138,1.0,0.0,0.0 -762,0.0,0.0,0.0,177.9251897057312,0.0039479259049457,1.0,0.0,0.0,0.0,1.0 -762,1.0,13.006117707958436,12.7,2.912606431989013e-06,19.19775145443098,0.9797198371216472,-4.11386758064458,0.0,1.0,0.0 -762,2.0,1.4384646312949425,1.2,0.0,0.0,0.969401266897544,-5.326457373991795,1.0,0.0,0.0 -762,3.0,4.5551379991006495,1.6,0.0,0.0,0.9617589340518858,-6.551940426805646,1.0,0.0,0.0 -762,4.0,56.45973677832649,19.0,-3.937142577340641e-09,27.981935893138317,0.9583615557827062,-9.884873874900066,0.0,1.0,0.0 -762,5.0,0.0,0.0,0.0,0.0,0.9601302837920264,-7.749306881407723,1.0,0.0,0.0 -762,6.0,13.66541399730195,10.9,0.0,0.0,0.9526853440011628,-8.93615545747708,1.0,0.0,0.0 -762,7.0,17.980807891186778,30.0,-4.489240149604741e-09,39.99584646883331,0.9623470258309912,-8.285223444682073,0.0,1.0,0.0 -762,8.0,0.0,0.0,0.0,0.0,0.982240608860458,-9.708738785214654,1.0,0.0,0.0 -762,9.0,3.4762895256294435,2.0,0.0,0.0,0.982975417201591,-10.743516658739718,1.0,0.0,0.0 -762,10.0,0.0,0.0,0.0,0.0,0.982240608860458,-9.708738785214654,0.0,1.0,0.0 -762,11.0,6.712834946043063,7.5,0.0,0.0,1.0057764213368567,-10.464182272714895,1.0,0.0,0.0 -762,12.0,0.0,0.0,-5.091288026592036e-09,15.96135363522276,1.0275237484645308,-10.464182273110069,0.0,1.0,0.0 -762,13.0,3.716033630845268,1.6,0.0,0.0,0.992373885636515,-10.992163963558545,1.0,0.0,0.0 -762,14.0,4.914754156924386,2.5,0.0,0.0,0.987220870165169,-10.97990324949458,1.0,0.0,0.0 -762,15.0,2.097760920638457,1.8,0.0,0.0,0.9896274954039532,-10.682314072747191,1.0,0.0,0.0 -762,16.0,5.394242367356033,5.8,0.0,0.0,0.9804628304046112,-10.850507486380875,1.0,0.0,0.0 -762,17.0,1.9179528417265896,0.9,0.0,0.0,0.9759912445020472,-11.301385541717224,1.0,0.0,0.0 -762,18.0,5.693922498875813,3.4,0.0,0.0,0.9717898628304216,-11.378707612283426,1.0,0.0,0.0 -762,19.0,1.3185925786870305,0.7,0.0,0.0,0.973944831510598,-11.25460191086663,1.0,0.0,0.0 -762,20.0,10.488804603192287,11.2,0.0,0.0,0.9729295148195458,-10.9728268737278,1.0,0.0,0.0 -762,21.0,0.0,0.0,0.0,0.0,0.9736740132689978,-10.97126426246082,1.0,0.0,0.0 -762,22.0,1.9179528417265896,1.6,0.0,0.0,0.975667785821106,-11.153860058162223,1.0,0.0,0.0 -762,23.0,5.214434288444165,6.7,0.0,0.0,0.9673122797719328,-11.208941608708592,1.0,0.0,0.0 -762,24.0,0.0,0.0,0.0,0.0,0.965045207701957,-10.95559688340792,1.0,0.0,0.0 -762,25.0,2.097760920638457,2.3,0.0,0.0,0.9502286100176834,-11.088074598717732,1.0,0.0,0.0 -762,26.0,0.0,0.0,0.0,0.0,0.9710239455810258,-10.687344603202192,1.0,0.0,0.0 -762,27.0,0.0,0.0,0.0,0.0,0.9580449085660064,-8.159026836693211,1.0,0.0,0.0 -762,28.0,1.4384646312949425,0.9,0.0,0.0,0.9562150542273676,-11.424883176285004,1.0,0.0,0.0 -762,29.0,6.353218788219328,1.9,0.0,0.0,0.9480583055332996,-11.973750080181466,1.0,0.0,0.0 -763,0.0,0.0,0.0,171.57808044507814,3.424312389199713e-07,1.0,0.0,0.0,0.0,1.0 -763,1.0,13.006117707958436,12.7,6.669320437226895,-14.780579729880484,0.9773305399249812,-3.865323804023013,0.0,1.0,0.0 -763,2.0,1.4384646312949425,1.2,0.0,0.0,0.9789618404611276,-5.368644904921609,1.0,0.0,0.0 -763,3.0,4.5551379991006495,1.6,0.0,0.0,0.9735477992615132,-6.598456338266929,1.0,0.0,0.0 -763,4.0,56.45973677832649,19.0,2.183352004171868e-09,39.99999943702071,0.9769297428799726,-9.891550186879586,0.0,1.0,0.0 -763,5.0,0.0,0.0,0.0,0.0,0.9749806882560356,-7.807506509667005,1.0,0.0,0.0 -763,6.0,13.66541399730195,10.9,0.0,0.0,0.9692069778402108,-8.962018549331512,1.0,0.0,0.0 -763,7.0,17.980807891186778,30.0,3.504626641498658e-09,39.99999980115404,0.987879489016445,-11.50110802837831,0.0,1.0,0.0 -763,8.0,0.0,0.0,0.0,0.0,1.0231797291688274,-9.759636489445098,1.0,0.0,0.0 -763,9.0,3.4762895256294435,2.0,0.0,0.0,1.0180630457709925,-10.770422136632964,1.0,0.0,0.0 -763,10.0,0.0,0.0,2.9977014015614822e-09,18.76417619476789,1.0599999994566789,-9.759636489115705,0.0,1.0,0.0 -763,11.0,6.712834946043063,7.5,0.0,0.0,1.0341107761662014,-10.378154906868764,1.0,0.0,0.0 -763,12.0,0.0,0.0,1.322931754572794e-09,19.60184053752652,1.0599999995291516,-10.378154906771956,0.0,1.0,0.0 -763,13.0,3.716033630845268,1.6,0.0,0.0,1.0216860836910169,-10.893081434779436,1.0,0.0,0.0 -763,14.0,4.914754156924386,2.5,0.0,0.0,1.0171418651220905,-10.910719365456348,1.0,0.0,0.0 -763,15.0,2.097760920638457,1.8,0.0,0.0,1.0209909772583936,-10.65105506648453,1.0,0.0,0.0 -763,16.0,5.394242367356033,5.8,0.0,0.0,1.0145667745497435,-10.846751297380813,1.0,0.0,0.0 -763,17.0,1.9179528417265896,0.9,0.0,0.0,1.0080435782153316,-11.241219678005267,1.0,0.0,0.0 -763,18.0,5.693922498875813,3.4,0.0,0.0,1.0050270183243493,-11.330793233455386,1.0,0.0,0.0 -763,19.0,1.3185925786870305,0.7,0.0,0.0,1.007661412120993,-11.224011519195098,1.0,0.0,0.0 -763,20.0,10.488804603192287,11.2,0.0,0.0,1.0076468973565404,-10.998786736357069,1.0,0.0,0.0 -763,21.0,0.0,0.0,0.0,0.0,1.0081360548562186,-11.001734646270146,1.0,0.0,0.0 -763,22.0,1.9179528417265896,1.6,0.0,0.0,1.0063587844490776,-11.132885059134834,1.0,0.0,0.0 -763,23.0,5.214434288444165,6.7,0.0,0.0,0.9988283536154288,-11.263839879245822,1.0,0.0,0.0 -763,24.0,0.0,0.0,0.0,0.0,0.99080635625713,-11.18848240536559,1.0,0.0,0.0 -763,25.0,2.097760920638457,2.3,0.0,0.0,0.9763868385680956,-11.31405875720602,1.0,0.0,0.0 -763,26.0,0.0,0.0,0.0,0.0,0.993069656351945,-11.043010461018955,1.0,0.0,0.0 -763,27.0,0.0,0.0,0.0,0.0,0.9759827931869944,-8.906284354160414,1.0,0.0,0.0 -763,28.0,1.4384646312949425,0.9,0.0,0.0,0.9400000016178572,-13.636375055750412,1.0,0.0,0.0 -763,29.0,6.353218788219328,1.9,0.0,0.0,0.9480226075193398,-13.355954566357951,1.0,0.0,0.0 -764,0.0,0.0,0.0,178.54023772347932,0.0001479470145504,1.0,0.0,0.0,0.0,1.0 -764,1.0,13.006117707958436,12.7,1.4484600960833282e-07,10.805608789824063,0.9778295926889236,-4.309695185312104,0.0,1.0,0.0 -764,2.0,1.4384646312949425,1.2,0.0,0.0,0.9738854894821758,-4.809619768907347,1.0,0.0,0.0 -764,3.0,4.5551379991006495,1.6,0.0,0.0,0.9671986565479584,-5.907253790620709,1.0,0.0,0.0 -764,4.0,56.45973677832649,19.0,-3.8205821183431453e-10,39.92401829166711,0.959101200814295,-13.24620214918628,0.0,1.0,0.0 -764,5.0,0.0,0.0,0.0,0.0,0.9672971772150344,-6.857865091443319,1.0,0.0,0.0 -764,6.0,13.66541399730195,10.9,0.0,0.0,0.9400003148641844,-13.961339020813204,1.0,0.0,0.0 -764,7.0,17.980807891186778,30.0,-6.097968351856378e-11,28.104734104193795,0.9651394239961696,-7.31318862845122,0.0,1.0,0.0 -764,8.0,0.0,0.0,0.0,0.0,1.0122291343027678,-9.041930750166555,1.0,0.0,0.0 -764,9.0,3.4762895256294435,2.0,0.0,0.0,1.0008913466512228,-10.183106946476844,1.0,0.0,0.0 -764,10.0,0.0,0.0,-5.5345755733936975e-11,23.246746502113385,1.0579344542587883,-9.041930750172714,0.0,1.0,0.0 -764,11.0,6.712834946043063,7.5,0.0,0.0,1.0111179296557158,-9.23677109227479,1.0,0.0,0.0 -764,12.0,0.0,0.0,-4.9225596080352465e-11,6.039894810962451,1.019412756925535,-9.23677109227862,0.0,1.0,0.0 -764,13.0,3.716033630845268,1.6,0.0,0.0,0.9994009595220308,-9.817014947012083,1.0,0.0,0.0 -764,14.0,4.914754156924386,2.5,0.0,0.0,0.9954287076551556,-9.899414606745609,1.0,0.0,0.0 -764,15.0,2.097760920638457,1.8,0.0,0.0,0.987324215669261,-10.587084980404637,1.0,0.0,0.0 -764,16.0,5.394242367356033,5.8,0.0,0.0,0.9919483338243644,-10.406265753617909,1.0,0.0,0.0 -764,17.0,1.9179528417265896,0.9,0.0,0.0,0.9877005615294552,-10.394981710638596,1.0,0.0,0.0 -764,18.0,5.693922498875813,3.4,0.0,0.0,0.985555373898112,-10.578605214259614,1.0,0.0,0.0 -764,19.0,1.3185925786870305,0.7,0.0,0.0,0.9887301146828584,-10.515384029807285,1.0,0.0,0.0 -764,20.0,10.488804603192287,11.2,0.0,0.0,0.9902060878575164,-10.36938906237828,1.0,0.0,0.0 -764,21.0,0.0,0.0,0.0,0.0,0.99068178740659,-10.356296295016932,1.0,0.0,0.0 -764,22.0,1.9179528417265896,1.6,0.0,0.0,0.9863781005190864,-10.191693954615,1.0,0.0,0.0 -764,23.0,5.214434288444165,6.7,0.0,0.0,0.9813146165632616,-10.4089873391461,1.0,0.0,0.0 -764,24.0,0.0,0.0,0.0,0.0,0.9766603472255926,-10.068284414854617,1.0,0.0,0.0 -764,25.0,2.097760920638457,2.3,0.0,0.0,0.9620255000652792,-10.197581411457271,1.0,0.0,0.0 -764,26.0,0.0,0.0,0.0,0.0,0.9810388444315398,-9.750908672309402,1.0,0.0,0.0 -764,27.0,0.0,0.0,0.0,0.0,0.9646082390840643,-7.254551315154759,1.0,0.0,0.0 -764,28.0,1.4384646312949425,0.9,0.0,0.0,0.9663911642842762,-10.473241133846074,1.0,0.0,0.0 -764,29.0,6.353218788219328,1.9,0.0,0.0,0.9583233644592086,-11.010522965357575,1.0,0.0,0.0 -765,0.0,0.0,0.0,177.83350643332366,0.0012716961734327,1.0,0.0,0.0,0.0,1.0 -765,1.0,13.006117707958436,12.7,1.3994058582706772e-06,12.1715706860793,0.978764541265021,-4.092553360073217,0.0,1.0,0.0 -765,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722030101391338,-5.3657027712641,1.0,0.0,0.0 -765,3.0,4.5551379991006495,1.6,0.0,0.0,0.9652187995748696,-6.598984720853695,1.0,0.0,0.0 -765,4.0,56.45973677832649,19.0,-1.6356056872204474e-10,25.164555409801608,0.9572412383256624,-9.852520255082489,0.0,1.0,0.0 -765,5.0,0.0,0.0,0.0,0.0,0.9646255073256476,-7.828924806858134,1.0,0.0,0.0 -765,6.0,13.66541399730195,10.9,0.0,0.0,0.9548951471686228,-8.970929159733126,1.0,0.0,0.0 -765,7.0,17.980807891186778,30.0,-1.7129125562746715e-10,31.07841228883405,0.963618118206128,-8.303743397126544,0.0,1.0,0.0 -765,8.0,0.0,0.0,0.0,0.0,1.0140646718425348,-9.820502269205166,1.0,0.0,0.0 -765,9.0,3.4762895256294435,2.0,0.0,0.0,1.0049207611977276,-10.854098028761848,1.0,0.0,0.0 -765,10.0,0.0,0.0,-3.0476505299212186e-10,23.409336417873316,1.059999974593689,-9.820502269238958,0.0,1.0,0.0 -765,11.0,6.712834946043063,7.5,0.0,0.0,1.0129300868962108,-10.344766381328716,1.0,0.0,0.0 -765,12.0,0.0,0.0,-2.138267744318796e-10,11.121126673912896,1.028074492728282,-10.344766381345185,0.0,1.0,0.0 -765,13.0,3.716033630845268,1.6,0.0,0.0,1.0012971497743504,-10.873148494365926,1.0,0.0,0.0 -765,14.0,4.914754156924386,2.5,0.0,0.0,0.997731728571681,-10.907389534539384,1.0,0.0,0.0 -765,15.0,2.097760920638457,1.8,0.0,0.0,1.0031072532152725,-10.68923445078716,1.0,0.0,0.0 -765,16.0,5.394242367356033,5.8,0.0,0.0,0.9998963803069996,-10.913848266520734,1.0,0.0,0.0 -765,17.0,1.9179528417265896,0.9,0.0,0.0,0.9906726937797556,-11.282502456529498,1.0,0.0,0.0 -765,18.0,5.693922498875813,3.4,0.0,0.0,0.9889073659996688,-11.39462653134534,1.0,0.0,0.0 -765,19.0,1.3185925786870305,0.7,0.0,0.0,0.9922698918069788,-11.294858653444342,1.0,0.0,0.0 -765,20.0,10.488804603192287,11.2,0.0,0.0,0.9940229343936734,-11.064440565717645,1.0,0.0,0.0 -765,21.0,0.0,0.0,0.0,0.0,0.994413415858771,-11.059555143941264,1.0,0.0,0.0 -765,22.0,1.9179528417265896,1.6,0.0,0.0,0.9887641904872532,-11.11299399445132,1.0,0.0,0.0 -765,23.0,5.214434288444165,6.7,0.0,0.0,0.9837705634442996,-11.213856454311188,1.0,0.0,0.0 -765,24.0,0.0,0.0,0.0,0.0,0.9771368209863048,-10.916693715856866,1.0,0.0,0.0 -765,25.0,2.097760920638457,2.3,0.0,0.0,0.9625093329147149,-11.045862701276784,1.0,0.0,0.0 -765,26.0,0.0,0.0,0.0,0.0,0.9802950550691304,-10.6284253285461,1.0,0.0,0.0 -765,27.0,0.0,0.0,0.0,0.0,0.9624416810581508,-8.222418442385564,1.0,0.0,0.0 -765,28.0,1.4384646312949425,0.9,0.0,0.0,0.965635526589944,-11.351870791652996,1.0,0.0,0.0 -765,29.0,6.353218788219328,1.9,0.0,0.0,0.9575611896328796,-11.890000184735326,1.0,0.0,0.0 -766,0.0,0.0,0.0,178.05906181572547,0.0001194399890103,1.0,0.0,0.0,0.0,1.0 -766,1.0,13.006117707958436,12.7,2.0629077405180883e-07,9.741792578575364,0.978373076001581,-4.08621964591681,0.0,1.0,0.0 -766,2.0,1.4384646312949425,1.2,0.0,0.0,0.9732648219710244,-5.401022503351814,1.0,0.0,0.0 -766,3.0,4.5551379991006495,1.6,0.0,0.0,0.9665340459166514,-6.642196657305242,1.0,0.0,0.0 -766,4.0,56.45973677832649,19.0,1.9613565568402102e-10,24.959587561802607,0.9572108580728586,-9.844831697237034,0.0,1.0,0.0 -766,5.0,0.0,0.0,0.0,0.0,0.965383456659775,-7.830929160068754,1.0,0.0,0.0 -766,6.0,13.66541399730195,10.9,0.0,0.0,0.9553340938605972,-8.969034538296674,1.0,0.0,0.0 -766,7.0,17.980807891186778,30.0,2.028209643734492e-10,29.556832640260907,0.9637522521742332,-8.295863559074471,0.0,1.0,0.0 -766,8.0,0.0,0.0,0.0,0.0,1.0162324113850278,-9.706811540016488,1.0,0.0,0.0 -766,9.0,3.4762895256294435,2.0,0.0,0.0,1.0094834997084534,-10.676740392438226,1.0,0.0,0.0 -766,10.0,0.0,0.0,3.324441683265124e-10,21.7369912174582,1.0589292594772537,-9.70681153997967,0.0,1.0,0.0 -766,11.0,6.712834946043063,7.5,0.0,0.0,1.022712260144697,-10.548039323618738,1.0,0.0,0.0 -766,12.0,0.0,0.0,2.774664347118697e-10,17.25345080261523,1.0458090493142869,-10.54803932359793,0.0,1.0,0.0 -766,13.0,3.716033630845268,1.6,0.0,0.0,1.0101957887988842,-11.126378668890595,1.0,0.0,0.0 -766,14.0,4.914754156924386,2.5,0.0,0.0,1.0052920649730492,-11.196894224309217,1.0,0.0,0.0 -766,15.0,2.097760920638457,1.8,0.0,0.0,1.010929765486427,-10.716732940996978,1.0,0.0,0.0 -766,16.0,5.394242367356033,5.8,0.0,0.0,1.0054241456494268,-10.803081018792664,1.0,0.0,0.0 -766,17.0,1.9179528417265896,0.9,0.0,0.0,0.9840979883740066,-12.01635130567951,1.0,0.0,0.0 -766,18.0,5.693922498875813,3.4,0.0,0.0,0.9740342642873464,-12.40131353179876,1.0,0.0,0.0 -766,19.0,1.3185925786870305,0.7,0.0,0.0,0.9730841405679388,-12.441128657265043,1.0,0.0,0.0 -766,20.0,10.488804603192287,11.2,0.0,0.0,0.9968656099640336,-10.933201924569502,1.0,0.0,0.0 -766,21.0,0.0,0.0,0.0,0.0,0.9966927690214786,-10.943009232225752,1.0,0.0,0.0 -766,22.0,1.9179528417265896,1.6,0.0,0.0,0.9711815953540572,-11.43339480057753,1.0,0.0,0.0 -766,23.0,5.214434288444165,6.7,0.0,0.0,0.9782417029672132,-11.248461181052765,1.0,0.0,0.0 -766,24.0,0.0,0.0,0.0,0.0,0.9738107237814444,-10.966373500355218,1.0,0.0,0.0 -766,25.0,2.097760920638457,2.3,0.0,0.0,0.9591317070499626,-11.096440099987314,1.0,0.0,0.0 -766,26.0,0.0,0.0,0.0,0.0,0.9783672365369032,-10.684535716472512,1.0,0.0,0.0 -766,27.0,0.0,0.0,0.0,0.0,0.9627516543163476,-8.223534356557327,1.0,0.0,0.0 -766,28.0,1.4384646312949425,0.9,0.0,0.0,0.9636769062853724,-11.410878026377,1.0,0.0,0.0 -766,29.0,6.353218788219328,1.9,0.0,0.0,0.9555855747641478,-11.951213692761192,1.0,0.0,0.0 -767,0.0,0.0,0.0,177.9400656739274,0.0017834155308094,1.0,0.0,0.0,0.0,1.0 -767,1.0,13.006117707958436,12.7,1.8871118368509103e-06,11.988208334578973,0.9787197620271896,-4.095177750627722,0.0,1.0,0.0 -767,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722869980221318,-5.368269392344772,1.0,0.0,0.0 -767,3.0,4.5551379991006495,1.6,0.0,0.0,0.9653227860357524,-6.602121328757971,1.0,0.0,0.0 -767,4.0,56.45973677832649,19.0,5.740622193616985e-10,25.217288157937475,0.957261913293918,-9.860491870737969,0.0,1.0,0.0 -767,5.0,0.0,0.0,0.0,0.0,0.9646005537815028,-7.840453884519686,1.0,0.0,0.0 -767,6.0,13.66541399730195,10.9,0.0,0.0,0.9548883785692306,-8.980997199512945,1.0,0.0,0.0 -767,7.0,17.980807891186778,30.0,5.53757583085048e-10,31.328280344452388,0.9636724515979338,-8.317469616005278,0.0,1.0,0.0 -767,8.0,0.0,0.0,0.0,0.0,1.013728829623225,-9.858516658063772,1.0,0.0,0.0 -767,9.0,3.4762895256294435,2.0,0.0,0.0,1.0042560931856293,-10.906519873694547,1.0,0.0,0.0 -767,10.0,0.0,0.0,9.39606279097231e-10,23.58049402019134,1.0599999882150195,-9.858516657959564,0.0,1.0,0.0 -767,11.0,6.712834946043063,7.5,0.0,0.0,1.013786169426094,-10.289390647980133,1.0,0.0,0.0 -767,12.0,0.0,0.0,6.151036837320582e-10,11.054869668543285,1.0288293038680976,-10.289390647932828,0.0,1.0,0.0 -767,13.0,3.716033630845268,1.6,0.0,0.0,0.9820960233451438,-11.303304702519576,1.0,0.0,0.0 -767,14.0,4.914754156924386,2.5,0.0,0.0,0.9937194965237224,-11.075224283256436,1.0,0.0,0.0 -767,15.0,2.097760920638457,1.8,0.0,0.0,1.0032327440340147,-10.676673568861668,1.0,0.0,0.0 -767,16.0,5.394242367356033,5.8,0.0,0.0,0.9994999733484377,-10.947047474473036,1.0,0.0,0.0 -767,17.0,1.9179528417265896,0.9,0.0,0.0,0.9878231253085216,-11.412371402498978,1.0,0.0,0.0 -767,18.0,5.693922498875813,3.4,0.0,0.0,0.986751150184954,-11.50098915104394,1.0,0.0,0.0 -767,19.0,1.3185925786870305,0.7,0.0,0.0,0.9904897477260778,-11.388251467505574,1.0,0.0,0.0 -767,20.0,10.488804603192287,11.2,0.0,0.0,0.9931930720877368,-11.12299667768743,1.0,0.0,0.0 -767,21.0,0.0,0.0,0.0,0.0,0.993533603608146,-11.11991261593058,1.0,0.0,0.0 -767,22.0,1.9179528417265896,1.6,0.0,0.0,0.9857793535425808,-11.244587164495512,1.0,0.0,0.0 -767,23.0,5.214434288444165,6.7,0.0,0.0,0.9821684171517108,-11.294659716204684,1.0,0.0,0.0 -767,24.0,0.0,0.0,0.0,0.0,0.9761719080396908,-10.97987130142325,1.0,0.0,0.0 -767,25.0,2.097760920638457,2.3,0.0,0.0,0.9615295091850512,-11.10929972335474,1.0,0.0,0.0 -767,26.0,0.0,0.0,0.0,0.0,0.9797282913446176,-10.679787680444596,1.0,0.0,0.0 -767,27.0,0.0,0.0,0.0,0.0,0.9623536002966544,-8.237631987718906,1.0,0.0,0.0 -767,28.0,1.4384646312949425,0.9,0.0,0.0,0.9650597212147064,-11.40408298271218,1.0,0.0,0.0 -767,29.0,6.353218788219328,1.9,0.0,0.0,0.956980395643794,-11.942859579177217,1.0,0.0,0.0 -768,0.0,0.0,0.0,179.2606945960392,0.0025701006120648,1.0,0.0,0.0,0.0,1.0 -768,1.0,13.006117707958436,12.7,2.683111006431861e-06,16.625862655620566,0.9774577743756868,-4.552776692402266,0.0,1.0,0.0 -768,2.0,1.4384646312949425,1.2,0.0,0.0,0.974038509629722,-4.189114119888227,1.0,0.0,0.0 -768,3.0,4.5551379991006495,1.6,0.0,0.0,0.9673154113692376,-5.136434431917219,1.0,0.0,0.0 -768,4.0,56.45973677832649,19.0,-2.381377167199551e-09,24.100846929093805,0.95668548873002,-11.63351025924114,0.0,1.0,0.0 -768,5.0,0.0,0.0,0.0,0.0,0.9550948716854372,-10.43425793614678,1.0,0.0,0.0 -768,6.0,13.66541399730195,10.9,0.0,0.0,0.9423524863034553,-10.975172340075709,1.0,0.0,0.0 -768,7.0,17.980807891186778,30.0,1.3245377108843466e-09,39.84074316355005,0.9572741149157836,-10.969270492709253,0.0,1.0,0.0 -768,8.0,0.0,0.0,0.0,0.0,1.022815351573597,-13.686757178839407,1.0,0.0,0.0 -768,9.0,3.4762895256294435,2.0,0.0,0.0,1.0160679406068582,-13.68675717843979,1.0,0.0,0.0 -768,10.0,0.0,0.0,-6.5894763303067106e-09,6.352221800198462,1.0355740922978796,-13.686757179580818,0.0,1.0,0.0 -768,11.0,6.712834946043063,7.5,0.0,0.0,1.028392583142674,-11.193548056828323,1.0,0.0,0.0 -768,12.0,0.0,0.0,-1.5365553775873863e-09,23.92765566513201,1.059995287720011,-11.19354805694139,0.0,1.0,0.0 -768,13.0,3.716033630845268,1.6,0.0,0.0,1.0113954752760386,-11.950036138240984,1.0,0.0,0.0 -768,14.0,4.914754156924386,2.5,0.0,0.0,1.0008759764083952,-12.101214870402908,1.0,0.0,0.0 -768,15.0,2.097760920638457,1.8,0.0,0.0,1.015261574660978,-12.373169644797736,1.0,0.0,0.0 -768,16.0,5.394242367356033,5.8,0.0,0.0,1.011793117424548,-13.38692027129508,1.0,0.0,0.0 -768,17.0,1.9179528417265896,0.9,0.0,0.0,0.9795808378073944,-12.928083930958044,1.0,0.0,0.0 -768,18.0,5.693922498875813,3.4,0.0,0.0,0.9694694948240952,-13.31664236051756,1.0,0.0,0.0 -768,19.0,1.3185925786870305,0.7,0.0,0.0,0.96851488638601,-13.356833680532771,1.0,0.0,0.0 -768,20.0,10.488804603192287,11.2,0.0,0.0,1.004070189939072,-13.909072377466446,1.0,0.0,0.0 -768,21.0,0.0,0.0,0.0,0.0,0.9642813335096828,-13.298267220015587,1.0,0.0,0.0 -768,22.0,1.9179528417265896,1.6,0.0,0.0,0.982121110926319,-12.67808026238199,1.0,0.0,0.0 -768,23.0,5.214434288444165,6.7,0.0,0.0,0.9642813335096828,-13.298267220015592,1.0,0.0,0.0 -768,24.0,0.0,0.0,0.0,0.0,0.960425222737803,-13.262727728168809,1.0,0.0,0.0 -768,25.0,2.097760920638457,2.3,0.0,0.0,0.9455350513944124,-13.396503493093087,1.0,0.0,0.0 -768,26.0,0.0,0.0,0.0,0.0,0.9655269769201288,-13.130088029799388,1.0,0.0,0.0 -768,27.0,0.0,0.0,0.0,0.0,0.9531032755187728,-10.816836367045417,1.0,0.0,0.0 -768,28.0,1.4384646312949425,0.9,0.0,0.0,0.9506280334747712,-13.876179096504028,1.0,0.0,0.0 -768,29.0,6.353218788219328,1.9,0.0,0.0,0.942421595283634,-14.43156707458138,1.0,0.0,0.0 -769,0.0,0.0,0.0,177.83350643332366,0.0012716961734327,1.0,0.0,0.0,0.0,1.0 -769,1.0,13.006117707958436,12.7,1.3994058582706772e-06,12.1715706860793,0.978764541265021,-4.092553360073217,0.0,1.0,0.0 -769,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722030101391338,-5.3657027712641,1.0,0.0,0.0 -769,3.0,4.5551379991006495,1.6,0.0,0.0,0.9652187995748696,-6.598984720853695,1.0,0.0,0.0 -769,4.0,56.45973677832649,19.0,-1.6356056872204474e-10,25.164555409801608,0.9572412383256624,-9.852520255082489,0.0,1.0,0.0 -769,5.0,0.0,0.0,0.0,0.0,0.9646255073256476,-7.828924806858134,1.0,0.0,0.0 -769,6.0,13.66541399730195,10.9,0.0,0.0,0.9548951471686228,-8.970929159733126,1.0,0.0,0.0 -769,7.0,17.980807891186778,30.0,-1.7129125562746715e-10,31.07841228883405,0.963618118206128,-8.303743397126544,0.0,1.0,0.0 -769,8.0,0.0,0.0,0.0,0.0,1.0140646718425348,-9.820502269205166,1.0,0.0,0.0 -769,9.0,3.4762895256294435,2.0,0.0,0.0,1.0049207611977276,-10.854098028761848,1.0,0.0,0.0 -769,10.0,0.0,0.0,-3.0476505299212186e-10,23.409336417873316,1.059999974593689,-9.820502269238958,0.0,1.0,0.0 -769,11.0,6.712834946043063,7.5,0.0,0.0,1.0129300868962108,-10.344766381328716,1.0,0.0,0.0 -769,12.0,0.0,0.0,-2.138267744318796e-10,11.121126673912896,1.028074492728282,-10.344766381345185,0.0,1.0,0.0 -769,13.0,3.716033630845268,1.6,0.0,0.0,1.0012971497743504,-10.873148494365926,1.0,0.0,0.0 -769,14.0,4.914754156924386,2.5,0.0,0.0,0.997731728571681,-10.907389534539384,1.0,0.0,0.0 -769,15.0,2.097760920638457,1.8,0.0,0.0,1.0031072532152725,-10.68923445078716,1.0,0.0,0.0 -769,16.0,5.394242367356033,5.8,0.0,0.0,0.9998963803069996,-10.913848266520734,1.0,0.0,0.0 -769,17.0,1.9179528417265896,0.9,0.0,0.0,0.9906726937797556,-11.282502456529498,1.0,0.0,0.0 -769,18.0,5.693922498875813,3.4,0.0,0.0,0.9889073659996688,-11.39462653134534,1.0,0.0,0.0 -769,19.0,1.3185925786870305,0.7,0.0,0.0,0.9922698918069788,-11.294858653444342,1.0,0.0,0.0 -769,20.0,10.488804603192287,11.2,0.0,0.0,0.9940229343936734,-11.064440565717645,1.0,0.0,0.0 -769,21.0,0.0,0.0,0.0,0.0,0.994413415858771,-11.059555143941264,1.0,0.0,0.0 -769,22.0,1.9179528417265896,1.6,0.0,0.0,0.9887641904872532,-11.11299399445132,1.0,0.0,0.0 -769,23.0,5.214434288444165,6.7,0.0,0.0,0.9837705634442996,-11.213856454311188,1.0,0.0,0.0 -769,24.0,0.0,0.0,0.0,0.0,0.9771368209863048,-10.916693715856866,1.0,0.0,0.0 -769,25.0,2.097760920638457,2.3,0.0,0.0,0.9625093329147149,-11.045862701276784,1.0,0.0,0.0 -769,26.0,0.0,0.0,0.0,0.0,0.9802950550691304,-10.6284253285461,1.0,0.0,0.0 -769,27.0,0.0,0.0,0.0,0.0,0.9624416810581508,-8.222418442385564,1.0,0.0,0.0 -769,28.0,1.4384646312949425,0.9,0.0,0.0,0.965635526589944,-11.351870791652996,1.0,0.0,0.0 -769,29.0,6.353218788219328,1.9,0.0,0.0,0.9575611896328796,-11.890000184735326,1.0,0.0,0.0 -770,0.0,0.0,0.0,177.83350643332366,0.0012716961734327,1.0,0.0,0.0,0.0,1.0 -770,1.0,13.006117707958436,12.7,1.3994058582706772e-06,12.1715706860793,0.978764541265021,-4.092553360073217,0.0,1.0,0.0 -770,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722030101391338,-5.3657027712641,1.0,0.0,0.0 -770,3.0,4.5551379991006495,1.6,0.0,0.0,0.9652187995748696,-6.598984720853695,1.0,0.0,0.0 -770,4.0,56.45973677832649,19.0,-1.6356056872204474e-10,25.164555409801608,0.9572412383256624,-9.852520255082489,0.0,1.0,0.0 -770,5.0,0.0,0.0,0.0,0.0,0.9646255073256476,-7.828924806858134,1.0,0.0,0.0 -770,6.0,13.66541399730195,10.9,0.0,0.0,0.9548951471686228,-8.970929159733126,1.0,0.0,0.0 -770,7.0,17.980807891186778,30.0,-1.7129125562746715e-10,31.07841228883405,0.963618118206128,-8.303743397126544,0.0,1.0,0.0 -770,8.0,0.0,0.0,0.0,0.0,1.0140646718425348,-9.820502269205166,1.0,0.0,0.0 -770,9.0,3.4762895256294435,2.0,0.0,0.0,1.0049207611977276,-10.854098028761848,1.0,0.0,0.0 -770,10.0,0.0,0.0,-3.0476505299212186e-10,23.409336417873316,1.059999974593689,-9.820502269238958,0.0,1.0,0.0 -770,11.0,6.712834946043063,7.5,0.0,0.0,1.0129300868962108,-10.344766381328716,1.0,0.0,0.0 -770,12.0,0.0,0.0,-2.138267744318796e-10,11.121126673912896,1.028074492728282,-10.344766381345185,0.0,1.0,0.0 -770,13.0,3.716033630845268,1.6,0.0,0.0,1.0012971497743504,-10.873148494365926,1.0,0.0,0.0 -770,14.0,4.914754156924386,2.5,0.0,0.0,0.997731728571681,-10.907389534539384,1.0,0.0,0.0 -770,15.0,2.097760920638457,1.8,0.0,0.0,1.0031072532152725,-10.68923445078716,1.0,0.0,0.0 -770,16.0,5.394242367356033,5.8,0.0,0.0,0.9998963803069996,-10.913848266520734,1.0,0.0,0.0 -770,17.0,1.9179528417265896,0.9,0.0,0.0,0.9906726937797556,-11.282502456529498,1.0,0.0,0.0 -770,18.0,5.693922498875813,3.4,0.0,0.0,0.9889073659996688,-11.39462653134534,1.0,0.0,0.0 -770,19.0,1.3185925786870305,0.7,0.0,0.0,0.9922698918069788,-11.294858653444342,1.0,0.0,0.0 -770,20.0,10.488804603192287,11.2,0.0,0.0,0.9940229343936734,-11.064440565717645,1.0,0.0,0.0 -770,21.0,0.0,0.0,0.0,0.0,0.994413415858771,-11.059555143941264,1.0,0.0,0.0 -770,22.0,1.9179528417265896,1.6,0.0,0.0,0.9887641904872532,-11.11299399445132,1.0,0.0,0.0 -770,23.0,5.214434288444165,6.7,0.0,0.0,0.9837705634442996,-11.213856454311188,1.0,0.0,0.0 -770,24.0,0.0,0.0,0.0,0.0,0.9771368209863048,-10.916693715856866,1.0,0.0,0.0 -770,25.0,2.097760920638457,2.3,0.0,0.0,0.9625093329147149,-11.045862701276784,1.0,0.0,0.0 -770,26.0,0.0,0.0,0.0,0.0,0.9802950550691304,-10.6284253285461,1.0,0.0,0.0 -770,27.0,0.0,0.0,0.0,0.0,0.9624416810581508,-8.222418442385564,1.0,0.0,0.0 -770,28.0,1.4384646312949425,0.9,0.0,0.0,0.965635526589944,-11.351870791652996,1.0,0.0,0.0 -770,29.0,6.353218788219328,1.9,0.0,0.0,0.9575611896328796,-11.890000184735326,1.0,0.0,0.0 -771,0.0,0.0,0.0,177.83350643332366,0.0012716961734327,1.0,0.0,0.0,0.0,1.0 -771,1.0,13.006117707958436,12.7,1.3994058582706772e-06,12.1715706860793,0.978764541265021,-4.092553360073217,0.0,1.0,0.0 -771,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722030101391338,-5.3657027712641,1.0,0.0,0.0 -771,3.0,4.5551379991006495,1.6,0.0,0.0,0.9652187995748696,-6.598984720853695,1.0,0.0,0.0 -771,4.0,56.45973677832649,19.0,-1.6356056872204474e-10,25.164555409801608,0.9572412383256624,-9.852520255082489,0.0,1.0,0.0 -771,5.0,0.0,0.0,0.0,0.0,0.9646255073256476,-7.828924806858134,1.0,0.0,0.0 -771,6.0,13.66541399730195,10.9,0.0,0.0,0.9548951471686228,-8.970929159733126,1.0,0.0,0.0 -771,7.0,17.980807891186778,30.0,-1.7129125562746715e-10,31.07841228883405,0.963618118206128,-8.303743397126544,0.0,1.0,0.0 -771,8.0,0.0,0.0,0.0,0.0,1.0140646718425348,-9.820502269205166,1.0,0.0,0.0 -771,9.0,3.4762895256294435,2.0,0.0,0.0,1.0049207611977276,-10.854098028761848,1.0,0.0,0.0 -771,10.0,0.0,0.0,-3.0476505299212186e-10,23.409336417873316,1.059999974593689,-9.820502269238958,0.0,1.0,0.0 -771,11.0,6.712834946043063,7.5,0.0,0.0,1.0129300868962108,-10.344766381328716,1.0,0.0,0.0 -771,12.0,0.0,0.0,-2.138267744318796e-10,11.121126673912896,1.028074492728282,-10.344766381345185,0.0,1.0,0.0 -771,13.0,3.716033630845268,1.6,0.0,0.0,1.0012971497743504,-10.873148494365926,1.0,0.0,0.0 -771,14.0,4.914754156924386,2.5,0.0,0.0,0.997731728571681,-10.907389534539384,1.0,0.0,0.0 -771,15.0,2.097760920638457,1.8,0.0,0.0,1.0031072532152725,-10.68923445078716,1.0,0.0,0.0 -771,16.0,5.394242367356033,5.8,0.0,0.0,0.9998963803069996,-10.913848266520734,1.0,0.0,0.0 -771,17.0,1.9179528417265896,0.9,0.0,0.0,0.9906726937797556,-11.282502456529498,1.0,0.0,0.0 -771,18.0,5.693922498875813,3.4,0.0,0.0,0.9889073659996688,-11.39462653134534,1.0,0.0,0.0 -771,19.0,1.3185925786870305,0.7,0.0,0.0,0.9922698918069788,-11.294858653444342,1.0,0.0,0.0 -771,20.0,10.488804603192287,11.2,0.0,0.0,0.9940229343936734,-11.064440565717645,1.0,0.0,0.0 -771,21.0,0.0,0.0,0.0,0.0,0.994413415858771,-11.059555143941264,1.0,0.0,0.0 -771,22.0,1.9179528417265896,1.6,0.0,0.0,0.9887641904872532,-11.11299399445132,1.0,0.0,0.0 -771,23.0,5.214434288444165,6.7,0.0,0.0,0.9837705634442996,-11.213856454311188,1.0,0.0,0.0 -771,24.0,0.0,0.0,0.0,0.0,0.9771368209863048,-10.916693715856866,1.0,0.0,0.0 -771,25.0,2.097760920638457,2.3,0.0,0.0,0.9625093329147149,-11.045862701276784,1.0,0.0,0.0 -771,26.0,0.0,0.0,0.0,0.0,0.9802950550691304,-10.6284253285461,1.0,0.0,0.0 -771,27.0,0.0,0.0,0.0,0.0,0.9624416810581508,-8.222418442385564,1.0,0.0,0.0 -771,28.0,1.4384646312949425,0.9,0.0,0.0,0.965635526589944,-11.351870791652996,1.0,0.0,0.0 -771,29.0,6.353218788219328,1.9,0.0,0.0,0.9575611896328796,-11.890000184735326,1.0,0.0,0.0 -772,0.0,0.0,0.0,177.83350643332366,0.0012716961734327,1.0,0.0,0.0,0.0,1.0 -772,1.0,13.006117707958436,12.7,1.3994058582706772e-06,12.1715706860793,0.978764541265021,-4.092553360073217,0.0,1.0,0.0 -772,2.0,1.4384646312949425,1.2,0.0,0.0,0.9722030101391338,-5.3657027712641,1.0,0.0,0.0 -772,3.0,4.5551379991006495,1.6,0.0,0.0,0.9652187995748696,-6.598984720853695,1.0,0.0,0.0 -772,4.0,56.45973677832649,19.0,-1.6356056872204474e-10,25.164555409801608,0.9572412383256624,-9.852520255082489,0.0,1.0,0.0 -772,5.0,0.0,0.0,0.0,0.0,0.9646255073256476,-7.828924806858134,1.0,0.0,0.0 -772,6.0,13.66541399730195,10.9,0.0,0.0,0.9548951471686228,-8.970929159733126,1.0,0.0,0.0 -772,7.0,17.980807891186778,30.0,-1.7129125562746715e-10,31.07841228883405,0.963618118206128,-8.303743397126544,0.0,1.0,0.0 -772,8.0,0.0,0.0,0.0,0.0,1.0140646718425348,-9.820502269205166,1.0,0.0,0.0 -772,9.0,3.4762895256294435,2.0,0.0,0.0,1.0049207611977276,-10.854098028761848,1.0,0.0,0.0 -772,10.0,0.0,0.0,-3.0476505299212186e-10,23.409336417873316,1.059999974593689,-9.820502269238958,0.0,1.0,0.0 -772,11.0,6.712834946043063,7.5,0.0,0.0,1.0129300868962108,-10.344766381328716,1.0,0.0,0.0 -772,12.0,0.0,0.0,-2.138267744318796e-10,11.121126673912896,1.028074492728282,-10.344766381345185,0.0,1.0,0.0 -772,13.0,3.716033630845268,1.6,0.0,0.0,1.0012971497743504,-10.873148494365926,1.0,0.0,0.0 -772,14.0,4.914754156924386,2.5,0.0,0.0,0.997731728571681,-10.907389534539384,1.0,0.0,0.0 -772,15.0,2.097760920638457,1.8,0.0,0.0,1.0031072532152725,-10.68923445078716,1.0,0.0,0.0 -772,16.0,5.394242367356033,5.8,0.0,0.0,0.9998963803069996,-10.913848266520734,1.0,0.0,0.0 -772,17.0,1.9179528417265896,0.9,0.0,0.0,0.9906726937797556,-11.282502456529498,1.0,0.0,0.0 -772,18.0,5.693922498875813,3.4,0.0,0.0,0.9889073659996688,-11.39462653134534,1.0,0.0,0.0 -772,19.0,1.3185925786870305,0.7,0.0,0.0,0.9922698918069788,-11.294858653444342,1.0,0.0,0.0 -772,20.0,10.488804603192287,11.2,0.0,0.0,0.9940229343936734,-11.064440565717645,1.0,0.0,0.0 -772,21.0,0.0,0.0,0.0,0.0,0.994413415858771,-11.059555143941264,1.0,0.0,0.0 -772,22.0,1.9179528417265896,1.6,0.0,0.0,0.9887641904872532,-11.11299399445132,1.0,0.0,0.0 -772,23.0,5.214434288444165,6.7,0.0,0.0,0.9837705634442996,-11.213856454311188,1.0,0.0,0.0 -772,24.0,0.0,0.0,0.0,0.0,0.9771368209863048,-10.916693715856866,1.0,0.0,0.0 -772,25.0,2.097760920638457,2.3,0.0,0.0,0.9625093329147149,-11.045862701276784,1.0,0.0,0.0 -772,26.0,0.0,0.0,0.0,0.0,0.9802950550691304,-10.6284253285461,1.0,0.0,0.0 -772,27.0,0.0,0.0,0.0,0.0,0.9624416810581508,-8.222418442385564,1.0,0.0,0.0 -772,28.0,1.4384646312949425,0.9,0.0,0.0,0.965635526589944,-11.351870791652996,1.0,0.0,0.0 -772,29.0,6.353218788219328,1.9,0.0,0.0,0.9575611896328796,-11.890000184735326,1.0,0.0,0.0 -773,0.0,0.0,0.0,175.3915411270546,0.0011613689445688,1.0,0.0,0.0,0.0,1.0 -773,1.0,12.83539022791581,12.7,1.1256490643811955e-06,11.905516042962624,0.9789891436588264,-4.034657785218968,0.0,1.0,0.0 -773,2.0,1.419582329354744,1.2,0.0,0.0,0.9725106437775636,-5.2900469296352925,1.0,0.0,0.0 -773,3.0,4.495344042956689,1.6,0.0,0.0,0.9655811541609216,-6.505237015173538,1.0,0.0,0.0 -773,4.0,55.7186064271737,19.0,2.5699013590866244e-10,25.00659297521865,0.9576977967306723,-9.71287931787155,0.0,1.0,0.0 -773,5.0,0.0,0.0,0.0,0.0,0.9650224443023074,-7.718435151683397,1.0,0.0,0.0 -773,6.0,13.486032128870068,10.9,0.0,0.0,0.9553500137359228,-8.842912803227453,1.0,0.0,0.0 -773,7.0,17.7447791169343,30.0,3.0582470003164383e-10,30.989159333578428,0.9640127476970493,-8.186322534289886,0.0,1.0,0.0 -773,8.0,0.0,0.0,0.0,0.0,1.0143070559371254,-9.683002891929986,1.0,0.0,0.0 -773,9.0,3.430657295940631,2.0,0.0,0.0,1.0051921945188174,-10.702729228909387,1.0,0.0,0.0 -773,10.0,0.0,0.0,5.418006180272142e-10,23.285814666388237,1.0599999763039458,-9.683002891869936,0.0,1.0,0.0 -773,11.0,6.624717536988805,7.5,0.0,0.0,1.0130352746703246,-10.199418443615246,1.0,0.0,0.0 -773,12.0,0.0,0.0,3.9388740568442236e-10,10.922182314195734,1.0279111280611868,-10.199418443584904,0.0,1.0,0.0 -773,13.0,3.667254350833089,1.6,0.0,0.0,1.0014932068020064,-10.718934171086358,1.0,0.0,0.0 -773,14.0,4.850239625295375,2.5,0.0,0.0,0.9979665246292144,-10.752145233628896,1.0,0.0,0.0 -773,15.0,2.0702242303090017,1.8,0.0,0.0,1.0033146943252345,-10.53838600975159,1.0,0.0,0.0 -773,16.0,5.3234337350802905,5.8,0.0,0.0,1.0001634675712054,-10.76013138101234,1.0,0.0,0.0 -773,17.0,1.8927764391396589,0.9,0.0,0.0,0.9909823894526472,-11.121428916056065,1.0,0.0,0.0 -773,18.0,5.619180053695862,3.4,0.0,0.0,0.9892441530181748,-11.232028606967692,1.0,0.0,0.0 -773,19.0,1.3012838019085156,0.7,0.0,0.0,0.9925937820160676,-11.134532234741418,1.0,0.0,0.0 -773,20.0,10.351121151545009,11.2,0.0,0.0,0.994343969897718,-10.907738455410977,1.0,0.0,0.0 -773,21.0,0.0,0.0,0.0,0.0,0.9947334629515228,-10.903081324735588,1.0,0.0,0.0 -773,22.0,1.8927764391396589,1.6,0.0,0.0,0.98907820830806,-10.953639645514649,1.0,0.0,0.0 -773,23.0,5.145985943910947,6.7,0.0,0.0,0.9841535630261762,-11.052999285335774,1.0,0.0,0.0 -773,24.0,0.0,0.0,0.0,0.0,0.9775641775064674,-10.759580843839586,1.0,0.0,0.0 -773,25.0,2.0702242303090017,2.3,0.0,0.0,0.963017391112268,-10.88225670908723,1.0,0.0,0.0 -773,26.0,0.0,0.0,0.0,0.0,0.9807152122303232,-10.47712868544444,1.0,0.0,0.0 -773,27.0,0.0,0.0,0.0,0.0,0.9628602467015744,-8.106115064135405,1.0,0.0,0.0 -773,28.0,1.419582329354744,0.9,0.0,0.0,0.9661796029107907,-11.187880771728183,1.0,0.0,0.0 -773,29.0,6.269821954650119,1.9,0.0,0.0,0.9581849770914644,-11.717275613826493,1.0,0.0,0.0 -774,0.0,0.0,0.0,159.67875030581072,4.50589254796796e-07,1.0,0.0,0.0,0.0,1.0 -774,1.0,12.83539022791581,12.7,16.721019046304544,-12.470757481699792,0.9768380931689098,-3.747915031258693,0.0,1.0,0.0 -774,2.0,1.419582329354744,1.2,0.0,0.0,0.9844375896428474,-4.521684150978195,1.0,0.0,0.0 -774,3.0,4.495344042956689,1.6,0.0,0.0,0.9801616688424948,-5.546265875673509,1.0,0.0,0.0 -774,4.0,55.7186064271737,19.0,1.953890903184389e-09,39.99999965871734,0.9590103801060448,-12.583500807086889,0.0,1.0,0.0 -774,5.0,0.0,0.0,0.0,0.0,0.9783787288527288,-6.96793308859183,1.0,0.0,0.0 -774,6.0,13.486032128870068,10.9,0.0,0.0,0.9400000004872496,-13.285479242510592,1.0,0.0,0.0 -774,7.0,17.7447791169343,30.0,-3.0035164269598486e-09,38.05257576818881,0.979926210859568,-7.491568574011886,0.0,1.0,0.0 -774,8.0,0.0,0.0,0.0,0.0,1.0224649917013338,-10.535186555616528,1.0,0.0,0.0 -774,9.0,3.430657295940631,2.0,0.0,0.0,1.0158490312665642,-12.392125874190707,1.0,0.0,0.0 -774,10.0,0.0,0.0,-2.8797542672194922e-09,19.128396087192478,1.059999959058046,-10.535186555933182,0.0,1.0,0.0 -774,11.0,6.624717536988805,7.5,0.0,0.0,1.0069222704285303,-15.385636744868208,1.0,0.0,0.0 -774,12.0,0.0,0.0,-5.951107603576017e-09,23.999991770881014,1.0392531687034443,-15.385636745324383,0.0,1.0,0.0 -774,13.0,3.667254350833089,1.6,0.0,0.0,0.9961300559438409,-15.444624955817098,1.0,0.0,0.0 -774,14.0,4.850239625295375,2.5,0.0,0.0,0.9966080370479502,-15.037925716088088,1.0,0.0,0.0 -774,15.0,2.0702242303090017,1.8,0.0,0.0,1.0063861033565875,-14.247252184496666,1.0,0.0,0.0 -774,16.0,5.3234337350802905,5.8,0.0,0.0,1.0076105420588315,-13.064429035019913,1.0,0.0,0.0 -774,17.0,1.8927764391396589,0.9,0.0,0.0,0.9938627625644852,-14.486634709689444,1.0,0.0,0.0 -774,18.0,5.619180053695862,3.4,0.0,0.0,0.9946962489577224,-14.050914568230754,1.0,0.0,0.0 -774,19.0,1.3012838019085156,0.7,0.0,0.0,0.9994355962083455,-13.668891984775271,1.0,0.0,0.0 -774,20.0,10.351121151545009,11.2,0.0,0.0,1.004695720571419,-12.665143596945263,1.0,0.0,0.0 -774,21.0,0.0,0.0,0.0,0.0,1.0049412649278966,-12.683665896904104,1.0,0.0,0.0 -774,22.0,1.8927764391396589,1.6,0.0,0.0,0.9916064764409882,-14.296382126693244,1.0,0.0,0.0 -774,23.0,5.145985943910947,6.7,0.0,0.0,0.9920452231958856,-13.130271382588669,1.0,0.0,0.0 -774,24.0,0.0,0.0,0.0,0.0,0.9905486984482944,-11.821013474507888,1.0,0.0,0.0 -774,25.0,2.0702242303090017,2.3,0.0,0.0,0.976198386630204,-11.940446546478384,1.0,0.0,0.0 -774,26.0,0.0,0.0,0.0,0.0,0.996617022722366,-10.908379660187686,1.0,0.0,0.0 -774,27.0,0.0,0.0,0.0,0.0,0.9762891112021848,-7.498028685626692,1.0,0.0,0.0 -774,28.0,1.419582329354744,0.9,0.0,0.0,0.9654976378643456,-12.443606229118028,1.0,0.0,0.0 -774,29.0,6.269821954650119,1.9,0.0,0.0,0.9400000039157368,-13.950278199911086,1.0,0.0,0.0 -775,0.0,0.0,0.0,175.3915411270546,0.0011613689445688,1.0,0.0,0.0,0.0,1.0 -775,1.0,12.83539022791581,12.7,1.1256490643811955e-06,11.905516042962624,0.9789891436588264,-4.034657785218968,0.0,1.0,0.0 -775,2.0,1.419582329354744,1.2,0.0,0.0,0.9725106437775636,-5.2900469296352925,1.0,0.0,0.0 -775,3.0,4.495344042956689,1.6,0.0,0.0,0.9655811541609216,-6.505237015173538,1.0,0.0,0.0 -775,4.0,55.7186064271737,19.0,2.5699013590866244e-10,25.00659297521865,0.9576977967306723,-9.71287931787155,0.0,1.0,0.0 -775,5.0,0.0,0.0,0.0,0.0,0.9650224443023074,-7.718435151683397,1.0,0.0,0.0 -775,6.0,13.486032128870068,10.9,0.0,0.0,0.9553500137359228,-8.842912803227453,1.0,0.0,0.0 -775,7.0,17.7447791169343,30.0,3.0582470003164383e-10,30.989159333578428,0.9640127476970493,-8.186322534289886,0.0,1.0,0.0 -775,8.0,0.0,0.0,0.0,0.0,1.0143070559371254,-9.683002891929986,1.0,0.0,0.0 -775,9.0,3.430657295940631,2.0,0.0,0.0,1.0051921945188174,-10.702729228909387,1.0,0.0,0.0 -775,10.0,0.0,0.0,5.418006180272142e-10,23.285814666388237,1.0599999763039458,-9.683002891869936,0.0,1.0,0.0 -775,11.0,6.624717536988805,7.5,0.0,0.0,1.0130352746703246,-10.199418443615246,1.0,0.0,0.0 -775,12.0,0.0,0.0,3.9388740568442236e-10,10.922182314195734,1.0279111280611868,-10.199418443584904,0.0,1.0,0.0 -775,13.0,3.667254350833089,1.6,0.0,0.0,1.0014932068020064,-10.718934171086358,1.0,0.0,0.0 -775,14.0,4.850239625295375,2.5,0.0,0.0,0.9979665246292144,-10.752145233628896,1.0,0.0,0.0 -775,15.0,2.0702242303090017,1.8,0.0,0.0,1.0033146943252345,-10.53838600975159,1.0,0.0,0.0 -775,16.0,5.3234337350802905,5.8,0.0,0.0,1.0001634675712054,-10.76013138101234,1.0,0.0,0.0 -775,17.0,1.8927764391396589,0.9,0.0,0.0,0.9909823894526472,-11.121428916056065,1.0,0.0,0.0 -775,18.0,5.619180053695862,3.4,0.0,0.0,0.9892441530181748,-11.232028606967692,1.0,0.0,0.0 -775,19.0,1.3012838019085156,0.7,0.0,0.0,0.9925937820160676,-11.134532234741418,1.0,0.0,0.0 -775,20.0,10.351121151545009,11.2,0.0,0.0,0.994343969897718,-10.907738455410977,1.0,0.0,0.0 -775,21.0,0.0,0.0,0.0,0.0,0.9947334629515228,-10.903081324735588,1.0,0.0,0.0 -775,22.0,1.8927764391396589,1.6,0.0,0.0,0.98907820830806,-10.953639645514649,1.0,0.0,0.0 -775,23.0,5.145985943910947,6.7,0.0,0.0,0.9841535630261762,-11.052999285335774,1.0,0.0,0.0 -775,24.0,0.0,0.0,0.0,0.0,0.9775641775064674,-10.759580843839586,1.0,0.0,0.0 -775,25.0,2.0702242303090017,2.3,0.0,0.0,0.963017391112268,-10.88225670908723,1.0,0.0,0.0 -775,26.0,0.0,0.0,0.0,0.0,0.9807152122303232,-10.47712868544444,1.0,0.0,0.0 -775,27.0,0.0,0.0,0.0,0.0,0.9628602467015744,-8.106115064135405,1.0,0.0,0.0 -775,28.0,1.419582329354744,0.9,0.0,0.0,0.9661796029107907,-11.187880771728183,1.0,0.0,0.0 -775,29.0,6.269821954650119,1.9,0.0,0.0,0.9581849770914644,-11.717275613826493,1.0,0.0,0.0 -776,0.0,0.0,0.0,175.50734003059196,0.0037896230590916,1.0,0.0,0.0,0.0,1.0 -776,1.0,12.83539022791581,12.7,3.1647094782443447e-06,18.00886840172194,0.9796155195981168,-4.142887592469292,0.0,1.0,0.0 -776,2.0,1.419582329354744,1.2,0.0,0.0,0.9703217491887528,-5.001767219605097,1.0,0.0,0.0 -776,3.0,4.495344042956689,1.6,0.0,0.0,0.9628340086513488,-6.14818201737205,1.0,0.0,0.0 -776,4.0,55.7186064271737,19.0,7.124921464821121e-09,23.871018118860874,0.959039562728612,-11.09382124052273,0.0,1.0,0.0 -776,5.0,0.0,0.0,0.0,0.0,0.9626954284966618,-7.299099542962348,1.0,0.0,0.0 -776,6.0,13.486032128870068,10.9,0.0,0.0,0.950120485447864,-7.822350261541032,1.0,0.0,0.0 -776,7.0,17.7447791169343,30.0,-6.692999799178063e-10,39.81083248863371,0.964895008322721,-7.826091450380494,0.0,1.0,0.0 -776,8.0,0.0,0.0,0.0,0.0,1.0063161037168595,-9.486430575597176,1.0,0.0,0.0 -776,9.0,3.430657295940631,2.0,0.0,0.0,0.9934602356911142,-10.63238379620016,1.0,0.0,0.0 -776,10.0,0.0,0.0,-2.2254827462079742e-10,23.995187725771416,1.0536832698272116,-9.486430575622188,0.0,1.0,0.0 -776,11.0,6.624717536988805,7.5,0.0,0.0,0.9955800261974292,-9.474358675943336,1.0,0.0,0.0 -776,12.0,0.0,0.0,0.0,0.0,0.9955800261974292,-9.474358675943336,0.0,1.0,0.0 -776,13.0,3.667254350833089,1.6,0.0,0.0,0.9848588237647212,-10.076022827231846,1.0,0.0,0.0 -776,14.0,4.850239625295375,2.5,0.0,0.0,0.9818315986421864,-10.197269485698587,1.0,0.0,0.0 -776,15.0,2.0702242303090017,1.8,0.0,0.0,0.9798373490650856,-11.034486084918116,1.0,0.0,0.0 -776,16.0,5.3234337350802905,5.8,0.0,0.0,0.9844819780246448,-10.854048644809854,1.0,0.0,0.0 -776,17.0,1.8927764391396589,0.9,0.0,0.0,0.9762107723033858,-10.749642034856237,1.0,0.0,0.0 -776,18.0,5.619180053695862,3.4,0.0,0.0,0.975330781056032,-10.965791582203808,1.0,0.0,0.0 -776,19.0,1.3012838019085156,0.7,0.0,0.0,0.9791914994478988,-10.919450260766382,1.0,0.0,0.0 -776,20.0,10.351121151545009,11.2,0.0,0.0,0.982479013645796,-10.810518603423578,1.0,0.0,0.0 -776,21.0,0.0,0.0,0.0,0.0,0.982875907856848,-10.795514982615783,1.0,0.0,0.0 -776,22.0,1.8927764391396589,1.6,0.0,0.0,0.9747854638964024,-10.535210216317132,1.0,0.0,0.0 -776,23.0,5.145985943910947,6.7,0.0,0.0,0.9724576587584592,-10.811650832089995,1.0,0.0,0.0 -776,24.0,0.0,0.0,0.0,0.0,0.969530161391927,-10.507763916726004,1.0,0.0,0.0 -776,25.0,2.0702242303090017,2.3,0.0,0.0,0.9548590486372598,-10.632513169351585,1.0,0.0,0.0 -776,26.0,0.0,0.0,0.0,0.0,0.9750152013016236,-10.213423820602424,1.0,0.0,0.0 -776,27.0,0.0,0.0,0.0,0.0,0.960760171322444,-7.707144685594448,1.0,0.0,0.0 -776,28.0,1.419582329354744,0.9,0.0,0.0,0.9603890318152696,-10.932635780241643,1.0,0.0,0.0 -776,29.0,6.269821954650119,1.9,0.0,0.0,0.9523445034269994,-11.46848209705964,1.0,0.0,0.0 -777,0.0,0.0,0.0,175.3915411270546,0.0011613689445688,1.0,0.0,0.0,0.0,1.0 -777,1.0,12.83539022791581,12.7,1.1256490643811955e-06,11.905516042962624,0.9789891436588264,-4.034657785218968,0.0,1.0,0.0 -777,2.0,1.419582329354744,1.2,0.0,0.0,0.9725106437775636,-5.2900469296352925,1.0,0.0,0.0 -777,3.0,4.495344042956689,1.6,0.0,0.0,0.9655811541609216,-6.505237015173538,1.0,0.0,0.0 -777,4.0,55.7186064271737,19.0,2.5699013590866244e-10,25.00659297521865,0.9576977967306723,-9.71287931787155,0.0,1.0,0.0 -777,5.0,0.0,0.0,0.0,0.0,0.9650224443023074,-7.718435151683397,1.0,0.0,0.0 -777,6.0,13.486032128870068,10.9,0.0,0.0,0.9553500137359228,-8.842912803227453,1.0,0.0,0.0 -777,7.0,17.7447791169343,30.0,3.0582470003164383e-10,30.989159333578428,0.9640127476970493,-8.186322534289886,0.0,1.0,0.0 -777,8.0,0.0,0.0,0.0,0.0,1.0143070559371254,-9.683002891929986,1.0,0.0,0.0 -777,9.0,3.430657295940631,2.0,0.0,0.0,1.0051921945188174,-10.702729228909387,1.0,0.0,0.0 -777,10.0,0.0,0.0,5.418006180272142e-10,23.285814666388237,1.0599999763039458,-9.683002891869936,0.0,1.0,0.0 -777,11.0,6.624717536988805,7.5,0.0,0.0,1.0130352746703246,-10.199418443615246,1.0,0.0,0.0 -777,12.0,0.0,0.0,3.9388740568442236e-10,10.922182314195734,1.0279111280611868,-10.199418443584904,0.0,1.0,0.0 -777,13.0,3.667254350833089,1.6,0.0,0.0,1.0014932068020064,-10.718934171086358,1.0,0.0,0.0 -777,14.0,4.850239625295375,2.5,0.0,0.0,0.9979665246292144,-10.752145233628896,1.0,0.0,0.0 -777,15.0,2.0702242303090017,1.8,0.0,0.0,1.0033146943252345,-10.53838600975159,1.0,0.0,0.0 -777,16.0,5.3234337350802905,5.8,0.0,0.0,1.0001634675712054,-10.76013138101234,1.0,0.0,0.0 -777,17.0,1.8927764391396589,0.9,0.0,0.0,0.9909823894526472,-11.121428916056065,1.0,0.0,0.0 -777,18.0,5.619180053695862,3.4,0.0,0.0,0.9892441530181748,-11.232028606967692,1.0,0.0,0.0 -777,19.0,1.3012838019085156,0.7,0.0,0.0,0.9925937820160676,-11.134532234741418,1.0,0.0,0.0 -777,20.0,10.351121151545009,11.2,0.0,0.0,0.994343969897718,-10.907738455410977,1.0,0.0,0.0 -777,21.0,0.0,0.0,0.0,0.0,0.9947334629515228,-10.903081324735588,1.0,0.0,0.0 -777,22.0,1.8927764391396589,1.6,0.0,0.0,0.98907820830806,-10.953639645514649,1.0,0.0,0.0 -777,23.0,5.145985943910947,6.7,0.0,0.0,0.9841535630261762,-11.052999285335774,1.0,0.0,0.0 -777,24.0,0.0,0.0,0.0,0.0,0.9775641775064674,-10.759580843839586,1.0,0.0,0.0 -777,25.0,2.0702242303090017,2.3,0.0,0.0,0.963017391112268,-10.88225670908723,1.0,0.0,0.0 -777,26.0,0.0,0.0,0.0,0.0,0.9807152122303232,-10.47712868544444,1.0,0.0,0.0 -777,27.0,0.0,0.0,0.0,0.0,0.9628602467015744,-8.106115064135405,1.0,0.0,0.0 -777,28.0,1.419582329354744,0.9,0.0,0.0,0.9661796029107907,-11.187880771728183,1.0,0.0,0.0 -777,29.0,6.269821954650119,1.9,0.0,0.0,0.9581849770914644,-11.717275613826493,1.0,0.0,0.0 -778,0.0,0.0,0.0,175.3915411270546,0.0011613689445688,1.0,0.0,0.0,0.0,1.0 -778,1.0,12.83539022791581,12.7,1.1256490643811955e-06,11.905516042962624,0.9789891436588264,-4.034657785218968,0.0,1.0,0.0 -778,2.0,1.419582329354744,1.2,0.0,0.0,0.9725106437775636,-5.2900469296352925,1.0,0.0,0.0 -778,3.0,4.495344042956689,1.6,0.0,0.0,0.9655811541609216,-6.505237015173538,1.0,0.0,0.0 -778,4.0,55.7186064271737,19.0,2.5699013590866244e-10,25.00659297521865,0.9576977967306723,-9.71287931787155,0.0,1.0,0.0 -778,5.0,0.0,0.0,0.0,0.0,0.9650224443023074,-7.718435151683397,1.0,0.0,0.0 -778,6.0,13.486032128870068,10.9,0.0,0.0,0.9553500137359228,-8.842912803227453,1.0,0.0,0.0 -778,7.0,17.7447791169343,30.0,3.0582470003164383e-10,30.989159333578428,0.9640127476970493,-8.186322534289886,0.0,1.0,0.0 -778,8.0,0.0,0.0,0.0,0.0,1.0143070559371254,-9.683002891929986,1.0,0.0,0.0 -778,9.0,3.430657295940631,2.0,0.0,0.0,1.0051921945188174,-10.702729228909387,1.0,0.0,0.0 -778,10.0,0.0,0.0,5.418006180272142e-10,23.285814666388237,1.0599999763039458,-9.683002891869936,0.0,1.0,0.0 -778,11.0,6.624717536988805,7.5,0.0,0.0,1.0130352746703246,-10.199418443615246,1.0,0.0,0.0 -778,12.0,0.0,0.0,3.9388740568442236e-10,10.922182314195734,1.0279111280611868,-10.199418443584904,0.0,1.0,0.0 -778,13.0,3.667254350833089,1.6,0.0,0.0,1.0014932068020064,-10.718934171086358,1.0,0.0,0.0 -778,14.0,4.850239625295375,2.5,0.0,0.0,0.9979665246292144,-10.752145233628896,1.0,0.0,0.0 -778,15.0,2.0702242303090017,1.8,0.0,0.0,1.0033146943252345,-10.53838600975159,1.0,0.0,0.0 -778,16.0,5.3234337350802905,5.8,0.0,0.0,1.0001634675712054,-10.76013138101234,1.0,0.0,0.0 -778,17.0,1.8927764391396589,0.9,0.0,0.0,0.9909823894526472,-11.121428916056065,1.0,0.0,0.0 -778,18.0,5.619180053695862,3.4,0.0,0.0,0.9892441530181748,-11.232028606967692,1.0,0.0,0.0 -778,19.0,1.3012838019085156,0.7,0.0,0.0,0.9925937820160676,-11.134532234741418,1.0,0.0,0.0 -778,20.0,10.351121151545009,11.2,0.0,0.0,0.994343969897718,-10.907738455410977,1.0,0.0,0.0 -778,21.0,0.0,0.0,0.0,0.0,0.9947334629515228,-10.903081324735588,1.0,0.0,0.0 -778,22.0,1.8927764391396589,1.6,0.0,0.0,0.98907820830806,-10.953639645514649,1.0,0.0,0.0 -778,23.0,5.145985943910947,6.7,0.0,0.0,0.9841535630261762,-11.052999285335774,1.0,0.0,0.0 -778,24.0,0.0,0.0,0.0,0.0,0.9775641775064674,-10.759580843839586,1.0,0.0,0.0 -778,25.0,2.0702242303090017,2.3,0.0,0.0,0.963017391112268,-10.88225670908723,1.0,0.0,0.0 -778,26.0,0.0,0.0,0.0,0.0,0.9807152122303232,-10.47712868544444,1.0,0.0,0.0 -778,27.0,0.0,0.0,0.0,0.0,0.9628602467015744,-8.106115064135405,1.0,0.0,0.0 -778,28.0,1.419582329354744,0.9,0.0,0.0,0.9661796029107907,-11.187880771728183,1.0,0.0,0.0 -778,29.0,6.269821954650119,1.9,0.0,0.0,0.9581849770914644,-11.717275613826493,1.0,0.0,0.0 -779,0.0,0.0,0.0,175.3915411270546,0.0011613689445688,1.0,0.0,0.0,0.0,1.0 -779,1.0,12.83539022791581,12.7,1.1256490643811955e-06,11.905516042962624,0.9789891436588264,-4.034657785218968,0.0,1.0,0.0 -779,2.0,1.419582329354744,1.2,0.0,0.0,0.9725106437775636,-5.2900469296352925,1.0,0.0,0.0 -779,3.0,4.495344042956689,1.6,0.0,0.0,0.9655811541609216,-6.505237015173538,1.0,0.0,0.0 -779,4.0,55.7186064271737,19.0,2.5699013590866244e-10,25.00659297521865,0.9576977967306723,-9.71287931787155,0.0,1.0,0.0 -779,5.0,0.0,0.0,0.0,0.0,0.9650224443023074,-7.718435151683397,1.0,0.0,0.0 -779,6.0,13.486032128870068,10.9,0.0,0.0,0.9553500137359228,-8.842912803227453,1.0,0.0,0.0 -779,7.0,17.7447791169343,30.0,3.0582470003164383e-10,30.989159333578428,0.9640127476970493,-8.186322534289886,0.0,1.0,0.0 -779,8.0,0.0,0.0,0.0,0.0,1.0143070559371254,-9.683002891929986,1.0,0.0,0.0 -779,9.0,3.430657295940631,2.0,0.0,0.0,1.0051921945188174,-10.702729228909387,1.0,0.0,0.0 -779,10.0,0.0,0.0,5.418006180272142e-10,23.285814666388237,1.0599999763039458,-9.683002891869936,0.0,1.0,0.0 -779,11.0,6.624717536988805,7.5,0.0,0.0,1.0130352746703246,-10.199418443615246,1.0,0.0,0.0 -779,12.0,0.0,0.0,3.9388740568442236e-10,10.922182314195734,1.0279111280611868,-10.199418443584904,0.0,1.0,0.0 -779,13.0,3.667254350833089,1.6,0.0,0.0,1.0014932068020064,-10.718934171086358,1.0,0.0,0.0 -779,14.0,4.850239625295375,2.5,0.0,0.0,0.9979665246292144,-10.752145233628896,1.0,0.0,0.0 -779,15.0,2.0702242303090017,1.8,0.0,0.0,1.0033146943252345,-10.53838600975159,1.0,0.0,0.0 -779,16.0,5.3234337350802905,5.8,0.0,0.0,1.0001634675712054,-10.76013138101234,1.0,0.0,0.0 -779,17.0,1.8927764391396589,0.9,0.0,0.0,0.9909823894526472,-11.121428916056065,1.0,0.0,0.0 -779,18.0,5.619180053695862,3.4,0.0,0.0,0.9892441530181748,-11.232028606967692,1.0,0.0,0.0 -779,19.0,1.3012838019085156,0.7,0.0,0.0,0.9925937820160676,-11.134532234741418,1.0,0.0,0.0 -779,20.0,10.351121151545009,11.2,0.0,0.0,0.994343969897718,-10.907738455410977,1.0,0.0,0.0 -779,21.0,0.0,0.0,0.0,0.0,0.9947334629515228,-10.903081324735588,1.0,0.0,0.0 -779,22.0,1.8927764391396589,1.6,0.0,0.0,0.98907820830806,-10.953639645514649,1.0,0.0,0.0 -779,23.0,5.145985943910947,6.7,0.0,0.0,0.9841535630261762,-11.052999285335774,1.0,0.0,0.0 -779,24.0,0.0,0.0,0.0,0.0,0.9775641775064674,-10.759580843839586,1.0,0.0,0.0 -779,25.0,2.0702242303090017,2.3,0.0,0.0,0.963017391112268,-10.88225670908723,1.0,0.0,0.0 -779,26.0,0.0,0.0,0.0,0.0,0.9807152122303232,-10.47712868544444,1.0,0.0,0.0 -779,27.0,0.0,0.0,0.0,0.0,0.9628602467015744,-8.106115064135405,1.0,0.0,0.0 -779,28.0,1.419582329354744,0.9,0.0,0.0,0.9661796029107907,-11.187880771728183,1.0,0.0,0.0 -779,29.0,6.269821954650119,1.9,0.0,0.0,0.9581849770914644,-11.717275613826493,1.0,0.0,0.0 -780,0.0,0.0,0.0,130.48546755705183,4.523022845148717e-07,1.0,0.0,0.0,0.0,1.0 -780,1.0,12.83539022791581,12.7,43.51222738806731,-20.067471748453823,0.9822787933096916,-2.7103933407995533,0.0,1.0,0.0 -780,2.0,1.419582329354744,1.2,0.0,0.0,0.9823603804917136,-4.640642369653405,1.0,0.0,0.0 -780,3.0,4.495344042956689,1.6,0.0,0.0,0.9776165859243036,-5.694458224697499,1.0,0.0,0.0 -780,4.0,55.7186064271737,19.0,-1.0579149996794667e-09,39.99999952910056,0.9821457844305208,-8.723653624842209,0.0,1.0,0.0 -780,5.0,0.0,0.0,0.0,0.0,0.9796585943794712,-6.809029496060452,1.0,0.0,0.0 -780,6.0,13.486032128870068,10.9,0.0,0.0,0.9741633887028956,-7.885972859150646,1.0,0.0,0.0 -780,7.0,17.7447791169343,30.0,-1.2754923026240432e-09,39.99999969018484,0.9820121272409152,-7.318487999409486,0.0,1.0,0.0 -780,8.0,0.0,0.0,0.0,0.0,1.025696117249519,-8.696655613483104,1.0,0.0,0.0 -780,9.0,3.430657295940631,2.0,0.0,0.0,1.0206836911180817,-9.67621921943719,1.0,0.0,0.0 -780,10.0,0.0,0.0,-2.0050531804477842e-09,17.481786133077158,1.0599999994894385,-8.696655613702882,0.0,1.0,0.0 -780,11.0,6.624717536988805,7.5,0.0,0.0,1.0358714798974722,-9.324231581847489,1.0,0.0,0.0 -780,12.0,0.0,0.0,-2.414611848534379e-09,18.268736318934,1.0599999995736928,-9.324231582023884,0.0,1.0,0.0 -780,13.0,3.667254350833089,1.6,0.0,0.0,1.0236259347162302,-9.816205579603068,1.0,0.0,0.0 -780,14.0,4.850239625295375,2.5,0.0,0.0,1.019283940724108,-9.821686309041455,1.0,0.0,0.0 -780,15.0,2.0702242303090017,1.8,0.0,0.0,1.0231878647164925,-9.578119289334794,1.0,0.0,0.0 -780,16.0,5.3234337350802905,5.8,0.0,0.0,1.017072678339049,-9.755847526459924,1.0,0.0,0.0 -780,17.0,1.8927764391396589,0.9,0.0,0.0,1.010435632073362,-10.14195250457498,1.0,0.0,0.0 -780,18.0,5.619180053695862,3.4,0.0,0.0,1.007545152351096,-10.227696300257492,1.0,0.0,0.0 -780,19.0,1.3012838019085156,0.7,0.0,0.0,1.0102103059838827,-10.12253588513412,1.0,0.0,0.0 -780,20.0,10.351121151545009,11.2,0.0,0.0,1.0103258593849105,-9.881263459057674,1.0,0.0,0.0 -780,21.0,0.0,0.0,0.0,0.0,1.010809945154092,-9.878916958869718,1.0,0.0,0.0 -780,22.0,1.8927764391396589,1.6,0.0,0.0,1.008832632047305,-9.993854515364337,1.0,0.0,0.0 -780,23.0,5.145985943910947,6.7,0.0,0.0,1.001683135001085,-10.061391094645764,1.0,0.0,0.0 -780,24.0,0.0,0.0,0.0,0.0,0.9941671143944144,-9.775983792741824,1.0,0.0,0.0 -780,25.0,2.0702242303090017,2.3,0.0,0.0,0.97987059833741,-9.89453620615182,1.0,0.0,0.0 -780,26.0,0.0,0.0,0.0,0.0,0.9966170202208136,-9.502886058557255,1.0,0.0,0.0 -780,27.0,0.0,0.0,0.0,0.0,0.9783042654955378,-7.197827736745984,1.0,0.0,0.0 -780,28.0,1.419582329354744,0.9,0.0,0.0,0.96549763553319,-11.038112635832697,1.0,0.0,0.0 -780,29.0,6.269821954650119,1.9,0.0,0.0,0.9400000017661404,-12.54478461351018,1.0,0.0,0.0 -781,0.0,0.0,0.0,175.3915411270546,0.0011613689445688,1.0,0.0,0.0,0.0,1.0 -781,1.0,12.83539022791581,12.7,1.1256490643811955e-06,11.905516042962624,0.9789891436588264,-4.034657785218968,0.0,1.0,0.0 -781,2.0,1.419582329354744,1.2,0.0,0.0,0.9725106437775636,-5.2900469296352925,1.0,0.0,0.0 -781,3.0,4.495344042956689,1.6,0.0,0.0,0.9655811541609216,-6.505237015173538,1.0,0.0,0.0 -781,4.0,55.7186064271737,19.0,2.5699013590866244e-10,25.00659297521865,0.9576977967306723,-9.71287931787155,0.0,1.0,0.0 -781,5.0,0.0,0.0,0.0,0.0,0.9650224443023074,-7.718435151683397,1.0,0.0,0.0 -781,6.0,13.486032128870068,10.9,0.0,0.0,0.9553500137359228,-8.842912803227453,1.0,0.0,0.0 -781,7.0,17.7447791169343,30.0,3.0582470003164383e-10,30.989159333578428,0.9640127476970493,-8.186322534289886,0.0,1.0,0.0 -781,8.0,0.0,0.0,0.0,0.0,1.0143070559371254,-9.683002891929986,1.0,0.0,0.0 -781,9.0,3.430657295940631,2.0,0.0,0.0,1.0051921945188174,-10.702729228909387,1.0,0.0,0.0 -781,10.0,0.0,0.0,5.418006180272142e-10,23.285814666388237,1.0599999763039458,-9.683002891869936,0.0,1.0,0.0 -781,11.0,6.624717536988805,7.5,0.0,0.0,1.0130352746703246,-10.199418443615246,1.0,0.0,0.0 -781,12.0,0.0,0.0,3.9388740568442236e-10,10.922182314195734,1.0279111280611868,-10.199418443584904,0.0,1.0,0.0 -781,13.0,3.667254350833089,1.6,0.0,0.0,1.0014932068020064,-10.718934171086358,1.0,0.0,0.0 -781,14.0,4.850239625295375,2.5,0.0,0.0,0.9979665246292144,-10.752145233628896,1.0,0.0,0.0 -781,15.0,2.0702242303090017,1.8,0.0,0.0,1.0033146943252345,-10.53838600975159,1.0,0.0,0.0 -781,16.0,5.3234337350802905,5.8,0.0,0.0,1.0001634675712054,-10.76013138101234,1.0,0.0,0.0 -781,17.0,1.8927764391396589,0.9,0.0,0.0,0.9909823894526472,-11.121428916056065,1.0,0.0,0.0 -781,18.0,5.619180053695862,3.4,0.0,0.0,0.9892441530181748,-11.232028606967692,1.0,0.0,0.0 -781,19.0,1.3012838019085156,0.7,0.0,0.0,0.9925937820160676,-11.134532234741418,1.0,0.0,0.0 -781,20.0,10.351121151545009,11.2,0.0,0.0,0.994343969897718,-10.907738455410977,1.0,0.0,0.0 -781,21.0,0.0,0.0,0.0,0.0,0.9947334629515228,-10.903081324735588,1.0,0.0,0.0 -781,22.0,1.8927764391396589,1.6,0.0,0.0,0.98907820830806,-10.953639645514649,1.0,0.0,0.0 -781,23.0,5.145985943910947,6.7,0.0,0.0,0.9841535630261762,-11.052999285335774,1.0,0.0,0.0 -781,24.0,0.0,0.0,0.0,0.0,0.9775641775064674,-10.759580843839586,1.0,0.0,0.0 -781,25.0,2.0702242303090017,2.3,0.0,0.0,0.963017391112268,-10.88225670908723,1.0,0.0,0.0 -781,26.0,0.0,0.0,0.0,0.0,0.9807152122303232,-10.47712868544444,1.0,0.0,0.0 -781,27.0,0.0,0.0,0.0,0.0,0.9628602467015744,-8.106115064135405,1.0,0.0,0.0 -781,28.0,1.419582329354744,0.9,0.0,0.0,0.9661796029107907,-11.187880771728183,1.0,0.0,0.0 -781,29.0,6.269821954650119,1.9,0.0,0.0,0.9581849770914644,-11.717275613826493,1.0,0.0,0.0 -782,0.0,0.0,0.0,136.5811328061134,3.498145790814533e-05,1.0,0.0,0.0,0.0,1.0 -782,1.0,12.83539022791581,12.7,44.89780298336772,18.19913439159649,0.9649167593970628,-18.19050372079562,0.0,1.0,0.0 -782,2.0,1.419582329354744,1.2,0.0,0.0,0.9615214879430104,-13.51514948431482,1.0,0.0,0.0 -782,3.0,4.495344042956689,1.6,0.0,0.0,0.956557848173368,-16.736715617027773,1.0,0.0,0.0 -782,4.0,55.7186064271737,19.0,-5.33546367880529e-11,24.922645259454555,0.9464440305951788,-22.535938813588302,0.0,1.0,0.0 -782,5.0,0.0,0.0,0.0,0.0,0.959310633301579,-18.98091755616037,1.0,0.0,0.0 -782,6.0,13.486032128870068,10.9,0.0,0.0,0.9473863983598156,-20.745142379198366,1.0,0.0,0.0 -782,7.0,17.7447791169343,30.0,-1.4565028363041148e-10,39.67887095365947,0.9616196468755384,-19.506006788942877,0.0,1.0,0.0 -782,8.0,0.0,0.0,0.0,0.0,1.0134082378185725,-20.747041956387477,1.0,0.0,0.0 -782,9.0,3.430657295940631,2.0,0.0,0.0,1.0063390046368448,-21.65732453623257,1.0,0.0,0.0 -782,10.0,0.0,0.0,-1.1294116630502668e-10,23.743692656355485,1.0599996501083513,-20.747041956399997,0.0,1.0,0.0 -782,11.0,6.624717536988805,7.5,0.0,0.0,1.025060475577686,-20.92824211559125,1.0,0.0,0.0 -782,12.0,0.0,0.0,-2.0284509343115163e-11,23.999556045161366,1.0568524062801825,-20.928242115592752,0.0,1.0,0.0 -782,13.0,3.667254350833089,1.6,0.0,0.0,1.012289220679027,-21.48092263883855,1.0,0.0,0.0 -782,14.0,4.850239625295375,2.5,0.0,0.0,1.0071761098209324,-21.527337801654145,1.0,0.0,0.0 -782,15.0,2.0702242303090017,1.8,0.0,0.0,1.0105191699742682,-21.33819951547676,1.0,0.0,0.0 -782,16.0,5.3234337350802905,5.8,0.0,0.0,1.003269905761648,-21.672833148619965,1.0,0.0,0.0 -782,17.0,1.8927764391396589,0.9,0.0,0.0,0.9973919323068184,-21.95337814067043,1.0,0.0,0.0 -782,18.0,5.619180053695862,3.4,0.0,0.0,0.9939841951932644,-22.09995888096693,1.0,0.0,0.0 -782,19.0,1.3012838019085156,0.7,0.0,0.0,0.99643164534703,-22.022728663245427,1.0,0.0,0.0 -782,20.0,10.351121151545009,11.2,0.0,0.0,0.9957483823454591,-21.858736456575752,1.0,0.0,0.0 -782,21.0,0.0,0.0,0.0,0.0,0.9962147689556562,-21.853201142333592,1.0,0.0,0.0 -782,22.0,1.8927764391396589,1.6,0.0,0.0,0.9954435578221263,-21.798495023768837,1.0,0.0,0.0 -782,23.0,5.145985943910947,6.7,0.0,0.0,0.9867020152624524,-21.997134180025103,1.0,0.0,0.0 -782,24.0,0.0,0.0,0.0,0.0,0.9769322049613358,-21.796637184258127,1.0,0.0,0.0 -782,25.0,2.0702242303090017,2.3,0.0,0.0,0.962375716373714,-21.919474255353403,1.0,0.0,0.0 -782,26.0,0.0,0.0,0.0,0.0,0.978142526516988,-21.575424896413647,1.0,0.0,0.0 -782,27.0,0.0,0.0,0.0,0.0,0.9582800023136576,-19.366325543925058,1.0,0.0,0.0 -782,28.0,1.419582329354744,0.9,0.0,0.0,0.9635661866551724,-22.289976636879945,1.0,0.0,0.0 -782,29.0,6.269821954650119,1.9,0.0,0.0,0.9555491168215224,-22.82226862857368,1.0,0.0,0.0 -783,0.0,0.0,0.0,175.7620653580444,0.0013677327022065,1.0,0.0,0.0,0.0,1.0 -783,1.0,12.83539022791581,12.7,6.178135591586522e-07,25.337915445798718,0.9804213371932196,-4.078718364960722,0.0,1.0,0.0 -783,2.0,1.419582329354744,1.2,0.0,0.0,0.9682030698409518,-5.219787696597179,1.0,0.0,0.0 -783,3.0,4.495344042956689,1.6,0.0,0.0,0.9602603882541312,-6.420450672074746,1.0,0.0,0.0 -783,4.0,55.7186064271737,19.0,-5.079482732638252e-10,32.32025954160608,0.9598251823480464,-9.816094315799074,0.0,1.0,0.0 -783,5.0,0.0,0.0,0.0,0.0,0.9528988444265502,-7.550261895739339,1.0,0.0,0.0 -783,6.0,13.486032128870068,10.9,0.0,0.0,0.9490169684196712,-8.784196139880132,1.0,0.0,0.0 -783,7.0,17.7447791169343,30.0,0.0,0.0,0.9400039705801132,-7.827907646834102,0.0,1.0,0.0 -783,8.0,0.0,0.0,0.0,0.0,1.0037858692642798,-9.644924493786794,1.0,0.0,0.0 -783,9.0,3.430657295940631,2.0,0.0,0.0,0.9947716197021498,-10.729743258504913,1.0,0.0,0.0 -783,10.0,0.0,0.0,-7.690349398615107e-10,23.99980309378421,1.0512708630827945,-9.644924493873644,0.0,1.0,0.0 -783,11.0,6.624717536988805,7.5,0.0,0.0,1.0300795688676103,-9.972978461213202,1.0,0.0,0.0 -783,12.0,0.0,0.0,-6.042914926915324e-10,22.63956731013283,1.059981408632037,-9.972978461257595,0.0,1.0,0.0 -783,13.0,3.667254350833089,1.6,0.0,0.0,1.0153238713629913,-10.538586308809595,1.0,0.0,0.0 -783,14.0,4.850239625295375,2.5,0.0,0.0,1.0081411089244474,-10.55643247766576,1.0,0.0,0.0 -783,15.0,2.0702242303090017,1.8,0.0,0.0,0.9811671533935896,-11.130769875822256,1.0,0.0,0.0 -783,16.0,5.3234337350802905,5.8,0.0,0.0,0.985805474208596,-10.95081890788518,1.0,0.0,0.0 -783,17.0,1.8927764391396589,0.9,0.0,0.0,0.993894394541375,-10.997942400262966,1.0,0.0,0.0 -783,18.0,5.619180053695862,3.4,0.0,0.0,0.9878538397178652,-11.154212079712462,1.0,0.0,0.0 -783,19.0,1.3012838019085156,0.7,0.0,0.0,0.9889387646296818,-11.079945885862427,1.0,0.0,0.0 -783,20.0,10.351121151545009,11.2,0.0,0.0,0.9847641561003008,-10.916807698611397,1.0,0.0,0.0 -783,21.0,0.0,0.0,0.0,0.0,0.9854609803086954,-10.905340279902829,1.0,0.0,0.0 -783,22.0,1.8927764391396589,1.6,0.0,0.0,0.9926798738509072,-10.812609099267638,1.0,0.0,0.0 -783,23.0,5.145985943910947,6.7,0.0,0.0,0.9789813620843902,-10.993554740511309,1.0,0.0,0.0 -783,24.0,0.0,0.0,0.0,0.0,0.968677898544821,-10.625215838717198,1.0,0.0,0.0 -783,25.0,2.0702242303090017,2.3,0.0,0.0,0.9539934702679734,-10.750188135973444,1.0,0.0,0.0 -783,26.0,0.0,0.0,0.0,0.0,0.96957269050932,-10.297632222629527,1.0,0.0,0.0 -783,27.0,0.0,0.0,0.0,0.0,0.94844076699407,-7.908819795510237,1.0,0.0,0.0 -783,28.0,1.419582329354744,0.9,0.0,0.0,0.954858958972432,-11.025064450558572,1.0,0.0,0.0 -783,29.0,6.269821954650119,1.9,0.0,0.0,0.9467661779634028,-11.567183050885022,1.0,0.0,0.0 -784,0.0,0.0,0.0,175.6481571672698,0.0065795470820972,1.0,0.0,0.0,0.0,1.0 -784,1.0,12.83539022791581,12.7,5.218757807975974e-06,12.758180937576943,0.9792613257709462,-4.032224457118095,0.0,1.0,0.0 -784,2.0,1.419582329354744,1.2,0.0,0.0,0.9716676282422144,-5.325874692272184,1.0,0.0,0.0 -784,3.0,4.495344042956689,1.6,0.0,0.0,0.9645490820239312,-6.550266181350874,1.0,0.0,0.0 -784,4.0,55.7186064271737,19.0,4.471448232589048e-09,25.678935674390075,0.9586209854351256,-9.684984562585807,0.0,1.0,0.0 -784,5.0,0.0,0.0,0.0,0.0,0.9652123566430064,-7.646944822017359,1.0,0.0,0.0 -784,6.0,13.486032128870068,10.9,0.0,0.0,0.9558492234991612,-8.788570513047352,1.0,0.0,0.0 -784,7.0,17.7447791169343,30.0,5.868581137623961e-09,35.32265292232343,0.9656319251453006,-8.150401215194156,0.0,1.0,0.0 -784,8.0,0.0,0.0,0.0,0.0,1.0234517963817389,-7.646944821062565,1.0,0.0,0.0 -784,9.0,3.430657295940631,2.0,0.0,0.0,0.972851907825056,-13.583706956060649,1.0,0.0,0.0 -784,10.0,0.0,0.0,8.09237773739356e-09,18.61439957214269,1.0599788927009852,-7.646944820173571,0.0,1.0,0.0 -784,11.0,6.624717536988805,7.5,0.0,0.0,1.0073077525648146,-11.12199750665299,1.0,0.0,0.0 -784,12.0,0.0,0.0,8.114927392915726e-09,13.473744148269745,1.0256983848272938,-11.121997506022971,0.0,1.0,0.0 -784,13.0,3.667254350833089,1.6,0.0,0.0,0.9955270816344018,-11.57629666240477,1.0,0.0,0.0 -784,14.0,4.850239625295375,2.5,0.0,0.0,0.9923018546479402,-11.535498585325946,1.0,0.0,0.0 -784,15.0,2.0702242303090017,1.8,0.0,0.0,0.9845258928683512,-12.233098813306922,1.0,0.0,0.0 -784,16.0,5.3234337350802905,5.8,0.0,0.0,0.9722980187785668,-13.290954754144211,1.0,0.0,0.0 -784,17.0,1.8927764391396589,0.9,0.0,0.0,0.9446423609708936,-14.784527835749964,1.0,0.0,0.0 -784,18.0,5.619180053695862,3.4,0.0,0.0,0.9471557344709164,-14.664754261773076,1.0,0.0,0.0 -784,19.0,1.3012838019085156,0.7,0.0,0.0,0.9529529054852168,-14.433302552537263,1.0,0.0,0.0 -784,20.0,10.351121151545009,11.2,0.0,0.0,0.9641247426242906,-13.74594896450254,1.0,0.0,0.0 -784,21.0,0.0,0.0,0.0,0.0,0.9653157240305242,-13.72398040466935,1.0,0.0,0.0 -784,22.0,1.8927764391396589,1.6,0.0,0.0,0.9768488877388136,-11.79829924554336,1.0,0.0,0.0 -784,23.0,5.145985943910947,6.7,0.0,0.0,0.9632735987461282,-11.98276214480256,1.0,0.0,0.0 -784,24.0,0.0,0.0,0.0,0.0,0.9653001885796052,-11.422439481838412,1.0,0.0,0.0 -784,25.0,2.0702242303090017,2.3,0.0,0.0,0.9505627455575264,-11.54830170090504,1.0,0.0,0.0 -784,26.0,0.0,0.0,0.0,0.0,0.9738320372780916,-10.964766164681894,1.0,0.0,0.0 -784,27.0,0.0,0.0,0.0,0.0,0.96228212827391,-8.087701535320582,1.0,0.0,0.0 -784,28.0,1.419582329354744,0.9,0.0,0.0,0.9591869239971892,-11.68575319149259,1.0,0.0,0.0 -784,29.0,6.269821954650119,1.9,0.0,0.0,0.9511319564793186,-12.222953636463794,1.0,0.0,0.0 -785,0.0,0.0,0.0,176.684181998325,0.0081443110524048,1.0,0.0,0.0,0.0,1.0 -785,1.0,12.83539022791581,12.7,1.1442306221502326e-05,9.30588674839926,0.9791219666357484,-3.815748084667584,0.0,1.0,0.0 -785,2.0,1.419582329354744,1.2,0.0,0.0,0.9726576265577755,-6.040729633582058,1.0,0.0,0.0 -785,3.0,4.495344042956689,1.6,0.0,0.0,0.9659267453162806,-7.43769118513113,1.0,0.0,0.0 -785,4.0,55.7186064271737,19.0,-1.1027550833423072e-08,26.661240686960586,0.9579727648342664,-10.195336519008714,0.0,1.0,0.0 -785,5.0,0.0,0.0,0.0,0.0,0.9616189413738592,-8.865741906265585,1.0,0.0,0.0 -785,6.0,13.486032128870068,10.9,0.0,0.0,0.953339620308046,-9.718880797445236,1.0,0.0,0.0 -785,7.0,17.7447791169343,30.0,-6.176695142858346e-09,33.893002312807226,0.9615533339426464,-9.380201064945055,0.0,1.0,0.0 -785,8.0,0.0,0.0,0.0,0.0,1.0054543637224682,-12.550789664224302,1.0,0.0,0.0 -785,9.0,3.430657295940631,2.0,0.0,0.0,0.9937887988087984,-14.47798158066118,1.0,0.0,0.0 -785,10.0,0.0,0.0,-1.5217805589473758e-08,23.97087086430002,1.0528126577464665,-12.550789665937565,0.0,1.0,0.0 -785,11.0,6.624717536988805,7.5,0.0,0.0,0.9737170616222524,-17.341668270735898,1.0,0.0,0.0 -785,12.0,0.0,0.0,1.2424686843206532e-10,18.819759606649157,1.0000630635978869,-17.341668270725663,0.0,1.0,0.0 -785,13.0,3.667254350833089,1.6,0.0,0.0,0.9640618658071674,-17.426475189541495,1.0,0.0,0.0 -785,14.0,4.850239625295375,2.5,0.0,0.0,0.9658572642016812,-17.049387222254936,1.0,0.0,0.0 -785,15.0,2.0702242303090017,1.8,0.0,0.0,0.977734226885901,-16.28342051589747,1.0,0.0,0.0 -785,16.0,5.3234337350802905,5.8,0.0,0.0,0.9834303410351594,-15.129143084275146,1.0,0.0,0.0 -785,17.0,1.8927764391396589,0.9,0.0,0.0,0.9659149231671044,-16.54273222571535,1.0,0.0,0.0 -785,18.0,5.619180053695862,3.4,0.0,0.0,0.9684669398098568,-16.12898930797927,1.0,0.0,0.0 -785,19.0,1.3012838019085156,0.7,0.0,0.0,0.9742234532726016,-15.7511295087251,1.0,0.0,0.0 -785,20.0,10.351121151545009,11.2,0.0,0.0,0.9820317754233372,-14.753241500526618,1.0,0.0,0.0 -785,21.0,0.0,0.0,0.0,0.0,0.982173866922651,-14.769185212328235,1.0,0.0,0.0 -785,22.0,1.8927764391396589,1.6,0.0,0.0,0.963483113621316,-16.326804185594003,1.0,0.0,0.0 -785,23.0,5.145985943910947,6.7,0.0,0.0,0.96760952045433,-15.18165327871162,1.0,0.0,0.0 -785,24.0,0.0,0.0,0.0,0.0,0.9687681459900817,-13.863655357134665,1.0,0.0,0.0 -785,25.0,2.0702242303090017,2.3,0.0,0.0,0.9540851288944144,-13.988604008964815,1.0,0.0,0.0 -785,26.0,0.0,0.0,0.0,0.0,0.9766600762329516,-12.941242214417024,1.0,0.0,0.0 -785,27.0,0.0,0.0,0.0,0.0,0.9588559972622596,-9.403801523185006,1.0,0.0,0.0 -785,28.0,1.419582329354744,0.9,0.0,0.0,0.9620601592966804,-13.657997348935911,1.0,0.0,0.0 -785,29.0,6.269821954650119,1.9,0.0,0.0,0.9540300974315404,-14.191969718357637,1.0,0.0,0.0 -786,0.0,0.0,0.0,175.3915411270546,0.0011613689445688,1.0,0.0,0.0,0.0,1.0 -786,1.0,12.83539022791581,12.7,1.1256490643811955e-06,11.905516042962624,0.9789891436588264,-4.034657785218968,0.0,1.0,0.0 -786,2.0,1.419582329354744,1.2,0.0,0.0,0.9725106437775636,-5.2900469296352925,1.0,0.0,0.0 -786,3.0,4.495344042956689,1.6,0.0,0.0,0.9655811541609216,-6.505237015173538,1.0,0.0,0.0 -786,4.0,55.7186064271737,19.0,2.5699013590866244e-10,25.00659297521865,0.9576977967306723,-9.71287931787155,0.0,1.0,0.0 -786,5.0,0.0,0.0,0.0,0.0,0.9650224443023074,-7.718435151683397,1.0,0.0,0.0 -786,6.0,13.486032128870068,10.9,0.0,0.0,0.9553500137359228,-8.842912803227453,1.0,0.0,0.0 -786,7.0,17.7447791169343,30.0,3.0582470003164383e-10,30.989159333578428,0.9640127476970493,-8.186322534289886,0.0,1.0,0.0 -786,8.0,0.0,0.0,0.0,0.0,1.0143070559371254,-9.683002891929986,1.0,0.0,0.0 -786,9.0,3.430657295940631,2.0,0.0,0.0,1.0051921945188174,-10.702729228909387,1.0,0.0,0.0 -786,10.0,0.0,0.0,5.418006180272142e-10,23.285814666388237,1.0599999763039458,-9.683002891869936,0.0,1.0,0.0 -786,11.0,6.624717536988805,7.5,0.0,0.0,1.0130352746703246,-10.199418443615246,1.0,0.0,0.0 -786,12.0,0.0,0.0,3.9388740568442236e-10,10.922182314195734,1.0279111280611868,-10.199418443584904,0.0,1.0,0.0 -786,13.0,3.667254350833089,1.6,0.0,0.0,1.0014932068020064,-10.718934171086358,1.0,0.0,0.0 -786,14.0,4.850239625295375,2.5,0.0,0.0,0.9979665246292144,-10.752145233628896,1.0,0.0,0.0 -786,15.0,2.0702242303090017,1.8,0.0,0.0,1.0033146943252345,-10.53838600975159,1.0,0.0,0.0 -786,16.0,5.3234337350802905,5.8,0.0,0.0,1.0001634675712054,-10.76013138101234,1.0,0.0,0.0 -786,17.0,1.8927764391396589,0.9,0.0,0.0,0.9909823894526472,-11.121428916056065,1.0,0.0,0.0 -786,18.0,5.619180053695862,3.4,0.0,0.0,0.9892441530181748,-11.232028606967692,1.0,0.0,0.0 -786,19.0,1.3012838019085156,0.7,0.0,0.0,0.9925937820160676,-11.134532234741418,1.0,0.0,0.0 -786,20.0,10.351121151545009,11.2,0.0,0.0,0.994343969897718,-10.907738455410977,1.0,0.0,0.0 -786,21.0,0.0,0.0,0.0,0.0,0.9947334629515228,-10.903081324735588,1.0,0.0,0.0 -786,22.0,1.8927764391396589,1.6,0.0,0.0,0.98907820830806,-10.953639645514649,1.0,0.0,0.0 -786,23.0,5.145985943910947,6.7,0.0,0.0,0.9841535630261762,-11.052999285335774,1.0,0.0,0.0 -786,24.0,0.0,0.0,0.0,0.0,0.9775641775064674,-10.759580843839586,1.0,0.0,0.0 -786,25.0,2.0702242303090017,2.3,0.0,0.0,0.963017391112268,-10.88225670908723,1.0,0.0,0.0 -786,26.0,0.0,0.0,0.0,0.0,0.9807152122303232,-10.47712868544444,1.0,0.0,0.0 -786,27.0,0.0,0.0,0.0,0.0,0.9628602467015744,-8.106115064135405,1.0,0.0,0.0 -786,28.0,1.419582329354744,0.9,0.0,0.0,0.9661796029107907,-11.187880771728183,1.0,0.0,0.0 -786,29.0,6.269821954650119,1.9,0.0,0.0,0.9581849770914644,-11.717275613826493,1.0,0.0,0.0 -787,0.0,0.0,0.0,104.86163776326798,5.85657655705063e-07,1.0,0.0,0.0,0.0,1.0 -787,1.0,12.83539022791581,12.7,69.99925847039898,-23.236058887486863,0.9849821979333924,-2.025814843543861,0.0,1.0,0.0 -787,2.0,1.419582329354744,1.2,0.0,0.0,0.9860656500819852,-4.097325461768127,1.0,0.0,0.0 -787,3.0,4.495344042956689,1.6,0.0,0.0,0.982126015090581,-5.020119764378391,1.0,0.0,0.0 -787,4.0,55.7186064271737,19.0,-3.4138267352964343e-09,39.99999937335045,0.9835720326913032,-8.27201554636596,0.0,1.0,0.0 -787,5.0,0.0,0.0,0.0,0.0,0.97957640938553,-6.620395241790659,1.0,0.0,0.0 -787,6.0,13.486032128870068,10.9,0.0,0.0,0.974667824332946,-7.588698055596164,1.0,0.0,0.0 -787,7.0,17.7447791169343,30.0,-3.46344236889566e-09,39.99999963640873,0.9817778050976984,-7.161066221783817,0.0,1.0,0.0 -787,8.0,0.0,0.0,0.0,0.0,1.022374586807528,-10.131120429121038,1.0,0.0,0.0 -787,9.0,3.430657295940631,2.0,0.0,0.0,1.0149693022090427,-11.962485394836186,1.0,0.0,0.0 -787,10.0,0.0,0.0,-3.9653341710010656e-10,19.174489129392448,1.0599999994580265,-10.131120429164644,0.0,1.0,0.0 -787,11.0,6.624717536988805,7.5,0.0,0.0,0.9915007925464556,-18.339180376243075,1.0,0.0,0.0 -787,12.0,0.0,0.0,-3.926065241869382e-09,23.999999832586084,1.0243035678375303,-18.339180376553163,0.0,1.0,0.0 -787,13.0,3.667254350833089,1.6,0.0,0.0,0.9827118434921696,-18.77520708665258,1.0,0.0,0.0 -787,14.0,4.850239625295375,2.5,0.0,0.0,0.9839360669617064,-16.912966922754915,1.0,0.0,0.0 -787,15.0,2.0702242303090017,1.8,0.0,0.0,0.9858855984092992,-18.480589426675834,1.0,0.0,0.0 -787,16.0,5.3234337350802905,5.8,0.0,0.0,1.0083953491773348,-12.109104881690422,1.0,0.0,0.0 -787,17.0,1.8927764391396589,0.9,0.0,0.0,0.9848475085195704,-15.54049780824321,1.0,0.0,0.0 -787,18.0,5.619180053695862,3.4,0.0,0.0,0.9881296494181958,-14.621307362760088,1.0,0.0,0.0 -787,19.0,1.3012838019085156,0.7,0.0,0.0,0.9942981988860166,-13.986131037232973,1.0,0.0,0.0 -787,20.0,10.351121151545009,11.2,0.0,0.0,1.0030069820536045,-12.179473083822844,1.0,0.0,0.0 -787,21.0,0.0,0.0,0.0,0.0,1.0035506254893662,-12.692248024918706,1.0,0.0,0.0 -787,22.0,1.8927764391396589,1.6,0.0,0.0,0.9820580959038074,-15.541943115306768,1.0,0.0,0.0 -787,23.0,5.145985943910947,6.7,0.0,0.0,0.9873176191972464,-13.543330630026151,1.0,0.0,0.0 -787,24.0,0.0,0.0,0.0,0.0,0.9887205025498552,-11.977606527989243,1.0,0.0,0.0 -787,25.0,2.0702242303090017,2.3,0.0,0.0,0.9743428539942732,-12.097488307677612,1.0,0.0,0.0 -787,26.0,0.0,0.0,0.0,0.0,0.996617020207706,-10.906940578994249,1.0,0.0,0.0 -787,27.0,0.0,0.0,0.0,0.0,0.9772840679350971,-7.1885172890932445,1.0,0.0,0.0 -787,28.0,1.419582329354744,0.9,0.0,0.0,0.965497635363935,-12.442167155885802,1.0,0.0,0.0 -787,29.0,6.269821954650119,1.9,0.0,0.0,0.9400000014446588,-13.94883913417909,1.0,0.0,0.0 -788,0.0,0.0,0.0,176.07288676288556,0.0007072902732829,1.0,0.0,0.0,0.0,1.0 -788,1.0,12.83539022791581,12.7,9.576677948375e-07,10.795174764230389,0.9781126544419776,-4.245214757517644,0.0,1.0,0.0 -788,2.0,1.419582329354744,1.2,0.0,0.0,0.9740569394740248,-4.7507518105428135,1.0,0.0,0.0 -788,3.0,4.495344042956689,1.6,0.0,0.0,0.9673992290555056,-5.834496318541073,1.0,0.0,0.0 -788,4.0,55.7186064271737,19.0,-1.776756982429054e-09,39.35365847882974,0.9590132220561672,-13.050312327525312,0.0,1.0,0.0 -788,5.0,0.0,0.0,0.0,0.0,0.9679811743795028,-6.732521436192556,1.0,0.0,0.0 -788,6.0,13.486032128870068,10.9,0.0,0.0,0.9400029083942906,-13.752286673780253,1.0,0.0,0.0 -788,7.0,17.7447791169343,30.0,-7.379844048326122e-11,28.315161319829528,0.9659135720594356,-7.182640158179677,0.0,1.0,0.0 -788,8.0,0.0,0.0,0.0,0.0,1.0126324346057154,-8.729163965951166,1.0,0.0,0.0 -788,9.0,3.430657295940631,2.0,0.0,0.0,1.0044439797202247,-9.769486399458406,1.0,0.0,0.0 -788,10.0,0.0,0.0,-4.910225049212379e-11,19.8619395044893,1.0519066736647815,-8.729163965956658,0.0,1.0,0.0 -788,11.0,6.624717536988805,7.5,0.0,0.0,1.0097946845308985,-9.401100793714356,1.0,0.0,0.0 -788,12.0,0.0,0.0,-5.190600763445268e-11,8.519006666172393,1.0214706047939657,-9.401100793718388,0.0,1.0,0.0 -788,13.0,3.667254350833089,1.6,0.0,0.0,0.9982457012861692,-9.913497426209172,1.0,0.0,0.0 -788,14.0,4.850239625295375,2.5,0.0,0.0,0.9948090930242868,-9.937257903756985,1.0,0.0,0.0 -788,15.0,2.0702242303090017,1.8,0.0,0.0,1.001230900996125,-9.688117228172414,1.0,0.0,0.0 -788,16.0,5.3234337350802905,5.8,0.0,0.0,0.9989626633619998,-9.851379138121109,1.0,0.0,0.0 -788,17.0,1.8927764391396589,0.9,0.0,0.0,0.9886618290577583,-10.266987719332558,1.0,0.0,0.0 -788,18.0,5.619180053695862,3.4,0.0,0.0,0.987422683326123,-10.35332026756035,1.0,0.0,0.0 -788,19.0,1.3012838019085156,0.7,0.0,0.0,0.9910444340560032,-10.242544674170343,1.0,0.0,0.0 -788,20.0,10.351121151545009,11.2,0.0,0.0,0.989147873106656,-10.070482089164052,1.0,0.0,0.0 -788,21.0,0.0,0.0,0.0,0.0,0.9881325298933205,-10.094657941537228,1.0,0.0,0.0 -788,22.0,1.8927764391396589,1.6,0.0,0.0,0.9853070065289928,-10.138267624161532,1.0,0.0,0.0 -788,23.0,5.145985943910947,6.7,0.0,0.0,0.9795901247776928,-10.236126635885103,1.0,0.0,0.0 -788,24.0,0.0,0.0,0.0,0.0,0.9758361022203836,-9.909019675309692,1.0,0.0,0.0 -788,25.0,2.0702242303090017,2.3,0.0,0.0,0.9612627548374476,-10.03213710585458,1.0,0.0,0.0 -788,26.0,0.0,0.0,0.0,0.0,0.9807512885897446,-9.602477963910497,1.0,0.0,0.0 -788,27.0,0.0,0.0,0.0,0.0,0.9652160642787004,-7.123700648230464,1.0,0.0,0.0 -788,28.0,1.419582329354744,0.9,0.0,0.0,0.9662162487547852,-10.313176985051744,1.0,0.0,0.0 -788,29.0,6.269821954650119,1.9,0.0,0.0,0.958221936738363,-10.842531371518763,1.0,0.0,0.0 -789,0.0,0.0,0.0,175.4563481892357,0.0011409599500744,1.0,0.0,0.0,0.0,1.0 -789,1.0,12.83539022791581,12.7,1.1912740494919702e-06,11.943598686791384,0.9789588978118454,-4.038322396336219,0.0,1.0,0.0 -789,2.0,1.419582329354744,1.2,0.0,0.0,0.9725629612583616,-5.285708165804726,1.0,0.0,0.0 -789,3.0,4.495344042956689,1.6,0.0,0.0,0.9656448158055828,-6.499815084385627,1.0,0.0,0.0 -789,4.0,55.7186064271737,19.0,-6.512313394532294e-10,25.16376448911585,0.957707611492423,-9.725965262292409,0.0,1.0,0.0 -789,5.0,0.0,0.0,0.0,0.0,0.964746275383522,-7.733868356026328,1.0,0.0,0.0 -789,6.0,13.486032128870068,10.9,0.0,0.0,0.955188900502444,-8.857372910937451,1.0,0.0,0.0 -789,7.0,17.7447791169343,30.0,-6.374503183214218e-10,32.0951767892694,0.9640520244334608,-8.2110889623824,0.0,1.0,0.0 -789,8.0,0.0,0.0,0.0,0.0,1.0130958680779387,-9.739137718440292,1.0,0.0,0.0 -789,9.0,3.430657295940631,2.0,0.0,0.0,1.0028689796526962,-10.78209722215109,1.0,0.0,0.0 -789,10.0,0.0,0.0,-1.1786440333496556e-09,23.903053574553024,1.0599999743407635,-9.739137718571094,0.0,1.0,0.0 -789,11.0,6.624717536988805,7.5,0.0,0.0,1.0143213729542857,-10.035568176042291,1.0,0.0,0.0 -789,12.0,0.0,0.0,-6.99462022390626e-10,9.31980243865266,1.0270257510103162,-10.035568176096152,0.0,1.0,0.0 -789,13.0,3.667254350833089,1.6,0.0,0.0,1.005734877274847,-10.452027792270144,1.0,0.0,0.0 -789,14.0,4.850239625295375,2.5,0.0,0.0,1.0021579828743346,-10.565178422821726,1.0,0.0,0.0 -789,15.0,2.0702242303090017,1.8,0.0,0.0,1.0028702198042794,-10.470828585549183,1.0,0.0,0.0 -789,16.0,5.3234337350802905,5.8,0.0,0.0,0.998471487847044,-10.796286865116375,1.0,0.0,0.0 -789,17.0,1.8927764391396589,0.9,0.0,0.0,0.9928685956594064,-11.02537089479288,1.0,0.0,0.0 -789,18.0,5.619180053695862,3.4,0.0,0.0,0.9897672888936064,-11.191325812814757,1.0,0.0,0.0 -789,19.0,1.3012838019085156,0.7,0.0,0.0,0.9923939965548194,-11.123033864925514,1.0,0.0,0.0 -789,20.0,10.351121151545009,11.2,0.0,0.0,0.9904605412302464,-11.027945184544407,1.0,0.0,0.0 -789,21.0,0.0,0.0,0.0,0.0,0.9903645037671224,-11.035389373644104,1.0,0.0,0.0 -789,22.0,1.8927764391396589,1.6,0.0,0.0,0.9659033978684176,-11.49292089938229,1.0,0.0,0.0 -789,23.0,5.145985943910947,6.7,0.0,0.0,0.9729675084324364,-11.310113037711012,1.0,0.0,0.0 -789,24.0,0.0,0.0,0.0,0.0,0.9704806567447148,-10.98069117081023,1.0,0.0,0.0 -789,25.0,2.0702242303090017,2.3,0.0,0.0,0.9558243653980516,-11.105192380803963,1.0,0.0,0.0 -789,26.0,0.0,0.0,0.0,0.0,0.9762244439140064,-10.67032559039572,1.0,0.0,0.0 -789,27.0,0.0,0.0,0.0,0.0,0.9621034230731184,-8.134433083494518,1.0,0.0,0.0 -789,28.0,1.419582329354744,0.9,0.0,0.0,0.9616175836748764,-11.387730162294462,1.0,0.0,0.0 -789,29.0,6.269821954650119,1.9,0.0,0.0,0.953583695708574,-11.92219786067943,1.0,0.0,0.0 -790,0.0,0.0,0.0,139.36959625993194,2.02507317581535e-06,1.0,0.0,0.0,0.0,1.0 -790,1.0,12.644931807464577,12.7,35.04581715369796,9.28506516812456,0.973488403149952,-4.611831017738076,0.0,1.0,0.0 -790,2.0,1.398517803590552,1.2,0.0,0.0,1.0007564591481153,-0.1540910286239802,1.0,0.0,0.0 -790,3.0,4.428639711370082,1.6,0.0,0.0,0.9484612513602256,-9.869567017888878,1.0,0.0,0.0 -790,4.0,54.89182379092918,19.0,1.71784596294507e-10,27.34192302244999,0.9508664385637025,-11.38680944153237,0.0,1.0,0.0 -790,5.0,0.0,0.0,0.0,0.0,0.9512005281671412,-10.438927236813468,1.0,0.0,0.0 -790,6.0,13.285919134110248,10.9,0.0,0.0,0.9441574546915568,-11.13372043691406,1.0,0.0,0.0 -790,7.0,17.481472544881907,30.0,1.3973718333860042e-10,32.84772459509098,0.9507938913097826,-10.928536514936331,0.0,1.0,0.0 -790,8.0,0.0,0.0,0.0,0.0,1.0028912940880657,-12.489970419633634,1.0,0.0,0.0 -790,9.0,3.379751358677168,2.0,0.0,0.0,0.9942793758809356,-13.550837583568107,1.0,0.0,0.0 -790,10.0,0.0,0.0,2.5055768624957686e-10,23.999621894393787,1.05041463567613,-12.489970419605289,0.0,1.0,0.0 -790,11.0,6.526416416755911,7.5,0.0,0.0,0.9999664383776268,-13.412892794780726,1.0,0.0,0.0 -790,12.0,0.0,0.0,2.088917527870776e-10,14.638237583251929,1.0200570140362002,-13.4128927947643,0.0,1.0,0.0 -790,13.0,3.6128376592755935,1.6,0.0,0.0,0.9875579449970328,-13.917463832211563,1.0,0.0,0.0 -790,14.0,4.77826916226772,2.5,0.0,0.0,0.9833747458193156,-13.912927145220724,1.0,0.0,0.0 -790,15.0,2.039505130236222,1.8,0.0,0.0,0.991377530261722,-13.599338576842324,1.0,0.0,0.0 -790,16.0,5.244441763464571,5.8,0.0,0.0,0.9888167185083632,-13.673064945237767,1.0,0.0,0.0 -790,17.0,1.864690404787403,0.9,0.0,0.0,0.9776463432497166,-14.175042367373118,1.0,0.0,0.0 -790,18.0,5.535799639212603,3.4,0.0,0.0,0.9766614708568436,-14.220696825069192,1.0,0.0,0.0 -790,19.0,1.28197465329134,0.7,0.0,0.0,0.9804373861059724,-14.088505249110185,1.0,0.0,0.0 -790,20.0,10.197525651181111,11.2,0.0,0.0,0.961225329294126,-14.163904178840005,1.0,0.0,0.0 -790,21.0,0.0,0.0,0.0,0.0,0.9652064706235736,-14.095514884458984,1.0,0.0,0.0 -790,22.0,1.864690404787403,1.6,0.0,0.0,0.9703596822932972,-14.11474431740976,1.0,0.0,0.0 -790,23.0,5.069627038015752,6.7,0.0,0.0,0.9600269909218012,-14.215761005838925,1.0,0.0,0.0 -790,24.0,0.0,0.0,0.0,0.0,0.9572007076399468,-13.81898718610751,1.0,0.0,0.0 -790,25.0,2.039505130236222,2.3,0.0,0.0,0.9424190673694371,-13.939596945570026,1.0,0.0,0.0 -790,26.0,0.0,0.0,0.0,0.0,0.9627865327229274,-13.46824796376656,1.0,0.0,0.0 -790,27.0,0.0,0.0,0.0,0.0,0.9486316059755202,-10.85240155854024,1.0,0.0,0.0 -790,28.0,1.398517803590552,0.9,0.0,0.0,0.948095601915486,-14.19215714697532,1.0,0.0,0.0 -790,29.0,6.176786965858272,1.9,0.0,0.0,0.9400283617870994,-14.732682997289787,1.0,0.0,0.0 -791,0.0,0.0,0.0,172.6711182629395,0.0010104993602766,1.0,0.0,0.0,0.0,1.0 -791,1.0,12.644931807464577,12.7,1.0712443452495997e-06,11.61159325666852,0.9792406525207776,-3.9701947985510335,0.0,1.0,0.0 -791,2.0,1.398517803590552,1.2,0.0,0.0,0.9728550541039874,-5.205813833250232,1.0,0.0,0.0 -791,3.0,4.428639711370082,1.6,0.0,0.0,0.9659875204320436,-6.400875170771052,1.0,0.0,0.0 -791,4.0,54.89182379092918,19.0,3.743465437763492e-10,24.83349690958029,0.9582108230657834,-9.55742280326882,0.0,1.0,0.0 -791,5.0,0.0,0.0,0.0,0.0,0.9654681032036888,-7.595427576504628,1.0,0.0,0.0 -791,6.0,13.285919134110248,10.9,0.0,0.0,0.955860558506796,-8.70039074135214,1.0,0.0,0.0 -791,7.0,17.481472544881907,30.0,4.749286832705957e-10,30.893060021660936,0.964457126574432,-8.055614535842315,0.0,1.0,0.0 -791,8.0,0.0,0.0,0.0,0.0,1.0145802883695485,-9.529873912815184,1.0,0.0,0.0 -791,9.0,3.379751358677168,2.0,0.0,0.0,1.0054994939373714,-10.534126549734484,1.0,0.0,0.0 -791,10.0,0.0,0.0,8.803877766868566e-10,23.14657080083505,1.05999997551831,-9.529873912717624,0.0,1.0,0.0 -791,11.0,6.526416416755911,7.5,0.0,0.0,1.0131621268422657,-10.037594871760543,1.0,0.0,0.0 -791,12.0,0.0,0.0,6.003563228234901e-10,10.705910306753978,1.0277457669903032,-10.037594871714298,0.0,1.0,0.0 -791,13.0,3.6128376592755935,1.6,0.0,0.0,1.0017207901013694,-10.547217542651529,1.0,0.0,0.0 -791,14.0,4.77826916226772,2.5,0.0,0.0,0.9982366780749,-10.579265854089806,1.0,0.0,0.0 -791,15.0,2.039505130236222,1.8,0.0,0.0,1.0035535104900106,-10.37038919997404,1.0,0.0,0.0 -791,16.0,5.244441763464571,5.8,0.0,0.0,1.0004668276324733,-10.588922439543587,1.0,0.0,0.0 -791,17.0,1.864690404787403,0.9,0.0,0.0,0.9913347803365008,-10.94203413137382,1.0,0.0,0.0 -791,18.0,5.535799639212603,3.4,0.0,0.0,0.9896259887643322,-11.050925403164332,1.0,0.0,0.0 -791,19.0,1.28197465329134,0.7,0.0,0.0,0.9929608186050422,-10.955955933312374,1.0,0.0,0.0 -791,20.0,10.197525651181111,11.2,0.0,0.0,0.9947067474091574,-10.733194957768347,1.0,0.0,0.0 -791,21.0,0.0,0.0,0.0,0.0,0.9950951813391112,-10.72879330320846,1.0,0.0,0.0 -791,22.0,1.864690404787403,1.6,0.0,0.0,0.9894354739000852,-10.776170484248883,1.0,0.0,0.0 -791,23.0,5.069627038015752,6.7,0.0,0.0,0.984586081661606,-10.873845840425409,1.0,0.0,0.0 -791,24.0,0.0,0.0,0.0,0.0,0.9780450076895996,-10.58460598993539,1.0,0.0,0.0 -791,25.0,2.039505130236222,2.3,0.0,0.0,0.9635881949227968,-10.700052064996244,1.0,0.0,0.0 -791,26.0,0.0,0.0,0.0,0.0,0.9811873298315996,-10.308637749949732,1.0,0.0,0.0 -791,27.0,0.0,0.0,0.0,0.0,0.963330296922902,-7.976631766199149,1.0,0.0,0.0 -791,28.0,1.398517803590552,0.9,0.0,0.0,0.9667897119729753,-11.005254115226522,1.0,0.0,0.0 -791,29.0,6.176786965858272,1.9,0.0,0.0,0.9588838731615807,-11.52492618550527,1.0,0.0,0.0 -792,0.0,0.0,0.0,172.75994698224764,0.0014113477823762,1.0,0.0,0.0,0.0,1.0 -792,1.0,12.644931807464577,12.7,1.3390382320990374e-06,10.743060075253894,0.9790566762881135,-3.965590160023948,0.0,1.0,0.0 -792,2.0,1.398517803590552,1.2,0.0,0.0,0.9733630785295608,-5.225324022177469,1.0,0.0,0.0 -792,3.0,4.428639711370082,1.6,0.0,0.0,0.9666170251029984,-6.424818440777816,1.0,0.0,0.0 -792,4.0,54.89182379092918,19.0,1.0576702597623515e-09,24.563509392334367,0.957883154383636,-9.54581702415789,0.0,1.0,0.0 -792,5.0,0.0,0.0,0.0,0.0,0.965567856322346,-7.584320656587754,1.0,0.0,0.0 -792,6.0,13.285919134110248,10.9,0.0,0.0,0.9557848709096016,-8.689300746512481,1.0,0.0,0.0 -792,7.0,17.481472544881907,30.0,1.2775483291528579e-09,28.440370429771804,0.963720621431781,-8.017602039873681,0.0,1.0,0.0 -792,8.0,0.0,0.0,0.0,0.0,1.015736899855268,-9.610283498153912,1.0,0.0,0.0 -792,9.0,3.379751358677168,2.0,0.0,0.0,1.0078693304284163,-10.659667206365723,1.0,0.0,0.0 -792,10.0,0.0,0.0,2.1809732966040013e-09,22.55675424534914,1.0599992417353576,-9.610283497912503,0.0,1.0,0.0 -792,11.0,6.526416416755911,7.5,0.0,0.0,1.0197462271476083,-10.198170803881448,1.0,0.0,0.0 -792,12.0,0.0,0.0,1.5711707430309615e-09,15.03103056351972,1.039980682595765,-10.198170803762611,0.0,1.0,0.0 -792,13.0,3.6128376592755935,1.6,0.0,0.0,1.0076815166945443,-10.721635745667646,1.0,0.0,0.0 -792,14.0,4.77826916226772,2.5,0.0,0.0,1.003407587861745,-10.757610952539316,1.0,0.0,0.0 -792,15.0,2.039505130236222,1.8,0.0,0.0,1.0083653931476435,-10.50575521446545,1.0,0.0,0.0 -792,16.0,5.244441763464571,5.8,0.0,0.0,1.003608937593563,-10.719762774942415,1.0,0.0,0.0 -792,17.0,1.864690404787403,0.9,0.0,0.0,0.9955613603033732,-11.09828672021583,1.0,0.0,0.0 -792,18.0,5.535799639212603,3.4,0.0,0.0,0.9932822009065172,-11.195042620376595,1.0,0.0,0.0 -792,19.0,1.28197465329134,0.7,0.0,0.0,0.9963010228181988,-11.094721900465755,1.0,0.0,0.0 -792,20.0,10.197525651181111,11.2,0.0,0.0,0.996875649232386,-10.898943809367369,1.0,0.0,0.0 -792,21.0,0.0,0.0,0.0,0.0,0.9971876371397684,-10.907698090507935,1.0,0.0,0.0 -792,22.0,1.864690404787403,1.6,0.0,0.0,0.9927292447342068,-11.025786431594565,1.0,0.0,0.0 -792,23.0,5.069627038015752,6.7,0.0,0.0,0.9853737742850204,-11.222819623651132,1.0,0.0,0.0 -792,24.0,0.0,0.0,0.0,0.0,0.9734607325711004,-11.365637963090103,1.0,0.0,0.0 -792,25.0,2.039505130236222,2.3,0.0,0.0,0.9589337303458196,-11.482190696761837,1.0,0.0,0.0 -792,26.0,0.0,0.0,0.0,0.0,0.98264038760152,-9.690042464375724,1.0,0.0,0.0 -792,27.0,0.0,0.0,0.0,0.0,0.9637274920840774,-7.896956349149885,1.0,0.0,0.0 -792,28.0,1.398517803590552,0.9,0.0,0.0,0.9756509082907452,-9.91892668779218,1.0,0.0,0.0 -792,29.0,6.176786965858272,1.9,0.0,0.0,0.9491914265084572,-11.603527574864994,1.0,0.0,0.0 -793,0.0,0.0,0.0,172.6711182629395,0.0010104993602766,1.0,0.0,0.0,0.0,1.0 -793,1.0,12.644931807464577,12.7,1.0712443452495997e-06,11.61159325666852,0.9792406525207776,-3.9701947985510335,0.0,1.0,0.0 -793,2.0,1.398517803590552,1.2,0.0,0.0,0.9728550541039874,-5.205813833250232,1.0,0.0,0.0 -793,3.0,4.428639711370082,1.6,0.0,0.0,0.9659875204320436,-6.400875170771052,1.0,0.0,0.0 -793,4.0,54.89182379092918,19.0,3.743465437763492e-10,24.83349690958029,0.9582108230657834,-9.55742280326882,0.0,1.0,0.0 -793,5.0,0.0,0.0,0.0,0.0,0.9654681032036888,-7.595427576504628,1.0,0.0,0.0 -793,6.0,13.285919134110248,10.9,0.0,0.0,0.955860558506796,-8.70039074135214,1.0,0.0,0.0 -793,7.0,17.481472544881907,30.0,4.749286832705957e-10,30.893060021660936,0.964457126574432,-8.055614535842315,0.0,1.0,0.0 -793,8.0,0.0,0.0,0.0,0.0,1.0145802883695485,-9.529873912815184,1.0,0.0,0.0 -793,9.0,3.379751358677168,2.0,0.0,0.0,1.0054994939373714,-10.534126549734484,1.0,0.0,0.0 -793,10.0,0.0,0.0,8.803877766868566e-10,23.14657080083505,1.05999997551831,-9.529873912717624,0.0,1.0,0.0 -793,11.0,6.526416416755911,7.5,0.0,0.0,1.0131621268422657,-10.037594871760543,1.0,0.0,0.0 -793,12.0,0.0,0.0,6.003563228234901e-10,10.705910306753978,1.0277457669903032,-10.037594871714298,0.0,1.0,0.0 -793,13.0,3.6128376592755935,1.6,0.0,0.0,1.0017207901013694,-10.547217542651529,1.0,0.0,0.0 -793,14.0,4.77826916226772,2.5,0.0,0.0,0.9982366780749,-10.579265854089806,1.0,0.0,0.0 -793,15.0,2.039505130236222,1.8,0.0,0.0,1.0035535104900106,-10.37038919997404,1.0,0.0,0.0 -793,16.0,5.244441763464571,5.8,0.0,0.0,1.0004668276324733,-10.588922439543587,1.0,0.0,0.0 -793,17.0,1.864690404787403,0.9,0.0,0.0,0.9913347803365008,-10.94203413137382,1.0,0.0,0.0 -793,18.0,5.535799639212603,3.4,0.0,0.0,0.9896259887643322,-11.050925403164332,1.0,0.0,0.0 -793,19.0,1.28197465329134,0.7,0.0,0.0,0.9929608186050422,-10.955955933312374,1.0,0.0,0.0 -793,20.0,10.197525651181111,11.2,0.0,0.0,0.9947067474091574,-10.733194957768347,1.0,0.0,0.0 -793,21.0,0.0,0.0,0.0,0.0,0.9950951813391112,-10.72879330320846,1.0,0.0,0.0 -793,22.0,1.864690404787403,1.6,0.0,0.0,0.9894354739000852,-10.776170484248883,1.0,0.0,0.0 -793,23.0,5.069627038015752,6.7,0.0,0.0,0.984586081661606,-10.873845840425409,1.0,0.0,0.0 -793,24.0,0.0,0.0,0.0,0.0,0.9780450076895996,-10.58460598993539,1.0,0.0,0.0 -793,25.0,2.039505130236222,2.3,0.0,0.0,0.9635881949227968,-10.700052064996244,1.0,0.0,0.0 -793,26.0,0.0,0.0,0.0,0.0,0.9811873298315996,-10.308637749949732,1.0,0.0,0.0 -793,27.0,0.0,0.0,0.0,0.0,0.963330296922902,-7.976631766199149,1.0,0.0,0.0 -793,28.0,1.398517803590552,0.9,0.0,0.0,0.9667897119729753,-11.005254115226522,1.0,0.0,0.0 -793,29.0,6.176786965858272,1.9,0.0,0.0,0.9588838731615807,-11.52492618550527,1.0,0.0,0.0 -794,0.0,0.0,0.0,172.6711182629395,0.0010104993602766,1.0,0.0,0.0,0.0,1.0 -794,1.0,12.644931807464577,12.7,1.0712443452495997e-06,11.61159325666852,0.9792406525207776,-3.9701947985510335,0.0,1.0,0.0 -794,2.0,1.398517803590552,1.2,0.0,0.0,0.9728550541039874,-5.205813833250232,1.0,0.0,0.0 -794,3.0,4.428639711370082,1.6,0.0,0.0,0.9659875204320436,-6.400875170771052,1.0,0.0,0.0 -794,4.0,54.89182379092918,19.0,3.743465437763492e-10,24.83349690958029,0.9582108230657834,-9.55742280326882,0.0,1.0,0.0 -794,5.0,0.0,0.0,0.0,0.0,0.9654681032036888,-7.595427576504628,1.0,0.0,0.0 -794,6.0,13.285919134110248,10.9,0.0,0.0,0.955860558506796,-8.70039074135214,1.0,0.0,0.0 -794,7.0,17.481472544881907,30.0,4.749286832705957e-10,30.893060021660936,0.964457126574432,-8.055614535842315,0.0,1.0,0.0 -794,8.0,0.0,0.0,0.0,0.0,1.0145802883695485,-9.529873912815184,1.0,0.0,0.0 -794,9.0,3.379751358677168,2.0,0.0,0.0,1.0054994939373714,-10.534126549734484,1.0,0.0,0.0 -794,10.0,0.0,0.0,8.803877766868566e-10,23.14657080083505,1.05999997551831,-9.529873912717624,0.0,1.0,0.0 -794,11.0,6.526416416755911,7.5,0.0,0.0,1.0131621268422657,-10.037594871760543,1.0,0.0,0.0 -794,12.0,0.0,0.0,6.003563228234901e-10,10.705910306753978,1.0277457669903032,-10.037594871714298,0.0,1.0,0.0 -794,13.0,3.6128376592755935,1.6,0.0,0.0,1.0017207901013694,-10.547217542651529,1.0,0.0,0.0 -794,14.0,4.77826916226772,2.5,0.0,0.0,0.9982366780749,-10.579265854089806,1.0,0.0,0.0 -794,15.0,2.039505130236222,1.8,0.0,0.0,1.0035535104900106,-10.37038919997404,1.0,0.0,0.0 -794,16.0,5.244441763464571,5.8,0.0,0.0,1.0004668276324733,-10.588922439543587,1.0,0.0,0.0 -794,17.0,1.864690404787403,0.9,0.0,0.0,0.9913347803365008,-10.94203413137382,1.0,0.0,0.0 -794,18.0,5.535799639212603,3.4,0.0,0.0,0.9896259887643322,-11.050925403164332,1.0,0.0,0.0 -794,19.0,1.28197465329134,0.7,0.0,0.0,0.9929608186050422,-10.955955933312374,1.0,0.0,0.0 -794,20.0,10.197525651181111,11.2,0.0,0.0,0.9947067474091574,-10.733194957768347,1.0,0.0,0.0 -794,21.0,0.0,0.0,0.0,0.0,0.9950951813391112,-10.72879330320846,1.0,0.0,0.0 -794,22.0,1.864690404787403,1.6,0.0,0.0,0.9894354739000852,-10.776170484248883,1.0,0.0,0.0 -794,23.0,5.069627038015752,6.7,0.0,0.0,0.984586081661606,-10.873845840425409,1.0,0.0,0.0 -794,24.0,0.0,0.0,0.0,0.0,0.9780450076895996,-10.58460598993539,1.0,0.0,0.0 -794,25.0,2.039505130236222,2.3,0.0,0.0,0.9635881949227968,-10.700052064996244,1.0,0.0,0.0 -794,26.0,0.0,0.0,0.0,0.0,0.9811873298315996,-10.308637749949732,1.0,0.0,0.0 -794,27.0,0.0,0.0,0.0,0.0,0.963330296922902,-7.976631766199149,1.0,0.0,0.0 -794,28.0,1.398517803590552,0.9,0.0,0.0,0.9667897119729753,-11.005254115226522,1.0,0.0,0.0 -794,29.0,6.176786965858272,1.9,0.0,0.0,0.9588838731615807,-11.52492618550527,1.0,0.0,0.0 -795,0.0,0.0,0.0,172.6711182629395,0.0010104993602766,1.0,0.0,0.0,0.0,1.0 -795,1.0,12.644931807464577,12.7,1.0712443452495997e-06,11.61159325666852,0.9792406525207776,-3.9701947985510335,0.0,1.0,0.0 -795,2.0,1.398517803590552,1.2,0.0,0.0,0.9728550541039874,-5.205813833250232,1.0,0.0,0.0 -795,3.0,4.428639711370082,1.6,0.0,0.0,0.9659875204320436,-6.400875170771052,1.0,0.0,0.0 -795,4.0,54.89182379092918,19.0,3.743465437763492e-10,24.83349690958029,0.9582108230657834,-9.55742280326882,0.0,1.0,0.0 -795,5.0,0.0,0.0,0.0,0.0,0.9654681032036888,-7.595427576504628,1.0,0.0,0.0 -795,6.0,13.285919134110248,10.9,0.0,0.0,0.955860558506796,-8.70039074135214,1.0,0.0,0.0 -795,7.0,17.481472544881907,30.0,4.749286832705957e-10,30.893060021660936,0.964457126574432,-8.055614535842315,0.0,1.0,0.0 -795,8.0,0.0,0.0,0.0,0.0,1.0145802883695485,-9.529873912815184,1.0,0.0,0.0 -795,9.0,3.379751358677168,2.0,0.0,0.0,1.0054994939373714,-10.534126549734484,1.0,0.0,0.0 -795,10.0,0.0,0.0,8.803877766868566e-10,23.14657080083505,1.05999997551831,-9.529873912717624,0.0,1.0,0.0 -795,11.0,6.526416416755911,7.5,0.0,0.0,1.0131621268422657,-10.037594871760543,1.0,0.0,0.0 -795,12.0,0.0,0.0,6.003563228234901e-10,10.705910306753978,1.0277457669903032,-10.037594871714298,0.0,1.0,0.0 -795,13.0,3.6128376592755935,1.6,0.0,0.0,1.0017207901013694,-10.547217542651529,1.0,0.0,0.0 -795,14.0,4.77826916226772,2.5,0.0,0.0,0.9982366780749,-10.579265854089806,1.0,0.0,0.0 -795,15.0,2.039505130236222,1.8,0.0,0.0,1.0035535104900106,-10.37038919997404,1.0,0.0,0.0 -795,16.0,5.244441763464571,5.8,0.0,0.0,1.0004668276324733,-10.588922439543587,1.0,0.0,0.0 -795,17.0,1.864690404787403,0.9,0.0,0.0,0.9913347803365008,-10.94203413137382,1.0,0.0,0.0 -795,18.0,5.535799639212603,3.4,0.0,0.0,0.9896259887643322,-11.050925403164332,1.0,0.0,0.0 -795,19.0,1.28197465329134,0.7,0.0,0.0,0.9929608186050422,-10.955955933312374,1.0,0.0,0.0 -795,20.0,10.197525651181111,11.2,0.0,0.0,0.9947067474091574,-10.733194957768347,1.0,0.0,0.0 -795,21.0,0.0,0.0,0.0,0.0,0.9950951813391112,-10.72879330320846,1.0,0.0,0.0 -795,22.0,1.864690404787403,1.6,0.0,0.0,0.9894354739000852,-10.776170484248883,1.0,0.0,0.0 -795,23.0,5.069627038015752,6.7,0.0,0.0,0.984586081661606,-10.873845840425409,1.0,0.0,0.0 -795,24.0,0.0,0.0,0.0,0.0,0.9780450076895996,-10.58460598993539,1.0,0.0,0.0 -795,25.0,2.039505130236222,2.3,0.0,0.0,0.9635881949227968,-10.700052064996244,1.0,0.0,0.0 -795,26.0,0.0,0.0,0.0,0.0,0.9811873298315996,-10.308637749949732,1.0,0.0,0.0 -795,27.0,0.0,0.0,0.0,0.0,0.963330296922902,-7.976631766199149,1.0,0.0,0.0 -795,28.0,1.398517803590552,0.9,0.0,0.0,0.9667897119729753,-11.005254115226522,1.0,0.0,0.0 -795,29.0,6.176786965858272,1.9,0.0,0.0,0.9588838731615807,-11.52492618550527,1.0,0.0,0.0 -796,0.0,0.0,0.0,174.03640842358274,0.0012132696152633,1.0,0.0,0.0,0.0,1.0 -796,1.0,12.644931807464577,12.7,1.82749079075018e-06,12.042297558546124,0.9776744135291082,-4.450811919947453,0.0,1.0,0.0 -796,2.0,1.398517803590552,1.2,0.0,0.0,0.9754060528423628,-3.9635504410562623,1.0,0.0,0.0 -796,3.0,4.428639711370082,1.6,0.0,0.0,0.9689777851879456,-4.856905425923622,1.0,0.0,0.0 -796,4.0,54.89182379092918,19.0,-2.560281915541286e-09,26.709467732479663,0.9574930938639336,-11.293199655626433,0.0,1.0,0.0 -796,5.0,0.0,0.0,0.0,0.0,0.9612369295587884,-10.557763638639036,1.0,0.0,0.0 -796,6.0,13.285919134110248,10.9,0.0,0.0,0.9528417642599224,-11.163020322986275,1.0,0.0,0.0 -796,7.0,17.481472544881907,30.0,-2.28988184424155e-09,27.24729999358334,0.9589019281784332,-10.98605648308928,0.0,1.0,0.0 -796,8.0,0.0,0.0,0.0,0.0,1.009964473612844,-11.646257092013608,1.0,0.0,0.0 -796,9.0,3.379751358677168,2.0,0.0,0.0,1.005521391442246,-12.208904478143744,1.0,0.0,0.0 -796,10.0,0.0,0.0,-3.4607573335073143e-09,17.986282543728276,1.0457396012324387,-11.64625709240411,0.0,1.0,0.0 -796,11.0,6.526416416755911,7.5,0.0,0.0,1.0295338663631377,-10.371428107267317,1.0,0.0,0.0 -796,12.0,0.0,0.0,-1.7828849761213067e-09,23.04986176349388,1.0599777199109304,-10.371428107398364,0.0,1.0,0.0 -796,13.0,3.6128376592755935,1.6,0.0,0.0,1.0146950228858558,-11.084586474543848,1.0,0.0,0.0 -796,14.0,4.77826916226772,2.5,0.0,0.0,1.006303962161944,-11.253509557545708,1.0,0.0,0.0 -796,15.0,2.039505130236222,1.8,0.0,0.0,1.0119189282537735,-11.23631739891171,1.0,0.0,0.0 -796,16.0,5.244441763464571,5.8,0.0,0.0,1.003380487046846,-12.019579451004136,1.0,0.0,0.0 -796,17.0,1.864690404787403,0.9,0.0,0.0,0.9854274936838784,-12.039723532865782,1.0,0.0,0.0 -796,18.0,5.535799639212603,3.4,0.0,0.0,0.9755084195105188,-12.40858867592139,1.0,0.0,0.0 -796,19.0,1.28197465329134,0.7,0.0,0.0,0.9745725398597156,-12.446782266342312,1.0,0.0,0.0 -796,20.0,10.197525651181111,11.2,0.0,0.0,0.9934986869175668,-12.42342897708101,1.0,0.0,0.0 -796,21.0,0.0,0.0,0.0,0.0,0.9975929544725898,-12.322502179340198,1.0,0.0,0.0 -796,22.0,1.864690404787403,1.6,0.0,0.0,0.9951361023519888,-11.809588737538668,1.0,0.0,0.0 -796,23.0,5.069627038015752,6.7,0.0,0.0,0.9872399198937788,-12.39917722641576,1.0,0.0,0.0 -796,24.0,0.0,0.0,0.0,0.0,0.9762571730421172,-12.602003049334945,1.0,0.0,0.0 -796,25.0,2.039505130236222,2.3,0.0,0.0,0.9617730689741458,-12.71787882175066,1.0,0.0,0.0 -796,26.0,0.0,0.0,0.0,0.0,0.9768392192425172,-12.638838538300146,1.0,0.0,0.0 -796,27.0,0.0,0.0,0.0,0.0,0.9591668608871928,-10.864447132494575,1.0,0.0,0.0 -796,28.0,1.398517803590552,0.9,0.0,0.0,0.9623733859496126,-13.341762412903291,1.0,0.0,0.0 -796,29.0,6.176786965858272,1.9,0.0,0.0,0.9544300124970528,-13.866250453991482,1.0,0.0,0.0 -797,0.0,0.0,0.0,172.6711182629395,0.0010104993602766,1.0,0.0,0.0,0.0,1.0 -797,1.0,12.644931807464577,12.7,1.0712443452495997e-06,11.61159325666852,0.9792406525207776,-3.9701947985510335,0.0,1.0,0.0 -797,2.0,1.398517803590552,1.2,0.0,0.0,0.9728550541039874,-5.205813833250232,1.0,0.0,0.0 -797,3.0,4.428639711370082,1.6,0.0,0.0,0.9659875204320436,-6.400875170771052,1.0,0.0,0.0 -797,4.0,54.89182379092918,19.0,3.743465437763492e-10,24.83349690958029,0.9582108230657834,-9.55742280326882,0.0,1.0,0.0 -797,5.0,0.0,0.0,0.0,0.0,0.9654681032036888,-7.595427576504628,1.0,0.0,0.0 -797,6.0,13.285919134110248,10.9,0.0,0.0,0.955860558506796,-8.70039074135214,1.0,0.0,0.0 -797,7.0,17.481472544881907,30.0,4.749286832705957e-10,30.893060021660936,0.964457126574432,-8.055614535842315,0.0,1.0,0.0 -797,8.0,0.0,0.0,0.0,0.0,1.0145802883695485,-9.529873912815184,1.0,0.0,0.0 -797,9.0,3.379751358677168,2.0,0.0,0.0,1.0054994939373714,-10.534126549734484,1.0,0.0,0.0 -797,10.0,0.0,0.0,8.803877766868566e-10,23.14657080083505,1.05999997551831,-9.529873912717624,0.0,1.0,0.0 -797,11.0,6.526416416755911,7.5,0.0,0.0,1.0131621268422657,-10.037594871760543,1.0,0.0,0.0 -797,12.0,0.0,0.0,6.003563228234901e-10,10.705910306753978,1.0277457669903032,-10.037594871714298,0.0,1.0,0.0 -797,13.0,3.6128376592755935,1.6,0.0,0.0,1.0017207901013694,-10.547217542651529,1.0,0.0,0.0 -797,14.0,4.77826916226772,2.5,0.0,0.0,0.9982366780749,-10.579265854089806,1.0,0.0,0.0 -797,15.0,2.039505130236222,1.8,0.0,0.0,1.0035535104900106,-10.37038919997404,1.0,0.0,0.0 -797,16.0,5.244441763464571,5.8,0.0,0.0,1.0004668276324733,-10.588922439543587,1.0,0.0,0.0 -797,17.0,1.864690404787403,0.9,0.0,0.0,0.9913347803365008,-10.94203413137382,1.0,0.0,0.0 -797,18.0,5.535799639212603,3.4,0.0,0.0,0.9896259887643322,-11.050925403164332,1.0,0.0,0.0 -797,19.0,1.28197465329134,0.7,0.0,0.0,0.9929608186050422,-10.955955933312374,1.0,0.0,0.0 -797,20.0,10.197525651181111,11.2,0.0,0.0,0.9947067474091574,-10.733194957768347,1.0,0.0,0.0 -797,21.0,0.0,0.0,0.0,0.0,0.9950951813391112,-10.72879330320846,1.0,0.0,0.0 -797,22.0,1.864690404787403,1.6,0.0,0.0,0.9894354739000852,-10.776170484248883,1.0,0.0,0.0 -797,23.0,5.069627038015752,6.7,0.0,0.0,0.984586081661606,-10.873845840425409,1.0,0.0,0.0 -797,24.0,0.0,0.0,0.0,0.0,0.9780450076895996,-10.58460598993539,1.0,0.0,0.0 -797,25.0,2.039505130236222,2.3,0.0,0.0,0.9635881949227968,-10.700052064996244,1.0,0.0,0.0 -797,26.0,0.0,0.0,0.0,0.0,0.9811873298315996,-10.308637749949732,1.0,0.0,0.0 -797,27.0,0.0,0.0,0.0,0.0,0.963330296922902,-7.976631766199149,1.0,0.0,0.0 -797,28.0,1.398517803590552,0.9,0.0,0.0,0.9667897119729753,-11.005254115226522,1.0,0.0,0.0 -797,29.0,6.176786965858272,1.9,0.0,0.0,0.9588838731615807,-11.52492618550527,1.0,0.0,0.0 -798,0.0,0.0,0.0,172.84549359460587,0.0579300824971262,1.0,0.0,0.0,0.0,1.0 -798,1.0,12.644931807464577,12.7,0.0,0.0,0.97829885072506,-3.937652015869412,0.0,1.0,0.0 -798,2.0,1.398517803590552,1.2,0.0,0.0,0.9754819703901436,-5.302029290740316,1.0,0.0,0.0 -798,3.0,4.428639711370082,1.6,0.0,0.0,0.9692420778555748,-6.5188228775447135,1.0,0.0,0.0 -798,4.0,54.89182379092918,19.0,-2.1373637832875024e-10,29.93048220715285,0.9657341349611503,-9.57594812204061,0.0,1.0,0.0 -798,5.0,0.0,0.0,0.0,0.0,0.9708836329096916,-7.562953273683299,1.0,0.0,0.0 -798,6.0,13.285919134110248,10.9,0.0,0.0,0.9622033295652423,-8.684137457089735,1.0,0.0,0.0 -798,7.0,17.481472544881907,30.0,-5.135802464781574e-10,37.0307243354108,0.9720686822801532,-8.06938324018345,0.0,1.0,0.0 -798,8.0,0.0,0.0,0.0,0.0,1.0263610937967256,-7.562953273716692,1.0,0.0,0.0 -798,9.0,3.379751358677168,2.0,0.0,0.0,0.9919932493799336,-12.446189205998571,1.0,0.0,0.0 -798,10.0,0.0,0.0,-2.8546205794172585e-10,17.1421872330386,1.0599986365402685,-7.562953273747963,0.0,1.0,0.0 -798,11.0,6.526416416755911,7.5,0.0,0.0,1.0207095253098288,-11.192570062433507,1.0,0.0,0.0 -798,12.0,0.0,0.0,-5.018105102545363e-10,18.99529282416996,1.0461302694844,-11.1925700624712,0.0,1.0,0.0 -798,13.0,3.6128376592755935,1.6,0.0,0.0,1.0072104423079369,-11.785546926684274,1.0,0.0,0.0 -798,14.0,4.77826916226772,2.5,0.0,0.0,1.001066715439608,-11.858548306524208,1.0,0.0,0.0 -798,15.0,2.039505130236222,1.8,0.0,0.0,1.001450318996891,-11.80085618223589,1.0,0.0,0.0 -798,16.0,5.244441763464571,5.8,0.0,0.0,0.9906397267360364,-12.365626993467204,1.0,0.0,0.0 -798,17.0,1.864690404787403,0.9,0.0,0.0,0.9883042868704904,-12.441475558964694,1.0,0.0,0.0 -798,18.0,5.535799639212603,3.4,0.0,0.0,0.9831519738886568,-12.683537151880302,1.0,0.0,0.0 -798,19.0,1.28197465329134,0.7,0.0,0.0,0.9846956327046223,-12.65662343639891,1.0,0.0,0.0 -798,20.0,10.197525651181111,11.2,0.0,0.0,0.9824705486619718,-12.562123828737866,1.0,0.0,0.0 -798,21.0,0.0,0.0,0.0,0.0,0.983320408647374,-12.529808516609313,1.0,0.0,0.0 -798,22.0,1.864690404787403,1.6,0.0,0.0,0.9888414662601768,-12.135718098192603,1.0,0.0,0.0 -798,23.0,5.069627038015752,6.7,0.0,0.0,0.979452925031892,-12.345266089032062,1.0,0.0,0.0 -798,24.0,0.0,0.0,0.0,0.0,0.9786779142262368,-11.54962467685571,1.0,0.0,0.0 -798,25.0,2.039505130236222,2.3,0.0,0.0,0.9642307377622537,-11.664919210794944,1.0,0.0,0.0 -798,26.0,0.0,0.0,0.0,0.0,0.985284778510079,-10.955465086544722,1.0,0.0,0.0 -798,27.0,0.0,0.0,0.0,0.0,0.9686594880862432,-8.023088715334445,1.0,0.0,0.0 -798,28.0,1.398517803590552,0.9,0.0,0.0,0.9709508396997328,-11.646215359372732,1.0,0.0,0.0 -798,29.0,6.176786965858272,1.9,0.0,0.0,0.9630800382238198,-12.161410347965331,1.0,0.0,0.0 -799,0.0,0.0,0.0,172.70026342523593,0.5717533464426161,1.0,0.0,0.0,0.0,1.0 -799,1.0,12.644931807464577,12.7,0.0,0.0,0.9779599140494344,-3.946297096711741,0.0,1.0,0.0 -799,2.0,1.398517803590552,1.2,0.0,0.0,0.975580637087901,-5.249820574862187,1.0,0.0,0.0 -799,3.0,4.428639711370082,1.6,0.0,0.0,0.9693540251341436,-6.453947345808182,1.0,0.0,0.0 -799,4.0,54.89182379092918,19.0,1.179891896508569e-09,29.6291111007651,0.9647304498240564,-9.624460048748643,0.0,1.0,0.0 -799,5.0,0.0,0.0,0.0,0.0,0.9698259551834356,-7.649941753314449,1.0,0.0,0.0 -799,6.0,13.285919134110248,10.9,0.0,0.0,0.9611534276043776,-8.75603612815927,1.0,0.0,0.0 -799,7.0,17.481472544881907,30.0,1.964598522250272e-09,35.13581875620864,0.9704228792297396,-8.132402190604555,0.0,1.0,0.0 -799,8.0,0.0,0.0,0.0,0.0,1.018296347082432,-9.5496375097964,1.0,0.0,0.0 -799,9.0,3.379751358677168,2.0,0.0,0.0,1.0107758220794467,-10.535134599271382,1.0,0.0,0.0 -799,10.0,0.0,0.0,1.559872873898498e-09,21.252278946133305,1.059998972604187,-9.549637509624176,0.0,1.0,0.0 -799,11.0,6.526416416755911,7.5,0.0,0.0,1.0216845002988053,-10.088982453990548,1.0,0.0,0.0 -799,12.0,0.0,0.0,2.1193480734271503e-09,14.08559935844822,1.0406343260051407,-10.088982453830653,0.0,1.0,0.0 -799,13.0,3.6128376592755935,1.6,0.0,0.0,1.009920236810448,-10.58969012551299,1.0,0.0,0.0 -799,14.0,4.77826916226772,2.5,0.0,0.0,1.0060637720293275,-10.611272459103612,1.0,0.0,0.0 -799,15.0,2.039505130236222,1.8,0.0,0.0,1.0107462617656149,-10.391500195591162,1.0,0.0,0.0 -799,16.0,5.244441763464571,5.8,0.0,0.0,1.0063600889557245,-10.59722585025,1.0,0.0,0.0 -799,17.0,1.864690404787403,0.9,0.0,0.0,0.998330660541282,-10.95757909128382,1.0,0.0,0.0 -799,18.0,5.535799639212603,3.4,0.0,0.0,0.9961122292288814,-11.058270302157702,1.0,0.0,0.0 -799,19.0,1.28197465329134,0.7,0.0,0.0,0.9991508981404896,-10.960886967174854,1.0,0.0,0.0 -799,20.0,10.197525651181111,11.2,0.0,0.0,1.0001805344479826,-10.734070756619804,1.0,0.0,0.0 -799,21.0,0.0,0.0,0.0,0.0,1.000610668881693,-10.730412718630715,1.0,0.0,0.0 -799,22.0,1.864690404787403,1.6,0.0,0.0,0.9965607176014796,-10.798843540487196,1.0,0.0,0.0 -799,23.0,5.069627038015752,6.7,0.0,0.0,0.990724663285348,-10.886840327327368,1.0,0.0,0.0 -799,24.0,0.0,0.0,0.0,0.0,0.9837972153960436,-10.60043594766252,1.0,0.0,0.0 -799,25.0,2.039505130236222,2.3,0.0,0.0,0.969427506054232,-10.714515693397924,1.0,0.0,0.0 -799,26.0,0.0,0.0,0.0,0.0,0.9866558560654696,-10.327788644645876,1.0,0.0,0.0 -799,27.0,0.0,0.0,0.0,0.0,0.9681410447258508,-8.032724016459325,1.0,0.0,0.0 -799,28.0,1.398517803590552,0.9,0.0,0.0,0.9723430960035272,-11.016592648301671,1.0,0.0,0.0 -799,29.0,6.176786965858272,1.9,0.0,0.0,0.9644839471901184,-11.53030261215882,1.0,0.0,0.0 -800,0.0,0.0,0.0,172.99207662121898,0.0002609563927613,1.0,0.0,0.0,0.0,1.0 -800,1.0,12.644931807464577,12.7,6.615910407057461e-07,11.742987557183495,0.979212147849762,-3.9832870507919327,0.0,1.0,0.0 -800,2.0,1.398517803590552,1.2,0.0,0.0,0.9727918442668304,-5.200214731749161,1.0,0.0,0.0 -800,3.0,4.428639711370082,1.6,0.0,0.0,0.9659086332367578,-6.393955407331911,1.0,0.0,0.0 -800,4.0,54.89182379092918,19.0,-3.631307053559424e-10,25.383397798121948,0.9585341684198216,-9.596685443016073,0.0,1.0,0.0 -800,5.0,0.0,0.0,0.0,0.0,0.9649946855196772,-7.641104680280867,1.0,0.0,0.0 -800,6.0,13.285919134110248,10.9,0.0,0.0,0.9557105590709468,-8.743218537520574,1.0,0.0,0.0 -800,7.0,17.481472544881907,30.0,-4.3578777151355156e-10,34.09988387669783,0.9650741178597744,-8.124883210703528,0.0,1.0,0.0 -800,8.0,0.0,0.0,0.0,0.0,1.0106040035398502,-9.719365329797212,1.0,0.0,0.0 -800,9.0,3.379751358677168,2.0,0.0,0.0,0.9988097449874678,-10.804949265637836,1.0,0.0,0.0 -800,10.0,0.0,0.0,-4.870020295065921e-10,23.99963828605941,1.0577957670086804,-9.719365329851504,0.0,1.0,0.0 -800,11.0,6.526416416755911,7.5,0.0,0.0,1.0132294736315424,-9.70208834781362,1.0,0.0,0.0 -800,12.0,0.0,0.0,-5.540480395153593e-10,6.922109928471713,1.0227052767976368,-9.702088347856506,0.0,1.0,0.0 -800,13.0,3.6128376592755935,1.6,0.0,0.0,0.989689465501389,-10.908293400374756,1.0,0.0,0.0 -800,14.0,4.77826916226772,2.5,0.0,0.0,0.9699182972318756,-11.366217493816908,1.0,0.0,0.0 -800,15.0,2.039505130236222,1.8,0.0,0.0,1.0002568909013805,-10.27982965078657,1.0,0.0,0.0 -800,16.0,5.244441763464571,5.8,0.0,0.0,0.9949375624813236,-10.752165909465408,1.0,0.0,0.0 -800,17.0,1.864690404787403,0.9,0.0,0.0,0.9704798173764784,-11.564182447957428,1.0,0.0,0.0 -800,18.0,5.535799639212603,3.4,0.0,0.0,0.9732360934023933,-11.56979907868685,1.0,0.0,0.0 -800,19.0,1.28197465329134,0.7,0.0,0.0,0.979002699391388,-11.4162548685093,1.0,0.0,0.0 -800,20.0,10.197525651181111,11.2,0.0,0.0,0.9869634780703028,-11.033435463618677,1.0,0.0,0.0 -800,21.0,0.0,0.0,0.0,0.0,0.9870439081026204,-11.037111774795155,1.0,0.0,0.0 -800,22.0,1.864690404787403,1.6,0.0,0.0,0.9678543638662752,-11.400292061197016,1.0,0.0,0.0 -800,23.0,5.069627038015752,6.7,0.0,0.0,0.972115639657018,-11.268446377868626,1.0,0.0,0.0 -800,24.0,0.0,0.0,0.0,0.0,0.9702412630948472,-10.910799157769256,1.0,0.0,0.0 -800,25.0,2.039505130236222,2.3,0.0,0.0,0.9556645526343764,-11.028138670342848,1.0,0.0,0.0 -800,26.0,0.0,0.0,0.0,0.0,0.9763229372729416,-10.586219542920588,1.0,0.0,0.0 -800,27.0,0.0,0.0,0.0,0.0,0.9624886315828786,-8.0431246019298,1.0,0.0,0.0 -800,28.0,1.398517803590552,0.9,0.0,0.0,0.9618489599848358,-11.289898069707244,1.0,0.0,0.0 -800,29.0,6.176786965858272,1.9,0.0,0.0,0.9539011053139368,-11.814962448904891,1.0,0.0,0.0 -801,0.0,0.0,0.0,173.87717614988634,0.0001127914812215,1.0,0.0,0.0,0.0,1.0 -801,1.0,12.644931807464577,12.7,1.8526390921019212e-07,9.23189454332389,0.9793624249336184,-3.930543793840765,0.0,1.0,0.0 -801,2.0,1.398517803590552,1.2,0.0,0.0,0.9723070434488288,-5.4397269376311,1.0,0.0,0.0 -801,3.0,4.428639711370082,1.6,0.0,0.0,0.9653564060445398,-6.691822479871296,1.0,0.0,0.0 -801,4.0,54.89182379092918,19.0,3.893958403517259e-10,38.24463097728446,0.958910905913565,-12.567109849626735,0.0,1.0,0.0 -801,5.0,0.0,0.0,0.0,0.0,0.9677619772240652,-7.331309489774624,1.0,0.0,0.0 -801,6.0,13.285919134110248,10.9,0.0,0.0,0.9400014738328606,-13.254403670475924,1.0,0.0,0.0 -801,7.0,17.481472544881907,30.0,2.1105086418650926e-10,27.397731771867427,0.965237430777204,-7.776328605589767,0.0,1.0,0.0 -801,8.0,0.0,0.0,0.0,0.0,1.019207983568123,-9.013705689218924,1.0,0.0,0.0 -801,9.0,3.379751358677168,2.0,0.0,0.0,1.015756500754909,-9.8803719089489,1.0,0.0,0.0 -801,10.0,0.0,0.0,1.9949435298999763e-10,18.70898169103519,1.0560570184566227,-9.013705689196838,0.0,1.0,0.0 -801,11.0,6.526416416755911,7.5,0.0,0.0,1.0148058446214834,-10.509386460468775,1.0,0.0,0.0 -801,12.0,0.0,0.0,2.0623489945852075e-10,17.32638408040653,1.0381709161480206,-10.509386460453072,0.0,1.0,0.0 -801,13.0,3.6128376592755935,1.6,0.0,0.0,0.9993388843219804,-11.139164061181338,1.0,0.0,0.0 -801,14.0,4.77826916226772,2.5,0.0,0.0,0.991143571347924,-11.199441876011097,1.0,0.0,0.0 -801,15.0,2.039505130236222,1.8,0.0,0.0,1.0096754406553123,-10.374498900463896,1.0,0.0,0.0 -801,16.0,5.244441763464571,5.8,0.0,0.0,1.0092166222318872,-10.13274577669374,1.0,0.0,0.0 -801,17.0,1.864690404787403,0.9,0.0,0.0,0.973093369499324,-11.885992804486548,1.0,0.0,0.0 -801,18.0,5.535799639212603,3.4,0.0,0.0,0.9648606977883368,-12.189874563714842,1.0,0.0,0.0 -801,19.0,1.28197465329134,0.7,0.0,0.0,1.013126108651004,-9.993067663942895,1.0,0.0,0.0 -801,20.0,10.197525651181111,11.2,0.0,0.0,0.9873340463211872,-10.35176805451266,1.0,0.0,0.0 -801,21.0,0.0,0.0,0.0,0.0,0.991209876945398,-10.286933906743736,1.0,0.0,0.0 -801,22.0,1.864690404787403,1.6,0.0,0.0,0.976242014158646,-11.44962172288134,1.0,0.0,0.0 -801,23.0,5.069627038015752,6.7,0.0,0.0,0.9633648157978406,-11.620622502317683,1.0,0.0,0.0 -801,24.0,0.0,0.0,0.0,0.0,0.9661347059619012,-11.062367256412648,1.0,0.0,0.0 -801,25.0,2.039505130236222,2.3,0.0,0.0,0.9514940871010052,-11.18072201818167,1.0,0.0,0.0 -801,26.0,0.0,0.0,0.0,0.0,0.9750848670104122,-10.609504390266968,1.0,0.0,0.0 -801,27.0,0.0,0.0,0.0,0.0,0.9640957967683076,-7.75531159899001,1.0,0.0,0.0 -801,28.0,1.398517803590552,0.9,0.0,0.0,0.9605913214894526,-11.314997598578524,1.0,0.0,0.0 -801,29.0,6.176786965858272,1.9,0.0,0.0,0.9526326993603118,-11.841447995140635,1.0,0.0,0.0 -802,0.0,0.0,0.0,146.6804285491543,1.1379424513791037e-06,1.0,0.0,0.0,0.0,1.0 -802,1.0,12.644931807464577,12.7,29.788717757597688,11.109076608630836,0.9850566539888644,-2.839748755551581,0.0,1.0,0.0 -802,2.0,1.398517803590552,1.2,0.0,0.0,0.9691036993425992,-5.923482882677109,1.0,0.0,0.0 -802,3.0,4.428639711370082,1.6,0.0,0.0,0.9615159591899596,-7.295389336669927,1.0,0.0,0.0 -802,4.0,54.89182379092918,19.0,-9.292304106968973e-09,39.99999985999345,0.940000000262834,-17.626116782469257,0.0,1.0,0.0 -802,5.0,0.0,0.0,0.0,0.0,0.9579792121853516,-9.07470292412258,1.0,0.0,0.0 -802,6.0,13.285919134110248,10.9,0.0,0.0,0.9431039050755144,-12.85418568709468,1.0,0.0,0.0 -802,7.0,17.481472544881907,30.0,1.2903946066374384e-09,39.99999946182725,0.9603155556483164,-9.598197341263088,0.0,1.0,0.0 -802,8.0,0.0,0.0,0.0,0.0,0.9834545978697792,-10.848638076546065,1.0,0.0,0.0 -802,9.0,3.379751358677168,2.0,0.0,0.0,0.985909399915346,-11.78059765620367,1.0,0.0,0.0 -802,10.0,0.0,0.0,0.0,0.0,0.9834545978697792,-10.848638076546065,0.0,1.0,0.0 -802,11.0,6.526416416755911,7.5,0.0,0.0,1.017741016230276,-11.373212893067784,1.0,0.0,0.0 -802,12.0,0.0,0.0,-7.641702562739526e-11,23.999999342102456,1.0497486765674264,-11.373212893073518,0.0,1.0,0.0 -802,13.0,3.6128376592755935,1.6,0.0,0.0,1.0092519853638886,-11.779058888978662,1.0,0.0,0.0 -802,14.0,4.77826916226772,2.5,0.0,0.0,0.9949504715583436,-11.935006833154036,1.0,0.0,0.0 -802,15.0,2.039505130236222,1.8,0.0,0.0,0.9977029160645016,-11.617479909145915,1.0,0.0,0.0 -802,16.0,5.244441763464571,5.8,0.0,0.0,0.9850906956123816,-11.855562437786055,1.0,0.0,0.0 -802,17.0,1.864690404787403,0.9,0.0,0.0,0.9822110951467103,-12.264485004914768,1.0,0.0,0.0 -802,18.0,5.535799639212603,3.4,0.0,0.0,0.9770661052220428,-12.35240124135789,1.0,0.0,0.0 -802,19.0,1.28197465329134,0.7,0.0,0.0,0.978643979068294,-12.241958795565507,1.0,0.0,0.0 -802,20.0,10.197525651181111,11.2,0.0,0.0,0.9761054277909764,-11.997240126061364,1.0,0.0,0.0 -802,21.0,0.0,0.0,0.0,0.0,0.9768805905001838,-11.996291985727256,1.0,0.0,0.0 -802,22.0,1.864690404787403,1.6,0.0,0.0,0.9817679347223128,-12.13065375995952,1.0,0.0,0.0 -802,23.0,5.069627038015752,6.7,0.0,0.0,0.9711297879680968,-12.227424568492262,1.0,0.0,0.0 -802,24.0,0.0,0.0,0.0,0.0,0.9665392010243604,-12.031795598281052,1.0,0.0,0.0 -802,25.0,2.039505130236222,2.3,0.0,0.0,0.9519049023346084,-12.15004976590886,1.0,0.0,0.0 -802,26.0,0.0,0.0,0.0,0.0,0.9710119226064982,-11.809570616631198,1.0,0.0,0.0 -802,27.0,0.0,0.0,0.0,0.0,0.9562631978391396,-9.463986883011806,1.0,0.0,0.0 -802,28.0,1.398517803590552,0.9,0.0,0.0,0.9564536156734263,-12.521083750039134,1.0,0.0,0.0 -802,29.0,6.176786965858272,1.9,0.0,0.0,0.948459357635394,-13.052133273181218,1.0,0.0,0.0 -803,0.0,0.0,0.0,172.68639258305512,0.0006402537001903,1.0,0.0,0.0,0.0,1.0 -803,1.0,12.644931807464577,12.7,7.684623781043768e-07,11.30628427893712,0.9792116929822616,-3.9626387308962014,0.0,1.0,0.0 -803,2.0,1.398517803590552,1.2,0.0,0.0,0.972960750932999,-5.228389464164556,1.0,0.0,0.0 -803,3.0,4.428639711370082,1.6,0.0,0.0,0.9661218145986622,-6.4288602519988345,1.0,0.0,0.0 -803,4.0,54.89182379092918,19.0,6.567438822792952e-10,24.83544190298284,0.958250078782848,-9.53241248644681,0.0,1.0,0.0 -803,5.0,0.0,0.0,0.0,0.0,0.9655859321679434,-7.552769135348424,1.0,0.0,0.0 -803,6.0,13.285919134110248,10.9,0.0,0.0,0.9559491515918854,-8.664891655671251,1.0,0.0,0.0 -803,7.0,17.481472544881907,30.0,7.942828470090468e-10,30.991267815347527,0.9646274856337372,-8.019354394436208,0.0,1.0,0.0 -803,8.0,0.0,0.0,0.0,0.0,1.015092724527881,-10.107113916989922,1.0,0.0,0.0 -803,9.0,3.379751358677168,2.0,0.0,0.0,1.0069022214044303,-11.431359210364183,1.0,0.0,0.0 -803,10.0,0.0,0.0,1.4101503734618095e-09,22.808830640237023,1.059855766112048,-10.107113916833711,0.0,1.0,0.0 -803,11.0,6.526416416755911,7.5,0.0,0.0,1.0164132387452869,-10.476452372842886,1.0,0.0,0.0 -803,12.0,0.0,0.0,8.654977917963711e-10,11.714665147018827,1.032300598712225,-10.476452372776718,0.0,1.0,0.0 -803,13.0,3.6128376592755935,1.6,0.0,0.0,1.00490269936813,-11.0279815776481,1.0,0.0,0.0 -803,14.0,4.77826916226772,2.5,0.0,0.0,1.001017344701551,-11.102122263858677,1.0,0.0,0.0 -803,15.0,2.039505130236222,1.8,0.0,0.0,1.0056986816528208,-11.000884697226397,1.0,0.0,0.0 -803,16.0,5.244441763464571,5.8,0.0,0.0,1.002204530758429,-11.403540720606498,1.0,0.0,0.0 -803,17.0,1.864690404787403,0.9,0.0,0.0,0.9936165817152752,-11.594502985996868,1.0,0.0,0.0 -803,18.0,5.535799639212603,3.4,0.0,0.0,0.991616663808676,-11.781449372782086,1.0,0.0,0.0 -803,19.0,1.28197465329134,0.7,0.0,0.0,0.9947872314517026,-11.72817433504318,1.0,0.0,0.0 -803,20.0,10.197525651181111,11.2,0.0,0.0,0.9961666238394188,-11.585307796573296,1.0,0.0,0.0 -803,21.0,0.0,0.0,0.0,0.0,0.9965723827576812,-11.566605961356649,1.0,0.0,0.0 -803,22.0,1.864690404787403,1.6,0.0,0.0,0.9919226014224112,-11.351093808724098,1.0,0.0,0.0 -803,23.0,5.069627038015752,6.7,0.0,0.0,0.9866783222850162,-11.520275901537197,1.0,0.0,0.0 -803,24.0,0.0,0.0,0.0,0.0,0.9802637022545996,-10.971438540912184,1.0,0.0,0.0 -803,25.0,2.039505130236222,2.3,0.0,0.0,0.9658406130307908,-11.086354698402618,1.0,0.0,0.0 -803,26.0,0.0,0.0,0.0,0.0,0.9834004649339944,-10.53409140797263,1.0,0.0,0.0 -803,27.0,0.0,0.0,0.0,0.0,0.963534934406732,-7.968422273520643,1.0,0.0,0.0 -803,28.0,1.398517803590552,0.9,0.0,0.0,0.9690373139632434,-11.227530059438044,1.0,0.0,0.0 -803,29.0,6.176786965858272,1.9,0.0,0.0,0.9611504395880448,-11.744776633431934,1.0,0.0,0.0 -804,0.0,0.0,0.0,174.0796350105455,0.0002603570524506,1.0,0.0,0.0,0.0,1.0 -804,1.0,12.644931807464577,12.7,5.57504187885921e-07,11.526057768544788,0.9773585538125764,-4.475508222154113,0.0,1.0,0.0 -804,2.0,1.398517803590552,1.2,0.0,0.0,0.9762299057643812,-3.895605160959561,1.0,0.0,0.0 -804,3.0,4.428639711370082,1.6,0.0,0.0,0.9699885658593236,-4.7723924144722485,1.0,0.0,0.0 -804,4.0,54.89182379092918,19.0,3.7308200761646756e-10,26.87471515195851,0.957019221632234,-11.3974001411147,0.0,1.0,0.0 -804,5.0,0.0,0.0,0.0,0.0,0.9602834786335112,-10.730649824546475,1.0,0.0,0.0 -804,6.0,13.285919134110248,10.9,0.0,0.0,0.9520629363973528,-11.308015011272213,1.0,0.0,0.0 -804,7.0,17.481472544881907,30.0,3.240412672482689e-10,26.77813809562157,0.957766866143658,-11.156676585764512,0.0,1.0,0.0 -804,8.0,0.0,0.0,0.0,0.0,1.0112158099478756,-11.959449217983927,1.0,0.0,0.0 -804,9.0,3.379751358677168,2.0,0.0,0.0,1.0026940937391808,-12.595772946648989,1.0,0.0,0.0 -804,10.0,0.0,0.0,4.91293439172352e-10,23.26798602881695,1.0570031937750608,-11.95944921792915,0.0,1.0,0.0 -804,11.0,6.526416416755911,7.5,0.0,0.0,1.0315276906019597,-10.013655381558255,1.0,0.0,0.0 -804,12.0,0.0,0.0,2.4698342653113826e-10,19.07019627766467,1.0567912188306223,-10.013655381540085,0.0,1.0,0.0 -804,13.0,3.6128376592755935,1.6,0.0,0.0,1.0231546835463947,-10.408635991884733,1.0,0.0,0.0 -804,14.0,4.77826916226772,2.5,0.0,0.0,1.0130910180157535,-10.856203397050656,1.0,0.0,0.0 -804,15.0,2.039505130236222,1.8,0.0,0.0,1.0112213155275358,-11.181895868173424,1.0,0.0,0.0 -804,16.0,5.244441763464571,5.8,0.0,0.0,1.0013401436435352,-12.270572731984048,1.0,0.0,0.0 -804,17.0,1.864690404787403,0.9,0.0,0.0,1.0091550132324747,-11.030419613339646,1.0,0.0,0.0 -804,18.0,5.535799639212603,3.4,0.0,0.0,0.9831511875986536,-13.352430392667992,1.0,0.0,0.0 -804,19.0,1.28197465329134,0.7,0.0,0.0,0.9874208015083136,-13.198485458729134,1.0,0.0,0.0 -804,20.0,10.197525651181111,11.2,0.0,0.0,0.992574087375174,-12.725525360911456,1.0,0.0,0.0 -804,21.0,0.0,0.0,0.0,0.0,0.9931924545337312,-12.698791371212751,1.0,0.0,0.0 -804,22.0,1.864690404787403,1.6,0.0,0.0,0.9985384143623748,-11.646507677874508,1.0,0.0,0.0 -804,23.0,5.069627038015752,6.7,0.0,0.0,0.9862733662111935,-12.564443834419803,1.0,0.0,0.0 -804,24.0,0.0,0.0,0.0,0.0,0.9752388442396384,-12.771270836501932,1.0,0.0,0.0 -804,25.0,2.039505130236222,2.3,0.0,0.0,0.9607391485505324,-12.887392437710638,1.0,0.0,0.0 -804,26.0,0.0,0.0,0.0,0.0,0.9757983392144012,-12.810489611450665,1.0,0.0,0.0 -804,27.0,0.0,0.0,0.0,0.0,0.9581705957878908,-11.036727983453352,1.0,0.0,0.0 -804,28.0,1.398517803590552,0.9,0.0,0.0,0.9613160770934206,-13.514936198937695,1.0,0.0,0.0 -804,29.0,6.176786965858272,1.9,0.0,0.0,0.9533636636922,-14.040587186403362,1.0,0.0,0.0 -805,0.0,0.0,0.0,173.38619366868912,0.0142752774254795,1.0,0.0,0.0,0.0,1.0 -805,1.0,12.644931807464577,12.7,1.2987321509729534e-05,11.609723709881948,0.9808531928405028,-3.6864501364184807,0.0,1.0,0.0 -805,2.0,1.398517803590552,1.2,0.0,0.0,0.9692815587249832,-6.106230080611211,1.0,0.0,0.0 -805,3.0,4.428639711370082,1.6,0.0,0.0,0.9617808534971556,-7.522434597585133,1.0,0.0,0.0 -805,4.0,54.89182379092918,19.0,-6.9050856039914794e-09,26.5072581022246,0.9596672554880152,-9.851188165606704,0.0,1.0,0.0 -805,5.0,0.0,0.0,0.0,0.0,0.9628779227187828,-8.43970373663361,1.0,0.0,0.0 -805,6.0,13.285919134110248,10.9,0.0,0.0,0.9548399363278172,-9.319093702749091,1.0,0.0,0.0 -805,7.0,17.481472544881907,30.0,-6.453280400178115e-09,35.95085779947567,0.9636541341557316,-8.937754066160014,0.0,1.0,0.0 -805,8.0,0.0,0.0,0.0,0.0,1.0090992344098992,-10.57086805049094,1.0,0.0,0.0 -805,9.0,3.379751358677168,2.0,0.0,0.0,0.9976445082324598,-11.682932515330434,1.0,0.0,0.0 -805,10.0,0.0,0.0,-1.0940224601113777e-08,24.00044610432273,1.0563568698925638,-10.57086805171406,0.0,1.0,0.0 -805,11.0,6.526416416755911,7.5,0.0,0.0,1.0131572388280865,-10.749294810501674,1.0,0.0,0.0 -805,12.0,0.0,0.0,-9.697531364387598e-09,9.339213932257344,1.0259020226538724,-10.74929481125007,0.0,1.0,0.0 -805,13.0,3.6128376592755935,1.6,0.0,0.0,0.9891504487794224,-11.906747246155708,1.0,0.0,0.0 -805,14.0,4.77826916226772,2.5,0.0,0.0,0.9692494958549606,-12.303943527103304,1.0,0.0,0.0 -805,15.0,2.039505130236222,1.8,0.0,0.0,0.9998301717197716,-11.252455515033384,1.0,0.0,0.0 -805,16.0,5.244441763464571,5.8,0.0,0.0,0.9939655583566834,-11.66075821837508,1.0,0.0,0.0 -805,17.0,1.864690404787403,0.9,0.0,0.0,0.9696296272679382,-12.48128239804238,1.0,0.0,0.0 -805,18.0,5.535799639212603,3.4,0.0,0.0,0.9722805354600637,-12.474533222893193,1.0,0.0,0.0 -805,19.0,1.28197465329134,0.7,0.0,0.0,0.9779965955427332,-12.314193469909236,1.0,0.0,0.0 -805,20.0,10.197525651181111,11.2,0.0,0.0,0.9857906493106836,-11.912941258188193,1.0,0.0,0.0 -805,21.0,0.0,0.0,0.0,0.0,0.9858731535374868,-11.916945799417926,1.0,0.0,0.0 -805,22.0,1.864690404787403,1.6,0.0,0.0,0.9669686614292864,-12.315461893577462,1.0,0.0,0.0 -805,23.0,5.069627038015752,6.7,0.0,0.0,0.9709457329110902,-12.153324460442796,1.0,0.0,0.0 -805,24.0,0.0,0.0,0.0,0.0,0.9688256946403956,-11.764746311774704,1.0,0.0,0.0 -805,25.0,2.039505130236222,2.3,0.0,0.0,0.9542270184577056,-11.882434301650967,1.0,0.0,0.0 -805,26.0,0.0,0.0,0.0,0.0,0.9747579313556408,-11.420966291385357,1.0,0.0,0.0 -805,27.0,0.0,0.0,0.0,0.0,0.9605633039109102,-8.849189651354912,1.0,0.0,0.0 -805,28.0,1.398517803590552,0.9,0.0,0.0,0.9602592093576244,-12.126939878392069,1.0,0.0,0.0 -805,29.0,6.176786965858272,1.9,0.0,0.0,0.9522977388417332,-12.6537572074426,1.0,0.0,0.0 -806,0.0,0.0,0.0,172.6711182629395,0.0010104993602766,1.0,0.0,0.0,0.0,1.0 -806,1.0,12.644931807464577,12.7,1.0712443452495997e-06,11.61159325666852,0.9792406525207776,-3.9701947985510335,0.0,1.0,0.0 -806,2.0,1.398517803590552,1.2,0.0,0.0,0.9728550541039874,-5.205813833250232,1.0,0.0,0.0 -806,3.0,4.428639711370082,1.6,0.0,0.0,0.9659875204320436,-6.400875170771052,1.0,0.0,0.0 -806,4.0,54.89182379092918,19.0,3.743465437763492e-10,24.83349690958029,0.9582108230657834,-9.55742280326882,0.0,1.0,0.0 -806,5.0,0.0,0.0,0.0,0.0,0.9654681032036888,-7.595427576504628,1.0,0.0,0.0 -806,6.0,13.285919134110248,10.9,0.0,0.0,0.955860558506796,-8.70039074135214,1.0,0.0,0.0 -806,7.0,17.481472544881907,30.0,4.749286832705957e-10,30.893060021660936,0.964457126574432,-8.055614535842315,0.0,1.0,0.0 -806,8.0,0.0,0.0,0.0,0.0,1.0145802883695485,-9.529873912815184,1.0,0.0,0.0 -806,9.0,3.379751358677168,2.0,0.0,0.0,1.0054994939373714,-10.534126549734484,1.0,0.0,0.0 -806,10.0,0.0,0.0,8.803877766868566e-10,23.14657080083505,1.05999997551831,-9.529873912717624,0.0,1.0,0.0 -806,11.0,6.526416416755911,7.5,0.0,0.0,1.0131621268422657,-10.037594871760543,1.0,0.0,0.0 -806,12.0,0.0,0.0,6.003563228234901e-10,10.705910306753978,1.0277457669903032,-10.037594871714298,0.0,1.0,0.0 -806,13.0,3.6128376592755935,1.6,0.0,0.0,1.0017207901013694,-10.547217542651529,1.0,0.0,0.0 -806,14.0,4.77826916226772,2.5,0.0,0.0,0.9982366780749,-10.579265854089806,1.0,0.0,0.0 -806,15.0,2.039505130236222,1.8,0.0,0.0,1.0035535104900106,-10.37038919997404,1.0,0.0,0.0 -806,16.0,5.244441763464571,5.8,0.0,0.0,1.0004668276324733,-10.588922439543587,1.0,0.0,0.0 -806,17.0,1.864690404787403,0.9,0.0,0.0,0.9913347803365008,-10.94203413137382,1.0,0.0,0.0 -806,18.0,5.535799639212603,3.4,0.0,0.0,0.9896259887643322,-11.050925403164332,1.0,0.0,0.0 -806,19.0,1.28197465329134,0.7,0.0,0.0,0.9929608186050422,-10.955955933312374,1.0,0.0,0.0 -806,20.0,10.197525651181111,11.2,0.0,0.0,0.9947067474091574,-10.733194957768347,1.0,0.0,0.0 -806,21.0,0.0,0.0,0.0,0.0,0.9950951813391112,-10.72879330320846,1.0,0.0,0.0 -806,22.0,1.864690404787403,1.6,0.0,0.0,0.9894354739000852,-10.776170484248883,1.0,0.0,0.0 -806,23.0,5.069627038015752,6.7,0.0,0.0,0.984586081661606,-10.873845840425409,1.0,0.0,0.0 -806,24.0,0.0,0.0,0.0,0.0,0.9780450076895996,-10.58460598993539,1.0,0.0,0.0 -806,25.0,2.039505130236222,2.3,0.0,0.0,0.9635881949227968,-10.700052064996244,1.0,0.0,0.0 -806,26.0,0.0,0.0,0.0,0.0,0.9811873298315996,-10.308637749949732,1.0,0.0,0.0 -806,27.0,0.0,0.0,0.0,0.0,0.963330296922902,-7.976631766199149,1.0,0.0,0.0 -806,28.0,1.398517803590552,0.9,0.0,0.0,0.9667897119729753,-11.005254115226522,1.0,0.0,0.0 -806,29.0,6.176786965858272,1.9,0.0,0.0,0.9588838731615807,-11.52492618550527,1.0,0.0,0.0 -807,0.0,0.0,0.0,172.8295566248792,9.898549873099682e-05,1.0,0.0,0.0,0.0,1.0 -807,1.0,12.644931807464577,12.7,1.5290081065167962e-07,9.98037166086111,0.9789423815006084,-3.968334833047981,0.0,1.0,0.0 -807,2.0,1.398517803590552,1.2,0.0,0.0,0.973656174313071,-5.223015966680319,1.0,0.0,0.0 -807,3.0,4.428639711370082,1.6,0.0,0.0,0.9669777733814904,-6.421781595880244,1.0,0.0,0.0 -807,4.0,54.89182379092918,19.0,-1.3497185659968665e-10,24.7133162348577,0.958091959500922,-9.5622052759094,0.0,1.0,0.0 -807,5.0,0.0,0.0,0.0,0.0,0.96577848012726,-7.612042115718083,1.0,0.0,0.0 -807,6.0,13.285919134110248,10.9,0.0,0.0,0.955995442603789,-8.712289690506598,1.0,0.0,0.0 -807,7.0,17.481472544881907,30.0,-1.5621016145388114e-10,29.82480149262377,0.964374746358628,-8.06557212873071,0.0,1.0,0.0 -807,8.0,0.0,0.0,0.0,0.0,1.014912304481567,-9.571681355672704,1.0,0.0,0.0 -807,9.0,3.379751358677168,2.0,0.0,0.0,1.0060986762221544,-10.588729943420228,1.0,0.0,0.0 -807,10.0,0.0,0.0,-2.7389776292606017e-10,22.905170104578403,1.0598640633576908,-9.57168135570305,0.0,1.0,0.0 -807,11.0,6.526416416755911,7.5,0.0,0.0,1.0208661947807844,-9.993531304157466,1.0,0.0,0.0 -807,12.0,0.0,0.0,-1.9490712981181743e-10,14.024466202914384,1.0397498263869636,-9.993531304172194,0.0,1.0,0.0 -807,13.0,3.6128376592755935,1.6,0.0,0.0,1.0069082836976104,-10.588254630325755,1.0,0.0,0.0 -807,14.0,4.77826916226772,2.5,0.0,0.0,1.000309478969759,-10.652657367073967,1.0,0.0,0.0 -807,15.0,2.039505130236222,1.8,0.0,0.0,0.9927044289118204,-10.971908142291124,1.0,0.0,0.0 -807,16.0,5.244441763464571,5.8,0.0,0.0,0.997272336462846,-10.799512497974204,1.0,0.0,0.0 -807,17.0,1.864690404787403,0.9,0.0,0.0,0.982435342785793,-11.326447692889364,1.0,0.0,0.0 -807,18.0,5.535799639212603,3.4,0.0,0.0,0.9742825442320162,-11.624529029461836,1.0,0.0,0.0 -807,19.0,1.28197465329134,0.7,0.0,0.0,1.00344286240479,-10.703605455646372,1.0,0.0,0.0 -807,20.0,10.197525651181111,11.2,0.0,0.0,0.9953861359818664,-10.7870561014326,1.0,0.0,0.0 -807,21.0,0.0,0.0,0.0,0.0,0.995797539615686,-10.782532842618611,1.0,0.0,0.0 -807,22.0,1.864690404787403,1.6,0.0,0.0,0.9910634808734354,-10.84083264671485,1.0,0.0,0.0 -807,23.0,5.069627038015752,6.7,0.0,0.0,0.9856078318263272,-10.92759924326652,1.0,0.0,0.0 -807,24.0,0.0,0.0,0.0,0.0,0.9788408906623792,-10.620238414981324,1.0,0.0,0.0 -807,25.0,2.039505130236222,2.3,0.0,0.0,0.9643961935038476,-10.735493977174578,1.0,0.0,0.0 -807,26.0,0.0,0.0,0.0,0.0,0.9818314645719458,-10.333367010219712,1.0,0.0,0.0 -807,27.0,0.0,0.0,0.0,0.0,0.9635895796134916,-7.993665560183315,1.0,0.0,0.0 -807,28.0,1.398517803590552,0.9,0.0,0.0,0.9674438959067176,-11.02905623719348,1.0,0.0,0.0 -807,29.0,6.176786965858272,1.9,0.0,0.0,0.9595435864177028,-11.548020583928842,1.0,0.0,0.0 -808,0.0,0.0,0.0,172.6711182629395,0.0010104993602766,1.0,0.0,0.0,0.0,1.0 -808,1.0,12.644931807464577,12.7,1.0712443452495997e-06,11.61159325666852,0.9792406525207776,-3.9701947985510335,0.0,1.0,0.0 -808,2.0,1.398517803590552,1.2,0.0,0.0,0.9728550541039874,-5.205813833250232,1.0,0.0,0.0 -808,3.0,4.428639711370082,1.6,0.0,0.0,0.9659875204320436,-6.400875170771052,1.0,0.0,0.0 -808,4.0,54.89182379092918,19.0,3.743465437763492e-10,24.83349690958029,0.9582108230657834,-9.55742280326882,0.0,1.0,0.0 -808,5.0,0.0,0.0,0.0,0.0,0.9654681032036888,-7.595427576504628,1.0,0.0,0.0 -808,6.0,13.285919134110248,10.9,0.0,0.0,0.955860558506796,-8.70039074135214,1.0,0.0,0.0 -808,7.0,17.481472544881907,30.0,4.749286832705957e-10,30.893060021660936,0.964457126574432,-8.055614535842315,0.0,1.0,0.0 -808,8.0,0.0,0.0,0.0,0.0,1.0145802883695485,-9.529873912815184,1.0,0.0,0.0 -808,9.0,3.379751358677168,2.0,0.0,0.0,1.0054994939373714,-10.534126549734484,1.0,0.0,0.0 -808,10.0,0.0,0.0,8.803877766868566e-10,23.14657080083505,1.05999997551831,-9.529873912717624,0.0,1.0,0.0 -808,11.0,6.526416416755911,7.5,0.0,0.0,1.0131621268422657,-10.037594871760543,1.0,0.0,0.0 -808,12.0,0.0,0.0,6.003563228234901e-10,10.705910306753978,1.0277457669903032,-10.037594871714298,0.0,1.0,0.0 -808,13.0,3.6128376592755935,1.6,0.0,0.0,1.0017207901013694,-10.547217542651529,1.0,0.0,0.0 -808,14.0,4.77826916226772,2.5,0.0,0.0,0.9982366780749,-10.579265854089806,1.0,0.0,0.0 -808,15.0,2.039505130236222,1.8,0.0,0.0,1.0035535104900106,-10.37038919997404,1.0,0.0,0.0 -808,16.0,5.244441763464571,5.8,0.0,0.0,1.0004668276324733,-10.588922439543587,1.0,0.0,0.0 -808,17.0,1.864690404787403,0.9,0.0,0.0,0.9913347803365008,-10.94203413137382,1.0,0.0,0.0 -808,18.0,5.535799639212603,3.4,0.0,0.0,0.9896259887643322,-11.050925403164332,1.0,0.0,0.0 -808,19.0,1.28197465329134,0.7,0.0,0.0,0.9929608186050422,-10.955955933312374,1.0,0.0,0.0 -808,20.0,10.197525651181111,11.2,0.0,0.0,0.9947067474091574,-10.733194957768347,1.0,0.0,0.0 -808,21.0,0.0,0.0,0.0,0.0,0.9950951813391112,-10.72879330320846,1.0,0.0,0.0 -808,22.0,1.864690404787403,1.6,0.0,0.0,0.9894354739000852,-10.776170484248883,1.0,0.0,0.0 -808,23.0,5.069627038015752,6.7,0.0,0.0,0.984586081661606,-10.873845840425409,1.0,0.0,0.0 -808,24.0,0.0,0.0,0.0,0.0,0.9780450076895996,-10.58460598993539,1.0,0.0,0.0 -808,25.0,2.039505130236222,2.3,0.0,0.0,0.9635881949227968,-10.700052064996244,1.0,0.0,0.0 -808,26.0,0.0,0.0,0.0,0.0,0.9811873298315996,-10.308637749949732,1.0,0.0,0.0 -808,27.0,0.0,0.0,0.0,0.0,0.963330296922902,-7.976631766199149,1.0,0.0,0.0 -808,28.0,1.398517803590552,0.9,0.0,0.0,0.9667897119729753,-11.005254115226522,1.0,0.0,0.0 -808,29.0,6.176786965858272,1.9,0.0,0.0,0.9588838731615807,-11.52492618550527,1.0,0.0,0.0 -809,0.0,0.0,0.0,169.37590785352876,0.0008050065248177,1.0,0.0,0.0,0.0,1.0 -809,1.0,12.413860993958613,12.7,9.163276913356166e-07,11.260842457059823,0.979547333214982,-3.8921651021234025,0.0,1.0,0.0 -809,2.0,1.3729615845852845,1.2,0.0,0.0,0.9732740036197104,-5.103843281798927,1.0,0.0,0.0 -809,3.0,4.347711684520067,1.6,0.0,0.0,0.966482772229442,-6.274557897534357,1.0,0.0,0.0 -809,4.0,53.88874219497241,19.0,3.538811600748528e-10,24.627726617188017,0.9588379740715872,-9.369273184437125,0.0,1.0,0.0 -809,5.0,0.0,0.0,0.0,0.0,0.9660119908494716,-7.446536519464579,1.0,0.0,0.0 -809,6.0,13.0431350535602,10.9,0.0,0.0,0.9564836629095074,-8.52788140069813,1.0,0.0,0.0 -809,7.0,17.162019807316057,30.0,5.514957934848393e-10,30.78088871686431,0.965001095941696,-7.897423961546438,0.0,1.0,0.0 -809,8.0,0.0,0.0,0.0,0.0,1.0149148296598491,-9.344463900474356,1.0,0.0,0.0 -809,9.0,3.317990496081104,2.0,0.0,0.0,1.0058771463436884,-10.329948066091529,1.0,0.0,0.0 -809,10.0,0.0,0.0,1.200533619592206e-09,22.97608273573284,1.059999974237066,-9.344463900341363,0.0,1.0,0.0 -809,11.0,6.407154061397994,7.5,0.0,0.0,1.0133264672470712,-9.841705244963402,1.0,0.0,0.0 -809,12.0,0.0,0.0,6.809847319395834e-10,10.450000524831282,1.0275640236408103,-9.841705244910944,0.0,1.0,0.0 -809,13.0,3.546817426845318,1.6,0.0,0.0,1.002006596281806,-10.339326603580842,1.0,0.0,0.0 -809,14.0,4.690952080666388,2.5,0.0,0.0,0.998573395194622,-10.369949941088413,1.0,0.0,0.0 -809,15.0,2.002235644186873,1.8,0.0,0.0,1.003851317180888,-10.166971908359423,1.0,0.0,0.0 -809,16.0,5.148605942194816,5.8,0.0,0.0,1.0008407106438804,-10.381597032299844,1.0,0.0,0.0 -809,17.0,1.8306154461137123,0.9,0.0,0.0,0.9917697827430026,-10.724803359046197,1.0,0.0,0.0 -809,18.0,5.4346396056500845,3.4,0.0,0.0,0.9900958446134924,-10.831614574673027,1.0,0.0,0.0 -809,19.0,1.2585481192031776,0.7,0.0,0.0,0.993412267613001,-10.739701978794177,1.0,0.0,0.0 -809,20.0,10.011178220934363,11.2,0.0,0.0,0.9951518447379628,-10.521821432852422,1.0,0.0,0.0 -809,21.0,0.0,0.0,0.0,0.0,0.995539040888058,-10.517730563009229,1.0,0.0,0.0 -809,22.0,1.8306154461137123,1.6,0.0,0.0,0.9898764437947252,-10.561284313380348,1.0,0.0,0.0 -809,23.0,4.976985744121656,6.7,0.0,0.0,0.9851164368471832,-10.656910523048436,1.0,0.0,0.0 -809,24.0,0.0,0.0,0.0,0.0,0.9786326358432438,-10.37274355713954,1.0,0.0,0.0 -809,25.0,2.002235644186873,2.3,0.0,0.0,0.964284880379904,-10.479438201433634,1.0,0.0,0.0 -809,26.0,0.0,0.0,0.0,0.0,0.9817636336358676,-10.10463542317866,1.0,0.0,0.0 -809,27.0,0.0,0.0,0.0,0.0,0.963904054134872,-7.819898546160352,1.0,0.0,0.0 -809,28.0,1.3729615845852845,0.9,0.0,0.0,0.9675330583966352,-10.784138859092195,1.0,0.0,0.0 -809,29.0,6.063913665251672,1.9,0.0,0.0,0.9597347343807,-11.292046556367492,1.0,0.0,0.0 -810,0.0,0.0,0.0,167.7332831028878,1.4485968868882535e-06,1.0,0.0,0.0,0.0,1.0 -810,1.0,12.413860993958613,12.7,9.451752294832366,6.879112128519381,0.9851044419853217,-2.628687873505161,0.0,1.0,0.0 -810,2.0,1.3729615845852845,1.2,0.0,0.0,0.9653141124742092,-8.641749962782107,1.0,0.0,0.0 -810,3.0,4.347711684520067,1.6,0.0,0.0,0.957829251807152,-10.679980210508011,1.0,0.0,0.0 -810,4.0,53.88874219497241,19.0,-2.889061566312913e-09,39.99999998065222,0.9400000001058038,-22.25875016355361,0.0,1.0,0.0 -810,5.0,0.0,0.0,0.0,0.0,0.9568373894698736,-13.838558969172238,1.0,0.0,0.0 -810,6.0,13.0431350535602,10.9,0.0,0.0,0.9425125152887898,-17.55932505461414,1.0,0.0,0.0 -810,7.0,17.162019807316057,30.0,-5.990786188877132e-11,39.99999995531083,0.9586488358607832,-14.575289497976067,0.0,1.0,0.0 -810,8.0,0.0,0.0,0.0,0.0,1.0149670672004785,-15.919027708978104,1.0,0.0,0.0 -810,9.0,3.317990496081104,2.0,0.0,0.0,1.0110259278979228,-16.98355568954674,1.0,0.0,0.0 -810,10.0,0.0,0.0,-6.480453079924223e-10,22.949475110502625,1.0599999995134557,-15.919027709049889,0.0,1.0,0.0 -810,11.0,6.407154061397994,7.5,0.0,0.0,1.024648031547034,-15.67493318442605,1.0,0.0,0.0 -810,12.0,0.0,0.0,-5.5986241920643315e-09,23.99999980641936,1.056452582260602,-15.67493318484092,0.0,1.0,0.0 -810,13.0,3.546817426845318,1.6,0.0,0.0,1.010174215958784,-16.341782216360418,1.0,0.0,0.0 -810,14.0,4.690952080666388,2.5,0.0,0.0,1.002383288954921,-16.47659400844911,1.0,0.0,0.0 -810,15.0,2.002235644186873,1.8,0.0,0.0,1.0119641754282886,-16.335331135291273,1.0,0.0,0.0 -810,16.0,5.148605942194816,5.8,0.0,0.0,1.007113424869285,-16.885976572872213,1.0,0.0,0.0 -810,17.0,1.8306154461137123,0.9,0.0,0.0,0.9816077038493636,-17.24876519695902,1.0,0.0,0.0 -810,18.0,5.4346396056500845,3.4,0.0,0.0,0.9717329705111948,-17.610835499690527,1.0,0.0,0.0 -810,19.0,1.2585481192031776,0.7,0.0,0.0,0.9708016694083356,-17.64835888880186,1.0,0.0,0.0 -810,20.0,10.011178220934363,11.2,0.0,0.0,0.999696712026861,-17.17312666665318,1.0,0.0,0.0 -810,21.0,0.0,0.0,0.0,0.0,0.9998744155950368,-17.168664026144377,1.0,0.0,0.0 -810,22.0,1.8306154461137123,1.6,0.0,0.0,0.9927284143004036,-16.888179536936505,1.0,0.0,0.0 -810,23.0,4.976985744121656,6.7,0.0,0.0,0.9867463791822044,-17.283796514717892,1.0,0.0,0.0 -810,24.0,0.0,0.0,0.0,0.0,0.97337935925216,-17.349185097024538,1.0,0.0,0.0 -810,25.0,2.002235644186873,2.3,0.0,0.0,0.9589517918077172,-17.45705213801793,1.0,0.0,0.0 -810,26.0,0.0,0.0,0.0,0.0,0.972401698695018,-17.307262334473993,1.0,0.0,0.0 -810,27.0,0.0,0.0,0.0,0.0,0.9516604256932274,-15.498660527913158,1.0,0.0,0.0 -810,28.0,1.3729615845852845,0.9,0.0,0.0,0.958025406749539,-18.0001070386745,1.0,0.0,0.0 -810,29.0,6.063913665251672,1.9,0.0,0.0,0.9501470479626049,-18.518220620992917,1.0,0.0,0.0 -811,0.0,0.0,0.0,169.6745220791318,0.0024310534466387,1.0,0.0,0.0,0.0,1.0 -811,1.0,12.413860993958613,12.7,1.6777474380085194e-06,11.32035677484268,0.9794201331766133,-3.901272295377058,0.0,1.0,0.0 -811,2.0,1.3729615845852845,1.2,0.0,0.0,0.9735055275660548,-5.10601480616203,1.0,0.0,0.0 -811,3.0,4.347711684520067,1.6,0.0,0.0,0.966768434758256,-6.277129308449639,1.0,0.0,0.0 -811,4.0,53.88874219497241,19.0,1.5105371613153764e-09,24.794960918117084,0.9585467077646288,-9.395774427050751,0.0,1.0,0.0 -811,5.0,0.0,0.0,0.0,0.0,0.9652175166733716,-7.477954588010103,1.0,0.0,0.0 -811,6.0,13.0431350535602,10.9,0.0,0.0,0.9558886026575912,-8.557428013875139,1.0,0.0,0.0 -811,7.0,17.162019807316057,30.0,1.587502522121678e-09,31.48298967431637,0.9642859621569816,-7.929897449015463,0.0,1.0,0.0 -811,8.0,0.0,0.0,0.0,0.0,1.0131227937561176,-9.5591141500668,1.0,0.0,0.0 -811,9.0,3.317990496081104,2.0,0.0,0.0,1.002707894137604,-10.642235206449058,1.0,0.0,0.0 -811,10.0,0.0,0.0,2.681450138253145e-09,23.88881547126,1.0599990040094054,-9.559114149769233,0.0,1.0,0.0 -811,11.0,6.407154061397994,7.5,0.0,0.0,1.0192187251012126,-9.569243211677508,1.0,0.0,0.0 -811,12.0,0.0,0.0,1.8462066372317351e-09,9.410630975530411,1.0319852672064185,-9.56924321153671,0.0,1.0,0.0 -811,13.0,3.546817426845318,1.6,0.0,0.0,0.9955793918908854,-10.77421596146544,1.0,0.0,0.0 -811,14.0,4.690952080666388,2.5,0.0,0.0,0.9754595004284524,-11.242257758394862,1.0,0.0,0.0 -811,15.0,2.002235644186873,1.8,0.0,0.0,1.0054245010951108,-10.123889974406024,1.0,0.0,0.0 -811,16.0,5.148605942194816,5.8,0.0,0.0,0.99926950578521,-10.588816766122228,1.0,0.0,0.0 -811,17.0,1.8306154461137123,0.9,0.0,0.0,0.975574007618799,-11.41264207254912,1.0,0.0,0.0 -811,18.0,5.4346396056500845,3.4,0.0,0.0,0.9780304900950624,-11.405785035361545,1.0,0.0,0.0 -811,19.0,1.2585481192031776,0.7,0.0,0.0,0.9835832256907108,-11.251267974698214,1.0,0.0,0.0 -811,20.0,10.011178220934363,11.2,0.0,0.0,0.99129692848937,-10.892664953333492,1.0,0.0,0.0 -811,21.0,0.0,0.0,0.0,0.0,0.9914749360308304,-10.906698324302948,1.0,0.0,0.0 -811,22.0,1.8306154461137123,1.6,0.0,0.0,0.9734783198616276,-11.328867622487552,1.0,0.0,0.0 -811,23.0,4.976985744121656,6.7,0.0,0.0,0.9777683135996078,-11.27445267833025,1.0,0.0,0.0 -811,24.0,0.0,0.0,0.0,0.0,0.9639141749016048,-10.183234012320252,1.0,0.0,0.0 -811,25.0,2.002235644186873,2.3,0.0,0.0,0.9493405054066052,-10.293263051588536,1.0,0.0,0.0 -811,26.0,0.0,0.0,0.0,0.0,0.9712805584731068,-10.080623176525032,1.0,0.0,0.0 -811,27.0,0.0,0.0,0.0,0.0,0.9621242197125436,-7.82709773205093,1.0,0.0,0.0 -811,28.0,1.3729615845852845,0.9,0.0,0.0,0.9568866097830828,-10.775092013534032,1.0,0.0,0.0 -811,29.0,6.063913665251672,1.9,0.0,0.0,0.948998552592568,-11.294448674371791,1.0,0.0,0.0 -812,0.0,0.0,0.0,170.25426127668973,0.000108406430499,1.0,0.0,0.0,0.0,1.0 -812,1.0,12.413860993958613,12.7,1.414728990118169e-07,10.89850117321646,0.9799937403245408,-3.863955090686272,0.0,1.0,0.0 -812,2.0,1.3729615845852845,1.2,0.0,0.0,0.9718600134959624,-5.276949248577853,1.0,0.0,0.0 -812,3.0,4.347711684520067,1.6,0.0,0.0,0.964771054541974,-6.490439891683206,1.0,0.0,0.0 -812,4.0,53.88874219497241,19.0,3.7013733333219124e-10,37.35805309715458,0.9587960564871176,-12.317631452363488,0.0,1.0,0.0 -812,5.0,0.0,0.0,0.0,0.0,0.9668711627996948,-7.188648512803373,1.0,0.0,0.0 -812,6.0,13.0431350535602,10.9,0.0,0.0,0.9400091447814306,-12.987097481647206,1.0,0.0,0.0 -812,7.0,17.162019807316057,30.0,1.0159825978858063e-10,28.31503378313345,0.9649136858294508,-7.625195122751862,0.0,1.0,0.0 -812,8.0,0.0,0.0,0.0,0.0,1.014685401596512,-9.198458622324534,1.0,0.0,0.0 -812,9.0,3.317990496081104,2.0,0.0,0.0,1.005061207585024,-10.243796399536144,1.0,0.0,0.0 -812,10.0,0.0,0.0,9.424070756785705e-11,23.02549058927555,1.0598729139802705,-9.198458622314089,0.0,1.0,0.0 -812,11.0,6.407154061397994,7.5,0.0,0.0,1.011660362092071,-9.812277998550208,1.0,0.0,0.0 -812,12.0,0.0,0.0,7.985825132243092e-11,9.623059700661129,1.0248065346865367,-9.81227799854403,0.0,1.0,0.0 -812,13.0,3.546817426845318,1.6,0.0,0.0,0.9816360989953388,-10.712753884409745,1.0,0.0,0.0 -812,14.0,4.690952080666388,2.5,0.0,0.0,0.9928827521546308,-10.504239698447604,1.0,0.0,0.0 -812,15.0,2.002235644186873,1.8,0.0,0.0,1.0025839978101594,-10.11537035349858,1.0,0.0,0.0 -812,16.0,5.148605942194816,5.8,0.0,0.0,0.9998668987362476,-10.305865728890334,1.0,0.0,0.0 -812,17.0,1.8306154461137123,0.9,0.0,0.0,0.9877775391290162,-10.784974226755486,1.0,0.0,0.0 -812,18.0,5.4346396056500845,3.4,0.0,0.0,0.987115541088489,-10.84649378443624,1.0,0.0,0.0 -812,19.0,1.2585481192031776,0.7,0.0,0.0,0.9909803630227418,-10.730002979598792,1.0,0.0,0.0 -812,20.0,10.011178220934363,11.2,0.0,0.0,0.9941187915235994,-10.444104634477943,1.0,0.0,0.0 -812,21.0,0.0,0.0,0.0,0.0,0.9944399921535966,-10.442521830593154,1.0,0.0,0.0 -812,22.0,1.8306154461137123,1.6,0.0,0.0,0.9857379050809952,-10.619603808469028,1.0,0.0,0.0 -812,23.0,4.976985744121656,6.7,0.0,0.0,0.9830610506826712,-10.610349125741994,1.0,0.0,0.0 -812,24.0,0.0,0.0,0.0,0.0,0.9777950603708369,-10.2595025690524,1.0,0.0,0.0 -812,25.0,2.002235644186873,2.3,0.0,0.0,0.963434639920159,-10.36638284763026,1.0,0.0,0.0 -812,26.0,0.0,0.0,0.0,0.0,0.9816693997228694,-9.948543890966578,1.0,0.0,0.0 -812,27.0,0.0,0.0,0.0,0.0,0.9644071821544172,-7.568958889258526,1.0,0.0,0.0 -812,28.0,1.3729615845852845,0.9,0.0,0.0,0.9674373729097562,-10.628179678611463,1.0,0.0,0.0 -812,29.0,6.063913665251672,1.9,0.0,0.0,0.9596382516512284,-11.1361885771207,1.0,0.0,0.0 -813,0.0,0.0,0.0,169.37590785352876,0.0008050065248177,1.0,0.0,0.0,0.0,1.0 -813,1.0,12.413860993958613,12.7,9.163276913356166e-07,11.260842457059823,0.979547333214982,-3.8921651021234025,0.0,1.0,0.0 -813,2.0,1.3729615845852845,1.2,0.0,0.0,0.9732740036197104,-5.103843281798927,1.0,0.0,0.0 -813,3.0,4.347711684520067,1.6,0.0,0.0,0.966482772229442,-6.274557897534357,1.0,0.0,0.0 -813,4.0,53.88874219497241,19.0,3.538811600748528e-10,24.627726617188017,0.9588379740715872,-9.369273184437125,0.0,1.0,0.0 -813,5.0,0.0,0.0,0.0,0.0,0.9660119908494716,-7.446536519464579,1.0,0.0,0.0 -813,6.0,13.0431350535602,10.9,0.0,0.0,0.9564836629095074,-8.52788140069813,1.0,0.0,0.0 -813,7.0,17.162019807316057,30.0,5.514957934848393e-10,30.78088871686431,0.965001095941696,-7.897423961546438,0.0,1.0,0.0 -813,8.0,0.0,0.0,0.0,0.0,1.0149148296598491,-9.344463900474356,1.0,0.0,0.0 -813,9.0,3.317990496081104,2.0,0.0,0.0,1.0058771463436884,-10.329948066091529,1.0,0.0,0.0 -813,10.0,0.0,0.0,1.200533619592206e-09,22.97608273573284,1.059999974237066,-9.344463900341363,0.0,1.0,0.0 -813,11.0,6.407154061397994,7.5,0.0,0.0,1.0133264672470712,-9.841705244963402,1.0,0.0,0.0 -813,12.0,0.0,0.0,6.809847319395834e-10,10.450000524831282,1.0275640236408103,-9.841705244910944,0.0,1.0,0.0 -813,13.0,3.546817426845318,1.6,0.0,0.0,1.002006596281806,-10.339326603580842,1.0,0.0,0.0 -813,14.0,4.690952080666388,2.5,0.0,0.0,0.998573395194622,-10.369949941088413,1.0,0.0,0.0 -813,15.0,2.002235644186873,1.8,0.0,0.0,1.003851317180888,-10.166971908359423,1.0,0.0,0.0 -813,16.0,5.148605942194816,5.8,0.0,0.0,1.0008407106438804,-10.381597032299844,1.0,0.0,0.0 -813,17.0,1.8306154461137123,0.9,0.0,0.0,0.9917697827430026,-10.724803359046197,1.0,0.0,0.0 -813,18.0,5.4346396056500845,3.4,0.0,0.0,0.9900958446134924,-10.831614574673027,1.0,0.0,0.0 -813,19.0,1.2585481192031776,0.7,0.0,0.0,0.993412267613001,-10.739701978794177,1.0,0.0,0.0 -813,20.0,10.011178220934363,11.2,0.0,0.0,0.9951518447379628,-10.521821432852422,1.0,0.0,0.0 -813,21.0,0.0,0.0,0.0,0.0,0.995539040888058,-10.517730563009229,1.0,0.0,0.0 -813,22.0,1.8306154461137123,1.6,0.0,0.0,0.9898764437947252,-10.561284313380348,1.0,0.0,0.0 -813,23.0,4.976985744121656,6.7,0.0,0.0,0.9851164368471832,-10.656910523048436,1.0,0.0,0.0 -813,24.0,0.0,0.0,0.0,0.0,0.9786326358432438,-10.37274355713954,1.0,0.0,0.0 -813,25.0,2.002235644186873,2.3,0.0,0.0,0.964284880379904,-10.479438201433634,1.0,0.0,0.0 -813,26.0,0.0,0.0,0.0,0.0,0.9817636336358676,-10.10463542317866,1.0,0.0,0.0 -813,27.0,0.0,0.0,0.0,0.0,0.963904054134872,-7.819898546160352,1.0,0.0,0.0 -813,28.0,1.3729615845852845,0.9,0.0,0.0,0.9675330583966352,-10.784138859092195,1.0,0.0,0.0 -813,29.0,6.063913665251672,1.9,0.0,0.0,0.9597347343807,-11.292046556367492,1.0,0.0,0.0 -814,0.0,0.0,0.0,138.00000671578596,0.0002488814516254,1.0,0.0,0.0,0.0,1.0 -814,1.0,12.413860993958613,12.7,33.04733579133589,13.632003180541552,0.97517830889479,-4.637420105964807,0.0,1.0,0.0 -814,2.0,1.3729615845852845,1.2,0.0,0.0,0.9485618710702826,-9.845065197206562,1.0,0.0,0.0 -814,3.0,4.347711684520067,1.6,0.0,0.0,0.9490814995887056,-9.818854568765262,1.0,0.0,0.0 -814,4.0,53.88874219497241,19.0,-6.737971203353388e-10,27.069049285920716,0.9523037264129708,-11.281641264847522,0.0,1.0,0.0 -814,5.0,0.0,0.0,0.0,0.0,0.9520316293876532,-10.368797839507522,1.0,0.0,0.0 -814,6.0,13.0431350535602,10.9,0.0,0.0,0.9452848827330576,-11.0407635279174,1.0,0.0,0.0 -814,7.0,17.162019807316057,30.0,-5.558406728555598e-10,32.92151600621442,0.9517801338415948,-10.847992043272376,0.0,1.0,0.0 -814,8.0,0.0,0.0,0.0,0.0,1.0016172474586944,-12.439043828636615,1.0,0.0,0.0 -814,9.0,3.317990496081104,2.0,0.0,0.0,0.9918646855428316,-13.51338530357368,1.0,0.0,0.0 -814,10.0,0.0,0.0,-1.0254755563071356e-09,23.998310970566948,1.0491933102592157,-12.439043828752908,0.0,1.0,0.0 -814,11.0,6.407154061397994,7.5,0.0,0.0,0.9990284562399132,-13.240703434122665,1.0,0.0,0.0 -814,12.0,0.0,0.0,-8.578490056749802e-10,12.581124223550422,1.0163585354381728,-13.240703434190436,0.0,1.0,0.0 -814,13.0,3.546817426845318,1.6,0.0,0.0,0.9904606721152546,-13.652212690219782,1.0,0.0,0.0 -814,14.0,4.690952080666388,2.5,0.0,0.0,0.9830887403187688,-13.749061157971294,1.0,0.0,0.0 -814,15.0,2.002235644186873,1.8,0.0,0.0,0.9897381454026748,-13.477738814741128,1.0,0.0,0.0 -814,16.0,5.148605942194816,5.8,0.0,0.0,0.9866853592678188,-13.607548341706256,1.0,0.0,0.0 -814,17.0,1.8306154461137123,0.9,0.0,0.0,0.976672600616418,-14.04660701437851,1.0,0.0,0.0 -814,18.0,5.4346396056500845,3.4,0.0,0.0,0.9752617551323848,-14.115900072295496,1.0,0.0,0.0 -814,19.0,1.2585481192031776,0.7,0.0,0.0,0.9787825812054868,-13.999749790966098,1.0,0.0,0.0 -814,20.0,10.011178220934363,11.2,0.0,0.0,0.9808852856196896,-13.715979971716196,1.0,0.0,0.0 -814,21.0,0.0,0.0,0.0,0.0,0.9812464098644956,-13.71339631642258,1.0,0.0,0.0 -814,22.0,1.8306154461137123,1.6,0.0,0.0,0.9746000038208938,-13.87456716437023,1.0,0.0,0.0 -814,23.0,4.976985744121656,6.7,0.0,0.0,0.970210829500892,-13.875926092836998,1.0,0.0,0.0 -814,24.0,0.0,0.0,0.0,0.0,0.9639786441756456,-13.512954470597268,1.0,0.0,0.0 -814,25.0,2.002235644186873,2.3,0.0,0.0,0.9494059799607928,-13.622968562360557,1.0,0.0,0.0 -814,26.0,0.0,0.0,0.0,0.0,0.9673590434334448,-13.192598622678068,1.0,0.0,0.0 -814,27.0,0.0,0.0,0.0,0.0,0.9500002384532604,-10.765048467705464,1.0,0.0,0.0 -814,28.0,1.3729615845852845,0.9,0.0,0.0,0.9529029818120276,-13.892793741635534,1.0,0.0,0.0 -814,29.0,6.063913665251672,1.9,0.0,0.0,0.9449808067481532,-14.416534294811232,1.0,0.0,0.0 -815,0.0,0.0,0.0,169.37590785352876,0.0008050065248177,1.0,0.0,0.0,0.0,1.0 -815,1.0,12.413860993958613,12.7,9.163276913356166e-07,11.260842457059823,0.979547333214982,-3.8921651021234025,0.0,1.0,0.0 -815,2.0,1.3729615845852845,1.2,0.0,0.0,0.9732740036197104,-5.103843281798927,1.0,0.0,0.0 -815,3.0,4.347711684520067,1.6,0.0,0.0,0.966482772229442,-6.274557897534357,1.0,0.0,0.0 -815,4.0,53.88874219497241,19.0,3.538811600748528e-10,24.627726617188017,0.9588379740715872,-9.369273184437125,0.0,1.0,0.0 -815,5.0,0.0,0.0,0.0,0.0,0.9660119908494716,-7.446536519464579,1.0,0.0,0.0 -815,6.0,13.0431350535602,10.9,0.0,0.0,0.9564836629095074,-8.52788140069813,1.0,0.0,0.0 -815,7.0,17.162019807316057,30.0,5.514957934848393e-10,30.78088871686431,0.965001095941696,-7.897423961546438,0.0,1.0,0.0 -815,8.0,0.0,0.0,0.0,0.0,1.0149148296598491,-9.344463900474356,1.0,0.0,0.0 -815,9.0,3.317990496081104,2.0,0.0,0.0,1.0058771463436884,-10.329948066091529,1.0,0.0,0.0 -815,10.0,0.0,0.0,1.200533619592206e-09,22.97608273573284,1.059999974237066,-9.344463900341363,0.0,1.0,0.0 -815,11.0,6.407154061397994,7.5,0.0,0.0,1.0133264672470712,-9.841705244963402,1.0,0.0,0.0 -815,12.0,0.0,0.0,6.809847319395834e-10,10.450000524831282,1.0275640236408103,-9.841705244910944,0.0,1.0,0.0 -815,13.0,3.546817426845318,1.6,0.0,0.0,1.002006596281806,-10.339326603580842,1.0,0.0,0.0 -815,14.0,4.690952080666388,2.5,0.0,0.0,0.998573395194622,-10.369949941088413,1.0,0.0,0.0 -815,15.0,2.002235644186873,1.8,0.0,0.0,1.003851317180888,-10.166971908359423,1.0,0.0,0.0 -815,16.0,5.148605942194816,5.8,0.0,0.0,1.0008407106438804,-10.381597032299844,1.0,0.0,0.0 -815,17.0,1.8306154461137123,0.9,0.0,0.0,0.9917697827430026,-10.724803359046197,1.0,0.0,0.0 -815,18.0,5.4346396056500845,3.4,0.0,0.0,0.9900958446134924,-10.831614574673027,1.0,0.0,0.0 -815,19.0,1.2585481192031776,0.7,0.0,0.0,0.993412267613001,-10.739701978794177,1.0,0.0,0.0 -815,20.0,10.011178220934363,11.2,0.0,0.0,0.9951518447379628,-10.521821432852422,1.0,0.0,0.0 -815,21.0,0.0,0.0,0.0,0.0,0.995539040888058,-10.517730563009229,1.0,0.0,0.0 -815,22.0,1.8306154461137123,1.6,0.0,0.0,0.9898764437947252,-10.561284313380348,1.0,0.0,0.0 -815,23.0,4.976985744121656,6.7,0.0,0.0,0.9851164368471832,-10.656910523048436,1.0,0.0,0.0 -815,24.0,0.0,0.0,0.0,0.0,0.9786326358432438,-10.37274355713954,1.0,0.0,0.0 -815,25.0,2.002235644186873,2.3,0.0,0.0,0.964284880379904,-10.479438201433634,1.0,0.0,0.0 -815,26.0,0.0,0.0,0.0,0.0,0.9817636336358676,-10.10463542317866,1.0,0.0,0.0 -815,27.0,0.0,0.0,0.0,0.0,0.963904054134872,-7.819898546160352,1.0,0.0,0.0 -815,28.0,1.3729615845852845,0.9,0.0,0.0,0.9675330583966352,-10.784138859092195,1.0,0.0,0.0 -815,29.0,6.063913665251672,1.9,0.0,0.0,0.9597347343807,-11.292046556367492,1.0,0.0,0.0 -816,0.0,0.0,0.0,169.3786248501071,0.0008625491402902,1.0,0.0,0.0,0.0,1.0 -816,1.0,12.413860993958613,12.7,9.632771856225208e-07,11.251270796155694,0.9795422338894072,-3.892338771182215,0.0,1.0,0.0 -816,2.0,1.3729615845852845,1.2,0.0,0.0,0.9732868080399169,-5.103554795915637,1.0,0.0,0.0 -816,3.0,4.347711684520067,1.6,0.0,0.0,0.9664985015521828,-6.274192560025031,1.0,0.0,0.0 -816,4.0,53.88874219497241,19.0,3.2416863032990943e-10,24.63254669623564,0.9588305993768224,-9.37008356053062,0.0,1.0,0.0 -816,5.0,0.0,0.0,0.0,0.0,0.9659924394319624,-7.447656276289305,1.0,0.0,0.0 -816,6.0,13.0431350535602,10.9,0.0,0.0,0.9564689111514928,-8.528878619544441,1.0,0.0,0.0 -816,7.0,17.162019807316057,30.0,4.872173744836992e-10,30.812050403784,0.9649897153207584,-7.898862569168858,0.0,1.0,0.0 -816,8.0,0.0,0.0,0.0,0.0,1.0148211637611373,-9.350422070954057,1.0,0.0,0.0 -816,9.0,3.317990496081104,2.0,0.0,0.0,1.0056972190602675,-10.338574647682565,1.0,0.0,0.0 -816,10.0,0.0,0.0,1.0553659232477382e-09,23.02381730150385,1.0599999760888767,-9.350422070837135,0.0,1.0,0.0 -816,11.0,6.407154061397994,7.5,0.0,0.0,1.0135178745337647,-9.82836037501806,1.0,0.0,0.0 -816,12.0,0.0,0.0,5.729561777763434e-10,10.392318885884372,1.0276753095763904,-9.828360374973936,0.0,1.0,0.0 -816,13.0,3.546817426845318,1.6,0.0,0.0,1.0050754009124483,-10.22808825109647,1.0,0.0,0.0 -816,14.0,4.690952080666388,2.5,0.0,0.0,0.997598160406171,-10.397459327466551,1.0,0.0,0.0 -816,15.0,2.002235644186873,1.8,0.0,0.0,1.003867322687406,-10.162235579255688,1.0,0.0,0.0 -816,16.0,5.148605942194816,5.8,0.0,0.0,1.0007262639153176,-10.386318124137713,1.0,0.0,0.0 -816,17.0,1.8306154461137123,0.9,0.0,0.0,0.991070120590349,-10.74629673404232,1.0,0.0,0.0 -816,18.0,5.4346396056500845,3.4,0.0,0.0,0.9895606886144168,-10.84932035216574,1.0,0.0,0.0 -816,19.0,1.2585481192031776,0.7,0.0,0.0,0.9929663009220124,-10.755274522873696,1.0,0.0,0.0 -816,20.0,10.011178220934363,11.2,0.0,0.0,0.9949320508977064,-10.531525387820238,1.0,0.0,0.0 -816,21.0,0.0,0.0,0.0,0.0,0.9953072929063568,-10.527739492199649,1.0,0.0,0.0 -816,22.0,1.8306154461137123,1.6,0.0,0.0,0.9891453993112638,-10.582888424104132,1.0,0.0,0.0 -816,23.0,4.976985744121656,6.7,0.0,0.0,0.9847146247623122,-10.670107344390177,1.0,0.0,0.0 -816,24.0,0.0,0.0,0.0,0.0,0.9783785872987708,-10.383378682666445,1.0,0.0,0.0 -816,25.0,2.002235644186873,2.3,0.0,0.0,0.9640269927616654,-10.490129581074893,1.0,0.0,0.0 -816,26.0,0.0,0.0,0.0,0.0,0.9816025228280894,-10.113476002089271,1.0,0.0,0.0 -816,27.0,0.0,0.0,0.0,0.0,0.9638669536570532,-7.821649223214397,1.0,0.0,0.0 -816,28.0,1.3729615845852845,0.9,0.0,0.0,0.9673694656612208,-10.793205742069553,1.0,0.0,0.0 -816,29.0,6.063913665251672,1.9,0.0,0.0,0.959569778504796,-11.301286480725546,1.0,0.0,0.0 -817,0.0,0.0,0.0,170.60023898582114,1.983112848881774,1.0,0.0,0.0,0.0,1.0 -817,1.0,12.413860993958613,12.7,0.0,0.0,0.9767413615785489,-4.326749925618611,0.0,1.0,0.0 -817,2.0,1.3729615845852845,1.2,0.0,0.0,0.9761537658329122,-3.928786926758799,1.0,0.0,0.0 -817,3.0,4.347711684520067,1.6,0.0,0.0,0.969893552245356,-4.814191853914201,1.0,0.0,0.0 -817,4.0,53.88874219497241,19.0,1.5081240685495774e-09,32.08263452168977,0.966224014310822,-11.102561970193332,0.0,1.0,0.0 -817,5.0,0.0,0.0,0.0,0.0,0.967675474191922,-10.326032727084298,1.0,0.0,0.0 -817,6.0,13.0431350535602,10.9,0.0,0.0,0.9603387840404674,-10.934839808888558,1.0,0.0,0.0 -817,7.0,17.162019807316057,30.0,1.8237204036342971e-09,30.605013058311705,0.9666668769017556,-10.765971038955367,0.0,1.0,0.0 -817,8.0,0.0,0.0,0.0,0.0,1.0183394440077318,-11.785599159800393,1.0,0.0,0.0 -817,9.0,3.317990496081104,2.0,0.0,0.0,1.0118986619366008,-12.540296223898212,1.0,0.0,0.0 -817,10.0,0.0,0.0,9.604404252266311e-10,21.17875211564206,1.0599016079574846,-11.785599159694348,0.0,1.0,0.0 -817,11.0,6.407154061397994,7.5,0.0,0.0,1.0340585565221418,-10.3125547933863,1.0,0.0,0.0 -817,12.0,0.0,0.0,8.78330275929967e-09,19.639201885822324,1.0599971937213817,-10.312554792743525,0.0,1.0,0.0 -817,13.0,3.546817426845318,1.6,0.0,0.0,1.0215694781006313,-11.020724427358342,1.0,0.0,0.0 -817,14.0,4.690952080666388,2.5,0.0,0.0,1.015259521622085,-11.247528705811533,1.0,0.0,0.0 -817,15.0,2.002235644186873,1.8,0.0,0.0,1.016989106299393,-11.342508091988783,1.0,0.0,0.0 -817,16.0,5.148605942194816,5.8,0.0,0.0,1.0094681115606323,-12.274664071092328,1.0,0.0,0.0 -817,17.0,1.8306154461137123,0.9,0.0,0.0,1.0046449261226464,-12.05704929173177,1.0,0.0,0.0 -817,18.0,5.4346396056500845,3.4,0.0,0.0,1.000739968647329,-12.440309265534175,1.0,0.0,0.0 -817,19.0,1.2585481192031776,0.7,0.0,0.0,1.0028339594994633,-12.497327362884644,1.0,0.0,0.0 -817,20.0,10.011178220934363,11.2,0.0,0.0,1.0015924063123725,-12.674256763099237,1.0,0.0,0.0 -817,21.0,0.0,0.0,0.0,0.0,1.0020945580377023,-12.65250300374968,1.0,0.0,0.0 -817,22.0,1.8306154461137123,1.6,0.0,0.0,1.0030677100687968,-11.870822722549471,1.0,0.0,0.0 -817,23.0,4.976985744121656,6.7,0.0,0.0,0.9937528600137204,-12.561804419174743,1.0,0.0,0.0 -817,24.0,0.0,0.0,0.0,0.0,0.9836886248661352,-12.595314857714197,1.0,0.0,0.0 -817,25.0,2.002235644186873,2.3,0.0,0.0,0.9694168420313704,-12.70089918335398,1.0,0.0,0.0 -817,26.0,0.0,0.0,0.0,0.0,0.9846692443708652,-12.53081785083304,1.0,0.0,0.0 -817,27.0,0.0,0.0,0.0,0.0,0.9659382797381562,-10.650058484972464,1.0,0.0,0.0 -817,28.0,1.3729615845852845,0.9,0.0,0.0,0.9704832778364167,-13.206259350728727,1.0,0.0,0.0 -817,29.0,6.063913665251672,1.9,0.0,0.0,0.9627094537749168,-13.711061582858168,1.0,0.0,0.0 -818,0.0,0.0,0.0,170.03001591775893,0.0005952551106247,1.0,0.0,0.0,0.0,1.0 -818,1.0,12.413860993958613,12.7,6.978292293574669e-07,11.731460984801217,0.9797529705535588,-3.8998809543658814,0.0,1.0,0.0 -818,2.0,1.3729615845852845,1.2,0.0,0.0,0.9724686099578236,-5.149522033351029,1.0,0.0,0.0 -818,3.0,4.347711684520067,1.6,0.0,0.0,0.9654981623380092,-6.331751836084467,1.0,0.0,0.0 -818,4.0,53.88874219497241,19.0,2.4290372049295584e-10,25.731988923636763,0.9601732074641788,-9.36951636233354,0.0,1.0,0.0 -818,5.0,0.0,0.0,0.0,0.0,0.9661919322281132,-7.4084684592332,1.0,0.0,0.0 -818,6.0,13.0431350535602,10.9,0.0,0.0,0.957146459799589,-8.504547662540874,1.0,0.0,0.0 -818,7.0,17.162019807316057,30.0,3.384986536682531e-10,37.70867302962618,0.9674229300740078,-7.920587851038039,0.0,1.0,0.0 -818,8.0,0.0,0.0,0.0,0.0,1.0239618553229373,-7.40846845917438,1.0,0.0,0.0 -818,9.0,3.317990496081104,2.0,0.0,0.0,0.9656669143904671,-12.746562089428624,1.0,0.0,0.0 -818,10.0,0.0,0.0,4.992882413606453e-10,18.364222681000857,1.0599973995540384,-7.40846845911956,0.0,1.0,0.0 -818,11.0,6.407154061397994,7.5,0.0,0.0,1.0075744233174293,-10.673172266555932,1.0,0.0,0.0 -818,12.0,0.0,0.0,5.291766112733298e-10,11.23081037164581,1.0229448843855722,-10.67317226651475,0.0,1.0,0.0 -818,13.0,3.546817426845318,1.6,0.0,0.0,0.9769405078669128,-12.159883669194643,1.0,0.0,0.0 -818,14.0,4.690952080666388,2.5,0.0,0.0,0.9485009110070094,-12.748528419514242,1.0,0.0,0.0 -818,15.0,2.002235644186873,1.8,0.0,0.0,0.9819298031696796,-11.593473550077984,1.0,0.0,0.0 -818,16.0,5.148605942194816,5.8,0.0,0.0,0.9664951326622264,-12.515802108819726,1.0,0.0,0.0 -818,17.0,1.8306154461137123,0.9,0.0,0.0,0.9447061146544832,-13.155436063100469,1.0,0.0,0.0 -818,18.0,5.4346396056500845,3.4,0.0,0.0,0.9449334267356688,-13.2820095316133,1.0,0.0,0.0 -818,19.0,1.2585481192031776,0.7,0.0,0.0,0.9494532726997356,-13.186285382705568,1.0,0.0,0.0 -818,20.0,10.011178220934363,11.2,0.0,0.0,0.9550646527469676,-12.892014451493434,1.0,0.0,0.0 -818,21.0,0.0,0.0,0.0,0.0,0.9556571541723404,-12.867612407921792,1.0,0.0,0.0 -818,22.0,1.8306154461137123,1.6,0.0,0.0,0.9451398140960668,-12.833545386035714,1.0,0.0,0.0 -818,23.0,4.976985744121656,6.7,0.0,0.0,0.9477970217436276,-12.76728078445078,1.0,0.0,0.0 -818,24.0,0.0,0.0,0.0,0.0,0.9569602902702882,-11.865142619330372,1.0,0.0,0.0 -818,25.0,2.002235644186873,2.3,0.0,0.0,0.9422773525449326,-11.976801961877962,1.0,0.0,0.0 -818,26.0,0.0,0.0,0.0,0.0,0.969856745244636,-11.2017049367049,1.0,0.0,0.0 -818,27.0,0.0,0.0,0.0,0.0,0.9626276395245345,-7.891608210466691,1.0,0.0,0.0 -818,28.0,1.3729615845852845,0.9,0.0,0.0,0.9554403084959222,-11.898244662228224,1.0,0.0,0.0 -818,29.0,6.063913665251672,1.9,0.0,0.0,0.9475398990362628,-12.419186541130111,1.0,0.0,0.0 -819,0.0,0.0,0.0,169.57027134440688,0.0007193528722915,1.0,0.0,0.0,0.0,1.0 -819,1.0,12.413860993958613,12.7,9.9578247170037e-07,9.467168490893194,0.9793024953505246,-3.8868619923204952,0.0,1.0,0.0 -819,2.0,1.3729615845852845,1.2,0.0,0.0,0.9739246220082384,-5.135036934735044,1.0,0.0,0.0 -819,3.0,4.347711684520067,1.6,0.0,0.0,0.9672898213335002,-6.312947670405744,1.0,0.0,0.0 -819,4.0,53.88874219497241,19.0,5.088164735190172e-10,24.44611524695233,0.958951626422854,-9.357961028639606,0.0,1.0,0.0 -819,5.0,0.0,0.0,0.0,0.0,0.9668583885406764,-7.44104045383882,1.0,0.0,0.0 -819,6.0,13.0431350535602,10.9,0.0,0.0,0.9570351576439512,-8.520012193541193,1.0,0.0,0.0 -819,7.0,17.162019807316057,30.0,8.124315243415314e-10,29.372575287646622,0.965341941321894,-7.8822237632187475,0.0,1.0,0.0 -819,8.0,0.0,0.0,0.0,0.0,1.0172419774451211,-9.20210110272488,1.0,0.0,0.0 -819,9.0,3.317990496081104,2.0,0.0,0.0,1.011735364036904,-10.112036626676382,1.0,0.0,0.0 -819,10.0,0.0,0.0,1.5504516017667383e-09,20.20232059347104,1.0569968972046295,-9.202101102553032,0.0,1.0,0.0 -819,11.0,6.407154061397994,7.5,0.0,0.0,1.0181075310303154,-10.137566648358112,1.0,0.0,0.0 -819,12.0,0.0,0.0,1.2184441732060426e-09,16.69448360718263,1.040568594316026,-10.137566648265858,0.0,1.0,0.0 -819,13.0,3.546817426845318,1.6,0.0,0.0,1.004034815752825,-10.708863782113896,1.0,0.0,0.0 -819,14.0,4.690952080666388,2.5,0.0,0.0,0.9973827682455249,-10.752865436751138,1.0,0.0,0.0 -819,15.0,2.002235644186873,1.8,0.0,0.0,1.0094685682544762,-10.243503061002878,1.0,0.0,0.0 -819,16.0,5.148605942194816,5.8,0.0,0.0,1.0065380596888576,-10.25391992244682,1.0,0.0,0.0 -819,17.0,1.8306154461137123,0.9,0.0,0.0,0.9764949052955948,-11.532972186149529,1.0,0.0,0.0 -819,18.0,5.4346396056500845,3.4,0.0,0.0,0.9665671607188436,-11.898883513994882,1.0,0.0,0.0 -819,19.0,1.2585481192031776,0.7,0.0,0.0,0.9656308704011708,-11.936809452289491,1.0,0.0,0.0 -819,20.0,10.011178220934363,11.2,0.0,0.0,1.0005845232628463,-10.339552196192535,1.0,0.0,0.0 -819,21.0,0.0,0.0,0.0,0.0,1.00081172754331,-10.34747324473641,1.0,0.0,0.0 -819,22.0,1.8306154461137123,1.6,0.0,0.0,0.9904661079615984,-10.771464680147432,1.0,0.0,0.0 -819,23.0,4.976985744121656,6.7,0.0,0.0,0.9880500464797104,-10.63342437975115,1.0,0.0,0.0 -819,24.0,0.0,0.0,0.0,0.0,0.980803420261404,-10.343697983476636,1.0,0.0,0.0 -819,25.0,2.002235644186873,2.3,0.0,0.0,0.9664883839468136,-10.449913767821432,1.0,0.0,0.0 -819,26.0,0.0,0.0,0.0,0.0,0.9834424105465658,-10.073315622554478,1.0,0.0,0.0 -819,27.0,0.0,0.0,0.0,0.0,0.964745723792651,-7.811510211359446,1.0,0.0,0.0 -819,28.0,1.3729615845852845,0.9,0.0,0.0,0.9692376440978412,-10.750467712283498,1.0,0.0,0.0 -819,29.0,6.063913665251672,1.9,0.0,0.0,0.9614534948408728,-11.256577632940688,1.0,0.0,0.0 -820,0.0,0.0,0.0,169.43307131098922,0.0009237122841732,1.0,0.0,0.0,0.0,1.0 -820,1.0,12.413860993958613,12.7,9.188743527564344e-07,10.574872311397511,0.97935240319634,-3.889201865923824,0.0,1.0,0.0 -820,2.0,1.3729615845852845,1.2,0.0,0.0,0.9738165384790068,-5.115434056175723,1.0,0.0,0.0 -820,3.0,4.347711684520067,1.6,0.0,0.0,0.9671532781160354,-6.288659352126742,1.0,0.0,0.0 -820,4.0,53.88874219497241,19.0,-5.27096943388744e-10,24.39965538347539,0.9583926197328888,-9.365014437081786,0.0,1.0,0.0 -820,5.0,0.0,0.0,0.0,0.0,0.9658021876460436,-7.444554822931618,1.0,0.0,0.0 -820,6.0,13.0431350535602,10.9,0.0,0.0,0.9561744070030244,-8.525249381700988,1.0,0.0,0.0 -820,7.0,17.162019807316057,30.0,-6.51432017509688e-10,28.55075428111924,0.9640465619199092,-7.870380358324816,0.0,1.0,0.0 -820,8.0,0.0,0.0,0.0,0.0,1.014572856293509,-9.516419793946111,1.0,0.0,0.0 -820,9.0,3.317990496081104,2.0,0.0,0.0,1.0053707844239783,-10.592500258445304,1.0,0.0,0.0 -820,10.0,0.0,0.0,-1.2512250021700962e-09,23.149864786326948,1.0599990469075826,-9.516419794084769,0.0,1.0,0.0 -820,11.0,6.407154061397994,7.5,0.0,0.0,1.0211451604047472,-9.83849663679928,1.0,0.0,0.0 -820,12.0,0.0,0.0,-6.47214062070758e-10,13.603573373372562,1.039467052074817,-9.838496636848191,0.0,1.0,0.0 -820,13.0,3.546817426845318,1.6,0.0,0.0,1.0088068311287537,-10.387789656029277,1.0,0.0,0.0 -820,14.0,4.690952080666388,2.5,0.0,0.0,1.0039272870334148,-10.45156417284072,1.0,0.0,0.0 -820,15.0,2.002235644186873,1.8,0.0,0.0,1.0157588297171107,-9.964300002346231,1.0,0.0,0.0 -820,16.0,5.148605942194816,5.8,0.0,0.0,0.9987906371046266,-10.733513687318624,1.0,0.0,0.0 -820,17.0,1.8306154461137123,0.9,0.0,0.0,0.9950708142675676,-10.86655994432846,1.0,0.0,0.0 -820,18.0,5.4346396056500845,3.4,0.0,0.0,0.9921773704818354,-11.010462088258077,1.0,0.0,0.0 -820,19.0,1.2585481192031776,0.7,0.0,0.0,0.9948405132852508,-10.938585640639838,1.0,0.0,0.0 -820,20.0,10.011178220934363,11.2,0.0,0.0,0.9945940685213092,-10.80981017186176,1.0,0.0,0.0 -820,21.0,0.0,0.0,0.0,0.0,0.9949644482093196,-10.813813098614151,1.0,0.0,0.0 -820,22.0,1.8306154461137123,1.6,0.0,0.0,0.992494825921568,-10.778153106881785,1.0,0.0,0.0 -820,23.0,4.976985744121656,6.7,0.0,0.0,0.9841101571830764,-11.060727158335249,1.0,0.0,0.0 -820,24.0,0.0,0.0,0.0,0.0,0.9722574229668802,-11.19654866086279,1.0,0.0,0.0 -820,25.0,2.002235644186873,2.3,0.0,0.0,0.9578126932305004,-11.304668609952436,1.0,0.0,0.0 -820,26.0,0.0,0.0,0.0,0.0,0.983382694041829,-9.498739108140343,1.0,0.0,0.0 -820,27.0,0.0,0.0,0.0,0.0,0.96406003138547,-7.750913322519694,1.0,0.0,0.0 -820,28.0,1.3729615845852845,0.9,0.0,0.0,0.9691770111873576,-10.175974627983036,1.0,0.0,0.0 -820,29.0,6.063913665251672,1.9,0.0,0.0,0.9613923586231662,-10.682148332160988,1.0,0.0,0.0 -821,0.0,0.0,0.0,169.39886011834022,0.0005862982029647,1.0,0.0,0.0,0.0,1.0 -821,1.0,12.413860993958613,12.7,7.685447146364447e-07,12.653262693433504,0.979440346657277,-3.974719012791125,0.0,1.0,0.0 -821,2.0,1.3729615845852845,1.2,0.0,0.0,0.9732756068438714,-4.870721233777975,1.0,0.0,0.0 -821,3.0,4.347711684520067,1.6,0.0,0.0,0.9664476606789892,-5.984956638328815,1.0,0.0,0.0 -821,4.0,53.88874219497241,19.0,-8.746230385701346e-10,23.42067081029775,0.959322736657754,-10.688965839125794,0.0,1.0,0.0 -821,5.0,0.0,0.0,0.0,0.0,0.9656204484276184,-7.015677605730401,1.0,0.0,0.0 -821,6.0,13.0431350535602,10.9,0.0,0.0,0.953218362646878,-7.513123394788491,1.0,0.0,0.0 -821,7.0,17.162019807316057,30.0,-6.100679806601724e-10,32.678665238164555,0.9653219914213051,-7.479154047613892,0.0,1.0,0.0 -821,8.0,0.0,0.0,0.0,0.0,1.0148218260522477,-8.936858731889021,1.0,0.0,0.0 -821,9.0,3.317990496081104,2.0,0.0,0.0,1.0059085595418964,-9.933978428487269,1.0,0.0,0.0 -821,10.0,0.0,0.0,-1.4364207685896406e-10,23.02289782474287,1.0599988808045309,-8.936858731904934,0.0,1.0,0.0 -821,11.0,6.407154061397994,7.5,0.0,0.0,1.013552221502087,-9.502766303423895,1.0,0.0,0.0 -821,12.0,0.0,0.0,-6.576287033260054e-10,10.780372023298362,1.0282303726576572,-9.502766303474512,0.0,1.0,0.0 -821,13.0,3.546817426845318,1.6,0.0,0.0,1.002189983412147,-9.993363275362542,1.0,0.0,0.0 -821,14.0,4.690952080666388,2.5,0.0,0.0,0.9987610153415738,-10.016217278581214,1.0,0.0,0.0 -821,15.0,2.002235644186873,1.8,0.0,0.0,1.004032418248764,-9.803138738115427,1.0,0.0,0.0 -821,16.0,5.148605942194816,5.8,0.0,0.0,1.0009073012213687,-9.995801947539656,1.0,0.0,0.0 -821,17.0,1.8306154461137123,0.9,0.0,0.0,0.9919068116281852,-10.356097077245314,1.0,0.0,0.0 -821,18.0,5.4346396056500845,3.4,0.0,0.0,0.9902018167156538,-10.454003319814875,1.0,0.0,0.0 -821,19.0,1.2585481192031776,0.7,0.0,0.0,0.9935017497656664,-10.357429086390509,1.0,0.0,0.0 -821,20.0,10.011178220934363,11.2,0.0,0.0,0.9951882012441142,-10.127144940905636,1.0,0.0,0.0 -821,21.0,0.0,0.0,0.0,0.0,0.9955766961279124,-10.123476325910822,1.0,0.0,0.0 -821,22.0,1.8306154461137123,1.6,0.0,0.0,0.9900047497195796,-10.192739247092277,1.0,0.0,0.0 -821,23.0,4.976985744121656,6.7,0.0,0.0,0.9851614539291588,-10.268431540420018,1.0,0.0,0.0 -821,24.0,0.0,0.0,0.0,0.0,0.978622383662015,-9.9688934663739,1.0,0.0,0.0 -821,25.0,2.002235644186873,2.3,0.0,0.0,0.964274473313408,-10.075590380032272,1.0,0.0,0.0 -821,26.0,0.0,0.0,0.0,0.0,0.9817145989129016,-9.69126348106003,1.0,0.0,0.0 -821,27.0,0.0,0.0,0.0,0.0,0.9636881998426116,-7.393687353214299,1.0,0.0,0.0 -821,28.0,1.3729615845852845,0.9,0.0,0.0,0.9674832683843556,-10.370835781508209,1.0,0.0,0.0 -821,29.0,6.063913665251672,1.9,0.0,0.0,0.9596845295438226,-10.878796135134968,1.0,0.0,0.0 -822,0.0,0.0,0.0,169.37590785352876,0.0008050065248177,1.0,0.0,0.0,0.0,1.0 -822,1.0,12.413860993958613,12.7,9.163276913356166e-07,11.260842457059823,0.979547333214982,-3.8921651021234025,0.0,1.0,0.0 -822,2.0,1.3729615845852845,1.2,0.0,0.0,0.9732740036197104,-5.103843281798927,1.0,0.0,0.0 -822,3.0,4.347711684520067,1.6,0.0,0.0,0.966482772229442,-6.274557897534357,1.0,0.0,0.0 -822,4.0,53.88874219497241,19.0,3.538811600748528e-10,24.627726617188017,0.9588379740715872,-9.369273184437125,0.0,1.0,0.0 -822,5.0,0.0,0.0,0.0,0.0,0.9660119908494716,-7.446536519464579,1.0,0.0,0.0 -822,6.0,13.0431350535602,10.9,0.0,0.0,0.9564836629095074,-8.52788140069813,1.0,0.0,0.0 -822,7.0,17.162019807316057,30.0,5.514957934848393e-10,30.78088871686431,0.965001095941696,-7.897423961546438,0.0,1.0,0.0 -822,8.0,0.0,0.0,0.0,0.0,1.0149148296598491,-9.344463900474356,1.0,0.0,0.0 -822,9.0,3.317990496081104,2.0,0.0,0.0,1.0058771463436884,-10.329948066091529,1.0,0.0,0.0 -822,10.0,0.0,0.0,1.200533619592206e-09,22.97608273573284,1.059999974237066,-9.344463900341363,0.0,1.0,0.0 -822,11.0,6.407154061397994,7.5,0.0,0.0,1.0133264672470712,-9.841705244963402,1.0,0.0,0.0 -822,12.0,0.0,0.0,6.809847319395834e-10,10.450000524831282,1.0275640236408103,-9.841705244910944,0.0,1.0,0.0 -822,13.0,3.546817426845318,1.6,0.0,0.0,1.002006596281806,-10.339326603580842,1.0,0.0,0.0 -822,14.0,4.690952080666388,2.5,0.0,0.0,0.998573395194622,-10.369949941088413,1.0,0.0,0.0 -822,15.0,2.002235644186873,1.8,0.0,0.0,1.003851317180888,-10.166971908359423,1.0,0.0,0.0 -822,16.0,5.148605942194816,5.8,0.0,0.0,1.0008407106438804,-10.381597032299844,1.0,0.0,0.0 -822,17.0,1.8306154461137123,0.9,0.0,0.0,0.9917697827430026,-10.724803359046197,1.0,0.0,0.0 -822,18.0,5.4346396056500845,3.4,0.0,0.0,0.9900958446134924,-10.831614574673027,1.0,0.0,0.0 -822,19.0,1.2585481192031776,0.7,0.0,0.0,0.993412267613001,-10.739701978794177,1.0,0.0,0.0 -822,20.0,10.011178220934363,11.2,0.0,0.0,0.9951518447379628,-10.521821432852422,1.0,0.0,0.0 -822,21.0,0.0,0.0,0.0,0.0,0.995539040888058,-10.517730563009229,1.0,0.0,0.0 -822,22.0,1.8306154461137123,1.6,0.0,0.0,0.9898764437947252,-10.561284313380348,1.0,0.0,0.0 -822,23.0,4.976985744121656,6.7,0.0,0.0,0.9851164368471832,-10.656910523048436,1.0,0.0,0.0 -822,24.0,0.0,0.0,0.0,0.0,0.9786326358432438,-10.37274355713954,1.0,0.0,0.0 -822,25.0,2.002235644186873,2.3,0.0,0.0,0.964284880379904,-10.479438201433634,1.0,0.0,0.0 -822,26.0,0.0,0.0,0.0,0.0,0.9817636336358676,-10.10463542317866,1.0,0.0,0.0 -822,27.0,0.0,0.0,0.0,0.0,0.963904054134872,-7.819898546160352,1.0,0.0,0.0 -822,28.0,1.3729615845852845,0.9,0.0,0.0,0.9675330583966352,-10.784138859092195,1.0,0.0,0.0 -822,29.0,6.063913665251672,1.9,0.0,0.0,0.9597347343807,-11.292046556367492,1.0,0.0,0.0 -823,0.0,0.0,0.0,170.60669348496808,6.0959721448483606e-05,1.0,0.0,0.0,0.0,1.0 -823,1.0,12.413860993958613,12.7,1.3386934409639674e-07,11.326510846335616,0.9779818826243428,-4.367189300294643,0.0,1.0,0.0 -823,2.0,1.3729615845852845,1.2,0.0,0.0,0.975887778236442,-3.864305263466929,1.0,0.0,0.0 -823,3.0,4.347711684520067,1.6,0.0,0.0,0.9695617593821118,-4.734176081867166,1.0,0.0,0.0 -823,4.0,53.88874219497241,19.0,1.6604348330166388e-10,26.386161174839685,0.9581924004414432,-11.090644314957524,0.0,1.0,0.0 -823,5.0,0.0,0.0,0.0,0.0,0.9621340615244004,-10.3920810765789,1.0,0.0,0.0 -823,6.0,13.0431350535602,10.9,0.0,0.0,0.9537026247361816,-10.974652182334578,1.0,0.0,0.0 -823,7.0,17.162019807316057,30.0,1.495459472255941e-10,26.420578676701908,0.9595263689411424,-10.806668936952496,0.0,1.0,0.0 -823,8.0,0.0,0.0,0.0,0.0,1.013275965296085,-11.483739516477607,1.0,0.0,0.0 -823,9.0,3.317990496081104,2.0,0.0,0.0,1.0057091026411755,-12.048443999935875,1.0,0.0,0.0 -823,10.0,0.0,0.0,2.5913763060501483e-10,22.40674305907197,1.057353944850472,-11.483739516448782,0.0,1.0,0.0 -823,11.0,6.407154061397994,7.5,0.0,0.0,1.029696717022944,-10.073365003960877,1.0,0.0,0.0 -823,12.0,0.0,0.0,1.0822479147119255e-10,19.26475939305701,1.0552551454897974,-10.073365003952883,0.0,1.0,0.0 -823,13.0,3.546817426845318,1.6,0.0,0.0,1.0168556730523022,-10.7645849604933,1.0,0.0,0.0 -823,14.0,4.690952080666388,2.5,0.0,0.0,1.0103903435847703,-10.96382320316896,1.0,0.0,0.0 -823,15.0,2.002235644186873,1.8,0.0,0.0,1.0120186491830738,-10.99239303464312,1.0,0.0,0.0 -823,16.0,5.148605942194816,5.8,0.0,0.0,1.0035874385245085,-11.829639967860391,1.0,0.0,0.0 -823,17.0,1.8306154461137123,0.9,0.0,0.0,0.9992943593489546,-11.703924897421311,1.0,0.0,0.0 -823,18.0,5.4346396056500845,3.4,0.0,0.0,0.995104070973162,-12.044679763977106,1.0,0.0,0.0 -823,19.0,1.2585481192031776,0.7,0.0,0.0,0.9970700212683166,-12.0776097417124,1.0,0.0,0.0 -823,20.0,10.011178220934363,11.2,0.0,0.0,0.9953944379911376,-12.210260023251603,1.0,0.0,0.0 -823,21.0,0.0,0.0,0.0,0.0,0.9959146083264272,-12.19667734373438,1.0,0.0,0.0 -823,22.0,1.8306154461137123,1.6,0.0,0.0,0.9975982742423516,-11.562452822368067,1.0,0.0,0.0 -823,23.0,4.976985744121656,6.7,0.0,0.0,0.9875027346965908,-12.219395365603498,1.0,0.0,0.0 -823,24.0,0.0,0.0,0.0,0.0,0.9768471945535776,-12.40955113945152,1.0,0.0,0.0 -823,25.0,2.002235644186873,2.3,0.0,0.0,0.9624724140195124,-12.51664208557718,1.0,0.0,0.0 -823,26.0,0.0,0.0,0.0,0.0,0.977578665084206,-12.442746019471253,1.0,0.0,0.0 -823,27.0,0.0,0.0,0.0,0.0,0.960002118460944,-10.692526089347792,1.0,0.0,0.0 -823,28.0,1.3729615845852845,0.9,0.0,0.0,0.96328332945164,-13.12816494296504,1.0,0.0,0.0 -823,29.0,6.063913665251672,1.9,0.0,0.0,0.955449436678392,-13.64059674970278,1.0,0.0,0.0 -824,0.0,0.0,0.0,169.37590785352876,0.0008050065248177,1.0,0.0,0.0,0.0,1.0 -824,1.0,12.413860993958613,12.7,9.163276913356166e-07,11.260842457059823,0.979547333214982,-3.8921651021234025,0.0,1.0,0.0 -824,2.0,1.3729615845852845,1.2,0.0,0.0,0.9732740036197104,-5.103843281798927,1.0,0.0,0.0 -824,3.0,4.347711684520067,1.6,0.0,0.0,0.966482772229442,-6.274557897534357,1.0,0.0,0.0 -824,4.0,53.88874219497241,19.0,3.538811600748528e-10,24.627726617188017,0.9588379740715872,-9.369273184437125,0.0,1.0,0.0 -824,5.0,0.0,0.0,0.0,0.0,0.9660119908494716,-7.446536519464579,1.0,0.0,0.0 -824,6.0,13.0431350535602,10.9,0.0,0.0,0.9564836629095074,-8.52788140069813,1.0,0.0,0.0 -824,7.0,17.162019807316057,30.0,5.514957934848393e-10,30.78088871686431,0.965001095941696,-7.897423961546438,0.0,1.0,0.0 -824,8.0,0.0,0.0,0.0,0.0,1.0149148296598491,-9.344463900474356,1.0,0.0,0.0 -824,9.0,3.317990496081104,2.0,0.0,0.0,1.0058771463436884,-10.329948066091529,1.0,0.0,0.0 -824,10.0,0.0,0.0,1.200533619592206e-09,22.97608273573284,1.059999974237066,-9.344463900341363,0.0,1.0,0.0 -824,11.0,6.407154061397994,7.5,0.0,0.0,1.0133264672470712,-9.841705244963402,1.0,0.0,0.0 -824,12.0,0.0,0.0,6.809847319395834e-10,10.450000524831282,1.0275640236408103,-9.841705244910944,0.0,1.0,0.0 -824,13.0,3.546817426845318,1.6,0.0,0.0,1.002006596281806,-10.339326603580842,1.0,0.0,0.0 -824,14.0,4.690952080666388,2.5,0.0,0.0,0.998573395194622,-10.369949941088413,1.0,0.0,0.0 -824,15.0,2.002235644186873,1.8,0.0,0.0,1.003851317180888,-10.166971908359423,1.0,0.0,0.0 -824,16.0,5.148605942194816,5.8,0.0,0.0,1.0008407106438804,-10.381597032299844,1.0,0.0,0.0 -824,17.0,1.8306154461137123,0.9,0.0,0.0,0.9917697827430026,-10.724803359046197,1.0,0.0,0.0 -824,18.0,5.4346396056500845,3.4,0.0,0.0,0.9900958446134924,-10.831614574673027,1.0,0.0,0.0 -824,19.0,1.2585481192031776,0.7,0.0,0.0,0.993412267613001,-10.739701978794177,1.0,0.0,0.0 -824,20.0,10.011178220934363,11.2,0.0,0.0,0.9951518447379628,-10.521821432852422,1.0,0.0,0.0 -824,21.0,0.0,0.0,0.0,0.0,0.995539040888058,-10.517730563009229,1.0,0.0,0.0 -824,22.0,1.8306154461137123,1.6,0.0,0.0,0.9898764437947252,-10.561284313380348,1.0,0.0,0.0 -824,23.0,4.976985744121656,6.7,0.0,0.0,0.9851164368471832,-10.656910523048436,1.0,0.0,0.0 -824,24.0,0.0,0.0,0.0,0.0,0.9786326358432438,-10.37274355713954,1.0,0.0,0.0 -824,25.0,2.002235644186873,2.3,0.0,0.0,0.964284880379904,-10.479438201433634,1.0,0.0,0.0 -824,26.0,0.0,0.0,0.0,0.0,0.9817636336358676,-10.10463542317866,1.0,0.0,0.0 -824,27.0,0.0,0.0,0.0,0.0,0.963904054134872,-7.819898546160352,1.0,0.0,0.0 -824,28.0,1.3729615845852845,0.9,0.0,0.0,0.9675330583966352,-10.784138859092195,1.0,0.0,0.0 -824,29.0,6.063913665251672,1.9,0.0,0.0,0.9597347343807,-11.292046556367492,1.0,0.0,0.0 -825,0.0,0.0,0.0,169.96959706949443,0.0006080637861671,1.0,0.0,0.0,0.0,1.0 -825,1.0,12.413860993958613,12.7,7.243357498154825e-07,10.847442946432224,0.9787248368687118,-4.094356650078066,0.0,1.0,0.0 -825,2.0,1.3729615845852845,1.2,0.0,0.0,0.97472490571475,-4.580246396128488,1.0,0.0,0.0 -825,3.0,4.347711684520067,1.6,0.0,0.0,0.9681941072936172,-5.623537925975308,1.0,0.0,0.0 -825,4.0,53.88874219497241,19.0,-1.7057468479184875e-09,37.99907354123573,0.9587917366941232,-12.577788479825232,0.0,1.0,0.0 -825,5.0,0.0,0.0,0.0,0.0,0.9688205802852238,-6.494410315971957,1.0,0.0,0.0 -825,6.0,13.0431350535602,10.9,0.0,0.0,0.9400047256232184,-13.24726042507084,1.0,0.0,0.0 -825,7.0,17.162019807316057,30.0,-7.871013063738937e-10,28.329985513472494,0.966861842510612,-6.928584033432244,0.0,1.0,0.0 -825,8.0,0.0,0.0,0.0,0.0,1.012545954002642,-8.445708304965649,1.0,0.0,0.0 -825,9.0,3.317990496081104,2.0,0.0,0.0,1.0040283248175996,-9.46371439837904,1.0,0.0,0.0 -825,10.0,0.0,0.0,-8.278235206150396e-10,19.670359211611917,1.0514579679923908,-8.445708305058313,0.0,1.0,0.0 -825,11.0,6.407154061397994,7.5,0.0,0.0,1.009996171188707,-9.04707828743789,1.0,0.0,0.0 -825,12.0,0.0,0.0,-6.419832089420881e-10,7.677519113238038,1.0205284854860528,-9.047078287487851,0.0,1.0,0.0 -825,13.0,3.546817426845318,1.6,0.0,0.0,1.00152358265043,-9.449622544060082,1.0,0.0,0.0 -825,14.0,4.690952080666388,2.5,0.0,0.0,0.9947251417193216,-9.59094950154804,1.0,0.0,0.0 -825,15.0,2.002235644186873,1.8,0.0,0.0,1.0011949758812062,-9.345485043556533,1.0,0.0,0.0 -825,16.0,5.148605942194816,5.8,0.0,0.0,0.99871397116515,-9.528768272983717,1.0,0.0,0.0 -825,17.0,1.8306154461137123,0.9,0.0,0.0,0.9886037126466864,-9.917710017646842,1.0,0.0,0.0 -825,18.0,5.4346396056500845,3.4,0.0,0.0,0.9873398151826712,-10.006972185835211,1.0,0.0,0.0 -825,19.0,1.2585481192031776,0.7,0.0,0.0,0.9908849619624256,-9.905050491463918,1.0,0.0,0.0 -825,20.0,10.011178220934363,11.2,0.0,0.0,0.9933056601544364,-9.65907126809251,1.0,0.0,0.0 -825,21.0,0.0,0.0,0.0,0.0,0.9937004802268368,-9.655866218752005,1.0,0.0,0.0 -825,22.0,1.8306154461137123,1.6,0.0,0.0,0.986904942394068,-9.75334095215053,1.0,0.0,0.0 -825,23.0,4.976985744121656,6.7,0.0,0.0,0.9833280262885236,-9.808265277360553,1.0,0.0,0.0 -825,24.0,0.0,0.0,0.0,0.0,0.978587498431432,-9.501329450928765,1.0,0.0,0.0 -825,25.0,2.002235644186873,2.3,0.0,0.0,0.964239061018052,-9.6080340863347,1.0,0.0,0.0 -825,26.0,0.0,0.0,0.0,0.0,0.9827943644268968,-9.217306234584226,1.0,0.0,0.0 -825,27.0,0.0,0.0,0.0,0.0,0.9662808986707664,-6.868592067444999,1.0,0.0,0.0 -825,28.0,1.3729615845852845,0.9,0.0,0.0,0.9685796466222544,-9.895364541093873,1.0,0.0,0.0 -825,29.0,6.063913665251672,1.9,0.0,0.0,0.96079003188406,-10.40216729662868,1.0,0.0,0.0 -826,0.0,0.0,0.0,169.59907847959536,9.202032202892953e-05,1.0,0.0,0.0,0.0,1.0 -826,1.0,12.413860993958613,12.7,1.4966494308453856e-07,9.170147944313117,0.9791906775460508,-3.8886510175468176,0.0,1.0,0.0 -826,2.0,1.3729615845852845,1.2,0.0,0.0,0.9742253128395888,-5.1314100026224505,1.0,0.0,0.0 -826,3.0,4.347711684520067,1.6,0.0,0.0,0.9676597225635818,-6.308276996699971,1.0,0.0,0.0 -826,4.0,53.88874219497241,19.0,-1.0440874128751596e-10,24.469258122858665,0.958768884454438,-9.369351700531668,0.0,1.0,0.0 -826,5.0,0.0,0.0,0.0,0.0,0.9665595475389466,-7.458337180023694,1.0,0.0,0.0 -826,6.0,13.0431350535602,10.9,0.0,0.0,0.956780649786942,-8.535003664792288,1.0,0.0,0.0 -826,7.0,17.162019807316057,30.0,-1.3570167069629309e-10,29.40767864805397,0.9650467815639302,-7.900376936904951,0.0,1.0,0.0 -826,8.0,0.0,0.0,0.0,0.0,1.0158366721823606,-9.324374030141511,1.0,0.0,0.0 -826,9.0,3.317990496081104,2.0,0.0,0.0,1.007795348640211,-10.2920074119912,1.0,0.0,0.0 -826,10.0,0.0,0.0,-2.573674326465132e-10,22.17335075802839,1.0593724191428269,-9.324374030170016,0.0,1.0,0.0 -826,11.0,6.407154061397994,7.5,0.0,0.0,1.0222136878515349,-9.920486349989206,1.0,0.0,0.0 -826,12.0,0.0,0.0,-1.72918088121864e-10,15.202426772169735,1.0426269314001697,-9.92048635000222,0.0,1.0,0.0 -826,13.0,3.546817426845318,1.6,0.0,0.0,1.0077665788961487,-10.516253070305195,1.0,0.0,0.0 -826,14.0,4.690952080666388,2.5,0.0,0.0,1.0005257771051168,-10.579024084289848,1.0,0.0,0.0 -826,15.0,2.002235644186873,1.8,0.0,0.0,0.9944885981425408,-10.6633170723624,1.0,0.0,0.0 -826,16.0,5.148605942194816,5.8,0.0,0.0,0.9990284437048916,-10.495666348237402,1.0,0.0,0.0 -826,17.0,1.8306154461137123,0.9,0.0,0.0,0.979708631348258,-11.354128730812722,1.0,0.0,0.0 -826,18.0,5.4346396056500845,3.4,0.0,0.0,0.9698142748323232,-11.71761860864078,1.0,0.0,0.0 -826,19.0,1.2585481192031776,0.7,0.0,0.0,0.9688811268525058,-11.755290761729924,1.0,0.0,0.0 -826,20.0,10.011178220934363,11.2,0.0,0.0,0.9970687362675276,-10.497051898953528,1.0,0.0,0.0 -826,21.0,0.0,0.0,0.0,0.0,0.997446761519692,-10.49744031596646,1.0,0.0,0.0 -826,22.0,1.8306154461137123,1.6,0.0,0.0,0.9917344362733408,-10.697550770295525,1.0,0.0,0.0 -826,23.0,4.976985744121656,6.7,0.0,0.0,0.9868215183762306,-10.695438443569332,1.0,0.0,0.0 -826,24.0,0.0,0.0,0.0,0.0,0.9799427936302614,-10.394277926032624,1.0,0.0,0.0 -826,25.0,2.002235644186873,2.3,0.0,0.0,0.9656148036658868,-10.500683170546544,1.0,0.0,0.0 -826,26.0,0.0,0.0,0.0,0.0,0.982813444757996,-10.116231718166654,1.0,0.0,0.0 -826,27.0,0.0,0.0,0.0,0.0,0.9643996133601228,-7.831151481590229,1.0,0.0,0.0 -826,28.0,1.3729615845852845,0.9,0.0,0.0,0.968599020165705,-10.794263317085992,1.0,0.0,0.0 -826,29.0,6.063913665251672,1.9,0.0,0.0,0.9608095664673508,-11.30104565295276,1.0,0.0,0.0 -827,0.0,0.0,0.0,169.37590785352876,0.0008050065248177,1.0,0.0,0.0,0.0,1.0 -827,1.0,12.413860993958613,12.7,9.163276913356166e-07,11.260842457059823,0.979547333214982,-3.8921651021234025,0.0,1.0,0.0 -827,2.0,1.3729615845852845,1.2,0.0,0.0,0.9732740036197104,-5.103843281798927,1.0,0.0,0.0 -827,3.0,4.347711684520067,1.6,0.0,0.0,0.966482772229442,-6.274557897534357,1.0,0.0,0.0 -827,4.0,53.88874219497241,19.0,3.538811600748528e-10,24.627726617188017,0.9588379740715872,-9.369273184437125,0.0,1.0,0.0 -827,5.0,0.0,0.0,0.0,0.0,0.9660119908494716,-7.446536519464579,1.0,0.0,0.0 -827,6.0,13.0431350535602,10.9,0.0,0.0,0.9564836629095074,-8.52788140069813,1.0,0.0,0.0 -827,7.0,17.162019807316057,30.0,5.514957934848393e-10,30.78088871686431,0.965001095941696,-7.897423961546438,0.0,1.0,0.0 -827,8.0,0.0,0.0,0.0,0.0,1.0149148296598491,-9.344463900474356,1.0,0.0,0.0 -827,9.0,3.317990496081104,2.0,0.0,0.0,1.0058771463436884,-10.329948066091529,1.0,0.0,0.0 -827,10.0,0.0,0.0,1.200533619592206e-09,22.97608273573284,1.059999974237066,-9.344463900341363,0.0,1.0,0.0 -827,11.0,6.407154061397994,7.5,0.0,0.0,1.0133264672470712,-9.841705244963402,1.0,0.0,0.0 -827,12.0,0.0,0.0,6.809847319395834e-10,10.450000524831282,1.0275640236408103,-9.841705244910944,0.0,1.0,0.0 -827,13.0,3.546817426845318,1.6,0.0,0.0,1.002006596281806,-10.339326603580842,1.0,0.0,0.0 -827,14.0,4.690952080666388,2.5,0.0,0.0,0.998573395194622,-10.369949941088413,1.0,0.0,0.0 -827,15.0,2.002235644186873,1.8,0.0,0.0,1.003851317180888,-10.166971908359423,1.0,0.0,0.0 -827,16.0,5.148605942194816,5.8,0.0,0.0,1.0008407106438804,-10.381597032299844,1.0,0.0,0.0 -827,17.0,1.8306154461137123,0.9,0.0,0.0,0.9917697827430026,-10.724803359046197,1.0,0.0,0.0 -827,18.0,5.4346396056500845,3.4,0.0,0.0,0.9900958446134924,-10.831614574673027,1.0,0.0,0.0 -827,19.0,1.2585481192031776,0.7,0.0,0.0,0.993412267613001,-10.739701978794177,1.0,0.0,0.0 -827,20.0,10.011178220934363,11.2,0.0,0.0,0.9951518447379628,-10.521821432852422,1.0,0.0,0.0 -827,21.0,0.0,0.0,0.0,0.0,0.995539040888058,-10.517730563009229,1.0,0.0,0.0 -827,22.0,1.8306154461137123,1.6,0.0,0.0,0.9898764437947252,-10.561284313380348,1.0,0.0,0.0 -827,23.0,4.976985744121656,6.7,0.0,0.0,0.9851164368471832,-10.656910523048436,1.0,0.0,0.0 -827,24.0,0.0,0.0,0.0,0.0,0.9786326358432438,-10.37274355713954,1.0,0.0,0.0 -827,25.0,2.002235644186873,2.3,0.0,0.0,0.964284880379904,-10.479438201433634,1.0,0.0,0.0 -827,26.0,0.0,0.0,0.0,0.0,0.9817636336358676,-10.10463542317866,1.0,0.0,0.0 -827,27.0,0.0,0.0,0.0,0.0,0.963904054134872,-7.819898546160352,1.0,0.0,0.0 -827,28.0,1.3729615845852845,0.9,0.0,0.0,0.9675330583966352,-10.784138859092195,1.0,0.0,0.0 -827,29.0,6.063913665251672,1.9,0.0,0.0,0.9597347343807,-11.292046556367492,1.0,0.0,0.0 -828,0.0,0.0,0.0,169.3906881231617,0.0006200215181273,1.0,0.0,0.0,0.0,1.0 -828,1.0,12.413860993958613,12.7,7.935317092279855e-07,10.966950655162536,0.9795197430245596,-3.8847701439719495,0.0,1.0,0.0 -828,2.0,1.3729615845852845,1.2,0.0,0.0,0.973374895993658,-5.125926644975714,1.0,0.0,0.0 -828,3.0,4.347711684520067,1.6,0.0,0.0,0.9666108592379248,-6.301935088807028,1.0,0.0,0.0 -828,4.0,53.88874219497241,19.0,3.821337294243617e-10,24.63248397942202,0.9588784908796248,-9.344788265710726,0.0,1.0,0.0 -828,5.0,0.0,0.0,0.0,0.0,0.9661253217662346,-7.404664881090956,1.0,0.0,0.0 -828,6.0,13.0431350535602,10.9,0.0,0.0,0.9565701052195904,-8.493064165321586,1.0,0.0,0.0 -828,7.0,17.162019807316057,30.0,5.707425325992893e-10,30.89284954057439,0.9651716800231228,-7.861936111128471,0.0,1.0,0.0 -828,8.0,0.0,0.0,0.0,0.0,1.0153827714228023,-9.91091349665862,1.0,0.0,0.0 -828,9.0,3.317990496081104,2.0,0.0,0.0,1.0072157766312186,-11.210557266149523,1.0,0.0,0.0 -828,10.0,0.0,0.0,1.2680074499420974e-09,22.623606273249315,1.0597852583217764,-9.910913496518186,0.0,1.0,0.0 -828,11.0,6.407154061397994,7.5,0.0,0.0,1.0164852664166069,-10.27248269552572,1.0,0.0,0.0 -828,12.0,0.0,0.0,5.550392051330522e-10,11.423809875177753,1.031982939119314,-10.272482695483278,0.0,1.0,0.0 -828,13.0,3.546817426845318,1.6,0.0,0.0,1.0050970099372865,-10.81133914986667,1.0,0.0,0.0 -828,14.0,4.690952080666388,2.5,0.0,0.0,1.0012698248747505,-10.88327914239978,1.0,0.0,0.0 -828,15.0,2.002235644186873,1.8,0.0,0.0,1.0059223055081186,-10.78586188803687,1.0,0.0,0.0 -828,16.0,5.148605942194816,5.8,0.0,0.0,1.0025091001905906,-11.18117453808195,1.0,0.0,0.0 -828,17.0,1.8306154461137123,0.9,0.0,0.0,0.9939743008643908,-11.365362519279715,1.0,0.0,0.0 -828,18.0,5.4346396056500845,3.4,0.0,0.0,0.9920131389048056,-11.548760925211909,1.0,0.0,0.0 -828,19.0,1.2585481192031776,0.7,0.0,0.0,0.995167785664858,-11.497730526183702,1.0,0.0,0.0 -828,20.0,10.011178220934363,11.2,0.0,0.0,0.9965473951897806,-11.358185575197911,1.0,0.0,0.0 -828,21.0,0.0,0.0,0.0,0.0,0.9969520649147432,-11.340061101849107,1.0,0.0,0.0 -828,22.0,1.8306154461137123,1.6,0.0,0.0,0.992285439969473,-11.125741450996776,1.0,0.0,0.0 -828,23.0,4.976985744121656,6.7,0.0,0.0,0.9871389183944512,-11.291528084155626,1.0,0.0,0.0 -828,24.0,0.0,0.0,0.0,0.0,0.9807926175571668,-10.752701608084012,1.0,0.0,0.0 -828,25.0,2.002235644186873,2.3,0.0,0.0,0.9664774187895392,-10.858919767030144,1.0,0.0,0.0 -828,26.0,0.0,0.0,0.0,0.0,0.983925935246311,-10.326257233897502,1.0,0.0,0.0 -828,27.0,0.0,0.0,0.0,0.0,0.9641031717871588,-7.811871535669886,1.0,0.0,0.0 -828,28.0,1.3729615845852845,0.9,0.0,0.0,0.9697285844210674,-11.002734359995898,1.0,0.0,0.0 -828,29.0,6.063913665251672,1.9,0.0,0.0,0.9619485079495748,-11.508328275198377,1.0,0.0,0.0 -829,0.0,0.0,0.0,170.01579989220795,0.0001381338695871,1.0,0.0,0.0,0.0,1.0 -829,1.0,12.413860993958613,12.7,2.1248113464253155e-07,10.579890805937318,0.9786501045721938,-4.097422172972631,0.0,1.0,0.0 -829,2.0,1.3729615845852845,1.2,0.0,0.0,0.9749122807249704,-4.575358353317242,1.0,0.0,0.0 -829,3.0,4.347711684520067,1.6,0.0,0.0,0.9684244029782064,-5.61739626938625,1.0,0.0,0.0 -829,4.0,53.88874219497241,19.0,4.03567642747749e-10,38.03525704557599,0.9587881792504148,-12.582591940009968,0.0,1.0,0.0 -829,5.0,0.0,0.0,0.0,0.0,0.96865947393971,-6.524065808891777,1.0,0.0,0.0 -829,6.0,13.0431350535602,10.9,0.0,0.0,0.9400010863882372,-13.252068757274202,1.0,0.0,0.0 -829,7.0,17.162019807316057,30.0,1.7657482746922848e-10,28.10792840043267,0.9666129219762108,-6.957443604876636,0.0,1.0,0.0 -829,8.0,0.0,0.0,0.0,0.0,1.0129408713442634,-8.603858766285448,1.0,0.0,0.0 -829,9.0,3.317990496081104,2.0,0.0,0.0,1.001874825382151,-9.691032492680328,1.0,0.0,0.0 -829,10.0,0.0,0.0,1.9235836702793768e-10,22.57539567220841,1.0573507540790543,-8.603858766264047,0.0,1.0,0.0 -829,11.0,6.407154061397994,7.5,0.0,0.0,1.0117123380622717,-8.789921225660116,1.0,0.0,0.0 -829,12.0,0.0,0.0,1.278618853102202e-10,5.635747129651026,1.0194518365833147,-8.789921225650174,0.0,1.0,0.0 -829,13.0,3.546817426845318,1.6,0.0,0.0,1.0002838182491305,-9.336736112357,1.0,0.0,0.0 -829,14.0,4.690952080666388,2.5,0.0,0.0,0.996433609917548,-9.412496601395423,1.0,0.0,0.0 -829,15.0,2.002235644186873,1.8,0.0,0.0,0.9884874881125656,-10.0668094526226,1.0,0.0,0.0 -829,16.0,5.148605942194816,5.8,0.0,0.0,0.9930549472500406,-9.897126327350367,1.0,0.0,0.0 -829,17.0,1.8306154461137123,0.9,0.0,0.0,0.9889166682769706,-9.881065942486284,1.0,0.0,0.0 -829,18.0,5.4346396056500845,3.4,0.0,0.0,0.9868350916493625,-10.055391714522823,1.0,0.0,0.0 -829,19.0,1.2585481192031776,0.7,0.0,0.0,0.9899484542865042,-9.99802423101845,1.0,0.0,0.0 -829,20.0,10.011178220934363,11.2,0.0,0.0,0.9913704442136172,-9.860069970373257,1.0,0.0,0.0 -829,21.0,0.0,0.0,0.0,0.0,0.9918450362102932,-9.84822766869232,1.0,0.0,0.0 -829,22.0,1.8306154461137123,1.6,0.0,0.0,0.9876097104790976,-9.685946452393637,1.0,0.0,0.0 -829,23.0,4.976985744121656,6.7,0.0,0.0,0.9827181389169808,-9.891931643954862,1.0,0.0,0.0 -829,24.0,0.0,0.0,0.0,0.0,0.9781854246634472,-9.56746786250462,1.0,0.0,0.0 -829,25.0,2.002235644186873,2.3,0.0,0.0,0.9638309097346004,-9.674261562629267,1.0,0.0,0.0 -829,26.0,0.0,0.0,0.0,0.0,0.982519380069202,-9.272276695254764,1.0,0.0,0.0 -829,27.0,0.0,0.0,0.0,0.0,0.9660763083699015,-6.900681657089953,1.0,0.0,0.0 -829,28.0,1.3729615845852845,0.9,0.0,0.0,0.9683004352865324,-9.950720088124278,1.0,0.0,0.0 -829,29.0,6.063913665251672,1.9,0.0,0.0,0.9605084989998252,-10.457817268842057,1.0,0.0,0.0 -830,0.0,0.0,0.0,136.5337745470967,0.0006203494472778,1.0,0.0,0.0,0.0,1.0 -830,1.0,12.413860993958613,12.7,39.58273549870488,36.10140906638526,0.98058734857008,-18.703530528171623,0.0,1.0,0.0 -830,2.0,1.3729615845852845,1.2,0.0,0.0,0.9615230185342504,-13.510316658913316,1.0,0.0,0.0 -830,3.0,4.347711684520067,1.6,0.0,0.0,0.9565499848403504,-16.731844121924162,1.0,0.0,0.0 -830,4.0,53.88874219497241,19.0,1.050185538896923e-09,30.672957298585857,0.9621903654108652,-22.72985630189568,0.0,1.0,0.0 -830,5.0,0.0,0.0,0.0,0.0,0.9613957129506376,-19.026693310754847,1.0,0.0,0.0 -830,6.0,13.0431350535602,10.9,0.0,0.0,0.9552102530145192,-20.833352419063573,1.0,0.0,0.0 -830,7.0,17.162019807316057,30.0,7.134451730718089e-10,39.99904867682344,0.9637306509687316,-19.537869589336918,0.0,1.0,0.0 -830,8.0,0.0,0.0,0.0,0.0,1.0051165417042558,-20.822834299585598,1.0,0.0,0.0 -830,9.0,3.317990496081104,2.0,0.0,0.0,0.9921084772548262,-21.76390517292719,1.0,0.0,0.0 -830,10.0,0.0,0.0,7.667689951917472e-10,23.999739548967455,1.052543974178799,-20.822834299499213,0.0,1.0,0.0 -830,11.0,6.407154061397994,7.5,0.0,0.0,0.9893637789296704,-20.68978935614968,1.0,0.0,0.0 -830,12.0,0.0,0.0,0.0,0.0,0.9893637789296704,-20.68978935614968,0.0,1.0,0.0 -830,13.0,3.546817426845318,1.6,0.0,0.0,0.9793202218137144,-21.26743462507281,1.0,0.0,0.0 -830,14.0,4.690952080666388,2.5,0.0,0.0,0.9769300578233524,-21.39072925765861,1.0,0.0,0.0 -830,15.0,2.002235644186873,1.8,0.0,0.0,0.9837824148924864,-21.29489752906757,1.0,0.0,0.0 -830,16.0,5.148605942194816,5.8,0.0,0.0,0.9851420225597806,-21.716346415887127,1.0,0.0,0.0 -830,17.0,1.8306154461137123,0.9,0.0,0.0,0.9726834101123032,-21.907174077153744,1.0,0.0,0.0 -830,18.0,5.4346396056500845,3.4,0.0,0.0,0.9725815509229726,-22.10550775919945,1.0,0.0,0.0 -830,19.0,1.2585481192031776,0.7,0.0,0.0,0.976800589670312,-22.05650355931129,1.0,0.0,0.0 -830,20.0,10.011178220934363,11.2,0.0,0.0,0.98101685370563,-21.947438877357143,1.0,0.0,0.0 -830,21.0,0.0,0.0,0.0,0.0,0.9813436861827152,-21.93869972072517,1.0,0.0,0.0 -830,22.0,1.8306154461137123,1.6,0.0,0.0,0.9709577205219726,-21.729856259511,1.0,0.0,0.0 -830,23.0,4.976985744121656,6.7,0.0,0.0,0.9700054563434152,-22.01538624046886,1.0,0.0,0.0 -830,24.0,0.0,0.0,0.0,0.0,0.9670358646914674,-21.87636986006528,1.0,0.0,0.0 -830,25.0,2.002235644186873,2.3,0.0,0.0,0.952510711754327,-21.98567868617914,1.0,0.0,0.0 -830,26.0,0.0,0.0,0.0,0.0,0.9724851020417112,-21.69224748198668,1.0,0.0,0.0 -830,27.0,0.0,0.0,0.0,0.0,0.9594945136769124,-19.402158398127757,1.0,0.0,0.0 -830,28.0,1.3729615845852845,0.9,0.0,0.0,0.9581101218274864,-22.384971593500573,1.0,0.0,0.0 -830,29.0,6.063913665251672,1.9,0.0,0.0,0.9502324835377614,-22.902992882112954,1.0,0.0,0.0 -831,0.0,0.0,0.0,170.1408410255599,0.0004940969343891,1.0,0.0,0.0,0.0,1.0 -831,1.0,12.15686077905009,12.7,1.4498542785821618e-06,1.8405387576290195,0.9802828105146332,-3.5353235830702343,0.0,1.0,0.0 -831,2.0,1.3445375976829592,1.2,0.0,0.0,0.9725186004093528,-6.202243347545967,1.0,0.0,0.0 -831,3.0,4.257702392662704,1.6,0.0,0.0,0.965787898938636,-7.640178712363577,1.0,0.0,0.0 -831,4.0,52.77310070905615,19.0,-2.4828908114746827e-09,35.32889598107653,0.9400006162714906,-17.44698187844917,0.0,1.0,0.0 -831,5.0,0.0,0.0,0.0,0.0,0.9647373618965172,-9.47392707751025,1.0,0.0,0.0 -831,6.0,12.773107177988114,10.9,0.0,0.0,0.9474226709061624,-12.994171925813667,1.0,0.0,0.0 -831,7.0,16.80671997103699,30.0,6.449732437483407e-10,39.722988299871176,0.9671444795778082,-9.971015834559552,0.0,1.0,0.0 -831,8.0,0.0,0.0,0.0,0.0,1.0143236553137132,-11.301310560135612,1.0,0.0,0.0 -831,9.0,3.2492991944004848,2.0,0.0,0.0,1.005318061132045,-12.24944952280148,1.0,0.0,0.0 -831,10.0,0.0,0.0,1.2690885141146811e-09,23.27683363028248,1.0599989948075743,-11.301310559994944,0.0,1.0,0.0 -831,11.0,6.274508789187143,7.5,0.0,0.0,1.0223170529096246,-11.24337296054163,1.0,0.0,0.0 -831,12.0,0.0,0.0,-4.098063280938825e-10,14.91066052606907,1.0423439591465908,-11.24337296057248,0.0,1.0,0.0 -831,13.0,3.473388794014312,1.6,0.0,0.0,1.0118400707040007,-11.68084065802662,1.0,0.0,0.0 -831,14.0,4.593836792083444,2.5,0.0,0.0,1.009344258305065,-11.68523703302028,1.0,0.0,0.0 -831,15.0,1.960783996620982,1.8,0.0,0.0,1.0084131576388782,-11.762928789672326,1.0,0.0,0.0 -831,16.0,5.042015991311097,5.8,0.0,0.0,1.002021448406039,-12.202256834580188,1.0,0.0,0.0 -831,17.0,1.7927167969106126,0.9,0.0,0.0,0.978765878140599,-13.2909879781967,1.0,0.0,0.0 -831,18.0,5.322127990828381,3.4,0.0,0.0,0.9811259158729176,-13.187105919214137,1.0,0.0,0.0 -831,19.0,1.2324927978760465,0.7,0.0,0.0,0.9865824403804344,-12.987268229204847,1.0,0.0,0.0 -831,20.0,9.803919983104912,11.2,0.0,0.0,0.9952300977361296,-12.40096104890347,1.0,0.0,0.0 -831,21.0,0.0,0.0,0.0,0.0,0.9958000192719726,-12.386953458130613,1.0,0.0,0.0 -831,22.0,1.7927167969106126,1.6,0.0,0.0,0.9973602132080706,-12.051973278388294,1.0,0.0,0.0 -831,23.0,4.873948791600727,6.7,0.0,0.0,0.9881735118710248,-12.397415371125598,1.0,0.0,0.0 -831,24.0,0.0,0.0,0.0,0.0,0.9802024947659508,-12.18521612991188,1.0,0.0,0.0 -831,25.0,1.960783996620982,2.3,0.0,0.0,0.9659895186821856,-12.282020434789818,1.0,0.0,0.0 -831,26.0,0.0,0.0,0.0,0.0,0.9823719315852768,-11.969005644697935,1.0,0.0,0.0 -831,27.0,0.0,0.0,0.0,0.0,0.9636277103278258,-9.840268447578891,1.0,0.0,0.0 -831,28.0,1.3445375976829592,0.9,0.0,0.0,0.9683260981314658,-12.629574544163944,1.0,0.0,0.0 -831,29.0,5.938374389766403,1.9,0.0,0.0,0.9606467803638828,-13.124477476861651,1.0,0.0,0.0 -832,0.0,0.0,0.0,165.71772493475012,0.0006861678441438,1.0,0.0,0.0,0.0,1.0 -832,1.0,12.15686077905009,12.7,8.497226629462046e-07,10.879572517945064,0.9798905356576432,-3.8056123204548458,0.0,1.0,0.0 -832,2.0,1.3445375976829592,1.2,0.0,0.0,0.973740741633804,-4.990708028799465,1.0,0.0,0.0 -832,3.0,4.257702392662704,1.6,0.0,0.0,0.9670356787581296,-6.134437327085971,1.0,0.0,0.0 -832,4.0,52.77310070905615,19.0,-9.395432306992834e-11,24.40459929130391,0.9595415136892672,-9.160600610836804,0.0,1.0,0.0 -832,5.0,0.0,0.0,0.0,0.0,0.966620183283742,-7.281369852850623,1.0,0.0,0.0 -832,6.0,12.773107177988114,10.9,0.0,0.0,0.9571809103653444,-8.336526974225407,1.0,0.0,0.0 -832,7.0,16.80671997103699,30.0,2.1647496400050915e-10,30.663943386102844,0.9656122482689756,-7.7219837598552274,0.0,1.0,0.0 -832,8.0,0.0,0.0,0.0,0.0,1.0152852125467144,-9.138712685910056,1.0,0.0,0.0 -832,9.0,3.2492991944004848,2.0,0.0,0.0,1.0062991012469178,-10.10333164858882,1.0,0.0,0.0 -832,10.0,0.0,0.0,1.0692629124036392e-09,22.78048018942494,1.0599870771409583,-9.138712685791646,0.0,1.0,0.0 -832,11.0,6.274508789187143,7.5,0.0,0.0,1.0135199064312712,-9.624412498122952,1.0,0.0,0.0 -832,12.0,0.0,0.0,2.4494457637065636e-10,10.173526793569131,1.0273832217064995,-9.62441249810408,0.0,1.0,0.0 -832,13.0,3.473388794014312,1.6,0.0,0.0,1.002333988361756,-10.108689913149924,1.0,0.0,0.0 -832,14.0,4.593836792083444,2.5,0.0,0.0,0.9989563172230002,-10.137705723397362,1.0,0.0,0.0 -832,15.0,1.960783996620982,1.8,0.0,0.0,1.0041894881604747,-9.94124616758986,1.0,0.0,0.0 -832,16.0,5.042015991311097,5.8,0.0,0.0,1.0012600158856435,-10.151505182712462,1.0,0.0,0.0 -832,17.0,1.7927167969106126,0.9,0.0,0.0,0.9922596536370284,-10.483738823482836,1.0,0.0,0.0 -832,18.0,5.322127990828381,3.4,0.0,0.0,0.9906231023933296,-10.588223761030807,1.0,0.0,0.0 -832,19.0,1.2324927978760465,0.7,0.0,0.0,0.9939183524895524,-10.499696569567996,1.0,0.0,0.0 -832,20.0,9.803919983104912,11.2,0.0,0.0,0.9956491000806866,-10.287221704667049,1.0,0.0,0.0 -832,21.0,0.0,0.0,0.0,0.0,0.9960350317610612,-10.283477950252363,1.0,0.0,0.0 -832,22.0,1.7927167969106126,1.6,0.0,0.0,0.9903732853577928,-10.322840626014974,1.0,0.0,0.0 -832,23.0,4.873948791600727,6.7,0.0,0.0,0.9857100064259344,-10.416176602109148,1.0,0.0,0.0 -832,24.0,0.0,0.0,0.0,0.0,0.9792891687582234,-10.137665339863998,1.0,0.0,0.0 -832,25.0,1.960783996620982,2.3,0.0,0.0,0.9650625378887174,-10.234652999164,1.0,0.0,0.0 -832,26.0,0.0,0.0,0.0,0.0,0.982407237699736,-9.878295337025952,1.0,0.0,0.0 -832,27.0,0.0,0.0,0.0,0.0,0.9645458575805096,-7.646032083445327,1.0,0.0,0.0 -832,28.0,1.3445375976829592,0.9,0.0,0.0,0.9683619398654482,-10.538816081076444,1.0,0.0,0.0 -832,29.0,5.938374389766403,1.9,0.0,0.0,0.9606829156591336,-11.033682119714756,1.0,0.0,0.0 -833,0.0,0.0,0.0,166.63872604136697,0.0019931642078141,1.0,0.0,0.0,0.0,1.0 -833,1.0,12.15686077905009,12.7,2.255712974540641e-06,9.59308803763912,0.978912101901376,-4.000546282839927,0.0,1.0,0.0 -833,2.0,1.3445375976829592,1.2,0.0,0.0,0.9755483432594424,-4.518393919205008,1.0,0.0,0.0 -833,3.0,4.257702392662704,1.6,0.0,0.0,0.9691977183526348,-5.5470811180898565,1.0,0.0,0.0 -833,4.0,52.77310070905615,19.0,-3.880338292879433e-09,37.285866899438446,0.958678757095056,-12.292805640831414,0.0,1.0,0.0 -833,5.0,0.0,0.0,0.0,0.0,0.9700399057809505,-6.32404483969865,1.0,0.0,0.0 -833,6.0,12.773107177988114,10.9,0.0,0.0,0.9400282386633588,-12.942424970747473,1.0,0.0,0.0 -833,7.0,16.80671997103699,30.0,-1.4656743421062271e-09,29.93759475279397,0.9572038342699551,-9.484060508954446,0.0,1.0,0.0 -833,8.0,0.0,0.0,0.0,0.0,1.0146736699956451,-8.866499137398431,1.0,0.0,0.0 -833,9.0,3.2492991944004848,2.0,0.0,0.0,1.0070323374766772,-10.190492934956662,1.0,0.0,0.0 -833,10.0,0.0,0.0,-1.1252272649828107e-09,19.623313709146046,1.0534203054129518,-8.866499137523887,0.0,1.0,0.0 -833,11.0,6.274508789187143,7.5,0.0,0.0,1.0143289725757585,-9.371664784690704,1.0,0.0,0.0 -833,12.0,0.0,0.0,-8.978510736363363e-10,9.239608042937984,1.026925265312001,-9.371664784759844,0.0,1.0,0.0 -833,13.0,3.473388794014312,1.6,0.0,0.0,1.0029617361557528,-9.898087607765406,1.0,0.0,0.0 -833,14.0,4.593836792083444,2.5,0.0,0.0,0.9991096594730854,-9.965178745533406,1.0,0.0,0.0 -833,15.0,1.960783996620982,1.8,0.0,0.0,1.0047349636957303,-9.83385223919047,1.0,0.0,0.0 -833,16.0,5.042015991311097,5.8,0.0,0.0,1.0020081716349554,-10.177707988627436,1.0,0.0,0.0 -833,17.0,1.7927167969106126,0.9,0.0,0.0,0.992598213547316,-10.402411282095867,1.0,0.0,0.0 -833,18.0,5.322127990828381,3.4,0.0,0.0,0.9910764877937798,-10.5613716787607,1.0,0.0,0.0 -833,19.0,1.2324927978760465,0.7,0.0,0.0,0.9944287336676942,-10.501669744572348,1.0,0.0,0.0 -833,20.0,9.803919983104912,11.2,0.0,0.0,0.9920211147202844,-10.41473194742785,1.0,0.0,0.0 -833,21.0,0.0,0.0,0.0,0.0,0.9910284909406678,-10.422091567566069,1.0,0.0,0.0 -833,22.0,1.7927167969106126,1.6,0.0,0.0,0.9892583468154992,-10.228515342323565,1.0,0.0,0.0 -833,23.0,4.873948791600727,6.7,0.0,0.0,0.9829324180179652,-10.428446106815429,1.0,0.0,0.0 -833,24.0,0.0,0.0,0.0,0.0,0.9781765537103164,-10.037005141416692,1.0,0.0,0.0 -833,25.0,1.960783996620982,2.3,0.0,0.0,0.9639332525444564,-10.134216872499076,1.0,0.0,0.0 -833,26.0,0.0,0.0,0.0,0.0,0.9823048199733188,-9.705577287691632,1.0,0.0,0.0 -833,27.0,0.0,0.0,0.0,0.0,0.9650902134098456,-7.323871334566584,1.0,0.0,0.0 -833,28.0,1.3445375976829592,0.9,0.0,0.0,0.968257968249762,-10.366237737811897,1.0,0.0,0.0 -833,29.0,5.938374389766403,1.9,0.0,0.0,0.960578092388194,-10.86121081228686,1.0,0.0,0.0 -834,0.0,0.0,0.0,165.71772493475012,0.0006861678441438,1.0,0.0,0.0,0.0,1.0 -834,1.0,12.15686077905009,12.7,8.497226629462046e-07,10.879572517945064,0.9798905356576432,-3.8056123204548458,0.0,1.0,0.0 -834,2.0,1.3445375976829592,1.2,0.0,0.0,0.973740741633804,-4.990708028799465,1.0,0.0,0.0 -834,3.0,4.257702392662704,1.6,0.0,0.0,0.9670356787581296,-6.134437327085971,1.0,0.0,0.0 -834,4.0,52.77310070905615,19.0,-9.395432306992834e-11,24.40459929130391,0.9595415136892672,-9.160600610836804,0.0,1.0,0.0 -834,5.0,0.0,0.0,0.0,0.0,0.966620183283742,-7.281369852850623,1.0,0.0,0.0 -834,6.0,12.773107177988114,10.9,0.0,0.0,0.9571809103653444,-8.336526974225407,1.0,0.0,0.0 -834,7.0,16.80671997103699,30.0,2.1647496400050915e-10,30.663943386102844,0.9656122482689756,-7.7219837598552274,0.0,1.0,0.0 -834,8.0,0.0,0.0,0.0,0.0,1.0152852125467144,-9.138712685910056,1.0,0.0,0.0 -834,9.0,3.2492991944004848,2.0,0.0,0.0,1.0062991012469178,-10.10333164858882,1.0,0.0,0.0 -834,10.0,0.0,0.0,1.0692629124036392e-09,22.78048018942494,1.0599870771409583,-9.138712685791646,0.0,1.0,0.0 -834,11.0,6.274508789187143,7.5,0.0,0.0,1.0135199064312712,-9.624412498122952,1.0,0.0,0.0 -834,12.0,0.0,0.0,2.4494457637065636e-10,10.173526793569131,1.0273832217064995,-9.62441249810408,0.0,1.0,0.0 -834,13.0,3.473388794014312,1.6,0.0,0.0,1.002333988361756,-10.108689913149924,1.0,0.0,0.0 -834,14.0,4.593836792083444,2.5,0.0,0.0,0.9989563172230002,-10.137705723397362,1.0,0.0,0.0 -834,15.0,1.960783996620982,1.8,0.0,0.0,1.0041894881604747,-9.94124616758986,1.0,0.0,0.0 -834,16.0,5.042015991311097,5.8,0.0,0.0,1.0012600158856435,-10.151505182712462,1.0,0.0,0.0 -834,17.0,1.7927167969106126,0.9,0.0,0.0,0.9922596536370284,-10.483738823482836,1.0,0.0,0.0 -834,18.0,5.322127990828381,3.4,0.0,0.0,0.9906231023933296,-10.588223761030807,1.0,0.0,0.0 -834,19.0,1.2324927978760465,0.7,0.0,0.0,0.9939183524895524,-10.499696569567996,1.0,0.0,0.0 -834,20.0,9.803919983104912,11.2,0.0,0.0,0.9956491000806866,-10.287221704667049,1.0,0.0,0.0 -834,21.0,0.0,0.0,0.0,0.0,0.9960350317610612,-10.283477950252363,1.0,0.0,0.0 -834,22.0,1.7927167969106126,1.6,0.0,0.0,0.9903732853577928,-10.322840626014974,1.0,0.0,0.0 -834,23.0,4.873948791600727,6.7,0.0,0.0,0.9857100064259344,-10.416176602109148,1.0,0.0,0.0 -834,24.0,0.0,0.0,0.0,0.0,0.9792891687582234,-10.137665339863998,1.0,0.0,0.0 -834,25.0,1.960783996620982,2.3,0.0,0.0,0.9650625378887174,-10.234652999164,1.0,0.0,0.0 -834,26.0,0.0,0.0,0.0,0.0,0.982407237699736,-9.878295337025952,1.0,0.0,0.0 -834,27.0,0.0,0.0,0.0,0.0,0.9645458575805096,-7.646032083445327,1.0,0.0,0.0 -834,28.0,1.3445375976829592,0.9,0.0,0.0,0.9683619398654482,-10.538816081076444,1.0,0.0,0.0 -834,29.0,5.938374389766403,1.9,0.0,0.0,0.9606829156591336,-11.033682119714756,1.0,0.0,0.0 -835,0.0,0.0,0.0,166.01796156105243,0.0030476367422593,1.0,0.0,0.0,0.0,1.0 -835,1.0,12.15686077905009,12.7,3.0077265917226826e-06,11.281057346565447,0.979907230307856,-3.812492252751772,0.0,1.0,0.0 -835,2.0,1.3445375976829592,1.2,0.0,0.0,0.9735725199958404,-5.001141462767163,1.0,0.0,0.0 -835,3.0,4.257702392662704,1.6,0.0,0.0,0.9668300551469876,-6.14748336258581,1.0,0.0,0.0 -835,4.0,52.77310070905615,19.0,8.054326378491602e-10,24.84614365673488,0.9597328452580678,-9.174456127935054,0.0,1.0,0.0 -835,5.0,0.0,0.0,0.0,0.0,0.9660784120522148,-7.2841237334775215,1.0,0.0,0.0 -835,6.0,12.773107177988114,10.9,0.0,0.0,0.956937774301896,-8.343619067990067,1.0,0.0,0.0 -835,7.0,16.80671997103699,30.0,1.380647076257591e-09,30.486481511033432,0.9550767319516724,-10.437920587645854,0.0,1.0,0.0 -835,8.0,0.0,0.0,0.0,0.0,1.0153069762594584,-9.177852515606707,1.0,0.0,0.0 -835,9.0,3.2492991944004848,2.0,0.0,0.0,1.0066461434608491,-10.160473497153191,1.0,0.0,0.0 -835,10.0,0.0,0.0,1.7702602553574794e-09,22.776245070759,1.0599999860433664,-9.177852515410676,0.0,1.0,0.0 -835,11.0,6.274508789187143,7.5,0.0,0.0,1.0150598318657542,-9.688270299569036,1.0,0.0,0.0 -835,12.0,0.0,0.0,9.110369298915395e-10,11.401722128521222,1.0305490614206525,-9.688270299499177,0.0,1.0,0.0 -835,13.0,3.473388794014312,1.6,0.0,0.0,1.003695696770729,-10.178895754154158,1.0,0.0,0.0 -835,14.0,4.593836792083444,2.5,0.0,0.0,1.0000815088989583,-10.211098356638797,1.0,0.0,0.0 -835,15.0,1.960783996620982,1.8,0.0,0.0,1.0052237019566863,-9.999424514237292,1.0,0.0,0.0 -835,16.0,5.042015991311097,5.8,0.0,0.0,1.0018235307364434,-10.209675891459543,1.0,0.0,0.0 -835,17.0,1.7927167969106126,0.9,0.0,0.0,0.9931195057818298,-10.55069465549142,1.0,0.0,0.0 -835,18.0,5.322127990828381,3.4,0.0,0.0,0.9913235055081038,-10.651555458635404,1.0,0.0,0.0 -835,19.0,1.2324927978760465,0.7,0.0,0.0,0.9945318440214436,-10.561301837413,1.0,0.0,0.0 -835,20.0,9.803919983104912,11.2,0.0,0.0,0.995934269471366,-10.359664437685709,1.0,0.0,0.0 -835,21.0,0.0,0.0,0.0,0.0,0.9962978207816438,-10.360855629049054,1.0,0.0,0.0 -835,22.0,1.7927167969106126,1.6,0.0,0.0,0.9909495136110912,-10.425062132343156,1.0,0.0,0.0 -835,23.0,4.873948791600727,6.7,0.0,0.0,0.9855573848253084,-10.558003482161253,1.0,0.0,0.0 -835,24.0,0.0,0.0,0.0,0.0,0.9775291271495656,-10.445385564526456,1.0,0.0,0.0 -835,25.0,1.960783996620982,2.3,0.0,0.0,0.9632761073400568,-10.542728042024017,1.0,0.0,0.0 -835,26.0,0.0,0.0,0.0,0.0,0.979717052651314,-10.290930868606878,1.0,0.0,0.0 -835,27.0,0.0,0.0,0.0,0.0,0.9618670487990564,-8.244216954801217,1.0,0.0,0.0 -835,28.0,1.3445375976829592,0.9,0.0,0.0,0.9656308213546132,-10.955136083677951,1.0,0.0,0.0 -835,29.0,5.938374389766403,1.9,0.0,0.0,0.9579293620732416,-11.452825328922048,1.0,0.0,0.0 -836,0.0,0.0,0.0,103.68599086399853,3.0019650765211736e-06,1.0,0.0,0.0,0.0,1.0 -836,1.0,12.15686077905009,12.7,62.35588138842114,-0.4325592406094429,0.9803580633790262,-3.4568554460177383,0.0,1.0,0.0 -836,2.0,1.3445375976829592,1.2,0.0,0.0,0.9564907859924467,-8.523329677691395,1.0,0.0,0.0 -836,3.0,4.257702392662704,1.6,0.0,0.0,0.9569996643392392,-8.498173276795674,1.0,0.0,0.0 -836,4.0,52.77310070905615,19.0,-3.639732243325605e-08,39.99999531084697,0.9724442061416692,-10.061597935140172,0.0,1.0,0.0 -836,5.0,0.0,0.0,0.0,0.0,0.9594800935488887,-8.980587660250487,1.0,0.0,0.0 -836,6.0,12.773107177988114,10.9,0.0,0.0,0.9581197123076066,-9.697841083074742,1.0,0.0,0.0 -836,7.0,16.80671997103699,30.0,-4.876881613578928e-08,39.99999784659438,0.961892985207961,-9.488450064943942,0.0,1.0,0.0 -836,8.0,0.0,0.0,0.0,0.0,0.9847185218262426,-10.896604707881098,1.0,0.0,0.0 -836,9.0,3.2492991944004848,2.0,0.0,0.0,0.9870939823165276,-11.903556636755692,1.0,0.0,0.0 -836,10.0,0.0,0.0,0.0,0.0,0.9847185218262426,-10.896604707881098,0.0,1.0,0.0 -836,11.0,6.274508789187143,7.5,0.0,0.0,1.0139408512462798,-11.979037513145151,1.0,0.0,0.0 -836,12.0,0.0,0.0,-5.3817707822909914e-08,23.9999981399568,1.0460613361868842,-11.97903751721526,0.0,1.0,0.0 -836,13.0,3.473388794014312,1.6,0.0,0.0,1.0002991537457535,-12.422887348208942,1.0,0.0,0.0 -836,14.0,4.593836792083444,2.5,0.0,0.0,0.9948359009571792,-12.355605448715773,1.0,0.0,0.0 -836,15.0,1.960783996620982,1.8,0.0,0.0,0.9964352485452184,-12.020298951667524,1.0,0.0,0.0 -836,16.0,5.042015991311097,5.8,0.0,0.0,0.9854504645467872,-12.056324555629212,1.0,0.0,0.0 -836,17.0,1.7927167969106126,0.9,0.0,0.0,0.982749166635054,-12.560912225308927,1.0,0.0,0.0 -836,18.0,5.322127990828381,3.4,0.0,0.0,0.9779390570177828,-12.57959915084125,1.0,0.0,0.0 -836,19.0,1.2324927978760465,0.7,0.0,0.0,0.9796186064934304,-12.441534289570804,1.0,0.0,0.0 -836,20.0,9.803919983104912,11.2,0.0,0.0,0.9773907871651568,-12.112187413014857,1.0,0.0,0.0 -836,21.0,0.0,0.0,0.0,0.0,0.978146931955076,-12.114445754346605,1.0,0.0,0.0 -836,22.0,1.7927167969106126,1.6,0.0,0.0,0.9822603268133744,-12.42675396862874,1.0,0.0,0.0 -836,23.0,4.873948791600727,6.7,0.0,0.0,0.9723094642103824,-12.36504148201,1.0,0.0,0.0 -836,24.0,0.0,0.0,0.0,0.0,0.9682599610552104,-12.045612442453036,1.0,0.0,0.0 -836,25.0,1.960783996620982,2.3,0.0,0.0,0.953866308741972,-12.144856247745944,1.0,0.0,0.0 -836,26.0,0.0,0.0,0.0,0.0,0.9729240197056028,-11.756348572363384,1.0,0.0,0.0 -836,27.0,0.0,0.0,0.0,0.0,0.9577927118520292,-9.371815152185745,1.0,0.0,0.0 -836,28.0,1.3445375976829592,0.9,0.0,0.0,0.965988210188668,-11.97616405447336,1.0,0.0,0.0 -836,29.0,5.938374389766403,1.9,0.0,0.0,0.9400000019769902,-13.617783544572928,1.0,0.0,0.0 -837,0.0,0.0,0.0,166.5659411461679,0.0018167685692738,1.0,0.0,0.0,0.0,1.0 -837,1.0,12.15686077905009,12.7,2.5227181640404194e-06,7.78339142550648,0.9785438523264324,-3.9293342435335705,0.0,1.0,0.0 -837,2.0,1.3445375976829592,1.2,0.0,0.0,0.9768383203108698,-4.70841999685379,1.0,0.0,0.0 -837,3.0,4.257702392662704,1.6,0.0,0.0,0.9708112464889171,-5.782484655526389,1.0,0.0,0.0 -837,4.0,52.77310070905615,19.0,3.423936955129894e-09,23.167816398699784,0.958707775185732,-10.510650373368987,0.0,1.0,0.0 -837,5.0,0.0,0.0,0.0,0.0,0.964651748719441,-7.300360379572675,1.0,0.0,0.0 -837,6.0,12.773107177988114,10.9,0.0,0.0,0.9523142623609168,-7.784943548868896,1.0,0.0,0.0 -837,7.0,16.80671997103699,30.0,1.9661744914392603e-09,32.79250915949264,0.9643144522703332,-7.779615194904296,0.0,1.0,0.0 -837,8.0,0.0,0.0,0.0,0.0,1.0089979063513068,-10.767406355861178,1.0,0.0,0.0 -837,9.0,3.2492991944004848,2.0,0.0,0.0,0.997435687483158,-12.579760664706424,1.0,0.0,0.0 -837,10.0,0.0,0.0,4.281685067721937e-09,23.99848509065485,1.0562561848852996,-10.767406355382388,0.0,1.0,0.0 -837,11.0,6.274508789187143,7.5,0.0,0.0,0.9778007902381808,-15.25194665064535,1.0,0.0,0.0 -837,12.0,0.0,0.0,4.37016961798798e-10,18.39621637678821,1.0034665223322077,-15.25194665060962,0.0,1.0,0.0 -837,13.0,3.473388794014312,1.6,0.0,0.0,0.9684888489583294,-15.325072044950112,1.0,0.0,0.0 -837,14.0,4.593836792083444,2.5,0.0,0.0,0.9701955804597456,-14.971283003878847,1.0,0.0,0.0 -837,15.0,1.960783996620982,1.8,0.0,0.0,0.9816774436751792,-14.261773845292671,1.0,0.0,0.0 -837,16.0,5.042015991311097,5.8,0.0,0.0,0.9873028754741796,-13.182893561244832,1.0,0.0,0.0 -837,17.0,1.7927167969106126,0.9,0.0,0.0,0.9703054162705692,-14.496603514481665,1.0,0.0,0.0 -837,18.0,5.322127990828381,3.4,0.0,0.0,0.972804658802184,-14.1106181268558,1.0,0.0,0.0 -837,19.0,1.2324927978760465,0.7,0.0,0.0,0.9784044517805434,-13.760784116989775,1.0,0.0,0.0 -837,20.0,9.803919983104912,11.2,0.0,0.0,0.9859247301953872,-12.82811843638345,1.0,0.0,0.0 -837,21.0,0.0,0.0,0.0,0.0,0.9860677874705605,-12.843637800414635,1.0,0.0,0.0 -837,22.0,1.7927167969106126,1.6,0.0,0.0,0.9678830152116658,-14.2906740377257,1.0,0.0,0.0 -837,23.0,4.873948791600727,6.7,0.0,0.0,0.97189271280447,-13.2194159276106,1.0,0.0,0.0 -837,24.0,0.0,0.0,0.0,0.0,0.972648538207534,-11.980124904716302,1.0,0.0,0.0 -837,25.0,1.960783996620982,2.3,0.0,0.0,0.9583218193026856,-12.07846159287455,1.0,0.0,0.0 -837,26.0,0.0,0.0,0.0,0.0,0.9801264276907188,-11.120623833772935,1.0,0.0,0.0 -837,27.0,0.0,0.0,0.0,0.0,0.9620076403608644,-7.80462187507668,1.0,0.0,0.0 -837,28.0,1.3445375976829592,0.9,0.0,0.0,0.9660464412116444,-11.784266373262692,1.0,0.0,0.0 -837,29.0,5.938374389766403,1.9,0.0,0.0,0.9583484046656384,-12.28152442456705,1.0,0.0,0.0 -838,0.0,0.0,0.0,166.34558041145468,0.0025575442420766,1.0,0.0,0.0,0.0,1.0 -838,1.0,12.15686077905009,12.7,2.284251644743378e-06,13.788295843582574,0.979571220969034,-4.015002245445455,0.0,1.0,0.0 -838,2.0,1.3445375976829592,1.2,0.0,0.0,0.9737388180520308,-4.455393781951147,1.0,0.0,0.0 -838,3.0,4.257702392662704,1.6,0.0,0.0,0.9669606631036154,-5.469478599536847,1.0,0.0,0.0 -838,4.0,52.77310070905615,19.0,-3.9608873218186674e-09,36.99296560908539,0.958764256375028,-12.292394041618577,0.0,1.0,0.0 -838,5.0,0.0,0.0,0.0,0.0,0.9685813413333672,-6.352670790528175,1.0,0.0,0.0 -838,6.0,12.773107177988114,10.9,0.0,0.0,0.9401156899760218,-12.94189991628064,1.0,0.0,0.0 -838,7.0,16.80671997103699,30.0,-2.111691728839768e-09,31.853033944407716,0.9679327712565976,-6.800299973641802,0.0,1.0,0.0 -838,8.0,0.0,0.0,0.0,0.0,1.010807502503673,-8.296789637588168,1.0,0.0,0.0 -838,9.0,3.2492991944004848,2.0,0.0,0.0,0.999739904565442,-9.31515097809138,1.0,0.0,0.0 -838,10.0,0.0,0.0,-2.151326210950237e-09,21.38207432569844,1.0530420135901073,-8.296789637829038,0.0,1.0,0.0 -838,11.0,6.274508789187143,7.5,0.0,0.0,0.9973992024736816,-8.795579692980501,1.0,0.0,0.0 -838,12.0,0.0,0.0,0.0,0.0,0.9973992024736816,-8.795579692980501,0.0,1.0,0.0 -838,13.0,3.473388794014312,1.6,0.0,0.0,0.987334763684382,-9.284707193302216,1.0,0.0,0.0 -838,14.0,4.593836792083444,2.5,0.0,0.0,0.9852318585369196,-9.334063992131297,1.0,0.0,0.0 -838,15.0,1.960783996620982,1.8,0.0,0.0,0.992109663584957,-9.153606415426848,1.0,0.0,0.0 -838,16.0,5.042015991311097,5.8,0.0,0.0,0.9929410894265944,-9.358538458546954,1.0,0.0,0.0 -838,17.0,1.7927167969106126,0.9,0.0,0.0,0.9809558853684034,-9.694797619287934,1.0,0.0,0.0 -838,18.0,5.322127990828381,3.4,0.0,0.0,0.9807801586455608,-9.805263064583515,1.0,0.0,0.0 -838,19.0,1.2324927978760465,0.7,0.0,0.0,0.9848875550964832,-9.717176543961166,1.0,0.0,0.0 -838,20.0,9.803919983104912,11.2,0.0,0.0,0.9888506475350154,-9.49962404136328,1.0,0.0,0.0 -838,21.0,0.0,0.0,0.0,0.0,0.9891865987685644,-9.49515138331192,1.0,0.0,0.0 -838,22.0,1.7927167969106126,1.6,0.0,0.0,0.979239365646493,-9.52312937179652,1.0,0.0,0.0 -838,23.0,4.873948791600727,6.7,0.0,0.0,0.9781073037275458,-9.61616749761446,1.0,0.0,0.0 -838,24.0,0.0,0.0,0.0,0.0,0.9751264612348164,-9.335148930371584,1.0,0.0,0.0 -838,25.0,1.960783996620982,2.3,0.0,0.0,0.9608372565118874,-9.432978942651234,1.0,0.0,0.0 -838,26.0,0.0,0.0,0.0,0.0,0.9804114334872456,-9.069936072266342,1.0,0.0,0.0 -838,27.0,0.0,0.0,0.0,0.0,0.9660857069830872,-6.724026833756646,1.0,0.0,0.0 -838,28.0,1.3445375976829592,0.9,0.0,0.0,0.9735294596925352,-9.286383052409755,1.0,0.0,0.0 -838,29.0,5.938374389766403,1.9,0.0,0.0,0.947765200744942,-10.902010580227328,1.0,0.0,0.0 -839,0.0,0.0,0.0,166.1817548182122,3.2143024620393312,1.0,0.0,0.0,0.0,1.0 -839,1.0,12.15686077905009,12.7,0.0,0.0,0.9774994467841176,-3.8567178489306304,0.0,1.0,0.0 -839,2.0,1.3445375976829592,1.2,0.0,0.0,0.9747389511682756,-4.804268498634614,1.0,0.0,0.0 -839,3.0,4.257702392662704,1.6,0.0,0.0,0.9682375510440204,-5.902400356790839,1.0,0.0,0.0 -839,4.0,52.77310070905615,19.0,-2.4241812928643327e-08,28.152772953280376,0.9679118798742304,-10.526675669850263,0.0,1.0,0.0 -839,5.0,0.0,0.0,0.0,0.0,0.9666642377293632,-6.891808386555232,1.0,0.0,0.0 -839,6.0,12.773107177988114,10.9,0.0,0.0,0.954356128393015,-7.374402916511698,1.0,0.0,0.0 -839,7.0,16.80671997103699,30.0,-1.3418019858509962e-08,32.22984193178806,0.9605711156377792,-10.118763919152324,0.0,1.0,0.0 -839,8.0,0.0,0.0,0.0,0.0,1.0173102157469356,-8.80133728633945,1.0,0.0,0.0 -839,9.0,3.2492991944004848,2.0,0.0,0.0,1.0104606792816548,-9.789012313287255,1.0,0.0,0.0 -839,10.0,0.0,0.0,-2.4205657812103643e-08,21.753141570664237,1.0599957949561014,-8.801337289014581,0.0,1.0,0.0 -839,11.0,6.274508789187143,7.5,0.0,0.0,1.0265607943923325,-9.367763079330494,1.0,0.0,0.0 -839,12.0,0.0,0.0,-3.5209772537987096e-08,17.981979774898257,1.0505247902154993,-9.36776308194942,0.0,1.0,0.0 -839,13.0,3.473388794014312,1.6,0.0,0.0,0.9941767982378988,-10.239037676563017,1.0,0.0,0.0 -839,14.0,4.593836792083444,2.5,0.0,0.0,1.0051176839437577,-10.044067806964875,1.0,0.0,0.0 -839,15.0,1.960783996620982,1.8,0.0,0.0,1.0134800414760528,-9.63894525874409,1.0,0.0,0.0 -839,16.0,5.042015991311097,5.8,0.0,0.0,1.007042677746517,-9.845875030870191,1.0,0.0,0.0 -839,17.0,1.7927167969106126,0.9,0.0,0.0,0.997782510611798,-10.30839731536093,1.0,0.0,0.0 -839,18.0,5.322127990828381,3.4,0.0,0.0,0.9957517270563948,-10.365275549707762,1.0,0.0,0.0 -839,19.0,1.2324927978760465,0.7,0.0,0.0,0.9988196047081016,-10.253086081345089,1.0,0.0,0.0 -839,20.0,9.803919983104912,11.2,0.0,0.0,0.9998193036517732,-9.99668662092508,1.0,0.0,0.0 -839,21.0,0.0,0.0,0.0,0.0,1.0001895901834927,-10.001098325025312,1.0,0.0,0.0 -839,22.0,1.7927167969106126,1.6,0.0,0.0,0.9955449960133618,-10.193484659504607,1.0,0.0,0.0 -839,23.0,4.873948791600727,6.7,0.0,0.0,0.9895196985999296,-10.24083110507257,1.0,0.0,0.0 -839,24.0,0.0,0.0,0.0,0.0,0.9808304702647658,-10.094155678161636,1.0,0.0,0.0 -839,25.0,1.960783996620982,2.3,0.0,0.0,0.96662686735248,-10.190834214718471,1.0,0.0,0.0 -839,26.0,0.0,0.0,0.0,0.0,0.9825710959857696,-9.919803782550703,1.0,0.0,0.0 -839,27.0,0.0,0.0,0.0,0.0,0.9636856832856632,-7.87216572670608,1.0,0.0,0.0 -839,28.0,1.3445375976829592,0.9,0.0,0.0,0.968528283474533,-10.580101102716974,1.0,0.0,0.0 -839,29.0,5.938374389766403,1.9,0.0,0.0,0.9608506214199308,-11.0747959674634,1.0,0.0,0.0 -840,0.0,0.0,0.0,165.76559710927924,0.0015455380712126,1.0,0.0,0.0,0.0,1.0 -840,1.0,12.15686077905009,12.7,1.6141388945214544e-06,11.054768846699844,0.9798846064816512,-3.80939886933156,0.0,1.0,0.0 -840,2.0,1.3445375976829592,1.2,0.0,0.0,0.9737274616038634,-4.984629590428485,1.0,0.0,0.0 -840,3.0,4.257702392662704,1.6,0.0,0.0,0.9670183469757604,-6.126893887951102,1.0,0.0,0.0 -840,4.0,52.77310070905615,19.0,-5.5135559125037234e-11,24.486999537938573,0.9594974706392296,-9.172398998468172,0.0,1.0,0.0 -840,5.0,0.0,0.0,0.0,0.0,0.9663658331829852,-7.296710431463901,1.0,0.0,0.0 -840,6.0,12.773107177988114,10.9,0.0,0.0,0.957010467590298,-8.35043018288436,1.0,0.0,0.0 -840,7.0,16.80671997103699,30.0,-1.1908821071870168e-10,31.12286261783437,0.965527876284192,-7.740424103502355,0.0,1.0,0.0 -840,8.0,0.0,0.0,0.0,0.0,1.014078579932687,-9.244435367606856,1.0,0.0,0.0 -840,9.0,3.2492991944004848,2.0,0.0,0.0,1.0039887159022436,-10.258042970091926,1.0,0.0,0.0 -840,10.0,0.0,0.0,-3.4723204611071766e-10,23.402257972760506,1.0599999921440983,-9.24443536764536,0.0,1.0,0.0 -840,11.0,6.274508789187143,7.5,0.0,0.0,1.0138787501966535,-9.45900488208337,1.0,0.0,0.0 -840,12.0,0.0,0.0,-9.97268851151592e-11,9.066347776608596,1.0262470073475884,-9.459004882091056,0.0,1.0,0.0 -840,13.0,3.473388794014312,1.6,0.0,0.0,1.003804309901323,-9.88187397562786,1.0,0.0,0.0 -840,14.0,4.593836792083444,2.5,0.0,0.0,1.0019112597102524,-9.875918072382344,1.0,0.0,0.0 -840,15.0,1.960783996620982,1.8,0.0,0.0,1.0031683983070825,-9.907293690991962,1.0,0.0,0.0 -840,16.0,5.042015991311097,5.8,0.0,0.0,0.9994113044011184,-10.249312201567378,1.0,0.0,0.0 -840,17.0,1.7927167969106126,0.9,0.0,0.0,0.9773992050900256,-11.302419506734497,1.0,0.0,0.0 -840,18.0,5.322127990828381,3.4,0.0,0.0,0.9797625473133936,-11.19824743463996,1.0,0.0,0.0 -840,19.0,1.2324927978760465,0.7,0.0,0.0,0.9852266945267631,-10.997856291321444,1.0,0.0,0.0 -840,20.0,9.803919983104912,11.2,0.0,0.0,0.993632242279364,-10.416218056699682,1.0,0.0,0.0 -840,21.0,0.0,0.0,0.0,0.0,0.9941221003527502,-10.40406230469286,1.0,0.0,0.0 -840,22.0,1.7927167969106126,1.6,0.0,0.0,0.9919011245140252,-10.17871511883458,1.0,0.0,0.0 -840,23.0,4.873948791600727,6.7,0.0,0.0,0.9853583839652672,-10.43313761669259,1.0,0.0,0.0 -840,24.0,0.0,0.0,0.0,0.0,0.9789790267043472,-10.155234252926345,1.0,0.0,0.0 -840,25.0,1.960783996620982,2.3,0.0,0.0,0.9647477529638724,-10.25228429403456,1.0,0.0,0.0 -840,26.0,0.0,0.0,0.0,0.0,0.9821254137300098,-9.89614336498337,1.0,0.0,0.0 -840,27.0,0.0,0.0,0.0,0.0,0.9643232861443104,-7.662117707858072,1.0,0.0,0.0 -840,28.0,1.3445375976829592,0.9,0.0,0.0,0.968075839188245,-10.557048647288116,1.0,0.0,0.0 -840,29.0,5.938374389766403,1.9,0.0,0.0,0.9603944710031416,-11.05220930250928,1.0,0.0,0.0 -841,0.0,0.0,0.0,139.05768257636427,-3.762843192589571e-06,1.0,0.0,0.0,0.0,1.0 -841,1.0,12.15686077905009,12.7,28.65628284629093,6.02812486159138,0.9735256433914689,-4.602895617626985,0.0,1.0,0.0 -841,2.0,1.3445375976829592,1.2,0.0,0.0,1.000781222982796,-0.148984434542775,1.0,0.0,0.0 -841,3.0,4.257702392662704,1.6,0.0,0.0,0.9459534718913754,-7.991439786854773,1.0,0.0,0.0 -841,4.0,52.77310070905615,19.0,-8.002606959780718e-10,39.99999985147123,0.9586511491227636,-13.021093651821076,0.0,1.0,0.0 -841,5.0,0.0,0.0,0.0,0.0,0.958990484240752,-10.165346099133703,1.0,0.0,0.0 -841,6.0,12.773107177988114,10.9,0.0,0.0,0.9400000002425888,-13.670749623380733,1.0,0.0,0.0 -841,7.0,16.80671997103699,30.0,1.1720355506640268e-11,25.18500043914127,0.9557205013333854,-10.578823995428682,0.0,1.0,0.0 -841,8.0,0.0,0.0,0.0,0.0,1.005348731420055,-11.766325128271998,1.0,0.0,0.0 -841,9.0,3.2492991944004848,2.0,0.0,0.0,0.999766396117664,-12.596654856074636,1.0,0.0,0.0 -841,10.0,0.0,0.0,2.891154584833296e-12,17.983380633690544,1.0412715711057248,-11.766325128271664,0.0,1.0,0.0 -841,11.0,6.274508789187143,7.5,0.0,0.0,1.0087012712707757,-12.035850730196636,1.0,0.0,0.0 -841,12.0,0.0,0.0,-5.223591688145873e-12,20.26311980302887,1.0360817061870906,-12.03585073019704,0.0,1.0,0.0 -841,13.0,3.473388794014312,1.6,0.0,0.0,0.995778196302056,-12.59322136803172,1.0,0.0,0.0 -841,14.0,4.593836792083444,2.5,0.0,0.0,0.9903025307763496,-12.65162361371412,1.0,0.0,0.0 -841,15.0,1.960783996620982,1.8,0.0,0.0,0.9985424500770236,-12.385362731246126,1.0,0.0,0.0 -841,16.0,5.042015991311097,5.8,0.0,0.0,0.9949930213605954,-12.631813420621144,1.0,0.0,0.0 -841,17.0,1.7927167969106126,0.9,0.0,0.0,0.9842804148158412,-12.996471019183916,1.0,0.0,0.0 -841,18.0,5.322127990828381,3.4,0.0,0.0,0.9830620048463826,-13.098485293878754,1.0,0.0,0.0 -841,19.0,1.2324927978760465,0.7,0.0,0.0,0.9866099716297516,-13.006501605037869,1.0,0.0,0.0 -841,20.0,9.803919983104912,11.2,0.0,0.0,0.9914164064044776,-12.733633899972627,1.0,0.0,0.0 -841,21.0,0.0,0.0,0.0,0.0,0.9925558658730076,-12.715123995272796,1.0,0.0,0.0 -841,22.0,1.7927167969106126,1.6,0.0,0.0,0.9740068410981296,-13.058455228434248,1.0,0.0,0.0 -841,23.0,4.873948791600727,6.7,0.0,0.0,0.9592467174814366,-13.457583711556596,1.0,0.0,0.0 -841,24.0,0.0,0.0,0.0,0.0,0.9591275254457275,-13.218402589594437,1.0,0.0,0.0 -841,25.0,1.960783996620982,2.3,0.0,0.0,0.9445925313480564,-13.319574991764222,1.0,0.0,0.0 -841,26.0,0.0,0.0,0.0,0.0,0.9663276089938648,-12.972910207128445,1.0,0.0,0.0 -841,27.0,0.0,0.0,0.0,0.0,0.95546275867643,-10.53288441870906,1.0,0.0,0.0 -841,28.0,1.3445375976829592,0.9,0.0,0.0,0.9520339356973498,-13.655922932083394,1.0,0.0,0.0 -841,29.0,5.938374389766403,1.9,0.0,0.0,0.9442187714502588,-14.168034631146236,1.0,0.0,0.0 -842,0.0,0.0,0.0,165.71772493475012,0.0006861678441438,1.0,0.0,0.0,0.0,1.0 -842,1.0,12.15686077905009,12.7,8.497226629462046e-07,10.879572517945064,0.9798905356576432,-3.8056123204548458,0.0,1.0,0.0 -842,2.0,1.3445375976829592,1.2,0.0,0.0,0.973740741633804,-4.990708028799465,1.0,0.0,0.0 -842,3.0,4.257702392662704,1.6,0.0,0.0,0.9670356787581296,-6.134437327085971,1.0,0.0,0.0 -842,4.0,52.77310070905615,19.0,-9.395432306992834e-11,24.40459929130391,0.9595415136892672,-9.160600610836804,0.0,1.0,0.0 -842,5.0,0.0,0.0,0.0,0.0,0.966620183283742,-7.281369852850623,1.0,0.0,0.0 -842,6.0,12.773107177988114,10.9,0.0,0.0,0.9571809103653444,-8.336526974225407,1.0,0.0,0.0 -842,7.0,16.80671997103699,30.0,2.1647496400050915e-10,30.663943386102844,0.9656122482689756,-7.7219837598552274,0.0,1.0,0.0 -842,8.0,0.0,0.0,0.0,0.0,1.0152852125467144,-9.138712685910056,1.0,0.0,0.0 -842,9.0,3.2492991944004848,2.0,0.0,0.0,1.0062991012469178,-10.10333164858882,1.0,0.0,0.0 -842,10.0,0.0,0.0,1.0692629124036392e-09,22.78048018942494,1.0599870771409583,-9.138712685791646,0.0,1.0,0.0 -842,11.0,6.274508789187143,7.5,0.0,0.0,1.0135199064312712,-9.624412498122952,1.0,0.0,0.0 -842,12.0,0.0,0.0,2.4494457637065636e-10,10.173526793569131,1.0273832217064995,-9.62441249810408,0.0,1.0,0.0 -842,13.0,3.473388794014312,1.6,0.0,0.0,1.002333988361756,-10.108689913149924,1.0,0.0,0.0 -842,14.0,4.593836792083444,2.5,0.0,0.0,0.9989563172230002,-10.137705723397362,1.0,0.0,0.0 -842,15.0,1.960783996620982,1.8,0.0,0.0,1.0041894881604747,-9.94124616758986,1.0,0.0,0.0 -842,16.0,5.042015991311097,5.8,0.0,0.0,1.0012600158856435,-10.151505182712462,1.0,0.0,0.0 -842,17.0,1.7927167969106126,0.9,0.0,0.0,0.9922596536370284,-10.483738823482836,1.0,0.0,0.0 -842,18.0,5.322127990828381,3.4,0.0,0.0,0.9906231023933296,-10.588223761030807,1.0,0.0,0.0 -842,19.0,1.2324927978760465,0.7,0.0,0.0,0.9939183524895524,-10.499696569567996,1.0,0.0,0.0 -842,20.0,9.803919983104912,11.2,0.0,0.0,0.9956491000806866,-10.287221704667049,1.0,0.0,0.0 -842,21.0,0.0,0.0,0.0,0.0,0.9960350317610612,-10.283477950252363,1.0,0.0,0.0 -842,22.0,1.7927167969106126,1.6,0.0,0.0,0.9903732853577928,-10.322840626014974,1.0,0.0,0.0 -842,23.0,4.873948791600727,6.7,0.0,0.0,0.9857100064259344,-10.416176602109148,1.0,0.0,0.0 -842,24.0,0.0,0.0,0.0,0.0,0.9792891687582234,-10.137665339863998,1.0,0.0,0.0 -842,25.0,1.960783996620982,2.3,0.0,0.0,0.9650625378887174,-10.234652999164,1.0,0.0,0.0 -842,26.0,0.0,0.0,0.0,0.0,0.982407237699736,-9.878295337025952,1.0,0.0,0.0 -842,27.0,0.0,0.0,0.0,0.0,0.9645458575805096,-7.646032083445327,1.0,0.0,0.0 -842,28.0,1.3445375976829592,0.9,0.0,0.0,0.9683619398654482,-10.538816081076444,1.0,0.0,0.0 -842,29.0,5.938374389766403,1.9,0.0,0.0,0.9606829156591336,-11.033682119714756,1.0,0.0,0.0 -843,0.0,0.0,0.0,165.75621443271987,0.0090160667518546,1.0,0.0,0.0,0.0,1.0 -843,1.0,12.15686077905009,12.7,8.547291335010662e-06,10.105585429732756,0.9797191699888528,-3.800202591008242,0.0,1.0,0.0 -843,2.0,1.3445375976829592,1.2,0.0,0.0,0.9742175385685644,-5.007539637470143,1.0,0.0,0.0 -843,3.0,4.257702392662704,1.6,0.0,0.0,0.9676259096159524,-6.155098616960871,1.0,0.0,0.0 -843,4.0,52.77310070905615,19.0,-1.9432385295110647e-10,24.117746821708494,0.9591835455521508,-9.1471305495207,0.0,1.0,0.0 -843,5.0,0.0,0.0,0.0,0.0,0.9666821447455648,-7.267624155845952,1.0,0.0,0.0 -843,6.0,12.773107177988114,10.9,0.0,0.0,0.9570702662541836,-8.323135459513978,1.0,0.0,0.0 -843,7.0,16.80671997103699,30.0,-3.164671349675985e-09,28.092371455060857,0.9648029823203624,-7.681132043179033,0.0,1.0,0.0 -843,8.0,0.0,0.0,0.0,0.0,1.0163732524386244,-9.212314398534282,1.0,0.0,0.0 -843,9.0,3.2492991944004848,2.0,0.0,0.0,1.0085408103840925,-10.220104657648008,1.0,0.0,0.0 -843,10.0,0.0,0.0,-1.1914111464634637e-08,22.229503578991377,1.059993670857625,-9.212314399852213,0.0,1.0,0.0 -843,11.0,6.274508789187143,7.5,0.0,0.0,1.0198769954116955,-9.776361904071042,1.0,0.0,0.0 -843,12.0,0.0,0.0,-4.141909910922421e-09,14.38199120951251,1.0392513155516037,-9.776361904384505,0.0,1.0,0.0 -843,13.0,3.473388794014312,1.6,0.0,0.0,1.0080758599924224,-10.273796128818525,1.0,0.0,0.0 -843,14.0,4.593836792083444,2.5,0.0,0.0,1.0039270180100248,-10.305857961717084,1.0,0.0,0.0 -843,15.0,1.960783996620982,1.8,0.0,0.0,1.0088158849450208,-10.06827414233001,1.0,0.0,0.0 -843,16.0,5.042015991311097,5.8,0.0,0.0,1.004255134123334,-10.273715685643957,1.0,0.0,0.0 -843,17.0,1.7927167969106126,0.9,0.0,0.0,0.9963089542115352,-10.630589900869712,1.0,0.0,0.0 -843,18.0,5.322127990828381,3.4,0.0,0.0,0.994116352237052,-10.723317069396405,1.0,0.0,0.0 -843,19.0,1.2324927978760465,0.7,0.0,0.0,0.9971041131007488,-10.629528645027934,1.0,0.0,0.0 -843,20.0,9.803919983104912,11.2,0.0,0.0,0.9976849039610208,-10.442063740132204,1.0,0.0,0.0 -843,21.0,0.0,0.0,0.0,0.0,0.997993588759898,-10.45074308957594,1.0,0.0,0.0 -843,22.0,1.7927167969106126,1.6,0.0,0.0,0.9934969249092682,-10.557575081327265,1.0,0.0,0.0 -843,23.0,4.873948791600727,6.7,0.0,0.0,0.9863673033525217,-10.743661961712878,1.0,0.0,0.0 -843,24.0,0.0,0.0,0.0,0.0,0.9746280084610318,-10.870693409077091,1.0,0.0,0.0 -843,25.0,1.960783996620982,2.3,0.0,0.0,0.9603312735427794,-10.968625029082306,1.0,0.0,0.0 -843,26.0,0.0,0.0,0.0,0.0,0.9843611142097672,-9.274448506816428,1.0,0.0,0.0 -843,27.0,0.0,0.0,0.0,0.0,0.9649452582157844,-7.566537169035789,1.0,0.0,0.0 -843,28.0,1.3445375976829592,0.9,0.0,0.0,0.970345393125206,-9.93231251344698,1.0,0.0,0.0 -843,29.0,5.938374389766403,1.9,0.0,0.0,0.9626825791814272,-10.425143290151857,1.0,0.0,0.0 -844,0.0,0.0,0.0,165.75621443271987,0.0090160667518546,1.0,0.0,0.0,0.0,1.0 -844,1.0,12.15686077905009,12.7,8.547291335010662e-06,10.105585429732756,0.9797191699888528,-3.800202591008242,0.0,1.0,0.0 -844,2.0,1.3445375976829592,1.2,0.0,0.0,0.9742175385685644,-5.007539637470143,1.0,0.0,0.0 -844,3.0,4.257702392662704,1.6,0.0,0.0,0.9676259096159524,-6.155098616960871,1.0,0.0,0.0 -844,4.0,52.77310070905615,19.0,-1.9432385295110647e-10,24.117746821708494,0.9591835455521508,-9.1471305495207,0.0,1.0,0.0 -844,5.0,0.0,0.0,0.0,0.0,0.9666821447455648,-7.267624155845952,1.0,0.0,0.0 -844,6.0,12.773107177988114,10.9,0.0,0.0,0.9570702662541836,-8.323135459513978,1.0,0.0,0.0 -844,7.0,16.80671997103699,30.0,-3.164671349675985e-09,28.092371455060857,0.9648029823203624,-7.681132043179033,0.0,1.0,0.0 -844,8.0,0.0,0.0,0.0,0.0,1.0163732524386244,-9.212314398534282,1.0,0.0,0.0 -844,9.0,3.2492991944004848,2.0,0.0,0.0,1.0085408103840925,-10.220104657648008,1.0,0.0,0.0 -844,10.0,0.0,0.0,-1.1914111464634637e-08,22.229503578991377,1.059993670857625,-9.212314399852213,0.0,1.0,0.0 -844,11.0,6.274508789187143,7.5,0.0,0.0,1.0198769954116955,-9.776361904071042,1.0,0.0,0.0 -844,12.0,0.0,0.0,-4.141909910922421e-09,14.38199120951251,1.0392513155516037,-9.776361904384505,0.0,1.0,0.0 -844,13.0,3.473388794014312,1.6,0.0,0.0,1.0080758599924224,-10.273796128818525,1.0,0.0,0.0 -844,14.0,4.593836792083444,2.5,0.0,0.0,1.0039270180100248,-10.305857961717084,1.0,0.0,0.0 -844,15.0,1.960783996620982,1.8,0.0,0.0,1.0088158849450208,-10.06827414233001,1.0,0.0,0.0 -844,16.0,5.042015991311097,5.8,0.0,0.0,1.004255134123334,-10.273715685643957,1.0,0.0,0.0 -844,17.0,1.7927167969106126,0.9,0.0,0.0,0.9963089542115352,-10.630589900869712,1.0,0.0,0.0 -844,18.0,5.322127990828381,3.4,0.0,0.0,0.994116352237052,-10.723317069396405,1.0,0.0,0.0 -844,19.0,1.2324927978760465,0.7,0.0,0.0,0.9971041131007488,-10.629528645027934,1.0,0.0,0.0 -844,20.0,9.803919983104912,11.2,0.0,0.0,0.9976849039610208,-10.442063740132204,1.0,0.0,0.0 -844,21.0,0.0,0.0,0.0,0.0,0.997993588759898,-10.45074308957594,1.0,0.0,0.0 -844,22.0,1.7927167969106126,1.6,0.0,0.0,0.9934969249092682,-10.557575081327265,1.0,0.0,0.0 -844,23.0,4.873948791600727,6.7,0.0,0.0,0.9863673033525217,-10.743661961712878,1.0,0.0,0.0 -844,24.0,0.0,0.0,0.0,0.0,0.9746280084610318,-10.870693409077091,1.0,0.0,0.0 -844,25.0,1.960783996620982,2.3,0.0,0.0,0.9603312735427794,-10.968625029082306,1.0,0.0,0.0 -844,26.0,0.0,0.0,0.0,0.0,0.9843611142097672,-9.274448506816428,1.0,0.0,0.0 -844,27.0,0.0,0.0,0.0,0.0,0.9649452582157844,-7.566537169035789,1.0,0.0,0.0 -844,28.0,1.3445375976829592,0.9,0.0,0.0,0.970345393125206,-9.93231251344698,1.0,0.0,0.0 -844,29.0,5.938374389766403,1.9,0.0,0.0,0.9626825791814272,-10.425143290151857,1.0,0.0,0.0 -845,0.0,0.0,0.0,165.71772493475012,0.0006861678441438,1.0,0.0,0.0,0.0,1.0 -845,1.0,12.15686077905009,12.7,8.497226629462046e-07,10.879572517945064,0.9798905356576432,-3.8056123204548458,0.0,1.0,0.0 -845,2.0,1.3445375976829592,1.2,0.0,0.0,0.973740741633804,-4.990708028799465,1.0,0.0,0.0 -845,3.0,4.257702392662704,1.6,0.0,0.0,0.9670356787581296,-6.134437327085971,1.0,0.0,0.0 -845,4.0,52.77310070905615,19.0,-9.395432306992834e-11,24.40459929130391,0.9595415136892672,-9.160600610836804,0.0,1.0,0.0 -845,5.0,0.0,0.0,0.0,0.0,0.966620183283742,-7.281369852850623,1.0,0.0,0.0 -845,6.0,12.773107177988114,10.9,0.0,0.0,0.9571809103653444,-8.336526974225407,1.0,0.0,0.0 -845,7.0,16.80671997103699,30.0,2.1647496400050915e-10,30.663943386102844,0.9656122482689756,-7.7219837598552274,0.0,1.0,0.0 -845,8.0,0.0,0.0,0.0,0.0,1.0152852125467144,-9.138712685910056,1.0,0.0,0.0 -845,9.0,3.2492991944004848,2.0,0.0,0.0,1.0062991012469178,-10.10333164858882,1.0,0.0,0.0 -845,10.0,0.0,0.0,1.0692629124036392e-09,22.78048018942494,1.0599870771409583,-9.138712685791646,0.0,1.0,0.0 -845,11.0,6.274508789187143,7.5,0.0,0.0,1.0135199064312712,-9.624412498122952,1.0,0.0,0.0 -845,12.0,0.0,0.0,2.4494457637065636e-10,10.173526793569131,1.0273832217064995,-9.62441249810408,0.0,1.0,0.0 -845,13.0,3.473388794014312,1.6,0.0,0.0,1.002333988361756,-10.108689913149924,1.0,0.0,0.0 -845,14.0,4.593836792083444,2.5,0.0,0.0,0.9989563172230002,-10.137705723397362,1.0,0.0,0.0 -845,15.0,1.960783996620982,1.8,0.0,0.0,1.0041894881604747,-9.94124616758986,1.0,0.0,0.0 -845,16.0,5.042015991311097,5.8,0.0,0.0,1.0012600158856435,-10.151505182712462,1.0,0.0,0.0 -845,17.0,1.7927167969106126,0.9,0.0,0.0,0.9922596536370284,-10.483738823482836,1.0,0.0,0.0 -845,18.0,5.322127990828381,3.4,0.0,0.0,0.9906231023933296,-10.588223761030807,1.0,0.0,0.0 -845,19.0,1.2324927978760465,0.7,0.0,0.0,0.9939183524895524,-10.499696569567996,1.0,0.0,0.0 -845,20.0,9.803919983104912,11.2,0.0,0.0,0.9956491000806866,-10.287221704667049,1.0,0.0,0.0 -845,21.0,0.0,0.0,0.0,0.0,0.9960350317610612,-10.283477950252363,1.0,0.0,0.0 -845,22.0,1.7927167969106126,1.6,0.0,0.0,0.9903732853577928,-10.322840626014974,1.0,0.0,0.0 -845,23.0,4.873948791600727,6.7,0.0,0.0,0.9857100064259344,-10.416176602109148,1.0,0.0,0.0 -845,24.0,0.0,0.0,0.0,0.0,0.9792891687582234,-10.137665339863998,1.0,0.0,0.0 -845,25.0,1.960783996620982,2.3,0.0,0.0,0.9650625378887174,-10.234652999164,1.0,0.0,0.0 -845,26.0,0.0,0.0,0.0,0.0,0.982407237699736,-9.878295337025952,1.0,0.0,0.0 -845,27.0,0.0,0.0,0.0,0.0,0.9645458575805096,-7.646032083445327,1.0,0.0,0.0 -845,28.0,1.3445375976829592,0.9,0.0,0.0,0.9683619398654482,-10.538816081076444,1.0,0.0,0.0 -845,29.0,5.938374389766403,1.9,0.0,0.0,0.9606829156591336,-11.033682119714756,1.0,0.0,0.0 -846,0.0,0.0,0.0,165.71772493475012,0.0006861678441438,1.0,0.0,0.0,0.0,1.0 -846,1.0,12.15686077905009,12.7,8.497226629462046e-07,10.879572517945064,0.9798905356576432,-3.8056123204548458,0.0,1.0,0.0 -846,2.0,1.3445375976829592,1.2,0.0,0.0,0.973740741633804,-4.990708028799465,1.0,0.0,0.0 -846,3.0,4.257702392662704,1.6,0.0,0.0,0.9670356787581296,-6.134437327085971,1.0,0.0,0.0 -846,4.0,52.77310070905615,19.0,-9.395432306992834e-11,24.40459929130391,0.9595415136892672,-9.160600610836804,0.0,1.0,0.0 -846,5.0,0.0,0.0,0.0,0.0,0.966620183283742,-7.281369852850623,1.0,0.0,0.0 -846,6.0,12.773107177988114,10.9,0.0,0.0,0.9571809103653444,-8.336526974225407,1.0,0.0,0.0 -846,7.0,16.80671997103699,30.0,2.1647496400050915e-10,30.663943386102844,0.9656122482689756,-7.7219837598552274,0.0,1.0,0.0 -846,8.0,0.0,0.0,0.0,0.0,1.0152852125467144,-9.138712685910056,1.0,0.0,0.0 -846,9.0,3.2492991944004848,2.0,0.0,0.0,1.0062991012469178,-10.10333164858882,1.0,0.0,0.0 -846,10.0,0.0,0.0,1.0692629124036392e-09,22.78048018942494,1.0599870771409583,-9.138712685791646,0.0,1.0,0.0 -846,11.0,6.274508789187143,7.5,0.0,0.0,1.0135199064312712,-9.624412498122952,1.0,0.0,0.0 -846,12.0,0.0,0.0,2.4494457637065636e-10,10.173526793569131,1.0273832217064995,-9.62441249810408,0.0,1.0,0.0 -846,13.0,3.473388794014312,1.6,0.0,0.0,1.002333988361756,-10.108689913149924,1.0,0.0,0.0 -846,14.0,4.593836792083444,2.5,0.0,0.0,0.9989563172230002,-10.137705723397362,1.0,0.0,0.0 -846,15.0,1.960783996620982,1.8,0.0,0.0,1.0041894881604747,-9.94124616758986,1.0,0.0,0.0 -846,16.0,5.042015991311097,5.8,0.0,0.0,1.0012600158856435,-10.151505182712462,1.0,0.0,0.0 -846,17.0,1.7927167969106126,0.9,0.0,0.0,0.9922596536370284,-10.483738823482836,1.0,0.0,0.0 -846,18.0,5.322127990828381,3.4,0.0,0.0,0.9906231023933296,-10.588223761030807,1.0,0.0,0.0 -846,19.0,1.2324927978760465,0.7,0.0,0.0,0.9939183524895524,-10.499696569567996,1.0,0.0,0.0 -846,20.0,9.803919983104912,11.2,0.0,0.0,0.9956491000806866,-10.287221704667049,1.0,0.0,0.0 -846,21.0,0.0,0.0,0.0,0.0,0.9960350317610612,-10.283477950252363,1.0,0.0,0.0 -846,22.0,1.7927167969106126,1.6,0.0,0.0,0.9903732853577928,-10.322840626014974,1.0,0.0,0.0 -846,23.0,4.873948791600727,6.7,0.0,0.0,0.9857100064259344,-10.416176602109148,1.0,0.0,0.0 -846,24.0,0.0,0.0,0.0,0.0,0.9792891687582234,-10.137665339863998,1.0,0.0,0.0 -846,25.0,1.960783996620982,2.3,0.0,0.0,0.9650625378887174,-10.234652999164,1.0,0.0,0.0 -846,26.0,0.0,0.0,0.0,0.0,0.982407237699736,-9.878295337025952,1.0,0.0,0.0 -846,27.0,0.0,0.0,0.0,0.0,0.9645458575805096,-7.646032083445327,1.0,0.0,0.0 -846,28.0,1.3445375976829592,0.9,0.0,0.0,0.9683619398654482,-10.538816081076444,1.0,0.0,0.0 -846,29.0,5.938374389766403,1.9,0.0,0.0,0.9606829156591336,-11.033682119714756,1.0,0.0,0.0 -847,0.0,0.0,0.0,165.9176812373649,0.0008253071875685,1.0,0.0,0.0,0.0,1.0 -847,1.0,12.15686077905009,12.7,1.002106489814886e-06,10.070957869529174,0.9797709106312276,-3.80725483010116,0.0,1.0,0.0 -847,2.0,1.3445375976829592,1.2,0.0,0.0,0.9740102224762588,-5.0043639371935615,1.0,0.0,0.0 -847,3.0,4.257702392662704,1.6,0.0,0.0,0.9673699329392416,-6.151261050781648,1.0,0.0,0.0 -847,4.0,52.77310070905615,19.0,2.6348395996310745e-10,24.429953202588905,0.959673128025252,-9.166555277120525,0.0,1.0,0.0 -847,5.0,0.0,0.0,0.0,0.0,0.9669454160962374,-7.293534839158278,1.0,0.0,0.0 -847,6.0,12.773107177988114,10.9,0.0,0.0,0.9574285926770912,-8.346111532276389,1.0,0.0,0.0 -847,7.0,16.80671997103699,30.0,5.61354133216354e-10,30.825689976809628,0.965912642779778,-7.736518201327439,0.0,1.0,0.0 -847,8.0,0.0,0.0,0.0,0.0,1.0167136639164462,-9.098852949038744,1.0,0.0,0.0 -847,9.0,3.2492991944004848,2.0,0.0,0.0,1.0090446316592765,-10.034222534563671,1.0,0.0,0.0 -847,10.0,0.0,0.0,1.4152129498685507e-09,22.047197099365437,1.059977026082116,-9.098852948882245,0.0,1.0,0.0 -847,11.0,6.274508789187143,7.5,0.0,0.0,1.0152306252537198,-9.675277915604326,1.0,0.0,0.0 -847,12.0,0.0,0.0,7.564052724205114e-10,11.945690983241882,1.0314447438254164,-9.675277915546385,0.0,1.0,0.0 -847,13.0,3.473388794014312,1.6,0.0,0.0,1.0032570546548467,-10.16962215876644,1.0,0.0,0.0 -847,14.0,4.593836792083444,2.5,0.0,0.0,0.9990295452614708,-10.19168048264322,1.0,0.0,0.0 -847,15.0,1.960783996620982,1.8,0.0,0.0,1.0064409653595805,-9.942364452218408,1.0,0.0,0.0 -847,16.0,5.042015991311097,5.8,0.0,0.0,1.003837055064562,-10.103162521011972,1.0,0.0,0.0 -847,17.0,1.7927167969106126,0.9,0.0,0.0,0.9932951606609272,-10.49400229288364,1.0,0.0,0.0 -847,18.0,5.322127990828381,3.4,0.0,0.0,0.9922239766157812,-10.572472137933236,1.0,0.0,0.0 -847,19.0,1.2324927978760465,0.7,0.0,0.0,0.9958117482399506,-10.470788864560772,1.0,0.0,0.0 -847,20.0,9.803919983104912,11.2,0.0,0.0,0.9771808894457126,-10.571858957861876,1.0,0.0,0.0 -847,21.0,0.0,0.0,0.0,0.0,0.98105017462867,-10.511224523058608,1.0,0.0,0.0 -847,22.0,1.7927167969106126,1.6,0.0,0.0,0.9863986990440936,-10.43439322865252,1.0,0.0,0.0 -847,23.0,4.873948791600727,6.7,0.0,0.0,0.9763802516392402,-10.608110239355977,1.0,0.0,0.0 -847,24.0,0.0,0.0,0.0,0.0,0.9735504414756628,-10.308451549216183,1.0,0.0,0.0 -847,25.0,1.960783996620982,2.3,0.0,0.0,0.9592373999577708,-10.406603364483692,1.0,0.0,0.0 -847,26.0,0.0,0.0,0.0,0.0,0.978935935130705,-10.031243592249742,1.0,0.0,0.0 -847,27.0,0.0,0.0,0.0,0.0,0.9643828404526664,-7.666763925726515,1.0,0.0,0.0 -847,28.0,1.3445375976829592,0.9,0.0,0.0,0.9648377724124646,-10.69652443121657,1.0,0.0,0.0 -847,29.0,5.938374389766403,1.9,0.0,0.0,0.9571297735736948,-11.195038004242752,1.0,0.0,0.0 -848,0.0,0.0,0.0,165.71772493475012,0.0006861678441438,1.0,0.0,0.0,0.0,1.0 -848,1.0,12.15686077905009,12.7,8.497226629462046e-07,10.879572517945064,0.9798905356576432,-3.8056123204548458,0.0,1.0,0.0 -848,2.0,1.3445375976829592,1.2,0.0,0.0,0.973740741633804,-4.990708028799465,1.0,0.0,0.0 -848,3.0,4.257702392662704,1.6,0.0,0.0,0.9670356787581296,-6.134437327085971,1.0,0.0,0.0 -848,4.0,52.77310070905615,19.0,-9.395432306992834e-11,24.40459929130391,0.9595415136892672,-9.160600610836804,0.0,1.0,0.0 -848,5.0,0.0,0.0,0.0,0.0,0.966620183283742,-7.281369852850623,1.0,0.0,0.0 -848,6.0,12.773107177988114,10.9,0.0,0.0,0.9571809103653444,-8.336526974225407,1.0,0.0,0.0 -848,7.0,16.80671997103699,30.0,2.1647496400050915e-10,30.663943386102844,0.9656122482689756,-7.7219837598552274,0.0,1.0,0.0 -848,8.0,0.0,0.0,0.0,0.0,1.0152852125467144,-9.138712685910056,1.0,0.0,0.0 -848,9.0,3.2492991944004848,2.0,0.0,0.0,1.0062991012469178,-10.10333164858882,1.0,0.0,0.0 -848,10.0,0.0,0.0,1.0692629124036392e-09,22.78048018942494,1.0599870771409583,-9.138712685791646,0.0,1.0,0.0 -848,11.0,6.274508789187143,7.5,0.0,0.0,1.0135199064312712,-9.624412498122952,1.0,0.0,0.0 -848,12.0,0.0,0.0,2.4494457637065636e-10,10.173526793569131,1.0273832217064995,-9.62441249810408,0.0,1.0,0.0 -848,13.0,3.473388794014312,1.6,0.0,0.0,1.002333988361756,-10.108689913149924,1.0,0.0,0.0 -848,14.0,4.593836792083444,2.5,0.0,0.0,0.9989563172230002,-10.137705723397362,1.0,0.0,0.0 -848,15.0,1.960783996620982,1.8,0.0,0.0,1.0041894881604747,-9.94124616758986,1.0,0.0,0.0 -848,16.0,5.042015991311097,5.8,0.0,0.0,1.0012600158856435,-10.151505182712462,1.0,0.0,0.0 -848,17.0,1.7927167969106126,0.9,0.0,0.0,0.9922596536370284,-10.483738823482836,1.0,0.0,0.0 -848,18.0,5.322127990828381,3.4,0.0,0.0,0.9906231023933296,-10.588223761030807,1.0,0.0,0.0 -848,19.0,1.2324927978760465,0.7,0.0,0.0,0.9939183524895524,-10.499696569567996,1.0,0.0,0.0 -848,20.0,9.803919983104912,11.2,0.0,0.0,0.9956491000806866,-10.287221704667049,1.0,0.0,0.0 -848,21.0,0.0,0.0,0.0,0.0,0.9960350317610612,-10.283477950252363,1.0,0.0,0.0 -848,22.0,1.7927167969106126,1.6,0.0,0.0,0.9903732853577928,-10.322840626014974,1.0,0.0,0.0 -848,23.0,4.873948791600727,6.7,0.0,0.0,0.9857100064259344,-10.416176602109148,1.0,0.0,0.0 -848,24.0,0.0,0.0,0.0,0.0,0.9792891687582234,-10.137665339863998,1.0,0.0,0.0 -848,25.0,1.960783996620982,2.3,0.0,0.0,0.9650625378887174,-10.234652999164,1.0,0.0,0.0 -848,26.0,0.0,0.0,0.0,0.0,0.982407237699736,-9.878295337025952,1.0,0.0,0.0 -848,27.0,0.0,0.0,0.0,0.0,0.9645458575805096,-7.646032083445327,1.0,0.0,0.0 -848,28.0,1.3445375976829592,0.9,0.0,0.0,0.9683619398654482,-10.538816081076444,1.0,0.0,0.0 -848,29.0,5.938374389766403,1.9,0.0,0.0,0.9606829156591336,-11.033682119714756,1.0,0.0,0.0 -849,0.0,0.0,0.0,165.76074522958842,0.0099749357790557,1.0,0.0,0.0,0.0,1.0 -849,1.0,12.15686077905009,12.7,9.31708469548483e-06,10.112830367437953,0.979716694930324,-3.8004956732589674,0.0,1.0,0.0 -849,2.0,1.3445375976829592,1.2,0.0,0.0,0.9742204295698572,-5.007109777250361,1.0,0.0,0.0 -849,3.0,4.257702392662704,1.6,0.0,0.0,0.9676294029103222,-6.154563253042607,1.0,0.0,0.0 -849,4.0,52.77310070905615,19.0,-7.552365899046327e-10,24.127900879516247,0.959180321262889,-9.148161123558252,0.0,1.0,0.0 -849,5.0,0.0,0.0,0.0,0.0,0.96665712776471,-7.2688754830735345,1.0,0.0,0.0 -849,6.0,12.773107177988114,10.9,0.0,0.0,0.9570539747178702,-8.32429665345194,1.0,0.0,0.0 -849,7.0,16.80671997103699,30.0,-3.8650201083419585e-09,28.151913792966667,0.9648002111829704,-7.6827780453016095,0.0,1.0,0.0 -849,8.0,0.0,0.0,0.0,0.0,1.0162154062967446,-9.221353220673915,1.0,0.0,0.0 -849,9.0,3.2492991944004848,2.0,0.0,0.0,1.0082333471509497,-10.233460420908774,1.0,0.0,0.0 -849,10.0,0.0,0.0,-1.3552680270274282e-08,22.309835090168946,1.0599934657716403,-9.221353222173336,0.0,1.0,0.0 -849,11.0,6.274508789187143,7.5,0.0,0.0,1.0199759424073689,-9.762357680898768,1.0,0.0,0.0 -849,12.0,0.0,0.0,-4.398520835958611e-09,14.252155309768137,1.0391767354514956,-9.762357681231643,0.0,1.0,0.0 -849,13.0,3.473388794014312,1.6,0.0,0.0,1.0116795035851722,-10.1465280846774,1.0,0.0,0.0 -849,14.0,4.593836792083444,2.5,0.0,0.0,1.002597297720874,-10.340025425734098,1.0,0.0,0.0 -849,15.0,1.960783996620982,1.8,0.0,0.0,1.0087200140628008,-10.065119426417942,1.0,0.0,0.0 -849,16.0,5.042015991311097,5.8,0.0,0.0,1.004018683468492,-10.282219365416625,1.0,0.0,0.0 -849,17.0,1.7927167969106126,0.9,0.0,0.0,0.9953325012640792,-10.658271159496582,1.0,0.0,0.0 -849,18.0,5.322127990828381,3.4,0.0,0.0,0.9933510487938236,-10.746871131773576,1.0,0.0,0.0 -849,19.0,1.2324927978760465,0.7,0.0,0.0,0.9964535490541108,-10.650717155566324,1.0,0.0,0.0 -849,20.0,9.803919983104912,11.2,0.0,0.0,0.9973080168030052,-10.45700142029505,1.0,0.0,0.0 -849,21.0,0.0,0.0,0.0,0.0,0.9975958832177833,-10.466121555291576,1.0,0.0,0.0 -849,22.0,1.7927167969106126,1.6,0.0,0.0,0.9924385693584356,-10.585881699799664,1.0,0.0,0.0 -849,23.0,4.873948791600727,6.7,0.0,0.0,0.9856761538169416,-10.76342316691948,1.0,0.0,0.0 -849,24.0,0.0,0.0,0.0,0.0,0.9739281590869384,-10.890636096185288,1.0,0.0,0.0 -849,25.0,1.960783996620982,2.3,0.0,0.0,0.959620837795096,-10.988710642428527,1.0,0.0,0.0 -849,26.0,0.0,0.0,0.0,0.0,0.9843401439682878,-9.27586433689818,1.0,0.0,0.0 -849,27.0,0.0,0.0,0.0,0.0,0.9649252684440855,-7.567880156514933,1.0,0.0,0.0 -849,28.0,1.3445375976829592,0.9,0.0,0.0,0.9703241061278558,-9.933756771716062,1.0,0.0,0.0 -849,29.0,5.938374389766403,1.9,0.0,0.0,0.962661118579826,-10.426609324571974,1.0,0.0,0.0 -850,0.0,0.0,0.0,165.71772493475012,0.0006861678441438,1.0,0.0,0.0,0.0,1.0 -850,1.0,12.15686077905009,12.7,8.497226629462046e-07,10.879572517945064,0.9798905356576432,-3.8056123204548458,0.0,1.0,0.0 -850,2.0,1.3445375976829592,1.2,0.0,0.0,0.973740741633804,-4.990708028799465,1.0,0.0,0.0 -850,3.0,4.257702392662704,1.6,0.0,0.0,0.9670356787581296,-6.134437327085971,1.0,0.0,0.0 -850,4.0,52.77310070905615,19.0,-9.395432306992834e-11,24.40459929130391,0.9595415136892672,-9.160600610836804,0.0,1.0,0.0 -850,5.0,0.0,0.0,0.0,0.0,0.966620183283742,-7.281369852850623,1.0,0.0,0.0 -850,6.0,12.773107177988114,10.9,0.0,0.0,0.9571809103653444,-8.336526974225407,1.0,0.0,0.0 -850,7.0,16.80671997103699,30.0,2.1647496400050915e-10,30.663943386102844,0.9656122482689756,-7.7219837598552274,0.0,1.0,0.0 -850,8.0,0.0,0.0,0.0,0.0,1.0152852125467144,-9.138712685910056,1.0,0.0,0.0 -850,9.0,3.2492991944004848,2.0,0.0,0.0,1.0062991012469178,-10.10333164858882,1.0,0.0,0.0 -850,10.0,0.0,0.0,1.0692629124036392e-09,22.78048018942494,1.0599870771409583,-9.138712685791646,0.0,1.0,0.0 -850,11.0,6.274508789187143,7.5,0.0,0.0,1.0135199064312712,-9.624412498122952,1.0,0.0,0.0 -850,12.0,0.0,0.0,2.4494457637065636e-10,10.173526793569131,1.0273832217064995,-9.62441249810408,0.0,1.0,0.0 -850,13.0,3.473388794014312,1.6,0.0,0.0,1.002333988361756,-10.108689913149924,1.0,0.0,0.0 -850,14.0,4.593836792083444,2.5,0.0,0.0,0.9989563172230002,-10.137705723397362,1.0,0.0,0.0 -850,15.0,1.960783996620982,1.8,0.0,0.0,1.0041894881604747,-9.94124616758986,1.0,0.0,0.0 -850,16.0,5.042015991311097,5.8,0.0,0.0,1.0012600158856435,-10.151505182712462,1.0,0.0,0.0 -850,17.0,1.7927167969106126,0.9,0.0,0.0,0.9922596536370284,-10.483738823482836,1.0,0.0,0.0 -850,18.0,5.322127990828381,3.4,0.0,0.0,0.9906231023933296,-10.588223761030807,1.0,0.0,0.0 -850,19.0,1.2324927978760465,0.7,0.0,0.0,0.9939183524895524,-10.499696569567996,1.0,0.0,0.0 -850,20.0,9.803919983104912,11.2,0.0,0.0,0.9956491000806866,-10.287221704667049,1.0,0.0,0.0 -850,21.0,0.0,0.0,0.0,0.0,0.9960350317610612,-10.283477950252363,1.0,0.0,0.0 -850,22.0,1.7927167969106126,1.6,0.0,0.0,0.9903732853577928,-10.322840626014974,1.0,0.0,0.0 -850,23.0,4.873948791600727,6.7,0.0,0.0,0.9857100064259344,-10.416176602109148,1.0,0.0,0.0 -850,24.0,0.0,0.0,0.0,0.0,0.9792891687582234,-10.137665339863998,1.0,0.0,0.0 -850,25.0,1.960783996620982,2.3,0.0,0.0,0.9650625378887174,-10.234652999164,1.0,0.0,0.0 -850,26.0,0.0,0.0,0.0,0.0,0.982407237699736,-9.878295337025952,1.0,0.0,0.0 -850,27.0,0.0,0.0,0.0,0.0,0.9645458575805096,-7.646032083445327,1.0,0.0,0.0 -850,28.0,1.3445375976829592,0.9,0.0,0.0,0.9683619398654482,-10.538816081076444,1.0,0.0,0.0 -850,29.0,5.938374389766403,1.9,0.0,0.0,0.9606829156591336,-11.033682119714756,1.0,0.0,0.0 -851,0.0,0.0,0.0,162.58857472413655,0.0005745415162294,1.0,0.0,0.0,0.0,1.0 -851,1.0,11.883598691740486,12.7,1.180482908150505e-06,-2.662527710171794,0.9776886620048414,-3.873365225923597,0.0,1.0,0.0 -851,2.0,1.3143150626809754,1.2,0.0,0.0,0.9806988887008952,-4.464800073732229,1.0,0.0,0.0 -851,3.0,4.161997698489755,1.6,0.0,0.0,0.975534582780998,-5.479451221950359,1.0,0.0,0.0 -851,4.0,51.58686621022829,19.0,-2.108678189355066e-09,37.2327427537973,0.9585164975676338,-11.995247454758662,0.0,1.0,0.0 -851,5.0,0.0,0.0,0.0,0.0,0.9774383611615528,-6.311136755442359,1.0,0.0,0.0 -851,6.0,12.485993095469269,10.9,0.0,0.0,0.940010016933018,-12.623808131070746,1.0,0.0,0.0 -851,7.0,16.428938283512196,30.0,1.916158490071787e-09,33.15260238276168,0.9774299350930312,-6.749039330568263,0.0,1.0,0.0 -851,8.0,0.0,0.0,0.0,0.0,1.0236475968787204,-8.113372422666767,1.0,0.0,0.0 -851,9.0,3.176261401479024,2.0,0.0,0.0,1.0176311409456678,-9.049314048887092,1.0,0.0,0.0 -851,10.0,0.0,0.0,9.196915881773383e-10,18.524240639324663,1.059997148009266,-8.113372422565755,0.0,1.0,0.0 -851,11.0,6.133470292511218,7.5,0.0,0.0,1.0294991910410598,-8.767561634361055,1.0,0.0,0.0 -851,12.0,0.0,0.0,1.878564108301907e-10,15.22657385185972,1.0498050594503476,-8.76756163434711,0.0,1.0,0.0 -851,13.0,3.3953139119258533,1.6,0.0,0.0,1.017951622948478,-9.209289621180243,1.0,0.0,0.0 -851,14.0,4.490576464159999,2.5,0.0,0.0,1.0141308331835983,-9.206704138163712,1.0,0.0,0.0 -851,15.0,1.916709466409756,1.8,0.0,0.0,1.018409628286496,-8.981986799743884,1.0,0.0,0.0 -851,16.0,4.928681485053658,5.8,0.0,0.0,1.0135348900212284,-9.124356191613227,1.0,0.0,0.0 -851,17.0,1.752420083574634,0.9,0.0,0.0,1.0063108203822282,-9.488399685034064,1.0,0.0,0.0 -851,18.0,5.202497123112194,3.4,0.0,0.0,1.0039483991411502,-9.560356275198004,1.0,0.0,0.0 -851,19.0,1.204788807457561,0.7,0.0,0.0,1.0067661193668862,-9.46297348960658,1.0,0.0,0.0 -851,20.0,9.58354733204878,11.2,0.0,0.0,1.007377176128942,-9.227123357749422,1.0,0.0,0.0 -851,21.0,0.0,0.0,0.0,0.0,1.0078200031015472,-9.225893438964103,1.0,0.0,0.0 -851,22.0,1.752420083574634,1.6,0.0,0.0,1.004590033236811,-9.34312961130348,1.0,0.0,0.0 -851,23.0,4.764392102218535,6.7,0.0,0.0,0.99849163484238,-9.381874305216336,1.0,0.0,0.0 -851,24.0,0.0,0.0,0.0,0.0,0.991363007033961,-9.089089281174406,1.0,0.0,0.0 -851,25.0,1.916709466409756,2.3,0.0,0.0,0.977431423596399,-9.173780144633543,1.0,0.0,0.0 -851,26.0,0.0,0.0,0.0,0.0,0.9938947526602404,-8.829062618480652,1.0,0.0,0.0 -851,27.0,0.0,0.0,0.0,0.0,0.9756419436390826,-6.666895091228092,1.0,0.0,0.0 -851,28.0,1.3143150626809754,0.9,0.0,0.0,0.9642554192311182,-10.228860299800752,1.0,0.0,0.0 -851,29.0,5.804891526840974,1.9,0.0,0.0,0.9400003646964712,-11.60420882495849,1.0,0.0,0.0 -852,0.0,0.0,0.0,161.83587458639107,0.0005837719516676,1.0,0.0,0.0,0.0,1.0 -852,1.0,11.883598691740486,12.7,7.597334243255024e-07,10.48512211458118,0.9802579821155538,-3.713853089633192,0.0,1.0,0.0 -852,2.0,1.3143150626809754,1.2,0.0,0.0,0.9742377552255572,-4.870730386596186,1.0,0.0,0.0 -852,3.0,4.161997698489755,1.6,0.0,0.0,0.9676257733371773,-5.985873900592127,1.0,0.0,0.0 -852,4.0,51.58686621022829,19.0,-7.678461999338872e-10,24.17354372070392,0.9602960067015788,-8.93940148099442,0.0,1.0,0.0 -852,5.0,0.0,0.0,0.0,0.0,0.9672704197822166,-7.106250485806249,1.0,0.0,0.0 -852,6.0,12.485993095469269,10.9,0.0,0.0,0.9579268119546528,-8.133655145199196,1.0,0.0,0.0 -852,7.0,16.428938283512196,30.0,-4.726543431669411e-10,30.546550428843588,0.9662681737367655,-7.536008334187985,0.0,1.0,0.0 -852,8.0,0.0,0.0,0.0,0.0,1.015680254700932,-8.920490434111924,1.0,0.0,0.0 -852,9.0,3.176261401479024,2.0,0.0,0.0,1.0067516018663858,-9.862939323359548,1.0,0.0,0.0 -852,10.0,0.0,0.0,2.4432297570379004e-10,22.569048937970717,1.0599680262455649,-8.92049043408488,0.0,1.0,0.0 -852,11.0,6.133470292511218,7.5,0.0,0.0,1.0137369069186768,-9.394013985637615,1.0,0.0,0.0 -852,12.0,0.0,0.0,-6.089564314535631e-10,9.887536660375336,1.0272127437487455,-9.394013985684524,0.0,1.0,0.0 -852,13.0,3.3953139119258533,1.6,0.0,0.0,1.0026923943036408,-9.864110694572307,1.0,0.0,0.0 -852,14.0,4.490576464159999,2.5,0.0,0.0,0.9993727911811718,-9.891399441471105,1.0,0.0,0.0 -852,15.0,1.916709466409756,1.8,0.0,0.0,1.0045571939039806,-9.70183433698763,1.0,0.0,0.0 -852,16.0,4.928681485053658,5.8,0.0,0.0,1.00171102154749,-9.907438572189388,1.0,0.0,0.0 -852,17.0,1.752420083574634,0.9,0.0,0.0,0.9927878262979628,-10.228044943962642,1.0,0.0,0.0 -852,18.0,5.202497123112194,3.4,0.0,0.0,0.9911898601088084,-10.330047847233002,1.0,0.0,0.0 -852,19.0,1.204788807457561,0.7,0.0,0.0,0.9944620091845744,-10.245106948815804,1.0,0.0,0.0 -852,20.0,9.58354733204878,11.2,0.0,0.0,0.996181848744012,-10.038360911545649,1.0,0.0,0.0 -852,21.0,0.0,0.0,0.0,0.0,0.9965665129047948,-10.034987334519784,1.0,0.0,0.0 -852,22.0,1.752420083574634,1.6,0.0,0.0,0.9909090372454288,-10.069944158949411,1.0,0.0,0.0 -852,23.0,4.764392102218535,6.7,0.0,0.0,0.9863461672329052,-10.16084003014798,1.0,0.0,0.0 -852,24.0,0.0,0.0,0.0,0.0,0.9799910175185164,-9.888351919269232,1.0,0.0,0.0 -852,25.0,1.916709466409756,2.3,0.0,0.0,0.96589298310959,-9.975048998638565,1.0,0.0,0.0 -852,26.0,0.0,0.0,0.0,0.0,0.9830946960304884,-9.638264988175012,1.0,0.0,0.0 -852,27.0,0.0,0.0,0.0,0.0,0.9652321614835868,-7.461685971699862,1.0,0.0,0.0 -852,28.0,1.3143150626809754,0.9,0.0,0.0,0.9692458130539164,-10.278660281731842,1.0,0.0,0.0 -852,29.0,5.804891526840974,1.9,0.0,0.0,0.9616933156849716,-10.759708815286016,1.0,0.0,0.0 -853,0.0,0.0,0.0,161.85007715777613,0.0008918736024376,1.0,0.0,0.0,0.0,1.0 -853,1.0,11.883598691740486,12.7,1.2167239806917996e-06,10.014514648027196,0.9801296338780352,-3.714627041898293,0.0,1.0,0.0 -853,2.0,1.3143150626809754,1.2,0.0,0.0,0.9745916074868164,-4.868332651434616,1.0,0.0,0.0 -853,3.0,4.161997698489755,1.6,0.0,0.0,0.9680614559609294,-5.982728388741473,1.0,0.0,0.0 -853,4.0,51.58686621022829,19.0,-6.794676047081072e-10,24.16282211059442,0.96013270212651,-8.948811255856539,0.0,1.0,0.0 -853,5.0,0.0,0.0,0.0,0.0,0.967095158043458,-7.122779416209808,1.0,0.0,0.0 -853,6.0,12.485993095469269,10.9,0.0,0.0,0.9577539338946296,-8.1473746559416,1.0,0.0,0.0 -853,7.0,16.428938283512196,30.0,-2.0389492464668976e-10,30.42499562627876,0.9660066075028976,-7.553252492834471,0.0,1.0,0.0 -853,8.0,0.0,0.0,0.0,0.0,1.0148938948883737,-9.009979432921504,1.0,0.0,0.0 -853,9.0,3.176261401479024,2.0,0.0,0.0,1.005298637870084,-9.991558426327549,1.0,0.0,0.0 -853,10.0,0.0,0.0,1.2087488094395995e-09,22.93204642646036,1.0598970004240569,-9.009979432787585,0.0,1.0,0.0 -853,11.0,6.133470292511218,7.5,0.0,0.0,1.0179055323300297,-9.19649947906546,1.0,0.0,0.0 -853,12.0,0.0,0.0,-5.993300156314364e-10,10.226707606956367,1.031781905403408,-9.196499479111234,0.0,1.0,0.0 -853,13.0,3.3953139119258533,1.6,0.0,0.0,1.0083075766633396,-9.593390313716831,1.0,0.0,0.0 -853,14.0,4.490576464159999,2.5,0.0,0.0,1.0068258519700488,-9.58394036526214,1.0,0.0,0.0 -853,15.0,1.916709466409756,1.8,0.0,0.0,1.0060785586842136,-9.631250724361704,1.0,0.0,0.0 -853,16.0,4.928681485053658,5.8,0.0,0.0,1.001255473634657,-9.97752287248728,1.0,0.0,0.0 -853,17.0,1.752420083574634,0.9,0.0,0.0,1.0029864119248355,-9.746400349117058,1.0,0.0,0.0 -853,18.0,5.202497123112194,3.4,0.0,0.0,0.9863360067931128,-10.681151229010243,1.0,0.0,0.0 -853,19.0,1.204788807457561,0.7,0.0,0.0,0.9904763323821716,-10.541469123569694,1.0,0.0,0.0 -853,20.0,9.58354733204878,11.2,0.0,0.0,0.9941498702174164,-10.17755332038587,1.0,0.0,0.0 -853,21.0,0.0,0.0,0.0,0.0,0.9943568428520644,-10.177147243965276,1.0,0.0,0.0 -853,22.0,1.752420083574634,1.6,0.0,0.0,1.0018487679794297,-9.694130612418943,1.0,0.0,0.0 -853,23.0,4.764392102218535,6.7,0.0,0.0,0.9816676383945044,-10.32879201637278,1.0,0.0,0.0 -853,24.0,0.0,0.0,0.0,0.0,0.9770525381385642,-10.022162333292792,1.0,0.0,0.0 -853,25.0,1.916709466409756,2.3,0.0,0.0,0.9629108350498072,-10.10938946412864,1.0,0.0,0.0 -853,26.0,0.0,0.0,0.0,0.0,0.981248709483127,-9.748566436850512,1.0,0.0,0.0 -853,27.0,0.0,0.0,0.0,0.0,0.9648105034051956,-7.485463491984396,1.0,0.0,0.0 -853,28.0,1.3143150626809754,0.9,0.0,0.0,0.9673722178316057,-10.39140742526563,1.0,0.0,0.0 -853,29.0,5.804891526840974,1.9,0.0,0.0,0.9598046233443954,-10.874334116415508,1.0,0.0,0.0 -854,0.0,0.0,0.0,161.83587458639107,0.0005837719516676,1.0,0.0,0.0,0.0,1.0 -854,1.0,11.883598691740486,12.7,7.597334243255024e-07,10.48512211458118,0.9802579821155538,-3.713853089633192,0.0,1.0,0.0 -854,2.0,1.3143150626809754,1.2,0.0,0.0,0.9742377552255572,-4.870730386596186,1.0,0.0,0.0 -854,3.0,4.161997698489755,1.6,0.0,0.0,0.9676257733371773,-5.985873900592127,1.0,0.0,0.0 -854,4.0,51.58686621022829,19.0,-7.678461999338872e-10,24.17354372070392,0.9602960067015788,-8.93940148099442,0.0,1.0,0.0 -854,5.0,0.0,0.0,0.0,0.0,0.9672704197822166,-7.106250485806249,1.0,0.0,0.0 -854,6.0,12.485993095469269,10.9,0.0,0.0,0.9579268119546528,-8.133655145199196,1.0,0.0,0.0 -854,7.0,16.428938283512196,30.0,-4.726543431669411e-10,30.546550428843588,0.9662681737367655,-7.536008334187985,0.0,1.0,0.0 -854,8.0,0.0,0.0,0.0,0.0,1.015680254700932,-8.920490434111924,1.0,0.0,0.0 -854,9.0,3.176261401479024,2.0,0.0,0.0,1.0067516018663858,-9.862939323359548,1.0,0.0,0.0 -854,10.0,0.0,0.0,2.4432297570379004e-10,22.569048937970717,1.0599680262455649,-8.92049043408488,0.0,1.0,0.0 -854,11.0,6.133470292511218,7.5,0.0,0.0,1.0137369069186768,-9.394013985637615,1.0,0.0,0.0 -854,12.0,0.0,0.0,-6.089564314535631e-10,9.887536660375336,1.0272127437487455,-9.394013985684524,0.0,1.0,0.0 -854,13.0,3.3953139119258533,1.6,0.0,0.0,1.0026923943036408,-9.864110694572307,1.0,0.0,0.0 -854,14.0,4.490576464159999,2.5,0.0,0.0,0.9993727911811718,-9.891399441471105,1.0,0.0,0.0 -854,15.0,1.916709466409756,1.8,0.0,0.0,1.0045571939039806,-9.70183433698763,1.0,0.0,0.0 -854,16.0,4.928681485053658,5.8,0.0,0.0,1.00171102154749,-9.907438572189388,1.0,0.0,0.0 -854,17.0,1.752420083574634,0.9,0.0,0.0,0.9927878262979628,-10.228044943962642,1.0,0.0,0.0 -854,18.0,5.202497123112194,3.4,0.0,0.0,0.9911898601088084,-10.330047847233002,1.0,0.0,0.0 -854,19.0,1.204788807457561,0.7,0.0,0.0,0.9944620091845744,-10.245106948815804,1.0,0.0,0.0 -854,20.0,9.58354733204878,11.2,0.0,0.0,0.996181848744012,-10.038360911545649,1.0,0.0,0.0 -854,21.0,0.0,0.0,0.0,0.0,0.9965665129047948,-10.034987334519784,1.0,0.0,0.0 -854,22.0,1.752420083574634,1.6,0.0,0.0,0.9909090372454288,-10.069944158949411,1.0,0.0,0.0 -854,23.0,4.764392102218535,6.7,0.0,0.0,0.9863461672329052,-10.16084003014798,1.0,0.0,0.0 -854,24.0,0.0,0.0,0.0,0.0,0.9799910175185164,-9.888351919269232,1.0,0.0,0.0 -854,25.0,1.916709466409756,2.3,0.0,0.0,0.96589298310959,-9.975048998638565,1.0,0.0,0.0 -854,26.0,0.0,0.0,0.0,0.0,0.9830946960304884,-9.638264988175012,1.0,0.0,0.0 -854,27.0,0.0,0.0,0.0,0.0,0.9652321614835868,-7.461685971699862,1.0,0.0,0.0 -854,28.0,1.3143150626809754,0.9,0.0,0.0,0.9692458130539164,-10.278660281731842,1.0,0.0,0.0 -854,29.0,5.804891526840974,1.9,0.0,0.0,0.9616933156849716,-10.759708815286016,1.0,0.0,0.0 -855,0.0,0.0,0.0,162.1214976210491,0.0022877490883921,1.0,0.0,0.0,0.0,1.0 -855,1.0,11.883598691740486,12.7,2.370974235806998e-06,10.874925469803983,0.980274748770536,-3.720397290704872,0.0,1.0,0.0 -855,2.0,1.3143150626809754,1.2,0.0,0.0,0.9740752832700916,-4.88065401839872,1.0,0.0,0.0 -855,3.0,4.161997698489755,1.6,0.0,0.0,0.9674270464670944,-5.998276643389691,1.0,0.0,0.0 -855,4.0,51.58686621022829,19.0,2.953633891761851e-10,24.5942010462546,0.9604762913948242,-8.952508458728893,0.0,1.0,0.0 -855,5.0,0.0,0.0,0.0,0.0,0.9667499173921444,-7.108673927779007,1.0,0.0,0.0 -855,6.0,12.485993095469269,10.9,0.0,0.0,0.9576918177578116,-8.140243877201984,1.0,0.0,0.0 -855,7.0,16.428938283512196,30.0,1.8074957131155439e-09,30.404814814755227,0.9559598898713786,-10.18475206484297,0.0,1.0,0.0 -855,8.0,0.0,0.0,0.0,0.0,1.01570638998072,-8.958508091395506,1.0,0.0,0.0 -855,9.0,3.176261401479024,2.0,0.0,0.0,1.00708537273653,-9.91860709712672,1.0,0.0,0.0 -855,10.0,0.0,0.0,1.9918656777459633e-09,22.572698181730697,1.0599999869577827,-8.958508091175023,0.0,1.0,0.0 -855,11.0,6.133470292511218,7.5,0.0,0.0,1.0152046899582876,-9.455778226010406,1.0,0.0,0.0 -855,12.0,0.0,0.0,4.082245058028191e-10,11.056124238639676,1.0302290899534337,-9.455778225979095,0.0,1.0,0.0 -855,13.0,3.3953139119258533,1.6,0.0,0.0,1.0039897637742443,-9.932142541983444,1.0,0.0,0.0 -855,14.0,4.490576464159999,2.5,0.0,0.0,1.0004430476279251,-9.962639938170934,1.0,0.0,0.0 -855,15.0,1.916709466409756,1.8,0.0,0.0,1.0055440166030043,-9.75833364344242,1.0,0.0,0.0 -855,16.0,4.928681485053658,5.8,0.0,0.0,1.002250575826177,-9.96403955195565,1.0,0.0,0.0 -855,17.0,1.752420083574634,0.9,0.0,0.0,0.9936069369224532,-10.293138162545135,1.0,0.0,0.0 -855,18.0,5.202497123112194,3.4,0.0,0.0,0.9918580713924514,-10.391672757186228,1.0,0.0,0.0 -855,19.0,1.204788807457561,0.7,0.0,0.0,0.9950479784862571,-10.30507275339531,1.0,0.0,0.0 -855,20.0,9.58354733204878,11.2,0.0,0.0,0.9964541848380722,-10.108946424131693,1.0,0.0,0.0 -855,21.0,0.0,0.0,0.0,0.0,0.9968166926533418,-10.110380888279266,1.0,0.0,0.0 -855,22.0,1.752420083574634,1.6,0.0,0.0,0.99145089568764,-10.169389106243418,1.0,0.0,0.0 -855,23.0,4.764392102218535,6.7,0.0,0.0,0.9861865984229412,-10.29899455539593,1.0,0.0,0.0 -855,24.0,0.0,0.0,0.0,0.0,0.978267499991922,-10.188271774738483,1.0,0.0,0.0 -855,25.0,1.916709466409756,2.3,0.0,0.0,0.9641438856782564,-10.275279156507017,1.0,0.0,0.0 -855,26.0,0.0,0.0,0.0,0.0,0.9804666710668716,-10.040504853785084,1.0,0.0,0.0 -855,27.0,0.0,0.0,0.0,0.0,0.9626228523521596,-8.0449676900723,1.0,0.0,0.0 -855,28.0,1.3143150626809754,0.9,0.0,0.0,0.9665784490305966,-10.684386191533338,1.0,0.0,0.0 -855,29.0,5.804891526840974,1.9,0.0,0.0,0.9590044399892628,-11.168111911388175,1.0,0.0,0.0 -856,0.0,0.0,0.0,161.83587458639107,0.0005837719516676,1.0,0.0,0.0,0.0,1.0 -856,1.0,11.883598691740486,12.7,7.597334243255024e-07,10.48512211458118,0.9802579821155538,-3.713853089633192,0.0,1.0,0.0 -856,2.0,1.3143150626809754,1.2,0.0,0.0,0.9742377552255572,-4.870730386596186,1.0,0.0,0.0 -856,3.0,4.161997698489755,1.6,0.0,0.0,0.9676257733371773,-5.985873900592127,1.0,0.0,0.0 -856,4.0,51.58686621022829,19.0,-7.678461999338872e-10,24.17354372070392,0.9602960067015788,-8.93940148099442,0.0,1.0,0.0 -856,5.0,0.0,0.0,0.0,0.0,0.9672704197822166,-7.106250485806249,1.0,0.0,0.0 -856,6.0,12.485993095469269,10.9,0.0,0.0,0.9579268119546528,-8.133655145199196,1.0,0.0,0.0 -856,7.0,16.428938283512196,30.0,-4.726543431669411e-10,30.546550428843588,0.9662681737367655,-7.536008334187985,0.0,1.0,0.0 -856,8.0,0.0,0.0,0.0,0.0,1.015680254700932,-8.920490434111924,1.0,0.0,0.0 -856,9.0,3.176261401479024,2.0,0.0,0.0,1.0067516018663858,-9.862939323359548,1.0,0.0,0.0 -856,10.0,0.0,0.0,2.4432297570379004e-10,22.569048937970717,1.0599680262455649,-8.92049043408488,0.0,1.0,0.0 -856,11.0,6.133470292511218,7.5,0.0,0.0,1.0137369069186768,-9.394013985637615,1.0,0.0,0.0 -856,12.0,0.0,0.0,-6.089564314535631e-10,9.887536660375336,1.0272127437487455,-9.394013985684524,0.0,1.0,0.0 -856,13.0,3.3953139119258533,1.6,0.0,0.0,1.0026923943036408,-9.864110694572307,1.0,0.0,0.0 -856,14.0,4.490576464159999,2.5,0.0,0.0,0.9993727911811718,-9.891399441471105,1.0,0.0,0.0 -856,15.0,1.916709466409756,1.8,0.0,0.0,1.0045571939039806,-9.70183433698763,1.0,0.0,0.0 -856,16.0,4.928681485053658,5.8,0.0,0.0,1.00171102154749,-9.907438572189388,1.0,0.0,0.0 -856,17.0,1.752420083574634,0.9,0.0,0.0,0.9927878262979628,-10.228044943962642,1.0,0.0,0.0 -856,18.0,5.202497123112194,3.4,0.0,0.0,0.9911898601088084,-10.330047847233002,1.0,0.0,0.0 -856,19.0,1.204788807457561,0.7,0.0,0.0,0.9944620091845744,-10.245106948815804,1.0,0.0,0.0 -856,20.0,9.58354733204878,11.2,0.0,0.0,0.996181848744012,-10.038360911545649,1.0,0.0,0.0 -856,21.0,0.0,0.0,0.0,0.0,0.9965665129047948,-10.034987334519784,1.0,0.0,0.0 -856,22.0,1.752420083574634,1.6,0.0,0.0,0.9909090372454288,-10.069944158949411,1.0,0.0,0.0 -856,23.0,4.764392102218535,6.7,0.0,0.0,0.9863461672329052,-10.16084003014798,1.0,0.0,0.0 -856,24.0,0.0,0.0,0.0,0.0,0.9799910175185164,-9.888351919269232,1.0,0.0,0.0 -856,25.0,1.916709466409756,2.3,0.0,0.0,0.96589298310959,-9.975048998638565,1.0,0.0,0.0 -856,26.0,0.0,0.0,0.0,0.0,0.9830946960304884,-9.638264988175012,1.0,0.0,0.0 -856,27.0,0.0,0.0,0.0,0.0,0.9652321614835868,-7.461685971699862,1.0,0.0,0.0 -856,28.0,1.3143150626809754,0.9,0.0,0.0,0.9692458130539164,-10.278660281731842,1.0,0.0,0.0 -856,29.0,5.804891526840974,1.9,0.0,0.0,0.9616933156849716,-10.759708815286016,1.0,0.0,0.0 -857,0.0,0.0,0.0,161.9441871954406,0.0011739901134788,1.0,0.0,0.0,0.0,1.0 -857,1.0,11.883598691740486,12.7,1.4168994472955e-06,10.141410917658945,0.9801472844429606,-3.717981006650797,0.0,1.0,0.0 -857,2.0,1.3143150626809754,1.2,0.0,0.0,0.974500019470932,-4.868364467048099,1.0,0.0,0.0 -857,3.0,4.161997698489755,1.6,0.0,0.0,0.9679486001057992,-5.9828112464507965,1.0,0.0,0.0 -857,4.0,51.58686621022829,19.0,-1.1168666468612187e-10,24.229593402027064,0.9601938387245892,-8.956117752172167,0.0,1.0,0.0 -857,5.0,0.0,0.0,0.0,0.0,0.9670581737702082,-7.132000412320936,1.0,0.0,0.0 -857,6.0,12.485993095469269,10.9,0.0,0.0,0.9577568322924938,-8.155771548591446,1.0,0.0,0.0 -857,7.0,16.428938283512196,30.0,6.337713378498824e-13,30.741679394277128,0.9661116249370428,-7.56409629736182,0.0,1.0,0.0 -857,8.0,0.0,0.0,0.0,0.0,1.0144962453252009,-9.058004009825655,1.0,0.0,0.0 -857,9.0,3.176261401479024,2.0,0.0,0.0,1.0044639499375243,-10.060554383434978,1.0,0.0,0.0 -857,10.0,0.0,0.0,4.156289374487474e-10,23.189403935895527,1.059999982117994,-9.058004009779596,0.0,1.0,0.0 -857,11.0,6.133470292511218,7.5,0.0,0.0,1.0168185129384466,-9.161375418282358,1.0,0.0,0.0 -857,12.0,0.0,0.0,-1.6152408558170386e-10,9.646070286645022,1.0299305604107705,-9.16137541829473,0.0,1.0,0.0 -857,13.0,3.3953139119258533,1.6,0.0,0.0,0.9858724543453194,-10.135377914526543,1.0,0.0,0.0 -857,14.0,4.490576464159999,2.5,0.0,0.0,0.9967300453538596,-9.946202306543588,1.0,0.0,0.0 -857,15.0,1.916709466409756,1.8,0.0,0.0,1.0114896897749606,-9.278780249001574,1.0,0.0,0.0 -857,16.0,4.928681485053658,5.8,0.0,0.0,0.99795009881113,-10.191191885370246,1.0,0.0,0.0 -857,17.0,1.752420083574634,0.9,0.0,0.0,0.9902347001469878,-10.334905179796758,1.0,0.0,0.0 -857,18.0,5.202497123112194,3.4,0.0,0.0,0.9886986835456784,-10.467461598686906,1.0,0.0,0.0 -857,19.0,1.204788807457561,0.7,0.0,0.0,0.9920128880576776,-10.397917696143711,1.0,0.0,0.0 -857,20.0,9.58354733204878,11.2,0.0,0.0,0.9939000602793602,-10.225134560879262,1.0,0.0,0.0 -857,21.0,0.0,0.0,0.0,0.0,0.9942964415051472,-10.218012723593194,1.0,0.0,0.0 -857,22.0,1.752420083574634,1.6,0.0,0.0,0.9885072271811488,-10.158971953443732,1.0,0.0,0.0 -857,23.0,4.764392102218535,6.7,0.0,0.0,0.9842899923191872,-10.295161802670854,1.0,0.0,0.0 -857,24.0,0.0,0.0,0.0,0.0,0.978706402354214,-9.992168830955649,1.0,0.0,0.0 -857,25.0,1.916709466409756,2.3,0.0,0.0,0.9645893110268824,-10.079097033834918,1.0,0.0,0.0 -857,26.0,0.0,0.0,0.0,0.0,0.9822897320845562,-9.72208855618526,1.0,0.0,0.0 -857,27.0,0.0,0.0,0.0,0.0,0.9649374754016984,-7.49307991263025,1.0,0.0,0.0 -857,28.0,1.3143150626809754,0.9,0.0,0.0,0.9684288239298688,-10.36354859541125,1.0,0.0,0.0 -857,29.0,5.804891526840974,1.9,0.0,0.0,0.9608697509252604,-10.845414754554,1.0,0.0,0.0 -858,0.0,0.0,0.0,161.89753004641648,0.0005777273647922,1.0,0.0,0.0,0.0,1.0 -858,1.0,11.883598691740486,12.7,7.94498697501928e-07,10.195096335087108,0.9802285010483528,-3.707909741514906,0.0,1.0,0.0 -858,2.0,1.3143150626809754,1.2,0.0,0.0,0.974323430628784,-4.893314169872484,1.0,0.0,0.0 -858,3.0,4.161997698489755,1.6,0.0,0.0,0.9677347315646024,-6.013881716102518,1.0,0.0,0.0 -858,4.0,51.58686621022829,19.0,-8.054229935094587e-10,24.199470691593746,0.960357081950616,-8.918364432041853,0.0,1.0,0.0 -858,5.0,0.0,0.0,0.0,0.0,0.9673823080544636,-7.0692650726136375,1.0,0.0,0.0 -858,6.0,12.485993095469269,10.9,0.0,0.0,0.9580207955294684,-8.10313089124606,1.0,0.0,0.0 -858,7.0,16.428938283512196,30.0,-5.488253706835466e-10,30.74577366189631,0.966473660158339,-7.505338895380341,0.0,1.0,0.0 -858,8.0,0.0,0.0,0.0,0.0,1.015990523630579,-9.481186499901266,1.0,0.0,0.0 -858,9.0,3.176261401479024,2.0,0.0,0.0,1.007658522305214,-10.73301457661403,1.0,0.0,0.0 -858,10.0,0.0,0.0,2.373476200119548e-10,22.38740315612782,1.0599236852467435,-9.481186499875,0.0,1.0,0.0 -858,11.0,6.133470292511218,7.5,0.0,0.0,1.0165969659499523,-9.807541776522111,1.0,0.0,0.0 -858,12.0,0.0,0.0,-8.475496218420701e-10,10.653629790479789,1.0310627027732842,-9.807541776586971,0.0,1.0,0.0 -858,13.0,3.3953139119258533,1.6,0.0,0.0,1.0055578957626166,-10.315023241074694,1.0,0.0,0.0 -858,14.0,4.490576464159999,2.5,0.0,0.0,1.001947034443466,-10.381160129278651,1.0,0.0,0.0 -858,15.0,1.916709466409756,1.8,0.0,0.0,1.0062658252878982,-10.30623697490807,1.0,0.0,0.0 -858,16.0,4.928681485053658,5.8,0.0,0.0,1.0029688617352246,-10.695441704536975,1.0,0.0,0.0 -858,17.0,1.752420083574634,0.9,0.0,0.0,0.9947569978712392,-10.849812959324636,1.0,0.0,0.0 -858,18.0,5.202497123112194,3.4,0.0,0.0,0.992805356618602,-11.031187152381744,1.0,0.0,0.0 -858,19.0,1.204788807457561,0.7,0.0,0.0,0.9958820785540848,-10.98846944000248,1.0,0.0,0.0 -858,20.0,9.58354733204878,11.2,0.0,0.0,0.9958807706028794,-10.920315391780376,1.0,0.0,0.0 -858,21.0,0.0,0.0,0.0,0.0,0.9995754347538895,-10.761945536124587,1.0,0.0,0.0 -858,22.0,1.752420083574634,1.6,0.0,0.0,0.993628663443328,-10.592348691219332,1.0,0.0,0.0 -858,23.0,4.764392102218535,6.7,0.0,0.0,0.9892492861005724,-10.72804444956464,1.0,0.0,0.0 -858,24.0,0.0,0.0,0.0,0.0,0.9825108765242464,-10.225526793645749,1.0,0.0,0.0 -858,25.0,1.916709466409756,2.3,0.0,0.0,0.9684500722899234,-10.311773192281658,1.0,0.0,0.0 -858,26.0,0.0,0.0,0.0,0.0,0.9852952908270765,-9.8328874608791,1.0,0.0,0.0 -858,27.0,0.0,0.0,0.0,0.0,0.9654599306306813,-7.455094947218171,1.0,0.0,0.0 -858,28.0,1.3143150626809754,0.9,0.0,0.0,0.978516822218218,-10.039704774338832,1.0,0.0,0.0 -858,29.0,5.804891526840974,1.9,0.0,0.0,0.9533192998580782,-11.596156238624252,1.0,0.0,0.0 -859,0.0,0.0,0.0,161.83587458639107,0.0005837719516676,1.0,0.0,0.0,0.0,1.0 -859,1.0,11.883598691740486,12.7,7.597334243255024e-07,10.48512211458118,0.9802579821155538,-3.713853089633192,0.0,1.0,0.0 -859,2.0,1.3143150626809754,1.2,0.0,0.0,0.9742377552255572,-4.870730386596186,1.0,0.0,0.0 -859,3.0,4.161997698489755,1.6,0.0,0.0,0.9676257733371773,-5.985873900592127,1.0,0.0,0.0 -859,4.0,51.58686621022829,19.0,-7.678461999338872e-10,24.17354372070392,0.9602960067015788,-8.93940148099442,0.0,1.0,0.0 -859,5.0,0.0,0.0,0.0,0.0,0.9672704197822166,-7.106250485806249,1.0,0.0,0.0 -859,6.0,12.485993095469269,10.9,0.0,0.0,0.9579268119546528,-8.133655145199196,1.0,0.0,0.0 -859,7.0,16.428938283512196,30.0,-4.726543431669411e-10,30.546550428843588,0.9662681737367655,-7.536008334187985,0.0,1.0,0.0 -859,8.0,0.0,0.0,0.0,0.0,1.015680254700932,-8.920490434111924,1.0,0.0,0.0 -859,9.0,3.176261401479024,2.0,0.0,0.0,1.0067516018663858,-9.862939323359548,1.0,0.0,0.0 -859,10.0,0.0,0.0,2.4432297570379004e-10,22.569048937970717,1.0599680262455649,-8.92049043408488,0.0,1.0,0.0 -859,11.0,6.133470292511218,7.5,0.0,0.0,1.0137369069186768,-9.394013985637615,1.0,0.0,0.0 -859,12.0,0.0,0.0,-6.089564314535631e-10,9.887536660375336,1.0272127437487455,-9.394013985684524,0.0,1.0,0.0 -859,13.0,3.3953139119258533,1.6,0.0,0.0,1.0026923943036408,-9.864110694572307,1.0,0.0,0.0 -859,14.0,4.490576464159999,2.5,0.0,0.0,0.9993727911811718,-9.891399441471105,1.0,0.0,0.0 -859,15.0,1.916709466409756,1.8,0.0,0.0,1.0045571939039806,-9.70183433698763,1.0,0.0,0.0 -859,16.0,4.928681485053658,5.8,0.0,0.0,1.00171102154749,-9.907438572189388,1.0,0.0,0.0 -859,17.0,1.752420083574634,0.9,0.0,0.0,0.9927878262979628,-10.228044943962642,1.0,0.0,0.0 -859,18.0,5.202497123112194,3.4,0.0,0.0,0.9911898601088084,-10.330047847233002,1.0,0.0,0.0 -859,19.0,1.204788807457561,0.7,0.0,0.0,0.9944620091845744,-10.245106948815804,1.0,0.0,0.0 -859,20.0,9.58354733204878,11.2,0.0,0.0,0.996181848744012,-10.038360911545649,1.0,0.0,0.0 -859,21.0,0.0,0.0,0.0,0.0,0.9965665129047948,-10.034987334519784,1.0,0.0,0.0 -859,22.0,1.752420083574634,1.6,0.0,0.0,0.9909090372454288,-10.069944158949411,1.0,0.0,0.0 -859,23.0,4.764392102218535,6.7,0.0,0.0,0.9863461672329052,-10.16084003014798,1.0,0.0,0.0 -859,24.0,0.0,0.0,0.0,0.0,0.9799910175185164,-9.888351919269232,1.0,0.0,0.0 -859,25.0,1.916709466409756,2.3,0.0,0.0,0.96589298310959,-9.975048998638565,1.0,0.0,0.0 -859,26.0,0.0,0.0,0.0,0.0,0.9830946960304884,-9.638264988175012,1.0,0.0,0.0 -859,27.0,0.0,0.0,0.0,0.0,0.9652321614835868,-7.461685971699862,1.0,0.0,0.0 -859,28.0,1.3143150626809754,0.9,0.0,0.0,0.9692458130539164,-10.278660281731842,1.0,0.0,0.0 -859,29.0,5.804891526840974,1.9,0.0,0.0,0.9616933156849716,-10.759708815286016,1.0,0.0,0.0 -860,0.0,0.0,0.0,136.4741443107213,4.3662079640682805e-05,1.0,0.0,0.0,0.0,1.0 -860,1.0,11.883598691740486,12.7,34.12390313003549,35.045651696704,0.9722071972043298,-20.56166898461634,0.0,1.0,0.0 -860,2.0,1.3143150626809754,1.2,0.0,0.0,0.9615272044424492,-13.504235728590489,1.0,0.0,0.0 -860,3.0,4.161997698489755,1.6,0.0,0.0,0.9565428771033794,-16.72570694059176,1.0,0.0,0.0 -860,4.0,51.58686621022829,19.0,3.13409734810333e-11,39.99986992205517,0.958506899491926,-28.810871582247945,0.0,1.0,0.0 -860,5.0,0.0,0.0,0.0,0.0,0.9590863680106296,-18.513998783183585,1.0,0.0,0.0 -860,6.0,12.485993095469269,10.9,0.0,0.0,0.9400002010103312,-29.43944456584884,1.0,0.0,0.0 -860,7.0,16.428938283512196,30.0,3.948473380890209e-11,39.997496512019,0.9615340914428904,-19.009313289389677,0.0,1.0,0.0 -860,8.0,0.0,0.0,0.0,0.0,0.9830080115061892,-20.173294678447785,1.0,0.0,0.0 -860,9.0,3.176261401479024,2.0,0.0,0.0,0.9845812641206224,-21.04722461637597,1.0,0.0,0.0 -860,10.0,0.0,0.0,0.0,0.0,0.9830080115061892,-20.173294678447785,0.0,1.0,0.0 -860,11.0,6.133470292511218,7.5,0.0,0.0,1.0126182452449195,-20.6011483395966,1.0,0.0,0.0 -860,12.0,0.0,0.0,8.175811963197907e-11,22.283119244067997,1.0425416231224016,-20.601148339590384,0.0,1.0,0.0 -860,13.0,3.3953139119258533,1.6,0.0,0.0,1.004358017257759,-20.97967517191797,1.0,0.0,0.0 -860,14.0,4.490576464159999,2.5,0.0,0.0,0.9913275496440368,-21.13873657355572,1.0,0.0,0.0 -860,15.0,1.916709466409756,1.8,0.0,0.0,0.9942893888341652,-20.85596399433464,1.0,0.0,0.0 -860,16.0,4.928681485053658,5.8,0.0,0.0,0.9831794272499246,-21.100329271897948,1.0,0.0,0.0 -860,17.0,1.752420083574634,0.9,0.0,0.0,0.9796359919123416,-21.46058410512877,1.0,0.0,0.0 -860,18.0,5.202497123112194,3.4,0.0,0.0,0.9750443731663678,-21.55187926213454,1.0,0.0,0.0 -860,19.0,1.204788807457561,0.7,0.0,0.0,0.9768062637934468,-21.45627832167777,1.0,0.0,0.0 -860,20.0,9.58354733204878,11.2,0.0,0.0,0.9749020957609827,-21.238377988904308,1.0,0.0,0.0 -860,21.0,0.0,0.0,0.0,0.0,0.9756513597345916,-21.23784328339756,1.0,0.0,0.0 -860,22.0,1.752420083574634,1.6,0.0,0.0,0.9792167317384448,-21.33088026530357,1.0,0.0,0.0 -860,23.0,4.764392102218535,6.7,0.0,0.0,0.9698737968667724,-21.439438382582225,1.0,0.0,0.0 -860,24.0,0.0,0.0,0.0,0.0,0.9662666742029244,-21.273046146878876,1.0,0.0,0.0 -860,25.0,1.916709466409756,2.3,0.0,0.0,0.9519623010347814,-21.3622613414912,1.0,0.0,0.0 -860,26.0,0.0,0.0,0.0,0.0,0.9712156469856904,-21.08344640354122,1.0,0.0,0.0 -860,27.0,0.0,0.0,0.0,0.0,0.957376649580894,-18.87777132005776,1.0,0.0,0.0 -860,28.0,1.3143150626809754,0.9,0.0,0.0,0.9571870971935692,-21.73982952957679,1.0,0.0,0.0 -860,29.0,5.804891526840974,1.9,0.0,0.0,0.949536348447553,-22.23316170272728,1.0,0.0,0.0 -861,0.0,0.0,0.0,162.42589551929294,0.0012820575380878,1.0,0.0,0.0,0.0,1.0 -861,1.0,11.883598691740486,12.7,3.29576278864734e-06,-4.693649442154587,0.979324426968512,-3.7037069191376415,0.0,1.0,0.0 -861,2.0,1.3143150626809754,1.2,0.0,0.0,0.9767214831041054,-4.946024226033594,1.0,0.0,0.0 -861,3.0,4.161997698489755,1.6,0.0,0.0,0.970697834324374,-6.07815631374487,1.0,0.0,0.0 -861,4.0,51.58686621022829,19.0,-2.616032938684925e-09,39.1427399455532,0.9771860796362478,-9.140908811398925,0.0,1.0,0.0 -861,5.0,0.0,0.0,0.0,0.0,0.9714166911039328,-7.115462172762306,1.0,0.0,0.0 -861,6.0,12.485993095469269,10.9,0.0,0.0,0.9673911331197518,-8.211154513854968,1.0,0.0,0.0 -861,7.0,16.428938283512196,30.0,-3.752721483958618e-09,39.99914390173078,0.9740332015749388,-7.589784451266008,0.0,1.0,0.0 -861,8.0,0.0,0.0,0.0,0.0,0.9981835054678588,-8.832959343815636,1.0,0.0,0.0 -861,9.0,3.176261401479024,2.0,0.0,0.0,1.0011425138500158,-9.73400965797202,1.0,0.0,0.0 -861,10.0,0.0,0.0,0.0,0.0,0.9981835054678588,-8.832959343815636,0.0,1.0,0.0 -861,11.0,6.133470292511218,7.5,0.0,0.0,1.0235457606798273,-10.013358881611632,1.0,0.0,0.0 -861,12.0,0.0,0.0,-4.396329110941628e-09,23.999738611517586,1.0553822208663033,-10.013358881938087,0.0,1.0,0.0 -861,13.0,3.3953139119258533,1.6,0.0,0.0,1.0079295799014816,-10.577085398763662,1.0,0.0,0.0 -861,14.0,4.490576464159999,2.5,0.0,0.0,0.9994348758478402,-10.599371786870783,1.0,0.0,0.0 -861,15.0,1.916709466409756,1.8,0.0,0.0,1.0082006247845754,-9.969441077757232,1.0,0.0,0.0 -861,16.0,4.928681485053658,5.8,0.0,0.0,0.9988240187624572,-9.914371747465305,1.0,0.0,0.0 -861,17.0,1.752420083574634,0.9,0.0,0.0,0.9820653581478036,-11.217167412653357,1.0,0.0,0.0 -861,18.0,5.202497123112194,3.4,0.0,0.0,0.974132131200521,-11.489615933108064,1.0,0.0,0.0 -861,19.0,1.204788807457561,0.7,0.0,0.0,0.9985463219264764,-9.840774189482842,1.0,0.0,0.0 -861,20.0,9.58354733204878,11.2,0.0,0.0,0.9685669767378726,-10.494098540043614,1.0,0.0,0.0 -861,21.0,0.0,0.0,0.0,0.0,0.972444233949314,-10.435547201349737,1.0,0.0,0.0 -861,22.0,1.752420083574634,1.6,0.0,0.0,0.9823687242276672,-10.76373775612388,1.0,0.0,0.0 -861,23.0,4.764392102218535,6.7,0.0,0.0,0.9663909315394432,-10.83898494907482,1.0,0.0,0.0 -861,24.0,0.0,0.0,0.0,0.0,0.9544868499768956,-10.962383733125115,1.0,0.0,0.0 -861,25.0,1.916709466409756,2.3,0.0,0.0,0.940000417989818,-11.053849291036208,1.0,0.0,0.0 -861,26.0,0.0,0.0,0.0,0.0,0.9905219418860352,-9.068865947669003,1.0,0.0,0.0 -861,27.0,0.0,0.0,0.0,0.0,0.9707705391639688,-7.42039741879926,1.0,0.0,0.0 -861,28.0,1.3143150626809754,0.9,0.0,0.0,0.9767830088798966,-9.699561517654884,1.0,0.0,0.0 -861,29.0,5.804891526840974,1.9,0.0,0.0,0.969290632165558,-10.173164393694632,1.0,0.0,0.0 -862,0.0,0.0,0.0,139.28526533466456,5.707436789847975e-05,1.0,0.0,0.0,0.0,1.0 -862,1.0,11.883598691740486,12.7,24.48506677683489,10.067772891151122,0.9734880598651844,-4.611825112069457,0.0,1.0,0.0 -862,2.0,1.3143150626809754,1.2,0.0,0.0,1.0007950838071489,-0.1461254564992808,1.0,0.0,0.0 -862,3.0,4.161997698489755,1.6,0.0,0.0,0.9457506948140072,-9.43474786680888,1.0,0.0,0.0 -862,4.0,51.58686621022829,19.0,6.54989026694038e-10,32.0037131118476,0.9568259337583862,-11.035711349982918,0.0,1.0,0.0 -862,5.0,0.0,0.0,0.0,0.0,0.9507004429229168,-10.044687663594049,1.0,0.0,0.0 -862,6.0,12.485993095469269,10.9,0.0,0.0,0.946472936744888,-10.7270595053465,1.0,0.0,0.0 -862,7.0,16.428938283512196,30.0,1.1293984479997856e-09,39.99914391040327,0.953122279307164,-10.55244776119042,0.0,1.0,0.0 -862,8.0,0.0,0.0,0.0,0.0,0.9938161156259115,-12.106200729782062,1.0,0.0,0.0 -862,9.0,3.176261401479024,2.0,0.0,0.0,0.9804731503628388,-13.186929275042088,1.0,0.0,0.0 -862,10.0,0.0,0.0,1.8161464651775602e-09,23.99950453152961,1.0417351747454977,-12.106200729572995,0.0,1.0,0.0 -862,11.0,6.133470292511218,7.5,0.0,0.0,0.9767812046893014,-12.633092254575518,1.0,0.0,0.0 -862,12.0,0.0,0.0,0.0,0.0,0.9767812046893014,-12.633092254575518,0.0,1.0,0.0 -862,13.0,3.3953139119258533,1.6,0.0,0.0,0.9498952171243364,-13.562177644302688,1.0,0.0,0.0 -862,14.0,4.490576464159999,2.5,0.0,0.0,0.9611644690049904,-13.358571848541896,1.0,0.0,0.0 -862,15.0,1.916709466409756,1.8,0.0,0.0,0.9719781760148236,-13.008875260021952,1.0,0.0,0.0 -862,16.0,4.928681485053658,5.8,0.0,0.0,0.9733430595422464,-13.224111551116048,1.0,0.0,0.0 -862,17.0,1.752420083574634,0.9,0.0,0.0,0.9584708778204276,-13.671190911356645,1.0,0.0,0.0 -862,18.0,5.202497123112194,3.4,0.0,0.0,0.95925807848624,-13.75114453461218,1.0,0.0,0.0 -862,19.0,1.204788807457561,0.7,0.0,0.0,0.963926521998292,-13.645603737678696,1.0,0.0,0.0 -862,20.0,9.58354733204878,11.2,0.0,0.0,0.9683603645094816,-13.38489398430914,1.0,0.0,0.0 -862,21.0,0.0,0.0,0.0,0.0,0.9707853886536908,-13.358681128098956,1.0,0.0,0.0 -862,22.0,1.752420083574634,1.6,0.0,0.0,0.956856741512539,-13.48555245338246,1.0,0.0,0.0 -862,23.0,4.764392102218535,6.7,0.0,0.0,0.9580625117122492,-13.49339258447802,1.0,0.0,0.0 -862,24.0,0.0,0.0,0.0,0.0,0.955976980385525,-13.165621690232802,1.0,0.0,0.0 -862,25.0,1.916709466409756,2.3,0.0,0.0,0.9415138382051572,-13.256797880921276,1.0,0.0,0.0 -862,26.0,0.0,0.0,0.0,0.0,0.9619029907550264,-12.872562003534844,1.0,0.0,0.0 -862,27.0,0.0,0.0,0.0,0.0,0.948780528725126,-10.437402153277992,1.0,0.0,0.0 -862,28.0,1.3143150626809754,0.9,0.0,0.0,0.9477301983033912,-13.541903651191216,1.0,0.0,0.0 -862,29.0,5.804891526840974,1.9,0.0,0.0,0.9400005612849622,-14.04520220037415,1.0,0.0,0.0 -863,0.0,0.0,0.0,138.00000072138712,0.0001076453076009,1.0,0.0,0.0,0.0,1.0 -863,1.0,11.883598691740486,12.7,26.97386878678568,9.75423402946018,0.9751783929006316,-4.637421100915448,0.0,1.0,0.0 -863,2.0,1.3143150626809754,1.2,0.0,0.0,0.9543920581448742,-9.424238630809668,1.0,0.0,0.0 -863,3.0,4.161997698489755,1.6,0.0,0.0,0.9548985394846778,-9.39970554009506,1.0,0.0,0.0 -863,4.0,51.58686621022829,19.0,-6.025279348357169e-10,22.94449602555156,0.95562772938349,-11.11047368243103,0.0,1.0,0.0 -863,5.0,0.0,0.0,0.0,0.0,0.9524336600725196,-10.412257387878702,1.0,0.0,0.0 -863,6.0,12.485993095469269,10.9,0.0,0.0,0.9400001006151972,-10.89408073712552,1.0,0.0,0.0 -863,7.0,16.428938283512196,30.0,1.2878890132063484e-09,39.99991230729867,0.9547535751554236,-10.961233322002158,0.0,1.0,0.0 -863,8.0,0.0,0.0,0.0,0.0,0.9952110033487412,-15.44068113070448,1.0,0.0,0.0 -863,9.0,3.176261401479024,2.0,0.0,0.0,0.9842112486990902,-18.069517224677785,1.0,0.0,0.0 -863,10.0,0.0,0.0,5.479535740449686e-11,23.99992438187121,1.0430695958280505,-15.440681130698186,0.0,1.0,0.0 -863,11.0,6.133470292511218,7.5,0.0,0.0,0.9614680811821456,-23.10993697131346,1.0,0.0,0.0 -863,12.0,0.0,0.0,-5.823942935814921e-10,20.873240011240096,0.9909572797705084,-23.10993697136249,0.0,1.0,0.0 -863,13.0,3.3953139119258533,1.6,0.0,0.0,0.9510775658716072,-22.882008177212235,1.0,0.0,0.0 -863,14.0,4.490576464159999,2.5,0.0,0.0,0.9538265427736876,-22.206683289098773,1.0,0.0,0.0 -863,15.0,1.916709466409756,1.8,0.0,0.0,0.970728939001996,-18.433690755511247,1.0,0.0,0.0 -863,16.0,4.928681485053658,5.8,0.0,0.0,0.9753334459832216,-18.26771688084953,1.0,0.0,0.0 -863,17.0,1.752420083574634,0.9,0.0,0.0,0.9547426972815268,-21.107511019654872,1.0,0.0,0.0 -863,18.0,5.202497123112194,3.4,0.0,0.0,0.957893358441939,-20.35373721529175,1.0,0.0,0.0 -863,19.0,1.204788807457561,0.7,0.0,0.0,0.9639307501062512,-19.81260286972898,1.0,0.0,0.0 -863,20.0,9.58354733204878,11.2,0.0,0.0,0.967576868426931,-18.468071868154027,1.0,0.0,0.0 -863,21.0,0.0,0.0,0.0,0.0,0.966122858765682,-18.531453344796308,1.0,0.0,0.0 -863,22.0,1.752420083574634,1.6,0.0,0.0,0.9503756488025116,-20.88945616119296,1.0,0.0,0.0 -863,23.0,4.764392102218535,6.7,0.0,0.0,0.953481142457586,-18.96791827560459,1.0,0.0,0.0 -863,24.0,0.0,0.0,0.0,0.0,0.9586493837550766,-16.784827628829753,1.0,0.0,0.0 -863,25.0,1.916709466409756,2.3,0.0,0.0,0.9442278196562968,-16.875488317193657,1.0,0.0,0.0 -863,26.0,0.0,0.0,0.0,0.0,0.9690466492700398,-15.35147013266608,1.0,0.0,0.0 -863,27.0,0.0,0.0,0.0,0.0,0.9498598028412146,-11.052464314432877,1.0,0.0,0.0 -863,28.0,1.3143150626809754,0.9,0.0,0.0,0.9549847747725316,-16.01083739932262,1.0,0.0,0.0 -863,29.0,5.804891526840974,1.9,0.0,0.0,0.94731580098987,-16.506463859704613,1.0,0.0,0.0 -864,0.0,0.0,0.0,116.9648975151908,2.554259914688828e-06,1.0,0.0,0.0,0.0,1.0 -864,1.0,11.883598691740486,12.7,43.53661155462933,14.30732216761757,0.9852942256317622,-2.4170530745812986,0.0,1.0,0.0 -864,2.0,1.3143150626809754,1.2,0.0,0.0,0.979491331352825,-4.183883917531897,1.0,0.0,0.0 -864,3.0,4.161997698489755,1.6,0.0,0.0,0.9740183561634606,-5.131391370440392,1.0,0.0,0.0 -864,4.0,51.58686621022829,19.0,0.0,0.0,0.9400000008951416,-7.399286038237399,0.0,1.0,0.0 -864,5.0,0.0,0.0,0.0,0.0,0.9725654843324448,-6.132701721299292,1.0,0.0,0.0 -864,6.0,12.485993095469269,10.9,0.0,0.0,0.9526335435733796,-6.947456832136566,1.0,0.0,0.0 -864,7.0,16.428938283512196,30.0,-5.256939264098744e-09,39.99999460029537,0.9750788948686652,-6.616650753822571,0.0,1.0,0.0 -864,8.0,0.0,0.0,0.0,0.0,1.0214137152134426,-7.910376021174027,1.0,0.0,0.0 -864,9.0,3.176261401479024,2.0,0.0,0.0,1.0156548937875245,-8.830750089805086,1.0,0.0,0.0 -864,10.0,0.0,0.0,-1.0436504193655732e-08,19.664154553508816,1.0599999814284475,-7.910376022322797,0.0,1.0,0.0 -864,11.0,6.133470292511218,7.5,0.0,0.0,1.035051849574349,-8.468783152433167,1.0,0.0,0.0 -864,12.0,0.0,0.0,-1.1588633492474932e-08,18.889292113217007,1.059999971894798,-8.468783153280421,0.0,1.0,0.0 -864,13.0,3.3953139119258533,1.6,0.0,0.0,1.02402257867134,-8.901319725188374,1.0,0.0,0.0 -864,14.0,4.490576464159999,2.5,0.0,0.0,1.020690587667715,-8.904604509797549,1.0,0.0,0.0 -864,15.0,1.916709466409756,1.8,0.0,0.0,1.0206641945659172,-8.701310799661622,1.0,0.0,0.0 -864,16.0,4.928681485053658,5.8,0.0,0.0,1.0128987243996823,-8.891540326880373,1.0,0.0,0.0 -864,17.0,1.752420083574634,0.9,0.0,0.0,1.0098839183390895,-9.212087375437845,1.0,0.0,0.0 -864,18.0,5.202497123112194,3.4,0.0,0.0,1.0057460298091188,-9.300553569489365,1.0,0.0,0.0 -864,19.0,1.204788807457561,0.7,0.0,0.0,1.0076193016961517,-9.212125230563958,1.0,0.0,0.0 -864,20.0,9.58354733204878,11.2,0.0,0.0,1.0044956287404831,-9.018262597376909,1.0,0.0,0.0 -864,21.0,0.0,0.0,0.0,0.0,1.004659982383063,-9.019523955536895,1.0,0.0,0.0 -864,22.0,1.752420083574634,1.6,0.0,0.0,1.015781822046894,-9.011807061408824,1.0,0.0,0.0 -864,23.0,4.764392102218535,6.7,0.0,0.0,0.9915213770919457,-9.187064582624778,1.0,0.0,0.0 -864,24.0,0.0,0.0,0.0,0.0,0.9856787935996506,-8.914318159955375,1.0,0.0,0.0 -864,25.0,1.916709466409756,2.3,0.0,0.0,0.9716645122323054,-9.000002964413007,1.0,0.0,0.0 -864,26.0,0.0,0.0,0.0,0.0,0.9890575332835618,-8.66451883842704,1.0,0.0,0.0 -864,27.0,0.0,0.0,0.0,0.0,0.9713044637136372,-6.4979022435530895,1.0,0.0,0.0 -864,28.0,1.3143150626809754,0.9,0.0,0.0,0.9752970640489634,-9.29710926377324,1.0,0.0,0.0 -864,29.0,5.804891526840974,1.9,0.0,0.0,0.9677929116680106,-9.77216625974074,1.0,0.0,0.0 -865,0.0,0.0,0.0,162.16794468041286,0.0005804728418823,1.0,0.0,0.0,0.0,1.0 -865,1.0,11.883598691740486,12.7,7.742769237065465e-07,0.4121428906802649,0.9788702280424914,-3.699546355280946,0.0,1.0,0.0 -865,2.0,1.3143150626809754,1.2,0.0,0.0,0.9780970293286352,-4.926534117783748,1.0,0.0,0.0 -865,3.0,4.161997698489755,1.6,0.0,0.0,0.9723898606179848,-6.053293802556231,1.0,0.0,0.0 -865,4.0,51.58686621022829,19.0,1.0022331459647622e-10,25.509228102654404,0.9626327853252244,-8.990048464159187,0.0,1.0,0.0 -865,5.0,0.0,0.0,0.0,0.0,0.9705188298963392,-7.20753415688432,1.0,0.0,0.0 -865,6.0,12.485993095469269,10.9,0.0,0.0,0.9608231825068904,-8.213203797342494,1.0,0.0,0.0 -865,7.0,16.428938283512196,30.0,3.95294382643234e-10,34.08548260772944,0.9709322138620896,-7.64615182171883,0.0,1.0,0.0 -865,8.0,0.0,0.0,0.0,0.0,1.014474769824388,-9.401320644061297,1.0,0.0,0.0 -865,9.0,3.176261401479024,2.0,0.0,0.0,1.0026854075037632,-10.549334322841268,1.0,0.0,0.0 -865,10.0,0.0,0.0,8.966250474268594e-10,23.200094406134124,1.0599995046502602,-9.401320643961933,0.0,1.0,0.0 -865,11.0,6.133470292511218,7.5,0.0,0.0,1.0394225559072108,-9.002506397741275,1.0,0.0,0.0 -865,12.0,0.0,0.0,-5.140336427841996e-10,15.326115007974792,1.0596708814827345,-9.00250639777871,0.0,1.0,0.0 -865,13.0,3.3953139119258533,1.6,0.0,0.0,1.0283674409853203,-9.490692735039682,1.0,0.0,0.0 -865,14.0,4.490576464159999,2.5,0.0,0.0,1.0245614422974187,-9.550938980806873,1.0,0.0,0.0 -865,15.0,1.916709466409756,1.8,0.0,0.0,0.9894576097661736,-10.90001486764941,1.0,0.0,0.0 -865,16.0,4.928681485053658,5.8,0.0,0.0,0.993974811766501,-10.740236415283205,1.0,0.0,0.0 -865,17.0,1.752420083574634,0.9,0.0,0.0,1.0076693370591447,-10.227652872924438,1.0,0.0,0.0 -865,18.0,5.202497123112194,3.4,0.0,0.0,0.9999693374160254,-10.54054768088247,1.0,0.0,0.0 -865,19.0,1.204788807457561,0.7,0.0,0.0,0.9999843990533698,-10.569374806963598,1.0,0.0,0.0 -865,20.0,9.58354733204878,11.2,0.0,0.0,0.9893568822847384,-10.820157326590357,1.0,0.0,0.0 -865,21.0,0.0,0.0,0.0,0.0,0.98887996553702,-10.845822349091486,1.0,0.0,0.0 -865,22.0,1.752420083574634,1.6,0.0,0.0,0.9594738141069448,-11.458398314739636,1.0,0.0,0.0 -865,23.0,4.764392102218535,6.7,0.0,0.0,0.9663910375225782,-11.296530212284123,1.0,0.0,0.0 -865,24.0,0.0,0.0,0.0,0.0,0.9544869576197772,-11.419928977894696,1.0,0.0,0.0 -865,25.0,1.916709466409756,2.3,0.0,0.0,0.9400005276120872,-11.511394542783195,1.0,0.0,0.0 -865,26.0,0.0,0.0,0.0,0.0,0.988697170736338,-9.168835283306557,1.0,0.0,0.0 -865,27.0,0.0,0.0,0.0,0.0,0.9693175559945486,-7.505843496762707,1.0,0.0,0.0 -865,28.0,1.3143150626809754,0.9,0.0,0.0,0.9819423935141391,-9.374221966360295,1.0,0.0,0.0 -865,29.0,5.804891526840974,1.9,0.0,0.0,0.9568422159040167,-10.919563449301366,1.0,0.0,0.0 -866,0.0,0.0,0.0,162.1575153681676,0.0011584906886241,1.0,0.0,0.0,0.0,1.0 -866,1.0,11.883598691740486,12.7,1.4274348325207942e-06,8.422661232297884,0.9799872538283128,-3.71344789917633,0.0,1.0,0.0 -866,2.0,1.3143150626809754,1.2,0.0,0.0,0.974901366277138,-4.900322123046798,1.0,0.0,0.0 -866,3.0,4.161997698489755,1.6,0.0,0.0,0.9684479592221804,-6.0223062199026165,1.0,0.0,0.0 -866,4.0,51.58686621022829,19.0,1.7395744270971752e-10,23.932781768028747,0.9604910887682264,-8.941708419641138,0.0,1.0,0.0 -866,5.0,0.0,0.0,0.0,0.0,0.9684145952497272,-7.127988622534592,1.0,0.0,0.0 -866,6.0,12.485993095469269,10.9,0.0,0.0,0.9586877967072518,-8.147503216450708,1.0,0.0,0.0 -866,7.0,16.428938283512196,30.0,5.977695446193212e-10,33.736773221159424,0.966891050693078,-7.788843793473715,0.0,1.0,0.0 -866,8.0,0.0,0.0,0.0,0.0,1.0174719457736332,-8.969712460915572,1.0,0.0,0.0 -866,9.0,3.176261401479024,2.0,0.0,0.0,1.009857421122218,-9.924620575158876,1.0,0.0,0.0 -866,10.0,0.0,0.0,1.8318851116011935e-09,21.630551664707987,1.0599200052858768,-8.969712460713138,0.0,1.0,0.0 -866,11.0,6.133470292511218,7.5,0.0,0.0,1.016155490805522,-9.55986158967822,1.0,0.0,0.0 -866,12.0,0.0,0.0,8.728529086534028e-10,11.96505834867074,1.0323811662019122,-9.559861589611485,0.0,1.0,0.0 -866,13.0,3.3953139119258533,1.6,0.0,0.0,1.0041458591847217,-10.05778104519372,1.0,0.0,0.0 -866,14.0,4.490576464159999,2.5,0.0,0.0,0.9996742758682424,-10.09206337228498,1.0,0.0,0.0 -866,15.0,1.916709466409756,1.8,0.0,0.0,1.0073585211298215,-9.823866606317155,1.0,0.0,0.0 -866,16.0,4.928681485053658,5.8,0.0,0.0,1.0047129366767276,-9.986978110357136,1.0,0.0,0.0 -866,17.0,1.752420083574634,0.9,0.0,0.0,0.9941017153279782,-10.379249486655466,1.0,0.0,0.0 -866,18.0,5.202497123112194,3.4,0.0,0.0,0.9930980668094316,-10.451864109588472,1.0,0.0,0.0 -866,19.0,1.204788807457561,0.7,0.0,0.0,0.9966769504338888,-10.35206572868979,1.0,0.0,0.0 -866,20.0,9.58354733204878,11.2,0.0,0.0,0.977305582054904,-10.525394122929995,1.0,0.0,0.0 -866,21.0,0.0,0.0,0.0,0.0,0.9811481617351812,-10.467881096826131,1.0,0.0,0.0 -866,22.0,1.752420083574634,1.6,0.0,0.0,0.9862521710261144,-10.399855995442891,1.0,0.0,0.0 -866,23.0,4.764392102218535,6.7,0.0,0.0,0.9751469033742634,-10.669726914243927,1.0,0.0,0.0 -866,24.0,0.0,0.0,0.0,0.0,0.9684541227469085,-10.705243469459251,1.0,0.0,0.0 -866,25.0,1.916709466409756,2.3,0.0,0.0,0.954183046676493,-10.79404998878967,1.0,0.0,0.0 -866,26.0,0.0,0.0,0.0,0.0,0.9715438987881244,-10.645378292046628,1.0,0.0,0.0 -866,27.0,0.0,0.0,0.0,0.0,0.9564885814341846,-8.711426398813243,1.0,0.0,0.0 -866,28.0,1.3143150626809754,0.9,0.0,0.0,0.957520378179964,-11.301311579848084,1.0,0.0,0.0 -866,29.0,5.804891526840974,1.9,0.0,0.0,0.9498723798277372,-11.794297946549593,1.0,0.0,0.0 -867,0.0,0.0,0.0,131.96346018916384,2.000875021224146e-06,1.0,0.0,0.0,0.0,1.0 -867,1.0,11.883598691740486,12.7,31.41689127002141,4.71628684241383,0.9745603487876406,-4.358466755440508,0.0,1.0,0.0 -867,2.0,1.3143150626809754,1.2,0.0,0.0,1.0007950838009083,-0.146125456500986,1.0,0.0,0.0 -867,3.0,4.161997698489755,1.6,0.0,0.0,0.9470894153912586,-9.145759825044502,1.0,0.0,0.0 -867,4.0,51.58686621022829,19.0,-2.2935168273043625e-08,39.999997173440974,0.966210862059295,-10.877375753783683,0.0,1.0,0.0 -867,5.0,0.0,0.0,0.0,0.0,0.9520025848297634,-9.762870119140654,1.0,0.0,0.0 -867,6.0,12.485993095469269,10.9,0.0,0.0,0.9511436561303004,-10.488291605740368,1.0,0.0,0.0 -867,7.0,16.428938283512196,30.0,-2.5078319197184284e-08,39.99999866445052,0.9544795027687828,-10.27673231694202,0.0,1.0,0.0 -867,8.0,0.0,0.0,0.0,0.0,0.9949745975738216,-11.868455405816388,1.0,0.0,0.0 -867,9.0,3.176261401479024,2.0,0.0,0.0,0.9815892621652136,-12.972536009372677,1.0,0.0,0.0 -867,10.0,0.0,0.0,-2.6865369051247685e-08,23.99999886959129,1.0428437052799922,-11.868455408902044,0.0,1.0,0.0 -867,11.0,6.133470292511218,7.5,0.0,0.0,0.9781825594528204,-12.252840575961764,1.0,0.0,0.0 -867,12.0,0.0,0.0,0.0,0.0,0.9781825594528204,-12.252840575961764,0.0,1.0,0.0 -867,13.0,3.3953139119258533,1.6,0.0,0.0,0.9688062539871888,-12.673031166356033,1.0,0.0,0.0 -867,14.0,4.490576464159999,2.5,0.0,0.0,0.9679256129733704,-12.667729776025704,1.0,0.0,0.0 -867,15.0,1.916709466409756,1.8,0.0,0.0,0.9731524475764192,-12.699160219697193,1.0,0.0,0.0 -867,16.0,4.928681485053658,5.8,0.0,0.0,0.9745164069075396,-12.980000530416929,1.0,0.0,0.0 -867,17.0,1.752420083574634,0.9,0.0,0.0,0.954637696286799,-14.03240981356086,1.0,0.0,0.0 -867,18.0,5.202497123112194,3.4,0.0,0.0,0.9570303921925668,-13.926485636744523,1.0,0.0,0.0 -867,19.0,1.204788807457561,0.7,0.0,0.0,0.9625674501479832,-13.723269229737992,1.0,0.0,0.0 -867,20.0,9.58354733204878,11.2,0.0,0.0,0.9705535368798716,-13.130969260806488,1.0,0.0,0.0 -867,21.0,0.0,0.0,0.0,0.0,0.9708916798587144,-13.118894074763563,1.0,0.0,0.0 -867,22.0,1.752420083574634,1.6,0.0,0.0,0.9614897436435887,-12.93401571812934,1.0,0.0,0.0 -867,23.0,4.764392102218535,6.7,0.0,0.0,0.9598567055108924,-13.131962972884152,1.0,0.0,0.0 -867,24.0,0.0,0.0,0.0,0.0,0.9566677225947838,-12.801658686284046,1.0,0.0,0.0 -867,25.0,1.916709466409756,2.3,0.0,0.0,0.9422153505030372,-12.892701210127376,1.0,0.0,0.0 -867,26.0,0.0,0.0,0.0,0.0,0.9619024443076094,-12.508252569345148,1.0,0.0,0.0 -867,27.0,0.0,0.0,0.0,0.0,0.9477560306838976,-10.101219192262606,1.0,0.0,0.0 -867,28.0,1.3143150626809754,0.9,0.0,0.0,0.9477296433024864,-13.177594988667256,1.0,0.0,0.0 -867,29.0,5.804891526840974,1.9,0.0,0.0,0.940000001605806,-13.680894131608255,1.0,0.0,0.0 -868,0.0,0.0,0.0,171.04571094309188,0.0017219158912951,1.0,0.0,0.0,0.0,1.0 -868,1.0,11.883598691740486,12.7,1.755038810251007e-06,8.037315563514213,0.9782007806773176,-4.270905259074841,0.0,1.0,0.0 -868,2.0,1.3143150626809754,1.2,0.0,0.0,0.9753524981109332,-4.181773387543676,1.0,0.0,0.0 -868,3.0,4.161997698489755,1.6,0.0,0.0,0.9689179464727952,-5.129849410955142,1.0,0.0,0.0 -868,4.0,51.58686621022829,19.0,6.667412408080755e-09,39.977438147690776,0.940002713120508,-23.94986652618519,0.0,1.0,0.0 -868,5.0,0.0,0.0,0.0,0.0,0.9542806429888356,-15.833520907295242,1.0,0.0,0.0 -868,6.0,12.485993095469269,10.9,0.0,0.0,0.9411906791219056,-19.41800202307939,1.0,0.0,0.0 -868,7.0,16.428938283512196,30.0,7.521424352316292e-10,39.99821317388846,0.9567309831306496,-16.32342158225839,0.0,1.0,0.0 -868,8.0,0.0,0.0,0.0,0.0,1.0015110164043914,-16.48661874341665,1.0,0.0,0.0 -868,9.0,3.176261401479024,2.0,0.0,0.0,0.9900240369554244,-16.827020870910346,1.0,0.0,0.0 -868,10.0,0.0,0.0,-1.909048165688769e-09,23.998589349428336,1.049092215747523,-16.486618743633187,0.0,1.0,0.0 -868,11.0,6.133470292511218,7.5,0.0,0.0,1.0354607679310792,-11.483810620585803,1.0,0.0,0.0 -868,12.0,0.0,0.0,4.26696286118463e-09,18.57520205134312,1.059994188172482,-11.48381062027396,0.0,1.0,0.0 -868,13.0,3.3953139119258533,1.6,0.0,0.0,1.0039778172007536,-13.60196265646728,1.0,0.0,0.0 -868,14.0,4.490576464159999,2.5,0.0,0.0,0.9698182685356403,-14.885967201031807,1.0,0.0,0.0 -868,15.0,1.916709466409756,1.8,0.0,0.0,1.005479176172977,-13.751191824776956,1.0,0.0,0.0 -868,16.0,4.928681485053658,5.8,0.0,0.0,0.991226911023922,-15.975524604038435,1.0,0.0,0.0 -868,17.0,1.752420083574634,0.9,0.0,0.0,0.9672332542769604,-15.941265043267435,1.0,0.0,0.0 -868,18.0,5.202497123112194,3.4,0.0,0.0,0.9681703197853349,-16.463587295827146,1.0,0.0,0.0 -868,19.0,1.204788807457561,0.7,0.0,0.0,0.9728830540710152,-16.592737734710962,1.0,0.0,0.0 -868,20.0,9.58354733204878,11.2,0.0,0.0,0.9786427695150464,-17.091376296566665,1.0,0.0,0.0 -868,21.0,0.0,0.0,0.0,0.0,0.9788282310709454,-17.11427843268847,1.0,0.0,0.0 -868,22.0,1.752420083574634,1.6,0.0,0.0,0.9646491025536268,-15.004773646406784,1.0,0.0,0.0 -868,23.0,4.764392102218535,6.7,0.0,0.0,0.965055641945758,-17.5836961448097,1.0,0.0,0.0 -868,24.0,0.0,0.0,0.0,0.0,0.959829765671519,-17.854803290535155,1.0,0.0,0.0 -868,25.0,1.916709466409756,2.3,0.0,0.0,0.945426489063122,-17.945237678402968,1.0,0.0,0.0 -868,26.0,0.0,0.0,0.0,0.0,0.9639964227999318,-17.937717360539178,1.0,0.0,0.0 -868,27.0,0.0,0.0,0.0,0.0,0.9525760716187728,-16.141316105128393,1.0,0.0,0.0 -868,28.0,1.3143150626809754,0.9,0.0,0.0,0.949856320790354,-18.60411259541312,1.0,0.0,0.0 -868,29.0,5.804891526840974,1.9,0.0,0.0,0.9421445633068126,-19.10514426093404,1.0,0.0,0.0 -869,0.0,0.0,0.0,162.42636909310312,0.0057642527028001,1.0,0.0,0.0,0.0,1.0 -869,1.0,11.883598691740486,12.7,5.34925224146902e-06,10.783642631721094,0.98038857131307,-3.712719982204828,0.0,1.0,0.0 -869,2.0,1.3143150626809754,1.2,0.0,0.0,0.9736827321604784,-4.93401418534962,1.0,0.0,0.0 -869,3.0,4.161997698489755,1.6,0.0,0.0,0.966951435978935,-6.064746338682069,1.0,0.0,0.0 -869,4.0,51.58686621022829,19.0,4.3948105331233175e-09,25.11270700805835,0.9612897754814668,-8.913304266059413,0.0,1.0,0.0 -869,5.0,0.0,0.0,0.0,0.0,0.9672120439283606,-7.025141458498452,1.0,0.0,0.0 -869,6.0,12.485993095469269,10.9,0.0,0.0,0.9583087097282142,-8.074275731755291,1.0,0.0,0.0 -869,7.0,16.428938283512196,30.0,6.317609776445763e-09,31.235239696349325,0.9572371067181464,-10.236578321020293,0.0,1.0,0.0 -869,8.0,0.0,0.0,0.0,0.0,1.024468395809441,-7.025141457897384,1.0,0.0,0.0 -869,9.0,3.176261401479024,2.0,0.0,0.0,0.9901332692631004,-11.690433901166609,1.0,0.0,0.0 -869,10.0,0.0,0.0,5.109996050727015e-09,18.090293629675877,1.0599674215207595,-7.025141457336574,0.0,1.0,0.0 -869,11.0,6.133470292511218,7.5,0.0,0.0,1.0144109160490509,-10.549044863893968,1.0,0.0,0.0 -869,12.0,0.0,0.0,5.788316794801096e-09,17.04641180625458,1.0374151836790302,-10.549044863452774,0.0,1.0,0.0 -869,13.0,3.3953139119258533,1.6,0.0,0.0,1.000804954085038,-11.121353788978212,1.0,0.0,0.0 -869,14.0,4.490576464159999,2.5,0.0,0.0,0.9943150500511684,-11.191857487870658,1.0,0.0,0.0 -869,15.0,1.916709466409756,1.8,0.0,0.0,0.9972440683003758,-11.106431261340974,1.0,0.0,0.0 -869,16.0,4.928681485053658,5.8,0.0,0.0,0.9880808132375564,-11.616261065966633,1.0,0.0,0.0 -869,17.0,1.752420083574634,0.9,0.0,0.0,0.983510832843718,-11.717230251427717,1.0,0.0,0.0 -869,18.0,5.202497123112194,3.4,0.0,0.0,0.9794506248750277,-11.93152091796657,1.0,0.0,0.0 -869,19.0,1.204788807457561,0.7,0.0,0.0,0.9814708681098,-11.90228626174024,1.0,0.0,0.0 -869,20.0,9.58354733204878,11.2,0.0,0.0,0.9614609539792864,-12.015541783353296,1.0,0.0,0.0 -869,21.0,0.0,0.0,0.0,0.0,0.9653668749971068,-11.956125270249192,1.0,0.0,0.0 -869,22.0,1.752420083574634,1.6,0.0,0.0,0.9790745130787168,-11.519316039888867,1.0,0.0,0.0 -869,23.0,4.764392102218535,6.7,0.0,0.0,0.9656005540918088,-11.816136202141172,1.0,0.0,0.0 -869,24.0,0.0,0.0,0.0,0.0,0.9669604738740804,-11.22760055654894,1.0,0.0,0.0 -869,25.0,1.916709466409756,2.3,0.0,0.0,0.9526666787784928,-11.316685829326742,1.0,0.0,0.0 -869,26.0,0.0,0.0,0.0,0.0,0.974875346009398,-10.772867387489551,1.0,0.0,0.0 -869,27.0,0.0,0.0,0.0,0.0,0.9621655190301788,-8.065548155498421,1.0,0.0,0.0 -869,28.0,1.3143150626809754,0.9,0.0,0.0,0.9609026572955508,-11.42426141585906,1.0,0.0,0.0 -869,29.0,5.804891526840974,1.9,0.0,0.0,0.9532824576452552,-11.91375891656205,1.0,0.0,0.0 -870,0.0,0.0,0.0,162.6852685749891,0.0025414738864526,1.0,0.0,0.0,0.0,1.0 -870,1.0,11.883598691740486,12.7,2.5169643681812614e-06,11.544253237589343,0.9818191282138796,-3.4037968775808918,0.0,1.0,0.0 -870,2.0,1.3143150626809754,1.2,0.0,0.0,0.970888147332694,-5.857943782733815,1.0,0.0,0.0 -870,3.0,4.161997698489755,1.6,0.0,0.0,0.9636884097808872,-7.2144798898612,1.0,0.0,0.0 -870,4.0,51.58686621022829,19.0,1.0429430756658894e-09,26.3926930565068,0.9619786281597568,-9.622550193609664,0.0,1.0,0.0 -870,5.0,0.0,0.0,0.0,0.0,0.963836055978096,-8.757016990814423,1.0,0.0,0.0 -870,6.0,12.485993095469269,10.9,0.0,0.0,0.956415326244542,-9.388028478116208,1.0,0.0,0.0 -870,7.0,16.428938283512196,30.0,1.434325676364155e-09,34.252825562666374,0.964084807992557,-9.223637076859651,0.0,1.0,0.0 -870,8.0,0.0,0.0,0.0,0.0,1.022754330286046,-8.757016990413232,1.0,0.0,0.0 -870,9.0,3.176261401479024,2.0,0.0,0.0,0.9813476088042412,-13.180701259549387,1.0,0.0,0.0 -870,10.0,0.0,0.0,3.393144865429135e-09,18.976335167867266,1.0599912209043376,-8.75701699004022,0.0,1.0,0.0 -870,11.0,6.133470292511218,7.5,0.0,0.0,1.0091928657623417,-11.833478703821338,1.0,0.0,0.0 -870,12.0,0.0,0.0,2.3508925462797547e-09,15.985806080163044,1.030902131680481,-11.833478703640084,0.0,1.0,0.0 -870,13.0,3.3953139119258533,1.6,0.0,0.0,0.9960361522497192,-12.41502795986247,1.0,0.0,0.0 -870,14.0,4.490576464159999,2.5,0.0,0.0,0.9899915504118956,-12.5014988710831,1.0,0.0,0.0 -870,15.0,1.916709466409756,1.8,0.0,0.0,0.9902980946531388,-12.470944861613408,1.0,0.0,0.0 -870,16.0,4.928681485053658,5.8,0.0,0.0,0.9798711569314912,-13.07086459389856,1.0,0.0,0.0 -870,17.0,1.752420083574634,0.9,0.0,0.0,0.9775331403183132,-13.092781459307204,1.0,0.0,0.0 -870,18.0,5.202497123112194,3.4,0.0,0.0,0.972514922802779,-13.346163575974618,1.0,0.0,0.0 -870,19.0,1.204788807457561,0.7,0.0,0.0,0.974059404737982,-13.335556116617708,1.0,0.0,0.0 -870,20.0,9.58354733204878,11.2,0.0,0.0,0.971938912381165,-13.281336816182268,1.0,0.0,0.0 -870,21.0,0.0,0.0,0.0,0.0,0.9727957720229814,-13.251463019737294,1.0,0.0,0.0 -870,22.0,1.752420083574634,1.6,0.0,0.0,0.9781168608220354,-12.807778362698626,1.0,0.0,0.0 -870,23.0,4.764392102218535,6.7,0.0,0.0,0.9691293332122242,-13.07125262898094,1.0,0.0,0.0 -870,24.0,0.0,0.0,0.0,0.0,0.9690253484096708,-12.409181808745378,1.0,0.0,0.0 -870,25.0,1.916709466409756,2.3,0.0,0.0,0.954762941554074,-12.497882070574152,1.0,0.0,0.0 -870,26.0,0.0,0.0,0.0,0.0,0.9760007464602394,-11.91052264675956,1.0,0.0,0.0 -870,27.0,0.0,0.0,0.0,0.0,0.961339106735131,-9.179618203487658,1.0,0.0,0.0 -870,28.0,1.3143150626809754,0.9,0.0,0.0,0.9620451437350448,-12.560393961407286,1.0,0.0,0.0 -870,29.0,5.804891526840974,1.9,0.0,0.0,0.9544342877700815,-13.048721358386604,1.0,0.0,0.0 -871,0.0,0.0,0.0,162.37523220319784,0.0005039475322377,1.0,0.0,0.0,0.0,1.0 -871,1.0,11.883598691740486,12.7,4.4597013028164185e-07,10.700213559226391,0.9794729125691946,-3.90571033279609,0.0,1.0,0.0 -871,2.0,1.3143150626809754,1.2,0.0,0.0,0.97563693267599,-4.371560809420777,1.0,0.0,0.0 -871,3.0,4.161997698489755,1.6,0.0,0.0,0.9692866989906596,-5.3654309109006615,1.0,0.0,0.0 -871,4.0,51.58686621022829,19.0,-1.1953082682181254e-09,36.36905001093234,0.958596423792665,-11.986907325561848,0.0,1.0,0.0 -871,5.0,0.0,0.0,0.0,0.0,0.970051102405308,-6.197504355466582,1.0,0.0,0.0 -871,6.0,12.485993095469269,10.9,0.0,0.0,0.9400917544486812,-12.615365527078565,1.0,0.0,0.0 -871,7.0,16.428938283512196,30.0,-1.6876097769635914e-10,28.3459938710281,0.9681989811935996,-6.612144076029305,0.0,1.0,0.0 -871,8.0,0.0,0.0,0.0,0.0,1.0131944905440189,-8.057531851732303,1.0,0.0,0.0 -871,9.0,3.176261401479024,2.0,0.0,0.0,1.0049863414911888,-9.02824028963019,1.0,0.0,0.0 -871,10.0,0.0,0.0,-6.536796282550883e-11,19.0152248186749,1.0508328895843169,-8.057531851739617,0.0,1.0,0.0 -871,11.0,6.133470292511218,7.5,0.0,0.0,1.0104363252229296,-8.649001005523722,1.0,0.0,0.0 -871,12.0,0.0,0.0,-9.26530915983082e-11,7.382312111660257,1.0205633176181157,-8.649001005530929,0.0,1.0,0.0 -871,13.0,3.3953139119258533,1.6,0.0,0.0,0.9995755654375224,-9.108236378494718,1.0,0.0,0.0 -871,14.0,4.490576464159999,2.5,0.0,0.0,0.996552675948349,-9.126966877375926,1.0,0.0,0.0 -871,15.0,1.916709466409756,1.8,0.0,0.0,1.00196633765167,-8.922238704605526,1.0,0.0,0.0 -871,16.0,4.928681485053658,5.8,0.0,0.0,0.99965881281191,-9.08929792274437,1.0,0.0,0.0 -871,17.0,1.752420083574634,0.9,0.0,0.0,0.990322365793496,-9.440746897713744,1.0,0.0,0.0 -871,18.0,5.202497123112194,3.4,0.0,0.0,0.988939040665947,-9.528558985270385,1.0,0.0,0.0 -871,19.0,1.204788807457561,0.7,0.0,0.0,0.9923343429419929,-9.4355451145258,1.0,0.0,0.0 -871,20.0,9.58354733204878,11.2,0.0,0.0,0.9944684114211712,-9.20625975052466,1.0,0.0,0.0 -871,21.0,0.0,0.0,0.0,0.0,0.9948758280425368,-9.203541718879569,1.0,0.0,0.0 -871,22.0,1.752420083574634,1.6,0.0,0.0,0.9886799209755072,-9.282252181938777,1.0,0.0,0.0 -871,23.0,4.764392102218535,6.7,0.0,0.0,0.9849151046786144,-9.34064532050641,1.0,0.0,0.0 -871,24.0,0.0,0.0,0.0,0.0,0.9801587750513504,-9.049469513009186,1.0,0.0,0.0 -871,25.0,1.916709466409756,2.3,0.0,0.0,0.9660632254218762,-9.136136478073944,1.0,0.0,0.0 -871,26.0,0.0,0.0,0.0,0.0,0.9842480803200352,-8.786157381050744,1.0,0.0,0.0 -871,27.0,0.0,0.0,0.0,0.0,0.9676222193048718,-6.553446229076756,1.0,0.0,0.0 -871,28.0,1.3143150626809754,0.9,0.0,0.0,0.9704163901394586,-9.425031703240364,1.0,0.0,0.0 -871,29.0,5.804891526840974,1.9,0.0,0.0,0.9628732940828532,-9.90491237890229,1.0,0.0,0.0 -872,0.0,0.0,0.0,162.0181676953488,0.000494023920261,1.0,0.0,0.0,0.0,1.0 -872,1.0,11.883598691740486,12.7,7.833598673822545e-07,8.873219427884464,0.9800377738262546,-3.7090071521848462,0.0,1.0,0.0 -872,2.0,1.3143150626809754,1.2,0.0,0.0,0.9748195377969204,-4.899750588525837,1.0,0.0,0.0 -872,3.0,4.161997698489755,1.6,0.0,0.0,0.9683470384822166,-6.021635980852971,1.0,0.0,0.0 -872,4.0,51.58686621022829,19.0,-7.26673452718417e-10,24.023876653857968,0.960407219310907,-8.928847694035674,0.0,1.0,0.0 -872,5.0,0.0,0.0,0.0,0.0,0.968022123998943,-7.100013847013803,1.0,0.0,0.0 -872,6.0,12.485993095469269,10.9,0.0,0.0,0.958420849008426,-8.125680896627497,1.0,0.0,0.0 -872,7.0,16.428938283512196,30.0,-3.3485064867294643e-10,29.374722157298574,0.9666004377479102,-7.521681467329868,0.0,1.0,0.0 -872,8.0,0.0,0.0,0.0,0.0,1.0174221447316631,-8.783795508264468,1.0,0.0,0.0 -872,9.0,3.176261401479024,2.0,0.0,0.0,1.0121033368605357,-9.654540331759792,1.0,0.0,0.0 -872,10.0,0.0,0.0,3.17697303800575e-10,19.4554007942881,1.055752376839007,-8.783795508229218,0.0,1.0,0.0 -872,11.0,6.133470292511218,7.5,0.0,0.0,1.0181349531740127,-9.677704972670483,1.0,0.0,0.0 -872,12.0,0.0,0.0,-7.150322904628674e-12,15.97218257318011,1.0396433442262294,-9.677704972671028,0.0,1.0,0.0 -872,13.0,3.3953139119258533,1.6,0.0,0.0,1.0043698155335574,-10.217161729591782,1.0,0.0,0.0 -872,14.0,4.490576464159999,2.5,0.0,0.0,0.9978982161483348,-10.25385045316106,1.0,0.0,0.0 -872,15.0,1.916709466409756,1.8,0.0,0.0,1.009720300726175,-9.775381392411235,1.0,0.0,0.0 -872,16.0,4.928681485053658,5.8,0.0,0.0,1.0069205248532558,-9.785616241359946,1.0,0.0,0.0 -872,17.0,1.752420083574634,0.9,0.0,0.0,0.9774566769497064,-10.986049116854144,1.0,0.0,0.0 -872,18.0,5.202497123112194,3.4,0.0,0.0,0.9677322354010014,-11.328785537282773,1.0,0.0,0.0 -872,19.0,1.204788807457561,0.7,0.0,0.0,0.966816023085468,-11.364380730407216,1.0,0.0,0.0 -872,20.0,9.58354733204878,11.2,0.0,0.0,1.0011241141180536,-9.864144418770506,1.0,0.0,0.0 -872,21.0,0.0,0.0,0.0,0.0,1.0013561630255017,-9.872193716039892,1.0,0.0,0.0 -872,22.0,1.752420083574634,1.6,0.0,0.0,0.9911716801436328,-10.268564816483067,1.0,0.0,0.0 -872,23.0,4.764392102218535,6.7,0.0,0.0,0.9888993786587552,-10.13781542453252,1.0,0.0,0.0 -872,24.0,0.0,0.0,0.0,0.0,0.9818853552327564,-9.86108470840676,1.0,0.0,0.0 -872,25.0,1.916709466409756,2.3,0.0,0.0,0.9678153277394892,-9.9474426525313,1.0,0.0,0.0 -872,26.0,0.0,0.0,0.0,0.0,0.9845643262767914,-9.60935647843426,1.0,0.0,0.0 -872,27.0,0.0,0.0,0.0,0.0,0.965983379973932,-7.452944957259983,1.0,0.0,0.0 -872,28.0,1.3143150626809754,0.9,0.0,0.0,0.9707373425236712,-10.247814717679404,1.0,0.0,0.0 -872,29.0,5.804891526840974,1.9,0.0,0.0,0.9631968200036436,-10.727375931244028,1.0,0.0,0.0 -873,0.0,0.0,0.0,114.05144796764152,2.033071488938276e-06,1.0,0.0,0.0,0.0,1.0 -873,1.0,11.618834431988253,12.7,43.18001178712782,16.493848434127308,0.9857719680482876,-2.359160828762244,0.0,1.0,0.0 -873,2.0,1.2850323795747378,1.2,0.0,0.0,0.9793540150908931,-4.068238471034071,1.0,0.0,0.0 -873,3.0,4.069269201986669,1.6,0.0,0.0,0.9738358096965984,-4.98863145254427,1.0,0.0,0.0 -873,4.0,50.437520898308456,19.0,0.0,0.0,0.9400000007066064,-7.228323919545517,0.0,1.0,0.0 -873,5.0,0.0,0.0,0.0,0.0,0.9711713722342352,-5.997111297668521,1.0,0.0,0.0 -873,6.0,12.207807605960008,10.9,0.0,0.0,0.951846371735186,-6.788929650747147,1.0,0.0,0.0 -873,7.0,16.06290474468422,30.0,-7.674209952342789e-10,39.999995628883845,0.9857041846316736,-9.392138187358183,0.0,1.0,0.0 -873,8.0,0.0,0.0,0.0,0.0,1.0182105980824254,-7.919653051917535,1.0,0.0,0.0 -873,9.0,3.105494917305616,2.0,0.0,0.0,1.009882877260304,-8.919265536503586,1.0,0.0,0.0 -873,10.0,0.0,0.0,-7.307306701561733e-09,21.296515165075103,1.059999986849326,-7.9196530527243985,0.0,1.0,0.0 -873,11.0,5.996817771348775,7.5,0.0,0.0,1.0381309142785449,-7.976487463847007,1.0,0.0,0.0 -873,12.0,0.0,0.0,-5.21547479761081e-09,16.55800134386957,1.0599999732099512,-7.976487464227183,0.0,1.0,0.0 -873,13.0,3.3196669805680723,1.6,0.0,0.0,1.0258022859855682,-8.453706507847095,1.0,0.0,0.0 -873,14.0,4.390527296880353,2.5,0.0,0.0,1.020703647521901,-8.48219164714715,1.0,0.0,0.0 -873,15.0,1.8740055535464928,1.8,0.0,0.0,0.9968251213592972,-9.252848807061133,1.0,0.0,0.0 -873,16.0,4.818871423405266,5.8,0.0,0.0,1.0012862095646764,-9.100123407315346,1.0,0.0,0.0 -873,17.0,1.7133765060996504,0.9,0.0,0.0,1.0169584893410617,-8.635532129144991,1.0,0.0,0.0 -873,18.0,5.086586502483336,3.4,0.0,0.0,0.9911922214910304,-9.5807770898288,1.0,0.0,0.0 -873,19.0,1.1779463479435095,0.7,0.0,0.0,0.9952722850976148,-9.447026927838422,1.0,0.0,0.0 -873,20.0,9.370027767732465,11.2,0.0,0.0,1.0017261153329784,-9.040619458779815,1.0,0.0,0.0 -873,21.0,0.0,0.0,0.0,0.0,1.0028391467701316,-9.024249192397628,1.0,0.0,0.0 -873,22.0,1.7133765060996504,1.6,0.0,0.0,1.0033589777621186,-8.905885906356719,1.0,0.0,0.0 -873,23.0,4.658242375958424,6.7,0.0,0.0,0.9869088774730128,-9.35134558143552,1.0,0.0,0.0 -873,24.0,0.0,0.0,0.0,0.0,0.9828636007952688,-9.219133514881923,1.0,0.0,0.0 -873,25.0,1.8740055535464928,2.3,0.0,0.0,0.9689220070585683,-9.295543765774145,1.0,0.0,0.0 -873,26.0,0.0,0.0,0.0,0.0,0.9873753928183532,-9.059468623692686,1.0,0.0,0.0 -873,27.0,0.0,0.0,0.0,0.0,0.9723984946262944,-7.011851098347324,1.0,0.0,0.0 -873,28.0,1.2850323795747378,0.9,0.0,0.0,0.9737690840128522,-9.675825610398132,1.0,0.0,0.0 -873,29.0,5.675559676455091,1.9,0.0,0.0,0.9663676909995688,-10.139997763868044,1.0,0.0,0.0 -874,0.0,0.0,0.0,158.28267944035952,0.0028331226435085,1.0,0.0,0.0,0.0,1.0 -874,1.0,11.618834431988253,12.7,2.267175734088804e-06,13.525935701640904,0.9811858281460432,-3.644738369595787,0.0,1.0,0.0 -874,2.0,1.2850323795747378,1.2,0.0,0.0,0.9729787943658024,-4.726223319697177,1.0,0.0,0.0 -874,3.0,4.069269201986669,1.6,0.0,0.0,0.966050059418272,-5.8076163008446,1.0,0.0,0.0 -874,4.0,50.437520898308456,19.0,1.2094390833529307e-09,24.688201919928247,0.9615823406461012,-8.756008512265973,0.0,1.0,0.0 -874,5.0,0.0,0.0,0.0,0.0,0.9669075540602056,-6.95016466596519,1.0,0.0,0.0 -874,6.0,12.207807605960008,10.9,0.0,0.0,0.9582878885357932,-7.957251730817009,1.0,0.0,0.0 -874,7.0,16.06290474468422,30.0,1.585756607483163e-09,35.514901903985475,0.9676897542012416,-7.403601999549511,0.0,1.0,0.0 -874,8.0,0.0,0.0,0.0,0.0,1.0123553627577329,-8.777525299390437,1.0,0.0,0.0 -874,9.0,3.105494917305616,2.0,0.0,0.0,1.0003822571619212,-9.732474370957595,1.0,0.0,0.0 -874,10.0,0.0,0.0,3.325208882257076e-09,23.99209598219089,1.059458265503271,-8.77752529902096,0.0,1.0,0.0 -874,11.0,5.996817771348775,7.5,0.0,0.0,0.9979397820944176,-9.049345869039902,1.0,0.0,0.0 -874,12.0,0.0,0.0,0.0,0.0,0.9979397820944176,-9.049345869039902,0.0,1.0,0.0 -874,13.0,3.3196669805680723,1.6,0.0,0.0,0.9706189734778966,-9.978064480380096,1.0,0.0,0.0 -874,14.0,4.390527296880353,2.5,0.0,0.0,0.9814746096048004,-9.792015148328767,1.0,0.0,0.0 -874,15.0,1.8740055535464928,1.8,0.0,0.0,0.992666405605357,-9.467551827392976,1.0,0.0,0.0 -874,16.0,4.818871423405266,5.8,0.0,0.0,0.9936433461380344,-9.735967495983042,1.0,0.0,0.0 -874,17.0,1.7133765060996504,0.9,0.0,0.0,0.9789238125292612,-10.118087796178369,1.0,0.0,0.0 -874,18.0,5.086586502483336,3.4,0.0,0.0,0.979721112029534,-10.213370103460766,1.0,0.0,0.0 -874,19.0,1.1779463479435095,0.7,0.0,0.0,0.9842648505341646,-10.12663104867464,1.0,0.0,0.0 -874,20.0,9.370027767732465,11.2,0.0,0.0,0.9848011087985316,-9.980643795487886,1.0,0.0,0.0 -874,21.0,0.0,0.0,0.0,0.0,0.9836017459438384,-10.000713280928684,1.0,0.0,0.0 -874,22.0,1.7133765060996504,1.6,0.0,0.0,0.9752133296888872,-9.98657555933439,1.0,0.0,0.0 -874,23.0,4.658242375958424,6.7,0.0,0.0,0.9736451878363026,-10.09880710578606,1.0,0.0,0.0 -874,24.0,0.0,0.0,0.0,0.0,0.9718410466202584,-9.834118794715431,1.0,0.0,0.0 -874,25.0,1.8740055535464928,2.3,0.0,0.0,0.9577366086457324,-9.912298202654847,1.0,0.0,0.0 -874,26.0,0.0,0.0,0.0,0.0,0.9777844721731423,-9.588091452883212,1.0,0.0,0.0 -874,27.0,0.0,0.0,0.0,0.0,0.9646517036121832,-7.311377519495945,1.0,0.0,0.0 -874,28.0,1.2850323795747378,0.9,0.0,0.0,0.9710203073898944,-9.79076755628986,1.0,0.0,0.0 -874,29.0,5.675559676455091,1.9,0.0,0.0,0.946017568038799,-11.330322518902966,1.0,0.0,0.0 -875,0.0,0.0,0.0,158.81320226596196,2.8310665545205893e-05,1.0,0.0,0.0,0.0,1.0 -875,1.0,11.618834431988253,12.7,3.8012384216976496e-08,10.480522161528697,0.9811443584701632,-3.596870614701481,0.0,1.0,0.0 -875,2.0,1.2850323795747378,1.2,0.0,0.0,0.9731111959767776,-4.914334671396771,1.0,0.0,0.0 -875,3.0,4.069269201986669,1.6,0.0,0.0,0.9662403850411037,-6.0412613619679325,1.0,0.0,0.0 -875,4.0,50.437520898308456,19.0,1.5812468949334218e-10,35.74673854886821,0.9602599316363172,-11.458469279168542,0.0,1.0,0.0 -875,5.0,0.0,0.0,0.0,0.0,0.9683029649715926,-6.681311825115875,1.0,0.0,0.0 -875,6.0,12.207807605960008,10.9,0.0,0.0,0.9419355741473951,-12.064271437560777,1.0,0.0,0.0 -875,7.0,16.06290474468422,30.0,4.243512069062487e-11,30.372099261811144,0.9666273706218972,-7.100114305862375,0.0,1.0,0.0 -875,8.0,0.0,0.0,0.0,0.0,1.01653327402673,-8.516601123020932,1.0,0.0,0.0 -875,9.0,3.105494917305616,2.0,0.0,0.0,1.0079453046605469,-9.469869288340751,1.0,0.0,0.0 -875,10.0,0.0,0.0,1.783531367203109e-11,22.147313251399687,1.0599924619153602,-8.516601123018958,0.0,1.0,0.0 -875,11.0,5.996817771348775,7.5,0.0,0.0,1.012926233567495,-9.207715608934636,1.0,0.0,0.0 -875,12.0,0.0,0.0,1.4136525197681456e-11,10.312326656461453,1.0269841499623826,-9.207715608933546,0.0,1.0,0.0 -875,13.0,3.3196669805680723,1.6,0.0,0.0,1.001859891331962,-9.646641762505768,1.0,0.0,0.0 -875,14.0,4.390527296880353,2.5,0.0,0.0,0.998577814259283,-9.650778590607691,1.0,0.0,0.0 -875,15.0,1.8740055535464928,1.8,0.0,0.0,1.004791332045571,-9.42607755887897,1.0,0.0,0.0 -875,16.0,4.818871423405266,5.8,0.0,0.0,1.0025884012659825,-9.54590339406812,1.0,0.0,0.0 -875,17.0,1.7133765060996504,0.9,0.0,0.0,0.9927974523740648,-9.92327483131568,1.0,0.0,0.0 -875,18.0,5.086586502483336,3.4,0.0,0.0,0.9916482060688304,-9.989835265766274,1.0,0.0,0.0 -875,19.0,1.1779463479435095,0.7,0.0,0.0,0.9951167057610376,-9.890999661598498,1.0,0.0,0.0 -875,20.0,9.370027767732465,11.2,0.0,0.0,0.9929844430037976,-9.716738203746374,1.0,0.0,0.0 -875,21.0,0.0,0.0,0.0,0.0,0.9919512459031696,-9.737511108493774,1.0,0.0,0.0 -875,22.0,1.7133765060996504,1.6,0.0,0.0,0.9891767130351562,-9.797043272163032,1.0,0.0,0.0 -875,23.0,4.658242375958424,6.7,0.0,0.0,0.9833169638916462,-9.850619704737872,1.0,0.0,0.0 -875,24.0,0.0,0.0,0.0,0.0,0.978125326268515,-9.512788511924564,1.0,0.0,0.0 -875,25.0,1.8740055535464928,2.3,0.0,0.0,0.9641142005022356,-9.58995179990168,1.0,0.0,0.0 -875,26.0,0.0,0.0,0.0,0.0,0.9818962579529668,-9.225871523272854,1.0,0.0,0.0 -875,27.0,0.0,0.0,0.0,0.0,0.9645883999968422,-7.000201150777702,1.0,0.0,0.0 -875,28.0,1.2850323795747378,0.9,0.0,0.0,0.9682096154358348,-9.849221837216644,1.0,0.0,0.0 -875,29.0,5.675559676455091,1.9,0.0,0.0,0.960764396046942,-10.31877625414141,1.0,0.0,0.0 -876,0.0,0.0,0.0,139.25594353165843,9.874686730526604e-05,1.0,0.0,0.0,0.0,1.0 -876,1.0,11.618834431988253,12.7,20.96141718718402,0.3500747165770406,0.9734879299094804,-4.611823049917283,0.0,1.0,0.0 -876,2.0,1.2850323795747378,1.2,0.0,0.0,1.0008085107765934,-0.1433554621724697,1.0,0.0,0.0 -876,3.0,4.069269201986669,1.6,0.0,0.0,0.956676638288376,-9.538476252076167,1.0,0.0,0.0 -876,4.0,50.437520898308456,19.0,-1.9933196081187722e-10,25.874277545809605,0.9555698791084912,-10.819483536668388,0.0,1.0,0.0 -876,5.0,0.0,0.0,0.0,0.0,0.9598473394382364,-10.031393750743032,1.0,0.0,0.0 -876,6.0,12.207807605960008,10.9,0.0,0.0,0.9514270856377832,-10.626813632945662,1.0,0.0,0.0 -876,7.0,16.06290474468422,30.0,-7.07705986479831e-10,37.733131724236536,0.9598152815792846,-10.742574632004589,0.0,1.0,0.0 -876,8.0,0.0,0.0,0.0,0.0,1.013530682347835,-11.841741351405506,1.0,0.0,0.0 -876,9.0,3.105494917305616,2.0,0.0,0.0,1.006319783583683,-12.77535152320946,1.0,0.0,0.0 -876,10.0,0.0,0.0,-8.913543856721695e-10,23.68147764327528,1.0599999970959135,-11.841741351504382,0.0,1.0,0.0 -876,11.0,5.996817771348775,7.5,0.0,0.0,1.0153086674811451,-12.911771391207376,1.0,0.0,0.0 -876,12.0,0.0,0.0,-6.672184924238865e-10,17.93954959223738,1.0394703658369329,-12.911771391258087,0.0,1.0,0.0 -876,13.0,3.3196669805680723,1.6,0.0,0.0,1.0021264771106202,-13.400535093359151,1.0,0.0,0.0 -876,14.0,4.390527296880353,2.5,0.0,0.0,0.9964365422149518,-13.406988432893549,1.0,0.0,0.0 -876,15.0,1.8740055535464928,1.8,0.0,0.0,1.0100121669378634,-13.024781878001198,1.0,0.0,0.0 -876,16.0,4.818871423405266,5.8,0.0,0.0,0.9998541368210458,-12.900215946129968,1.0,0.0,0.0 -876,17.0,1.7133765060996504,0.9,0.0,0.0,0.9908433234641668,-13.5220724297653,1.0,0.0,0.0 -876,18.0,5.086586502483336,3.4,0.0,0.0,0.9898079136309464,-13.494405009413668,1.0,0.0,0.0 -876,19.0,1.1779463479435095,0.7,0.0,0.0,0.993349353165983,-13.34551531746336,1.0,0.0,0.0 -876,20.0,9.370027767732465,11.2,0.0,0.0,0.994602098398735,-12.953987615625085,1.0,0.0,0.0 -876,21.0,0.0,0.0,0.0,0.0,0.994602098398735,-12.953987615625085,1.0,0.0,0.0 -876,22.0,1.7133765060996504,1.6,0.0,0.0,0.978260795101704,-13.832266583372782,1.0,0.0,0.0 -876,23.0,4.658242375958424,6.7,0.0,0.0,0.9608680028470972,-14.274215659167137,1.0,0.0,0.0 -876,24.0,0.0,0.0,0.0,0.0,0.956871016402766,-14.122709519083356,1.0,0.0,0.0 -876,25.0,1.8740055535464928,2.3,0.0,0.0,0.9425391294673986,-14.203392322267977,1.0,0.0,0.0 -876,26.0,0.0,0.0,0.0,0.0,0.961605798375881,-13.946598036685256,1.0,0.0,0.0 -876,27.0,0.0,0.0,0.0,0.0,0.948034366183211,-11.77282072834079,1.0,0.0,0.0 -876,28.0,1.2850323795747378,0.9,0.0,0.0,0.9476129695146478,-14.596916257283768,1.0,0.0,0.0 -876,29.0,5.675559676455091,1.9,0.0,0.0,0.9400006854623136,-15.087251208932212,1.0,0.0,0.0 -877,0.0,0.0,0.0,158.08237138003304,0.0004653430089263,1.0,0.0,0.0,0.0,1.0 -877,1.0,11.618834431988253,12.7,5.441150792271867e-07,10.113635178702468,0.9806164698507708,-3.625211891881993,0.0,1.0,0.0 -877,2.0,1.2850323795747378,1.2,0.0,0.0,0.9747201023804156,-4.754794193427145,1.0,0.0,0.0 -877,3.0,4.069269201986669,1.6,0.0,0.0,0.9681997462345348,-5.842346079636979,1.0,0.0,0.0 -877,4.0,50.437520898308456,19.0,-6.479850649596984e-10,23.955506237769725,0.96103312716331,-8.725744429741383,0.0,1.0,0.0 -877,5.0,0.0,0.0,0.0,0.0,0.9679039927132184,-6.937068707482719,1.0,0.0,0.0 -877,6.0,12.207807605960008,10.9,0.0,0.0,0.9586539128988236,-7.9376731690425695,1.0,0.0,0.0 -877,7.0,16.06290474468422,30.0,-5.265337998275258e-10,30.43830877811945,0.9669092636309496,-7.356366135999721,0.0,1.0,0.0 -877,8.0,0.0,0.0,0.0,0.0,1.0160667095901834,-8.709601304404968,1.0,0.0,0.0 -877,9.0,3.105494917305616,2.0,0.0,0.0,1.0071953620846086,-9.630586640282182,1.0,0.0,0.0 -877,10.0,0.0,0.0,-2.0186982646442956e-10,22.363098572973936,1.0599510430567938,-8.709601304427308,0.0,1.0,0.0 -877,11.0,5.996817771348775,7.5,0.0,0.0,1.0139584059311777,-9.171400846012324,1.0,0.0,0.0 -877,12.0,0.0,0.0,-6.830153470087474e-10,9.617679360089625,1.0270682947025231,-9.171400846064934,0.0,1.0,0.0 -877,13.0,3.3196669805680723,1.6,0.0,0.0,1.0030500582103286,-9.627766641540958,1.0,0.0,0.0 -877,14.0,4.390527296880353,2.5,0.0,0.0,0.9997859120782324,-9.653369004012486,1.0,0.0,0.0 -877,15.0,1.8740055535464928,1.8,0.0,0.0,1.004922189029665,-9.470454979769915,1.0,0.0,0.0 -877,16.0,4.818871423405266,5.8,0.0,0.0,1.002154384863875,-9.671542464913232,1.0,0.0,0.0 -877,17.0,1.7133765060996504,0.9,0.0,0.0,0.9933075878733568,-9.980915625768896,1.0,0.0,0.0 -877,18.0,5.086586502483336,3.4,0.0,0.0,0.9917460942397428,-10.080508662925164,1.0,0.0,0.0 -877,19.0,1.1779463479435095,0.7,0.0,0.0,0.9949954024821772,-9.99903138853775,1.0,0.0,0.0 -877,20.0,9.370027767732465,11.2,0.0,0.0,0.9967034534215852,-9.797821481679648,1.0,0.0,0.0 -877,21.0,0.0,0.0,0.0,0.0,0.9970869320508704,-9.794807308019628,1.0,0.0,0.0 -877,22.0,1.7133765060996504,1.6,0.0,0.0,0.9914361598544144,-9.82553323788973,1.0,0.0,0.0 -877,23.0,4.658242375958424,6.7,0.0,0.0,0.9869685108641704,-9.914064068045745,1.0,0.0,0.0 -877,24.0,0.0,0.0,0.0,0.0,0.9806753947480612,-9.647416269045316,1.0,0.0,0.0 -877,25.0,1.8740055535464928,2.3,0.0,0.0,0.9667017773083308,-9.724172900785574,1.0,0.0,0.0 -877,26.0,0.0,0.0,0.0,0.0,0.9837642597761312,-9.40631325365344,1.0,0.0,0.0 -877,27.0,0.0,0.0,0.0,0.0,0.9659009446985626,-7.283585903218139,1.0,0.0,0.0 -877,28.0,1.2850323795747378,0.9,0.0,0.0,0.970105114760656,-10.027265951485386,1.0,0.0,0.0 -877,29.0,5.675559676455091,1.9,0.0,0.0,0.9626748970279558,-10.494974791439803,1.0,0.0,0.0 -878,0.0,0.0,0.0,158.1825874216197,0.0006378240955839,1.0,0.0,0.0,0.0,1.0 -878,1.0,11.618834431988253,12.7,8.065525006005568e-07,9.18818508570429,0.9805038111682948,-3.6236294439573338,0.0,1.0,0.0 -878,2.0,1.2850323795747378,1.2,0.0,0.0,0.97501154750966,-4.767790519445922,1.0,0.0,0.0 -878,3.0,4.069269201986669,1.6,0.0,0.0,0.9685606942663596,-5.858356676608826,1.0,0.0,0.0 -878,4.0,50.437520898308456,19.0,-8.577646652057594e-10,23.763584664690143,0.9610791383649722,-8.722456790809192,0.0,1.0,0.0 -878,5.0,0.0,0.0,0.0,0.0,0.9684993017295912,-6.942745725021765,1.0,0.0,0.0 -878,6.0,12.207807605960008,10.9,0.0,0.0,0.959027056058931,-7.939759042742567,1.0,0.0,0.0 -878,7.0,16.06290474468422,30.0,-4.760850400480033e-10,32.96307379944377,0.967118502210946,-7.576513866861939,0.0,1.0,0.0 -878,8.0,0.0,0.0,0.0,0.0,1.0163638052652924,-8.793384536629784,1.0,0.0,0.0 -878,9.0,3.105494917305616,2.0,0.0,0.0,1.007521529451507,-9.755222731791395,1.0,0.0,0.0 -878,10.0,0.0,0.0,1.1024131960920484e-10,22.209517656144563,1.059946927700489,-8.79338453661759,0.0,1.0,0.0 -878,11.0,5.996817771348775,7.5,0.0,0.0,1.014648822204423,-9.27495193239967,1.0,0.0,0.0 -878,12.0,0.0,0.0,-7.437453343125024e-10,9.920750811088045,1.028157502635122,-9.274951932456856,0.0,1.0,0.0 -878,13.0,3.3196669805680723,1.6,0.0,0.0,1.0035979561681223,-9.747041775527869,1.0,0.0,0.0 -878,14.0,4.390527296880353,2.5,0.0,0.0,1.0000794368959172,-9.785345205483338,1.0,0.0,0.0 -878,15.0,1.8740055535464928,1.8,0.0,0.0,1.005443701197868,-9.58214948384058,1.0,0.0,0.0 -878,16.0,4.818871423405266,5.8,0.0,0.0,1.0025479718370025,-9.792308283655451,1.0,0.0,0.0 -878,17.0,1.7133765060996504,0.9,0.0,0.0,0.9936160500979392,-10.110109226975563,1.0,0.0,0.0 -878,18.0,5.086586502483336,3.4,0.0,0.0,0.9920625657218411,-10.208097932742389,1.0,0.0,0.0 -878,19.0,1.1779463479435095,0.7,0.0,0.0,0.9953148550847544,-10.12586202190812,1.0,0.0,0.0 -878,20.0,9.370027767732465,11.2,0.0,0.0,0.9967700147250702,-9.950923221384228,1.0,0.0,0.0 -878,21.0,0.0,0.0,0.0,0.0,0.9970676165283178,-9.9569828600453,1.0,0.0,0.0 -878,22.0,1.7133765060996504,1.6,0.0,0.0,0.9910024490868704,-10.019051836044166,1.0,0.0,0.0 -878,23.0,4.658242375958424,6.7,0.0,0.0,0.985583497070799,-10.191253818364906,1.0,0.0,0.0 -878,24.0,0.0,0.0,0.0,0.0,0.9757915894511446,-10.242622799406028,1.0,0.0,0.0 -878,25.0,1.8740055535464928,2.3,0.0,0.0,0.961745957795776,-10.320161098788642,1.0,0.0,0.0 -878,26.0,0.0,0.0,0.0,0.0,0.9768585921701696,-10.203548481800022,1.0,0.0,0.0 -878,27.0,0.0,0.0,0.0,0.0,0.9587847444191696,-8.443063704457241,1.0,0.0,0.0 -878,28.0,1.2850323795747378,0.9,0.0,0.0,0.963097223234507,-10.833434759970032,1.0,0.0,0.0 -878,29.0,5.675559676455091,1.9,0.0,0.0,0.9556112342701676,-11.308021877397488,1.0,0.0,0.0 -879,0.0,0.0,0.0,159.56993487626562,9.02789780797475,1.0,0.0,0.0,0.0,1.0 -879,1.0,11.618834431988253,12.7,0.0,0.0,0.9759812237616629,-3.7421506934625057,0.0,1.0,0.0 -879,2.0,1.2850323795747378,1.2,0.0,0.0,0.9717218615475152,-4.346878443394107,1.0,0.0,0.0 -879,3.0,4.069269201986669,1.6,0.0,0.0,0.9644559127742004,-5.336692695739162,1.0,0.0,0.0 -879,4.0,50.437520898308456,19.0,-1.2072798578626234e-08,39.97740661177487,0.963629635486055,-11.74134904424862,0.0,1.0,0.0 -879,5.0,0.0,0.0,0.0,0.0,0.9678629749012354,-5.794361099795614,1.0,0.0,0.0 -879,6.0,12.207807605960008,10.9,0.0,0.0,0.9453805363994384,-12.343024675148248,1.0,0.0,0.0 -879,7.0,16.06290474468422,30.0,-1.4100420435976883e-09,39.99330692087083,0.9702500707478722,-6.312677316913098,0.0,1.0,0.0 -879,8.0,0.0,0.0,0.0,0.0,1.0049223059516337,-14.690532815482232,1.0,0.0,0.0 -879,9.0,3.105494917305616,2.0,0.0,0.0,0.9869149540316624,-14.69053281719045,1.0,0.0,0.0 -879,10.0,0.0,0.0,2.6880627392050624e-08,17.008313389435443,1.0389725714002644,-14.690532812414,0.0,1.0,0.0 -879,11.0,5.996817771348775,7.5,0.0,0.0,0.9978724821814424,-11.106876037853308,1.0,0.0,0.0 -879,12.0,0.0,0.0,0.0,0.0,0.9978724821814424,-11.106876037853308,0.0,1.0,0.0 -879,13.0,3.3196669805680723,1.6,0.0,0.0,0.967633719998288,-12.674221831171074,1.0,0.0,0.0 -879,14.0,4.390527296880353,2.5,0.0,0.0,0.9785228786412926,-12.487035560357526,1.0,0.0,0.0 -879,15.0,1.8740055535464928,1.8,0.0,0.0,0.9844814353393267,-12.736554263853302,1.0,0.0,0.0 -879,16.0,4.818871423405266,5.8,0.0,0.0,0.9822751529457106,-14.176325380162275,1.0,0.0,0.0 -879,17.0,1.7133765060996504,0.9,0.0,0.0,0.9718482469848382,-13.612887604244287,1.0,0.0,0.0 -879,18.0,5.086586502483336,3.4,0.0,0.0,0.9703471747846256,-14.184920242652554,1.0,0.0,0.0 -879,19.0,1.1779463479435095,0.7,0.0,0.0,0.97372755282042,-14.34620910853435,1.0,0.0,0.0 -879,20.0,9.370027767732465,11.2,0.0,0.0,0.9765599474262624,-14.585612851684184,1.0,0.0,0.0 -879,21.0,0.0,0.0,0.0,0.0,0.9770977396931856,-14.49287563679015,1.0,0.0,0.0 -879,22.0,1.7133765060996504,1.6,0.0,0.0,0.9723996997659328,-12.95337695927037,1.0,0.0,0.0 -879,23.0,4.658242375958424,6.7,0.0,0.0,0.97113322367291,-13.429744146350547,1.0,0.0,0.0 -879,24.0,0.0,0.0,0.0,0.0,0.975487122583881,-11.530404215808176,1.0,0.0,0.0 -879,25.0,1.8740055535464928,2.3,0.0,0.0,0.961436976435173,-11.607991641258389,1.0,0.0,0.0 -879,26.0,0.0,0.0,0.0,0.0,0.9851294886040216,-10.277946271527057,1.0,0.0,0.0 -879,27.0,0.0,0.0,0.0,0.0,0.9655644148527532,-6.379941767808321,1.0,0.0,0.0 -879,28.0,1.2850323795747378,0.9,0.0,0.0,0.9714903684072276,-10.897155455000371,1.0,0.0,0.0 -879,29.0,5.675559676455091,1.9,0.0,0.0,0.9640710753136584,-11.363522414992834,1.0,0.0,0.0 -880,0.0,0.0,0.0,158.90856060845852,2.653880996696145,1.0,0.0,0.0,0.0,1.0 -880,1.0,11.618834431988253,12.7,0.0,0.0,0.979597925152551,-3.330752969980666,0.0,1.0,0.0 -880,2.0,1.2850323795747378,1.2,0.0,0.0,0.9740722617233304,-5.609194694237365,1.0,0.0,0.0 -880,3.0,4.069269201986669,1.6,0.0,0.0,0.967552189810996,-6.903772782765048,1.0,0.0,0.0 -880,4.0,50.437520898308456,19.0,6.625356688992594e-09,31.508533858066244,0.9678961020832322,-9.081915410662402,0.0,1.0,0.0 -880,5.0,0.0,0.0,0.0,0.0,0.966710946294072,-7.736639959189236,1.0,0.0,0.0 -880,6.0,12.207807605960008,10.9,0.0,0.0,0.960707769265424,-8.551230284372199,1.0,0.0,0.0 -880,7.0,16.06290474468422,30.0,1.4400393461887892e-09,32.21816548178998,0.9599612112191296,-10.86463651522906,0.0,1.0,0.0 -880,8.0,0.0,0.0,0.0,0.0,1.0134403424773135,-9.769775952352928,1.0,0.0,0.0 -880,9.0,3.105494917305616,2.0,0.0,0.0,1.0025305740165362,-10.829736158062246,1.0,0.0,0.0 -880,10.0,0.0,0.0,4.048784760927905e-09,23.72736150514508,1.0599997062576516,-9.769775951903764,0.0,1.0,0.0 -880,11.0,5.996817771348775,7.5,0.0,0.0,1.0326149350562115,-9.653391062010565,1.0,0.0,0.0 -880,12.0,0.0,0.0,1.244418828770406e-08,13.990394649584031,1.0512466729848602,-9.653391061091018,0.0,1.0,0.0 -880,13.0,3.3196669805680723,1.6,0.0,0.0,1.0246108886052667,-10.0067670249175,1.0,0.0,0.0 -880,14.0,4.390527296880353,2.5,0.0,0.0,1.0177345552637287,-10.18857504836538,1.0,0.0,0.0 -880,15.0,1.8740055535464928,1.8,0.0,0.0,0.9893747574662032,-11.168302657156254,1.0,0.0,0.0 -880,16.0,4.818871423405266,5.8,0.0,0.0,0.9938694932783904,-11.013278881873749,1.0,0.0,0.0 -880,17.0,1.7133765060996504,0.9,0.0,0.0,1.0032980852723374,-10.736301282622144,1.0,0.0,0.0 -880,18.0,5.086586502483336,3.4,0.0,0.0,0.9970198482537292,-10.972121060649588,1.0,0.0,0.0 -880,19.0,1.1779463479435095,0.7,0.0,0.0,0.9977569503136464,-10.963732340745286,1.0,0.0,0.0 -880,20.0,9.370027767732465,11.2,0.0,0.0,0.9849197567722564,-11.154950429783076,1.0,0.0,0.0 -880,21.0,0.0,0.0,0.0,0.0,0.9830667653070708,-11.199398588621705,1.0,0.0,0.0 -880,22.0,1.7133765060996504,1.6,0.0,0.0,0.9606256018986036,-11.616939884031616,1.0,0.0,0.0 -880,23.0,4.658242375958424,6.7,0.0,0.0,0.9674805696342702,-11.46194685605791,1.0,0.0,0.0 -880,24.0,0.0,0.0,0.0,0.0,0.9671934454893788,-11.230415267795328,1.0,0.0,0.0 -880,25.0,1.8740055535464928,2.3,0.0,0.0,0.9530191819258916,-11.309359193504296,1.0,0.0,0.0 -880,26.0,0.0,0.0,0.0,0.0,0.9741246350083712,-11.002444552793463,1.0,0.0,0.0 -880,27.0,0.0,0.0,0.0,0.0,0.9625558431638164,-8.706842211398358,1.0,0.0,0.0 -880,28.0,1.2850323795747378,0.9,0.0,0.0,0.960322359440934,-11.635921265636414,1.0,0.0,0.0 -880,29.0,5.675559676455091,1.9,0.0,0.0,0.9528140515115144,-12.113274025480576,1.0,0.0,0.0 -881,0.0,0.0,0.0,158.08237138003304,0.0004653430089263,1.0,0.0,0.0,0.0,1.0 -881,1.0,11.618834431988253,12.7,5.441150792271867e-07,10.113635178702468,0.9806164698507708,-3.625211891881993,0.0,1.0,0.0 -881,2.0,1.2850323795747378,1.2,0.0,0.0,0.9747201023804156,-4.754794193427145,1.0,0.0,0.0 -881,3.0,4.069269201986669,1.6,0.0,0.0,0.9681997462345348,-5.842346079636979,1.0,0.0,0.0 -881,4.0,50.437520898308456,19.0,-6.479850649596984e-10,23.955506237769725,0.96103312716331,-8.725744429741383,0.0,1.0,0.0 -881,5.0,0.0,0.0,0.0,0.0,0.9679039927132184,-6.937068707482719,1.0,0.0,0.0 -881,6.0,12.207807605960008,10.9,0.0,0.0,0.9586539128988236,-7.9376731690425695,1.0,0.0,0.0 -881,7.0,16.06290474468422,30.0,-5.265337998275258e-10,30.43830877811945,0.9669092636309496,-7.356366135999721,0.0,1.0,0.0 -881,8.0,0.0,0.0,0.0,0.0,1.0160667095901834,-8.709601304404968,1.0,0.0,0.0 -881,9.0,3.105494917305616,2.0,0.0,0.0,1.0071953620846086,-9.630586640282182,1.0,0.0,0.0 -881,10.0,0.0,0.0,-2.0186982646442956e-10,22.363098572973936,1.0599510430567938,-8.709601304427308,0.0,1.0,0.0 -881,11.0,5.996817771348775,7.5,0.0,0.0,1.0139584059311777,-9.171400846012324,1.0,0.0,0.0 -881,12.0,0.0,0.0,-6.830153470087474e-10,9.617679360089625,1.0270682947025231,-9.171400846064934,0.0,1.0,0.0 -881,13.0,3.3196669805680723,1.6,0.0,0.0,1.0030500582103286,-9.627766641540958,1.0,0.0,0.0 -881,14.0,4.390527296880353,2.5,0.0,0.0,0.9997859120782324,-9.653369004012486,1.0,0.0,0.0 -881,15.0,1.8740055535464928,1.8,0.0,0.0,1.004922189029665,-9.470454979769915,1.0,0.0,0.0 -881,16.0,4.818871423405266,5.8,0.0,0.0,1.002154384863875,-9.671542464913232,1.0,0.0,0.0 -881,17.0,1.7133765060996504,0.9,0.0,0.0,0.9933075878733568,-9.980915625768896,1.0,0.0,0.0 -881,18.0,5.086586502483336,3.4,0.0,0.0,0.9917460942397428,-10.080508662925164,1.0,0.0,0.0 -881,19.0,1.1779463479435095,0.7,0.0,0.0,0.9949954024821772,-9.99903138853775,1.0,0.0,0.0 -881,20.0,9.370027767732465,11.2,0.0,0.0,0.9967034534215852,-9.797821481679648,1.0,0.0,0.0 -881,21.0,0.0,0.0,0.0,0.0,0.9970869320508704,-9.794807308019628,1.0,0.0,0.0 -881,22.0,1.7133765060996504,1.6,0.0,0.0,0.9914361598544144,-9.82553323788973,1.0,0.0,0.0 -881,23.0,4.658242375958424,6.7,0.0,0.0,0.9869685108641704,-9.914064068045745,1.0,0.0,0.0 -881,24.0,0.0,0.0,0.0,0.0,0.9806753947480612,-9.647416269045316,1.0,0.0,0.0 -881,25.0,1.8740055535464928,2.3,0.0,0.0,0.9667017773083308,-9.724172900785574,1.0,0.0,0.0 -881,26.0,0.0,0.0,0.0,0.0,0.9837642597761312,-9.40631325365344,1.0,0.0,0.0 -881,27.0,0.0,0.0,0.0,0.0,0.9659009446985626,-7.283585903218139,1.0,0.0,0.0 -881,28.0,1.2850323795747378,0.9,0.0,0.0,0.970105114760656,-10.027265951485386,1.0,0.0,0.0 -881,29.0,5.675559676455091,1.9,0.0,0.0,0.9626748970279558,-10.494974791439803,1.0,0.0,0.0 -882,0.0,0.0,0.0,136.4443712923731,0.0001347701444665,1.0,0.0,0.0,0.0,1.0 -882,1.0,11.618834431988253,12.7,29.156953906649075,35.65997119039383,0.9785797603573376,-19.015016834858315,0.0,1.0,0.0 -882,2.0,1.2850323795747378,1.2,0.0,0.0,0.9615286496186564,-13.50119836079888,1.0,0.0,0.0 -882,3.0,4.069269201986669,1.6,0.0,0.0,0.9565385342025436,-16.722643261787944,1.0,0.0,0.0 -882,4.0,50.437520898308456,19.0,1.002793239181956e-12,30.14372941924537,0.9619042611383936,-22.638393977271747,0.0,1.0,0.0 -882,5.0,0.0,0.0,0.0,0.0,0.961462272792341,-19.004150271301555,1.0,0.0,0.0 -882,6.0,12.207807605960008,10.9,0.0,0.0,0.9552847117208412,-20.757587083604683,1.0,0.0,0.0 -882,7.0,16.06290474468422,30.0,4.025196878971449e-09,39.99988931232591,0.9639401392033892,-19.486900984496536,0.0,1.0,0.0 -882,8.0,0.0,0.0,0.0,0.0,1.0055511363763256,-20.731751610210143,1.0,0.0,0.0 -882,9.0,3.105494917305616,2.0,0.0,0.0,0.9927180410601468,-21.63642662599561,1.0,0.0,0.0 -882,10.0,0.0,0.0,9.393750251165932e-13,23.999339752339846,1.0529590818013908,-20.73175161021004,0.0,1.0,0.0 -882,11.0,5.996817771348775,7.5,0.0,0.0,0.9892871642413312,-20.35789886918535,1.0,0.0,0.0 -882,12.0,0.0,0.0,0.0,0.0,0.9892871642413312,-20.35789886918535,0.0,1.0,0.0 -882,13.0,3.3196669805680723,1.6,0.0,0.0,0.979519713607854,-20.843089129273828,1.0,0.0,0.0 -882,14.0,4.390527296880353,2.5,0.0,0.0,0.9775000701647808,-20.908665785388045,1.0,0.0,0.0 -882,15.0,1.8740055535464928,1.8,0.0,0.0,0.9839769404482808,-21.037097143332147,1.0,0.0,0.0 -882,16.0,4.818871423405266,5.8,0.0,0.0,0.9857375843421946,-21.53648119149896,1.0,0.0,0.0 -882,17.0,1.7133765060996504,0.9,0.0,0.0,0.9735877287110674,-21.075916478833065,1.0,0.0,0.0 -882,18.0,5.086586502483336,3.4,0.0,0.0,0.973689517477448,-22.32147084359055,1.0,0.0,0.0 -882,19.0,1.1779463479435095,0.7,0.0,0.0,0.9778430225992264,-22.1828895834966,1.0,0.0,0.0 -882,20.0,9.370027767732465,11.2,0.0,0.0,0.9817937994032192,-21.77552123462893,1.0,0.0,0.0 -882,21.0,0.0,0.0,0.0,0.0,0.9820997756695584,-21.761634518837795,1.0,0.0,0.0 -882,22.0,1.7133765060996504,1.6,0.0,0.0,0.9717612815617116,-21.32455627523576,1.0,0.0,0.0 -882,23.0,4.658242375958424,6.7,0.0,0.0,0.9709881855381882,-21.73237162225041,1.0,0.0,0.0 -882,24.0,0.0,0.0,0.0,0.0,0.9676595789329834,-21.62051068441435,1.0,0.0,0.0 -882,25.0,1.8740055535464928,2.3,0.0,0.0,0.9534923502106666,-21.69937742523403,1.0,0.0,0.0 -882,26.0,0.0,0.0,0.0,0.0,0.97273854914068,-21.470061998353856,1.0,0.0,0.0 -882,27.0,0.0,0.0,0.0,0.0,0.9597122566598456,-19.352450545964462,1.0,0.0,0.0 -882,28.0,1.2850323795747378,0.9,0.0,0.0,0.9659387352877578,-21.67486122145766,1.0,0.0,0.0 -882,29.0,5.675559676455091,1.9,0.0,0.0,0.9407902394229392,-23.231067088780176,1.0,0.0,0.0 -883,0.0,0.0,0.0,158.1694569202541,0.0005605016413667,1.0,0.0,0.0,0.0,1.0 -883,1.0,11.618834431988253,12.7,6.552682943850941e-07,9.997792014777367,0.980583632227257,-3.6275227473774088,0.0,1.0,0.0 -883,2.0,1.2850323795747378,1.2,0.0,0.0,0.9747767955708212,-4.756453805594954,1.0,0.0,0.0 -883,3.0,4.069269201986669,1.6,0.0,0.0,0.9682698377512624,-5.844382164406624,1.0,0.0,0.0 -883,4.0,50.437520898308456,19.0,-7.104522147233011e-10,24.00172199884581,0.961044616632092,-8.73257358548377,0.0,1.0,0.0 -883,5.0,0.0,0.0,0.0,0.0,0.9678623286863474,-6.946713853303399,1.0,0.0,0.0 -883,6.0,12.207807605960008,10.9,0.0,0.0,0.9586334185866056,-7.946158959054403,1.0,0.0,0.0 -883,7.0,16.06290474468422,30.0,-5.362727311143707e-10,30.67765672389581,0.9669432053928612,-7.368069539136747,0.0,1.0,0.0 -883,8.0,0.0,0.0,0.0,0.0,1.015731432199053,-8.742846977793384,1.0,0.0,0.0 -883,9.0,3.105494917305616,2.0,0.0,0.0,1.0065139263083784,-9.67668361705072,1.0,0.0,0.0 -883,10.0,0.0,0.0,-6.05671547381553e-11,22.55838183060713,1.0599970589853902,-8.742846977800086,0.0,1.0,0.0 -883,11.0,5.996817771348775,7.5,0.0,0.0,1.0146086724281371,-9.121096191450375,1.0,0.0,0.0 -883,12.0,0.0,0.0,-7.61251727983436e-10,9.444368956688344,1.0274771979446289,-9.121096191508954,0.0,1.0,0.0 -883,13.0,3.3196669805680723,1.6,0.0,0.0,0.9852197909412516,-9.976945197619017,1.0,0.0,0.0 -883,14.0,4.390527296880353,2.5,0.0,0.0,0.99591439971545,-9.79631066544455,1.0,0.0,0.0 -883,15.0,1.8740055535464928,1.8,0.0,0.0,1.0049312310834035,-9.458581853466724,1.0,0.0,0.0 -883,16.0,4.818871423405266,5.8,0.0,0.0,1.0017074714778562,-9.700482879673467,1.0,0.0,0.0 -883,17.0,1.7133765060996504,0.9,0.0,0.0,0.9905438678481588,-10.092058686610205,1.0,0.0,0.0 -883,18.0,5.086586502483336,3.4,0.0,0.0,0.9896432746009418,-10.171997195663913,1.0,0.0,0.0 -883,19.0,1.1779463479435095,0.7,0.0,0.0,0.993250622215953,-10.079694782424488,1.0,0.0,0.0 -883,20.0,9.370027767732465,11.2,0.0,0.0,0.995864656269616,-9.84909320945669,1.0,0.0,0.0 -883,21.0,0.0,0.0,0.0,0.0,0.9962006586653588,-9.847596914603734,1.0,0.0,0.0 -883,22.0,1.7133765060996504,1.6,0.0,0.0,0.9885460715345032,-9.937858689533943,1.0,0.0,0.0 -883,23.0,4.658242375958424,6.7,0.0,0.0,0.9853999947895584,-9.98356276019251,1.0,0.0,0.0 -883,24.0,0.0,0.0,0.0,0.0,0.979717237964873,-9.702435178572436,1.0,0.0,0.0 -883,25.0,1.8740055535464928,2.3,0.0,0.0,0.9657295511575238,-9.77934422655876,1.0,0.0,0.0 -883,26.0,0.0,0.0,0.0,0.0,0.9831878321776224,-9.45153365120856,1.0,0.0,0.0 -883,27.0,0.0,0.0,0.0,0.0,0.96579870453607,-7.296467086307391,1.0,0.0,0.0 -883,28.0,1.2850323795747378,0.9,0.0,0.0,0.9695202141117816,-10.073224719508632,1.0,0.0,0.0 -883,29.0,5.675559676455091,1.9,0.0,0.0,0.9620853738166132,-10.54150189007282,1.0,0.0,0.0 -884,0.0,0.0,0.0,159.11234577285947,0.000582672879279,1.0,0.0,0.0,0.0,1.0 -884,1.0,11.618834431988253,12.7,1.072673824896064e-06,10.170126228790934,0.9792118953661896,-4.046207905873599,0.0,1.0,0.0 -884,2.0,1.2850323795747378,1.2,0.0,0.0,0.9770888643645192,-3.65000553653518,1.0,0.0,0.0 -884,3.0,4.069269201986669,1.6,0.0,0.0,0.9710197292099886,-4.469997099199659,1.0,0.0,0.0 -884,4.0,50.437520898308456,19.0,9.237287492050226e-10,25.493563105170907,0.9602674040926036,-10.25352853756874,0.0,1.0,0.0 -884,5.0,0.0,0.0,0.0,0.0,0.9640099366753868,-9.549976485150909,1.0,0.0,0.0 -884,6.0,12.207807605960008,10.9,0.0,0.0,0.955831565590868,-10.108242792213142,1.0,0.0,0.0 -884,7.0,16.06290474468422,30.0,1.0512358513030974e-09,26.93152520318476,0.9617567913439032,-9.942595731273904,0.0,1.0,0.0 -884,8.0,0.0,0.0,0.0,0.0,1.0144795376579545,-10.93700237859396,1.0,0.0,0.0 -884,9.0,3.105494917305616,2.0,0.0,0.0,1.0086781673438563,-11.653760895138,1.0,0.0,0.0 -884,10.0,0.0,0.0,1.872355399322773e-09,20.37961651273504,1.0546717604299094,-10.937002378385412,0.0,1.0,0.0 -884,11.0,5.996817771348775,7.5,0.0,0.0,1.031368933721157,-9.614600985762545,1.0,0.0,0.0 -884,12.0,0.0,0.0,5.616454924490163e-10,18.492810046127733,1.055888505558789,-9.614600985721172,0.0,1.0,0.0 -884,13.0,3.3196669805680723,1.6,0.0,0.0,1.0190394963890776,-10.267567534974628,1.0,0.0,0.0 -884,14.0,4.390527296880353,2.5,0.0,0.0,1.0128123747415685,-10.466512889990373,1.0,0.0,0.0 -884,15.0,1.8740055535464928,1.8,0.0,0.0,1.014327941950146,-10.548929944827838,1.0,0.0,0.0 -884,16.0,4.818871423405266,5.8,0.0,0.0,1.0064467828731904,-11.407495017995371,1.0,0.0,0.0 -884,17.0,1.7133765060996504,0.9,0.0,0.0,1.0021945191097903,-11.20889682466763,1.0,0.0,0.0 -884,18.0,5.086586502483336,3.4,0.0,0.0,0.9982072933808118,-11.560045618860116,1.0,0.0,0.0 -884,19.0,1.1779463479435095,0.7,0.0,0.0,1.0001492144800868,-11.6129529418734,1.0,0.0,0.0 -884,20.0,9.370027767732465,11.2,0.0,0.0,0.9985634987352175,-11.769281714181464,1.0,0.0,0.0 -884,21.0,0.0,0.0,0.0,0.0,0.999065751560752,-11.749979961662817,1.0,0.0,0.0 -884,22.0,1.7133765060996504,1.6,0.0,0.0,1.000550558515468,-11.031156208405752,1.0,0.0,0.0 -884,23.0,4.658242375958424,6.7,0.0,0.0,0.9909704582280549,-11.660012102835251,1.0,0.0,0.0 -884,24.0,0.0,0.0,0.0,0.0,0.9806101122947944,-11.673302020535404,1.0,0.0,0.0 -884,25.0,1.8740055535464928,2.3,0.0,0.0,0.9666355371841984,-11.750069023422164,1.0,0.0,0.0 -884,26.0,0.0,0.0,0.0,0.0,0.9812731440317451,-11.611908909328402,1.0,0.0,0.0 -884,27.0,0.0,0.0,0.0,0.0,0.9621283451756606,-9.850243099303652,1.0,0.0,0.0 -884,28.0,1.2850323795747378,0.9,0.0,0.0,0.9675773037799368,-12.236062107276572,1.0,0.0,0.0 -884,29.0,5.675559676455091,1.9,0.0,0.0,0.9601270663692898,-12.70623461888824,1.0,0.0,0.0 -885,0.0,0.0,0.0,158.08237138003304,0.0004653430089263,1.0,0.0,0.0,0.0,1.0 -885,1.0,11.618834431988253,12.7,5.441150792271867e-07,10.113635178702468,0.9806164698507708,-3.625211891881993,0.0,1.0,0.0 -885,2.0,1.2850323795747378,1.2,0.0,0.0,0.9747201023804156,-4.754794193427145,1.0,0.0,0.0 -885,3.0,4.069269201986669,1.6,0.0,0.0,0.9681997462345348,-5.842346079636979,1.0,0.0,0.0 -885,4.0,50.437520898308456,19.0,-6.479850649596984e-10,23.955506237769725,0.96103312716331,-8.725744429741383,0.0,1.0,0.0 -885,5.0,0.0,0.0,0.0,0.0,0.9679039927132184,-6.937068707482719,1.0,0.0,0.0 -885,6.0,12.207807605960008,10.9,0.0,0.0,0.9586539128988236,-7.9376731690425695,1.0,0.0,0.0 -885,7.0,16.06290474468422,30.0,-5.265337998275258e-10,30.43830877811945,0.9669092636309496,-7.356366135999721,0.0,1.0,0.0 -885,8.0,0.0,0.0,0.0,0.0,1.0160667095901834,-8.709601304404968,1.0,0.0,0.0 -885,9.0,3.105494917305616,2.0,0.0,0.0,1.0071953620846086,-9.630586640282182,1.0,0.0,0.0 -885,10.0,0.0,0.0,-2.0186982646442956e-10,22.363098572973936,1.0599510430567938,-8.709601304427308,0.0,1.0,0.0 -885,11.0,5.996817771348775,7.5,0.0,0.0,1.0139584059311777,-9.171400846012324,1.0,0.0,0.0 -885,12.0,0.0,0.0,-6.830153470087474e-10,9.617679360089625,1.0270682947025231,-9.171400846064934,0.0,1.0,0.0 -885,13.0,3.3196669805680723,1.6,0.0,0.0,1.0030500582103286,-9.627766641540958,1.0,0.0,0.0 -885,14.0,4.390527296880353,2.5,0.0,0.0,0.9997859120782324,-9.653369004012486,1.0,0.0,0.0 -885,15.0,1.8740055535464928,1.8,0.0,0.0,1.004922189029665,-9.470454979769915,1.0,0.0,0.0 -885,16.0,4.818871423405266,5.8,0.0,0.0,1.002154384863875,-9.671542464913232,1.0,0.0,0.0 -885,17.0,1.7133765060996504,0.9,0.0,0.0,0.9933075878733568,-9.980915625768896,1.0,0.0,0.0 -885,18.0,5.086586502483336,3.4,0.0,0.0,0.9917460942397428,-10.080508662925164,1.0,0.0,0.0 -885,19.0,1.1779463479435095,0.7,0.0,0.0,0.9949954024821772,-9.99903138853775,1.0,0.0,0.0 -885,20.0,9.370027767732465,11.2,0.0,0.0,0.9967034534215852,-9.797821481679648,1.0,0.0,0.0 -885,21.0,0.0,0.0,0.0,0.0,0.9970869320508704,-9.794807308019628,1.0,0.0,0.0 -885,22.0,1.7133765060996504,1.6,0.0,0.0,0.9914361598544144,-9.82553323788973,1.0,0.0,0.0 -885,23.0,4.658242375958424,6.7,0.0,0.0,0.9869685108641704,-9.914064068045745,1.0,0.0,0.0 -885,24.0,0.0,0.0,0.0,0.0,0.9806753947480612,-9.647416269045316,1.0,0.0,0.0 -885,25.0,1.8740055535464928,2.3,0.0,0.0,0.9667017773083308,-9.724172900785574,1.0,0.0,0.0 -885,26.0,0.0,0.0,0.0,0.0,0.9837642597761312,-9.40631325365344,1.0,0.0,0.0 -885,27.0,0.0,0.0,0.0,0.0,0.9659009446985626,-7.283585903218139,1.0,0.0,0.0 -885,28.0,1.2850323795747378,0.9,0.0,0.0,0.970105114760656,-10.027265951485386,1.0,0.0,0.0 -885,29.0,5.675559676455091,1.9,0.0,0.0,0.9626748970279558,-10.494974791439803,1.0,0.0,0.0 -886,0.0,0.0,0.0,158.110520587268,0.2364693729350442,1.0,0.0,0.0,0.0,1.0 -886,1.0,11.618834431988253,12.7,0.0,0.0,0.9795834974659946,-3.606685428745252,0.0,1.0,0.0 -886,2.0,1.2850323795747378,1.2,0.0,0.0,0.9772915039301168,-4.792746770341761,1.0,0.0,0.0 -886,3.0,4.069269201986669,1.6,0.0,0.0,0.9713737357363889,-5.888321486177371,1.0,0.0,0.0 -886,4.0,50.437520898308456,19.0,-2.1074836400740875e-10,28.20509973759621,0.9668654047632428,-8.791804413270842,0.0,1.0,0.0 -886,5.0,0.0,0.0,0.0,0.0,0.9717846229187784,-6.9933364870608505,1.0,0.0,0.0 -886,6.0,12.207807605960008,10.9,0.0,0.0,0.9633768088801709,-7.994626702691757,1.0,0.0,0.0 -886,7.0,16.06290474468422,30.0,-3.0296574881751696e-10,34.22704555959604,0.9722255976690494,-7.432816862215045,0.0,1.0,0.0 -886,8.0,0.0,0.0,0.0,0.0,1.01898128743005,-8.775385748166961,1.0,0.0,0.0 -886,9.0,3.105494917305616,2.0,0.0,0.0,1.0110741227671758,-9.701460650293278,1.0,0.0,0.0 -886,10.0,0.0,0.0,-2.7075866907024633e-10,20.903658054496425,1.0599997942170882,-8.775385748196836,0.0,1.0,0.0 -886,11.0,5.996817771348775,7.5,0.0,0.0,1.022616392704437,-9.145923336048927,1.0,0.0,0.0 -886,12.0,0.0,0.0,-3.581664656672926e-10,12.470189061109302,1.0394126711888856,-9.145923336075958,0.0,1.0,0.0 -886,13.0,3.3196669805680723,1.6,0.0,0.0,1.0119634842701055,-9.566406248563712,1.0,0.0,0.0 -886,14.0,4.390527296880353,2.5,0.0,0.0,1.0090768902386371,-9.567451442685906,1.0,0.0,0.0 -886,15.0,1.8740055535464928,1.8,0.0,0.0,1.0114832549522224,-9.474588579118825,1.0,0.0,0.0 -886,16.0,4.818871423405266,5.8,0.0,0.0,1.0069152622246498,-9.723906069535142,1.0,0.0,0.0 -886,17.0,1.7133765060996504,0.9,0.0,0.0,1.005288168745836,-9.724359378757091,1.0,0.0,0.0 -886,18.0,5.086586502483336,3.4,0.0,0.0,0.9924064607808284,-10.361384521678117,1.0,0.0,0.0 -886,19.0,1.1779463479435095,0.7,0.0,0.0,0.996481525709706,-10.227960116318393,1.0,0.0,0.0 -886,20.0,9.370027767732465,11.2,0.0,0.0,1.0009306092979025,-9.85720997066394,1.0,0.0,0.0 -886,21.0,0.0,0.0,0.0,0.0,1.0014103480503618,-9.8510834877314,1.0,0.0,0.0 -886,22.0,1.7133765060996504,1.6,0.0,0.0,0.9992256552144893,-9.783691428694066,1.0,0.0,0.0 -886,23.0,4.658242375958424,6.7,0.0,0.0,0.9927154191185784,-9.93530848792856,1.0,0.0,0.0 -886,24.0,0.0,0.0,0.0,0.0,0.985976617563032,-9.670008075705766,1.0,0.0,0.0 -886,25.0,1.8740055535464928,2.3,0.0,0.0,0.9720803260672106,-9.74592960128213,1.0,0.0,0.0 -886,26.0,0.0,0.0,0.0,0.0,0.9887494427415796,-9.431055590247002,1.0,0.0,0.0 -886,27.0,0.0,0.0,0.0,0.0,0.9701985473020712,-7.341509004901993,1.0,0.0,0.0 -886,28.0,1.2850323795747378,0.9,0.0,0.0,0.975163128163668,-10.045677350372198,1.0,0.0,0.0 -886,29.0,5.675559676455091,1.9,0.0,0.0,0.967772642689056,-10.508514441051483,1.0,0.0,0.0 -887,0.0,0.0,0.0,158.28985539865016,0.0041179313640782,1.0,0.0,0.0,0.0,1.0 -887,1.0,11.618834431988253,12.7,5.520627962950582e-06,8.423676212689628,0.9803473616337486,-3.621559716166487,0.0,1.0,0.0 -887,2.0,1.2850323795747378,1.2,0.0,0.0,0.9754204141443368,-4.782246913973677,1.0,0.0,0.0 -887,3.0,4.069269201986669,1.6,0.0,0.0,0.9690665580753922,-5.876125422040881,1.0,0.0,0.0 -887,4.0,50.437520898308456,19.0,7.015763723722019e-09,23.85084910192792,0.9610627022522534,-8.721226389548683,0.0,1.0,0.0 -887,5.0,0.0,0.0,0.0,0.0,0.9684500367286526,-6.938414470706838,1.0,0.0,0.0 -887,6.0,12.207807605960008,10.9,0.0,0.0,0.9589912746805386,-7.93669275571242,1.0,0.0,0.0 -887,7.0,16.06290474468422,30.0,5.017709417635415e-09,29.55907903659198,0.9671203132903414,-7.352403937396037,0.0,1.0,0.0 -887,8.0,0.0,0.0,0.0,0.0,1.015943735659658,-8.617833351998737,1.0,0.0,0.0 -887,9.0,3.105494917305616,2.0,0.0,0.0,1.012284927607955,-9.4865505644065,1.0,0.0,0.0 -887,10.0,0.0,0.0,1.545755849024789e-09,16.783605450001243,1.049216099062392,-8.617833351825919,0.0,1.0,0.0 -887,11.0,5.996817771348775,7.5,0.0,0.0,1.0204045388279055,-9.355898059491263,1.0,0.0,0.0 -887,12.0,0.0,0.0,4.958264668829946e-09,17.876822082967287,1.0443688226829704,-9.355898059118056,0.0,1.0,0.0 -887,13.0,3.3196669805680723,1.6,0.0,0.0,0.990309137951785,-10.102831070706587,1.0,0.0,0.0 -887,14.0,4.390527296880353,2.5,0.0,0.0,1.0009487355862867,-9.924028696467465,1.0,0.0,0.0 -887,15.0,1.8740055535464928,1.8,0.0,0.0,0.9986787030122404,-9.697251827150575,1.0,0.0,0.0 -887,16.0,4.818871423405266,5.8,0.0,0.0,0.9847686278791984,-10.060061253930918,1.0,0.0,0.0 -887,17.0,1.7133765060996504,0.9,0.0,0.0,0.9959068624970024,-10.104210669721038,1.0,0.0,0.0 -887,18.0,5.086586502483336,3.4,0.0,0.0,0.9951860656218088,-10.116308320131054,1.0,0.0,0.0 -887,19.0,1.1779463479435095,0.7,0.0,0.0,0.9988688339871872,-9.98984183526991,1.0,0.0,0.0 -887,20.0,9.370027767732465,11.2,0.0,0.0,0.9971326727650074,-9.763478296807602,1.0,0.0,0.0 -887,21.0,0.0,0.0,0.0,0.0,0.9960199545978804,-9.794377450299429,1.0,0.0,0.0 -887,22.0,1.7133765060996504,1.6,0.0,0.0,0.9919450926885798,-10.011385272270465,1.0,0.0,0.0 -887,23.0,4.658242375958424,6.7,0.0,0.0,0.986586843853388,-9.985823965174012,1.0,0.0,0.0 -887,24.0,0.0,0.0,0.0,0.0,0.9806929506235256,-9.69637961174606,1.0,0.0,0.0 -887,25.0,1.8740055535464928,2.3,0.0,0.0,0.966719590707166,-9.77313345549198,1.0,0.0,0.0 -887,26.0,0.0,0.0,0.0,0.0,0.9840225916448772,-9.440676193905114,1.0,0.0,0.0 -887,27.0,0.0,0.0,0.0,0.0,0.9663271896253658,-7.287114082556035,1.0,0.0,0.0 -887,28.0,1.2850323795747378,0.9,0.0,0.0,0.970367240413444,-10.061298412561516,1.0,0.0,0.0 -887,29.0,5.675559676455091,1.9,0.0,0.0,0.9629390924111716,-10.528752889303568,1.0,0.0,0.0 -888,0.0,0.0,0.0,97.12196651062386,5.350536014248064e-07,1.0,0.0,0.0,0.0,1.0 -888,1.0,11.618834431988253,12.7,60.125306378401135,32.208070579285376,0.9896179236610164,-2.3162371914600133,0.0,1.0,0.0 -888,2.0,1.2850323795747378,1.2,0.0,0.0,0.9746864842226548,-2.5731906166762304,1.0,0.0,0.0 -888,3.0,4.069269201986669,1.6,0.0,0.0,0.968066890848632,-3.1327780895085504,1.0,0.0,0.0 -888,4.0,50.437520898308456,19.0,0.0,0.0,0.94000000027395,-8.208568404088949,0.0,1.0,0.0 -888,5.0,0.0,0.0,0.0,0.0,0.9666620195344112,-8.05368527830404,1.0,0.0,0.0 -888,6.0,12.207807605960008,10.9,0.0,0.0,0.9489339055135904,-8.41186571467967,1.0,0.0,0.0 -888,7.0,16.06290474468422,30.0,4.012812735657064e-09,39.99999938500393,0.9691560062725,-8.52468510847665,0.0,1.0,0.0 -888,8.0,0.0,0.0,0.0,0.0,1.011053603916461,-9.236159420275376,1.0,0.0,0.0 -888,9.0,3.105494917305616,2.0,0.0,0.0,0.998252396451786,-9.855306835325674,1.0,0.0,0.0 -888,10.0,0.0,0.0,4.6553629159973124e-09,23.999999295620366,1.058226852648482,-9.23615941975683,0.0,1.0,0.0 -888,11.0,5.996817771348775,7.5,0.0,0.0,1.0016731752354395,-7.856248630111946,1.0,0.0,0.0 -888,12.0,0.0,0.0,0.0,0.0,1.0016731752354395,-7.856248630111946,0.0,1.0,0.0 -888,13.0,3.3196669805680723,1.6,0.0,0.0,0.9915690508996764,-8.51131266202504,1.0,0.0,0.0 -888,14.0,4.390527296880353,2.5,0.0,0.0,0.9879095069883684,-8.744535279602736,1.0,0.0,0.0 -888,15.0,1.8740055535464928,1.8,0.0,0.0,0.9929015347774156,-8.826320885939362,1.0,0.0,0.0 -888,16.0,4.818871423405266,5.8,0.0,0.0,0.992499013119802,-9.624327944024422,1.0,0.0,0.0 -888,17.0,1.7133765060996504,0.9,0.0,0.0,0.9822311229848316,-9.479457063087958,1.0,0.0,0.0 -888,18.0,5.086586502483336,3.4,0.0,0.0,0.9812115459867906,-9.81962446446709,1.0,0.0,0.0 -888,19.0,1.1779463479435095,0.7,0.0,0.0,0.984788634951978,-9.861895942962256,1.0,0.0,0.0 -888,20.0,9.370027767732465,11.2,0.0,0.0,0.9876139780893034,-9.9924448042471,1.0,0.0,0.0 -888,21.0,0.0,0.0,0.0,0.0,0.9879886722125828,-9.97869262260038,1.0,0.0,0.0 -888,22.0,1.7133765060996504,1.6,0.0,0.0,0.9806527059933016,-9.323292790031433,1.0,0.0,0.0 -888,23.0,4.658242375958424,6.7,0.0,0.0,0.97788101036436,-9.955477957666092,1.0,0.0,0.0 -888,24.0,0.0,0.0,0.0,0.0,0.973235643027858,-10.127281871442744,1.0,0.0,0.0 -888,25.0,1.8740055535464928,2.3,0.0,0.0,0.9591520214832862,-10.20523404902857,1.0,0.0,0.0 -888,26.0,0.0,0.0,0.0,0.0,0.9775660343108368,-10.15547947818851,1.0,0.0,0.0 -888,27.0,0.0,0.0,0.0,0.0,0.9650492121055514,-8.359310078459737,1.0,0.0,0.0 -888,28.0,1.2850323795747378,0.9,0.0,0.0,0.9638152098265056,-10.784441687402117,1.0,0.0,0.0 -888,29.0,5.675559676455091,1.9,0.0,0.0,0.9563349738824488,-11.258317127862275,1.0,0.0,0.0 -889,0.0,0.0,0.0,158.08237138003304,0.0004653430089263,1.0,0.0,0.0,0.0,1.0 -889,1.0,11.618834431988253,12.7,5.441150792271867e-07,10.113635178702468,0.9806164698507708,-3.625211891881993,0.0,1.0,0.0 -889,2.0,1.2850323795747378,1.2,0.0,0.0,0.9747201023804156,-4.754794193427145,1.0,0.0,0.0 -889,3.0,4.069269201986669,1.6,0.0,0.0,0.9681997462345348,-5.842346079636979,1.0,0.0,0.0 -889,4.0,50.437520898308456,19.0,-6.479850649596984e-10,23.955506237769725,0.96103312716331,-8.725744429741383,0.0,1.0,0.0 -889,5.0,0.0,0.0,0.0,0.0,0.9679039927132184,-6.937068707482719,1.0,0.0,0.0 -889,6.0,12.207807605960008,10.9,0.0,0.0,0.9586539128988236,-7.9376731690425695,1.0,0.0,0.0 -889,7.0,16.06290474468422,30.0,-5.265337998275258e-10,30.43830877811945,0.9669092636309496,-7.356366135999721,0.0,1.0,0.0 -889,8.0,0.0,0.0,0.0,0.0,1.0160667095901834,-8.709601304404968,1.0,0.0,0.0 -889,9.0,3.105494917305616,2.0,0.0,0.0,1.0071953620846086,-9.630586640282182,1.0,0.0,0.0 -889,10.0,0.0,0.0,-2.0186982646442956e-10,22.363098572973936,1.0599510430567938,-8.709601304427308,0.0,1.0,0.0 -889,11.0,5.996817771348775,7.5,0.0,0.0,1.0139584059311777,-9.171400846012324,1.0,0.0,0.0 -889,12.0,0.0,0.0,-6.830153470087474e-10,9.617679360089625,1.0270682947025231,-9.171400846064934,0.0,1.0,0.0 -889,13.0,3.3196669805680723,1.6,0.0,0.0,1.0030500582103286,-9.627766641540958,1.0,0.0,0.0 -889,14.0,4.390527296880353,2.5,0.0,0.0,0.9997859120782324,-9.653369004012486,1.0,0.0,0.0 -889,15.0,1.8740055535464928,1.8,0.0,0.0,1.004922189029665,-9.470454979769915,1.0,0.0,0.0 -889,16.0,4.818871423405266,5.8,0.0,0.0,1.002154384863875,-9.671542464913232,1.0,0.0,0.0 -889,17.0,1.7133765060996504,0.9,0.0,0.0,0.9933075878733568,-9.980915625768896,1.0,0.0,0.0 -889,18.0,5.086586502483336,3.4,0.0,0.0,0.9917460942397428,-10.080508662925164,1.0,0.0,0.0 -889,19.0,1.1779463479435095,0.7,0.0,0.0,0.9949954024821772,-9.99903138853775,1.0,0.0,0.0 -889,20.0,9.370027767732465,11.2,0.0,0.0,0.9967034534215852,-9.797821481679648,1.0,0.0,0.0 -889,21.0,0.0,0.0,0.0,0.0,0.9970869320508704,-9.794807308019628,1.0,0.0,0.0 -889,22.0,1.7133765060996504,1.6,0.0,0.0,0.9914361598544144,-9.82553323788973,1.0,0.0,0.0 -889,23.0,4.658242375958424,6.7,0.0,0.0,0.9869685108641704,-9.914064068045745,1.0,0.0,0.0 -889,24.0,0.0,0.0,0.0,0.0,0.9806753947480612,-9.647416269045316,1.0,0.0,0.0 -889,25.0,1.8740055535464928,2.3,0.0,0.0,0.9667017773083308,-9.724172900785574,1.0,0.0,0.0 -889,26.0,0.0,0.0,0.0,0.0,0.9837642597761312,-9.40631325365344,1.0,0.0,0.0 -889,27.0,0.0,0.0,0.0,0.0,0.9659009446985626,-7.283585903218139,1.0,0.0,0.0 -889,28.0,1.2850323795747378,0.9,0.0,0.0,0.970105114760656,-10.027265951485386,1.0,0.0,0.0 -889,29.0,5.675559676455091,1.9,0.0,0.0,0.9626748970279558,-10.494974791439803,1.0,0.0,0.0 -890,0.0,0.0,0.0,158.08237138003304,0.0004653430089263,1.0,0.0,0.0,0.0,1.0 -890,1.0,11.618834431988253,12.7,5.441150792271867e-07,10.113635178702468,0.9806164698507708,-3.625211891881993,0.0,1.0,0.0 -890,2.0,1.2850323795747378,1.2,0.0,0.0,0.9747201023804156,-4.754794193427145,1.0,0.0,0.0 -890,3.0,4.069269201986669,1.6,0.0,0.0,0.9681997462345348,-5.842346079636979,1.0,0.0,0.0 -890,4.0,50.437520898308456,19.0,-6.479850649596984e-10,23.955506237769725,0.96103312716331,-8.725744429741383,0.0,1.0,0.0 -890,5.0,0.0,0.0,0.0,0.0,0.9679039927132184,-6.937068707482719,1.0,0.0,0.0 -890,6.0,12.207807605960008,10.9,0.0,0.0,0.9586539128988236,-7.9376731690425695,1.0,0.0,0.0 -890,7.0,16.06290474468422,30.0,-5.265337998275258e-10,30.43830877811945,0.9669092636309496,-7.356366135999721,0.0,1.0,0.0 -890,8.0,0.0,0.0,0.0,0.0,1.0160667095901834,-8.709601304404968,1.0,0.0,0.0 -890,9.0,3.105494917305616,2.0,0.0,0.0,1.0071953620846086,-9.630586640282182,1.0,0.0,0.0 -890,10.0,0.0,0.0,-2.0186982646442956e-10,22.363098572973936,1.0599510430567938,-8.709601304427308,0.0,1.0,0.0 -890,11.0,5.996817771348775,7.5,0.0,0.0,1.0139584059311777,-9.171400846012324,1.0,0.0,0.0 -890,12.0,0.0,0.0,-6.830153470087474e-10,9.617679360089625,1.0270682947025231,-9.171400846064934,0.0,1.0,0.0 -890,13.0,3.3196669805680723,1.6,0.0,0.0,1.0030500582103286,-9.627766641540958,1.0,0.0,0.0 -890,14.0,4.390527296880353,2.5,0.0,0.0,0.9997859120782324,-9.653369004012486,1.0,0.0,0.0 -890,15.0,1.8740055535464928,1.8,0.0,0.0,1.004922189029665,-9.470454979769915,1.0,0.0,0.0 -890,16.0,4.818871423405266,5.8,0.0,0.0,1.002154384863875,-9.671542464913232,1.0,0.0,0.0 -890,17.0,1.7133765060996504,0.9,0.0,0.0,0.9933075878733568,-9.980915625768896,1.0,0.0,0.0 -890,18.0,5.086586502483336,3.4,0.0,0.0,0.9917460942397428,-10.080508662925164,1.0,0.0,0.0 -890,19.0,1.1779463479435095,0.7,0.0,0.0,0.9949954024821772,-9.99903138853775,1.0,0.0,0.0 -890,20.0,9.370027767732465,11.2,0.0,0.0,0.9967034534215852,-9.797821481679648,1.0,0.0,0.0 -890,21.0,0.0,0.0,0.0,0.0,0.9970869320508704,-9.794807308019628,1.0,0.0,0.0 -890,22.0,1.7133765060996504,1.6,0.0,0.0,0.9914361598544144,-9.82553323788973,1.0,0.0,0.0 -890,23.0,4.658242375958424,6.7,0.0,0.0,0.9869685108641704,-9.914064068045745,1.0,0.0,0.0 -890,24.0,0.0,0.0,0.0,0.0,0.9806753947480612,-9.647416269045316,1.0,0.0,0.0 -890,25.0,1.8740055535464928,2.3,0.0,0.0,0.9667017773083308,-9.724172900785574,1.0,0.0,0.0 -890,26.0,0.0,0.0,0.0,0.0,0.9837642597761312,-9.40631325365344,1.0,0.0,0.0 -890,27.0,0.0,0.0,0.0,0.0,0.9659009446985626,-7.283585903218139,1.0,0.0,0.0 -890,28.0,1.2850323795747378,0.9,0.0,0.0,0.970105114760656,-10.027265951485386,1.0,0.0,0.0 -890,29.0,5.675559676455091,1.9,0.0,0.0,0.9626748970279558,-10.494974791439803,1.0,0.0,0.0 -891,0.0,0.0,0.0,158.08237138003304,0.0004653430089263,1.0,0.0,0.0,0.0,1.0 -891,1.0,11.618834431988253,12.7,5.441150792271867e-07,10.113635178702468,0.9806164698507708,-3.625211891881993,0.0,1.0,0.0 -891,2.0,1.2850323795747378,1.2,0.0,0.0,0.9747201023804156,-4.754794193427145,1.0,0.0,0.0 -891,3.0,4.069269201986669,1.6,0.0,0.0,0.9681997462345348,-5.842346079636979,1.0,0.0,0.0 -891,4.0,50.437520898308456,19.0,-6.479850649596984e-10,23.955506237769725,0.96103312716331,-8.725744429741383,0.0,1.0,0.0 -891,5.0,0.0,0.0,0.0,0.0,0.9679039927132184,-6.937068707482719,1.0,0.0,0.0 -891,6.0,12.207807605960008,10.9,0.0,0.0,0.9586539128988236,-7.9376731690425695,1.0,0.0,0.0 -891,7.0,16.06290474468422,30.0,-5.265337998275258e-10,30.43830877811945,0.9669092636309496,-7.356366135999721,0.0,1.0,0.0 -891,8.0,0.0,0.0,0.0,0.0,1.0160667095901834,-8.709601304404968,1.0,0.0,0.0 -891,9.0,3.105494917305616,2.0,0.0,0.0,1.0071953620846086,-9.630586640282182,1.0,0.0,0.0 -891,10.0,0.0,0.0,-2.0186982646442956e-10,22.363098572973936,1.0599510430567938,-8.709601304427308,0.0,1.0,0.0 -891,11.0,5.996817771348775,7.5,0.0,0.0,1.0139584059311777,-9.171400846012324,1.0,0.0,0.0 -891,12.0,0.0,0.0,-6.830153470087474e-10,9.617679360089625,1.0270682947025231,-9.171400846064934,0.0,1.0,0.0 -891,13.0,3.3196669805680723,1.6,0.0,0.0,1.0030500582103286,-9.627766641540958,1.0,0.0,0.0 -891,14.0,4.390527296880353,2.5,0.0,0.0,0.9997859120782324,-9.653369004012486,1.0,0.0,0.0 -891,15.0,1.8740055535464928,1.8,0.0,0.0,1.004922189029665,-9.470454979769915,1.0,0.0,0.0 -891,16.0,4.818871423405266,5.8,0.0,0.0,1.002154384863875,-9.671542464913232,1.0,0.0,0.0 -891,17.0,1.7133765060996504,0.9,0.0,0.0,0.9933075878733568,-9.980915625768896,1.0,0.0,0.0 -891,18.0,5.086586502483336,3.4,0.0,0.0,0.9917460942397428,-10.080508662925164,1.0,0.0,0.0 -891,19.0,1.1779463479435095,0.7,0.0,0.0,0.9949954024821772,-9.99903138853775,1.0,0.0,0.0 -891,20.0,9.370027767732465,11.2,0.0,0.0,0.9967034534215852,-9.797821481679648,1.0,0.0,0.0 -891,21.0,0.0,0.0,0.0,0.0,0.9970869320508704,-9.794807308019628,1.0,0.0,0.0 -891,22.0,1.7133765060996504,1.6,0.0,0.0,0.9914361598544144,-9.82553323788973,1.0,0.0,0.0 -891,23.0,4.658242375958424,6.7,0.0,0.0,0.9869685108641704,-9.914064068045745,1.0,0.0,0.0 -891,24.0,0.0,0.0,0.0,0.0,0.9806753947480612,-9.647416269045316,1.0,0.0,0.0 -891,25.0,1.8740055535464928,2.3,0.0,0.0,0.9667017773083308,-9.724172900785574,1.0,0.0,0.0 -891,26.0,0.0,0.0,0.0,0.0,0.9837642597761312,-9.40631325365344,1.0,0.0,0.0 -891,27.0,0.0,0.0,0.0,0.0,0.9659009446985626,-7.283585903218139,1.0,0.0,0.0 -891,28.0,1.2850323795747378,0.9,0.0,0.0,0.970105114760656,-10.027265951485386,1.0,0.0,0.0 -891,29.0,5.675559676455091,1.9,0.0,0.0,0.9626748970279558,-10.494974791439803,1.0,0.0,0.0 -892,0.0,0.0,0.0,159.4240766179349,0.0030085283737157,1.0,0.0,0.0,0.0,1.0 -892,1.0,11.618834431988253,12.7,4.376772130507479e-06,10.5413578980098,0.97864009260984,-4.101410076828258,0.0,1.0,0.0 -892,2.0,1.2850323795747378,1.2,0.0,0.0,0.9784658061869452,-3.520197791769636,1.0,0.0,0.0 -892,3.0,4.069269201986669,1.6,0.0,0.0,0.9727119999384812,-4.30878431574023,1.0,0.0,0.0 -892,4.0,50.437520898308456,19.0,-5.409468563301201e-10,22.62316583647022,0.9594273281259024,-10.377007753294418,0.0,1.0,0.0 -892,5.0,0.0,0.0,0.0,0.0,0.959931774920407,-9.959487712491658,1.0,0.0,0.0 -892,6.0,12.207807605960008,10.9,0.0,0.0,0.9476906303726146,-10.419507960354691,1.0,0.0,0.0 -892,7.0,16.06290474468422,30.0,-3.4477979626305717e-09,30.15090985859362,0.958749688753761,-10.377860852678369,0.0,1.0,0.0 -892,8.0,0.0,0.0,0.0,0.0,1.0108044374110925,-11.076709630162242,1.0,0.0,0.0 -892,9.0,3.105494917305616,2.0,0.0,0.0,1.003617618390825,-11.654515398308458,1.0,0.0,0.0 -892,10.0,0.0,0.0,-2.4166869668858943e-09,21.86544592150677,1.0539562545025885,-11.076709630432587,0.0,1.0,0.0 -892,11.0,5.996817771348775,7.5,0.0,0.0,1.0343845215313034,-8.938743948509693,1.0,0.0,0.0 -892,12.0,0.0,0.0,-2.0815563707434035e-09,19.17709481644408,1.059719465004211,-8.938743948662019,0.0,1.0,0.0 -892,13.0,3.3196669805680723,1.6,0.0,0.0,1.0233389606826095,-9.39746522400701,1.0,0.0,0.0 -892,14.0,4.390527296880353,2.5,0.0,0.0,1.0196531041588364,-9.434167842307282,1.0,0.0,0.0 -892,15.0,1.8740055535464928,1.8,0.0,0.0,1.0132899870863634,-10.138983639118615,1.0,0.0,0.0 -892,16.0,4.818871423405266,5.8,0.0,0.0,1.002743943429988,-11.283931479476918,1.0,0.0,0.0 -892,17.0,1.7133765060996504,0.9,0.0,0.0,1.0028248335450696,-10.00820316509938,1.0,0.0,0.0 -892,18.0,5.086586502483336,3.4,0.0,0.0,0.9951345918533192,-10.260782449864877,1.0,0.0,0.0 -892,19.0,1.1779463479435095,0.7,0.0,0.0,1.0010531368553424,-11.757550545103314,1.0,0.0,0.0 -892,20.0,9.370027767732465,11.2,0.0,0.0,0.9913056066318752,-11.896495855795392,1.0,0.0,0.0 -892,21.0,0.0,0.0,0.0,0.0,0.9911225623570096,-11.916344855209442,1.0,0.0,0.0 -892,22.0,1.7133765060996504,1.6,0.0,0.0,0.96601203771711,-12.4528290260672,1.0,0.0,0.0 -892,23.0,4.658242375958424,6.7,0.0,0.0,0.9728287435997972,-12.29954756508981,1.0,0.0,0.0 -892,24.0,0.0,0.0,0.0,0.0,0.9676261911908214,-12.305811139847894,1.0,0.0,0.0 -892,25.0,1.8740055535464928,2.3,0.0,0.0,0.9534584588856018,-12.384683411450744,1.0,0.0,0.0 -892,26.0,0.0,0.0,0.0,0.0,0.971585501935462,-12.231032692748592,1.0,0.0,0.0 -892,27.0,0.0,0.0,0.0,0.0,0.9575752195170876,-10.276782864410782,1.0,0.0,0.0 -892,28.0,1.2850323795747378,0.9,0.0,0.0,0.95774501018465,-12.867871696725995,1.0,0.0,0.0 -892,29.0,5.675559676455091,1.9,0.0,0.0,0.9502158506255974,-13.347815008513711,1.0,0.0,0.0 -893,0.0,0.0,0.0,154.45489059534566,0.0003427101536779,1.0,0.0,0.0,0.0,1.0 -893,1.0,11.362457569438124,12.7,3.902659412109212e-07,9.763497880048163,0.9809658408081714,-3.539624587503816,0.0,1.0,0.0 -893,2.0,1.2566773348687326,1.2,0.0,0.0,0.9751880533305546,-4.642823146704354,1.0,0.0,0.0 -893,3.0,3.97947822708432,1.6,0.0,0.0,0.9687577946508128,-5.703756519630302,1.0,0.0,0.0 -893,4.0,49.32458539359776,19.0,-4.5637808392839634e-10,23.74972678512286,0.9617525369321508,-8.519476600693386,0.0,1.0,0.0 -893,5.0,0.0,0.0,0.0,0.0,0.968521000424104,-6.7737103098101485,1.0,0.0,0.0 -893,6.0,11.93843468125296,10.9,0.0,0.0,0.959362173954237,-7.748445819480465,1.0,0.0,0.0 -893,7.0,15.708466685859158,30.0,-4.0831749901075767e-10,30.33795098911896,0.96753517155494,-7.1829286419663685,0.0,1.0,0.0 -893,8.0,0.0,0.0,0.0,0.0,1.016446039910004,-8.50591100385468,1.0,0.0,0.0 -893,9.0,3.0369702259327704,2.0,0.0,0.0,1.0076312487030668,-9.406129281419595,1.0,0.0,0.0 -893,10.0,0.0,0.0,-2.4334151411306105e-10,22.163931035132155,1.0599399895737165,-8.505911003881597,0.0,1.0,0.0 -893,11.0,5.864494229387418,7.5,0.0,0.0,1.014184022969017,-8.956418159305061,1.0,0.0,0.0 -893,12.0,0.0,0.0,-5.367113896812287e-10,9.363056953960369,1.0269483261012973,-8.956418159346395,0.0,1.0,0.0 -893,13.0,3.246416448410893,1.6,0.0,0.0,1.0034068029984538,-9.39949682706173,1.0,0.0,0.0 -893,14.0,4.293647560801502,2.5,0.0,0.0,1.0001956626146664,-9.423455814239302,1.0,0.0,0.0 -893,15.0,1.8326544466835688,1.8,0.0,0.0,1.0052846464108447,-9.246958012858492,1.0,0.0,0.0 -893,16.0,4.712540005757747,5.8,0.0,0.0,1.0025907727014152,-9.443667788851084,1.0,0.0,0.0 -893,17.0,1.675569779824977,0.9,0.0,0.0,0.9938192861900624,-9.742191165233187,1.0,0.0,0.0 -893,18.0,4.9743477838554,3.4,0.0,0.0,0.9922923540054396,-9.839447376933364,1.0,0.0,0.0 -893,19.0,1.1519542236296716,0.7,0.0,0.0,0.9955191648299668,-9.761314392002566,1.0,0.0,0.0 -893,20.0,9.163272233417842,11.2,0.0,0.0,0.99721476276604,-9.565453370839496,1.0,0.0,0.0 -893,21.0,0.0,0.0,0.0,0.0,0.9975971161544336,-9.562787743960456,1.0,0.0,0.0 -893,22.0,1.675569779824977,1.6,0.0,0.0,0.9919549187647458,-9.589447329650383,1.0,0.0,0.0 -893,23.0,4.555455338899155,6.7,0.0,0.0,0.9875776503071766,-9.67568870029162,1.0,0.0,0.0 -893,24.0,0.0,0.0,0.0,0.0,0.9813428148171393,-9.4146969123638,1.0,0.0,0.0 -893,25.0,1.8326544466835688,2.3,0.0,0.0,0.9674895120439614,-9.481856303992664,1.0,0.0,0.0 -893,26.0,0.0,0.0,0.0,0.0,0.9844163421084094,-9.182281556981096,1.0,0.0,0.0 -893,27.0,0.0,0.0,0.0,0.0,0.9665522767260796,-7.111611020038486,1.0,0.0,0.0 -893,28.0,1.2566773348687326,0.9,0.0,0.0,0.97094039856446,-9.784460624599255,1.0,0.0,0.0 -893,29.0,5.550324895670236,1.9,0.0,0.0,0.9636282976758818,-10.239297060079467,1.0,0.0,0.0 -894,0.0,0.0,0.0,154.71388615722915,0.0082454271529641,1.0,0.0,0.0,0.0,1.0 -894,1.0,11.362457569438124,12.7,8.237647974557148e-06,10.114141040131967,0.9809781102165872,-3.5454752731883965,0.0,1.0,0.0 -894,2.0,1.2566773348687326,1.2,0.0,0.0,0.9750371080542156,-4.651859481267231,1.0,0.0,0.0 -894,3.0,3.97947822708432,1.6,0.0,0.0,0.9685729546078806,-5.715039221711939,1.0,0.0,0.0 -894,4.0,49.32458539359776,19.0,7.951267753910441e-09,24.14265417459285,0.961919679975501,-8.531314951393435,0.0,1.0,0.0 -894,5.0,0.0,0.0,0.0,0.0,0.9680366264674466,-6.775448465641127,1.0,0.0,0.0 -894,6.0,11.93843468125296,10.9,0.0,0.0,0.9591433467473442,-7.754103598848142,1.0,0.0,0.0 -894,7.0,15.708466685859158,30.0,-2.9339025776558213e-09,30.264860663078863,0.9576878758164028,-9.704631231985871,0.0,1.0,0.0 -894,8.0,0.0,0.0,0.0,0.0,1.0164440821181782,-8.541533722067367,1.0,0.0,0.0 -894,9.0,3.0369702259327704,2.0,0.0,0.0,1.0079286405842756,-9.45862789598599,1.0,0.0,0.0 -894,10.0,0.0,0.0,-2.527435788004669e-10,22.1394257694791,1.0598919139167455,-8.541533722095325,0.0,1.0,0.0 -894,11.0,5.864494229387418,7.5,0.0,0.0,1.0155568499436822,-9.014688569535473,1.0,0.0,0.0 -894,12.0,0.0,0.0,7.838910487783268e-09,10.458593162024371,1.0297755124098056,-9.014688568934217,0.0,1.0,0.0 -894,13.0,3.246416448410893,1.6,0.0,0.0,1.0046178380725668,-9.463811921802815,1.0,0.0,0.0 -894,14.0,4.293647560801502,2.5,0.0,0.0,1.001191310723044,-9.490842695791994,1.0,0.0,0.0 -894,15.0,1.8326544466835688,1.8,0.0,0.0,1.0062011859396214,-9.300265052719944,1.0,0.0,0.0 -894,16.0,4.712540005757747,5.8,0.0,0.0,1.003083144853743,-9.497068092371745,1.0,0.0,0.0 -894,17.0,1.675569779824977,0.9,0.0,0.0,0.99457651693374,-9.803748141671422,1.0,0.0,0.0 -894,18.0,4.9743477838554,3.4,0.0,0.0,0.9929064437585868,-9.897699909695383,1.0,0.0,0.0 -894,19.0,1.1519542236296716,0.7,0.0,0.0,0.9960553771970349,-9.817968598951282,1.0,0.0,0.0 -894,20.0,9.163272233417842,11.2,0.0,0.0,0.9974540673745096,-9.632178110536255,1.0,0.0,0.0 -894,21.0,0.0,0.0,0.0,0.0,0.9978155189539544,-9.634091574035152,1.0,0.0,0.0 -894,22.0,1.675569779824977,1.6,0.0,0.0,0.9924497572669532,-9.68370714853238,1.0,0.0,0.0 -894,23.0,4.555455338899155,6.7,0.0,0.0,0.9874076966052124,-9.806779871082242,1.0,0.0,0.0 -894,24.0,0.0,0.0,0.0,0.0,0.9796914691440743,-9.69978534038079,1.0,0.0,0.0 -894,25.0,1.8326544466835688,2.3,0.0,0.0,0.965814133008382,-9.76717463134784,1.0,0.0,0.0 -894,26.0,0.0,0.0,0.0,0.0,0.98190914291596,-9.564804413261324,1.0,0.0,0.0 -894,27.0,0.0,0.0,0.0,0.0,0.9640776295932943,-7.666660992414116,1.0,0.0,0.0 -894,28.0,1.2566773348687326,0.9,0.0,0.0,0.9683968363531116,-10.170104563403113,1.0,0.0,0.0 -894,29.0,5.550324895670236,1.9,0.0,0.0,0.9610649428742596,-10.62734943183342,1.0,0.0,0.0 -895,0.0,0.0,0.0,154.58233925425168,0.0002717539118179,1.0,0.0,0.0,0.0,1.0 -895,1.0,11.362457569438124,12.7,2.812831931100193e-07,9.556591090394557,0.980645568802494,-3.6098032639892046,0.0,1.0,0.0 -895,2.0,1.2566773348687326,1.2,0.0,0.0,0.975805158973608,-4.452751527969895,1.0,0.0,0.0 -895,3.0,3.97947822708432,1.6,0.0,0.0,0.9694953824591624,-5.467515353738896,1.0,0.0,0.0 -895,4.0,49.32458539359776,19.0,-2.6836715975165007e-10,22.342290003443523,0.9617546206370668,-9.714614013027555,0.0,1.0,0.0 -895,5.0,0.0,0.0,0.0,0.0,0.9689822542724582,-6.377965493736867,1.0,0.0,0.0 -895,6.0,11.93843468125296,10.9,0.0,0.0,0.95694989444899,-6.815877777068165,1.0,0.0,0.0 -895,7.0,15.708466685859158,30.0,4.707614493098637e-10,30.74472304078087,0.9681716321093582,-6.789517806632097,0.0,1.0,0.0 -895,8.0,0.0,0.0,0.0,0.0,1.019096919178107,-8.03589255074951,1.0,0.0,0.0 -895,9.0,3.0369702259327704,2.0,0.0,0.0,1.012926886873821,-8.893422397692206,1.0,0.0,0.0 -895,10.0,0.0,0.0,3.1643133686143965e-10,20.69175374403675,1.0597106906238398,-8.035892550714594,0.0,1.0,0.0 -895,11.0,5.864494229387418,7.5,0.0,0.0,1.018472368958397,-8.849587690674607,1.0,0.0,0.0 -895,12.0,0.0,0.0,-5.546959452468762e-11,14.3880701977544,1.037880478745001,-8.849587690678813,0.0,1.0,0.0 -895,13.0,3.246416448410893,1.6,0.0,0.0,1.0055973010109132,-9.334506569239284,1.0,0.0,0.0 -895,14.0,4.293647560801502,2.5,0.0,0.0,1.0000243569725242,-9.354546615529069,1.0,0.0,0.0 -895,15.0,1.8326544466835688,1.8,0.0,0.0,1.0103039866390373,-8.96713827378981,1.0,0.0,0.0 -895,16.0,4.712540005757747,5.8,0.0,0.0,1.0077351105476071,-9.002236637923998,1.0,0.0,0.0 -895,17.0,1.675569779824977,0.9,0.0,0.0,0.9830208447754024,-9.932532456569676,1.0,0.0,0.0 -895,18.0,4.9743477838554,3.4,0.0,0.0,0.9752475904210864,-10.186787866036626,1.0,0.0,0.0 -895,19.0,1.1519542236296716,0.7,0.0,0.0,1.0104103554928343,-8.99152404884624,1.0,0.0,0.0 -895,20.0,9.163272233417842,11.2,0.0,0.0,1.002166684311758,-9.078062171492734,1.0,0.0,0.0 -895,21.0,0.0,0.0,0.0,0.0,1.00241847474293,-9.083928459753713,1.0,0.0,0.0 -895,22.0,1.675569779824977,1.6,0.0,0.0,0.993132200153097,-9.389881825712024,1.0,0.0,0.0 -895,23.0,4.555455338899155,6.7,0.0,0.0,0.990524960065696,-9.299598326040512,1.0,0.0,0.0 -895,24.0,0.0,0.0,0.0,0.0,0.9834755718858412,-9.019709000960749,1.0,0.0,0.0 -895,25.0,1.8326544466835688,2.3,0.0,0.0,0.9696531841599482,-9.08657321772661,1.0,0.0,0.0 -895,26.0,0.0,0.0,0.0,0.0,0.9860216975582162,-8.776681593290538,1.0,0.0,0.0 -895,27.0,0.0,0.0,0.0,0.0,0.9671756112108216,-6.717272171004433,1.0,0.0,0.0 -895,28.0,1.2566773348687326,0.9,0.0,0.0,0.9725689318171492,-9.37687496001864,1.0,0.0,0.0 -895,29.0,5.550324895670236,1.9,0.0,0.0,0.965269446445426,-9.83017938178506,1.0,0.0,0.0 -896,0.0,0.0,0.0,155.01658136941742,0.0009522991660126,1.0,0.0,0.0,0.0,1.0 -896,1.0,11.362457569438124,12.7,7.346107602667445e-07,9.808883458248744,0.9822898003509348,-3.287956408022437,0.0,1.0,0.0 -896,2.0,1.2566773348687326,1.2,0.0,0.0,0.9723043845364436,-5.431174383819358,1.0,0.0,0.0 -896,3.0,3.97947822708432,1.6,0.0,0.0,0.9653333855688284,-6.6845038461815,1.0,0.0,0.0 -896,4.0,49.32458539359776,19.0,5.7213673935697735e-11,24.80800582532075,0.962479321750914,-8.783371874042745,0.0,1.0,0.0 -896,5.0,0.0,0.0,0.0,0.0,0.9660151354293346,-7.538298491286623,1.0,0.0,0.0 -896,6.0,11.93843468125296,10.9,0.0,0.0,0.9580910017081276,-8.308018019072962,1.0,0.0,0.0 -896,7.0,15.708466685859158,30.0,-7.220084352340874e-11,33.0298360571311,0.9658670980420614,-7.968168851329257,0.0,1.0,0.0 -896,8.0,0.0,0.0,0.0,0.0,1.0142245436489892,-9.567416792666558,1.0,0.0,0.0 -896,9.0,3.0369702259327704,2.0,0.0,0.0,1.0045185873573776,-10.62242921307046,1.0,0.0,0.0 -896,10.0,0.0,0.0,-5.509389277528547e-10,23.326805895597197,1.0599979856007165,-9.567416792727633,0.0,1.0,0.0 -896,11.0,5.864494229387418,7.5,0.0,0.0,1.017472428610562,-9.331714549799896,1.0,0.0,0.0 -896,12.0,0.0,0.0,-1.5720487962705543e-11,10.238467183425822,1.031370302174093,-9.331714549801095,0.0,1.0,0.0 -896,13.0,3.246416448410893,1.6,0.0,0.0,0.9863696826317212,-10.11928551438854,1.0,0.0,0.0 -896,14.0,4.293647560801502,2.5,0.0,0.0,0.9968872370321806,-9.94756132771465,1.0,0.0,0.0 -896,15.0,1.8326544466835688,1.8,0.0,0.0,0.9914609704327328,-10.94784994787464,1.0,0.0,0.0 -896,16.0,4.712540005757747,5.8,0.0,0.0,0.9959241659274344,-10.798085643722702,1.0,0.0,0.0 -896,17.0,1.675569779824977,0.9,0.0,0.0,0.9787452389783452,-11.571119069691637,1.0,0.0,0.0 -896,18.0,4.9743477838554,3.4,0.0,0.0,0.9810285758867052,-11.476256133630931,1.0,0.0,0.0 -896,19.0,1.1519542236296716,0.7,0.0,0.0,0.9863229664878242,-11.295066447760316,1.0,0.0,0.0 -896,20.0,9.163272233417842,11.2,0.0,0.0,0.996369304646422,-10.73889461382526,1.0,0.0,0.0 -896,21.0,0.0,0.0,0.0,0.0,0.9974812785621094,-10.72319625236789,1.0,0.0,0.0 -896,22.0,1.675569779824977,1.6,0.0,0.0,0.9813961006088376,-10.296377682134542,1.0,0.0,0.0 -896,23.0,4.555455338899155,6.7,0.0,0.0,0.9674781964355946,-10.636119357547123,1.0,0.0,0.0 -896,24.0,0.0,0.0,0.0,0.0,0.9674774880274324,-10.3930685238354,1.0,0.0,0.0 -896,25.0,1.8326544466835688,2.3,0.0,0.0,0.9534197296231182,-10.462195695798306,1.0,0.0,0.0 -896,26.0,0.0,0.0,0.0,0.0,0.9745317509164936,-10.162984211439124,1.0,0.0,0.0 -896,27.0,0.0,0.0,0.0,0.0,0.9633241006326928,-7.889439375701701,1.0,0.0,0.0 -896,28.0,1.2566773348687326,0.9,0.0,0.0,0.9678099304616692,-10.359857638354583,1.0,0.0,0.0 -896,29.0,5.550324895670236,1.9,0.0,0.0,0.943113472926898,-11.869341931150942,1.0,0.0,0.0 -897,0.0,0.0,0.0,129.4673534194774,1.6724431617376467e-06,1.0,0.0,0.0,0.0,1.0 -897,1.0,11.362457569438124,12.7,24.321036456635632,13.714357562073737,0.983322265430064,-2.802334290238889,0.0,1.0,0.0 -897,2.0,1.2566773348687326,1.2,0.0,0.0,0.9793720358911836,-4.295901718498282,1.0,0.0,0.0 -897,3.0,3.97947822708432,1.6,0.0,0.0,0.9738743596375566,-5.271705413884985,1.0,0.0,0.0 -897,4.0,49.32458539359776,19.0,0.0,0.0,0.9400000005987276,-7.507199505973006,0.0,1.0,0.0 -897,5.0,0.0,0.0,0.0,0.0,0.9728586428340148,-6.263383799776525,1.0,0.0,0.0 -897,6.0,11.93843468125296,10.9,0.0,0.0,0.9529048609027116,-7.052575435064511,1.0,0.0,0.0 -897,7.0,15.708466685859158,30.0,-7.590112854786644e-09,39.99999612794869,0.9755263925506712,-6.728547329495878,0.0,1.0,0.0 -897,8.0,0.0,0.0,0.0,0.0,1.022281778872549,-7.942153217819467,1.0,0.0,0.0 -897,9.0,3.0369702259327704,2.0,0.0,0.0,1.0172409802174034,-8.810237538284445,1.0,0.0,0.0 -897,10.0,0.0,0.0,-9.592168349192069e-09,19.221779397006337,1.0599999879301216,-7.942153218874399,0.0,1.0,0.0 -897,11.0,5.864494229387418,7.5,0.0,0.0,1.0338565164754443,-8.541298507032774,1.0,0.0,0.0 -897,12.0,0.0,0.0,-1.382845942357227e-08,19.794336342262294,1.0599999800607722,-8.541298508044957,0.0,1.0,0.0 -897,13.0,3.246416448410893,1.6,0.0,0.0,1.0219354062113006,-8.961700054357129,1.0,0.0,0.0 -897,14.0,4.293647560801502,2.5,0.0,0.0,1.01752548269155,-8.948600687855592,1.0,0.0,0.0 -897,15.0,1.8326544466835688,1.8,0.0,0.0,1.0208103915668918,-8.730410367560888,1.0,0.0,0.0 -897,16.0,4.712540005757747,5.8,0.0,0.0,1.0140660189437891,-8.877557758111148,1.0,0.0,0.0 -897,17.0,1.675569779824977,0.9,0.0,0.0,1.008565829595487,-9.214473881640531,1.0,0.0,0.0 -897,18.0,4.9743477838554,3.4,0.0,0.0,1.00547443800672,-9.2831185478487,1.0,0.0,0.0 -897,19.0,1.1519542236296716,0.7,0.0,0.0,1.0078242270796072,-9.193056440951322,1.0,0.0,0.0 -897,20.0,9.163272233417842,11.2,0.0,0.0,1.007251060506405,-8.972670233307873,1.0,0.0,0.0 -897,21.0,0.0,0.0,0.0,0.0,1.0077316588517573,-8.972173576022602,1.0,0.0,0.0 -897,22.0,1.675569779824977,1.6,0.0,0.0,1.0068474902998263,-9.077682570019237,1.0,0.0,0.0 -897,23.0,4.555455338899155,6.7,0.0,0.0,0.999116088986996,-9.1196339707291,1.0,0.0,0.0 -897,24.0,0.0,0.0,0.0,0.0,0.990756931457684,-8.843532963133294,1.0,0.0,0.0 -897,25.0,1.8326544466835688,2.3,0.0,0.0,0.9770390429726012,-8.909404033165213,1.0,0.0,0.0 -897,26.0,0.0,0.0,0.0,0.0,0.9924372811055312,-8.605284256537237,1.0,0.0,0.0 -897,27.0,0.0,0.0,0.0,0.0,0.9720579870852992,-6.609681847317201,1.0,0.0,0.0 -897,28.0,1.2566773348687326,0.9,0.0,0.0,0.979076330561608,-9.197639774456633,1.0,0.0,0.0 -897,29.0,5.550324895670236,1.9,0.0,0.0,0.97182681736234,-9.644899271442862,1.0,0.0,0.0 -898,0.0,0.0,0.0,154.45489059534566,0.0003427101536779,1.0,0.0,0.0,0.0,1.0 -898,1.0,11.362457569438124,12.7,3.902659412109212e-07,9.763497880048163,0.9809658408081714,-3.539624587503816,0.0,1.0,0.0 -898,2.0,1.2566773348687326,1.2,0.0,0.0,0.9751880533305546,-4.642823146704354,1.0,0.0,0.0 -898,3.0,3.97947822708432,1.6,0.0,0.0,0.9687577946508128,-5.703756519630302,1.0,0.0,0.0 -898,4.0,49.32458539359776,19.0,-4.5637808392839634e-10,23.74972678512286,0.9617525369321508,-8.519476600693386,0.0,1.0,0.0 -898,5.0,0.0,0.0,0.0,0.0,0.968521000424104,-6.7737103098101485,1.0,0.0,0.0 -898,6.0,11.93843468125296,10.9,0.0,0.0,0.959362173954237,-7.748445819480465,1.0,0.0,0.0 -898,7.0,15.708466685859158,30.0,-4.0831749901075767e-10,30.33795098911896,0.96753517155494,-7.1829286419663685,0.0,1.0,0.0 -898,8.0,0.0,0.0,0.0,0.0,1.016446039910004,-8.50591100385468,1.0,0.0,0.0 -898,9.0,3.0369702259327704,2.0,0.0,0.0,1.0076312487030668,-9.406129281419595,1.0,0.0,0.0 -898,10.0,0.0,0.0,-2.4334151411306105e-10,22.163931035132155,1.0599399895737165,-8.505911003881597,0.0,1.0,0.0 -898,11.0,5.864494229387418,7.5,0.0,0.0,1.014184022969017,-8.956418159305061,1.0,0.0,0.0 -898,12.0,0.0,0.0,-5.367113896812287e-10,9.363056953960369,1.0269483261012973,-8.956418159346395,0.0,1.0,0.0 -898,13.0,3.246416448410893,1.6,0.0,0.0,1.0034068029984538,-9.39949682706173,1.0,0.0,0.0 -898,14.0,4.293647560801502,2.5,0.0,0.0,1.0001956626146664,-9.423455814239302,1.0,0.0,0.0 -898,15.0,1.8326544466835688,1.8,0.0,0.0,1.0052846464108447,-9.246958012858492,1.0,0.0,0.0 -898,16.0,4.712540005757747,5.8,0.0,0.0,1.0025907727014152,-9.443667788851084,1.0,0.0,0.0 -898,17.0,1.675569779824977,0.9,0.0,0.0,0.9938192861900624,-9.742191165233187,1.0,0.0,0.0 -898,18.0,4.9743477838554,3.4,0.0,0.0,0.9922923540054396,-9.839447376933364,1.0,0.0,0.0 -898,19.0,1.1519542236296716,0.7,0.0,0.0,0.9955191648299668,-9.761314392002566,1.0,0.0,0.0 -898,20.0,9.163272233417842,11.2,0.0,0.0,0.99721476276604,-9.565453370839496,1.0,0.0,0.0 -898,21.0,0.0,0.0,0.0,0.0,0.9975971161544336,-9.562787743960456,1.0,0.0,0.0 -898,22.0,1.675569779824977,1.6,0.0,0.0,0.9919549187647458,-9.589447329650383,1.0,0.0,0.0 -898,23.0,4.555455338899155,6.7,0.0,0.0,0.9875776503071766,-9.67568870029162,1.0,0.0,0.0 -898,24.0,0.0,0.0,0.0,0.0,0.9813428148171393,-9.4146969123638,1.0,0.0,0.0 -898,25.0,1.8326544466835688,2.3,0.0,0.0,0.9674895120439614,-9.481856303992664,1.0,0.0,0.0 -898,26.0,0.0,0.0,0.0,0.0,0.9844163421084094,-9.182281556981096,1.0,0.0,0.0 -898,27.0,0.0,0.0,0.0,0.0,0.9665522767260796,-7.111611020038486,1.0,0.0,0.0 -898,28.0,1.2566773348687326,0.9,0.0,0.0,0.97094039856446,-9.784460624599255,1.0,0.0,0.0 -898,29.0,5.550324895670236,1.9,0.0,0.0,0.9636282976758818,-10.239297060079467,1.0,0.0,0.0 -899,0.0,0.0,0.0,156.13991987950934,0.0067264247377352,1.0,0.0,0.0,0.0,1.0 -899,1.0,11.362457569438124,12.7,4.628961791401791e-06,8.851451212336585,0.9856612471225166,-2.5176775479522218,0.0,1.0,0.0 -899,2.0,1.2566773348687326,1.2,0.0,0.0,0.9670216786804552,-7.803512883238828,1.0,0.0,0.0 -899,3.0,3.97947822708432,1.6,0.0,0.0,0.9595449324726576,-9.638221008930616,1.0,0.0,0.0 -899,4.0,49.32458539359776,19.0,-6.372068983005764e-09,29.367397910781023,0.966376883792992,-10.122534687725032,0.0,1.0,0.0 -899,5.0,0.0,0.0,0.0,0.0,0.9608851119369246,-10.96750475225402,1.0,0.0,0.0 -899,6.0,11.93843468125296,10.9,0.0,0.0,0.9561282893940036,-10.876054126253146,1.0,0.0,0.0 -899,7.0,15.708466685859158,30.0,-4.714999489761579e-09,32.99811425496778,0.9609235087691116,-11.398830950205824,0.0,1.0,0.0 -899,8.0,0.0,0.0,0.0,0.0,1.0125059839666457,-12.671714862806448,1.0,0.0,0.0 -899,9.0,3.0369702259327704,2.0,0.0,0.0,1.0038080726809089,-13.553753334060048,1.0,0.0,0.0 -899,10.0,0.0,0.0,-7.496038510790495e-09,24.0005191209071,1.05961830681933,-12.671714863639115,0.0,1.0,0.0 -899,11.0,5.864494229387418,7.5,0.0,0.0,1.0148307911641214,-13.059943356794612,1.0,0.0,0.0 -899,12.0,0.0,0.0,-7.443145145694399e-09,15.307794899712754,1.0355264601634582,-13.059943357362748,0.0,1.0,0.0 -899,13.0,3.246416448410893,1.6,0.0,0.0,1.0035682666327008,-13.512111767004228,1.0,0.0,0.0 -899,14.0,4.293647560801502,2.5,0.0,0.0,0.9998195977339448,-13.534347308278909,1.0,0.0,0.0 -899,15.0,1.8326544466835688,1.8,0.0,0.0,1.0039609911998189,-13.360019937163248,1.0,0.0,0.0 -899,16.0,4.712540005757747,5.8,0.0,0.0,0.9995462968211836,-13.58403262270073,1.0,0.0,0.0 -899,17.0,1.675569779824977,0.9,0.0,0.0,0.9922088181643534,-13.866488136926888,1.0,0.0,0.0 -899,18.0,4.9743477838554,3.4,0.0,0.0,0.9899552470330192,-13.971649456981352,1.0,0.0,0.0 -899,19.0,1.1519542236296716,0.7,0.0,0.0,0.9928080536270156,-13.896985159889873,1.0,0.0,0.0 -899,20.0,9.163272233417842,11.2,0.0,0.0,0.9921342141542612,-13.724372591878492,1.0,0.0,0.0 -899,21.0,0.0,0.0,0.0,0.0,0.9958202552851034,-13.695294540514038,1.0,0.0,0.0 -899,22.0,1.675569779824977,1.6,0.0,0.0,0.9907683869540774,-13.709099220891698,1.0,0.0,0.0 -899,23.0,4.555455338899155,6.7,0.0,0.0,0.9853203011100288,-13.807448485384482,1.0,0.0,0.0 -899,24.0,0.0,0.0,0.0,0.0,0.9769651021130816,-13.557041778837831,1.0,0.0,0.0 -899,25.0,1.8326544466835688,2.3,0.0,0.0,0.9630479012661272,-13.624813238411797,1.0,0.0,0.0 -899,26.0,0.0,0.0,0.0,0.0,0.9787585545619684,-13.332808357562778,1.0,0.0,0.0 -899,27.0,0.0,0.0,0.0,0.0,0.9593909059089814,-11.308458588731662,1.0,0.0,0.0 -899,28.0,1.2566773348687326,0.9,0.0,0.0,0.9652002667479398,-13.94206521223023,1.0,0.0,0.0 -899,29.0,5.550324895670236,1.9,0.0,0.0,0.9578433446274348,-14.402364119315068,1.0,0.0,0.0 -900,0.0,0.0,0.0,154.59425450338415,0.0013500458501347,1.0,0.0,0.0,0.0,1.0 -900,1.0,11.362457569438124,12.7,1.6924915783739308e-06,1.7283489530853302,0.9800415101235154,-3.5227685692811246,0.0,1.0,0.0 -900,2.0,1.2566773348687326,1.2,0.0,0.0,0.977807566610576,-4.692765850219376,1.0,0.0,0.0 -900,3.0,3.97947822708432,1.6,0.0,0.0,0.971992304881268,-5.76467220988858,1.0,0.0,0.0 -900,4.0,49.32458539359776,19.0,-3.4976290260674615e-10,24.614809337856343,0.9640801054857814,-8.536813756428865,0.0,1.0,0.0 -900,5.0,0.0,0.0,0.0,0.0,0.972258574943815,-6.829722453289433,1.0,0.0,0.0 -900,6.0,11.93843468125296,10.9,0.0,0.0,0.9625475771447524,-7.787799603155437,1.0,0.0,0.0 -900,7.0,15.708466685859158,30.0,-3.2167508771470246e-09,34.17926338751556,0.9727224940603748,-7.259636171149944,0.0,1.0,0.0 -900,8.0,0.0,0.0,0.0,0.0,1.0202170508913178,-8.527970994389918,1.0,0.0,0.0 -900,9.0,3.0369702259327704,2.0,0.0,0.0,1.0133297592473098,-9.40897169173662,1.0,0.0,0.0 -900,10.0,0.0,0.0,-6.293461431934211e-10,20.26929095630534,1.05999108829109,-8.527970994459276,0.0,1.0,0.0 -900,11.0,5.864494229387418,7.5,0.0,0.0,1.0246737316833443,-9.03331702420995,1.0,0.0,0.0 -900,12.0,0.0,0.0,2.5117560115876713e-10,14.324817013932911,1.0438853659053762,-9.033317024191112,0.0,1.0,0.0 -900,13.0,3.246416448410893,1.6,0.0,0.0,1.0133636451082344,-9.466477990269974,1.0,0.0,0.0 -900,14.0,4.293647560801502,2.5,0.0,0.0,1.009570561028399,-9.474534620116026,1.0,0.0,0.0 -900,15.0,1.8326544466835688,1.8,0.0,0.0,1.0137981461269838,-9.28028452899526,1.0,0.0,0.0 -900,16.0,4.712540005757747,5.8,0.0,0.0,1.0091848733400028,-9.45819998810433,1.0,0.0,0.0 -900,17.0,1.675569779824977,0.9,0.0,0.0,1.0019740068350371,-9.770577170331547,1.0,0.0,0.0 -900,18.0,4.9743477838554,3.4,0.0,0.0,0.9997053631240904,-9.855941794677692,1.0,0.0,0.0 -900,19.0,1.1519542236296716,0.7,0.0,0.0,1.002511435237048,-9.77335596829233,1.0,0.0,0.0 -900,20.0,9.163272233417842,11.2,0.0,0.0,1.0031169562696445,-9.569750213906543,1.0,0.0,0.0 -900,21.0,0.0,0.0,0.0,0.0,1.0035420193442142,-9.568227817471278,1.0,0.0,0.0 -900,22.0,1.675569779824977,1.6,0.0,0.0,1.0001536192060636,-9.627176218524976,1.0,0.0,0.0 -900,23.0,4.555455338899155,6.7,0.0,0.0,0.9941515328244545,-9.698455516534494,1.0,0.0,0.0 -900,24.0,0.0,0.0,0.0,0.0,0.9867417064903392,-9.440010714074504,1.0,0.0,0.0 -900,25.0,1.8326544466835688,2.3,0.0,0.0,0.9729663921302149,-9.50642667246596,1.0,0.0,0.0 -900,26.0,0.0,0.0,0.0,0.0,0.9890464650286576,-9.211218232377574,1.0,0.0,0.0 -900,27.0,0.0,0.0,0.0,0.0,0.9706853142018474,-7.169460789828863,1.0,0.0,0.0 -900,28.0,1.2566773348687326,0.9,0.0,0.0,0.9400009394501614,-11.399192988865703,1.0,0.0,0.0 -900,29.0,5.550324895670236,1.9,0.0,0.0,0.9475557119917932,-11.17164281717055,1.0,0.0,0.0 -901,0.0,0.0,0.0,154.51578019947735,0.0031875684745941,1.0,0.0,0.0,0.0,1.0 -901,1.0,11.362457569438124,12.7,2.4038107143421643e-06,10.99113439633392,0.9808548136128884,-3.6152018821775584,0.0,1.0,0.0 -901,2.0,1.2566773348687326,1.2,0.0,0.0,0.9752138055284144,-4.433241270519107,1.0,0.0,0.0 -901,3.0,3.97947822708432,1.6,0.0,0.0,0.9687645011856252,-5.443493259792505,1.0,0.0,0.0 -901,4.0,49.32458539359776,19.0,5.247339742700463e-09,22.33917604835149,0.9619658855225874,-9.717294542399074,0.0,1.0,0.0 -901,5.0,0.0,0.0,0.0,0.0,0.9681980728123653,-6.384955847052642,1.0,0.0,0.0 -901,6.0,11.93843468125296,10.9,0.0,0.0,0.9561545513702916,-6.823566010362554,1.0,0.0,0.0 -901,7.0,15.708466685859158,30.0,2.849256087407534e-09,32.44592379330917,0.9679976842692936,-6.807934533595906,0.0,1.0,0.0 -901,8.0,0.0,0.0,0.0,0.0,1.016449164261785,-8.138107074121091,1.0,0.0,0.0 -901,9.0,3.0369702259327704,2.0,0.0,0.0,1.0077951045097595,-9.04875889349963,1.0,0.0,0.0 -901,10.0,0.0,0.0,3.1587992417604887e-09,22.188276713736453,1.059988880945787,-8.138107073771693,0.0,1.0,0.0 -901,11.0,5.864494229387418,7.5,0.0,0.0,1.0147096626315095,-8.653417335885472,1.0,0.0,0.0 -901,12.0,0.0,0.0,5.3019887171234326e-09,9.86385446349164,1.0281410841185012,-8.653417335477814,0.0,1.0,0.0 -901,13.0,3.246416448410893,1.6,0.0,0.0,1.0038683510514117,-9.089924012822536,1.0,0.0,0.0 -901,14.0,4.293647560801502,2.5,0.0,0.0,1.000633852675117,-9.10622926287646,1.0,0.0,0.0 -901,15.0,1.8326544466835688,1.8,0.0,0.0,1.00569248295078,-8.919794477163967,1.0,0.0,0.0 -901,16.0,4.712540005757747,5.8,0.0,0.0,1.0028206125368744,-9.0959547532819,1.0,0.0,0.0 -901,17.0,1.675569779824977,0.9,0.0,0.0,0.9941668858753744,-9.410580733965787,1.0,0.0,0.0 -901,18.0,4.9743477838554,3.4,0.0,0.0,0.9925848990969424,-9.49932901577708,1.0,0.0,0.0 -901,19.0,1.1519542236296716,0.7,0.0,0.0,0.9957818008663616,-9.416785088282271,1.0,0.0,0.0 -901,20.0,9.163272233417842,11.2,0.0,0.0,0.9973810871457388,-9.209496239004254,1.0,0.0,0.0 -901,21.0,0.0,0.0,0.0,0.0,0.99776345203312,-9.207303090344409,1.0,0.0,0.0 -901,22.0,1.675569779824977,1.6,0.0,0.0,0.9922748337992784,-9.258555226732978,1.0,0.0,0.0 -901,23.0,4.555455338899155,6.7,0.0,0.0,0.987734863767744,-9.326513170354668,1.0,0.0,0.0 -901,24.0,0.0,0.0,0.0,0.0,0.9813086239015418,-9.05292917029429,1.0,0.0,0.0 -901,25.0,1.8326544466835688,2.3,0.0,0.0,0.9674548243790888,-9.12009331018282,1.0,0.0,0.0 -901,26.0,0.0,0.0,0.0,0.0,0.984259705519101,-8.812864557044609,1.0,0.0,0.0 -901,27.0,0.0,0.0,0.0,0.0,0.9664001073897152,-6.727555291657476,1.0,0.0,0.0 -901,28.0,1.2566773348687326,0.9,0.0,0.0,0.977605349208654,-9.005839027932137,1.0,0.0,0.0 -901,29.0,5.550324895670236,1.9,0.0,0.0,0.9531820025913352,-10.484501259676003,1.0,0.0,0.0 -902,0.0,0.0,0.0,129.4673534194774,1.6724431617376467e-06,1.0,0.0,0.0,0.0,1.0 -902,1.0,11.362457569438124,12.7,24.321036456635632,13.714357562073737,0.983322265430064,-2.802334290238889,0.0,1.0,0.0 -902,2.0,1.2566773348687326,1.2,0.0,0.0,0.9793720358911836,-4.295901718498282,1.0,0.0,0.0 -902,3.0,3.97947822708432,1.6,0.0,0.0,0.9738743596375566,-5.271705413884985,1.0,0.0,0.0 -902,4.0,49.32458539359776,19.0,0.0,0.0,0.9400000005987276,-7.507199505973006,0.0,1.0,0.0 -902,5.0,0.0,0.0,0.0,0.0,0.9728586428340148,-6.263383799776525,1.0,0.0,0.0 -902,6.0,11.93843468125296,10.9,0.0,0.0,0.9529048609027116,-7.052575435064511,1.0,0.0,0.0 -902,7.0,15.708466685859158,30.0,-7.590112854786644e-09,39.99999612794869,0.9755263925506712,-6.728547329495878,0.0,1.0,0.0 -902,8.0,0.0,0.0,0.0,0.0,1.022281778872549,-7.942153217819467,1.0,0.0,0.0 -902,9.0,3.0369702259327704,2.0,0.0,0.0,1.0172409802174034,-8.810237538284445,1.0,0.0,0.0 -902,10.0,0.0,0.0,-9.592168349192069e-09,19.221779397006337,1.0599999879301216,-7.942153218874399,0.0,1.0,0.0 -902,11.0,5.864494229387418,7.5,0.0,0.0,1.0338565164754443,-8.541298507032774,1.0,0.0,0.0 -902,12.0,0.0,0.0,-1.382845942357227e-08,19.794336342262294,1.0599999800607722,-8.541298508044957,0.0,1.0,0.0 -902,13.0,3.246416448410893,1.6,0.0,0.0,1.0219354062113006,-8.961700054357129,1.0,0.0,0.0 -902,14.0,4.293647560801502,2.5,0.0,0.0,1.01752548269155,-8.948600687855592,1.0,0.0,0.0 -902,15.0,1.8326544466835688,1.8,0.0,0.0,1.0208103915668918,-8.730410367560888,1.0,0.0,0.0 -902,16.0,4.712540005757747,5.8,0.0,0.0,1.0140660189437891,-8.877557758111148,1.0,0.0,0.0 -902,17.0,1.675569779824977,0.9,0.0,0.0,1.008565829595487,-9.214473881640531,1.0,0.0,0.0 -902,18.0,4.9743477838554,3.4,0.0,0.0,1.00547443800672,-9.2831185478487,1.0,0.0,0.0 -902,19.0,1.1519542236296716,0.7,0.0,0.0,1.0078242270796072,-9.193056440951322,1.0,0.0,0.0 -902,20.0,9.163272233417842,11.2,0.0,0.0,1.007251060506405,-8.972670233307873,1.0,0.0,0.0 -902,21.0,0.0,0.0,0.0,0.0,1.0077316588517573,-8.972173576022602,1.0,0.0,0.0 -902,22.0,1.675569779824977,1.6,0.0,0.0,1.0068474902998263,-9.077682570019237,1.0,0.0,0.0 -902,23.0,4.555455338899155,6.7,0.0,0.0,0.999116088986996,-9.1196339707291,1.0,0.0,0.0 -902,24.0,0.0,0.0,0.0,0.0,0.990756931457684,-8.843532963133294,1.0,0.0,0.0 -902,25.0,1.8326544466835688,2.3,0.0,0.0,0.9770390429726012,-8.909404033165213,1.0,0.0,0.0 -902,26.0,0.0,0.0,0.0,0.0,0.9924372811055312,-8.605284256537237,1.0,0.0,0.0 -902,27.0,0.0,0.0,0.0,0.0,0.9720579870852992,-6.609681847317201,1.0,0.0,0.0 -902,28.0,1.2566773348687326,0.9,0.0,0.0,0.979076330561608,-9.197639774456633,1.0,0.0,0.0 -902,29.0,5.550324895670236,1.9,0.0,0.0,0.97182681736234,-9.644899271442862,1.0,0.0,0.0 -903,0.0,0.0,0.0,155.35817561874217,0.0027552428992549,1.0,0.0,0.0,0.0,1.0 -903,1.0,11.362457569438124,12.7,3.94867977707792e-06,5.299690390659734,0.9796969107041212,-3.5913349830799466,0.0,1.0,0.0 -903,2.0,1.2566773348687326,1.2,0.0,0.0,0.978289088199945,-4.5702969468122605,1.0,0.0,0.0 -903,3.0,3.97947822708432,1.6,0.0,0.0,0.972570046600578,-5.612509704030528,1.0,0.0,0.0 -903,4.0,49.32458539359776,19.0,2.138886880904598e-09,24.17826205309757,0.9607674107833234,-8.74098208606657,0.0,1.0,0.0 -903,5.0,0.0,0.0,0.0,0.0,0.9668577774592954,-7.1404521998774415,1.0,0.0,0.0 -903,6.0,11.93843468125296,10.9,0.0,0.0,0.9579432096608947,-8.056456988798747,1.0,0.0,0.0 -903,7.0,15.708466685859158,30.0,1.572663242938912e-09,31.258032658250144,0.9660405517534522,-7.595866136599598,0.0,1.0,0.0 -903,8.0,0.0,0.0,0.0,0.0,1.006519348203466,-11.846025117969814,1.0,0.0,0.0 -903,9.0,3.0369702259327704,2.0,0.0,0.0,0.9936396863121372,-14.319931693963424,1.0,0.0,0.0 -903,10.0,0.0,0.0,5.079141107095794e-09,23.99063290685078,1.0538691691372184,-11.846025117399169,0.0,1.0,0.0 -903,11.0,5.864494229387418,7.5,0.0,0.0,0.973339060862736,-17.09068409292167,1.0,0.0,0.0 -903,12.0,0.0,0.0,1.0490473986628867e-10,17.239436197350052,0.997533937614505,-17.090684092913005,0.0,1.0,0.0 -903,13.0,3.246416448410893,1.6,0.0,0.0,0.9646439373054104,-17.19053404743792,1.0,0.0,0.0 -903,14.0,4.293647560801502,2.5,0.0,0.0,0.9662910335207632,-16.902678073447408,1.0,0.0,0.0 -903,15.0,1.8326544466835688,1.8,0.0,0.0,0.9776313035115568,-16.043937243963995,1.0,0.0,0.0 -903,16.0,4.712540005757747,5.8,0.0,0.0,0.983463006748268,-14.924884716515962,1.0,0.0,0.0 -903,17.0,1.675569779824977,0.9,0.0,0.0,0.9675673546069194,-15.290093638905043,1.0,0.0,0.0 -903,18.0,4.9743477838554,3.4,0.0,0.0,0.9698771014453994,-15.193031472815028,1.0,0.0,0.0 -903,19.0,1.1519542236296716,0.7,0.0,0.0,0.9752325799007536,-15.007674322996708,1.0,0.0,0.0 -903,20.0,9.163272233417842,11.2,0.0,0.0,0.9818433788252752,-14.494103574733268,1.0,0.0,0.0 -903,21.0,0.0,0.0,0.0,0.0,0.9835923485353224,-14.51242080487096,1.0,0.0,0.0 -903,22.0,1.675569779824977,1.6,0.0,0.0,0.9649944996403714,-16.007662990266756,1.0,0.0,0.0 -903,23.0,4.555455338899155,6.7,0.0,0.0,0.970355432805954,-14.672084208386668,1.0,0.0,0.0 -903,24.0,0.0,0.0,0.0,0.0,0.9743481925519124,-12.784896650220514,1.0,0.0,0.0 -903,25.0,1.8326544466835688,2.3,0.0,0.0,0.9603925082233954,-12.853038014115988,1.0,0.0,0.0 -903,26.0,0.0,0.0,0.0,0.0,0.9837228226345992,-11.544589018827343,1.0,0.0,0.0 -903,27.0,0.0,0.0,0.0,0.0,0.963905129920221,-7.706097457595503,1.0,0.0,0.0 -903,28.0,1.2566773348687326,0.9,0.0,0.0,0.970236840796296,-12.147628981148866,1.0,0.0,0.0 -903,29.0,5.550324895670236,1.9,0.0,0.0,0.9629192760639622,-12.60312968526318,1.0,0.0,0.0 -904,0.0,0.0,0.0,136.41555069229017,2.1374717018574078e-05,1.0,0.0,0.0,0.0,1.0 -904,1.0,11.362457569438124,12.7,25.45951503329375,18.004519319182826,0.961426921850149,-18.773750685181525,0.0,1.0,0.0 -904,2.0,1.2566773348687326,1.2,0.0,0.0,0.961530396232887,-13.498258812608649,1.0,0.0,0.0 -904,3.0,3.97947822708432,1.6,0.0,0.0,0.956534758423377,-16.719677498865437,1.0,0.0,0.0 -904,4.0,49.32458539359776,19.0,-2.157187313394919e-11,24.03433043472296,0.9459856000868792,-22.340684217218264,0.0,1.0,0.0 -904,5.0,0.0,0.0,0.0,0.0,0.959106375849062,-18.902256820761437,1.0,0.0,0.0 -904,6.0,11.93843468125296,10.9,0.0,0.0,0.9473592910263752,-20.572159032217183,1.0,0.0,0.0 -904,7.0,15.708466685859158,30.0,-2.594443258031471e-12,39.541131553194745,0.9613761705579684,-19.37399760515118,0.0,1.0,0.0 -904,8.0,0.0,0.0,0.0,0.0,1.0151409455510236,-20.38763667210619,1.0,0.0,0.0 -904,9.0,3.0369702259327704,2.0,0.0,0.0,1.009905062797381,-21.150380024793517,1.0,0.0,0.0 -904,10.0,0.0,0.0,-1.0769901295325869e-11,22.86078463276532,1.0599998500444154,-20.387636672107387,0.0,1.0,0.0 -904,11.0,5.864494229387418,7.5,0.0,0.0,1.0273006410603231,-20.49621130554121,1.0,0.0,0.0 -904,12.0,0.0,0.0,-1.0129174011724597e-11,23.999918480608542,1.059027747321544,-20.49621130554196,0.0,1.0,0.0 -904,13.0,3.246416448410893,1.6,0.0,0.0,1.015423711232822,-20.982071007602265,1.0,0.0,0.0 -904,14.0,4.293647560801502,2.5,0.0,0.0,1.0106847145582794,-21.03099383653109,1.0,0.0,0.0 -904,15.0,1.8326544466835688,1.8,0.0,0.0,1.013616619105165,-20.84913633807955,1.0,0.0,0.0 -904,16.0,4.712540005757747,5.8,0.0,0.0,1.006824504945071,-21.149933601272792,1.0,0.0,0.0 -904,17.0,1.675569779824977,0.9,0.0,0.0,1.0014665070747226,-21.391424029044767,1.0,0.0,0.0 -904,18.0,4.9743477838554,3.4,0.0,0.0,0.9982419579470598,-21.51550859597091,1.0,0.0,0.0 -904,19.0,1.1519542236296716,0.7,0.0,0.0,1.0005483691006745,-21.452867190387614,1.0,0.0,0.0 -904,20.0,9.163272233417842,11.2,0.0,0.0,0.9968847779126268,-21.39248658893009,1.0,0.0,0.0 -904,21.0,0.0,0.0,0.0,0.0,0.9964309955965994,-21.415583232383938,1.0,0.0,0.0 -904,22.0,1.675569779824977,1.6,0.0,0.0,1.000030722099187,-21.32028165327234,1.0,0.0,0.0 -904,23.0,4.555455338899155,6.7,0.0,0.0,0.992417629778851,-21.577917294032083,1.0,0.0,0.0 -904,24.0,0.0,0.0,0.0,0.0,0.9587792959564696,-21.40079368547024,1.0,0.0,0.0 -904,25.0,1.8326544466835688,2.3,0.0,0.0,0.9445901186423498,-21.471200018510352,1.0,0.0,0.0 -904,26.0,0.0,0.0,0.0,0.0,0.9659842480932151,-21.31900685504988,1.0,0.0,0.0 -904,27.0,0.0,0.0,0.0,0.0,0.9568765524868692,-19.23486013650462,1.0,0.0,0.0 -904,28.0,1.2566773348687326,0.9,0.0,0.0,0.9522361818916408,-21.944712852062157,1.0,0.0,0.0 -904,29.0,5.550324895670236,1.9,0.0,0.0,0.9447759495715158,-22.417717685398674,1.0,0.0,0.0 -905,0.0,0.0,0.0,154.45489059534566,0.0003427101536779,1.0,0.0,0.0,0.0,1.0 -905,1.0,11.362457569438124,12.7,3.902659412109212e-07,9.763497880048163,0.9809658408081714,-3.539624587503816,0.0,1.0,0.0 -905,2.0,1.2566773348687326,1.2,0.0,0.0,0.9751880533305546,-4.642823146704354,1.0,0.0,0.0 -905,3.0,3.97947822708432,1.6,0.0,0.0,0.9687577946508128,-5.703756519630302,1.0,0.0,0.0 -905,4.0,49.32458539359776,19.0,-4.5637808392839634e-10,23.74972678512286,0.9617525369321508,-8.519476600693386,0.0,1.0,0.0 -905,5.0,0.0,0.0,0.0,0.0,0.968521000424104,-6.7737103098101485,1.0,0.0,0.0 -905,6.0,11.93843468125296,10.9,0.0,0.0,0.959362173954237,-7.748445819480465,1.0,0.0,0.0 -905,7.0,15.708466685859158,30.0,-4.0831749901075767e-10,30.33795098911896,0.96753517155494,-7.1829286419663685,0.0,1.0,0.0 -905,8.0,0.0,0.0,0.0,0.0,1.016446039910004,-8.50591100385468,1.0,0.0,0.0 -905,9.0,3.0369702259327704,2.0,0.0,0.0,1.0076312487030668,-9.406129281419595,1.0,0.0,0.0 -905,10.0,0.0,0.0,-2.4334151411306105e-10,22.163931035132155,1.0599399895737165,-8.505911003881597,0.0,1.0,0.0 -905,11.0,5.864494229387418,7.5,0.0,0.0,1.014184022969017,-8.956418159305061,1.0,0.0,0.0 -905,12.0,0.0,0.0,-5.367113896812287e-10,9.363056953960369,1.0269483261012973,-8.956418159346395,0.0,1.0,0.0 -905,13.0,3.246416448410893,1.6,0.0,0.0,1.0034068029984538,-9.39949682706173,1.0,0.0,0.0 -905,14.0,4.293647560801502,2.5,0.0,0.0,1.0001956626146664,-9.423455814239302,1.0,0.0,0.0 -905,15.0,1.8326544466835688,1.8,0.0,0.0,1.0052846464108447,-9.246958012858492,1.0,0.0,0.0 -905,16.0,4.712540005757747,5.8,0.0,0.0,1.0025907727014152,-9.443667788851084,1.0,0.0,0.0 -905,17.0,1.675569779824977,0.9,0.0,0.0,0.9938192861900624,-9.742191165233187,1.0,0.0,0.0 -905,18.0,4.9743477838554,3.4,0.0,0.0,0.9922923540054396,-9.839447376933364,1.0,0.0,0.0 -905,19.0,1.1519542236296716,0.7,0.0,0.0,0.9955191648299668,-9.761314392002566,1.0,0.0,0.0 -905,20.0,9.163272233417842,11.2,0.0,0.0,0.99721476276604,-9.565453370839496,1.0,0.0,0.0 -905,21.0,0.0,0.0,0.0,0.0,0.9975971161544336,-9.562787743960456,1.0,0.0,0.0 -905,22.0,1.675569779824977,1.6,0.0,0.0,0.9919549187647458,-9.589447329650383,1.0,0.0,0.0 -905,23.0,4.555455338899155,6.7,0.0,0.0,0.9875776503071766,-9.67568870029162,1.0,0.0,0.0 -905,24.0,0.0,0.0,0.0,0.0,0.9813428148171393,-9.4146969123638,1.0,0.0,0.0 -905,25.0,1.8326544466835688,2.3,0.0,0.0,0.9674895120439614,-9.481856303992664,1.0,0.0,0.0 -905,26.0,0.0,0.0,0.0,0.0,0.9844163421084094,-9.182281556981096,1.0,0.0,0.0 -905,27.0,0.0,0.0,0.0,0.0,0.9665522767260796,-7.111611020038486,1.0,0.0,0.0 -905,28.0,1.2566773348687326,0.9,0.0,0.0,0.97094039856446,-9.784460624599255,1.0,0.0,0.0 -905,29.0,5.550324895670236,1.9,0.0,0.0,0.9636282976758818,-10.239297060079467,1.0,0.0,0.0 -906,0.0,0.0,0.0,154.64682872711612,0.0001834363382968,1.0,0.0,0.0,0.0,1.0 -906,1.0,11.362457569438124,12.7,2.757980766851625e-07,7.988697037297776,0.9807016143259366,-3.5282611045303414,0.0,1.0,0.0 -906,2.0,1.2566773348687326,1.2,0.0,0.0,0.9759132384626326,-4.690706058617792,1.0,0.0,0.0 -906,3.0,3.97947822708432,1.6,0.0,0.0,0.969657688519698,-5.762910344765334,1.0,0.0,0.0 -906,4.0,49.32458539359776,19.0,-3.9550598573058666e-10,23.69246445273204,0.9618309563936192,-8.488897460317359,0.0,1.0,0.0 -906,5.0,0.0,0.0,0.0,0.0,0.9690805413943469,-6.728202522719887,1.0,0.0,0.0 -906,6.0,11.93843468125296,10.9,0.0,0.0,0.9597304436555136,-7.7090500387048015,1.0,0.0,0.0 -906,7.0,15.708466685859158,30.0,-3.5073899685750354e-10,29.944019170838075,0.9679785803833838,-7.133822601481223,0.0,1.0,0.0 -906,8.0,0.0,0.0,0.0,0.0,1.0123015244782134,-8.164175268987016,1.0,0.0,0.0 -906,9.0,3.0369702259327704,2.0,0.0,0.0,1.0125845064224996,-8.907249150366741,1.0,0.0,0.0 -906,10.0,0.0,0.0,-3.0346959764400326e-10,10.614267913670249,1.0336602610878598,-8.164175269021575,0.0,1.0,0.0 -906,11.0,5.864494229387418,7.5,0.0,0.0,1.023511663259434,-9.585872018554246,1.0,0.0,0.0 -906,12.0,0.0,0.0,-2.5302244685929833e-10,22.988773788779344,1.0540457121468758,-9.585872018573058,0.0,1.0,0.0 -906,13.0,3.246416448410893,1.6,0.0,0.0,1.010200359328769,-10.028434534764704,1.0,0.0,0.0 -906,14.0,4.293647560801502,2.5,0.0,0.0,1.0044341578836111,-9.999598288486885,1.0,0.0,0.0 -906,15.0,1.8326544466835688,1.8,0.0,0.0,1.0020052578829828,-9.908727959810957,1.0,0.0,0.0 -906,16.0,4.712540005757747,5.8,0.0,0.0,0.9882012998085344,-10.257244820131811,1.0,0.0,0.0 -906,17.0,1.675569779824977,0.9,0.0,0.0,0.9875096377354042,-10.572430465317698,1.0,0.0,0.0 -906,18.0,4.9743477838554,3.4,0.0,0.0,0.979772369866458,-10.824361260670964,1.0,0.0,0.0 -906,19.0,1.1519542236296716,0.7,0.0,0.0,1.0100671188776709,-9.005417319992565,1.0,0.0,0.0 -906,20.0,9.163272233417842,11.2,0.0,0.0,1.0021126547276027,-9.132448008788534,1.0,0.0,0.0 -906,21.0,0.0,0.0,0.0,0.0,1.002452309428996,-9.151448743718284,1.0,0.0,0.0 -906,22.0,1.675569779824977,1.6,0.0,0.0,0.9960397758251628,-9.866994851256928,1.0,0.0,0.0 -906,23.0,4.555455338899155,6.7,0.0,0.0,0.9914080472150348,-9.551118170327756,1.0,0.0,0.0 -906,24.0,0.0,0.0,0.0,0.0,0.983942956331092,-9.30268293711903,1.0,0.0,0.0 -906,25.0,1.8326544466835688,2.3,0.0,0.0,0.9701273248109928,-9.369482728659982,1.0,0.0,0.0 -906,26.0,0.0,0.0,0.0,0.0,0.9862373100006324,-9.079780470039683,1.0,0.0,0.0 -906,27.0,0.0,0.0,0.0,0.0,0.9672512716316172,-7.061574905189273,1.0,0.0,0.0 -906,28.0,1.2566773348687326,0.9,0.0,0.0,0.9727876509905774,-9.67970789284788,1.0,0.0,0.0 -906,29.0,5.550324895670236,1.9,0.0,0.0,0.965489856573617,-10.13280714958391,1.0,0.0,0.0 -907,0.0,0.0,0.0,155.48372872633723,0.0056781750521928,1.0,0.0,0.0,0.0,1.0 -907,1.0,11.362457569438124,12.7,6.322490190934715e-06,8.140212291844293,0.9816891854343336,-3.238411093326168,0.0,1.0,0.0 -907,2.0,1.2566773348687326,1.2,0.0,0.0,0.9740763929394112,-5.60869212638304,1.0,0.0,0.0 -907,3.0,3.97947822708432,1.6,0.0,0.0,0.967553580544922,-6.903804052317192,1.0,0.0,0.0 -907,4.0,49.32458539359776,19.0,2.9671622583815062e-09,24.900546436207943,0.9617882342262944,-9.215369913059414,0.0,1.0,0.0 -907,5.0,0.0,0.0,0.0,0.0,0.9648227789066308,-8.465913871415772,1.0,0.0,0.0 -907,6.0,11.93843468125296,10.9,0.0,0.0,0.957002246030641,-9.033744894241858,1.0,0.0,0.0 -907,7.0,15.708466685859158,30.0,3.4628453563081303e-09,27.53736547409773,0.9625967182380458,-8.856767396374234,0.0,1.0,0.0 -907,8.0,0.0,0.0,0.0,0.0,1.0178238655699472,-10.047626745445749,1.0,0.0,0.0 -907,9.0,3.0369702259327704,2.0,0.0,0.0,1.0123786205309278,-10.862672916483596,1.0,0.0,0.0 -907,10.0,0.0,0.0,7.261382755208928e-09,21.486936096703467,1.0599874107479113,-10.047626744643644,0.0,1.0,0.0 -907,11.0,5.864494229387418,7.5,0.0,0.0,1.0323540133445936,-10.462590950446298,1.0,0.0,0.0 -907,12.0,0.0,0.0,4.601450313660417e-09,20.783373042083,1.0598087059651993,-10.46259095010894,0.0,1.0,0.0 -907,13.0,3.246416448410893,1.6,0.0,0.0,1.0175071032888985,-11.031795848309333,1.0,0.0,0.0 -907,14.0,4.293647560801502,2.5,0.0,0.0,1.0092646300271129,-11.099740377815529,1.0,0.0,0.0 -907,15.0,1.8326544466835688,1.8,0.0,0.0,0.9994247614433774,-11.18298766318066,1.0,0.0,0.0 -907,16.0,4.712540005757747,5.8,0.0,0.0,1.003852339185197,-11.035590118305182,1.0,0.0,0.0 -907,17.0,1.675569779824977,0.9,0.0,0.0,0.9894899803856072,-11.77002365783814,1.0,0.0,0.0 -907,18.0,4.9743477838554,3.4,0.0,0.0,0.9800739142844146,-12.082879600802956,1.0,0.0,0.0 -907,19.0,1.1519542236296716,0.7,0.0,0.0,0.9791876496605388,-12.115437501259978,1.0,0.0,0.0 -907,20.0,9.163272233417842,11.2,0.0,0.0,0.9835189484342054,-11.404579937617168,1.0,0.0,0.0 -907,21.0,0.0,0.0,0.0,0.0,0.9872875828622222,-11.35363814197794,1.0,0.0,0.0 -907,22.0,1.675569779824977,1.6,0.0,0.0,0.9961662817429788,-11.35371967923877,1.0,0.0,0.0 -907,23.0,4.555455338899155,6.7,0.0,0.0,0.985307861007514,-11.564832064184053,1.0,0.0,0.0 -907,24.0,0.0,0.0,0.0,0.0,0.9638187602526748,-10.923103200421306,1.0,0.0,0.0 -907,25.0,1.8326544466835688,2.3,0.0,0.0,0.9497060253488336,-10.992764126531132,1.0,0.0,0.0 -907,26.0,0.0,0.0,0.0,0.0,0.9709848724815984,-10.842170378308008,1.0,0.0,0.0 -907,27.0,0.0,0.0,0.0,0.0,0.961588395153304,-8.779253538834501,1.0,0.0,0.0 -907,28.0,1.2566773348687326,0.9,0.0,0.0,0.9573117438627198,-11.461358352700746,1.0,0.0,0.0 -907,29.0,5.550324895670236,1.9,0.0,0.0,0.949892307368956,-11.929326605133316,1.0,0.0,0.0 -908,0.0,0.0,0.0,154.5072630975951,0.0007003644571845,1.0,0.0,0.0,0.0,1.0 -908,1.0,11.362457569438124,12.7,7.394832229057866e-07,9.92185130502606,0.9809560101462416,-3.543027246556825,0.0,1.0,0.0 -908,2.0,1.2566773348687326,1.2,0.0,0.0,0.9751863220135444,-4.638230703292011,1.0,0.0,0.0 -908,3.0,3.97947822708432,1.6,0.0,0.0,0.9687550710694895,-5.698054507095924,1.0,0.0,0.0 -908,4.0,49.32458539359776,19.0,-6.60583684086168e-10,23.882675834748767,0.9617383020291632,-8.530445324940438,0.0,1.0,0.0 -908,5.0,0.0,0.0,0.0,0.0,0.9682268908584112,-6.785886856150728,1.0,0.0,0.0 -908,6.0,11.93843468125296,10.9,0.0,0.0,0.9591806056881204,-7.760091958233936,1.0,0.0,0.0 -908,7.0,15.708466685859158,30.0,-5.09715733791439e-10,31.3409956418784,0.967524674697674,-7.203387882479826,0.0,1.0,0.0 -908,8.0,0.0,0.0,0.0,0.0,1.0153083668878975,-8.552266564413092,1.0,0.0,0.0 -908,9.0,3.0369702259327704,2.0,0.0,0.0,1.0054321946820317,-9.471972032356424,1.0,0.0,0.0 -908,10.0,0.0,0.0,-1.1811142049107008e-10,22.775538725184667,1.0599999904494213,-8.552266564426176,0.0,1.0,0.0 -908,11.0,5.864494229387418,7.5,0.0,0.0,1.015070833234878,-8.816096134721768,1.0,0.0,0.0 -908,12.0,0.0,0.0,-7.678130785100033e-10,7.746488593162278,1.0256447517499616,-8.816096134780926,0.0,1.0,0.0 -908,13.0,3.246416448410893,1.6,0.0,0.0,1.0058279811429072,-9.222332853105549,1.0,0.0,0.0 -908,14.0,4.293647560801502,2.5,0.0,0.0,1.00433336987609,-9.245413210953233,1.0,0.0,0.0 -908,15.0,1.8326544466835688,1.8,0.0,0.0,1.0046933161795124,-9.188367039674317,1.0,0.0,0.0 -908,16.0,4.712540005757747,5.8,0.0,0.0,1.0009309319869273,-9.472928984558068,1.0,0.0,0.0 -908,17.0,1.675569779824977,0.9,0.0,0.0,0.995716420519152,-9.647387889017338,1.0,0.0,0.0 -908,18.0,4.9743477838554,3.4,0.0,0.0,0.9928633776198184,-9.79519204534492,1.0,0.0,0.0 -908,19.0,1.1519542236296716,0.7,0.0,0.0,0.9953868608572616,-9.74371633079605,1.0,0.0,0.0 -908,20.0,9.163272233417842,11.2,0.0,0.0,0.993571497277176,-9.665345410603758,1.0,0.0,0.0 -908,21.0,0.0,0.0,0.0,0.0,0.9935042143714116,-9.672762336689326,1.0,0.0,0.0 -908,22.0,1.675569779824977,1.6,0.0,0.0,0.9704651495939168,-10.031009151214512,1.0,0.0,0.0 -908,23.0,4.555455338899155,6.7,0.0,0.0,0.9771988479129468,-9.885280672976757,1.0,0.0,0.0 -908,24.0,0.0,0.0,0.0,0.0,0.9747377649733496,-9.60002450783894,1.0,0.0,0.0 -908,25.0,1.8326544466835688,2.3,0.0,0.0,0.9607878232618602,-9.668110613004403,1.0,0.0,0.0 -908,26.0,0.0,0.0,0.0,0.0,0.9801963719623312,-9.34761828176709,1.0,0.0,0.0 -908,27.0,0.0,0.0,0.0,0.0,0.9658157347361966,-7.134558327012991,1.0,0.0,0.0 -908,28.0,1.2566773348687326,0.9,0.0,0.0,0.9666591081857866,-9.95506461377769,1.0,0.0,0.0 -908,29.0,5.550324895670236,1.9,0.0,0.0,0.9593136300370748,-10.413965934395042,1.0,0.0,0.0 -909,0.0,0.0,0.0,155.55315203478173,0.0003261447675484,1.0,0.0,0.0,0.0,1.0 -909,1.0,11.362457569438124,12.7,5.763552842094951e-07,9.250143564123915,0.9796429070843576,-3.966634783358176,0.0,1.0,0.0 -909,2.0,1.2566773348687326,1.2,0.0,0.0,0.9772945518003384,-3.528525129538133,1.0,0.0,0.0 -909,3.0,3.97947822708432,1.6,0.0,0.0,0.9712652342283952,-4.319841579535522,1.0,0.0,0.0 -909,4.0,49.32458539359776,19.0,-2.487884197321162e-10,24.947447859358192,0.9614310235298176,-10.06015385302525,0.0,1.0,0.0 -909,5.0,0.0,0.0,0.0,0.0,0.9660810858269664,-9.429814200170286,1.0,0.0,0.0 -909,6.0,11.93843468125296,10.9,0.0,0.0,0.9575811357300952,-9.949974766307989,1.0,0.0,0.0 -909,7.0,15.708466685859158,30.0,-2.7082125249444015e-10,28.85599681414071,0.963246645593,-9.97674205824407,0.0,1.0,0.0 -909,8.0,0.0,0.0,0.0,0.0,1.0144317794520123,-10.495515120267711,1.0,0.0,0.0 -909,9.0,3.0369702259327704,2.0,0.0,0.0,1.007358396699242,-11.048148479117728,1.0,0.0,0.0 -909,10.0,0.0,0.0,-6.359437901501945e-10,20.4108974758661,1.0546851815957377,-10.49551512033855,0.0,1.0,0.0 -909,11.0,5.864494229387418,7.5,0.0,0.0,1.0297895256036842,-9.249817435362312,1.0,0.0,0.0 -909,12.0,0.0,0.0,-1.5754236433035262e-10,18.120604372559452,1.0538617960073515,-9.249817435373958,0.0,1.0,0.0 -909,13.0,3.246416448410893,1.6,0.0,0.0,1.0174320122464109,-9.880527745436,1.0,0.0,0.0 -909,14.0,4.293647560801502,2.5,0.0,0.0,1.0111951895773166,-10.063932671242762,1.0,0.0,0.0 -909,15.0,1.8326544466835688,1.8,0.0,0.0,1.0130831698353564,-10.077954575027976,1.0,0.0,0.0 -909,16.0,4.712540005757747,5.8,0.0,0.0,1.0051240528297007,-10.840846441637016,1.0,0.0,0.0 -909,17.0,1.675569779824977,0.9,0.0,0.0,1.0007897794215537,-10.726208413635312,1.0,0.0,0.0 -909,18.0,4.9743477838554,3.4,0.0,0.0,0.9968948473160602,-11.031686822055066,1.0,0.0,0.0 -909,19.0,1.1519542236296716,0.7,0.0,0.0,0.9988516586296082,-11.06449616875715,1.0,0.0,0.0 -909,20.0,9.163272233417842,11.2,0.0,0.0,0.9971014403194982,-11.202752389789438,1.0,0.0,0.0 -909,21.0,0.0,0.0,0.0,0.0,0.9975355113026618,-11.198613524418631,1.0,0.0,0.0 -909,22.0,1.675569779824977,1.6,0.0,0.0,0.9984674423926786,-10.642246013990317,1.0,0.0,0.0 -909,23.0,4.555455338899155,6.7,0.0,0.0,0.9882390787890992,-11.296060213235911,1.0,0.0,0.0 -909,24.0,0.0,0.0,0.0,0.0,0.975146261301514,-11.70583857060718,1.0,0.0,0.0 -909,25.0,1.8326544466835688,2.3,0.0,0.0,0.9612023360203495,-11.773866806117969,1.0,0.0,0.0 -909,26.0,0.0,0.0,0.0,0.0,0.974286633672397,-11.902014908973149,1.0,0.0,0.0 -909,27.0,0.0,0.0,0.0,0.0,0.9563493162436862,-10.602467916369124,1.0,0.0,0.0 -909,28.0,1.2566773348687326,0.9,0.0,0.0,0.9606625254578768,-12.516955180165366,1.0,0.0,0.0 -909,29.0,5.550324895670236,1.9,0.0,0.0,0.9532697742400288,-12.981642449852002,1.0,0.0,0.0 -910,0.0,0.0,0.0,154.45489059534566,0.0003427101536779,1.0,0.0,0.0,0.0,1.0 -910,1.0,11.362457569438124,12.7,3.902659412109212e-07,9.763497880048163,0.9809658408081714,-3.539624587503816,0.0,1.0,0.0 -910,2.0,1.2566773348687326,1.2,0.0,0.0,0.9751880533305546,-4.642823146704354,1.0,0.0,0.0 -910,3.0,3.97947822708432,1.6,0.0,0.0,0.9687577946508128,-5.703756519630302,1.0,0.0,0.0 -910,4.0,49.32458539359776,19.0,-4.5637808392839634e-10,23.74972678512286,0.9617525369321508,-8.519476600693386,0.0,1.0,0.0 -910,5.0,0.0,0.0,0.0,0.0,0.968521000424104,-6.7737103098101485,1.0,0.0,0.0 -910,6.0,11.93843468125296,10.9,0.0,0.0,0.959362173954237,-7.748445819480465,1.0,0.0,0.0 -910,7.0,15.708466685859158,30.0,-4.0831749901075767e-10,30.33795098911896,0.96753517155494,-7.1829286419663685,0.0,1.0,0.0 -910,8.0,0.0,0.0,0.0,0.0,1.016446039910004,-8.50591100385468,1.0,0.0,0.0 -910,9.0,3.0369702259327704,2.0,0.0,0.0,1.0076312487030668,-9.406129281419595,1.0,0.0,0.0 -910,10.0,0.0,0.0,-2.4334151411306105e-10,22.163931035132155,1.0599399895737165,-8.505911003881597,0.0,1.0,0.0 -910,11.0,5.864494229387418,7.5,0.0,0.0,1.014184022969017,-8.956418159305061,1.0,0.0,0.0 -910,12.0,0.0,0.0,-5.367113896812287e-10,9.363056953960369,1.0269483261012973,-8.956418159346395,0.0,1.0,0.0 -910,13.0,3.246416448410893,1.6,0.0,0.0,1.0034068029984538,-9.39949682706173,1.0,0.0,0.0 -910,14.0,4.293647560801502,2.5,0.0,0.0,1.0001956626146664,-9.423455814239302,1.0,0.0,0.0 -910,15.0,1.8326544466835688,1.8,0.0,0.0,1.0052846464108447,-9.246958012858492,1.0,0.0,0.0 -910,16.0,4.712540005757747,5.8,0.0,0.0,1.0025907727014152,-9.443667788851084,1.0,0.0,0.0 -910,17.0,1.675569779824977,0.9,0.0,0.0,0.9938192861900624,-9.742191165233187,1.0,0.0,0.0 -910,18.0,4.9743477838554,3.4,0.0,0.0,0.9922923540054396,-9.839447376933364,1.0,0.0,0.0 -910,19.0,1.1519542236296716,0.7,0.0,0.0,0.9955191648299668,-9.761314392002566,1.0,0.0,0.0 -910,20.0,9.163272233417842,11.2,0.0,0.0,0.99721476276604,-9.565453370839496,1.0,0.0,0.0 -910,21.0,0.0,0.0,0.0,0.0,0.9975971161544336,-9.562787743960456,1.0,0.0,0.0 -910,22.0,1.675569779824977,1.6,0.0,0.0,0.9919549187647458,-9.589447329650383,1.0,0.0,0.0 -910,23.0,4.555455338899155,6.7,0.0,0.0,0.9875776503071766,-9.67568870029162,1.0,0.0,0.0 -910,24.0,0.0,0.0,0.0,0.0,0.9813428148171393,-9.4146969123638,1.0,0.0,0.0 -910,25.0,1.8326544466835688,2.3,0.0,0.0,0.9674895120439614,-9.481856303992664,1.0,0.0,0.0 -910,26.0,0.0,0.0,0.0,0.0,0.9844163421084094,-9.182281556981096,1.0,0.0,0.0 -910,27.0,0.0,0.0,0.0,0.0,0.9665522767260796,-7.111611020038486,1.0,0.0,0.0 -910,28.0,1.2566773348687326,0.9,0.0,0.0,0.97094039856446,-9.784460624599255,1.0,0.0,0.0 -910,29.0,5.550324895670236,1.9,0.0,0.0,0.9636282976758818,-10.239297060079467,1.0,0.0,0.0 -911,0.0,0.0,0.0,154.45489059534566,0.0003427101536779,1.0,0.0,0.0,0.0,1.0 -911,1.0,11.362457569438124,12.7,3.902659412109212e-07,9.763497880048163,0.9809658408081714,-3.539624587503816,0.0,1.0,0.0 -911,2.0,1.2566773348687326,1.2,0.0,0.0,0.9751880533305546,-4.642823146704354,1.0,0.0,0.0 -911,3.0,3.97947822708432,1.6,0.0,0.0,0.9687577946508128,-5.703756519630302,1.0,0.0,0.0 -911,4.0,49.32458539359776,19.0,-4.5637808392839634e-10,23.74972678512286,0.9617525369321508,-8.519476600693386,0.0,1.0,0.0 -911,5.0,0.0,0.0,0.0,0.0,0.968521000424104,-6.7737103098101485,1.0,0.0,0.0 -911,6.0,11.93843468125296,10.9,0.0,0.0,0.959362173954237,-7.748445819480465,1.0,0.0,0.0 -911,7.0,15.708466685859158,30.0,-4.0831749901075767e-10,30.33795098911896,0.96753517155494,-7.1829286419663685,0.0,1.0,0.0 -911,8.0,0.0,0.0,0.0,0.0,1.016446039910004,-8.50591100385468,1.0,0.0,0.0 -911,9.0,3.0369702259327704,2.0,0.0,0.0,1.0076312487030668,-9.406129281419595,1.0,0.0,0.0 -911,10.0,0.0,0.0,-2.4334151411306105e-10,22.163931035132155,1.0599399895737165,-8.505911003881597,0.0,1.0,0.0 -911,11.0,5.864494229387418,7.5,0.0,0.0,1.014184022969017,-8.956418159305061,1.0,0.0,0.0 -911,12.0,0.0,0.0,-5.367113896812287e-10,9.363056953960369,1.0269483261012973,-8.956418159346395,0.0,1.0,0.0 -911,13.0,3.246416448410893,1.6,0.0,0.0,1.0034068029984538,-9.39949682706173,1.0,0.0,0.0 -911,14.0,4.293647560801502,2.5,0.0,0.0,1.0001956626146664,-9.423455814239302,1.0,0.0,0.0 -911,15.0,1.8326544466835688,1.8,0.0,0.0,1.0052846464108447,-9.246958012858492,1.0,0.0,0.0 -911,16.0,4.712540005757747,5.8,0.0,0.0,1.0025907727014152,-9.443667788851084,1.0,0.0,0.0 -911,17.0,1.675569779824977,0.9,0.0,0.0,0.9938192861900624,-9.742191165233187,1.0,0.0,0.0 -911,18.0,4.9743477838554,3.4,0.0,0.0,0.9922923540054396,-9.839447376933364,1.0,0.0,0.0 -911,19.0,1.1519542236296716,0.7,0.0,0.0,0.9955191648299668,-9.761314392002566,1.0,0.0,0.0 -911,20.0,9.163272233417842,11.2,0.0,0.0,0.99721476276604,-9.565453370839496,1.0,0.0,0.0 -911,21.0,0.0,0.0,0.0,0.0,0.9975971161544336,-9.562787743960456,1.0,0.0,0.0 -911,22.0,1.675569779824977,1.6,0.0,0.0,0.9919549187647458,-9.589447329650383,1.0,0.0,0.0 -911,23.0,4.555455338899155,6.7,0.0,0.0,0.9875776503071766,-9.67568870029162,1.0,0.0,0.0 -911,24.0,0.0,0.0,0.0,0.0,0.9813428148171393,-9.4146969123638,1.0,0.0,0.0 -911,25.0,1.8326544466835688,2.3,0.0,0.0,0.9674895120439614,-9.481856303992664,1.0,0.0,0.0 -911,26.0,0.0,0.0,0.0,0.0,0.9844163421084094,-9.182281556981096,1.0,0.0,0.0 -911,27.0,0.0,0.0,0.0,0.0,0.9665522767260796,-7.111611020038486,1.0,0.0,0.0 -911,28.0,1.2566773348687326,0.9,0.0,0.0,0.97094039856446,-9.784460624599255,1.0,0.0,0.0 -911,29.0,5.550324895670236,1.9,0.0,0.0,0.9636282976758818,-10.239297060079467,1.0,0.0,0.0 -912,0.0,0.0,0.0,155.6926707476952,0.0031154521903609,1.0,0.0,0.0,0.0,1.0 -912,1.0,11.362457569438124,12.7,4.040420683669325e-06,7.998207025237683,0.9819717627920748,-3.2234098272075133,0.0,1.0,0.0 -912,2.0,1.2566773348687326,1.2,0.0,0.0,0.973296636184622,-5.676593800325218,1.0,0.0,0.0 -912,3.0,3.97947822708432,1.6,0.0,0.0,0.966607491007694,-6.988693389727121,1.0,0.0,0.0 -912,4.0,49.32458539359776,19.0,-1.7367335364916626e-09,25.547783484050257,0.964200568226553,-9.01765897240924,0.0,1.0,0.0 -912,5.0,0.0,0.0,0.0,0.0,0.9680528160018496,-8.082559947077865,1.0,0.0,0.0 -912,6.0,11.93843468125296,10.9,0.0,0.0,0.9599612036595851,-8.72516990524793,1.0,0.0,0.0 -912,7.0,15.708466685859158,30.0,-1.5775495638613584e-09,31.905836141363597,0.967478498623794,-8.49831994571317,0.0,1.0,0.0 -912,8.0,0.0,0.0,0.0,0.0,1.024875503370919,-8.082559947616774,1.0,0.0,0.0 -912,9.0,3.0369702259327704,2.0,0.0,0.0,0.978644648913662,-16.68439087589871,1.0,0.0,0.0 -912,10.0,0.0,0.0,-4.587332039028964e-09,17.858894090068382,1.059921951512076,-8.082559948120043,0.0,1.0,0.0 -912,11.0,5.864494229387418,7.5,0.0,0.0,1.023758798276095,-13.539962587496246,1.0,0.0,0.0 -912,12.0,0.0,0.0,-1.1772189006512619e-09,23.99947205530613,1.0555886782011854,-13.539962587583624,0.0,1.0,0.0 -912,13.0,3.246416448410893,1.6,0.0,0.0,1.0094017587549065,-14.32965891519008,1.0,0.0,0.0 -912,14.0,4.293647560801502,2.5,0.0,0.0,1.0002462059963229,-14.623449822374887,1.0,0.0,0.0 -912,15.0,1.8326544466835688,1.8,0.0,0.0,0.996069505838393,-14.878333445868623,1.0,0.0,0.0 -912,16.0,4.712540005757747,5.8,0.0,0.0,0.9801770128313934,-16.230002662488026,1.0,0.0,0.0 -912,17.0,1.675569779824977,0.9,0.0,0.0,0.98321332372235,-15.661704250751976,1.0,0.0,0.0 -912,18.0,4.9743477838554,3.4,0.0,0.0,0.9755086391867958,-16.1954221819405,1.0,0.0,0.0 -912,19.0,1.1519542236296716,0.7,0.0,0.0,0.975553395492934,-16.344054289234276,1.0,0.0,0.0 -912,20.0,9.163272233417842,11.2,0.0,0.0,0.970195034745543,-16.734840894081238,1.0,0.0,0.0 -912,21.0,0.0,0.0,0.0,0.0,0.971319640794156,-16.695056119324054,1.0,0.0,0.0 -912,22.0,1.675569779824977,1.6,0.0,0.0,0.9850082183764964,-15.424192445371192,1.0,0.0,0.0 -912,23.0,4.555455338899155,6.7,0.0,0.0,0.971680916401251,-16.38477922820856,1.0,0.0,0.0 -912,24.0,0.0,0.0,0.0,0.0,0.9677022700387172,-10.52670569511628,1.0,0.0,0.0 -912,25.0,1.8326544466835688,2.3,0.0,0.0,0.9536478750745336,-10.595800276924352,1.0,0.0,0.0 -912,26.0,0.0,0.0,0.0,0.0,0.9748387403712758,-10.446421891973214,1.0,0.0,0.0 -912,27.0,0.0,0.0,0.0,0.0,0.965220785724775,-8.399646697547027,1.0,0.0,0.0 -912,28.0,1.2566773348687326,0.9,0.0,0.0,0.9612227939098892,-11.060656169169478,1.0,0.0,0.0 -912,29.0,5.550324895670236,1.9,0.0,0.0,0.9538344856124832,-11.524798217881049,1.0,0.0,0.0 -913,0.0,0.0,0.0,152.2631470530056,0.0011490059214303,1.0,0.0,0.0,0.0,1.0 -913,1.0,11.137960745106216,12.7,6.359868566709504e-07,3.822619604429193,0.980385515296198,-3.4635948649814257,0.0,1.0,0.0 -913,2.0,1.231848193007139,1.2,0.0,0.0,0.97779193798566,-4.634261661938596,1.0,0.0,0.0 -913,3.0,3.900852611189273,1.6,0.0,0.0,0.97196224014217,-5.69264840601617,1.0,0.0,0.0 -913,4.0,48.350041575530206,19.0,-3.6957216044924014e-10,24.172949397172918,0.9632925214597822,-8.360778999938454,0.0,1.0,0.0 -913,5.0,0.0,0.0,0.0,0.0,0.9705193324782934,-6.666562258606022,1.0,0.0,0.0 -913,6.0,11.702557833567822,10.9,0.0,0.0,0.9612257193582242,-7.612634524566747,1.0,0.0,0.0 -913,7.0,15.398102412589235,30.0,5.953426023981101e-10,30.79232921872812,0.9613993739719436,-9.605408450825925,0.0,1.0,0.0 -913,8.0,0.0,0.0,0.0,0.0,1.0203106572372087,-8.966082295509958,1.0,0.0,0.0 -913,9.0,2.976966466433919,2.0,0.0,0.0,1.0147580967113377,-10.155087988009877,1.0,0.0,0.0 -913,10.0,0.0,0.0,8.313412872876783e-10,20.216734376313912,1.05998190747842,-8.966082295418353,0.0,1.0,0.0 -913,11.0,5.748624900699982,7.5,0.0,0.0,1.035145071587735,-9.185916008358262,1.0,0.0,0.0 -913,12.0,0.0,0.0,-3.424074270494677e-10,18.54743583228125,1.0596497811872596,-9.185916008383304,0.0,1.0,0.0 -913,13.0,3.1822744986017755,1.6,0.0,0.0,0.9992756549532088,-10.508321540079503,1.0,0.0,0.0 -913,14.0,4.208814659441058,2.5,0.0,0.0,0.9654947592574024,-10.88017821802922,1.0,0.0,0.0 -913,15.0,1.7964452814687444,1.8,0.0,0.0,1.0200100776680163,-9.66115317623079,1.0,0.0,0.0 -913,16.0,4.619430723776771,5.8,0.0,0.0,1.0122694903925915,-10.092068566568324,1.0,0.0,0.0 -913,17.0,1.642464257342852,0.9,0.0,0.0,0.9480044930656624,-11.482978365523612,1.0,0.0,0.0 -913,18.0,4.876065763986592,3.4,0.0,0.0,0.9400065019843532,-11.74834515009353,1.0,0.0,0.0 -913,19.0,1.1291941769232108,0.7,0.0,0.0,1.0122673114892602,-10.250179677099672,1.0,0.0,0.0 -913,20.0,8.98222640734372,11.2,0.0,0.0,1.0020563316631166,-10.342536113690745,1.0,0.0,0.0 -913,21.0,0.0,0.0,0.0,0.0,1.0016691929922292,-10.351079148400146,1.0,0.0,0.0 -913,22.0,1.642464257342852,1.6,0.0,0.0,0.9694028223814264,-10.794653897455696,1.0,0.0,0.0 -913,23.0,4.465449699650878,6.7,0.0,0.0,0.9813080255191348,-10.541053058961856,1.0,0.0,0.0 -913,24.0,0.0,0.0,0.0,0.0,0.9779098602957766,-10.147215391596545,1.0,0.0,0.0 -913,25.0,1.7964452814687444,2.3,0.0,0.0,0.9641036042889836,-10.206485390460257,1.0,0.0,0.0 -913,26.0,0.0,0.0,0.0,0.0,0.982689435584442,-9.833455155498005,1.0,0.0,0.0 -913,27.0,0.0,0.0,0.0,0.0,0.9664162359744638,-7.597227590848512,1.0,0.0,0.0 -913,28.0,1.231848193007139,0.9,0.0,0.0,0.9693405796447444,-10.42202132892414,1.0,0.0,0.0 -913,29.0,5.440662852448196,1.9,0.0,0.0,0.9621137995095608,-10.867774829402812,1.0,0.0,0.0 -914,0.0,0.0,0.0,87.48158690930103,1.4605218619125893,1.0,0.0,0.0,0.0,1.0 -914,1.0,11.137960745106216,12.7,65.85439941389633,45.99999750692308,0.9938816537057312,-10.880996283420664,0.0,1.0,0.0 -914,2.0,1.231848193007139,1.2,0.0,0.0,0.965316694078992,-8.515270975858515,1.0,0.0,0.0 -914,3.0,3.900852611189273,1.6,0.0,0.0,0.9577547322397209,-10.52611851438948,1.0,0.0,0.0 -914,4.0,48.350041575530206,19.0,2.1590621220289768e-10,39.99999754181209,0.976774097262434,-15.034692753807986,0.0,1.0,0.0 -914,5.0,0.0,0.0,0.0,0.0,0.9528203789815564,-11.94123323095826,1.0,0.0,0.0 -914,6.0,11.702557833567822,10.9,0.0,0.0,0.9563432750913864,-13.455013015974812,1.0,0.0,0.0 -914,7.0,15.398102412589235,30.0,0.0,0.0,0.9400000083410636,-12.174049375425886,0.0,1.0,0.0 -914,8.0,0.0,0.0,0.0,0.0,1.018895405128622,-16.97101387323862,1.0,0.0,0.0 -914,9.0,2.976966466433919,2.0,0.0,0.0,0.9971574109328416,-16.971013873080494,1.0,0.0,0.0 -914,10.0,0.0,0.0,-2.54904113934227e-09,20.947521204646332,1.0599999759714045,-16.97101387351989,0.0,1.0,0.0 -914,11.0,5.748624900699982,7.5,0.0,0.0,0.9993770888893846,-14.420536972963136,1.0,0.0,0.0 -914,12.0,0.0,0.0,0.0,0.0,0.9993770888893846,-14.420536972963136,0.0,1.0,0.0 -914,13.0,3.1822744986017755,1.6,0.0,0.0,0.9780885877017476,-15.890183300655083,1.0,0.0,0.0 -914,14.0,4.208814659441058,2.5,0.0,0.0,0.958127452675357,-16.70938681393254,1.0,0.0,0.0 -914,15.0,1.7964452814687444,1.8,0.0,0.0,0.9907457358115004,-15.62173721779948,1.0,0.0,0.0 -914,16.0,4.619430723776771,5.8,0.0,0.0,0.9912027931768754,-16.632896229444633,1.0,0.0,0.0 -914,17.0,1.642464257342852,0.9,0.0,0.0,0.9626683022147988,-17.144655516547225,1.0,0.0,0.0 -914,18.0,4.876065763986592,3.4,0.0,0.0,0.9676631869653564,-17.305150226273664,1.0,0.0,0.0 -914,19.0,1.1291941769232108,0.7,0.0,0.0,0.9743963992947132,-17.258218931832197,1.0,0.0,0.0 -914,20.0,8.98222640734372,11.2,0.0,0.0,0.9606664716692186,-17.200679117636245,1.0,0.0,0.0 -914,21.0,0.0,0.0,0.0,0.0,0.9645028724943387,-17.149935559392635,1.0,0.0,0.0 -914,22.0,1.642464257342852,1.6,0.0,0.0,0.953547556944747,-16.848526133525734,1.0,0.0,0.0 -914,23.0,4.465449699650878,6.7,0.0,0.0,0.9542644397331148,-16.890367231079654,1.0,0.0,0.0 -914,24.0,0.0,0.0,0.0,0.0,0.9550563552283972,-15.941301064403287,1.0,0.0,0.0 -914,25.0,1.7964452814687444,2.3,0.0,0.0,0.9409097421674902,-16.003485320903405,1.0,0.0,0.0 -914,26.0,0.0,0.0,0.0,0.0,0.9625144035031464,-15.2784044421356,1.0,0.0,0.0 -914,27.0,0.0,0.0,0.0,0.0,0.9473003371496566,-12.340997752478671,1.0,0.0,0.0 -914,28.0,1.231848193007139,0.9,0.0,0.0,0.9488696751694866,-15.892252371166236,1.0,0.0,0.0 -914,29.0,5.440662852448196,1.9,0.0,0.0,0.9414821650046482,-16.357579801652705,1.0,0.0,0.0 -915,0.0,0.0,0.0,138.00000006708063,1.1911372688189203e-05,1.0,0.0,0.0,0.0,1.0 -915,1.0,11.137960745106216,12.7,17.87724106310712,2.3034797032149754,0.9751784493483296,-4.637421893217687,0.0,1.0,0.0 -915,2.0,1.231848193007139,1.2,0.0,0.0,0.9530953837892272,-12.93562116075682,1.0,0.0,0.0 -915,3.0,3.900852611189273,1.6,0.0,0.0,0.953591532604763,-12.913000012966052,1.0,0.0,0.0 -915,4.0,48.350041575530206,19.0,5.942663640592144e-11,35.036873299240895,0.9643557691422804,-12.83357230852564,0.0,1.0,0.0 -915,5.0,0.0,0.0,0.0,0.0,0.9556812256292514,-14.147149428886072,1.0,0.0,0.0 -915,6.0,11.702557833567822,10.9,0.0,0.0,0.9520772884362532,-13.85459065792352,1.0,0.0,0.0 -915,7.0,15.398102412589235,30.0,3.9421180118127486e-11,33.796332429921115,0.953553476346755,-17.253011166630536,0.0,1.0,0.0 -915,8.0,0.0,0.0,0.0,0.0,1.0123278859013494,-15.835164199860357,1.0,0.0,0.0 -915,9.0,2.976966466433919,2.0,0.0,0.0,1.0063369104525437,-16.70190676864144,1.0,0.0,0.0 -915,10.0,0.0,0.0,1.4692081087058248e-10,23.999977611206308,1.0594467734945865,-15.83516419984403,0.0,1.0,0.0 -915,11.0,5.748624900699982,7.5,0.0,0.0,1.0262608515448082,-16.21718360236443,1.0,0.0,0.0 -915,12.0,0.0,0.0,9.328629201691967e-11,23.99987161616432,1.0580181702813063,-16.21718360235754,0.0,1.0,0.0 -915,13.0,3.1822744986017755,1.6,0.0,0.0,1.015631793908453,-16.62357410072244,1.0,0.0,0.0 -915,14.0,4.208814659441058,2.5,0.0,0.0,1.0125196087009172,-16.628623169905115,1.0,0.0,0.0 -915,15.0,1.7964452814687444,1.8,0.0,0.0,1.011621466172678,-16.488671008506667,1.0,0.0,0.0 -915,16.0,4.619430723776771,5.8,0.0,0.0,1.0037203912057244,-16.728293896271424,1.0,0.0,0.0 -915,17.0,1.642464257342852,0.9,0.0,0.0,1.008820007018406,-16.775758932384775,1.0,0.0,0.0 -915,18.0,4.876065763986592,3.4,0.0,0.0,0.9879088247905976,-17.328477148440278,1.0,0.0,0.0 -915,19.0,1.1291941769232108,0.7,0.0,0.0,0.9919296840185384,-17.202200330026358,1.0,0.0,0.0 -915,20.0,8.98222640734372,11.2,0.0,0.0,0.9974232801197735,-16.864842016588582,1.0,0.0,0.0 -915,21.0,0.0,0.0,0.0,0.0,0.9982618368378356,-16.866341779299386,1.0,0.0,0.0 -915,22.0,1.642464257342852,1.6,0.0,0.0,1.0019211153250382,-16.867887612918054,1.0,0.0,0.0 -915,23.0,4.465449699650878,6.7,0.0,0.0,0.9943106380578494,-17.063207622882885,1.0,0.0,0.0 -915,24.0,0.0,0.0,0.0,0.0,0.9541603345108972,-17.21947199860644,1.0,0.0,0.0 -915,25.0,1.7964452814687444,2.3,0.0,0.0,0.9400000298131972,-17.28177491047349,1.0,0.0,0.0 -915,26.0,0.0,0.0,0.0,0.0,0.961357981156792,-17.141617817522178,1.0,0.0,0.0 -915,27.0,0.0,0.0,0.0,0.0,0.9524653436714506,-15.079312545841162,1.0,0.0,0.0 -915,28.0,1.231848193007139,0.9,0.0,0.0,0.9476958846373308,-17.756964238370443,1.0,0.0,0.0 -915,29.0,5.440662852448196,1.9,0.0,0.0,0.9402989381484598,-18.223452990291168,1.0,0.0,0.0 -916,0.0,0.0,0.0,151.28419939692256,0.0001868809706095,1.0,0.0,0.0,0.0,1.0 -916,1.0,11.137960745106216,12.7,2.141751183914484e-07,9.463381018217426,0.9812734042316876,-3.4648744039945685,0.0,1.0,0.0 -916,2.0,1.231848193007139,1.2,0.0,0.0,0.9755990593806232,-4.545019160611086,1.0,0.0,0.0 -916,3.0,3.900852611189273,1.6,0.0,0.0,0.9692489220980662,-5.582725695503008,1.0,0.0,0.0 -916,4.0,48.350041575530206,19.0,-2.60329184391075e-10,23.573440189485183,0.9623868708327562,-8.339355060167762,0.0,1.0,0.0 -916,5.0,0.0,0.0,0.0,0.0,0.9690647895815232,-6.631052128811874,1.0,0.0,0.0 -916,6.0,11.702557833567822,10.9,0.0,0.0,0.9599860797738548,-7.583195536062571,1.0,0.0,0.0 -916,7.0,15.398102412589235,30.0,-2.4233248991454093e-10,30.250905786438388,0.9680870577283484,-7.031467198809386,0.0,1.0,0.0 -916,8.0,0.0,0.0,0.0,0.0,1.0167887533041429,-8.327987066890094,1.0,0.0,0.0 -916,9.0,2.976966466433919,2.0,0.0,0.0,1.0080225294365797,-9.210034463986426,1.0,0.0,0.0 -916,10.0,0.0,0.0,-1.5044067916889406e-10,21.994732710622795,1.0599502543739423,-8.32798706690673,0.0,1.0,0.0 -916,11.0,5.748624900699982,7.5,0.0,0.0,1.014392841856739,-8.768619239361254,1.0,0.0,0.0 -916,12.0,0.0,0.0,-3.300386007411152e-10,9.14515035080889,1.026861139659284,-8.76861923938667,0.0,1.0,0.0 -916,13.0,3.1822744986017755,1.6,0.0,0.0,1.0037301313694775,-9.2000702074586,1.0,0.0,0.0 -916,14.0,4.208814659441058,2.5,0.0,0.0,1.000565081936306,-9.222588810806132,1.0,0.0,0.0 -916,15.0,1.7964452814687444,1.8,0.0,0.0,1.005612589620062,-9.051702697409167,1.0,0.0,0.0 -916,16.0,4.619430723776771,5.8,0.0,0.0,1.002982815614984,-9.244584637555905,1.0,0.0,0.0 -916,17.0,1.642464257342852,0.9,0.0,0.0,0.9942775870678824,-9.533616663354913,1.0,0.0,0.0 -916,18.0,4.876065763986592,3.4,0.0,0.0,0.9927806998043596,-9.628829497712124,1.0,0.0,0.0 -916,19.0,1.1291941769232108,0.7,0.0,0.0,0.9959876952167728,-9.553620958109596,1.0,0.0,0.0 -916,20.0,8.98222640734372,11.2,0.0,0.0,0.9976719618861976,-9.36244207853782,1.0,0.0,0.0 -916,21.0,0.0,0.0,0.0,0.0,0.998053281100671,-9.36008146755104,1.0,0.0,0.0 -916,22.0,1.642464257342852,1.6,0.0,0.0,0.9924190203282804,-9.383184081787704,1.0,0.0,0.0 -916,23.0,4.465449699650878,6.7,0.0,0.0,0.9881198620689564,-9.467427418968208,1.0,0.0,0.0 -916,24.0,0.0,0.0,0.0,0.0,0.981933534114877,-9.211376676788596,1.0,0.0,0.0 -916,25.0,1.7964452814687444,2.3,0.0,0.0,0.9681854897658012,-9.270154939460475,1.0,0.0,0.0 -916,26.0,0.0,0.0,0.0,0.0,0.9849921349418193,-8.98655309412601,1.0,0.0,0.0 -916,27.0,0.0,0.0,0.0,0.0,0.9671262317930788,-6.961419322789499,1.0,0.0,0.0 -916,28.0,1.231848193007139,0.9,0.0,0.0,0.97167621316825,-9.572333878672865,1.0,0.0,0.0 -916,29.0,5.440662852448196,1.9,0.0,0.0,0.9644673217987616,-10.015933071948565,1.0,0.0,0.0 -917,0.0,0.0,0.0,157.7525101311841,8.314352295514471,1.0,0.0,0.0,0.0,1.0 -917,1.0,11.137960745106216,12.7,0.0,0.0,0.9801248056127984,-2.719093620513906,0.0,1.0,0.0 -917,2.0,1.231848193007139,1.2,0.0,0.0,0.9666764755371842,-7.148664486487983,1.0,0.0,0.0 -917,3.0,3.900852611189273,1.6,0.0,0.0,0.9588676831164424,-8.825130736690033,1.0,0.0,0.0 -917,4.0,48.350041575530206,19.0,4.758070363061226e-09,38.33599281107452,0.9400029912018532,-18.160607403271623,0.0,1.0,0.0 -917,5.0,0.0,0.0,0.0,0.0,0.9538941669416884,-10.57702448766078,1.0,0.0,0.0 -917,6.0,11.702557833567822,10.9,0.0,0.0,0.9412644592162508,-13.92199446091724,1.0,0.0,0.0 -917,7.0,15.398102412589235,30.0,6.807207080237231e-09,39.99896157916724,0.9564961980635104,-11.11874722084358,0.0,1.0,0.0 -917,8.0,0.0,0.0,0.0,0.0,1.0243799061431027,-21.719251848810885,1.0,0.0,0.0 -917,9.0,2.976966466433919,2.0,0.0,0.0,1.005545145100498,-21.71925184888408,1.0,0.0,0.0 -917,10.0,0.0,0.0,1.196249204609537e-09,18.149770310181985,1.0599947269395933,-21.719251848679587,0.0,1.0,0.0 -917,11.0,5.748624900699982,7.5,0.0,0.0,0.992413067214623,-23.98489940725513,1.0,0.0,0.0 -917,12.0,0.0,0.0,-1.102583119147612e-09,21.57957403197593,1.0219748548661622,-23.98489940734234,0.0,1.0,0.0 -917,13.0,3.1822744986017755,1.6,0.0,0.0,0.982297463299246,-23.989417484047376,1.0,0.0,0.0 -917,14.0,4.208814659441058,2.5,0.0,0.0,0.9828790362868414,-23.59276237121724,1.0,0.0,0.0 -917,15.0,1.7964452814687444,1.8,0.0,0.0,0.9935283370734168,-23.13880019092377,1.0,0.0,0.0 -917,16.0,4.619430723776771,5.8,0.0,0.0,0.996826450717488,-22.23122525412173,1.0,0.0,0.0 -917,17.0,1.642464257342852,0.9,0.0,0.0,0.981871325801386,-23.25300161092449,1.0,0.0,0.0 -917,18.0,4.876065763986592,3.4,0.0,0.0,0.983560639913572,-22.96008400896783,1.0,0.0,0.0 -917,19.0,1.1291941769232108,0.7,0.0,0.0,0.9885179972089836,-22.679576635139423,1.0,0.0,0.0 -917,20.0,8.98222640734372,11.2,0.0,0.0,0.9891769368659864,-21.749933032982906,1.0,0.0,0.0 -917,21.0,0.0,0.0,0.0,0.0,0.9876885573330586,-21.705131590410065,1.0,0.0,0.0 -917,22.0,1.642464257342852,1.6,0.0,0.0,0.9771330421145632,-22.65533352538318,1.0,0.0,0.0 -917,23.0,4.465449699650878,6.7,0.0,0.0,0.976470126427232,-21.25982264095556,1.0,0.0,0.0 -917,24.0,0.0,0.0,0.0,0.0,0.9761477916840604,-18.165588153990605,1.0,0.0,0.0 -917,25.0,1.7964452814687444,2.3,0.0,0.0,0.96231588545131,-18.22507544178457,1.0,0.0,0.0 -917,26.0,0.0,0.0,0.0,0.0,0.9832194309532089,-16.183149795941098,1.0,0.0,0.0 -917,27.0,0.0,0.0,0.0,0.0,0.9522974273928804,-11.315353244015716,1.0,0.0,0.0 -917,28.0,1.231848193007139,0.9,0.0,0.0,0.9698781700003392,-16.771073109896317,1.0,0.0,0.0 -917,29.0,5.440662852448196,1.9,0.0,0.0,0.9626555152525984,-17.21632936414396,1.0,0.0,0.0 -918,0.0,0.0,0.0,151.47568933816785,0.701224064563899,1.0,0.0,0.0,0.0,1.0 -918,1.0,11.137960745106216,12.7,0.0,0.0,0.9798619366476774,-3.523672990024637,0.0,1.0,0.0 -918,2.0,1.231848193007139,1.2,0.0,0.0,0.978131104903888,-4.367515461157719,1.0,0.0,0.0 -918,3.0,3.900852611189273,1.6,0.0,0.0,0.9723492242564368,-5.361510628867065,1.0,0.0,0.0 -918,4.0,48.350041575530206,19.0,-2.670778096494304e-10,26.118841528447263,0.9694380106627706,-9.576569448704449,0.0,1.0,0.0 -918,5.0,0.0,0.0,0.0,0.0,0.971194138025234,-6.35136813479595,1.0,0.0,0.0 -918,6.0,11.702557833567822,10.9,0.0,0.0,0.9592612800905196,-6.775396362840638,1.0,0.0,0.0 -918,7.0,15.398102412589235,30.0,-1.9156628322335887e-10,38.155299526476085,0.9730381659359107,-6.802894688303369,0.0,1.0,0.0 -918,8.0,0.0,0.0,0.0,0.0,1.0155665770124358,-8.253235894431674,1.0,0.0,0.0 -918,9.0,2.976966466433919,2.0,0.0,0.0,1.0044212970476127,-9.247502819074947,1.0,0.0,0.0 -918,10.0,0.0,0.0,-2.3084325897178702e-10,22.64385875677908,1.0599998169624834,-8.253235894457232,0.0,1.0,0.0 -918,11.0,5.748624900699982,7.5,0.0,0.0,1.0289059784204118,-7.9924503253870975,1.0,0.0,0.0 -918,12.0,0.0,0.0,-4.5974287703453855e-10,9.55784253377134,1.0417506827900245,-7.992450325421503,0.0,1.0,0.0 -918,13.0,3.1822744986017755,1.6,0.0,0.0,1.0210415372673705,-8.329164525537227,1.0,0.0,0.0 -918,14.0,4.208814659441058,2.5,0.0,0.0,1.0151617813333818,-8.524198493114344,1.0,0.0,0.0 -918,15.0,1.7964452814687444,1.8,0.0,0.0,0.99142500370352,-9.56266539186472,1.0,0.0,0.0 -918,16.0,4.619430723776771,5.8,0.0,0.0,0.995869042597531,-9.416928094028464,1.0,0.0,0.0 -918,17.0,1.642464257342852,0.9,0.0,0.0,1.0024481363053244,-9.083160866243963,1.0,0.0,0.0 -918,18.0,4.876065763986592,3.4,0.0,0.0,0.9971483351854123,-9.330224142279372,1.0,0.0,0.0 -918,19.0,1.1291941769232108,0.7,0.0,0.0,0.9983291934173074,-9.336074314736804,1.0,0.0,0.0 -918,20.0,8.98222640734372,11.2,0.0,0.0,0.9928056276507856,-9.424411445284743,1.0,0.0,0.0 -918,21.0,0.0,0.0,0.0,0.0,0.9927998000457467,-9.429011692752283,1.0,0.0,0.0 -918,22.0,1.642464257342852,1.6,0.0,0.0,0.970783968309883,-9.73933212395959,1.0,0.0,0.0 -918,23.0,4.465449699650878,6.7,0.0,0.0,0.977470209137974,-9.59908906875085,1.0,0.0,0.0 -918,24.0,0.0,0.0,0.0,0.0,0.9764267981382924,-9.25629428495737,1.0,0.0,0.0 -918,25.0,1.7964452814687444,2.3,0.0,0.0,0.9625989598002253,-9.315747086394335,1.0,0.0,0.0 -918,26.0,0.0,0.0,0.0,0.0,0.982693497705018,-8.971687205154879,1.0,0.0,0.0 -918,27.0,0.0,0.0,0.0,0.0,0.9692140313763876,-6.710660913016456,1.0,0.0,0.0 -918,28.0,1.231848193007139,0.9,0.0,0.0,0.9760850219166584,-9.159110826348428,1.0,0.0,0.0 -918,29.0,5.440662852448196,1.9,0.0,0.0,0.951963748099048,-10.607635139209757,1.0,0.0,0.0 -919,0.0,0.0,0.0,151.36375313774303,0.0096401068140572,1.0,0.0,0.0,0.0,1.0 -919,1.0,11.137960745106216,12.7,9.084810706873893e-06,8.548920273010445,0.9811298661003734,-3.4600338368166432,0.0,1.0,0.0 -919,2.0,1.231848193007139,1.2,0.0,0.0,0.975979542157128,-4.564649152956148,1.0,0.0,0.0 -919,3.0,3.900852611189273,1.6,0.0,0.0,0.9697201593568168,-5.606953576788378,1.0,0.0,0.0 -919,4.0,48.350041575530206,19.0,-1.7160936982014142e-08,23.52258200840892,0.9623977028413124,-8.328123860602906,0.0,1.0,0.0 -919,5.0,0.0,0.0,0.0,0.0,0.9693423378341228,-6.616373196872613,1.0,0.0,0.0 -919,6.0,11.702557833567822,10.9,0.0,0.0,0.9601566554382234,-7.569962742767129,1.0,0.0,0.0 -919,7.0,15.398102412589235,30.0,-1.5865579046809862e-08,29.84953837182912,0.9682425541233904,-7.0136153622053365,0.0,1.0,0.0 -919,8.0,0.0,0.0,0.0,0.0,1.014781071712269,-8.213134023477298,1.0,0.0,0.0 -919,9.0,2.976966466433919,2.0,0.0,0.0,1.0116620777008445,-9.04037291864831,1.0,0.0,0.0 -919,10.0,0.0,0.0,-1.0170168416422366e-08,15.12863176496392,1.0448965450760317,-8.213134024620356,0.0,1.0,0.0 -919,11.0,5.748624900699982,7.5,0.0,0.0,1.018745208055469,-8.996289588658916,1.0,0.0,0.0 -919,12.0,0.0,0.0,-1.8736385409318382e-08,17.046236702272388,1.041655593721353,-8.996289590075188,0.0,1.0,0.0 -919,13.0,3.1822744986017755,1.6,0.0,0.0,1.0078723001358434,-9.38055096509629,1.0,0.0,0.0 -919,14.0,4.208814659441058,2.5,0.0,0.0,1.004775255418424,-9.354101880105553,1.0,0.0,0.0 -919,15.0,1.7964452814687444,1.8,0.0,0.0,0.9972618133957442,-9.307722511469228,1.0,0.0,0.0 -919,16.0,4.619430723776771,5.8,0.0,0.0,0.9834415791378182,-9.64913159683296,1.0,0.0,0.0 -919,17.0,1.642464257342852,0.9,0.0,0.0,0.998343258319091,-9.556605374549044,1.0,0.0,0.0 -919,18.0,4.876065763986592,3.4,0.0,0.0,0.9967486509136996,-9.587789798536251,1.0,0.0,0.0 -919,19.0,1.1291941769232108,0.7,0.0,0.0,0.99989099646312,-9.479842845137595,1.0,0.0,0.0 -919,20.0,8.98222640734372,11.2,0.0,0.0,1.0013067089407914,-9.210935025440095,1.0,0.0,0.0 -919,21.0,0.0,0.0,0.0,0.0,1.001671082060411,-9.21476512818016,1.0,0.0,0.0 -919,22.0,1.642464257342852,1.6,0.0,0.0,0.9962530515160772,-9.430838653257096,1.0,0.0,0.0 -919,23.0,4.465449699650878,6.7,0.0,0.0,0.9914125621062616,-9.403056608861297,1.0,0.0,0.0 -919,24.0,0.0,0.0,0.0,0.0,0.9841108393723396,-9.15051009687058,1.0,0.0,0.0 -919,25.0,1.7964452814687444,2.3,0.0,0.0,0.9703940876125936,-9.20902483270512,1.0,0.0,0.0 -919,26.0,0.0,0.0,0.0,0.0,0.9864620104783052,-8.929354830159198,1.0,0.0,0.0 -919,27.0,0.0,0.0,0.0,0.0,0.9675278778086775,-6.943753135011334,1.0,0.0,0.0 -919,28.0,1.231848193007139,0.9,0.0,0.0,0.9731670244061466,-9.513368002817248,1.0,0.0,0.0 -919,29.0,5.440662852448196,1.9,0.0,0.0,0.9659695043809872,-9.955600298072888,1.0,0.0,0.0 -920,0.0,0.0,0.0,151.40561097441736,0.0045228221992488,1.0,0.0,0.0,0.0,1.0 -920,1.0,11.137960745106216,12.7,6.130129675986616e-06,6.6132857464629495,0.9807702934777331,-3.452953595098524,0.0,1.0,0.0 -920,2.0,1.231848193007139,1.2,0.0,0.0,0.9770134387955192,-4.584467325645051,1.0,0.0,0.0 -920,3.0,3.900852611189273,1.6,0.0,0.0,0.9709966464756432,-5.631156880559797,1.0,0.0,0.0 -920,4.0,48.350041575530206,19.0,7.487230432668615e-09,22.98128132956974,0.9619021357074536,-8.318536306439952,0.0,1.0,0.0 -920,5.0,0.0,0.0,0.0,0.0,0.9698341364292902,-6.62345301143969,1.0,0.0,0.0 -920,6.0,11.702557833567822,10.9,0.0,0.0,0.9602435336273218,-7.5706876354122254,1.0,0.0,0.0 -920,7.0,15.398102412589235,30.0,6.3467717283148206e-09,25.374080974004485,0.967126888313414,-6.983126860250206,0.0,1.0,0.0 -920,8.0,0.0,0.0,0.0,0.0,1.0208273134764223,-8.34291449467592,1.0,0.0,0.0 -920,9.0,2.976966466433919,2.0,0.0,0.0,1.0159022007354948,-9.230439688094847,1.0,0.0,0.0 -920,10.0,0.0,0.0,2.206916202569422e-09,19.959884870116493,1.0599940980884424,-8.342914494432861,0.0,1.0,0.0 -920,11.0,5.748624900699982,7.5,0.0,0.0,1.0285044039919924,-9.007108554210589,1.0,0.0,0.0 -920,12.0,0.0,0.0,7.837325818877157e-09,19.579114134534123,1.054498522710981,-9.007108553630935,0.0,1.0,0.0 -920,13.0,3.1822744986017755,1.6,0.0,0.0,1.0181705121771945,-9.39724550130046,1.0,0.0,0.0 -920,14.0,4.208814659441058,2.5,0.0,0.0,1.0154273008595571,-9.394114840433213,1.0,0.0,0.0 -920,15.0,1.7964452814687444,1.8,0.0,0.0,1.0072390324486633,-9.312580129719008,1.0,0.0,0.0 -920,16.0,4.619430723776771,5.8,0.0,0.0,0.9935598923436156,-9.647164869282802,1.0,0.0,0.0 -920,17.0,1.642464257342852,0.9,0.0,0.0,1.006798090481636,-9.643432107040692,1.0,0.0,0.0 -920,18.0,4.876065763986592,3.4,0.0,0.0,1.0038847945342375,-9.704238770155117,1.0,0.0,0.0 -920,19.0,1.1291941769232108,0.7,0.0,0.0,1.0063017938359888,-9.613454656053252,1.0,0.0,0.0 -920,20.0,8.98222640734372,11.2,0.0,0.0,1.0042632684079875,-9.44174096513078,1.0,0.0,0.0 -920,21.0,0.0,0.0,0.0,0.0,1.004203903116345,-9.45853800186584,1.0,0.0,0.0 -920,22.0,1.642464257342852,1.6,0.0,0.0,1.01060255352146,-9.490024112200883,1.0,0.0,0.0 -920,23.0,4.465449699650878,6.7,0.0,0.0,0.9880333948341632,-9.786776772255893,1.0,0.0,0.0 -920,24.0,0.0,0.0,0.0,0.0,0.976649370028565,-9.881157164005517,1.0,0.0,0.0 -920,25.0,1.7964452814687444,2.3,0.0,0.0,0.9628247750860244,-9.940582481086846,1.0,0.0,0.0 -920,26.0,0.0,0.0,0.0,0.0,0.9877868883705072,-8.444869243370363,1.0,0.0,0.0 -920,27.0,0.0,0.0,0.0,0.0,0.968035592746086,-6.892099725428996,1.0,0.0,0.0 -920,28.0,1.231848193007139,0.9,0.0,0.0,0.9745107149504224,-9.027296052797109,1.0,0.0,0.0 -920,29.0,5.440662852448196,1.9,0.0,0.0,0.9673234129589636,-9.468301761247842,1.0,0.0,0.0 -921,0.0,0.0,0.0,151.28419939692256,0.0001868809706095,1.0,0.0,0.0,0.0,1.0 -921,1.0,11.137960745106216,12.7,2.141751183914484e-07,9.463381018217426,0.9812734042316876,-3.4648744039945685,0.0,1.0,0.0 -921,2.0,1.231848193007139,1.2,0.0,0.0,0.9755990593806232,-4.545019160611086,1.0,0.0,0.0 -921,3.0,3.900852611189273,1.6,0.0,0.0,0.9692489220980662,-5.582725695503008,1.0,0.0,0.0 -921,4.0,48.350041575530206,19.0,-2.60329184391075e-10,23.573440189485183,0.9623868708327562,-8.339355060167762,0.0,1.0,0.0 -921,5.0,0.0,0.0,0.0,0.0,0.9690647895815232,-6.631052128811874,1.0,0.0,0.0 -921,6.0,11.702557833567822,10.9,0.0,0.0,0.9599860797738548,-7.583195536062571,1.0,0.0,0.0 -921,7.0,15.398102412589235,30.0,-2.4233248991454093e-10,30.250905786438388,0.9680870577283484,-7.031467198809386,0.0,1.0,0.0 -921,8.0,0.0,0.0,0.0,0.0,1.0167887533041429,-8.327987066890094,1.0,0.0,0.0 -921,9.0,2.976966466433919,2.0,0.0,0.0,1.0080225294365797,-9.210034463986426,1.0,0.0,0.0 -921,10.0,0.0,0.0,-1.5044067916889406e-10,21.994732710622795,1.0599502543739423,-8.32798706690673,0.0,1.0,0.0 -921,11.0,5.748624900699982,7.5,0.0,0.0,1.014392841856739,-8.768619239361254,1.0,0.0,0.0 -921,12.0,0.0,0.0,-3.300386007411152e-10,9.14515035080889,1.026861139659284,-8.76861923938667,0.0,1.0,0.0 -921,13.0,3.1822744986017755,1.6,0.0,0.0,1.0037301313694775,-9.2000702074586,1.0,0.0,0.0 -921,14.0,4.208814659441058,2.5,0.0,0.0,1.000565081936306,-9.222588810806132,1.0,0.0,0.0 -921,15.0,1.7964452814687444,1.8,0.0,0.0,1.005612589620062,-9.051702697409167,1.0,0.0,0.0 -921,16.0,4.619430723776771,5.8,0.0,0.0,1.002982815614984,-9.244584637555905,1.0,0.0,0.0 -921,17.0,1.642464257342852,0.9,0.0,0.0,0.9942775870678824,-9.533616663354913,1.0,0.0,0.0 -921,18.0,4.876065763986592,3.4,0.0,0.0,0.9927806998043596,-9.628829497712124,1.0,0.0,0.0 -921,19.0,1.1291941769232108,0.7,0.0,0.0,0.9959876952167728,-9.553620958109596,1.0,0.0,0.0 -921,20.0,8.98222640734372,11.2,0.0,0.0,0.9976719618861976,-9.36244207853782,1.0,0.0,0.0 -921,21.0,0.0,0.0,0.0,0.0,0.998053281100671,-9.36008146755104,1.0,0.0,0.0 -921,22.0,1.642464257342852,1.6,0.0,0.0,0.9924190203282804,-9.383184081787704,1.0,0.0,0.0 -921,23.0,4.465449699650878,6.7,0.0,0.0,0.9881198620689564,-9.467427418968208,1.0,0.0,0.0 -921,24.0,0.0,0.0,0.0,0.0,0.981933534114877,-9.211376676788596,1.0,0.0,0.0 -921,25.0,1.7964452814687444,2.3,0.0,0.0,0.9681854897658012,-9.270154939460475,1.0,0.0,0.0 -921,26.0,0.0,0.0,0.0,0.0,0.9849921349418193,-8.98655309412601,1.0,0.0,0.0 -921,27.0,0.0,0.0,0.0,0.0,0.9671262317930788,-6.961419322789499,1.0,0.0,0.0 -921,28.0,1.231848193007139,0.9,0.0,0.0,0.97167621316825,-9.572333878672865,1.0,0.0,0.0 -921,29.0,5.440662852448196,1.9,0.0,0.0,0.9644673217987616,-10.015933071948565,1.0,0.0,0.0 -922,0.0,0.0,0.0,151.58388652790978,0.0063133869146803,1.0,0.0,0.0,0.0,1.0 -922,1.0,11.137960745106216,12.7,5.106656704369521e-06,10.537463287490516,0.9813239000498216,-3.476908283589761,0.0,1.0,0.0 -922,2.0,1.231848193007139,1.2,0.0,0.0,0.9753076555482256,-4.5410321304298815,1.0,0.0,0.0 -922,3.0,3.900852611189273,1.6,0.0,0.0,0.9688893514055998,-5.577884765554887,1.0,0.0,0.0 -922,4.0,48.350041575530206,19.0,-6.611637080399292e-10,24.206897257359003,0.9624447875961724,-8.369167070774317,0.0,1.0,0.0 -922,5.0,0.0,0.0,0.0,0.0,0.96782913644079,-6.649294506488872,1.0,0.0,0.0 -922,6.0,11.702557833567822,10.9,0.0,0.0,0.9592740734545806,-7.605884383012373,1.0,0.0,0.0 -922,7.0,15.398102412589235,30.0,1.4008673401265666e-10,30.423066726440545,0.9581061983922784,-9.53392317458102,0.0,1.0,0.0 -922,8.0,0.0,0.0,0.0,0.0,1.0142811307782975,-8.510364473614596,1.0,0.0,0.0 -922,9.0,2.976966466433919,2.0,0.0,0.0,1.0035752171740555,-9.480754562536276,1.0,0.0,0.0 -922,10.0,0.0,0.0,1.2576309847808848e-10,23.29903409468653,1.0599999905418482,-8.510364473600658,0.0,1.0,0.0 -922,11.0,5.748624900699982,7.5,0.0,0.0,1.016897520498692,-8.5600303275475,1.0,0.0,0.0 -922,12.0,0.0,0.0,-6.165469407508905e-10,8.039312947113622,1.0278476242498904,-8.560030327594818,0.0,1.0,0.0 -922,13.0,3.1822744986017755,1.6,0.0,0.0,1.0055534757413356,-9.05816916031768,1.0,0.0,0.0 -922,14.0,4.208814659441058,2.5,0.0,0.0,1.001241739542117,-9.13254479699318,1.0,0.0,0.0 -922,15.0,1.7964452814687444,1.8,0.0,0.0,0.990567708692655,-9.79645653670755,1.0,0.0,0.0 -922,16.0,4.619430723776771,5.8,0.0,0.0,0.9950155992747488,-9.650467998948129,1.0,0.0,0.0 -922,17.0,1.642464257342852,0.9,0.0,0.0,0.9931024077181838,-9.569988582981445,1.0,0.0,0.0 -922,18.0,4.876065763986592,3.4,0.0,0.0,0.9905195255003928,-9.740923392948728,1.0,0.0,0.0 -922,19.0,1.1291941769232108,0.7,0.0,0.0,0.9931607845239344,-9.704948758589577,1.0,0.0,0.0 -922,20.0,8.98222640734372,11.2,0.0,0.0,0.9934466020290582,-9.623022526687366,1.0,0.0,0.0 -922,21.0,0.0,0.0,0.0,0.0,0.9939154598302432,-9.617063280771532,1.0,0.0,0.0 -922,22.0,1.642464257342852,1.6,0.0,0.0,0.9915243397838804,-9.42315877742327,1.0,0.0,0.0 -922,23.0,4.465449699650878,6.7,0.0,0.0,0.9851720709408412,-9.684468351965496,1.0,0.0,0.0 -922,24.0,0.0,0.0,0.0,0.0,0.9783388891502858,-9.565182605068095,1.0,0.0,0.0 -922,25.0,1.7964452814687444,2.3,0.0,0.0,0.9645388637899128,-9.62439987263757,1.0,0.0,0.0 -922,26.0,0.0,0.0,0.0,0.0,0.981068189976159,-9.42578352760836,1.0,0.0,0.0 -922,27.0,0.0,0.0,0.0,0.0,0.9639340181521204,-7.528758714244165,1.0,0.0,0.0 -922,28.0,1.231848193007139,0.9,0.0,0.0,0.9676960457120348,-10.016322784210452,1.0,0.0,0.0 -922,29.0,5.440662852448196,1.9,0.0,0.0,0.9604566158218256,-10.463602597292152,1.0,0.0,0.0 -923,0.0,0.0,0.0,151.42319710613398,0.0036789650635249,1.0,0.0,0.0,0.0,1.0 -923,1.0,11.137960745106216,12.7,5.146740750310013e-06,6.344440663401088,0.9807477000584937,-3.451642538291426,0.0,1.0,0.0 -923,2.0,1.231848193007139,1.2,0.0,0.0,0.97707766379533,-4.589645828088153,1.0,0.0,0.0 -923,3.0,3.900852611189273,1.6,0.0,0.0,0.971076430900196,-5.637559482876163,1.0,0.0,0.0 -923,4.0,48.350041575530206,19.0,6.889717678137405e-09,22.92090270122036,0.9619415819007844,-8.314610020060519,0.0,1.0,0.0 -923,5.0,0.0,0.0,0.0,0.0,0.9700593910176716,-6.62052347105245,1.0,0.0,0.0 -923,6.0,11.702557833567822,10.9,0.0,0.0,0.9603940976918875,-7.567368140311864,1.0,0.0,0.0 -923,7.0,15.398102412589235,30.0,6.079656825294798e-09,25.0053401642989,0.9672083565223624,-6.977815814727228,0.0,1.0,0.0 -923,8.0,0.0,0.0,0.0,0.0,1.02201029281662,-8.29772821669391,1.0,0.0,0.0 -923,9.0,2.976966466433919,2.0,0.0,0.0,1.0181976131453312,-9.16169542689415,1.0,0.0,0.0 -923,10.0,0.0,0.0,2.9429742966829474e-09,19.356481065337107,1.0599930700201865,-8.297728216370157,0.0,1.0,0.0 -923,11.0,5.748624900699982,7.5,0.0,0.0,1.0284305833070435,-9.084025028696042,1.0,0.0,0.0 -923,12.0,0.0,0.0,6.482905186122005e-09,20.82295960381844,1.0560358427732282,-9.084025028217228,0.0,1.0,0.0 -923,13.0,3.1822744986017755,1.6,0.0,0.0,1.0205624336206718,-9.421053023473712,1.0,0.0,0.0 -923,14.0,4.208814659441058,2.5,0.0,0.0,1.0121997410407138,-9.490510946434076,1.0,0.0,0.0 -923,15.0,1.7964452814687444,1.8,0.0,0.0,1.0071635797755911,-9.389541049404322,1.0,0.0,0.0 -923,16.0,4.619430723776771,5.8,0.0,0.0,0.9934833836230732,-9.724176623783247,1.0,0.0,0.0 -923,17.0,1.642464257342852,0.9,0.0,0.0,1.0055187285276683,-9.683233925692075,1.0,0.0,0.0 -923,18.0,4.876065763986592,3.4,0.0,0.0,1.0037607394355437,-9.709854855395744,1.0,0.0,0.0 -923,19.0,1.1291941769232108,0.7,0.0,0.0,1.0067892758142036,-9.60120089256325,1.0,0.0,0.0 -923,20.0,8.98222640734372,11.2,0.0,0.0,1.0076776565247496,-9.361768024739764,1.0,0.0,0.0 -923,21.0,0.0,0.0,0.0,0.0,1.0079631527208832,-9.375645537637196,1.0,0.0,0.0 -923,22.0,1.642464257342852,1.6,0.0,0.0,1.0026899420535698,-9.630808233903467,1.0,0.0,0.0 -923,23.0,4.465449699650878,6.7,0.0,0.0,0.9965016002737292,-9.691249611608852,1.0,0.0,0.0 -923,24.0,0.0,0.0,0.0,0.0,0.9852195000712148,-9.784002375309647,1.0,0.0,0.0 -923,25.0,1.7964452814687444,2.3,0.0,0.0,0.9715186267260292,-9.842383611346367,1.0,0.0,0.0 -923,26.0,0.0,0.0,0.0,0.0,0.9876839850661728,-8.44960389390674,1.0,0.0,0.0 -923,27.0,0.0,0.0,0.0,0.0,0.9681912094832852,-6.889019140426253,1.0,0.0,0.0 -923,28.0,1.231848193007139,0.9,0.0,0.0,0.9811094051883535,-8.635125540228035,1.0,0.0,0.0 -923,29.0,5.440662852448196,1.9,0.0,0.0,0.9571240660904256,-10.068505667646034,1.0,0.0,0.0 -924,0.0,0.0,0.0,109.8273293743876,9.955498647684635e-07,1.0,0.0,0.0,0.0,1.0 -924,1.0,11.137960745106216,12.7,40.68396154151947,30.118528737134284,0.9881302334567588,-2.3130976817500075,0.0,1.0,0.0 -924,2.0,1.231848193007139,1.2,0.0,0.0,0.9743256878505564,-3.815726544252419,1.0,0.0,0.0 -924,3.0,3.900852611189273,1.6,0.0,0.0,0.967615748328268,-4.677352532112376,1.0,0.0,0.0 -924,4.0,48.350041575530206,19.0,0.0,0.0,0.94000000040789,-6.906983186650065,0.0,1.0,0.0 -924,5.0,0.0,0.0,0.0,0.0,0.967189839147222,-5.660148495703576,1.0,0.0,0.0 -924,6.0,11.702557833567822,10.9,0.0,0.0,0.9495649230457424,-6.441806626823192,1.0,0.0,0.0 -924,7.0,15.398102412589235,30.0,-2.7528057814693717e-09,39.999997138512605,0.982069101453303,-8.955753666918026,0.0,1.0,0.0 -924,8.0,0.0,0.0,0.0,0.0,1.013534598691888,-7.435749032107366,1.0,0.0,0.0 -924,9.0,2.976966466433919,2.0,0.0,0.0,1.0023469132764176,-8.362106986456613,1.0,0.0,0.0 -924,10.0,0.0,0.0,-1.5390727004752175e-09,23.679480508100823,1.0599999946408185,-7.435749032278092,0.0,1.0,0.0 -924,11.0,5.748624900699982,7.5,0.0,0.0,0.9988424929643014,-7.829177929162014,1.0,0.0,0.0 -924,12.0,0.0,0.0,0.0,0.0,0.9988424929643014,-7.829177929162014,0.0,1.0,0.0 -924,13.0,3.1822744986017755,1.6,0.0,0.0,0.9890711509847095,-8.286321256652109,1.0,0.0,0.0 -924,14.0,4.208814659441058,2.5,0.0,0.0,0.986794993961664,-8.345977804530047,1.0,0.0,0.0 -924,15.0,1.7964452814687444,1.8,0.0,0.0,0.9942098242173611,-8.175383791830331,1.0,0.0,0.0 -924,16.0,4.619430723776771,5.8,0.0,0.0,0.9954981588843324,-8.382270283464726,1.0,0.0,0.0 -924,17.0,1.642464257342852,0.9,0.0,0.0,0.9832620073214556,-8.675436356492893,1.0,0.0,0.0 -924,18.0,4.876065763986592,3.4,0.0,0.0,0.9834218264175136,-8.779179823032248,1.0,0.0,0.0 -924,19.0,1.1291941769232108,0.7,0.0,0.0,0.9875404784755216,-8.706266865008246,1.0,0.0,0.0 -924,20.0,8.98222640734372,11.2,0.0,0.0,0.987313312828246,-8.607001013450757,1.0,0.0,0.0 -924,21.0,0.0,0.0,0.0,0.0,0.98623334822966,-8.63185855928781,1.0,0.0,0.0 -924,22.0,1.642464257342852,1.6,0.0,0.0,0.9798095274160168,-8.58704668972347,1.0,0.0,0.0 -924,23.0,4.465449699650878,6.7,0.0,0.0,0.9771615205395882,-8.775357009111108,1.0,0.0,0.0 -924,24.0,0.0,0.0,0.0,0.0,0.9749979607105876,-8.717876519471359,1.0,0.0,0.0 -924,25.0,1.7964452814687444,2.3,0.0,0.0,0.9611492643634172,-8.777506251605029,1.0,0.0,0.0 -924,26.0,0.0,0.0,0.0,0.0,0.9806727464840246,-8.610620646142822,1.0,0.0,0.0 -924,27.0,0.0,0.0,0.0,0.0,0.9682653481756192,-6.637215912329654,1.0,0.0,0.0 -924,28.0,1.231848193007139,0.9,0.0,0.0,0.967294909215815,-9.201642676632382,1.0,0.0,0.0 -924,29.0,5.440662852448196,1.9,0.0,0.0,0.9600523869612012,-9.64929598158761,1.0,0.0,0.0 -925,0.0,0.0,0.0,130.92799075098327,1.646499558916048e-06,1.0,0.0,0.0,0.0,1.0 -925,1.0,11.137960745106216,12.7,20.062670605567888,15.749323477541717,0.9833311057793664,-2.8537343452936006,0.0,1.0,0.0 -925,2.0,1.231848193007139,1.2,0.0,0.0,0.9786683280424494,-4.294349430830628,1.0,0.0,0.0 -925,3.0,3.900852611189273,1.6,0.0,0.0,0.9730038489764022,-5.270557767881305,1.0,0.0,0.0 -925,4.0,48.350041575530206,19.0,0.0,0.0,0.9400000006567096,-7.418217798664849,0.0,1.0,0.0 -925,5.0,0.0,0.0,0.0,0.0,0.9721333259347372,-6.159251505460604,1.0,0.0,0.0 -925,6.0,11.702557833567822,10.9,0.0,0.0,0.9525175535576932,-6.947184767132015,1.0,0.0,0.0 -925,7.0,15.398102412589235,30.0,3.728340863593578e-09,39.999996634898935,0.9741920349681472,-6.832822323640788,0.0,1.0,0.0 -925,8.0,0.0,0.0,0.0,0.0,1.0244232566361129,-8.355779333722964,1.0,0.0,0.0 -925,9.0,2.976966466433919,2.0,0.0,0.0,1.0222819475624267,-9.485065683780329,1.0,0.0,0.0 -925,10.0,0.0,0.0,6.762108755994666e-09,18.1304487996871,1.0599999867993075,-8.355779332980829,0.0,1.0,0.0 -925,11.0,5.748624900699982,7.5,0.0,0.0,1.0328274279516352,-9.064293666789316,1.0,0.0,0.0 -925,12.0,0.0,0.0,3.663503608011201e-09,20.573501408631152,1.0599999775572118,-9.064293666520896,0.0,1.0,0.0 -925,13.0,3.1822744986017755,1.6,0.0,0.0,1.0192732288181086,-9.581562094788923,1.0,0.0,0.0 -925,14.0,4.208814659441058,2.5,0.0,0.0,1.0124898056427707,-9.634302160842855,1.0,0.0,0.0 -925,15.0,1.7964452814687444,1.8,0.0,0.0,1.0223449220270686,-9.326537087608354,1.0,0.0,0.0 -925,16.0,4.619430723776771,5.8,0.0,0.0,1.0180789481465755,-9.519951161352305,1.0,0.0,0.0 -925,17.0,1.642464257342852,0.9,0.0,0.0,0.9929621679609132,-10.280916376380338,1.0,0.0,0.0 -925,18.0,4.876065763986592,3.4,0.0,0.0,0.9836600904445733,-10.582367864948187,1.0,0.0,0.0 -925,19.0,1.1291941769232108,0.7,0.0,0.0,0.9827849537018216,-10.61377105117299,1.0,0.0,0.0 -925,20.0,8.98222640734372,11.2,0.0,0.0,1.0115601199696955,-9.653601437322823,1.0,0.0,0.0 -925,21.0,0.0,0.0,0.0,0.0,1.0117705477555046,-9.65763715778991,1.0,0.0,0.0 -925,22.0,1.642464257342852,1.6,0.0,0.0,1.004192086500363,-9.774190013594795,1.0,0.0,0.0 -925,23.0,4.465449699650878,6.7,0.0,0.0,0.9996101225670446,-9.83368390076749,1.0,0.0,0.0 -925,24.0,0.0,0.0,0.0,0.0,0.9887301435449608,-9.683200152890215,1.0,0.0,0.0 -925,25.0,1.7964452814687444,2.3,0.0,0.0,0.9750793050551068,-9.741161661981735,1.0,0.0,0.0 -925,26.0,0.0,0.0,0.0,0.0,0.9888601852009642,-9.53050588462727,1.0,0.0,0.0 -925,27.0,0.0,0.0,0.0,0.0,0.9673769771049264,-7.747391212405035,1.0,0.0,0.0 -925,28.0,1.231848193007139,0.9,0.0,0.0,0.9755992120650224,-10.111652322404863,1.0,0.0,0.0 -925,29.0,5.440662852448196,1.9,0.0,0.0,0.9684201659456316,-10.551668143278745,1.0,0.0,0.0 -926,0.0,0.0,0.0,151.36375313774303,0.0096401068140572,1.0,0.0,0.0,0.0,1.0 -926,1.0,11.137960745106216,12.7,9.084810706873893e-06,8.548920273010445,0.9811298661003734,-3.4600338368166432,0.0,1.0,0.0 -926,2.0,1.231848193007139,1.2,0.0,0.0,0.975979542157128,-4.564649152956148,1.0,0.0,0.0 -926,3.0,3.900852611189273,1.6,0.0,0.0,0.9697201593568168,-5.606953576788378,1.0,0.0,0.0 -926,4.0,48.350041575530206,19.0,-1.7160936982014142e-08,23.52258200840892,0.9623977028413124,-8.328123860602906,0.0,1.0,0.0 -926,5.0,0.0,0.0,0.0,0.0,0.9693423378341228,-6.616373196872613,1.0,0.0,0.0 -926,6.0,11.702557833567822,10.9,0.0,0.0,0.9601566554382234,-7.569962742767129,1.0,0.0,0.0 -926,7.0,15.398102412589235,30.0,-1.5865579046809862e-08,29.84953837182912,0.9682425541233904,-7.0136153622053365,0.0,1.0,0.0 -926,8.0,0.0,0.0,0.0,0.0,1.014781071712269,-8.213134023477298,1.0,0.0,0.0 -926,9.0,2.976966466433919,2.0,0.0,0.0,1.0116620777008445,-9.04037291864831,1.0,0.0,0.0 -926,10.0,0.0,0.0,-1.0170168416422366e-08,15.12863176496392,1.0448965450760317,-8.213134024620356,0.0,1.0,0.0 -926,11.0,5.748624900699982,7.5,0.0,0.0,1.018745208055469,-8.996289588658916,1.0,0.0,0.0 -926,12.0,0.0,0.0,-1.8736385409318382e-08,17.046236702272388,1.041655593721353,-8.996289590075188,0.0,1.0,0.0 -926,13.0,3.1822744986017755,1.6,0.0,0.0,1.0078723001358434,-9.38055096509629,1.0,0.0,0.0 -926,14.0,4.208814659441058,2.5,0.0,0.0,1.004775255418424,-9.354101880105553,1.0,0.0,0.0 -926,15.0,1.7964452814687444,1.8,0.0,0.0,0.9972618133957442,-9.307722511469228,1.0,0.0,0.0 -926,16.0,4.619430723776771,5.8,0.0,0.0,0.9834415791378182,-9.64913159683296,1.0,0.0,0.0 -926,17.0,1.642464257342852,0.9,0.0,0.0,0.998343258319091,-9.556605374549044,1.0,0.0,0.0 -926,18.0,4.876065763986592,3.4,0.0,0.0,0.9967486509136996,-9.587789798536251,1.0,0.0,0.0 -926,19.0,1.1291941769232108,0.7,0.0,0.0,0.99989099646312,-9.479842845137595,1.0,0.0,0.0 -926,20.0,8.98222640734372,11.2,0.0,0.0,1.0013067089407914,-9.210935025440095,1.0,0.0,0.0 -926,21.0,0.0,0.0,0.0,0.0,1.001671082060411,-9.21476512818016,1.0,0.0,0.0 -926,22.0,1.642464257342852,1.6,0.0,0.0,0.9962530515160772,-9.430838653257096,1.0,0.0,0.0 -926,23.0,4.465449699650878,6.7,0.0,0.0,0.9914125621062616,-9.403056608861297,1.0,0.0,0.0 -926,24.0,0.0,0.0,0.0,0.0,0.9841108393723396,-9.15051009687058,1.0,0.0,0.0 -926,25.0,1.7964452814687444,2.3,0.0,0.0,0.9703940876125936,-9.20902483270512,1.0,0.0,0.0 -926,26.0,0.0,0.0,0.0,0.0,0.9864620104783052,-8.929354830159198,1.0,0.0,0.0 -926,27.0,0.0,0.0,0.0,0.0,0.9675278778086775,-6.943753135011334,1.0,0.0,0.0 -926,28.0,1.231848193007139,0.9,0.0,0.0,0.9731670244061466,-9.513368002817248,1.0,0.0,0.0 -926,29.0,5.440662852448196,1.9,0.0,0.0,0.9659695043809872,-9.955600298072888,1.0,0.0,0.0 -927,0.0,0.0,0.0,151.65081080334605,0.0120976754383939,1.0,0.0,0.0,0.0,1.0 -927,1.0,11.137960745106216,12.7,8.918057897398073e-06,11.09222751984244,0.9816009836970758,-3.463840256290286,0.0,1.0,0.0 -927,2.0,1.231848193007139,1.2,0.0,0.0,0.9745428289636058,-4.588023166283914,1.0,0.0,0.0 -927,3.0,3.900852611189273,1.6,0.0,0.0,0.9679525918762424,-5.636534385435638,1.0,0.0,0.0 -927,4.0,48.350041575530206,19.0,8.106466739786272e-09,24.556662379121747,0.963262463008675,-8.309982079214748,0.0,1.0,0.0 -927,5.0,0.0,0.0,0.0,0.0,0.9684940641973032,-6.537687448569824,1.0,0.0,0.0 -927,6.0,11.702557833567822,10.9,0.0,0.0,0.9600150702847629,-7.515199939422807,1.0,0.0,0.0 -927,7.0,15.398102412589235,30.0,-6.445228448817565e-09,30.891931601386645,0.9591913520030274,-9.524142891937297,0.0,1.0,0.0 -927,8.0,0.0,0.0,0.0,0.0,1.0251291660889887,-6.537687448197554,1.0,0.0,0.0 -927,9.0,2.976966466433919,2.0,0.0,0.0,0.9859719941432452,-10.980904711369885,1.0,0.0,0.0 -927,10.0,0.0,0.0,3.1711060913609362e-09,17.759187473515187,1.0599781029145172,-6.53768744784976,0.0,1.0,0.0 -927,11.0,5.748624900699982,7.5,0.0,0.0,1.0113047769744632,-9.83548351959213,1.0,0.0,0.0 -927,12.0,0.0,0.0,5.84288696261885e-09,14.235846638979629,1.030642410561379,-9.835483519142464,0.0,1.0,0.0 -927,13.0,3.1822744986017755,1.6,0.0,0.0,0.9987068715077502,-10.358931465148316,1.0,0.0,0.0 -927,14.0,4.208814659441058,2.5,0.0,0.0,0.9930929185220436,-10.42651712634843,1.0,0.0,0.0 -927,15.0,1.7964452814687444,1.8,0.0,0.0,0.993771914787818,-10.37837548071997,1.0,0.0,0.0 -927,16.0,4.619430723776771,5.8,0.0,0.0,0.9841867955467778,-10.89180478683231,1.0,0.0,0.0 -927,17.0,1.642464257342852,0.9,0.0,0.0,0.9814873657124356,-10.940946045632591,1.0,0.0,0.0 -927,18.0,4.876065763986592,3.4,0.0,0.0,0.9768852475006544,-11.157025943115174,1.0,0.0,0.0 -927,19.0,1.1291941769232108,0.7,0.0,0.0,0.978516899018276,-11.141274194739148,1.0,0.0,0.0 -927,20.0,8.98222640734372,11.2,0.0,0.0,0.9766813334178444,-11.074198062984538,1.0,0.0,0.0 -927,21.0,0.0,0.0,0.0,0.0,0.9774862951734274,-11.051108500465515,1.0,0.0,0.0 -927,22.0,1.642464257342852,1.6,0.0,0.0,0.9817898532695924,-10.693872341136013,1.0,0.0,0.0 -927,23.0,4.465449699650878,6.7,0.0,0.0,0.9733800227683804,-10.922714268831385,1.0,0.0,0.0 -927,24.0,0.0,0.0,0.0,0.0,0.9725404519299344,-10.374955458560615,1.0,0.0,0.0 -927,25.0,1.7964452814687444,2.3,0.0,0.0,0.9586557314306728,-10.43489136465046,1.0,0.0,0.0 -927,26.0,0.0,0.0,0.0,0.0,0.9789118054873674,-9.963038807760247,1.0,0.0,0.0 -927,27.0,0.0,0.0,0.0,0.0,0.964035965259373,-7.502795875241789,1.0,0.0,0.0 -927,28.0,1.231848193007139,0.9,0.0,0.0,0.965508556349149,-10.556217910395372,1.0,0.0,0.0 -927,29.0,5.440662852448196,1.9,0.0,0.0,0.9582522305389652,-11.005540167856925,1.0,0.0,0.0 -928,0.0,0.0,0.0,152.10482718445175,0.0005785989596773,1.0,0.0,0.0,0.0,1.0 -928,1.0,11.137960745106216,12.7,0.0,0.0,0.9796334027080392,-3.617858629149441,0.0,1.0,0.0 -928,2.0,1.231848193007139,1.2,0.0,0.0,0.979440414575149,-4.174562140472621,1.0,0.0,0.0 -928,3.0,3.900852611189273,1.6,0.0,0.0,0.9739442111953128,-5.121728410733389,1.0,0.0,0.0 -928,4.0,48.350041575530206,19.0,3.762414898601624e-12,37.82740149714881,0.9651360397006892,-11.198038103986583,0.0,1.0,0.0 -928,5.0,0.0,0.0,0.0,0.0,0.9764576220175474,-5.75552771121379,1.0,0.0,0.0 -928,6.0,11.702557833567822,10.9,0.0,0.0,0.947177633806103,-11.760999017437904,1.0,0.0,0.0 -928,7.0,15.398102412589235,30.0,-9.70235470101253e-10,30.04952343362437,0.97526684815282,-6.161809026996273,0.0,1.0,0.0 -928,8.0,0.0,0.0,0.0,0.0,1.0291568686286072,-5.755527711300303,1.0,0.0,0.0 -928,9.0,2.976966466433919,2.0,0.0,0.0,1.004832613201669,-9.989886998257823,1.0,0.0,0.0 -928,10.0,0.0,0.0,-7.459179585971752e-10,15.66087640430734,1.0598908108310294,-5.755527711381799,0.0,1.0,0.0 -928,11.0,5.748624900699982,7.5,0.0,0.0,1.0209683035032462,-9.1737314285109,1.0,0.0,0.0 -928,12.0,0.0,0.0,-1.00416737351801e-09,16.63867158070233,1.0432957595479977,-9.173731428586514,0.0,1.0,0.0 -928,13.0,3.1822744986017755,1.6,0.0,0.0,1.0069321662099904,-9.695173662117098,1.0,0.0,0.0 -928,14.0,4.208814659441058,2.5,0.0,0.0,0.9998166621130395,-9.73387496231843,1.0,0.0,0.0 -928,15.0,1.7964452814687444,1.8,0.0,0.0,1.007718314703537,-9.595317589122256,1.0,0.0,0.0 -928,16.0,4.619430723776771,5.8,0.0,0.0,1.0015231018376425,-9.957166022268828,1.0,0.0,0.0 -928,17.0,1.642464257342852,0.9,0.0,0.0,0.982962081809785,-10.295277269238005,1.0,0.0,0.0 -928,18.0,4.876065763986592,3.4,0.0,0.0,0.9752538417153712,-10.54195682212165,1.0,0.0,0.0 -928,19.0,1.1291941769232108,0.7,0.0,0.0,1.0023170732749842,-10.086871303306166,1.0,0.0,0.0 -928,20.0,8.98222640734372,11.2,0.0,0.0,0.9756698703892392,-10.24747669070218,1.0,0.0,0.0 -928,21.0,0.0,0.0,0.0,0.0,0.9794472654994296,-10.19827578242124,1.0,0.0,0.0 -928,22.0,1.642464257342852,1.6,0.0,0.0,0.9875744398926144,-9.925179806592402,1.0,0.0,0.0 -928,23.0,4.465449699650878,6.7,0.0,0.0,0.97785278007059,-10.052924269916028,1.0,0.0,0.0 -928,24.0,0.0,0.0,0.0,0.0,0.9797698498867076,-9.330647806378948,1.0,0.0,0.0 -928,25.0,1.7964452814687444,2.3,0.0,0.0,0.9659905648841218,-9.389689722571728,1.0,0.0,0.0 -928,26.0,0.0,0.0,0.0,0.0,0.987763890262311,-8.810449076980431,1.0,0.0,0.0 -928,27.0,0.0,0.0,0.0,0.0,0.9735699947721,-6.15419454491086,1.0,0.0,0.0 -928,28.0,1.231848193007139,0.9,0.0,0.0,0.9744873907364264,-9.392903367668554,1.0,0.0,0.0 -928,29.0,5.440662852448196,1.9,0.0,0.0,0.9672999116215268,-9.833930323761829,1.0,0.0,0.0 -929,0.0,0.0,0.0,151.63963523150335,0.0009749056925301,1.0,0.0,0.0,0.0,1.0 -929,1.0,11.137960745106216,12.7,9.266796292940256e-07,-4.131608223329913,0.979666483786524,-3.429607709802567,0.0,1.0,0.0 -929,2.0,1.231848193007139,1.2,0.0,0.0,0.9801402260198718,-4.6596455712842895,1.0,0.0,0.0 -929,3.0,3.900852611189273,1.6,0.0,0.0,0.9748592799565696,-5.7231884944574976,1.0,0.0,0.0 -929,4.0,48.350041575530206,19.0,-5.393721469433789e-10,23.674724225545383,0.9651630398116564,-8.326984044439621,0.0,1.0,0.0 -929,5.0,0.0,0.0,0.0,0.0,0.9759354826763484,-6.692774419768425,1.0,0.0,0.0 -929,6.0,11.702557833567822,10.9,0.0,0.0,0.9652209427491216,-7.61424651059455,1.0,0.0,0.0 -929,7.0,15.398102412589235,30.0,-1.334760995933129e-09,39.22204718504417,0.9776120884469642,-7.35671111151362,0.0,1.0,0.0 -929,8.0,0.0,0.0,0.0,0.0,1.0267125796818302,-8.96247125246089,1.0,0.0,0.0 -929,9.0,2.976966466433919,2.0,0.0,0.0,1.0249844020942414,-10.130836702453394,1.0,0.0,0.0 -929,10.0,0.0,0.0,-1.8011239829270272e-09,16.958399891312546,1.059989761275989,-8.962471252658126,0.0,1.0,0.0 -929,11.0,5.748624900699982,7.5,0.0,0.0,1.0333167281969835,-9.40549225131994,1.0,0.0,0.0 -929,12.0,0.0,0.0,-9.699559436347079e-10,20.191441188366007,1.0599850456231912,-9.405492251390973,0.0,1.0,0.0 -929,13.0,3.1822744986017755,1.6,0.0,0.0,1.0225099911119269,-9.864108118657526,1.0,0.0,0.0 -929,14.0,4.208814659441058,2.5,0.0,0.0,1.0187718280857003,-9.920549078068552,1.0,0.0,0.0 -929,15.0,1.7964452814687444,1.8,0.0,0.0,1.012157188891738,-9.708087359485347,1.0,0.0,0.0 -929,16.0,4.619430723776771,5.8,0.0,0.0,0.9985465289338088,-10.03938352479113,1.0,0.0,0.0 -929,17.0,1.642464257342852,0.9,0.0,0.0,1.012184452853941,-10.298776098987892,1.0,0.0,0.0 -929,18.0,4.876065763986592,3.4,0.0,0.0,1.0104744699057286,-10.4372894572501,1.0,0.0,0.0 -929,19.0,1.1291941769232108,0.7,0.0,0.0,1.0134975631329748,-10.389202848353197,1.0,0.0,0.0 -929,20.0,8.98222640734372,11.2,0.0,0.0,1.0144561626371882,-10.276344202875176,1.0,0.0,0.0 -929,21.0,0.0,0.0,0.0,0.0,1.0147202748335675,-10.2733129923519,1.0,0.0,0.0 -929,22.0,1.642464257342852,1.6,0.0,0.0,1.0094505217361691,-10.16069912637256,1.0,0.0,0.0 -929,23.0,4.465449699650878,6.7,0.0,0.0,1.003495297909207,-10.357922846859616,1.0,0.0,0.0 -929,24.0,0.0,0.0,0.0,0.0,0.9920319507663904,-10.206489318062822,1.0,0.0,0.0 -929,25.0,1.7964452814687444,2.3,0.0,0.0,0.9784278337312284,-10.264060209611875,1.0,0.0,0.0 -929,26.0,0.0,0.0,0.0,0.0,0.991775598875012,-10.054314469800074,1.0,0.0,0.0 -929,27.0,0.0,0.0,0.0,0.0,0.9705811626116144,-8.26861307719086,1.0,0.0,0.0 -929,28.0,1.231848193007139,0.9,0.0,0.0,0.9632860675949456,-11.3472278972249,1.0,0.0,0.0 -929,29.0,5.440662852448196,1.9,0.0,0.0,0.9400009150288512,-12.61946019375222,1.0,0.0,0.0 -930,0.0,0.0,0.0,151.53214316361763,0.0034831734255114,1.0,0.0,0.0,0.0,1.0 -930,1.0,11.137960745106216,12.7,3.622808663801528e-06,9.817710989026274,0.981288649811602,-3.4705253217342613,0.0,1.0,0.0 -930,2.0,1.231848193007139,1.2,0.0,0.0,0.9754510916619856,-4.553632479264964,1.0,0.0,0.0 -930,3.0,3.900852611189273,1.6,0.0,0.0,0.9690676211209032,-5.593476644139688,1.0,0.0,0.0 -930,4.0,48.350041575530206,19.0,3.8826156684239045e-09,23.94690657247765,0.9625429187031964,-8.350600857545897,0.0,1.0,0.0 -930,5.0,0.0,0.0,0.0,0.0,0.9685955820693612,-6.632548291856904,1.0,0.0,0.0 -930,6.0,11.702557833567822,10.9,0.0,0.0,0.959771721968051,-7.588469704746446,1.0,0.0,0.0 -930,7.0,15.398102412589235,30.0,-9.585522916388502e-10,30.19942655957223,0.9584210524714096,-9.498487932470212,0.0,1.0,0.0 -930,8.0,0.0,0.0,0.0,0.0,1.0168012413857783,-8.362792633589526,1.0,0.0,0.0 -930,9.0,2.976966466433919,2.0,0.0,0.0,1.0083122003939948,-9.261456315401723,1.0,0.0,0.0 -930,10.0,0.0,0.0,4.856324832663443e-10,21.99169667968303,1.0599565292050324,-8.36279263353583,0.0,1.0,0.0 -930,11.0,5.748624900699982,7.5,0.0,0.0,1.0156954682609185,-8.825074529036966,1.0,0.0,0.0 -930,12.0,0.0,0.0,3.986001666034471e-09,10.182574967174428,1.0295420181852932,-8.825074528731209,0.0,1.0,0.0 -930,13.0,3.1822744986017755,1.6,0.0,0.0,1.0048790189287429,-9.2625153733388,1.0,0.0,0.0 -930,14.0,4.208814659441058,2.5,0.0,0.0,1.0015078768793542,-9.288172464537338,1.0,0.0,0.0 -930,15.0,1.7964452814687444,1.8,0.0,0.0,1.0064851941742463,-9.103662369658826,1.0,0.0,0.0 -930,16.0,4.619430723776771,5.8,0.0,0.0,1.003456176719902,-9.296787045009763,1.0,0.0,0.0 -930,17.0,1.642464257342852,0.9,0.0,0.0,0.994997442638123,-9.593668426594206,1.0,0.0,0.0 -930,18.0,4.876065763986592,3.4,0.0,0.0,0.9933667026689984,-9.68574090781515,1.0,0.0,0.0 -930,19.0,1.1291941769232108,0.7,0.0,0.0,0.9965008499748786,-9.609009641944962,1.0,0.0,0.0 -930,20.0,8.98222640734372,11.2,0.0,0.0,0.9979031480974448,-9.42776685389068,1.0,0.0,0.0 -930,21.0,0.0,0.0,0.0,0.0,0.998263499793434,-9.429878821973412,1.0,0.0,0.0 -930,22.0,1.642464257342852,1.6,0.0,0.0,0.9928807532262915,-9.475172731244005,1.0,0.0,0.0 -930,23.0,4.465449699650878,6.7,0.0,0.0,0.9879431808852214,-9.595573230919497,1.0,0.0,0.0 -930,24.0,0.0,0.0,0.0,0.0,0.980310214162234,-9.49015475803514,1.0,0.0,0.0 -930,25.0,1.7964452814687444,2.3,0.0,0.0,0.9665387447812068,-9.549130663128688,1.0,0.0,0.0 -930,26.0,0.0,0.0,0.0,0.0,0.9825334173238156,-9.360649175186758,1.0,0.0,0.0 -930,27.0,0.0,0.0,0.0,0.0,0.96470513317041,-7.504353925782652,1.0,0.0,0.0 -930,28.0,1.231848193007139,0.9,0.0,0.0,0.9691823238556656,-9.949404792553944,1.0,0.0,0.0 -930,29.0,5.440662852448196,1.9,0.0,0.0,0.9619543283466896,-10.395304831561912,1.0,0.0,0.0 -931,0.0,0.0,0.0,151.28419939692256,0.0001868809706095,1.0,0.0,0.0,0.0,1.0 -931,1.0,11.137960745106216,12.7,2.141751183914484e-07,9.463381018217426,0.9812734042316876,-3.4648744039945685,0.0,1.0,0.0 -931,2.0,1.231848193007139,1.2,0.0,0.0,0.9755990593806232,-4.545019160611086,1.0,0.0,0.0 -931,3.0,3.900852611189273,1.6,0.0,0.0,0.9692489220980662,-5.582725695503008,1.0,0.0,0.0 -931,4.0,48.350041575530206,19.0,-2.60329184391075e-10,23.573440189485183,0.9623868708327562,-8.339355060167762,0.0,1.0,0.0 -931,5.0,0.0,0.0,0.0,0.0,0.9690647895815232,-6.631052128811874,1.0,0.0,0.0 -931,6.0,11.702557833567822,10.9,0.0,0.0,0.9599860797738548,-7.583195536062571,1.0,0.0,0.0 -931,7.0,15.398102412589235,30.0,-2.4233248991454093e-10,30.250905786438388,0.9680870577283484,-7.031467198809386,0.0,1.0,0.0 -931,8.0,0.0,0.0,0.0,0.0,1.0167887533041429,-8.327987066890094,1.0,0.0,0.0 -931,9.0,2.976966466433919,2.0,0.0,0.0,1.0080225294365797,-9.210034463986426,1.0,0.0,0.0 -931,10.0,0.0,0.0,-1.5044067916889406e-10,21.994732710622795,1.0599502543739423,-8.32798706690673,0.0,1.0,0.0 -931,11.0,5.748624900699982,7.5,0.0,0.0,1.014392841856739,-8.768619239361254,1.0,0.0,0.0 -931,12.0,0.0,0.0,-3.300386007411152e-10,9.14515035080889,1.026861139659284,-8.76861923938667,0.0,1.0,0.0 -931,13.0,3.1822744986017755,1.6,0.0,0.0,1.0037301313694775,-9.2000702074586,1.0,0.0,0.0 -931,14.0,4.208814659441058,2.5,0.0,0.0,1.000565081936306,-9.222588810806132,1.0,0.0,0.0 -931,15.0,1.7964452814687444,1.8,0.0,0.0,1.005612589620062,-9.051702697409167,1.0,0.0,0.0 -931,16.0,4.619430723776771,5.8,0.0,0.0,1.002982815614984,-9.244584637555905,1.0,0.0,0.0 -931,17.0,1.642464257342852,0.9,0.0,0.0,0.9942775870678824,-9.533616663354913,1.0,0.0,0.0 -931,18.0,4.876065763986592,3.4,0.0,0.0,0.9927806998043596,-9.628829497712124,1.0,0.0,0.0 -931,19.0,1.1291941769232108,0.7,0.0,0.0,0.9959876952167728,-9.553620958109596,1.0,0.0,0.0 -931,20.0,8.98222640734372,11.2,0.0,0.0,0.9976719618861976,-9.36244207853782,1.0,0.0,0.0 -931,21.0,0.0,0.0,0.0,0.0,0.998053281100671,-9.36008146755104,1.0,0.0,0.0 -931,22.0,1.642464257342852,1.6,0.0,0.0,0.9924190203282804,-9.383184081787704,1.0,0.0,0.0 -931,23.0,4.465449699650878,6.7,0.0,0.0,0.9881198620689564,-9.467427418968208,1.0,0.0,0.0 -931,24.0,0.0,0.0,0.0,0.0,0.981933534114877,-9.211376676788596,1.0,0.0,0.0 -931,25.0,1.7964452814687444,2.3,0.0,0.0,0.9681854897658012,-9.270154939460475,1.0,0.0,0.0 -931,26.0,0.0,0.0,0.0,0.0,0.9849921349418193,-8.98655309412601,1.0,0.0,0.0 -931,27.0,0.0,0.0,0.0,0.0,0.9671262317930788,-6.961419322789499,1.0,0.0,0.0 -931,28.0,1.231848193007139,0.9,0.0,0.0,0.97167621316825,-9.572333878672865,1.0,0.0,0.0 -931,29.0,5.440662852448196,1.9,0.0,0.0,0.9644673217987616,-10.015933071948565,1.0,0.0,0.0 -932,0.0,0.0,0.0,151.49816992242484,0.0001872341870878,1.0,0.0,0.0,0.0,1.0 -932,1.0,11.137960745106216,12.7,2.4480670863639735e-07,8.401959173300966,0.9808091078800788,-3.5264847597640427,0.0,1.0,0.0 -932,2.0,1.231848193007139,1.2,0.0,0.0,0.9766237353136964,-4.386105904637895,1.0,0.0,0.0 -932,3.0,3.900852611189273,1.6,0.0,0.0,0.970493658858238,-5.385072387574745,1.0,0.0,0.0 -932,4.0,48.350041575530206,19.0,4.192063977152532e-10,22.127123883111764,0.9621920163189184,-9.503356519829168,0.0,1.0,0.0 -932,5.0,0.0,0.0,0.0,0.0,0.96975670993348,-6.200987733369239,1.0,0.0,0.0 -932,6.0,11.702557833567822,10.9,0.0,0.0,0.9578035824387608,-6.626251673214514,1.0,0.0,0.0 -932,7.0,15.398102412589235,30.0,4.694553854630042e-10,30.73087559439231,0.9690035856773606,-6.60341254435091,0.0,1.0,0.0 -932,8.0,0.0,0.0,0.0,0.0,1.015437978915204,-7.619286869808397,1.0,0.0,0.0 -932,9.0,2.976966466433919,2.0,0.0,0.0,1.0152793507349769,-8.351779146796503,1.0,0.0,0.0 -932,10.0,0.0,0.0,4.937082427597886e-10,12.314432793906173,1.0400652982333587,-7.619286869752685,0.0,1.0,0.0 -932,11.0,5.748624900699982,7.5,0.0,0.0,1.0249305436993088,-9.096500676295667,1.0,0.0,0.0 -932,12.0,0.0,0.0,4.2609745563233387e-10,23.090832780547316,1.0555562593873842,-9.096500676264077,0.0,1.0,0.0 -932,13.0,3.1822744986017755,1.6,0.0,0.0,1.011793154666274,-9.51966199090038,1.0,0.0,0.0 -932,14.0,4.208814659441058,2.5,0.0,0.0,1.006170397368119,-9.483629029466051,1.0,0.0,0.0 -932,15.0,1.7964452814687444,1.8,0.0,0.0,1.0035858645536162,-9.404135205244016,1.0,0.0,0.0 -932,16.0,4.619430723776771,5.8,0.0,0.0,0.9898554033889402,-9.741194626408042,1.0,0.0,0.0 -932,17.0,1.642464257342852,0.9,0.0,0.0,0.9894283215185408,-10.0378399240332,1.0,0.0,0.0 -932,18.0,4.876065763986592,3.4,0.0,0.0,0.981771371728124,-10.281280435427432,1.0,0.0,0.0 -932,19.0,1.1291941769232108,0.7,0.0,0.0,1.0127898520506158,-8.446772978493895,1.0,0.0,0.0 -932,20.0,8.98222640734372,11.2,0.0,0.0,1.0047949184463452,-8.57111088596972,1.0,0.0,0.0 -932,21.0,0.0,0.0,0.0,0.0,1.0051003289845646,-8.590917173737669,1.0,0.0,0.0 -932,22.0,1.642464257342852,1.6,0.0,0.0,0.9980462061243958,-9.328791958014062,1.0,0.0,0.0 -932,23.0,4.465449699650878,6.7,0.0,0.0,0.9937189169313286,-8.98866485095878,1.0,0.0,0.0 -932,24.0,0.0,0.0,0.0,0.0,0.9857997166646096,-8.727203614233304,1.0,0.0,0.0 -932,25.0,1.7964452814687444,2.3,0.0,0.0,0.9721071383966976,-8.785515164227975,1.0,0.0,0.0 -932,26.0,0.0,0.0,0.0,0.0,0.9877523162769434,-8.501368315095078,1.0,0.0,0.0 -932,27.0,0.0,0.0,0.0,0.0,0.9681127575337304,-6.529426446279391,1.0,0.0,0.0 -932,28.0,1.231848193007139,0.9,0.0,0.0,0.9744756526437884,-9.08383643734584,1.0,0.0,0.0 -932,29.0,5.440662852448196,1.9,0.0,0.0,0.9672880843966188,-9.524874087338189,1.0,0.0,0.0 -933,0.0,0.0,0.0,126.65407551175704,1.5586214097140785e-06,1.0,0.0,0.0,0.0,1.0 -933,1.0,11.137960745106216,12.7,24.16333807528884,16.726088003301598,0.9839607445117826,-2.744315163556134,0.0,1.0,0.0 -933,2.0,1.231848193007139,1.2,0.0,0.0,0.9787255514339576,-4.191837553480104,1.0,0.0,0.0 -933,3.0,3.900852611189273,1.6,0.0,0.0,0.9730648056969742,-5.143349611220395,1.0,0.0,0.0 -933,4.0,48.350041575530206,19.0,0.0,0.0,0.9400000006106984,-7.335979341408453,0.0,1.0,0.0 -933,5.0,0.0,0.0,0.0,0.0,0.9714620242230187,-6.103145263209585,1.0,0.0,0.0 -933,6.0,11.702557833567822,10.9,0.0,0.0,0.9521125363816776,-6.880419615371994,1.0,0.0,0.0 -933,7.0,15.398102412589235,30.0,-3.572721294711545e-09,39.99999647392767,0.9740287414350348,-6.5705133453550895,0.0,1.0,0.0 -933,8.0,0.0,0.0,0.0,0.0,1.02228001576177,-7.713497639069279,1.0,0.0,0.0 -933,9.0,2.976966466433919,2.0,0.0,0.0,1.0179645318903083,-8.544424195424993,1.0,0.0,0.0 -933,10.0,0.0,0.0,-2.095215379320105e-09,19.22267816065674,1.0599999884138416,-7.7134976392997086,0.0,1.0,0.0 -933,11.0,5.748624900699982,7.5,0.0,0.0,1.0327763491327202,-8.382788618701342,1.0,0.0,0.0 -933,12.0,0.0,0.0,-6.457746033670713e-09,20.61217857673245,1.0599999816855608,-8.382788619174516,0.0,1.0,0.0 -933,13.0,3.1822744986017755,1.6,0.0,0.0,1.0202406839022014,-8.802239664530456,1.0,0.0,0.0 -933,14.0,4.208814659441058,2.5,0.0,0.0,1.0151217065692228,-8.780795951225977,1.0,0.0,0.0 -933,15.0,1.7964452814687444,1.8,0.0,0.0,1.0206128579234943,-8.525759191205866,1.0,0.0,0.0 -933,16.0,4.619430723776771,5.8,0.0,0.0,1.014499827070516,-8.626642282283042,1.0,0.0,0.0 -933,17.0,1.642464257342852,0.9,0.0,0.0,1.0073377254459197,-9.00457658308128,1.0,0.0,0.0 -933,18.0,4.876065763986592,3.4,0.0,0.0,1.0049231360227149,-9.05012857760249,1.0,0.0,0.0 -933,19.0,1.1291941769232108,0.7,0.0,0.0,1.0075997994149133,-8.951625959354116,1.0,0.0,0.0 -933,20.0,8.98222640734372,11.2,0.0,0.0,0.9879241877792366,-8.994044303915796,1.0,0.0,0.0 -933,21.0,0.0,0.0,0.0,0.0,0.9916547189164108,-8.94605184865575,1.0,0.0,0.0 -933,22.0,1.642464257342852,1.6,0.0,0.0,1.0007052403487675,-8.94988314000426,1.0,0.0,0.0 -933,23.0,4.465449699650878,6.7,0.0,0.0,0.9879936774837724,-9.052454401087108,1.0,0.0,0.0 -933,24.0,0.0,0.0,0.0,0.0,0.9823615264835408,-8.74434412163507,1.0,0.0,0.0 -933,25.0,1.7964452814687444,2.3,0.0,0.0,0.9686196447348234,-8.80307044094103,1.0,0.0,0.0 -933,26.0,0.0,0.0,0.0,0.0,0.9857451112177604,-8.486605934193474,1.0,0.0,0.0 -933,27.0,0.0,0.0,0.0,0.0,0.967926754418562,-6.401408128587951,1.0,0.0,0.0 -933,28.0,1.231848193007139,0.9,0.0,0.0,0.9724399226623328,-9.071480214287885,1.0,0.0,0.0 -933,29.0,5.440662852448196,1.9,0.0,0.0,0.9652368611238168,-9.514378383648603,1.0,0.0,0.0 -934,0.0,0.0,0.0,151.36836936462467,0.0101043062585404,1.0,0.0,0.0,0.0,1.0 -934,1.0,11.137960745106216,12.7,8.543683789436438e-06,10.257930431857034,0.9813395557838046,-3.4533693663208145,0.0,1.0,0.0 -934,2.0,1.231848193007139,1.2,0.0,0.0,0.9754105824429572,-4.586577187239422,1.0,0.0,0.0 -934,3.0,3.900852611189273,1.6,0.0,0.0,0.969021731118508,-5.63439967720448,1.0,0.0,0.0 -934,4.0,48.350041575530206,19.0,1.5071017057817912e-08,24.28310294958217,0.9625597319203656,-8.296133106101568,0.0,1.0,0.0 -934,5.0,0.0,0.0,0.0,0.0,0.9679364754889428,-6.522322645805878,1.0,0.0,0.0 -934,6.0,11.702557833567822,10.9,0.0,0.0,0.9593926838471414,-7.500819889482519,1.0,0.0,0.0 -934,7.0,15.398102412589235,30.0,1.93728437604353e-08,35.33376365990786,0.9689056777438546,-6.967371800995196,0.0,1.0,0.0 -934,8.0,0.0,0.0,0.0,0.0,1.0236976074781516,-11.007773102359012,1.0,0.0,0.0 -934,9.0,2.976966466433919,2.0,0.0,0.0,1.012131017282064,-11.007773103669097,1.0,0.0,0.0 -934,10.0,0.0,0.0,2.1537367114079195e-08,10.994243533881123,1.0455689780248112,-11.007773099960984,0.0,1.0,0.0 -934,11.0,5.748624900699982,7.5,0.0,0.0,1.0241094060076787,-9.669363243461014,1.0,0.0,0.0 -934,12.0,0.0,0.0,4.967411768084374e-10,13.530122524113054,1.042283135287613,-9.669363243423682,0.0,1.0,0.0 -934,13.0,3.1822744986017755,1.6,0.0,0.0,1.0130660083443188,-10.182940038598383,1.0,0.0,0.0 -934,14.0,4.208814659441058,2.5,0.0,0.0,1.008839885599981,-10.283443225042392,1.0,0.0,0.0 -934,15.0,1.7964452814687444,1.8,0.0,0.0,1.012302762518838,-10.322579006023878,1.0,0.0,0.0 -934,16.0,4.619430723776771,5.8,0.0,0.0,1.0081043884769894,-10.880158998143193,1.0,0.0,0.0 -934,17.0,1.642464257342852,0.9,0.0,0.0,1.0010661019210818,-10.848114905122673,1.0,0.0,0.0 -934,18.0,4.876065763986592,3.4,0.0,0.0,0.9986948137235095,-11.0964666041047,1.0,0.0,0.0 -934,19.0,1.1291941769232108,0.7,0.0,0.0,1.001414156780154,-11.103374038179735,1.0,0.0,0.0 -934,20.0,8.98222640734372,11.2,0.0,0.0,1.0019139403542945,-11.06944351051188,1.0,0.0,0.0 -934,21.0,0.0,0.0,0.0,0.0,1.0023324121131758,-11.03837656352306,1.0,0.0,0.0 -934,22.0,1.642464257342852,1.6,0.0,0.0,0.9995490984779032,-10.542345907775095,1.0,0.0,0.0 -934,23.0,4.465449699650878,6.7,0.0,0.0,0.9937033273430368,-10.762371099591864,1.0,0.0,0.0 -934,24.0,0.0,0.0,0.0,0.0,0.9869435380866832,-9.972880125989615,1.0,0.0,0.0 -934,25.0,1.7964452814687444,2.3,0.0,0.0,0.9732672827031288,-10.031054667856475,1.0,0.0,0.0 -934,26.0,0.0,0.0,0.0,0.0,0.9894847153264597,-9.41676430573908,1.0,0.0,0.0 -934,27.0,0.0,0.0,0.0,0.0,0.9667107439539966,-6.929893973885547,1.0,0.0,0.0 -934,28.0,1.231848193007139,0.9,0.0,0.0,0.9762325705149412,-9.997167672652129,1.0,0.0,0.0 -934,29.0,5.440662852448196,1.9,0.0,0.0,0.9690583193609312,-10.436609049310272,1.0,0.0,0.0 -935,0.0,0.0,0.0,151.50367755721433,1.643737444626403,1.0,0.0,0.0,0.0,1.0 -935,1.0,11.137960745106216,12.7,0.0,0.0,0.979808920139412,-3.442661957429925,0.0,1.0,0.0 -935,2.0,1.231848193007139,1.2,0.0,0.0,0.9769694830268724,-4.580677547163108,1.0,0.0,0.0 -935,3.0,3.900852611189273,1.6,0.0,0.0,0.9709420129015264,-5.62646996285063,1.0,0.0,0.0 -935,4.0,48.350041575530206,19.0,-3.711855562619027e-10,30.686994621100094,0.9692894883233768,-8.431758192567154,0.0,1.0,0.0 -935,5.0,0.0,0.0,0.0,0.0,0.9697386911757216,-6.62487836876176,1.0,0.0,0.0 -935,6.0,11.702557833567822,10.9,0.0,0.0,0.9632478357308086,-7.612791829633541,1.0,0.0,0.0 -935,7.0,15.398102412589235,30.0,-4.3466020116847134e-10,39.999019810842775,0.9723279955749992,-7.085899579201923,0.0,1.0,0.0 -935,8.0,0.0,0.0,0.0,0.0,0.9937621289643508,-8.241725475444959,1.0,0.0,0.0 -935,9.0,2.976966466433919,2.0,0.0,0.0,0.995249254926067,-9.09353142328016,1.0,0.0,0.0 -935,10.0,0.0,0.0,0.0,0.0,0.9937621289643508,-8.241725475444959,0.0,1.0,0.0 -935,11.0,5.748624900699982,7.5,0.0,0.0,1.0295178495845154,-8.944841161490189,1.0,0.0,0.0 -935,12.0,0.0,0.0,-5.247746823423499e-10,22.189506597445884,1.0588563975760463,-8.944841161528807,0.0,1.0,0.0 -935,13.0,3.1822744986017755,1.6,0.0,0.0,1.0181390463134623,-9.302874389433931,1.0,0.0,0.0 -935,14.0,4.208814659441058,2.5,0.0,0.0,1.0146042743812178,-9.245002640460395,1.0,0.0,0.0 -935,15.0,1.7964452814687444,1.8,0.0,0.0,1.0082748565874986,-9.249703555915495,1.0,0.0,0.0 -935,16.0,4.619430723776771,5.8,0.0,0.0,0.9946101973276936,-9.58359160364135,1.0,0.0,0.0 -935,17.0,1.642464257342852,0.9,0.0,0.0,0.9694498496792264,-10.033260481023085,1.0,0.0,0.0 -935,18.0,4.876065763986592,3.4,0.0,0.0,0.9717332115473458,-9.939173270989718,1.0,0.0,0.0 -935,19.0,1.1291941769232108,0.7,0.0,0.0,0.977032029466933,-9.759902645517172,1.0,0.0,0.0 -935,20.0,8.98222640734372,11.2,0.0,0.0,0.9833880615068584,-9.324068950495375,1.0,0.0,0.0 -935,21.0,0.0,0.0,0.0,0.0,0.9833344286684376,-9.344906802097729,1.0,0.0,0.0 -935,22.0,1.642464257342852,1.6,0.0,0.0,0.9980816685132152,-9.410763653006292,1.0,0.0,0.0 -935,23.0,4.465449699650878,6.7,0.0,0.0,0.9825781550859476,-9.50965852892421,1.0,0.0,0.0 -935,24.0,0.0,0.0,0.0,0.0,0.9789422277919644,-9.271120431179574,1.0,0.0,0.0 -935,25.0,1.7964452814687444,2.3,0.0,0.0,0.9651509549368618,-9.33026366879368,1.0,0.0,0.0 -935,26.0,0.0,0.0,0.0,0.0,0.9836118036250232,-9.054038475719272,1.0,0.0,0.0 -935,27.0,0.0,0.0,0.0,0.0,0.9682749313798196,-6.969370893842542,1.0,0.0,0.0 -935,28.0,1.231848193007139,0.9,0.0,0.0,0.9702761598071185,-9.641486542769172,1.0,0.0,0.0 -935,29.0,5.440662852448196,1.9,0.0,0.0,0.9630565561198744,-10.08637521209168,1.0,0.0,0.0 -936,0.0,0.0,0.0,149.49750171051505,6.538221182239567e-05,1.0,0.0,0.0,0.0,1.0 -936,1.0,10.955382143258245,12.7,7.100334449686006e-08,9.34570241130568,0.9806624469216508,-3.5932426685614653,0.0,1.0,0.0 -936,2.0,1.2116551679179626,1.2,0.0,0.0,0.9774839731647036,-3.9984188297197054,1.0,0.0,0.0 -936,3.0,3.836908031740215,1.6,0.0,0.0,0.9715167030615663,-4.9040849413858005,1.0,0.0,0.0 -936,4.0,47.557465340780034,19.0,9.831849143060848e-11,34.69801033862893,0.96048746215262,-10.99077633403484,0.0,1.0,0.0 -936,5.0,0.0,0.0,0.0,0.0,0.9715142438071314,-5.77603196838897,1.0,0.0,0.0 -936,6.0,11.510724095220644,10.9,0.0,0.0,0.9425248894942378,-11.544908917356253,1.0,0.0,0.0 -936,7.0,15.145689598974531,30.0,1.198032865961723e-10,30.031831629121257,0.9703120894011996,-6.173767647947335,0.0,1.0,0.0 -936,8.0,0.0,0.0,0.0,0.0,1.0134631287503146,-7.7637146242672435,1.0,0.0,0.0 -936,9.0,2.9281666558017427,2.0,0.0,0.0,0.999961601313808,-8.807810337738193,1.0,0.0,0.0 -936,10.0,0.0,0.0,1.5471165604804252e-10,23.71575376888526,1.059999714708588,-7.763714624250079,0.0,1.0,0.0 -936,11.0,5.654390783617158,7.5,0.0,0.0,1.014380101281897,-7.238002962184682,1.0,0.0,0.0 -936,12.0,0.0,0.0,2.551447481143384e-11,1.2692257103863795,1.0161288126386063,-7.238002962182693,0.0,1.0,0.0 -936,13.0,3.13010918378807,1.6,0.0,0.0,1.0064658403098556,-7.576993414440263,1.0,0.0,0.0 -936,14.0,4.139821823719704,2.5,0.0,0.0,0.9553629739722742,-10.074646932994304,1.0,0.0,0.0 -936,15.0,1.766997119880362,1.8,0.0,0.0,1.0013199188369628,-7.982684537894253,1.0,0.0,0.0 -936,16.0,4.54370687969236,5.8,0.0,0.0,0.9963123549803826,-8.637268500187922,1.0,0.0,0.0 -936,17.0,1.615540223890617,0.9,0.0,0.0,0.96199410200135,-9.952841740772866,1.0,0.0,0.0 -936,18.0,4.796135039675268,3.4,0.0,0.0,0.9682110258692794,-9.789309090814148,1.0,0.0,0.0 -936,19.0,1.110683903924799,0.7,0.0,0.0,0.9755773016461904,-9.57738313703289,1.0,0.0,0.0 -936,20.0,8.83498559940181,11.2,0.0,0.0,0.9879029004502524,-9.017178494110446,1.0,0.0,0.0 -936,21.0,0.0,0.0,0.0,0.0,0.987753960874484,-9.033632315304056,1.0,0.0,0.0 -936,22.0,1.615540223890617,1.6,0.0,0.0,0.9588475825144857,-9.819951255918966,1.0,0.0,0.0 -936,23.0,4.392249983702614,6.7,0.0,0.0,0.9702410115571682,-9.345619363057592,1.0,0.0,0.0 -936,24.0,0.0,0.0,0.0,0.0,0.9721788150964984,-8.895449935202302,1.0,0.0,0.0 -936,25.0,1.766997119880362,2.3,0.0,0.0,0.9583682144423848,-8.948544577461291,1.0,0.0,0.0 -936,26.0,0.0,0.0,0.0,0.0,0.9802654012439768,-8.545040133353357,1.0,0.0,0.0 -936,27.0,0.0,0.0,0.0,0.0,0.9685283096828552,-6.137281687743334,1.0,0.0,0.0 -936,28.0,1.2116551679179626,0.9,0.0,0.0,0.9670055947652476,-9.123681859742158,1.0,0.0,0.0 -936,29.0,5.351476991637668,1.9,0.0,0.0,0.9598404994576436,-9.56294722478236,1.0,0.0,0.0 -937,0.0,0.0,0.0,149.02633569678073,9.997776474248266,1.0,0.0,0.0,0.0,1.0 -937,1.0,10.955382143258245,12.7,0.0,0.0,0.9772026550508348,-3.348409102730693,0.0,1.0,0.0 -937,2.0,1.2116551679179626,1.2,0.0,0.0,0.9713917171975684,-4.41232359747303,1.0,0.0,0.0 -937,3.0,3.836908031740215,1.6,0.0,0.0,0.9640465158738676,-5.4198557951288775,1.0,0.0,0.0 -937,4.0,47.557465340780034,19.0,6.421684859794519e-09,38.703820139235006,0.9710356010342306,-8.372852850673727,0.0,1.0,0.0 -937,5.0,0.0,0.0,0.0,0.0,0.9591064047458336,-6.356162278498116,1.0,0.0,0.0 -937,6.0,11.510724095220644,10.9,0.0,0.0,0.9576827086656504,-7.421850439663082,1.0,0.0,0.0 -937,7.0,15.145689598974531,30.0,0.0,0.0,0.9466879880599308,-6.562220490858417,0.0,1.0,0.0 -937,8.0,0.0,0.0,0.0,0.0,1.014575913166617,-8.012232947122012,1.0,0.0,0.0 -937,9.0,2.9281666558017427,2.0,0.0,0.0,1.00880785171392,-8.863534067747569,1.0,0.0,0.0 -937,10.0,0.0,0.0,6.461300013819993e-09,23.147475922921423,1.0599974832011745,-8.012232946406005,0.0,1.0,0.0 -937,11.0,5.654390783617158,7.5,0.0,0.0,1.0286112925355533,-8.66227530808446,1.0,0.0,0.0 -937,12.0,0.0,0.0,8.170814297891635e-09,23.764252149476533,1.0599980970055365,-8.66227530748334,0.0,1.0,0.0 -937,13.0,3.13010918378807,1.6,0.0,0.0,1.0162495233117872,-9.064079016929927,1.0,0.0,0.0 -937,14.0,4.139821823719704,2.5,0.0,0.0,1.0113608109162584,-9.032493736916472,1.0,0.0,0.0 -937,15.0,1.766997119880362,1.8,0.0,0.0,1.014254162861367,-8.809568903323418,1.0,0.0,0.0 -937,16.0,4.54370687969236,5.8,0.0,0.0,1.0062090731615076,-8.937018079844194,1.0,0.0,0.0 -937,17.0,1.615540223890617,0.9,0.0,0.0,1.0016802982621122,-9.275411337976893,1.0,0.0,0.0 -937,18.0,4.796135039675268,3.4,0.0,0.0,0.998138408613878,-9.33356901798155,1.0,0.0,0.0 -937,19.0,1.110683903924799,0.7,0.0,0.0,1.0002194743484434,-9.2429968208888,1.0,0.0,0.0 -937,20.0,8.83498559940181,11.2,0.0,0.0,0.9986808465129516,-9.015716076809133,1.0,0.0,0.0 -937,21.0,0.0,0.0,0.0,0.0,0.9991125073617648,-9.015455991073866,1.0,0.0,0.0 -937,22.0,1.615540223890617,1.6,0.0,0.0,0.9993873649585624,-9.134315575241793,1.0,0.0,0.0 -937,23.0,4.392249983702614,6.7,0.0,0.0,0.9898929663070828,-9.147298636432064,1.0,0.0,0.0 -937,24.0,0.0,0.0,0.0,0.0,0.978360671446095,-8.828896698562003,1.0,0.0,0.0 -937,25.0,1.766997119880362,2.3,0.0,0.0,0.9646398663417728,-8.881312839004625,1.0,0.0,0.0 -937,26.0,0.0,0.0,0.0,0.0,0.97807384431372,-8.573745195411695,1.0,0.0,0.0 -937,27.0,0.0,0.0,0.0,0.0,0.9552390035299718,-6.646132564193359,1.0,0.0,0.0 -937,28.0,1.2116551679179626,0.9,0.0,0.0,0.9647826902812556,-9.155017757708164,1.0,0.0,0.0 -937,29.0,5.351476991637668,1.9,0.0,0.0,0.9576005966757234,-9.596322850342077,1.0,0.0,0.0 -938,0.0,0.0,0.0,148.70946375461324,0.0001575735147696,1.0,0.0,0.0,0.0,1.0 -938,1.0,10.955382143258245,12.7,1.7965849758845466e-07,9.226306415454438,0.9815249793484752,-3.404221865875272,0.0,1.0,0.0 -938,2.0,1.2116551679179626,1.2,0.0,0.0,0.9759330235322696,-4.465626876401895,1.0,0.0,0.0 -938,3.0,3.836908031740215,1.6,0.0,0.0,0.9696486176123144,-5.48449588941015,1.0,0.0,0.0 -938,4.0,47.557465340780034,19.0,-2.255958188551009e-10,23.43355545565608,0.9629059955233334,-8.1932165246204,0.0,1.0,0.0 -938,5.0,0.0,0.0,0.0,0.0,0.9695079446797176,-6.515270337784984,1.0,0.0,0.0 -938,6.0,11.510724095220644,10.9,0.0,0.0,0.9604952409086344,-7.44909547941032,1.0,0.0,0.0 -938,7.0,15.145689598974531,30.0,-2.1449859004484235e-10,30.18625869447429,0.9685390262277142,-6.90857767708332,0.0,1.0,0.0 -938,8.0,0.0,0.0,0.0,0.0,1.017061462909412,-8.183548247947856,1.0,0.0,0.0 -938,9.0,2.9281666558017427,2.0,0.0,0.0,1.0083377377882374,-9.050828511103347,1.0,0.0,0.0 -938,10.0,0.0,0.0,-1.3222131990601835e-10,21.85053615869977,1.0599403977137896,-8.18354824796247,0.0,1.0,0.0 -938,11.0,5.654390783617158,7.5,0.0,0.0,1.014565433643942,-8.616230061795317,1.0,0.0,0.0 -938,12.0,0.0,0.0,-2.89266452561987e-10,8.97191686577679,1.0267982973374812,-8.616230061817593,0.0,1.0,0.0 -938,13.0,3.13010918378807,1.6,0.0,0.0,1.0039950900155394,-9.038231144489783,1.0,0.0,0.0 -938,14.0,4.139821823719704,2.5,0.0,0.0,1.0008668352673022,-9.059563534895602,1.0,0.0,0.0 -938,15.0,1.766997119880362,1.8,0.0,0.0,1.005879585832197,-8.893210242744155,1.0,0.0,0.0 -938,16.0,4.54370687969236,5.8,0.0,0.0,1.0032996381411057,-9.082965722769,1.0,0.0,0.0 -938,17.0,1.615540223890617,0.9,0.0,0.0,0.994650017806946,-9.36431243388124,1.0,0.0,0.0 -938,18.0,4.796135039675268,3.4,0.0,0.0,0.9931766372182086,-9.457854538305444,1.0,0.0,0.0 -938,19.0,1.110683903924799,0.7,0.0,0.0,0.996367061158826,-9.385013684310412,1.0,0.0,0.0 -938,20.0,8.83498559940181,11.2,0.0,0.0,0.9980410144254456,-9.197624779825338,1.0,0.0,0.0 -938,21.0,0.0,0.0,0.0,0.0,0.9984215951626128,-9.195513301342904,1.0,0.0,0.0 -938,22.0,1.615540223890617,1.6,0.0,0.0,0.99279657506818,-9.2157681466321,1.0,0.0,0.0 -938,23.0,4.392249983702614,6.7,0.0,0.0,0.9885593801918348,-9.29837869310772,1.0,0.0,0.0 -938,24.0,0.0,0.0,0.0,0.0,0.9824130173128294,-9.04636241896549,1.0,0.0,0.0 -938,25.0,1.766997119880362,2.3,0.0,0.0,0.9687504352747208,-9.098340856184748,1.0,0.0,0.0 -938,26.0,0.0,0.0,0.0,0.0,0.9854598949038892,-8.827714145313493,1.0,0.0,0.0 -938,27.0,0.0,0.0,0.0,0.0,0.9675941372897164,-6.839527302441018,1.0,0.0,0.0 -938,28.0,1.2116551679179626,0.9,0.0,0.0,0.9722737865835124,-9.40019141314592,1.0,0.0,0.0 -938,29.0,5.351476991637668,1.9,0.0,0.0,0.9651486525091882,-9.83467894276499,1.0,0.0,0.0 -939,0.0,0.0,0.0,136.36987969655297,2.769859035467448e-05,1.0,0.0,0.0,0.0,1.0 -939,1.0,10.955382143258245,12.7,22.505355155436472,29.07953030870334,1.002471195719113,-18.938917796327445,0.0,1.0,0.0 -939,2.0,1.2116551679179626,1.2,0.0,0.0,0.9615328507770456,-13.49360003629866,1.0,0.0,0.0 -939,3.0,3.836908031740215,1.6,0.0,0.0,0.9565283799356624,-16.71498015864039,1.0,0.0,0.0 -939,4.0,47.557465340780034,19.0,-3.704528521307146e-11,39.78414457226462,0.9540217375302182,-26.87133339025207,0.0,1.0,0.0 -939,5.0,0.0,0.0,0.0,0.0,0.9637154416586012,-19.517417478776835,1.0,0.0,0.0 -939,6.0,11.510724095220644,10.9,0.0,0.0,0.9530023635567072,-22.761855600525347,1.0,0.0,0.0 -939,7.0,15.145689598974531,30.0,-2.1297303186763519e-10,39.99987415054175,0.9662233473941104,-19.973673269919523,0.0,1.0,0.0 -939,8.0,0.0,0.0,0.0,0.0,1.0091560361859298,-22.0887525549516,1.0,0.0,0.0 -939,9.0,2.9281666558017427,2.0,0.0,0.0,0.9975310395214816,-23.4317201831736,1.0,0.0,0.0 -939,10.0,0.0,0.0,-1.990352887886797e-10,23.99981465882723,1.0564100494512263,-22.088752554973848,0.0,1.0,0.0 -939,11.0,5.654390783617158,7.5,0.0,0.0,1.011912379138962,-20.057959551787587,1.0,0.0,0.0 -939,12.0,0.0,0.0,-3.727799455268576e-11,8.667899006387527,1.023765734066887,-20.05795955179048,0.0,1.0,0.0 -939,13.0,3.13010918378807,1.6,0.0,0.0,0.9857086636217218,-21.2592832545272,1.0,0.0,0.0 -939,14.0,4.139821823719704,2.5,0.0,0.0,0.9959718330267302,-21.100841412793837,1.0,0.0,0.0 -939,15.0,1.766997119880362,1.8,0.0,0.0,1.00669928283041,-20.15976343706228,1.0,0.0,0.0 -939,16.0,4.54370687969236,5.8,0.0,0.0,0.9910986786710988,-23.545322488770893,1.0,0.0,0.0 -939,17.0,1.615540223890617,0.9,0.0,0.0,0.9872309336410624,-22.228941736263533,1.0,0.0,0.0 -939,18.0,4.796135039675268,3.4,0.0,0.0,0.9844117536821232,-22.814745600815023,1.0,0.0,0.0 -939,19.0,1.110683903924799,0.7,0.0,0.0,0.9869391086086348,-22.999284670604123,1.0,0.0,0.0 -939,20.0,8.83498559940181,11.2,0.0,0.0,0.9860627806025726,-23.646279927252085,1.0,0.0,0.0 -939,21.0,0.0,0.0,0.0,0.0,0.9861082648371968,-23.664421766446218,1.0,0.0,0.0 -939,22.0,1.615540223890617,1.6,0.0,0.0,0.964421335207559,-24.153174324878464,1.0,0.0,0.0 -939,23.0,4.392249983702614,6.7,0.0,0.0,0.9711146915897656,-24.0155293869724,1.0,0.0,0.0 -939,24.0,0.0,0.0,0.0,0.0,0.963721460344186,-21.905671234216165,1.0,0.0,0.0 -939,25.0,1.766997119880362,2.3,0.0,0.0,0.9497860611927584,-21.959715785357684,1.0,0.0,0.0 -939,26.0,0.0,0.0,0.0,0.0,0.9708107107004308,-21.83312593977133,1.0,0.0,0.0 -939,27.0,0.0,0.0,0.0,0.0,0.9615917935414684,-19.8361453223078,1.0,0.0,0.0 -939,28.0,1.2116551679179626,0.9,0.0,0.0,0.9641667357556226,-22.020055440857444,1.0,0.0,0.0 -939,29.0,5.351476991637668,1.9,0.0,0.0,0.9400000322414483,-23.47642282862749,1.0,0.0,0.0 -940,0.0,0.0,0.0,149.4562525176593,0.0026702803820555,1.0,0.0,0.0,0.0,1.0 -940,1.0,10.955382143258245,12.7,2.7627315086677163e-06,7.664429984617591,0.9803712418769908,-3.5585654085442844,0.0,1.0,0.0 -940,2.0,1.2116551679179626,1.2,0.0,0.0,0.9784206546101591,-4.089289215645178,1.0,0.0,0.0 -940,3.0,3.836908031740215,1.6,0.0,0.0,0.9726778522998404,-5.016646915406634,1.0,0.0,0.0 -940,4.0,47.557465340780034,19.0,-6.522888007337131e-09,34.7093924063184,0.9602031996716236,-10.96077987449642,0.0,1.0,0.0 -940,5.0,0.0,0.0,0.0,0.0,0.9717083292737412,-5.536972518127777,1.0,0.0,0.0 -940,6.0,11.510724095220644,10.9,0.0,0.0,0.942234376786768,-11.51523114826453,1.0,0.0,0.0 -940,7.0,15.145689598974531,30.0,-5.737792733890097e-09,26.50628683565381,0.9694659309599744,-5.896280991630196,0.0,1.0,0.0 -940,8.0,0.0,0.0,0.0,0.0,1.0378950375122185,-10.51176288685223,1.0,0.0,0.0 -940,9.0,2.9281666558017427,2.0,0.0,0.0,1.0262066587666914,-10.511762886650324,1.0,0.0,0.0 -940,10.0,0.0,0.0,-3.412079234074968e-09,11.263311693971474,1.0599966990961067,-10.511762887221842,0.0,1.0,0.0 -940,11.0,5.654390783617158,7.5,0.0,0.0,1.036382155004267,-9.215859591071505,1.0,0.0,0.0 -940,12.0,0.0,0.0,-5.883420723293436e-09,17.87827782747031,1.0599950842806731,-9.215859591501095,0.0,1.0,0.0 -940,13.0,3.13010918378807,1.6,0.0,0.0,1.0245999850796372,-9.762758121313622,1.0,0.0,0.0 -940,14.0,4.139821823719704,2.5,0.0,0.0,1.0191546450519224,-9.892300040461986,1.0,0.0,0.0 -940,15.0,1.766997119880362,1.8,0.0,0.0,1.0254751701470883,-9.84947800357357,1.0,0.0,0.0 -940,16.0,4.54370687969236,5.8,0.0,0.0,1.0219677485730247,-10.38559536712586,1.0,0.0,0.0 -940,17.0,1.615540223890617,0.9,0.0,0.0,1.0128868737071233,-10.40705191723549,1.0,0.0,0.0 -940,18.0,4.796135039675268,3.4,0.0,0.0,1.0113594213114765,-10.629027309177296,1.0,0.0,0.0 -940,19.0,1.110683903924799,0.7,0.0,0.0,1.014447189335579,-10.628155546618192,1.0,0.0,0.0 -940,20.0,8.83498559940181,11.2,0.0,0.0,0.9943589115590776,-10.889864775302618,1.0,0.0,0.0 -940,21.0,0.0,0.0,0.0,0.0,0.9980480920238042,-10.844494507241642,1.0,0.0,0.0 -940,22.0,1.615540223890617,1.6,0.0,0.0,1.004637216536503,-10.354720122161272,1.0,0.0,0.0 -940,23.0,4.392249983702614,6.7,0.0,0.0,0.9918408973675596,-10.864431707860202,1.0,0.0,0.0 -940,24.0,0.0,0.0,0.0,0.0,0.9805624154424052,-10.95234994925627,1.0,0.0,0.0 -940,25.0,1.766997119880362,2.3,0.0,0.0,0.9668733067945924,-11.004527593330993,1.0,0.0,0.0 -940,26.0,0.0,0.0,0.0,0.0,0.9899247257371157,-7.32221204933743,1.0,0.0,0.0 -940,27.0,0.0,0.0,0.0,0.0,0.9700454332544528,-5.801686784300127,1.0,0.0,0.0 -940,28.0,1.2116551679179626,0.9,0.0,0.0,0.9768012948105014,-7.889469531931145,1.0,0.0,0.0 -940,29.0,5.351476991637668,1.9,0.0,0.0,0.9697101442317104,-8.319913118405402,1.0,0.0,0.0 -941,0.0,0.0,0.0,148.70946375461324,0.0001575735147696,1.0,0.0,0.0,0.0,1.0 -941,1.0,10.955382143258245,12.7,1.7965849758845466e-07,9.226306415454438,0.9815249793484752,-3.404221865875272,0.0,1.0,0.0 -941,2.0,1.2116551679179626,1.2,0.0,0.0,0.9759330235322696,-4.465626876401895,1.0,0.0,0.0 -941,3.0,3.836908031740215,1.6,0.0,0.0,0.9696486176123144,-5.48449588941015,1.0,0.0,0.0 -941,4.0,47.557465340780034,19.0,-2.255958188551009e-10,23.43355545565608,0.9629059955233334,-8.1932165246204,0.0,1.0,0.0 -941,5.0,0.0,0.0,0.0,0.0,0.9695079446797176,-6.515270337784984,1.0,0.0,0.0 -941,6.0,11.510724095220644,10.9,0.0,0.0,0.9604952409086344,-7.44909547941032,1.0,0.0,0.0 -941,7.0,15.145689598974531,30.0,-2.1449859004484235e-10,30.18625869447429,0.9685390262277142,-6.90857767708332,0.0,1.0,0.0 -941,8.0,0.0,0.0,0.0,0.0,1.017061462909412,-8.183548247947856,1.0,0.0,0.0 -941,9.0,2.9281666558017427,2.0,0.0,0.0,1.0083377377882374,-9.050828511103347,1.0,0.0,0.0 -941,10.0,0.0,0.0,-1.3222131990601835e-10,21.85053615869977,1.0599403977137896,-8.18354824796247,0.0,1.0,0.0 -941,11.0,5.654390783617158,7.5,0.0,0.0,1.014565433643942,-8.616230061795317,1.0,0.0,0.0 -941,12.0,0.0,0.0,-2.89266452561987e-10,8.97191686577679,1.0267982973374812,-8.616230061817593,0.0,1.0,0.0 -941,13.0,3.13010918378807,1.6,0.0,0.0,1.0039950900155394,-9.038231144489783,1.0,0.0,0.0 -941,14.0,4.139821823719704,2.5,0.0,0.0,1.0008668352673022,-9.059563534895602,1.0,0.0,0.0 -941,15.0,1.766997119880362,1.8,0.0,0.0,1.005879585832197,-8.893210242744155,1.0,0.0,0.0 -941,16.0,4.54370687969236,5.8,0.0,0.0,1.0032996381411057,-9.082965722769,1.0,0.0,0.0 -941,17.0,1.615540223890617,0.9,0.0,0.0,0.994650017806946,-9.36431243388124,1.0,0.0,0.0 -941,18.0,4.796135039675268,3.4,0.0,0.0,0.9931766372182086,-9.457854538305444,1.0,0.0,0.0 -941,19.0,1.110683903924799,0.7,0.0,0.0,0.996367061158826,-9.385013684310412,1.0,0.0,0.0 -941,20.0,8.83498559940181,11.2,0.0,0.0,0.9980410144254456,-9.197624779825338,1.0,0.0,0.0 -941,21.0,0.0,0.0,0.0,0.0,0.9984215951626128,-9.195513301342904,1.0,0.0,0.0 -941,22.0,1.615540223890617,1.6,0.0,0.0,0.99279657506818,-9.2157681466321,1.0,0.0,0.0 -941,23.0,4.392249983702614,6.7,0.0,0.0,0.9885593801918348,-9.29837869310772,1.0,0.0,0.0 -941,24.0,0.0,0.0,0.0,0.0,0.9824130173128294,-9.04636241896549,1.0,0.0,0.0 -941,25.0,1.766997119880362,2.3,0.0,0.0,0.9687504352747208,-9.098340856184748,1.0,0.0,0.0 -941,26.0,0.0,0.0,0.0,0.0,0.9854598949038892,-8.827714145313493,1.0,0.0,0.0 -941,27.0,0.0,0.0,0.0,0.0,0.9675941372897164,-6.839527302441018,1.0,0.0,0.0 -941,28.0,1.2116551679179626,0.9,0.0,0.0,0.9722737865835124,-9.40019141314592,1.0,0.0,0.0 -941,29.0,5.351476991637668,1.9,0.0,0.0,0.9651486525091882,-9.83467894276499,1.0,0.0,0.0 -942,0.0,0.0,0.0,152.3960737019861,0.0014369762468824,1.0,0.0,0.0,0.0,1.0 -942,1.0,10.955382143258245,12.7,3.2160554885623967e-06,5.342250074559239,0.9823834786946316,-3.1580051337765283,0.0,1.0,0.0 -942,2.0,1.2116551679179626,1.2,0.0,0.0,0.973400478639688,-5.541248038057622,1.0,0.0,0.0 -942,3.0,3.836908031740215,1.6,0.0,0.0,0.9667007275843162,-6.821557653361496,1.0,0.0,0.0 -942,4.0,47.557465340780034,19.0,-2.1250596597367364e-09,32.57665966844908,0.9400034082471171,-15.466243797295869,0.0,1.0,0.0 -942,5.0,0.0,0.0,0.0,0.0,0.9644031265466508,-8.348732117173675,1.0,0.0,0.0 -942,6.0,11.510724095220644,10.9,0.0,0.0,0.9476949555933938,-11.486559325258586,1.0,0.0,0.0 -942,7.0,15.145689598974531,30.0,-4.853025319394267e-09,31.723931996891167,0.9590568347759654,-11.277288429149715,0.0,1.0,0.0 -942,8.0,0.0,0.0,0.0,0.0,1.017267132946183,-10.452737355265064,1.0,0.0,0.0 -942,9.0,2.9281666558017427,2.0,0.0,0.0,1.0116858533567703,-11.537110016520906,1.0,0.0,0.0 -942,10.0,0.0,0.0,-6.604323330346234e-09,21.7763125485747,1.0599980874972252,-10.452737355994984,0.0,1.0,0.0 -942,11.0,5.654390783617158,7.5,0.0,0.0,1.0267627094688607,-10.608126003212258,1.0,0.0,0.0 -942,12.0,0.0,0.0,-3.0490739594733924e-09,17.84897413449658,1.0505489069723275,-10.608126003438995,0.0,1.0,0.0 -942,13.0,3.13010918378807,1.6,0.0,0.0,1.0152504739980988,-11.089284268202796,1.0,0.0,0.0 -942,14.0,4.139821823719704,2.5,0.0,0.0,1.0106489847746158,-11.15444197766716,1.0,0.0,0.0 -942,15.0,1.766997119880362,1.8,0.0,0.0,1.0139493241498592,-11.07574663590484,1.0,0.0,0.0 -942,16.0,4.54370687969236,5.8,0.0,0.0,1.008251234214079,-11.479143025344223,1.0,0.0,0.0 -942,17.0,1.615540223890617,0.9,0.0,0.0,1.0021924456661802,-11.590732321554045,1.0,0.0,0.0 -942,18.0,4.796135039675268,3.4,0.0,0.0,0.999384546245034,-11.764667956041071,1.0,0.0,0.0 -942,19.0,1.110683903924799,0.7,0.0,0.0,1.001844230857826,-11.735593540403986,1.0,0.0,0.0 -942,20.0,8.83498559940181,11.2,0.0,0.0,1.0014857882208563,-11.658658317670996,1.0,0.0,0.0 -942,21.0,0.0,0.0,0.0,0.0,1.0018872301356336,-11.648787644289571,1.0,0.0,0.0 -942,22.0,1.615540223890617,1.6,0.0,0.0,1.0001051544790842,-11.417306419948746,1.0,0.0,0.0 -942,23.0,4.392249983702614,6.7,0.0,0.0,0.9925511888088328,-11.64834377879744,1.0,0.0,0.0 -942,24.0,0.0,0.0,0.0,0.0,0.9826135845326776,-11.380373463845912,1.0,0.0,0.0 -942,25.0,1.766997119880362,2.3,0.0,0.0,0.968953871192543,-11.432330381829178,1.0,0.0,0.0 -942,26.0,0.0,0.0,0.0,0.0,0.9833004869028616,-11.155784331219646,1.0,0.0,0.0 -942,27.0,0.0,0.0,0.0,0.0,0.962003089955192,-9.249894115070452,1.0,0.0,0.0 -942,28.0,1.2116551679179626,0.9,0.0,0.0,0.9700838438133784,-11.730812152914524,1.0,0.0,0.0 -942,29.0,5.351476991637668,1.9,0.0,0.0,0.9629421532263318,-12.167276253100589,1.0,0.0,0.0 -943,0.0,0.0,0.0,148.89183947001885,6.089348441452192,1.0,0.0,0.0,0.0,1.0 -943,1.0,10.955382143258245,12.7,0.0,0.0,0.9785925035883114,-3.3638818792849805,0.0,1.0,0.0 -943,2.0,1.2116551679179626,1.2,0.0,0.0,0.97403792481945,-4.446630496484341,1.0,0.0,0.0 -943,3.0,3.836908031740215,1.6,0.0,0.0,0.967311175057123,-5.461571050811938,1.0,0.0,0.0 -943,4.0,47.557465340780034,19.0,-1.1756204145296172e-08,33.74677567529106,0.9697693786756874,-8.32012440919453,0.0,1.0,0.0 -943,5.0,0.0,0.0,0.0,0.0,0.9651502233354846,-6.44718018741752,1.0,0.0,0.0 -943,6.0,11.510724095220644,10.9,0.0,0.0,0.9607504468914077,-7.455417190356925,1.0,0.0,0.0 -943,7.0,15.145689598974531,30.0,-1.308748478230032e-08,39.99419997145579,0.9677604569305812,-6.914065536903885,0.0,1.0,0.0 -943,8.0,0.0,0.0,0.0,0.0,0.9857287934960764,-8.103913184287741,1.0,0.0,0.0 -943,9.0,2.9281666558017427,2.0,0.0,0.0,0.985463627890898,-8.981224605326462,1.0,0.0,0.0 -943,10.0,0.0,0.0,0.0,0.0,0.9857287934960764,-8.103913184287741,0.0,1.0,0.0 -943,11.0,5.654390783617158,7.5,0.0,0.0,1.0222643429873346,-8.663369931558448,1.0,0.0,0.0 -943,12.0,0.0,0.0,-1.9509697235580565e-08,18.32371968218462,1.0467713264206482,-8.663369933020915,0.0,1.0,0.0 -943,13.0,3.13010918378807,1.6,0.0,0.0,1.0081520481941018,-9.103527756856474,1.0,0.0,0.0 -943,14.0,4.139821823719704,2.5,0.0,0.0,1.0013944524768743,-9.066349147938364,1.0,0.0,0.0 -943,15.0,1.766997119880362,1.8,0.0,0.0,1.0171046104552235,-8.763111955401445,1.0,0.0,0.0 -943,16.0,4.54370687969236,5.8,0.0,0.0,0.9789514021244076,-9.0976449130345,1.0,0.0,0.0 -943,17.0,1.615540223890617,0.9,0.0,0.0,0.9868524208246484,-9.34576616637631,1.0,0.0,0.0 -943,18.0,4.796135039675268,3.4,0.0,0.0,0.9804659014377904,-9.423783483257075,1.0,0.0,0.0 -943,19.0,1.110683903924799,0.7,0.0,0.0,0.9811170557656896,-9.338919593664269,1.0,0.0,0.0 -943,20.0,8.83498559940181,11.2,0.0,0.0,0.9766316220336732,-9.133672438019376,1.0,0.0,0.0 -943,21.0,0.0,0.0,0.0,0.0,0.9775588163439234,-9.131823020555702,1.0,0.0,0.0 -943,22.0,1.615540223890617,1.6,0.0,0.0,0.987113618909916,-9.214723464596869,1.0,0.0,0.0 -943,23.0,4.392249983702614,6.7,0.0,0.0,0.9746313396986604,-9.289547831293085,1.0,0.0,0.0 -943,24.0,0.0,0.0,0.0,0.0,0.97118045657164,-9.04624541095007,1.0,0.0,0.0 -943,25.0,1.766997119880362,2.3,0.0,0.0,0.9573552420984616,-9.099450868212166,1.0,0.0,0.0 -943,26.0,0.0,0.0,0.0,0.0,0.975987164908748,-8.828581886481624,1.0,0.0,0.0 -943,27.0,0.0,0.0,0.0,0.0,0.961187927418999,-6.737650265139351,1.0,0.0,0.0 -943,28.0,1.2116551679179626,0.9,0.0,0.0,0.9626660217304148,-9.412376179066271,1.0,0.0,0.0 -943,29.0,5.351476991637668,1.9,0.0,0.0,0.9554676660014249,-9.855636782865776,1.0,0.0,0.0 -944,0.0,0.0,0.0,149.8017738187376,0.0030920458712557,1.0,0.0,0.0,0.0,1.0 -944,1.0,10.955382143258245,12.7,2.829385800264599e-06,12.666031811150212,0.9799997426480648,-3.768034242235692,0.0,1.0,0.0 -944,2.0,1.2116551679179626,1.2,0.0,0.0,0.9787656556548712,-3.527899397176397,1.0,0.0,0.0 -944,3.0,3.836908031740215,1.6,0.0,0.0,0.973072228513784,-4.3200036460535145,1.0,0.0,0.0 -944,4.0,47.557465340780034,19.0,-2.802403326283216e-09,25.720097942843296,0.9595492405540164,-9.513629514825505,0.0,1.0,0.0 -944,5.0,0.0,0.0,0.0,0.0,0.9590928786188117,-8.686014177717185,1.0,0.0,0.0 -944,6.0,11.510724095220644,10.9,0.0,0.0,0.9527530642576264,-9.272564657169497,1.0,0.0,0.0 -944,7.0,15.145689598974531,30.0,-8.485727440546414e-10,29.922326419508664,0.9487107603566504,-11.504969760532155,0.0,1.0,0.0 -944,8.0,0.0,0.0,0.0,0.0,1.033414159752191,-11.674642714387996,1.0,0.0,0.0 -944,9.0,2.9281666558017427,2.0,0.0,0.0,1.0193590354883697,-11.674642714431844,1.0,0.0,0.0 -944,10.0,0.0,0.0,7.329272680881941e-10,13.543915375663357,1.0599911219530385,-11.674642714308256,0.0,1.0,0.0 -944,11.0,5.654390783617158,7.5,0.0,0.0,1.0371608952064688,-9.409898388252468,1.0,0.0,0.0 -944,12.0,0.0,0.0,-1.514072794825837e-09,17.291032204026248,1.0599981474635247,-9.409898388362937,0.0,1.0,0.0 -944,13.0,3.13010918378807,1.6,0.0,0.0,1.0257895935402113,-10.05241747006771,1.0,0.0,0.0 -944,14.0,4.139821823719704,2.5,0.0,0.0,1.0200660174630196,-10.286381459444351,1.0,0.0,0.0 -944,15.0,1.766997119880362,1.8,0.0,0.0,1.0221802250354497,-10.439130700303826,1.0,0.0,0.0 -944,16.0,4.54370687969236,5.8,0.0,0.0,1.016387152203371,-11.373976559389378,1.0,0.0,0.0 -944,17.0,1.615540223890617,0.9,0.0,0.0,1.0109278215274964,-11.068982730371436,1.0,0.0,0.0 -944,18.0,4.796135039675268,3.4,0.0,0.0,1.00774387133458,-11.452129558989611,1.0,0.0,0.0 -944,19.0,1.110683903924799,0.7,0.0,0.0,1.009974391416566,-11.535478547615194,1.0,0.0,0.0 -944,20.0,8.83498559940181,11.2,0.0,0.0,1.0092477050055777,-11.762039082122842,1.0,0.0,0.0 -944,21.0,0.0,0.0,0.0,0.0,1.0096530481764618,-11.741939577083317,1.0,0.0,0.0 -944,22.0,1.615540223890617,1.6,0.0,0.0,1.008951830708934,-10.896718952955055,1.0,0.0,0.0 -944,23.0,4.392249983702614,6.7,0.0,0.0,1.000752895167461,-11.602738884372387,1.0,0.0,0.0 -944,24.0,0.0,0.0,0.0,0.0,0.9895801468673472,-11.6890683802541,1.0,0.0,0.0 -944,25.0,1.766997119880362,2.3,0.0,0.0,0.9760193225659956,-11.740286054837007,1.0,0.0,0.0 -944,26.0,0.0,0.0,0.0,0.0,0.9747204836140654,-11.084101102504729,1.0,0.0,0.0 -944,27.0,0.0,0.0,0.0,0.0,0.9555432720937164,-9.515758817612204,1.0,0.0,0.0 -944,28.0,1.2116551679179626,0.9,0.0,0.0,0.9613810682228664,-11.669434219410476,1.0,0.0,0.0 -944,29.0,5.351476991637668,1.9,0.0,0.0,0.9541728038744748,-12.11388830607219,1.0,0.0,0.0 -945,0.0,0.0,0.0,139.1824674095321,3.75538183661206e-05,1.0,0.0,0.0,0.0,1.0 -945,1.0,10.955382143258245,12.7,15.05294252312282,7.283339932344184,0.9734877096942076,-4.611819255543335,0.0,1.0,0.0 -945,2.0,1.2116551679179626,1.2,0.0,0.0,1.0008421445428932,-0.1364146758941025,1.0,0.0,0.0 -945,3.0,3.836908031740215,1.6,0.0,0.0,0.9400027852103072,-9.9727955338807,1.0,0.0,0.0 -945,4.0,47.557465340780034,19.0,3.935164076511765e-10,39.98639710876998,0.966931404252914,-15.527600244212133,0.0,1.0,0.0 -945,5.0,0.0,0.0,0.0,0.0,0.956567661729893,-19.641124267038634,1.0,0.0,0.0 -945,6.0,11.510724095220644,10.9,0.0,0.0,0.9524394527684624,-18.189761187350413,1.0,0.0,0.0 -945,7.0,15.145689598974531,30.0,-6.417068989562632e-10,26.83416199889332,0.9543764859803208,-20.01343963058119,0.0,1.0,0.0 -945,8.0,0.0,0.0,0.0,0.0,1.003479600114049,-19.80278015769444,1.0,0.0,0.0 -945,9.0,2.9281666558017427,2.0,0.0,0.0,0.99179379722951,-19.887089541655783,1.0,0.0,0.0 -945,10.0,0.0,0.0,-1.940612638350912e-09,23.999030601146483,1.0509763707728204,-19.802780157913727,0.0,1.0,0.0 -945,11.0,5.654390783617158,7.5,0.0,0.0,1.0158134510655934,-16.46982465089552,1.0,0.0,0.0 -945,12.0,0.0,0.0,1.253898858239379e-09,23.999206275916237,1.0478772160484642,-16.469824650801034,0.0,1.0,0.0 -945,13.0,3.13010918378807,1.6,0.0,0.0,1.0036859995717533,-17.264572339051835,1.0,0.0,0.0 -945,14.0,4.139821823719704,2.5,0.0,0.0,0.996512590605364,-17.62153599318662,1.0,0.0,0.0 -945,15.0,1.766997119880362,1.8,0.0,0.0,0.9970673064266604,-17.975536000844894,1.0,0.0,0.0 -945,16.0,4.54370687969236,5.8,0.0,0.0,0.9896438080601572,-19.381624084392907,1.0,0.0,0.0 -945,17.0,1.615540223890617,0.9,0.0,0.0,0.9855568684969984,-18.72352423292951,1.0,0.0,0.0 -945,18.0,4.796135039675268,3.4,0.0,0.0,0.9814230198800188,-19.295414219864977,1.0,0.0,0.0 -945,19.0,1.110683903924799,0.7,0.0,0.0,0.9832679787723688,-19.472205259570387,1.0,0.0,0.0 -945,20.0,8.83498559940181,11.2,0.0,0.0,0.9815133936278916,-19.927650389332342,1.0,0.0,0.0 -945,21.0,0.0,0.0,0.0,0.0,0.9819734136355784,-19.889792350301576,1.0,0.0,0.0 -945,22.0,1.615540223890617,1.6,0.0,0.0,0.9838059256098178,-18.480816470699647,1.0,0.0,0.0 -945,23.0,4.392249983702614,6.7,0.0,0.0,0.9738316357910494,-19.523589010022093,1.0,0.0,0.0 -945,24.0,0.0,0.0,0.0,0.0,0.9623330883382496,-19.614855626573675,1.0,0.0,0.0 -945,25.0,1.766997119880362,2.3,0.0,0.0,0.9483769831566484,-19.6690585766679,1.0,0.0,0.0 -945,26.0,0.0,0.0,0.0,0.0,0.9739956140706172,-21.484591323738197,1.0,0.0,0.0 -945,27.0,0.0,0.0,0.0,0.0,0.9548520812735156,-19.91391326867924,1.0,0.0,0.0 -945,28.0,1.2116551679179626,0.9,0.0,0.0,0.9606457190458264,-22.07080779828666,1.0,0.0,0.0 -945,29.0,5.351476991637668,1.9,0.0,0.0,0.953431771749224,-22.515947062501404,1.0,0.0,0.0 -946,0.0,0.0,0.0,148.8412103563465,0.0017432301173236,1.0,0.0,0.0,0.0,1.0 -946,1.0,10.955382143258245,12.7,2.3618221839494143e-06,6.457367754882746,0.9810182601015622,-3.3922384483900627,0.0,1.0,0.0 -946,2.0,1.2116551679179626,1.2,0.0,0.0,0.9773586831931472,-4.50629800995429,1.0,0.0,0.0 -946,3.0,3.836908031740215,1.6,0.0,0.0,0.9714101159526062,-5.534470699828737,1.0,0.0,0.0 -946,4.0,47.557465340780034,19.0,2.737080151388096e-09,22.90361689546485,0.9623991279529794,-8.172134342708715,0.0,1.0,0.0 -946,5.0,0.0,0.0,0.0,0.0,0.9701114917034046,-6.5038342061586105,1.0,0.0,0.0 -946,6.0,11.510724095220644,10.9,0.0,0.0,0.960645075596414,-7.434197639744208,1.0,0.0,0.0 -946,7.0,15.145689598974531,30.0,2.4505496543439037e-09,25.78321975699976,0.9675905548956176,-6.859739171251429,0.0,1.0,0.0 -946,8.0,0.0,0.0,0.0,0.0,1.0196527328027,-8.186963113221346,1.0,0.0,0.0 -946,9.0,2.9281666558017427,2.0,0.0,0.0,1.0133192715329171,-9.058202484497,1.0,0.0,0.0 -946,10.0,0.0,0.0,1.098080456729893e-09,20.559953386743064,1.0599969098898478,-8.186963113100262,0.0,1.0,0.0 -946,11.0,5.654390783617158,7.5,0.0,0.0,1.0298545772444383,-8.86890787067055,1.0,0.0,0.0 -946,12.0,0.0,0.0,2.75587236023136e-09,18.042938447437677,1.0538245203781846,-8.868907870466863,0.0,1.0,0.0 -946,13.0,3.13010918378807,1.6,0.0,0.0,1.01648333063447,-9.35456578438946,1.0,0.0,0.0 -946,14.0,4.139821823719704,2.5,0.0,0.0,1.0100223559046015,-9.38404077637115,1.0,0.0,0.0 -946,15.0,1.766997119880362,1.8,0.0,0.0,1.0247332792436472,-8.967177713159403,1.0,0.0,0.0 -946,16.0,4.54370687969236,5.8,0.0,0.0,1.0069884702747922,-9.168270121468074,1.0,0.0,0.0 -946,17.0,1.615540223890617,0.9,0.0,0.0,0.9934702921138112,-9.920558878863693,1.0,0.0,0.0 -946,18.0,4.796135039675268,3.4,0.0,0.0,0.985897704832328,-10.15595309325836,1.0,0.0,0.0 -946,19.0,1.110683903924799,0.7,0.0,0.0,1.0108421734670576,-9.151399474416266,1.0,0.0,0.0 -946,20.0,8.83498559940181,11.2,0.0,0.0,1.002961162233524,-9.25302061655236,1.0,0.0,0.0 -946,21.0,0.0,0.0,0.0,0.0,1.0032990014840042,-9.266787807631085,1.0,0.0,0.0 -946,22.0,1.615540223890617,1.6,0.0,0.0,0.9997591759928428,-9.520055399839336,1.0,0.0,0.0 -946,23.0,4.392249983702614,6.7,0.0,0.0,0.9925489046326036,-9.578609356815896,1.0,0.0,0.0 -946,24.0,0.0,0.0,0.0,0.0,0.9812788976844828,-9.666399772167331,1.0,0.0,0.0 -946,25.0,1.766997119880362,2.3,0.0,0.0,0.9676000714990968,-9.718500153535796,1.0,0.0,0.0 -946,26.0,0.0,0.0,0.0,0.0,0.9881765097687172,-8.294310733874852,1.0,0.0,0.0 -946,27.0,0.0,0.0,0.0,0.0,0.9683775305922498,-6.768399420552434,1.0,0.0,0.0 -946,28.0,1.2116551679179626,0.9,0.0,0.0,0.9750286103120456,-8.863603458230335,1.0,0.0,0.0 -946,29.0,5.351476991637668,1.9,0.0,0.0,0.967924193183882,-9.295623628265744,1.0,0.0,0.0 -947,0.0,0.0,0.0,150.1649860964609,0.0017744035426758,1.0,0.0,0.0,0.0,1.0 -947,1.0,10.955382143258245,12.7,2.9695728586389317e-06,9.769043714779308,0.98185643474927,-3.85096051677557,0.0,1.0,0.0 -947,2.0,1.2116551679179626,1.2,0.0,0.0,0.973205275040883,-3.343450903299962,1.0,0.0,0.0 -947,3.0,3.836908031740215,1.6,0.0,0.0,0.9662161246655854,-4.091188809898042,1.0,0.0,0.0 -947,4.0,47.557465340780034,19.0,1.1334913053744623e-09,34.6677502022944,0.9616873935535764,-11.229563001428795,0.0,1.0,0.0 -947,5.0,0.0,0.0,0.0,0.0,0.9722192935068616,-8.230504621826704,1.0,0.0,0.0 -947,6.0,11.510724095220644,10.9,0.0,0.0,0.9437511638519812,-11.782353527321648,1.0,0.0,0.0 -947,7.0,15.145689598974531,30.0,2.5056996336871852e-09,29.30914254644125,0.9590937114022277,-10.971164826876915,0.0,1.0,0.0 -947,8.0,0.0,0.0,0.0,0.0,1.0114767797046256,-9.390527720980574,1.0,0.0,0.0 -947,9.0,2.9281666558017427,2.0,0.0,0.0,1.0062321629676063,-9.99656815519499,1.0,0.0,0.0 -947,10.0,0.0,0.0,2.076970662434589e-09,13.795334056816904,1.039091569095288,-9.390527720745066,0.0,1.0,0.0 -947,11.0,5.654390783617158,7.5,0.0,0.0,1.0285181943095565,-8.29156144386912,1.0,0.0,0.0 -947,12.0,0.0,0.0,2.296265008013742e-09,18.09605783784168,1.052586971204995,-8.291561443698983,0.0,1.0,0.0 -947,13.0,3.13010918378807,1.6,0.0,0.0,1.017775510516792,-8.781758535461364,1.0,0.0,0.0 -947,14.0,4.139821823719704,2.5,0.0,0.0,1.013828509939855,-8.874075423477215,1.0,0.0,0.0 -947,15.0,1.766997119880362,1.8,0.0,0.0,1.0120019763927557,-9.073013665153011,1.0,0.0,0.0 -947,16.0,4.54370687969236,5.8,0.0,0.0,1.0040265497428884,-9.798502118926589,1.0,0.0,0.0 -947,17.0,1.615540223890617,0.9,0.0,0.0,1.0022282217182188,-9.565944009271892,1.0,0.0,0.0 -947,18.0,4.796135039675268,3.4,0.0,0.0,0.9975893730135648,-9.894513374892778,1.0,0.0,0.0 -947,19.0,1.110683903924799,0.7,0.0,0.0,0.9990907693939508,-9.946722421880482,1.0,0.0,0.0 -947,20.0,8.83498559940181,11.2,0.0,0.0,0.990399810937512,-10.316353446540724,1.0,0.0,0.0 -947,21.0,0.0,0.0,0.0,0.0,0.9890297955588732,-10.367563776838251,1.0,0.0,0.0 -947,22.0,1.615540223890617,1.6,0.0,0.0,1.009022977562316,-8.967240185655076,1.0,0.0,0.0 -947,23.0,4.392249983702614,6.7,0.0,0.0,0.9772222055826614,-10.710701181752658,1.0,0.0,0.0 -947,24.0,0.0,0.0,0.0,0.0,0.9739783158201446,-10.81812366501607,1.0,0.0,0.0 -947,25.0,1.766997119880362,2.3,0.0,0.0,0.9601939769196512,-10.87101944065097,1.0,0.0,0.0 -947,26.0,0.0,0.0,0.0,0.0,0.9790206016179668,-10.817930097717309,1.0,0.0,0.0 -947,27.0,0.0,0.0,0.0,0.0,0.9670168982169342,-9.04929190061892,1.0,0.0,0.0 -947,28.0,1.2116551679179626,0.9,0.0,0.0,0.9657430084606696,-11.398063925952584,1.0,0.0,0.0 -947,29.0,5.351476991637668,1.9,0.0,0.0,0.95856826833525,-11.838486091281846,1.0,0.0,0.0 -948,0.0,0.0,0.0,148.70946375461324,0.0001575735147696,1.0,0.0,0.0,0.0,1.0 -948,1.0,10.955382143258245,12.7,1.7965849758845466e-07,9.226306415454438,0.9815249793484752,-3.404221865875272,0.0,1.0,0.0 -948,2.0,1.2116551679179626,1.2,0.0,0.0,0.9759330235322696,-4.465626876401895,1.0,0.0,0.0 -948,3.0,3.836908031740215,1.6,0.0,0.0,0.9696486176123144,-5.48449588941015,1.0,0.0,0.0 -948,4.0,47.557465340780034,19.0,-2.255958188551009e-10,23.43355545565608,0.9629059955233334,-8.1932165246204,0.0,1.0,0.0 -948,5.0,0.0,0.0,0.0,0.0,0.9695079446797176,-6.515270337784984,1.0,0.0,0.0 -948,6.0,11.510724095220644,10.9,0.0,0.0,0.9604952409086344,-7.44909547941032,1.0,0.0,0.0 -948,7.0,15.145689598974531,30.0,-2.1449859004484235e-10,30.18625869447429,0.9685390262277142,-6.90857767708332,0.0,1.0,0.0 -948,8.0,0.0,0.0,0.0,0.0,1.017061462909412,-8.183548247947856,1.0,0.0,0.0 -948,9.0,2.9281666558017427,2.0,0.0,0.0,1.0083377377882374,-9.050828511103347,1.0,0.0,0.0 -948,10.0,0.0,0.0,-1.3222131990601835e-10,21.85053615869977,1.0599403977137896,-8.18354824796247,0.0,1.0,0.0 -948,11.0,5.654390783617158,7.5,0.0,0.0,1.014565433643942,-8.616230061795317,1.0,0.0,0.0 -948,12.0,0.0,0.0,-2.89266452561987e-10,8.97191686577679,1.0267982973374812,-8.616230061817593,0.0,1.0,0.0 -948,13.0,3.13010918378807,1.6,0.0,0.0,1.0039950900155394,-9.038231144489783,1.0,0.0,0.0 -948,14.0,4.139821823719704,2.5,0.0,0.0,1.0008668352673022,-9.059563534895602,1.0,0.0,0.0 -948,15.0,1.766997119880362,1.8,0.0,0.0,1.005879585832197,-8.893210242744155,1.0,0.0,0.0 -948,16.0,4.54370687969236,5.8,0.0,0.0,1.0032996381411057,-9.082965722769,1.0,0.0,0.0 -948,17.0,1.615540223890617,0.9,0.0,0.0,0.994650017806946,-9.36431243388124,1.0,0.0,0.0 -948,18.0,4.796135039675268,3.4,0.0,0.0,0.9931766372182086,-9.457854538305444,1.0,0.0,0.0 -948,19.0,1.110683903924799,0.7,0.0,0.0,0.996367061158826,-9.385013684310412,1.0,0.0,0.0 -948,20.0,8.83498559940181,11.2,0.0,0.0,0.9980410144254456,-9.197624779825338,1.0,0.0,0.0 -948,21.0,0.0,0.0,0.0,0.0,0.9984215951626128,-9.195513301342904,1.0,0.0,0.0 -948,22.0,1.615540223890617,1.6,0.0,0.0,0.99279657506818,-9.2157681466321,1.0,0.0,0.0 -948,23.0,4.392249983702614,6.7,0.0,0.0,0.9885593801918348,-9.29837869310772,1.0,0.0,0.0 -948,24.0,0.0,0.0,0.0,0.0,0.9824130173128294,-9.04636241896549,1.0,0.0,0.0 -948,25.0,1.766997119880362,2.3,0.0,0.0,0.9687504352747208,-9.098340856184748,1.0,0.0,0.0 -948,26.0,0.0,0.0,0.0,0.0,0.9854598949038892,-8.827714145313493,1.0,0.0,0.0 -948,27.0,0.0,0.0,0.0,0.0,0.9675941372897164,-6.839527302441018,1.0,0.0,0.0 -948,28.0,1.2116551679179626,0.9,0.0,0.0,0.9722737865835124,-9.40019141314592,1.0,0.0,0.0 -948,29.0,5.351476991637668,1.9,0.0,0.0,0.9651486525091882,-9.83467894276499,1.0,0.0,0.0 -949,0.0,0.0,0.0,148.70946375461324,0.0001575735147696,1.0,0.0,0.0,0.0,1.0 -949,1.0,10.955382143258245,12.7,1.7965849758845466e-07,9.226306415454438,0.9815249793484752,-3.404221865875272,0.0,1.0,0.0 -949,2.0,1.2116551679179626,1.2,0.0,0.0,0.9759330235322696,-4.465626876401895,1.0,0.0,0.0 -949,3.0,3.836908031740215,1.6,0.0,0.0,0.9696486176123144,-5.48449588941015,1.0,0.0,0.0 -949,4.0,47.557465340780034,19.0,-2.255958188551009e-10,23.43355545565608,0.9629059955233334,-8.1932165246204,0.0,1.0,0.0 -949,5.0,0.0,0.0,0.0,0.0,0.9695079446797176,-6.515270337784984,1.0,0.0,0.0 -949,6.0,11.510724095220644,10.9,0.0,0.0,0.9604952409086344,-7.44909547941032,1.0,0.0,0.0 -949,7.0,15.145689598974531,30.0,-2.1449859004484235e-10,30.18625869447429,0.9685390262277142,-6.90857767708332,0.0,1.0,0.0 -949,8.0,0.0,0.0,0.0,0.0,1.017061462909412,-8.183548247947856,1.0,0.0,0.0 -949,9.0,2.9281666558017427,2.0,0.0,0.0,1.0083377377882374,-9.050828511103347,1.0,0.0,0.0 -949,10.0,0.0,0.0,-1.3222131990601835e-10,21.85053615869977,1.0599403977137896,-8.18354824796247,0.0,1.0,0.0 -949,11.0,5.654390783617158,7.5,0.0,0.0,1.014565433643942,-8.616230061795317,1.0,0.0,0.0 -949,12.0,0.0,0.0,-2.89266452561987e-10,8.97191686577679,1.0267982973374812,-8.616230061817593,0.0,1.0,0.0 -949,13.0,3.13010918378807,1.6,0.0,0.0,1.0039950900155394,-9.038231144489783,1.0,0.0,0.0 -949,14.0,4.139821823719704,2.5,0.0,0.0,1.0008668352673022,-9.059563534895602,1.0,0.0,0.0 -949,15.0,1.766997119880362,1.8,0.0,0.0,1.005879585832197,-8.893210242744155,1.0,0.0,0.0 -949,16.0,4.54370687969236,5.8,0.0,0.0,1.0032996381411057,-9.082965722769,1.0,0.0,0.0 -949,17.0,1.615540223890617,0.9,0.0,0.0,0.994650017806946,-9.36431243388124,1.0,0.0,0.0 -949,18.0,4.796135039675268,3.4,0.0,0.0,0.9931766372182086,-9.457854538305444,1.0,0.0,0.0 -949,19.0,1.110683903924799,0.7,0.0,0.0,0.996367061158826,-9.385013684310412,1.0,0.0,0.0 -949,20.0,8.83498559940181,11.2,0.0,0.0,0.9980410144254456,-9.197624779825338,1.0,0.0,0.0 -949,21.0,0.0,0.0,0.0,0.0,0.9984215951626128,-9.195513301342904,1.0,0.0,0.0 -949,22.0,1.615540223890617,1.6,0.0,0.0,0.99279657506818,-9.2157681466321,1.0,0.0,0.0 -949,23.0,4.392249983702614,6.7,0.0,0.0,0.9885593801918348,-9.29837869310772,1.0,0.0,0.0 -949,24.0,0.0,0.0,0.0,0.0,0.9824130173128294,-9.04636241896549,1.0,0.0,0.0 -949,25.0,1.766997119880362,2.3,0.0,0.0,0.9687504352747208,-9.098340856184748,1.0,0.0,0.0 -949,26.0,0.0,0.0,0.0,0.0,0.9854598949038892,-8.827714145313493,1.0,0.0,0.0 -949,27.0,0.0,0.0,0.0,0.0,0.9675941372897164,-6.839527302441018,1.0,0.0,0.0 -949,28.0,1.2116551679179626,0.9,0.0,0.0,0.9722737865835124,-9.40019141314592,1.0,0.0,0.0 -949,29.0,5.351476991637668,1.9,0.0,0.0,0.9651486525091882,-9.83467894276499,1.0,0.0,0.0 -950,0.0,0.0,0.0,148.788178687906,0.0016650576712962,1.0,0.0,0.0,0.0,1.0 -950,1.0,10.955382143258245,12.7,1.6105570035668426e-06,9.135149272859366,0.9814964692635256,-3.4063759357765293,0.0,1.0,0.0 -950,2.0,1.2116551679179626,1.2,0.0,0.0,0.9759777949886304,-4.4669197974527775,1.0,0.0,0.0 -950,3.0,3.836908031740215,1.6,0.0,0.0,0.9697039353058784,-5.486085290033481,1.0,0.0,0.0 -950,4.0,47.557465340780034,19.0,1.8237007720760223e-09,23.480876053243705,0.9629172500417148,-8.199568733352232,0.0,1.0,0.0 -950,5.0,0.0,0.0,0.0,0.0,0.9694593111735472,-6.524039285539052,1.0,0.0,0.0 -950,6.0,11.510724095220644,10.9,0.0,0.0,0.9604705259729932,-7.4568637747205235,1.0,0.0,0.0 -950,7.0,15.145689598974531,30.0,1.6559361520828331e-09,30.44207245491289,0.9685721396677208,-6.919470992925104,0.0,1.0,0.0 -950,8.0,0.0,0.0,0.0,0.0,1.0166901122443457,-8.214430363904063,1.0,0.0,0.0 -950,9.0,2.9281666558017427,2.0,0.0,0.0,1.007628486430929,-9.093778568586425,1.0,0.0,0.0 -950,10.0,0.0,0.0,8.628672512151947e-10,22.02021138771561,1.059903517003976,-8.214430363808631,0.0,1.0,0.0 -950,11.0,5.654390783617158,7.5,0.0,0.0,1.0151286368276116,-8.568656093938962,1.0,0.0,0.0 -950,12.0,0.0,0.0,2.3369266304173074e-09,8.76410649747396,1.0270749404643418,-8.56865609375917,0.0,1.0,0.0 -950,13.0,3.13010918378807,1.6,0.0,0.0,0.9868100053381492,-9.348926812902508,1.0,0.0,0.0 -950,14.0,4.139821823719704,2.5,0.0,0.0,0.9970617120040038,-9.190834801046757,1.0,0.0,0.0 -950,15.0,1.766997119880362,1.8,0.0,0.0,1.0058310785220477,-8.881711420979418,1.0,0.0,0.0 -950,16.0,4.54370687969236,5.8,0.0,0.0,1.0028142462344212,-9.10982071546382,1.0,0.0,0.0 -950,17.0,1.615540223890617,0.9,0.0,0.0,0.9919197022236496,-9.466619125785446,1.0,0.0,0.0 -950,18.0,4.796135039675268,3.4,0.0,0.0,0.9910876888648128,-9.542273395981333,1.0,0.0,0.0 -950,19.0,1.110683903924799,0.7,0.0,0.0,0.9946254756712244,-9.459587512436036,1.0,0.0,0.0 -950,20.0,8.83498559940181,11.2,0.0,0.0,0.9971795575684574,-9.24531631979854,1.0,0.0,0.0 -950,21.0,0.0,0.0,0.0,0.0,0.997514361342592,-9.244594390588242,1.0,0.0,0.0 -950,22.0,1.615540223890617,1.6,0.0,0.0,0.989946396546651,-9.319044079838982,1.0,0.0,0.0 -950,23.0,4.392249983702614,6.7,0.0,0.0,0.98699553378915,-9.362529170206832,1.0,0.0,0.0 -950,24.0,0.0,0.0,0.0,0.0,0.9814515712291744,-9.09759548169006,1.0,0.0,0.0 -950,25.0,1.766997119880362,2.3,0.0,0.0,0.9677752207815452,-9.149677267281316,1.0,0.0,0.0 -950,26.0,0.0,0.0,0.0,0.0,0.9848754685400828,-8.870142899732496,1.0,0.0,0.0 -950,27.0,0.0,0.0,0.0,0.0,0.9674872170834632,-6.851343644335345,1.0,0.0,0.0 -950,28.0,1.2116551679179626,0.9,0.0,0.0,0.9716811105265316,-9.443308768766324,1.0,0.0,0.0 -950,29.0,5.351476991637668,1.9,0.0,0.0,0.964551503358968,-9.878329898077208,1.0,0.0,0.0 -951,0.0,0.0,0.0,61.22198806892345,4.393997876661615e-06,1.0,0.0,0.0,0.0,1.0 -951,1.0,10.955382143258245,12.7,86.69092438244267,-6.999639718739147,0.992399040838191,-0.9728782347577368,0.0,1.0,0.0 -951,2.0,1.2116551679179626,1.2,0.0,0.0,0.985099656451936,-2.9258137778725404,1.0,0.0,0.0 -951,3.0,3.836908031740215,1.6,0.0,0.0,0.9808757095051988,-3.5736752547673967,1.0,0.0,0.0 -951,4.0,47.557465340780034,19.0,-2.2094909431125213e-08,39.999996406171135,0.988357376384186,-6.308483107218776,0.0,1.0,0.0 -951,5.0,0.0,0.0,0.0,0.0,0.9752678522377995,-4.815592324768208,1.0,0.0,0.0 -951,6.0,11.510724095220644,10.9,0.0,0.0,0.9743993955342152,-5.6574748646949855,1.0,0.0,0.0 -951,7.0,15.145689598974531,30.0,-1.4893554302391724e-08,39.999998423011846,0.9774326240039388,-5.329522618478281,0.0,1.0,0.0 -951,8.0,0.0,0.0,0.0,0.0,0.9592423903932203,-15.50803050160386,1.0,0.0,0.0 -951,9.0,2.9281666558017427,2.0,0.0,0.0,0.9592423903932206,-15.50803050160386,1.0,0.0,0.0 -951,10.0,0.0,0.0,0.0,0.0,0.9592423903932203,-15.50803050160386,0.0,1.0,0.0 -951,11.0,5.654390783617158,7.5,0.0,0.0,0.9568012428171334,-18.748817797563596,1.0,0.0,0.0 -951,12.0,0.0,0.0,-1.425433161242409e-10,23.999999755920516,0.99071610450701,-18.748817797575654,0.0,1.0,0.0 -951,13.0,3.13010918378807,1.6,0.0,0.0,0.9464777440658908,-18.8141919491057,1.0,0.0,0.0 -951,14.0,4.139821823719704,2.5,0.0,0.0,0.9467233193267536,-18.457065741666767,1.0,0.0,0.0 -951,15.0,1.766997119880362,1.8,0.0,0.0,0.9534220584827996,-17.472213530702117,1.0,0.0,0.0 -951,16.0,4.54370687969236,5.8,0.0,0.0,0.9520389480043964,-16.203711091030755,1.0,0.0,0.0 -951,17.0,1.615540223890617,0.9,0.0,0.0,0.942794937928719,-18.621671183961997,1.0,0.0,0.0 -951,18.0,4.796135039675268,3.4,0.0,0.0,0.9400000014703748,-16.182332044260914,1.0,0.0,0.0 -951,19.0,1.110683903924799,0.7,0.0,0.0,0.9441970046808006,-16.046418926809896,1.0,0.0,0.0 -951,20.0,8.83498559940181,11.2,0.0,0.0,0.9496821560703405,-15.601681460145542,1.0,0.0,0.0 -951,21.0,0.0,0.0,0.0,0.0,0.9504908455582536,-15.577868293918852,1.0,0.0,0.0 -951,22.0,1.615540223890617,1.6,0.0,0.0,0.9432537399521131,-17.225947929611497,1.0,0.0,0.0 -951,23.0,4.392249983702614,6.7,0.0,0.0,0.9460846816795784,-15.43999945286154,1.0,0.0,0.0 -951,24.0,0.0,0.0,0.0,0.0,0.964570567581886,-12.466844334492942,1.0,0.0,0.0 -951,25.0,1.766997119880362,2.3,0.0,0.0,0.9506478013107342,-12.520792363196264,1.0,0.0,0.0 -951,26.0,0.0,0.0,0.0,0.0,0.9832955258716198,-10.593568537943757,1.0,0.0,0.0 -951,27.0,0.0,0.0,0.0,0.0,0.9711095165619508,-5.5193349146857065,1.0,0.0,0.0 -951,28.0,1.2116551679179626,0.9,0.0,0.0,0.9700788124403416,-11.168602238489637,1.0,0.0,0.0 -951,29.0,5.351476991637668,1.9,0.0,0.0,0.962937083709222,-11.605070895332975,1.0,0.0,0.0 -952,0.0,0.0,0.0,138.00000053193395,0.0001380798693162,1.0,0.0,0.0,0.0,1.0 -952,1.0,10.955382143258245,12.7,13.427776414790952,4.777961855636335,0.9751783750130556,-4.637420835290121,0.0,1.0,0.0 -952,2.0,1.2116551679179626,1.2,0.0,0.0,0.9535839132838292,-9.245375361822491,1.0,0.0,0.0 -952,3.0,3.836908031740215,1.6,0.0,0.0,0.954076854022725,-9.223256023120053,1.0,0.0,0.0 -952,4.0,47.557465340780034,19.0,-5.937498261899095e-09,38.45184816583077,0.9683788928265356,-10.653269966207256,0.0,1.0,0.0 -952,5.0,0.0,0.0,0.0,0.0,0.95562711270286,-9.659502605266496,1.0,0.0,0.0 -952,6.0,11.510724095220644,10.9,0.0,0.0,0.9543574420070564,-10.305150474022332,1.0,0.0,0.0 -952,7.0,15.145689598974531,30.0,-5.857933051437423e-09,39.99967323708745,0.971068135901389,-12.98748001945765,0.0,1.0,0.0 -952,8.0,0.0,0.0,0.0,0.0,0.9788681460601862,-11.488331468523535,1.0,0.0,0.0 -952,9.0,2.9281666558017427,2.0,0.0,0.0,0.9801925732018416,-12.452354392593286,1.0,0.0,0.0 -952,10.0,0.0,0.0,0.0,0.0,0.9788681460601862,-11.488331468523535,0.0,1.0,0.0 -952,11.0,5.654390783617158,7.5,0.0,0.0,1.0152506180364922,-12.327136565500613,1.0,0.0,0.0 -952,12.0,0.0,0.0,-7.664744265332545e-09,23.99987083905017,1.0473319640916663,-12.327136566078826,0.0,1.0,0.0 -952,13.0,3.13010918378807,1.6,0.0,0.0,1.0040129942354936,-12.68276761110811,1.0,0.0,0.0 -952,14.0,4.139821823719704,2.5,0.0,0.0,1.0006935473257557,-12.62367045891926,1.0,0.0,0.0 -952,15.0,1.766997119880362,1.8,0.0,0.0,0.9942309096129248,-12.413519763746372,1.0,0.0,0.0 -952,16.0,4.54370687969236,5.8,0.0,0.0,0.9801525020368512,-12.545921424174258,1.0,0.0,0.0 -952,17.0,1.615540223890617,0.9,0.0,0.0,0.9541617141130506,-13.399176356657378,1.0,0.0,0.0 -952,18.0,4.796135039675268,3.4,0.0,0.0,0.956463612189592,-13.304239401512977,1.0,0.0,0.0 -952,19.0,1.110683903924799,0.7,0.0,0.0,0.961808980647907,-13.123749604308058,1.0,0.0,0.0 -952,20.0,8.83498559940181,11.2,0.0,0.0,0.9715522708932572,-12.62265113609944,1.0,0.0,0.0 -952,21.0,0.0,0.0,0.0,0.0,0.972558363033261,-12.62608681098834,1.0,0.0,0.0 -952,22.0,1.615540223890617,1.6,0.0,0.0,0.9849242749605256,-12.778399530736896,1.0,0.0,0.0 -952,23.0,4.392249983702614,6.7,0.0,0.0,0.9704732245840052,-12.862420552682751,1.0,0.0,0.0 -952,24.0,0.0,0.0,0.0,0.0,0.9663433851566224,-12.756257159605932,1.0,0.0,0.0 -952,25.0,1.766997119880362,2.3,0.0,0.0,0.9524469197928672,-12.81000449932568,1.0,0.0,0.0 -952,26.0,0.0,0.0,0.0,0.0,0.9708107429186108,-12.623736358027848,1.0,0.0,0.0 -952,27.0,0.0,0.0,0.0,0.0,0.9570340311656468,-10.648095116022494,1.0,0.0,0.0 -952,28.0,1.2116551679179626,0.9,0.0,0.0,0.9641667681976712,-12.810665846522388,1.0,0.0,0.0 -952,29.0,5.351476991637668,1.9,0.0,0.0,0.9400000655803477,-14.267033133645612,1.0,0.0,0.0 -953,0.0,0.0,0.0,148.70946375461324,0.0001575735147696,1.0,0.0,0.0,0.0,1.0 -953,1.0,10.955382143258245,12.7,1.7965849758845466e-07,9.226306415454438,0.9815249793484752,-3.404221865875272,0.0,1.0,0.0 -953,2.0,1.2116551679179626,1.2,0.0,0.0,0.9759330235322696,-4.465626876401895,1.0,0.0,0.0 -953,3.0,3.836908031740215,1.6,0.0,0.0,0.9696486176123144,-5.48449588941015,1.0,0.0,0.0 -953,4.0,47.557465340780034,19.0,-2.255958188551009e-10,23.43355545565608,0.9629059955233334,-8.1932165246204,0.0,1.0,0.0 -953,5.0,0.0,0.0,0.0,0.0,0.9695079446797176,-6.515270337784984,1.0,0.0,0.0 -953,6.0,11.510724095220644,10.9,0.0,0.0,0.9604952409086344,-7.44909547941032,1.0,0.0,0.0 -953,7.0,15.145689598974531,30.0,-2.1449859004484235e-10,30.18625869447429,0.9685390262277142,-6.90857767708332,0.0,1.0,0.0 -953,8.0,0.0,0.0,0.0,0.0,1.017061462909412,-8.183548247947856,1.0,0.0,0.0 -953,9.0,2.9281666558017427,2.0,0.0,0.0,1.0083377377882374,-9.050828511103347,1.0,0.0,0.0 -953,10.0,0.0,0.0,-1.3222131990601835e-10,21.85053615869977,1.0599403977137896,-8.18354824796247,0.0,1.0,0.0 -953,11.0,5.654390783617158,7.5,0.0,0.0,1.014565433643942,-8.616230061795317,1.0,0.0,0.0 -953,12.0,0.0,0.0,-2.89266452561987e-10,8.97191686577679,1.0267982973374812,-8.616230061817593,0.0,1.0,0.0 -953,13.0,3.13010918378807,1.6,0.0,0.0,1.0039950900155394,-9.038231144489783,1.0,0.0,0.0 -953,14.0,4.139821823719704,2.5,0.0,0.0,1.0008668352673022,-9.059563534895602,1.0,0.0,0.0 -953,15.0,1.766997119880362,1.8,0.0,0.0,1.005879585832197,-8.893210242744155,1.0,0.0,0.0 -953,16.0,4.54370687969236,5.8,0.0,0.0,1.0032996381411057,-9.082965722769,1.0,0.0,0.0 -953,17.0,1.615540223890617,0.9,0.0,0.0,0.994650017806946,-9.36431243388124,1.0,0.0,0.0 -953,18.0,4.796135039675268,3.4,0.0,0.0,0.9931766372182086,-9.457854538305444,1.0,0.0,0.0 -953,19.0,1.110683903924799,0.7,0.0,0.0,0.996367061158826,-9.385013684310412,1.0,0.0,0.0 -953,20.0,8.83498559940181,11.2,0.0,0.0,0.9980410144254456,-9.197624779825338,1.0,0.0,0.0 -953,21.0,0.0,0.0,0.0,0.0,0.9984215951626128,-9.195513301342904,1.0,0.0,0.0 -953,22.0,1.615540223890617,1.6,0.0,0.0,0.99279657506818,-9.2157681466321,1.0,0.0,0.0 -953,23.0,4.392249983702614,6.7,0.0,0.0,0.9885593801918348,-9.29837869310772,1.0,0.0,0.0 -953,24.0,0.0,0.0,0.0,0.0,0.9824130173128294,-9.04636241896549,1.0,0.0,0.0 -953,25.0,1.766997119880362,2.3,0.0,0.0,0.9687504352747208,-9.098340856184748,1.0,0.0,0.0 -953,26.0,0.0,0.0,0.0,0.0,0.9854598949038892,-8.827714145313493,1.0,0.0,0.0 -953,27.0,0.0,0.0,0.0,0.0,0.9675941372897164,-6.839527302441018,1.0,0.0,0.0 -953,28.0,1.2116551679179626,0.9,0.0,0.0,0.9722737865835124,-9.40019141314592,1.0,0.0,0.0 -953,29.0,5.351476991637668,1.9,0.0,0.0,0.9651486525091882,-9.83467894276499,1.0,0.0,0.0 -954,0.0,0.0,0.0,149.37973948693528,8.647101434888782e-05,1.0,0.0,0.0,0.0,1.0 -954,1.0,10.955382143258245,12.7,1.4175447522243825e-07,4.506865560143915,0.9802379338252266,-3.4476603803212,0.0,1.0,0.0 -954,2.0,1.2116551679179626,1.2,0.0,0.0,0.9791906339600082,-4.393403243939356,1.0,0.0,0.0 -954,3.0,3.836908031740215,1.6,0.0,0.0,0.9736550189693528,-5.39374993427636,1.0,0.0,0.0 -954,4.0,47.557465340780034,19.0,-1.0660449439838609e-10,23.46357506234942,0.9616508942913172,-8.392468646778,0.0,1.0,0.0 -954,5.0,0.0,0.0,0.0,0.0,0.9681444933807044,-6.860491395567521,1.0,0.0,0.0 -954,6.0,11.510724095220644,10.9,0.0,0.0,0.9591431651930516,-7.735493329230469,1.0,0.0,0.0 -954,7.0,15.145689598974531,30.0,-6.650611154053524e-11,28.762838837652797,0.966532588282096,-7.266939564042848,0.0,1.0,0.0 -954,8.0,0.0,0.0,0.0,0.0,1.0120959653812538,-9.962970254896051,1.0,0.0,0.0 -954,9.0,2.9281666558017427,2.0,0.0,0.0,1.0006726257600989,-11.585502304505765,1.0,0.0,0.0 -954,10.0,0.0,0.0,-2.2200470942126678e-10,23.3912942882281,1.0580791891497974,-9.962970254920757,0.0,1.0,0.0 -954,11.0,5.654390783617158,7.5,0.0,0.0,0.9815039580617948,-13.935644215712312,1.0,0.0,0.0 -954,12.0,0.0,0.0,-5.7085013310324365e-11,17.537063770681442,1.0059115603275055,-13.935644215716952,0.0,1.0,0.0 -954,13.0,3.13010918378807,1.6,0.0,0.0,0.9727976396130557,-13.989465099904947,1.0,0.0,0.0 -954,14.0,4.139821823719704,2.5,0.0,0.0,0.9743879731369314,-13.675047785902128,1.0,0.0,0.0 -954,15.0,1.766997119880362,1.8,0.0,0.0,0.9852381441007736,-13.060363802045384,1.0,0.0,0.0 -954,16.0,4.54370687969236,5.8,0.0,0.0,0.990856054204572,-12.107610849836602,1.0,0.0,0.0 -954,17.0,1.615540223890617,0.9,0.0,0.0,0.9746414690192452,-13.254405342149187,1.0,0.0,0.0 -954,18.0,4.796135039675268,3.4,0.0,0.0,0.9770884494496008,-12.91506841652568,1.0,0.0,0.0 -954,19.0,1.110683903924799,0.7,0.0,0.0,0.9824502131719188,-12.612174101928645,1.0,0.0,0.0 -954,20.0,8.83498559940181,11.2,0.0,0.0,0.9895642584211408,-11.78820970620671,1.0,0.0,0.0 -954,21.0,0.0,0.0,0.0,0.0,0.9897122549923814,-11.802995840003508,1.0,0.0,0.0 -954,22.0,1.615540223890617,1.6,0.0,0.0,0.9722672354171892,-13.064244825193027,1.0,0.0,0.0 -954,23.0,4.392249983702614,6.7,0.0,0.0,0.9762148252069962,-12.116302036544154,1.0,0.0,0.0 -954,24.0,0.0,0.0,0.0,0.0,0.9766013788791952,-11.010469292492717,1.0,0.0,0.0 -954,25.0,1.766997119880362,2.3,0.0,0.0,0.962855139706306,-11.06307719080153,1.0,0.0,0.0 -954,26.0,0.0,0.0,0.0,0.0,0.9835914875509112,-10.257945594733403,1.0,0.0,0.0 -954,27.0,0.0,0.0,0.0,0.0,0.965451968856778,-7.3048550289831615,1.0,0.0,0.0 -954,28.0,1.2116551679179626,0.9,0.0,0.0,0.970378967752778,-10.832628707557678,1.0,0.0,0.0 -954,29.0,5.351476991637668,1.9,0.0,0.0,0.9632395129133192,-11.268825651360409,1.0,0.0,0.0 -955,0.0,0.0,0.0,150.35716119272405,0.0055554106348054,1.0,0.0,0.0,0.0,1.0 -955,1.0,10.955382143258245,12.7,7.992484184813756e-06,2.4617636324517704,0.9799522517857326,-3.4655598091538904,0.0,1.0,0.0 -955,2.0,1.2116551679179626,1.2,0.0,0.0,0.9796081264959132,-4.435601091777651,1.0,0.0,0.0 -955,3.0,3.836908031740215,1.6,0.0,0.0,0.974174069693148,-5.445957101257709,1.0,0.0,0.0 -955,4.0,47.557465340780034,19.0,9.859708041917488e-09,24.066150416089695,0.962568466248422,-8.441610773666214,0.0,1.0,0.0 -955,5.0,0.0,0.0,0.0,0.0,0.9689920957408666,-6.929997543566154,1.0,0.0,0.0 -955,6.0,11.510724095220644,10.9,0.0,0.0,0.9600243451115916,-7.796257670497133,1.0,0.0,0.0 -955,7.0,15.145689598974531,30.0,4.143842354544707e-09,31.654242446335203,0.9683948084439948,-7.3504502185132035,0.0,1.0,0.0 -955,8.0,0.0,0.0,0.0,0.0,1.0127665428079948,-10.129864218721575,1.0,0.0,0.0 -955,9.0,2.9281666558017427,2.0,0.0,0.0,1.0007322345489953,-11.804655863718734,1.0,0.0,0.0 -955,10.0,0.0,0.0,7.536832527936299e-09,23.99239372516567,1.0598525085853958,-10.129864217884782,0.0,1.0,0.0 -955,11.0,5.654390783617158,7.5,0.0,0.0,0.9483496768464684,-19.9447031049554,1.0,0.0,0.0 -955,12.0,0.0,0.0,-1.9382471265942395e-10,17.86513224192354,0.97402777932925,-19.944703104972227,0.0,1.0,0.0 -955,13.0,3.13010918378807,1.6,0.0,0.0,0.9410023769078064,-19.7015865997211,1.0,0.0,0.0 -955,14.0,4.139821823719704,2.5,0.0,0.0,0.9462675941891524,-19.11410449899432,1.0,0.0,0.0 -955,15.0,1.766997119880362,1.8,0.0,0.0,0.9427829187883838,-20.060694797478146,1.0,0.0,0.0 -955,16.0,4.54370687969236,5.8,0.0,0.0,0.994320730037944,-11.917527825531396,1.0,0.0,0.0 -955,17.0,1.615540223890617,0.9,0.0,0.0,0.9550204739385364,-16.804015850909924,1.0,0.0,0.0 -955,18.0,4.796135039675268,3.4,0.0,0.0,0.963323678111615,-15.367357334630949,1.0,0.0,0.0 -955,19.0,1.110683903924799,0.7,0.0,0.0,0.9721217845214212,-14.495317166773695,1.0,0.0,0.0 -955,20.0,8.83498559940181,11.2,0.0,0.0,0.9839076875075722,-11.944546234283123,1.0,0.0,0.0 -955,21.0,0.0,0.0,0.0,0.0,0.982263965023096,-11.936483738157316,1.0,0.0,0.0 -955,22.0,1.615540223890617,1.6,0.0,0.0,0.9624762183405678,-11.91929554040352,1.0,0.0,0.0 -955,23.0,4.392249983702614,6.7,0.0,0.0,0.9691831129399416,-11.781097546991637,1.0,0.0,0.0 -955,24.0,0.0,0.0,0.0,0.0,0.9720040913304762,-10.8574164919177,1.0,0.0,0.0 -955,25.0,1.766997119880362,2.3,0.0,0.0,0.9581909353565196,-10.910530502507028,1.0,0.0,0.0 -955,26.0,0.0,0.0,0.0,0.0,0.9805561126297015,-10.21562213161824,1.0,0.0,0.0 -955,27.0,0.0,0.0,0.0,0.0,0.9661552201224368,-7.356756247233741,1.0,0.0,0.0 -955,28.0,1.2116551679179626,0.9,0.0,0.0,0.9673004530173288,-10.793916224616622,1.0,0.0,0.0 -955,29.0,5.351476991637668,1.9,0.0,0.0,0.9601376063244828,-11.232912094117806,1.0,0.0,0.0 -956,0.0,0.0,0.0,148.82364516234054,0.0006048872507768,1.0,0.0,0.0,0.0,1.0 -956,1.0,10.955382143258245,12.7,3.672595895176959e-07,12.879002315156995,0.9821542921914238,-3.421487667401929,0.0,1.0,0.0 -956,2.0,1.2116551679179626,1.2,0.0,0.0,0.9740610052686256,-4.435566799946844,1.0,0.0,0.0 -956,3.0,3.836908031740215,1.6,0.0,0.0,0.9673383895295572,-5.447820271341679,1.0,0.0,0.0 -956,4.0,47.557465340780034,19.0,-3.7396333892580057e-10,24.09455392045953,0.9634436234204014,-8.214959058099856,0.0,1.0,0.0 -956,5.0,0.0,0.0,0.0,0.0,0.9685808549231169,-6.516123917416112,1.0,0.0,0.0 -956,6.0,11.510724095220644,10.9,0.0,0.0,0.9601665339598652,-7.457911138729164,1.0,0.0,0.0 -956,7.0,15.145689598974531,30.0,-3.672000633253278e-10,35.22163114047163,0.9692294967523014,-6.9451706370893564,0.0,1.0,0.0 -956,8.0,0.0,0.0,0.0,0.0,1.0156311352798688,-8.12925592555672,1.0,0.0,0.0 -956,9.0,2.9281666558017427,2.0,0.0,0.0,1.0058572472656409,-8.969137611640443,1.0,0.0,0.0 -956,10.0,0.0,0.0,-1.2015656282105234e-10,22.596014197616174,1.0599716689994234,-8.129255925570027,0.0,1.0,0.0 -956,11.0,5.654390783617158,7.5,0.0,0.0,0.9970209605420544,-8.572758786784838,1.0,0.0,0.0 -956,12.0,0.0,0.0,0.0,0.0,0.9970209605420544,-8.572758786784838,0.0,1.0,0.0 -956,13.0,3.13010918378807,1.6,0.0,0.0,0.9863670074198504,-9.037407388198051,1.0,0.0,0.0 -956,14.0,4.139821823719704,2.5,0.0,0.0,0.9831000285434172,-9.089185613855504,1.0,0.0,0.0 -956,15.0,1.766997119880362,1.8,0.0,0.0,0.9948160900719656,-8.867935479769386,1.0,0.0,0.0 -956,16.0,4.54370687969236,5.8,0.0,0.0,0.998098709548818,-9.009335346449925,1.0,0.0,0.0 -956,17.0,1.615540223890617,0.9,0.0,0.0,0.9821741448220328,-9.36458904011289,1.0,0.0,0.0 -956,18.0,4.796135039675268,3.4,0.0,0.0,0.9838605100693072,-9.437785603375175,1.0,0.0,0.0 -956,19.0,1.110683903924799,0.7,0.0,0.0,0.9887559913240836,-9.352357982248002,1.0,0.0,0.0 -956,20.0,8.83498559940181,11.2,0.0,0.0,0.9978010667263684,-9.075475844020715,1.0,0.0,0.0 -956,21.0,0.0,0.0,0.0,0.0,0.9989002801772264,-9.06116539814274,1.0,0.0,0.0 -956,22.0,1.615540223890617,1.6,0.0,0.0,0.9700401818717348,-9.400423832630244,1.0,0.0,0.0 -956,23.0,4.392249983702614,6.7,0.0,0.0,0.9593456182534216,-9.69231759483737,1.0,0.0,0.0 -956,24.0,0.0,0.0,0.0,0.0,0.9635352237825728,-9.434312338956005,1.0,0.0,0.0 -956,25.0,1.766997119880362,2.3,0.0,0.0,0.9495970507219058,-9.488378095152608,1.0,0.0,0.0 -956,26.0,0.0,0.0,0.0,0.0,0.9731386425667644,-9.198308031626231,1.0,0.0,0.0 -956,27.0,0.0,0.0,0.0,0.0,0.9655881000796498,-6.86520690702614,1.0,0.0,0.0 -956,28.0,1.2116551679179626,0.9,0.0,0.0,0.9665108059969212,-9.384338084739904,1.0,0.0,0.0 -956,29.0,5.351476991637668,1.9,0.0,0.0,0.9424086802415622,-10.83348167135845,1.0,0.0,0.0 -957,0.0,0.0,0.0,148.70946375461324,0.0001575735147696,1.0,0.0,0.0,0.0,1.0 -957,1.0,10.955382143258245,12.7,1.7965849758845466e-07,9.226306415454438,0.9815249793484752,-3.404221865875272,0.0,1.0,0.0 -957,2.0,1.2116551679179626,1.2,0.0,0.0,0.9759330235322696,-4.465626876401895,1.0,0.0,0.0 -957,3.0,3.836908031740215,1.6,0.0,0.0,0.9696486176123144,-5.48449588941015,1.0,0.0,0.0 -957,4.0,47.557465340780034,19.0,-2.255958188551009e-10,23.43355545565608,0.9629059955233334,-8.1932165246204,0.0,1.0,0.0 -957,5.0,0.0,0.0,0.0,0.0,0.9695079446797176,-6.515270337784984,1.0,0.0,0.0 -957,6.0,11.510724095220644,10.9,0.0,0.0,0.9604952409086344,-7.44909547941032,1.0,0.0,0.0 -957,7.0,15.145689598974531,30.0,-2.1449859004484235e-10,30.18625869447429,0.9685390262277142,-6.90857767708332,0.0,1.0,0.0 -957,8.0,0.0,0.0,0.0,0.0,1.017061462909412,-8.183548247947856,1.0,0.0,0.0 -957,9.0,2.9281666558017427,2.0,0.0,0.0,1.0083377377882374,-9.050828511103347,1.0,0.0,0.0 -957,10.0,0.0,0.0,-1.3222131990601835e-10,21.85053615869977,1.0599403977137896,-8.18354824796247,0.0,1.0,0.0 -957,11.0,5.654390783617158,7.5,0.0,0.0,1.014565433643942,-8.616230061795317,1.0,0.0,0.0 -957,12.0,0.0,0.0,-2.89266452561987e-10,8.97191686577679,1.0267982973374812,-8.616230061817593,0.0,1.0,0.0 -957,13.0,3.13010918378807,1.6,0.0,0.0,1.0039950900155394,-9.038231144489783,1.0,0.0,0.0 -957,14.0,4.139821823719704,2.5,0.0,0.0,1.0008668352673022,-9.059563534895602,1.0,0.0,0.0 -957,15.0,1.766997119880362,1.8,0.0,0.0,1.005879585832197,-8.893210242744155,1.0,0.0,0.0 -957,16.0,4.54370687969236,5.8,0.0,0.0,1.0032996381411057,-9.082965722769,1.0,0.0,0.0 -957,17.0,1.615540223890617,0.9,0.0,0.0,0.994650017806946,-9.36431243388124,1.0,0.0,0.0 -957,18.0,4.796135039675268,3.4,0.0,0.0,0.9931766372182086,-9.457854538305444,1.0,0.0,0.0 -957,19.0,1.110683903924799,0.7,0.0,0.0,0.996367061158826,-9.385013684310412,1.0,0.0,0.0 -957,20.0,8.83498559940181,11.2,0.0,0.0,0.9980410144254456,-9.197624779825338,1.0,0.0,0.0 -957,21.0,0.0,0.0,0.0,0.0,0.9984215951626128,-9.195513301342904,1.0,0.0,0.0 -957,22.0,1.615540223890617,1.6,0.0,0.0,0.99279657506818,-9.2157681466321,1.0,0.0,0.0 -957,23.0,4.392249983702614,6.7,0.0,0.0,0.9885593801918348,-9.29837869310772,1.0,0.0,0.0 -957,24.0,0.0,0.0,0.0,0.0,0.9824130173128294,-9.04636241896549,1.0,0.0,0.0 -957,25.0,1.766997119880362,2.3,0.0,0.0,0.9687504352747208,-9.098340856184748,1.0,0.0,0.0 -957,26.0,0.0,0.0,0.0,0.0,0.9854598949038892,-8.827714145313493,1.0,0.0,0.0 -957,27.0,0.0,0.0,0.0,0.0,0.9675941372897164,-6.839527302441018,1.0,0.0,0.0 -957,28.0,1.2116551679179626,0.9,0.0,0.0,0.9722737865835124,-9.40019141314592,1.0,0.0,0.0 -957,29.0,5.351476991637668,1.9,0.0,0.0,0.9651486525091882,-9.83467894276499,1.0,0.0,0.0 -958,0.0,0.0,0.0,138.0486106319869,2.128633269649072e-06,1.0,0.0,0.0,0.0,1.0 -958,1.0,10.81870203998274,12.7,8.719715922967211,14.794193356866325,0.9820597107888808,-3.082290460696236,0.0,1.0,0.0 -958,2.0,1.1965384744681369,1.2,0.0,0.0,0.9790540825224836,-4.332320315775441,1.0,0.0,0.0 -958,3.0,3.789038502482434,1.6,0.0,0.0,0.9734784646102762,-5.3183600934597886,1.0,0.0,0.0 -958,4.0,46.96413512287439,19.0,0.0,0.0,0.9400000008014806,-7.499522646141604,0.0,1.0,0.0 -958,5.0,0.0,0.0,0.0,0.0,0.9723730026057048,-6.279400061259517,1.0,0.0,0.0 -958,6.0,11.367115507447304,10.9,0.0,0.0,0.9527153869118818,-7.041722509315776,1.0,0.0,0.0 -958,7.0,14.956730930851714,30.0,9.19138537686411e-09,39.99999541385497,0.9744651093278028,-6.913262466423335,0.0,1.0,0.0 -958,8.0,0.0,0.0,0.0,0.0,1.0220833480875742,-7.945520730908442,1.0,0.0,0.0 -958,9.0,2.8916346466313314,2.0,0.0,0.0,1.017089929653321,-8.806763586221155,1.0,0.0,0.0 -958,10.0,0.0,0.0,1.5191234156428035e-08,19.3228996052426,1.059999981921882,-7.9455207292374,0.0,1.0,0.0 -958,11.0,5.583846214184639,7.5,0.0,0.0,1.03374675740424,-8.529571377060428,1.0,0.0,0.0 -958,12.0,0.0,0.0,8.43336358655557e-09,19.87743604972212,1.0599999754367635,-8.52957137644308,0.0,1.0,0.0 -958,13.0,3.0910577257093546,1.6,0.0,0.0,1.021966574510876,-8.939423605272378,1.0,0.0,0.0 -958,14.0,4.0881731210994685,2.5,0.0,0.0,1.0174316462178494,-8.936087066400125,1.0,0.0,0.0 -958,15.0,1.7449519419327,1.8,0.0,0.0,1.020755364999145,-8.712175618117966,1.0,0.0,0.0 -958,16.0,4.487019279255515,5.8,0.0,0.0,1.0139959152621048,-8.862235969531358,1.0,0.0,0.0 -958,17.0,1.595384632624183,0.9,0.0,0.0,1.0086364470768605,-9.183631414326118,1.0,0.0,0.0 -958,18.0,4.7362981281030425,3.4,0.0,0.0,1.0055910547525575,-9.247146836832847,1.0,0.0,0.0 -958,19.0,1.0968269349291258,0.7,0.0,0.0,1.0078841368166072,-9.163556741310565,1.0,0.0,0.0 -958,20.0,8.7247597096635,11.2,0.0,0.0,1.0070686282128276,-8.979790466153897,1.0,0.0,0.0 -958,21.0,0.0,0.0,0.0,0.0,1.0074882714643845,-8.988513513736935,1.0,0.0,0.0 -958,22.0,1.595384632624183,1.6,0.0,0.0,1.006384801269838,-9.113014782843232,1.0,0.0,0.0 -958,23.0,4.337451969946997,6.7,0.0,0.0,0.9980699398889894,-9.232452727020254,1.0,0.0,0.0 -958,24.0,0.0,0.0,0.0,0.0,0.9872252723384268,-9.273595473617116,1.0,0.0,0.0 -958,25.0,1.7449519419327,2.3,0.0,0.0,0.973689672376374,-9.320064905467866,1.0,0.0,0.0 -958,26.0,0.0,0.0,0.0,0.0,0.9874015936232392,-9.247202344510256,1.0,0.0,0.0 -958,27.0,0.0,0.0,0.0,0.0,0.9675483986426682,-7.691283454951428,1.0,0.0,0.0 -958,28.0,1.1965384744681369,0.9,0.0,0.0,0.9743347005644668,-9.807903736443022,1.0,0.0,0.0 -958,29.0,5.284711595567606,1.9,0.0,0.0,0.9672841983023658,-10.234161408713469,1.0,0.0,0.0 -959,0.0,0.0,0.0,146.78428486806786,0.0001548090235559,1.0,0.0,0.0,0.0,1.0 -959,1.0,10.81870203998274,12.7,1.7408671617210308e-07,9.052938424899104,0.9817141613181268,-3.358899005049281,0.0,1.0,0.0 -959,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761828950297176,-4.406281060602224,1.0,0.0,0.0 -959,3.0,3.789038502482434,1.6,0.0,0.0,0.9699480380100076,-5.411078896642632,1.0,0.0,0.0 -959,4.0,46.96413512287439,19.0,-2.2743385375623548e-10,23.33077556175794,0.9632964318112572,-8.084020453351227,0.0,1.0,0.0 -959,5.0,0.0,0.0,0.0,0.0,0.96984027086417,-6.428736477350425,1.0,0.0,0.0 -959,6.0,11.367115507447304,10.9,0.0,0.0,0.9608774248715202,-7.348880062409097,1.0,0.0,0.0 -959,7.0,14.956730930851714,30.0,-2.1467141109212627e-10,30.14089057910261,0.9688790444330534,-6.816749598359857,0.0,1.0,0.0 -959,8.0,0.0,0.0,0.0,0.0,1.0172632138096631,-8.075577715032265,1.0,0.0,0.0 -959,9.0,2.8916346466313314,2.0,0.0,0.0,1.0085726533001114,-8.93181003793696,1.0,0.0,0.0 -959,10.0,0.0,0.0,-1.2378540875266682e-10,21.739733171499186,1.0599253185861,-8.075577715045947,0.0,1.0,0.0 -959,11.0,5.583846214184639,7.5,0.0,0.0,1.0146963573155314,-8.50234621595401,1.0,0.0,0.0 -959,12.0,0.0,0.0,-2.817651158641552e-10,8.84433022688833,1.026755761106266,-8.502346215975702,0.0,1.0,0.0 -959,13.0,3.0910577257093546,1.6,0.0,0.0,1.004194785054918,-8.917277239002868,1.0,0.0,0.0 -959,14.0,4.0881731210994685,2.5,0.0,0.0,1.001093736242763,-8.937714864862388,1.0,0.0,0.0 -959,15.0,1.7449519419327,1.8,0.0,0.0,1.0060799905536784,-8.774739789692198,1.0,0.0,0.0 -959,16.0,4.487019279255515,5.8,0.0,0.0,1.0035362391689322,-8.962149251514559,1.0,0.0,0.0 -959,17.0,1.595384632624183,0.9,0.0,0.0,0.9949290574296898,-9.23775941644345,1.0,0.0,0.0 -959,18.0,4.7362981281030425,3.4,0.0,0.0,0.9934728308385052,-9.330047025069923,1.0,0.0,0.0 -959,19.0,1.0968269349291258,0.7,0.0,0.0,0.9966506329297424,-9.25897327707877,1.0,0.0,0.0 -959,20.0,8.7247597096635,11.2,0.0,0.0,0.9983163380722888,-9.074412962724123,1.0,0.0,0.0 -959,21.0,0.0,0.0,0.0,0.0,0.9986964116934248,-9.072488472174095,1.0,0.0,0.0 -959,22.0,1.595384632624183,1.6,0.0,0.0,0.9930796240874862,-9.090632734098673,1.0,0.0,0.0 -959,23.0,4.337451969946997,6.7,0.0,0.0,0.9888880404469532,-9.172018148066435,1.0,0.0,0.0 -959,24.0,0.0,0.0,0.0,0.0,0.9827717280295166,-8.923029494438952,1.0,0.0,0.0 -959,25.0,1.7449519419327,2.3,0.0,0.0,0.9691730452530188,-8.96992705118588,1.0,0.0,0.0 -959,26.0,0.0,0.0,0.0,0.0,0.9858099651388168,-8.709003725965099,1.0,0.0,0.0 -959,27.0,0.0,0.0,0.0,0.0,0.9679450946028956,-6.748428238686911,1.0,0.0,0.0 -959,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727208470721822,-9.271540830169272,1.0,0.0,0.0 -959,29.0,5.284711595567606,1.9,0.0,0.0,0.965658310379367,-9.699223075189613,1.0,0.0,0.0 -960,0.0,0.0,0.0,113.89117708414422,1.8538354851216356e-06,1.0,0.0,0.0,0.0,1.0 -960,1.0,10.81870203998274,12.7,34.130166275497395,-22.02654901233649,0.9772696478093438,-3.7395735922926874,0.0,1.0,0.0 -960,2.0,1.1965384744681369,1.2,0.0,0.0,1.000849071436282,-0.1349848387596455,1.0,0.0,0.0 -960,3.0,3.789038502482434,1.6,0.0,0.0,0.9699357062892412,-8.350136085689696,1.0,0.0,0.0 -960,4.0,46.96413512287439,19.0,4.4807952272583025e-09,39.999997639413806,0.9802770353925376,-9.697076764693854,0.0,1.0,0.0 -960,5.0,0.0,0.0,0.0,0.0,0.973718817212826,-8.840321020975956,1.0,0.0,0.0 -960,6.0,11.367115507447304,10.9,0.0,0.0,0.9700577323368827,-9.42239409303658,1.0,0.0,0.0 -960,7.0,14.956730930851714,30.0,-9.154724429123651e-09,39.99999880404864,0.9763531664707104,-9.288268706544285,0.0,1.0,0.0 -960,8.0,0.0,0.0,0.0,0.0,1.0215548332472464,-10.550529451521763,1.0,0.0,0.0 -960,9.0,2.8916346466313314,2.0,0.0,0.0,1.0152936148559055,-11.43734703558141,1.0,0.0,0.0 -960,10.0,0.0,0.0,4.394196393369493e-09,19.592247086158853,1.0599999974339107,-10.550529451038154,0.0,1.0,0.0 -960,11.0,5.583846214184639,7.5,0.0,0.0,1.034704323118809,-11.185288976445328,1.0,0.0,0.0 -960,12.0,0.0,0.0,9.991176793620912e-09,19.1524387736272,1.0599999970413736,-11.185288975714618,0.0,1.0,0.0 -960,13.0,3.0910577257093546,1.6,0.0,0.0,1.0250531319386116,-11.534425099678504,1.0,0.0,0.0 -960,14.0,4.0881731210994685,2.5,0.0,0.0,1.0229811344813895,-11.519393591507388,1.0,0.0,0.0 -960,15.0,1.7449519419327,1.8,0.0,0.0,1.0205374237780775,-11.351521167094122,1.0,0.0,0.0 -960,16.0,4.487019279255515,5.8,0.0,0.0,1.0126829753352082,-11.49765696348704,1.0,0.0,0.0 -960,17.0,1.595384632624183,0.9,0.0,0.0,1.0116159677991532,-11.780743114028768,1.0,0.0,0.0 -960,18.0,4.7362981281030425,3.4,0.0,0.0,1.0070428779760487,-11.853281135782767,1.0,0.0,0.0 -960,19.0,1.0968269349291258,0.7,0.0,0.0,1.0085241611735611,-11.774585953682926,1.0,0.0,0.0 -960,20.0,8.7247597096635,11.2,0.0,0.0,1.003582633805395,-11.606994283471812,1.0,0.0,0.0 -960,21.0,0.0,0.0,0.0,0.0,1.0034774062124143,-11.613742712377944,1.0,0.0,0.0 -960,22.0,1.595384632624183,1.6,0.0,0.0,0.9805189469717326,-11.91892311740119,1.0,0.0,0.0 -960,23.0,4.337451969946997,6.7,0.0,0.0,0.9870750650332484,-11.788948695560313,1.0,0.0,0.0 -960,24.0,0.0,0.0,0.0,0.0,0.983267515480583,-11.498893270962707,1.0,0.0,0.0 -960,25.0,1.7449519419327,2.3,0.0,0.0,0.9696758848658248,-11.545742876562034,1.0,0.0,0.0 -960,26.0,0.0,0.0,0.0,0.0,0.9877226283949112,-11.257000882119549,1.0,0.0,0.0 -960,27.0,0.0,0.0,0.0,0.0,0.972268219187845,-9.18090369353523,1.0,0.0,0.0 -960,28.0,1.1965384744681369,0.9,0.0,0.0,0.940000001582016,-13.310148766113423,1.0,0.0,0.0 -960,29.0,5.284711595567606,1.9,0.0,0.0,0.947400193227001,-13.10010003402394,1.0,0.0,0.0 -961,0.0,0.0,0.0,122.3823618120285,4.950449827845205e-06,1.0,0.0,0.0,0.0,1.0 -961,1.0,10.81870203998274,12.7,24.28940098713824,15.950847827574217,0.9856362590364548,-2.3446383549999714,0.0,1.0,0.0 -961,2.0,1.1965384744681369,1.2,0.0,0.0,0.977126444650186,-4.928232126508263,1.0,0.0,0.0 -961,3.0,3.789038502482434,1.6,0.0,0.0,0.971179095964622,-6.05858739626762,1.0,0.0,0.0 -961,4.0,46.96413512287439,19.0,0.0,0.0,0.941743892811562,-7.311335348507773,0.0,1.0,0.0 -961,5.0,0.0,0.0,0.0,0.0,0.9715843766935136,-6.683325138114918,1.0,0.0,0.0 -961,6.0,11.367115507447304,10.9,0.0,0.0,0.9528517874270056,-7.206572223874029,1.0,0.0,0.0 -961,7.0,14.956730930851714,30.0,-1.7560631294763316e-08,39.9999992143735,0.9743365423159824,-7.13174098412425,0.0,1.0,0.0 -961,8.0,0.0,0.0,0.0,0.0,1.0216225740710183,-8.34356269133033,1.0,0.0,0.0 -961,9.0,2.8916346466313314,2.0,0.0,0.0,1.0165655518504426,-9.201511380132224,1.0,0.0,0.0 -961,10.0,0.0,0.0,-1.6238462025512746e-09,19.5577252443159,1.059999997290054,-8.343562691509035,0.0,1.0,0.0 -961,11.0,5.583846214184639,7.5,0.0,0.0,1.0326908744011007,-9.073085294817991,1.0,0.0,0.0 -961,12.0,0.0,0.0,6.5979339021469715e-09,20.67690759939818,1.059999997704723,-9.073085294334511,0.0,1.0,0.0 -961,13.0,3.0910577257093546,1.6,0.0,0.0,1.020962983683068,-9.452615096657546,1.0,0.0,0.0 -961,14.0,4.0881731210994685,2.5,0.0,0.0,1.0167046340959331,-9.419895002438354,1.0,0.0,0.0 -961,15.0,1.7449519419327,1.8,0.0,0.0,1.0200238618185151,-9.19345645569205,1.0,0.0,0.0 -961,16.0,4.487019279255515,5.8,0.0,0.0,1.013371478874542,-9.283888975552328,1.0,0.0,0.0 -961,17.0,1.595384632624183,0.9,0.0,0.0,1.0079811716601648,-9.636665292733856,1.0,0.0,0.0 -961,18.0,4.7362981281030425,3.4,0.0,0.0,1.0049789578339163,-9.681630832732475,1.0,0.0,0.0 -961,19.0,1.0968269349291258,0.7,0.0,0.0,1.0072980453182876,-9.58811400428748,1.0,0.0,0.0 -961,20.0,8.7247597096635,11.2,0.0,0.0,1.0066554509471233,-9.35109149991382,1.0,0.0,0.0 -961,21.0,0.0,0.0,0.0,0.0,1.0071145086081046,-9.35228139975358,1.0,0.0,0.0 -961,22.0,1.595384632624183,1.6,0.0,0.0,1.0061186848449024,-9.504569657397784,1.0,0.0,0.0 -961,23.0,4.337451969946997,6.7,0.0,0.0,0.9984020603106672,-9.49832827595136,1.0,0.0,0.0 -961,24.0,0.0,0.0,0.0,0.0,0.9895782805764464,-9.199854401036722,1.0,0.0,0.0 -961,25.0,1.7449519419327,2.3,0.0,0.0,0.9760757710785162,-9.246100010017832,1.0,0.0,0.0 -961,26.0,0.0,0.0,0.0,0.0,0.9908707356989092,-8.958611337838839,1.0,0.0,0.0 -961,27.0,0.0,0.0,0.0,0.0,0.9708070446898291,-7.0183807454205125,1.0,0.0,0.0 -961,28.0,1.1965384744681369,0.9,0.0,0.0,0.962870856114016,-10.205551285029564,1.0,0.0,0.0 -961,29.0,5.284711595567606,1.9,0.0,0.0,0.9400000003708492,-11.43357200926698,1.0,0.0,0.0 -962,0.0,0.0,0.0,146.78428486806786,0.0001548090235559,1.0,0.0,0.0,0.0,1.0 -962,1.0,10.81870203998274,12.7,1.7408671617210308e-07,9.052938424899104,0.9817141613181268,-3.358899005049281,0.0,1.0,0.0 -962,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761828950297176,-4.406281060602224,1.0,0.0,0.0 -962,3.0,3.789038502482434,1.6,0.0,0.0,0.9699480380100076,-5.411078896642632,1.0,0.0,0.0 -962,4.0,46.96413512287439,19.0,-2.2743385375623548e-10,23.33077556175794,0.9632964318112572,-8.084020453351227,0.0,1.0,0.0 -962,5.0,0.0,0.0,0.0,0.0,0.96984027086417,-6.428736477350425,1.0,0.0,0.0 -962,6.0,11.367115507447304,10.9,0.0,0.0,0.9608774248715202,-7.348880062409097,1.0,0.0,0.0 -962,7.0,14.956730930851714,30.0,-2.1467141109212627e-10,30.14089057910261,0.9688790444330534,-6.816749598359857,0.0,1.0,0.0 -962,8.0,0.0,0.0,0.0,0.0,1.0172632138096631,-8.075577715032265,1.0,0.0,0.0 -962,9.0,2.8916346466313314,2.0,0.0,0.0,1.0085726533001114,-8.93181003793696,1.0,0.0,0.0 -962,10.0,0.0,0.0,-1.2378540875266682e-10,21.739733171499186,1.0599253185861,-8.075577715045947,0.0,1.0,0.0 -962,11.0,5.583846214184639,7.5,0.0,0.0,1.0146963573155314,-8.50234621595401,1.0,0.0,0.0 -962,12.0,0.0,0.0,-2.817651158641552e-10,8.84433022688833,1.026755761106266,-8.502346215975702,0.0,1.0,0.0 -962,13.0,3.0910577257093546,1.6,0.0,0.0,1.004194785054918,-8.917277239002868,1.0,0.0,0.0 -962,14.0,4.0881731210994685,2.5,0.0,0.0,1.001093736242763,-8.937714864862388,1.0,0.0,0.0 -962,15.0,1.7449519419327,1.8,0.0,0.0,1.0060799905536784,-8.774739789692198,1.0,0.0,0.0 -962,16.0,4.487019279255515,5.8,0.0,0.0,1.0035362391689322,-8.962149251514559,1.0,0.0,0.0 -962,17.0,1.595384632624183,0.9,0.0,0.0,0.9949290574296898,-9.23775941644345,1.0,0.0,0.0 -962,18.0,4.7362981281030425,3.4,0.0,0.0,0.9934728308385052,-9.330047025069923,1.0,0.0,0.0 -962,19.0,1.0968269349291258,0.7,0.0,0.0,0.9966506329297424,-9.25897327707877,1.0,0.0,0.0 -962,20.0,8.7247597096635,11.2,0.0,0.0,0.9983163380722888,-9.074412962724123,1.0,0.0,0.0 -962,21.0,0.0,0.0,0.0,0.0,0.9986964116934248,-9.072488472174095,1.0,0.0,0.0 -962,22.0,1.595384632624183,1.6,0.0,0.0,0.9930796240874862,-9.090632734098673,1.0,0.0,0.0 -962,23.0,4.337451969946997,6.7,0.0,0.0,0.9888880404469532,-9.172018148066435,1.0,0.0,0.0 -962,24.0,0.0,0.0,0.0,0.0,0.9827717280295166,-8.923029494438952,1.0,0.0,0.0 -962,25.0,1.7449519419327,2.3,0.0,0.0,0.9691730452530188,-8.96992705118588,1.0,0.0,0.0 -962,26.0,0.0,0.0,0.0,0.0,0.9858099651388168,-8.709003725965099,1.0,0.0,0.0 -962,27.0,0.0,0.0,0.0,0.0,0.9679450946028956,-6.748428238686911,1.0,0.0,0.0 -962,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727208470721822,-9.271540830169272,1.0,0.0,0.0 -962,29.0,5.284711595567606,1.9,0.0,0.0,0.965658310379367,-9.699223075189613,1.0,0.0,0.0 -963,0.0,0.0,0.0,147.01490713198805,0.0026807982153265,1.0,0.0,0.0,0.0,1.0 -963,1.0,10.81870203998274,12.7,1.5570377742695777e-06,13.818967806747352,0.9823891998493084,-3.371848463417084,0.0,1.0,0.0 -963,2.0,1.1965384744681369,1.2,0.0,0.0,0.9741559689801516,-4.400485018374621,1.0,0.0,0.0 -963,3.0,3.789038502482434,1.6,0.0,0.0,0.9674496474665212,-5.4045620335364095,1.0,0.0,0.0 -963,4.0,46.96413512287439,19.0,2.2110385613899637e-09,25.567811634696422,0.964393062335101,-8.095413862281335,0.0,1.0,0.0 -963,5.0,0.0,0.0,0.0,0.0,0.9667953794323736,-6.345148284699625,1.0,0.0,0.0 -963,6.0,11.367115507447304,10.9,0.0,0.0,0.959525446233386,-7.302663828349812,1.0,0.0,0.0 -963,7.0,14.956730930851714,30.0,2.0840620162161804e-09,39.99420265422369,0.969280277157721,-6.804537084848404,0.0,1.0,0.0 -963,8.0,0.0,0.0,0.0,0.0,0.9876242270022764,-8.418195070294217,1.0,0.0,0.0 -963,9.0,2.8916346466313314,2.0,0.0,0.0,0.9876613800033814,-9.515324521694575,1.0,0.0,0.0 -963,10.0,0.0,0.0,0.0,0.0,0.9876242270022764,-8.418195070294217,0.0,1.0,0.0 -963,11.0,5.583846214184639,7.5,0.0,0.0,1.0105526489046066,-8.960086929430384,1.0,0.0,0.0 -963,12.0,0.0,0.0,2.3319881737805093e-09,14.79956486164103,1.0306557633898454,-8.960086929250785,0.0,1.0,0.0 -963,13.0,3.0910577257093546,1.6,0.0,0.0,0.9760612829174636,-9.774207867326696,1.0,0.0,0.0 -963,14.0,4.0881731210994685,2.5,0.0,0.0,0.9863373268758372,-9.617278301785994,1.0,0.0,0.0 -963,15.0,1.7449519419327,1.8,0.0,0.0,0.9945364671871808,-9.251804757307976,1.0,0.0,0.0 -963,16.0,4.487019279255515,5.8,0.0,0.0,0.9855047695798914,-9.526619487465538,1.0,0.0,0.0 -963,17.0,1.595384632624183,0.9,0.0,0.0,0.9778523564808304,-9.893202251804272,1.0,0.0,0.0 -963,18.0,4.7362981281030425,3.4,0.0,0.0,0.9750595485514444,-9.968335676952384,1.0,0.0,0.0 -963,19.0,1.0968269349291258,0.7,0.0,0.0,0.9776077307973634,-9.883497292660266,1.0,0.0,0.0 -963,20.0,8.7247597096635,11.2,0.0,0.0,0.975951137882986,-9.67208533479558,1.0,0.0,0.0 -963,21.0,0.0,0.0,0.0,0.0,0.975951137882986,-9.67208533479558,1.0,0.0,0.0 -963,22.0,1.595384632624183,1.6,0.0,0.0,0.9729421175783878,-9.813145852463457,1.0,0.0,0.0 -963,23.0,4.337451969946997,6.7,0.0,0.0,0.961718903415219,-9.951828326731896,1.0,0.0,0.0 -963,24.0,0.0,0.0,0.0,0.0,0.965243579522351,-9.508508399437224,1.0,0.0,0.0 -963,25.0,1.7449519419327,2.3,0.0,0.0,0.9513907128792763,-9.557150056799916,1.0,0.0,0.0 -963,26.0,0.0,0.0,0.0,0.0,0.974343972126181,-9.162716775597024,1.0,0.0,0.0 -963,27.0,0.0,0.0,0.0,0.0,0.96443373662278,-6.719497059413904,1.0,0.0,0.0 -963,28.0,1.1965384744681369,0.9,0.0,0.0,0.961092424589819,-9.738750081986536,1.0,0.0,0.0 -963,29.0,5.284711595567606,1.9,0.0,0.0,0.9539419281896494,-10.176911849071992,1.0,0.0,0.0 -964,0.0,0.0,0.0,138.00000592625778,0.0003867947677704,1.0,0.0,0.0,0.0,1.0 -964,1.0,10.81870203998274,12.7,11.10437734458934,12.932880032939424,0.9751782278277752,-4.637418904676685,0.0,1.0,0.0 -964,2.0,1.1965384744681369,1.2,0.0,0.0,0.9478297996966544,-8.122587518781422,1.0,0.0,0.0 -964,3.0,3.789038502482434,1.6,0.0,0.0,0.9483254634817148,-8.100602798506277,1.0,0.0,0.0 -964,4.0,46.96413512287439,19.0,-3.1496974193997147e-10,25.45939844920917,0.9567166183180048,-10.72904352631146,0.0,1.0,0.0 -964,5.0,0.0,0.0,0.0,0.0,0.9583587366669974,-10.32680135889416,1.0,0.0,0.0 -964,6.0,11.367115507447304,10.9,0.0,0.0,0.9510830000571736,-10.737652499120683,1.0,0.0,0.0 -964,7.0,14.956730930851714,30.0,-3.3922204039190875e-10,26.92701002558799,0.9561884860746502,-10.704282738822538,0.0,1.0,0.0 -964,8.0,0.0,0.0,0.0,0.0,1.008196778265012,-12.26115112411488,1.0,0.0,0.0 -964,9.0,2.8916346466313314,2.0,0.0,0.0,1.0007788392962027,-13.262660696834924,1.0,0.0,0.0 -964,10.0,0.0,0.0,-5.93793829334251e-10,21.81249808092974,1.051350782397553,-12.261151124181644,0.0,1.0,0.0 -964,11.0,5.583846214184639,7.5,0.0,0.0,1.013849763080207,-12.099720475175118,1.0,0.0,0.0 -964,12.0,0.0,0.0,-4.6474960048116517e-10,19.277103892945515,1.03980458745371,-12.09972047521048,0.0,1.0,0.0 -964,13.0,3.0910577257093546,1.6,0.0,0.0,1.0026343029298357,-12.604972128714094,1.0,0.0,0.0 -964,14.0,4.0881731210994685,2.5,0.0,0.0,0.9982380288077723,-12.698017729192902,1.0,0.0,0.0 -964,15.0,1.7449519419327,1.8,0.0,0.0,1.0016947802816292,-12.671271522416571,1.0,0.0,0.0 -964,16.0,4.487019279255515,5.8,0.0,0.0,0.9969291389468116,-13.162594809494722,1.0,0.0,0.0 -964,17.0,1.595384632624183,0.9,0.0,0.0,0.9902328748124164,-13.200165409424852,1.0,0.0,0.0 -964,18.0,4.7362981281030425,3.4,0.0,0.0,0.9877114898157832,-13.412833835434384,1.0,0.0,0.0 -964,19.0,1.0968269349291258,0.7,0.0,0.0,0.9903479181359828,-13.403722290336878,1.0,0.0,0.0 -964,20.0,8.7247597096635,11.2,0.0,0.0,0.9905443149144304,-13.365732386909809,1.0,0.0,0.0 -964,21.0,0.0,0.0,0.0,0.0,0.9909645592886102,-13.350390319830222,1.0,0.0,0.0 -964,22.0,1.595384632624183,1.6,0.0,0.0,0.9884277467257468,-12.996303398649635,1.0,0.0,0.0 -964,23.0,4.337451969946997,6.7,0.0,0.0,0.981912261151355,-13.274805903008478,1.0,0.0,0.0 -964,24.0,0.0,0.0,0.0,0.0,0.973994229326582,-12.94375205595123,1.0,0.0,0.0 -964,25.0,1.7449519419327,2.3,0.0,0.0,0.9602694538568136,-12.991510999889226,1.0,0.0,0.0 -964,26.0,0.0,0.0,0.0,0.0,0.9759543012361976,-12.679263897903729,1.0,0.0,0.0 -964,27.0,0.0,0.0,0.0,0.0,0.9563914542364272,-10.65647180024392,1.0,0.0,0.0 -964,28.0,1.1965384744681369,0.9,0.0,0.0,0.9627258152778404,-13.25337246611083,1.0,0.0,0.0 -964,29.0,5.284711595567606,1.9,0.0,0.0,0.95558780808364,-13.690039064176297,1.0,0.0,0.0 -965,0.0,0.0,0.0,138.00000477680675,0.0003003161053172,1.0,0.0,0.0,0.0,1.0 -965,1.0,10.81870203998274,12.7,11.05211227692485,11.262566317274748,0.9751782788991792,-4.637419601069385,0.0,1.0,0.0 -965,2.0,1.1965384744681369,1.2,0.0,0.0,0.9531157301158926,-8.481222252742693,1.0,0.0,0.0 -965,3.0,3.789038502482434,1.6,0.0,0.0,0.9536069662689132,-8.45944542723197,1.0,0.0,0.0 -965,4.0,46.96413512287439,19.0,2.7912340382747927e-10,35.96271098008947,0.957945905247928,-12.042539286046969,0.0,1.0,0.0 -965,5.0,0.0,0.0,0.0,0.0,0.9571940082009428,-8.814631144049883,1.0,0.0,0.0 -965,6.0,11.367115507447304,10.9,0.0,0.0,0.9400008853834778,-12.588891994173869,1.0,0.0,0.0 -965,7.0,14.956730930851714,30.0,3.5064403576736876e-10,28.761615964752263,0.9556528888971952,-9.205460954921802,0.0,1.0,0.0 -965,8.0,0.0,0.0,0.0,0.0,1.0037120191752626,-10.65595643858483,1.0,0.0,0.0 -965,9.0,2.8916346466313314,2.0,0.0,0.0,0.9938997520779436,-11.614747361857829,1.0,0.0,0.0 -965,10.0,0.0,0.0,3.8840493357624736e-10,22.32518200133129,1.0480206669227523,-10.655956438540825,0.0,1.0,0.0 -965,11.0,5.583846214184639,7.5,0.0,0.0,0.9986333342624956,-11.32367896676881,1.0,0.0,0.0 -965,12.0,0.0,0.0,2.772690486981915e-10,8.998990292320254,1.0110936893629083,-11.323678966746783,0.0,1.0,0.0 -965,13.0,3.0910577257093546,1.6,0.0,0.0,0.988476485347613,-11.701042371891376,1.0,0.0,0.0 -965,14.0,4.0881731210994685,2.5,0.0,0.0,0.9861698611768638,-11.683684544974245,1.0,0.0,0.0 -965,15.0,1.7449519419327,1.8,0.0,0.0,0.9906242511504316,-11.542633562105935,1.0,0.0,0.0 -965,16.0,4.487019279255515,5.8,0.0,0.0,0.9885217069003568,-11.67304058583762,1.0,0.0,0.0 -965,17.0,1.595384632624183,0.9,0.0,0.0,0.9824223634093578,-11.832727283376842,1.0,0.0,0.0 -965,18.0,4.7362981281030425,3.4,0.0,0.0,0.9754536104538348,-12.230380643219837,1.0,0.0,0.0 -965,19.0,1.0968269349291258,0.7,0.0,0.0,0.979476940934356,-12.106565017039191,1.0,0.0,0.0 -965,20.0,8.7247597096635,11.2,0.0,0.0,0.9834980319487576,-11.75833156084978,1.0,0.0,0.0 -965,21.0,0.0,0.0,0.0,0.0,0.9838871218402296,-11.755289814021712,1.0,0.0,0.0 -965,22.0,1.595384632624183,1.6,0.0,0.0,0.9781317920802748,-11.806722718170816,1.0,0.0,0.0 -965,23.0,4.337451969946997,6.7,0.0,0.0,0.9740009710154895,-11.843912256663083,1.0,0.0,0.0 -965,24.0,0.0,0.0,0.0,0.0,0.9685500949755192,-11.51737064711665,1.0,0.0,0.0 -965,25.0,1.7449519419327,2.3,0.0,0.0,0.954745912952102,-11.565675894602812,1.0,0.0,0.0 -965,26.0,0.0,0.0,0.0,0.0,0.9720841944615866,-11.252519860518792,1.0,0.0,0.0 -965,27.0,0.0,0.0,0.0,0.0,0.9550262953195698,-9.150818157485684,1.0,0.0,0.0 -965,28.0,1.1965384744681369,0.9,0.0,0.0,0.9588001450686936,-11.831270602387807,1.0,0.0,0.0 -965,29.0,5.284711595567606,1.9,0.0,0.0,0.9516320465643826,-12.271543686504344,1.0,0.0,0.0 -966,0.0,0.0,0.0,146.78428486806786,0.0001548090235559,1.0,0.0,0.0,0.0,1.0 -966,1.0,10.81870203998274,12.7,1.7408671617210308e-07,9.052938424899104,0.9817141613181268,-3.358899005049281,0.0,1.0,0.0 -966,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761828950297176,-4.406281060602224,1.0,0.0,0.0 -966,3.0,3.789038502482434,1.6,0.0,0.0,0.9699480380100076,-5.411078896642632,1.0,0.0,0.0 -966,4.0,46.96413512287439,19.0,-2.2743385375623548e-10,23.33077556175794,0.9632964318112572,-8.084020453351227,0.0,1.0,0.0 -966,5.0,0.0,0.0,0.0,0.0,0.96984027086417,-6.428736477350425,1.0,0.0,0.0 -966,6.0,11.367115507447304,10.9,0.0,0.0,0.9608774248715202,-7.348880062409097,1.0,0.0,0.0 -966,7.0,14.956730930851714,30.0,-2.1467141109212627e-10,30.14089057910261,0.9688790444330534,-6.816749598359857,0.0,1.0,0.0 -966,8.0,0.0,0.0,0.0,0.0,1.0172632138096631,-8.075577715032265,1.0,0.0,0.0 -966,9.0,2.8916346466313314,2.0,0.0,0.0,1.0085726533001114,-8.93181003793696,1.0,0.0,0.0 -966,10.0,0.0,0.0,-1.2378540875266682e-10,21.739733171499186,1.0599253185861,-8.075577715045947,0.0,1.0,0.0 -966,11.0,5.583846214184639,7.5,0.0,0.0,1.0146963573155314,-8.50234621595401,1.0,0.0,0.0 -966,12.0,0.0,0.0,-2.817651158641552e-10,8.84433022688833,1.026755761106266,-8.502346215975702,0.0,1.0,0.0 -966,13.0,3.0910577257093546,1.6,0.0,0.0,1.004194785054918,-8.917277239002868,1.0,0.0,0.0 -966,14.0,4.0881731210994685,2.5,0.0,0.0,1.001093736242763,-8.937714864862388,1.0,0.0,0.0 -966,15.0,1.7449519419327,1.8,0.0,0.0,1.0060799905536784,-8.774739789692198,1.0,0.0,0.0 -966,16.0,4.487019279255515,5.8,0.0,0.0,1.0035362391689322,-8.962149251514559,1.0,0.0,0.0 -966,17.0,1.595384632624183,0.9,0.0,0.0,0.9949290574296898,-9.23775941644345,1.0,0.0,0.0 -966,18.0,4.7362981281030425,3.4,0.0,0.0,0.9934728308385052,-9.330047025069923,1.0,0.0,0.0 -966,19.0,1.0968269349291258,0.7,0.0,0.0,0.9966506329297424,-9.25897327707877,1.0,0.0,0.0 -966,20.0,8.7247597096635,11.2,0.0,0.0,0.9983163380722888,-9.074412962724123,1.0,0.0,0.0 -966,21.0,0.0,0.0,0.0,0.0,0.9986964116934248,-9.072488472174095,1.0,0.0,0.0 -966,22.0,1.595384632624183,1.6,0.0,0.0,0.9930796240874862,-9.090632734098673,1.0,0.0,0.0 -966,23.0,4.337451969946997,6.7,0.0,0.0,0.9888880404469532,-9.172018148066435,1.0,0.0,0.0 -966,24.0,0.0,0.0,0.0,0.0,0.9827717280295166,-8.923029494438952,1.0,0.0,0.0 -966,25.0,1.7449519419327,2.3,0.0,0.0,0.9691730452530188,-8.96992705118588,1.0,0.0,0.0 -966,26.0,0.0,0.0,0.0,0.0,0.9858099651388168,-8.709003725965099,1.0,0.0,0.0 -966,27.0,0.0,0.0,0.0,0.0,0.9679450946028956,-6.748428238686911,1.0,0.0,0.0 -966,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727208470721822,-9.271540830169272,1.0,0.0,0.0 -966,29.0,5.284711595567606,1.9,0.0,0.0,0.965658310379367,-9.699223075189613,1.0,0.0,0.0 -967,0.0,0.0,0.0,126.57276056818093,2.735545390208926e-06,1.0,0.0,0.0,0.0,1.0 -967,1.0,10.81870203998274,12.7,27.39332183095364,1.4549978729783746,0.9753438973929685,-4.176351982779609,0.0,1.0,0.0 -967,2.0,1.1965384744681369,1.2,0.0,0.0,1.0008490714362823,-0.134984838759646,1.0,0.0,0.0 -967,3.0,3.789038502482434,1.6,0.0,0.0,0.9509866484019964,-11.397455880901983,1.0,0.0,0.0 -967,4.0,46.96413512287439,19.0,-1.9058787658837288e-08,39.99999931540387,0.9415379019961196,-19.82197417280901,0.0,1.0,0.0 -967,5.0,0.0,0.0,0.0,0.0,0.950563887627533,-12.34043792921704,1.0,0.0,0.0 -967,6.0,11.367115507447304,10.9,0.0,0.0,0.94000000068739,-15.639163126950894,1.0,0.0,0.0 -967,7.0,14.956730930851714,30.0,-3.838747664700445e-08,39.99999837737755,0.9666005714613136,-15.714458038380608,0.0,1.0,0.0 -967,8.0,0.0,0.0,0.0,0.0,1.030241209886595,-18.004597661962762,1.0,0.0,0.0 -967,9.0,2.8916346466313314,2.0,0.0,0.0,1.0145033947266124,-18.0045976583344,1.0,0.0,0.0 -967,10.0,0.0,0.0,-6.01711122260327e-08,15.165530795563605,1.0599999876436537,-18.00459766852919,0.0,1.0,0.0 -967,11.0,5.583846214184639,7.5,0.0,0.0,1.0295312096816684,-15.02657475798169,1.0,0.0,0.0 -967,12.0,0.0,0.0,-3.06125508107087e-08,23.0692219938521,1.0599999936302271,-15.026574760231805,0.0,1.0,0.0 -967,13.0,3.0910577257093546,1.6,0.0,0.0,1.0217837139277728,-15.350126214805476,1.0,0.0,0.0 -967,14.0,4.0881731210994685,2.5,0.0,0.0,1.007439637516491,-15.951034346276272,1.0,0.0,0.0 -967,15.0,1.7449519419327,1.8,0.0,0.0,1.0017273134248588,-18.29905610617876,1.0,0.0,0.0 -967,16.0,4.487019279255515,5.8,0.0,0.0,1.0060984050758042,-18.16191360859618,1.0,0.0,0.0 -967,17.0,1.595384632624183,0.9,0.0,0.0,1.0008713043789723,-16.971689527573417,1.0,0.0,0.0 -967,18.0,4.7362981281030425,3.4,0.0,0.0,0.9992687634513736,-17.495210125590983,1.0,0.0,0.0 -967,19.0,1.0968269349291258,0.7,0.0,0.0,1.0023535837091866,-17.652617925912256,1.0,0.0,0.0 -967,20.0,8.7247597096635,11.2,0.0,0.0,1.003110397908508,-18.153078822184472,1.0,0.0,0.0 -967,21.0,0.0,0.0,0.0,0.0,1.003110397908508,-18.153078822184472,1.0,0.0,0.0 -967,22.0,1.595384632624183,1.6,0.0,0.0,0.9892164812124294,-16.167525961482195,1.0,0.0,0.0 -967,23.0,4.337451969946997,6.7,0.0,0.0,0.9714537428097648,-16.34308197021421,1.0,0.0,0.0 -967,24.0,0.0,0.0,0.0,0.0,0.9662334907150474,-15.915111427154926,1.0,0.0,0.0 -967,25.0,1.7449519419327,2.3,0.0,0.0,0.9523952358740074,-15.963651999793733,1.0,0.0,0.0 -967,26.0,0.0,0.0,0.0,0.0,0.9699008208297312,-15.586646619624265,1.0,0.0,0.0 -967,27.0,0.0,0.0,0.0,0.0,0.9524060186569008,-13.3770893428031,1.0,0.0,0.0 -967,28.0,1.1965384744681369,0.9,0.0,0.0,0.9565852125940472,-16.16804131663574,1.0,0.0,0.0 -967,29.0,5.284711595567606,1.9,0.0,0.0,0.9494000222030946,-16.610369041351827,1.0,0.0,0.0 -968,0.0,0.0,0.0,147.3501287607384,0.0112965270339771,1.0,0.0,0.0,0.0,1.0 -968,1.0,10.81870203998274,12.7,1.8075680484495528e-06,28.73584802291744,0.9838302955946676,-3.408725036758108,0.0,1.0,0.0 -968,2.0,1.1965384744681369,1.2,0.0,0.0,0.969842522247654,-4.345797419319075,1.0,0.0,0.0 -968,3.0,3.789038502482434,1.6,0.0,0.0,0.9621284911430515,-5.338015896571136,1.0,0.0,0.0 -968,4.0,46.96413512287439,19.0,2.8947256638829476e-09,30.31755119268473,0.9637531360605448,-8.136422940371862,0.0,1.0,0.0 -968,5.0,0.0,0.0,0.0,0.0,0.9544869695262916,-6.136165080384729,1.0,0.0,0.0 -968,6.0,11.367115507447304,10.9,0.0,0.0,0.9519463943983996,-7.194537676858593,1.0,0.0,0.0 -968,7.0,14.956730930851714,30.0,0.0,0.0,0.9421065783099808,-6.3533329839122805,0.0,1.0,0.0 -968,8.0,0.0,0.0,0.0,0.0,1.0326119949690418,-11.1176136365674,1.0,0.0,0.0 -968,9.0,2.8916346466313314,2.0,0.0,0.0,1.0181364574450262,-11.117613636621275,1.0,0.0,0.0 -968,10.0,0.0,0.0,8.986494898064398e-10,13.948942717026217,1.059983920422266,-11.117613636469557,0.0,1.0,0.0 -968,11.0,5.583846214184639,7.5,0.0,0.0,1.030669480968596,-9.051669670365223,1.0,0.0,0.0 -968,12.0,0.0,0.0,1.2009116382654527e-09,22.2067749910682,1.0599992057631653,-9.051669670277054,0.0,1.0,0.0 -968,13.0,3.0910577257093546,1.6,0.0,0.0,1.0171890285499734,-9.618846625093894,1.0,0.0,0.0 -968,14.0,4.0881731210994685,2.5,0.0,0.0,1.0099610923349345,-9.731789241777015,1.0,0.0,0.0 -968,15.0,1.7449519419327,1.8,0.0,0.0,1.0255727629280786,-9.147407067489072,1.0,0.0,0.0 -968,16.0,4.487019279255515,5.8,0.0,0.0,1.0118543585561772,-11.223969641685224,1.0,0.0,0.0 -968,17.0,1.595384632624183,0.9,0.0,0.0,0.9906368506446585,-10.354111461035814,1.0,0.0,0.0 -968,18.0,4.7362981281030425,3.4,0.0,0.0,0.9814268646572624,-10.643851578635363,1.0,0.0,0.0 -968,19.0,1.0968269349291258,0.7,0.0,0.0,0.9805609775024312,-10.674087206378417,1.0,0.0,0.0 -968,20.0,8.7247597096635,11.2,0.0,0.0,1.0071104643593043,-11.120330326835983,1.0,0.0,0.0 -968,21.0,0.0,0.0,0.0,0.0,1.0072300593838346,-11.073913112240795,1.0,0.0,0.0 -968,22.0,1.595384632624183,1.6,0.0,0.0,1.0008712341247945,-10.131919671396346,1.0,0.0,0.0 -968,23.0,4.337451969946997,6.7,0.0,0.0,0.9952775405056644,-10.550477317437434,1.0,0.0,0.0 -968,24.0,0.0,0.0,0.0,0.0,0.9820399488275706,-9.600837369691716,1.0,0.0,0.0 -968,25.0,1.7449519419327,2.3,0.0,0.0,0.968430843567157,-9.64780584066774,1.0,0.0,0.0 -968,26.0,0.0,0.0,0.0,0.0,0.9805142540947444,-8.95277886826869,1.0,0.0,0.0 -968,27.0,0.0,0.0,0.0,0.0,0.9510756971884872,-6.507833857955818,1.0,0.0,0.0 -968,28.0,1.1965384744681369,0.9,0.0,0.0,0.967350626644252,-9.521489461257431,1.0,0.0,0.0 -968,29.0,5.284711595567606,1.9,0.0,0.0,0.9602477427818544,-9.95396397535102,1.0,0.0,0.0 -969,0.0,0.0,0.0,146.78428486806786,0.0001548090235559,1.0,0.0,0.0,0.0,1.0 -969,1.0,10.81870203998274,12.7,1.7408671617210308e-07,9.052938424899104,0.9817141613181268,-3.358899005049281,0.0,1.0,0.0 -969,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761828950297176,-4.406281060602224,1.0,0.0,0.0 -969,3.0,3.789038502482434,1.6,0.0,0.0,0.9699480380100076,-5.411078896642632,1.0,0.0,0.0 -969,4.0,46.96413512287439,19.0,-2.2743385375623548e-10,23.33077556175794,0.9632964318112572,-8.084020453351227,0.0,1.0,0.0 -969,5.0,0.0,0.0,0.0,0.0,0.96984027086417,-6.428736477350425,1.0,0.0,0.0 -969,6.0,11.367115507447304,10.9,0.0,0.0,0.9608774248715202,-7.348880062409097,1.0,0.0,0.0 -969,7.0,14.956730930851714,30.0,-2.1467141109212627e-10,30.14089057910261,0.9688790444330534,-6.816749598359857,0.0,1.0,0.0 -969,8.0,0.0,0.0,0.0,0.0,1.0172632138096631,-8.075577715032265,1.0,0.0,0.0 -969,9.0,2.8916346466313314,2.0,0.0,0.0,1.0085726533001114,-8.93181003793696,1.0,0.0,0.0 -969,10.0,0.0,0.0,-1.2378540875266682e-10,21.739733171499186,1.0599253185861,-8.075577715045947,0.0,1.0,0.0 -969,11.0,5.583846214184639,7.5,0.0,0.0,1.0146963573155314,-8.50234621595401,1.0,0.0,0.0 -969,12.0,0.0,0.0,-2.817651158641552e-10,8.84433022688833,1.026755761106266,-8.502346215975702,0.0,1.0,0.0 -969,13.0,3.0910577257093546,1.6,0.0,0.0,1.004194785054918,-8.917277239002868,1.0,0.0,0.0 -969,14.0,4.0881731210994685,2.5,0.0,0.0,1.001093736242763,-8.937714864862388,1.0,0.0,0.0 -969,15.0,1.7449519419327,1.8,0.0,0.0,1.0060799905536784,-8.774739789692198,1.0,0.0,0.0 -969,16.0,4.487019279255515,5.8,0.0,0.0,1.0035362391689322,-8.962149251514559,1.0,0.0,0.0 -969,17.0,1.595384632624183,0.9,0.0,0.0,0.9949290574296898,-9.23775941644345,1.0,0.0,0.0 -969,18.0,4.7362981281030425,3.4,0.0,0.0,0.9934728308385052,-9.330047025069923,1.0,0.0,0.0 -969,19.0,1.0968269349291258,0.7,0.0,0.0,0.9966506329297424,-9.25897327707877,1.0,0.0,0.0 -969,20.0,8.7247597096635,11.2,0.0,0.0,0.9983163380722888,-9.074412962724123,1.0,0.0,0.0 -969,21.0,0.0,0.0,0.0,0.0,0.9986964116934248,-9.072488472174095,1.0,0.0,0.0 -969,22.0,1.595384632624183,1.6,0.0,0.0,0.9930796240874862,-9.090632734098673,1.0,0.0,0.0 -969,23.0,4.337451969946997,6.7,0.0,0.0,0.9888880404469532,-9.172018148066435,1.0,0.0,0.0 -969,24.0,0.0,0.0,0.0,0.0,0.9827717280295166,-8.923029494438952,1.0,0.0,0.0 -969,25.0,1.7449519419327,2.3,0.0,0.0,0.9691730452530188,-8.96992705118588,1.0,0.0,0.0 -969,26.0,0.0,0.0,0.0,0.0,0.9858099651388168,-8.709003725965099,1.0,0.0,0.0 -969,27.0,0.0,0.0,0.0,0.0,0.9679450946028956,-6.748428238686911,1.0,0.0,0.0 -969,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727208470721822,-9.271540830169272,1.0,0.0,0.0 -969,29.0,5.284711595567606,1.9,0.0,0.0,0.965658310379367,-9.699223075189613,1.0,0.0,0.0 -970,0.0,0.0,0.0,146.78428486806786,0.0001548090235559,1.0,0.0,0.0,0.0,1.0 -970,1.0,10.81870203998274,12.7,1.7408671617210308e-07,9.052938424899104,0.9817141613181268,-3.358899005049281,0.0,1.0,0.0 -970,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761828950297176,-4.406281060602224,1.0,0.0,0.0 -970,3.0,3.789038502482434,1.6,0.0,0.0,0.9699480380100076,-5.411078896642632,1.0,0.0,0.0 -970,4.0,46.96413512287439,19.0,-2.2743385375623548e-10,23.33077556175794,0.9632964318112572,-8.084020453351227,0.0,1.0,0.0 -970,5.0,0.0,0.0,0.0,0.0,0.96984027086417,-6.428736477350425,1.0,0.0,0.0 -970,6.0,11.367115507447304,10.9,0.0,0.0,0.9608774248715202,-7.348880062409097,1.0,0.0,0.0 -970,7.0,14.956730930851714,30.0,-2.1467141109212627e-10,30.14089057910261,0.9688790444330534,-6.816749598359857,0.0,1.0,0.0 -970,8.0,0.0,0.0,0.0,0.0,1.0172632138096631,-8.075577715032265,1.0,0.0,0.0 -970,9.0,2.8916346466313314,2.0,0.0,0.0,1.0085726533001114,-8.93181003793696,1.0,0.0,0.0 -970,10.0,0.0,0.0,-1.2378540875266682e-10,21.739733171499186,1.0599253185861,-8.075577715045947,0.0,1.0,0.0 -970,11.0,5.583846214184639,7.5,0.0,0.0,1.0146963573155314,-8.50234621595401,1.0,0.0,0.0 -970,12.0,0.0,0.0,-2.817651158641552e-10,8.84433022688833,1.026755761106266,-8.502346215975702,0.0,1.0,0.0 -970,13.0,3.0910577257093546,1.6,0.0,0.0,1.004194785054918,-8.917277239002868,1.0,0.0,0.0 -970,14.0,4.0881731210994685,2.5,0.0,0.0,1.001093736242763,-8.937714864862388,1.0,0.0,0.0 -970,15.0,1.7449519419327,1.8,0.0,0.0,1.0060799905536784,-8.774739789692198,1.0,0.0,0.0 -970,16.0,4.487019279255515,5.8,0.0,0.0,1.0035362391689322,-8.962149251514559,1.0,0.0,0.0 -970,17.0,1.595384632624183,0.9,0.0,0.0,0.9949290574296898,-9.23775941644345,1.0,0.0,0.0 -970,18.0,4.7362981281030425,3.4,0.0,0.0,0.9934728308385052,-9.330047025069923,1.0,0.0,0.0 -970,19.0,1.0968269349291258,0.7,0.0,0.0,0.9966506329297424,-9.25897327707877,1.0,0.0,0.0 -970,20.0,8.7247597096635,11.2,0.0,0.0,0.9983163380722888,-9.074412962724123,1.0,0.0,0.0 -970,21.0,0.0,0.0,0.0,0.0,0.9986964116934248,-9.072488472174095,1.0,0.0,0.0 -970,22.0,1.595384632624183,1.6,0.0,0.0,0.9930796240874862,-9.090632734098673,1.0,0.0,0.0 -970,23.0,4.337451969946997,6.7,0.0,0.0,0.9888880404469532,-9.172018148066435,1.0,0.0,0.0 -970,24.0,0.0,0.0,0.0,0.0,0.9827717280295166,-8.923029494438952,1.0,0.0,0.0 -970,25.0,1.7449519419327,2.3,0.0,0.0,0.9691730452530188,-8.96992705118588,1.0,0.0,0.0 -970,26.0,0.0,0.0,0.0,0.0,0.9858099651388168,-8.709003725965099,1.0,0.0,0.0 -970,27.0,0.0,0.0,0.0,0.0,0.9679450946028956,-6.748428238686911,1.0,0.0,0.0 -970,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727208470721822,-9.271540830169272,1.0,0.0,0.0 -970,29.0,5.284711595567606,1.9,0.0,0.0,0.965658310379367,-9.699223075189613,1.0,0.0,0.0 -971,0.0,0.0,0.0,147.79094101436,0.0030257538925937,1.0,0.0,0.0,0.0,1.0 -971,1.0,10.81870203998274,12.7,2.0316983892986443e-06,22.52164005336845,0.9826963358717103,-3.46067664027197,0.0,1.0,0.0 -971,2.0,1.1965384744681369,1.2,0.0,0.0,0.9727317136740834,-4.228216295509981,1.0,0.0,0.0 -971,3.0,3.789038502482434,1.6,0.0,0.0,0.965677366857946,-5.190983994236701,1.0,0.0,0.0 -971,4.0,46.96413512287439,19.0,-3.0518388578939406e-09,30.26966844823976,0.9639595689656204,-8.37654757248637,0.0,1.0,0.0 -971,5.0,0.0,0.0,0.0,0.0,0.955945121409368,-6.588827671356973,1.0,0.0,0.0 -971,6.0,11.367115507447304,10.9,0.0,0.0,0.952876038814797,-7.559987967192436,1.0,0.0,0.0 -971,7.0,14.956730930851714,30.0,0.0,0.0,0.9433419650277732,-6.815175200643463,0.0,1.0,0.0 -971,8.0,0.0,0.0,0.0,0.0,1.004686744624129,-9.71159104795493,1.0,0.0,0.0 -971,9.0,2.8916346466313314,2.0,0.0,0.0,0.995166022649806,-11.333064831659298,1.0,0.0,0.0 -971,10.0,0.0,0.0,-4.84163044573597e-09,23.999474916744187,1.052132214989583,-9.711591048500784,0.0,1.0,0.0 -971,11.0,5.583846214184639,7.5,0.0,0.0,0.984233755047562,-14.653552519737213,1.0,0.0,0.0 -971,12.0,0.0,0.0,3.1454218279183246e-10,22.34017944543286,1.0150463874649986,-14.65355251971195,0.0,1.0,0.0 -971,13.0,3.0910577257093546,1.6,0.0,0.0,0.9741313252834672,-14.76807483097759,1.0,0.0,0.0 -971,14.0,4.0881731210994685,2.5,0.0,0.0,0.973847281126036,-14.48561064966839,1.0,0.0,0.0 -971,15.0,1.7449519419327,1.8,0.0,0.0,0.9848232334159542,-13.343003992320922,1.0,0.0,0.0 -971,16.0,4.487019279255515,5.8,0.0,0.0,0.9866731363388732,-12.027328732377288,1.0,0.0,0.0 -971,17.0,1.595384632624183,0.9,0.0,0.0,0.9700519075047114,-14.638464007038088,1.0,0.0,0.0 -971,18.0,4.7362981281030425,3.4,0.0,0.0,0.9767443688821724,-11.947102405494018,1.0,0.0,0.0 -971,19.0,1.0968269349291258,0.7,0.0,0.0,0.980762376562643,-11.82361246549345,1.0,0.0,0.0 -971,20.0,8.7247597096635,11.2,0.0,0.0,0.9840431779546054,-11.585869610348595,1.0,0.0,0.0 -971,21.0,0.0,0.0,0.0,0.0,0.9841896480969596,-11.617777802591952,1.0,0.0,0.0 -971,22.0,1.595384632624183,1.6,0.0,0.0,0.969313311082931,-13.546513548525128,1.0,0.0,0.0 -971,23.0,4.337451969946997,6.7,0.0,0.0,0.9702511501823105,-12.157601736594147,1.0,0.0,0.0 -971,24.0,0.0,0.0,0.0,0.0,0.9674865872844304,-10.897208871628775,1.0,0.0,0.0 -971,25.0,1.7449519419327,2.3,0.0,0.0,0.9536667842531004,-10.945621937449166,1.0,0.0,0.0 -971,26.0,0.0,0.0,0.0,0.0,0.9725587768878188,-10.051057652151504,1.0,0.0,0.0 -971,27.0,0.0,0.0,0.0,0.0,0.9511208624350466,-7.014458789661225,1.0,0.0,0.0 -971,28.0,1.1965384744681369,0.9,0.0,0.0,0.9592815668638814,-10.62923609659848,1.0,0.0,0.0 -971,29.0,5.284711595567606,1.9,0.0,0.0,0.952117172413103,-11.069064497369697,1.0,0.0,0.0 -972,0.0,0.0,0.0,131.01863873757944,4.6098493911017613e-07,1.0,0.0,0.0,0.0,1.0 -972,1.0,10.81870203998274,12.7,16.317767826763692,12.042304170346265,0.9825899815134512,-3.277594251676514,0.0,1.0,0.0 -972,2.0,1.1965384744681369,1.2,0.0,0.0,0.9793677208662918,-3.095406169688509,1.0,0.0,0.0 -972,3.0,3.789038502482434,1.6,0.0,0.0,0.973807521327812,-3.783749040516768,1.0,0.0,0.0 -972,4.0,46.96413512287439,19.0,-2.2360125014441953e-09,39.99999953572991,0.9724065156407748,-9.219761275133228,0.0,1.0,0.0 -972,5.0,0.0,0.0,0.0,0.0,0.952505022833672,-8.205047462301168,1.0,0.0,0.0 -972,6.0,11.367115507447304,10.9,0.0,0.0,0.95418507094447,-8.850451009690529,1.0,0.0,0.0 -972,7.0,14.956730930851714,30.0,0.0,0.0,0.9400000002343633,-8.399604677964401,0.0,1.0,0.0 -972,8.0,0.0,0.0,0.0,0.0,1.0097101041147212,-9.215981504847528,1.0,0.0,0.0 -972,9.0,2.8916346466313314,2.0,0.0,0.0,1.0037750309927576,-9.73469506477366,1.0,0.0,0.0 -972,10.0,0.0,0.0,-4.5547269900464066e-09,23.999999671654216,1.0569407545573268,-9.21598150535616,0.0,1.0,0.0 -972,11.0,5.583846214184639,7.5,0.0,0.0,1.031652975454677,-8.333104574671127,1.0,0.0,0.0 -972,12.0,0.0,0.0,-2.0587504448256423e-09,21.462745881904013,1.0599999983613897,-8.33310457482214,0.0,1.0,0.0 -972,13.0,3.0910577257093546,1.6,0.0,0.0,1.0184317088807475,-8.893105853921167,1.0,0.0,0.0 -972,14.0,4.0881731210994685,2.5,0.0,0.0,1.011489593783803,-9.005278972340655,1.0,0.0,0.0 -972,15.0,1.7449519419327,1.8,0.0,0.0,1.0129738063338034,-8.969784966294787,1.0,0.0,0.0 -972,16.0,4.487019279255515,5.8,0.0,0.0,1.0025928894436031,-9.588310877313855,1.0,0.0,0.0 -972,17.0,1.595384632624183,0.9,0.0,0.0,0.9999307718312626,-9.556068492803435,1.0,0.0,0.0 -972,18.0,4.7362981281030425,3.4,0.0,0.0,0.995289422206972,-9.800843283482877,1.0,0.0,0.0 -972,19.0,1.0968269349291258,0.7,0.0,0.0,0.9967772924173136,-9.810505722197746,1.0,0.0,0.0 -972,20.0,8.7247597096635,11.2,0.0,0.0,0.9897405209565212,-9.91315753412343,1.0,0.0,0.0 -972,21.0,0.0,0.0,0.0,0.0,0.9889458873316838,-9.920672382407826,1.0,0.0,0.0 -972,22.0,1.595384632624183,1.6,0.0,0.0,0.9962201290010284,-9.450396597333365,1.0,0.0,0.0 -972,23.0,4.337451969946997,6.7,0.0,0.0,0.9824390919479192,-9.93879622966943,1.0,0.0,0.0 -972,24.0,0.0,0.0,0.0,0.0,0.9697359677730162,-10.00203048507966,1.0,0.0,0.0 -972,25.0,1.7449519419327,2.3,0.0,0.0,0.9559491618494002,-10.050215932226306,1.0,0.0,0.0 -972,26.0,0.0,0.0,0.0,0.0,0.968895532035028,-9.98993465878599,1.0,0.0,0.0 -972,27.0,0.0,0.0,0.0,0.0,0.9485915694129768,-8.440866748869032,1.0,0.0,0.0 -972,28.0,1.1965384744681369,0.9,0.0,0.0,0.9555653413718914,-10.572552835737952,1.0,0.0,0.0 -972,29.0,5.284711595567606,1.9,0.0,0.0,0.948372253152649,-11.01583147553578,1.0,0.0,0.0 -973,0.0,0.0,0.0,147.01380865441635,0.0176288501952726,1.0,0.0,0.0,0.0,1.0 -973,1.0,10.81870203998274,12.7,3.5022500345862685e-06,22.30435013839336,0.9830977497254498,-3.393508213073674,0.0,1.0,0.0 -973,2.0,1.1965384744681369,1.2,0.0,0.0,0.9720585535721707,-4.346989336425803,1.0,0.0,0.0 -973,3.0,3.789038502482434,1.6,0.0,0.0,0.96485940389836,-5.338784944416524,1.0,0.0,0.0 -973,4.0,46.96413512287439,19.0,7.560597429649144e-09,27.773633435285237,0.9632659410701744,-8.12836407675559,0.0,1.0,0.0 -973,5.0,0.0,0.0,0.0,0.0,0.9593904941931684,-6.2575905401308205,1.0,0.0,0.0 -973,6.0,11.367115507447304,10.9,0.0,0.0,0.9546567682974684,-7.263822737374764,1.0,0.0,0.0 -973,7.0,14.956730930851714,30.0,0.0,0.0,0.946988195041564,-6.458723235462492,0.0,1.0,0.0 -973,8.0,0.0,0.0,0.0,0.0,1.014206975893999,-7.901344397618052,1.0,0.0,0.0 -973,9.0,2.8916346466313314,2.0,0.0,0.0,1.0078895923273854,-8.747335772701424,1.0,0.0,0.0 -973,10.0,0.0,0.0,8.173202620675034e-09,23.33634521214441,1.059999088878381,-7.901344396712014,0.0,1.0,0.0 -973,11.0,5.583846214184639,7.5,0.0,0.0,1.0257549059861004,-8.524713567959486,1.0,0.0,0.0 -973,12.0,0.0,0.0,8.392832328240251e-09,21.26461247366935,1.0540001186168213,-8.524713567336793,0.0,1.0,0.0 -973,13.0,3.0910577257093546,1.6,0.0,0.0,1.0136795843540145,-8.92233850095823,1.0,0.0,0.0 -973,14.0,4.0881731210994685,2.5,0.0,0.0,1.009046112624273,-8.895870286332542,1.0,0.0,0.0 -973,15.0,1.7449519419327,1.8,0.0,0.0,1.0122307700059536,-8.68289938457472,1.0,0.0,0.0 -973,16.0,4.487019279255515,5.8,0.0,0.0,1.0049562727851995,-8.814540453458337,1.0,0.0,0.0 -973,17.0,1.595384632624183,0.9,0.0,0.0,0.9998879947187098,-9.141693302692618,1.0,0.0,0.0 -973,18.0,4.7362981281030425,3.4,0.0,0.0,0.9966465745113416,-9.202737585334788,1.0,0.0,0.0 -973,19.0,1.0968269349291258,0.7,0.0,0.0,0.9988714405445668,-9.11571239326257,1.0,0.0,0.0 -973,20.0,8.7247597096635,11.2,0.0,0.0,0.9977433528422472,-8.894769762686717,1.0,0.0,0.0 -973,21.0,0.0,0.0,0.0,0.0,0.9981600557317162,-8.89438506558423,1.0,0.0,0.0 -973,22.0,1.595384632624183,1.6,0.0,0.0,0.9975990537521138,-8.999678574815439,1.0,0.0,0.0 -973,23.0,4.337451969946997,6.7,0.0,0.0,0.988791729877687,-9.017786552408284,1.0,0.0,0.0 -973,24.0,0.0,0.0,0.0,0.0,0.9777831241601096,-8.705383900134759,1.0,0.0,0.0 -973,25.0,1.7449519419327,2.3,0.0,0.0,0.9641130676508328,-8.752768114634767,1.0,0.0,0.0 -973,26.0,0.0,0.0,0.0,0.0,0.9778017201384268,-8.45615395106784,1.0,0.0,0.0 -973,27.0,0.0,0.0,0.0,0.0,0.9554750358945724,-6.543418233760454,1.0,0.0,0.0 -973,28.0,1.1965384744681369,0.9,0.0,0.0,0.9645995898236956,-9.028066315837096,1.0,0.0,0.0 -973,29.0,5.284711595567606,1.9,0.0,0.0,0.957475855447812,-9.463027130785086,1.0,0.0,0.0 -974,0.0,0.0,0.0,146.78428486806786,0.0001548090235559,1.0,0.0,0.0,0.0,1.0 -974,1.0,10.81870203998274,12.7,1.7408671617210308e-07,9.052938424899104,0.9817141613181268,-3.358899005049281,0.0,1.0,0.0 -974,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761828950297176,-4.406281060602224,1.0,0.0,0.0 -974,3.0,3.789038502482434,1.6,0.0,0.0,0.9699480380100076,-5.411078896642632,1.0,0.0,0.0 -974,4.0,46.96413512287439,19.0,-2.2743385375623548e-10,23.33077556175794,0.9632964318112572,-8.084020453351227,0.0,1.0,0.0 -974,5.0,0.0,0.0,0.0,0.0,0.96984027086417,-6.428736477350425,1.0,0.0,0.0 -974,6.0,11.367115507447304,10.9,0.0,0.0,0.9608774248715202,-7.348880062409097,1.0,0.0,0.0 -974,7.0,14.956730930851714,30.0,-2.1467141109212627e-10,30.14089057910261,0.9688790444330534,-6.816749598359857,0.0,1.0,0.0 -974,8.0,0.0,0.0,0.0,0.0,1.0172632138096631,-8.075577715032265,1.0,0.0,0.0 -974,9.0,2.8916346466313314,2.0,0.0,0.0,1.0085726533001114,-8.93181003793696,1.0,0.0,0.0 -974,10.0,0.0,0.0,-1.2378540875266682e-10,21.739733171499186,1.0599253185861,-8.075577715045947,0.0,1.0,0.0 -974,11.0,5.583846214184639,7.5,0.0,0.0,1.0146963573155314,-8.50234621595401,1.0,0.0,0.0 -974,12.0,0.0,0.0,-2.817651158641552e-10,8.84433022688833,1.026755761106266,-8.502346215975702,0.0,1.0,0.0 -974,13.0,3.0910577257093546,1.6,0.0,0.0,1.004194785054918,-8.917277239002868,1.0,0.0,0.0 -974,14.0,4.0881731210994685,2.5,0.0,0.0,1.001093736242763,-8.937714864862388,1.0,0.0,0.0 -974,15.0,1.7449519419327,1.8,0.0,0.0,1.0060799905536784,-8.774739789692198,1.0,0.0,0.0 -974,16.0,4.487019279255515,5.8,0.0,0.0,1.0035362391689322,-8.962149251514559,1.0,0.0,0.0 -974,17.0,1.595384632624183,0.9,0.0,0.0,0.9949290574296898,-9.23775941644345,1.0,0.0,0.0 -974,18.0,4.7362981281030425,3.4,0.0,0.0,0.9934728308385052,-9.330047025069923,1.0,0.0,0.0 -974,19.0,1.0968269349291258,0.7,0.0,0.0,0.9966506329297424,-9.25897327707877,1.0,0.0,0.0 -974,20.0,8.7247597096635,11.2,0.0,0.0,0.9983163380722888,-9.074412962724123,1.0,0.0,0.0 -974,21.0,0.0,0.0,0.0,0.0,0.9986964116934248,-9.072488472174095,1.0,0.0,0.0 -974,22.0,1.595384632624183,1.6,0.0,0.0,0.9930796240874862,-9.090632734098673,1.0,0.0,0.0 -974,23.0,4.337451969946997,6.7,0.0,0.0,0.9888880404469532,-9.172018148066435,1.0,0.0,0.0 -974,24.0,0.0,0.0,0.0,0.0,0.9827717280295166,-8.923029494438952,1.0,0.0,0.0 -974,25.0,1.7449519419327,2.3,0.0,0.0,0.9691730452530188,-8.96992705118588,1.0,0.0,0.0 -974,26.0,0.0,0.0,0.0,0.0,0.9858099651388168,-8.709003725965099,1.0,0.0,0.0 -974,27.0,0.0,0.0,0.0,0.0,0.9679450946028956,-6.748428238686911,1.0,0.0,0.0 -974,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727208470721822,-9.271540830169272,1.0,0.0,0.0 -974,29.0,5.284711595567606,1.9,0.0,0.0,0.965658310379367,-9.699223075189613,1.0,0.0,0.0 -975,0.0,0.0,0.0,146.7864237027674,0.0001533754826255,1.0,0.0,0.0,0.0,1.0 -975,1.0,10.81870203998274,12.7,1.721157275681927e-07,9.045387254321732,0.981709799980737,-3.3590459001494533,0.0,1.0,0.0 -975,2.0,1.1965384744681369,1.2,0.0,0.0,0.976193971791098,-4.4060228813689495,1.0,0.0,0.0 -975,3.0,3.789038502482434,1.6,0.0,0.0,0.9699616600074872,-5.410754647622544,1.0,0.0,0.0 -975,4.0,46.96413512287439,19.0,-2.2106014997985358e-10,23.33474816124331,0.963289488544337,-8.084700521379329,0.0,1.0,0.0 -975,5.0,0.0,0.0,0.0,0.0,0.9698225116505936,-6.42968172135151,1.0,0.0,0.0 -975,6.0,11.367115507447304,10.9,0.0,0.0,0.9608639269139576,-7.349718378914773,1.0,0.0,0.0 -975,7.0,14.956730930851714,30.0,-2.086763273383928e-10,30.16813375027023,0.968868270536836,-6.817967835499848,0.0,1.0,0.0 -975,8.0,0.0,0.0,0.0,0.0,1.0171811005158014,-8.08068721122306,1.0,0.0,0.0 -975,9.0,2.8916346466313314,2.0,0.0,0.0,1.008408134817704,-8.939208524982414,1.0,0.0,0.0 -975,10.0,0.0,0.0,-1.1928945964897314e-10,21.788428095593154,1.059938242962303,-8.080687211236244,0.0,1.0,0.0 -975,11.0,5.583846214184639,7.5,0.0,0.0,1.014868043465377,-8.490828394106353,1.0,0.0,0.0 -975,12.0,0.0,0.0,-2.8035290567712223e-10,8.786589441283898,1.0268476446091086,-8.49082839412793,0.0,1.0,0.0 -975,13.0,3.0910577257093546,1.6,0.0,0.0,1.0070063682315595,-8.823871306146623,1.0,0.0,0.0 -975,14.0,4.0881731210994685,2.5,0.0,0.0,1.0001969555421852,-8.960427006987372,1.0,0.0,0.0 -975,15.0,1.7449519419327,1.8,0.0,0.0,1.0060936269757543,-8.770610907905496,1.0,0.0,0.0 -975,16.0,4.487019279255515,5.8,0.0,0.0,1.0034310589273523,-8.96618696926694,1.0,0.0,0.0 -975,17.0,1.595384632624183,0.9,0.0,0.0,0.99428618508497,-9.255584907164415,1.0,0.0,0.0 -975,18.0,4.7362981281030425,3.4,0.0,0.0,0.9929815181223044,-9.344811934900006,1.0,0.0,0.0 -975,19.0,1.0968269349291258,0.7,0.0,0.0,0.9962413299223126,-9.27202726452481,1.0,0.0,0.0 -975,20.0,8.7247597096635,11.2,0.0,0.0,0.9981151320345584,-9.082684713978695,1.0,0.0,0.0 -975,21.0,0.0,0.0,0.0,0.0,0.9984841727406852,-9.081009611832226,1.0,0.0,0.0 -975,22.0,1.595384632624183,1.6,0.0,0.0,0.9924079207756832,-9.108497503113377,1.0,0.0,0.0 -975,23.0,4.337451969946997,6.7,0.0,0.0,0.9885197882110668,-9.183015712846716,1.0,0.0,0.0 -975,24.0,0.0,0.0,0.0,0.0,0.9825383196773207,-8.932026162494136,1.0,0.0,0.0 -975,25.0,1.7449519419327,2.3,0.0,0.0,0.9689363143062154,-8.978946320841793,1.0,0.0,0.0 -975,26.0,0.0,0.0,0.0,0.0,0.985661345685236,-8.716581085875355,1.0,0.0,0.0 -975,27.0,0.0,0.0,0.0,0.0,0.9679112959312892,-6.749904600284427,1.0,0.0,0.0 -975,28.0,1.1965384744681369,0.9,0.0,0.0,0.9725701483821428,-9.279290063273528,1.0,0.0,0.0 -975,29.0,5.284711595567606,1.9,0.0,0.0,0.9655064858091936,-9.707105697559829,1.0,0.0,0.0 -976,0.0,0.0,0.0,136.35442628566608,9.556046709491284e-06,1.0,0.0,0.0,0.0,1.0 -976,1.0,10.81870203998274,12.7,18.378587192397767,17.248275428838923,0.959499369977288,-18.994223169172265,0.0,1.0,0.0 -976,2.0,1.1965384744681369,1.2,0.0,0.0,0.9615337174658982,-13.492023745893729,1.0,0.0,0.0 -976,3.0,3.789038502482434,1.6,0.0,0.0,0.9565262800818743,-16.713387898604275,1.0,0.0,0.0 -976,4.0,46.96413512287439,19.0,-2.852383001147384e-13,23.812269547747263,0.9454776525642568,-22.288491473281407,0.0,1.0,0.0 -976,5.0,0.0,0.0,0.0,0.0,0.9588189128717464,-18.902323268128686,1.0,0.0,0.0 -976,6.0,11.367115507447304,10.9,0.0,0.0,0.9470824299131382,-20.533799440451997,1.0,0.0,0.0 -976,7.0,14.956730930851714,30.0,-1.8157344088439797e-12,39.750572608600834,0.9615112100134672,-19.35694362502223,0.0,1.0,0.0 -976,8.0,0.0,0.0,0.0,0.0,1.0110329456969316,-20.453453665293274,1.0,0.0,0.0 -976,9.0,2.8916346466313314,2.0,0.0,0.0,1.0025801113911486,-21.255533217325038,1.0,0.0,0.0 -976,10.0,0.0,0.0,-2.2595530019795015e-12,23.99995804800773,1.0582069984240448,-20.45345366529353,0.0,1.0,0.0 -976,11.0,5.583846214184639,7.5,0.0,0.0,1.0292474404494665,-20.153391253118578,1.0,0.0,0.0 -976,12.0,0.0,0.0,1.2520649118465914e-12,23.283653039864888,1.0599994509588349,-20.153391253118485,0.0,1.0,0.0 -976,13.0,3.0910577257093546,1.6,0.0,0.0,1.0164882691473642,-20.663155211567982,1.0,0.0,0.0 -976,14.0,4.0881731210994685,2.5,0.0,0.0,1.0103713708348148,-20.734379307958985,1.0,0.0,0.0 -976,15.0,1.7449519419327,1.8,0.0,0.0,1.024143606112061,-20.24939470736072,1.0,0.0,0.0 -976,16.0,4.487019279255515,5.8,0.0,0.0,0.9961992341646706,-21.365236782216424,1.0,0.0,0.0 -976,17.0,1.595384632624183,0.9,0.0,0.0,0.9988008838877768,-21.213269928746783,1.0,0.0,0.0 -976,18.0,4.7362981281030425,3.4,0.0,0.0,0.9941475100415136,-21.414593454731914,1.0,0.0,0.0 -976,19.0,1.0968269349291258,0.7,0.0,0.0,0.995633764365648,-21.400990326063464,1.0,0.0,0.0 -976,20.0,8.7247597096635,11.2,0.0,0.0,0.9929131826867532,-21.37296013816616,1.0,0.0,0.0 -976,21.0,0.0,0.0,0.0,0.0,0.9935036650936304,-21.36266212979148,1.0,0.0,0.0 -976,22.0,1.595384632624183,1.6,0.0,0.0,0.9974010888010486,-21.05451413488542,1.0,0.0,0.0 -976,23.0,4.337451969946997,6.7,0.0,0.0,0.9866228975240904,-21.368785429434343,1.0,0.0,0.0 -976,24.0,0.0,0.0,0.0,0.0,0.9770531849676732,-21.201655679202,1.0,0.0,0.0 -976,25.0,1.7449519419327,2.3,0.0,0.0,0.963372621169838,-21.2491117404214,1.0,0.0,0.0 -976,26.0,0.0,0.0,0.0,0.0,0.9780167971638528,-21.04185483933149,1.0,0.0,0.0 -976,27.0,0.0,0.0,0.0,0.0,0.9581380439956924,-19.224139112464,1.0,0.0,0.0 -976,28.0,1.1965384744681369,0.9,0.0,0.0,0.9648177281799396,-21.613512344915502,1.0,0.0,0.0 -976,29.0,5.284711595567606,1.9,0.0,0.0,0.9576956516371192,-22.048275229824736,1.0,0.0,0.0 -977,0.0,0.0,0.0,146.8049539383661,0.0017908195806271,1.0,0.0,0.0,0.0,1.0 -977,1.0,10.81870203998274,12.7,1.4298232528005526e-06,10.339522184337184,0.9816274167280372,-3.4301021676318,0.0,1.0,0.0 -977,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761729708642716,-4.205476448896277,1.0,0.0,0.0 -977,3.0,3.789038502482434,1.6,0.0,0.0,0.9699159441557964,-5.161779801242989,1.0,0.0,0.0 -977,4.0,46.96413512287439,19.0,2.758791779276996e-09,21.82089553689326,0.963412734341606,-9.218335210431116,0.0,1.0,0.0 -977,5.0,0.0,0.0,0.0,0.0,0.9694762269074672,-6.05688057597367,1.0,0.0,0.0 -977,6.0,11.367115507447304,10.9,0.0,0.0,0.9576161031466044,-6.465369732165603,1.0,0.0,0.0 -977,7.0,14.956730930851714,30.0,2.0334020736124275e-09,32.18115073591116,0.9692789225437456,-6.458192573922715,0.0,1.0,0.0 -977,8.0,0.0,0.0,0.0,0.0,1.0172457382247695,-7.723008749369653,1.0,0.0,0.0 -977,9.0,2.8916346466313314,2.0,0.0,0.0,1.008713256718901,-8.588820864648289,1.0,0.0,0.0 -977,10.0,0.0,0.0,2.3273098537083233e-09,21.77656692342859,1.0599780016584106,-7.723008749112426,0.0,1.0,0.0 -977,11.0,5.583846214184639,7.5,0.0,0.0,1.015177423371408,-8.211509177908297,1.0,0.0,0.0 -977,12.0,0.0,0.0,3.146486730793526e-09,9.325069051616602,1.0278784356886062,-8.21150917766642,0.0,1.0,0.0 -977,13.0,3.0910577257093546,1.6,0.0,0.0,1.0046182451069807,-8.620070474538949,1.0,0.0,0.0 -977,14.0,4.0881731210994685,2.5,0.0,0.0,1.0014995967075555,-8.633161964038322,1.0,0.0,0.0 -977,15.0,1.7449519419327,1.8,0.0,0.0,1.0064506863675518,-8.460745786165115,1.0,0.0,0.0 -977,16.0,4.487019279255515,5.8,0.0,0.0,1.003738798095362,-8.628430380517507,1.0,0.0,0.0 -977,17.0,1.595384632624183,0.9,0.0,0.0,0.9952470649886888,-8.919454948853476,1.0,0.0,0.0 -977,18.0,4.7362981281030425,3.4,0.0,0.0,0.9937375737015618,-9.00360332392445,1.0,0.0,0.0 -977,19.0,1.0968269349291258,0.7,0.0,0.0,0.9968865318798222,-8.928300733676645,1.0,0.0,0.0 -977,20.0,8.7247597096635,11.2,0.0,0.0,0.9984669460218768,-8.73261423181524,1.0,0.0,0.0 -977,21.0,0.0,0.0,0.0,0.0,0.9988495200924016,-8.731089724411605,1.0,0.0,0.0 -977,22.0,1.595384632624183,1.6,0.0,0.0,0.993390115368688,-8.772701820345294,1.0,0.0,0.0 -977,23.0,4.337451969946997,6.7,0.0,0.0,0.98906662388454,-8.836171118604588,1.0,0.0,0.0 -977,24.0,0.0,0.0,0.0,0.0,0.9828567119646822,-8.573664658086466,1.0,0.0,0.0 -977,25.0,1.7449519419327,2.3,0.0,0.0,0.969259238536134,-8.62055398973692,1.0,0.0,0.0 -977,26.0,0.0,0.0,0.0,0.0,0.9858319737968234,-8.35133051670585,1.0,0.0,0.0 -977,27.0,0.0,0.0,0.0,0.0,0.9677738267748258,-6.38103795897657,1.0,0.0,0.0 -977,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727431635818132,-8.91384217540658,1.0,0.0,0.0 -977,29.0,5.284711595567606,1.9,0.0,0.0,0.9656807935866464,-9.34150467253493,1.0,0.0,0.0 -978,0.0,0.0,0.0,146.78428486806786,0.0001548090235559,1.0,0.0,0.0,0.0,1.0 -978,1.0,10.81870203998274,12.7,1.7408671617210308e-07,9.052938424899104,0.9817141613181268,-3.358899005049281,0.0,1.0,0.0 -978,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761828950297176,-4.406281060602224,1.0,0.0,0.0 -978,3.0,3.789038502482434,1.6,0.0,0.0,0.9699480380100076,-5.411078896642632,1.0,0.0,0.0 -978,4.0,46.96413512287439,19.0,-2.2743385375623548e-10,23.33077556175794,0.9632964318112572,-8.084020453351227,0.0,1.0,0.0 -978,5.0,0.0,0.0,0.0,0.0,0.96984027086417,-6.428736477350425,1.0,0.0,0.0 -978,6.0,11.367115507447304,10.9,0.0,0.0,0.9608774248715202,-7.348880062409097,1.0,0.0,0.0 -978,7.0,14.956730930851714,30.0,-2.1467141109212627e-10,30.14089057910261,0.9688790444330534,-6.816749598359857,0.0,1.0,0.0 -978,8.0,0.0,0.0,0.0,0.0,1.0172632138096631,-8.075577715032265,1.0,0.0,0.0 -978,9.0,2.8916346466313314,2.0,0.0,0.0,1.0085726533001114,-8.93181003793696,1.0,0.0,0.0 -978,10.0,0.0,0.0,-1.2378540875266682e-10,21.739733171499186,1.0599253185861,-8.075577715045947,0.0,1.0,0.0 -978,11.0,5.583846214184639,7.5,0.0,0.0,1.0146963573155314,-8.50234621595401,1.0,0.0,0.0 -978,12.0,0.0,0.0,-2.817651158641552e-10,8.84433022688833,1.026755761106266,-8.502346215975702,0.0,1.0,0.0 -978,13.0,3.0910577257093546,1.6,0.0,0.0,1.004194785054918,-8.917277239002868,1.0,0.0,0.0 -978,14.0,4.0881731210994685,2.5,0.0,0.0,1.001093736242763,-8.937714864862388,1.0,0.0,0.0 -978,15.0,1.7449519419327,1.8,0.0,0.0,1.0060799905536784,-8.774739789692198,1.0,0.0,0.0 -978,16.0,4.487019279255515,5.8,0.0,0.0,1.0035362391689322,-8.962149251514559,1.0,0.0,0.0 -978,17.0,1.595384632624183,0.9,0.0,0.0,0.9949290574296898,-9.23775941644345,1.0,0.0,0.0 -978,18.0,4.7362981281030425,3.4,0.0,0.0,0.9934728308385052,-9.330047025069923,1.0,0.0,0.0 -978,19.0,1.0968269349291258,0.7,0.0,0.0,0.9966506329297424,-9.25897327707877,1.0,0.0,0.0 -978,20.0,8.7247597096635,11.2,0.0,0.0,0.9983163380722888,-9.074412962724123,1.0,0.0,0.0 -978,21.0,0.0,0.0,0.0,0.0,0.9986964116934248,-9.072488472174095,1.0,0.0,0.0 -978,22.0,1.595384632624183,1.6,0.0,0.0,0.9930796240874862,-9.090632734098673,1.0,0.0,0.0 -978,23.0,4.337451969946997,6.7,0.0,0.0,0.9888880404469532,-9.172018148066435,1.0,0.0,0.0 -978,24.0,0.0,0.0,0.0,0.0,0.9827717280295166,-8.923029494438952,1.0,0.0,0.0 -978,25.0,1.7449519419327,2.3,0.0,0.0,0.9691730452530188,-8.96992705118588,1.0,0.0,0.0 -978,26.0,0.0,0.0,0.0,0.0,0.9858099651388168,-8.709003725965099,1.0,0.0,0.0 -978,27.0,0.0,0.0,0.0,0.0,0.9679450946028956,-6.748428238686911,1.0,0.0,0.0 -978,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727208470721822,-9.271540830169272,1.0,0.0,0.0 -978,29.0,5.284711595567606,1.9,0.0,0.0,0.965658310379367,-9.699223075189613,1.0,0.0,0.0 -979,0.0,0.0,0.0,146.96109081961092,0.0001341409229027,1.0,0.0,0.0,0.0,1.0 -979,1.0,10.81870203998274,12.7,1.5016261670260438e-07,8.286467831362032,0.981600841965872,-3.3601992983570037,0.0,1.0,0.0 -979,2.0,1.1965384744681369,1.2,0.0,0.0,0.97644038970891,-4.41866763077586,1.0,0.0,0.0 -979,3.0,3.789038502482434,1.6,0.0,0.0,0.9702666895172496,-5.426369350437749,1.0,0.0,0.0 -979,4.0,46.96413512287439,19.0,-2.334618763804654e-10,23.348959959804567,0.9634138468672868,-8.08934135265136,0.0,1.0,0.0 -979,5.0,0.0,0.0,0.0,0.0,0.9701460384585714,-6.439903048668614,1.0,0.0,0.0 -979,6.0,11.367115507447304,10.9,0.0,0.0,0.9611074951689466,-7.35765264231213,1.0,0.0,0.0 -979,7.0,14.956730930851714,30.0,-2.02487244487782e-10,30.268139740717015,0.9691507951395656,-6.829786724142791,0.0,1.0,0.0 -979,8.0,0.0,0.0,0.0,0.0,1.0186686972641985,-8.041624324013222,1.0,0.0,0.0 -979,9.0,2.8916346466313314,2.0,0.0,0.0,1.011262004867712,-8.872449246112257,1.0,0.0,0.0 -979,10.0,0.0,0.0,-9.786188980432544e-11,21.042965403083794,1.0599620329478256,-8.041624324024019,0.0,1.0,0.0 -979,11.0,5.583846214184639,7.5,0.0,0.0,1.0163231702333022,-8.547825307425514,1.0,0.0,0.0 -979,12.0,0.0,0.0,-2.883218754018013e-10,10.519725556903104,1.030613317210566,-8.54782530744759,0.0,1.0,0.0 -979,13.0,3.0910577257093546,1.6,0.0,0.0,1.005065898633664,-8.97088177235017,1.0,0.0,0.0 -979,14.0,4.0881731210994685,2.5,0.0,0.0,1.0011615435895864,-8.982991166434221,1.0,0.0,0.0 -979,15.0,1.7449519419327,1.8,0.0,0.0,1.0082481271321508,-8.777098551454788,1.0,0.0,0.0 -979,16.0,4.487019279255515,5.8,0.0,0.0,1.006051107151831,-8.920977981687376,1.0,0.0,0.0 -979,17.0,1.595384632624183,0.9,0.0,0.0,0.9959388688219478,-9.245976911717207,1.0,0.0,0.0 -979,18.0,4.7362981281030425,3.4,0.0,0.0,0.9950368592368934,-9.316230826300204,1.0,0.0,0.0 -979,19.0,1.0968269349291258,0.7,0.0,0.0,0.998501626043208,-9.234006479529592,1.0,0.0,0.0 -979,20.0,8.7247597096635,11.2,0.0,0.0,0.980616537797634,-9.286406445404834,1.0,0.0,0.0 -979,21.0,0.0,0.0,0.0,0.0,0.984344367232582,-9.24130396374672,1.0,0.0,0.0 -979,22.0,1.595384632624183,1.6,0.0,0.0,0.9892635965465476,-9.179803646795806,1.0,0.0,0.0 -979,23.0,4.337451969946997,6.7,0.0,0.0,0.9799286720061976,-9.322744884084234,1.0,0.0,0.0 -979,24.0,0.0,0.0,0.0,0.0,0.9772277992671377,-9.06516363184298,1.0,0.0,0.0 -979,25.0,1.7449519419327,2.3,0.0,0.0,0.963549750505608,-9.11260249272219,1.0,0.0,0.0 -979,26.0,0.0,0.0,0.0,0.0,0.9824244977746776,-8.841450768673276,1.0,0.0,0.0 -979,27.0,0.0,0.0,0.0,0.0,0.967782976205185,-6.766307090502544,1.0,0.0,0.0 -979,28.0,1.1965384744681369,0.9,0.0,0.0,0.969287847154796,-9.407922768509597,1.0,0.0,0.0 -979,29.0,5.284711595567606,1.9,0.0,0.0,0.9621995716752184,-9.838659282291026,1.0,0.0,0.0 -980,0.0,0.0,0.0,146.78428486806786,0.0001548090235559,1.0,0.0,0.0,0.0,1.0 -980,1.0,10.81870203998274,12.7,1.7408671617210308e-07,9.052938424899104,0.9817141613181268,-3.358899005049281,0.0,1.0,0.0 -980,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761828950297176,-4.406281060602224,1.0,0.0,0.0 -980,3.0,3.789038502482434,1.6,0.0,0.0,0.9699480380100076,-5.411078896642632,1.0,0.0,0.0 -980,4.0,46.96413512287439,19.0,-2.2743385375623548e-10,23.33077556175794,0.9632964318112572,-8.084020453351227,0.0,1.0,0.0 -980,5.0,0.0,0.0,0.0,0.0,0.96984027086417,-6.428736477350425,1.0,0.0,0.0 -980,6.0,11.367115507447304,10.9,0.0,0.0,0.9608774248715202,-7.348880062409097,1.0,0.0,0.0 -980,7.0,14.956730930851714,30.0,-2.1467141109212627e-10,30.14089057910261,0.9688790444330534,-6.816749598359857,0.0,1.0,0.0 -980,8.0,0.0,0.0,0.0,0.0,1.0172632138096631,-8.075577715032265,1.0,0.0,0.0 -980,9.0,2.8916346466313314,2.0,0.0,0.0,1.0085726533001114,-8.93181003793696,1.0,0.0,0.0 -980,10.0,0.0,0.0,-1.2378540875266682e-10,21.739733171499186,1.0599253185861,-8.075577715045947,0.0,1.0,0.0 -980,11.0,5.583846214184639,7.5,0.0,0.0,1.0146963573155314,-8.50234621595401,1.0,0.0,0.0 -980,12.0,0.0,0.0,-2.817651158641552e-10,8.84433022688833,1.026755761106266,-8.502346215975702,0.0,1.0,0.0 -980,13.0,3.0910577257093546,1.6,0.0,0.0,1.004194785054918,-8.917277239002868,1.0,0.0,0.0 -980,14.0,4.0881731210994685,2.5,0.0,0.0,1.001093736242763,-8.937714864862388,1.0,0.0,0.0 -980,15.0,1.7449519419327,1.8,0.0,0.0,1.0060799905536784,-8.774739789692198,1.0,0.0,0.0 -980,16.0,4.487019279255515,5.8,0.0,0.0,1.0035362391689322,-8.962149251514559,1.0,0.0,0.0 -980,17.0,1.595384632624183,0.9,0.0,0.0,0.9949290574296898,-9.23775941644345,1.0,0.0,0.0 -980,18.0,4.7362981281030425,3.4,0.0,0.0,0.9934728308385052,-9.330047025069923,1.0,0.0,0.0 -980,19.0,1.0968269349291258,0.7,0.0,0.0,0.9966506329297424,-9.25897327707877,1.0,0.0,0.0 -980,20.0,8.7247597096635,11.2,0.0,0.0,0.9983163380722888,-9.074412962724123,1.0,0.0,0.0 -980,21.0,0.0,0.0,0.0,0.0,0.9986964116934248,-9.072488472174095,1.0,0.0,0.0 -980,22.0,1.595384632624183,1.6,0.0,0.0,0.9930796240874862,-9.090632734098673,1.0,0.0,0.0 -980,23.0,4.337451969946997,6.7,0.0,0.0,0.9888880404469532,-9.172018148066435,1.0,0.0,0.0 -980,24.0,0.0,0.0,0.0,0.0,0.9827717280295166,-8.923029494438952,1.0,0.0,0.0 -980,25.0,1.7449519419327,2.3,0.0,0.0,0.9691730452530188,-8.96992705118588,1.0,0.0,0.0 -980,26.0,0.0,0.0,0.0,0.0,0.9858099651388168,-8.709003725965099,1.0,0.0,0.0 -980,27.0,0.0,0.0,0.0,0.0,0.9679450946028956,-6.748428238686911,1.0,0.0,0.0 -980,28.0,1.1965384744681369,0.9,0.0,0.0,0.9727208470721822,-9.271540830169272,1.0,0.0,0.0 -980,29.0,5.284711595567606,1.9,0.0,0.0,0.965658310379367,-9.699223075189613,1.0,0.0,0.0 -981,0.0,0.0,0.0,147.00193353110953,0.0216819417219404,1.0,0.0,0.0,0.0,1.0 -981,1.0,10.81870203998274,12.7,1.2202503587294572e-05,9.386397856361384,0.9816850639971044,-3.3510389198760366,0.0,1.0,0.0 -981,2.0,1.1965384744681369,1.2,0.0,0.0,0.9761864484774118,-4.449274370310702,1.0,0.0,0.0 -981,3.0,3.789038502482434,1.6,0.0,0.0,0.9699571342334408,-5.464453642672972,1.0,0.0,0.0 -981,4.0,46.96413512287439,19.0,3.735188184573271e-08,24.086361350821377,0.9634980743841356,-8.05443534951139,0.0,1.0,0.0 -981,5.0,0.0,0.0,0.0,0.0,0.9687646322248626,-6.342937690052766,1.0,0.0,0.0 -981,6.0,11.367115507447304,10.9,0.0,0.0,0.9603263862830056,-7.285613683170052,1.0,0.0,0.0 -981,7.0,14.956730930851714,30.0,3.80726227591859e-08,35.37847382503075,0.9697975589504334,-6.776700278965595,0.0,1.0,0.0 -981,8.0,0.0,0.0,0.0,0.0,1.0237966878657714,-10.94452570114169,1.0,0.0,0.0 -981,9.0,2.8916346466313314,2.0,0.0,0.0,1.0118741832333884,-10.94452570208902,1.0,0.0,0.0 -981,10.0,0.0,0.0,1.5571437747531548e-08,11.340914667405595,1.0463410602546954,-10.944525699409368,0.0,1.0,0.0 -981,11.0,5.583846214184639,7.5,0.0,0.0,1.0255965872967636,-9.265553641661214,1.0,0.0,0.0 -981,12.0,0.0,0.0,3.6773400915118934e-08,13.19920851035085,1.0433084084277169,-9.265553638904478,0.0,1.0,0.0 -981,13.0,3.0910577257093546,1.6,0.0,0.0,1.015267162855409,-9.694445735019093,1.0,0.0,0.0 -981,14.0,4.0881731210994685,2.5,0.0,0.0,1.0120963206702558,-9.738271617844148,1.0,0.0,0.0 -981,15.0,1.7449519419327,1.8,0.0,0.0,1.0128270226254403,-10.054064476909092,1.0,0.0,0.0 -981,16.0,4.487019279255515,5.8,0.0,0.0,1.0081858951975966,-10.749285672859742,1.0,0.0,0.0 -981,17.0,1.595384632624183,0.9,0.0,0.0,1.0084456935242518,-9.879748791992563,1.0,0.0,0.0 -981,18.0,4.7362981281030425,3.4,0.0,0.0,0.9937695339546008,-11.538080243530905,1.0,0.0,0.0 -981,19.0,1.0968269349291258,0.7,0.0,0.0,0.9977186297522844,-11.418768687206638,1.0,0.0,0.0 -981,20.0,8.7247597096635,11.2,0.0,0.0,1.0018979771009502,-10.966454449399992,1.0,0.0,0.0 -981,21.0,0.0,0.0,0.0,0.0,1.0023682064054174,-10.926174450752027,1.0,0.0,0.0 -981,22.0,1.595384632624183,1.6,0.0,0.0,1.0019015749803593,-10.121098199925662,1.0,0.0,0.0 -981,23.0,4.337451969946997,6.7,0.0,0.0,0.9948207491040784,-10.518071786992136,1.0,0.0,0.0 -981,24.0,0.0,0.0,0.0,0.0,0.9877181626569806,-9.729783791288057,1.0,0.0,0.0 -981,25.0,1.7449519419327,2.3,0.0,0.0,0.974189507856957,-9.776206204528531,1.0,0.0,0.0 -981,26.0,0.0,0.0,0.0,0.0,0.989980720511278,-9.180975814984386,1.0,0.0,0.0 -981,27.0,0.0,0.0,0.0,0.0,0.9675424919410932,-6.741338015292489,1.0,0.0,0.0 -981,28.0,1.1965384744681369,0.9,0.0,0.0,0.9423799612536392,-11.224293601495637,1.0,0.0,0.0 -981,29.0,5.284711595567606,1.9,0.0,0.0,0.9497614321547496,-11.015296243054364,1.0,0.0,0.0 -982,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -982,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -982,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -982,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -982,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -982,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -982,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -982,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -982,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -982,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -982,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -982,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -982,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -982,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -982,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -982,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -982,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -982,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -982,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -982,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -982,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -982,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -982,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -982,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -982,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -982,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -982,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -982,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -982,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -982,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -983,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -983,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -983,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -983,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -983,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -983,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -983,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -983,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -983,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -983,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -983,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -983,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -983,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -983,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -983,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -983,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -983,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -983,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -983,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -983,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -983,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -983,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -983,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -983,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -983,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -983,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -983,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -983,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -983,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -983,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -984,0.0,0.0,0.0,61.9584548295454,1.1051904280634517e-06,1.0,0.0,0.0,0.0,1.0 -984,1.0,10.725178047850994,12.7,81.88959755792082,-13.925735293067692,0.9920709719391708,-0.9565675173635064,0.0,1.0,0.0 -984,2.0,1.1861948071355937,1.2,0.0,0.0,0.9858256919473056,-3.038805804977554,1.0,0.0,0.0 -984,3.0,3.75628355592938,1.6,0.0,0.0,0.98176505110323,-3.714293131997904,1.0,0.0,0.0 -984,4.0,46.55814618007206,19.0,-4.273108210676302e-09,39.99999890368649,0.9923445911843238,-6.050875560971058,0.0,1.0,0.0 -984,5.0,0.0,0.0,0.0,0.0,0.9829522406192412,-4.501987182130029,1.0,0.0,0.0 -984,6.0,11.268850667788142,10.9,0.0,0.0,0.9806790174383244,-5.359159610120011,1.0,0.0,0.0 -984,7.0,14.82743508919492,30.0,-5.670060645527635e-09,39.99999950713926,0.9854818076287012,-4.933851222912927,0.0,1.0,0.0 -984,8.0,0.0,0.0,0.0,0.0,1.0103911928412,-6.051725307636539,1.0,0.0,0.0 -984,9.0,2.866637450577685,2.0,0.0,0.0,1.013505014541645,-6.864400371240315,1.0,0.0,0.0 -984,10.0,0.0,0.0,0.0,0.0,1.0103911928412,-6.051725307636539,0.0,1.0,0.0 -984,11.0,5.53557576663277,7.5,0.0,0.0,1.0343638596458975,-6.8501438224962365,1.0,0.0,0.0 -984,12.0,0.0,0.0,-8.633753484113977e-09,19.41021894501089,1.0599999979253332,-6.850143823127879,0.0,1.0,0.0 -984,13.0,3.064336585100284,1.6,0.0,0.0,1.0215972266422804,-7.250524042756515,1.0,0.0,0.0 -984,14.0,4.052832257713279,2.5,0.0,0.0,1.016115132763269,-7.218874719639071,1.0,0.0,0.0 -984,15.0,1.7298674270727408,1.8,0.0,0.0,1.01973567958308,-6.910631437734407,1.0,0.0,0.0 -984,16.0,4.4482305267584765,5.8,0.0,0.0,1.0111532343545049,-6.966228292202608,1.0,0.0,0.0 -984,17.0,1.5815930761807917,0.9,0.0,0.0,1.0065468216234992,-7.384928531930729,1.0,0.0,0.0 -984,18.0,4.695354444911725,3.4,0.0,0.0,1.0030381327879498,-7.4002941098806225,1.0,0.0,0.0 -984,19.0,1.0873452398742942,0.7,0.0,0.0,1.0050852503481558,-7.292191892127953,1.0,0.0,0.0 -984,20.0,8.649337135363705,11.2,0.0,0.0,0.9863308976780012,-7.366441186965646,1.0,0.0,0.0 -984,21.0,0.0,0.0,0.0,0.0,0.9900282421063548,-7.322901845778997,1.0,0.0,0.0 -984,22.0,1.5815930761807917,1.6,0.0,0.0,1.0019483564140288,-7.413329491239842,1.0,0.0,0.0 -984,23.0,4.299956175866528,6.7,0.0,0.0,0.9894880567771784,-7.560275238192605,1.0,0.0,0.0 -984,24.0,0.0,0.0,0.0,0.0,0.983708212665934,-6.766381796743245,1.0,0.0,0.0 -984,25.0,1.7298674270727408,2.3,0.0,0.0,0.9701630084565612,-6.809745564244201,1.0,0.0,0.0 -984,26.0,0.0,0.0,0.0,0.0,0.9906063240545142,-6.701322587971154,1.0,0.0,0.0 -984,27.0,0.0,0.0,0.0,0.0,0.9808833639735236,-4.8039432777160975,1.0,0.0,0.0 -984,28.0,1.1861948071355937,0.9,0.0,0.0,0.9627495931764812,-7.934770261876895,1.0,0.0,0.0 -984,29.0,5.239027064848872,1.9,0.0,0.0,0.9400000002453328,-9.149831689037873,1.0,0.0,0.0 -985,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -985,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -985,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -985,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -985,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -985,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -985,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -985,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -985,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -985,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -985,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -985,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -985,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -985,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -985,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -985,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -985,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -985,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -985,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -985,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -985,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -985,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -985,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -985,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -985,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -985,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -985,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -985,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -985,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -985,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -986,0.0,0.0,0.0,146.72275583415154,0.0002814831024267,1.0,0.0,0.0,0.0,1.0 -986,1.0,10.725178047850994,12.7,3.521780374292801e-07,9.108563860539595,0.9800643939137268,-3.7530325316403914,0.0,1.0,0.0 -986,2.0,1.1861948071355937,1.2,0.0,0.0,0.9797110957537164,-3.268927603524439,1.0,0.0,0.0 -986,3.0,3.75628355592938,1.6,0.0,0.0,0.9742292121574492,-3.999264891068832,1.0,0.0,0.0 -986,4.0,46.55814618007206,19.0,-1.5655488208937907e-10,21.7584433236771,0.9619528509297828,-9.508209639383308,0.0,1.0,0.0 -986,5.0,0.0,0.0,0.0,0.0,0.9629032819268032,-9.036676043988786,1.0,0.0,0.0 -986,6.0,11.268850667788142,10.9,0.0,0.0,0.950978974626054,-9.44560236320232,1.0,0.0,0.0 -986,7.0,14.82743508919492,30.0,-3.0705880256620724e-10,28.0683865849457,0.9612475386907652,-9.404330909264171,0.0,1.0,0.0 -986,8.0,0.0,0.0,0.0,0.0,1.0133251171500082,-10.09301374452134,1.0,0.0,0.0 -986,9.0,2.866637450577685,2.0,0.0,0.0,1.003986186932685,-10.640824074572285,1.0,0.0,0.0 -986,10.0,0.0,0.0,-3.9415319310610355e-10,23.786087741608284,1.0599997168829518,-10.09301374456507,0.0,1.0,0.0 -986,11.0,5.53557576663277,7.5,0.0,0.0,1.0355760145060091,-8.37816468404661,1.0,0.0,0.0 -986,12.0,0.0,0.0,-1.4367920554807174e-10,17.624584072665257,1.058878423132614,-8.378164684057124,0.0,1.0,0.0 -986,13.0,3.064336585100284,1.6,0.0,0.0,1.007327637152511,-9.336353056667493,1.0,0.0,0.0 -986,14.0,4.052832257713279,2.5,0.0,0.0,1.017225748053288,-9.191895545779856,1.0,0.0,0.0 -986,15.0,1.7298674270727408,1.8,0.0,0.0,1.014640331650579,-9.368045344834446,1.0,0.0,0.0 -986,16.0,4.4482305267584765,5.8,0.0,0.0,1.0034283984159358,-10.334939861797242,1.0,0.0,0.0 -986,17.0,1.5815930761807917,0.9,0.0,0.0,1.0036709348327362,-9.984714714250485,1.0,0.0,0.0 -986,18.0,4.695354444911725,3.4,0.0,0.0,0.9978679366554926,-10.377966580769346,1.0,0.0,0.0 -986,19.0,1.0873452398742942,0.7,0.0,0.0,0.9987218572843778,-10.468552062309868,1.0,0.0,0.0 -986,20.0,8.649337135363705,11.2,0.0,0.0,0.9911262964361618,-10.861426379193109,1.0,0.0,0.0 -986,21.0,0.0,0.0,0.0,0.0,0.9906873189927016,-10.884109773220668,1.0,0.0,0.0 -986,22.0,1.5815930761807917,1.6,0.0,0.0,0.9626582995902102,-11.37907036618477,1.0,0.0,0.0 -986,23.0,4.299956175866528,6.7,0.0,0.0,0.9693171513326097,-11.246545600490808,1.0,0.0,0.0 -986,24.0,0.0,0.0,0.0,0.0,0.957838940796096,-11.331120194282017,1.0,0.0,0.0 -986,25.0,1.7298674270727408,2.3,0.0,0.0,0.943917091987326,-11.37689345948897,1.0,0.0,0.0 -986,26.0,0.0,0.0,0.0,0.0,0.980863947897091,-10.818078426688537,1.0,0.0,0.0 -986,27.0,0.0,0.0,0.0,0.0,0.961364445118796,-9.30212101481143,1.0,0.0,0.0 -986,28.0,1.1861948071355937,0.9,0.0,0.0,0.9677685756049372,-11.379792326103544,1.0,0.0,0.0 -986,29.0,5.239027064848872,1.9,0.0,0.0,0.9607095829611102,-11.807464422336452,1.0,0.0,0.0 -987,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -987,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -987,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -987,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -987,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -987,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -987,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -987,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -987,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -987,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -987,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -987,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -987,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -987,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -987,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -987,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -987,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -987,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -987,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -987,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -987,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -987,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -987,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -987,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -987,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -987,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -987,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -987,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -987,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -987,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -988,0.0,0.0,0.0,146.05898928360835,0.0003199873622072,1.0,0.0,0.0,0.0,1.0 -988,1.0,10.725178047850994,12.7,3.034114167092876e-07,9.931824028593413,0.9831020804527146,-3.05001161767228,0.0,1.0,0.0 -988,2.0,1.1861948071355937,1.2,0.0,0.0,0.973746924002094,-5.229996323397043,1.0,0.0,0.0 -988,3.0,3.75628355592938,1.6,0.0,0.0,0.9670638155386536,-6.435329902588089,1.0,0.0,0.0 -988,4.0,46.55814618007206,19.0,1.6207079313771562e-10,24.725702989110943,0.964025612550534,-8.667465886643813,0.0,1.0,0.0 -988,5.0,0.0,0.0,0.0,0.0,0.9659895364401632,-7.949192786891622,1.0,0.0,0.0 -988,6.0,11.268850667788142,10.9,0.0,0.0,0.9587361957661796,-8.482763468168624,1.0,0.0,0.0 -988,7.0,14.82743508919492,30.0,2.3877365764222373e-10,30.89360091282027,0.9653323940899982,-8.340190041436234,0.0,1.0,0.0 -988,8.0,0.0,0.0,0.0,0.0,1.0153045516608477,-9.501499426931924,1.0,0.0,0.0 -988,9.0,2.866637450577685,2.0,0.0,0.0,1.006548208843785,-10.307002176094851,1.0,0.0,0.0 -988,10.0,0.0,0.0,5.409912702722155e-10,22.77629714168377,1.0599977575812125,-9.501499426872018,0.0,1.0,0.0 -988,11.0,5.53557576663277,7.5,0.0,0.0,1.0150533561326034,-9.721352758508871,1.0,0.0,0.0 -988,12.0,0.0,0.0,3.38898521245554e-10,10.843915280321896,1.029795584226209,-9.721352758482864,0.0,1.0,0.0 -988,13.0,3.064336585100284,1.6,0.0,0.0,1.0043188198571014,-10.154711626471643,1.0,0.0,0.0 -988,14.0,4.052832257713279,2.5,0.0,0.0,1.0008035451151114,-10.19127625025778,1.0,0.0,0.0 -988,15.0,1.7298674270727408,1.8,0.0,0.0,1.0053108799837898,-10.053917496108772,1.0,0.0,0.0 -988,16.0,4.4482305267584765,5.8,0.0,0.0,1.0019392513371113,-10.30787617308236,1.0,0.0,0.0 -988,17.0,1.5815930761807917,0.9,0.0,0.0,0.9940411153780516,-10.530524586097997,1.0,0.0,0.0 -988,18.0,4.695354444911725,3.4,0.0,0.0,0.9922259258597512,-10.647190853287247,1.0,0.0,0.0 -988,19.0,1.0873452398742942,0.7,0.0,0.0,0.9952044902952344,-10.590231701371591,1.0,0.0,0.0 -988,20.0,8.649337135363705,11.2,0.0,0.0,0.9963203027467852,-10.444123971900606,1.0,0.0,0.0 -988,21.0,0.0,0.0,0.0,0.0,0.9967086041125592,-10.441292065005396,1.0,0.0,0.0 -988,22.0,1.5815930761807917,1.6,0.0,0.0,0.9921247149618646,-10.385789895100343,1.0,0.0,0.0 -988,23.0,4.299956175866528,6.7,0.0,0.0,0.9870443876720052,-10.525812007942289,1.0,0.0,0.0 -988,24.0,0.0,0.0,0.0,0.0,0.9799677593255476,-10.32620667826837,1.0,0.0,0.0 -988,25.0,1.7298674270727408,2.3,0.0,0.0,0.9663693791848498,-10.36990684374108,1.0,0.0,0.0 -988,26.0,0.0,0.0,0.0,0.0,0.982428927479965,-10.14551767272113,1.0,0.0,0.0 -988,27.0,0.0,0.0,0.0,0.0,0.9642655218817868,-8.26113057574947,1.0,0.0,0.0 -988,28.0,1.1861948071355937,0.9,0.0,0.0,0.9693555309522196,-10.705419976096302,1.0,0.0,0.0 -988,29.0,5.239027064848872,1.9,0.0,0.0,0.962308427497316,-11.131684037373818,1.0,0.0,0.0 -989,0.0,0.0,0.0,136.3439053930228,7.018977310480068e-06,1.0,0.0,0.0,0.0,1.0 -989,1.0,10.725178047850994,12.7,17.36064097003315,35.066898148632504,0.976240757828754,-19.34587286365497,0.0,1.0,0.0 -989,2.0,1.1861948071355937,1.2,0.0,0.0,0.9615342911345774,-13.490950555882817,1.0,0.0,0.0 -989,3.0,3.75628355592938,1.6,0.0,0.0,0.9565248243969052,-16.71230512988105,1.0,0.0,0.0 -989,4.0,46.55814618007206,19.0,7.523833049040195e-12,29.56006898910178,0.9615694128888302,-22.505491631398023,0.0,1.0,0.0 -989,5.0,0.0,0.0,0.0,0.0,0.9616501548317592,-18.93992873239251,1.0,0.0,0.0 -989,6.0,11.268850667788142,10.9,0.0,0.0,0.9554297920844976,-20.63711925630681,1.0,0.0,0.0 -989,7.0,14.82743508919492,30.0,-3.8418517293187913e-13,39.99999493994662,0.9642946186479064,-19.39088677249133,0.0,1.0,0.0 -989,8.0,0.0,0.0,0.0,0.0,1.005842500804793,-20.456797536321844,1.0,0.0,0.0 -989,9.0,2.866637450577685,2.0,0.0,0.0,0.9929854498636422,-21.251081717277906,1.0,0.0,0.0 -989,10.0,0.0,0.0,-4.038869991145199e-12,23.99999549031596,1.0532391355616628,-20.45679753632229,0.0,1.0,0.0 -989,11.0,5.53557576663277,7.5,0.0,0.0,0.9899983965168676,-20.218055129729123,1.0,0.0,0.0 -989,12.0,0.0,0.0,0.0,0.0,0.9899983965168676,-20.218055129729123,0.0,1.0,0.0 -989,13.0,3.064336585100284,1.6,0.0,0.0,0.980668372031068,-20.709626085694797,1.0,0.0,0.0 -989,14.0,4.052832257713279,2.5,0.0,0.0,0.97844161927527,-20.82259317299138,1.0,0.0,0.0 -989,15.0,1.7298674270727408,1.8,0.0,0.0,0.98480923990886,-20.77271590510491,1.0,0.0,0.0 -989,16.0,4.4482305267584765,5.8,0.0,0.0,0.9862201659751604,-21.176410614617375,1.0,0.0,0.0 -989,17.0,1.5815930761807917,0.9,0.0,0.0,0.9745789733253728,-21.285936116459805,1.0,0.0,0.0 -989,18.0,4.695354444911725,3.4,0.0,0.0,0.9745328240143368,-21.47243574250706,1.0,0.0,0.0 -989,19.0,1.0873452398742942,0.7,0.0,0.0,0.9785145846482988,-21.44802189527251,1.0,0.0,0.0 -989,20.0,8.649337135363705,11.2,0.0,0.0,0.9823613080687588,-21.381034267216524,1.0,0.0,0.0 -989,21.0,0.0,0.0,0.0,0.0,0.9826764776228472,-21.374475107570905,1.0,0.0,0.0 -989,22.0,1.5815930761807917,1.6,0.0,0.0,0.9727961023611452,-21.12642922123516,1.0,0.0,0.0 -989,23.0,4.299956175866528,6.7,0.0,0.0,0.9719196925170536,-21.4056729635728,1.0,0.0,0.0 -989,24.0,0.0,0.0,0.0,0.0,0.96861082033694,-21.31004788958805,1.0,0.0,0.0 -989,25.0,1.7298674270727408,2.3,0.0,0.0,0.9548483577724752,-21.354793897863804,1.0,0.0,0.0 -989,26.0,0.0,0.0,0.0,0.0,0.9735306579425366,-21.188092016142903,1.0,0.0,0.0 -989,27.0,0.0,0.0,0.0,0.0,0.9601083105515096,-19.2591503513358,1.0,0.0,0.0 -989,28.0,1.1861948071355937,0.9,0.0,0.0,0.9603312918659316,-21.758413659794783,1.0,0.0,0.0 -989,29.0,5.239027064848872,1.9,0.0,0.0,0.9532160339548617,-22.1927786259012,1.0,0.0,0.0 -990,0.0,0.0,0.0,145.60278938308727,0.0029130576423064,1.0,0.0,0.0,0.0,1.0 -990,1.0,10.725178047850994,12.7,3.0597436880341606e-06,6.271989282211251,0.9810160799280784,-3.336571925808478,0.0,1.0,0.0 -990,2.0,1.1861948071355937,1.2,0.0,0.0,0.9786077946453552,-4.34447486663575,1.0,0.0,0.0 -990,3.0,3.75628355592938,1.6,0.0,0.0,0.9729284151133634,-5.333817257283925,1.0,0.0,0.0 -990,4.0,46.55814618007206,19.0,2.506633922249342e-09,23.361696254492912,0.962419126128389,-8.08046325292154,0.0,1.0,0.0 -990,5.0,0.0,0.0,0.0,0.0,0.9683968754941028,-6.485245252090311,1.0,0.0,0.0 -990,6.0,11.268850667788142,10.9,0.0,0.0,0.9596636153540276,-7.378305845250783,1.0,0.0,0.0 -990,7.0,14.82743508919492,30.0,3.175635425923582e-09,30.61192223753295,0.9674513058682168,-6.881753290932882,0.0,1.0,0.0 -990,8.0,0.0,0.0,0.0,0.0,1.0065736429623626,-8.71228838782847,1.0,0.0,0.0 -990,9.0,2.866637450577685,2.0,0.0,0.0,0.9932292239354432,-9.886223355334156,1.0,0.0,0.0 -990,10.0,0.0,0.0,3.6390500129395422e-09,21.576062822072394,1.0493416130053843,-8.71228838741788,0.0,1.0,0.0 -990,11.0,5.53557576663277,7.5,0.0,0.0,1.0439944627929365,-7.040667567406167,1.0,0.0,0.0 -990,12.0,0.0,0.0,2.8303476292975022e-09,12.05855993239894,1.0599220342183275,-7.040667567200995,0.0,1.0,0.0 -990,13.0,3.064336585100284,1.6,0.0,0.0,1.036388694250264,-7.351619104550134,1.0,0.0,0.0 -990,14.0,4.052832257713279,2.5,0.0,0.0,1.0382646589376885,-7.232539314607391,1.0,0.0,0.0 -990,15.0,1.7298674270727408,1.8,0.0,0.0,0.9801994191348864,-10.189222575462626,1.0,0.0,0.0 -990,16.0,4.4482305267584765,5.8,0.0,0.0,0.9846585048153368,-10.047738324812777,1.0,0.0,0.0 -990,17.0,1.5815930761807917,0.9,0.0,0.0,0.9677941545050482,-10.779677561886244,1.0,0.0,0.0 -990,18.0,4.695354444911725,3.4,0.0,0.0,0.9700411056931992,-10.690064797284506,1.0,0.0,0.0 -990,19.0,1.0873452398742942,0.7,0.0,0.0,0.9752637696083036,-10.52010496404472,1.0,0.0,0.0 -990,20.0,8.649337135363705,11.2,0.0,0.0,0.9819174088210512,-10.03082894986694,1.0,0.0,0.0 -990,21.0,0.0,0.0,0.0,0.0,0.982013765145628,-10.02869391050865,1.0,0.0,0.0 -990,22.0,1.5815930761807917,1.6,0.0,0.0,0.9615635176479684,-10.233677804177292,1.0,0.0,0.0 -990,23.0,4.299956175866528,6.7,0.0,0.0,0.9682299566787168,-10.100853176989746,1.0,0.0,0.0 -990,24.0,0.0,0.0,0.0,0.0,0.96986324521544,-9.614852929379774,1.0,0.0,0.0 -990,25.0,1.7298674270727408,2.3,0.0,0.0,0.9561190742711198,-9.659481767001528,1.0,0.0,0.0 -990,26.0,0.0,0.0,0.0,0.0,0.9777257725483646,-9.247015709429805,1.0,0.0,0.0 -990,27.0,0.0,0.0,0.0,0.0,0.9655402858480896,-6.846446748291907,1.0,0.0,0.0 -990,28.0,1.1861948071355937,0.9,0.0,0.0,0.9645861041450654,-9.812389034559237,1.0,0.0,0.0 -990,29.0,5.239027064848872,1.9,0.0,0.0,0.957503145982426,-10.24290595051438,1.0,0.0,0.0 -991,0.0,0.0,0.0,122.79102931107208,2.1951326978353336e-06,1.0,0.0,0.0,0.0,1.0 -991,1.0,10.725178047850994,12.7,25.52469040210909,-12.27964711415845,0.984069425289008,-2.3030717730263355,0.0,1.0,0.0 -991,2.0,1.1861948071355937,1.2,0.0,0.0,0.9816102036845852,-5.0596842272141895,1.0,0.0,0.0 -991,3.0,3.75628355592938,1.6,0.0,0.0,0.9767240358857476,-6.219581331651686,1.0,0.0,0.0 -991,4.0,46.55814618007206,19.0,4.189285969416286e-09,39.99999944721986,0.9698256796134632,-14.777895498494727,0.0,1.0,0.0 -991,5.0,0.0,0.0,0.0,0.0,0.977550404165814,-7.770243314328259,1.0,0.0,0.0 -991,6.0,11.268850667788142,10.9,0.0,0.0,0.96790327432005,-10.86180637864436,1.0,0.0,0.0 -991,7.0,14.82743508919492,30.0,9.339601542655805e-09,39.99999952153221,0.9801834625228798,-8.209970753112062,0.0,1.0,0.0 -991,8.0,0.0,0.0,0.0,0.0,1.023626645585416,-9.282015754560303,1.0,0.0,0.0 -991,9.0,2.866637450577685,2.0,0.0,0.0,1.017408290140526,-10.067403308354034,1.0,0.0,0.0 -991,10.0,0.0,0.0,1.1787413046679077e-08,18.53642051578318,1.0599999990818547,-9.28201575326564,0.0,1.0,0.0 -991,11.0,5.53557576663277,7.5,0.0,0.0,1.0378115352030188,-9.35946067030957,1.0,0.0,0.0 -991,12.0,0.0,0.0,7.0032460190761206e-09,16.79983670417443,1.0599999987996955,-9.35946066979892,0.0,1.0,0.0 -991,13.0,3.064336585100284,1.6,0.0,0.0,1.0282227282748293,-9.73488237947226,1.0,0.0,0.0 -991,14.0,4.052832257713279,2.5,0.0,0.0,1.0259304454661278,-9.751532535750078,1.0,0.0,0.0 -991,15.0,1.7298674270727408,1.8,0.0,0.0,1.0229296711401112,-9.715549661673023,1.0,0.0,0.0 -991,16.0,4.4482305267584765,5.8,0.0,0.0,1.0150000205177916,-10.0431173136016,1.0,0.0,0.0 -991,17.0,1.5815930761807917,0.9,0.0,0.0,1.0142908061553335,-10.146158086114,1.0,0.0,0.0 -991,18.0,4.695354444911725,3.4,0.0,0.0,1.0095477638360524,-10.300355894583529,1.0,0.0,0.0 -991,19.0,1.0873452398742942,0.7,0.0,0.0,1.010913362654102,-10.266992829085629,1.0,0.0,0.0 -991,20.0,8.649337135363705,11.2,0.0,0.0,1.005809856037284,-10.243393072033095,1.0,0.0,0.0 -991,21.0,0.0,0.0,0.0,0.0,1.0057229820664204,-10.253430967690914,1.0,0.0,0.0 -991,22.0,1.5815930761807917,1.6,0.0,0.0,0.9830361614595846,-10.597491412108267,1.0,0.0,0.0 -991,23.0,4.299956175866528,6.7,0.0,0.0,0.9895568749774492,-10.470368214180697,1.0,0.0,0.0 -991,24.0,0.0,0.0,0.0,0.0,0.9860037414546168,-10.265678660151783,1.0,0.0,0.0 -991,25.0,1.7298674270727408,2.3,0.0,0.0,0.9724909631936428,-10.308837912254928,1.0,0.0,0.0 -991,26.0,0.0,0.0,0.0,0.0,0.990606324283542,-10.078665945102667,1.0,0.0,0.0 -991,27.0,0.0,0.0,0.0,0.0,0.976041814134275,-8.095548086791954,1.0,0.0,0.0 -991,28.0,1.1861948071355937,0.9,0.0,0.0,0.9627495938469292,-11.312113619937538,1.0,0.0,0.0 -991,29.0,5.239027064848872,1.9,0.0,0.0,0.9400000013437018,-12.527175048020023,1.0,0.0,0.0 -992,0.0,0.0,0.0,77.50172846173346,1.4992096453170234e-06,1.0,0.0,0.0,0.0,1.0 -992,1.0,10.725178047850994,12.7,68.14896412454465,11.68262369865934,0.9831066232483276,-2.4964143896811306,0.0,1.0,0.0 -992,2.0,1.1861948071355937,1.2,0.0,0.0,1.000853810780546,-0.1340064775619134,1.0,0.0,0.0 -992,3.0,3.75628355592938,1.6,0.0,0.0,0.958302919761962,-5.671945082220241,1.0,0.0,0.0 -992,4.0,46.55814618007206,19.0,0.0,0.0,0.9400000011658984,-8.155240708939106,0.0,1.0,0.0 -992,5.0,0.0,0.0,0.0,0.0,0.970188961228596,-8.295238295422845,1.0,0.0,0.0 -992,6.0,11.268850667788142,10.9,0.0,0.0,0.95113594757422,-8.508683203748271,1.0,0.0,0.0 -992,7.0,14.82743508919492,30.0,6.475654848748859e-09,39.99999816525703,0.9728765835748344,-8.737932063482665,0.0,1.0,0.0 -992,8.0,0.0,0.0,0.0,0.0,1.0222287648912758,-9.592732632740333,1.0,0.0,0.0 -992,9.0,2.866637450577685,2.0,0.0,0.0,1.0184367501155227,-10.261062641819647,1.0,0.0,0.0 -992,10.0,0.0,0.0,7.954015052201927e-09,19.24879958861372,1.0599999944697662,-9.592732631865514,0.0,1.0,0.0 -992,11.0,5.53557576663277,7.5,0.0,0.0,1.0235122116605146,-9.462245252245298,1.0,0.0,0.0 -992,12.0,0.0,0.0,3.6342069260506805e-09,23.9999948998812,1.0553499843042362,-9.46224525197542,0.0,1.0,0.0 -992,13.0,3.064336585100284,1.6,0.0,0.0,1.0124183367013524,-9.936185778907271,1.0,0.0,0.0 -992,14.0,4.052832257713279,2.5,0.0,0.0,1.0081683597418978,-10.009229482092271,1.0,0.0,0.0 -992,15.0,1.7298674270727408,1.8,0.0,0.0,1.0023745751084567,-9.744355515981573,1.0,0.0,0.0 -992,16.0,4.4482305267584765,5.8,0.0,0.0,0.9887209592506868,-10.06317636003128,1.0,0.0,0.0 -992,17.0,1.5815930761807917,0.9,0.0,0.0,1.00306944814429,-10.391998161515623,1.0,0.0,0.0 -992,18.0,4.695354444911725,3.4,0.0,0.0,1.0022222708443458,-10.535818239798417,1.0,0.0,0.0 -992,19.0,1.0873452398742942,0.7,0.0,0.0,1.0056713283509744,-10.49558251515776,1.0,0.0,0.0 -992,20.0,8.649337135363705,11.2,0.0,0.0,0.987479380215127,-10.64014103720988,1.0,0.0,0.0 -992,21.0,0.0,0.0,0.0,0.0,0.9911724238057829,-10.596702536248548,1.0,0.0,0.0 -992,22.0,1.5815930761807917,1.6,0.0,0.0,0.9959192315877342,-10.32889653458488,1.0,0.0,0.0 -992,23.0,4.299956175866528,6.7,0.0,0.0,0.9860936802482184,-10.643450296443316,1.0,0.0,0.0 -992,24.0,0.0,0.0,0.0,0.0,0.980946757969541,-10.552334415784255,1.0,0.0,0.0 -992,25.0,1.7298674270727408,2.3,0.0,0.0,0.967362336566897,-10.595946154969868,1.0,0.0,0.0 -992,26.0,0.0,0.0,0.0,0.0,0.984636205139648,-10.437050771915937,1.0,0.0,0.0 -992,27.0,0.0,0.0,0.0,0.0,0.968956181809279,-8.605746169932234,1.0,0.0,0.0 -992,28.0,1.1861948071355937,0.9,0.0,0.0,0.971593675362439,-10.994412896490177,1.0,0.0,0.0 -992,29.0,5.239027064848872,1.9,0.0,0.0,0.9645632708447578,-11.418702967379597,1.0,0.0,0.0 -993,0.0,0.0,0.0,147.08246306760782,0.0082078645149863,1.0,0.0,0.0,0.0,1.0 -993,1.0,10.725178047850994,12.7,3.508625605675465e-06,10.198128789366764,0.987627067149982,-2.397927734991127,0.0,1.0,0.0 -993,2.0,1.1861948071355937,1.2,0.0,0.0,0.9644528397502355,-7.280907042571879,1.0,0.0,0.0 -993,3.0,3.75628355592938,1.6,0.0,0.0,0.9561694062092844,-8.993423380528998,1.0,0.0,0.0 -993,4.0,46.55814618007206,19.0,3.513545188250456e-09,33.149708420855944,0.970030154592566,-9.564297769085671,0.0,1.0,0.0 -993,5.0,0.0,0.0,0.0,0.0,0.9560570577793054,-10.197961212796235,1.0,0.0,0.0 -993,6.0,11.268850667788142,10.9,0.0,0.0,0.954940833430547,-10.16464059463877,1.0,0.0,0.0 -993,7.0,14.82743508919492,30.0,6.154556265028868e-09,39.99797866388344,0.9587432223730428,-10.655800942055526,0.0,1.0,0.0 -993,8.0,0.0,0.0,0.0,0.0,0.9817085038321252,-11.74948423427429,1.0,0.0,0.0 -993,9.0,2.866637450577685,2.0,0.0,0.0,0.9841896791014166,-12.564404821565397,1.0,0.0,0.0 -993,10.0,0.0,0.0,0.0,0.0,0.9817085038321252,-11.74948423427429,0.0,1.0,0.0 -993,11.0,5.53557576663277,7.5,0.0,0.0,1.0129795829505084,-12.407048439161564,1.0,0.0,0.0 -993,12.0,0.0,0.0,9.094780808348884e-09,23.98519556308174,1.045109492801673,-12.407048438472469,0.0,1.0,0.0 -993,13.0,3.064336585100284,1.6,0.0,0.0,0.9997288570220176,-12.81752283355619,1.0,0.0,0.0 -993,14.0,4.052832257713279,2.5,0.0,0.0,0.9939794403052766,-12.772558535727368,1.0,0.0,0.0 -993,15.0,1.7298674270727408,1.8,0.0,0.0,0.9946875980459332,-12.515605655405572,1.0,0.0,0.0 -993,16.0,4.4482305267584765,5.8,0.0,0.0,0.9830823520713154,-12.646564673833316,1.0,0.0,0.0 -993,17.0,1.5815930761807917,0.9,0.0,0.0,0.9816460088662288,-13.003737266763752,1.0,0.0,0.0 -993,18.0,4.695354444911725,3.4,0.0,0.0,0.976555622565627,-13.054098974773597,1.0,0.0,0.0 -993,19.0,1.0873452398742942,0.7,0.0,0.0,0.9778725567264832,-12.957873116618558,1.0,0.0,0.0 -993,20.0,8.649337135363705,11.2,0.0,0.0,0.974910898451022,-12.722896012171228,1.0,0.0,0.0 -993,21.0,0.0,0.0,0.0,0.0,0.9756798005997463,-12.725293066971004,1.0,0.0,0.0 -993,22.0,1.5815930761807917,1.6,0.0,0.0,0.9811636202041408,-12.886363467931336,1.0,0.0,0.0 -993,23.0,4.299956175866528,6.7,0.0,0.0,0.9706220514128572,-12.91691008826353,1.0,0.0,0.0 -993,24.0,0.0,0.0,0.0,0.0,0.9659428089228416,-12.716469300564135,1.0,0.0,0.0 -993,25.0,1.7298674270727408,2.3,0.0,0.0,0.9521412150480106,-12.76146647460704,1.0,0.0,0.0 -993,26.0,0.0,0.0,0.0,0.0,0.9699964760432056,-12.530750739048996,1.0,0.0,0.0 -993,27.0,0.0,0.0,0.0,0.0,0.9547198548860056,-10.531740905692068,1.0,0.0,0.0 -993,28.0,1.1861948071355937,0.9,0.0,0.0,0.9567463837509006,-13.10529194765315,1.0,0.0,0.0 -993,29.0,5.239027064848872,1.9,0.0,0.0,0.9496036787703712,-13.542939386930676,1.0,0.0,0.0 -994,0.0,0.0,0.0,150.2006217110607,3.619646666922094,1.0,0.0,0.0,0.0,1.0 -994,1.0,10.725178047850994,12.7,0.0,0.0,0.9801174940447198,-3.1205463621656606,0.0,1.0,0.0 -994,2.0,1.1861948071355937,1.2,0.0,0.0,0.974484910066456,-5.331155650021371,1.0,0.0,0.0 -994,3.0,3.75628355592938,1.6,0.0,0.0,0.9679919581572692,-6.560515112960137,1.0,0.0,0.0 -994,4.0,46.55814618007206,19.0,1.4492636847771584e-09,33.68950359931016,0.9401876013518548,-15.69902591519556,0.0,1.0,0.0 -994,5.0,0.0,0.0,0.0,0.0,0.9612861618349277,-8.646763926384036,1.0,0.0,0.0 -994,6.0,11.268850667788142,10.9,0.0,0.0,0.9459712640263834,-11.75465020067803,1.0,0.0,0.0 -994,7.0,14.82743508919492,30.0,7.623872108678202e-10,39.99943775010748,0.9639610440429632,-9.163569962849763,0.0,1.0,0.0 -994,8.0,0.0,0.0,0.0,0.0,1.025310837733329,-19.24001748032853,1.0,0.0,0.0 -994,9.0,2.866637450577685,2.0,0.0,0.0,1.0069669069623544,-19.240017480408888,1.0,0.0,0.0 -994,10.0,0.0,0.0,1.3163608482950276e-09,17.67683772997025,1.0599975431104445,-19.240017480184186,0.0,1.0,0.0 -994,11.0,5.53557576663277,7.5,0.0,0.0,0.9927043090961674,-21.32051892444388,1.0,0.0,0.0 -994,12.0,0.0,0.0,3.3632144172006804e-10,19.813897218493555,1.0199024553124092,-21.320518924417225,0.0,1.0,0.0 -994,13.0,3.064336585100284,1.6,0.0,0.0,0.9834039699409868,-21.324338264827183,1.0,0.0,0.0 -994,14.0,4.052832257713279,2.5,0.0,0.0,0.984501569437254,-20.96059197371784,1.0,0.0,0.0 -994,15.0,1.7298674270727408,1.8,0.0,0.0,0.994286961115862,-20.548335821883477,1.0,0.0,0.0 -994,16.0,4.4482305267584765,5.8,0.0,0.0,0.9981334129379004,-19.710639959318037,1.0,0.0,0.0 -994,17.0,1.5815930761807917,0.9,0.0,0.0,0.9835877647138836,-20.657014261942745,1.0,0.0,0.0 -994,18.0,4.695354444911725,3.4,0.0,0.0,0.985283938202426,-20.39050386931091,1.0,0.0,0.0 -994,19.0,1.0873452398742942,0.7,0.0,0.0,0.9901715927899858,-20.131472697029835,1.0,0.0,0.0 -994,20.0,8.649337135363705,11.2,0.0,0.0,0.9957690767998894,-19.260725910229084,1.0,0.0,0.0 -994,21.0,0.0,0.0,0.0,0.0,0.9958642636879214,-19.220025464870524,1.0,0.0,0.0 -994,22.0,1.5815930761807917,1.6,0.0,0.0,0.9810495248407756,-20.076561574610743,1.0,0.0,0.0 -994,23.0,4.299956175866528,6.7,0.0,0.0,0.9832898591484948,-18.769404846222,1.0,0.0,0.0 -994,24.0,0.0,0.0,0.0,0.0,0.983271638831138,-15.83650247699443,1.0,0.0,0.0 -994,25.0,1.7298674270727408,2.3,0.0,0.0,0.9697202498465118,-15.87990530570077,1.0,0.0,0.0 -994,26.0,0.0,0.0,0.0,0.0,0.990315560723433,-13.962895042280351,1.0,0.0,0.0 -994,27.0,0.0,0.0,0.0,0.0,0.95981044477118,-9.34730312391052,1.0,0.0,0.0 -994,28.0,1.1861948071355937,0.9,0.0,0.0,0.9773517686774926,-14.513800531350627,1.0,0.0,0.0 -994,29.0,5.239027064848872,1.9,0.0,0.0,0.970363959252203,-14.933074809008016,1.0,0.0,0.0 -995,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -995,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -995,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -995,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -995,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -995,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -995,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -995,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -995,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -995,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -995,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -995,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -995,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -995,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -995,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -995,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -995,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -995,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -995,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -995,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -995,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -995,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -995,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -995,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -995,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -995,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -995,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -995,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -995,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -995,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -996,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -996,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -996,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -996,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -996,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -996,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -996,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -996,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -996,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -996,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -996,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -996,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -996,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -996,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -996,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -996,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -996,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -996,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -996,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -996,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -996,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -996,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -996,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -996,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -996,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -996,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -996,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -996,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -996,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -996,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -997,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -997,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -997,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -997,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -997,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -997,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -997,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -997,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -997,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -997,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -997,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -997,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -997,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -997,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -997,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -997,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -997,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -997,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -997,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -997,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -997,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -997,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -997,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -997,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -997,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -997,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -997,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -997,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -997,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -997,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -998,0.0,0.0,0.0,146.36831192243665,0.0009051065811505,1.0,0.0,0.0,0.0,1.0 -998,1.0,10.725178047850994,12.7,1.491019610716141e-06,9.535587031962244,0.9807204410425716,-3.734366712616636,0.0,1.0,0.0 -998,2.0,1.1861948071355937,1.2,0.0,0.0,0.978027520213118,-3.2920306035511246,1.0,0.0,0.0 -998,3.0,3.75628355592938,1.6,0.0,0.0,0.9721547078631836,-4.027915590424241,1.0,0.0,0.0 -998,4.0,46.55814618007206,19.0,-1.5590803601066243e-09,24.572025751947702,0.9630846089702042,-9.47307211394392,0.0,1.0,0.0 -998,5.0,0.0,0.0,0.0,0.0,0.9668329087357488,-8.880927994496039,1.0,0.0,0.0 -998,6.0,11.268850667788142,10.9,0.0,0.0,0.9588249193943964,-9.364325378674442,1.0,0.0,0.0 -998,7.0,14.82743508919492,30.0,-8.699038311731963e-10,26.460350268853134,0.9645405481228102,-9.2344484370513,0.0,1.0,0.0 -998,8.0,0.0,0.0,0.0,0.0,1.0146112500473674,-9.822129926371636,1.0,0.0,0.0 -998,9.0,2.866637450577685,2.0,0.0,0.0,1.0076816317257349,-10.310430362613008,1.0,0.0,0.0 -998,10.0,0.0,0.0,1.3993352416947276e-10,19.931448736884267,1.053946650334984,-9.822129926356038,0.0,1.0,0.0 -998,11.0,5.53557576663277,7.5,0.0,0.0,1.028551739621247,-8.61956621200268,1.0,0.0,0.0 -998,12.0,0.0,0.0,-5.353943523150326e-10,16.506511555419724,1.0505489219464368,-8.619566212042425,0.0,1.0,0.0 -998,13.0,3.064336585100284,1.6,0.0,0.0,1.0167275015499582,-9.19782782932074,1.0,0.0,0.0 -998,14.0,4.052832257713279,2.5,0.0,0.0,1.0109876863501115,-9.36061701838178,1.0,0.0,0.0 -998,15.0,1.7298674270727408,1.8,0.0,0.0,1.0126955894545042,-9.394076443953969,1.0,0.0,0.0 -998,16.0,4.4482305267584765,5.8,0.0,0.0,1.005263148897148,-10.110460995854895,1.0,0.0,0.0 -998,17.0,1.5815930761807917,0.9,0.0,0.0,1.0009960712152388,-9.985461560803852,1.0,0.0,0.0 -998,18.0,4.695354444911725,3.4,0.0,0.0,0.9972810037022402,-10.275299306872148,1.0,0.0,0.0 -998,19.0,1.0873452398742942,0.7,0.0,0.0,0.9992359179763708,-10.310846128076792,1.0,0.0,0.0 -998,20.0,8.649337135363705,11.2,0.0,0.0,0.9978497326299468,-10.425231641683125,1.0,0.0,0.0 -998,21.0,0.0,0.0,0.0,0.0,0.9983609413882284,-10.415506083166152,1.0,0.0,0.0 -998,22.0,1.5815930761807917,1.6,0.0,0.0,0.9994049865601294,-9.859318734053678,1.0,0.0,0.0 -998,23.0,4.299956175866528,6.7,0.0,0.0,0.9905288639000552,-10.417499950552545,1.0,0.0,0.0 -998,24.0,0.0,0.0,0.0,0.0,0.9810960446710456,-10.577547838396924,1.0,0.0,0.0 -998,25.0,1.7298674270727408,2.3,0.0,0.0,0.9675137492883022,-10.621146118929856,1.0,0.0,0.0 -998,26.0,0.0,0.0,0.0,0.0,0.9822257243268356,-10.624756463343443,1.0,0.0,0.0 -998,27.0,0.0,0.0,0.0,0.0,0.9648935417175776,-9.135036790274812,1.0,0.0,0.0 -998,28.0,1.1861948071355937,0.9,0.0,0.0,0.9691494786556348,-11.184893493683871,1.0,0.0,0.0 -998,29.0,5.239027064848872,1.9,0.0,0.0,0.9621008337886328,-11.611339981977013,1.0,0.0,0.0 -999,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -999,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -999,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -999,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -999,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -999,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -999,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -999,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -999,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -999,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -999,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -999,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -999,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -999,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -999,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -999,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -999,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -999,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -999,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -999,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -999,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -999,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -999,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -999,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -999,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -999,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -999,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -999,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -999,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -999,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -1000,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -1000,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -1000,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -1000,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -1000,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -1000,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -1000,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -1000,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -1000,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -1000,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -1000,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -1000,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -1000,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -1000,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -1000,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -1000,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -1000,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -1000,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -1000,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -1000,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -1000,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -1000,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -1000,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -1000,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -1000,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -1000,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -1000,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -1000,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -1000,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -1000,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -1001,0.0,0.0,0.0,145.58050655421434,0.0009782129672508,1.0,0.0,0.0,0.0,1.0 -1001,1.0,10.725178047850994,12.7,7.297226673911352e-07,5.776321373571498,0.981476041631798,-3.322595870455612,0.0,1.0,0.0 -1001,2.0,1.1861948071355937,1.2,0.0,0.0,0.9773717654171096,-4.3874027712249,1.0,0.0,0.0 -1001,3.0,3.75628355592938,1.6,0.0,0.0,0.9714097313852624,-5.387487576282676,1.0,0.0,0.0 -1001,4.0,46.55814618007206,19.0,1.2081290394839471e-09,23.61294108516904,0.9644821674843896,-8.01897381208407,0.0,1.0,0.0 -1001,5.0,0.0,0.0,0.0,0.0,0.9715232947647816,-6.394999422158453,1.0,0.0,0.0 -1001,6.0,11.268850667788142,10.9,0.0,0.0,0.9623840617486692,-7.299050183497346,1.0,0.0,0.0 -1001,7.0,14.82743508919492,30.0,1.181028739517274e-09,31.709051244752395,0.9711636212855368,-6.788235576479931,0.0,1.0,0.0 -1001,8.0,0.0,0.0,0.0,0.0,1.0188742208729646,-8.015607861596095,1.0,0.0,0.0 -1001,9.0,2.866637450577685,2.0,0.0,0.0,1.010937195223522,-8.857691751985119,1.0,0.0,0.0 -1001,10.0,0.0,0.0,8.21563142998923e-10,20.94924083415092,1.0599828309946453,-8.015607861505435,0.0,1.0,0.0 -1001,11.0,5.53557576663277,7.5,0.0,0.0,1.0188728660886783,-8.460047248335881,1.0,0.0,0.0 -1001,12.0,0.0,0.0,1.2124379393260642e-09,10.684267188386125,1.0333481177553026,-8.460047248243505,0.0,1.0,0.0 -1001,13.0,3.064336585100284,1.6,0.0,0.0,1.0082016004524588,-8.866720805689287,1.0,0.0,0.0 -1001,14.0,4.052832257713279,2.5,0.0,0.0,1.004882781137344,-8.880381229282959,1.0,0.0,0.0 -1001,15.0,1.7298674270727408,1.8,0.0,0.0,1.009526295171915,-8.712565467266241,1.0,0.0,0.0 -1001,16.0,4.4482305267584765,5.8,0.0,0.0,1.0062535053116963,-8.891316252010267,1.0,0.0,0.0 -1001,17.0,1.5815930761807917,0.9,0.0,0.0,0.9982784170447402,-9.168539637808044,1.0,0.0,0.0 -1001,18.0,4.695354444911725,3.4,0.0,0.0,0.9965452233584832,-9.255393402991862,1.0,0.0,0.0 -1001,19.0,1.0873452398742942,0.7,0.0,0.0,0.999550941329191,-9.1837589164537,1.0,0.0,0.0 -1001,20.0,8.649337135363705,11.2,0.0,0.0,1.0007732777111766,-8.99836575740327,1.0,0.0,0.0 -1001,21.0,0.0,0.0,0.0,0.0,1.0011652042259924,-8.99709485892628,1.0,0.0,0.0 -1001,22.0,1.5815930761807917,1.6,0.0,0.0,0.9964146422038268,-9.0264686145389,1.0,0.0,0.0 -1001,23.0,4.299956175866528,6.7,0.0,0.0,0.9915764882255848,-9.101943412830376,1.0,0.0,0.0 -1001,24.0,0.0,0.0,0.0,0.0,0.984861378277825,-8.858345717389911,1.0,0.0,0.0 -1001,25.0,1.7298674270727408,2.3,0.0,0.0,0.9713324830395986,-8.901606563586629,1.0,0.0,0.0 -1001,26.0,0.0,0.0,0.0,0.0,0.987496838023836,-8.650439340339124,1.0,0.0,0.0 -1001,27.0,0.0,0.0,0.0,0.0,0.9697593061509254,-6.712599847072237,1.0,0.0,0.0 -1001,28.0,1.1861948071355937,0.9,0.0,0.0,0.9400014062070244,-10.680354804790955,1.0,0.0,0.0 -1001,29.0,5.239027064848872,1.9,0.0,0.0,0.9473750071315404,-10.473317528298823,1.0,0.0,0.0 -1002,0.0,0.0,0.0,145.5050995531848,0.0038875737477184,1.0,0.0,0.0,0.0,1.0 -1002,1.0,10.725178047850994,12.7,5.252994003684197e-06,5.985746361543676,0.9813206153765652,-3.314123425228426,0.0,1.0,0.0 -1002,2.0,1.1861948071355937,1.2,0.0,0.0,0.9778595422074357,-4.401976681193667,1.0,0.0,0.0 -1002,3.0,3.75628355592938,1.6,0.0,0.0,0.9720123738217492,-5.405412888667858,1.0,0.0,0.0 -1002,4.0,46.55814618007206,19.0,5.896168121106771e-09,22.614111668304623,0.963011289990542,-7.986122685680079,0.0,1.0,0.0 -1002,5.0,0.0,0.0,0.0,0.0,0.9708344066150968,-6.36064027339804,1.0,0.0,0.0 -1002,6.0,11.268850667788142,10.9,0.0,0.0,0.9613666894979004,-7.266152584129081,1.0,0.0,0.0 -1002,7.0,14.82743508919492,30.0,4.871155898713581e-09,25.536524396123667,0.9680021817656604,-6.712476270405347,0.0,1.0,0.0 -1002,8.0,0.0,0.0,0.0,0.0,1.0238302255441072,-7.884140617481378,1.0,0.0,0.0 -1002,9.0,2.866637450577685,2.0,0.0,0.0,1.021469774732095,-8.66705636443599,1.0,0.0,0.0 -1002,10.0,0.0,0.0,1.4868989408559575e-09,18.423112507314624,1.0599818575209374,-7.884140617318097,0.0,1.0,0.0 -1002,11.0,5.53557576663277,7.5,0.0,0.0,1.029762269566398,-8.62449376119256,1.0,0.0,0.0 -1002,12.0,0.0,0.0,5.082491706450902e-09,19.818238091014,1.0560355640204124,-8.624493760817664,0.0,1.0,0.0 -1002,13.0,3.064336585100284,1.6,0.0,0.0,1.0220493549553935,-8.944165945544594,1.0,0.0,0.0 -1002,14.0,4.052832257713279,2.5,0.0,0.0,1.015440634515677,-8.99068511876184,1.0,0.0,0.0 -1002,15.0,1.7298674270727408,1.8,0.0,0.0,1.0087616513465918,-8.903146731166727,1.0,0.0,0.0 -1002,16.0,4.4482305267584765,5.8,0.0,0.0,0.9951970820314444,-9.217887336353176,1.0,0.0,0.0 -1002,17.0,1.5815930761807917,0.9,0.0,0.0,1.0089402994020955,-9.166910065477005,1.0,0.0,0.0 -1002,18.0,4.695354444911725,3.4,0.0,0.0,1.0072431686454697,-9.188705665850616,1.0,0.0,0.0 -1002,19.0,1.0873452398742942,0.7,0.0,0.0,1.0102291387301667,-9.085276491705578,1.0,0.0,0.0 -1002,20.0,8.649337135363705,11.2,0.0,0.0,1.012075023551242,-8.840217785795542,1.0,0.0,0.0 -1002,21.0,0.0,0.0,0.0,0.0,1.0126674199056132,-8.850631071721862,1.0,0.0,0.0 -1002,22.0,1.5815930761807917,1.6,0.0,0.0,1.008501731847728,-9.099260744100045,1.0,0.0,0.0 -1002,23.0,4.299956175866528,6.7,0.0,0.0,1.0056186330101238,-9.126125029402862,1.0,0.0,0.0 -1002,24.0,0.0,0.0,0.0,0.0,0.9705087922951272,-8.637204223075637,1.0,0.0,0.0 -1002,25.0,1.7298674270727408,2.3,0.0,0.0,0.9567740302584994,-8.681772844192261,1.0,0.0,0.0 -1002,26.0,0.0,0.0,0.0,0.0,0.977503476662126,-8.570358919596305,1.0,0.0,0.0 -1002,27.0,0.0,0.0,0.0,0.0,0.967591259813498,-6.649322286741538,1.0,0.0,0.0 -1002,28.0,1.1861948071355937,0.9,0.0,0.0,0.964360658829252,-9.135992825717931,1.0,0.0,0.0 -1002,29.0,5.239027064848872,1.9,0.0,0.0,0.9572759966942724,-9.56671234612574,1.0,0.0,0.0 -1003,0.0,0.0,0.0,145.46810015410978,0.0001519488312951,1.0,0.0,0.0,0.0,1.0 -1003,1.0,10.725178047850994,12.7,1.7020347380052324e-07,8.936141810555675,0.9818440043385352,-3.32792659376138,0.0,1.0,0.0 -1003,2.0,1.1861948071355937,1.2,0.0,0.0,0.9763538889462116,-4.365718062229287,1.0,0.0,0.0 -1003,3.0,3.75628355592938,1.6,0.0,0.0,0.9701531239910872,-5.360903081489161,1.0,0.0,0.0 -1003,4.0,46.55814618007206,19.0,-2.2979642810429967e-10,23.2613400792314,0.9635644616622562,-8.009402814121712,0.0,1.0,0.0 -1003,5.0,0.0,0.0,0.0,0.0,0.9700680609654552,-6.36959703560104,1.0,0.0,0.0 -1003,6.0,11.268850667788142,10.9,0.0,0.0,0.9611394956713304,-7.28039354940014,1.0,0.0,0.0 -1003,7.0,14.82743508919492,30.0,-2.115520337695441e-10,30.11091093389662,0.9691124813157158,-6.753997944394727,0.0,1.0,0.0 -1003,8.0,0.0,0.0,0.0,0.0,1.0174010874356485,-8.001779136100186,1.0,0.0,0.0 -1003,9.0,2.866637450577685,2.0,0.0,0.0,1.0087336030363696,-8.850455221046571,1.0,0.0,0.0 -1003,10.0,0.0,0.0,-1.0660521158873607e-10,21.663287711460104,1.0599136437242074,-8.00177913611197,0.0,1.0,0.0 -1003,11.0,5.53557576663277,7.5,0.0,0.0,1.014787155622808,-8.42451482106209,1.0,0.0,0.0 -1003,12.0,0.0,0.0,-2.7208013190817365e-10,8.75801414991867,1.0267291751029275,-8.424514821083035,0.0,1.0,0.0 -1003,13.0,3.064336585100284,1.6,0.0,0.0,1.0043324976863794,-8.834610152508862,1.0,0.0,0.0 -1003,14.0,4.052832257713279,2.5,0.0,0.0,1.001249934196006,-8.85443328541229,1.0,0.0,0.0 -1003,15.0,1.7298674270727408,1.8,0.0,0.0,1.006217899775648,-8.693764342115871,1.0,0.0,0.0 -1003,16.0,4.4482305267584765,5.8,0.0,0.0,1.0036985170444497,-8.879567150902941,1.0,0.0,0.0 -1003,17.0,1.5815930761807917,0.9,0.0,0.0,0.9951206555248068,-9.1512582549788,1.0,0.0,0.0 -1003,18.0,4.695354444911725,3.4,0.0,0.0,0.9936760086453412,-9.2426864566019,1.0,0.0,0.0 -1003,19.0,1.0873452398742942,0.7,0.0,0.0,0.9968450970406344,-9.172819813359723,1.0,0.0,0.0 -1003,20.0,8.649337135363705,11.2,0.0,0.0,0.9985049616047872,-8.9901919886076,1.0,0.0,0.0 -1003,21.0,0.0,0.0,0.0,0.0,0.9988847002934536,-8.988395590991452,1.0,0.0,0.0 -1003,22.0,1.5815930761807917,1.6,0.0,0.0,0.9932739999867122,-9.00510291108855,1.0,0.0,0.0 -1003,23.0,4.299956175866528,6.7,0.0,0.0,0.9891133115264564,-9.085649596660796,1.0,0.0,0.0 -1003,24.0,0.0,0.0,0.0,0.0,0.9830174561599458,-8.838734377415244,1.0,0.0,0.0 -1003,25.0,1.7298674270727408,2.3,0.0,0.0,0.9694624636341024,-8.882159974229712,1.0,0.0,0.0 -1003,26.0,0.0,0.0,0.0,0.0,0.9860497386342514,-8.627870458205686,1.0,0.0,0.0 -1003,27.0,0.0,0.0,0.0,0.0,0.96818567243903,-6.686168812979699,1.0,0.0,0.0 -1003,28.0,1.1861948071355937,0.9,0.0,0.0,0.9730268974354764,-9.183614973295024,1.0,0.0,0.0 -1003,29.0,5.239027064848872,1.9,0.0,0.0,0.9660071442154028,-9.6066481857914,1.0,0.0,0.0 -1004,0.0,0.0,0.0,145.4794102127799,0.0001528912894954,1.0,0.0,0.0,0.0,1.0 -1004,1.0,10.725178047850994,12.7,1.851340729653423e-07,8.770396449155086,0.9818326648206872,-3.3218255677346846,0.0,1.0,0.0 -1004,2.0,1.1861948071355937,1.2,0.0,0.0,0.9764038651138568,-4.383982811003434,1.0,0.0,0.0 -1004,3.0,3.75628355592938,1.6,0.0,0.0,0.970216628103988,-5.383561420517108,1.0,0.0,0.0 -1004,4.0,46.55814618007206,19.0,-2.421437650995768e-10,23.287614722177537,0.963608273806567,-7.98871375052167,0.0,1.0,0.0 -1004,5.0,0.0,0.0,0.0,0.0,0.9701283722054848,-6.333082864025728,1.0,0.0,0.0 -1004,6.0,11.268850667788142,10.9,0.0,0.0,0.9611957638826752,-7.250302675124898,1.0,0.0,0.0 -1004,7.0,14.82743508919492,30.0,-2.3037155792583818e-10,30.34848305444261,0.9692730269370547,-6.723924053130887,0.0,1.0,0.0 -1004,8.0,0.0,0.0,0.0,0.0,1.017436425454602,-8.48904313001312,1.0,0.0,0.0 -1004,9.0,2.866637450577685,2.0,0.0,0.0,1.0095150172134977,-9.609184517124964,1.0,0.0,0.0 -1004,10.0,0.0,0.0,-1.3008737681815558e-10,21.144087045131418,1.0589671754835546,-8.48904313002751,0.0,1.0,0.0 -1004,11.0,5.53557576663277,7.5,0.0,0.0,1.017211564665412,-8.796283550537774,1.0,0.0,0.0 -1004,12.0,0.0,0.0,-3.05425544783071e-10,9.48217029153024,1.0300987163504225,-8.796283550561153,0.0,1.0,0.0 -1004,13.0,3.064336585100284,1.6,0.0,0.0,1.0066910062338323,-9.242595845096549,1.0,0.0,0.0 -1004,14.0,4.052832257713279,2.5,0.0,0.0,1.0032645328116747,-9.297962174454796,1.0,0.0,0.0 -1004,15.0,1.7298674270727408,1.8,0.0,0.0,1.0076739860414907,-9.227552879147796,1.0,0.0,0.0 -1004,16.0,4.4482305267584765,5.8,0.0,0.0,1.0047761846676204,-9.568857046252152,1.0,0.0,0.0 -1004,17.0,1.5815930761807917,0.9,0.0,0.0,0.9966858708232124,-9.704457118282416,1.0,0.0,0.0 -1004,18.0,4.695354444911725,3.4,0.0,0.0,0.9949779539870546,-9.861690942277235,1.0,0.0,0.0 -1004,19.0,1.0873452398742942,0.7,0.0,0.0,0.9980011612854874,-9.82676384057239,1.0,0.0,0.0 -1004,20.0,8.649337135363705,11.2,0.0,0.0,0.9993439715458856,-9.71105612376062,1.0,0.0,0.0 -1004,21.0,0.0,0.0,0.0,0.0,0.9997431986979356,-9.6971829815747,1.0,0.0,0.0 -1004,22.0,1.5815930761807917,1.6,0.0,0.0,0.9950419961928376,-9.49282238182592,1.0,0.0,0.0 -1004,23.0,4.299956175866528,6.7,0.0,0.0,0.9905513235528952,-9.633655494918337,1.0,0.0,0.0 -1004,24.0,0.0,0.0,0.0,0.0,0.9846901233322324,-9.168360174170882,1.0,0.0,0.0 -1004,25.0,1.7298674270727408,2.3,0.0,0.0,0.9711588085866744,-9.211636281370843,1.0,0.0,0.0 -1004,26.0,0.0,0.0,0.0,0.0,0.9877937134468624,-8.82150549836846,1.0,0.0,0.0 -1004,27.0,0.0,0.0,0.0,0.0,0.9683225932274556,-6.679116428267565,1.0,0.0,0.0 -1004,28.0,1.1861948071355937,0.9,0.0,0.0,0.9747950795640504,-9.375263987084391,1.0,0.0,0.0 -1004,29.0,5.239027064848872,1.9,0.0,0.0,0.9677884219690698,-9.796754296660858,1.0,0.0,0.0 -1005,0.0,0.0,0.0,144.65859236970044,0.0081867214023034,1.0,0.0,0.0,0.0,1.0 -1005,1.0,10.649636627523892,12.7,9.518099533937798e-06,9.011909556383529,0.98184166149674,-3.2987456829388586,0.0,1.0,0.0 -1005,2.0,1.1778399956708454,1.2,0.0,0.0,0.9767138606893796,-4.368334764109917,1.0,0.0,0.0 -1005,3.0,3.729826652957677,1.6,0.0,0.0,0.9705959165667168,-5.364227277685958,1.0,0.0,0.0 -1005,4.0,46.230219830080685,19.0,-1.9143884279737937e-08,23.971853614205852,0.963830433383288,-7.935058090707984,0.0,1.0,0.0 -1005,5.0,0.0,0.0,0.0,0.0,0.968923528772424,-6.261175327636133,1.0,0.0,0.0 -1005,6.0,11.189479958873031,10.9,0.0,0.0,0.9605852792587096,-7.183066539018332,1.0,0.0,0.0 -1005,7.0,14.722999945885569,30.0,-1.6720113053233565e-08,35.26563888067925,0.969912400707639,-6.690167917539029,0.0,1.0,0.0 -1005,8.0,0.0,0.0,0.0,0.0,1.0232127055751064,-11.21916454089013,1.0,0.0,0.0 -1005,9.0,2.8464466562045434,2.0,0.0,0.0,1.0094565682978942,-11.219164540794036,1.0,0.0,0.0 -1005,10.0,0.0,0.0,-1.5748298338199884e-09,13.121157860950234,1.0492243106008678,-11.21916454106495,0.0,1.0,0.0 -1005,11.0,5.496586646463945,7.5,0.0,0.0,1.028219325786321,-8.85077991654243,1.0,0.0,0.0 -1005,12.0,0.0,0.0,-7.0709257251365344e-09,11.64445976186332,1.0438369409775798,-8.850779917070884,0.0,1.0,0.0 -1005,13.0,3.042753322149684,1.6,0.0,0.0,1.0166215750785192,-9.462089101959627,1.0,0.0,0.0 -1005,14.0,4.024286651875388,2.5,0.0,0.0,1.010830233440272,-9.664978059838615,1.0,0.0,0.0 -1005,15.0,1.717683327019983,1.8,0.0,0.0,0.9966620034104972,-11.508924591040644,1.0,0.0,0.0 -1005,16.0,4.416899983765671,5.8,0.0,0.0,1.0010408771398291,-11.373400079400383,1.0,0.0,0.0 -1005,17.0,1.5704533275611274,0.9,0.0,0.0,1.0014503113488014,-10.498644625509591,1.0,0.0,0.0 -1005,18.0,4.662283316197097,3.4,0.0,0.0,0.998124464757311,-10.914320299450784,1.0,0.0,0.0 -1005,19.0,1.079686662698275,0.7,0.0,0.0,1.0002736360063174,-11.017791881175242,1.0,0.0,0.0 -1005,20.0,8.588416635099914,11.2,0.0,0.0,0.9956999091620212,-11.185341927583998,1.0,0.0,0.0 -1005,21.0,0.0,0.0,0.0,0.0,0.9949807059453256,-11.12681175919044,1.0,0.0,0.0 -1005,22.0,1.5704533275611274,1.6,0.0,0.0,0.9991820165520344,-10.11780625382764,1.0,0.0,0.0 -1005,23.0,4.269669984306815,6.7,0.0,0.0,0.9901812536938852,-10.615377405936403,1.0,0.0,0.0 -1005,24.0,0.0,0.0,0.0,0.0,0.9853894547244344,-9.763079064032915,1.0,0.0,0.0 -1005,25.0,1.717683327019983,2.3,0.0,0.0,0.971900392414458,-9.803521522546866,1.0,0.0,0.0 -1005,26.0,0.0,0.0,0.0,0.0,0.9890631517370856,-9.17633631364222,1.0,0.0,0.0 -1005,27.0,0.0,0.0,0.0,0.0,0.9675330317773366,-6.664983675150536,1.0,0.0,0.0 -1005,28.0,1.1778399956708454,0.9,0.0,0.0,0.9761326993009508,-9.723426471881114,1.0,0.0,0.0 -1005,29.0,5.202126647546234,1.9,0.0,0.0,0.9691685065730032,-10.140241708567173,1.0,0.0,0.0 -1006,0.0,0.0,0.0,144.65593096494032,0.0034144350174791,1.0,0.0,0.0,0.0,1.0 -1006,1.0,10.649636627523892,12.7,2.8588504510262277e-06,7.873639338196533,0.9817238599389132,-3.303000892736126,0.0,1.0,0.0 -1006,2.0,1.1778399956708454,1.2,0.0,0.0,0.9770395000287576,-4.35467583826617,1.0,0.0,0.0 -1006,3.0,3.729826652957677,1.6,0.0,0.0,0.9709957828226424,-5.347167479677601,1.0,0.0,0.0 -1006,4.0,46.230219830080685,19.0,3.9281396283767365e-09,23.10462883219928,0.9635387477377506,-7.950965712622057,0.0,1.0,0.0 -1006,5.0,0.0,0.0,0.0,0.0,0.9702083122382292,-6.32717563095431,1.0,0.0,0.0 -1006,6.0,11.189479958873031,10.9,0.0,0.0,0.961224683600876,-7.229149059712308,1.0,0.0,0.0 -1006,7.0,14.722999945885569,30.0,-2.688116174442854e-09,28.94800987257044,0.9579360118498804,-8.965834166149163,0.0,1.0,0.0 -1006,8.0,0.0,0.0,0.0,0.0,1.0181422051326785,-8.053034044773229,1.0,0.0,0.0 -1006,9.0,2.8464466562045434,2.0,0.0,0.0,1.01017616336254,-8.949255976617577,1.0,0.0,0.0 -1006,10.0,0.0,0.0,-2.2565975272585136e-09,21.3303828339366,1.0599981247414147,-8.053034045022416,0.0,1.0,0.0 -1006,11.0,5.496586646463945,7.5,0.0,0.0,1.0222449203331518,-8.440296262325207,1.0,0.0,0.0 -1006,12.0,0.0,0.0,3.188949115295265e-09,12.789555383750738,1.0394704012281306,-8.440296262084473,0.0,1.0,0.0 -1006,13.0,3.042753322149684,1.6,0.0,0.0,1.0117549521093965,-8.831767738407605,1.0,0.0,0.0 -1006,14.0,4.024286651875388,2.5,0.0,0.0,1.0086265947632265,-8.83870971267686,1.0,0.0,0.0 -1006,15.0,1.717683327019983,1.8,0.0,0.0,1.0110547223540285,-8.729951230290224,1.0,0.0,0.0 -1006,16.0,4.416899983765671,5.8,0.0,0.0,1.006240116799714,-8.961416531442184,1.0,0.0,0.0 -1006,17.0,1.5704533275611274,0.9,0.0,0.0,1.0049901457759869,-8.978082573353143,1.0,0.0,0.0 -1006,18.0,4.662283316197097,3.4,0.0,0.0,0.9921554933896056,-9.53100760447197,1.0,0.0,0.0 -1006,19.0,1.079686662698275,0.7,0.0,0.0,0.9960855519741564,-9.414223951370708,1.0,0.0,0.0 -1006,20.0,8.588416635099914,11.2,0.0,0.0,0.9999583006598044,-9.10779880802622,1.0,0.0,0.0 -1006,21.0,0.0,0.0,0.0,0.0,1.000327038987033,-9.113004570990077,1.0,0.0,0.0 -1006,22.0,1.5704533275611274,1.6,0.0,0.0,0.9980022001077118,-9.08493937190581,1.0,0.0,0.0 -1006,23.0,4.269669984306815,6.7,0.0,0.0,0.9902899207194718,-9.30001219290262,1.0,0.0,0.0 -1006,24.0,0.0,0.0,0.0,0.0,0.9790924957894228,-9.378595705022557,1.0,0.0,0.0 -1006,25.0,1.717683327019983,2.3,0.0,0.0,0.9655142098060048,-9.419567485693973,1.0,0.0,0.0 -1006,26.0,0.0,0.0,0.0,0.0,0.986066804992398,-8.596362750187684,1.0,0.0,0.0 -1006,27.0,0.0,0.0,0.0,0.0,0.9663159090476002,-7.107007277427728,1.0,0.0,0.0 -1006,28.0,1.1778399956708454,0.9,0.0,0.0,0.973094997369881,-9.146825914604005,1.0,0.0,0.0 -1006,29.0,5.202126647546234,1.9,0.0,0.0,0.9661084495043768,-9.566263850377211,1.0,0.0,0.0 -1007,0.0,0.0,0.0,136.2803189978669,2.1810327392739914,1.0,0.0,0.0,0.0,1.0 -1007,1.0,10.649636627523892,12.7,20.403736279970325,44.18184150534663,0.9799625012707316,-25.09403633238019,0.0,1.0,0.0 -1007,2.0,1.1778399956708454,1.2,0.0,0.0,0.957804140771522,-13.477376825150674,1.0,0.0,0.0 -1007,3.0,3.729826652957677,1.6,0.0,0.0,0.9519192611398244,-16.707650489346054,1.0,0.0,0.0 -1007,4.0,46.230219830080685,19.0,1.4723081026023235e-10,23.57248607021813,0.9642407562565192,-30.061843309070973,0.0,1.0,0.0 -1007,5.0,0.0,0.0,0.0,0.0,0.9721365955010094,-28.769889297830773,1.0,0.0,0.0 -1007,6.0,11.189479958873031,10.9,0.0,0.0,0.9626138291172088,-29.536896052736378,1.0,0.0,0.0 -1007,7.0,14.722999945885569,30.0,2.5745426183153636e-10,29.26249185374273,0.9708492450841818,-29.11712659411197,0.0,1.0,0.0 -1007,8.0,0.0,0.0,0.0,0.0,1.0161649782931512,-28.53938349003937,1.0,0.0,0.0 -1007,9.0,2.8464466562045434,2.0,0.0,0.0,1.004713156445981,-28.418780876407222,1.0,0.0,0.0 -1007,10.0,0.0,0.0,4.767676117637862e-10,22.334684079691492,1.0599918645544757,-28.53938348998662,0.0,1.0,0.0 -1007,11.0,5.496586646463945,7.5,0.0,0.0,1.0298554984836197,-24.07760034372161,1.0,0.0,0.0 -1007,12.0,0.0,0.0,1.8656525135260994e-10,22.82365792288377,1.0599999536618054,-24.077600343707893,0.0,1.0,0.0 -1007,13.0,3.042753322149684,1.6,0.0,0.0,1.0182040683740172,-24.985804841999435,1.0,0.0,0.0 -1007,14.0,4.024286651875388,2.5,0.0,0.0,1.010323626569111,-25.484233183768943,1.0,0.0,0.0 -1007,15.0,1.717683327019983,1.8,0.0,0.0,1.0098455875527304,-25.964384896066672,1.0,0.0,0.0 -1007,16.0,4.416899983765671,5.8,0.0,0.0,1.002737515714852,-27.736653579430552,1.0,0.0,0.0 -1007,17.0,1.5704533275611274,0.9,0.0,0.0,0.9991045011240592,-26.79843058596704,1.0,0.0,0.0 -1007,18.0,4.662283316197097,3.4,0.0,0.0,0.9948236819375552,-27.50380602995312,1.0,0.0,0.0 -1007,19.0,1.079686662698275,0.7,0.0,0.0,0.9965049268061508,-27.75984226883837,1.0,0.0,0.0 -1007,20.0,8.588416635099914,11.2,0.0,0.0,0.9949597085945427,-28.47464775821763,1.0,0.0,0.0 -1007,21.0,0.0,0.0,0.0,0.0,0.995506262961178,-28.44658969334245,1.0,0.0,0.0 -1007,22.0,1.5704533275611274,1.6,0.0,0.0,0.9979370157646206,-26.68546131492759,1.0,0.0,0.0 -1007,23.0,4.269669984306815,6.7,0.0,0.0,0.988610491526332,-28.20343055976001,1.0,0.0,0.0 -1007,24.0,0.0,0.0,0.0,0.0,0.9790707160750292,-29.151778875851807,1.0,0.0,0.0 -1007,25.0,1.717683327019983,2.3,0.0,0.0,0.9654921193867136,-29.19275250328142,1.0,0.0,0.0 -1007,26.0,0.0,0.0,0.0,0.0,0.980577051113906,-29.693427519510703,1.0,0.0,0.0 -1007,27.0,0.0,0.0,0.0,0.0,0.9700560661453412,-28.9202946693004,1.0,0.0,0.0 -1007,28.0,1.1778399956708454,0.9,0.0,0.0,0.9675287664543722,-30.25015238792012,1.0,0.0,0.0 -1007,29.0,5.202126647546234,1.9,0.0,0.0,0.9605008756126256,-30.674460924594307,1.0,0.0,0.0 -1008,0.0,0.0,0.0,144.40565599659297,0.0001526055037892,1.0,0.0,0.0,0.0,1.0 -1008,1.0,10.649636627523892,12.7,1.6727798618134705e-07,8.842999842643273,0.9819491293430191,-3.3029334577747163,0.0,1.0,0.0 -1008,2.0,1.1778399956708454,1.2,0.0,0.0,0.9764919670240862,-4.332980118889415,1.0,0.0,0.0 -1008,3.0,3.729826652957677,1.6,0.0,0.0,0.970318838888871,-5.320409643093809,1.0,0.0,0.0 -1008,4.0,46.230219830080685,19.0,-2.4816044493244113e-10,23.20581301557561,0.963781476850298,-7.94919223963493,0.0,1.0,0.0 -1008,5.0,0.0,0.0,0.0,0.0,0.9702522226300144,-6.321870211476878,1.0,0.0,0.0 -1008,6.0,11.189479958873031,10.9,0.0,0.0,0.9613514722206932,-7.225126105948043,1.0,0.0,0.0 -1008,7.0,14.722999945885569,30.0,-2.1893471905215366e-10,30.087534780553234,0.969301506581695,-6.703360967676402,0.0,1.0,0.0 -1008,8.0,0.0,0.0,0.0,0.0,1.0175118354175892,-7.942216754948087,1.0,0.0,0.0 -1008,9.0,2.8464466562045434,2.0,0.0,0.0,1.0088633519886547,-8.784791551906677,1.0,0.0,0.0 -1008,10.0,0.0,0.0,-8.437236782152756e-11,21.600786401967216,1.0599021954970145,-7.942216754957411,0.0,1.0,0.0 -1008,11.0,5.496586646463945,7.5,0.0,0.0,1.0148610022703133,-8.361705547304071,1.0,0.0,0.0 -1008,12.0,0.0,0.0,-2.783876213402346e-10,8.688886342370598,1.0267089951647046,-8.361705547325503,0.0,1.0,0.0 -1008,13.0,3.042753322149684,1.6,0.0,0.0,1.0044441340050192,-8.76789626571129,1.0,0.0,0.0 -1008,14.0,4.024286651875388,2.5,0.0,0.0,1.001376407840693,-8.787221237782754,1.0,0.0,0.0 -1008,15.0,1.717683327019983,1.8,0.0,0.0,1.0063294719536264,-8.628410832036247,1.0,0.0,0.0 -1008,16.0,4.416899983765671,5.8,0.0,0.0,1.0038294696136143,-8.81291447926664,1.0,0.0,0.0 -1008,17.0,1.5704533275611274,0.9,0.0,0.0,0.995275511128159,-9.081444741507086,1.0,0.0,0.0 -1008,18.0,4.662283316197097,3.4,0.0,0.0,0.9938400960397002,-9.172177789871132,1.0,0.0,0.0 -1008,19.0,1.079686662698275,0.7,0.0,0.0,0.9970020871361324,-9.103284651577471,1.0,0.0,0.0 -1008,20.0,8.588416635099914,11.2,0.0,0.0,0.998657089504185,-8.922215360102966,1.0,0.0,0.0 -1008,21.0,0.0,0.0,0.0,0.0,0.999036569876555,-8.920522557111765,1.0,0.0,0.0 -1008,22.0,1.5704533275611274,1.6,0.0,0.0,0.9934311449210969,-8.936075056178131,1.0,0.0,0.0 -1008,23.0,4.269669984306815,6.7,0.0,0.0,0.9892951962412456,-9.01594359250575,1.0,0.0,0.0 -1008,24.0,0.0,0.0,0.0,0.0,0.9832158903026776,-8.770705128672446,1.0,0.0,0.0 -1008,25.0,1.717683327019983,2.3,0.0,0.0,0.9696961647410552,-8.81132912533118,1.0,0.0,0.0 -1008,26.0,0.0,0.0,0.0,0.0,0.9862433945353316,-8.562394909496597,1.0,0.0,0.0 -1008,27.0,0.0,0.0,0.0,0.0,0.9683801910340396,-6.635924476158353,1.0,0.0,0.0 -1008,28.0,1.1778399956708454,0.9,0.0,0.0,0.9732740316965506,-9.112658417875847,1.0,0.0,0.0 -1008,29.0,5.202126647546234,1.9,0.0,0.0,0.9662888054168568,-9.531941091385344,1.0,0.0,0.0 -1009,0.0,0.0,0.0,144.41681734223778,0.0001501302403283,1.0,0.0,0.0,0.0,1.0 -1009,1.0,10.649636627523892,12.7,1.804157215198353e-07,8.686619499335478,0.9819390321153554,-3.296900361439538,0.0,1.0,0.0 -1009,2.0,1.1778399956708454,1.2,0.0,0.0,0.9765382070685532,-4.35105251456701,1.0,0.0,0.0 -1009,3.0,3.729826652957677,1.6,0.0,0.0,0.9703776665041444,-5.342830200563864,1.0,0.0,0.0 -1009,4.0,46.230219830080685,19.0,-2.4049250049015997e-10,23.23363738960953,0.9638254372725265,-7.928676832273761,0.0,1.0,0.0 -1009,5.0,0.0,0.0,0.0,0.0,0.9703084442724392,-6.285562472446841,1.0,0.0,0.0 -1009,6.0,11.189479958873031,10.9,0.0,0.0,0.9614053700962136,-7.1952277949144845,1.0,0.0,0.0 -1009,7.0,14.722999945885569,30.0,-2.2510006232421512e-10,30.335525220439717,0.9694615813763896,-6.67352684170757,0.0,1.0,0.0 -1009,8.0,0.0,0.0,0.0,0.0,1.0175132659494357,-8.425890781778307,1.0,0.0,0.0 -1009,9.0,2.8464466562045434,2.0,0.0,0.0,1.009607648146655,-9.538017642637222,1.0,0.0,0.0 -1009,10.0,0.0,0.0,-1.1556665296755051e-10,21.065034091959927,1.0588916913986004,-8.425890781791088,0.0,1.0,0.0 -1009,11.0,5.496586646463945,7.5,0.0,0.0,1.017245665330138,-8.730863134058554,1.0,0.0,0.0 -1009,12.0,0.0,0.0,-2.9669926255544715e-10,9.402423362552016,1.0300253437980815,-8.730863134081266,0.0,1.0,0.0 -1009,13.0,3.042753322149684,1.6,0.0,0.0,1.0067623896557687,-9.17304222588134,1.0,0.0,0.0 -1009,14.0,4.024286651875388,2.5,0.0,0.0,1.0033524642730445,-9.22763559502032,1.0,0.0,0.0 -1009,15.0,1.717683327019983,1.8,0.0,0.0,1.0077488600369564,-9.158372930202654,1.0,0.0,0.0 -1009,16.0,4.416899983765671,5.8,0.0,0.0,1.0048693966558138,-9.497233010439736,1.0,0.0,0.0 -1009,17.0,1.5704533275611274,0.9,0.0,0.0,0.9968025585150098,-9.630722510062494,1.0,0.0,0.0 -1009,18.0,4.662283316197097,3.4,0.0,0.0,0.9951040668570384,-9.786767020562433,1.0,0.0,0.0 -1009,19.0,1.079686662698275,0.7,0.0,0.0,0.9981204578455026,-9.752540708583046,1.0,0.0,0.0 -1009,20.0,8.588416635099914,11.2,0.0,0.0,0.999459407643623,-9.63786591474031,1.0,0.0,0.0 -1009,21.0,0.0,0.0,0.0,0.0,0.9998586289429908,-9.624185337179272,1.0,0.0,0.0 -1009,22.0,1.5704533275611274,1.6,0.0,0.0,0.9951616985354584,-9.420359267302375,1.0,0.0,0.0 -1009,23.0,4.269669984306815,6.7,0.0,0.0,0.9906973763628194,-9.56006046008736,1.0,0.0,0.0 -1009,24.0,0.0,0.0,0.0,0.0,0.984859850937972,-9.098096291533388,1.0,0.0,0.0 -1009,25.0,1.717683327019983,2.3,0.0,0.0,0.9713633303198784,-9.138582870005964,1.0,0.0,0.0 -1009,26.0,0.0,0.0,0.0,0.0,0.9879635623417696,-8.754812026153042,1.0,0.0,0.0 -1009,27.0,0.0,0.0,0.0,0.0,0.9685125521358162,-6.628889163445036,1.0,0.0,0.0 -1009,28.0,1.1778399956708454,0.9,0.0,0.0,0.9750179649558032,-9.30313637175921,1.0,0.0,0.0 -1009,29.0,5.202126647546234,1.9,0.0,0.0,0.9680455855056692,-9.720911179691983,1.0,0.0,0.0 -1010,0.0,0.0,0.0,144.40565599659297,0.0001526055037892,1.0,0.0,0.0,0.0,1.0 -1010,1.0,10.649636627523892,12.7,1.6727798618134705e-07,8.842999842643273,0.9819491293430191,-3.3029334577747163,0.0,1.0,0.0 -1010,2.0,1.1778399956708454,1.2,0.0,0.0,0.9764919670240862,-4.332980118889415,1.0,0.0,0.0 -1010,3.0,3.729826652957677,1.6,0.0,0.0,0.970318838888871,-5.320409643093809,1.0,0.0,0.0 -1010,4.0,46.230219830080685,19.0,-2.4816044493244113e-10,23.20581301557561,0.963781476850298,-7.94919223963493,0.0,1.0,0.0 -1010,5.0,0.0,0.0,0.0,0.0,0.9702522226300144,-6.321870211476878,1.0,0.0,0.0 -1010,6.0,11.189479958873031,10.9,0.0,0.0,0.9613514722206932,-7.225126105948043,1.0,0.0,0.0 -1010,7.0,14.722999945885569,30.0,-2.1893471905215366e-10,30.087534780553234,0.969301506581695,-6.703360967676402,0.0,1.0,0.0 -1010,8.0,0.0,0.0,0.0,0.0,1.0175118354175892,-7.942216754948087,1.0,0.0,0.0 -1010,9.0,2.8464466562045434,2.0,0.0,0.0,1.0088633519886547,-8.784791551906677,1.0,0.0,0.0 -1010,10.0,0.0,0.0,-8.437236782152756e-11,21.600786401967216,1.0599021954970145,-7.942216754957411,0.0,1.0,0.0 -1010,11.0,5.496586646463945,7.5,0.0,0.0,1.0148610022703133,-8.361705547304071,1.0,0.0,0.0 -1010,12.0,0.0,0.0,-2.783876213402346e-10,8.688886342370598,1.0267089951647046,-8.361705547325503,0.0,1.0,0.0 -1010,13.0,3.042753322149684,1.6,0.0,0.0,1.0044441340050192,-8.76789626571129,1.0,0.0,0.0 -1010,14.0,4.024286651875388,2.5,0.0,0.0,1.001376407840693,-8.787221237782754,1.0,0.0,0.0 -1010,15.0,1.717683327019983,1.8,0.0,0.0,1.0063294719536264,-8.628410832036247,1.0,0.0,0.0 -1010,16.0,4.416899983765671,5.8,0.0,0.0,1.0038294696136143,-8.81291447926664,1.0,0.0,0.0 -1010,17.0,1.5704533275611274,0.9,0.0,0.0,0.995275511128159,-9.081444741507086,1.0,0.0,0.0 -1010,18.0,4.662283316197097,3.4,0.0,0.0,0.9938400960397002,-9.172177789871132,1.0,0.0,0.0 -1010,19.0,1.079686662698275,0.7,0.0,0.0,0.9970020871361324,-9.103284651577471,1.0,0.0,0.0 -1010,20.0,8.588416635099914,11.2,0.0,0.0,0.998657089504185,-8.922215360102966,1.0,0.0,0.0 -1010,21.0,0.0,0.0,0.0,0.0,0.999036569876555,-8.920522557111765,1.0,0.0,0.0 -1010,22.0,1.5704533275611274,1.6,0.0,0.0,0.9934311449210969,-8.936075056178131,1.0,0.0,0.0 -1010,23.0,4.269669984306815,6.7,0.0,0.0,0.9892951962412456,-9.01594359250575,1.0,0.0,0.0 -1010,24.0,0.0,0.0,0.0,0.0,0.9832158903026776,-8.770705128672446,1.0,0.0,0.0 -1010,25.0,1.717683327019983,2.3,0.0,0.0,0.9696961647410552,-8.81132912533118,1.0,0.0,0.0 -1010,26.0,0.0,0.0,0.0,0.0,0.9862433945353316,-8.562394909496597,1.0,0.0,0.0 -1010,27.0,0.0,0.0,0.0,0.0,0.9683801910340396,-6.635924476158353,1.0,0.0,0.0 -1010,28.0,1.1778399956708454,0.9,0.0,0.0,0.9732740316965506,-9.112658417875847,1.0,0.0,0.0 -1010,29.0,5.202126647546234,1.9,0.0,0.0,0.9662888054168568,-9.531941091385344,1.0,0.0,0.0 -1011,0.0,0.0,0.0,145.46977093177827,0.0023416608596171,1.0,0.0,0.0,0.0,1.0 -1011,1.0,10.649636627523892,12.7,3.063826742740266e-06,7.623808159777965,0.9818037606847112,-3.279894602117381,0.0,1.0,0.0 -1011,2.0,1.1778399956708454,1.2,0.0,0.0,0.9766370999378844,-4.501404555363161,1.0,0.0,0.0 -1011,3.0,3.729826652957677,1.6,0.0,0.0,0.9705160113715408,-5.529439089872785,1.0,0.0,0.0 -1011,4.0,46.230219830080685,19.0,2.424245378795059e-09,24.090102504793396,0.9646057278131612,-7.842588794623343,0.0,1.0,0.0 -1011,5.0,0.0,0.0,0.0,0.0,0.9703306682586802,-6.099055733138529,1.0,0.0,0.0 -1011,6.0,11.189479958873031,10.9,0.0,0.0,0.9617540934101402,-7.049085531840045,1.0,0.0,0.0 -1011,7.0,14.722999945885569,30.0,4.6851369749536445e-09,36.56433345308646,0.9717597323392236,-6.538694366002916,0.0,1.0,0.0 -1011,8.0,0.0,0.0,0.0,0.0,1.0108074379891807,-17.645143509616062,1.0,0.0,0.0 -1011,9.0,2.8464466562045434,2.0,0.0,0.0,1.0016219596240048,-17.64514350953849,1.0,0.0,0.0 -1011,10.0,0.0,0.0,-1.2461580171643114e-09,8.585719589914149,1.0281763425323809,-17.64514350975896,0.0,1.0,0.0 -1011,11.0,5.496586646463945,7.5,0.0,0.0,1.0338370726448685,-11.14888045824868,1.0,0.0,0.0 -1011,12.0,0.0,0.0,9.94036630320813e-10,19.802966604851846,1.0599921284262304,-11.14888045817592,0.0,1.0,0.0 -1011,13.0,3.042753322149684,1.6,0.0,0.0,1.0224566541257556,-11.41712368992184,1.0,0.0,0.0 -1011,14.0,4.024286651875388,2.5,0.0,0.0,1.0192015012351443,-11.288285065296716,1.0,0.0,0.0 -1011,15.0,1.717683327019983,1.8,0.0,0.0,1.0084986241564842,-13.923390214517577,1.0,0.0,0.0 -1011,16.0,4.416899983765671,5.8,0.0,0.0,1.0003999764288103,-16.567112990336977,1.0,0.0,0.0 -1011,17.0,1.5704533275611274,0.9,0.0,0.0,0.9764880766749048,-18.514263105890752,1.0,0.0,0.0 -1011,18.0,4.662283316197097,3.4,0.0,0.0,0.97870768966846,-18.42709751711361,1.0,0.0,0.0 -1011,19.0,1.079686662698275,0.7,0.0,0.0,0.9838684725271376,-18.261904794607062,1.0,0.0,0.0 -1011,20.0,8.588416635099914,11.2,0.0,0.0,0.9935930264033462,-17.744956664712262,1.0,0.0,0.0 -1011,21.0,0.0,0.0,0.0,0.0,0.9946884746781108,-17.73154211139973,1.0,0.0,0.0 -1011,22.0,1.5704533275611274,1.6,0.0,0.0,1.002666297586784,-11.16642814826127,1.0,0.0,0.0 -1011,23.0,4.269669984306815,6.7,0.0,0.0,0.9869958414435812,-10.881777435825557,1.0,0.0,0.0 -1011,24.0,0.0,0.0,0.0,0.0,0.9843611439111308,-9.891693586251314,1.0,0.0,0.0 -1011,25.0,1.717683327019983,2.3,0.0,0.0,0.9708575924572828,-9.932221777993886,1.0,0.0,0.0 -1011,26.0,0.0,0.0,0.0,0.0,0.9893665282933828,-9.21850086945049,1.0,0.0,0.0 -1011,27.0,0.0,0.0,0.0,0.0,0.9687938045013536,-6.524807853315408,1.0,0.0,0.0 -1011,28.0,1.1778399956708454,0.9,0.0,0.0,0.9764402479549374,-9.765251252425564,1.0,0.0,0.0 -1011,29.0,5.202126647546234,1.9,0.0,0.0,0.9694783104676998,-10.181802332190294,1.0,0.0,0.0 -1012,0.0,0.0,0.0,145.04639215269856,0.0001719887902318,1.0,0.0,0.0,0.0,1.0 -1012,1.0,10.649636627523892,12.7,1.6796920379566517e-07,9.833152491536891,0.9831856347887404,-3.029331562648786,0.0,1.0,0.0 -1012,2.0,1.1778399956708454,1.2,0.0,0.0,0.9739092171597722,-5.189561256754965,1.0,0.0,0.0 -1012,3.0,3.729826652957677,1.6,0.0,0.0,0.967255498181244,-6.385206469162032,1.0,0.0,0.0 -1012,4.0,46.230219830080685,19.0,9.1477270322758e-11,24.816908493452203,0.9642238023083238,-8.617346177367063,0.0,1.0,0.0 -1012,5.0,0.0,0.0,0.0,0.0,0.9658511210711666,-7.910440347900319,1.0,0.0,0.0 -1012,6.0,11.189479958873031,10.9,0.0,0.0,0.9587473546207088,-8.436763854056819,1.0,0.0,0.0 -1012,7.0,14.722999945885569,30.0,1.1522545381757453e-10,31.95047211554285,0.96550816492042,-8.307616128317342,0.0,1.0,0.0 -1012,8.0,0.0,0.0,0.0,0.0,1.0142119892642782,-9.490167694785963,1.0,0.0,0.0 -1012,9.0,2.8464466562045434,2.0,0.0,0.0,1.0043847247830453,-10.311544758063704,1.0,0.0,0.0 -1012,10.0,0.0,0.0,2.37266818478608e-10,23.33380040577276,1.059999107842874,-9.490167694759666,0.0,1.0,0.0 -1012,11.0,5.496586646463945,7.5,0.0,0.0,1.0163056121181906,-9.494759323456304,1.0,0.0,0.0 -1012,12.0,0.0,0.0,1.496580795528824e-10,9.197483315800564,1.0288213675719382,-9.494759323444825,0.0,1.0,0.0 -1012,13.0,3.042753322149684,1.6,0.0,0.0,1.0085154137718737,-9.819923475634184,1.0,0.0,0.0 -1012,14.0,4.024286651875388,2.5,0.0,0.0,1.0049219377579357,-9.941263458915984,1.0,0.0,0.0 -1012,15.0,1.717683327019983,1.8,0.0,0.0,1.00493535653782,-9.917310505930354,1.0,0.0,0.0 -1012,16.0,4.416899983765671,5.8,0.0,0.0,1.0003832449847527,-10.269672102509912,1.0,0.0,0.0 -1012,17.0,1.5704533275611274,0.9,0.0,0.0,0.9959612934981912,-10.364227480638617,1.0,0.0,0.0 -1012,18.0,4.662283316197097,3.4,0.0,0.0,0.9928386870668005,-10.532614781784774,1.0,0.0,0.0 -1012,19.0,1.079686662698275,0.7,0.0,0.0,0.9951126423019816,-10.50427743376016,1.0,0.0,0.0 -1012,20.0,8.588416635099914,11.2,0.0,0.0,0.9926700376224477,-10.484972874969491,1.0,0.0,0.0 -1012,21.0,0.0,0.0,0.0,0.0,0.992587553173468,-10.493808884330562,1.0,0.0,0.0 -1012,22.0,1.5704533275611274,1.6,0.0,0.0,0.9697563287677048,-10.822739220365955,1.0,0.0,0.0 -1012,23.0,4.269669984306815,6.7,0.0,0.0,0.976351171267458,-10.69395232950953,1.0,0.0,0.0 -1012,24.0,0.0,0.0,0.0,0.0,0.9732755174895728,-10.46279845235728,1.0,0.0,0.0 -1012,25.0,1.717683327019983,2.3,0.0,0.0,0.9596137382988308,-10.504268542228589,1.0,0.0,0.0 -1012,26.0,0.0,0.0,0.0,0.0,0.9782453453532152,-10.258748126655206,1.0,0.0,0.0 -1012,27.0,0.0,0.0,0.0,0.0,0.9636784447314404,-8.232430636329566,1.0,0.0,0.0 -1012,28.0,1.1778399956708454,0.9,0.0,0.0,0.9651642974134838,-10.818165105573843,1.0,0.0,0.0 -1012,29.0,5.202126647546234,1.9,0.0,0.0,0.958118694078206,-11.244568383371766,1.0,0.0,0.0 -1013,0.0,0.0,0.0,144.6414437267939,4.729311768869593e-05,1.0,0.0,0.0,0.0,1.0 -1013,1.0,10.649636627523892,12.7,6.733641105512653e-08,9.69855976467663,0.9820185933406372,-3.3151497439662863,0.0,1.0,0.0 -1013,2.0,1.1778399956708454,1.2,0.0,0.0,0.9761763992169332,-4.322465654641814,1.0,0.0,0.0 -1013,3.0,3.729826652957677,1.6,0.0,0.0,0.9699289042867356,-5.307454970844511,1.0,0.0,0.0 -1013,4.0,46.230219830080685,19.0,2.5968816309938588e-11,23.56638341421678,0.9638443716099584,-7.979659409928256,0.0,1.0,0.0 -1013,5.0,0.0,0.0,0.0,0.0,0.969557447272792,-6.354746580055313,1.0,0.0,0.0 -1013,6.0,11.189479958873031,10.9,0.0,0.0,0.9609624711762924,-7.256824427818925,1.0,0.0,0.0 -1013,7.0,14.722999945885569,30.0,1.5462647130720312e-11,32.46542107564654,0.9693946557393732,-6.7540497139266975,0.0,1.0,0.0 -1013,8.0,0.0,0.0,0.0,0.0,1.014345985439888,-8.09767717509122,1.0,0.0,0.0 -1013,9.0,2.8464466562045434,2.0,0.0,0.0,1.002723606197278,-9.008878244478389,1.0,0.0,0.0 -1013,10.0,0.0,0.0,-1.900545277048646e-11,23.26584255529885,1.0599997260275202,-8.097677175093331,0.0,1.0,0.0 -1013,11.0,5.496586646463945,7.5,0.0,0.0,1.0134461707105975,-8.069397805246199,1.0,0.0,0.0 -1013,12.0,0.0,0.0,3.330718066703652e-11,4.32695226000372,1.019388686303908,-8.069397805243613,0.0,1.0,0.0 -1013,13.0,3.042753322149684,1.6,0.0,0.0,0.992423092491307,-9.043860327556454,1.0,0.0,0.0 -1013,14.0,4.024286651875388,2.5,0.0,0.0,0.9753297331888148,-9.39049901255893,1.0,0.0,0.0 -1013,15.0,1.717683327019983,1.8,0.0,0.0,1.0024954927577108,-8.547511937782158,1.0,0.0,0.0 -1013,16.0,4.416899983765671,5.8,0.0,0.0,0.998494163389216,-8.945482128141105,1.0,0.0,0.0 -1013,17.0,1.5704533275611274,0.9,0.0,0.0,0.9761073317298548,-9.564384967917867,1.0,0.0,0.0 -1013,18.0,4.662283316197097,3.4,0.0,0.0,0.9787848632888064,-9.57986732584658,1.0,0.0,0.0 -1013,19.0,1.079686662698275,0.7,0.0,0.0,0.9841800452008734,-9.468512662527615,1.0,0.0,0.0 -1013,20.0,8.588416635099914,11.2,0.0,0.0,0.9915400493573544,-9.167950346065878,1.0,0.0,0.0 -1013,21.0,0.0,0.0,0.0,0.0,0.9916323592924164,-9.17224680605353,1.0,0.0,0.0 -1013,22.0,1.5704533275611274,1.6,0.0,0.0,0.9735791879453142,-9.41740423212723,1.0,0.0,0.0 -1013,23.0,4.269669984306815,6.7,0.0,0.0,0.9778159948661622,-9.325776741653716,1.0,0.0,0.0 -1013,24.0,0.0,0.0,0.0,0.0,0.9758866659286648,-9.031719796550172,1.0,0.0,0.0 -1013,25.0,1.717683327019983,2.3,0.0,0.0,0.9622624939738302,-9.072965078815084,1.0,0.0,0.0 -1013,26.0,0.0,0.0,0.0,0.0,0.9815292966182032,-8.787856907855646,1.0,0.0,0.0 -1013,27.0,0.0,0.0,0.0,0.0,0.9673176752656144,-6.685372257443521,1.0,0.0,0.0 -1013,28.0,1.1778399956708454,0.9,0.0,0.0,0.9684943438114868,-9.343487958102894,1.0,0.0,0.0 -1013,29.0,5.202126647546234,1.9,0.0,0.0,0.9614736602895654,-9.766945512886538,1.0,0.0,0.0 -1014,0.0,0.0,0.0,144.48038154861385,0.0118481787914959,1.0,0.0,0.0,0.0,1.0 -1014,1.0,10.649636627523892,12.7,5.107048140463954e-06,15.231260018949612,0.9828020771594208,-3.3228681449887514,0.0,1.0,0.0 -1014,2.0,1.1778399956708454,1.2,0.0,0.0,0.9739743290912324,-4.293831443457401,1.0,0.0,0.0 -1014,3.0,3.729826652957677,1.6,0.0,0.0,0.9672124586700374,-5.2725728000675565,1.0,0.0,0.0 -1014,4.0,46.230219830080685,19.0,-9.622424039468712e-09,25.719911154384903,0.9647233980076354,-7.980444488348432,0.0,1.0,0.0 -1014,5.0,0.0,0.0,0.0,0.0,0.9661500955989156,-6.254694226203605,1.0,0.0,0.0 -1014,6.0,11.189479958873031,10.9,0.0,0.0,0.9593055089569889,-7.196577392748599,1.0,0.0,0.0 -1014,7.0,14.722999945885569,30.0,-1.008984676886716e-08,39.98438421062588,0.968771620908558,-6.701802479485307,0.0,1.0,0.0 -1014,8.0,0.0,0.0,0.0,0.0,0.9863908136958484,-7.8761700357439155,1.0,0.0,0.0 -1014,9.0,2.8464466562045434,2.0,0.0,0.0,0.9859214262025388,-8.73530534450851,1.0,0.0,0.0 -1014,10.0,0.0,0.0,0.0,0.0,0.9863908136958484,-7.8761700357439155,0.0,1.0,0.0 -1014,11.0,5.496586646463945,7.5,0.0,0.0,1.0083784743557036,-8.383626186466184,1.0,0.0,0.0 -1014,12.0,0.0,0.0,-1.025686449604122e-08,11.783066513803448,1.024480578644639,-8.383626187262601,0.0,1.0,0.0 -1014,13.0,3.042753322149684,1.6,0.0,0.0,0.9974514013999504,-8.766150473323364,1.0,0.0,0.0 -1014,14.0,4.024286651875388,2.5,0.0,0.0,0.9941378589763656,-8.746983458702035,1.0,0.0,0.0 -1014,15.0,1.717683327019983,1.8,0.0,0.0,0.9926999548317156,-8.586846913141455,1.0,0.0,0.0 -1014,16.0,4.416899983765671,5.8,0.0,0.0,0.9836998615216652,-8.78043759449115,1.0,0.0,0.0 -1014,17.0,1.5704533275611274,0.9,0.0,0.0,0.990447928719682,-8.890463732537627,1.0,0.0,0.0 -1014,18.0,4.662283316197097,3.4,0.0,0.0,0.96743832672511,-9.346594552680903,1.0,0.0,0.0 -1014,19.0,1.079686662698275,0.7,0.0,0.0,0.9714689040808716,-9.223792315880791,1.0,0.0,0.0 -1014,20.0,8.588416635099914,11.2,0.0,0.0,0.9768363614391122,-8.87735318273749,1.0,0.0,0.0 -1014,21.0,0.0,0.0,0.0,0.0,0.9776540263596442,-8.87558551229116,1.0,0.0,0.0 -1014,22.0,1.5704533275611274,1.6,0.0,0.0,0.9824549852286966,-8.911176110117522,1.0,0.0,0.0 -1014,23.0,4.269669984306815,6.7,0.0,0.0,0.9734104661334502,-9.011805642582214,1.0,0.0,0.0 -1014,24.0,0.0,0.0,0.0,0.0,0.9716920515735836,-8.811194803819925,1.0,0.0,0.0 -1014,25.0,1.717683327019983,2.3,0.0,0.0,0.9580073636150868,-8.852802120544728,1.0,0.0,0.0 -1014,26.0,0.0,0.0,0.0,0.0,0.9775260046752796,-8.624338939308116,1.0,0.0,0.0 -1014,27.0,0.0,0.0,0.0,0.0,0.9644681557093367,-6.58528155363005,1.0,0.0,0.0 -1014,28.0,1.1778399956708454,0.9,0.0,0.0,0.9644348150111234,-9.18459040571768,1.0,0.0,0.0 -1014,29.0,5.202126647546234,1.9,0.0,0.0,0.9573837287429248,-9.611643088587956,1.0,0.0,0.0 -1015,0.0,0.0,0.0,144.56911489853442,0.0052415363896329,1.0,0.0,0.0,0.0,1.0 -1015,1.0,10.649636627523892,12.7,2.794649925350853e-06,10.795113804599396,0.9823407177718304,-3.301961868809812,0.0,1.0,0.0 -1015,2.0,1.1778399956708454,1.2,0.0,0.0,0.9753302712189352,-4.356537613413966,1.0,0.0,0.0 -1015,3.0,3.729826652957677,1.6,0.0,0.0,0.968889696026981,-5.3500281448596265,1.0,0.0,0.0 -1015,4.0,46.230219830080685,19.0,-5.6133637375634864e-09,24.031183828302005,0.9645493018236472,-7.923141883719801,0.0,1.0,0.0 -1015,5.0,0.0,0.0,0.0,0.0,0.9697232617694832,-6.240675590067897,1.0,0.0,0.0 -1015,6.0,11.189479958873031,10.9,0.0,0.0,0.961360112329294,-7.165752788958954,1.0,0.0,0.0 -1015,7.0,14.722999945885569,30.0,-5.298538491339073e-09,35.653050156806664,0.9705065102641196,-6.6615376447303385,0.0,1.0,0.0 -1015,8.0,0.0,0.0,0.0,0.0,1.02576044600467,-6.240675590685557,1.0,0.0,0.0 -1015,9.0,2.8464466562045434,2.0,0.0,0.0,0.9781258847735828,-10.70540706849663,1.0,0.0,0.0 -1015,10.0,0.0,0.0,-5.271301131654509e-09,17.44048880096841,1.05998381452129,-6.240675591263331,0.0,1.0,0.0 -1015,11.0,5.496586646463945,7.5,0.0,0.0,1.0087666567619311,-9.196656954759051,1.0,0.0,0.0 -1015,12.0,0.0,0.0,-5.280366290236897e-09,11.367011961095542,1.0243028978281974,-9.196656955168969,0.0,1.0,0.0 -1015,13.0,3.042753322149684,1.6,0.0,0.0,0.9978816874176872,-9.61596683401342,1.0,0.0,0.0 -1015,14.0,4.024286651875388,2.5,0.0,0.0,0.994351349206172,-9.634317468566412,1.0,0.0,0.0 -1015,15.0,1.717683327019983,1.8,0.0,0.0,0.988722298000084,-9.871893797184546,1.0,0.0,0.0 -1015,16.0,4.416899983765671,5.8,0.0,0.0,0.9772976935384764,-10.541073833689618,1.0,0.0,0.0 -1015,17.0,1.5704533275611274,0.9,0.0,0.0,0.9906622184603876,-9.777735907306804,1.0,0.0,0.0 -1015,18.0,4.662283316197097,3.4,0.0,0.0,0.9594889660606484,-11.32667204258622,1.0,0.0,0.0 -1015,19.0,1.079686662698275,0.7,0.0,0.0,0.963552973995636,-11.201835163691754,1.0,0.0,0.0 -1015,20.0,8.588416635099914,11.2,0.0,0.0,0.9663485936909372,-10.859078735366316,1.0,0.0,0.0 -1015,21.0,0.0,0.0,0.0,0.0,0.9757301108450874,-10.514501737645618,1.0,0.0,0.0 -1015,22.0,1.5704533275611274,1.6,0.0,0.0,0.982470687649759,-9.94688520311222,1.0,0.0,0.0 -1015,23.0,4.269669984306815,6.7,0.0,0.0,0.9732057613814094,-10.2497942610751,1.0,0.0,0.0 -1015,24.0,0.0,0.0,0.0,0.0,0.9734629325233506,-9.580431705251078,1.0,0.0,0.0 -1015,25.0,1.717683327019983,2.3,0.0,0.0,0.9598038596042644,-9.621885598096473,1.0,0.0,0.0 -1015,26.0,0.0,0.0,0.0,0.0,0.9803904772316832,-9.102720919024682,1.0,0.0,0.0 -1015,27.0,0.0,0.0,0.0,0.0,0.9653992628463556,-6.596266619419154,1.0,0.0,0.0 -1015,28.0,1.1778399956708454,0.9,0.0,0.0,0.9673395771953988,-9.659660480305496,1.0,0.0,0.0 -1015,29.0,5.202126647546234,1.9,0.0,0.0,0.9603102724492782,-10.084136054421815,1.0,0.0,0.0 -1016,0.0,0.0,0.0,144.4671484881544,0.0021016578140908,1.0,0.0,0.0,0.0,1.0 -1016,1.0,10.649636627523892,12.7,2.1688860882459488e-06,8.732847038627199,0.9817569363925176,-3.280557730566031,0.0,1.0,0.0 -1016,2.0,1.1778399956708454,1.2,0.0,0.0,0.9770902773017625,-4.40002697742235,1.0,0.0,0.0 -1016,3.0,3.729826652957677,1.6,0.0,0.0,0.9710631294994388,-5.403442222403213,1.0,0.0,0.0 -1016,4.0,46.230219830080685,19.0,3.1459484604586514e-09,23.2725179283124,0.9630611972442104,-7.875428722192947,0.0,1.0,0.0 -1016,5.0,0.0,0.0,0.0,0.0,0.9689551500380316,-6.179216709852223,1.0,0.0,0.0 -1016,6.0,11.189479958873031,10.9,0.0,0.0,0.9602900146037302,-7.110717557044621,1.0,0.0,0.0 -1016,7.0,14.722999945885569,30.0,3.0008278805546514e-09,30.65791040546232,0.9683063837172224,-6.556200341451835,0.0,1.0,0.0 -1016,8.0,0.0,0.0,0.0,0.0,1.0365776228766896,-10.919040429752304,1.0,0.0,0.0 -1016,9.0,2.8464466562045434,2.0,0.0,0.0,1.0241919747018422,-10.919040429807495,1.0,0.0,0.0 -1016,10.0,0.0,0.0,9.297380228511675e-10,11.935235706954265,1.059997757582524,-10.91904042965146,0.0,1.0,0.0 -1016,11.0,5.496586646463945,7.5,0.0,0.0,1.0366915136565014,-9.51722828807133,1.0,0.0,0.0 -1016,12.0,0.0,0.0,3.394841541159948e-09,17.646306137731553,1.059997999706166,-9.517228287823524,0.0,1.0,0.0 -1016,13.0,3.042753322149684,1.6,0.0,0.0,1.0258510952323536,-10.04208892002968,1.0,0.0,0.0 -1016,14.0,4.024286651875388,2.5,0.0,0.0,1.0212737418877678,-10.18038608529992,1.0,0.0,0.0 -1016,15.0,1.717683327019983,1.8,0.0,0.0,1.0247405444960511,-10.185325944425548,1.0,0.0,0.0 -1016,16.0,4.416899983765671,5.8,0.0,0.0,1.020395132816403,-10.768104828346274,1.0,0.0,0.0 -1016,17.0,1.5704533275611274,0.9,0.0,0.0,1.013642184068476,-10.723359893294624,1.0,0.0,0.0 -1016,18.0,4.662283316197097,3.4,0.0,0.0,1.0112805727173813,-10.966057116607976,1.0,0.0,0.0 -1016,19.0,1.079686662698275,0.7,0.0,0.0,1.013883642106287,-10.981168351595564,1.0,0.0,0.0 -1016,20.0,8.588416635099914,11.2,0.0,0.0,1.014034196234587,-11.03580210431472,1.0,0.0,0.0 -1016,21.0,0.0,0.0,0.0,0.0,1.014375925674026,-11.028797922751444,1.0,0.0,0.0 -1016,22.0,1.5704533275611274,1.6,0.0,0.0,1.011323805612516,-10.597480174074589,1.0,0.0,0.0 -1016,23.0,4.269669984306815,6.7,0.0,0.0,1.0044944908832405,-11.046615853406127,1.0,0.0,0.0 -1016,24.0,0.0,0.0,0.0,0.0,0.9934636156651554,-11.122949270646563,1.0,0.0,0.0 -1016,25.0,1.717683327019983,2.3,0.0,0.0,0.980087233873095,-11.162727964846988,1.0,0.0,0.0 -1016,26.0,0.0,0.0,0.0,0.0,0.9874993053913736,-7.928223378131874,1.0,0.0,0.0 -1016,27.0,0.0,0.0,0.0,0.0,0.967682706468796,-6.443185974306328,1.0,0.0,0.0 -1016,28.0,1.1778399956708454,0.9,0.0,0.0,0.9745473027423638,-8.477070069490683,1.0,0.0,0.0 -1016,29.0,5.202126647546234,1.9,0.0,0.0,0.9675714608433832,-8.895251024242961,1.0,0.0,0.0 -1017,0.0,0.0,0.0,139.14858555907296,6.494999018613612e-05,1.0,0.0,0.0,0.0,1.0 -1017,1.0,10.649636627523892,12.7,7.812524008282434,8.384710523644635,0.9734875823172456,-4.611816295790923,0.0,1.0,0.0 -1017,2.0,1.1778399956708454,1.2,0.0,0.0,1.0008576386313803,-0.1332162401357342,1.0,0.0,0.0 -1017,3.0,3.729826652957677,1.6,0.0,0.0,0.9516135492269736,-9.000873758888346,1.0,0.0,0.0 -1017,4.0,46.230219830080685,19.0,1.5302488913382335e-09,30.72114232503688,0.958372098641792,-10.339941226801663,0.0,1.0,0.0 -1017,5.0,0.0,0.0,0.0,0.0,0.952135438678725,-9.429841200190596,1.0,0.0,0.0 -1017,6.0,11.189479958873031,10.9,0.0,0.0,0.9481902502675637,-10.038618628989273,1.0,0.0,0.0 -1017,7.0,14.722999945885569,30.0,3.833609352689449e-09,39.998963134236064,0.954722423101706,-9.892444012839864,0.0,1.0,0.0 -1017,8.0,0.0,0.0,0.0,0.0,0.9725956800477388,-11.14002900227982,1.0,0.0,0.0 -1017,9.0,2.8464466562045434,2.0,0.0,0.0,0.9724398146632486,-12.045394378766243,1.0,0.0,0.0 -1017,10.0,0.0,0.0,0.0,0.0,0.9725956800477388,-11.14002900227982,0.0,1.0,0.0 -1017,11.0,5.496586646463945,7.5,0.0,0.0,1.0144603601820363,-12.02855951107728,1.0,0.0,0.0 -1017,12.0,0.0,0.0,6.147374809820672e-09,22.67680785717433,1.0448452715786092,-12.028559510612062,0.0,1.0,0.0 -1017,13.0,3.042753322149684,1.6,0.0,0.0,0.9989680466408484,-12.452872698599064,1.0,0.0,0.0 -1017,14.0,4.024286651875388,2.5,0.0,0.0,0.9909027335038144,-12.373157566677737,1.0,0.0,0.0 -1017,15.0,1.717683327019983,1.8,0.0,0.0,0.9591464073947892,-12.357982332577851,1.0,0.0,0.0 -1017,16.0,4.416899983765671,5.8,0.0,0.0,0.9636967852944066,-12.211699851838064,1.0,0.0,0.0 -1017,17.0,1.5704533275611274,0.9,0.0,0.0,0.9754842041192654,-12.56263752753085,1.0,0.0,0.0 -1017,18.0,4.662283316197097,3.4,0.0,0.0,0.9685731021544336,-12.587728269735688,1.0,0.0,0.0 -1017,19.0,1.079686662698275,0.7,0.0,0.0,0.9689523507257336,-12.477138375002324,1.0,0.0,0.0 -1017,20.0,8.588416635099914,11.2,0.0,0.0,0.946804908063627,-12.483573299938124,1.0,0.0,0.0 -1017,21.0,0.0,0.0,0.0,0.0,0.9506491535238456,-12.437252698444064,1.0,0.0,0.0 -1017,22.0,1.5704533275611274,1.6,0.0,0.0,0.9721088082179566,-12.51528620865564,1.0,0.0,0.0 -1017,23.0,4.269669984306815,6.7,0.0,0.0,0.9536472630230168,-12.588130833125977,1.0,0.0,0.0 -1017,24.0,0.0,0.0,0.0,0.0,0.9539473995015948,-12.287539056613674,1.0,0.0,0.0 -1017,25.0,1.717683327019983,2.3,0.0,0.0,0.9400005554146148,-12.330732186148447,1.0,0.0,0.0 -1017,26.0,0.0,0.0,0.0,0.0,0.9611390329238332,-12.03441594221168,1.0,0.0,0.0 -1017,27.0,0.0,0.0,0.0,0.0,0.9501206186072776,-9.78479787832828,1.0,0.0,0.0 -1017,28.0,1.1778399956708454,0.9,0.0,0.0,0.947812356916402,-12.61419747952496,1.0,0.0,0.0 -1017,29.0,5.202126647546234,1.9,0.0,0.0,0.9406339449260104,-13.056460381124102,1.0,0.0,0.0 -1018,0.0,0.0,0.0,136.2909437190467,1.8516075767486484,1.0,0.0,0.0,0.0,1.0 -1018,1.0,10.649636627523892,12.7,20.786981964813823,45.40989756379236,0.979695223130772,-25.376532567289534,0.0,1.0,0.0 -1018,2.0,1.1778399956708454,1.2,0.0,0.0,0.9583674888283636,-13.479538240027187,1.0,0.0,0.0 -1018,3.0,3.729826652957677,1.6,0.0,0.0,0.952614771514592,-16.70851659647881,1.0,0.0,0.0 -1018,4.0,46.230219830080685,19.0,-9.305458013190416e-12,23.71364802133607,0.963323776286853,-30.45220780563293,0.0,1.0,0.0 -1018,5.0,0.0,0.0,0.0,0.0,0.970229535959716,-29.252633506261176,1.0,0.0,0.0 -1018,6.0,11.189479958873031,10.9,0.0,0.0,0.9610822296006016,-29.98217331397985,1.0,0.0,0.0 -1018,7.0,14.722999945885569,30.0,-8.137310264672013e-12,29.008072739576026,0.9687792417344734,-29.60973887583722,0.0,1.0,0.0 -1018,8.0,0.0,0.0,0.0,0.0,1.0145806705023055,-29.072235088080195,1.0,0.0,0.0 -1018,9.0,2.8464466562045434,2.0,0.0,0.0,1.002477554852124,-28.977824102097664,1.0,0.0,0.0 -1018,10.0,0.0,0.0,-2.73452239768529e-11,23.14637998443669,1.059999982902481,-29.07223508808322,0.0,1.0,0.0 -1018,11.0,5.496586646463945,7.5,0.0,0.0,1.0306545266035372,-23.695490975820405,1.0,0.0,0.0 -1018,12.0,0.0,0.0,1.1172488321339118e-12,22.218404741013025,1.0599996005280208,-23.695490975820324,0.0,1.0,0.0 -1018,13.0,3.042753322149684,1.6,0.0,0.0,1.0199784723552014,-24.419317374609427,1.0,0.0,0.0 -1018,14.0,4.024286651875388,2.5,0.0,0.0,1.0142715460168903,-24.755606669198883,1.0,0.0,0.0 -1018,15.0,1.717683327019983,1.8,0.0,0.0,1.0083829148212198,-25.97120939064496,1.0,0.0,0.0 -1018,16.0,4.416899983765671,5.8,0.0,0.0,1.0008429536626195,-28.123471693735137,1.0,0.0,0.0 -1018,17.0,1.5704533275611274,0.9,0.0,0.0,1.0004600672619588,-26.511049577961412,1.0,0.0,0.0 -1018,18.0,4.662283316197097,3.4,0.0,0.0,0.9948211617888226,-27.48571268428032,1.0,0.0,0.0 -1018,19.0,1.079686662698275,0.7,0.0,0.0,0.9958259241377464,-27.88494309391609,1.0,0.0,0.0 -1018,20.0,8.588416635099914,11.2,0.0,0.0,0.991688851989188,-29.232463367619054,1.0,0.0,0.0 -1018,21.0,0.0,0.0,0.0,0.0,0.9918967554242456,-29.26765980403816,1.0,0.0,0.0 -1018,22.0,1.5704533275611274,1.6,0.0,0.0,1.0095131527990695,-24.843589176914136,1.0,0.0,0.0 -1018,23.0,4.269669984306815,6.7,0.0,0.0,0.978886110544364,-29.84769853216459,1.0,0.0,0.0 -1018,24.0,0.0,0.0,0.0,0.0,0.9736673203665984,-30.416605977303607,1.0,0.0,0.0 -1018,25.0,1.717683327019983,2.3,0.0,0.0,0.9600111975448534,-30.45804221510422,1.0,0.0,0.0 -1018,26.0,0.0,0.0,0.0,0.0,0.9776548095360896,-30.712100557195846,1.0,0.0,0.0 -1018,27.0,0.0,0.0,0.0,0.0,0.9677435023494858,-29.461615028480168,1.0,0.0,0.0 -1018,28.0,1.1778399956708454,0.9,0.0,0.0,0.9645654370275274,-31.272202462864023,1.0,0.0,0.0 -1018,29.0,5.202126647546234,1.9,0.0,0.0,0.9575153331738092,-31.699138753287063,1.0,0.0,0.0 -1019,0.0,0.0,0.0,144.50487959556278,0.014795494675468,1.0,0.0,0.0,0.0,1.0 -1019,1.0,10.649636627523892,12.7,6.058893263596089e-06,16.659237756745497,0.9829476047973422,-3.3264333202141083,0.0,1.0,0.0 -1019,2.0,1.1778399956708454,1.2,0.0,0.0,0.9735388272385044,-4.28779936632616,1.0,0.0,0.0 -1019,3.0,3.729826652957677,1.6,0.0,0.0,0.9666752022299588,-5.265211430871438,1.0,0.0,0.0 -1019,4.0,46.230219830080685,19.0,-9.51602509318787e-09,26.377316781723096,0.9648340291864216,-7.986699311094972,0.0,1.0,0.0 -1019,5.0,0.0,0.0,0.0,0.0,0.964891779887764,-6.232779441452608,1.0,0.0,0.0 -1019,6.0,11.189479958873031,10.9,0.0,0.0,0.958603964514021,-7.185849242105285,1.0,0.0,0.0 -1019,7.0,14.722999945885569,30.0,-1.035501139155132e-08,39.98961227035597,0.9675543914719252,-6.688958539329015,0.0,1.0,0.0 -1019,8.0,0.0,0.0,0.0,0.0,0.9857539491803284,-7.851637515367349,1.0,0.0,0.0 -1019,9.0,2.8464466562045434,2.0,0.0,0.0,0.9856266245133248,-8.708525110060695,1.0,0.0,0.0 -1019,10.0,0.0,0.0,0.0,0.0,0.9857539491803284,-7.851637515367349,0.0,1.0,0.0 -1019,11.0,5.496586646463945,7.5,0.0,0.0,1.010488500297866,-8.392649080644702,1.0,0.0,0.0 -1019,12.0,0.0,0.0,-8.553487833092016e-09,13.775968153270234,1.029227177087527,-8.39264908130441,0.0,1.0,0.0 -1019,13.0,3.042753322149684,1.6,0.0,0.0,0.9993580379208978,-8.772623014049957,1.0,0.0,0.0 -1019,14.0,4.024286651875388,2.5,0.0,0.0,0.9958400526399456,-8.747397098656432,1.0,0.0,0.0 -1019,15.0,1.717683327019983,1.8,0.0,0.0,0.9937993239579426,-8.575355619441108,1.0,0.0,0.0 -1019,16.0,4.416899983765671,5.8,0.0,0.0,0.9838349462368104,-8.760122736459099,1.0,0.0,0.0 -1019,17.0,1.5704533275611274,0.9,0.0,0.0,0.9921564873540024,-8.890385459902415,1.0,0.0,0.0 -1019,18.0,4.662283316197097,3.4,0.0,0.0,0.9671377553039444,-9.320187153540257,1.0,0.0,0.0 -1019,19.0,1.079686662698275,0.7,0.0,0.0,0.9711695866824808,-9.1973088918026,1.0,0.0,0.0 -1019,20.0,8.588416635099914,11.2,0.0,0.0,0.9765493272619156,-8.850310804693255,1.0,0.0,0.0 -1019,21.0,0.0,0.0,0.0,0.0,0.9773705926401712,-8.84843516542226,1.0,0.0,0.0 -1019,22.0,1.5704533275611274,1.6,0.0,0.0,0.9833295523750296,-8.899124577092559,1.0,0.0,0.0 -1019,23.0,4.269669984306815,6.7,0.0,0.0,0.973173090573542,-8.983589869939651,1.0,0.0,0.0 -1019,24.0,0.0,0.0,0.0,0.0,0.9701692308043908,-8.7545942002445,1.0,0.0,0.0 -1019,25.0,1.717683327019983,2.3,0.0,0.0,0.9564624378382162,-8.796334137401931,1.0,0.0,0.0 -1019,26.0,0.0,0.0,0.0,0.0,0.9752075246815682,-8.551401006323841,1.0,0.0,0.0 -1019,27.0,0.0,0.0,0.0,0.0,0.9609008934432636,-6.513511420214911,1.0,0.0,0.0 -1019,28.0,1.1778399956708454,0.9,0.0,0.0,0.9620835375735902,-9.114354887664154,1.0,0.0,0.0 -1019,29.0,5.202126647546234,1.9,0.0,0.0,0.955014719639782,-9.543510893626884,1.0,0.0,0.0 -1020,0.0,0.0,0.0,144.44779255385816,0.0001455017549112,1.0,0.0,0.0,0.0,1.0 -1020,1.0,10.649636627523892,12.7,1.6134925872793165e-07,8.44455478418115,0.981899694169716,-3.3021335570965897,0.0,1.0,0.0 -1020,2.0,1.1778399956708454,1.2,0.0,0.0,0.9766203790739424,-4.338803816012911,1.0,0.0,0.0 -1020,3.0,3.729826652957677,1.6,0.0,0.0,0.9704776726372404,-5.327598706138908,1.0,0.0,0.0 -1020,4.0,46.230219830080685,19.0,-2.3648265899058106e-10,23.18373250582964,0.9638401283268124,-7.948139402038942,0.0,1.0,0.0 -1020,5.0,0.0,0.0,0.0,0.0,0.9704629422076884,-6.322840168146542,1.0,0.0,0.0 -1020,6.0,11.189479958873031,10.9,0.0,0.0,0.961501113026488,-7.225280088221207,1.0,0.0,0.0 -1020,7.0,14.722999945885569,30.0,-2.0462121291957688e-10,30.168481283261592,0.9693862499431792,-6.707913089949152,0.0,1.0,0.0 -1020,8.0,0.0,0.0,0.0,0.0,1.0196956720773696,-7.84075334182591,1.0,0.0,0.0 -1020,9.0,2.8464466562045434,2.0,0.0,0.0,1.0131825504449834,-8.626878152368535,1.0,0.0,0.0 -1020,10.0,0.0,0.0,-9.830644043792616e-11,20.50913043011345,1.0599421981330126,-7.840753341836752,0.0,1.0,0.0 -1020,11.0,5.496586646463945,7.5,0.0,0.0,1.0154829266278125,-8.411569769135761,1.0,0.0,0.0 -1020,12.0,0.0,0.0,-2.5105901369614867e-10,10.223702378441205,1.0293874897513406,-8.411569769155028,0.0,1.0,0.0 -1020,13.0,3.042753322149684,1.6,0.0,0.0,1.0038956723199048,-8.83981461396266,1.0,0.0,0.0 -1020,14.0,4.024286651875388,2.5,0.0,0.0,0.999542814476417,-8.854565316327738,1.0,0.0,0.0 -1020,15.0,1.717683327019983,1.8,0.0,0.0,1.008701300113163,-8.59643421249364,1.0,0.0,0.0 -1020,16.0,4.416899983765671,5.8,0.0,0.0,1.007510272920702,-8.691281386137698,1.0,0.0,0.0 -1020,17.0,1.5704533275611274,0.9,0.0,0.0,0.9956323577048022,-9.070013646908162,1.0,0.0,0.0 -1020,18.0,4.662283316197097,3.4,0.0,0.0,0.9954908970278032,-9.113681349997254,1.0,0.0,0.0 -1020,19.0,1.079686662698275,0.7,0.0,0.0,0.9993308452780928,-9.020595696284888,1.0,0.0,0.0 -1020,20.0,8.588416635099914,11.2,0.0,0.0,1.005246730031225,-8.724408500734935,1.0,0.0,0.0 -1020,21.0,0.0,0.0,0.0,0.0,1.0063294782864705,-8.71130283846828,1.0,0.0,0.0 -1020,22.0,1.5704533275611274,1.6,0.0,0.0,0.984881241845216,-9.12528194444499,1.0,0.0,0.0 -1020,23.0,4.269669984306815,6.7,0.0,0.0,0.9718785596149644,-9.374838273265905,1.0,0.0,0.0 -1020,24.0,0.0,0.0,0.0,0.0,0.9723908615616887,-9.07949349818226,1.0,0.0,0.0 -1020,25.0,1.717683327019983,2.3,0.0,0.0,0.958716293236095,-9.121040171132965,1.0,0.0,0.0 -1020,26.0,0.0,0.0,0.0,0.0,0.979574919921104,-8.83188673461652,1.0,0.0,0.0 -1020,27.0,0.0,0.0,0.0,0.0,0.9676845638235616,-6.654027553307493,1.0,0.0,0.0 -1020,28.0,1.1778399956708454,0.9,0.0,0.0,0.96651257476584,-9.389766232784996,1.0,0.0,0.0 -1020,29.0,5.202126647546234,1.9,0.0,0.0,0.9594770826010092,-9.814973138669274,1.0,0.0,0.0 -1021,0.0,0.0,0.0,144.40565599659297,0.0001526055037892,1.0,0.0,0.0,0.0,1.0 -1021,1.0,10.649636627523892,12.7,1.6727798618134705e-07,8.842999842643273,0.9819491293430191,-3.3029334577747163,0.0,1.0,0.0 -1021,2.0,1.1778399956708454,1.2,0.0,0.0,0.9764919670240862,-4.332980118889415,1.0,0.0,0.0 -1021,3.0,3.729826652957677,1.6,0.0,0.0,0.970318838888871,-5.320409643093809,1.0,0.0,0.0 -1021,4.0,46.230219830080685,19.0,-2.4816044493244113e-10,23.20581301557561,0.963781476850298,-7.94919223963493,0.0,1.0,0.0 -1021,5.0,0.0,0.0,0.0,0.0,0.9702522226300144,-6.321870211476878,1.0,0.0,0.0 -1021,6.0,11.189479958873031,10.9,0.0,0.0,0.9613514722206932,-7.225126105948043,1.0,0.0,0.0 -1021,7.0,14.722999945885569,30.0,-2.1893471905215366e-10,30.087534780553234,0.969301506581695,-6.703360967676402,0.0,1.0,0.0 -1021,8.0,0.0,0.0,0.0,0.0,1.0175118354175892,-7.942216754948087,1.0,0.0,0.0 -1021,9.0,2.8464466562045434,2.0,0.0,0.0,1.0088633519886547,-8.784791551906677,1.0,0.0,0.0 -1021,10.0,0.0,0.0,-8.437236782152756e-11,21.600786401967216,1.0599021954970145,-7.942216754957411,0.0,1.0,0.0 -1021,11.0,5.496586646463945,7.5,0.0,0.0,1.0148610022703133,-8.361705547304071,1.0,0.0,0.0 -1021,12.0,0.0,0.0,-2.783876213402346e-10,8.688886342370598,1.0267089951647046,-8.361705547325503,0.0,1.0,0.0 -1021,13.0,3.042753322149684,1.6,0.0,0.0,1.0044441340050192,-8.76789626571129,1.0,0.0,0.0 -1021,14.0,4.024286651875388,2.5,0.0,0.0,1.001376407840693,-8.787221237782754,1.0,0.0,0.0 -1021,15.0,1.717683327019983,1.8,0.0,0.0,1.0063294719536264,-8.628410832036247,1.0,0.0,0.0 -1021,16.0,4.416899983765671,5.8,0.0,0.0,1.0038294696136143,-8.81291447926664,1.0,0.0,0.0 -1021,17.0,1.5704533275611274,0.9,0.0,0.0,0.995275511128159,-9.081444741507086,1.0,0.0,0.0 -1021,18.0,4.662283316197097,3.4,0.0,0.0,0.9938400960397002,-9.172177789871132,1.0,0.0,0.0 -1021,19.0,1.079686662698275,0.7,0.0,0.0,0.9970020871361324,-9.103284651577471,1.0,0.0,0.0 -1021,20.0,8.588416635099914,11.2,0.0,0.0,0.998657089504185,-8.922215360102966,1.0,0.0,0.0 -1021,21.0,0.0,0.0,0.0,0.0,0.999036569876555,-8.920522557111765,1.0,0.0,0.0 -1021,22.0,1.5704533275611274,1.6,0.0,0.0,0.9934311449210969,-8.936075056178131,1.0,0.0,0.0 -1021,23.0,4.269669984306815,6.7,0.0,0.0,0.9892951962412456,-9.01594359250575,1.0,0.0,0.0 -1021,24.0,0.0,0.0,0.0,0.0,0.9832158903026776,-8.770705128672446,1.0,0.0,0.0 -1021,25.0,1.717683327019983,2.3,0.0,0.0,0.9696961647410552,-8.81132912533118,1.0,0.0,0.0 -1021,26.0,0.0,0.0,0.0,0.0,0.9862433945353316,-8.562394909496597,1.0,0.0,0.0 -1021,27.0,0.0,0.0,0.0,0.0,0.9683801910340396,-6.635924476158353,1.0,0.0,0.0 -1021,28.0,1.1778399956708454,0.9,0.0,0.0,0.9732740316965506,-9.112658417875847,1.0,0.0,0.0 -1021,29.0,5.202126647546234,1.9,0.0,0.0,0.9662888054168568,-9.531941091385344,1.0,0.0,0.0 -1022,0.0,0.0,0.0,144.7842365265734,0.0007694295763194,1.0,0.0,0.0,0.0,1.0 -1022,1.0,10.649636627523892,12.7,1.3196050692295266e-06,8.592569894198839,0.9816971991180354,-3.3007556545078223,0.0,1.0,0.0 -1022,2.0,1.1778399956708454,1.2,0.0,0.0,0.9770853781367976,-4.373409453094443,1.0,0.0,0.0 -1022,3.0,3.729826652957677,1.6,0.0,0.0,0.9710542682900356,-5.370405498087208,1.0,0.0,0.0 -1022,4.0,46.230219830080685,19.0,2.1868446494746023e-09,24.174146147353994,0.9637391774784624,-7.946613565205301,0.0,1.0,0.0 -1022,5.0,0.0,0.0,0.0,0.0,0.9684734130714162,-6.271936885623352,1.0,0.0,0.0 -1022,6.0,11.189479958873031,10.9,0.0,0.0,0.960279156674305,-7.194117397215692,1.0,0.0,0.0 -1022,7.0,14.722999945885569,30.0,1.9827111672344462e-09,36.39524591300916,0.9695778248264044,-6.699174343476263,0.0,1.0,0.0 -1022,8.0,0.0,0.0,0.0,0.0,1.022068147041911,-11.475944008164468,1.0,0.0,0.0 -1022,9.0,2.8464466562045434,2.0,0.0,0.0,1.0102392420292707,-11.475944008173917,1.0,0.0,0.0 -1022,10.0,0.0,0.0,1.5474852257714836e-10,11.23138971403088,1.044435531059839,-11.475944008147192,0.0,1.0,0.0 -1022,11.0,5.496586646463945,7.5,0.0,0.0,1.0346290183770062,-8.726860439091077,1.0,0.0,0.0 -1022,12.0,0.0,0.0,1.1209339329757303e-09,16.871108366082012,1.0569753778175497,-8.726860439008858,0.0,1.0,0.0 -1022,13.0,3.042753322149684,1.6,0.0,0.0,0.9984189428452296,-9.835046015531702,1.0,0.0,0.0 -1022,14.0,4.024286651875388,2.5,0.0,0.0,1.0083575462746388,-9.69047070416166,1.0,0.0,0.0 -1022,15.0,1.717683327019983,1.8,0.0,0.0,0.9974548161016452,-11.765248827374236,1.0,0.0,0.0 -1022,16.0,4.416899983765671,5.8,0.0,0.0,1.0018302049188348,-11.629938728820688,1.0,0.0,0.0 -1022,17.0,1.5704533275611274,0.9,0.0,0.0,0.991981946175398,-10.206283878950767,1.0,0.0,0.0 -1022,18.0,4.662283316197097,3.4,0.0,0.0,0.9844860633544268,-10.432223208310038,1.0,0.0,0.0 -1022,19.0,1.079686662698275,0.7,0.0,0.0,1.007783510170359,-11.566062988867357,1.0,0.0,0.0 -1022,20.0,8.588416635099914,11.2,0.0,0.0,1.0001362256349542,-11.44598005095182,1.0,0.0,0.0 -1022,21.0,0.0,0.0,0.0,0.0,1.0005633240723728,-11.390652630039414,1.0,0.0,0.0 -1022,22.0,1.5704533275611274,1.6,0.0,0.0,0.9989253558956164,-10.19992100282654,1.0,0.0,0.0 -1022,23.0,4.269669984306815,6.7,0.0,0.0,0.9929103938281824,-10.770413097620931,1.0,0.0,0.0 -1022,24.0,0.0,0.0,0.0,0.0,0.9864643068174416,-9.83847189631896,1.0,0.0,0.0 -1022,25.0,1.717683327019983,2.3,0.0,0.0,0.9729903557717764,-9.878825033969264,1.0,0.0,0.0 -1022,26.0,0.0,0.0,0.0,0.0,0.989093009720638,-9.202951260730613,1.0,0.0,0.0 -1022,27.0,0.0,0.0,0.0,0.0,0.965447665901064,-6.6598263231691455,1.0,0.0,0.0 -1022,28.0,1.1778399956708454,0.9,0.0,0.0,0.9761629680241648,-9.750007964612603,1.0,0.0,0.0 -1022,29.0,5.202126647546234,1.9,0.0,0.0,0.9691989973236754,-10.166797191993169,1.0,0.0,0.0 diff --git a/examples/models/GridFM_v0_1.pth b/examples/models/GridFM_v0_1.pth deleted file mode 100644 index 6e7bc97..0000000 Binary files a/examples/models/GridFM_v0_1.pth and /dev/null differ diff --git a/examples/models/GridFM_v0_2.pth b/examples/models/GridFM_v0_2.pth deleted file mode 100644 index ea6cf4a..0000000 Binary files a/examples/models/GridFM_v0_2.pth and /dev/null differ diff --git a/examples/notebooks/Tutorial_contingency_analisys.ipynb b/examples/notebooks/Tutorial_contingency_analisys.ipynb index e85b25b..748b808 100644 --- a/examples/notebooks/Tutorial_contingency_analisys.ipynb +++ b/examples/notebooks/Tutorial_contingency_analisys.ipynb @@ -447,9 +447,9 @@ "metadata": {}, "outputs": [], "source": [ - "overloadings = loadings[removed_lines == False] > 1.0\n", - "overloadings_pred = loadings_pred[removed_lines == False] > 1.0\n", - "overloadings_dc = loadings_dc[removed_lines == False] > 1.0" + "overloadings = loadings[not removed_lines] > 1.0\n", + "overloadings_pred = loadings_pred[not removed_lines] > 1.0\n", + "overloadings_dc = loadings_dc[not removed_lines] > 1.0" ] }, { @@ -547,7 +547,7 @@ } ], "source": [ - "plt.hist(loadings[removed_lines == False], bins=100)\n", + "plt.hist(loadings[not removed_lines], bins=100)\n", "plt.xlabel(\"Line Loadings\")\n", "plt.ylabel(\"Frequency\")\n", "# log scale\n", @@ -580,7 +580,7 @@ ], "source": [ "# Valid lines\n", - "valid_mask = removed_lines == False\n", + "valid_mask = not removed_lines\n", "\n", "# Extract valid values\n", "true_vals = loadings[valid_mask]\n", @@ -669,9 +669,9 @@ "source": [ "# Histograms of loadings\n", "plot_loading_predictions(\n", - " loadings_pred[removed_lines == False],\n", - " loadings_dc[removed_lines == False],\n", - " loadings[removed_lines == False],\n", + " loadings_pred[not removed_lines],\n", + " loadings_dc[not removed_lines],\n", + " loadings[not removed_lines],\n", " prediction_dir,\n", " label_plot,\n", ")" @@ -723,14 +723,14 @@ "mse_pred = []\n", "mse_dc = []\n", "for i in range(len(bins) - 1):\n", - " idx_in_bins = (loadings[removed_lines == False] > bins[i]) & (\n", - " loadings[removed_lines == False] < bins[i + 1]\n", + " idx_in_bins = (loadings[not removed_lines] > bins[i]) & (\n", + " loadings[not removed_lines] < bins[i + 1]\n", " )\n", " mse_pred.append(\n", " np.mean(\n", " (\n", - " loadings_pred[removed_lines == False][idx_in_bins]\n", - " - loadings[removed_lines == False][idx_in_bins]\n", + " loadings_pred[not removed_lines][idx_in_bins]\n", + " - loadings[not removed_lines][idx_in_bins]\n", " )\n", " ** 2\n", " )\n", @@ -738,8 +738,8 @@ " mse_dc.append(\n", " np.mean(\n", " (\n", - " loadings_dc[removed_lines == False][idx_in_bins]\n", - " - loadings[removed_lines == False][idx_in_bins]\n", + " loadings_dc[not removed_lines][idx_in_bins]\n", + " - loadings[not removed_lines][idx_in_bins]\n", " )\n", " ** 2\n", " )\n", diff --git a/gridfm_graphkit/__init__.py b/gridfm_graphkit/__init__.py index 2f25480..9378901 100644 --- a/gridfm_graphkit/__init__.py +++ b/gridfm_graphkit/__init__.py @@ -1,5 +1,7 @@ import gridfm_graphkit.datasets -import gridfm_graphkit.models +import gridfm_graphkit.tasks.base_task +import gridfm_graphkit.models.gnn_heterogeneous_gns +import gridfm_graphkit.tasks.reconstruction_tasks __all__ = [ "gridfm_graphkit", diff --git a/gridfm_graphkit/__main__.py b/gridfm_graphkit/__main__.py index f2e3d62..21046f7 100644 --- a/gridfm_graphkit/__main__.py +++ b/gridfm_graphkit/__main__.py @@ -34,15 +34,38 @@ def main(): help="Evaluate model performance", ) evaluate_parser.add_argument("--model_path", type=str, default=None) + evaluate_parser.add_argument( + "--normalizer_stats", + type=str, + default=None, + help="Path to normalizer_stats.pt from a training run. " + "Restores normalizers from saved stats instead of re-fitting.", + ) evaluate_parser.add_argument("--config", type=str, required=True) evaluate_parser.add_argument("--exp_name", type=str, default=exp_name) evaluate_parser.add_argument("--run_name", type=str, default="run") evaluate_parser.add_argument("--log_dir", type=str, default="mlruns") evaluate_parser.add_argument("--data_path", type=str, default="data") - + evaluate_parser.add_argument( + "--compute_dc_ac_metrics", + action="store_true", + help="Compute ground-truth AC/DC power balance metrics on the test split.", + ) + evaluate_parser.add_argument( + "--save_output", + action="store_true", + help="Save per-bus predictions CSV via the predict step.", + ) # ---- PREDICT SUBCOMMAND ---- predict_parser = subparsers.add_parser("predict", help="Evaluate model performance") predict_parser.add_argument("--model_path", type=str, required=None) + predict_parser.add_argument( + "--normalizer_stats", + type=str, + default=None, + help="Path to normalizer_stats.pt from a training run. " + "Restores normalizers from saved stats instead of re-fitting.", + ) predict_parser.add_argument("--config", type=str, required=True) predict_parser.add_argument("--exp_name", type=str, default=exp_name) predict_parser.add_argument("--run_name", type=str, default="run") diff --git a/gridfm_graphkit/cli.py b/gridfm_graphkit/cli.py index a7507c1..90c63b9 100644 --- a/gridfm_graphkit/cli.py +++ b/gridfm_graphkit/cli.py @@ -1,14 +1,14 @@ -from gridfm_graphkit.datasets.powergrid_datamodule import LitGridDataModule +from gridfm_graphkit.datasets.hetero_powergrid_datamodule import LitGridHeteroDataModule from gridfm_graphkit.io.param_handler import NestedNamespace from gridfm_graphkit.training.callbacks import SaveBestModelStateDict import numpy as np import os import yaml import torch -import random import pandas as pd -from gridfm_graphkit.tasks.feature_reconstruction_task import FeatureReconstructionTask +from gridfm_graphkit.io.param_handler import get_task +from gridfm_graphkit.tasks.compute_ac_dc_metrics import compute_ac_dc_metrics from lightning.pytorch.callbacks.early_stopping import EarlyStopping from lightning.pytorch.callbacks.model_checkpoint import ModelCheckpoint from lightning.pytorch.loggers import MLFlowLogger @@ -52,19 +52,18 @@ def main_cli(args): config_args = NestedNamespace(**base_config) - torch.manual_seed(config_args.seed) - random.seed(config_args.seed) - np.random.seed(config_args.seed) + L.seed_everything(config_args.seed, workers=True) - litGrid = LitGridDataModule(config_args, args.data_path) - model = FeatureReconstructionTask( + normalizer_stats_path = getattr(args, "normalizer_stats", None) + litGrid = LitGridHeteroDataModule( config_args, - litGrid.node_normalizers, - litGrid.edge_normalizers, + args.data_path, + normalizer_stats_path=normalizer_stats_path, ) + model = get_task(config_args, litGrid.data_normalizers) if args.command != "train": print(f"Loading model weights from {args.model_path}") - state_dict = torch.load(args.model_path) + state_dict = torch.load(args.model_path, map_location="cpu") model.load_state_dict(state_dict) trainer = L.Trainer( @@ -72,7 +71,7 @@ def main_cli(args): accelerator=config_args.training.accelerator, devices=config_args.training.devices, strategy=config_args.training.strategy, - log_every_n_steps=1, + log_every_n_steps=1000, default_root_dir=args.log_dir, max_epochs=config_args.training.epochs, callbacks=get_training_callbacks(config_args), @@ -81,42 +80,61 @@ def main_cli(args): trainer.fit(model=model, datamodule=litGrid) if args.command != "predict": - trainer.test(model=model, datamodule=litGrid) + test_trainer = L.Trainer( + logger=logger, + accelerator=config_args.training.accelerator, + devices=1, + num_nodes=1, + log_every_n_steps=1, + default_root_dir=args.log_dir, + ) + test_trainer.test(model=model, datamodule=litGrid) - if args.command == "predict": - predictions = trainer.predict(model=model, datamodule=litGrid) - all_outputs = [] - all_scenarios = [] - all_bus_numbers = [] + artifacts_dir = os.path.join( + logger.save_dir, + logger.experiment_id, + logger.run_id, + "artifacts", + ) - for batch in predictions: - all_outputs.append(batch["output"]) - all_scenarios.append(batch["scenario_id"]) - all_bus_numbers.append(batch["bus_number"]) - - # Concatenate all - outputs = np.concatenate(all_outputs, axis=0) # shape: [num_nodes, 6] - scenario_ids = np.concatenate(all_scenarios, axis=0) - bus_numbers = np.concatenate(all_bus_numbers, axis=0) - - # Build DataFrame - df = pd.DataFrame( - { - "scenario": scenario_ids, - "bus": bus_numbers, - "PD_pred": outputs[:, 0], - "QD_pred": outputs[:, 1], - "PG_pred": outputs[:, 2], - "QG_pred": outputs[:, 3], - "VM_pred": outputs[:, 4], - "VA_pred": outputs[:, 5], - }, + compute_dc_ac = getattr(args, "compute_dc_ac_metrics", False) + if compute_dc_ac: + sn_mva = config_args.data.baseMVA + for grid_name in config_args.data.networks: + raw_dir = os.path.join(args.data_path, grid_name, "raw") + print(f"\nComputing ground-truth AC/DC metrics for {grid_name}...") + compute_ac_dc_metrics(artifacts_dir, raw_dir, grid_name, sn_mva) + + save_output = getattr(args, "save_output", False) or args.command == "predict" + if save_output: + if len(config_args.data.networks) > 1: + raise NotImplementedError( + "Predict/save_output with multiple grids is not yet supported.", + ) + + predict_trainer = L.Trainer( + logger=logger, + accelerator=config_args.training.accelerator, + devices=1, + num_nodes=1, + log_every_n_steps=1, + default_root_dir=args.log_dir, ) + predictions = predict_trainer.predict(model=model, datamodule=litGrid) - # Save CSV - output_dir = os.path.join(args.output_path) - os.makedirs(output_dir, exist_ok=True) - csv_path = os.path.join(output_dir, "predictions.csv") - df.to_csv(csv_path, index=False) + rows = {key: [] for key in predictions[0].keys()} + for batch in predictions: + for key in rows: + rows[key].append(batch[key]) + + df = pd.DataFrame({key: np.concatenate(vals) for key, vals in rows.items()}) - print(f"Saved predictions to {csv_path}") + grid_name = config_args.data.networks[0] + if args.command == "predict": + output_dir = args.output_path + else: + output_dir = os.path.join(artifacts_dir, "test") + os.makedirs(output_dir, exist_ok=True) + out_path = os.path.join(output_dir, f"{grid_name}_predictions.parquet") + df.to_parquet(out_path, index=False) + print(f"Saved predictions to {out_path}") diff --git a/gridfm_graphkit/datasets/__init__.py b/gridfm_graphkit/datasets/__init__.py index 8909085..fee635f 100644 --- a/gridfm_graphkit/datasets/__init__.py +++ b/gridfm_graphkit/datasets/__init__.py @@ -1,23 +1,15 @@ -from gridfm_graphkit.datasets.transforms import ( - AddPFMask, - AddIdentityMask, - AddRandomMask, - AddOPFMask, -) from gridfm_graphkit.datasets.normalizers import ( - Standardizer, - MinMaxNormalizer, - BaseMVANormalizer, - IdentityNormalizer, + HeteroDataMVANormalizer, +) +from gridfm_graphkit.datasets.task_transforms import ( + PowerFlowTransforms, + OptimalPowerFlowTransforms, + StateEstimationTransforms, ) __all__ = [ - "AddPFMask", - "AddIdentityMask", - "AddRandomMask", - "AddOPFMask", - "Standardizer", - "MinMaxNormalizer", - "BaseMVANormalizer", - "IdentityNormalizer", + "HeteroDataMVANormalizer", + "PowerFlowTransforms", + "OptimalPowerFlowTransforms", + "StateEstimationTransforms", ] diff --git a/gridfm_graphkit/datasets/globals.py b/gridfm_graphkit/datasets/globals.py index 396dba6..ab3c7e3 100644 --- a/gridfm_graphkit/datasets/globals.py +++ b/gridfm_graphkit/datasets/globals.py @@ -1,19 +1,54 @@ -# Global variables +# ========================= +# === BUS FEATURE INDICES == +# ========================= +PD_H = 0 # Active power demand (P_d) +QD_H = 1 # Reactive power demand (Q_d) +QG_H = 2 # Reactive power generation (Q_g) +VM_H = 3 # Voltage magnitude (p.u.) +VA_H = 4 # Voltage angle (degrees) +PQ_H = 5 # PQ bus indicator (1 if PQ) +PV_H = 6 # PV bus indicator (1 if PV) +REF_H = 7 # Reference (slack) bus indicator (1 if REF) +MIN_VM_H = 8 # Minimum voltage magnitude limit (p.u.) +MAX_VM_H = 9 # Maximum voltage magnitude limit (p.u.) +MIN_QG_H = 10 # Minimum reactive power limit (Mvar) +MAX_QG_H = 11 # Maximum reactive power limit (Mvar) +GS = 12 # Shunt conductance (p.u.) +BS = 13 # Shunt susceptance (p.u.) +VN_KV = 14 # Nominal voltage -# Node features indices -PD = 0 -QD = 1 -PG = 2 -QG = 3 -VM = 4 -VA = 5 -PQ = 6 -PV = 7 -REF = 8 +# ========================= +# === OUTPUT FEATURE INDICES == +# ========================= +VM_OUT = 0 +VA_OUT = 1 +PG_OUT = 2 +QG_OUT = 3 +PG_OUT_GEN = 0 -# Edge features indices -G = 0 -B = 1 -FEATURES_IDX = {"PD": PD, "QD": QD, "PG": PG, "QG": QG, "VM": VM, "VA": VA} -BUS_TYPES = ["PQ", "PV", "REF"] +# ================================ +# === GENERATOR FEATURE INDICES == +# ================================ +PG_H = 0 # Active power generation (P_g) +MIN_PG = 1 # Minimum active power limit (MW) +MAX_PG = 2 # Maximum active power limit (MW) +C0_H = 3 # Cost coefficient c0 (€) +C1_H = 4 # Cost coefficient c1 (€ / MW) +C2_H = 5 # Cost coefficient c2 (€ / MW²) +G_ON = 6 # Generator on/off + +# ============================ +# === EDGE FEATURE INDICES === +# ============================ +P_E = 0 # Active power flow +Q_E = 1 # Reactive power flow +YFF_TT_R = 2 # Yff real +YFF_TT_I = 3 # Yff imag +YFT_TF_R = 4 # Yft real +YFT_TF_I = 5 # Yft imag +TAP = 6 # Tap ratio +ANG_MIN = 7 # Angle min (deg) +ANG_MAX = 8 # Angle max (deg) +RATE_A = 9 # Thermal limit +B_ON = 10 # Branch on/off diff --git a/gridfm_graphkit/datasets/hetero_powergrid_datamodule.py b/gridfm_graphkit/datasets/hetero_powergrid_datamodule.py new file mode 100644 index 0000000..4ac0125 --- /dev/null +++ b/gridfm_graphkit/datasets/hetero_powergrid_datamodule.py @@ -0,0 +1,386 @@ +import json +import torch +from torch_geometric.loader import DataLoader +from torch.utils.data import ConcatDataset +from torch.utils.data import Subset +import torch.distributed as dist +from gridfm_graphkit.io.param_handler import ( + NestedNamespace, + load_normalizer, + get_task_transforms, +) +from gridfm_graphkit.datasets.utils import ( + split_dataset, + split_dataset_by_load_scenario_idx, +) +from gridfm_graphkit.datasets.powergrid_hetero_dataset import HeteroGridDatasetDisk +import numpy as np +import random +import warnings +import os +import lightning as L +from typing import List +from lightning.pytorch.loggers import MLFlowLogger + + +class LitGridHeteroDataModule(L.LightningDataModule): + """ + PyTorch Lightning DataModule for power grid datasets. + + This datamodule handles loading, preprocessing, splitting, and batching + of power grid graph datasets (`GridDatasetDisk`) for training, validation, + testing, and prediction. It ensures reproducibility through fixed seeds. + + Args: + args (NestedNamespace): Experiment configuration. + data_dir (str, optional): Root directory for datasets. Defaults to "./data". + + Attributes: + batch_size (int): Batch size for all dataloaders. From ``args.training.batch_size`` + data_normalizers (list): List of data normalizers, one per dataset. + datasets (list): Original datasets for each network. + train_datasets (list): Train splits for each network. + val_datasets (list): Validation splits for each network. + test_datasets (list): Test splits for each network. + train_dataset_multi (ConcatDataset): Concatenated train datasets for multi-network training. + val_dataset_multi (ConcatDataset): Concatenated validation datasets for multi-network validation. + _is_setup_done (bool): Tracks whether `setup` has been executed to avoid repeated processing. + + Methods: + setup(stage): + Load and preprocess datasets, split into train/val/test, and store normalizers. + Handles distributed preprocessing safely. + train_dataloader(): + Returns a DataLoader for concatenated training datasets. + val_dataloader(): + Returns a DataLoader for concatenated validation datasets. + test_dataloader(): + Returns a list of DataLoaders, one per test dataset. + predict_dataloader(): + Returns a list of DataLoaders, one per test dataset for prediction. + + Notes: + - Preprocessing is only performed on rank 0 in distributed settings. + - Subsets and splits are deterministic based on the provided random seed. + - Normalizers are loaded for each network independently. + - Test and predict dataloaders are returned as lists, one per dataset. + + Example: + ```python + from gridfm_graphkit.datasets.powergrid_datamodule import LitGridDataModule + from gridfm_graphkit.io.param_handler import NestedNamespace + import yaml + + with open("config/config.yaml") as f: + base_config = yaml.safe_load(f) + args = NestedNamespace(**base_config) + + datamodule = LitGridDataModule(args, data_dir="./data") + + datamodule.setup("fit") + train_loader = datamodule.train_dataloader() + ``` + """ + + def __init__( + self, + args: NestedNamespace, + data_dir: str = "./data", + normalizer_stats_path: str = None, + ): + super().__init__() + self.data_dir = data_dir + self.batch_size = int(args.training.batch_size) + self.split_by_load_scenario_idx = getattr( + args.data, + "split_by_load_scenario_idx", + False, + ) + self.args = args + self.normalizer_stats_path = normalizer_stats_path + self.data_normalizers = [] + self.datasets = [] + self.train_datasets = [] + self.val_datasets = [] + self.test_datasets = [] + self.train_scenario_ids: List[List[int]] = [] + self.val_scenario_ids: List[List[int]] = [] + self.test_scenario_ids: List[List[int]] = [] + self._is_setup_done = False + + def setup(self, stage: str): + if self._is_setup_done: + print(f"Setup already done for stage={stage}, skipping...") + return + + # Load pre-fitted normalizer stats if provided (e.g. from a training run) + saved_stats = None + if self.normalizer_stats_path is not None: + saved_stats = torch.load( + self.normalizer_stats_path, + map_location="cpu", + weights_only=True, + ) + print(f"Loaded normalizer stats from {self.normalizer_stats_path}") + + for i, network in enumerate(self.args.data.networks): + data_normalizer = load_normalizer(args=self.args) + self.data_normalizers.append(data_normalizer) + + # Create torch dataset (normalizer is NOT yet fitted) + data_path_network = os.path.join(self.data_dir, network) + + is_distributed = dist.is_available() and dist.is_initialized() + + if not is_distributed or dist.get_rank() == 0: + dataset = HeteroGridDatasetDisk( + root=data_path_network, + data_normalizer=data_normalizer, + transform=get_task_transforms(args=self.args), + ) + + # All ranks wait here until rank 0 processing is done + if is_distributed: + dist.barrier() + + if is_distributed and dist.get_rank() != 0: + dataset = HeteroGridDatasetDisk( + root=data_path_network, + data_normalizer=data_normalizer, + transform=get_task_transforms(args=self.args), + ) + self.datasets.append(dataset) + + num_scenarios = self.args.data.scenarios[i] + if num_scenarios > len(dataset): + warnings.warn( + f"Requested number of scenarios ({num_scenarios}) exceeds dataset size ({len(dataset)}). " + "Using the full dataset instead.", + ) + num_scenarios = len(dataset) + + # Create a subset + all_indices = list(range(len(dataset))) + # Random seed set before every shuffle for reproducibility in case the power grid datasets are analyzed in a different order + random.seed(self.args.seed) + random.shuffle(all_indices) + subset_indices = all_indices[:num_scenarios] + + # load_scenario for each scenario in the subset + load_scenarios = dataset.load_scenarios[subset_indices] + + dataset = Subset(dataset, subset_indices) + + # Random seed set before every split, same as above + np.random.seed(self.args.seed) + if self.split_by_load_scenario_idx: + train_dataset, val_dataset, test_dataset = ( + split_dataset_by_load_scenario_idx( + dataset, + self.data_dir, + load_scenarios, + self.args.data.val_ratio, + self.args.data.test_ratio, + ) + ) + else: + train_dataset, val_dataset, test_dataset = split_dataset( + dataset, + self.data_dir, + self.args.data.val_ratio, + self.args.data.test_ratio, + ) + + # Extract scenario IDs for each split + train_scenario_ids = self._extract_scenario_ids( + train_dataset, + subset_indices, + ) + val_scenario_ids = self._extract_scenario_ids( + val_dataset, + subset_indices, + ) + test_scenario_ids = self._extract_scenario_ids( + test_dataset, + subset_indices, + ) + + # Fit normalizer: restore from saved stats only for fit_on_train + # normalizers (global baseMVA must match the model's training run). + # fit_on_dataset normalizers compute per-scenario stats and must + # always fit on the actual scenarios being used. + use_saved = ( + saved_stats is not None + and network in saved_stats + and data_normalizer.fit_strategy == "fit_on_train" + ) + if use_saved: + print(f"Restoring normalizer for {network} from saved stats") + data_normalizer.fit_from_dict(saved_stats[network]) + else: + self._fit_normalizer( + data_normalizer, + data_path_network, + network, + train_scenario_ids, + val_scenario_ids, + test_scenario_ids, + num_scenarios, + saved_stats, + ) + + self.train_datasets.append(train_dataset) + self.val_datasets.append(val_dataset) + self.test_datasets.append(test_dataset) + self.train_scenario_ids.append(train_scenario_ids) + self.val_scenario_ids.append(val_scenario_ids) + self.test_scenario_ids.append(test_scenario_ids) + + self.train_dataset_multi = ConcatDataset(self.train_datasets) + self.val_dataset_multi = ConcatDataset(self.val_datasets) + self._is_setup_done = True + + # Save scenario splits (rank 0 only in DDP) + is_rank0 = ( + not dist.is_available() or not dist.is_initialized() or dist.get_rank() == 0 + ) + if is_rank0 and self.trainer is not None and self.trainer.logger is not None: + logger = self.trainer.logger + if isinstance(logger, MLFlowLogger): + log_dir = os.path.join( + logger.save_dir, + logger.experiment_id, + logger.run_id, + "artifacts", + "stats", + ) + else: + log_dir = os.path.join(logger.save_dir, "stats") + self.save_scenario_splits(log_dir) + + @staticmethod + def _fit_normalizer( + data_normalizer, + data_path_network, + network, + train_scenario_ids, + val_scenario_ids, + test_scenario_ids, + num_scenarios, + saved_stats, + ): + """ + Fit normalizer from raw data. In distributed settings, only rank 0 + reads the parquet files and computes stats; the result is broadcast + to all other ranks via fit_from_dict. + """ + is_distributed = dist.is_available() and dist.is_initialized() + is_rank0 = not is_distributed or dist.get_rank() == 0 + + raw_data_path = os.path.join(data_path_network, "raw") + stats = None + + if is_rank0: + if data_normalizer.fit_strategy == "fit_on_train": + if saved_stats is not None and network not in saved_stats: + warnings.warn( + f"No saved normalizer stats found for network '{network}'. " + "Fitting from data instead.", + ) + print( + f"Fitting normalizer on train set ({len(train_scenario_ids)} scenarios)", + ) + stats = data_normalizer.fit(raw_data_path, train_scenario_ids) + elif data_normalizer.fit_strategy == "fit_on_dataset": + all_scenario_ids = ( + train_scenario_ids + val_scenario_ids + test_scenario_ids + ) + assert np.unique(all_scenario_ids).shape[0] == num_scenarios + print( + f"Fitting normalizer on full dataset ({len(all_scenario_ids)} scenarios)", + ) + stats = data_normalizer.fit(raw_data_path, all_scenario_ids) + else: + raise ValueError( + f"Unknown fit_strategy: {data_normalizer.fit_strategy}", + ) + + if is_distributed: + stats_list = [stats] + dist.broadcast_object_list(stats_list, src=0) + stats = stats_list[0] + if dist.get_rank() != 0: + data_normalizer.fit_from_dict(stats) + + @staticmethod + def _extract_scenario_ids( + subset: Subset, + subset_indices: List[int], + ) -> List[int]: + """ + Extract original scenario IDs from a Subset. + + The subset's indices point into an outer Subset defined by subset_indices, + so we map: original_scenario_id = subset_indices[subset_idx]. + """ + indices = subset.indices + if isinstance(indices, torch.Tensor): + indices = indices.flatten().tolist() + elif not isinstance(indices, list): + indices = list(indices) + return [subset_indices[idx] for idx in indices] + + def save_scenario_splits(self, log_dir: str): + """Save train/val/test scenario ID splits to JSON files.""" + os.makedirs(log_dir, exist_ok=True) + for i, network in enumerate(self.args.data.networks): + splits = { + "train": self.train_scenario_ids[i], + "val": self.val_scenario_ids[i], + "test": self.test_scenario_ids[i], + } + splits_path = os.path.join(log_dir, f"{network}_scenario_splits.json") + with open(splits_path, "w") as f: + json.dump(splits, f, indent=2) + + def train_dataloader(self): + return DataLoader( + self.train_dataset_multi, + batch_size=self.batch_size, + shuffle=True, + num_workers=self.args.data.workers, + pin_memory=True, + ) + + def val_dataloader(self): + return DataLoader( + self.val_dataset_multi, + batch_size=self.batch_size, + shuffle=False, + num_workers=self.args.data.workers, + pin_memory=True, + ) + + def test_dataloader(self): + return [ + DataLoader( + i, + batch_size=self.batch_size, + shuffle=False, + num_workers=self.args.data.workers, + pin_memory=True, + ) + for i in self.test_datasets + ] + + def predict_dataloader(self): + return [ + DataLoader( + i, + batch_size=self.batch_size, + shuffle=False, + num_workers=self.args.data.workers, + pin_memory=True, + ) + for i in self.test_datasets + ] diff --git a/gridfm_graphkit/datasets/masking.py b/gridfm_graphkit/datasets/masking.py new file mode 100644 index 0000000..b615e0c --- /dev/null +++ b/gridfm_graphkit/datasets/masking.py @@ -0,0 +1,323 @@ +import torch +from torch_geometric.transforms import BaseTransform +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + PD_H, + QD_H, + QG_H, + VM_H, + VA_H, + PQ_H, + PV_H, + REF_H, + MIN_VM_H, + MAX_VM_H, + MIN_QG_H, + MAX_QG_H, + VN_KV, + # Generator feature indices + PG_H, + MIN_PG, + MAX_PG, + C0_H, + C1_H, + C2_H, + # Edge feature indices + P_E, + Q_E, + ANG_MIN, + ANG_MAX, + RATE_A, +) +from torch_geometric.utils import degree +from torch_geometric.nn import MessagePassing + + +class AddPFHeteroMask(BaseTransform): + """Creates masks for a heterogeneous power flow graph.""" + + def __init__(self): + super().__init__() + + def forward(self, data): + bus_x = data.x_dict["bus"] + gen_x = data.x_dict["gen"] + + # Identify bus types + mask_PQ = bus_x[:, PQ_H] == 1 + mask_PV = bus_x[:, PV_H] == 1 + mask_REF = bus_x[:, REF_H] == 1 + + # Initialize mask tensors + mask_bus = torch.zeros_like(bus_x, dtype=torch.bool) + mask_gen = torch.zeros_like(gen_x, dtype=torch.bool) + + mask_bus[:, MIN_VM_H] = True + mask_bus[:, MAX_VM_H] = True + mask_bus[:, MIN_QG_H] = True + mask_bus[:, MAX_QG_H] = True + mask_bus[:, VN_KV] = True + + mask_gen[:, MIN_PG] = True + mask_gen[:, MAX_PG] = True + mask_gen[:, C0_H] = True + mask_gen[:, C1_H] = True + mask_gen[:, C2_H] = True + + # --- PQ buses --- + mask_bus[mask_PQ, VM_H] = True + mask_bus[mask_PQ, VA_H] = True + + # --- PV buses --- + mask_bus[mask_PV, VA_H] = True + mask_bus[mask_PV, QG_H] = True + + # --- REF buses --- + mask_bus[mask_REF, VM_H] = True + mask_bus[mask_REF, QG_H] = True + # --- Generators connected to REF buses --- + gen_bus_edges = data.edge_index_dict[("gen", "connected_to", "bus")] + gen_indices, bus_indices = gen_bus_edges + ref_gens = gen_indices[mask_REF[bus_indices]] + mask_gen[ref_gens, PG_H] = True + + mask_branch = torch.zeros_like( + data.edge_attr_dict[("bus", "connects", "bus")], + dtype=torch.bool, + ) + mask_branch[:, P_E] = True + mask_branch[:, Q_E] = True + mask_branch[:, ANG_MIN] = True + mask_branch[:, ANG_MAX] = True + mask_branch[:, RATE_A] = True + + data.mask_dict = { + "bus": mask_bus, + "gen": mask_gen, + "branch": mask_branch, + "PQ": mask_PQ, + "PV": mask_PV, + "REF": mask_REF, + } + + return data + + +class AddOPFHeteroMask(BaseTransform): + """Creates masks for a heterogeneous power flow graph.""" + + def __init__(self): + super().__init__() + + def forward(self, data): + bus_x = data.x_dict["bus"] + gen_x = data.x_dict["gen"] + + # Identify bus types + mask_PQ = bus_x[:, PQ_H] == 1 + mask_PV = bus_x[:, PV_H] == 1 + mask_REF = bus_x[:, REF_H] == 1 + + # Initialize mask tensors + mask_bus = torch.zeros_like(bus_x, dtype=torch.bool) + mask_gen = torch.zeros_like(gen_x, dtype=torch.bool) + + # --- PQ buses --- + mask_bus[mask_PQ, VM_H] = True + mask_bus[mask_PQ, VA_H] = True + + # --- PV buses --- + mask_bus[mask_PV, VA_H] = True + mask_bus[mask_PV, VM_H] = True + mask_bus[mask_PV, QG_H] = True + + # --- REF buses --- + mask_bus[mask_REF, QG_H] = True + mask_bus[mask_REF, VM_H] = True + + mask_gen[:, PG_H] = True + + mask_branch = torch.zeros_like( + data.edge_attr_dict[("bus", "connects", "bus")], + dtype=torch.bool, + ) + mask_branch[:, P_E] = True + mask_branch[:, Q_E] = True + + data.mask_dict = { + "bus": mask_bus, + "gen": mask_gen, + "branch": mask_branch, + "PQ": mask_PQ, + "PV": mask_PV, + "REF": mask_REF, + } + + return data + + +class BusToGenBroadcaster(MessagePassing): + def __init__(self, aggr="add"): + super().__init__(aggr=aggr) + + def forward(self, x_bus, edge_index_bus2gen, num_gen): + # TODO propagate the standard deviation by dividing by sqrt of number of gens per bus + deg = degree(edge_index_bus2gen[0], num_nodes=x_bus.shape[0]).unsqueeze(-1) + return self.propagate( + edge_index_bus2gen, + x=x_bus / torch.sqrt(deg), + size=(x_bus.size(0), num_gen), + ) + + def message(self, x_j): + return x_j + + +class SimulateMeasurements(BaseTransform): + def __init__(self, args): + super().__init__() + self.measurements = args.task.measurements + self.relative_measurement = getattr(args.task, "relative_measurement", True) + self.measurement_distribution = getattr(args.task, "noise_type", "Gaussian") + self.bus2gen_broadcaster = BusToGenBroadcaster() + + def place_measurement_std_and_outliers(self, std, outliers, features, measurement): + measurement_mask = torch.rand(std.shape[0]) < measurement.mask_ratio + outliers_mask = torch.rand(std.shape[0]) < measurement.outlier_ratio + outliers_mask = torch.logical_and(outliers_mask, ~measurement_mask) + for feature in features: + std[~measurement_mask, feature] = measurement.std + outliers[outliers_mask, feature] = True + return std, outliers + + def add_noise(self, in_tensor, mask, std): + if self.measurement_distribution == "Gaussian": + return torch.where( + mask, + in_tensor, + in_tensor + std * torch.randn(std.shape), + ) + + elif self.measurement_distribution == "Laplace": + b = std / torch.sqrt(torch.tensor(2)) + dist = torch.distributions.laplace.Laplace(0, 1) + return torch.where(mask, in_tensor, in_tensor + b * dist.sample(b.shape)) + + elif self.measurement_distribution == "Uniform": + dist = torch.distributions.uniform.Uniform(-1, 1) + return torch.where( + mask, + in_tensor, + in_tensor + torch.sqrt(torch.tensor(3)) * std * dist.sample(std.shape), + ) + + def add_outliers(self, in_tensor, mask_outliers, std): + random_signs = 2 * torch.randint(0, 2, in_tensor.shape) - 1 + outlier_samples = 3 * std * random_signs + return torch.where(mask_outliers, in_tensor + outlier_samples, in_tensor) + + def forward(self, data): + std_bus = torch.full_like(data["bus"].y, float("inf"), dtype=torch.float) + outliers_bus = torch.full_like(data["bus"].y, False, dtype=torch.bool) + + std_bus, outliers_bus = self.place_measurement_std_and_outliers( + std_bus, + outliers_bus, + [VM_H], + self.measurements.vm, + ) + std_bus, outliers_bus = self.place_measurement_std_and_outliers( + std_bus, + outliers_bus, + [PD_H, QD_H, QG_H], + self.measurements.power_inj, + ) + std_gen = self.bus2gen_broadcaster( + std_bus[:, [PD_H]], + data[("bus", "connected_to", "gen")].edge_index, + data["gen"].x.shape[0], + ) + + std_branch = torch.full_like( + data[("bus", "connects", "bus")].edge_attr[:, :2], + float("inf"), + dtype=torch.float, + ) + outliers_branch = torch.full_like( + data[("bus", "connects", "bus")].edge_attr[:, :2], + False, + dtype=torch.bool, + ) + + std_branch, outliers_branch = self.place_measurement_std_and_outliers( + std_branch, + outliers_branch, + [P_E, Q_E], + self.measurements.power_flow, + ) + mask_bus, mask_branch, mask_gen = ( + torch.isinf(std_bus), + torch.isinf(std_branch), + torch.isinf(std_gen), + ) + + if self.relative_measurement: + std_bus = torch.where(mask_bus, std_bus, std_bus * torch.abs(data["bus"].y)) + std_branch = torch.where( + mask_branch, + std_branch, + std_branch + * torch.abs(data[("bus", "connects", "bus")].edge_attr[:, :2]), + ) + else: + std_bus = torch.where(mask_bus, std_bus, std_bus * data.baseMVA) + std_branch = torch.where(mask_branch, std_branch, std_branch * data.baseMVA) + + data["bus"].x[:, : data["bus"].y.size(1)] = self.add_noise( + data["bus"].x[:, : data["bus"].y.size(1)], + mask_bus, + std_bus, + ) + data["gen"].x[:, : data["gen"].y.size(1)] = self.add_noise( + data["gen"].x[:, : data["gen"].y.size(1)], + mask_gen, + std_gen, + ) + data[("bus", "connects", "bus")].edge_attr[:, :2] = self.add_noise( + data[("bus", "connects", "bus")].edge_attr[:, :2], + mask_branch, + std_branch, + ) + + data["bus"].x[:, : data["bus"].y.size(1)] = self.add_outliers( + data["bus"].x[:, : data["bus"].y.size(1)], + outliers_bus, + std_bus, + ) + + data[("bus", "connects", "bus")].edge_attr[:, :2] = self.add_outliers( + data[("bus", "connects", "bus")].edge_attr[:, :2], + outliers_branch, + std_branch, + ) + + # Save all masks and stds + extra_dims_bus = data["bus"].x.size(1) - data["bus"].y.size(1) + extra_dims_gen = data["gen"].x.size(1) - data["gen"].y.size(1) + extra_dims_branch = ( + data[("bus", "connects", "bus")]["edge_attr"].shape[1] + - mask_branch.shape[1] + ) + + data.mask_dict = { + "bus": torch.nn.functional.pad(mask_bus, (0, extra_dims_bus)), + "std_bus": std_bus, + "outliers_bus": outliers_bus, + "gen": torch.nn.functional.pad(mask_gen, (0, extra_dims_gen)), + "std_gen": std_gen, + "branch": torch.nn.functional.pad(mask_branch, (0, extra_dims_branch)), + "std_branch": std_branch, + "outliers_branch": outliers_branch, + } + + return data diff --git a/gridfm_graphkit/datasets/normalizers.py b/gridfm_graphkit/datasets/normalizers.py index 69c52ed..11601a6 100644 --- a/gridfm_graphkit/datasets/normalizers.py +++ b/gridfm_graphkit/datasets/normalizers.py @@ -1,7 +1,42 @@ -from gridfm_graphkit.datasets.globals import PD, QD, PG, QG, VA from gridfm_graphkit.io.registries import NORMALIZERS_REGISTRY +import os import torch from abc import ABC, abstractmethod +from typing import List +import pandas as pd +import numpy as np +from torch_geometric.data import HeteroData +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + PD_H, + QD_H, + QG_H, + VA_H, + MIN_QG_H, + MAX_QG_H, + GS, + BS, + VN_KV, + # Output feature indices + PG_OUT, + QG_OUT, + PG_OUT_GEN, + # Generator feature indices + PG_H, + MIN_PG, + MAX_PG, + C0_H, + C1_H, + C2_H, + # Edge feature indices + P_E, + Q_E, + YFF_TT_R, + YFT_TF_I, + ANG_MIN, + ANG_MAX, + RATE_A, +) class Normalizer(ABC): @@ -9,13 +44,17 @@ class Normalizer(ABC): Abstract base class for all normalization strategies. """ + # Subclasses should set this to "fit_on_train" or "fit_on_dataset" + fit_strategy: str = "fit_on_train" + @abstractmethod - def fit(self, data: torch.Tensor) -> dict: + def fit(self, data_path: str, scenario_ids: List[int]) -> dict: """ - Fit normalization parameters from data. + Fit normalization parameters from raw data on disk. Args: - data: Input tensor. + data_path: Path to the raw data directory containing parquet files. + scenario_ids: List of scenario IDs to use for fitting. Returns: Dictionary of computed parameters. @@ -61,116 +100,8 @@ def get_stats(self) -> dict: """ -@NORMALIZERS_REGISTRY.register("minmax") -class MinMaxNormalizer(Normalizer): - """ - Scales each feature to the [0, 1] range. - - Args: - node_data (bool): Whether data is node-level or edge-level - args (NestedNamespace): Parameters - - """ - - def __init__(self, node_data: bool, args): - self.min_val = None - self.max_val = None - - def to(self, device): - self.min_val = self.min_val.to(device) - self.max_val = self.max_val.to(device) - - def fit(self, data: torch.Tensor) -> dict: - self.min_val, _ = data.min(axis=0) - self.max_val, _ = data.max(axis=0) - - return {"min_value": self.min_val, "max_value": self.max_val} - - def fit_from_dict(self, params: dict): - if self.min_val is None: - self.min_val = params.get("min_value") - if self.max_val is None: - self.max_val = params.get("max_value") - - def transform(self, data: torch.Tensor) -> torch.Tensor: - if self.min_val is None or self.max_val is None: - raise ValueError("fit must be called before transform.") - - diff = self.max_val - self.min_val - diff[diff == 0] = 1 # Avoid division by zero for features with zero range - return (data - self.min_val) / diff - - def inverse_transform(self, normalized_data: torch.Tensor) -> torch.Tensor: - if self.min_val is None or self.max_val is None: - raise ValueError("fit must be called before inverse_transform.") - - diff = self.max_val - self.min_val - diff[diff == 0] = 1 - return (normalized_data * diff) + self.min_val - - def get_stats(self) -> dict: - return { - "min_value": self.min_val.tolist() if self.min_val is not None else None, - "max_value": self.max_val.tolist() if self.max_val is not None else None, - } - - -@NORMALIZERS_REGISTRY.register("standard") -class Standardizer(Normalizer): - """ - Standardizes each feature to zero mean and unit variance. - - Args: - node_data (bool): Whether data is node-level or edge-level - args (NestedNamespace): Parameters - - """ - - def __init__(self, node_data: bool, args): - self.mean = None - self.std = None - - def to(self, device): - self.mean = self.mean.to(device) - self.std = self.std.to(device) - - def fit(self, data: torch.Tensor) -> dict: - self.mean = data.mean(axis=0) - self.std = data.std(axis=0) - - return {"mean_value": self.mean, "std_value": self.std} - - def fit_from_dict(self, params: dict): - if self.mean is None: - self.mean = params.get("mean_value") - if self.std is None: - self.std = params.get("std_value") - - def transform(self, data: torch.Tensor) -> torch.Tensor: - if self.mean is None or self.std is None: - raise ValueError("fit must be called before transform.") - - std = self.std.clone() - std[std == 0] = 1 # Avoid division by zero for features with zero std - return (data - self.mean) / std - - def inverse_transform(self, normalized_data: torch.Tensor) -> torch.Tensor: - if self.mean is None or self.std is None: - raise ValueError("fit must be called before inverse_transform.") - - std = self.std.clone() - std[std == 0] = 1 - return (normalized_data * std) + self.mean - - def get_stats(self) -> dict: - return { - "mean": self.mean.tolist() if self.mean is not None else None, - "std": self.std.tolist() if self.std is not None else None, - } - - -@NORMALIZERS_REGISTRY.register("baseMVAnorm") -class BaseMVANormalizer(Normalizer): +@NORMALIZERS_REGISTRY.register("HeteroDataMVANormalizer") +class HeteroDataMVANormalizer(Normalizer): """ In power systems, a suitable normalization strategy must preserve the physical properties of the system. A known method is the conversion to the per-unit (p.u.) system, which expresses @@ -180,100 +111,508 @@ class BaseMVANormalizer(Normalizer): preserving fundamental physical relationships. """ - def __init__(self, node_data: bool, args): + fit_strategy = "fit_on_train" + + def __init__(self, args): """ Args: - node_data: Whether data is node-level or edge-level args (NestedNamespace): Parameters Attributes: baseMVA (float): baseMVA found in casefile. From ``args.data.baseMVA``. """ - self.node_data = node_data self.baseMVA_orig = getattr(args.data, "baseMVA", 100) self.baseMVA = None def to(self, device): pass - def fit(self, data: torch.Tensor, baseMVA: float = None) -> dict: - if self.node_data: - self.baseMVA = data[:, [PD, QD, PG, QG]].max() - else: - self.baseMVA = baseMVA - - return {"baseMVA_orig": self.baseMVA_orig, "baseMVA": self.baseMVA} - - def fit_from_dict(self, params: dict): - if self.baseMVA is None: - self.baseMVA = params.get("baseMVA") - if self.baseMVA_orig is None: - self.baseMVA_orig = params.get("baseMVA_orig") + def fit(self, data_path: str, scenario_ids: List[int]) -> dict: + """ + Fit normalization parameters by loading raw parquet data from disk. - def transform(self, data: torch.Tensor) -> torch.Tensor: - if self.baseMVA is None: - raise ValueError("BaseMVA is not specified") + Args: + data_path: Path to the raw data directory containing bus_data.parquet and gen_data.parquet. + scenario_ids: List of scenario IDs to use for fitting. - if self.baseMVA == 0: - raise ZeroDivisionError("BaseMVA is 0.") + Returns: + Dictionary of computed parameters. + """ + bus_data = pd.read_parquet(os.path.join(data_path, "bus_data.parquet")) + gen_data = pd.read_parquet(os.path.join(data_path, "gen_data.parquet")) - if self.node_data: - data[:, PD] = data[:, PD] / self.baseMVA - data[:, QD] = data[:, QD] / self.baseMVA - data[:, PG] = data[:, PG] / self.baseMVA - data[:, QG] = data[:, QG] / self.baseMVA - data[:, VA] = data[:, VA] * torch.pi / 180.0 - else: - data = data * self.baseMVA_orig / self.baseMVA + assert ( + bus_data.scenario.min() == 0 + and bus_data.scenario.max() == len(bus_data.scenario.unique()) - 1 + ) - return data + bus_data = bus_data[bus_data["scenario"].isin(scenario_ids)] + gen_data = gen_data[gen_data["scenario"].isin(scenario_ids)] - def inverse_transform(self, normalized_data: torch.Tensor) -> torch.Tensor: if self.baseMVA is None: - raise ValueError("fit must be called before inverse_transform.") - - if self.node_data: - normalized_data[:, PD] = normalized_data[:, PD] * self.baseMVA - normalized_data[:, QD] = normalized_data[:, QD] * self.baseMVA - normalized_data[:, PG] = normalized_data[:, PG] * self.baseMVA - normalized_data[:, QG] = normalized_data[:, QG] * self.baseMVA - normalized_data[:, VA] = normalized_data[:, VA] * 180.0 / torch.pi - else: - normalized_data = normalized_data * self.baseMVA / self.baseMVA_orig + pd_values = bus_data["Pd"] + qd_values = bus_data["Qd"] + pg_values = gen_data["p_mw"] + qg_values = bus_data["Qg"] + + non_zero_values = pd.concat( + [ + pd_values[pd_values != 0], + qd_values[qd_values != 0], + pg_values[pg_values != 0], + qg_values[qg_values != 0], + ], + ) + + self.baseMVA = np.percentile(non_zero_values, 95) + self.vn_kv_max = float(bus_data["vn_kv"].max()) + + return { + "baseMVA_orig": torch.tensor(self.baseMVA_orig, dtype=torch.float), + "baseMVA": torch.tensor(self.baseMVA, dtype=torch.float), + "vn_kv_max": torch.tensor(self.vn_kv_max, dtype=torch.float), + } - return normalized_data + def fit_from_dict(self, params: dict): + # Base MVA + self.baseMVA = params.get("baseMVA").item() + self.baseMVA_orig = params.get("baseMVA_orig").item() + + # vn_kv + self.vn_kv_max = params.get("vn_kv_max").item() + + def transform(self, data: HeteroData): + if self.baseMVA is None or self.baseMVA == 0: + raise ValueError("BaseMVA not properly set") + + # --- Bus input normalization --- PD, QD, QG, MIN_QG, MAX_QG, VA, GS, BS, VN_KV (9) + data.x_dict["bus"][:, PD_H] /= self.baseMVA + data.x_dict["bus"][:, QD_H] /= self.baseMVA + data.x_dict["bus"][:, QG_H] /= self.baseMVA + data.x_dict["bus"][:, MIN_QG_H] /= self.baseMVA + data.x_dict["bus"][:, MAX_QG_H] /= self.baseMVA + data.x_dict["bus"][:, VA_H] *= torch.pi / 180.0 + data.x_dict["bus"][:, GS] *= self.baseMVA_orig / self.baseMVA + data.x_dict["bus"][:, BS] *= self.baseMVA_orig / self.baseMVA + data.x_dict["bus"][:, VN_KV] /= self.vn_kv_max + + # --- Bus label normalization --- PD, QD, QG, VA (4) + data.y_dict["bus"][:, PD_H] /= self.baseMVA + data.y_dict["bus"][:, QD_H] /= self.baseMVA + data.y_dict["bus"][:, QG_H] /= self.baseMVA + data.y_dict["bus"][:, VA_H] *= torch.pi / 180.0 + + # --- Generator input normalization --- PG, MIN_PG, MAX_PG, C0, C1, C2 (6) + data.x_dict["gen"][:, PG_H] /= self.baseMVA + data.x_dict["gen"][:, MIN_PG] /= self.baseMVA + data.x_dict["gen"][:, MAX_PG] /= self.baseMVA + data.x_dict["gen"][:, C0_H] = torch.sign( + data.x_dict["gen"][:, C0_H], + ) * torch.log1p(torch.abs(data.x_dict["gen"][:, C0_H])) + data.x_dict["gen"][:, C1_H] = torch.sign( + data.x_dict["gen"][:, C1_H], + ) * torch.log1p(torch.abs(data.x_dict["gen"][:, C1_H])) + data.x_dict["gen"][:, C2_H] = torch.sign( + data.x_dict["gen"][:, C2_H], + ) * torch.log1p(torch.abs(data.x_dict["gen"][:, C2_H])) + + # --- Generator label normalization --- PG (1) + data.y_dict["gen"][:, PG_H] /= self.baseMVA + + # --- Edge input normalization --- P_E, Q_E , Ys, ANG_MIN, ANG_MAX, RATE_A + data.edge_attr_dict[("bus", "connects", "bus")][:, P_E] /= self.baseMVA + data.edge_attr_dict[("bus", "connects", "bus")][:, Q_E] /= self.baseMVA + data.edge_attr_dict[("bus", "connects", "bus")][:, YFF_TT_R : YFT_TF_I + 1] *= ( + self.baseMVA_orig / self.baseMVA + ) + data.edge_attr_dict[("bus", "connects", "bus")][:, ANG_MIN] *= torch.pi / 180.0 + data.edge_attr_dict[("bus", "connects", "bus")][:, ANG_MAX] *= torch.pi / 180.0 + data.edge_attr_dict[("bus", "connects", "bus")][:, RATE_A] /= self.baseMVA + data.baseMVA = self.baseMVA + data.is_normalized = True + + def inverse_transform(self, data: HeteroData): + if self.baseMVA is None or self.baseMVA == 0: + raise ValueError("BaseMVA not properly set") + + if not data.is_normalized.all(): + raise ValueError("Attempting to denormalize data which is not normalized") + + if (data.baseMVA != self.baseMVA).any(): + raise ValueError( + f"Normalizer baseMVA was {self.baseMVA} but Data object baseMVA is {data.baseMVA}", + ) + + # -------- BUS INPUT INVERSE NORMALIZATION -------- + # NOTE: VA (bus input & label) are intentionally kept in + # radians after inverse_transform -- the physics layers (ComputeBranchFlow, + # ComputeNodeResiduals, etc.) expect radians. + # + # WARNING: GS, BS, and edge admittances (Y) are NOT restored to their + # original casefile per-unit values. The transform scales them by + # (baseMVA_orig / baseMVA), but the inverse multiplies by baseMVA + # (not baseMVA / baseMVA_orig), yielding physical SI units + # (original * baseMVA_orig). This is intentional for the physics layers. + data.x_dict["bus"][:, PD_H] *= self.baseMVA + data.x_dict["bus"][:, QD_H] *= self.baseMVA + data.x_dict["bus"][:, QG_H] *= self.baseMVA + data.x_dict["bus"][:, MIN_QG_H] *= self.baseMVA + data.x_dict["bus"][:, MAX_QG_H] *= self.baseMVA + data.x_dict["bus"][:, GS] *= ( + self.baseMVA + ) # -> physical units (not original p.u.) + data.x_dict["bus"][:, BS] *= ( + self.baseMVA + ) # -> physical units (not original p.u.) + data.x_dict["bus"][:, VN_KV] *= self.vn_kv_max + + # -------- BUS LABEL INVERSE NORMALIZATION -------- + data.y_dict["bus"][:, PD_H] *= self.baseMVA + data.y_dict["bus"][:, QD_H] *= self.baseMVA + data.y_dict["bus"][:, QG_H] *= self.baseMVA + + # -------- GENERATOR INPUT INVERSE NORMALIZATION -------- + data.x_dict["gen"][:, PG_H] *= self.baseMVA + data.x_dict["gen"][:, MIN_PG] *= self.baseMVA + data.x_dict["gen"][:, MAX_PG] *= self.baseMVA + data.x_dict["gen"][:, C0_H] = torch.sign(data.x_dict["gen"][:, C0_H]) * ( + torch.exp(torch.abs(data.x_dict["gen"][:, C0_H])) - 1 + ) + data.x_dict["gen"][:, C1_H] = torch.sign(data.x_dict["gen"][:, C1_H]) * ( + torch.exp(torch.abs(data.x_dict["gen"][:, C1_H])) - 1 + ) + data.x_dict["gen"][:, C2_H] = torch.sign(data.x_dict["gen"][:, C2_H]) * ( + torch.exp(torch.abs(data.x_dict["gen"][:, C2_H])) - 1 + ) + + # -------- GENERATOR LABEL INVERSE NORMALIZATION -------- + data.y_dict["gen"][:, PG_H] *= self.baseMVA + + # -------- EDGE INPUT INVERSE NORMALIZATION -------- + data.edge_attr_dict[("bus", "connects", "bus")][:, P_E] *= self.baseMVA + data.edge_attr_dict[("bus", "connects", "bus")][:, Q_E] *= self.baseMVA + data.edge_attr_dict[("bus", "connects", "bus")][:, YFF_TT_R : YFT_TF_I + 1] *= ( + self.baseMVA # -> physical units (not original p.u.), see WARNING above + ) + + data.edge_attr_dict[("bus", "connects", "bus")][:, ANG_MIN] *= 180.0 / torch.pi + data.edge_attr_dict[("bus", "connects", "bus")][:, ANG_MAX] *= 180.0 / torch.pi + + data.edge_attr_dict[("bus", "connects", "bus")][:, RATE_A] *= self.baseMVA + data.is_normalized = False + + def inverse_output(self, output, batch): + bus_output = output["bus"] + gen_output = output["gen"] + bus_output[:, PG_OUT] *= self.baseMVA + bus_output[:, QG_OUT] *= self.baseMVA + gen_output[:, PG_OUT_GEN] *= self.baseMVA def get_stats(self) -> dict: return { - "baseMVA": self.baseMVA, - "baseMVA_orig": self.baseMVA_orig, + "baseMVA_orig": torch.tensor(self.baseMVA_orig, dtype=torch.float), + "baseMVA": torch.tensor(self.baseMVA, dtype=torch.float), + "vn_kv_max": torch.tensor(self.vn_kv_max, dtype=torch.float), } -@NORMALIZERS_REGISTRY.register("identity") -class IdentityNormalizer(Normalizer): +@NORMALIZERS_REGISTRY.register("HeteroDataPerSampleMVANormalizer") +class HeteroDataPerSampleMVANormalizer(Normalizer): """ - No normalization: returns data unchanged. - - Args: - node_data: Whether data is node-level or edge-level - args (NestedNamespace): Parameters + Per-sample MVA normalizer: each scenario (sample) gets its own baseMVA and vn_kv_max, + computed as the 95th percentile of Pd, Qd, Pg, Qg for that scenario. Same per-unit + formulas as HeteroDataMVANormalizer, but applied with per-scenario scales so that + batched data with different scenarios is normalized correctly. """ - def __init__(self, node_data: bool, args): - pass + fit_strategy = "fit_on_dataset" - def fit(self, data: torch.Tensor) -> dict: - return {} + def __init__(self, args): + self.baseMVA_orig = getattr( + args.data, + "baseMVA", + 100, + ) # casefile base MVA (for GS/BS scaling) + self._baseMVA_lookup = None # tensor indexed by scenario_id + self._vn_kv_max_lookup = None + self._scenario_ids = None # scenario ids that were fitted (for save/load) - def fit_from_dict(self, params: dict): + def to(self, device): pass - def transform(self, data: torch.Tensor) -> torch.Tensor: - return data + def fit(self, data_path: str, scenario_ids: List[int]) -> dict: + """ + Compute per-scenario baseMVA and vn_kv_max by loading raw parquet data from disk. + For each scenario: concat Pd, Qd, Pg, Qg; take 95th percentile of non-zero as baseMVA; + max vn_kv as vn_kv_max. Build lookup tensors indexed by scenario_id (no dicts). - def inverse_transform(self, normalized_data: torch.Tensor) -> torch.Tensor: - return normalized_data + Args: + data_path: Path to the raw data directory containing bus_data.parquet and gen_data.parquet. + scenario_ids: List of scenario IDs to use for fitting. + + Returns: + Dictionary of computed parameters. + """ + bus_data = pd.read_parquet(os.path.join(data_path, "bus_data.parquet")) + gen_data = pd.read_parquet(os.path.join(data_path, "gen_data.parquet")) + + bus_data = bus_data[bus_data["scenario"].isin(scenario_ids)] + gen_data = gen_data[gen_data["scenario"].isin(scenario_ids)] + + baseMVA = [] + vn_kv_max = [] + scenarios = [] + + bus_groups = bus_data.groupby("scenario") + gen_groups = gen_data.groupby("scenario") + + for scenario in sorted(bus_groups.groups.keys()): + bus_group = bus_groups.get_group(scenario) + gen_group = gen_groups.get_group(scenario) + pd_values = bus_group["Pd"] + qd_values = bus_group["Qd"] + qg_values = bus_group["Qg"] + pg_values = gen_group["p_mw"] + + all_values = pd.concat([pd_values, qd_values, pg_values, qg_values]) + non_zero_values = all_values[all_values != 0] + baseMVA.append(np.percentile(non_zero_values, 95)) + vn_kv_max.append(float(bus_group["vn_kv"].max())) + scenarios.append(scenario) + + scenarios_t = torch.tensor(scenarios, dtype=torch.long) + baseMVA_t = torch.tensor(baseMVA, dtype=torch.float) + vn_kv_max_t = torch.tensor(vn_kv_max, dtype=torch.float) + max_sid = int(scenarios_t.max().item()) + self._baseMVA_lookup = torch.zeros(max_sid + 1, dtype=torch.float) + self._vn_kv_max_lookup = torch.zeros(max_sid + 1, dtype=torch.float) + self._baseMVA_lookup[scenarios_t] = baseMVA_t + self._vn_kv_max_lookup[scenarios_t] = vn_kv_max_t + self._scenario_ids = scenarios_t + + return { + "baseMVA_orig": torch.tensor(self.baseMVA_orig, dtype=torch.float), + "scenarios": scenarios_t, + "baseMVA": baseMVA_t, + "vn_kv_max": vn_kv_max_t, + } + + def fit_from_dict(self, params: dict): + """Restore lookups and baseMVA_orig from saved params (scenarios, baseMVA, vn_kv_max tensors).""" + scenarios = params.get("scenarios") + baseMVA = params.get("baseMVA") + vn_kv_max = params.get("vn_kv_max") + max_sid = int(scenarios.max().item()) + self._baseMVA_lookup = torch.zeros(max_sid + 1, dtype=torch.float) + self._vn_kv_max_lookup = torch.zeros(max_sid + 1, dtype=torch.float) + self._baseMVA_lookup[scenarios] = baseMVA + self._vn_kv_max_lookup[scenarios] = vn_kv_max + self._scenario_ids = scenarios + bmo = params.get("baseMVA_orig") + self.baseMVA_orig = bmo.item() if hasattr(bmo, "item") else bmo + + def _per_node_mva(self, data: HeteroData): + """ + Get per-node and per-edge baseMVA/vn_kv_max from data.scenario_id (single sample or batch). + Returns (b, b_orig, vn, g, e_b, e_b_orig) with shapes (n, 1) for bus, gen, edge so they broadcast. + Fully GPU/CPU safe. + """ + if self._baseMVA_lookup is None: + raise ValueError("Normalizer not fitted or lookups not built") + + device = data.x_dict["bus"].device + dtype = data.x_dict["bus"].dtype + + bus_batch = getattr(data["bus"], "batch", None) + gen_batch = getattr(data["gen"], "batch", None) + n_bus = data.x_dict["bus"].size(0) + n_gen = data.x_dict["gen"].size(0) + edge_index = data["bus", "connects", "bus"].edge_index + n_edge = edge_index.size(1) + + scenario_id = data["scenario_id"] + + # Scenario id per node/edge + if bus_batch is not None: + sid_bus = scenario_id[bus_batch] + sid_gen = scenario_id[gen_batch] + sid_edge = scenario_id[bus_batch[edge_index[0]]] + else: + sid = scenario_id.item() + sid_bus = torch.full((n_bus,), sid, device=device, dtype=torch.long) + sid_gen = torch.full((n_gen,), sid, device=device, dtype=torch.long) + sid_edge = torch.full((n_edge,), sid, device=device, dtype=torch.long) + + # Move lookups to correct device/dtype before indexing + baseMVA_lookup = self._baseMVA_lookup.to(device=device, dtype=dtype) + vn_kv_max_lookup = self._vn_kv_max_lookup.to(device=device, dtype=dtype) + + b = baseMVA_lookup[sid_bus] + vn = vn_kv_max_lookup[sid_bus] + g = baseMVA_lookup[sid_gen] + e_b = baseMVA_lookup[sid_edge] + + b_orig_val = ( + self.baseMVA_orig + if isinstance(self.baseMVA_orig, (int, float)) + else self.baseMVA_orig.item() + ) + b_orig = torch.full_like(b, b_orig_val) + e_b_orig = torch.full_like(e_b, b_orig_val) + + return b, b_orig, vn, g, e_b, e_b_orig + + def transform(self, data: HeteroData): + """Apply per-unit normalization using per-scenario baseMVA/vn_kv_max (same formulas as base MVA normalizer).""" + if self._baseMVA_lookup is None: + raise ValueError("Normalizer not fitted or lookups not loaded") + b, b_orig, vn, g, e_b, e_b_orig = self._per_node_mva(data) + # --- Bus input normalization --- + data.x_dict["bus"][:, PD_H] /= b + data.x_dict["bus"][:, QD_H] /= b + data.x_dict["bus"][:, QG_H] /= b + data.x_dict["bus"][:, MIN_QG_H] /= b + data.x_dict["bus"][:, MAX_QG_H] /= b + data.x_dict["bus"][:, VA_H] *= torch.pi / 180.0 + data.x_dict["bus"][:, GS] *= b_orig / b + data.x_dict["bus"][:, BS] *= b_orig / b + data.x_dict["bus"][:, VN_KV] /= vn + + # --- Bus label normalization --- + data.y_dict["bus"][:, PD_H] /= b + data.y_dict["bus"][:, QD_H] /= b + data.y_dict["bus"][:, QG_H] /= b + data.y_dict["bus"][:, VA_H] *= torch.pi / 180.0 + + # --- Generator input normalization --- + data.x_dict["gen"][:, PG_H] /= g + data.x_dict["gen"][:, MIN_PG] /= g + data.x_dict["gen"][:, MAX_PG] /= g + data.x_dict["gen"][:, C0_H] = torch.sign( + data.x_dict["gen"][:, C0_H], + ) * torch.log1p(torch.abs(data.x_dict["gen"][:, C0_H])) + data.x_dict["gen"][:, C1_H] = torch.sign( + data.x_dict["gen"][:, C1_H], + ) * torch.log1p(torch.abs(data.x_dict["gen"][:, C1_H])) + data.x_dict["gen"][:, C2_H] = torch.sign( + data.x_dict["gen"][:, C2_H], + ) * torch.log1p(torch.abs(data.x_dict["gen"][:, C2_H])) + + # --- Generator label normalization --- + data.y_dict["gen"][:, PG_H] /= g + + # --- Edge input normalization --- + data.edge_attr_dict[("bus", "connects", "bus")][:, P_E] /= e_b + data.edge_attr_dict[("bus", "connects", "bus")][:, Q_E] /= e_b + data.edge_attr_dict[("bus", "connects", "bus")][:, YFF_TT_R : YFT_TF_I + 1] *= ( + e_b_orig.unsqueeze(1) / e_b.unsqueeze(1) + ) + data.edge_attr_dict[("bus", "connects", "bus")][:, ANG_MIN] *= torch.pi / 180.0 + data.edge_attr_dict[("bus", "connects", "bus")][:, ANG_MAX] *= torch.pi / 180.0 + data.edge_attr_dict[("bus", "connects", "bus")][:, RATE_A] /= e_b + data.is_normalized = True + + def inverse_transform(self, data: HeteroData): + """Undo per-unit normalization (multiply by baseMVA, rad->deg, inverse log1p for cost coeffs).""" + if self._baseMVA_lookup is None: + raise ValueError("Normalizer not fitted or lookups not loaded") + if not data.is_normalized.all(): + raise ValueError("Attempting to denormalize data which is not normalized") + b, _, vn, g, e_b, _ = self._per_node_mva( + data, + ) # b_orig and e_b_orig are not used + + # -------- BUS INPUT INVERSE NORMALIZATION -------- + # NOTE: VA (bus input & label) are intentionally kept in + # radians after inverse_transform -- the physics layers (ComputeBranchFlow, + # ComputeNodeResiduals, etc.) expect radians. + # + # WARNING: GS, BS, and edge admittances (Y) are NOT restored to their + # original casefile per-unit values. The transform scales them by + # (b_orig / b), but the inverse multiplies by b (not b / b_orig), + # yielding physical SI units (original * b_orig). This is intentional + # for the physics layers. + data.x_dict["bus"][:, PD_H] *= b + data.x_dict["bus"][:, QD_H] *= b + data.x_dict["bus"][:, QG_H] *= b + data.x_dict["bus"][:, MIN_QG_H] *= b + data.x_dict["bus"][:, MAX_QG_H] *= b + data.x_dict["bus"][:, GS] *= b # -> physical units (not original p.u.) + data.x_dict["bus"][:, BS] *= b # -> physical units (not original p.u.) + data.x_dict["bus"][:, VN_KV] *= vn + + # -------- BUS LABEL INVERSE NORMALIZATION -------- + data.y_dict["bus"][:, PD_H] *= b + data.y_dict["bus"][:, QD_H] *= b + data.y_dict["bus"][:, QG_H] *= b + + # -------- GENERATOR INPUT INVERSE NORMALIZATION -------- + data.x_dict["gen"][:, PG_H] *= g + data.x_dict["gen"][:, MIN_PG] *= g + data.x_dict["gen"][:, MAX_PG] *= g + data.x_dict["gen"][:, C0_H] = torch.sign(data.x_dict["gen"][:, C0_H]) * ( + torch.exp(torch.abs(data.x_dict["gen"][:, C0_H])) - 1 + ) + data.x_dict["gen"][:, C1_H] = torch.sign(data.x_dict["gen"][:, C1_H]) * ( + torch.exp(torch.abs(data.x_dict["gen"][:, C1_H])) - 1 + ) + data.x_dict["gen"][:, C2_H] = torch.sign(data.x_dict["gen"][:, C2_H]) * ( + torch.exp(torch.abs(data.x_dict["gen"][:, C2_H])) - 1 + ) + + # -------- GENERATOR LABEL INVERSE NORMALIZATION -------- + data.y_dict["gen"][:, PG_H] *= g + + # -------- EDGE INPUT INVERSE NORMALIZATION -------- + data.edge_attr_dict[("bus", "connects", "bus")][:, P_E] *= e_b + data.edge_attr_dict[("bus", "connects", "bus")][:, Q_E] *= e_b + data.edge_attr_dict[("bus", "connects", "bus")][:, YFF_TT_R : YFT_TF_I + 1] *= ( + e_b.unsqueeze(1) + ) # -> physical units (not original p.u.), see WARNING above + data.edge_attr_dict[("bus", "connects", "bus")][:, ANG_MIN] *= 180.0 / torch.pi + data.edge_attr_dict[("bus", "connects", "bus")][:, ANG_MAX] *= 180.0 / torch.pi + + data.edge_attr_dict[("bus", "connects", "bus")][:, RATE_A] *= e_b + data.is_normalized = False + + def inverse_output(self, output, batch): + """ + Denormalize model output (bus PG/QG, gen PG) using per-sample baseMVA from lookups. + Fully GPU/CPU safe. + """ + bus_output = output["bus"] + gen_output = output["gen"] + + bus_batch = getattr(batch["bus"], "batch", None) + + # Move lookup tensor to correct device + baseMVA_lookup = self._baseMVA_lookup.to( + device=bus_output.device, + dtype=bus_output.dtype, + ) + + if bus_batch is not None: + # Batched: scenario_id per node via batch index; lookup base MVA per node + sid_bus = batch["scenario_id"][bus_batch] + sid_gen = batch["scenario_id"][batch["gen"].batch] + b_bus = baseMVA_lookup[sid_bus] + b_gen = baseMVA_lookup[sid_gen] + else: + # Single graph: one scenario_id; use its base MVA + sid = batch["scenario_id"].item() + b_bus = baseMVA_lookup[sid] + b_gen = baseMVA_lookup[sid] + + # Scale per-unit power back to MW/Mvar + bus_output[:, PG_OUT] *= b_bus + bus_output[:, QG_OUT] *= b_bus + gen_output[:, PG_OUT_GEN] *= b_gen def get_stats(self) -> dict: - return {"note": "No normalization applied."} + """Return dict of stats for saving (baseMVA_orig, scenarios, baseMVA, vn_kv_max tensors).""" + return { + "baseMVA_orig": torch.tensor(self.baseMVA_orig, dtype=torch.float), + "scenarios": self._scenario_ids, + "baseMVA": self._baseMVA_lookup[self._scenario_ids], + "vn_kv_max": self._vn_kv_max_lookup[self._scenario_ids], + } diff --git a/gridfm_graphkit/datasets/powergrid_datamodule.py b/gridfm_graphkit/datasets/powergrid_datamodule.py deleted file mode 100644 index c18c360..0000000 --- a/gridfm_graphkit/datasets/powergrid_datamodule.py +++ /dev/null @@ -1,207 +0,0 @@ -import torch -from torch_geometric.loader import DataLoader -from torch.utils.data import ConcatDataset -from torch.utils.data import Subset -import torch.distributed as dist -from gridfm_graphkit.io.param_handler import ( - NestedNamespace, - load_normalizer, - get_transform, -) -from gridfm_graphkit.datasets.utils import split_dataset -from gridfm_graphkit.datasets.powergrid_dataset import GridDatasetDisk -import numpy as np -import random -import warnings -import os -import lightning as L - - -class LitGridDataModule(L.LightningDataModule): - """ - PyTorch Lightning DataModule for power grid datasets. - - This datamodule handles loading, preprocessing, splitting, and batching - of power grid graph datasets (`GridDatasetDisk`) for training, validation, - testing, and prediction. It ensures reproducibility through fixed seeds. - - Args: - args (NestedNamespace): Experiment configuration. - data_dir (str, optional): Root directory for datasets. Defaults to "./data". - - Attributes: - batch_size (int): Batch size for all dataloaders. From ``args.training.batch_size`` - node_normalizers (list): List of node feature normalizers, one per dataset. - edge_normalizers (list): List of edge feature normalizers, one per dataset. - datasets (list): Original datasets for each network. - train_datasets (list): Train splits for each network. - val_datasets (list): Validation splits for each network. - test_datasets (list): Test splits for each network. - train_dataset_multi (ConcatDataset): Concatenated train datasets for multi-network training. - val_dataset_multi (ConcatDataset): Concatenated validation datasets for multi-network validation. - _is_setup_done (bool): Tracks whether `setup` has been executed to avoid repeated processing. - - Methods: - setup(stage): - Load and preprocess datasets, split into train/val/test, and store normalizers. - Handles distributed preprocessing safely. - train_dataloader(): - Returns a DataLoader for concatenated training datasets. - val_dataloader(): - Returns a DataLoader for concatenated validation datasets. - test_dataloader(): - Returns a list of DataLoaders, one per test dataset. - predict_dataloader(): - Returns a list of DataLoaders, one per test dataset for prediction. - - Notes: - - Preprocessing is only performed on rank 0 in distributed settings. - - Subsets and splits are deterministic based on the provided random seed. - - Normalizers are loaded for each network independently. - - Test and predict dataloaders are returned as lists, one per dataset. - - Example: - ```python - from gridfm_graphkit.datasets.powergrid_datamodule import LitGridDataModule - from gridfm_graphkit.io.param_handler import NestedNamespace - import yaml - - with open("config/config.yaml") as f: - base_config = yaml.safe_load(f) - args = NestedNamespace(**base_config) - - datamodule = LitGridDataModule(args, data_dir="./data") - - datamodule.setup("fit") - train_loader = datamodule.train_dataloader() - ``` - """ - - def __init__(self, args: NestedNamespace, data_dir: str = "./data"): - super().__init__() - self.data_dir = data_dir - self.batch_size = int(args.training.batch_size) - self.args = args - self.node_normalizers = [] - self.edge_normalizers = [] - self.datasets = [] - self.train_datasets = [] - self.val_datasets = [] - self.test_datasets = [] - self._is_setup_done = False - - def setup(self, stage: str): - if self._is_setup_done: - print(f"Setup already done for stage={stage}, skipping...") - return - - for i, network in enumerate(self.args.data.networks): - node_normalizer, edge_normalizer = load_normalizer(args=self.args) - self.node_normalizers.append(node_normalizer) - self.edge_normalizers.append(edge_normalizer) - - # Create torch dataset and split - data_path_network = os.path.join(self.data_dir, network) - - # Run preprocessing only on rank 0 - if dist.is_available() and dist.is_initialized() and dist.get_rank() == 0: - print(f"Pre-processing of {network} dataset on rank 0") - _ = GridDatasetDisk( # just to trigger processing - root=data_path_network, - norm_method=self.args.data.normalization, - node_normalizer=node_normalizer, - edge_normalizer=edge_normalizer, - pe_dim=self.args.model.pe_dim, - mask_dim=self.args.data.mask_dim, - transform=get_transform(args=self.args), - ) - - # All ranks wait here until processing is done - if torch.distributed.is_available() and torch.distributed.is_initialized(): - torch.distributed.barrier() - - dataset = GridDatasetDisk( - root=data_path_network, - norm_method=self.args.data.normalization, - node_normalizer=node_normalizer, - edge_normalizer=edge_normalizer, - pe_dim=self.args.model.pe_dim, - mask_dim=self.args.data.mask_dim, - transform=get_transform(args=self.args), - ) - self.datasets.append(dataset) - - num_scenarios = self.args.data.scenarios[i] - if num_scenarios > len(dataset): - warnings.warn( - f"Requested number of scenarios ({num_scenarios}) exceeds dataset size ({len(dataset)}). " - "Using the full dataset instead.", - ) - num_scenarios = len(dataset) - - # Create a subset - all_indices = list(range(len(dataset))) - # Random seed set before every shuffle for reproducibility in case the power grid datasets are analyzed in a different order - random.seed(self.args.seed) - random.shuffle(all_indices) - subset_indices = all_indices[:num_scenarios] - dataset = Subset(dataset, subset_indices) - - # Random seed set before every split, same as above - np.random.seed(self.args.seed) - train_dataset, val_dataset, test_dataset = split_dataset( - dataset, - self.data_dir, - self.args.data.val_ratio, - self.args.data.test_ratio, - ) - - self.train_datasets.append(train_dataset) - self.val_datasets.append(val_dataset) - self.test_datasets.append(test_dataset) - - self.train_dataset_multi = ConcatDataset(self.train_datasets) - self.val_dataset_multi = ConcatDataset(self.val_datasets) - self._is_setup_done = True - - def train_dataloader(self): - return DataLoader( - self.train_dataset_multi, - batch_size=self.batch_size, - shuffle=True, - num_workers=self.args.data.workers, - pin_memory=True, - ) - - def val_dataloader(self): - return DataLoader( - self.val_dataset_multi, - batch_size=self.batch_size, - shuffle=False, - num_workers=self.args.data.workers, - pin_memory=True, - ) - - def test_dataloader(self): - return [ - DataLoader( - i, - batch_size=self.batch_size, - shuffle=False, - num_workers=self.args.data.workers, - pin_memory=True, - ) - for i in self.test_datasets - ] - - def predict_dataloader(self): - return [ - DataLoader( - i, - batch_size=self.batch_size, - shuffle=False, - num_workers=self.args.data.workers, - pin_memory=True, - ) - for i in self.test_datasets - ] diff --git a/gridfm_graphkit/datasets/powergrid_dataset.py b/gridfm_graphkit/datasets/powergrid_dataset.py deleted file mode 100644 index 026d9a8..0000000 --- a/gridfm_graphkit/datasets/powergrid_dataset.py +++ /dev/null @@ -1,227 +0,0 @@ -from gridfm_graphkit.datasets.normalizers import Normalizer, BaseMVANormalizer -from gridfm_graphkit.datasets.transforms import ( - AddEdgeWeights, - AddNormalizedRandomWalkPE, -) - -import os.path as osp -import os -import torch -from torch_geometric.data import Data, Dataset -import pandas as pd -from tqdm import tqdm -from typing import Optional, Callable - - -class GridDatasetDisk(Dataset): - """ - A PyTorch Geometric `Dataset` for power grid data stored on disk. - This dataset reads node and edge CSV files, applies normalization, - and saves each graph separately on disk as a processed file. - Data is loaded from disk lazily on demand. - - Args: - root (str): Root directory where the dataset is stored. - norm_method (str): Identifier for normalization method (e.g., "minmax", "standard"). - node_normalizer (Normalizer): Normalizer used for node features. - edge_normalizer (Normalizer): Normalizer used for edge features. - pe_dim (int): Length of the random walk used for positional encoding. - mask_dim (int, optional): Number of features per-node that could be masked. - transform (callable, optional): Transformation applied at runtime. - pre_transform (callable, optional): Transformation applied before saving to disk. - pre_filter (callable, optional): Filter to determine which graphs to keep. - """ - - def __init__( - self, - root: str, - norm_method: str, - node_normalizer: Normalizer, - edge_normalizer: Normalizer, - pe_dim: int, - mask_dim: int = 6, - transform: Optional[Callable] = None, - pre_transform: Optional[Callable] = None, - pre_filter: Optional[Callable] = None, - ): - self.norm_method = norm_method - self.node_normalizer = node_normalizer - self.edge_normalizer = edge_normalizer - self.pe_dim = pe_dim - self.mask_dim = mask_dim - self.length = None - - super().__init__(root, transform, pre_transform, pre_filter) - - # Load normalization stats if available - node_stats_path = osp.join( - self.processed_dir, - f"node_stats_{self.norm_method}.pt", - ) - edge_stats_path = osp.join( - self.processed_dir, - f"edge_stats_{self.norm_method}.pt", - ) - if osp.exists(node_stats_path) and osp.exists(edge_stats_path): - self.node_stats = torch.load(node_stats_path, weights_only=False) - self.edge_stats = torch.load(edge_stats_path, weights_only=False) - self.node_normalizer.fit_from_dict(self.node_stats) - self.edge_normalizer.fit_from_dict(self.edge_stats) - - @property - def raw_file_names(self): - return ["pf_node.csv", "pf_edge.csv"] - - @property - def processed_done_file(self): - return f"processed_{self.norm_method}_{self.mask_dim}_{self.pe_dim}.done" - - @property - def processed_file_names(self): - return [self.processed_done_file] - - def download(self): - pass - - def process(self): - node_df = pd.read_csv(osp.join(self.raw_dir, "pf_node.csv")) - edge_df = pd.read_csv(osp.join(self.raw_dir, "pf_edge.csv")) - - # Check the unique scenarios available - scenarios = node_df["scenario"].unique() - # Ensure node and edge data match - if not (scenarios == edge_df["scenario"].unique()).all(): - raise ValueError("Mismatch between node and edge scenario values.") - - # normalize node attributes - cols_to_normalize = ["Pd", "Qd", "Pg", "Qg", "Vm", "Va"] - to_normalize = torch.tensor( - node_df[cols_to_normalize].values, - dtype=torch.float, - ) - self.node_stats = self.node_normalizer.fit(to_normalize) - node_df[cols_to_normalize] = self.node_normalizer.transform( - to_normalize, - ).numpy() - - # normalize edge attributes - cols_to_normalize = ["G", "B"] - to_normalize = torch.tensor( - edge_df[cols_to_normalize].values, - dtype=torch.float, - ) - if isinstance(self.node_normalizer, BaseMVANormalizer): - self.edge_stats = self.edge_normalizer.fit( - to_normalize, - self.node_normalizer.baseMVA, - ) - else: - self.edge_stats = self.edge_normalizer.fit(to_normalize) - edge_df[cols_to_normalize] = self.edge_normalizer.transform( - to_normalize, - ).numpy() - - # save stats - node_stats_path = osp.join( - self.processed_dir, - f"node_stats_{self.norm_method}.pt", - ) - edge_stats_path = osp.join( - self.processed_dir, - f"edge_stats_{self.norm_method}.pt", - ) - torch.save(self.node_stats, node_stats_path) - torch.save(self.edge_stats, edge_stats_path) - - # Create groupby objects for scenarios - node_groups = node_df.groupby("scenario") - edge_groups = edge_df.groupby("scenario") - - for scenario_idx in tqdm(scenarios): - # NODE DATA - node_data = node_groups.get_group(scenario_idx) - x = torch.tensor( - node_data[ - ["Pd", "Qd", "Pg", "Qg", "Vm", "Va", "PQ", "PV", "REF"] - ].values, - dtype=torch.float, - ) - y = x[:, : self.mask_dim] - - # EDGE DATA - edge_data = edge_groups.get_group(scenario_idx) - edge_attr = torch.tensor(edge_data[["G", "B"]].values, dtype=torch.float) - edge_index = torch.tensor( - edge_data[["index1", "index2"]].values.T, - dtype=torch.long, - ) - - # Create the Data object - graph_data = Data( - x=x, - edge_index=edge_index, - edge_attr=edge_attr, - y=y, - scenario_id=scenario_idx, - ) - pe_pre_transform = AddEdgeWeights() - graph_data = pe_pre_transform(graph_data) - pe_transform = AddNormalizedRandomWalkPE( - walk_length=self.pe_dim, - attr_name="pe", - ) - graph_data = pe_transform(graph_data) - torch.save( - graph_data, - osp.join( - self.processed_dir, - f"data_{self.norm_method}_{self.mask_dim}_{self.pe_dim}_index_{scenario_idx}.pt", - ), - ) - with open(osp.join(self.processed_dir, self.processed_done_file), "w") as f: - f.write("done") - - def len(self): - if self.length is None: - files = [ - f - for f in os.listdir(self.processed_dir) - if f.startswith( - f"data_{self.norm_method}_{self.mask_dim}_{self.pe_dim}_index_", - ) - and f.endswith(".pt") - ] - self.length = len(files) - return self.length - - def get(self, idx): - file_name = osp.join( - self.processed_dir, - f"data_{self.norm_method}_{self.mask_dim}_{self.pe_dim}_index_{idx}.pt", - ) - if not osp.exists(file_name): - raise IndexError(f"Data file {file_name} does not exist.") - data = torch.load(file_name, weights_only=False) - if self.transform: - data = self.transform(data) - return data - - def change_transform(self, new_transform): - """ - Temporarily switch to a new transform function, used when evaluating different tasks. - - Args: - new_transform (Callable): The new transform to use. - """ - self.original_transform = self.transform - self.transform = new_transform - - def reset_transform(self): - """ - Reverts the transform to the original one set during initialization, usually called after the evaluation step. - """ - if self.original_transform is None: - raise ValueError( - "The original transform is None or the function change_transform needs to be called before", - ) - self.transform = self.original_transform diff --git a/gridfm_graphkit/datasets/powergrid_hetero_dataset.py b/gridfm_graphkit/datasets/powergrid_hetero_dataset.py new file mode 100644 index 0000000..32d3e5e --- /dev/null +++ b/gridfm_graphkit/datasets/powergrid_hetero_dataset.py @@ -0,0 +1,253 @@ +from gridfm_graphkit.datasets.normalizers import Normalizer + +import os.path as osp +import os +import torch +from torch_geometric.data import Dataset +import pandas as pd +from tqdm import tqdm +from typing import Optional, Callable +from torch_geometric.data import HeteroData +from gridfm_graphkit.datasets.globals import VA_H, PG_H + + +class HeteroGridDatasetDisk(Dataset): + """ + A PyTorch Geometric `Dataset` for power grid data stored on disk. + This dataset reads node and edge CSV files and saves each graph + separately on disk as a processed file. Data is loaded from disk + lazily on demand. Normalization is applied at access time via + the data_normalizer (which must be fitted externally before iteration). + + Args: + root (str): Root directory where the dataset is stored. + data_normalizer (Normalizer): Normalizer used for features (fitted externally by the datamodule). + transform (callable, optional): Transformation applied at runtime. + pre_transform (callable, optional): Transformation applied before saving to disk. + pre_filter (callable, optional): Filter to determine which graphs to keep. + """ + + def __init__( + self, + root: str, + data_normalizer: Normalizer, + transform: Optional[Callable] = None, + pre_transform: Optional[Callable] = None, + pre_filter: Optional[Callable] = None, + ): + self.data_normalizer = data_normalizer + self.length = None + + super().__init__(root, transform, pre_transform, pre_filter) + + load_scenarios_path = osp.join(self.processed_dir, "load_scenarios.pt") + if osp.exists(load_scenarios_path): + self.load_scenarios = torch.load(load_scenarios_path, weights_only=True) + + @property + def raw_file_names(self): + return ["bus_data.parquet", "gen_data.parquet", "branch_data.parquet"] + + @property + def processed_done_file(self): + return "processed_raw_files.done" + + @property + def processed_file_names(self): + return [ + "load_scenarios.pt", + self.processed_done_file, + ] + + def download(self): + pass + + def process(self): + print("LOADING DATA") + bus_data = pd.read_parquet(osp.join(self.raw_dir, "bus_data.parquet")) + gen_data = pd.read_parquet(osp.join(self.raw_dir, "gen_data.parquet")) + branch_data = pd.read_parquet(osp.join(self.raw_dir, "branch_data.parquet")) + + assert ( + bus_data["scenario"].min() == 0 + and bus_data["scenario"].max() == len(bus_data["scenario"].unique()) - 1 + ) + + load_scenarios = torch.tensor( + bus_data.groupby("scenario", sort=True)["load_scenario_idx"].first().values, + ) + torch.save(load_scenarios, osp.join(self.processed_dir, "load_scenarios.pt")) + + agg_gen = ( + gen_data.groupby(["scenario", "bus"])[["min_q_mvar", "max_q_mvar"]] + .sum() + .reset_index() + ) + bus_data = bus_data.merge(agg_gen, on=["scenario", "bus"], how="left").fillna(0) + + done_path = osp.join(self.processed_dir, self.processed_done_file) + if osp.exists(done_path): + print("Processed files already exist. Skipping processing.") + return + + bus_features = [ + "Pd", + "Qd", + "Qg", + "Vm", + "Va", + "PQ", + "PV", + "REF", + "min_vm_pu", + "max_vm_pu", + "min_q_mvar", + "max_q_mvar", + "GS", + "BS", + "vn_kv", + ] + + gen_features = [ + "p_mw", + "min_p_mw", + "max_p_mw", + "cp0_eur", + "cp1_eur_per_mw", + "cp2_eur_per_mw2", + "in_service", + ] + + common_branch_features = ["tap", "ang_min", "ang_max", "rate_a", "br_status"] + forward_branch_features = [ + "pf", + "qf", + "Yff_r", + "Yff_i", + "Yft_r", + "Yft_i", + ] + common_branch_features + reverse_branch_features = [ + "pt", + "qt", + "Ytt_r", + "Ytt_i", + "Ytf_r", + "Ytf_i", + ] + common_branch_features + + # Group by scenario + bus_groups = bus_data.groupby("scenario") + gen_groups = gen_data.groupby("scenario") + branch_groups = branch_data.groupby("scenario") + + # Process each scenario + for scenario in tqdm( + bus_data["scenario"].unique(), + desc="Processing scenarios", + ): + if osp.exists(osp.join(self.processed_dir, f"data_index_{scenario}.pt")): + continue + if ( + scenario not in gen_groups.groups + or scenario not in branch_groups.groups + ): + raise ValueError + + data = HeteroData() + + # Bus nodes + bus_df = bus_groups.get_group(scenario) + data["bus"].x = torch.tensor(bus_df[bus_features].values, dtype=torch.float) + + # Generator nodes + gen_df = gen_groups.get_group(scenario).reset_index() + data["gen"].x = torch.tensor(gen_df[gen_features].values, dtype=torch.float) + gen_df["gen_index"] = gen_df.index # Use actual index as generator ID + + data["bus"].y = data["bus"].x[:, : (VA_H + 1)].clone() + data["gen"].y = data["gen"].x[:, : (PG_H + 1)].clone() + + # Bus-Bus edges + branch_df = branch_groups.get_group(scenario) + + forward_edges = torch.tensor( + branch_df[["from_bus", "to_bus"]].values.T, + dtype=torch.long, + ) + forward_edge_attr = torch.tensor( + branch_df[forward_branch_features].values, + dtype=torch.float, + ) + + reverse_edges = torch.tensor( + branch_df[["to_bus", "from_bus"]].values.T, + dtype=torch.long, + ) + reverse_edge_attr = torch.tensor( + branch_df[reverse_branch_features].values, + dtype=torch.float, + ) + + edge_index = torch.cat([forward_edges, reverse_edges], dim=1) + edge_attr = torch.cat([forward_edge_attr, reverse_edge_attr], dim=0) + + forward_targets = torch.tensor( + branch_df[["pf", "qf"]].values, + dtype=torch.float, + ) + reverse_targets = torch.tensor( + branch_df[["pt", "qt"]].values, + dtype=torch.float, + ) + edge_y = torch.cat([forward_targets, reverse_targets], dim=0) + + data["bus", "connects", "bus"].edge_index = edge_index + data["bus", "connects", "bus"].edge_attr = edge_attr + data["bus", "connects", "bus"].y = edge_y + + # Gen-Bus and Bus-Gen edges + data["gen", "connected_to", "bus"].edge_index = torch.tensor( + gen_df[["gen_index", "bus"]].values.T, + dtype=torch.long, + ) + data["bus", "connected_to", "gen"].edge_index = torch.tensor( + gen_df[["bus", "gen_index"]].values.T, + dtype=torch.long, + ) + + data["scenario_id"] = torch.tensor([scenario], dtype=torch.long) + + # Save graph + torch.save( + data.to_dict(), + osp.join(self.processed_dir, f"data_index_{scenario}.pt"), + ) + + with open(osp.join(self.processed_dir, self.processed_done_file), "w") as f: + f.write("done") + + def len(self): + if self.length is None: + files = [ + f + for f in os.listdir(self.processed_dir) + if f.startswith( + "data_index_", + ) + and f.endswith(".pt") + ] + self.length = len(files) + return self.length + + def get(self, idx): + file_name = osp.join( + self.processed_dir, + f"data_index_{idx}.pt", + ) + if not osp.exists(file_name): + raise IndexError(f"Data file {file_name} does not exist.") + data_dict = torch.load(file_name, weights_only=True) + data = HeteroData.from_dict(data_dict) + self.data_normalizer.transform(data=data) + return data diff --git a/gridfm_graphkit/datasets/task_transforms.py b/gridfm_graphkit/datasets/task_transforms.py new file mode 100644 index 0000000..eaaca66 --- /dev/null +++ b/gridfm_graphkit/datasets/task_transforms.py @@ -0,0 +1,57 @@ +from torch_geometric.transforms import Compose +from gridfm_graphkit.datasets.transforms import ( + RemoveInactiveBranches, + RemoveInactiveGenerators, + ApplyMasking, + LoadGridParamsFromPath, +) +from gridfm_graphkit.datasets.masking import ( + AddOPFHeteroMask, + AddPFHeteroMask, + SimulateMeasurements, +) +from gridfm_graphkit.io.registries import TRANSFORM_REGISTRY + + +@TRANSFORM_REGISTRY.register("PowerFlow") +class PowerFlowTransforms(Compose): + def __init__(self, args): + transforms = [] + + transforms.append(RemoveInactiveBranches()) + transforms.append(RemoveInactiveGenerators()) + transforms.append(AddPFHeteroMask()) + transforms.append(ApplyMasking(args=args)) + + # Pass the list of transforms to Compose + super().__init__(transforms) + + +@TRANSFORM_REGISTRY.register("OptimalPowerFlow") +class OptimalPowerFlowTransforms(Compose): + def __init__(self, args): + transforms = [] + + transforms.append(RemoveInactiveBranches()) + transforms.append(RemoveInactiveGenerators()) + transforms.append(AddOPFHeteroMask()) + transforms.append(ApplyMasking(args=args)) + + # Pass the list of transforms to Compose + super().__init__(transforms) + + +@TRANSFORM_REGISTRY.register("StateEstimation") +class StateEstimationTransforms(Compose): + def __init__(self, args): + transforms = [] + + if hasattr(args.task, "grid_path"): + transforms.append(LoadGridParamsFromPath(args)) + transforms.append(RemoveInactiveBranches()) + transforms.append(RemoveInactiveGenerators()) + transforms.append(SimulateMeasurements(args=args)) + transforms.append(ApplyMasking(args=args)) + + # Pass the list of transforms to Compose + super().__init__(transforms) diff --git a/gridfm_graphkit/datasets/transforms.py b/gridfm_graphkit/datasets/transforms.py index fb770d3..2f73033 100644 --- a/gridfm_graphkit/datasets/transforms.py +++ b/gridfm_graphkit/datasets/transforms.py @@ -1,237 +1,125 @@ -from gridfm_graphkit.datasets.globals import PQ, PV, REF, PG, QG, VM, VA, G, B -from gridfm_graphkit.io.registries import MASKING_REGISTRY - +from copy import deepcopy import torch -from torch import Tensor from torch_geometric.transforms import BaseTransform -from typing import Optional -import torch_geometric.typing -from torch_geometric.data import Data -from torch_geometric.utils import ( - get_self_loop_attr, - is_torch_sparse_tensor, - to_edge_index, - to_torch_coo_tensor, - to_torch_csr_tensor, +from torch_geometric.data import HeteroData +from gridfm_graphkit.datasets.globals import ( + # Generator feature indices + G_ON, + # Edge feature indices + B_ON, + YFF_TT_I, + YFF_TT_R, + YFT_TF_I, + YFT_TF_R, ) +from gridfm_graphkit.datasets.normalizers import HeteroDataMVANormalizer -class AddNormalizedRandomWalkPE(BaseTransform): - r"""Adds the random walk positional encoding from the - [Graph Neural Networks with Learnable Structural and Positional Representations](https://arxiv.org/abs/2110.07875) - paper to the given graph. This is an adaptation from the original Pytorch Geometric implementation. - - Args: - walk_length (int): The number of random walk steps. - attr_name (str, optional): The attribute name of the data object to add - positional encodings to. If set to :obj:`None`, will be - concatenated to :obj:`data.x`. - (default: :obj:`"random_walk_pe"`) +class RemoveInactiveGenerators(BaseTransform): + """ + Removes generators where G_ON == 0. + Uses the global index G_ON to access generator on/off flag. """ - def __init__( - self, - walk_length: int, - attr_name: Optional[str] = "random_walk_pe", - ) -> None: - self.walk_length = walk_length - self.attr_name = attr_name - - def forward(self, data: Data) -> Data: - if data.edge_index is None: - raise ValueError("Expected data.edge_index to be not None") - row, col = data.edge_index - N = data.num_nodes - if N is None: - raise ValueError("Expected data.num_nodes to be not None") - - if N <= 2_000: # Dense code path for faster computation: - adj = torch.zeros((N, N), device=row.device) - adj[row, col] = data.edge_weight - loop_index = torch.arange(N, device=row.device) - elif torch_geometric.typing.WITH_WINDOWS: - adj = to_torch_coo_tensor( - data.edge_index, - data.edge_weight, - size=data.size(), - ) - else: - adj = to_torch_csr_tensor( - data.edge_index, - data.edge_weight, - size=data.size(), - ) + def forward(self, data): + # Mask of generators that are ON + active_mask = data["gen"].x[:, G_ON] == 1 + + num_gen = data["gen"].num_nodes - row_sums = adj.sum(dim=1, keepdim=True) # Sum along rows - row_sums = row_sums.clamp(min=1e-8) # Prevent division by zero + # Mapping old generator IDs → new compact IDs + old_to_new = torch.full((num_gen,), -1, dtype=torch.long) + old_to_new[active_mask] = torch.arange(active_mask.sum()) - adj = adj / row_sums # Normalize each row to sum to 1 + # Filter generator node features + data["gen"].x = data["gen"].x[active_mask] + data["gen"].x = data["gen"].x[:, :G_ON] + data["gen"].y = data["gen"].y[active_mask] - def get_pe(out: Tensor) -> Tensor: - if is_torch_sparse_tensor(out): - return get_self_loop_attr(*to_edge_index(out), num_nodes=N) - return out[loop_index, loop_index] + # ---- Update hetero edges ---- - out = adj - pe_list = [get_pe(out)] - for _ in range(self.walk_length - 1): - out = out @ adj - pe_list.append(get_pe(out)) + # gen → bus edges + e = data["gen", "connected_to", "bus"].edge_index + keep = active_mask[e[0]] # generator is source + new_e = e[:, keep].clone() + new_e[0] = old_to_new[new_e[0]] + data["gen", "connected_to", "bus"].edge_index = new_e - pe = torch.stack(pe_list, dim=-1) - data[self.attr_name] = pe + # bus → gen edges + e = data["bus", "connected_to", "gen"].edge_index + keep = active_mask[e[1]] # generator is target + new_e = e[:, keep].clone() + new_e[1] = old_to_new[new_e[1]] + data["bus", "connected_to", "gen"].edge_index = new_e return data -class AddEdgeWeights(BaseTransform): +class RemoveInactiveBranches(BaseTransform): """ - Computes and adds edge weight as the magnitude of complex admittance. - - The magnitude is computed from the G and B components in `data.edge_attr` and stored in `data.edge_weight`. + Removes branches where B_ON == 0. + Uses global index B_ON in edge_attr. """ def forward(self, data): - if not hasattr(data, "edge_attr"): - raise AttributeError("Data must have 'edge_attr'.") - - # Extract real and imaginary parts of admittance - real = data.edge_attr[:, G] - imag = data.edge_attr[:, B] + et = ("bus", "connects", "bus") - # Compute the magnitude of the complex admittance - edge_weight = torch.sqrt(real**2 + imag**2) + # Mask for active (in-service) branches + active_mask = data[et].edge_attr[:, B_ON] == 1 - # Add the computed edge weights to the data object - data.edge_weight = edge_weight + # Apply the mask + data[et].edge_index = data[et].edge_index[:, active_mask] + data[et].edge_attr = data[et].edge_attr[active_mask] + data[et].edge_attr = data[et].edge_attr[:, :B_ON] + data[et].y = data[et].y[active_mask] return data -@MASKING_REGISTRY.register("none") -class AddIdentityMask(BaseTransform): - """Creates an identity mask, and adds it as a `mask` attribute. - - The mask is generated such that every entry is False, so no masking is actually applied +class ApplyMasking(BaseTransform): """ - - def __init__(self, args): - super().__init__() - - def forward(self, data): - if not hasattr(data, "y"): - raise AttributeError("Data must have ground truth 'y'.") - - # Generate an identity mask - mask = torch.zeros_like(data.y, dtype=torch.bool) - - # Add the mask to the data object - data.mask = mask - - return data - - -@MASKING_REGISTRY.register("rnd") -class AddRandomMask(BaseTransform): - """Creates a random mask, and adds it as a `mask` attribute. - - The mask is generated such that each entry is `True` with probability - `mask_ratio` and `False` otherwise. + Apply masking to data """ def __init__(self, args): super().__init__() - self.mask_dim = args.data.mask_dim - self.mask_ratio = args.data.mask_ratio + self.mask_value = args.data.mask_value def forward(self, data): - if not hasattr(data, "x"): - raise AttributeError("Data must have node features 'x'.") - - # Generate a random mask - mask = torch.rand(data.x.size(0), self.mask_dim) < self.mask_ratio - - # Add the mask to the data object - data.mask = mask + data.x_dict["bus"][data.mask_dict["bus"]] = self.mask_value + data.x_dict["gen"][data.mask_dict["gen"]] = self.mask_value + data.edge_attr_dict[("bus", "connects", "bus")][data.mask_dict["branch"]] = ( + self.mask_value + ) return data -@MASKING_REGISTRY.register("pf") -class AddPFMask(BaseTransform): - """Creates a mask according to the power flow problem and assigns it as a `mask` attribute.""" - +class LoadGridParamsFromPath(BaseTransform): def __init__(self, args): super().__init__() + self.grid_path = args.task.grid_path + self.grid_data = HeteroData.from_dict( + torch.load(self.grid_path, weights_only=True), + ) - def forward(self, data): - # Ensure the data object has the required attributes - if not hasattr(data, "y"): - raise AttributeError("Data must have ground truth 'y'.") - - if not hasattr(data, "x"): - raise AttributeError("Data must have node features 'x'.") - - # Generate masks for each type of node - mask_PQ = data.x[:, PQ] == 1 # PQ buses - mask_PV = data.x[:, PV] == 1 # PV buses - mask_REF = data.x[:, REF] == 1 # Reference buses - - # Initialize the mask tensor with False values - mask = torch.zeros_like(data.y, dtype=torch.bool) - - mask[mask_PQ, VM] = True # Mask Vm for PQ buses - mask[mask_PQ, VA] = True # Mask Va for PQ buses - - mask[mask_PV, QG] = True # Mask Qg for PV buses - mask[mask_PV, VA] = True # Mask Va for PV buses - - mask[mask_REF, PG] = True # Mask Pg for REF buses - mask[mask_REF, QG] = True # Mask Qg for REF buses - - # Attach the mask to the data object - data.mask = mask - - return data - + # Normalizer is needed in order to normalize the grid_data in case the input data is normalized + self.normalizer = HeteroDataMVANormalizer(args) -@MASKING_REGISTRY.register("opf") -class AddOPFMask(BaseTransform): - """Creates a mask according to the optimal power flow problem and assigns it as a `mask` attribute.""" - - def __init__(self, args): - super().__init__() + # Set to a dummy value since it is needed for the normalizer transform, but the column vn_kv will be ignored. + self.normalizer.vn_kv_max = 1 def forward(self, data): - # Ensure the data object has the required attributes - if not hasattr(data, "y"): - raise AttributeError("Data must have ground truth 'y'.") - - if not hasattr(data, "x"): - raise AttributeError("Data must have node features 'x'.") - - # Generate masks for each type of node - mask_PQ = data.x[:, PQ] == 1 # PQ buses - mask_PV = data.x[:, PV] == 1 # PV buses - mask_REF = data.x[:, REF] == 1 # Reference buses - - # Initialize the mask tensor with False values - mask = torch.zeros_like(data.y, dtype=torch.bool) - - mask[mask_PQ, VM] = True # Mask Vm for PQ - mask[mask_PQ, VA] = True # Mask Va for PQ - - mask[mask_PV, PG] = True # Mask Pg for PV - mask[mask_PV, QG] = True # Mask Qg for PV - mask[mask_PV, VM] = True # Mask Vm for PV - mask[mask_PV, VA] = True # Mask Va for PV - - mask[mask_REF, PG] = True # Mask Pg for REF - mask[mask_REF, QG] = True # Mask Qg for REF - mask[mask_REF, VM] = True # Mask Vm for REF - mask[mask_REF, VA] = True # Mask Va for REF - - # Attach the mask to the data object - data.mask = mask + if hasattr(data, "is_normalized"): + self.normalizer.baseMVA = data.baseMVA + grid_data = deepcopy(self.grid_data) + self.normalizer.transform(grid_data) + else: + grid_data = deepcopy(self.grid_data) + cols = [YFF_TT_R, YFF_TT_I, YFT_TF_R, YFT_TF_I, B_ON] + data[("bus", "connects", "bus")].edge_attr[:, cols] = grid_data[ + ("bus", "connects", "bus") + ].edge_attr[:, cols] + data["gen"].x[:, G_ON] = grid_data["gen"].x[:, G_ON] return data diff --git a/gridfm_graphkit/datasets/utils.py b/gridfm_graphkit/datasets/utils.py index 7f3a27b..f330d49 100644 --- a/gridfm_graphkit/datasets/utils.py +++ b/gridfm_graphkit/datasets/utils.py @@ -1,6 +1,8 @@ import numpy as np from torch.utils.data import Subset from typing import Tuple +from torch import Tensor +import torch def split_dataset( @@ -47,3 +49,44 @@ def split_dataset( test_dataset = Subset(dataset, test_indices) return train_dataset, val_dataset, test_dataset + + +def split_dataset_by_load_scenario_idx( + dataset, + log_dir: str, + load_scenarios: Tensor, + val_ratio: float = 0.1, + test_ratio: float = 0.1, +) -> Tuple[Subset, Subset, Subset]: + if val_ratio + test_ratio >= 1: + raise ValueError("The sum of val_ratio and test_ratio must be less than 1.") + + unique_load_scenarios = torch.unique(load_scenarios) + val_size = int(val_ratio * len(unique_load_scenarios)) + test_size = int(test_ratio * len(unique_load_scenarios)) + train_size = len(unique_load_scenarios) - val_size - test_size + + unique_load_scenarios = torch.tensor(np.random.permutation(unique_load_scenarios)) + train_load_scenarios = unique_load_scenarios[:train_size] + val_load_scenarios = unique_load_scenarios[train_size : train_size + val_size] + test_load_scenarios = unique_load_scenarios[train_size + val_size :] + + train_indices = ( + torch.nonzero(torch.isin(load_scenarios, train_load_scenarios)) + .flatten() + .tolist() + ) + val_indices = ( + torch.nonzero(torch.isin(load_scenarios, val_load_scenarios)).flatten().tolist() + ) + test_indices = ( + torch.nonzero(torch.isin(load_scenarios, test_load_scenarios)) + .flatten() + .tolist() + ) + + train_dataset = Subset(dataset, train_indices) + val_dataset = Subset(dataset, val_indices) + test_dataset = Subset(dataset, test_indices) + + return train_dataset, val_dataset, test_dataset diff --git a/gridfm_graphkit/io/param_handler.py b/gridfm_graphkit/io/param_handler.py index 8ab70a3..ea86e3c 100644 --- a/gridfm_graphkit/io/param_handler.py +++ b/gridfm_graphkit/io/param_handler.py @@ -1,17 +1,17 @@ -from gridfm_graphkit.training.loss import ( - PBELoss, - MaskedMSELoss, - SCELoss, - MixedLoss, - MSELoss, -) +import torch +from gridfm_graphkit.training.loss import MixedLoss from gridfm_graphkit.io.registries import ( - MASKING_REGISTRY, NORMALIZERS_REGISTRY, MODELS_REGISTRY, + LOSS_REGISTRY, + TRANSFORM_REGISTRY, + TASK_REGISTRY, + PHYSICS_DECODER_REGISTRY, ) import argparse +from torch_geometric.transforms import Compose +from gridfm_graphkit.tasks.base_task import BaseTask class NestedNamespace(argparse.Namespace): @@ -26,6 +26,14 @@ def __init__(self, **kwargs): if isinstance(value, dict): # Recursively convert dictionaries to NestedNamespace setattr(self, key, NestedNamespace(**value)) + elif isinstance(value, list): + list_of_namespaces = [] + for element in value: + if isinstance(element, dict): + list_of_namespaces.append(NestedNamespace(**element)) + else: + list_of_namespaces.append(element) + setattr(self, key, list_of_namespaces) else: setattr(self, key, value) @@ -69,9 +77,8 @@ def load_normalizer(args): try: return NORMALIZERS_REGISTRY.create( method, - True, args, - ), NORMALIZERS_REGISTRY.create(method, False, args) + ) except KeyError: raise ValueError(f"Unknown transformation: {method}") @@ -90,22 +97,16 @@ def get_loss_function(args): ValueError: If an unknown loss function is specified. """ loss_functions = [] - for loss_name in args.training.losses: - if loss_name == "MSE": - loss_functions.append(MSELoss()) - elif loss_name == "MaskedMSE": - loss_functions.append(MaskedMSELoss()) - elif loss_name == "SCE": - loss_functions.append(SCELoss()) - elif loss_name == "PBE": - loss_functions.append(PBELoss()) - else: - raise ValueError(f"Unknown loss function: {loss_name}") + for loss_name, loss_args in zip(args.training.losses, args.training.loss_args): + try: + loss_functions.append(LOSS_REGISTRY.create(loss_name, loss_args, args)) + except KeyError: + raise ValueError(f"Unknown loss: {loss_name}") return MixedLoss(loss_functions=loss_functions, weights=args.training.loss_weights) -def load_model(args): +def load_model(args) -> torch.nn.Module: """ Load the appropriate model @@ -126,13 +127,38 @@ def load_model(args): raise ValueError(f"Unknown model type: {model_type}") -def get_transform(args): +def get_task_transforms(args) -> Compose: + """ + Load the task-specific transforms + """ + + task_transforms = args.task.task_name + + try: + return TRANSFORM_REGISTRY.create(task_transforms, args) + except KeyError: + raise ValueError(f"Unknown task: {task_transforms}") + + +def get_task(args, data_normalizers) -> BaseTask: + """ + Load the task module + """ + task = args.task.task_name + + try: + return TASK_REGISTRY.create(task, args, data_normalizers) + except KeyError: + raise ValueError(f"Unknown task: {task}") + + +def get_physics_decoder(args) -> torch.nn.Module: """ - Load the appropriate dataset transform from the registry. + Load the task module """ - mask_type = args.data.mask_type + task = args.task.task_name try: - return MASKING_REGISTRY.create(mask_type, args) + return PHYSICS_DECODER_REGISTRY.create(task) except KeyError: - raise ValueError(f"Unknown transformation: {mask_type}") + raise ValueError(f"No physics decoder associate to {task} task") diff --git a/gridfm_graphkit/io/registries.py b/gridfm_graphkit/io/registries.py index adaac9e..27d56b7 100644 --- a/gridfm_graphkit/io/registries.py +++ b/gridfm_graphkit/io/registries.py @@ -37,6 +37,9 @@ def __len__(self): return len(self._registry) -MASKING_REGISTRY = Registry("mask") NORMALIZERS_REGISTRY = Registry("norm") MODELS_REGISTRY = Registry("model") +LOSS_REGISTRY = Registry("loss") +TASK_REGISTRY = Registry("task") +TRANSFORM_REGISTRY = Registry("transform") +PHYSICS_DECODER_REGISTRY = Registry("physics_decoder") diff --git a/gridfm_graphkit/models/__init__.py b/gridfm_graphkit/models/__init__.py index de355d3..f824535 100644 --- a/gridfm_graphkit/models/__init__.py +++ b/gridfm_graphkit/models/__init__.py @@ -1,4 +1,13 @@ -from gridfm_graphkit.models.gps_transformer import GPSTransformer -from gridfm_graphkit.models.gnn_transformer import GNN_TransformerConv +from gridfm_graphkit.models.gnn_heterogeneous_gns import GNS_heterogeneous +from gridfm_graphkit.models.utils import ( + PhysicsDecoderOPF, + PhysicsDecoderPF, + PhysicsDecoderSE, +) -__all__ = ["GPSTransformer", "GNN_TransformerConv"] +__all__ = [ + "GNS_heterogeneous", + "PhysicsDecoderOPF", + "PhysicsDecoderPF", + "PhysicsDecoderSE", +] diff --git a/gridfm_graphkit/models/gnn_heterogeneous_gns.py b/gridfm_graphkit/models/gnn_heterogeneous_gns.py new file mode 100644 index 0000000..1073560 --- /dev/null +++ b/gridfm_graphkit/models/gnn_heterogeneous_gns.py @@ -0,0 +1,281 @@ +import torch +from torch import nn +from torch_geometric.nn import HeteroConv, TransformerConv +from gridfm_graphkit.io.registries import MODELS_REGISTRY +from gridfm_graphkit.io.param_handler import get_physics_decoder +from torch_scatter import scatter_add +from gridfm_graphkit.models.utils import ( + ComputeBranchFlow, + ComputeNodeInjection, + ComputeNodeResiduals, + bound_with_sigmoid, +) +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + VM_H, + VA_H, + MIN_VM_H, + MAX_VM_H, + # Output feature indices + VM_OUT, + PG_OUT_GEN, + # Generator feature indices + PG_H, + MIN_PG, + MAX_PG, +) + + +@MODELS_REGISTRY.register("GNS_heterogeneous") +class GNS_heterogeneous(nn.Module): + """ + Heterogeneous version of your Transformer-based GNN for buses and generators. + - Expects node features as dict: x_dict = {"bus": Tensor[num_bus, bus_feat], "gen": Tensor[num_gen, gen_feat]} + - Expects edge_index_dict and edge_attr_dict with keys: + ("bus","connects","bus"), ("gen","connected_to","bus"), ("bus","connected_to","gen") + (edge_attr only needed for bus-bus currently; other relations can be None) + - Keeps the physics residual idea but splits it into bus-step and gen-step residuals. + """ + + def __init__(self, args) -> None: + super().__init__() + self.num_layers = args.model.num_layers + self.hidden_dim = args.model.hidden_size + self.input_bus_dim = args.model.input_bus_dim + self.input_gen_dim = args.model.input_gen_dim + self.output_bus_dim = args.model.output_bus_dim + self.output_gen_dim = args.model.output_gen_dim + self.edge_dim = args.model.edge_dim + self.heads = args.model.attention_head + self.task = args.task.task_name + self.dropout = getattr(args.model, "dropout", 0.0) + + # projections for each node type + self.input_proj_bus = nn.Sequential( + nn.Linear(self.input_bus_dim, self.hidden_dim), + nn.LeakyReLU(), + nn.Linear(self.hidden_dim, self.hidden_dim), + nn.LayerNorm(self.hidden_dim), + ) + + self.input_proj_gen = nn.Sequential( + nn.Linear(self.input_gen_dim, self.hidden_dim), + nn.LeakyReLU(), + nn.Linear(self.hidden_dim, self.hidden_dim), + nn.LayerNorm(self.hidden_dim), + ) + + self.input_proj_edge = nn.Sequential( + nn.Linear(self.edge_dim, self.hidden_dim), + nn.LeakyReLU(), + nn.Linear(self.hidden_dim, self.hidden_dim), + nn.LayerNorm(self.hidden_dim), + ) + + # a small physics MLP that will take residuals (real, imag) and return a correction + self.physics_mlp = nn.Sequential( + nn.Linear(2, self.hidden_dim * self.heads), + nn.LeakyReLU(), + ) + + # Build hetero layers: HeteroConv of TransformerConv per relation + self.layers = nn.ModuleList() + self.norms_bus = nn.ModuleList() + self.norms_gen = nn.ModuleList() + for i in range(self.num_layers): + # in-channels depend on whether it is first layer (hidden_dim) or subsequent (hidden_dim * heads) + in_bus = self.hidden_dim if i == 0 else self.hidden_dim * self.heads + in_gen = self.hidden_dim if i == 0 else self.hidden_dim * self.heads + out_dim = self.hidden_dim # TransformerConv will output hidden_dim (per head reduction in HeteroConv call) + + # relation -> conv module mapping + conv_dict = { + ("bus", "connects", "bus"): TransformerConv( + in_bus, + out_dim, + heads=self.heads, + edge_dim=self.hidden_dim, + dropout=self.dropout, + beta=True, + ), + ("gen", "connected_to", "bus"): TransformerConv( + in_gen, + out_dim, + heads=self.heads, + dropout=self.dropout, + beta=True, + ), + ("bus", "connected_to", "gen"): TransformerConv( + in_bus, + out_dim, + heads=self.heads, + dropout=self.dropout, + beta=True, + ), + } + + hetero_conv = HeteroConv(conv_dict, aggr="sum") + self.layers.append(hetero_conv) + + # Norms for node representations (note: after HeteroConv each node type will have size out_dim * heads) + self.norms_bus.append(nn.LayerNorm(out_dim * self.heads)) + self.norms_gen.append(nn.LayerNorm(out_dim * self.heads)) + + # Separate shared MLPs to produce final bus/gen outputs (predictions y) + self.mlp_bus = nn.Sequential( + nn.Linear(self.hidden_dim * self.heads, self.hidden_dim), + nn.LayerNorm(self.hidden_dim), + nn.LeakyReLU(), + nn.Linear(self.hidden_dim, self.output_bus_dim), + ) + + self.mlp_gen = nn.Sequential( + nn.Linear(self.hidden_dim * self.heads, self.hidden_dim), + nn.LayerNorm(self.hidden_dim), + nn.LeakyReLU(), + nn.Linear(self.hidden_dim, self.output_gen_dim), + ) + + # mask param (kept similar to your original) + self.activation = nn.LeakyReLU() + self.branch_flow_layer = ComputeBranchFlow() + self.node_injection_layer = ComputeNodeInjection() + self.node_residuals_layer = ComputeNodeResiduals() + self.physics_decoder = get_physics_decoder(args) + + # container for monitoring residual norms per layer and type + self.layer_residuals = {} + + def forward(self, x_dict, edge_index_dict, edge_attr_dict, mask_dict): + """ + x_dict: {"bus": Tensor[num_bus, bus_feat], "gen": Tensor[num_gen, gen_feat]} + edge_index_dict: keys like ("bus","connects","bus"), ("gen","connected_to","bus"), ("bus","connected_to","gen") + edge_attr_dict: same keys -> edge attributes (bus-bus requires G,B) + batch_dict: dict mapping node types to batch tensors (if using batching). Not used heavily here but kept for API parity. + mask: optional mask per node (applies when computing residuals) + """ + + self.layer_residuals = {} + + # 1) initial projections + h_bus = self.input_proj_bus(x_dict["bus"]) # [num_bus, hidden_dim] + h_gen = self.input_proj_gen(x_dict["gen"]) # [num_gen, hidden_dim] + + num_bus = x_dict["bus"].size(0) + _, gen_to_bus_index = edge_index_dict[("gen", "connected_to", "bus")] + bus_edge_index = edge_index_dict[("bus", "connects", "bus")] + bus_edge_attr = edge_attr_dict[("bus", "connects", "bus")] + + edge_attr_proj_dict = {} + for key, edge_attr in edge_attr_dict.items(): + if edge_attr is not None: + edge_attr_proj_dict[key] = self.input_proj_edge(edge_attr) + else: + edge_attr_proj_dict[key] = None + + bus_mask = mask_dict["bus"][:, VM_H : VA_H + 1] + gen_mask = mask_dict["gen"][:, : (PG_H + 1)] + bus_fixed = x_dict["bus"][:, VM_H : VA_H + 1] + gen_fixed = x_dict["gen"][:, : (PG_H + 1)] + + # iterate layers + for i, conv in enumerate(self.layers): + out_dict = conv( + {"bus": h_bus, "gen": h_gen}, + edge_index_dict, + edge_attr_proj_dict, + ) + out_bus = out_dict["bus"] # [Nb, hidden_dim * heads] + out_gen = out_dict["gen"] # [Ng, hidden_dim * heads] + + out_bus = self.activation(self.norms_bus[i](out_bus)) + out_gen = self.activation(self.norms_gen[i](out_gen)) + + # skip connection + h_bus = h_bus + out_bus if out_bus.shape == h_bus.shape else out_bus + h_gen = h_gen + out_gen if out_gen.shape == h_gen.shape else out_gen + + # Decode bus and generator predictions + bus_temp = self.mlp_bus(h_bus) # [Nb, 2] -> Vm, Va + gen_temp = self.mlp_gen(h_gen) # [Ng, 1] -> Pg + + if self.task == "StateEstimation": + if i == self.num_layers - 1: + Pft, Qft = self.branch_flow_layer( + bus_temp, + bus_edge_index, + bus_edge_attr, + ) + P_in, Q_in = self.node_injection_layer( + Pft, + Qft, + bus_edge_index, + num_bus, + ) + output_temp = self.physics_decoder( + P_in, + Q_in, + bus_temp, + x_dict["bus"], + None, + None, + ) + + else: + bus_temp = torch.where(bus_mask, bus_temp, bus_fixed) + gen_temp = torch.where(gen_mask, gen_temp, gen_fixed) + + if self.task == "OptimalPowerFlow": + bus_temp[:, VM_OUT] = bound_with_sigmoid( + bus_temp[:, VM_OUT], + x_dict["bus"][:, MIN_VM_H], + x_dict["bus"][:, MAX_VM_H], + ) + gen_temp[:, PG_OUT_GEN] = bound_with_sigmoid( + gen_temp[:, PG_OUT_GEN], + x_dict["gen"][:, MIN_PG], + x_dict["gen"][:, MAX_PG], + ) + + Pft, Qft = self.branch_flow_layer( + bus_temp, + bus_edge_index, + bus_edge_attr, + ) + P_in, Q_in = self.node_injection_layer( + Pft, + Qft, + bus_edge_index, + num_bus, + ) + agg_bus = scatter_add( + gen_temp.squeeze(), + gen_to_bus_index, + dim=0, + dim_size=num_bus, + ) + output_temp = self.physics_decoder( + P_in, + Q_in, + bus_temp, + x_dict["bus"], + agg_bus, + mask_dict, + ) + residual_P, residual_Q = self.node_residuals_layer( + P_in, + Q_in, + output_temp, + x_dict["bus"], + ) + + bus_residuals = torch.stack([residual_P, residual_Q], dim=-1) + + # Save and project residuals to latent space + self.layer_residuals[i] = torch.linalg.norm( + bus_residuals, + dim=-1, + ).mean() + h_bus = h_bus + self.physics_mlp(bus_residuals) + + return {"bus": output_temp, "gen": gen_temp} diff --git a/gridfm_graphkit/models/gnn_transformer.py b/gridfm_graphkit/models/gnn_transformer.py deleted file mode 100644 index 9e1ab23..0000000 --- a/gridfm_graphkit/models/gnn_transformer.py +++ /dev/null @@ -1,96 +0,0 @@ -from gridfm_graphkit.io.registries import MODELS_REGISTRY -from torch_geometric.nn import TransformerConv -from torch import nn -import torch - - -@MODELS_REGISTRY.register("GNN_TransformerConv") -class GNN_TransformerConv(nn.Module): - """ - Graph Neural Network using [TransformerConv](https://pytorch-geometric.readthedocs.io/en/latest/generated/torch_geometric.nn.conv.TransformerConv.html) layers from PyTorch Geometric. - - Args: - args (NestedNamespace): Parameters - - Attributes: - input_dim (int): Dimensionality of input node features. From ``args.model.input_dim``. - hidden_dim (int): Hidden dimension size for TransformerConv layers. From ``args.model.hidden_dim``. - output_dim (int): Output dimension size. From ``args.model.output_dim``. - edge_dim (int): Dimensionality of edge features. From ``args.model.edge_dim``. - num_layers (int): Number of TransformerConv layers. From ``args.model.num_layers``. - heads (int, optional): Number of attention heads. From ``args.model.heads``. Defaults to 1. - mask_dim (int, optional): Dimension of mask vector. From ``args.data.mask_dim``. Defaults to 6. - mask_value (float, optional): Initial mask value. From ``args.data.mask_value``. Defaults to -1.0. - learn_mask (bool, optional): Whether mask values are learnable. From ``args.data.learn_mask``. Defaults to True. - """ - - def __init__(self, args): - super().__init__() - - # === Required (no defaults originally) === - self.input_dim = args.model.input_dim - self.hidden_dim = args.model.hidden_size - self.output_dim = args.model.output_dim - self.edge_dim = args.model.edge_dim - self.num_layers = args.model.num_layers - - # === Optional (had defaults originally) === - self.heads = getattr(args.model, "attention_head", 1) - self.mask_dim = getattr(args.data, "mask_dim", 6) - self.mask_value = getattr(args.data, "mask_value", -1.0) - self.learn_mask = getattr(args.data, "learn_mask", False) - - self.layers = nn.ModuleList() - current_dim = self.input_dim # First layer takes `input_dim` as input - - for _ in range(self.num_layers): - self.layers.append( - TransformerConv( - current_dim, - self.hidden_dim, - heads=self.heads, - edge_dim=self.edge_dim, - beta=False, - ), - ) - # Update the dimension for the next layer - current_dim = self.hidden_dim * self.heads - - # Fully connected (MLP) layers after the GAT layers - self.mlps = nn.Sequential( - nn.Linear(self.hidden_dim * self.heads, self.hidden_dim), - nn.LeakyReLU(), - nn.Linear(self.hidden_dim, self.output_dim), - ) - - if self.learn_mask: - self.mask_value = nn.Parameter( - torch.randn(self.mask_dim) + self.mask_value, - requires_grad=True, - ) - else: - self.mask_value = nn.Parameter( - torch.zeros(self.mask_dim) + self.mask_value, - requires_grad=False, - ) - - def forward(self, x, pe, edge_index, edge_attr, batch): - """ - Forward pass for the GPSTransformer. - - Args: - x (Tensor): Input node features of shape [num_nodes, input_dim]. - pe (Tensor): Positional encoding of shape [num_nodes, pe_dim] (not used). - edge_index (Tensor): Edge indices for graph convolution. - edge_attr (Tensor): Edge feature tensor. - batch (Tensor): Batch vector assigning nodes to graphs (not used). - - Returns: - output (Tensor): Output node features of shape [num_nodes, output_dim]. - """ - for conv in self.layers: - x = conv(x, edge_index, edge_attr) - x = nn.LeakyReLU()(x) - - x = self.mlps(x) - return x diff --git a/gridfm_graphkit/models/gps_transformer.py b/gridfm_graphkit/models/gps_transformer.py deleted file mode 100644 index cc8b648..0000000 --- a/gridfm_graphkit/models/gps_transformer.py +++ /dev/null @@ -1,140 +0,0 @@ -from gridfm_graphkit.io.registries import MODELS_REGISTRY -from torch_geometric.nn import GPSConv, GINEConv -from torch import nn -import torch - - -@MODELS_REGISTRY.register("GPSTransformer") -class GPSTransformer(nn.Module): - """ - A GPS (Graph Transformer) model based on [GPSConv](https://pytorch-geometric.readthedocs.io/en/latest/generated/torch_geometric.nn.conv.GPSConv.html) and [GINEConv](https://pytorch-geometric.readthedocs.io/en/latest/generated/torch_geometric.nn.conv.GINEConv.html) layers from Pytorch Geometric. - - This model encodes node features and positional encodings separately, - then applies multiple graph convolution layers with batch normalization, - and finally decodes to the output dimension. - - Args: - args (NestedNamespace): Parameters - - Attributes: - input_dim (int): Dimension of input node features. From ``args.model.input_dim``. - hidden_dim (int): Hidden dimension size for all layers. From ``args.model.hidden_size``. - output_dim (int): Dimension of the output node features. From ``args.model.output_dim``. - edge_dim (int): Dimension of edge features. From ``args.model.edge_dim``. - pe_dim (int): Dimension of the positional encoding. Must be less than ``hidden_dim``. From ``args.model.pe_dim``. - num_layers (int): Number of GPSConv layers. From ``args.model.num_layers``. - heads (int, optional): Number of attention heads in GPSConv. From ``args.model.attention_head``. Defaults to 1. - dropout (float, optional): Dropout rate in GPSConv. From ``args.model.dropout``. Defaults to 0.0. - mask_dim (int, optional): Dimension of the mask vector. From ``args.data.mask_dim``. Defaults to 6. - mask_value (float, optional): Initial value for learnable mask parameters. From ``args.data.mask_value``. Defaults to -1.0. - learn_mask (bool, optional): Whether to learn mask values as parameters. From ``args.data.learn_mask``. Defaults to True. - - Raises: - ValueError: If `pe_dim` is not less than `hidden_dim`. - """ - - def __init__(self, args): - super().__init__() - - # === Required (no defaults in original) === - self.input_dim = args.model.input_dim - self.hidden_dim = args.model.hidden_size - self.output_dim = args.model.output_dim - self.edge_dim = args.model.edge_dim - self.pe_dim = args.model.pe_dim - self.num_layers = args.model.num_layers - - # === Optional (defaults in original) === - self.heads = getattr(args.model, "attention_head", 1) - self.dropout = getattr(args.model, "dropout", 0.0) - self.mask_dim = getattr(args.data, "mask_dim", 6) - self.mask_value = getattr(args.data, "mask_value", -1.0) - self.learn_mask = getattr(args.data, "learn_mask", True) - - if not self.pe_dim < self.hidden_dim: - raise ValueError( - "positional encoding dimension must be smaller than model hidden dimension", - ) - - self.layers = nn.ModuleList() - - self.encoder = nn.Sequential( - nn.Linear(self.input_dim, self.hidden_dim - self.pe_dim), - nn.LeakyReLU(), - ) - self.input_norm = nn.BatchNorm1d(self.hidden_dim - self.pe_dim) - self.pe_norm = nn.BatchNorm1d(self.pe_dim) - - for _ in range(self.num_layers): - mlp = nn.Sequential( - nn.Linear(in_features=self.hidden_dim, out_features=self.hidden_dim), - nn.LeakyReLU(), - ) - self.layers.append( - nn.ModuleDict( - { - "conv": GPSConv( - channels=self.hidden_dim, - conv=GINEConv(nn=mlp, edge_dim=self.edge_dim), - heads=self.heads, - dropout=self.dropout, - ), - "norm": nn.BatchNorm1d( - self.hidden_dim, - ), # BatchNorm after each graph layer - }, - ), - ) - - self.pre_decoder_norm = nn.BatchNorm1d(self.hidden_dim) - # Fully connected (MLP) layers after the GAT layers - self.decoder = nn.Sequential( - nn.Linear(self.hidden_dim, self.hidden_dim), - nn.LeakyReLU(), - nn.Linear(self.hidden_dim, self.output_dim), - ) - - if self.learn_mask: - self.mask_value = nn.Parameter( - torch.randn(self.mask_dim) + self.mask_value, - requires_grad=True, - ) - else: - self.mask_value = nn.Parameter( - torch.zeros(self.mask_dim) + self.mask_value, - requires_grad=False, - ) - - def forward(self, x, pe, edge_index, edge_attr, batch): - """ - Forward pass for the GPSTransformer. - - Args: - x (Tensor): Input node features of shape [num_nodes, input_dim]. - pe (Tensor): Positional encoding of shape [num_nodes, pe_dim]. - edge_index (Tensor): Edge indices for graph convolution. - edge_attr (Tensor): Edge feature tensor. - batch (Tensor): Batch vector assigning nodes to graphs. - - Returns: - output (Tensor): Output node features of shape [num_nodes, output_dim]. - """ - x_pe = self.pe_norm(pe) - - x = self.encoder(x) - x = self.input_norm(x) - - x = torch.cat((x, x_pe), 1) - for layer in self.layers: - x = layer["conv"]( - x=x, - edge_index=edge_index, - edge_attr=edge_attr, - batch=batch, - ) - x = layer["norm"](x) - - x = self.pre_decoder_norm(x) - x = self.decoder(x) - - return x diff --git a/gridfm_graphkit/models/utils.py b/gridfm_graphkit/models/utils.py new file mode 100644 index 0000000..46e75c7 --- /dev/null +++ b/gridfm_graphkit/models/utils.py @@ -0,0 +1,189 @@ +import torch +from torch import nn +from torch_scatter import scatter_add +from gridfm_graphkit.io.registries import PHYSICS_DECODER_REGISTRY + +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + PD_H, + QD_H, + QG_H, + GS, + BS, + # Output feature indices + VM_OUT, + VA_OUT, + PG_OUT, + QG_OUT, + # Edge feature indices + YFF_TT_R, + YFF_TT_I, + YFT_TF_R, + YFT_TF_I, +) + + +class ComputeBranchFlow(nn.Module): + """Compute sending-end branch flows (Pf, Qf) for all branches.""" + + def forward(self, bus_data, edge_index, edge_attr): + from_idx, to_idx = edge_index + + # Voltage magnitudes and angles + Vf_mag, Vf_ang = bus_data[from_idx, VM_OUT], bus_data[from_idx, VA_OUT] + Vt_mag, Vt_ang = bus_data[to_idx, VM_OUT], bus_data[to_idx, VA_OUT] + + # Real & imaginary voltage components + Vf_r = Vf_mag * torch.cos(Vf_ang) + Vf_i = Vf_mag * torch.sin(Vf_ang) + Vt_r = Vt_mag * torch.cos(Vt_ang) + Vt_i = Vt_mag * torch.sin(Vt_ang) + + # Branch admittance components + Yfftt_r, Yfftt_i = edge_attr[:, YFF_TT_R], edge_attr[:, YFF_TT_I] + Yfttf_r, Yfttf_i = edge_attr[:, YFT_TF_R], edge_attr[:, YFT_TF_I] + + # Sending-end currents + Ift_r = Yfftt_r * Vf_r - Yfftt_i * Vf_i + Yfttf_r * Vt_r - Yfttf_i * Vt_i + Ift_i = Yfftt_r * Vf_i + Yfftt_i * Vf_r + Yfttf_r * Vt_i + Yfttf_i * Vt_r + + # Sending-end power flows + Pft = Vf_r * Ift_r + Vf_i * Ift_i + Qft = Vf_i * Ift_r - Vf_r * Ift_i + + return Pft, Qft + + +class ComputeNodeInjection(nn.Module): + """Aggregate branch flows into node-level incoming injections.""" + + def forward(self, Pft, Qft, edge_index, num_bus): + """ + Args: + Pft, Qft: [num_edges] branch flows + edge_index: [2, num_edges] (from_bus, to_bus) + num_bus: number of bus nodes + Returns: + P_in, Q_in: aggregated incoming power per bus + """ + from_idx, _ = edge_index # Only sending end contributes as "incoming" to node + P_in = scatter_add(Pft, from_idx, dim=0, dim_size=num_bus) + Q_in = scatter_add(Qft, from_idx, dim=0, dim_size=num_bus) + + return P_in, Q_in + + +def compute_shunt_power(bus_data_pred, bus_data_orig): + p_shunt = -bus_data_orig[:, GS] * bus_data_pred[:, VM_OUT] ** 2 + q_shunt = bus_data_orig[:, BS] * bus_data_pred[:, VM_OUT] ** 2 + return p_shunt, q_shunt + + +@PHYSICS_DECODER_REGISTRY.register("OptimalPowerFlow") +class PhysicsDecoderOPF(nn.Module): + def forward(self, P_in, Q_in, bus_data_pred, bus_data_orig, agg_bus, mask_dict): + mask_pv = mask_dict["PV"] + mask_ref = mask_dict["REF"] + + mask_pvref = mask_pv | mask_ref + + # Shunt reactive power contribution + _, q_shunt = compute_shunt_power(bus_data_pred, bus_data_orig) + + # Reactive load + Qd = bus_data_orig[:, QD_H] + + # ---- COMPUTE Qg FOR PV & REF ---- + # Nodal reactive balance: + # Qg = Q_in + Qd - q_shunt + Qg_physics = Q_in + Qd - q_shunt + + Qg_new = torch.zeros_like(bus_data_orig[:, QG_H]) + + # PV + REF: solve from physics + Qg_new[mask_pvref] = Qg_physics[mask_pvref] + Pg_out = agg_bus # Active generation (Pg) + Qg_out = Qg_new # Reactive gen (Qg) + Vm_out = bus_data_pred[:, VM_OUT] # Voltage magnitude + Va_out = bus_data_pred[:, VA_OUT] # Voltage angle + + # Concatenate into [num_buses, 4] + output = torch.stack([Vm_out, Va_out, Pg_out, Qg_out], dim=1) + + return output + + +@PHYSICS_DECODER_REGISTRY.register("PowerFlow") +class PhysicsDecoderPF(nn.Module): + def forward(self, P_in, Q_in, bus_data_pred, bus_data_orig, agg_bus, mask_dict): + """ + PF decoder: + - Compute Pg at REF bus + - Compute Qg at PV + REF buses + - PQ buses: Pg = 0, Qg = 0 + - Return stacked tensor [Vm, Va, Pg, Qg] + """ + + # Masks + mask_pv = mask_dict["PV"] + mask_ref = mask_dict["REF"] + mask_pvref = mask_pv | mask_ref # Qg computed here + + # --- Shunt contributions --- + p_shunt, q_shunt = compute_shunt_power(bus_data_pred, bus_data_orig) + + # --- Loads --- + Pd = bus_data_orig[:, PD_H] + Qd = bus_data_orig[:, QD_H] + + # ====================== + # Qg (PV + REF) + # ====================== + Qg_new = torch.zeros_like(bus_data_orig[:, QG_H]) # PQ buses = 0 + Qg_new[mask_pvref] = Q_in[mask_pvref] + Qd[mask_pvref] - q_shunt[mask_pvref] + + # ====================== + # Pg (REF only) + # ====================== + Pg_new = torch.zeros_like(bus_data_orig[:, QG_H]) # PQ buses = 0 + Pg_new[mask_pv] = agg_bus[mask_pv] # PV: keep predicted + Pg_new[mask_ref] = ( + P_in[mask_ref] + Pd[mask_ref] - p_shunt[mask_ref] + ) # REF: balance + + # Voltages + Vm_out = bus_data_pred[:, VM_OUT] + Va_out = bus_data_pred[:, VA_OUT] + + # Stack into [num_buses, 4] -> [Vm, Va, Pg, Qg] + output = torch.stack([Vm_out, Va_out, Pg_new, Qg_new], dim=1) + + return output + + +@PHYSICS_DECODER_REGISTRY.register("StateEstimation") +class PhysicsDecoderSE(nn.Module): + def forward(self, P_in, Q_in, bus_data_pred, bus_data_orig, agg_bus, mask_dict): + p_shunt, q_shunt = compute_shunt_power(bus_data_pred, bus_data_orig) + Vm_out = bus_data_pred[:, VM_OUT] + Va_out = bus_data_pred[:, VA_OUT] + output = torch.stack([Vm_out, Va_out, P_in - p_shunt, Q_in - q_shunt], dim=1) + return output + + +class ComputeNodeResiduals(nn.Module): + """Compute net residuals per bus combining branch flows, generators, loads, and shunts.""" + + def forward(self, P_in, Q_in, bus_data_pred, bus_data_orig): + # Shunt contributions + p_shunt, q_shunt = compute_shunt_power(bus_data_pred, bus_data_orig) + + # Net residuals per bus + residual_P = bus_data_pred[:, PG_OUT] - bus_data_orig[:, PD_H] + p_shunt - P_in + residual_Q = bus_data_pred[:, QG_OUT] - bus_data_orig[:, QD_H] + q_shunt - Q_in + + return residual_P, residual_Q + + +def bound_with_sigmoid(pred, low, high): + return low + (high - low) * torch.sigmoid(pred) diff --git a/gridfm_graphkit/tasks/__init__.py b/gridfm_graphkit/tasks/__init__.py index e69de29..8ed9b13 100644 --- a/gridfm_graphkit/tasks/__init__.py +++ b/gridfm_graphkit/tasks/__init__.py @@ -0,0 +1,5 @@ +from gridfm_graphkit.tasks.pf_task import PowerFlowTask +from gridfm_graphkit.tasks.opf_task import OptimalPowerFlowTask +from gridfm_graphkit.tasks.se_task import StateEstimationTask + +__all__ = ["PowerFlowTask", "OptimalPowerFlowTask", "StateEstimationTask"] diff --git a/gridfm_graphkit/tasks/base_task.py b/gridfm_graphkit/tasks/base_task.py new file mode 100644 index 0000000..ec75ccc --- /dev/null +++ b/gridfm_graphkit/tasks/base_task.py @@ -0,0 +1,92 @@ +import os +from abc import ABC, abstractmethod +import lightning as L +from pytorch_lightning.utilities import rank_zero_only +from lightning.pytorch.loggers import MLFlowLogger +import torch +from torch.optim.lr_scheduler import ReduceLROnPlateau + + +class BaseTask(L.LightningModule, ABC): + """ + Abstract base LightningModule for feature reconstruction tasks. + Contains shared training/validation/test logic, logging, and optimizer setup. + """ + + def __init__(self, args, data_normalizers): + super().__init__() + self.args = args + self.data_normalizers = data_normalizers + self.save_hyperparameters() + + @abstractmethod + def forward(self, *args, **kwargs): + """Forward pass""" + pass + + @abstractmethod + def training_step(self, batch): + pass + + @abstractmethod + def validation_step(self, batch, batch_idx): + pass + + @abstractmethod + def test_step(self, batch, batch_idx, dataloader_idx=0): + pass + + @abstractmethod + def predict_step(self, batch, batch_idx, dataloader_idx=0): + pass + + @rank_zero_only + def on_fit_start(self): + # Save normalization statistics + if isinstance(self.logger, MLFlowLogger): + log_dir = os.path.join( + self.logger.save_dir, + self.logger.experiment_id, + self.logger.run_id, + "artifacts", + "stats", + ) + else: + log_dir = os.path.join(self.logger.save_dir, "stats") + + os.makedirs(log_dir, exist_ok=True) + + # Human-readable log + log_stats_path = os.path.join(log_dir, "normalization_stats.txt") + with open(log_stats_path, "w") as log_file: + for i, normalizer in enumerate(self.data_normalizers): + log_file.write( + f"Data Normalizer {self.args.data.networks[i]} stats:\n{normalizer.get_stats()}\n\n", + ) + + # Machine-loadable stats (one file per network, keyed by network name) + stats_dict = {} + for i, normalizer in enumerate(self.data_normalizers): + stats_dict[self.args.data.networks[i]] = normalizer.get_stats() + torch.save(stats_dict, os.path.join(log_dir, "normalizer_stats.pt")) + + def configure_optimizers(self): + self.optimizer = torch.optim.AdamW( + self.model.parameters(), + lr=self.args.optimizer.learning_rate, + betas=(self.args.optimizer.beta1, self.args.optimizer.beta2), + ) + self.scheduler = ReduceLROnPlateau( + self.optimizer, + mode="min", + factor=self.args.optimizer.lr_decay, + patience=self.args.optimizer.lr_patience, + ) + return { + "optimizer": self.optimizer, + "lr_scheduler": { + "scheduler": self.scheduler, + "monitor": "Validation loss", + "reduce_on_plateau": True, + }, + } diff --git a/gridfm_graphkit/tasks/compute_ac_dc_metrics.py b/gridfm_graphkit/tasks/compute_ac_dc_metrics.py new file mode 100644 index 0000000..8dcfc8c --- /dev/null +++ b/gridfm_graphkit/tasks/compute_ac_dc_metrics.py @@ -0,0 +1,227 @@ +"""Compute AC/DC power balance residuals and runtime statistics on test splits.""" + +import json +import os +import numpy as np +import pandas as pd +from gridfm_datakit.utils.power_balance import ( + compute_branch_powers_vectorized, + compute_bus_balance, +) + +N_SCENARIO_PER_PARTITION = 200 +NUM_PROCESSES = 64 + + +def _load_test_data(data_dir: str, test_scenario_ids: list[int]): + partitions = sorted(set(s // N_SCENARIO_PER_PARTITION for s in test_scenario_ids)) + test_set = set(test_scenario_ids) + partition_filter = [("scenario_partition", "in", partitions)] + + bus_df = pd.read_parquet( + os.path.join(data_dir, "bus_data.parquet"), + filters=partition_filter, + ) + branch_df = pd.read_parquet( + os.path.join(data_dir, "branch_data.parquet"), + filters=partition_filter, + ) + runtime_df = pd.read_parquet( + os.path.join(data_dir, "runtime_data.parquet"), + filters=partition_filter, + ) + + bus_df = bus_df[bus_df["scenario"].isin(test_set)].reset_index(drop=True) + branch_df = branch_df[branch_df["scenario"].isin(test_set)].reset_index(drop=True) + runtime_df = runtime_df[runtime_df["scenario"].isin(test_set)].reset_index( + drop=True, + ) + + print( + f" Loaded {len(bus_df)} bus rows, {len(branch_df)} branch rows, " + f"{len(runtime_df)} runtime rows for {len(test_set)} test scenarios", + ) + return bus_df, branch_df, runtime_df + + +def _compute_residual_stats(balance_df: pd.DataFrame, dc: bool) -> dict: + grouped = balance_df.groupby("scenario") + + if dc: + P_mis = balance_df["P_mis_dc"].to_numpy() + nan_scenarios = int(grouped["P_mis_dc"].apply(lambda x: x.isna().all()).sum()) + return { + "Avg. active res. (MW)": float(np.nanmean(np.abs(P_mis))), + "DC NaN scenarios": nan_scenarios, + } + + P_mis = balance_df["P_mis_ac"].to_numpy() + Q_mis = balance_df["Q_mis_ac"].to_numpy() + pbe = np.sqrt(P_mis**2 + Q_mis**2) + + pbe_per_scenario_mean = grouped.apply( + lambda g: np.nanmean( + np.sqrt(g["P_mis_ac"].to_numpy() ** 2 + g["Q_mis_ac"].to_numpy() ** 2), + ), + include_groups=False, + ) + + return { + "Avg. active res. (MW)": float(np.nanmean(np.abs(P_mis))), + "Avg. reactive res. (MVar)": float(np.nanmean(np.abs(Q_mis))), + "PBE Mean": float(np.nanmean(pbe_per_scenario_mean)), + "PBE Max": float(np.nanmax(pbe)), + } + + +def _compute_runtime_stats(runtime_df: pd.DataFrame) -> dict: + results = {} + for mode in ["ac", "dc"]: + if mode not in runtime_df.columns: + continue + + rt_ms = runtime_df[mode].to_numpy(dtype=float) * 1000.0 / NUM_PROCESSES + valid = rt_ms[~np.isnan(rt_ms)] + + results[f"runtime_{mode}_mean_ms_with_{NUM_PROCESSES}_cores"] = float( + np.mean(valid), + ) + results[f"runtime_{mode}_median_ms_with_{NUM_PROCESSES}_cores"] = float( + np.median(valid), + ) + results[f"runtime_{mode}_std_ms_with_{NUM_PROCESSES}_cores"] = float( + np.std(valid), + ) + results[f"runtime_{mode}_max_ms_with_{NUM_PROCESSES}_cores"] = float( + np.max(valid), + ) + + return results + + +def compute_ac_dc_metrics( + artifacts_dir: str, + data_dir: str, + grid_name: str, + sn_mva: float, +) -> bool: + """Compute AC/DC ground-truth power balance and runtime metrics, save results. + + Saves: + - Aggregated metrics (CSV) + - AC per-bus residuals (Parquet) + - DC per-bus residuals (Parquet) + + Returns: + True if metrics were computed, False if splits JSON was not found. + """ + + splits_json = os.path.join( + artifacts_dir, + "stats", + f"{grid_name}_scenario_splits.json", + ) + if not os.path.exists(splits_json): + print(f" Skipping: no splits JSON found at {splits_json}") + return False + + with open(splits_json) as f: + test_ids = json.load(f)["test"] + + print(f" Test split: {len(test_ids)} scenarios") + + bus_df, branch_df, runtime_df = _load_test_data(data_dir, test_ids) + + # ========================= + # AC residuals + # ========================= + print(" Computing AC power balance...") + balance_ac = compute_bus_balance( + bus_df, + branch_df, + branch_df[["pf", "qf", "pt", "qt"]], + dc=False, + sn_mva=sn_mva, + ) + + ac_stats = _compute_residual_stats(balance_ac, dc=False) + + # ========================= + # DC residuals + # ========================= + print(" Computing DC power balance...") + pf_dc, _, pt_dc, _ = compute_branch_powers_vectorized( + branch_df, + bus_df, + dc=True, + sn_mva=sn_mva, + ) + + balance_dc = compute_bus_balance( + bus_df, + branch_df, + pd.DataFrame( + {"pf_dc": pf_dc, "pt_dc": pt_dc}, + index=branch_df.index, + ), + dc=True, + sn_mva=sn_mva, + ) + + dc_stats = _compute_residual_stats(balance_dc, dc=True) + + # ========================= + # Save per-bus residuals (PARQUET) + # ========================= + out_dir = os.path.join(artifacts_dir, "test") + os.makedirs(out_dir, exist_ok=True) + + # AC: active + reactive + ac_bus_residuals = ( + balance_ac[["scenario", "bus", "P_mis_ac", "Q_mis_ac"]] + .copy() + .rename( + columns={ + "P_mis_ac": "active res. (MW)", + "Q_mis_ac": "reactive res. (MVar)", + }, + ) + ) + ac_residuals_path = os.path.join(out_dir, f"{grid_name}_ac_bus_residuals.parquet") + ac_bus_residuals.to_parquet(ac_residuals_path, index=False) + print(f" AC per-bus residuals saved to {ac_residuals_path}") + + # DC: active only + dc_bus_residuals = ( + balance_dc[["scenario", "bus", "P_mis_dc"]] + .copy() + .rename( + columns={ + "P_mis_dc": "DC active res. (MW)", + }, + ) + ) + + dc_residuals_path = os.path.join(out_dir, f"{grid_name}_dc_bus_residuals.parquet") + dc_bus_residuals.to_parquet(dc_residuals_path, index=False) + print(f" DC per-bus residuals saved to {dc_residuals_path}") + + # ========================= + # Save aggregated metrics (CSV) + # ========================= + runtime_stats = _compute_runtime_stats(runtime_df) + + rows = [] + for key, val in ac_stats.items(): + rows.append({"Metric": f"AC {key}", "Value": val}) + for key, val in dc_stats.items(): + rows.append({"Metric": f"DC {key}", "Value": val}) + for key, val in runtime_stats.items(): + rows.append({"Metric": key, "Value": val}) + + metrics_path = os.path.join(out_dir, f"{grid_name}_ac_dc_metrics.csv") + pd.DataFrame(rows).to_csv(metrics_path, index=False) + + print(f" Aggregated metrics saved to {metrics_path}") + + return True diff --git a/gridfm_graphkit/tasks/feature_reconstruction_task.py b/gridfm_graphkit/tasks/feature_reconstruction_task.py deleted file mode 100644 index cb6963b..0000000 --- a/gridfm_graphkit/tasks/feature_reconstruction_task.py +++ /dev/null @@ -1,358 +0,0 @@ -import torch -from torch.optim.lr_scheduler import ReduceLROnPlateau -import lightning as L -from pytorch_lightning.utilities import rank_zero_only -import numpy as np -import os -import pandas as pd - -from lightning.pytorch.loggers import MLFlowLogger -from gridfm_graphkit.io.param_handler import load_model, get_loss_function -import torch.nn.functional as F -from gridfm_graphkit.datasets.globals import PQ, PV, REF, PD, QD, PG, QG, VM, VA - - -class FeatureReconstructionTask(L.LightningModule): - """ - PyTorch Lightning task for node feature reconstruction on power grid graphs. - - This task wraps a GridFM model inside a LightningModule and defines the full - training, validation, testing, and prediction logic. It is designed to - reconstruct masked node features from graph-structured input data, using - datasets and normalizers provided by `gridfm-graphkit`. - - Args: - args (NestedNamespace): Experiment configuration. Expected fields include `training.batch_size`, `optimizer.*`, etc. - node_normalizers (list): One normalizer per dataset to (de)normalize node features. - edge_normalizers (list): One normalizer per dataset to (de)normalize edge features. - - Attributes: - model (torch.nn.Module): model loaded via `load_model`. - loss_fn (callable): Loss function resolved from configuration. - batch_size (int): Training batch size. From ``args.training.batch_size`` - node_normalizers (list): Dataset-wise node feature normalizers. - edge_normalizers (list): Dataset-wise edge feature normalizers. - - Methods: - forward(x, pe, edge_index, edge_attr, batch, mask=None): - Forward pass with optional feature masking. - training_step(batch): - One training step: computes loss, logs metrics, returns loss. - validation_step(batch, batch_idx): - One validation step: computes losses and logs metrics. - test_step(batch, batch_idx, dataloader_idx=0): - Evaluate on test data, compute per-node-type MSEs, and log per-dataset metrics. - predict_step(batch, batch_idx, dataloader_idx=0): - Run inference and return denormalized outputs + node masks. - configure_optimizers(): - Setup Adam optimizer and ReduceLROnPlateau scheduler. - on_fit_start(): - Save normalization statistics at the beginning of training. - on_test_end(): - Collect test metrics across datasets and export summary CSV reports. - - Notes: - - Node types are distinguished using the global constants (`PQ`, `PV`, `REF`). - - The datamodule must provide `batch.mask` for masking node features. - - Test metrics include per-node-type RMSE for [Pd, Qd, Pg, Qg, Vm, Va]. - - Reports are saved under `/test/.csv`. - - Example: - ```python - model = FeatureReconstructionTask(args, node_normalizers, edge_normalizers) - output = model(batch.x, batch.pe, batch.edge_index, batch.edge_attr, batch.batch) - ``` - """ - - def __init__(self, args, node_normalizers, edge_normalizers): - super().__init__() - self.model = load_model(args=args) - self.args = args - self.loss_fn = get_loss_function(args) - self.batch_size = int(args.training.batch_size) - self.node_normalizers = node_normalizers - self.edge_normalizers = edge_normalizers - self.save_hyperparameters() - - def forward(self, x, pe, edge_index, edge_attr, batch, mask=None): - if mask is not None: - mask_value_expanded = self.model.mask_value.expand(x.shape[0], -1) - x[:, : mask.shape[1]][mask] = mask_value_expanded[mask] - return self.model(x, pe, edge_index, edge_attr, batch) - - @rank_zero_only - def on_fit_start(self): - # Determine save path - if isinstance(self.logger, MLFlowLogger): - log_dir = os.path.join( - self.logger.save_dir, - self.logger.experiment_id, - self.logger.run_id, - "artifacts", - "stats", - ) - else: - log_dir = os.path.join(self.logger.save_dir, "stats") - - os.makedirs(log_dir, exist_ok=True) - log_stats_path = os.path.join(log_dir, "normalization_stats.txt") - - # Collect normalization stats - with open(log_stats_path, "w") as log_file: - for i, normalizer in enumerate(self.node_normalizers): - log_file.write( - f"Node Normalizer {self.args.data.networks[i]} stats:\n{normalizer.get_stats()}\n\n", - ) - - for i, normalizer in enumerate(self.edge_normalizers): - log_file.write( - f"Edge Normalizer {self.args.data.networks[i]} stats:\n{normalizer.get_stats()}\n\n", - ) - - def shared_step(self, batch): - output = self.forward( - x=batch.x, - pe=batch.pe, - edge_index=batch.edge_index, - edge_attr=batch.edge_attr, - batch=batch.batch, - mask=batch.mask, - ) - - loss_dict = self.loss_fn( - output, - batch.y, - batch.edge_index, - batch.edge_attr, - batch.mask, - ) - return output, loss_dict - - def training_step(self, batch): - _, loss_dict = self.shared_step(batch) - current_lr = self.optimizer.param_groups[0]["lr"] - metrics = {} - metrics["Training Loss"] = loss_dict["loss"].detach() - metrics["Learning Rate"] = current_lr - for metric, value in metrics.items(): - self.log( - metric, - value, - batch_size=batch.num_graphs, - sync_dist=True, - on_epoch=True, - prog_bar=True, - logger=True, - on_step=False, - ) - - return loss_dict["loss"] - - def validation_step(self, batch, batch_idx): - _, loss_dict = self.shared_step(batch) - loss_dict["loss"] = loss_dict["loss"].detach() - for metric, value in loss_dict.items(): - metric_name = f"Validation {metric}" - self.log( - metric_name, - value, - batch_size=batch.num_graphs, - sync_dist=True, - on_epoch=True, - prog_bar=True, - logger=True, - on_step=False, - ) - - return loss_dict["loss"] - - def test_step(self, batch, batch_idx, dataloader_idx=0): - output, loss_dict = self.shared_step(batch) - - dataset_name = self.args.data.networks[dataloader_idx] - - output_denorm = self.node_normalizers[dataloader_idx].inverse_transform(output) - target_denorm = self.node_normalizers[dataloader_idx].inverse_transform(batch.y) - - mask_PQ = batch.x[:, PQ] == 1 - mask_PV = batch.x[:, PV] == 1 - mask_REF = batch.x[:, REF] == 1 - - mse_PQ = F.mse_loss( - output_denorm[mask_PQ], - target_denorm[mask_PQ], - reduction="none", - ) - mse_PV = F.mse_loss( - output_denorm[mask_PV], - target_denorm[mask_PV], - reduction="none", - ) - mse_REF = F.mse_loss( - output_denorm[mask_REF], - target_denorm[mask_REF], - reduction="none", - ) - - mse_PQ = mse_PQ.mean(dim=0) - mse_PV = mse_PV.mean(dim=0) - mse_REF = mse_REF.mean(dim=0) - - loss_dict["MSE PQ nodes - PD"] = mse_PQ[PD] - loss_dict["MSE PV nodes - PD"] = mse_PV[PD] - loss_dict["MSE REF nodes - PD"] = mse_REF[PD] - - loss_dict["MSE PQ nodes - QD"] = mse_PQ[QD] - loss_dict["MSE PV nodes - QD"] = mse_PV[QD] - loss_dict["MSE REF nodes - QD"] = mse_REF[QD] - - loss_dict["MSE PQ nodes - PG"] = mse_PQ[PG] - loss_dict["MSE PV nodes - PG"] = mse_PV[PG] - loss_dict["MSE REF nodes - PG"] = mse_REF[PG] - - loss_dict["MSE PQ nodes - QG"] = mse_PQ[QG] - loss_dict["MSE PV nodes - QG"] = mse_PV[QG] - loss_dict["MSE REF nodes - QG"] = mse_REF[QG] - - loss_dict["MSE PQ nodes - VM"] = mse_PQ[VM] - loss_dict["MSE PV nodes - VM"] = mse_PV[VM] - loss_dict["MSE REF nodes - VM"] = mse_REF[VM] - - loss_dict["MSE PQ nodes - VA"] = mse_PQ[VA] - loss_dict["MSE PV nodes - VA"] = mse_PV[VA] - loss_dict["MSE REF nodes - VA"] = mse_REF[VA] - - loss_dict["Test loss"] = loss_dict.pop("loss").detach() - for metric, value in loss_dict.items(): - metric_name = f"{dataset_name}/{metric}" - if "p.u." in metric: - # Denormalize metrics expressed in p.u. - value *= self.node_normalizers[dataloader_idx].baseMVA - metric_name = metric_name.replace("in p.u.", "").strip() - self.log( - metric_name, - value, - batch_size=batch.num_graphs, - add_dataloader_idx=False, - sync_dist=True, - logger=False, - ) - return - - def predict_step(self, batch, batch_idx, dataloader_idx=0): - output, _ = self.shared_step(batch) - output_denorm = self.node_normalizers[dataloader_idx].inverse_transform(output) - - # Count buses and generate per-node scenario_id - bus_counts = batch.batch.unique(return_counts=True)[1] - scenario_ids = batch.scenario_id # shape: [num_graphs] - scenario_per_node = torch.cat( - [ - torch.full((count,), sid, dtype=torch.int32) - for count, sid in zip(bus_counts, scenario_ids) - ], - ) - - bus_numbers = np.concatenate([np.arange(count.item()) for count in bus_counts]) - - return { - "output": output_denorm.cpu().numpy(), - "scenario_id": scenario_per_node, - "bus_number": bus_numbers, - } - - @rank_zero_only - def on_test_end(self): - if isinstance(self.logger, MLFlowLogger): - artifact_dir = os.path.join( - self.logger.save_dir, - self.logger.experiment_id, - self.logger.run_id, - "artifacts", - ) - else: - artifact_dir = self.logger.save_dir - - final_metrics = self.trainer.callback_metrics - grouped_metrics = {} - - for full_key, value in final_metrics.items(): - try: - value = value.item() - except AttributeError: - pass - - if "/" in full_key: - dataset_name, metric = full_key.split("/", 1) - if dataset_name not in grouped_metrics: - grouped_metrics[dataset_name] = {} - grouped_metrics[dataset_name][metric] = value - - for dataset, metrics in grouped_metrics.items(): - rmse_PQ = [ - metrics.get(f"MSE PQ nodes - {label}", float("nan")) ** 0.5 - for label in ["PD", "QD", "PG", "QG", "VM", "VA"] - ] - rmse_PV = [ - metrics.get(f"MSE PV nodes - {label}", float("nan")) ** 0.5 - for label in ["PD", "QD", "PG", "QG", "VM", "VA"] - ] - rmse_REF = [ - metrics.get(f"MSE REF nodes - {label}", float("nan")) ** 0.5 - for label in ["PD", "QD", "PG", "QG", "VM", "VA"] - ] - - avg_active_res = metrics.get("Active Power Loss", " ") - avg_reactive_res = metrics.get("Reactive Power Loss", " ") - - data = { - "Metric": [ - "RMSE-PQ", - "RMSE-PV", - "RMSE-REF", - "Avg. active res. (MW)", - "Avg. reactive res. (MVar)", - ], - "Pd (MW)": [ - rmse_PQ[0], - rmse_PV[0], - rmse_REF[0], - avg_active_res, - avg_reactive_res, - ], - "Qd (MVar)": [rmse_PQ[1], rmse_PV[1], rmse_REF[1], " ", " "], - "Pg (MW)": [rmse_PQ[2], rmse_PV[2], rmse_REF[2], " ", " "], - "Qg (MVar)": [rmse_PQ[3], rmse_PV[3], rmse_REF[3], " ", " "], - "Vm (p.u.)": [rmse_PQ[4], rmse_PV[4], rmse_REF[4], " ", " "], - "Va (degree)": [rmse_PQ[5], rmse_PV[5], rmse_REF[5], " ", " "], - } - - df = pd.DataFrame(data) - - test_dir = os.path.join(artifact_dir, "test") - os.makedirs(test_dir, exist_ok=True) - csv_path = os.path.join(test_dir, f"{dataset}.csv") - df.to_csv(csv_path, index=False) - - def configure_optimizers(self): - self.optimizer = torch.optim.Adam( - self.model.parameters(), - lr=self.args.optimizer.learning_rate, - betas=(self.args.optimizer.beta1, self.args.optimizer.beta2), - ) - - self.scheduler = ReduceLROnPlateau( - self.optimizer, - mode="min", - factor=self.args.optimizer.lr_decay, - patience=self.args.optimizer.lr_patience, - ) - config_optim = { - "optimizer": self.optimizer, - "lr_scheduler": { - "scheduler": self.scheduler, - "monitor": "Validation loss", - "reduce_on_plateau": True, - }, - } - return config_optim diff --git a/gridfm_graphkit/tasks/opf_task.py b/gridfm_graphkit/tasks/opf_task.py new file mode 100644 index 0000000..b28c5a0 --- /dev/null +++ b/gridfm_graphkit/tasks/opf_task.py @@ -0,0 +1,485 @@ +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + QG_H, + VM_H, + VA_H, + MIN_QG_H, + MAX_QG_H, + # Output feature indices + VM_OUT, + VA_OUT, + PG_OUT, + QG_OUT, + # Generator feature indices + PG_H, + C0_H, + C1_H, + C2_H, + # Edge feature indices + ANG_MIN, + ANG_MAX, + RATE_A, +) + +from gridfm_graphkit.tasks.reconstruction_tasks import ReconstructionTask +from gridfm_graphkit.io.registries import TASK_REGISTRY +from gridfm_graphkit.tasks.utils import ( + plot_correlation_by_node_type, + plot_residuals_histograms, + residual_stats_by_type, +) +from pytorch_lightning.utilities import rank_zero_only +import torch +import torch.nn.functional as F +from torch_scatter import scatter_add +from gridfm_graphkit.models.utils import ( + ComputeBranchFlow, + ComputeNodeInjection, + ComputeNodeResiduals, +) +import matplotlib.pyplot as plt +import seaborn as sns +from lightning.pytorch.loggers import MLFlowLogger +import numpy as np +import os +import pandas as pd + + +@TASK_REGISTRY.register("OptimalPowerFlow") +class OptimalPowerFlowTask(ReconstructionTask): + """ + Concrete Optimal Power Flow task. + Extends ReconstructionTask and adds OPF-specific metrics. + """ + + def __init__(self, args, data_normalizers): + super().__init__(args, data_normalizers) + + def test_step(self, batch, batch_idx, dataloader_idx=0): + output, loss_dict = self.shared_step(batch) + dataset_name = self.args.data.networks[dataloader_idx] + + self.data_normalizers[dataloader_idx].inverse_transform(batch) + self.data_normalizers[dataloader_idx].inverse_output(output, batch) + + branch_flow_layer = ComputeBranchFlow() + node_injection_layer = ComputeNodeInjection() + node_residuals_layer = ComputeNodeResiduals() + + num_bus = batch.x_dict["bus"].size(0) + bus_edge_index = batch.edge_index_dict[("bus", "connects", "bus")] + bus_edge_attr = batch.edge_attr_dict[("bus", "connects", "bus")] + _, gen_to_bus_index = batch.edge_index_dict[("gen", "connected_to", "bus")] + + mse_PG = F.mse_loss( + output["gen"], + batch.y_dict["gen"], + reduction="none", + ).mean(dim=0) + c0 = batch.x_dict["gen"][:, C0_H] + c1 = batch.x_dict["gen"][:, C1_H] + c2 = batch.x_dict["gen"][:, C2_H] + target_pg = batch.y_dict["gen"].squeeze() + pred_pg = output["gen"].squeeze() + gen_cost_gt = c0 + c1 * target_pg + c2 * target_pg**2 + gen_cost_pred = c0 + c1 * pred_pg + c2 * pred_pg**2 + + gen_batch = batch.batch_dict["gen"] # shape: [N_gen_total] + + cost_gt = scatter_add(gen_cost_gt, gen_batch, dim=0) + cost_pred = scatter_add(gen_cost_pred, gen_batch, dim=0) + + optimality_gap = torch.mean(torch.abs((cost_pred - cost_gt) / cost_gt * 100)) + + agg_gen_on_bus = scatter_add( + batch.y_dict["gen"], + gen_to_bus_index, + dim=0, + dim_size=num_bus, + ) + # output_agg = torch.cat([batch.y_dict["bus"], agg_gen_on_bus], dim=1) + target = torch.stack( + [ + batch.y_dict["bus"][:, VM_H], + batch.y_dict["bus"][:, VA_H], + agg_gen_on_bus.squeeze(), + batch.y_dict["bus"][:, QG_H], + ], + dim=1, + ) + + # UN-COMMENT THIS TO CHECK PBE ON GROUND TRUTH + # output["bus"] = target + + Pft, Qft = branch_flow_layer(output["bus"], bus_edge_index, bus_edge_attr) + # Compute branch termal limits violations + Sft = torch.sqrt(Pft**2 + Qft**2) # apparent power flow per branch + branch_thermal_limits = bus_edge_attr[:, RATE_A] + branch_thermal_excess = F.relu(Sft - branch_thermal_limits) + + num_edges = bus_edge_index.size(1) + half_edges = num_edges // 2 + forward_excess = branch_thermal_excess[:half_edges] + reverse_excess = branch_thermal_excess[half_edges:] + + mean_thermal_violation_forward = torch.mean(forward_excess) + mean_thermal_violation_reverse = torch.mean(reverse_excess) + + # Compute branch angle difference violation + angle_min = bus_edge_attr[:, ANG_MIN] + angle_max = bus_edge_attr[:, ANG_MAX] + + bus_angles = output["bus"][:, VA_OUT] # in degrees + from_bus = bus_edge_index[0] + to_bus = bus_edge_index[1] + angle_diff = torch.abs(bus_angles[from_bus] - bus_angles[to_bus]) + + angle_excess_low = F.relu(angle_min - angle_diff) # violation if too small + angle_excess_high = F.relu(angle_diff - angle_max) # violation if too large + branch_angle_violation_mean = ( + torch.mean(angle_excess_low + angle_excess_high) * 180.0 / torch.pi + ) + + P_in, Q_in = node_injection_layer(Pft, Qft, bus_edge_index, num_bus) + residual_P, residual_Q = node_residuals_layer( + P_in, + Q_in, + output["bus"], + batch.x_dict["bus"], + ) + + # --- Qg limit violation mask --- + Qg_pred = output["bus"][:, QG_OUT] + Qg_max = batch.x_dict["bus"][:, MAX_QG_H] + Qg_min = batch.x_dict["bus"][:, MIN_QG_H] + + mask_Qg_violation = (Qg_pred > Qg_max) | (Qg_pred < Qg_min) + + bus_batch = batch.batch_dict["bus"] # shape: [num_bus_total] + + mask_PQ = batch.mask_dict["PQ"] # PQ buses + mask_PV = batch.mask_dict["PV"] # PV buses + mask_REF = batch.mask_dict["REF"] # Reference buses + + Qg_over = F.relu(Qg_pred - Qg_max) # amount above max limit + Qg_under = F.relu(Qg_min - Qg_pred) # amount below min limit + Qg_violation_amount = Qg_over + Qg_under + + mean_Qg_violation_PV = Qg_violation_amount[mask_PV].mean() + mean_Qg_violation_REF = Qg_violation_amount[mask_REF].mean() + + if self.args.verbose: + mean_res_P_PQ, max_res_P_PQ = residual_stats_by_type( + residual_P, + mask_PQ, + bus_batch, + ) + mean_res_Q_PQ, max_res_Q_PQ = residual_stats_by_type( + residual_Q, + mask_PQ, + bus_batch, + ) + + mean_res_P_PV, max_res_P_PV = residual_stats_by_type( + residual_P, + mask_PV, + bus_batch, + ) + mean_res_Q_PV, max_res_Q_PV = residual_stats_by_type( + residual_Q, + mask_PV, + bus_batch, + ) + + mean_res_P_REF, max_res_P_REF = residual_stats_by_type( + residual_P, + mask_REF, + bus_batch, + ) + mean_res_Q_REF, max_res_Q_REF = residual_stats_by_type( + residual_Q, + mask_REF, + bus_batch, + ) + self.test_outputs[dataloader_idx].append( + { + "dataset": dataset_name, + "pred": output["bus"].detach().cpu(), + "target": target.detach().cpu(), + "mask_PQ": mask_PQ.cpu(), + "mask_PV": mask_PV.cpu(), + "mask_REF": mask_REF.cpu(), + "cost_predicted": cost_pred.detach().cpu(), + "cost_ground_truth": cost_gt.detach().cpu(), + "mean_residual_P_PQ": mean_res_P_PQ.detach().cpu(), + "max_residual_P_PQ": max_res_P_PQ.detach().cpu(), + "mean_residual_Q_PQ": mean_res_Q_PQ.detach().cpu(), + "max_residual_Q_PQ": max_res_Q_PQ.detach().cpu(), + "mean_residual_P_PV": mean_res_P_PV.detach().cpu(), + "max_residual_P_PV": max_res_P_PV.detach().cpu(), + "mean_residual_Q_PV": mean_res_Q_PV.detach().cpu(), + "max_residual_Q_PV": max_res_Q_PV.detach().cpu(), + "mean_residual_P_REF": mean_res_P_REF.detach().cpu(), + "max_residual_P_REF": max_res_P_REF.detach().cpu(), + "mean_residual_Q_REF": mean_res_Q_REF.detach().cpu(), + "max_residual_Q_REF": max_res_Q_REF.detach().cpu(), + "mask_Qg_violation": mask_Qg_violation.detach().cpu(), + }, + ) + + final_residual_real_bus = torch.mean(torch.abs(residual_P)) + final_residual_imag_bus = torch.mean(torch.abs(residual_Q)) + + loss_dict["Active Power Loss"] = final_residual_real_bus.detach() + loss_dict["Reactive Power Loss"] = final_residual_imag_bus.detach() + + mse_PQ = F.mse_loss( + output["bus"][mask_PQ], + target[mask_PQ], + reduction="none", + ) + mse_PV = F.mse_loss( + output["bus"][mask_PV], + target[mask_PV], + reduction="none", + ) + mse_REF = F.mse_loss( + output["bus"][mask_REF], + target[mask_REF], + reduction="none", + ) + + mse_PQ = mse_PQ.mean(dim=0) + mse_PV = mse_PV.mean(dim=0) + mse_REF = mse_REF.mean(dim=0) + + loss_dict["Opt gap"] = optimality_gap + loss_dict["MSE PG"] = mse_PG[PG_H] + + loss_dict["Branch termal violation from"] = mean_thermal_violation_forward + loss_dict["Branch termal violation to"] = mean_thermal_violation_reverse + loss_dict["Branch voltage angle difference violations"] = ( + branch_angle_violation_mean + ) + loss_dict["Mean Qg violation PV buses"] = mean_Qg_violation_PV + loss_dict["Mean Qg violation REF buses"] = mean_Qg_violation_REF + + loss_dict["MSE PQ nodes - PG"] = mse_PQ[PG_OUT] + loss_dict["MSE PV nodes - PG"] = mse_PV[PG_OUT] + loss_dict["MSE REF nodes - PG"] = mse_REF[PG_OUT] + + loss_dict["MSE PQ nodes - QG"] = mse_PQ[QG_OUT] + loss_dict["MSE PV nodes - QG"] = mse_PV[QG_OUT] + loss_dict["MSE REF nodes - QG"] = mse_REF[QG_OUT] + + loss_dict["MSE PQ nodes - VM"] = mse_PQ[VM_OUT] + loss_dict["MSE PV nodes - VM"] = mse_PV[VM_OUT] + loss_dict["MSE REF nodes - VM"] = mse_REF[VM_OUT] + + loss_dict["MSE PQ nodes - VA"] = mse_PQ[VA_OUT] + loss_dict["MSE PV nodes - VA"] = mse_PV[VA_OUT] + loss_dict["MSE REF nodes - VA"] = mse_REF[VA_OUT] + + loss_dict["Test loss"] = loss_dict.pop("loss").detach() + for metric, value in loss_dict.items(): + metric_name = f"{dataset_name}/{metric}" + self.log( + metric_name, + value, + batch_size=batch.num_graphs, + add_dataloader_idx=False, + sync_dist=True, + logger=False, + ) + return + + @rank_zero_only + def on_test_end(self): + if isinstance(self.logger, MLFlowLogger): + artifact_dir = os.path.join( + self.logger.save_dir, + self.logger.experiment_id, + self.logger.run_id, + "artifacts", + ) + else: + artifact_dir = self.logger.save_dir + + final_metrics = self.trainer.callback_metrics + grouped_metrics = {} + + for full_key, value in final_metrics.items(): + try: + value = value.item() + except AttributeError: + pass + + if "/" in full_key: + dataset_name, metric = full_key.split("/", 1) + if dataset_name not in grouped_metrics: + grouped_metrics[dataset_name] = {} + grouped_metrics[dataset_name][metric] = value + + for dataset, metrics in grouped_metrics.items(): + # RMSE metrics + rmse_PQ = [ + metrics.get(f"MSE PQ nodes - {label}", float("nan")) ** 0.5 + for label in ["PG", "QG", "VM", "VA"] + ] + rmse_PV = [ + metrics.get(f"MSE PV nodes - {label}", float("nan")) ** 0.5 + for label in ["PG", "QG", "VM", "VA"] + ] + rmse_REF = [ + metrics.get(f"MSE REF nodes - {label}", float("nan")) ** 0.5 + for label in ["PG", "QG", "VM", "VA"] + ] + + # Residuals and generator metrics + avg_active_res = metrics.get("Active Power Loss", " ") + avg_reactive_res = metrics.get("Reactive Power Loss", " ") + rmse_gen = metrics.get("MSE PG", 0) ** 0.5 + optimality_gap = metrics.get("Opt gap", " ") + branch_thermal_violation_from = metrics.get( + "Branch termal violation from", + " ", + ) + branch_thermal_violation_to = metrics.get("Branch termal violation to", " ") + branch_angle_violation = metrics.get( + "Branch voltage angle difference violations", + " ", + ) + mean_qg_violation_PV_buses = metrics.get("Mean Qg violation PV buses", " ") + mean_qg_violation_REF_buses = metrics.get( + "Mean Qg violation REF buses", + " ", + ) + + # --- Main RMSE metrics file --- + data_main = { + "Metric": ["RMSE-PQ", "RMSE-PV", "RMSE-REF"], + "Pg (MW)": [rmse_PQ[0], rmse_PV[0], rmse_REF[0]], + "Qg (MVar)": [rmse_PQ[1], rmse_PV[1], rmse_REF[1]], + "Vm (p.u.)": [rmse_PQ[2], rmse_PV[2], rmse_REF[2]], + "Va (radians)": [rmse_PQ[3], rmse_PV[3], rmse_REF[3]], + } + df_main = pd.DataFrame(data_main) + + # --- Residuals / generator metrics file --- + data_residuals = { + "Metric": [ + "Avg. active res. (MW)", + "Avg. reactive res. (MVar)", + "RMSE PG generators (MW)", + "Mean optimality gap (%)", + "Mean branch termal violation from (MVA)", + "Mean branch termal violation to (MVA)", + "Mean branch angle difference violation (radians)", + "Mean Qg violation PV buses", + "Mean Qg violation REF buses", + ], + "Value": [ + avg_active_res, + avg_reactive_res, + rmse_gen, + optimality_gap, + branch_thermal_violation_from, + branch_thermal_violation_to, + branch_angle_violation, + mean_qg_violation_PV_buses, + mean_qg_violation_REF_buses, + ], + } + df_residuals = pd.DataFrame(data_residuals) + + # --- Save CSVs --- + test_dir = os.path.join(artifact_dir, "test") + os.makedirs(test_dir, exist_ok=True) + + main_csv_path = os.path.join(test_dir, f"{dataset}_RMSE.csv") + residuals_csv_path = os.path.join(test_dir, f"{dataset}_metrics.csv") + + df_main.to_csv(main_csv_path, index=False) + df_residuals.to_csv(residuals_csv_path, index=False) + + if self.args.verbose: + for dataset_idx, outputs in self.test_outputs.items(): + dataset_name = self.args.data.networks[dataset_idx] + + plot_dir = os.path.join(artifact_dir, "test_plots", dataset_name) + os.makedirs(plot_dir, exist_ok=True) + + # Concatenate predictions and targets across all batches + all_preds = torch.cat([d["pred"] for d in outputs]) + all_targets = torch.cat([d["target"] for d in outputs]) + all_masks = { + "PQ": torch.cat([d["mask_PQ"] for d in outputs]), + "PV": torch.cat([d["mask_PV"] for d in outputs]), + "REF": torch.cat([d["mask_REF"] for d in outputs]), + } + all_cost_pred = torch.cat([d["cost_predicted"] for d in outputs]) + all_cost_ground_truth = torch.cat( + [d["cost_ground_truth"] for d in outputs], + ) + + # Convert to numpy for plotting + y_pred = all_cost_pred.numpy() + y_true = all_cost_ground_truth.numpy() + + # Compute correlation coefficient + corr = np.corrcoef(y_true, y_pred)[0, 1] + + # Create scatter plot + plt.figure(figsize=(6, 6)) + sns.scatterplot(x=y_true, y=y_pred, s=20, alpha=0.6) + + # Add y=x reference line + min_val = min(y_true.min(), y_pred.min()) + max_val = max(y_true.max(), y_pred.max()) + plt.plot( + [min_val, max_val], + [min_val, max_val], + "k--", + linewidth=1.0, + alpha=0.7, + ) + + # Add correlation coefficient text + plt.text( + 0.05, + 0.95, + f"R = {corr:.3f}", + transform=plt.gca().transAxes, + fontsize=12, + verticalalignment="top", + bbox=dict(facecolor="white", alpha=0.6), + ) + + plt.xlabel("Ground Truth Cost") + plt.ylabel("Predicted Cost") + plt.title(f"{dataset_name} – Predicted vs Ground Truth Cost") + plt.tight_layout() + plt.savefig( + os.path.join(plot_dir, f"{dataset_name}_objective.png"), + dpi=300, + ) + plt.close() + + plot_residuals_histograms(outputs, dataset_name, plot_dir) + + plot_correlation_by_node_type( + preds=all_preds, + targets=all_targets, + masks=all_masks, + feature_labels=["Vm", "Va", "Pg", "Qg"], + plot_dir=plot_dir, + prefix=dataset_name, + qg_violation_mask=torch.cat( + [d["mask_Qg_violation"] for d in outputs], + ), + ) + + self.test_outputs.clear() + + def predict_step(self, batch, batch_idx, dataloader_idx=0): + raise NotImplementedError diff --git a/gridfm_graphkit/tasks/pf_task.py b/gridfm_graphkit/tasks/pf_task.py new file mode 100644 index 0000000..cdc9d64 --- /dev/null +++ b/gridfm_graphkit/tasks/pf_task.py @@ -0,0 +1,421 @@ +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + PD_H, + QD_H, + QG_H, + VM_H, + VA_H, + # Output feature indices + VM_OUT, + VA_OUT, + PG_OUT, + QG_OUT, +) + +from gridfm_graphkit.tasks.reconstruction_tasks import ReconstructionTask +from gridfm_graphkit.io.registries import TASK_REGISTRY +from gridfm_graphkit.tasks.utils import ( + plot_correlation_by_node_type, + plot_residuals_histograms, + residual_stats_by_type, +) +import torch +import torch.distributed as dist +import torch.nn.functional as F +from torch_scatter import scatter_add +from torch_geometric.nn import global_mean_pool +from gridfm_graphkit.models.utils import ( + ComputeBranchFlow, + ComputeNodeInjection, + ComputeNodeResiduals, +) +from lightning.pytorch.loggers import MLFlowLogger +import os +import pandas as pd + + +@TASK_REGISTRY.register("PowerFlow") +class PowerFlowTask(ReconstructionTask): + """ + Concrete Optimal Power Flow task. + Extends ReconstructionTask and adds OPF-specific metrics. + """ + + def __init__(self, args, data_normalizers): + super().__init__(args, data_normalizers) + + def test_step(self, batch, batch_idx, dataloader_idx=0): + output, loss_dict = self.shared_step(batch) + dataset_name = self.args.data.networks[dataloader_idx] + + self.data_normalizers[dataloader_idx].inverse_transform(batch) + self.data_normalizers[dataloader_idx].inverse_output(output, batch) + + branch_flow_layer = ComputeBranchFlow() + node_injection_layer = ComputeNodeInjection() + node_residuals_layer = ComputeNodeResiduals() + + num_bus = batch.x_dict["bus"].size(0) + bus_edge_index = batch.edge_index_dict[("bus", "connects", "bus")] + bus_edge_attr = batch.edge_attr_dict[("bus", "connects", "bus")] + _, gen_to_bus_index = batch.edge_index_dict[("gen", "connected_to", "bus")] + + agg_gen_on_bus = scatter_add( + batch.y_dict["gen"], + gen_to_bus_index, + dim=0, + dim_size=num_bus, + ) + # output_agg = torch.cat([batch.y_dict["bus"], agg_gen_on_bus], dim=1) + target = torch.stack( + [ + batch.y_dict["bus"][:, VM_H], + batch.y_dict["bus"][:, VA_H], + agg_gen_on_bus.squeeze(), + batch.y_dict["bus"][:, QG_H], + ], + dim=1, + ) + + # UN-COMMENT THIS TO CHECK PBE ON GROUND TRUTH + # output["bus"] = target + + Pft, Qft = branch_flow_layer(output["bus"], bus_edge_index, bus_edge_attr) + P_in, Q_in = node_injection_layer(Pft, Qft, bus_edge_index, num_bus) + residual_P, residual_Q = node_residuals_layer( + P_in, + Q_in, + output["bus"], + batch.x_dict["bus"], + ) + + bus_batch = batch.batch_dict["bus"] # shape: [num_bus_total] + + mask_PQ = batch.mask_dict["PQ"] # PQ buses + mask_PV = batch.mask_dict["PV"] # PV buses + mask_REF = batch.mask_dict["REF"] # Reference buses + + if self.args.verbose: + mean_res_P_PQ, max_res_P_PQ = residual_stats_by_type( + residual_P, + mask_PQ, + bus_batch, + ) + mean_res_Q_PQ, max_res_Q_PQ = residual_stats_by_type( + residual_Q, + mask_PQ, + bus_batch, + ) + + mean_res_P_PV, max_res_P_PV = residual_stats_by_type( + residual_P, + mask_PV, + bus_batch, + ) + mean_res_Q_PV, max_res_Q_PV = residual_stats_by_type( + residual_Q, + mask_PV, + bus_batch, + ) + + mean_res_P_REF, max_res_P_REF = residual_stats_by_type( + residual_P, + mask_REF, + bus_batch, + ) + mean_res_Q_REF, max_res_Q_REF = residual_stats_by_type( + residual_Q, + mask_REF, + bus_batch, + ) + self.test_outputs[dataloader_idx].append( + { + "dataset": dataset_name, + "pred": output["bus"].detach().cpu(), + "target": target.detach().cpu(), + "mask_PQ": mask_PQ.cpu(), + "mask_PV": mask_PV.cpu(), + "mask_REF": mask_REF.cpu(), + "mean_residual_P_PQ": mean_res_P_PQ.detach().cpu(), + "max_residual_P_PQ": max_res_P_PQ.detach().cpu(), + "mean_residual_Q_PQ": mean_res_Q_PQ.detach().cpu(), + "max_residual_Q_PQ": max_res_Q_PQ.detach().cpu(), + "mean_residual_P_PV": mean_res_P_PV.detach().cpu(), + "max_residual_P_PV": max_res_P_PV.detach().cpu(), + "mean_residual_Q_PV": mean_res_Q_PV.detach().cpu(), + "max_residual_Q_PV": max_res_Q_PV.detach().cpu(), + "mean_residual_P_REF": mean_res_P_REF.detach().cpu(), + "max_residual_P_REF": max_res_P_REF.detach().cpu(), + "mean_residual_Q_REF": mean_res_Q_REF.detach().cpu(), + "max_residual_Q_REF": max_res_Q_REF.detach().cpu(), + }, + ) + + final_residual_real_bus = torch.mean(torch.abs(residual_P)) + final_residual_imag_bus = torch.mean(torch.abs(residual_Q)) + + loss_dict["Active Power Loss"] = final_residual_real_bus.detach() + loss_dict["Reactive Power Loss"] = final_residual_imag_bus.detach() + + # Power Balance Error (PBE) metrics + delta_PQ_2 = residual_P**2 + residual_Q**2 + delta_PQ_magn = torch.sqrt(delta_PQ_2) + pbe_mean_per_graph = global_mean_pool(delta_PQ_magn, bus_batch) # [num_graphs] + pbe_mean = pbe_mean_per_graph.mean() + pbe_max = delta_PQ_magn.max() + + loss_dict["PBE Mean"] = pbe_mean.detach() + + mse_PQ = F.mse_loss( + output["bus"][mask_PQ], + target[mask_PQ], + reduction="none", + ) + mse_PV = F.mse_loss( + output["bus"][mask_PV], + target[mask_PV], + reduction="none", + ) + mse_REF = F.mse_loss( + output["bus"][mask_REF], + target[mask_REF], + reduction="none", + ) + + mse_PQ = mse_PQ.mean(dim=0) + mse_PV = mse_PV.mean(dim=0) + mse_REF = mse_REF.mean(dim=0) + + loss_dict["MSE PQ nodes - PG"] = mse_PQ[PG_OUT] + loss_dict["MSE PV nodes - PG"] = mse_PV[PG_OUT] + loss_dict["MSE REF nodes - PG"] = mse_REF[PG_OUT] + + loss_dict["MSE PQ nodes - QG"] = mse_PQ[QG_OUT] + loss_dict["MSE PV nodes - QG"] = mse_PV[QG_OUT] + loss_dict["MSE REF nodes - QG"] = mse_REF[QG_OUT] + + loss_dict["MSE PQ nodes - VM"] = mse_PQ[VM_OUT] + loss_dict["MSE PV nodes - VM"] = mse_PV[VM_OUT] + loss_dict["MSE REF nodes - VM"] = mse_REF[VM_OUT] + + loss_dict["MSE PQ nodes - VA"] = mse_PQ[VA_OUT] + loss_dict["MSE PV nodes - VA"] = mse_PV[VA_OUT] + loss_dict["MSE REF nodes - VA"] = mse_REF[VA_OUT] + + loss_dict["Test loss"] = loss_dict.pop("loss").detach() + for metric, value in loss_dict.items(): + metric_name = f"{dataset_name}/{metric}" + self.log( + metric_name, + value, + batch_size=batch.num_graphs, + add_dataloader_idx=False, + sync_dist=True, + logger=False, + ) + # Log PBE Max separately with max reduction across batches + self.log( + f"{dataset_name}/PBE Max", + pbe_max.detach(), + batch_size=batch.num_graphs, + add_dataloader_idx=False, + sync_dist=True, + logger=False, + reduce_fx="max", + ) + return + + def on_test_end(self): + # In DDP, gather verbose test outputs from all ranks to rank 0 + # so that plots and detailed analysis cover the full test set. + if self.args.verbose and dist.is_available() and dist.is_initialized(): + world_size = dist.get_world_size() + gathered = [None] * world_size if dist.get_rank() == 0 else None + dist.gather_object(self.test_outputs, gathered, dst=0) + if dist.get_rank() == 0: + merged = {i: [] for i in range(len(self.args.data.networks))} + for rank_data in gathered: + for dl_idx, batches in rank_data.items(): + merged[dl_idx].extend(batches) + self.test_outputs = merged + + # Only rank 0 proceeds with logging, CSV writing, and plotting + if dist.is_available() and dist.is_initialized() and dist.get_rank() != 0: + return + + if isinstance(self.logger, MLFlowLogger): + artifact_dir = os.path.join( + self.logger.save_dir, + self.logger.experiment_id, + self.logger.run_id, + "artifacts", + ) + else: + artifact_dir = self.logger.save_dir + + final_metrics = self.trainer.callback_metrics + grouped_metrics = {} + + for full_key, value in final_metrics.items(): + try: + value = value.item() + except AttributeError: + pass + + if "/" in full_key: + dataset_name, metric = full_key.split("/", 1) + if dataset_name not in grouped_metrics: + grouped_metrics[dataset_name] = {} + grouped_metrics[dataset_name][metric] = value + + for dataset, metrics in grouped_metrics.items(): + # RMSE metrics + rmse_PQ = [ + metrics.get(f"MSE PQ nodes - {label}", float("nan")) ** 0.5 + for label in ["PG", "QG", "VM", "VA"] + ] + rmse_PV = [ + metrics.get(f"MSE PV nodes - {label}", float("nan")) ** 0.5 + for label in ["PG", "QG", "VM", "VA"] + ] + rmse_REF = [ + metrics.get(f"MSE REF nodes - {label}", float("nan")) ** 0.5 + for label in ["PG", "QG", "VM", "VA"] + ] + + # Residuals and generator metrics + avg_active_res = metrics.get("Active Power Loss", " ") + avg_reactive_res = metrics.get("Reactive Power Loss", " ") + pbe_mean_val = metrics.get("PBE Mean", " ") + pbe_max_val = metrics.get("PBE Max", " ") + + # --- Main RMSE metrics file --- + data_main = { + "Metric": ["RMSE-PQ", "RMSE-PV", "RMSE-REF"], + "Pg (MW)": [rmse_PQ[0], rmse_PV[0], rmse_REF[0]], + "Qg (MVar)": [rmse_PQ[1], rmse_PV[1], rmse_REF[1]], + "Vm (p.u.)": [rmse_PQ[2], rmse_PV[2], rmse_REF[2]], + "Va (radians)": [rmse_PQ[3], rmse_PV[3], rmse_REF[3]], + } + df_main = pd.DataFrame(data_main) + + # --- Residuals / generator metrics file --- + data_residuals = { + "Metric": [ + "Avg. active res. (MW)", + "Avg. reactive res. (MVar)", + "PBE Mean", + "PBE Max", + ], + "Value": [avg_active_res, avg_reactive_res, pbe_mean_val, pbe_max_val], + } + df_residuals = pd.DataFrame(data_residuals) + + # --- Save CSVs --- + test_dir = os.path.join(artifact_dir, "test") + os.makedirs(test_dir, exist_ok=True) + + main_csv_path = os.path.join(test_dir, f"{dataset}_RMSE.csv") + residuals_csv_path = os.path.join(test_dir, f"{dataset}_metrics.csv") + + df_main.to_csv(main_csv_path, index=False) + df_residuals.to_csv(residuals_csv_path, index=False) + + if self.args.verbose: + for dataset_idx, outputs in self.test_outputs.items(): + dataset_name = self.args.data.networks[dataset_idx] + + plot_dir = os.path.join(artifact_dir, "test_plots", dataset_name) + os.makedirs(plot_dir, exist_ok=True) + + # Concatenate predictions and targets across all batches + all_preds = torch.cat([d["pred"] for d in outputs]) + all_targets = torch.cat([d["target"] for d in outputs]) + all_masks = { + "PQ": torch.cat([d["mask_PQ"] for d in outputs]), + "PV": torch.cat([d["mask_PV"] for d in outputs]), + "REF": torch.cat([d["mask_REF"] for d in outputs]), + } + + plot_residuals_histograms(outputs, dataset_name, plot_dir) + + plot_correlation_by_node_type( + preds=all_preds, + targets=all_targets, + masks=all_masks, + feature_labels=["Vm", "Va", "Pg", "Qg"], + plot_dir=plot_dir, + prefix=dataset_name, + ) + + self.test_outputs.clear() + + def predict_step(self, batch, batch_idx, dataloader_idx=0): + output, _ = self.shared_step(batch) + + self.data_normalizers[dataloader_idx].inverse_transform(batch) + self.data_normalizers[dataloader_idx].inverse_output(output, batch) + + branch_flow_layer = ComputeBranchFlow() + node_injection_layer = ComputeNodeInjection() + node_residuals_layer = ComputeNodeResiduals() + + num_bus = batch.x_dict["bus"].size(0) + bus_edge_index = batch.edge_index_dict[("bus", "connects", "bus")] + bus_edge_attr = batch.edge_attr_dict[("bus", "connects", "bus")] + + Pft, Qft = branch_flow_layer(output["bus"], bus_edge_index, bus_edge_attr) + P_in, Q_in = node_injection_layer(Pft, Qft, bus_edge_index, num_bus) + residual_P, residual_Q = node_residuals_layer( + P_in, + Q_in, + output["bus"], + batch.x_dict["bus"], + ) + residual_P = torch.abs(residual_P) + residual_Q = torch.abs(residual_Q) + residual_mva = torch.sqrt(residual_P**2 + residual_Q**2) + + bus_batch = batch.batch_dict["bus"] + scenario_ids = batch["scenario_id"][bus_batch] + local_bus_idx = torch.cat( + [ + torch.arange(c, device=bus_batch.device) + for c in torch.bincount(bus_batch) + ], + ) + + bus_x = batch.x_dict["bus"] + bus_y = batch.y_dict["bus"] + mask_PQ = batch.mask_dict["PQ"] + mask_PV = batch.mask_dict["PV"] + mask_REF = batch.mask_dict["REF"] + + _, gen_to_bus_index = batch.edge_index_dict[("gen", "connected_to", "bus")] + agg_gen_on_bus = scatter_add( + batch.y_dict["gen"], + gen_to_bus_index, + dim=0, + dim_size=num_bus, + ) + + return { + "scenario": scenario_ids.cpu().numpy(), + "bus": local_bus_idx.cpu().numpy(), + "pd_mw": bus_x[:, PD_H].cpu().numpy(), + "qd_mvar": bus_x[:, QD_H].cpu().numpy(), + "vm_pu_target": bus_y[:, VM_H].cpu().numpy(), + "va_target": bus_y[:, VA_H].cpu().numpy(), + "pg_mw_target": agg_gen_on_bus.squeeze().cpu().numpy(), + "qg_mvar_target": bus_y[:, QG_H].cpu().numpy(), + "is_pq": mask_PQ.cpu().numpy().astype(int), + "is_pv": mask_PV.cpu().numpy().astype(int), + "is_ref": mask_REF.cpu().numpy().astype(int), + "vm_pu": output["bus"][:, VM_OUT].detach().cpu().numpy(), + "va": output["bus"][:, VA_OUT].detach().cpu().numpy(), + "pg_mw": output["bus"][:, PG_OUT].detach().cpu().numpy(), + "qg_mvar": output["bus"][:, QG_OUT].detach().cpu().numpy(), + "active res. (MW)": residual_P.detach().cpu().numpy(), + "reactive res. (MVar)": residual_Q.detach().cpu().numpy(), + "PBE": residual_mva.detach().cpu().numpy(), + } diff --git a/gridfm_graphkit/tasks/reconstruction_tasks.py b/gridfm_graphkit/tasks/reconstruction_tasks.py new file mode 100644 index 0000000..8742646 --- /dev/null +++ b/gridfm_graphkit/tasks/reconstruction_tasks.py @@ -0,0 +1,103 @@ +from gridfm_graphkit.io.param_handler import load_model, get_loss_function +from gridfm_graphkit.tasks.base_task import BaseTask +from pytorch_lightning.utilities import rank_zero_only + + +class ReconstructionTask(BaseTask): + """ + PyTorch Lightning task for node feature reconstruction on power grid graphs. + + This task wraps a GridFM model inside a LightningModule and defines the full + training, validation, testing, and prediction logic. It is designed to + reconstruct masked node features from graph-structured input data, using + datasets and normalizers provided by `gridfm-graphkit`. + + Args: + args (NestedNamespace): Experiment configuration. Expected fields include `training.batch_size`, `optimizer.*`, etc. + data_normalizers (list): One normalizer per dataset to (de)normalize features. + + Attributes: + model (torch.nn.Module): model loaded via `load_model`. + loss_fn (callable): Loss function resolved from configuration. + batch_size (int): Training batch size. From ``args.training.batch_size`` + data_normalizers (list): Dataset-wise feature normalizers. + + Methods: + forward(x, pe, edge_index, edge_attr, batch, mask=None): + Forward pass with optional feature masking. + training_step(batch): + One training step: computes loss, logs metrics, returns loss. + validation_step(batch, batch_idx): + One validation step: computes losses and logs metrics. + + """ + + def __init__(self, args, data_normalizers): + super().__init__(args, data_normalizers) + self.model = load_model(args=args) + self.loss_fn = get_loss_function(args) + self.batch_size = int(args.training.batch_size) + self.test_outputs = {i: [] for i in range(len(args.data.networks))} + + def forward(self, x_dict, edge_index_dict, edge_attr_dict, mask_dict): + return self.model(x_dict, edge_index_dict, edge_attr_dict, mask_dict) + + def shared_step(self, batch): + output = self.forward( + x_dict=batch.x_dict, + edge_index_dict=batch.edge_index_dict, + edge_attr_dict=batch.edge_attr_dict, + mask_dict=batch.mask_dict, + ) + + loss_dict = self.loss_fn( + output, + batch.y_dict, + batch.edge_index_dict, + batch.edge_attr_dict, + batch.mask_dict, + model=self.model, + ) + return output, loss_dict + + def training_step(self, batch): + _, loss_dict = self.shared_step(batch) + current_lr = self.optimizer.param_groups[0]["lr"] + metrics = {} + metrics["Training Loss"] = loss_dict["loss"].detach() + metrics["Learning Rate"] = current_lr + for metric, value in metrics.items(): + self.log( + metric, + value, + batch_size=batch.num_graphs, + sync_dist=False, + on_epoch=False, + prog_bar=False, + logger=True, + on_step=True, + ) + + return loss_dict["loss"] + + def validation_step(self, batch, batch_idx): + _, loss_dict = self.shared_step(batch) + loss_dict["loss"] = loss_dict["loss"].detach() + for metric, value in loss_dict.items(): + metric_name = f"Validation {metric}" + self.log( + metric_name, + value, + batch_size=batch.num_graphs, + sync_dist=True, + on_epoch=True, + logger=True, + on_step=False, + ) + + return loss_dict["loss"] + + @rank_zero_only + def on_test_end(self): + """Optional shared test end logic, like clearing stored outputs""" + self.test_outputs.clear() diff --git a/gridfm_graphkit/tasks/se_task.py b/gridfm_graphkit/tasks/se_task.py new file mode 100644 index 0000000..5e45182 --- /dev/null +++ b/gridfm_graphkit/tasks/se_task.py @@ -0,0 +1,186 @@ +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + PD_H, + QG_H, + QD_H, + VM_H, + VA_H, + # Output feature indices + VM_OUT, + VA_OUT, + PG_OUT, + QG_OUT, + # Generator feature indices + PG_H, +) + +from gridfm_graphkit.tasks.reconstruction_tasks import ReconstructionTask +from gridfm_graphkit.io.registries import TASK_REGISTRY +from gridfm_graphkit.tasks.utils import plot_correlation_by_node_type +from pytorch_lightning.utilities import rank_zero_only +import torch +from torch_scatter import scatter_add +from lightning.pytorch.loggers import MLFlowLogger +import os + + +@TASK_REGISTRY.register("StateEstimation") +class StateEstimationTask(ReconstructionTask): + def __init__(self, args, data_normalizers): + super().__init__(args, data_normalizers) + + # TODO: add custom test and predict steps + def test_step(self, batch, batch_idx, dataloader_idx=0): + output, loss_dict = self.shared_step(batch) + dataset_name = self.args.data.networks[dataloader_idx] + + self.data_normalizers[dataloader_idx].inverse_transform(batch) + self.data_normalizers[dataloader_idx].inverse_output(output, batch) + + num_bus = batch.x_dict["bus"].size(0) + _, gen_to_bus_index = batch.edge_index_dict[("gen", "connected_to", "bus")] + + agg_gen_on_bus = scatter_add( + batch.y_dict["gen"], + gen_to_bus_index, + dim=0, + dim_size=num_bus, + ) + target = torch.stack( + [ + batch.y_dict["bus"][:, VM_H], + batch.y_dict["bus"][:, VA_H], + agg_gen_on_bus.squeeze() - batch.y_dict["bus"][:, PD_H], + batch.y_dict["bus"][:, QG_H] - batch.y_dict["bus"][:, QD_H], + ], + dim=1, + ) + + agg_meas_gen_on_bus = scatter_add( + batch.x_dict["gen"][:, [PG_H]], + gen_to_bus_index, + dim=0, + dim_size=num_bus, + ) + + # fig, ax = plt.subplots() + # mask = batch.mask_dict['gen'][:, PG_H] + # ax.hist((batch.x_dict['gen'][~mask, PG_H] - batch.y_dict['gen'][~mask, PG_H]).cpu().numpy(), bins=100) + # fig.savefig('gen.png') + + # fig, ax = plt.subplots() + # mask = batch.mask_dict['bus'][:, PD_H] + # ax.hist((batch.x_dict['bus'][~mask, PD_H] - batch.y_dict['bus'][~mask, PD_H]).cpu().numpy(), bins=100) + # fig.savefig('pd.png') + + measurements = torch.stack( + [ + batch.x_dict["bus"][:, VM_H], + batch.x_dict["bus"][:, VA_H], + agg_meas_gen_on_bus.squeeze() - batch.x_dict["bus"][:, PD_H], + batch.x_dict["bus"][:, QG_H] - batch.x_dict["bus"][:, QD_H], + ], + dim=1, + ) + + # fig, ax = plt.subplots() + # mask = batch.mask_dict['bus'][:, PG_H] + # ax.hist((agg_meas_gen_on_bus.squeeze()[~mask] - agg_gen_on_bus.squeeze()[~mask]).cpu().numpy(), bins=100) + # fig.savefig('gen_to_bus.png') + + outliers_bus = batch.mask_dict["outliers_bus"] + mask_bus = batch.mask_dict["bus"][:, : outliers_bus.size(1)] + non_outliers_bus = torch.logical_and(~outliers_bus, ~mask_bus) + masks = [outliers_bus, mask_bus, non_outliers_bus] + for i, mask in enumerate(masks): + new_mask = torch.zeros_like(target, dtype=bool) + new_mask[:, VM_OUT] = mask[:, VM_H] + new_mask[:, VA_OUT] = mask[:, VA_H] + new_mask[:, PG_OUT] = mask[:, PD_H] + new_mask[:, QG_OUT] = mask[:, QD_H] + masks[i] = new_mask + outliers_bus, mask_bus, non_outliers_bus = masks + + # fig, ax = plt.subplots() + # ax.hist((measurements[~mask_bus[:, PG_OUT], PG_OUT] - target[~mask_bus[:, PG_OUT], PG_OUT]).cpu().numpy(), bins=100) + # fig.savefig('p_inj.png') + # assert False + + self.test_outputs[dataloader_idx].append( + { + "dataset": dataset_name, + "pred": output["bus"].detach().cpu(), + "target": target.detach().cpu(), + "measurement": measurements.cpu(), + "mask_bus": mask_bus.detach().cpu(), + "outliers_bus": outliers_bus.detach().cpu(), + "non_outliers_bus": non_outliers_bus.detach().cpu(), + }, + ) + + @rank_zero_only + def on_test_end(self): + if isinstance(self.logger, MLFlowLogger): + artifact_dir = os.path.join( + self.logger.save_dir, + self.logger.experiment_id, + self.logger.run_id, + "artifacts", + ) + else: + artifact_dir = self.logger.save_dir + + if self.args.verbose: + for dataset_idx, outputs in self.test_outputs.items(): + dataset_name = self.args.data.networks[dataset_idx] + + plot_dir = os.path.join(artifact_dir, "test_plots", dataset_name) + os.makedirs(plot_dir, exist_ok=True) + + # Concatenate predictions and targets across all batches + all_preds = torch.cat([d["pred"] for d in outputs]) + all_targets = torch.cat([d["target"] for d in outputs]) + all_measurements = torch.cat([d["measurement"] for d in outputs]) + + all_masks = { + m: torch.cat([d[m] for d in outputs]) + for m in ["mask_bus", "outliers_bus", "non_outliers_bus"] + } + + plot_correlation_by_node_type( + preds=all_preds, + targets=all_targets, + masks=all_masks, + feature_labels=["Vm", "Va", "Pg", "Qg"], + plot_dir=plot_dir, + prefix=dataset_name + "_pred_vs_target_", + xlabel="Target", + ylabel="Pred", + ) + + plot_correlation_by_node_type( + preds=all_preds, + targets=all_measurements, + masks=all_masks, + feature_labels=["Vm", "Va", "Pg", "Qg"], + plot_dir=plot_dir, + prefix=dataset_name + "_pred_vs_measured_", + xlabel="Measured", + ylabel="Pred", + ) + + plot_correlation_by_node_type( + preds=all_measurements, + targets=all_targets, + masks=all_masks, + feature_labels=["Vm", "Va", "Pg", "Qg"], + plot_dir=plot_dir, + prefix=dataset_name + "_measured_vs_target_", + xlabel="Target", + ylabel="Measured", + ) + + self.test_outputs.clear() + + def predict_step(self, batch, batch_idx, dataloader_idx=0): + pass diff --git a/gridfm_graphkit/tasks/utils.py b/gridfm_graphkit/tasks/utils.py new file mode 100644 index 0000000..c77a995 --- /dev/null +++ b/gridfm_graphkit/tasks/utils.py @@ -0,0 +1,171 @@ +import torch +from torch_scatter import scatter_mean, scatter_max +import matplotlib.pyplot as plt +import seaborn as sns +import numpy as np +import os + + +def residual_stats_by_type(residual, mask, bus_batch): + residual_masked = residual[mask] + batch_masked = bus_batch[mask] + mean_res = scatter_mean(torch.abs(residual_masked), batch_masked, dim=0) + max_res, _ = scatter_max(torch.abs(residual_masked), batch_masked, dim=0) + return mean_res, max_res + + +def plot_residuals_histograms(outputs, dataset_name, plot_dir): + """ + Plot mean/max residuals for P and Q, per bus type with consistent bins. + """ + bus_types = ["REF", "PV", "PQ"] + colors = ["#6baed6", "#fd8d3c", "#74c476"] # PQ, PV, REF + + stats = [ + ("mean_residual_P", "Mean P Residual"), + ("mean_residual_Q", "Mean Q Residual"), + ("max_residual_P", "Max P Residual"), + ("max_residual_Q", "Max Q Residual"), + ] + + for stat_key, title in stats: + # Gather all data first to compute common bin edges + all_data = torch.cat( + [ + torch.cat([d[f"{stat_key}_{bus_type}"] for d in outputs]) + for bus_type in bus_types + ], + ).numpy() + + # Define bins across the entire data range + bins = np.linspace(all_data.min(), all_data.max(), 61) # 30 bins of equal width + + plt.figure(figsize=(10, 6)) + for bus_type, color in zip(bus_types, colors): + data = torch.cat([d[f"{stat_key}_{bus_type}"] for d in outputs]).numpy() + plt.hist(data, bins=bins, alpha=0.6, label=bus_type, color=color) + + plt.title(f"{title} per Bus Type in {dataset_name}") + plt.xlabel("Residual (MW or MVar)") + plt.ylabel("Frequency") + plt.legend(title="Bus Type") + plt.grid(True, linestyle="--", alpha=0.5) + plt.tight_layout() + + save_path = os.path.join(plot_dir, f"{stat_key}.png") + plt.savefig(save_path, dpi=300) + plt.close() + + +def plot_correlation_by_node_type( + preds: torch.Tensor, + targets: torch.Tensor, + masks: dict, + feature_labels: list, + plot_dir: str, + prefix: str = "", + xlabel: str = "Target", + ylabel: str = "Pred", + qg_violation_mask: torch.Tensor = None, +): + """ + Create correlation scatter plots per node type (PQ, PV, REF), + and highlight Qg violations in red if a violation mask is provided. + + Args: + preds (torch.Tensor): Predictions [N, F] + targets (torch.Tensor): Targets [N, F] + masks (dict): { "PQ": mask, "PV": mask, "REF": mask } + feature_labels (list): Feature labels + plot_dir (str): Directory to save plots + prefix (str): Optional filename prefix + qg_violation_mask (torch.BoolTensor): Global mask of Qg limit violations + """ + + os.makedirs(plot_dir, exist_ok=True) + + for node_type, mask in masks.items(): + if len(mask.shape) == 1: + preds_masked = preds[mask] + targets_masked = targets[mask] + else: + preds_masked = torch.where(mask, preds, 0) + targets_masked = torch.where(mask, targets, 0) + + if preds_masked.numel() == 0: + continue + + # ALSO mask Qg violations for this node type + if qg_violation_mask is not None: + qg_violation_mask_local = qg_violation_mask[mask].cpu().numpy() + else: + qg_violation_mask_local = None + + fig, axes = plt.subplots(2, 2, figsize=(15, 8)) + axes = axes.flatten() + + for i, (ax, label) in enumerate(zip(axes, feature_labels)): + x = targets_masked[:, i].cpu().numpy().flatten() + y = preds_masked[:, i].cpu().numpy().flatten() + + # --- normal scatter for all except Qg --- + if label != "Qg" or qg_violation_mask_local is None: + sns.scatterplot(x=x, y=y, s=6, alpha=0.4, ax=ax, edgecolor=None) + else: + # --- For Qg: split normal vs violating points --- + normal_mask = ~qg_violation_mask_local + viol_mask = qg_violation_mask_local + + # Normal (blue) + sns.scatterplot( + x=x[normal_mask], + y=y[normal_mask], + s=6, + alpha=0.4, + ax=ax, + edgecolor=None, + label="Valid Qg", + ) + + # Violating (RED) + sns.scatterplot( + x=x[viol_mask], + y=y[viol_mask], + s=8, + alpha=0.8, + ax=ax, + edgecolor="red", + color="red", + label="Qg violation", + ) + + ax.legend() + + # --- reference y=x line --- + min_val = min(x.min(), y.min()) + max_val = max(x.max(), y.max()) + ax.plot( + [min_val, max_val], + [min_val, max_val], + "k--", + linewidth=1.0, + alpha=0.7, + ) + + # --- R² correlation --- + corr = np.corrcoef(x, y)[0, 1] + if label != "Qg" or qg_violation_mask_local is None: + ax.set_title(f"{node_type} – {label}\nR² = {corr**2:.3f}") + else: + num_violations = qg_violation_mask_local.sum().item() + total_points = qg_violation_mask_local.shape[0] + ax.set_title( + f"{node_type} – {label}\nR² = {corr**2:.3f} - {num_violations} violations out of {total_points} predictions", + ) + ax.set_xlabel(xlabel) + ax.set_ylabel(ylabel) + + plt.tight_layout() + filename = f"{prefix}_correlation_{node_type}.png" + plt.savefig(os.path.join(plot_dir, filename), dpi=300) + plt.close(fig) diff --git a/gridfm_graphkit/training/__init__.py b/gridfm_graphkit/training/__init__.py index e69de29..15452ee 100644 --- a/gridfm_graphkit/training/__init__.py +++ b/gridfm_graphkit/training/__init__.py @@ -0,0 +1,16 @@ +from gridfm_graphkit.training.loss import ( + MSELoss, + MaskedMSELoss, + LayeredWeightedPhysicsLoss, + MaskedBusMSE, + MaskedGenMSE, +) + +__all__ = [ + "MSELoss", + "MaskedMSELoss", + "LayeredWeightedPhysicsLoss", + "MaskedBusMSE", + "MaskedGenMSE", + "LossPerDim", +] diff --git a/gridfm_graphkit/training/loss.py b/gridfm_graphkit/training/loss.py index f90953b..d253d2b 100644 --- a/gridfm_graphkit/training/loss.py +++ b/gridfm_graphkit/training/loss.py @@ -1,143 +1,163 @@ -from gridfm_graphkit.datasets.globals import PD, QD, PG, QG, VM, VA, G, B - import torch.nn.functional as F import torch -from torch_geometric.utils import to_torch_coo_tensor import torch.nn as nn - - -class MaskedMSELoss(nn.Module): +from abc import ABC, abstractmethod +from gridfm_graphkit.io.registries import LOSS_REGISTRY +from torch_scatter import scatter_add + +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + QG_H, + VM_H, + VA_H, + QD_H, + PD_H, + # Output feature indices + VM_OUT, + VA_OUT, + QG_OUT, + PG_OUT, + # Generator feature indices + PG_H, +) + + +class BaseLoss(nn.Module, ABC): """ - Mean Squared Error loss computed only on masked elements. + Abstract base class for all custom loss functions. """ - def __init__(self, reduction="mean"): - super(MaskedMSELoss, self).__init__() - self.reduction = reduction - - def forward(self, pred, target, edge_index=None, edge_attr=None, mask=None): - loss = F.mse_loss(pred[mask], target[mask], reduction=self.reduction) - return {"loss": loss, "Masked MSE loss": loss.detach()} - - -class MSELoss(nn.Module): - """Standard Mean Squared Error loss.""" - - def __init__(self, reduction="mean"): - super(MSELoss, self).__init__() - self.reduction = reduction - - def forward(self, pred, target, edge_index=None, edge_attr=None, mask=None): - loss = F.mse_loss(pred, target, reduction=self.reduction) - return {"loss": loss, "MSE loss": loss.detach()} - - -class SCELoss(nn.Module): - """Scaled Cosine Error Loss with optional masking and normalization.""" - - def __init__(self, alpha=3): - super(SCELoss, self).__init__() - self.alpha = alpha - - def forward(self, pred, target, edge_index=None, edge_attr=None, mask=None): - if mask is not None: - pred = F.normalize(pred[mask], p=2, dim=-1) - target = F.normalize(target[mask], p=2, dim=-1) - else: - pred = F.normalize(pred, p=2, dim=-1) - target = F.normalize(target, p=2, dim=-1) + @abstractmethod + def forward( + self, + pred, + target, + edge_index=None, + edge_attr=None, + mask=None, + model=None, + ): + """ + Compute the loss. - loss = ((1 - (pred * target).sum(dim=-1)).pow(self.alpha)).mean() + Parameters: + - pred: Predictions. + - target: Ground truth. + - edge_index: Optional edge index for graph-based losses. + - edge_attr: Optional edge attributes for graph-based losses. + - mask: Optional mask to filter the inputs for certain losses. + - model: Optional model reference for accessing internal states. - return { - "loss": loss, - "SCE loss": loss.detach(), - } + Returns: + - A dictionary with the total loss and any additional metrics. + """ + pass -class PBELoss(nn.Module): +@LOSS_REGISTRY.register("MaskedMSE") +class MaskedMSELoss(BaseLoss): """ - Loss based on the Power Balance Equations. + Mean Squared Error loss computed only on masked elements. """ - def __init__(self, visualization=False): - super(PBELoss, self).__init__() - - self.visualization = visualization - - def forward(self, pred, target, edge_index, edge_attr, mask): - # Create a temporary copy of pred to avoid modifying it - temp_pred = pred.clone() - - # If a value is not masked, then use the original one - unmasked = ~mask - temp_pred[unmasked] = target[unmasked] + def __init__(self, loss_args, args): + super(MaskedMSELoss, self).__init__() + self.reduction = "mean" + + def forward( + self, + pred, + target, + edge_index=None, + edge_attr=None, + mask=None, + model=None, + ): + loss = F.mse_loss(pred[mask], target[mask], reduction=self.reduction) + return {"loss": loss, "Masked MSE loss": loss.detach()} - # Voltage magnitudes and angles - V_m = temp_pred[:, VM] # Voltage magnitudes - V_a = temp_pred[:, VA] # Voltage angles - # Compute the complex voltage vector V - V = V_m * torch.exp(1j * V_a) +@LOSS_REGISTRY.register("MaskedGenMSE") +class MaskedGenMSE(torch.nn.Module): + def __init__(self, loss_args, args): + super().__init__() + self.reduction = "mean" + + def forward( + self, + pred_dict, + target_dict, + edge_index, + edge_attr, + mask_dict, + model=None, + ): + loss = F.mse_loss( + pred_dict["gen"][mask_dict["gen"][:, : (PG_H + 1)]], + target_dict["gen"][mask_dict["gen"][:, : (PG_H + 1)]], + reduction=self.reduction, + ) + return {"loss": loss, "Masked generator MSE loss": loss.detach()} + + +@LOSS_REGISTRY.register("MaskedBusMSE") +class MaskedBusMSE(torch.nn.Module): + def __init__(self, loss_args, args): + super().__init__() + self.reduction = "mean" + self.args = args + + def forward( + self, + pred_dict, + target_dict, + edge_index, + edge_attr, + mask_dict, + model=None, + ): + if self.args.task == "OptimalPowerFlow": + pred_cols = [VM_OUT, VA_OUT, QG_OUT] + target_cols = [VM_H, VA_H, QG_H] + else: + pred_cols = [VM_OUT, VA_OUT] + target_cols = [VM_H, VA_H] - # Compute the conjugate of V - V_conj = torch.conj(V) + pred_bus = pred_dict["bus"][:, pred_cols] # shape: [N, 3] + target_bus = target_dict["bus"][:, target_cols] - # Extract edge attributes for Y_bus - edge_complex = edge_attr[:, G] + 1j * edge_attr[:, B] + mask = mask_dict["bus"][:, target_cols] - # Construct sparse admittance matrix (real and imaginary parts separately) - Y_bus_sparse = to_torch_coo_tensor( - edge_index, - edge_complex, - size=(target.size(0), target.size(0)), + loss = F.mse_loss( + pred_bus[mask], + target_bus[mask], + reduction=self.reduction, ) + return {"loss": loss, "Masked bus MSE loss": loss.detach()} - # Conjugate of the admittance matrix - Y_bus_conj = torch.conj(Y_bus_sparse) - - # Compute the complex power injection S_injection - S_injection = torch.diag(V) @ Y_bus_conj @ V_conj - # Compute net power balance - net_P = temp_pred[:, PG] - temp_pred[:, PD] - net_Q = temp_pred[:, QG] - temp_pred[:, QD] - S_net_power_balance = net_P + 1j * net_Q - - # Power balance loss - loss = torch.mean( - torch.abs(S_net_power_balance - S_injection), - ) # Mean of absolute complex power value +@LOSS_REGISTRY.register("MSE") +class MSELoss(BaseLoss): + """Standard Mean Squared Error loss.""" - real_loss_power = torch.mean( - torch.abs(torch.real(S_net_power_balance - S_injection)), - ) - imag_loss_power = torch.mean( - torch.abs(torch.imag(S_net_power_balance - S_injection)), - ) - if self.visualization: - return { - "loss": loss, - "Power loss in p.u.": loss.detach(), - "Active Power Loss in p.u.": real_loss_power.detach(), - "Reactive Power Loss in p.u.": imag_loss_power.detach(), - "Nodal Active Power Loss in p.u.": torch.abs( - torch.real(S_net_power_balance - S_injection), - ), - "Nodal Reactive Power Loss in p.u.": torch.abs( - torch.imag(S_net_power_balance - S_injection), - ), - } - else: - return { - "loss": loss, - "Power loss in p.u.": loss.detach(), - "Active Power Loss in p.u.": real_loss_power.detach(), - "Reactive Power Loss in p.u.": imag_loss_power.detach(), - } + def __init__(self, loss_args, args): + super(MSELoss, self).__init__() + self.reduction = "mean" + + def forward( + self, + pred, + target, + edge_index=None, + edge_attr=None, + mask=None, + model=None, + ): + loss = F.mse_loss(pred, target, reduction=self.reduction) + return {"loss": loss, "MSE loss": loss.detach()} -class MixedLoss(nn.Module): +class MixedLoss(BaseLoss): """ Combines multiple loss functions with weighted sum. @@ -157,7 +177,15 @@ def __init__(self, loss_functions, weights): self.loss_functions = nn.ModuleList(loss_functions) self.weights = weights - def forward(self, pred, target, edge_index=None, edge_attr=None, mask=None): + def forward( + self, + pred, + target, + edge_index=None, + edge_attr=None, + mask=None, + model=None, + ): """ Compute the weighted sum of all specified losses. @@ -179,9 +207,10 @@ def forward(self, pred, target, edge_index=None, edge_attr=None, mask=None): loss_output = loss_fn( pred, target, - edge_index=edge_index, - edge_attr=edge_attr, - mask=mask, + edge_index, + edge_attr, + mask, + model, ) # Assume each loss function returns a dictionary with a "loss" key @@ -196,3 +225,100 @@ def forward(self, pred, target, edge_index=None, edge_attr=None, mask=None): loss_details["loss"] = total_loss return loss_details + + +@LOSS_REGISTRY.register("LayeredWeightedPhysics") +class LayeredWeightedPhysicsLoss(BaseLoss): + def __init__(self, loss_args, args) -> None: + super().__init__() + self.base_weight = loss_args.base_weight + + def forward( + self, + pred, + target, + edge_index=None, + edge_attr=None, + mask=None, + model=None, + ): + total_loss = 0.0 + loss_details = {} + + layer_keys = sorted(model.layer_residuals.keys()) + L = len(layer_keys) + + # Compute raw weights (geometric decay) + raw_weights = [self.base_weight ** (L - idx - 1) for idx in range(L)] + + # Normalize so weights sum to 1 + weight_sum = sum(raw_weights) + norm_weights = [w / weight_sum for w in raw_weights] + + for key, weight in zip(layer_keys, norm_weights): + residual = model.layer_residuals[key] + total_loss = total_loss + weight * residual + loss_details[f"layer_{key}_residual"] = residual.item() + loss_details[f"layer_{key}_weight"] = weight + + loss_details["loss"] = total_loss + loss_details["Layered Weighted Physics Loss"] = total_loss.item() + return loss_details + + +@LOSS_REGISTRY.register("LossPerDim") +class LossPerDim(BaseLoss): + def __init__(self, loss_args, args): + super(LossPerDim, self).__init__() + self.reduction = "mean" + self.loss_str = loss_args.loss_str + self.dim = loss_args.dim + if self.dim not in ["VM", "VA", "P_in", "Q_in"]: + raise ValueError( + f"LossPerDim initialized with not valid dim: {self.dim}", + ) + + elif self.loss_str not in ["MAE", "MSE"]: + raise ValueError( + f"LossPerDim initialized with not valid loss_str: {self.loss_str}", + ) + + def forward( + self, + pred_dict, + target_dict, + edge_index, + edge_attr, + mask_dict, + model=None, + ): + if self.dim == "VM": + temp_pred = pred_dict["bus"][:, VM_OUT] + temp_target = target_dict["bus"][:, VM_H] + elif self.dim == "VA": + temp_pred = pred_dict["bus"][:, VA_OUT] + temp_target = target_dict["bus"][:, VA_H] + elif self.dim == "P_in": + temp_pred = pred_dict["bus"][:, PG_OUT] + num_bus = temp_pred.size(0) + gen_to_bus_index = edge_index[("gen", "connected_to", "bus")] + temp_gen = scatter_add( + target_dict["gen"][:, PG_H], + gen_to_bus_index[1, :], + dim=0, + dim_size=num_bus, + ) + temp_target = temp_gen - target_dict["bus"][:, PD_H] + elif self.dim == "Q_in": + temp_pred = pred_dict["bus"][:, QG_OUT] + temp_target = target_dict["bus"][:, QG_H] - target_dict["bus"][:, QD_H] + + mse_loss = F.mse_loss(temp_pred, temp_target, reduction=self.reduction) + mae_loss = F.l1_loss(temp_pred, temp_target, reduction=self.reduction) + + loss = mse_loss if self.loss_str == "mse" else mae_loss + return { + "loss": loss, + f"MSE loss {self.dim}": mse_loss.detach(), + f"MAE loss {self.dim}": mae_loss.detach(), + } diff --git a/gridfm_graphkit/utils/__init__.py b/gridfm_graphkit/utils/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/pyproject.toml b/pyproject.toml index 51c8665..2b6c523 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,17 +40,21 @@ classifiers = [ dependencies = [ - "torch>2.0", - "torch-geometric", - "mlflow", - "nbformat", - "networkx", - "numpy", - "pandas", - "plotly", - "pyyaml", + "mlflow>=3.1.0", + "nbformat>=5.10.4", + "networkx>=3.4.2", + "numpy>=2.2.6", + "pandas>=2.3.0", + "plotly>=6.1.2", + "pyyaml>=6.0.2", + "torch>=2.7.1,<2.9", + "torch-geometric>=2.6.1", + "torchaudio>=2.7.1", + "torchvision>=0.22.1", "lightning", "seaborn", + "urllib3>=2.6.0", + "gridfm-datakit>=1.0.2", ] [project.optional-dependencies] diff --git a/tests/config/SE_simulate_measurements.yaml b/tests/config/SE_simulate_measurements.yaml new file mode 100644 index 0000000..be3cafb --- /dev/null +++ b/tests/config/SE_simulate_measurements.yaml @@ -0,0 +1,75 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: StateEstimation + noise_type: Gaussian + measurements: + power_inj: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + power_flow: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + vm: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + relative_measurement: true +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case14_ieee + scenarios: + - 100 + split_by_load_scenario_idx: true + test_ratio: 0.1 + val_ratio: 0.1 + workers: 1 +model: + attention_head: 8 + edge_dim: 10 + hidden_size: 48 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 12 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 32 + epochs: 1 + losses: + - LossPerDim + - LossPerDim + - LossPerDim + - LossPerDim + loss_weights: + - 0.35 + - 0.35 + - 0.1 + - 0.1 + loss_args: + - dim: VM + loss_str: MAE + - dim: VA + loss_str: MAE + - dim: P_in + loss_str: MAE + - dim: Q_in + loss_str: MAE + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/tests/config/datamodule_test_base_config.yaml b/tests/config/datamodule_test_base_config.yaml index eda7983..b81e733 100644 --- a/tests/config/datamodule_test_base_config.yaml +++ b/tests/config/datamodule_test_base_config.yaml @@ -1,18 +1,65 @@ -seed: 42 +callbacks: + patience: 100 + tol: 0 +task: + task_name: PowerFlow + noise_type: Gaussian + measurements: + power_inj: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + power_flow: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + vm: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + relative_measurement: true data: - networks: ["case30_ieee"] - scenarios: [10] - normalization: "baseMVAnorm" baseMVA: 100 - mask_type: "rnd" mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.2 - test_ratio: 0.2 - workers: 0 -training: - batch_size: 2 + normalization: HeteroDataMVANormalizer + networks: + - case14_ieee + scenarios: + - 72 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 1 + split_by_load_scenario_idx: true model: - pe_dim: 4 + attention_head: 2 + edge_dim: 10 + hidden_size: 16 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 2 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 4 + epochs: 1 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/tests/config/datamodule_test_base_config2.yaml b/tests/config/datamodule_test_base_config2.yaml new file mode 100644 index 0000000..4d8c577 --- /dev/null +++ b/tests/config/datamodule_test_base_config2.yaml @@ -0,0 +1,50 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: OptimalPowerFlow +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case14_ieee + scenarios: + - 72 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 1 + split_by_load_scenario_idx: true +model: + attention_head: 2 + edge_dim: 10 + hidden_size: 16 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 2 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 4 + epochs: 1 + loss_weights: + - 0.1 + - 0.9 + losses: + - LayeredWeightedPhysics + - MaskedBusMSE + loss_args: + - base_weight: 0.5 + - {} + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/tests/config/datamodule_test_base_config3.yaml b/tests/config/datamodule_test_base_config3.yaml new file mode 100644 index 0000000..ac0d2a9 --- /dev/null +++ b/tests/config/datamodule_test_base_config3.yaml @@ -0,0 +1,75 @@ +callbacks: + patience: 100 + tol: 0 +task: + task_name: StateEstimation + noise_type: Gaussian + measurements: + power_inj: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + power_flow: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + vm: + mask_ratio: 0.2 + outlier_ratio: 0.1 + std: 0.02 + relative_measurement: true +data: + baseMVA: 100 + mask_value: 0.0 + normalization: HeteroDataMVANormalizer + networks: + - case14_ieee + scenarios: + - 72 + test_ratio: 0.1 + val_ratio: 0.1 + workers: 1 + split_by_load_scenario_idx: true +model: + attention_head: 2 + edge_dim: 10 + hidden_size: 16 + input_bus_dim: 15 + input_gen_dim: 6 + output_bus_dim: 2 + output_gen_dim: 1 + num_layers: 2 + type: GNS_heterogeneous +optimizer: + beta1: 0.9 + beta2: 0.999 + learning_rate: 0.0005 + lr_decay: 0.7 + lr_patience: 5 +seed: 0 +training: + batch_size: 4 + epochs: 1 + losses: + - LossPerDim + - LossPerDim + - LossPerDim + - LossPerDim + loss_weights: + - 0.35 + - 0.35 + - 0.1 + - 0.1 + loss_args: + - dim: VM + loss_str: MAE + - dim: VA + loss_str: MAE + - dim: P_in + loss_str: MAE + - dim: Q_in + loss_str: MAE + accelerator: auto + devices: auto + strategy: auto +verbose: true diff --git a/tests/config/gridFMv0.1_dummy.yaml b/tests/config/gridFMv0.1_dummy.yaml deleted file mode 100644 index 88d52a5..0000000 --- a/tests/config/gridFMv0.1_dummy.yaml +++ /dev/null @@ -1,41 +0,0 @@ -callbacks: - patience: -1 - tol: 0 -data: - networks: ["case30_ieee"] - scenarios: [10] - normalization: "baseMVAnorm" - baseMVA: 100 - mask_type: "rnd" - mask_value: 0.0 - mask_ratio: 0.5 - mask_dim: 6 - learn_mask: False - val_ratio: 0.2 - test_ratio: 0.2 - workers: 0 -model: - attention_head: 8 - dropout: 0.1 - edge_dim: 2 - hidden_size: 64 - input_dim: 9 - num_layers: 8 - output_dim: 6 - pe_dim: 20 - type: GNN_TransformerConv -optimizer: - beta1: 0.9 - beta2: 0.999 - learning_rate: 1.0e-05 - lr_decay: 0.7 - lr_patience: 10 -seed: 200 -training: - batch_size: 2 - epochs: 1 - losses: ["MaskedMSE", "PBE", "MSE", "SCE"] - loss_weights: [0.25, 0.25, 0.25, 0.25] - accelerator: auto - devices: auto - strategy: auto diff --git a/tests/data/case14_ieee/raw/branch_data.parquet/scenario_partition=0/54e3c0dcc5074e739d692c4f1690930a-0.parquet b/tests/data/case14_ieee/raw/branch_data.parquet/scenario_partition=0/54e3c0dcc5074e739d692c4f1690930a-0.parquet new file mode 100644 index 0000000..6472158 Binary files /dev/null and b/tests/data/case14_ieee/raw/branch_data.parquet/scenario_partition=0/54e3c0dcc5074e739d692c4f1690930a-0.parquet differ diff --git a/tests/data/case14_ieee/raw/branch_data.parquet/scenario_partition=0/d202aa074592423f8b2196522fc5c453-0.parquet b/tests/data/case14_ieee/raw/branch_data.parquet/scenario_partition=0/d202aa074592423f8b2196522fc5c453-0.parquet new file mode 100644 index 0000000..b2f8b61 Binary files /dev/null and b/tests/data/case14_ieee/raw/branch_data.parquet/scenario_partition=0/d202aa074592423f8b2196522fc5c453-0.parquet differ diff --git a/tests/data/case14_ieee/raw/bus_data.parquet/scenario_partition=0/1d80ed48185f4aab9f99dde645c11584-0.parquet b/tests/data/case14_ieee/raw/bus_data.parquet/scenario_partition=0/1d80ed48185f4aab9f99dde645c11584-0.parquet new file mode 100644 index 0000000..d5d2776 Binary files /dev/null and b/tests/data/case14_ieee/raw/bus_data.parquet/scenario_partition=0/1d80ed48185f4aab9f99dde645c11584-0.parquet differ diff --git a/tests/data/case14_ieee/raw/bus_data.parquet/scenario_partition=0/4f141f7e2e71404c85667f5928db206d-0.parquet b/tests/data/case14_ieee/raw/bus_data.parquet/scenario_partition=0/4f141f7e2e71404c85667f5928db206d-0.parquet new file mode 100644 index 0000000..6901239 Binary files /dev/null and b/tests/data/case14_ieee/raw/bus_data.parquet/scenario_partition=0/4f141f7e2e71404c85667f5928db206d-0.parquet differ diff --git a/tests/data/case14_ieee/raw/gen_data.parquet/scenario_partition=0/5cca08a1e0974ef9a15abaf879b06324-0.parquet b/tests/data/case14_ieee/raw/gen_data.parquet/scenario_partition=0/5cca08a1e0974ef9a15abaf879b06324-0.parquet new file mode 100644 index 0000000..b8f2272 Binary files /dev/null and b/tests/data/case14_ieee/raw/gen_data.parquet/scenario_partition=0/5cca08a1e0974ef9a15abaf879b06324-0.parquet differ diff --git a/tests/data/case14_ieee/raw/gen_data.parquet/scenario_partition=0/7da995898c1744b0b7da38edd3887232-0.parquet b/tests/data/case14_ieee/raw/gen_data.parquet/scenario_partition=0/7da995898c1744b0b7da38edd3887232-0.parquet new file mode 100644 index 0000000..dd333fa Binary files /dev/null and b/tests/data/case14_ieee/raw/gen_data.parquet/scenario_partition=0/7da995898c1744b0b7da38edd3887232-0.parquet differ diff --git a/tests/data/case14_ieee/raw/runtime_data.parquet/scenario_partition=0/a2befd34169c467b9ee467d58143570c-0.parquet b/tests/data/case14_ieee/raw/runtime_data.parquet/scenario_partition=0/a2befd34169c467b9ee467d58143570c-0.parquet new file mode 100644 index 0000000..ea22a82 Binary files /dev/null and b/tests/data/case14_ieee/raw/runtime_data.parquet/scenario_partition=0/a2befd34169c467b9ee467d58143570c-0.parquet differ diff --git a/tests/data/case14_ieee/raw/runtime_data.parquet/scenario_partition=0/daccfd30e3634a6da6bc0cb9dcf63c6b-0.parquet b/tests/data/case14_ieee/raw/runtime_data.parquet/scenario_partition=0/daccfd30e3634a6da6bc0cb9dcf63c6b-0.parquet new file mode 100644 index 0000000..df20de7 Binary files /dev/null and b/tests/data/case14_ieee/raw/runtime_data.parquet/scenario_partition=0/daccfd30e3634a6da6bc0cb9dcf63c6b-0.parquet differ diff --git a/tests/data/case14_ieee/raw/y_bus_data.parquet/scenario_partition=0/1d2e07e1164c4e53bab3f8411fe89fed-0.parquet b/tests/data/case14_ieee/raw/y_bus_data.parquet/scenario_partition=0/1d2e07e1164c4e53bab3f8411fe89fed-0.parquet new file mode 100644 index 0000000..0d102cb Binary files /dev/null and b/tests/data/case14_ieee/raw/y_bus_data.parquet/scenario_partition=0/1d2e07e1164c4e53bab3f8411fe89fed-0.parquet differ diff --git a/tests/data/case14_ieee/raw/y_bus_data.parquet/scenario_partition=0/f562b0cacf764d2d9a77efb18aa03c9f-0.parquet b/tests/data/case14_ieee/raw/y_bus_data.parquet/scenario_partition=0/f562b0cacf764d2d9a77efb18aa03c9f-0.parquet new file mode 100644 index 0000000..14f8cc2 Binary files /dev/null and b/tests/data/case14_ieee/raw/y_bus_data.parquet/scenario_partition=0/f562b0cacf764d2d9a77efb18aa03c9f-0.parquet differ diff --git a/tests/data/case30_ieee/raw/pf_edge.csv b/tests/data/case30_ieee/raw/pf_edge.csv deleted file mode 100644 index 11fb887..0000000 --- a/tests/data/case30_ieee/raw/pf_edge.csv +++ /dev/null @@ -1,1087 +0,0 @@ -scenario,index1,index2,G,B -0,0.0,0.0,6.765516048652632,-21.23160167089863 -0,0.0,1.0,-5.224646179885656,15.646726840803398 -0,0.0,2.0,-1.5408698687669766,5.631674830095234 -0,1.0,0.0,-5.224646179885656,15.646726840803398 -0,1.0,1.0,9.75228216552403,-30.648662892676068 -0,1.0,3.0,-1.7055303166990268,5.1973792282565086 -0,1.0,4.0,-1.1359607881738778,4.772479328281356 -0,1.0,5.0,-1.6861448807654689,5.116477495334806 -0,2.0,0.0,-1.5408698687669766,5.631674830095234 -0,2.0,2.0,9.736318911079088,-29.13794745915803 -0,2.0,3.0,-8.19544904231211,23.5308726290628 -0,3.0,1.0,-1.7055303166990268,5.1973792282565086 -0,3.0,2.0,-8.19544904231211,23.5308726290628 -0,3.0,3.0,16.314103089185693,-55.509410535254254 -0,3.0,5.0,-6.413123730174556,22.31120356548123 -0,3.0,11.0,0.0,4.191255364806866 -0,4.0,1.0,-1.1359607881738778,4.772479328281356 -0,4.0,4.0,4.089980824135861,-12.190647245055052 -0,4.0,6.0,-2.954020035961983,7.449267916773697 -0,5.0,1.0,-1.6861448807654689,5.116477495334806 -0,5.0,3.0,-6.413123730174556,22.31120356548123 -0,5.0,5.0,22.341631269034565,-82.8291478657789 -0,5.0,6.0,-3.590210423980992,11.02611441072814 -0,5.0,7.0,-6.289308176100628,22.0125786163522 -0,5.0,8.0,0.0,4.915840805411357 -0,5.0,9.0,0.0,1.8561002591115965 -0,5.0,27.0,-4.362844058012917,15.463571542897856 -0,6.0,4.0,-2.954020035961983,7.449267916773697 -0,6.0,5.0,-3.590210423980992,11.02611441072814 -0,6.0,6.0,6.544230459942975,-18.45668232750184 -0,7.0,5.0,-6.289308176100628,22.0125786163522 -0,7.0,7.0,7.733287237496075,-26.527493274828448 -0,7.0,27.0,-1.4439790613954469,4.540814658476248 -0,8.0,5.0,0.0,4.915840805411357 -0,8.0,8.0,0.0,-18.706293706293707 -0,8.0,9.0,0.0,9.090909090909092 -0,8.0,10.0,0.0,4.807692307692308 -0,9.0,5.0,0.0,1.8561002591115965 -0,9.0,8.0,0.0,9.090909090909092 -0,9.0,9.0,13.462042814524237,-41.3837606675224 -0,9.0,16.0,-3.956039125715353,10.317447719844054 -0,9.0,19.0,-1.7848303152666305,3.98535828943083 -0,9.0,20.0,-5.101853820159654,10.98071411292983 -0,9.0,21.0,-2.619319553382597,5.400770303329455 -0,10.0,8.0,0.0,4.807692307692308 -0,10.0,10.0,0.0,-4.807692307692308 -0,11.0,3.0,0.0,4.191255364806866 -0,11.0,11.0,6.573961583776156,-24.424167659260668 -0,11.0,12.0,0.0,7.142857142857143 -0,11.0,13.0,-1.5265676088395577,3.1734252729654173 -0,11.0,14.0,-3.0953961826564296,6.097275864326261 -0,11.0,15.0,-1.9519977922801688,4.104359379111847 -0,12.0,11.0,0.0,7.142857142857143 -0,12.0,12.0,0.0,-7.142857142857143 -0,13.0,11.0,-1.5265676088395577,3.1734252729654173 -0,13.0,13.0,4.01751987283902,-5.424299332335067 -0,13.0,14.0,-2.4909522639994623,2.250874059369649 -0,14.0,11.0,-3.0953961826564296,6.097275864326261 -0,14.0,13.0,-2.4909522639994623,2.250874059369649 -0,14.0,14.0,9.365498545964757,-16.01163373210796 -0,14.0,17.0,-1.8108011504072024,3.687418931630696 -0,14.0,22.0,-1.9683489489016612,3.976064876781356 -0,15.0,11.0,-1.9519977922801688,4.104359379111847 -0,15.0,15.0,3.271064728633931,-8.94513365126506 -0,15.0,16.0,-1.3190669363537617,4.8407742721532125 -0,16.0,9.0,-3.956039125715353,10.317447719844054 -0,16.0,15.0,-1.3190669363537617,4.8407742721532125 -0,16.0,16.0,5.275106062069114,-15.158221991997266 -0,17.0,14.0,-1.8108011504072024,3.687418931630696 -0,17.0,17.0,4.886487584415919,-9.906177730909668 -0,17.0,18.0,-3.0756864340087167,6.218758799278971 -0,18.0,17.0,-3.0756864340087167,6.218758799278971 -0,18.0,18.0,8.958039375185187,-17.98346468163191 -0,18.0,19.0,-5.88235294117647,11.76470588235294 -0,19.0,9.0,-1.7848303152666305,3.98535828943083 -0,19.0,18.0,-5.88235294117647,11.76470588235294 -0,19.0,19.0,7.6671832564431,-15.75006417178377 -0,20.0,9.0,-5.101853820159654,10.98071411292983 -0,20.0,20.0,21.876495189895888,-45.10843276170355 -0,20.0,21.0,-16.774641369736234,34.127718648773715 -0,21.0,9.0,-2.619319553382597,5.400770303329455 -0,21.0,20.0,-16.774641369736234,34.127718648773715 -0,21.0,21.0,21.93449907537439,-43.48289181517921 -0,21.0,23.0,-2.5405381522555563,3.95440286307604 -0,22.0,14.0,-1.9683489489016612,3.976064876781356 -0,22.0,22.0,3.429754555384988,-6.965303617315433 -0,22.0,23.0,-1.4614056064833263,2.989238740534077 -0,23.0,21.0,-2.5405381522555563,3.95440286307604 -0,23.0,22.0,-1.4614056064833263,2.989238740534077 -0,23.0,23.0,5.311836702613133,-9.188263657315172 -0,23.0,24.0,-1.3098929438742493,2.287622053705056 -0,24.0,23.0,-1.3098929438742493,2.287622053705056 -0,24.0,24.0,4.495715080321987,-7.864978761969621 -0,24.0,25.0,-1.2165301194494855,1.8171440463475024 -0,24.0,26.0,-1.9692920169982515,3.760212661917064 -0,25.0,24.0,-1.2165301194494855,1.8171440463475024 -0,25.0,25.0,1.2165301194494855,-1.8171440463475024 -0,26.0,24.0,-1.9692920169982515,3.760212661917064 -0,26.0,26.0,3.652281470778589,-9.46044252232512 -0,26.0,27.0,0.0,2.608731947574922 -0,26.0,28.0,-0.99553355095268,1.881005840357816 -0,26.0,29.0,-0.6874559028276572,1.293971494797717 -0,27.0,5.0,-4.362844058012917,15.463571542897856 -0,27.0,7.0,-1.4439790613954469,4.540814658476248 -0,27.0,26.0,0.0,2.608731947574922 -0,27.0,27.0,5.806823119408364,-22.67145722159613 -0,28.0,26.0,-0.99553355095268,1.881005840357816 -0,28.0,28.0,1.9075867579849564,-3.604364401207048 -0,28.0,29.0,-0.9120532070322764,1.7233585608492326 -0,29.0,26.0,-0.6874559028276572,1.293971494797717 -0,29.0,28.0,-0.9120532070322764,1.7233585608492326 -0,29.0,29.0,1.5995091098599337,-3.0173300556469496 -1,0.0,0.0,6.765516048652632,-21.23160167089863 -1,0.0,1.0,-5.224646179885656,15.646726840803398 -1,0.0,2.0,-1.5408698687669766,5.631674830095234 -1,1.0,0.0,-5.224646179885656,15.646726840803398 -1,1.0,1.0,9.75228216552403,-30.648662892676068 -1,1.0,3.0,-1.7055303166990268,5.1973792282565086 -1,1.0,4.0,-1.1359607881738778,4.772479328281356 -1,1.0,5.0,-1.6861448807654689,5.116477495334806 -1,2.0,0.0,-1.5408698687669766,5.631674830095234 -1,2.0,2.0,9.736318911079088,-29.13794745915803 -1,2.0,3.0,-8.19544904231211,23.5308726290628 -1,3.0,1.0,-1.7055303166990268,5.1973792282565086 -1,3.0,2.0,-8.19544904231211,23.5308726290628 -1,3.0,3.0,16.314103089185693,-55.509410535254254 -1,3.0,5.0,-6.413123730174556,22.31120356548123 -1,3.0,11.0,0.0,4.191255364806866 -1,4.0,1.0,-1.1359607881738778,4.772479328281356 -1,4.0,4.0,4.089980824135861,-12.190647245055052 -1,4.0,6.0,-2.954020035961983,7.449267916773697 -1,5.0,1.0,-1.6861448807654689,5.116477495334806 -1,5.0,3.0,-6.413123730174556,22.31120356548123 -1,5.0,5.0,22.341631269034565,-82.8291478657789 -1,5.0,6.0,-3.590210423980992,11.02611441072814 -1,5.0,7.0,-6.289308176100628,22.0125786163522 -1,5.0,8.0,0.0,4.915840805411357 -1,5.0,9.0,0.0,1.8561002591115965 -1,5.0,27.0,-4.362844058012917,15.463571542897856 -1,6.0,4.0,-2.954020035961983,7.449267916773697 -1,6.0,5.0,-3.590210423980992,11.02611441072814 -1,6.0,6.0,6.544230459942975,-18.45668232750184 -1,7.0,5.0,-6.289308176100628,22.0125786163522 -1,7.0,7.0,7.733287237496075,-26.527493274828448 -1,7.0,27.0,-1.4439790613954469,4.540814658476248 -1,8.0,5.0,0.0,4.915840805411357 -1,8.0,8.0,0.0,-18.706293706293707 -1,8.0,9.0,0.0,9.090909090909092 -1,8.0,10.0,0.0,4.807692307692308 -1,9.0,5.0,0.0,1.8561002591115965 -1,9.0,8.0,0.0,9.090909090909092 -1,9.0,9.0,13.462042814524237,-41.3837606675224 -1,9.0,16.0,-3.956039125715353,10.317447719844054 -1,9.0,19.0,-1.7848303152666305,3.98535828943083 -1,9.0,20.0,-5.101853820159654,10.98071411292983 -1,9.0,21.0,-2.619319553382597,5.400770303329455 -1,10.0,8.0,0.0,4.807692307692308 -1,10.0,10.0,0.0,-4.807692307692308 -1,11.0,3.0,0.0,4.191255364806866 -1,11.0,11.0,6.573961583776156,-24.424167659260668 -1,11.0,12.0,0.0,7.142857142857143 -1,11.0,13.0,-1.5265676088395577,3.1734252729654173 -1,11.0,14.0,-3.0953961826564296,6.097275864326261 -1,11.0,15.0,-1.9519977922801688,4.104359379111847 -1,12.0,11.0,0.0,7.142857142857143 -1,12.0,12.0,0.0,-7.142857142857143 -1,13.0,11.0,-1.5265676088395577,3.1734252729654173 -1,13.0,13.0,4.01751987283902,-5.424299332335067 -1,13.0,14.0,-2.4909522639994623,2.250874059369649 -1,14.0,11.0,-3.0953961826564296,6.097275864326261 -1,14.0,13.0,-2.4909522639994623,2.250874059369649 -1,14.0,14.0,9.365498545964757,-16.01163373210796 -1,14.0,17.0,-1.8108011504072024,3.687418931630696 -1,14.0,22.0,-1.9683489489016612,3.976064876781356 -1,15.0,11.0,-1.9519977922801688,4.104359379111847 -1,15.0,15.0,3.271064728633931,-8.94513365126506 -1,15.0,16.0,-1.3190669363537617,4.8407742721532125 -1,16.0,9.0,-3.956039125715353,10.317447719844054 -1,16.0,15.0,-1.3190669363537617,4.8407742721532125 -1,16.0,16.0,5.275106062069114,-15.158221991997266 -1,17.0,14.0,-1.8108011504072024,3.687418931630696 -1,17.0,17.0,4.886487584415919,-9.906177730909668 -1,17.0,18.0,-3.0756864340087167,6.218758799278971 -1,18.0,17.0,-3.0756864340087167,6.218758799278971 -1,18.0,18.0,8.958039375185187,-17.98346468163191 -1,18.0,19.0,-5.88235294117647,11.76470588235294 -1,19.0,9.0,-1.7848303152666305,3.98535828943083 -1,19.0,18.0,-5.88235294117647,11.76470588235294 -1,19.0,19.0,7.6671832564431,-15.75006417178377 -1,20.0,9.0,-5.101853820159654,10.98071411292983 -1,20.0,20.0,21.876495189895888,-45.10843276170355 -1,20.0,21.0,-16.774641369736234,34.127718648773715 -1,21.0,9.0,-2.619319553382597,5.400770303329455 -1,21.0,20.0,-16.774641369736234,34.127718648773715 -1,21.0,21.0,21.93449907537439,-43.48289181517921 -1,21.0,23.0,-2.5405381522555563,3.95440286307604 -1,22.0,14.0,-1.9683489489016612,3.976064876781356 -1,22.0,22.0,3.429754555384988,-6.965303617315433 -1,22.0,23.0,-1.4614056064833263,2.989238740534077 -1,23.0,21.0,-2.5405381522555563,3.95440286307604 -1,23.0,22.0,-1.4614056064833263,2.989238740534077 -1,23.0,23.0,5.311836702613133,-9.188263657315172 -1,23.0,24.0,-1.3098929438742493,2.287622053705056 -1,24.0,23.0,-1.3098929438742493,2.287622053705056 -1,24.0,24.0,4.495715080321987,-7.864978761969621 -1,24.0,25.0,-1.2165301194494855,1.8171440463475024 -1,24.0,26.0,-1.9692920169982515,3.760212661917064 -1,25.0,24.0,-1.2165301194494855,1.8171440463475024 -1,25.0,25.0,1.2165301194494855,-1.8171440463475024 -1,26.0,24.0,-1.9692920169982515,3.760212661917064 -1,26.0,26.0,3.652281470778589,-9.46044252232512 -1,26.0,27.0,0.0,2.608731947574922 -1,26.0,28.0,-0.99553355095268,1.881005840357816 -1,26.0,29.0,-0.6874559028276572,1.293971494797717 -1,27.0,5.0,-4.362844058012917,15.463571542897856 -1,27.0,7.0,-1.4439790613954469,4.540814658476248 -1,27.0,26.0,0.0,2.608731947574922 -1,27.0,27.0,5.806823119408364,-22.67145722159613 -1,28.0,26.0,-0.99553355095268,1.881005840357816 -1,28.0,28.0,1.9075867579849564,-3.604364401207048 -1,28.0,29.0,-0.9120532070322764,1.7233585608492326 -1,29.0,26.0,-0.6874559028276572,1.293971494797717 -1,29.0,28.0,-0.9120532070322764,1.7233585608492326 -1,29.0,29.0,1.5995091098599337,-3.0173300556469496 -2,0.0,0.0,6.765516048652632,-21.23160167089863 -2,0.0,1.0,-5.224646179885656,15.646726840803398 -2,0.0,2.0,-1.5408698687669766,5.631674830095234 -2,1.0,0.0,-5.224646179885656,15.646726840803398 -2,1.0,1.0,9.75228216552403,-30.648662892676068 -2,1.0,3.0,-1.7055303166990268,5.1973792282565086 -2,1.0,4.0,-1.1359607881738778,4.772479328281356 -2,1.0,5.0,-1.6861448807654689,5.116477495334806 -2,2.0,0.0,-1.5408698687669766,5.631674830095234 -2,2.0,2.0,9.736318911079088,-29.13794745915803 -2,2.0,3.0,-8.19544904231211,23.5308726290628 -2,3.0,1.0,-1.7055303166990268,5.1973792282565086 -2,3.0,2.0,-8.19544904231211,23.5308726290628 -2,3.0,3.0,16.314103089185693,-55.509410535254254 -2,3.0,5.0,-6.413123730174556,22.31120356548123 -2,3.0,11.0,0.0,4.191255364806866 -2,4.0,1.0,-1.1359607881738778,4.772479328281356 -2,4.0,4.0,4.089980824135861,-12.190647245055052 -2,4.0,6.0,-2.954020035961983,7.449267916773697 -2,5.0,1.0,-1.6861448807654689,5.116477495334806 -2,5.0,3.0,-6.413123730174556,22.31120356548123 -2,5.0,5.0,22.341631269034565,-82.8291478657789 -2,5.0,6.0,-3.590210423980992,11.02611441072814 -2,5.0,7.0,-6.289308176100628,22.0125786163522 -2,5.0,8.0,0.0,4.915840805411357 -2,5.0,9.0,0.0,1.8561002591115965 -2,5.0,27.0,-4.362844058012917,15.463571542897856 -2,6.0,4.0,-2.954020035961983,7.449267916773697 -2,6.0,5.0,-3.590210423980992,11.02611441072814 -2,6.0,6.0,6.544230459942975,-18.45668232750184 -2,7.0,5.0,-6.289308176100628,22.0125786163522 -2,7.0,7.0,7.733287237496075,-26.527493274828448 -2,7.0,27.0,-1.4439790613954469,4.540814658476248 -2,8.0,5.0,0.0,4.915840805411357 -2,8.0,8.0,0.0,-18.706293706293707 -2,8.0,9.0,0.0,9.090909090909092 -2,8.0,10.0,0.0,4.807692307692308 -2,9.0,5.0,0.0,1.8561002591115965 -2,9.0,8.0,0.0,9.090909090909092 -2,9.0,9.0,13.462042814524237,-41.3837606675224 -2,9.0,16.0,-3.956039125715353,10.317447719844054 -2,9.0,19.0,-1.7848303152666305,3.98535828943083 -2,9.0,20.0,-5.101853820159654,10.98071411292983 -2,9.0,21.0,-2.619319553382597,5.400770303329455 -2,10.0,8.0,0.0,4.807692307692308 -2,10.0,10.0,0.0,-4.807692307692308 -2,11.0,3.0,0.0,4.191255364806866 -2,11.0,11.0,6.573961583776156,-24.424167659260668 -2,11.0,12.0,0.0,7.142857142857143 -2,11.0,13.0,-1.5265676088395577,3.1734252729654173 -2,11.0,14.0,-3.0953961826564296,6.097275864326261 -2,11.0,15.0,-1.9519977922801688,4.104359379111847 -2,12.0,11.0,0.0,7.142857142857143 -2,12.0,12.0,0.0,-7.142857142857143 -2,13.0,11.0,-1.5265676088395577,3.1734252729654173 -2,13.0,13.0,4.01751987283902,-5.424299332335067 -2,13.0,14.0,-2.4909522639994623,2.250874059369649 -2,14.0,11.0,-3.0953961826564296,6.097275864326261 -2,14.0,13.0,-2.4909522639994623,2.250874059369649 -2,14.0,14.0,9.365498545964757,-16.01163373210796 -2,14.0,17.0,-1.8108011504072024,3.687418931630696 -2,14.0,22.0,-1.9683489489016612,3.976064876781356 -2,15.0,11.0,-1.9519977922801688,4.104359379111847 -2,15.0,15.0,3.271064728633931,-8.94513365126506 -2,15.0,16.0,-1.3190669363537617,4.8407742721532125 -2,16.0,9.0,-3.956039125715353,10.317447719844054 -2,16.0,15.0,-1.3190669363537617,4.8407742721532125 -2,16.0,16.0,5.275106062069114,-15.158221991997266 -2,17.0,14.0,-1.8108011504072024,3.687418931630696 -2,17.0,17.0,4.886487584415919,-9.906177730909668 -2,17.0,18.0,-3.0756864340087167,6.218758799278971 -2,18.0,17.0,-3.0756864340087167,6.218758799278971 -2,18.0,18.0,8.958039375185187,-17.98346468163191 -2,18.0,19.0,-5.88235294117647,11.76470588235294 -2,19.0,9.0,-1.7848303152666305,3.98535828943083 -2,19.0,18.0,-5.88235294117647,11.76470588235294 -2,19.0,19.0,7.6671832564431,-15.75006417178377 -2,20.0,9.0,-5.101853820159654,10.98071411292983 -2,20.0,20.0,21.876495189895888,-45.10843276170355 -2,20.0,21.0,-16.774641369736234,34.127718648773715 -2,21.0,9.0,-2.619319553382597,5.400770303329455 -2,21.0,20.0,-16.774641369736234,34.127718648773715 -2,21.0,21.0,21.93449907537439,-43.48289181517921 -2,21.0,23.0,-2.5405381522555563,3.95440286307604 -2,22.0,14.0,-1.9683489489016612,3.976064876781356 -2,22.0,22.0,3.429754555384988,-6.965303617315433 -2,22.0,23.0,-1.4614056064833263,2.989238740534077 -2,23.0,21.0,-2.5405381522555563,3.95440286307604 -2,23.0,22.0,-1.4614056064833263,2.989238740534077 -2,23.0,23.0,5.311836702613133,-9.188263657315172 -2,23.0,24.0,-1.3098929438742493,2.287622053705056 -2,24.0,23.0,-1.3098929438742493,2.287622053705056 -2,24.0,24.0,4.495715080321987,-7.864978761969621 -2,24.0,25.0,-1.2165301194494855,1.8171440463475024 -2,24.0,26.0,-1.9692920169982515,3.760212661917064 -2,25.0,24.0,-1.2165301194494855,1.8171440463475024 -2,25.0,25.0,1.2165301194494855,-1.8171440463475024 -2,26.0,24.0,-1.9692920169982515,3.760212661917064 -2,26.0,26.0,3.652281470778589,-9.46044252232512 -2,26.0,27.0,0.0,2.608731947574922 -2,26.0,28.0,-0.99553355095268,1.881005840357816 -2,26.0,29.0,-0.6874559028276572,1.293971494797717 -2,27.0,5.0,-4.362844058012917,15.463571542897856 -2,27.0,7.0,-1.4439790613954469,4.540814658476248 -2,27.0,26.0,0.0,2.608731947574922 -2,27.0,27.0,5.806823119408364,-22.67145722159613 -2,28.0,26.0,-0.99553355095268,1.881005840357816 -2,28.0,28.0,1.9075867579849564,-3.604364401207048 -2,28.0,29.0,-0.9120532070322764,1.7233585608492326 -2,29.0,26.0,-0.6874559028276572,1.293971494797717 -2,29.0,28.0,-0.9120532070322764,1.7233585608492326 -2,29.0,29.0,1.5995091098599337,-3.0173300556469496 -3,0.0,0.0,6.765516048652632,-21.23160167089863 -3,0.0,1.0,-5.224646179885656,15.646726840803398 -3,0.0,2.0,-1.5408698687669766,5.631674830095234 -3,1.0,0.0,-5.224646179885656,15.646726840803398 -3,1.0,1.0,9.75228216552403,-30.648662892676068 -3,1.0,3.0,-1.7055303166990268,5.1973792282565086 -3,1.0,4.0,-1.1359607881738778,4.772479328281356 -3,1.0,5.0,-1.6861448807654689,5.116477495334806 -3,2.0,0.0,-1.5408698687669766,5.631674830095234 -3,2.0,2.0,9.736318911079088,-29.13794745915803 -3,2.0,3.0,-8.19544904231211,23.5308726290628 -3,3.0,1.0,-1.7055303166990268,5.1973792282565086 -3,3.0,2.0,-8.19544904231211,23.5308726290628 -3,3.0,3.0,16.314103089185693,-55.509410535254254 -3,3.0,5.0,-6.413123730174556,22.31120356548123 -3,3.0,11.0,0.0,4.191255364806866 -3,4.0,1.0,-1.1359607881738778,4.772479328281356 -3,4.0,4.0,1.1359607881738778,-4.751579328281355 -3,5.0,1.0,-1.6861448807654689,5.116477495334806 -3,5.0,3.0,-6.413123730174556,22.31120356548123 -3,5.0,5.0,22.341631269034565,-82.8291478657789 -3,5.0,6.0,-3.590210423980992,11.02611441072814 -3,5.0,7.0,-6.289308176100628,22.0125786163522 -3,5.0,8.0,0.0,4.915840805411357 -3,5.0,9.0,0.0,1.8561002591115965 -3,5.0,27.0,-4.362844058012917,15.463571542897856 -3,6.0,5.0,-3.590210423980992,11.02611441072814 -3,6.0,6.0,3.590210423980992,-11.01761441072814 -3,7.0,5.0,-6.289308176100628,22.0125786163522 -3,7.0,7.0,7.733287237496075,-26.527493274828448 -3,7.0,27.0,-1.4439790613954469,4.540814658476248 -3,8.0,5.0,0.0,4.915840805411357 -3,8.0,8.0,0.0,-18.706293706293707 -3,8.0,9.0,0.0,9.090909090909092 -3,8.0,10.0,0.0,4.807692307692308 -3,9.0,5.0,0.0,1.8561002591115965 -3,9.0,8.0,0.0,9.090909090909092 -3,9.0,9.0,8.36018899436458,-30.40304655459257 -3,9.0,16.0,-3.956039125715353,10.317447719844054 -3,9.0,19.0,-1.7848303152666305,3.98535828943083 -3,9.0,21.0,-2.619319553382597,5.400770303329455 -3,10.0,8.0,0.0,4.807692307692308 -3,10.0,10.0,0.0,-4.807692307692308 -3,11.0,3.0,0.0,4.191255364806866 -3,11.0,11.0,6.573961583776156,-24.424167659260668 -3,11.0,12.0,0.0,7.142857142857143 -3,11.0,13.0,-1.5265676088395577,3.1734252729654173 -3,11.0,14.0,-3.0953961826564296,6.097275864326261 -3,11.0,15.0,-1.9519977922801688,4.104359379111847 -3,12.0,11.0,0.0,7.142857142857143 -3,12.0,12.0,0.0,-7.142857142857143 -3,13.0,11.0,-1.5265676088395577,3.1734252729654173 -3,13.0,13.0,4.01751987283902,-5.424299332335067 -3,13.0,14.0,-2.4909522639994623,2.250874059369649 -3,14.0,11.0,-3.0953961826564296,6.097275864326261 -3,14.0,13.0,-2.4909522639994623,2.250874059369649 -3,14.0,14.0,9.365498545964757,-16.01163373210796 -3,14.0,17.0,-1.8108011504072024,3.687418931630696 -3,14.0,22.0,-1.9683489489016612,3.976064876781356 -3,15.0,11.0,-1.9519977922801688,4.104359379111847 -3,15.0,15.0,3.271064728633931,-8.94513365126506 -3,15.0,16.0,-1.3190669363537617,4.8407742721532125 -3,16.0,9.0,-3.956039125715353,10.317447719844054 -3,16.0,15.0,-1.3190669363537617,4.8407742721532125 -3,16.0,16.0,5.275106062069114,-15.158221991997266 -3,17.0,14.0,-1.8108011504072024,3.687418931630696 -3,17.0,17.0,4.886487584415919,-9.906177730909668 -3,17.0,18.0,-3.0756864340087167,6.218758799278971 -3,18.0,17.0,-3.0756864340087167,6.218758799278971 -3,18.0,18.0,8.958039375185187,-17.98346468163191 -3,18.0,19.0,-5.88235294117647,11.76470588235294 -3,19.0,9.0,-1.7848303152666305,3.98535828943083 -3,19.0,18.0,-5.88235294117647,11.76470588235294 -3,19.0,19.0,7.6671832564431,-15.75006417178377 -3,20.0,20.0,16.774641369736234,-34.127718648773715 -3,20.0,21.0,-16.774641369736234,34.127718648773715 -3,21.0,9.0,-2.619319553382597,5.400770303329455 -3,21.0,20.0,-16.774641369736234,34.127718648773715 -3,21.0,21.0,21.93449907537439,-43.48289181517921 -3,21.0,23.0,-2.5405381522555563,3.95440286307604 -3,22.0,14.0,-1.9683489489016612,3.976064876781356 -3,22.0,22.0,3.429754555384988,-6.965303617315433 -3,22.0,23.0,-1.4614056064833263,2.989238740534077 -3,23.0,21.0,-2.5405381522555563,3.95440286307604 -3,23.0,22.0,-1.4614056064833263,2.989238740534077 -3,23.0,23.0,5.311836702613133,-9.188263657315172 -3,23.0,24.0,-1.3098929438742493,2.287622053705056 -3,24.0,23.0,-1.3098929438742493,2.287622053705056 -3,24.0,24.0,4.495715080321987,-7.864978761969621 -3,24.0,25.0,-1.2165301194494855,1.8171440463475024 -3,24.0,26.0,-1.9692920169982515,3.760212661917064 -3,25.0,24.0,-1.2165301194494855,1.8171440463475024 -3,25.0,25.0,1.2165301194494855,-1.8171440463475024 -3,26.0,24.0,-1.9692920169982515,3.760212661917064 -3,26.0,26.0,3.652281470778589,-9.46044252232512 -3,26.0,27.0,0.0,2.608731947574922 -3,26.0,28.0,-0.99553355095268,1.881005840357816 -3,26.0,29.0,-0.6874559028276572,1.293971494797717 -3,27.0,5.0,-4.362844058012917,15.463571542897856 -3,27.0,7.0,-1.4439790613954469,4.540814658476248 -3,27.0,26.0,0.0,2.608731947574922 -3,27.0,27.0,5.806823119408364,-22.67145722159613 -3,28.0,26.0,-0.99553355095268,1.881005840357816 -3,28.0,28.0,0.99553355095268,-1.881005840357816 -3,29.0,26.0,-0.6874559028276572,1.293971494797717 -3,29.0,29.0,0.6874559028276572,-1.293971494797717 -4,0.0,0.0,1.5408698687669766,-5.611274830095233 -4,0.0,2.0,-1.5408698687669766,5.631674830095234 -4,1.0,1.0,4.527635985638374,-15.028336051872673 -4,1.0,3.0,-1.7055303166990268,5.1973792282565086 -4,1.0,4.0,-1.1359607881738778,4.772479328281356 -4,1.0,5.0,-1.6861448807654689,5.116477495334806 -4,2.0,0.0,-1.5408698687669766,5.631674830095234 -4,2.0,2.0,9.736318911079088,-29.13794745915803 -4,2.0,3.0,-8.19544904231211,23.5308726290628 -4,3.0,1.0,-1.7055303166990268,5.1973792282565086 -4,3.0,2.0,-8.19544904231211,23.5308726290628 -4,3.0,3.0,16.314103089185693,-55.509410535254254 -4,3.0,5.0,-6.413123730174556,22.31120356548123 -4,3.0,11.0,0.0,4.191255364806866 -4,4.0,1.0,-1.1359607881738778,4.772479328281356 -4,4.0,4.0,4.089980824135861,-12.190647245055052 -4,4.0,6.0,-2.954020035961983,7.449267916773697 -4,5.0,1.0,-1.6861448807654689,5.116477495334806 -4,5.0,3.0,-6.413123730174556,22.31120356548123 -4,5.0,5.0,16.052323092933932,-60.8210692494267 -4,5.0,6.0,-3.590210423980992,11.02611441072814 -4,5.0,8.0,0.0,4.915840805411357 -4,5.0,9.0,0.0,1.8561002591115965 -4,5.0,27.0,-4.362844058012917,15.463571542897856 -4,6.0,4.0,-2.954020035961983,7.449267916773697 -4,6.0,5.0,-3.590210423980992,11.02611441072814 -4,6.0,6.0,6.544230459942975,-18.45668232750184 -4,7.0,7.0,1.4439790613954469,-4.519414658476248 -4,7.0,27.0,-1.4439790613954469,4.540814658476248 -4,8.0,5.0,0.0,4.915840805411357 -4,8.0,8.0,0.0,-18.706293706293707 -4,8.0,9.0,0.0,9.090909090909092 -4,8.0,10.0,0.0,4.807692307692308 -4,9.0,5.0,0.0,1.8561002591115965 -4,9.0,8.0,0.0,9.090909090909092 -4,9.0,9.0,13.462042814524237,-41.3837606675224 -4,9.0,16.0,-3.956039125715353,10.317447719844054 -4,9.0,19.0,-1.7848303152666305,3.98535828943083 -4,9.0,20.0,-5.101853820159654,10.98071411292983 -4,9.0,21.0,-2.619319553382597,5.400770303329455 -4,10.0,8.0,0.0,4.807692307692308 -4,10.0,10.0,0.0,-4.807692307692308 -4,11.0,3.0,0.0,4.191255364806866 -4,11.0,11.0,6.573961583776156,-24.424167659260668 -4,11.0,12.0,0.0,7.142857142857143 -4,11.0,13.0,-1.5265676088395577,3.1734252729654173 -4,11.0,14.0,-3.0953961826564296,6.097275864326261 -4,11.0,15.0,-1.9519977922801688,4.104359379111847 -4,12.0,11.0,0.0,7.142857142857143 -4,12.0,12.0,0.0,-7.142857142857143 -4,13.0,11.0,-1.5265676088395577,3.1734252729654173 -4,13.0,13.0,4.01751987283902,-5.424299332335067 -4,13.0,14.0,-2.4909522639994623,2.250874059369649 -4,14.0,11.0,-3.0953961826564296,6.097275864326261 -4,14.0,13.0,-2.4909522639994623,2.250874059369649 -4,14.0,14.0,7.397149597063095,-12.035568855326606 -4,14.0,17.0,-1.8108011504072024,3.687418931630696 -4,15.0,11.0,-1.9519977922801688,4.104359379111847 -4,15.0,15.0,3.271064728633931,-8.94513365126506 -4,15.0,16.0,-1.3190669363537617,4.8407742721532125 -4,16.0,9.0,-3.956039125715353,10.317447719844054 -4,16.0,15.0,-1.3190669363537617,4.8407742721532125 -4,16.0,16.0,5.275106062069114,-15.158221991997266 -4,17.0,14.0,-1.8108011504072024,3.687418931630696 -4,17.0,17.0,4.886487584415919,-9.906177730909668 -4,17.0,18.0,-3.0756864340087167,6.218758799278971 -4,18.0,17.0,-3.0756864340087167,6.218758799278971 -4,18.0,18.0,8.958039375185187,-17.98346468163191 -4,18.0,19.0,-5.88235294117647,11.76470588235294 -4,19.0,9.0,-1.7848303152666305,3.98535828943083 -4,19.0,18.0,-5.88235294117647,11.76470588235294 -4,19.0,19.0,7.6671832564431,-15.75006417178377 -4,20.0,9.0,-5.101853820159654,10.98071411292983 -4,20.0,20.0,21.876495189895888,-45.10843276170355 -4,20.0,21.0,-16.774641369736234,34.127718648773715 -4,21.0,9.0,-2.619319553382597,5.400770303329455 -4,21.0,20.0,-16.774641369736234,34.127718648773715 -4,21.0,21.0,21.93449907537439,-43.48289181517921 -4,21.0,23.0,-2.5405381522555563,3.95440286307604 -4,22.0,22.0,1.4614056064833263,-2.989238740534077 -4,22.0,23.0,-1.4614056064833263,2.989238740534077 -4,23.0,21.0,-2.5405381522555563,3.95440286307604 -4,23.0,22.0,-1.4614056064833263,2.989238740534077 -4,23.0,23.0,5.311836702613133,-9.188263657315172 -4,23.0,24.0,-1.3098929438742493,2.287622053705056 -4,24.0,23.0,-1.3098929438742493,2.287622053705056 -4,24.0,24.0,4.495715080321987,-7.864978761969621 -4,24.0,25.0,-1.2165301194494855,1.8171440463475024 -4,24.0,26.0,-1.9692920169982515,3.760212661917064 -4,25.0,24.0,-1.2165301194494855,1.8171440463475024 -4,25.0,25.0,1.2165301194494855,-1.8171440463475024 -4,26.0,24.0,-1.9692920169982515,3.760212661917064 -4,26.0,26.0,3.652281470778589,-9.46044252232512 -4,26.0,27.0,0.0,2.608731947574922 -4,26.0,28.0,-0.99553355095268,1.881005840357816 -4,26.0,29.0,-0.6874559028276572,1.293971494797717 -4,27.0,5.0,-4.362844058012917,15.463571542897856 -4,27.0,7.0,-1.4439790613954469,4.540814658476248 -4,27.0,26.0,0.0,2.608731947574922 -4,27.0,27.0,5.806823119408364,-22.67145722159613 -4,28.0,26.0,-0.99553355095268,1.881005840357816 -4,28.0,28.0,1.9075867579849564,-3.604364401207048 -4,28.0,29.0,-0.9120532070322764,1.7233585608492326 -4,29.0,26.0,-0.6874559028276572,1.293971494797717 -4,29.0,28.0,-0.9120532070322764,1.7233585608492326 -4,29.0,29.0,1.5995091098599337,-3.0173300556469496 -5,0.0,0.0,6.765516048652632,-21.23160167089863 -5,0.0,1.0,-5.224646179885656,15.646726840803398 -5,0.0,2.0,-1.5408698687669766,5.631674830095234 -5,1.0,0.0,-5.224646179885656,15.646726840803398 -5,1.0,1.0,9.75228216552403,-30.648662892676068 -5,1.0,3.0,-1.7055303166990268,5.1973792282565086 -5,1.0,4.0,-1.1359607881738778,4.772479328281356 -5,1.0,5.0,-1.6861448807654689,5.116477495334806 -5,2.0,0.0,-1.5408698687669766,5.631674830095234 -5,2.0,2.0,9.736318911079088,-29.13794745915803 -5,2.0,3.0,-8.19544904231211,23.5308726290628 -5,3.0,1.0,-1.7055303166990268,5.1973792282565086 -5,3.0,2.0,-8.19544904231211,23.5308726290628 -5,3.0,3.0,16.314103089185693,-55.509410535254254 -5,3.0,5.0,-6.413123730174556,22.31120356548123 -5,3.0,11.0,0.0,4.191255364806866 -5,4.0,1.0,-1.1359607881738778,4.772479328281356 -5,4.0,4.0,4.089980824135861,-12.190647245055052 -5,4.0,6.0,-2.954020035961983,7.449267916773697 -5,5.0,1.0,-1.6861448807654689,5.116477495334806 -5,5.0,3.0,-6.413123730174556,22.31120356548123 -5,5.0,5.0,22.341631269034565,-82.8291478657789 -5,5.0,6.0,-3.590210423980992,11.02611441072814 -5,5.0,7.0,-6.289308176100628,22.0125786163522 -5,5.0,8.0,0.0,4.915840805411357 -5,5.0,9.0,0.0,1.8561002591115965 -5,5.0,27.0,-4.362844058012917,15.463571542897856 -5,6.0,4.0,-2.954020035961983,7.449267916773697 -5,6.0,5.0,-3.590210423980992,11.02611441072814 -5,6.0,6.0,6.544230459942975,-18.45668232750184 -5,7.0,5.0,-6.289308176100628,22.0125786163522 -5,7.0,7.0,7.733287237496075,-26.527493274828448 -5,7.0,27.0,-1.4439790613954469,4.540814658476248 -5,8.0,5.0,0.0,4.915840805411357 -5,8.0,8.0,0.0,-18.706293706293707 -5,8.0,9.0,0.0,9.090909090909092 -5,8.0,10.0,0.0,4.807692307692308 -5,9.0,5.0,0.0,1.8561002591115965 -5,9.0,8.0,0.0,9.090909090909092 -5,9.0,9.0,13.462042814524237,-41.3837606675224 -5,9.0,16.0,-3.956039125715353,10.317447719844054 -5,9.0,19.0,-1.7848303152666305,3.98535828943083 -5,9.0,20.0,-5.101853820159654,10.98071411292983 -5,9.0,21.0,-2.619319553382597,5.400770303329455 -5,10.0,8.0,0.0,4.807692307692308 -5,10.0,10.0,0.0,-4.807692307692308 -5,11.0,3.0,0.0,4.191255364806866 -5,11.0,11.0,6.573961583776156,-24.424167659260668 -5,11.0,12.0,0.0,7.142857142857143 -5,11.0,13.0,-1.5265676088395577,3.1734252729654173 -5,11.0,14.0,-3.0953961826564296,6.097275864326261 -5,11.0,15.0,-1.9519977922801688,4.104359379111847 -5,12.0,11.0,0.0,7.142857142857143 -5,12.0,12.0,0.0,-7.142857142857143 -5,13.0,11.0,-1.5265676088395577,3.1734252729654173 -5,13.0,13.0,4.01751987283902,-5.424299332335067 -5,13.0,14.0,-2.4909522639994623,2.250874059369649 -5,14.0,11.0,-3.0953961826564296,6.097275864326261 -5,14.0,13.0,-2.4909522639994623,2.250874059369649 -5,14.0,14.0,7.397149597063095,-12.035568855326606 -5,14.0,17.0,-1.8108011504072024,3.687418931630696 -5,15.0,11.0,-1.9519977922801688,4.104359379111847 -5,15.0,15.0,3.271064728633931,-8.94513365126506 -5,15.0,16.0,-1.3190669363537617,4.8407742721532125 -5,16.0,9.0,-3.956039125715353,10.317447719844054 -5,16.0,15.0,-1.3190669363537617,4.8407742721532125 -5,16.0,16.0,5.275106062069114,-15.158221991997266 -5,17.0,14.0,-1.8108011504072024,3.687418931630696 -5,17.0,17.0,4.886487584415919,-9.906177730909668 -5,17.0,18.0,-3.0756864340087167,6.218758799278971 -5,18.0,17.0,-3.0756864340087167,6.218758799278971 -5,18.0,18.0,8.958039375185187,-17.98346468163191 -5,18.0,19.0,-5.88235294117647,11.76470588235294 -5,19.0,9.0,-1.7848303152666305,3.98535828943083 -5,19.0,18.0,-5.88235294117647,11.76470588235294 -5,19.0,19.0,7.6671832564431,-15.75006417178377 -5,20.0,9.0,-5.101853820159654,10.98071411292983 -5,20.0,20.0,21.876495189895888,-45.10843276170355 -5,20.0,21.0,-16.774641369736234,34.127718648773715 -5,21.0,9.0,-2.619319553382597,5.400770303329455 -5,21.0,20.0,-16.774641369736234,34.127718648773715 -5,21.0,21.0,21.93449907537439,-43.48289181517921 -5,21.0,23.0,-2.5405381522555563,3.95440286307604 -5,22.0,22.0,1.4614056064833263,-2.989238740534077 -5,22.0,23.0,-1.4614056064833263,2.989238740534077 -5,23.0,21.0,-2.5405381522555563,3.95440286307604 -5,23.0,22.0,-1.4614056064833263,2.989238740534077 -5,23.0,23.0,4.001943758738883,-6.900641603610116 -5,24.0,24.0,3.185822136447737,-5.577356708264566 -5,24.0,25.0,-1.2165301194494855,1.8171440463475024 -5,24.0,26.0,-1.9692920169982515,3.760212661917064 -5,25.0,24.0,-1.2165301194494855,1.8171440463475024 -5,25.0,25.0,1.2165301194494855,-1.8171440463475024 -5,26.0,24.0,-1.9692920169982515,3.760212661917064 -5,26.0,26.0,3.652281470778589,-9.46044252232512 -5,26.0,27.0,0.0,2.608731947574922 -5,26.0,28.0,-0.99553355095268,1.881005840357816 -5,26.0,29.0,-0.6874559028276572,1.293971494797717 -5,27.0,5.0,-4.362844058012917,15.463571542897856 -5,27.0,7.0,-1.4439790613954469,4.540814658476248 -5,27.0,26.0,0.0,2.608731947574922 -5,27.0,27.0,5.806823119408364,-22.67145722159613 -5,28.0,26.0,-0.99553355095268,1.881005840357816 -5,28.0,28.0,1.9075867579849564,-3.604364401207048 -5,28.0,29.0,-0.9120532070322764,1.7233585608492326 -5,29.0,26.0,-0.6874559028276572,1.293971494797717 -5,29.0,28.0,-0.9120532070322764,1.7233585608492326 -5,29.0,29.0,1.5995091098599337,-3.0173300556469496 -6,0.0,0.0,6.765516048652632,-21.23160167089863 -6,0.0,1.0,-5.224646179885656,15.646726840803398 -6,0.0,2.0,-1.5408698687669766,5.631674830095234 -6,1.0,0.0,-5.224646179885656,15.646726840803398 -6,1.0,1.0,9.75228216552403,-30.648662892676068 -6,1.0,3.0,-1.7055303166990268,5.1973792282565086 -6,1.0,4.0,-1.1359607881738778,4.772479328281356 -6,1.0,5.0,-1.6861448807654689,5.116477495334806 -6,2.0,0.0,-1.5408698687669766,5.631674830095234 -6,2.0,2.0,9.736318911079088,-29.13794745915803 -6,2.0,3.0,-8.19544904231211,23.5308726290628 -6,3.0,1.0,-1.7055303166990268,5.1973792282565086 -6,3.0,2.0,-8.19544904231211,23.5308726290628 -6,3.0,3.0,16.314103089185693,-55.509410535254254 -6,3.0,5.0,-6.413123730174556,22.31120356548123 -6,3.0,11.0,0.0,4.191255364806866 -6,4.0,1.0,-1.1359607881738778,4.772479328281356 -6,4.0,4.0,4.089980824135861,-12.190647245055052 -6,4.0,6.0,-2.954020035961983,7.449267916773697 -6,5.0,1.0,-1.6861448807654689,5.116477495334806 -6,5.0,3.0,-6.413123730174556,22.31120356548123 -6,5.0,5.0,22.341631269034565,-80.91366772221689 -6,5.0,6.0,-3.590210423980992,11.02611441072814 -6,5.0,7.0,-6.289308176100628,22.0125786163522 -6,5.0,8.0,0.0,4.915840805411357 -6,5.0,27.0,-4.362844058012917,15.463571542897856 -6,6.0,4.0,-2.954020035961983,7.449267916773697 -6,6.0,5.0,-3.590210423980992,11.02611441072814 -6,6.0,6.0,6.544230459942975,-18.45668232750184 -6,7.0,5.0,-6.289308176100628,22.0125786163522 -6,7.0,7.0,7.733287237496075,-26.527493274828448 -6,7.0,27.0,-1.4439790613954469,4.540814658476248 -6,8.0,5.0,0.0,4.915840805411357 -6,8.0,8.0,0.0,-18.706293706293707 -6,8.0,9.0,0.0,9.090909090909092 -6,8.0,10.0,0.0,4.807692307692308 -6,9.0,8.0,0.0,9.090909090909092 -6,9.0,9.0,9.506003688808882,-29.267751796599203 -6,9.0,19.0,-1.7848303152666305,3.98535828943083 -6,9.0,20.0,-5.101853820159654,10.98071411292983 -6,9.0,21.0,-2.619319553382597,5.400770303329455 -6,10.0,8.0,0.0,4.807692307692308 -6,10.0,10.0,0.0,-4.807692307692308 -6,11.0,3.0,0.0,4.191255364806866 -6,11.0,11.0,6.573961583776156,-24.424167659260668 -6,11.0,12.0,0.0,7.142857142857143 -6,11.0,13.0,-1.5265676088395577,3.1734252729654173 -6,11.0,14.0,-3.0953961826564296,6.097275864326261 -6,11.0,15.0,-1.9519977922801688,4.104359379111847 -6,12.0,11.0,0.0,7.142857142857143 -6,12.0,12.0,0.0,-7.142857142857143 -6,13.0,11.0,-1.5265676088395577,3.1734252729654173 -6,13.0,13.0,4.01751987283902,-5.424299332335067 -6,13.0,14.0,-2.4909522639994623,2.250874059369649 -6,14.0,11.0,-3.0953961826564296,6.097275864326261 -6,14.0,13.0,-2.4909522639994623,2.250874059369649 -6,14.0,14.0,9.365498545964757,-16.01163373210796 -6,14.0,17.0,-1.8108011504072024,3.687418931630696 -6,14.0,22.0,-1.9683489489016612,3.976064876781356 -6,15.0,11.0,-1.9519977922801688,4.104359379111847 -6,15.0,15.0,3.271064728633931,-8.94513365126506 -6,15.0,16.0,-1.3190669363537617,4.8407742721532125 -6,16.0,15.0,-1.3190669363537617,4.8407742721532125 -6,16.0,16.0,1.3190669363537617,-4.8407742721532125 -6,17.0,14.0,-1.8108011504072024,3.687418931630696 -6,17.0,17.0,4.886487584415919,-9.906177730909668 -6,17.0,18.0,-3.0756864340087167,6.218758799278971 -6,18.0,17.0,-3.0756864340087167,6.218758799278971 -6,18.0,18.0,8.958039375185187,-17.98346468163191 -6,18.0,19.0,-5.88235294117647,11.76470588235294 -6,19.0,9.0,-1.7848303152666305,3.98535828943083 -6,19.0,18.0,-5.88235294117647,11.76470588235294 -6,19.0,19.0,7.6671832564431,-15.75006417178377 -6,20.0,9.0,-5.101853820159654,10.98071411292983 -6,20.0,20.0,21.876495189895888,-45.10843276170355 -6,20.0,21.0,-16.774641369736234,34.127718648773715 -6,21.0,9.0,-2.619319553382597,5.400770303329455 -6,21.0,20.0,-16.774641369736234,34.127718648773715 -6,21.0,21.0,21.93449907537439,-43.48289181517921 -6,21.0,23.0,-2.5405381522555563,3.95440286307604 -6,22.0,14.0,-1.9683489489016612,3.976064876781356 -6,22.0,22.0,3.429754555384988,-6.965303617315433 -6,22.0,23.0,-1.4614056064833263,2.989238740534077 -6,23.0,21.0,-2.5405381522555563,3.95440286307604 -6,23.0,22.0,-1.4614056064833263,2.989238740534077 -6,23.0,23.0,5.311836702613133,-9.188263657315172 -6,23.0,24.0,-1.3098929438742493,2.287622053705056 -6,24.0,23.0,-1.3098929438742493,2.287622053705056 -6,24.0,24.0,4.495715080321987,-7.864978761969621 -6,24.0,25.0,-1.2165301194494855,1.8171440463475024 -6,24.0,26.0,-1.9692920169982515,3.760212661917064 -6,25.0,24.0,-1.2165301194494855,1.8171440463475024 -6,25.0,25.0,1.2165301194494855,-1.8171440463475024 -6,26.0,24.0,-1.9692920169982515,3.760212661917064 -6,26.0,26.0,3.652281470778589,-9.46044252232512 -6,26.0,27.0,0.0,2.608731947574922 -6,26.0,28.0,-0.99553355095268,1.881005840357816 -6,26.0,29.0,-0.6874559028276572,1.293971494797717 -6,27.0,5.0,-4.362844058012917,15.463571542897856 -6,27.0,7.0,-1.4439790613954469,4.540814658476248 -6,27.0,26.0,0.0,2.608731947574922 -6,27.0,27.0,5.806823119408364,-22.67145722159613 -6,28.0,26.0,-0.99553355095268,1.881005840357816 -6,28.0,28.0,1.9075867579849564,-3.604364401207048 -6,28.0,29.0,-0.9120532070322764,1.7233585608492326 -6,29.0,26.0,-0.6874559028276572,1.293971494797717 -6,29.0,28.0,-0.9120532070322764,1.7233585608492326 -6,29.0,29.0,1.5995091098599337,-3.0173300556469496 -7,0.0,0.0,6.765516048652632,-21.23160167089863 -7,0.0,1.0,-5.224646179885656,15.646726840803398 -7,0.0,2.0,-1.5408698687669766,5.631674830095234 -7,1.0,0.0,-5.224646179885656,15.646726840803398 -7,1.0,1.0,9.75228216552403,-30.648662892676068 -7,1.0,3.0,-1.7055303166990268,5.1973792282565086 -7,1.0,4.0,-1.1359607881738778,4.772479328281356 -7,1.0,5.0,-1.6861448807654689,5.116477495334806 -7,2.0,0.0,-1.5408698687669766,5.631674830095234 -7,2.0,2.0,9.736318911079088,-29.13794745915803 -7,2.0,3.0,-8.19544904231211,23.5308726290628 -7,3.0,1.0,-1.7055303166990268,5.1973792282565086 -7,3.0,2.0,-8.19544904231211,23.5308726290628 -7,3.0,3.0,16.314103089185693,-55.509410535254254 -7,3.0,5.0,-6.413123730174556,22.31120356548123 -7,3.0,11.0,0.0,4.191255364806866 -7,4.0,1.0,-1.1359607881738778,4.772479328281356 -7,4.0,4.0,4.089980824135861,-12.190647245055052 -7,4.0,6.0,-2.954020035961983,7.449267916773697 -7,5.0,1.0,-1.6861448807654689,5.116477495334806 -7,5.0,3.0,-6.413123730174556,22.31120356548123 -7,5.0,5.0,17.978787211021647,-62.3456542314584 -7,5.0,6.0,-3.590210423980992,11.02611441072814 -7,5.0,7.0,-6.289308176100628,22.0125786163522 -7,5.0,9.0,0.0,1.8561002591115965 -7,6.0,4.0,-2.954020035961983,7.449267916773697 -7,6.0,5.0,-3.590210423980992,11.02611441072814 -7,6.0,6.0,6.544230459942975,-18.45668232750184 -7,7.0,5.0,-6.289308176100628,22.0125786163522 -7,7.0,7.0,7.733287237496075,-26.527493274828448 -7,7.0,27.0,-1.4439790613954469,4.540814658476248 -7,8.0,8.0,0.0,-13.8986013986014 -7,8.0,9.0,0.0,9.090909090909092 -7,8.0,10.0,0.0,4.807692307692308 -7,9.0,5.0,0.0,1.8561002591115965 -7,9.0,8.0,0.0,9.090909090909092 -7,9.0,9.0,13.462042814524237,-41.3837606675224 -7,9.0,16.0,-3.956039125715353,10.317447719844054 -7,9.0,19.0,-1.7848303152666305,3.98535828943083 -7,9.0,20.0,-5.101853820159654,10.98071411292983 -7,9.0,21.0,-2.619319553382597,5.400770303329455 -7,10.0,8.0,0.0,4.807692307692308 -7,10.0,10.0,0.0,-4.807692307692308 -7,11.0,3.0,0.0,4.191255364806866 -7,11.0,11.0,6.573961583776156,-24.424167659260668 -7,11.0,12.0,0.0,7.142857142857143 -7,11.0,13.0,-1.5265676088395577,3.1734252729654173 -7,11.0,14.0,-3.0953961826564296,6.097275864326261 -7,11.0,15.0,-1.9519977922801688,4.104359379111847 -7,12.0,11.0,0.0,7.142857142857143 -7,12.0,12.0,0.0,-7.142857142857143 -7,13.0,11.0,-1.5265676088395577,3.1734252729654173 -7,13.0,13.0,4.01751987283902,-5.424299332335067 -7,13.0,14.0,-2.4909522639994623,2.250874059369649 -7,14.0,11.0,-3.0953961826564296,6.097275864326261 -7,14.0,13.0,-2.4909522639994623,2.250874059369649 -7,14.0,14.0,9.365498545964757,-16.01163373210796 -7,14.0,17.0,-1.8108011504072024,3.687418931630696 -7,14.0,22.0,-1.9683489489016612,3.976064876781356 -7,15.0,11.0,-1.9519977922801688,4.104359379111847 -7,15.0,15.0,3.271064728633931,-8.94513365126506 -7,15.0,16.0,-1.3190669363537617,4.8407742721532125 -7,16.0,9.0,-3.956039125715353,10.317447719844054 -7,16.0,15.0,-1.3190669363537617,4.8407742721532125 -7,16.0,16.0,5.275106062069114,-15.158221991997266 -7,17.0,14.0,-1.8108011504072024,3.687418931630696 -7,17.0,17.0,4.886487584415919,-9.906177730909668 -7,17.0,18.0,-3.0756864340087167,6.218758799278971 -7,18.0,17.0,-3.0756864340087167,6.218758799278971 -7,18.0,18.0,8.958039375185187,-17.98346468163191 -7,18.0,19.0,-5.88235294117647,11.76470588235294 -7,19.0,9.0,-1.7848303152666305,3.98535828943083 -7,19.0,18.0,-5.88235294117647,11.76470588235294 -7,19.0,19.0,7.6671832564431,-15.75006417178377 -7,20.0,9.0,-5.101853820159654,10.98071411292983 -7,20.0,20.0,5.101853820159654,-10.98071411292983 -7,21.0,9.0,-2.619319553382597,5.400770303329455 -7,21.0,21.0,5.159857705638154,-9.355173166405494 -7,21.0,23.0,-2.5405381522555563,3.95440286307604 -7,22.0,14.0,-1.9683489489016612,3.976064876781356 -7,22.0,22.0,3.429754555384988,-6.965303617315433 -7,22.0,23.0,-1.4614056064833263,2.989238740534077 -7,23.0,21.0,-2.5405381522555563,3.95440286307604 -7,23.0,22.0,-1.4614056064833263,2.989238740534077 -7,23.0,23.0,5.311836702613133,-9.188263657315172 -7,23.0,24.0,-1.3098929438742493,2.287622053705056 -7,24.0,23.0,-1.3098929438742493,2.287622053705056 -7,24.0,24.0,2.526423063323735,-4.104766100052558 -7,24.0,25.0,-1.2165301194494855,1.8171440463475024 -7,25.0,24.0,-1.2165301194494855,1.8171440463475024 -7,25.0,25.0,1.2165301194494855,-1.8171440463475024 -7,26.0,26.0,1.6829894537803372,-5.700229860408058 -7,26.0,27.0,0.0,2.608731947574922 -7,26.0,28.0,-0.99553355095268,1.881005840357816 -7,26.0,29.0,-0.6874559028276572,1.293971494797717 -7,27.0,7.0,-1.4439790613954469,4.540814658476248 -7,27.0,26.0,0.0,2.608731947574922 -7,27.0,27.0,1.4439790613954469,-7.214385678698274 -7,28.0,26.0,-0.99553355095268,1.881005840357816 -7,28.0,28.0,1.9075867579849564,-3.604364401207048 -7,28.0,29.0,-0.9120532070322764,1.7233585608492326 -7,29.0,26.0,-0.6874559028276572,1.293971494797717 -7,29.0,28.0,-0.9120532070322764,1.7233585608492326 -7,29.0,29.0,1.5995091098599337,-3.0173300556469496 -8,0.0,0.0,6.765516048652632,-21.23160167089863 -8,0.0,1.0,-5.224646179885656,15.646726840803398 -8,0.0,2.0,-1.5408698687669766,5.631674830095234 -8,1.0,0.0,-5.224646179885656,15.646726840803398 -8,1.0,1.0,9.75228216552403,-30.648662892676068 -8,1.0,3.0,-1.7055303166990268,5.1973792282565086 -8,1.0,4.0,-1.1359607881738778,4.772479328281356 -8,1.0,5.0,-1.6861448807654689,5.116477495334806 -8,2.0,0.0,-1.5408698687669766,5.631674830095234 -8,2.0,2.0,9.736318911079088,-29.13794745915803 -8,2.0,3.0,-8.19544904231211,23.5308726290628 -8,3.0,1.0,-1.7055303166990268,5.1973792282565086 -8,3.0,2.0,-8.19544904231211,23.5308726290628 -8,3.0,3.0,16.314103089185693,-55.509410535254254 -8,3.0,5.0,-6.413123730174556,22.31120356548123 -8,3.0,11.0,0.0,4.191255364806866 -8,4.0,1.0,-1.1359607881738778,4.772479328281356 -8,4.0,4.0,4.089980824135861,-12.190647245055052 -8,4.0,6.0,-2.954020035961983,7.449267916773697 -8,5.0,1.0,-1.6861448807654689,5.116477495334806 -8,5.0,3.0,-6.413123730174556,22.31120356548123 -8,5.0,5.0,22.341631269034565,-82.8291478657789 -8,5.0,6.0,-3.590210423980992,11.02611441072814 -8,5.0,7.0,-6.289308176100628,22.0125786163522 -8,5.0,8.0,0.0,4.915840805411357 -8,5.0,9.0,0.0,1.8561002591115965 -8,5.0,27.0,-4.362844058012917,15.463571542897856 -8,6.0,4.0,-2.954020035961983,7.449267916773697 -8,6.0,5.0,-3.590210423980992,11.02611441072814 -8,6.0,6.0,6.544230459942975,-18.45668232750184 -8,7.0,5.0,-6.289308176100628,22.0125786163522 -8,7.0,7.0,7.733287237496075,-26.527493274828448 -8,7.0,27.0,-1.4439790613954469,4.540814658476248 -8,8.0,5.0,0.0,4.915840805411357 -8,8.0,8.0,0.0,-18.706293706293707 -8,8.0,9.0,0.0,9.090909090909092 -8,8.0,10.0,0.0,4.807692307692308 -8,9.0,5.0,0.0,1.8561002591115965 -8,9.0,8.0,0.0,9.090909090909092 -8,9.0,9.0,8.36018899436458,-30.40304655459257 -8,9.0,16.0,-3.956039125715353,10.317447719844054 -8,9.0,19.0,-1.7848303152666305,3.98535828943083 -8,9.0,21.0,-2.619319553382597,5.400770303329455 -8,10.0,8.0,0.0,4.807692307692308 -8,10.0,10.0,0.0,-4.807692307692308 -8,11.0,3.0,0.0,4.191255364806866 -8,11.0,11.0,6.573961583776156,-24.424167659260668 -8,11.0,12.0,0.0,7.142857142857143 -8,11.0,13.0,-1.5265676088395577,3.1734252729654173 -8,11.0,14.0,-3.0953961826564296,6.097275864326261 -8,11.0,15.0,-1.9519977922801688,4.104359379111847 -8,12.0,11.0,0.0,7.142857142857143 -8,12.0,12.0,0.0,-7.142857142857143 -8,13.0,11.0,-1.5265676088395577,3.1734252729654173 -8,13.0,13.0,4.01751987283902,-5.424299332335067 -8,13.0,14.0,-2.4909522639994623,2.250874059369649 -8,14.0,11.0,-3.0953961826564296,6.097275864326261 -8,14.0,13.0,-2.4909522639994623,2.250874059369649 -8,14.0,14.0,9.365498545964757,-16.01163373210796 -8,14.0,17.0,-1.8108011504072024,3.687418931630696 -8,14.0,22.0,-1.9683489489016612,3.976064876781356 -8,15.0,11.0,-1.9519977922801688,4.104359379111847 -8,15.0,15.0,3.271064728633931,-8.94513365126506 -8,15.0,16.0,-1.3190669363537617,4.8407742721532125 -8,16.0,9.0,-3.956039125715353,10.317447719844054 -8,16.0,15.0,-1.3190669363537617,4.8407742721532125 -8,16.0,16.0,5.275106062069114,-15.158221991997266 -8,17.0,14.0,-1.8108011504072024,3.687418931630696 -8,17.0,17.0,4.886487584415919,-9.906177730909668 -8,17.0,18.0,-3.0756864340087167,6.218758799278971 -8,18.0,17.0,-3.0756864340087167,6.218758799278971 -8,18.0,18.0,8.958039375185187,-17.98346468163191 -8,18.0,19.0,-5.88235294117647,11.76470588235294 -8,19.0,9.0,-1.7848303152666305,3.98535828943083 -8,19.0,18.0,-5.88235294117647,11.76470588235294 -8,19.0,19.0,7.6671832564431,-15.75006417178377 -8,20.0,20.0,16.774641369736234,-34.127718648773715 -8,20.0,21.0,-16.774641369736234,34.127718648773715 -8,21.0,9.0,-2.619319553382597,5.400770303329455 -8,21.0,20.0,-16.774641369736234,34.127718648773715 -8,21.0,21.0,21.93449907537439,-43.48289181517921 -8,21.0,23.0,-2.5405381522555563,3.95440286307604 -8,22.0,14.0,-1.9683489489016612,3.976064876781356 -8,22.0,22.0,3.429754555384988,-6.965303617315433 -8,22.0,23.0,-1.4614056064833263,2.989238740534077 -8,23.0,21.0,-2.5405381522555563,3.95440286307604 -8,23.0,22.0,-1.4614056064833263,2.989238740534077 -8,23.0,23.0,5.311836702613133,-9.188263657315172 -8,23.0,24.0,-1.3098929438742493,2.287622053705056 -8,24.0,23.0,-1.3098929438742493,2.287622053705056 -8,24.0,24.0,4.495715080321987,-7.864978761969621 -8,24.0,25.0,-1.2165301194494855,1.8171440463475024 -8,24.0,26.0,-1.9692920169982515,3.760212661917064 -8,25.0,24.0,-1.2165301194494855,1.8171440463475024 -8,25.0,25.0,1.2165301194494855,-1.8171440463475024 -8,26.0,24.0,-1.9692920169982515,3.760212661917064 -8,26.0,26.0,3.652281470778589,-9.46044252232512 -8,26.0,27.0,0.0,2.608731947574922 -8,26.0,28.0,-0.99553355095268,1.881005840357816 -8,26.0,29.0,-0.6874559028276572,1.293971494797717 -8,27.0,5.0,-4.362844058012917,15.463571542897856 -8,27.0,7.0,-1.4439790613954469,4.540814658476248 -8,27.0,26.0,0.0,2.608731947574922 -8,27.0,27.0,5.806823119408364,-22.67145722159613 -8,28.0,26.0,-0.99553355095268,1.881005840357816 -8,28.0,28.0,1.9075867579849564,-3.604364401207048 -8,28.0,29.0,-0.9120532070322764,1.7233585608492326 -8,29.0,26.0,-0.6874559028276572,1.293971494797717 -8,29.0,28.0,-0.9120532070322764,1.7233585608492326 -8,29.0,29.0,1.5995091098599337,-3.0173300556469496 -9,0.0,0.0,5.224646179885656,-15.620326840803395 -9,0.0,1.0,-5.224646179885656,15.646726840803398 -9,1.0,0.0,-5.224646179885656,15.646726840803398 -9,1.0,1.0,9.75228216552403,-30.648662892676068 -9,1.0,3.0,-1.7055303166990268,5.1973792282565086 -9,1.0,4.0,-1.1359607881738778,4.772479328281356 -9,1.0,5.0,-1.6861448807654689,5.116477495334806 -9,2.0,2.0,8.19544904231211,-23.5266726290628 -9,2.0,3.0,-8.19544904231211,23.5308726290628 -9,3.0,1.0,-1.7055303166990268,5.1973792282565086 -9,3.0,2.0,-8.19544904231211,23.5308726290628 -9,3.0,3.0,16.314103089185693,-55.509410535254254 -9,3.0,5.0,-6.413123730174556,22.31120356548123 -9,3.0,11.0,0.0,4.191255364806866 -9,4.0,1.0,-1.1359607881738778,4.772479328281356 -9,4.0,4.0,4.089980824135861,-12.190647245055052 -9,4.0,6.0,-2.954020035961983,7.449267916773697 -9,5.0,1.0,-1.6861448807654689,5.116477495334806 -9,5.0,3.0,-6.413123730174556,22.31120356548123 -9,5.0,5.0,22.341631269034565,-82.8291478657789 -9,5.0,6.0,-3.590210423980992,11.02611441072814 -9,5.0,7.0,-6.289308176100628,22.0125786163522 -9,5.0,8.0,0.0,4.915840805411357 -9,5.0,9.0,0.0,1.8561002591115965 -9,5.0,27.0,-4.362844058012917,15.463571542897856 -9,6.0,4.0,-2.954020035961983,7.449267916773697 -9,6.0,5.0,-3.590210423980992,11.02611441072814 -9,6.0,6.0,6.544230459942975,-18.45668232750184 -9,7.0,5.0,-6.289308176100628,22.0125786163522 -9,7.0,7.0,7.733287237496075,-26.527493274828448 -9,7.0,27.0,-1.4439790613954469,4.540814658476248 -9,8.0,5.0,0.0,4.915840805411357 -9,8.0,8.0,0.0,-18.706293706293707 -9,8.0,9.0,0.0,9.090909090909092 -9,8.0,10.0,0.0,4.807692307692308 -9,9.0,5.0,0.0,1.8561002591115965 -9,9.0,8.0,0.0,9.090909090909092 -9,9.0,9.0,13.462042814524237,-41.3837606675224 -9,9.0,16.0,-3.956039125715353,10.317447719844054 -9,9.0,19.0,-1.7848303152666305,3.98535828943083 -9,9.0,20.0,-5.101853820159654,10.98071411292983 -9,9.0,21.0,-2.619319553382597,5.400770303329455 -9,10.0,8.0,0.0,4.807692307692308 -9,10.0,10.0,0.0,-4.807692307692308 -9,11.0,3.0,0.0,4.191255364806866 -9,11.0,11.0,6.573961583776156,-24.424167659260668 -9,11.0,12.0,0.0,7.142857142857143 -9,11.0,13.0,-1.5265676088395577,3.1734252729654173 -9,11.0,14.0,-3.0953961826564296,6.097275864326261 -9,11.0,15.0,-1.9519977922801688,4.104359379111847 -9,12.0,11.0,0.0,7.142857142857143 -9,12.0,12.0,0.0,-7.142857142857143 -9,13.0,11.0,-1.5265676088395577,3.1734252729654173 -9,13.0,13.0,4.01751987283902,-5.424299332335067 -9,13.0,14.0,-2.4909522639994623,2.250874059369649 -9,14.0,11.0,-3.0953961826564296,6.097275864326261 -9,14.0,13.0,-2.4909522639994623,2.250874059369649 -9,14.0,14.0,9.365498545964757,-16.01163373210796 -9,14.0,17.0,-1.8108011504072024,3.687418931630696 -9,14.0,22.0,-1.9683489489016612,3.976064876781356 -9,15.0,11.0,-1.9519977922801688,4.104359379111847 -9,15.0,15.0,3.271064728633931,-8.94513365126506 -9,15.0,16.0,-1.3190669363537617,4.8407742721532125 -9,16.0,9.0,-3.956039125715353,10.317447719844054 -9,16.0,15.0,-1.3190669363537617,4.8407742721532125 -9,16.0,16.0,5.275106062069114,-15.158221991997266 -9,17.0,14.0,-1.8108011504072024,3.687418931630696 -9,17.0,17.0,4.886487584415919,-9.906177730909668 -9,17.0,18.0,-3.0756864340087167,6.218758799278971 -9,18.0,17.0,-3.0756864340087167,6.218758799278971 -9,18.0,18.0,3.0756864340087167,-6.218758799278971 -9,19.0,9.0,-1.7848303152666305,3.98535828943083 -9,19.0,19.0,1.7848303152666305,-3.98535828943083 -9,20.0,9.0,-5.101853820159654,10.98071411292983 -9,20.0,20.0,21.876495189895888,-45.10843276170355 -9,20.0,21.0,-16.774641369736234,34.127718648773715 -9,21.0,9.0,-2.619319553382597,5.400770303329455 -9,21.0,20.0,-16.774641369736234,34.127718648773715 -9,21.0,21.0,21.93449907537439,-43.48289181517921 -9,21.0,23.0,-2.5405381522555563,3.95440286307604 -9,22.0,14.0,-1.9683489489016612,3.976064876781356 -9,22.0,22.0,3.429754555384988,-6.965303617315433 -9,22.0,23.0,-1.4614056064833263,2.989238740534077 -9,23.0,21.0,-2.5405381522555563,3.95440286307604 -9,23.0,22.0,-1.4614056064833263,2.989238740534077 -9,23.0,23.0,5.311836702613133,-9.188263657315172 -9,23.0,24.0,-1.3098929438742493,2.287622053705056 -9,24.0,23.0,-1.3098929438742493,2.287622053705056 -9,24.0,24.0,4.495715080321987,-7.864978761969621 -9,24.0,25.0,-1.2165301194494855,1.8171440463475024 -9,24.0,26.0,-1.9692920169982515,3.760212661917064 -9,25.0,24.0,-1.2165301194494855,1.8171440463475024 -9,25.0,25.0,1.2165301194494855,-1.8171440463475024 -9,26.0,24.0,-1.9692920169982515,3.760212661917064 -9,26.0,26.0,3.652281470778589,-9.46044252232512 -9,26.0,27.0,0.0,2.608731947574922 -9,26.0,28.0,-0.99553355095268,1.881005840357816 -9,26.0,29.0,-0.6874559028276572,1.293971494797717 -9,27.0,5.0,-4.362844058012917,15.463571542897856 -9,27.0,7.0,-1.4439790613954469,4.540814658476248 -9,27.0,26.0,0.0,2.608731947574922 -9,27.0,27.0,5.806823119408364,-22.67145722159613 -9,28.0,26.0,-0.99553355095268,1.881005840357816 -9,28.0,28.0,1.9075867579849564,-3.604364401207048 -9,28.0,29.0,-0.9120532070322764,1.7233585608492326 -9,29.0,26.0,-0.6874559028276572,1.293971494797717 -9,29.0,28.0,-0.9120532070322764,1.7233585608492326 -9,29.0,29.0,1.5995091098599337,-3.0173300556469496 diff --git a/tests/data/case30_ieee/raw/pf_node.csv b/tests/data/case30_ieee/raw/pf_node.csv deleted file mode 100644 index f03c5aa..0000000 --- a/tests/data/case30_ieee/raw/pf_node.csv +++ /dev/null @@ -1,301 +0,0 @@ -scenario,bus,Pd,Qd,Pg,Qg,Vm,Va,PQ,PV,REF -0,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -0,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -0,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -0,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -0,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -0,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -0,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -0,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -0,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -0,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -0,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -0,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -0,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -0,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -0,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -0,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -0,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -0,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -0,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -0,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -0,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -0,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -0,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -0,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -0,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -0,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -0,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -0,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -0,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -0,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -1,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -1,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -1,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -1,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -1,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -1,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -1,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -1,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -1,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -1,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -1,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -1,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -1,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -1,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -1,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -1,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -1,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -1,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -1,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -1,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -1,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -1,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -1,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -1,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -1,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -1,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -1,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -1,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -1,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -1,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -2,0.0,0.0,0.0,166.55538543762017,0.000701706606776,1.0,0.0,0.0,0.0,1.0 -2,1.0,12.2157536527011,12.7,8.584055020711882e-07,10.966047085925824,0.979811684905562,-3.825424507099748,0.0,1.0,0.0 -2,2.0,1.3510510952296149,1.2,0.0,0.0,0.9736337429665128,-5.016608216487653,1.0,0.0,0.0 -2,3.0,4.278328468227114,1.6,0.0,0.0,0.9669088200901184,-6.16651274778606,1.0,0.0,0.0 -2,4.0,53.02875548776239,19.0,5.0265754761931355e-11,24.455196439792985,0.9593797497563644,-9.208364062687435,0.0,1.0,0.0 -2,5.0,0.0,0.0,0.0,0.0,0.9664805470426264,-7.319178981668967,1.0,0.0,0.0 -2,6.0,12.834985404681342,10.9,0.0,0.0,0.9570207690169904,-8.380329395918206,1.0,0.0,0.0 -2,7.0,16.888138690370187,30.0,3.3167232709618183e-10,30.68998171976842,0.9654716554559576,-7.762140403654436,0.0,1.0,0.0 -2,8.0,0.0,0.0,0.0,0.0,1.0152006403596812,-9.185818697389273,1.0,0.0,0.0 -2,9.0,3.265040146804903,2.0,0.0,0.0,1.006202359328467,-10.155217936879598,1.0,0.0,0.0 -2,10.0,0.0,0.0,1.1350252049266587e-09,22.825933515823056,1.0599915101526611,-9.18581869726357,0.0,1.0,0.0 -2,11.0,6.304905111071536,7.5,0.0,0.0,1.0134747218811753,-9.67415259662335,1.0,0.0,0.0 -2,12.0,0.0,0.0,3.927446454803881e-10,10.236166256541466,1.0274228569285109,-9.674152596593094,0.0,1.0,0.0 -2,13.0,3.490215329343172,1.6,0.0,0.0,1.0022582141378145,-10.161487311257712,1.0,0.0,0.0 -2,14.0,4.616091242034518,2.5,0.0,0.0,0.9988679185016628,-10.190873567580958,1.0,0.0,0.0 -2,15.0,1.9702828472098552,1.8,0.0,0.0,1.004111481871594,-9.99292426665681,1.0,0.0,0.0 -2,16.0,5.066441607111056,5.8,0.0,0.0,1.0011637392592216,-10.204185571640512,1.0,0.0,0.0 -2,17.0,1.8014014603061534,0.9,0.0,0.0,0.9921469673890496,-10.538929409945132,1.0,0.0,0.0 -2,18.0,5.347910585283892,3.4,0.0,0.0,0.9905019767347274,-10.643948600227269,1.0,0.0,0.0 -2,19.0,1.2384635039604803,0.7,0.0,0.0,0.9938021431970644,-10.554647010121268,1.0,0.0,0.0 -2,20.0,9.851414236049276,11.2,0.0,0.0,0.99553507516732,-10.340935572495638,1.0,0.0,0.0 -2,21.0,0.0,0.0,0.0,0.0,0.9959212854165136,-10.337112137838377,1.0,0.0,0.0 -2,22.0,1.8014014603061534,1.6,0.0,0.0,0.9902589655390128,-10.377429418835762,1.0,0.0,0.0 -2,23.0,4.897560220207354,6.7,0.0,0.0,0.985573763456298,-10.471291205808049,1.0,0.0,0.0 -2,24.0,0.0,0.0,0.0,0.0,0.9791385366874964,-10.191482413465884,1.0,0.0,0.0 -2,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648841667726286,-10.290691990400395,1.0,0.0,0.0 -2,26.0,0.0,0.0,0.0,0.0,0.9822595804429354,-9.930110297997638,1.0,0.0,0.0 -2,27.0,0.0,0.0,0.0,0.0,0.964398484601374,-7.685832642531029,1.0,0.0,0.0 -2,28.0,1.3510510952296149,0.9,0.0,0.0,0.968171873826716,-10.594976213638782,1.0,0.0,0.0 -2,29.0,5.967142337264132,1.9,0.0,0.0,0.960465538069216,-11.0928267529739,1.0,0.0,0.0 -3,0.0,0.0,0.0,166.85378583612885,0.2785656830463168,1.0,0.0,0.0,0.0,1.0 -3,1.0,12.2157536527011,12.7,0.0,0.0,0.9784854757740444,-3.8875839886906336,0.0,1.0,0.0 -3,2.0,1.3510510952296149,1.2,0.0,0.0,0.9765884650676998,-4.848976749532711,1.0,0.0,0.0 -3,3.0,4.278328468227114,1.6,0.0,0.0,0.9705239441800654,-5.956912441887878,1.0,0.0,0.0 -3,4.0,53.02875548776239,19.0,-2.3087547262295526e-10,27.65615702676783,0.967724693950446,-10.56866759415301,0.0,1.0,0.0 -3,5.0,0.0,0.0,0.0,0.0,0.9706167775810371,-6.968732773765852,1.0,0.0,0.0 -3,6.0,12.834985404681342,10.9,0.0,0.0,0.958348072375546,-7.450592192203251,1.0,0.0,0.0 -3,7.0,16.888138690370187,30.0,-3.240768832349293e-10,37.48756000114886,0.9720767198627198,-7.4521286141973215,0.0,1.0,0.0 -3,8.0,0.0,0.0,0.0,0.0,1.0202011321429303,-8.77246050511815,1.0,0.0,0.0 -3,9.0,3.265040146804903,2.0,0.0,0.0,1.014224200486333,-9.705763740889529,1.0,0.0,0.0 -3,10.0,0.0,0.0,-3.808387547072581e-10,20.281892681678848,1.0599995788768362,-8.772460505160119,0.0,1.0,0.0 -3,11.0,6.304905111071536,7.5,0.0,0.0,1.0241817718811388,-9.453470562284908,1.0,0.0,0.0 -3,12.0,0.0,0.0,-5.07758661507633e-10,15.981710270006529,1.045580782603483,-9.45347056232294,0.0,1.0,0.0 -3,13.0,3.490215329343172,1.6,0.0,0.0,1.0117889099479092,-9.935464634918576,1.0,0.0,0.0 -3,14.0,4.616091242034518,2.5,0.0,0.0,1.0071549332597731,-9.939660518057703,1.0,0.0,0.0 -3,15.0,1.9702828472098552,1.8,0.0,0.0,1.0138647995216927,-9.666363137255392,1.0,0.0,0.0 -3,16.0,5.066441607111056,5.8,0.0,0.0,1.0097178589866684,-9.793400671190405,1.0,0.0,0.0 -3,17.0,1.8014014603061534,0.9,0.0,0.0,1.000432310170185,-10.212095539161004,1.0,0.0,0.0 -3,18.0,5.347910585283892,3.4,0.0,0.0,0.9987638921333194,-10.273641733700623,1.0,0.0,0.0 -3,19.0,1.2384635039604803,0.7,0.0,0.0,1.002018971231569,-10.163818338918066,1.0,0.0,0.0 -3,20.0,9.851414236049276,11.2,0.0,0.0,0.9828998938114762,-10.253613029955856,1.0,0.0,0.0 -3,21.0,0.0,0.0,0.0,0.0,0.9867522764174392,-10.193017590833897,1.0,0.0,0.0 -3,22.0,1.8014014603061534,1.6,0.0,0.0,0.9937187235088748,-10.160961837122956,1.0,0.0,0.0 -3,23.0,4.897560220207354,6.7,0.0,0.0,0.9825825528531464,-10.307118792880493,1.0,0.0,0.0 -3,24.0,0.0,0.0,0.0,0.0,0.9790572626377432,-9.99311092502493,1.0,0.0,0.0 -3,25.0,1.9702828472098552,2.3,0.0,0.0,0.9648016736771668,-10.092337219733787,1.0,0.0,0.0 -3,26.0,0.0,0.0,0.0,0.0,0.983975341515412,-9.707562098493318,1.0,0.0,0.0 -3,27.0,0.0,0.0,0.0,0.0,0.9687003173346048,-7.351156617847395,1.0,0.0,0.0 -3,28.0,1.3510510952296149,0.9,0.0,0.0,0.9771038372005122,-9.924048231325171,1.0,0.0,0.0 -3,29.0,5.967142337264132,1.9,0.0,0.0,0.9513532940964032,-11.53672921111894,1.0,0.0,0.0 -4,0.0,0.0,0.0,136.51147306833082,7.40975676372102e-05,1.0,0.0,0.0,0.0,1.0 -4,1.0,12.2157536527011,12.7,37.43800808908671,36.60425556962919,0.9785582239522614,-18.72674660256231,0.0,1.0,0.0 -4,2.0,1.3510510952296149,1.2,0.0,0.0,0.9615251486812768,-13.50804346440142,1.0,0.0,0.0 -4,3.0,4.278328468227114,1.6,0.0,0.0,0.9565480250005844,-16.729547789702796,1.0,0.0,0.0 -4,4.0,53.02875548776239,19.0,-4.0116656931170135e-10,32.41327183213716,0.9608465411828114,-22.68628719519075,0.0,1.0,0.0 -4,5.0,0.0,0.0,0.0,0.0,0.9566736371450356,-18.91637044468913,1.0,0.0,0.0 -4,6.0,12.834985404681342,10.9,0.0,0.0,0.9518737503317084,-20.74611518711908,1.0,0.0,0.0 -4,7.0,16.888138690370187,30.0,-2.9567257550732648e-08,39.04718318913718,0.966692234211542,-22.51564693541758,0.0,1.0,0.0 -4,8.0,0.0,0.0,0.0,0.0,0.9802482418409904,-20.640180227309557,1.0,0.0,0.0 -4,9.0,3.265040146804903,2.0,0.0,0.0,0.9816921319646656,-21.54846284244307,1.0,0.0,0.0 -4,10.0,0.0,0.0,0.0,0.0,0.9802482418409904,-20.640180227309557,0.0,1.0,0.0 -4,11.0,6.304905111071536,7.5,0.0,0.0,1.0195913368376988,-20.704473740917276,1.0,0.0,0.0 -4,12.0,0.0,0.0,4.831053190283001e-11,23.999926904145564,1.051544245901454,-20.704473740913663,0.0,1.0,0.0 -4,13.0,3.490215329343172,1.6,0.0,0.0,1.0080487419089907,-21.174437121280786,1.0,0.0,0.0 -4,14.0,4.616091242034518,2.5,0.0,0.0,1.0043787771973738,-21.18311408404313,1.0,0.0,0.0 -4,15.0,1.9702828472098552,1.8,0.0,0.0,0.9966903150512152,-21.11144954593379,1.0,0.0,0.0 -4,16.0,5.066441607111056,5.8,0.0,0.0,0.9819923484043838,-21.53555043497685,1.0,0.0,0.0 -4,17.0,1.8014014603061534,0.9,0.0,0.0,0.9869726375710568,-21.668865124074777,1.0,0.0,0.0 -4,18.0,5.347910585283892,3.4,0.0,0.0,0.9790229702636478,-21.85833331542048,1.0,0.0,0.0 -4,19.0,1.2384635039604803,0.7,0.0,0.0,0.9790444347772956,-21.80973273337743,1.0,0.0,0.0 -4,20.0,9.851414236049276,11.2,0.0,0.0,0.9696948889041496,-21.822564144440143,1.0,0.0,0.0 -4,21.0,0.0,0.0,0.0,0.0,0.9697510288876648,-21.843456752048823,1.0,0.0,0.0 -4,22.0,1.8014014603061534,1.6,0.0,0.0,0.9469347739032434,-22.467632513748825,1.0,0.0,0.0 -4,23.0,4.897560220207354,6.7,0.0,0.0,0.9540123902173542,-22.29310513911952,1.0,0.0,0.0 -4,24.0,0.0,0.0,0.0,0.0,0.9551818609776734,-22.325266490276118,1.0,0.0,0.0 -4,25.0,1.9702828472098552,2.3,0.0,0.0,0.9405587565480044,-22.42959450477944,1.0,0.0,0.0 -4,26.0,0.0,0.0,0.0,0.0,0.9633173663272716,-22.243153389864293,1.0,0.0,0.0 -4,27.0,0.0,0.0,0.0,0.0,0.9558802405175504,-19.98486104797536,1.0,0.0,0.0 -4,28.0,1.3510510952296149,0.9,0.0,0.0,0.9489350850660884,-22.934817070060397,1.0,0.0,0.0 -4,29.0,5.967142337264132,1.9,0.0,0.0,0.9410672060366052,-23.4532081986312,1.0,0.0,0.0 -5,0.0,0.0,0.0,166.59865827582132,0.0023873535256235,1.0,0.0,0.0,0.0,1.0 -5,1.0,12.2157536527011,12.7,2.006628400883761e-06,10.743391401441684,0.9796743251623398,-3.825183477261709,0.0,1.0,0.0 -5,2.0,1.3510510952296149,1.2,0.0,0.0,0.9740055166223514,-5.01981744472546,1.0,0.0,0.0 -5,3.0,4.278328468227114,1.6,0.0,0.0,0.9673674585529256,-6.17030619856788,1.0,0.0,0.0 -5,4.0,53.02875548776239,19.0,1.1820284805049807e-09,24.362900875399504,0.9589618229103538,-9.211414124628464,0.0,1.0,0.0 -5,5.0,0.0,0.0,0.0,0.0,0.9659860222556492,-7.322949682624864,1.0,0.0,0.0 -5,6.0,12.834985404681342,10.9,0.0,0.0,0.9565530552441156,-8.384035492716578,1.0,0.0,0.0 -5,7.0,16.888138690370187,30.0,1.464157570359949e-09,29.992319510408805,0.9645338779501051,-7.7579688857823745,0.0,1.0,0.0 -5,8.0,0.0,0.0,0.0,0.0,1.0155107405375816,-9.260851542594066,1.0,0.0,0.0 -5,9.0,3.265040146804903,2.0,0.0,0.0,1.007136600079906,-10.265800951784868,1.0,0.0,0.0 -5,10.0,0.0,0.0,2.943134493535854e-09,22.671501893677192,1.0599982878111034,-9.260851542268226,0.0,1.0,0.0 -5,11.0,6.304905111071536,7.5,0.0,0.0,1.0202316846745525,-9.562634820261795,1.0,0.0,0.0 -5,12.0,0.0,0.0,1.5329267571385484e-09,11.521385847452333,1.0358040700824884,-9.56263482014544,0.0,1.0,0.0 -5,13.0,3.490215329343172,1.6,0.0,0.0,1.010477754829478,-10.00621320480483,1.0,0.0,0.0 -5,14.0,4.616091242034518,2.5,0.0,0.0,1.008699398744522,-10.029890434819242,1.0,0.0,0.0 -5,15.0,1.9702828472098552,1.8,0.0,0.0,1.0082203483824266,-9.962828898280678,1.0,0.0,0.0 -5,16.0,5.066441607111056,5.8,0.0,0.0,1.0031480946691849,-10.274235527134996,1.0,0.0,0.0 -5,17.0,1.8014014603061534,0.9,0.0,0.0,0.9988768916848428,-10.466838923324824,1.0,0.0,0.0 -5,18.0,5.347910585283892,3.4,0.0,0.0,0.9953856512768058,-10.627104644722962,1.0,0.0,0.0 -5,19.0,1.2384635039604803,0.7,0.0,0.0,0.9976898243708476,-10.56816203329806,1.0,0.0,0.0 -5,20.0,9.851414236049276,11.2,0.0,0.0,0.9953977534849722,-10.52551828021886,1.0,0.0,0.0 -5,21.0,0.0,0.0,0.0,0.0,0.9954359584791828,-10.545145023047374,1.0,0.0,0.0 -5,22.0,1.8014014603061534,1.6,0.0,0.0,0.9729997022850112,-11.132836636047696,1.0,0.0,0.0 -5,23.0,4.897560220207354,6.7,0.0,0.0,0.9798874957811452,-10.967469713145803,1.0,0.0,0.0 -5,24.0,0.0,0.0,0.0,0.0,0.9647378768229868,-9.976020400275734,1.0,0.0,0.0 -5,25.0,1.9702828472098552,2.3,0.0,0.0,0.9502641549708448,-10.078260030275509,1.0,0.0,0.0 -5,26.0,0.0,0.0,0.0,0.0,0.9720598626770992,-9.877665004615231,1.0,0.0,0.0 -5,27.0,0.0,0.0,0.0,0.0,0.9628079158788848,-7.6638342895323985,1.0,0.0,0.0 -5,28.0,1.3510510952296149,0.9,0.0,0.0,0.9578150996072764,-10.556761937463792,1.0,0.0,0.0 -5,29.0,5.967142337264132,1.9,0.0,0.0,0.9500226385319364,-11.065515840960783,1.0,0.0,0.0 -6,0.0,0.0,0.0,166.76074586442078,0.0065535498322333,1.0,0.0,0.0,0.0,1.0 -6,1.0,12.2157536527011,12.7,3.222887695952852e-06,19.39987006191287,0.981229482414347,-3.8553615034928055,0.0,1.0,0.0 -6,2.0,1.3510510952296149,1.2,0.0,0.0,0.9694576783687822,-4.969565861872128,1.0,0.0,0.0 -6,3.0,4.278328468227114,1.6,0.0,0.0,0.9617553505481242,-6.110192574137797,1.0,0.0,0.0 -6,4.0,53.02875548776239,19.0,2.772286788932345e-09,26.103820764974927,0.960510807096923,-9.22812834018723,0.0,1.0,0.0 -6,5.0,0.0,0.0,0.0,0.0,0.9639229745222092,-7.26184023613507,1.0,0.0,0.0 -6,6.0,12.834985404681342,10.9,0.0,0.0,0.9559697203683843,-8.353440021421985,1.0,0.0,0.0 -6,7.0,16.888138690370187,30.0,2.917365314573529e-09,39.96743168784079,0.9662587618520276,-7.771901329814907,0.0,1.0,0.0 -6,8.0,0.0,0.0,0.0,0.0,1.0017455207144326,-9.807050925721851,1.0,0.0,0.0 -6,9.0,3.265040146804903,2.0,0.0,0.0,0.994545764801076,-11.140658838416597,1.0,0.0,0.0 -6,10.0,0.0,0.0,4.910472036818109e-09,15.512088517178547,1.03298051841341,-9.807050925156318,0.0,1.0,0.0 -6,11.0,6.304905111071536,7.5,0.0,0.0,0.9799523680163048,-10.077152726627675,1.0,0.0,0.0 -6,12.0,0.0,0.0,0.0,0.0,0.9799523680163048,-10.077152726627675,0.0,1.0,0.0 -6,13.0,3.490215329343172,1.6,0.0,0.0,0.9713585391385384,-10.623099320614338,1.0,0.0,0.0 -6,14.0,4.616091242034518,2.5,0.0,0.0,0.9705868137197032,-10.749593779072049,1.0,0.0,0.0 -6,15.0,1.9702828472098552,1.8,0.0,0.0,0.9568949399069842,-10.489478379609244,1.0,0.0,0.0 -6,16.0,5.066441607111056,5.8,0.0,0.0,0.9422134072428144,-10.915487663777975,1.0,0.0,0.0 -6,17.0,1.8014014603061534,0.9,0.0,0.0,0.9694771642606758,-11.26860125490358,1.0,0.0,0.0 -6,18.0,5.347910585283892,3.4,0.0,0.0,0.9712216897654324,-11.468978694447427,1.0,0.0,0.0 -6,19.0,1.2384635039604803,0.7,0.0,0.0,0.9763901684786966,-11.424277746410544,1.0,0.0,0.0 -6,20.0,9.851414236049276,11.2,0.0,0.0,0.983092929761639,-11.287118402703916,1.0,0.0,0.0 -6,21.0,0.0,0.0,0.0,0.0,0.9832816234115972,-11.268825163277311,1.0,0.0,0.0 -6,22.0,1.8014014603061534,1.6,0.0,0.0,0.9675498530395988,-11.012120241435062,1.0,0.0,0.0 -6,23.0,4.897560220207354,6.7,0.0,0.0,0.9704709439639588,-11.195473397526223,1.0,0.0,0.0 -6,24.0,0.0,0.0,0.0,0.0,0.9695156887809704,-10.698963370512478,1.0,0.0,0.0 -6,25.0,1.9702828472098552,2.3,0.0,0.0,0.9551154989065952,-10.800182405101156,1.0,0.0,0.0 -6,26.0,0.0,0.0,0.0,0.0,0.9760566435459564,-10.296390159498916,1.0,0.0,0.0 -6,27.0,0.0,0.0,0.0,0.0,0.9619211540013916,-7.678958856432709,1.0,0.0,0.0 -6,28.0,1.3510510952296149,0.9,0.0,0.0,0.9618738511545128,-10.96985639621025,1.0,0.0,0.0 -6,29.0,5.967142337264132,1.9,0.0,0.0,0.9541153740332032,-11.474294946540054,1.0,0.0,0.0 -7,0.0,0.0,0.0,166.71582141681657,0.0139513770808896,1.0,0.0,0.0,0.0,1.0 -7,1.0,12.2157536527011,12.7,1.521137972142614e-05,11.174389614178004,0.979670830236552,-3.803473397313178,0.0,1.0,0.0 -7,2.0,1.3510510952296149,1.2,0.0,0.0,0.9740407255704892,-5.092692385557446,1.0,0.0,0.0 -7,3.0,4.278328468227114,1.6,0.0,0.0,0.9674228843608677,-6.260799860394815,1.0,0.0,0.0 -7,4.0,53.02875548776239,19.0,8.704763510973557e-09,24.617409747113868,0.9587172780315136,-9.130187049766564,0.0,1.0,0.0 -7,5.0,0.0,0.0,0.0,0.0,0.9650506587583624,-7.161567677992541,1.0,0.0,0.0 -7,6.0,12.834985404681342,10.9,0.0,0.0,0.9559033185395082,-8.255348274619339,1.0,0.0,0.0 -7,7.0,16.888138690370187,30.0,5.006557375827942e-09,33.354947882224934,0.9638400744291742,-7.823562419680005,0.0,1.0,0.0 -7,8.0,0.0,0.0,0.0,0.0,1.0346103904077166,-12.652919444940771,1.0,0.0,0.0 -7,9.0,3.265040146804903,2.0,0.0,0.0,1.021190999721979,-12.65291944356678,1.0,0.0,0.0 -7,10.0,0.0,0.0,-2.3033240570934937e-08,12.931232740938595,1.0599852382182058,-12.652919447443796,0.0,1.0,0.0 -7,11.0,6.304905111071536,7.5,0.0,0.0,1.0351236564912951,-11.004598883086937,1.0,0.0,0.0 -7,12.0,0.0,0.0,7.503742502845934e-09,18.82343094475297,1.0599851402259046,-11.004598882538362,0.0,1.0,0.0 -7,13.0,3.490215329343172,1.6,0.0,0.0,1.0236247096636142,-11.628366177357377,1.0,0.0,0.0 -7,14.0,4.616091242034518,2.5,0.0,0.0,1.0187111714044106,-11.800130535995388,1.0,0.0,0.0 -7,15.0,1.9702828472098552,1.8,0.0,0.0,1.022124888158393,-11.803482164143745,1.0,0.0,0.0 -7,16.0,5.066441607111056,5.8,0.0,0.0,1.01740814510383,-12.48777511657408,1.0,0.0,0.0 -7,17.0,1.8014014603061534,0.9,0.0,0.0,1.0103474591049264,-12.446242512535592,1.0,0.0,0.0 -7,18.0,5.347910585283892,3.4,0.0,0.0,1.0077171314006197,-12.733589241916736,1.0,0.0,0.0 -7,19.0,1.2384635039604803,0.7,0.0,0.0,1.0104235409322766,-12.7452144923836,1.0,0.0,0.0 -7,20.0,9.851414236049276,11.2,0.0,0.0,1.0094790480901403,-12.84639977514625,1.0,0.0,0.0 -7,21.0,0.0,0.0,0.0,0.0,1.012764158359262,-12.75469527770234,1.0,0.0,0.0 -7,22.0,1.8014014603061534,1.6,0.0,0.0,1.00855575504529,-12.294632046490944,1.0,0.0,0.0 -7,23.0,4.897560220207354,6.7,0.0,0.0,1.0018056826388244,-12.812886248169802,1.0,0.0,0.0 -7,24.0,0.0,0.0,0.0,0.0,0.9902382510922452,-12.937774898889964,1.0,0.0,0.0 -7,25.0,1.9702828472098552,2.3,0.0,0.0,0.976148401881846,-13.034740427656365,1.0,0.0,0.0 -7,26.0,0.0,0.0,0.0,0.0,0.9750170390584232,-10.444314499475407,1.0,0.0,0.0 -7,27.0,0.0,0.0,0.0,0.0,0.956050805418902,-8.694967370053915,1.0,0.0,0.0 -7,28.0,1.3510510952296149,0.9,0.0,0.0,0.9608181809724158,-11.119238545286722,1.0,0.0,0.0 -7,29.0,5.967142337264132,1.9,0.0,0.0,0.9530508937516956,-11.62479419474297,1.0,0.0,0.0 -8,0.0,0.0,0.0,166.75643089058082,0.000841523801931,1.0,0.0,0.0,0.0,1.0 -8,1.0,12.2157536527011,12.7,1.00297680656185e-06,10.155745698773272,0.9796918010361526,-3.82708407759797,0.0,1.0,0.0 -8,2.0,1.3510510952296149,1.2,0.0,0.0,0.9739036981269972,-5.030321913219034,1.0,0.0,0.0 -8,3.0,4.278328468227114,1.6,0.0,0.0,0.9672436988829946,-6.183406266396783,1.0,0.0,0.0 -8,4.0,53.02875548776239,19.0,3.7129797814245866e-10,24.48085798065378,0.9595119565189828,-9.214348543609193,0.0,1.0,0.0 -8,5.0,0.0,0.0,0.0,0.0,0.9668065677074176,-7.331390114189063,1.0,0.0,0.0 -8,6.0,12.834985404681342,10.9,0.0,0.0,0.9572691725263892,-8.38995169072919,1.0,0.0,0.0 -8,7.0,16.888138690370187,30.0,6.498304806663645e-10,30.85327119155708,0.9657732478010876,-7.776743143458487,0.0,1.0,0.0 -8,8.0,0.0,0.0,0.0,0.0,1.0166299386219544,-9.14570158350094,1.0,0.0,0.0 -8,9.0,3.265040146804903,2.0,0.0,0.0,1.0089501524805178,-10.085682687756352,1.0,0.0,0.0 -8,10.0,0.0,0.0,1.4867026092115427e-09,22.091017533792588,1.0599792009735969,-9.145701583336525,0.0,1.0,0.0 -8,11.0,6.304905111071536,7.5,0.0,0.0,1.015189002459253,-9.725260619436192,1.0,0.0,0.0 -8,12.0,0.0,0.0,8.698107232356292e-10,12.012664257777026,1.0314932582804914,-9.725260619369564,0.0,1.0,0.0 -8,13.0,3.490215329343172,1.6,0.0,0.0,1.0031834204085912,-10.222747991598627,1.0,0.0,0.0 -8,14.0,4.616091242034518,2.5,0.0,0.0,0.9989412213110994,-10.245237598111466,1.0,0.0,0.0 -8,15.0,1.9702828472098552,1.8,0.0,0.0,1.0063664658370846,-9.993992344666433,1.0,0.0,0.0 -8,16.0,5.066441607111056,5.8,0.0,0.0,1.003743319137223,-10.155530676374935,1.0,0.0,0.0 -8,17.0,1.8014014603061534,0.9,0.0,0.0,0.9931834246169234,-10.549288172382232,1.0,0.0,0.0 -8,18.0,5.347910585283892,3.4,0.0,0.0,0.9921042792673898,-10.628116143796603,1.0,0.0,0.0 -8,19.0,1.2384635039604803,0.7,0.0,0.0,0.9956972058347668,-10.525569771895649,1.0,0.0,0.0 -8,20.0,9.851414236049276,11.2,0.0,0.0,0.9770328240637156,-10.628798291406788,1.0,0.0,0.0 -8,21.0,0.0,0.0,0.0,0.0,0.9809083468368094,-10.567475801280498,1.0,0.0,0.0 -8,22.0,1.8014014603061534,1.6,0.0,0.0,0.9862772037195862,-10.48997797020986,1.0,0.0,0.0 -8,23.0,4.897560220207354,6.7,0.0,0.0,0.9762274859280804,-10.66505677488103,1.0,0.0,0.0 -8,24.0,0.0,0.0,0.0,0.0,0.9733910219579354,-10.363543180170632,1.0,0.0,0.0 -8,25.0,1.9702828472098552,2.3,0.0,0.0,0.9590499198222476,-10.463945646847622,1.0,0.0,0.0 -8,26.0,0.0,0.0,0.0,0.0,0.9787843048463056,-10.08397108846402,1.0,0.0,0.0 -8,27.0,0.0,0.0,0.0,0.0,0.9642353370668229,-7.706692557192071,1.0,0.0,0.0 -8,28.0,1.3510510952296149,0.9,0.0,0.0,0.9646434875220504,-10.75363490057616,1.0,0.0,0.0 -8,29.0,5.967142337264132,1.9,0.0,0.0,0.956908028280289,-11.25516023518735,1.0,0.0,0.0 -9,0.0,0.0,0.0,138.0000442701111,0.0006822769128334,1.0,0.0,0.0,0.0,1.0 -9,1.0,12.2157536527011,12.7,30.42964689106324,12.188798671863571,0.9751780483395672,-4.637417715520824,0.0,1.0,0.0 -9,2.0,1.3510510952296149,1.2,0.0,0.0,0.9500749550302288,-9.803754082213905,1.0,0.0,0.0 -9,3.0,4.278328468227114,1.6,0.0,0.0,0.9505902263189994,-9.778143447003057,1.0,0.0,0.0 -9,4.0,53.02875548776239,19.0,1.9913570584060619e-10,26.4635510389042,0.9528024951493538,-11.163317432056148,0.0,1.0,0.0 -9,5.0,0.0,0.0,0.0,0.0,0.9535546993444252,-10.280737417201562,1.0,0.0,0.0 -9,6.0,12.834985404681342,10.9,0.0,0.0,0.9464325754494688,-10.934020320429802,1.0,0.0,0.0 -9,7.0,16.888138690370187,30.0,6.021628926535452e-11,30.27274066270189,0.9523666990512218,-10.734069097982111,0.0,1.0,0.0 -9,8.0,0.0,0.0,0.0,0.0,1.0067719270183604,-12.2003027193894,1.0,0.0,0.0 -9,9.0,3.265040146804903,2.0,0.0,0.0,0.9991640538505466,-13.190775578478934,1.0,0.0,0.0 -9,10.0,0.0,0.0,-3.4443859412731964e-10,23.801853832397303,1.0537542803929305,-12.200302719428096,0.0,1.0,0.0 -9,11.0,6.304905111071536,7.5,0.0,0.0,1.003379398568761,-13.354322789676262,1.0,0.0,0.0 -9,12.0,0.0,0.0,-2.0350926215456297e-11,16.913923642204782,1.0264487368122144,-13.354322789677852,0.0,1.0,0.0 -9,13.0,3.490215329343172,1.6,0.0,0.0,0.9898891128725404,-13.887712645821631,1.0,0.0,0.0 -9,14.0,4.616091242034518,2.5,0.0,0.0,0.9841475591051242,-13.90346191285745,1.0,0.0,0.0 -9,15.0,1.9702828472098552,1.8,0.0,0.0,0.9957071292086176,-13.40503634439104,1.0,0.0,0.0 -9,16.0,5.066441607111056,5.8,0.0,0.0,0.9935231643402288,-13.356806447486507,1.0,0.0,0.0 -9,17.0,1.8014014603061534,0.9,0.0,0.0,0.9662601094902338,-14.566712737888166,1.0,0.0,0.0 -9,18.0,5.347910585283892,3.4,0.0,0.0,0.9580957547486204,-14.859880236718633,1.0,0.0,0.0 -9,19.0,1.2384635039604803,0.7,0.0,0.0,0.996530840287467,-13.302017789725651,1.0,0.0,0.0 -9,20.0,9.851414236049276,11.2,0.0,0.0,0.9878445922762528,-13.414972873442752,1.0,0.0,0.0 -9,21.0,0.0,0.0,0.0,0.0,0.9880490422323536,-13.422356770860915,1.0,0.0,0.0 -9,22.0,1.8014014603061534,1.6,0.0,0.0,0.9772406732205496,-13.88406739305334,1.0,0.0,0.0 -9,23.0,4.897560220207354,6.7,0.0,0.0,0.9748883206036408,-13.695152867337487,1.0,0.0,0.0 -9,24.0,0.0,0.0,0.0,0.0,0.9675240295097244,-13.330106725601798,1.0,0.0,0.0 -9,25.0,1.9702828472098552,2.3,0.0,0.0,0.9530932798208092,-13.43174932721419,1.0,0.0,0.0 -9,26.0,0.0,0.0,0.0,0.0,0.9701346317447612,-13.014310162724646,1.0,0.0,0.0 -9,27.0,0.0,0.0,0.0,0.0,0.9515050137153092,-10.664926884621332,1.0,0.0,0.0 -9,28.0,1.3510510952296149,0.9,0.0,0.0,0.955859818168018,-13.696144747373364,1.0,0.0,0.0 -9,29.0,5.967142337264132,1.9,0.0,0.0,0.9480508772961312,-14.206997391719854,1.0,0.0,0.0 diff --git a/tests/data/reference_output_v0_1.npy b/tests/data/reference_output_v0_1.npy deleted file mode 100644 index 7b6d864..0000000 Binary files a/tests/data/reference_output_v0_1.npy and /dev/null differ diff --git a/tests/data/reference_output_v0_2.npy b/tests/data/reference_output_v0_2.npy deleted file mode 100644 index 7eff6a6..0000000 Binary files a/tests/data/reference_output_v0_2.npy and /dev/null differ diff --git a/tests/models/dummy_model.pt b/tests/models/dummy_model.pt new file mode 100644 index 0000000..79edcb8 Binary files /dev/null and b/tests/models/dummy_model.pt differ diff --git a/tests/test_data_module.py b/tests/test_data_module.py index 9379885..3a278f6 100644 --- a/tests/test_data_module.py +++ b/tests/test_data_module.py @@ -1,4 +1,4 @@ -from gridfm_graphkit.datasets.powergrid_datamodule import LitGridDataModule +from gridfm_graphkit.datasets.hetero_powergrid_datamodule import LitGridHeteroDataModule from gridfm_graphkit.io.param_handler import NestedNamespace import yaml import copy @@ -9,20 +9,18 @@ @pytest.mark.parametrize( - "normalization", - ["minmax", "standard", "baseMVAnorm", "identity"], + "task", + ["PowerFlow", "OptimalPowerFlow", "StateEstimation"], ) -@pytest.mark.parametrize("mask_type", ["rnd", "pf", "opf", "none"]) -def test_dataloaders(normalization, mask_type): +def test_dataloaders(task): cfg = copy.deepcopy(BASE_CONFIG) # Override values - cfg["data"]["normalization"] = normalization - cfg["data"]["mask_type"] = mask_type + cfg["task"]["task_name"] = task args = NestedNamespace(**cfg) - dm = LitGridDataModule(args, data_dir="tests/data") + dm = LitGridHeteroDataModule(args, data_dir="tests/data") # Lightning will inject trainer, but for testing we can fake it class DummyTrainer: diff --git a/tests/test_edge_flows.py b/tests/test_edge_flows.py new file mode 100644 index 0000000..3cfc4e1 --- /dev/null +++ b/tests/test_edge_flows.py @@ -0,0 +1,119 @@ +import torch +from gridfm_graphkit.datasets.normalizers import HeteroDataMVANormalizer +from gridfm_graphkit.io.param_handler import NestedNamespace +import yaml +from gridfm_graphkit.models.utils import ( + ComputeBranchFlow, + ComputeNodeInjection, + PhysicsDecoderSE, +) +from gridfm_graphkit.training.loss import LossPerDim +from gridfm_graphkit.datasets.globals import ( + VM_H, + VA_H, + P_E, + Q_E, +) +from torch_geometric.data import HeteroData + + +def test_edge_flows(): + data_dict = torch.load( + "tests/data/case14_ieee/processed/data_index_0.pt", + weights_only=True, + ) + data = HeteroData.from_dict(data_dict) + + node_stats = torch.load( + "tests/data/case14_ieee/processed/data_stats_HeteroDataMVANormalizer.pt", + weights_only=True, + ) + with open("tests/config/datamodule_test_base_config.yaml", "r") as f: + args = yaml.safe_load(f) + args = NestedNamespace(**args) + normalizer = HeteroDataMVANormalizer(args) + normalizer.fit_from_dict(node_stats) + normalizer.transform(data) + + bus_edge_index = data[("bus", "connects", "bus")].edge_index + bus_edge_attr = data[("bus", "connects", "bus")].edge_attr + branch_flow_layer = ComputeBranchFlow() + node_injection_layer = ComputeNodeInjection() + physics_decoder = PhysicsDecoderSE() + + Pft, Qft = branch_flow_layer( + data["bus"].x[:, [VM_H, VA_H]], + bus_edge_index, + bus_edge_attr, + ) + + assert torch.isclose(Pft, bus_edge_attr[:, P_E], atol=1e-4).all() + assert torch.isclose(Qft, bus_edge_attr[:, Q_E], atol=1e-4).all() + + P_in, Q_in = node_injection_layer( + Pft, + Qft, + bus_edge_index, + data["bus"].x.size(0), + ) + + output_temp = physics_decoder( + P_in, + Q_in, + data["bus"].y[:, [VM_H, VA_H]], + data["bus"].x, + None, + None, + ) + + pred_dict = {"bus": output_temp, "gen": data["gen"].y} + target_dict = {"bus": data["bus"].y, "gen": data["gen"].y} + edge_index = { + ("gen", "connected_to", "bus"): data[("gen", "connected_to", "bus")].edge_index, + } + assert ( + LossPerDim(NestedNamespace(**{"loss_str": "MAE", "dim": "VM"}), None)( + pred_dict, + target_dict, + edge_index, + None, + None, + )["loss"] + < 1e-4 + ) + assert ( + LossPerDim(NestedNamespace(**{"loss_str": "MAE", "dim": "VA"}), None)( + pred_dict, + target_dict, + edge_index, + None, + None, + )["loss"] + < 1e-4 + ) + assert ( + LossPerDim(NestedNamespace(**{"loss_str": "MAE", "dim": "P_in"}), None)( + pred_dict, + target_dict, + edge_index, + None, + None, + )["loss"] + < 1e-4 + ) + assert ( + LossPerDim(NestedNamespace(**{"loss_str": "MAE", "dim": "Q_in"}), None)( + pred_dict, + target_dict, + edge_index, + None, + None, + )["loss"] + < 1e-4 + ) + + print("hi") + + +if __name__ == "__main__": + test_edge_flows() diff --git a/tests/test_full_pipeline.py b/tests/test_full_pipeline.py deleted file mode 100644 index b80ac63..0000000 --- a/tests/test_full_pipeline.py +++ /dev/null @@ -1,82 +0,0 @@ -import unittest -from argparse import ArgumentParser -from gridfm_graphkit.cli import main_cli -from gridfm_graphkit.__main__ import main -from unittest import mock -import sys - - -class TestMLPipeline(unittest.TestCase): - def setUp(self): - # Default paths for tests - self.config = "tests/config/gridFMv0.1_dummy.yaml" - self.data_path = "tests/data" - self.log_dir = "tests/mlruns" - self.model_path = "examples/models/GridFM_v0_1.pth" - self.output_path = "tests/output" - self.exp_name = "pytest_exp" - self.run_name = "pytest_run" - - # Setup parser once - self.parser = ArgumentParser() - subparsers = self.parser.add_subparsers(dest="command", required=True) - for cmd in ["train", "finetune", "evaluate", "predict"]: - sp = subparsers.add_parser(cmd) - sp.add_argument("--config") - sp.add_argument("--data_path") - sp.add_argument("--log_dir") - sp.add_argument("--model_path") - sp.add_argument("--output_path") - sp.add_argument("--exp_name") - sp.add_argument("--run_name") - - def _run_cli(self, command): - args_list = [ - command, - "--config", - self.config, - "--data_path", - self.data_path, - "--log_dir", - self.log_dir, - "--exp_name", - self.exp_name, - "--run_name", - self.run_name, - ] - if command in ["finetune", "evaluate", "predict"]: - args_list += ["--model_path", self.model_path] - if command == "predict": - args_list += ["--output_path", self.output_path] - args = self.parser.parse_args(args_list) - main_cli(args) - - def test_train(self): - self._run_cli("train") - - def test_finetune(self): - self._run_cli("finetune") - - def test_evaluate(self): - self._run_cli("evaluate") - - def test_predict(self): - self._run_cli("predict") - - def test_entrypoint_train(self): - test_argv = [ - "gridfm_graphkit", - "train", - "--config", - self.config, - "--data_path", - self.data_path, - "--log_dir", - self.log_dir, - "--exp_name", - self.exp_name, - "--run_name", - self.run_name, - ] - with mock.patch.object(sys, "argv", test_argv): - main() diff --git a/tests/test_losses.py b/tests/test_losses.py index 827da06..dca7e29 100644 --- a/tests/test_losses.py +++ b/tests/test_losses.py @@ -1,8 +1,14 @@ import pytest import torch -from gridfm_graphkit.datasets.powergrid_datamodule import LitGridDataModule +from gridfm_graphkit.datasets.hetero_powergrid_datamodule import LitGridHeteroDataModule from gridfm_graphkit.io.param_handler import NestedNamespace -from gridfm_graphkit.training.loss import PBELoss +from gridfm_graphkit.datasets.globals import VM_H, VA_H, QG_H +from torch_scatter import scatter_add +from gridfm_graphkit.models.utils import ( + ComputeBranchFlow, + ComputeNodeInjection, + ComputeNodeResiduals, +) @pytest.fixture @@ -14,7 +20,7 @@ def small_grid_data_module(): config_dict = yaml.safe_load(f) args = NestedNamespace(**config_dict) - dm = LitGridDataModule(args, data_dir="tests/data") + dm = LitGridHeteroDataModule(args, data_dir="tests/data") # Fake trainer for setup class DummyTrainer: @@ -29,8 +35,43 @@ def test_pbe_loss_zero_with_real_data(small_grid_data_module): loader = small_grid_data_module.train_dataloader() batch = next(iter(loader)) - loss_fn = PBELoss() - out = loss_fn(batch.y, batch.y, batch.edge_index, batch.edge_attr, batch.mask) - assert torch.allclose(out["loss"], torch.tensor(0.0), atol=1e-5), ( - f"PBELoss is not zero! Got {out['loss'].item()}" + branch_flow_layer = ComputeBranchFlow() + node_injection_layer = ComputeNodeInjection() + node_residuals_layer = ComputeNodeResiduals() + + num_bus = batch.x_dict["bus"].size(0) + bus_edge_index = batch.edge_index_dict[("bus", "connects", "bus")] + bus_edge_attr = batch.edge_attr_dict[("bus", "connects", "bus")] + _, gen_to_bus_index = batch.edge_index_dict[("gen", "connected_to", "bus")] + + agg_gen_on_bus = scatter_add( + batch.y_dict["gen"], + gen_to_bus_index, + dim=0, + dim_size=num_bus, + ) + # output_agg = torch.cat([batch.y_dict["bus"], agg_gen_on_bus], dim=1) + target = torch.stack( + [ + batch.y_dict["bus"][:, VM_H], + batch.y_dict["bus"][:, VA_H], + agg_gen_on_bus.squeeze(), + batch.y_dict["bus"][:, QG_H], + ], + dim=1, + ) + + Pft, Qft = branch_flow_layer(target, bus_edge_index, bus_edge_attr) + P_in, Q_in = node_injection_layer(Pft, Qft, bus_edge_index, num_bus) + residual_P, residual_Q = node_residuals_layer( + P_in, + Q_in, + target, + batch.x_dict["bus"], + ) + assert torch.max(torch.abs(residual_P)) < 1e-4, ( + f"Active Residuals are not zero! {torch.max(torch.abs(residual_P))}" + ) + assert torch.max(torch.abs(residual_Q)) < 1e-4, ( + f"Reactive Residuals not zero! {torch.max(torch.abs(residual_Q))}" ) diff --git a/tests/test_model_outputs.py b/tests/test_model_outputs.py deleted file mode 100644 index 8568314..0000000 --- a/tests/test_model_outputs.py +++ /dev/null @@ -1,69 +0,0 @@ -import torch -import numpy as np -import pytest -import yaml -from gridfm_graphkit.io.param_handler import NestedNamespace -from gridfm_graphkit.tasks.feature_reconstruction_task import FeatureReconstructionTask - -# Device setup -device = torch.device("cuda" if torch.cuda.is_available() else "cpu") - -# Input shape config -num_nodes = 1 -x_dim = 9 -pe_dim = 20 -edge_attr_dim = 2 - -# List of models and reference files to check -models_to_test = [ - ( - "v0_1", - "examples/models/GridFM_v0_1.pth", - "tests/data/reference_output_v0_1.npy", - "examples/config/gridFMv0.1_pretraining.yaml", - ), - ( - "v0_2", - "examples/models/GridFM_v0_2.pth", - "tests/data/reference_output_v0_2.npy", - "examples/config/gridFMv0.2_pretraining.yaml", - ), -] - - -@pytest.mark.parametrize( - "version, model_path, ref_output_path, yaml_path", - models_to_test, -) -def test_model_matches_reference(version, model_path, ref_output_path, yaml_path): - torch.manual_seed(0) - with open(yaml_path) as f: - config_dict = yaml.safe_load(f) - - args = NestedNamespace(**config_dict) - - # Prepare zero input - x = torch.zeros((num_nodes, x_dim)) - pe = torch.zeros((num_nodes, pe_dim)) - edge_index = torch.tensor([[0], [0]]) - edge_attr = torch.zeros((1, edge_attr_dim)) - batch = torch.zeros(num_nodes, dtype=torch.long) - - # load model - model = FeatureReconstructionTask(args, None, None) - state_dict = torch.load(model_path) - model.load_state_dict(state_dict) - model.eval() - - # Get current output - with torch.no_grad(): - output = model(x, pe, edge_index, edge_attr, batch).cpu().numpy() - - # Load saved reference - reference = np.load(ref_output_path) - - # Exact match assertion - assert np.allclose(output, reference, rtol=1e-5, atol=1e-6), ( - f"Model output for {version} does not match reference within tolerance.\n" - f"Max absolute difference: {np.max(np.abs(output - reference))}" - ) diff --git a/tests/test_normalization.py b/tests/test_normalization.py deleted file mode 100644 index 97700e9..0000000 --- a/tests/test_normalization.py +++ /dev/null @@ -1,36 +0,0 @@ -import torch -import pytest -from gridfm_graphkit.io.registries import NORMALIZERS_REGISTRY -from gridfm_graphkit.datasets.normalizers import BaseMVANormalizer -from gridfm_graphkit.io.param_handler import NestedNamespace - - -@pytest.mark.parametrize("norm_name", list(NORMALIZERS_REGISTRY)) -@pytest.mark.parametrize("node_data", [True, False]) -def test_normalizer_roundtrip_registry(norm_name, node_data): - # Example input data - data = torch.randn(3, 6) - - # Dummy args as a dictionary and converted to NestedNamespace - args_dict = {"data": {"baseMVA": 100}} - args = NestedNamespace(**args_dict) - - norm = NORMALIZERS_REGISTRY.create(norm_name, node_data, args) - - # Fit and transform - if isinstance(norm, BaseMVANormalizer) and not node_data: - norm.fit(data, baseMVA=100) - else: - norm.fit(data) - - transformed = norm.transform(data.clone()) - restored = norm.inverse_transform(transformed.clone()) - - # Check round-trip equality - assert torch.allclose(restored, data, atol=1e-6), ( - f"Failed round-trip for {norm_name}" - ) - - # Check stats dict is present - stats = norm.get_stats() - assert isinstance(stats, dict), f"Stats not dict for {norm_name}" diff --git a/tests/test_pipeline.py b/tests/test_pipeline.py new file mode 100644 index 0000000..62b6920 --- /dev/null +++ b/tests/test_pipeline.py @@ -0,0 +1,106 @@ +import sys +from argparse import ArgumentParser +from unittest import mock + +import pytest + +from gridfm_graphkit.cli import main_cli +from gridfm_graphkit.__main__ import main + + +# ------------------------------------------------- +# Test configurations +# ------------------------------------------------- +CONFIGS = [ + "tests/config/datamodule_test_base_config.yaml", + "tests/config/datamodule_test_base_config2.yaml", + "tests/config/datamodule_test_base_config3.yaml", +] + +DATA_PATH = "tests/data" +LOG_DIR = "tests/mlruns" +MODEL_PATH = "tests/models/dummy_model.pt" +EXP_NAME = "pytest_exp" +RUN_NAME = "pytest_run" + + +# ------------------------------------------------- +# Fixtures +# ------------------------------------------------- +@pytest.fixture +def parser(): + """ + Argument parser matching the CLI. + """ + parser = ArgumentParser() + subparsers = parser.add_subparsers(dest="command", required=True) + + for cmd in ["train", "finetune", "evaluate"]: + sp = subparsers.add_parser(cmd) + sp.add_argument("--config") + sp.add_argument("--data_path") + sp.add_argument("--log_dir") + sp.add_argument("--model_path") + sp.add_argument("--exp_name") + sp.add_argument("--run_name") + + return parser + + +# ------------------------------------------------- +# CLI command tests +# ------------------------------------------------- +@pytest.mark.parametrize("config", CONFIGS) +@pytest.mark.parametrize("command", ["train", "finetune", "evaluate"]) +def test_cli_commands(parser, config, command): + """ + Test main_cli() directly for all commands and configs. + """ + args_list = [ + command, + "--config", + config, + "--data_path", + DATA_PATH, + "--log_dir", + LOG_DIR, + "--exp_name", + EXP_NAME, + "--run_name", + RUN_NAME, + ] + + if command in ["finetune", "evaluate"]: + args_list += ["--model_path", MODEL_PATH] + + args = parser.parse_args(args_list) + + # Should run without raising + main_cli(args) + + +# ------------------------------------------------- +# Entrypoint (__main__) test +# ------------------------------------------------- +@pytest.mark.parametrize("config", CONFIGS) +def test_entrypoint_train(config): + """ + Test the console entrypoint: python -m gridfm_graphkit train ... + """ + test_argv = [ + "gridfm_graphkit", + "train", + "--config", + config, + "--data_path", + DATA_PATH, + "--log_dir", + LOG_DIR, + "--exp_name", + EXP_NAME, + "--run_name", + RUN_NAME, + ] + + with mock.patch.object(sys, "argv", test_argv): + main() diff --git a/tests/test_simulate_measurements.py b/tests/test_simulate_measurements.py new file mode 100644 index 0000000..863be88 --- /dev/null +++ b/tests/test_simulate_measurements.py @@ -0,0 +1,97 @@ +import torch +import yaml +from gridfm_graphkit.datasets.masking import SimulateMeasurements +from gridfm_graphkit.datasets.normalizers import HeteroDataMVANormalizer +from gridfm_graphkit.io.param_handler import NestedNamespace +from copy import deepcopy +from torch_geometric.data import HeteroData +from gridfm_graphkit.datasets.globals import ( + # Bus feature indices + PD_H, + QD_H, + QG_H, + VA_H, + VM_H, + # Generator feature indices + PG_H, + # Edge feature indices + P_E, + Q_E, +) + + +def test_simulate_measurements(): + data_dict = torch.load( + "tests/data/case14_ieee/processed/data_index_0.pt", + weights_only=True, + ) + data = HeteroData.from_dict(data_dict) + node_stats = torch.load( + "tests/data/case14_ieee/processed/data_stats_HeteroDataMVANormalizer.pt", + weights_only=True, + ) + with open("tests/config/SE_simulate_measurements.yaml", "r") as f: + args = yaml.safe_load(f) + args = NestedNamespace(**args) + normalizer = HeteroDataMVANormalizer(args) + normalizer.fit_from_dict(node_stats) + normalizer.transform(data) + transform = SimulateMeasurements(args) + out = transform(deepcopy(data)) + + # Check that targets are not modified + assert torch.isclose(out["bus"].y, data["bus"].y).all() + assert torch.isclose(out["gen"].y, data["gen"].y).all() + + # Check that values different from PD, QD, QG, VM, VA (bus), PG (Gen) and + # P_E, Q_E (edge_attr) have not been modified + assert torch.isclose( + out["bus"].x[:, VA_H + 1 :], + data["bus"].x[:, VA_H + 1 :], + ).all() + assert torch.isclose( + out["gen"].x[:, PG_H + 1 :], + data["gen"].x[:, PG_H + 1 :], + ).all() + assert torch.isclose( + out[("bus", "connects", "bus")]["edge_attr"][:, Q_E + 1 :], + data[("bus", "connects", "bus")]["edge_attr"][:, Q_E + 1 :], + ).all() + + # Check that masked values have not been modified + mask_bus = out.mask_dict["bus"][:, [PD_H, QD_H, QG_H, VM_H, VA_H]] + assert torch.isclose( + out["bus"].x[:, [PD_H, QD_H, QG_H, VM_H, VA_H]][mask_bus], + data["bus"].x[:, [PD_H, QD_H, QG_H, VM_H, VA_H]][mask_bus], + ).all() + + mask_gen = out.mask_dict["gen"][:, [PG_H]] + assert torch.isclose( + out["gen"].x[:, [PG_H]][mask_gen], + data["gen"].x[:, [PG_H]][mask_gen], + ).all() + + mask_branch = out.mask_dict["branch"][:, [P_E, Q_E]] + assert torch.isclose( + out[("bus", "connects", "bus")]["edge_attr"][:, [P_E, Q_E]][mask_branch], + data[("bus", "connects", "bus")]["edge_attr"][:, [P_E, Q_E]][mask_branch], + ).all() + + # Check that the masked values have inf std associated + mask_bus_small = out.mask_dict["bus"][:, : out.mask_dict["std_bus"].size(1)] + mask_gen_small = out.mask_dict["gen"][:, : out.mask_dict["std_gen"].size(1)] + mask_branch_small = out.mask_dict["branch"][ + :, + : out.mask_dict["std_branch"].size(1), + ] + assert (mask_bus_small == torch.isinf(out.mask_dict["std_bus"])).all() + assert (mask_gen_small == torch.isinf(out.mask_dict["std_gen"])).all() + assert (mask_branch_small == torch.isinf(out.mask_dict["std_branch"])).all() + + # Check that outliers are not masked + assert (~mask_bus_small >= out.mask_dict["outliers_bus"]).all() + assert (~mask_branch_small >= out.mask_dict["outliers_branch"]).all() + + +if __name__ == "__main__": + test_simulate_measurements() diff --git a/tests/test_yaml_configs.py b/tests/test_yaml_configs.py index 844d937..d77577c 100644 --- a/tests/test_yaml_configs.py +++ b/tests/test_yaml_configs.py @@ -5,7 +5,9 @@ load_normalizer, get_loss_function, load_model, - get_transform, + get_task, + get_task_transforms, + get_physics_decoder, NestedNamespace, ) @@ -17,32 +19,9 @@ def test_yaml_config_valid(yaml_path): args = NestedNamespace(**config_dict) # Call your param handler functions; they should not raise exceptions - load_normalizer(args) - get_transform(args) - if hasattr(args, "model"): - load_model(args) - if hasattr(args, "training") and hasattr(args.training, "losses"): - get_loss_function(args) - - -def test_nested_namespace_with_list_and_flatten(): - cfg = { - "seed": 42, - "data": {"networks": ["case30_ieee", "case118_ieee"]}, - "training": {"batch_size": 16}, - } - - ns = NestedNamespace(**cfg) - - # Direct attribute and list access - assert ns.seed == 42 - assert ns.data.networks[0] == "case30_ieee" - - # Round-trip back to dict - assert ns.to_dict() == cfg - - # Flatten with default and custom separators - flat = ns.flatten() - assert flat["training.batch_size"] == 16 - assert flat["data.networks"] == ["case30_ieee", "case118_ieee"] - assert ns.flatten(sep="/")["data/networks"] == ["case30_ieee", "case118_ieee"] + normalizer = load_normalizer(args) + get_task(args, normalizer) + load_model(args) + get_loss_function(args) + get_task_transforms(args) + get_physics_decoder(args)